diff --git a/.vscode/extensions.json b/.vscode/extensions.json deleted file mode 100644 index 272828b..0000000 --- a/.vscode/extensions.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - // See http://go.microsoft.com/fwlink/?LinkId=827846 - // for the documentation about the extensions.json format - "recommendations": [ - "platformio.platformio-ide" - ] -} \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..9ce76de --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,13 @@ +# The following lines of boilerplate have to be in your project's CMakeLists +# in this exact order for cmake to work correctly +cmake_minimum_required(VERSION 3.5) + +include($ENV{IDF_PATH}/tools/cmake/project.cmake) +set(PROJECT_VER "0.1.0.1") +set(EXTRA_COMPONENT_DIRS components/lv_examples + components/lvgl + components/lvgl_esp32_drivers/lvgl_tft + components/lvgl_esp32_drivers/lvgl_touch + components/lvgl_esp32_drivers) + +project(bakalarka) diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4d70960 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +# +# This is a project Makefile. It is assumed the directory this Makefile resides in is a +# project subdirectory. +# + +PROJECT_NAME := console +EXTRA_COMPONENT_DIRS := components/lv_port_esp32/components/lv_examples \ + components/lv_port_esp32/components/lvgl \ + components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft \ + components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch \ + components/lv_port_esp32/components/lvgl_esp32_drivers \ + +include $(IDF_PATH)/make/project.mk + diff --git a/README.md b/README.md new file mode 100644 index 0000000..94c080a --- /dev/null +++ b/README.md @@ -0,0 +1,151 @@ +# Console Example + +(See the README.md file in the upper level 'examples' directory for more information about examples.) + +This example illustrates the usage of the [Console Component](https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/console.html#console) to create an interactive shell on the ESP32. The interactive shell running on the ESP32 can then be controlled/interacted with over a serial port (UART). + +The interactive shell implemented in this example contains a wide variety of commands, and can act as a basis for applications that require a command-line interface (CLI). + +## How to use example + +### Hardware Required + +This example should be able to run on any commonly available ESP32 development board. + +### Configure the project + +``` +idf.py menuconfig +``` + +* Enable/disable `Example Configuration > Store command history in flash` as necessary + +### Build and Flash + +Build the project and flash it to the board, then run monitor tool to view serial output: + +``` +idf.py -p PORT flash monitor +``` + +(Replace PORT with the name of the serial port to use.) + +(To exit the serial monitor, type ``Ctrl-]``.) + +See the Getting Started Guide for full steps to configure and use ESP-IDF to build projects. + +## Example Output + +Enter the `help` command get a full list of all available commands. The following is a sample session of the Console Example where a variety of commands provided by the Console Example are used. Note that GPIO15 is connected to GND to remove the boot log output. + +``` +This is an example of ESP-IDF console component. +Type 'help' to get the list of commands. +Use UP/DOWN arrows to navigate through command history. +Press TAB when typing command name to auto-complete. +[esp32]> help +help + Print the list of registered commands + +free + Get the total size of heap memory available + +restart + Restart the program + +deep_sleep [-t ] [--io=] [--io_level=<0|1>] + Enter deep sleep mode. Two wakeup modes are supported: timer and GPIO. If no + wakeup option is specified, will sleep indefinitely. + -t, --time= Wake up time, ms + --io= If specified, wakeup using GPIO with given number + --io_level=<0|1> GPIO level to trigger wakeup + +join [--timeout=] [] + Join WiFi AP as a station + --timeout= Connection timeout, ms + SSID of AP + PSK of AP + +[esp32]> free +257200 +[esp32]> deep_sleep -t 1000 +I (146929) deep_sleep: Enabling timer wakeup, timeout=1000000us +I (619) heap_init: Initializing. RAM available for dynamic allocation: +I (620) heap_init: At 3FFAE2A0 len 00001D60 (7 KiB): DRAM +I (626) heap_init: At 3FFB7EA0 len 00028160 (160 KiB): DRAM +I (645) heap_init: At 3FFE0440 len 00003BC0 (14 KiB): D/IRAM +I (664) heap_init: At 3FFE4350 len 0001BCB0 (111 KiB): D/IRAM +I (684) heap_init: At 40093EA8 len 0000C158 (48 KiB): IRAM + +This is an example of ESP-IDF console component. +Type 'help' to get the list of commands. +Use UP/DOWN arrows to navigate through command history. +Press TAB when typing command name to auto-complete. +[esp32]> join --timeout 10000 test_ap test_password +I (182639) connect: Connecting to 'test_ap' +I (184619) connect: Connected +[esp32]> free +212328 +[esp32]> restart +I (205639) restart: Restarting +I (616) heap_init: Initializing. RAM available for dynamic allocation: +I (617) heap_init: At 3FFAE2A0 len 00001D60 (7 KiB): DRAM +I (623) heap_init: At 3FFB7EA0 len 00028160 (160 KiB): DRAM +I (642) heap_init: At 3FFE0440 len 00003BC0 (14 KiB): D/IRAM +I (661) heap_init: At 3FFE4350 len 0001BCB0 (111 KiB): D/IRAM +I (681) heap_init: At 40093EA8 len 0000C158 (48 KiB): IRAM + +This is an example of ESP-IDF console component. +Type 'help' to get the list of commands. +Use UP/DOWN arrows to navigate through command history. +Press TAB when typing command name to auto-complete. +[esp32]> + +``` + +## Troubleshooting + +### Line Endings + +The line endings in the Console Example are configured to match particular serial monitors. Therefore, if the following log output appears, consider using a different serial monitor (e.g. Putty for Windows) or modify the example's [UART configuration](#Configuring-UART-and-VFS). + +``` +This is an example of ESP-IDF console component. +Type 'help' to get the list of commands. +Use UP/DOWN arrows to navigate through command history. +Press TAB when typing command name to auto-complete. +Your terminal application does not support escape sequences. +Line editing and history features are disabled. +On Windows, try using Putty instead. +esp32> +``` + +## Example Breakdown + +### Configuring UART + +The ``initialize_console()`` function in the example configures some aspects of UART relevant to the operation of the console. + +- **Line Endings**: The default line endings are configured to match those expected/generated by common serial monitor programs, such as `screen`, `minicom`, and the `idf_monitor.py` included in the SDK. The default behavior for these commands are: + - When 'enter' key is pressed on the keyboard, `CR` (0x13) code is sent to the serial device. + - To move the cursor to the beginning of the next line, serial device needs to send `CR LF` (0x13 0x10) sequence. + +### Line editing + +The main source file of the example illustrates how to use `linenoise` library, including line completion, hints, and history. + +### Commands + +Several commands are registered using `esp_console_cmd_register()` function. See the `register_wifi()` and `register_system()` functions in `cmd_wifi.c` and `cmd_system.c` files. + +### Command handling + +Main loop inside `app_main()` function illustrates how to use `linenoise` and `esp_console_run()` to implement read/eval loop. + +### Argument parsing + +Several commands implemented in `cmd_wifi.c` and `cmd_system.c` use the Argtable3 library to parse and check the arguments. + +### Command history + +Each time a new command line is obtained from `linenoise`, it is written into history and the history is saved into a file in flash memory. On reset, history is initialized from that file. diff --git a/build/.ninja_deps b/build/.ninja_deps new file mode 100644 index 0000000..076490e Binary files /dev/null and b/build/.ninja_deps differ diff --git a/build/.ninja_log b/build/.ninja_log new file mode 100644 index 0000000..0c72a14 --- /dev/null +++ b/build/.ninja_log @@ -0,0 +1,1107 @@ +# ninja log v5 +10 20 1584721257 esp-idf/esp32/esp32_out.ld 5a23f5a54d7240c9 +9 59 1584721257 project_elf_src.c 9b177edeec9c1acc +29 110 1584721257 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/expression_with_stack_xtensa_asm.S.obj e9a40f730f1180f0 +23 112 1584721257 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/debug_helpers_asm.S.obj a61a9ccc72446a12 +22 170 1584721257 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/debug_helpers.c.obj 159b8fca8ea6a71e +110 228 1584721257 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj 886f5428e192bf51 +28 276 1584721257 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/expression_with_stack_xtensa.c.obj 4553acf87fd02947 +228 310 1584721257 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/lldesc.c.obj 9ce90dd03497987 +59 341 1584721257 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/trax.c.obj ed30594475970b04 +170 356 1584721257 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rmt_hal.c.obj 5221a5159037b945 +112 482 1584721257 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/memory_layout_utils.c.obj 9a4ca6196d5b8813 +276 545 1584721257 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/touch_sensor_hal.c.obj 1bbe4e39bd8473b +356 566 1584721257 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/dac_hal.c.obj b4c159a565e6d101 +311 661 1584721257 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal_iram.c.obj 80f270e292985862 +9 752 1584721257 partition_table/partition-table.bin f6f18c498454d315 +482 811 1584721258 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/adc_hal.c.obj 2a3c78c2492b7025 +341 849 1584721258 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rtc_io_hal.c.obj 9d30cd70aefb93e1 +545 874 1584721258 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal.c.obj a165abc3aa51e50a +811 942 1584721258 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal.c.obj 3e338c62198fca08 +662 965 1584721258 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal.c.obj cfdefcb5f6dbd688 +752 977 1584721258 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal_iram.c.obj fe49a6bb168ae741 +849 984 1584721258 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/soc_include_legacy_warn.c.obj 3cd8ad2c226904a3 +874 1065 1584721258 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/pcnt_hal.c.obj 99aee288b13f6449 +566 1078 1584721258 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal_iram.c.obj 486a5f299d74dac1 +977 1104 1584721258 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/timer_hal.c.obj 462e56fbc5968e4f +986 1148 1584721258 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/can_hal.c.obj 3f2f5f332b7fb6f9 +965 1222 1584721258 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sigmadelta_hal.c.obj e3e4bb44b7b32bcc +1105 1262 1584721258 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal_iram.c.obj 5b047aee428781d3 +1148 1407 1584721258 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/gpio_hal.c.obj f22d86ef5ea7afe2 +1078 1419 1584721258 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal.c.obj 359a460f700e302 +1065 1422 1584721258 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/compare_set.c.obj 94ed2a88b1566bc +1262 1544 1584721258 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal_iram.c.obj 8c23d902b6fedd75 +1407 1637 1584721258 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal.c.obj 74b407c2fc445b16 +942 1651 1584721258 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2s_hal.c.obj ec5864241647cfe3 +1222 1653 1584721258 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal.c.obj 59c59c8b2f3d96ae +1653 1719 1584721259 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/brownout_hal.c.obj 53cf63823c192232 +1544 1859 1584721259 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk_init.c.obj 5e96730cc4846925 +1720 1948 1584721259 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/cpu_util.c.obj 726cde77ed84b1dc +1419 1992 1584721259 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal_iram.c.obj d4fb4ee0aefbeae2 +1423 2005 1584721259 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_init.c.obj 70e4d5d6768f3bb1 +1992 2218 1584721259 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_pm.c.obj 8aedc33a701d7216 +2005 2349 1584721259 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/event_loop_legacy.c.obj f3efdcba6443287c +1948 2511 1584721259 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_sleep.c.obj dced9db0d3df2256 +1859 2556 1584721259 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk.c.obj d7b4af912c36d8eb +2218 2599 1584721259 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_time.c.obj 59626de8dfec90e3 +1652 2614 1584721259 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sdio_slave_hal.c.obj de31590540ea4697 +1637 2631 1584721259 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/mcpwm_hal.c.obj b135d8ec91680e08 +2349 2646 1584721259 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/touch_sensor_hal.c.obj 806030d8b3598c8c +2511 2664 1584721259 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/soc_memory_layout.c.obj ef08ff352c138d93 +2664 2793 1584721260 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/gpio_periph.c.obj 7606efe6021ac9dd +2646 2830 1584721260 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/adc_periph.c.obj ed6942aa4a01e8e3 +2556 2888 1584721260 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_wdt.c.obj 67529a7dece6ac38 +2830 2930 1584721260 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/interrupts.c.obj b8328641e7ad7435 +2793 2931 1584721260 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/dac_periph.c.obj 708605ac1a880132 +2931 2960 1584721260 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_periph.c.obj c46d3afb560a03e4 +2960 3065 1584721260 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdio_slave_periph.c.obj 68d67b6fbcc37cdd +3065 3181 1584721260 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdmmc_periph.c.obj 6912add70e101fa7 +2888 3187 1584721260 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/spi_periph.c.obj adfdfc40382e807f +2930 3208 1584721260 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_io_periph.c.obj e08d3c949c64f711 +2599 3278 1584721260 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/sdio_slave_hal.c.obj 824b360599f7c565 +3181 3365 1584721260 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/ledc_periph.c.obj 8245dfff1c8221bb +3208 3378 1584721260 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2s_periph.c.obj 8a4a0ad4d9157533 +3187 3397 1584721260 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/touch_sensor_periph.c.obj a348010d92af16d9 +3365 3460 1584721260 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/uart_periph.c.obj 7b9fb9a618eea244 +2614 3479 1584721260 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/emac_hal.c.obj 86f6cf8217501245 +3279 3480 1584721260 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2c_periph.c.obj a66e534e5022e755 +3397 3707 1584721260 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy.c.obj d9223d69bd9339a7 +3460 3977 1584721261 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj d03ee2cc5221ac0c +3480 4065 1584721261 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_dp83848.c.obj 67e24f1fe5b6ac91 +3378 4160 1584721261 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj 1058ce264de348ae +2632 4298 1584721261 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_srv.c.obj 4ce75e8b8eb52557 +3707 4347 1584721261 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ip101.c.obj a3e9d63599729b64 +3479 4498 1584721261 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_mac_esp32.c.obj b45772cbc19750e +3977 4600 1584721261 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_lan8720.c.obj da5363ed2f0e36ea +4065 4707 1584721261 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_rtl8201.c.obj a485964d0baacb89 +4347 4797 1584721262 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj 67b106feb64a4356 +4298 4862 1584721262 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj 4bfcf6b1cc8e58dc +4498 4883 1584721262 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj 15750211e91b3e0 +4707 5109 1584721262 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_ppp.c.obj 6585a0c70899f3bf +4160 5239 1584721262 esp-idf/tcpip_adapter/CMakeFiles/__idf_tcpip_adapter.dir/tcpip_adapter_compat.c.obj 865433c99cc65a49 +4797 5266 1584721262 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/loopback/esp_netif_loopback.c.obj 7a219b57ec1e86ae +4884 5306 1584721262 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sta_list.c.obj bb6b6636df527554 +4862 5379 1584721262 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj 8dfb455cb18792c6 +5307 5595 1584721262 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_fields.c.obj 686e1464d879d241 +5269 5710 1584721262 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj 70a818dc7f7c1d21 +5240 5729 1584721263 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj 4aaeb686de9142e6 +5380 5818 1584721263 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/event_send.c.obj 4ce6cb099a8dd3c3 +5596 5833 1584721263 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/certs.c.obj e6d2d945d40c722c +5711 5840 1584721263 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs11.c.obj 8849f5d262836b95 +5729 6126 1584721263 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj fe94ffa64362e4ca +4601 6132 1584721263 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj 58986837c6972afe +5109 6134 1584721263 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj 320a28db79f81609 +5833 6282 1584721263 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj 17ceff79d3040071 +6132 6400 1584721263 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj 9e665f6f3489a90e +5840 6426 1584721263 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj 116ee453f28c523e +5819 6484 1584721263 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj f9e6f694fdd7a3bf +6400 6497 1584721263 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj af1069ad2107f4ed +6134 6516 1584721263 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj a3f9890b82829291 +6497 6563 1584721263 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj b8c0079aa1fe78ce +6484 6579 1584721263 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/arc4.c.obj e299eb8c693b518b +6579 6808 1584721264 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj 4f7a8935db03fad1 +6282 6865 1584721264 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj 618d71fb33f4fcd6 +6809 6882 1584721264 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/blowfish.c.obj ec1886306ae780e3 +6427 6884 1584721264 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj 568ddbbfff7b4d20 +6516 6887 1584721264 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj c71050ce97a124ee +6865 6947 1584721264 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj 7465a9ae620475d7 +6882 6954 1584721264 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj 750b452bde2ba773 +6887 7086 1584721264 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj 8448a4711bcce649 +7087 7215 1584721264 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj d3ff8c17b07f40e1 +6947 7266 1584721264 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj bc370e8f04dc51b7 +6884 7307 1584721264 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj 2194f47815fdf92 +7215 7404 1584721264 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj 5b4c07e6f9207495 +6126 7437 1584721264 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj 516967395bdfca07 +7437 7571 1584721264 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj 735f566c6ce101e4 +7307 7630 1584721264 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj ae641692e024f1db +6954 7656 1584721264 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj 9a099e913f9d0f58 +7404 7889 1584721265 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj 6bf38628e3fc2ba5 +7266 7901 1584721265 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj be7a6c9d1808b5b8 +7571 8146 1584721265 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj 7e5d9ea7b824ceed +6563 8278 1584721265 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj 411d49356137c625 +8147 8298 1584721265 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj 4e9c67aa2b0723be +8278 8398 1584721265 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj b9831cf616bf3bcc +7889 8501 1584721265 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj 9a116e38ae598b73 +8398 8526 1584721265 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/havege.c.obj 27e7e69306880388 +7902 8533 1584721265 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj 5744e548c3e291b +8534 8679 1584721265 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md2.c.obj 6a8347ad76366237 +8298 8824 1584721266 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj bd82109e0b942abc +8501 8925 1584721266 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj de110a99174e1687 +8824 8947 1584721266 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md4.c.obj 6418be97711fc48e +8526 9014 1584721266 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj d7d008df50fcf0c7 +8925 9174 1584721266 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj 5d74d752b6597bcf +7657 9185 1584721266 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj 557ef35a6b569fc +8679 9218 1584721266 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj 30cec883c19e9c60 +8947 9279 1584721266 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md_wrap.c.obj 4e0771bd05bc3013 +9174 9332 1584721266 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj f8b2c25ec07e815a +9185 9357 1584721266 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj 135f73c0e1db45c2 +7630 9415 1584721266 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj 658a6999a50e30c9 +9218 9610 1584721266 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj 888857daacf2e79a +9279 9680 1584721266 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj afba74d9dbd33d4 +9357 9693 1584721266 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj c8d0984784a799b7 +9415 9727 1584721267 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj db6d7ab4db4d4909 +9014 9739 1584721267 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj bf2672fcfff7afb8 +9332 9746 1584721267 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj 608b0c56cbb98518 +9727 9823 1584721267 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj ba7c89a6d563113d +9693 9840 1584721267 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj c6374d5fc48e08e5 +9746 9864 1584721267 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj 860e54eb567a1a06 +9739 9986 1584721267 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj 4830a010e4eef8d0 +9610 9989 1584721267 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj 646211277e7c38c0 +9841 10054 1584721267 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj f54a516ab2b2de26 +9986 10174 1584721267 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj 771a963c813528bb +9990 10189 1584721267 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj c41ae707abcb4924 +9680 10281 1584721267 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj 28e56113e1043ec6 +9864 10311 1584721267 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_internal.c.obj b5bab073e68d9323 +10055 10331 1584721267 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj e316e2cf9beb5b77 +10189 10337 1584721267 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/xtea.c.obj 78f2c5a6cd186c1c +10174 10345 1584721267 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj 9bf6c30884eb6858 +10281 10448 1584721267 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj c97ac2c98b5c6669 +10311 10466 1584721267 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj 7c3c9b50a13eb92f +10345 10543 1584721267 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_mem.c.obj 66195bc326c182a6 +10331 10564 1584721267 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_hardware.c.obj 5f293eeb8f163371 +10448 10639 1584721267 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_sha.c.obj f0b9dd142e3a778c +10564 10810 1584721268 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_timing.c.obj e1d1d11ab711abf7 +10466 11029 1584721268 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_sha256.c.obj b4ba5816be2708a0 +9823 11116 1584721268 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj 26996126293c1b03 +10337 11213 1584721268 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_sha1.c.obj fb56237a45abe3f5 +10810 11262 1584721268 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj 2f956292bc39ef3 +11213 11314 1584721268 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj db2369e4269ed23d +10543 11457 1584721268 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_sha512.c.obj 42b291420bfc67ff +10639 11491 1584721268 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/esp_bignum.c.obj fd113bc8e1829d8d +11262 11616 1584721268 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj fa940edef1fabde0 +11116 11630 1584721268 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/sha.c.obj fea058462c4c8bdb +11314 11684 1584721268 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj 4f1778446ca83e17 +11029 11725 1584721269 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/aes.c.obj c6310323fbae949d +11492 11836 1584721269 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj 902928ada0d09105 +11725 11877 1584721269 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj fb479cbfdc943618 +11630 11948 1584721269 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/__/__/port/mbedtls_debug.c.obj 26eeec5fc5d4c94a +11836 12057 1584721269 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj f22f12065732ab81 +11685 12157 1584721269 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/__/__/port/net_sockets.c.obj 9d16bdd94d9962bf +11877 12300 1584721269 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj 58a992fcf94d9f58 +12057 12579 1584721269 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj 30da4c5866d51c6e +12300 12708 1584721269 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj f7b88504c9082cd6 +12579 12912 1584721270 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal-dec.c.obj 22a53210ea8bed4f +12708 13017 1584721270 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-cbc.c.obj 7e3487cb5d41e306 +11457 13038 1584721270 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cli.c.obj 9b24c075ff89d2e8 +12157 13135 1584721270 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj 97794672681c09f8 +12912 13274 1584721270 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj b558609756673b26 +13038 13297 1584721270 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-omac1.c.obj 43986dc07113feae +13017 13364 1584721270 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj 87fa6962fe59f507 +13135 13381 1584721270 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal-enc.c.obj 5b3bbdb2cb9d780 +13274 13484 1584721270 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal.c.obj 693eb078cfff9250 +13297 13592 1584721270 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj 64048d08b388f187 +13364 13632 1584721270 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj 9ae442ba67e14de4 +11948 13726 1584721271 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj 330ebecb36c49aad +13592 13756 1584721271 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj f50cc8915b74c060 +13633 13965 1584721271 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-cipher.c.obj c269935ed554f3 +13484 13982 1584721271 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_mbedtls.c.obj 814b3d2e6dcf2b96 +13726 13991 1584721271 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-modexp.c.obj a50dd61eefac7e04 +13757 14008 1584721271 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-rsa.c.obj 3bfa34b5a6d10a9e +13991 14196 1584721271 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj 1ca5b859bb87ee49 +13966 14232 1584721271 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal.c.obj 80157aa35a33b764 +14009 14321 1584721271 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj 8e70e1584066b36 +13982 14381 1584721271 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj 8f0c5787ea6d0c82 +14196 14455 1584721271 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj 920cb505a41170cd +14381 14607 1584721271 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md5.c.obj 2c3ae155b741beb7 +14321 14681 1584721271 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md5-internal.c.obj 6b1110ddddb1017 +13381 14711 1584721271 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/bignum.c.obj 1cf798f42f7cc8af +14232 14766 1584721272 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj c8594411a794a5c8 +14681 14880 1584721272 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256.c.obj 8abb10525ef6e877 +14455 14920 1584721272 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj 7561fbdb4ab6fee3 +14711 15004 1584721272 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-pbkdf2.c.obj 508b03b0dacbc030 +14920 15023 1584721272 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj c0399832a6f0fcd3 +14766 15033 1584721272 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1.c.obj 7d5e96d2197a6e6c +14880 15036 1584721272 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-internal.c.obj bd6f9864603a5c85 +15023 15270 1584721272 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj fd7bbe7f04e55b06 +11616 15307 1584721272 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj eddf43e5ce282db4 +15270 15383 1584721272 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj 171ecb396c14d6c4 +14608 15442 1584721272 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-internal.c.obj b8d77b26f474a142 +15033 15603 1584721272 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj 5e1b0de22ea04f10 +15307 15666 1584721272 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj ad3352878f40e8a9 +15603 15826 1584721273 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj b86de2f41e64c835 +15004 15863 1584721273 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj 6f88b7709bd52176 +15036 16012 1584721273 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj 3613ba887df8d94c +15383 16029 1584721273 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj 11ba95e44ba4c5d8 +15442 16088 1584721273 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj c23a607de74f372b +15666 16276 1584721273 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_hostap.c.obj 1bf9e3817c0e3740 +16012 16315 1584721273 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpas_glue.c.obj df23ad389851c736 +15863 16469 1584721273 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa_main.c.obj 509bd40713d31ae +16088 16725 1584721274 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa3.c.obj f838bbd4352e95a0 +16469 16829 1584721274 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj 24a18c34068b79b4 +16277 16848 1584721274 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj 3f9a25da357f122a +15826 16904 1584721274 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa2.c.obj b7a4fc462f82d3fc +16725 17005 1584721274 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/asn1.c.obj 2f0f7d3d76a7f407 +16848 17228 1584721274 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs1.c.obj 1b1738b5a91e8a53 +16905 17297 1584721274 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs5.c.obj 6eb75d18a56ae75b +17005 17299 1584721274 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs8.c.obj 6b2e14ceba0ac713 +17298 17499 1584721274 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/rsa.c.obj f7bfb83448879f22 +16029 17610 1584721274 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wps.c.obj d9553fccdc1b36f1 +16829 17829 1584721275 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/bignum.c.obj 4e69690cf091235a +17299 17835 1584721275 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tls_internal.c.obj a4225414c1d04e3a +17229 17894 1584721275 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client.c.obj d30460e3a95d23ce +16315 17943 1584721275 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj 19e85af6ebd6aa97 +17499 18063 1584721275 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client_write.c.obj db83862af5e828d0 +17829 18129 1584721275 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_common.c.obj 36bf3604095b2823 +17839 18197 1584721275 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_cred.c.obj 774746c5c3ebc68e +17610 18222 1584721275 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client_read.c.obj 1cf58697102e9332 +17894 18370 1584721275 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_record.c.obj 23c1e58a5e44a1e1 +17944 18478 1584721275 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server.c.obj 87e4b382e394eced +18223 18511 1584721275 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj 2474679108e0eb79 +18478 18708 1584721275 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj 8465706de47f9112 +18064 18744 1584721276 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server_read.c.obj 896880ee2f817f8b +18511 18749 1584721276 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj 1e28e73a66409ae8 +18129 18752 1584721276 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server_write.c.obj 8c48a25f2d792aff +18371 18779 1584721276 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj bfbdd7e920bd5d48 +18744 18916 1584721276 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj 6ffbe963f0128c21 +18708 18972 1584721276 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj 3079a04f431d99f4 +18197 19098 1584721276 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/x509v3.c.obj e2578afb59310b0c +18779 19183 1584721276 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj 4c6b6790b9b80da +18749 19223 1584721276 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj 62c94bed019efdb2 +18752 19314 1584721276 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj 6d189d988170410e +18916 19452 1584721276 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj 1510de7a644bb940 +19452 19650 1584721276 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj b06c1f01f84d58c2 +18973 19683 1584721276 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj 2a366ae67719961 +19098 19703 1584721276 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj 2c117d1f03bf7d0b +19650 19863 1584721277 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_api.c.obj ee11d454c5233b3a +19703 19893 1584721277 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj a9d5340ab7b7e91a +19683 19896 1584721277 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj 574803d384c10311 +19893 20114 1584721277 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj 5ae0cfdf82f20b2b +19183 20169 1584721277 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj 908f5cb4a1d5435f +19863 20198 1584721277 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj be035e26435ef761 +19897 20210 1584721277 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_utility.c.obj cba406189213af2c +20114 20486 1584721277 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj 2074be99701cf3d6 +20198 20493 1584721277 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj c67ed8e6afe098aa +20210 20536 1584721277 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock.c.obj b8036c67bea83110 +20169 20593 1584721277 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj c2e490cd1d4604ce +19314 20683 1584721277 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_validate.c.obj 4999c9fefc5e9013 +20537 20808 1584721278 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash.c.obj 369126d840fa62a9 +20593 20950 1584721278 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj dd68b719a485a26e +20494 20994 1584721278 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj 5b10fdb63bf1ec4f +20808 21195 1584721278 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj e376a4571b945e31 +20950 21205 1584721278 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_qio_mode.c.obj f3fc2e7304e4ca11 +19223 21211 1584721278 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_registrar.c.obj 6288f70e3df2ae29 +20683 21273 1584721278 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj a063234ec52942fe +20486 21284 1584721278 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj ba07f35b8269d7f0 +20994 21291 1584721278 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj adb5964c5091dfdb +21211 21331 1584721278 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj 5c38a744ccbb6103 +21206 21411 1584721278 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse_esp32.c.obj 2da2ab708970612c +21291 21556 1584721278 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_app_desc.c.obj 9a4e98f793357f52 +21195 21594 1584721278 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash_config_esp32.c.obj c2a60a339f0ea839 +21284 21646 1584721278 bootloader-prefix/src/bootloader-stamp/bootloader-mkdir 522648a6d8264083 +21646 21798 1584721279 bootloader-prefix/src/bootloader-stamp/bootloader-download ce6fb3084107e830 +21274 21810 1584721279 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/secure_boot_signatures.c.obj 90602d8a08f955c6 +21411 21890 1584721279 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj 27541e15ab78d5a +21798 21914 1584721279 bootloader-prefix/src/bootloader-stamp/bootloader-update 956a3c5b6452ce28 +21810 21948 1584721279 bootloader-prefix/src/bootloader-stamp/bootloader-patch 80013dbd29e20176 +21331 21982 1584721279 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj a2ec9cb16715634e +21556 22000 1584721279 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/partition.c.obj 8364513427baa0a4 +21890 22082 1584721279 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj e8188db6f8573ffb +21914 22093 1584721279 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj 66099040634424cc +22001 22248 1584721279 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj 2a7f6bbf32e14b2d +21983 22265 1584721279 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj 9dfc74215deb1081 +21594 22362 1584721279 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32/spi_flash_rom_patch.c.obj 81f3188c070e8b12 +22093 22538 1584721279 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj c62bb29acba89767 +22248 22564 1584721279 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj 9df3d1e638fd27ca +22082 22578 1584721279 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj fe08ec8669eb7cb7 +22362 22583 1584721279 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj 953c4314ce5421f8 +22564 22782 1584721280 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj fdca594349e7dbdc +22538 22816 1584721280 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj ab5c42f304972a59 +22266 23013 1584721280 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj 22be5a2b9427e9eb +22578 24634 1584721281 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj 5d9e6b0bbf7fb1ba +24638 24861 1584721282 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_ops.cpp.obj c09a8711761f8993 +22816 24874 1584721282 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj 73a52d462099ab7b +22782 25345 1584721282 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj e8d6ded5b32c9325 +23013 25476 1584721282 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj b64208d13d95e4c8 +22584 25907 1584721283 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj a64d60c5088250b3 +24875 26818 1584721284 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj 29685c33dbc0c0e6 +26818 27085 1584721284 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/coexist.c.obj 6c86ac9bc43ed008 +27086 27512 1584721284 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj 27d80d0605fd24dd +25907 27545 1584721284 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj cfdcbe8a24d62ab9 +25345 27608 1584721284 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj 424aa57b100869c6 +27512 27818 1584721285 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj dd6eaeaf0796f0c4 +25476 27887 1584721285 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj f0ee48172f8ba9fd +24862 28019 1584721285 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj fb96fe1f9a2e88d5 +27608 28061 1584721285 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj 70e60a671bac8966 +27818 28258 1584721285 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj db37c32f9493f3cf +27887 28438 1584721285 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj d0c6f73c7f51c05a +28061 28441 1584721285 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj 68846a3c27e9a37 +27545 28464 1584721285 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/phy_init.c.obj 775d87ae3787c64c +28020 28800 1584721286 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj 2f1b03b356bb884e +28438 28809 1584721286 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj bd29a1f1b7e56e38 +28258 28862 1584721286 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32/esp_adapter.c.obj 8d8f3cef70c82af1 +28464 28899 1584721286 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj 11e56758a69c5842 +28809 29072 1584721286 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj ad359ae94ad7ed4c +28441 29237 1584721286 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj e160b130aa9e93ec +29072 29363 1584721286 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj 64d3fe4eaa613d6 +29237 29482 1584721286 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj e23387ad9918a5dd +28800 29596 1584721286 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj f64b5020aa663e79 +29363 29752 1584721287 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj fb18e42d451b5792 +28862 29799 1584721287 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj a539648e3597c59b +29483 29859 1584721287 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj 9768eafa03a5eb43 +29597 29915 1584721287 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj cb7cb63d5ed78891 +29916 30238 1584721287 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj 4e78aee6388a7a60 +29859 30280 1584721287 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj 115324aaaa9738 +28899 30313 1584721287 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj bf04f1e909734270 +29799 30496 1584721287 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj 263de4159a35e591 +30238 30627 1584721287 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj f40a611a4885a8bb +30313 30838 1584721288 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj a67cb5849ab37e4e +30496 31051 1584721288 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj fe3e56eb394a15c0 +30628 31087 1584721288 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj de5fb03270c997ed +30838 31263 1584721288 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj aa0695736d5f5113 +30280 31367 1584721288 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj a1a459c0edba4c2 +31087 31749 1584721289 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj a02a31f14e54e3b4 +31051 31782 1584721289 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj 619c471ff4d7a39a +31782 32080 1584721289 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj c1f518fa27b15650 +21948 32090 1584721289 bootloader-prefix/src/bootloader-stamp/bootloader-configure 8ae4afa9e8a7634b +29753 32102 1584721289 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj f002a702d37c3875 +31263 32133 1584721289 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj f00e85557bb3884e +31367 32180 1584721289 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj ecbe8429ccdb2ae9 +31749 32198 1584721289 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj 71ca4d2b06144d6c +32181 32922 1584721290 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj 730d271325930e6 +32922 33456 1584721290 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj 908d1c53f7bdc86b +32198 33628 1584721290 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj 981b23a71870516a +32133 33936 1584721291 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj 5cb74586472f3206 +32102 34451 1584721291 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj eb788bf432d5875e +33937 34494 1584721291 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj c3f703f58eb1caf9 +32081 34733 1584721292 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj 5f51a07d9cbc3249 +33628 34801 1584721292 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj 2808a6a62a99d56b +34802 35354 1584721292 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj dd97e5e7426e730f +34451 35371 1584721292 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj e9654cbb505df848 +33456 35427 1584721292 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj 356acf191c63a019 +34733 35487 1584721292 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj dc9ca334036b6aa1 +34494 35576 1584721292 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj b8e6cb30c16a71b8 +35354 35745 1584721293 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj 6929b6c78d4719fd +35487 35881 1584721293 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj 47efcbaf2df310d2 +35371 35912 1584721293 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj 6c1feb2c2ed49084 +35427 36018 1584721293 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj 675920fababec9d5 +35881 36531 1584721293 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj 32dac8f401be646f +35912 36993 1584721294 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj cd7abf1887f116c8 +35745 37007 1584721294 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj 8561a18a5fbb897a +36531 37124 1584721294 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj 1d617329cf8ad840 +35576 37277 1584721294 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj a721a01de30dd7b3 +37125 37626 1584721294 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj 2b960d8301302a6a +37007 37699 1584721294 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj 8260fdf226faafed +37278 37791 1584721295 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj 78d5a125b7e2716d +37626 38124 1584721295 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj 7d2317027b511cb9 +37700 38160 1584721295 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj c2778dc3f8fd3cc6 +37792 38234 1584721295 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj c3f1b10aecf22e49 +36993 38376 1584721295 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/lowpan6.c.obj abe3f063b2d4097d +38124 38599 1584721295 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj c179fde2f16a181b +38160 38629 1584721295 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj a2b770f17963a57a +38234 38646 1584721295 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj 3679984aae52e0ef +38376 38911 1584721296 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj bff36d689f5a12bd +38646 39041 1584721296 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj dd794855021aa2 +38630 39064 1584721296 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj e79ba0e9ab6541ed +38599 39085 1584721296 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj e9fc5b1742a7dbae +36018 39150 1584721296 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj d86b6a863a06b56c +39042 39405 1584721296 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj 3972a6f135457d9e +38912 39422 1584721296 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj 7d9bd59cbd6b7012 +39150 39445 1584721296 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj 3923e9001f5195ff +39064 39483 1584721296 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj 388432655241f287 +39086 39512 1584721296 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj b27e204970caf5d8 +39405 39627 1584721296 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj f38ab1b71dbb61fd +39422 39629 1584721296 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj e9e76b3c6f3caa16 +39483 39712 1584721296 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj c1927fa8b41a1f1b +39445 39719 1584721297 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj 38cacef7245262cc +39513 39721 1584721297 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj 39c731610b1d44e +39627 39896 1584721297 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj d2abaae7967c3a1d +39629 39983 1584721297 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj 683ec7d41958fefe +39719 40010 1584721297 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/vfs_lwip.c.obj 20fe348492fc122c +39712 40012 1584721297 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj 294db6456d67517c +39721 40226 1584721297 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/debug/lwip_debug.c.obj 9536da4e8452a5c8 +39896 40406 1584721297 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/freertos/sys_arch.c.obj 5c522bac46294f4d +39984 40431 1584721297 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/dhcp_state.c.obj 466b38c4947d9c87 +40012 40439 1584721297 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/ethernetif.c.obj 57adc9bff0faa38b +40011 40455 1584721297 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/wlanif.c.obj 117e6464d2cd67a2 +40227 40549 1584721297 esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj 5b8520bdd428a564 +40431 40674 1584721297 esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj fe9438735037e6a3 +40407 40701 1584721297 esp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.c.obj 7daf9da2fc613e8 +40549 40983 1584721298 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj a817946e8f568ae3 +40439 41007 1584721298 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj cb56d9462c6a28b9 +32091 41015 1584721289 bootloader-prefix/src/bootloader-stamp/bootloader-build af87590faa9733a +32091 41015 1584721289 bootloader/bootloader.elf af87590faa9733a +32091 41015 1584721289 bootloader/bootloader.bin af87590faa9733a +32091 41015 1584721289 bootloader/bootloader.map af87590faa9733a +41016 41146 1584721298 bootloader-prefix/src/bootloader-stamp/bootloader-install d88d1a045d7ab8b2 +41147 41314 1584721298 CMakeFiles/bootloader-complete 44be5122feef7698 +41147 41314 1584721298 bootloader-prefix/src/bootloader-stamp/bootloader-done 44be5122feef7698 +40455 41439 1584721298 esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj 5b348822cc261e4 +40701 41483 1584721298 esp-idf/driver/CMakeFiles/__idf_driver.dir/adc.c.obj 3556f8d2a2b753 +40983 41658 1584721298 esp-idf/driver/CMakeFiles/__idf_driver.dir/dac.c.obj 1eb5a377746c7640 +40675 41708 1584721298 esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj 9be45b4cd6600ea6 +41314 41731 1584721299 esp-idf/driver/CMakeFiles/__idf_driver.dir/periph_ctrl.c.obj d95043b668042519 +41007 42216 1584721299 esp-idf/driver/CMakeFiles/__idf_driver.dir/can.c.obj 5374f5536ee45142 +41439 42762 1584721300 esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt.c.obj 351c0dca84e5f9cd +41483 42922 1584721300 esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio.c.obj 2ed1469e3d56982e +41708 43223 1584721300 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s.c.obj 7741c7861a4e0b01 +41659 43304 1584721300 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c.c.obj aacaebf55d392ca7 +41732 43502 1584721300 esp-idf/driver/CMakeFiles/__idf_driver.dir/ledc.c.obj bd3e0d6e8dda5821 +42923 43588 1584721300 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_slave.c.obj 858a6e056f55633 +43507 43618 1584721300 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_crc.c.obj 3648ac38ee0c1b3f +43307 43742 1584721301 esp-idf/driver/CMakeFiles/__idf_driver.dir/rtc_module.c.obj df4f627b1a53f9c8 +42216 43879 1584721301 esp-idf/driver/CMakeFiles/__idf_driver.dir/pcnt.c.obj a51a013c7b8400ef +42762 43885 1584721301 esp-idf/driver/CMakeFiles/__idf_driver.dir/rtc_io.c.obj 6897b27363729b17 +43619 44112 1584721301 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_transaction.c.obj 1323dacb9b382f66 +43742 44220 1584721301 esp-idf/driver/CMakeFiles/__idf_driver.dir/sigmadelta.c.obj 3fc81268db89465f +43589 44427 1584721301 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_host.c.obj 1b96f0d415d0cf91 +43224 44494 1584721301 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_master.c.obj 731ba72e23f3b596 +43885 44600 1584721301 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_host.c.obj 8bae2c0523d6f016 +43879 44848 1584721302 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_common.c.obj da97fe3c6d9f738e +44113 44860 1584721302 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_transaction.c.obj 850a88acf2f0a2cc +44427 44957 1584721302 esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor_common.c.obj d19b6acb08792eea +44221 45465 1584721302 esp-idf/driver/CMakeFiles/__idf_driver.dir/timer.c.obj 802b53cd8c038c0c +44957 45684 1584721302 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj 19510c881d4674c7 +44848 45750 1584721303 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdio_slave.c.obj 5984301e36a368f5 +45465 45835 1584721303 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj f1cdd19549f79ab8 +44860 45848 1584721303 esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32/touch_sensor.c.obj d42d79facf6a5ddc +45750 45930 1584721303 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_port.c.obj dd813ec0afdc8b85 +44601 45942 1584721303 esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm.c.obj eb00470224bafa62 +45684 46077 1584721303 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj ad6ef834b5132ead +45835 46131 1584721303 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj 17e98f924bbad542 +45848 46200 1584721303 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj 502726d1b20cc9ff +45930 46225 1584721303 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj f0d918f41d98fe83 +45942 46242 1584721303 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj 24a48cb9e509e785 +44494 46266 1584721303 esp-idf/driver/CMakeFiles/__idf_driver.dir/uart.c.obj da1bc195f4972756 +46077 46295 1584721303 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj 190f8231366f8ad0 +46131 46312 1584721303 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj d677054e2f11fa34 +46201 46433 1584721303 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj 396c3bb0c796a476 +46266 46533 1584721303 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.c.obj 749e771d0b571202 +46225 46550 1584721303 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.c.obj d3962b4f57e000a4 +46242 46563 1584721303 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.c.obj d3b4e1aa7af28b51 +46312 46595 1584721303 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.c.obj 80fa1f37613b940a +46295 46615 1584721303 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.c.obj 485ea13076dcfe63 +46433 46672 1584721303 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.c.obj 64f7b175412447ae +46550 46899 1584721304 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cache_sram_mmu.c.obj 36208785829b378d +46533 46919 1584721304 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cache_err_int.c.obj c4ae9626f3bbdc27 +46615 46922 1584721304 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/crosscore_int.c.obj c0187df1d928cae3 +46563 46944 1584721304 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/clk.c.obj c276cd1d3a1f822 +46899 46997 1584721304 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/dport_panic_highint_hdl.S.obj cbad1e96c983543f +46672 47094 1584721304 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/dport_access.c.obj f758fc95ffe0ea36 +46919 47167 1584721304 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/esp_himem.c.obj e8e914dcf2c280db +46923 47233 1584721304 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/hw_random.c.obj 2419cb8be5410de0 +46596 47359 1584721304 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cpu_start.c.obj d7e90f6ffcceb531 +46944 47362 1584721304 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/int_wdt.c.obj efb6e9865b28f6d7 +47233 47468 1584721304 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/pm_trace.c.obj 830b6d7a6995f477 +46997 47633 1584721304 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/intr_alloc.c.obj f0c9922ac14d8ee4 +47359 47653 1584721304 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/reset_reason.c.obj 9dcaacd8c1ed4aa4 +47094 47785 1584721305 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/panic.c.obj f799fe7504b22e75 +47468 47802 1584721305 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/spiram.c.obj 69c9ff71d7bae578 +47167 47842 1584721305 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/pm_esp32.c.obj ec0223b01c81e2d1 +47633 47882 1584721305 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/spiram_psram.c.obj f496e23f904fdd5e +47802 47979 1584721305 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/dbg_stubs.c.obj 836422791395351f +47883 47999 1584721305 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/stack_check.c.obj 2ffd46bddee1fe6a +47842 48214 1584721305 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/pm_locks.c.obj 71f0a2457e397964 +47785 48226 1584721305 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/task_wdt.c.obj 99d98ef5e5646eaa +47653 48282 1584721305 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/system_api_esp32.c.obj 7d7dd654b4621f2 +47999 48369 1584721305 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj 3a8af31544a59de1 +47362 48425 1584721305 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/sleep_modes.c.obj 8d77c0c7ffeb3bd1 +47979 48479 1584721305 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/freertos_hooks.c.obj 635dbc563121ca2c +48226 48555 1584721305 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/brownout.c.obj 79d1fec765c10288 +48214 48580 1584721305 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/mac_addr.c.obj bb48dc72a48c9ba9 +48282 48588 1584721305 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/system_api.c.obj d4257b2ddf2fdc8b +48588 48728 1584721306 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_context.S.obj e640c5911f37de45 +48425 48767 1584721306 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj 5306d9fa8d59389 +48370 48781 1584721306 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/ipc.c.obj 9035a5744a2fd3bf +48729 48859 1584721306 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/portasm.S.obj 654bad9e42ba84b7 +48555 48893 1584721306 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_lac.c.obj 8fb64bf7a5eb3e30 +48479 49016 1584721306 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj 9e5dffe4b40047f9 +48893 49027 1584721306 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_intr_asm.S.obj 85830d5bf96cd157 +48580 49034 1584721306 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/port.c.obj 365f4b37918ac140 +48859 49047 1584721306 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_init.c.obj 888712e9eddbce53 +49034 49163 1584721306 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_vector_defaults.S.obj 49636db6573409f1 +49027 49185 1584721306 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_overlay_os_hook.c.obj dfb898e7781d63e7 +49047 49215 1584721306 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_vectors.S.obj c1ccbb9188cc067c +49016 49362 1584721306 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_intr.c.obj 865d3117c4bcb29 +48767 49464 1584721306 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/queue.c.obj 9d352974eb315b89 +49216 49470 1584721306 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-openocd.c.obj 5450bbe96d8a2986 +49185 49531 1584721306 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/event_groups.c.obj f56fde5f750bad66 +49163 49541 1584721306 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/croutine.c.obj 154860805ec1bba5 +49362 49553 1584721306 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/list.c.obj 2ad490749eb75bb3 +49531 49884 1584721307 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj 42cccb29bc9c0ec8 +49465 50046 1584721307 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/timers.c.obj 4942c7450ca085a8 +49553 50246 1584721307 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_roller.c.obj 6f974a868dcf5a3b +49541 50313 1584721307 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_uart.c.obj a7d09415805769ae +49884 50460 1584721307 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_slider.c.obj 1c01458e8eaead6b +50246 50475 1584721307 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj 9654c6dcef57d990 +50046 50499 1584721307 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_preload.c.obj b50d9b0359750880 +48781 50512 1584721307 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/tasks.c.obj 297323a43a795178 +50313 50548 1584721307 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pread.c.obj bc52472910e488af +49470 50651 1584721307 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj 304d1a82f8620d68 +50475 50665 1584721307 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj d471cfa164ecbc32 +50460 50721 1584721308 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pwrite.c.obj 8c5ae97cb63df978 +50651 50764 1584721308 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj d3c5737ce9f525f6 +50499 50799 1584721308 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/select.c.obj c822e2feace2c3 +50548 50805 1584721308 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj c458412c94787c5 +50512 50895 1584721308 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscall_table.c.obj b080faab5aa15e6d +50721 50990 1584721308 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/utime.c.obj 3d45cd4008b0cbf7 +50665 51090 1584721308 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj 154e740c9290f220 +50805 51092 1584721308 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj 61d7575b725ed54a +50764 51221 1584721308 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj 8cf24f7dbe90eaf3 +50991 51256 1584721308 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj 3edc554c4ff020c9 +50895 51365 1584721308 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj 5da45900450700bd +51221 51511 1584721308 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborencoder_close_container_checked.c.obj b4b7ed1f1547a57a +51090 51606 1584721308 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/gcov/gcov_rtio.c.obj 2fee4ccaef2f834b +51365 51656 1584721308 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborparser_dup_string.c.obj 7768c63b64457881 +50800 51696 1584721308 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj 320fee64397eda56 +51511 51787 1584721309 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborerrorstrings.c.obj 9035c5daef739c90 +51606 51894 1584721309 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborpretty_stdio.c.obj 4d51eac59d0c6649 +51256 52108 1584721309 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborencoder.c.obj 247949de5d51a55d +51696 52299 1584721309 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborpretty.c.obj affc8bb8561a341e +52109 52362 1584721309 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/open_memstream.c.obj 13fff6ca8ac994db +51656 52399 1584721309 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborparser.c.obj b4d4312407ff71e8 +51787 52592 1584721309 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cbortojson.c.obj 74324ae7775591ae +52362 52677 1584721309 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/address.c.obj 9a4fec321df197de +51895 52711 1584721309 esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborvalidation.c.obj a0e8604df906186c +52399 52783 1584721310 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/async.c.obj 8d495974b937ac69 +52299 52978 1584721310 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/block.c.obj 7294f72f1f8c7ca0 +52711 53037 1584721310 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_hashkey.c.obj e399f7f361c2f848 +52783 53060 1584721310 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_time.c.obj ab024667b2039648 +52677 53164 1584721310 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_event.c.obj 2283529606f70795 +53037 53416 1584721310 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/encode.c.obj 122a7bab39cb5ce0 +53060 53432 1584721310 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/str.c.obj d5a9f84b84f0522f +53164 53550 1584721310 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/mem.c.obj 3d39030e23a87d9a +52592 53599 1584721310 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_session.c.obj 10acbcdb056cba71 +52978 53892 1584721311 esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_debug.c.obj be2e969a76a2cdc4 +53432 54157 1584721311 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/option.c.obj e18c0b2e57db6bb1 +53550 54301 1584721311 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/pdu.c.obj 3f49e97d9f7e0ebe +54157 54596 1584721311 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/subscribe.c.obj 93feeba47eaec37c +53600 54841 1584721312 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/resource.c.obj cacdf89938b98f2 +54301 54963 1584721312 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/uri.c.obj a611bc238261093f +54842 55208 1584721312 esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_notls.c.obj d0c1ca54d645c434 +53892 55262 1584721312 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_io.c.obj aca18759def23be6 +53416 55398 1584721312 esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/net.c.obj 4470e1bb48f5c606 +54963 55405 1584721312 esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj aa0ebf3e6728b082 +55208 55431 1584721312 esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj 9a59b985e6955e11 +55262 55598 1584721312 esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl.c.obj 24d982b83218a4 +55431 55754 1584721313 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_callbacks.c.obj 9d9ba1a6a6a22419 +55754 55965 1584721313 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_debug.c.obj 817903877042269c +55598 56027 1584721313 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_buf.c.obj 101534a39c91dd04 +54596 56049 1584721313 esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_mbedtls.c.obj bced42c7ca3e10e5 +55405 56248 1584721313 esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj 796310fd77e59952 +55965 56320 1584721313 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_hd_huffman.c.obj bd12a18b524ee68f +56049 56384 1584721313 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_hd_huffman_data.c.obj 7ee40bdcc1e6bcf7 +56320 56542 1584721313 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_helper.c.obj ec80736441f59c91 +56542 56724 1584721314 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_mem.c.obj ce48331443aaf0a1 +56027 56739 1584721314 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_frame.c.obj 67fb87ce93966abb +56739 56853 1584721314 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_npn.c.obj ea78511ba3c36ea0 +56384 56879 1584721314 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_http.c.obj 57353bdfc65247b0 +56724 56912 1584721314 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_map.c.obj 5992ec890d4f4db9 +56854 57044 1584721314 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_option.c.obj 6c59dda046c40bae +56879 57052 1584721314 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_outbound_item.c.obj a788e073ead533 +56913 57075 1584721314 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_priority_spec.c.obj 6fc8507795d644ee +57052 57204 1584721314 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_rcbuf.c.obj 9a83f46ab7e6c1aa +57044 57269 1584721314 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_pq.c.obj 9e7738f61f98886c +57075 57291 1584721314 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_queue.c.obj ec4a186193319d08 +57291 57505 1584721314 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_version.c.obj b8306e62428490f5 +57270 57725 1584721315 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_stream.c.obj da600c233d46dfd5 +57505 57940 1584721315 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_submit.c.obj 8368fa7dae173efd +55398 58087 1584721315 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj 35435ee33b92d9cb +56248 58325 1584721315 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_hd.c.obj 3df69efc95d005b6 +57941 58684 1584721315 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj b8b1a0fe21587144 +58326 58887 1584721316 esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir/esp_adc_cal.c.obj 2f041a8e2210807 +58684 58898 1584721316 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj b52125b27c96c388 +58088 58925 1584721316 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj b71ba1bff3705309 +58888 59091 1584721316 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj a62079be50dbde78 +58898 59145 1584721316 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/esp32/gdbstub_esp32.c.obj 258011896e7a5838 +58926 59148 1584721316 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub_xtensa.c.obj 6620b7edeabfed4a +59148 59726 1584721317 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_tcp.c.obj f85227cab6cc8f4b +59145 59774 1584721317 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj b89c3b1a0ce0be5 +59091 59884 1584721317 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj 511eff05fa7a2521 +59774 60018 1584721317 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_utils.c.obj 9eb9306c2d6d1299 +59726 60152 1584721317 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj 89ab776deda22757 +60152 60491 1584721317 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj 98a8466d4c84c61e +59884 60511 1584721317 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj 43bcdf6993649fe4 +57725 60725 1584721318 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/port/http_parser.c.obj f7756d2326dec38b +60492 60779 1584721318 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj 8a69e5e1df34cabe +60018 61257 1584721318 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj 11ef985b7662b9c1 +60725 61405 1584721318 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj d9271aa27017a928 +57205 61417 1584721318 esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_session.c.obj a73e6f14b875f341 +60779 61473 1584721318 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj 9f5f65ea4c7494c5 +60511 61662 1584721318 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj 26ebe6529b4cb778 +61257 61768 1584721319 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj 202c727af12b3e5e +61417 61852 1584721319 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj 82846741310a0207 +61473 61862 1584721319 esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj 297c6fb94b2f35a8 +61852 61997 1584721319 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj 401cb6bf5bb8296f +61662 62102 1584721319 esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj 9d47a38df5bf669b +61405 62181 1584721319 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj 749ce31a3a5cc7e5 +61997 62285 1584721319 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj fb6f1aef8943018c +61862 62341 1584721319 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj bdb2f97d0697f25a +62181 62436 1584721319 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj 9f69b57bc5894739 +62286 62492 1584721319 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj 59f965d90a47d3f8 +62103 62586 1584721319 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj 3594e408055fcb6d +62341 62689 1584721319 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj 1c9dabaa2725f8c +62493 62915 1584721320 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj 50f4986a63f08ff0 +62436 63093 1584721320 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj e8d25e018af607aa +62915 63527 1584721320 esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_networking.c.obj 6e7a9e919eb86c68 +63094 63683 1584721320 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj 28fc9f08675e91b0 +62689 63773 1584721321 esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_console.c.obj 2519ef7a16afef5e +63528 64033 1584721321 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj cc450b83e756ed69 +63683 64167 1584721321 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj f57b8f9d5c83fca9 +63773 64312 1584721321 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj 889f2b70e50af8e2 +64167 64541 1584721321 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj 372ddedae00b1e7e +64033 64710 1584721321 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj f8ceff2a3a68ec99 +64312 65051 1584721322 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj 9f8da41213a1c9bc +61768 65099 1584721322 esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj 5d0b5685da094e6a +64710 65315 1584721322 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj c6e5545c8fee9de1 +64541 65413 1584721322 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj a92288bc167bd81d +65051 65551 1584721322 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj ffbbb91da8ed7ac2 +65099 65674 1584721322 esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl.c.obj bdcb58a319c169db +65315 66108 1584721323 esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl_sdio.c.obj aa7a871a87b95990 +65674 66327 1584721323 esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmlrole.c.obj ce3857ad0e7f5b84 +66327 66380 1584721323 esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmltok_ns.c.obj f2aa70c0461d6824 +66380 66430 1584721323 esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmltok_impl.c.obj bab38bb4d44c55a +65413 66563 1584721323 esp-idf/esp_websocket_client/CMakeFiles/__idf_esp_websocket_client.dir/esp_websocket_client.c.obj f4e48cee8f92e161 +66430 66761 1584721324 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj e106348a6edfeb31 +66563 66862 1584721324 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj 31db5ed9c923e53d +62586 66928 1584721324 esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns.c.obj c7504098c082300a +66761 67289 1584721324 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj c77ecd49056e4b2b +66862 67369 1584721324 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj cd63d20b2920b42c +66928 67460 1584721324 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj 3e11428816d7f7de +67369 67522 1584721324 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj e88ff0d9578ed664 +67522 67777 1584721325 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj 16e00c6e9ef3f72e +67460 67876 1584721325 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj e3201e6be00444f1 +67777 68139 1584721325 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj c59f8d47a84f56cc +51092 68152 1584721325 esp-idf/asio/CMakeFiles/__idf_asio.dir/asio/asio/src/asio.cpp.obj af2978ca9e038457 +67876 68207 1584721325 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj f2a8bb287c777ee1 +67289 68316 1584721325 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj ad199748bb405907 +68140 68498 1584721325 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj 5203de01f65bbd70 +68153 68510 1584721325 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj 8f3bed43b360de6f +68510 69045 1584721326 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj 9292a5514f9ea1a0 +68316 69272 1584721326 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj 7ccfdef716762379 +68498 69282 1584721326 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj 9169d3324f06950f +69045 69533 1584721326 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/common/esp_modbus_slave.c.obj 807ce46d4c96526 +69272 69651 1584721326 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/mb_m.c.obj 72e75d31a0f96390 +65551 69881 1584721327 esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmlparse.c.obj 23ca4037bc1a43ff +69282 69959 1584721327 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/common/esp_modbus_master.c.obj 8d9a9280777e3a28 +69651 70080 1584721327 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/mb.c.obj a43fca590a0755c4 +69533 70106 1584721327 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/ascii/mbascii.c.obj 651b7bf3bcaf0dd +69959 70285 1584721327 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/ascii/mbascii_m.c.obj 12dd190d7eb03911 +68208 70303 1584721327 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj 597dbb77a9b01d58 +70107 70350 1584721327 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/tcp/mbtcp.c.obj 963b9cc9f6261efa +69882 70364 1584721327 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbrtu.c.obj 1f91f22e3b7ed3f1 +70081 70463 1584721327 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbrtu_m.c.obj 9c5b9c2589ffcbd9 +70304 70526 1584721327 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbcrc.c.obj 2b81c984e470f966 +70285 70563 1584721327 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/port.c.obj 92c7849bd61a04e8 +66108 70605 1584721327 esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmltok.c.obj 47266e3c03a23dba +70350 70657 1584721327 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portevent.c.obj e34334618db0d59c +70364 70709 1584721327 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portevent_m.c.obj 9fff89126e1e2076 +70526 70807 1584721328 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portother_m.c.obj 11d4206393a58f49 +70464 70816 1584721328 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portother.c.obj 2eb97a40b12acad7 +70816 70904 1584721328 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncdiag.c.obj 735d9cfd4d8793cf +70605 70911 1584721328 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/porttimer.c.obj 79e0a736f5552dce +70808 70999 1584721328 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfunccoils_m.c.obj 2ab0d67a1078af6f +70658 71081 1584721328 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/porttimer_m.c.obj d9e00b6d8ebe0f10 +70563 71117 1584721328 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portserial.c.obj be30684ba140381f +70912 71133 1584721328 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncdisc.c.obj 2f73c48aaca0cf46 +70904 71167 1584721328 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfunccoils.c.obj ac6f37301f07a285 +70711 71193 1584721328 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portserial_m.c.obj c35cb3cf7397b92a +71167 71327 1584721328 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncinput_m.c.obj c6018aeae62b1289 +71193 71378 1584721328 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncother.c.obj 7a4e00b62dbf1386 +70999 71382 1584721328 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncdisc_m.c.obj c92754103c8d2a7e +71133 71402 1584721328 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncinput.c.obj 4b299022919d3a53 +71081 71445 1584721328 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncholding.c.obj 25d6038b731bd372 +71402 71657 1584721328 esp-idf/jsmn/CMakeFiles/__idf_jsmn.dir/src/jsmn.c.obj f577c06d7a66763c +71117 71690 1584721328 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncholding_m.c.obj 81ea55ef4ffa61fb +71382 71755 1584721329 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbutils.c.obj dcc466a655c957bf +71327 71911 1584721329 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/serial_slave/modbus_controller/mbc_serial_slave.c.obj 633a4d8060795a44 +71690 72128 1584721329 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c.obj 77b5c1295a9a3bd6 +71378 72178 1584721329 esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/serial_master/modbus_controller/mbc_serial_master.c.obj e0ecf4082ea1f0c2 +71911 72269 1584721329 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c.obj 3677f4bcf45dad6a +72128 72283 1584721329 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/crypto_auth.c.obj 15a7ef56cecaca50 +72178 72361 1584721329 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/hmacsha256/auth_hmacsha256.c.obj 9fcc1a783cb72723 +71755 72384 1584721329 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj 62f3cc664bce71ea +72283 72435 1584721329 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/hmacsha512256/auth_hmacsha512256.c.obj d4a27b785122d348 +72361 72454 1584721329 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/crypto_box.c.obj abd4ea6e41443fe3 +72272 72465 1584721329 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/hmacsha512/auth_hmacsha512.c.obj a2b286c91c41ee91 +72385 72608 1584721329 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/crypto_box_easy.c.obj 8abe51d0049a1840 +72465 72627 1584721329 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/box_curve25519xsalsa20poly1305.c.obj ae0f70248c2b2b9c +72435 72645 1584721329 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/crypto_box_seal.c.obj 1b5441a226232129 +71657 72676 1584721329 esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj a27faa7215c6a66c +71445 72684 1584721329 esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj 59f4f810a7213cd +72454 72699 1584721329 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305.c.obj b5c53374b287a899 +72645 72751 1584721330 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/hsalsa20/core_hsalsa20.c.obj a6b38abff38247f3 +72751 72923 1584721330 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/generichash_blake2.c.obj a9d540f958c6b76d +72699 72926 1584721330 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/crypto_generichash.c.obj 52a2273de52af3af +72677 72965 1584721330 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/hsalsa20/ref2/core_hsalsa20_ref2.c.obj 5eced91cb32a3c24 +72923 73001 1584721330 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-avx2.c.obj 19ff8cc6cb8ac574 +72628 73049 1584721330 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/hchacha20/core_hchacha20.c.obj 62087121984356e7 +73002 73088 1584721330 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-ssse3.c.obj 952d694eb90019d6 +72684 73097 1584721330 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/salsa/ref/core_salsa_ref.c.obj 6a0a0f02f878f796 +72965 73125 1584721330 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-sse41.c.obj 77371fccafccd872 +73097 73274 1584721330 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/crypto_hash.c.obj 489be07a81d1c90 +73127 73281 1584721330 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha256/hash_sha256.c.obj f9569c72d9d5f6fd +73088 73313 1584721330 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/generichash_blake2b.c.obj 221e5f2271c7ec85 +73282 73461 1584721330 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha512/hash_sha512.c.obj ebaa4438b13c1e72 +73049 73647 1584721330 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-ref.c.obj 69dcc4730af68d4c +73461 73672 1584721330 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_kdf/crypto_kdf.c.obj 3eda3790123351a9 +73647 73874 1584721331 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_kdf/blake2b/kdf_blake2b.c.obj ae9bb2b83bd7a925 +73672 73974 1584721331 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_kx/crypto_kx.c.obj 3e5c351fe06cb7f1 +73874 74110 1584721331 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/crypto_onetimeauth.c.obj dcd92fbe7715866 +73975 74225 1584721331 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c.obj 3b288f5cf514bc8c +74225 74425 1584721331 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c.obj d27ae5188dfc06b0 +74425 74692 1584721331 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/crypto_pwhash.c.obj f4d5f626bb3d59f +74110 74746 1584721332 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna.c.obj bba78b4e2642cc +73274 74928 1584721332 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha256/cp/hash_sha256_cp.c.obj 9570743e8b38490d +74693 75122 1584721332 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.c.obj 735bc82665621b74 +74746 75177 1584721332 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-encoding.c.obj d92ea9b8eda8db5e +75123 75235 1584721332 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-ssse3.c.obj 638becee2772cc7d +75235 75440 1584721332 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/blake2b-long.c.obj bc8b701bc1c5fb71 +75177 75501 1584721332 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2.c.obj e99d8a08df6509c5 +75440 75771 1584721333 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/pwhash_argon2i.c.obj 13e18e4ebd536249 +75501 75801 1584721333 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c.obj 89df0a06bd3d5055 +75771 75933 1584721333 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.c.obj cb48145f362e60d3 +73314 76107 1584721333 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha512/cp/hash_sha512_cp.c.obj 8aa8bea207cfe487 +75801 76129 1584721333 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pwhash_scryptsalsa208sha256.c.obj 922bf075248f1513 +75933 76146 1584721333 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c.obj f3ac04c5671cbf9e +76146 76205 1584721333 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/crypto_scalarmult.c.obj ce00e22689828234 +76205 76281 1584721333 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519.c.obj cc1934860be62c45 +76129 76348 1584721333 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c.obj 2034a49b23a65213 +76281 76395 1584721333 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.c.obj 79c70619e731d99a +76395 76482 1584721333 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/consts.S.obj 81f13b8f12fc536f +76107 76561 1584721333 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c.obj c46e1c1a13bae9ca +76348 76616 1584721333 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/x25519_ref10.c.obj c030272ba593354a +76482 76635 1584721333 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c.obj 4ccba63c06ff35db +76561 76673 1584721333 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_invert.c.obj 110aa57e869e2de5 +76636 76713 1584721333 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_nsquare.S.obj 8743000a074b3e5e +76616 76715 1584721334 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_mul.S.obj 99d52c39f34a1519 +76673 76766 1584721334 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_pack.S.obj abad0407760e164c +76715 76799 1584721334 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder.S.obj f3b4e4a3ecf23826 +76714 76830 1584721334 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c.obj e752a2c94a51b970 +76766 76833 1584721334 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder_base.S.obj 222d8c3c511725d6 +76799 76867 1584721334 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/sandy2x.S.obj 48f2934cba25a826 +76830 76919 1584721334 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox.c.obj f3639acba24bcd43 +76920 77127 1584721334 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/xsalsa20poly1305/secretbox_xsalsa20poly1305.c.obj 82344941c72dac42 +76867 77165 1584721334 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c.obj d8fda962f02c9486 +77127 77208 1584721334 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/crypto_shorthash.c.obj b322b006db6a757f +77165 77224 1584721334 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/shorthash_siphash24.c.obj 1e9597ca70ddccfe +76833 77234 1584721334 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox_easy.c.obj b7e4131d7869d8a +77208 77268 1584721334 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/shorthash_siphashx24.c.obj 14dfd0795f1c75bf +77268 77462 1584721334 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/crypto_sign.c.obj e3679486fd34544b +77225 77534 1584721334 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphash24_ref.c.obj 508b92b03b4a9dc9 +77463 77649 1584721334 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/sign_ed25519.c.obj 2c1fbcf0dfd5dd38 +77536 77665 1584721334 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/keypair.c.obj b0c2b4fd3b78dbc0 +77234 77740 1584721335 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphashx24_ref.c.obj 6adfac9e3cc488fa +77649 77867 1584721335 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/obsolete.c.obj 5d0a2d4195b303f9 +77867 77955 1584721335 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/crypto_stream.c.obj f4463bbd02c53f32 +77666 77966 1584721335 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/open.c.obj b98bdc0d2f2fb2e2 +77741 78071 1584721335 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/sign.c.obj 6835160f86fede5b +77957 78116 1584721335 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/stream_aes128ctr.c.obj c4ce9b12b1e0da97 +78116 78298 1584721335 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/consts_aes128ctr.c.obj c0fa47bf1f526aaa +78298 78698 1584721335 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/int128_aes128ctr.c.obj 3e2496a22a1ee92 +78698 78849 1584721336 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/stream_aes128ctr_nacl.c.obj 89ef4303b3f35442 +74928 79288 1584721336 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-ref.c.obj fc243ea82a7fe648 +79288 79542 1584721336 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/stream_chacha20.c.obj e529e440a5b33c84 +79542 79756 1584721337 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau/chacha20_dolbeau-avx2.c.obj e10798e38ae8dff5 +79757 79904 1584721337 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau/chacha20_dolbeau-ssse3.c.obj 96a4c9c276013b52 +79904 80570 1584721337 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/ref/chacha20_ref.c.obj e41de5d774971466 +80570 80828 1584721338 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/stream_salsa20.c.obj 7dcc5858c8eb9cec +80828 81035 1584721338 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/ref/salsa20_ref.c.obj c23881360fc779fc +81035 81132 1584721338 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6/salsa20_xmm6-asm.S.obj 4e1c604892c88b73 +81132 81233 1584721338 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6/salsa20_xmm6.c.obj 1f4087eb9bd86592 +81233 81379 1584721338 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/salsa20_xmm6int-avx2.c.obj 4de04da526a49877 +77966 81537 1584721338 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/afternm_aes128ctr.c.obj de06051b91cb28ac +81380 81563 1584721338 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/salsa20_xmm6int-sse2.c.obj 177795b39cde826d +81541 81682 1584721338 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa2012/stream_salsa2012.c.obj 3a23d9bde3cee3f1 +81563 81762 1584721339 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa2012/ref/stream_salsa2012_ref.c.obj 91a8ede854a2b385 +81682 81858 1584721339 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa208/stream_salsa208.c.obj ce595ca62d74803a +78071 81931 1584721339 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/beforenm_aes128ctr.c.obj c49dcd868de03aaa +81763 81945 1584721339 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa208/ref/stream_salsa208_ref.c.obj a6dfdd954d14aad8 +81945 81995 1584721339 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_verify/sodium/verify.c.obj 9402533cbd0fd47b +81858 82073 1584721339 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/xchacha20/stream_xchacha20.c.obj b9c05c7c93d33ae9 +81931 82146 1584721339 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/xsalsa20/stream_xsalsa20.c.obj 7e1aa4e064e40c4d +81995 82149 1584721339 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/randombytes.c.obj 4b5cf02eab7b537 +82073 82248 1584721339 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/nativeclient/randombytes_nativeclient.c.obj 347e1cd7ca08e6fb +82248 82438 1584721339 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/core.c.obj aee22981f3003d4f +82149 82467 1584721339 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c.obj 31cda8546d6e1d6d +82146 82618 1584721339 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/salsa20/randombytes_salsa20_random.c.obj 6545012d2246312f +82438 82700 1584721339 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/runtime.c.obj 8b6a179c784c887d +78849 82738 1584721340 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/xor_afternm_aes128ctr.c.obj 5a4a5bfeb4104893 +72608 82749 1584721340 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/curve25519/ref10/curve25519_ref10.c.obj 5be0b87a81435b7a +82618 82763 1584721340 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/version.c.obj 3d8811130e727e71 +82468 82836 1584721340 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/utils.c.obj f048c0cb42e6b822 +82700 82883 1584721340 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/port/randombytes_esp32.c.obj eecf5a28dd1201b9 +82749 83020 1584721340 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj 7062b66aa66bfdb7 +82838 83029 1584721340 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_cert.c.obj 205ab7f9472058ac +82883 83031 1584721340 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_stack.c.obj 4141dfe3265bf85e +83021 83292 1584721340 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_methods.c.obj 5384856d306eb903 +83032 83302 1584721340 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_pkey.c.obj 4b7866958812a761 +82738 83371 1584721340 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj d19a90656fc06c1a +83292 83513 1584721340 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/platform/ssl_port.c.obj 63bdc0ca67642fff +83029 83806 1584721341 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_lib.c.obj ce7316480f979385 +83372 83821 1584721341 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_x509.c.obj c801572ebf4a0407 +83302 83866 1584721341 esp-idf/openssl/CMakeFiles/__idf_openssl.dir/platform/ssl_pm.c.obj 569235de01f267e0 +83822 84173 1584721341 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj 5ea28072c1ab44c7 +83867 84240 1584721341 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj 6333509d3cbc39c3 +83513 84367 1584721341 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj ccfc36a71b3823d9 +82763 84374 1584721341 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj 21b8999d5a554748 +84374 84700 1584721341 esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp.c.obj fc77a804666a1f71 +83808 84724 1584721342 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj bbf077070d08a468 +84173 84776 1584721342 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj ce7d71ac979eda00 +84776 85037 1584721342 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj 78827540d6b90b8b +84700 85182 1584721342 esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp_macro.c.obj cf84670045e7a9ae +84240 85298 1584721342 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj 22cdaff831b18091 +85183 85314 1584721342 esp-idf/ulp/libulp.a b5ba4f97522c9ec3 +85314 85455 1584721342 esp-idf/esp_http_server/libesp_http_server.a f102dcce951d3e43 +85037 85526 1584721342 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj c8e1e15f8353f464 +84724 85543 1584721342 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj d8b890a27e15607c +85455 85584 1584721342 esp-idf/esp_http_client/libesp_http_client.a 4ffd10c652f4da0e +85585 85727 1584721343 esp-idf/tcp_transport/libtcp_transport.a ea2beb8be5ea9cac +85298 85851 1584721343 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj d51af9a3884185e0 +85727 85859 1584721343 esp-idf/esp-tls/libesp-tls.a 31affc00a434415b +85526 85896 1584721343 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj 91778db2385bdc3b +85859 86012 1584721343 esp-idf/nghttp/libnghttp.a c621045d4dc2c2e9 +84367 86074 1584721343 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj a380f08846187651 +86012 86088 1584721343 esp-idf/app_trace/libapp_trace.a b631249a9244a40a +86088 86205 1584721343 esp-idf/cxx/libcxx.a a50eeb7ca8b482fd +85851 86222 1584721343 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj 36186ba1a1951543 +86205 86330 1584721343 esp-idf/newlib/libnewlib.a 5e2a30a5c5c49886 +86331 86453 1584721343 esp-idf/vfs/libvfs.a 49e38bc49dfb99ad +86074 86531 1584721343 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj a963e18511b8fe60 +85896 86542 1584721343 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj 4f6a858ffa5799b1 +86453 86559 1584721343 esp-idf/freertos/libfreertos.a 8adaa22c425c727c +86222 86573 1584721343 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj 583dd5ef8282002 +86559 86630 1584721343 esp-idf/esp_timer/libesp_timer.a 33b8c301002404d9 +86542 86694 1584721343 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj 950dbd9e75ccf3f4 +86630 86759 1584721344 esp-idf/esp_common/libesp_common.a 5cf64d69b2c704cb +86759 86898 1584721344 esp-idf/esp32/libesp32.a bb91dfcc7ab96b25 +86532 86966 1584721344 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj 154c65ee938f4b0d +86898 86996 1584721344 esp-idf/perfmon/libperfmon.a b74d9df8a26398f8 +85543 87046 1584721344 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj d5c1c59a0ac1668b +86996 87079 1584721344 esp-idf/espcoredump/libespcoredump.a 61e4a4fb412fae8c +87080 87223 1584721344 esp-idf/pthread/libpthread.a 3a7af1abd593645d +86694 87367 1584721344 esp-idf/ca/CMakeFiles/__idf_ca.dir/gen_key.c.obj 39ce62fc2f3a8fb8 +87223 87436 1584721344 esp-idf/driver/libdriver.a 5cd66d74d6544f4f +86574 87518 1584721344 esp-idf/ca/CMakeFiles/__idf_ca.dir/ca.c.obj 74e59ce89cbe18b8 +87437 87573 1584721344 esp-idf/esp_ringbuf/libesp_ringbuf.a 52142642e68b28d5 +87367 87672 1584721344 esp-idf/files/CMakeFiles/__idf_files.dir/file.c.obj 79804aebf596a99a +86966 87684 1584721344 esp-idf/cmd_nvs/CMakeFiles/__idf_cmd_nvs.dir/cmd_nvs.c.obj 17ac4f8caf2bde34 +87574 87711 1584721344 esp-idf/heap/libheap.a 651625a391e6c741 +87047 87719 1584721345 esp-idf/cmd_system/CMakeFiles/__idf_cmd_system.dir/cmd_system.c.obj cda63d97d3fb5ea5 +87711 87777 1584721345 esp-idf/log/liblog.a 1274d7808513dadc +87673 87878 1584721345 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_debug.c.obj 4fce1d64252c2211 +87685 87929 1584721345 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_disp.c.obj e7b79369d28cdec0 +87518 88002 1584721345 esp-idf/wifi/CMakeFiles/__idf_wifi.dir/wifi.c.obj bedaf3b5bf1c0223 +87777 88019 1584721345 esp-idf/lwip/liblwip.a cfc5b7a574b9e094 +88019 88152 1584721345 esp-idf/esp_wifi/libesp_wifi.a effb86670d9970ec +87878 88173 1584721345 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw.c.obj 9effd3f734217e9f +88152 88268 1584721345 esp-idf/nvs_flash/libnvs_flash.a ae6808df23dc8a0b +87719 88297 1584721345 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_style.c.obj 52d5e15af4e61eda +88268 88394 1584721345 esp-idf/spi_flash/libspi_flash.a bd64ee73ae26c95c +72926 88497 1584721345 esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-ref.c.obj 9afba76276fe0460 +88394 88507 1584721345 esp-idf/app_update/libapp_update.a 629b42f69c26dd2b +88002 88601 1584721345 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_indev.c.obj b808d5fa89c109af +87930 88618 1584721345 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_group.c.obj 7bac27a1f58a0d25 +88507 88630 1584721345 esp-idf/bootloader_support/libbootloader_support.a 21371cc7af649699 +88630 88750 1584721346 esp-idf/efuse/libefuse.a 8b73fc3e19818359 +88298 88882 1584721346 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_refr.c.obj ef9cade6295943c4 +88601 88954 1584721346 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_label.c.obj a05c9101f10d65b5 +88750 89000 1584721346 esp-idf/wpa_supplicant/libwpa_supplicant.a 934adf958a664c37 +88618 89006 1584721346 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_arc.c.obj 23979b62a3c1b2f4 +88497 89132 1584721346 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_line.c.obj 4446bcd5c7cbcbc7 +89001 89161 1584721346 esp-idf/mbedtls/mbedtls/library/libmbedtls.a 48870cf31bc57c21 +89132 89238 1584721346 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font.c.obj bf835698759ddcc9 +89161 89312 1584721346 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a 4e4a6e95ce689861 +89006 89368 1584721346 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_fmt_txt.c.obj 2272d93eae217f19 +89312 89448 1584721346 esp-idf/mbedtls/mbedtls/library/libmbedx509.a cec41cc9a3a87882 +89448 89573 1584721346 esp-idf/esp_event/libesp_event.a 3706ea83ed15eb7f +88882 89591 1584721346 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_basic.c.obj 5c8cbe6ba49a2ab8 +88954 89665 1584721346 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_img.c.obj 3e79c98fcc35bb2b +89573 89673 1584721346 esp-idf/esp_netif/libesp_netif.a 9b9a8a1d361dc99f +89592 89721 1584721347 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_img_cache.c.obj 9b5db8c823823892 +89673 89748 1584721347 esp-idf/tcpip_adapter/libtcpip_adapter.a d3f10370c7462d1e +88173 89761 1584721347 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_obj.c.obj 727d8156fb6a4ed4 +89748 89873 1584721347 esp-idf/esp_eth/libesp_eth.a 80e079e349f37dcc +89368 89929 1584721347 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_triangle.c.obj 964da0e3d16fb033 +89873 89960 1584721347 esp-idf/soc/soc/esp32/libsoc_esp32.a 5535786e5680a71 +89721 90018 1584721347 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_28.c.obj d1291c399cb58da5 +89960 90116 1584721347 esp-idf/soc/libsoc.a 89c6ed906f4be8e2 +89666 90128 1584721347 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_img_decoder.c.obj bd5a579511f425fe +89929 90135 1584721347 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_12.c.obj 3fa8fc76ab2a58d3 +89761 90162 1584721347 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_28_compressed.c.obj 9c1ace5961e24bbe +90117 90164 1584721347 esp-idf/xtensa/libxtensa.a 47aacb275b830d77 +90019 90174 1584721347 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_12_subpx.c.obj 4cc79cc0175e0b28 +90164 90327 1584721347 esp-idf/asio/libasio.a 62a13e711bc33278 +90174 90345 1584721347 esp-idf/cbor/libcbor.a a95ad5cc568fa046 +90135 90392 1584721347 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_22.c.obj 6974afc77404164e +90327 90414 1584721347 esp-idf/coap/libcoap.a 44ce67ee174d4c41 +90345 90423 1584721347 esp-idf/console/libconsole.a 2633ce91f5d7cfbc +90392 90460 1584721347 esp-idf/esp_adc_cal/libesp_adc_cal.a 321a66f17fd37eef +90414 90486 1584721347 esp-idf/esp_gdbstub/libesp_gdbstub.a 17fa000c0dae215f +90423 90488 1584721347 esp-idf/esp_https_ota/libesp_https_ota.a fefb0d1df4e90f1e +90128 90514 1584721347 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_16.c.obj 5f608d75acfdc3d7 +90486 90523 1584721347 esp-idf/protobuf-c/libprotobuf-c.a f493e1ef2b08a025 +90460 90540 1584721347 esp-idf/esp_https_server/libesp_https_server.a ebdd02b3e26beb0f +90488 90556 1584721347 esp-idf/mdns/libmdns.a 9e64c996f85b3dcf +90540 90583 1584721347 esp-idf/esp_websocket_client/libesp_websocket_client.a 518e2577c9404339 +90514 90590 1584721347 esp-idf/sdmmc/libsdmmc.a 606b34034bb47675 +90523 90617 1584721347 esp-idf/protocomm/libprotocomm.a a24354d090c61c70 +90583 90632 1584721347 esp-idf/wear_levelling/libwear_levelling.a 8ffc856a1c7bda8e +90556 90645 1584721347 esp-idf/expat/libexpat.a 2f48a09ddd2977e8 +90162 90655 1584721347 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_unscii_8.c.obj 73e31b36ff5ae98a +90617 90663 1584721347 esp-idf/esp_local_ctrl/libesp_local_ctrl.a 2b6d82bc97e55a06 +90590 90678 1584721347 esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a c887be8cb213e66c +90633 90693 1584721347 esp-idf/fatfs/libfatfs.a d1d56c91828b233 +90656 90706 1584721347 esp-idf/jsmn/libjsmn.a e805679b5a44a9d1 +90645 90734 1584721348 esp-idf/freemodbus/libfreemodbus.a ff1b2ecc7df2affc +90693 90779 1584721348 esp-idf/mqtt/libmqtt.a 4b234aa7654b545c +90663 90781 1584721348 esp-idf/json/libjson.a 109e3c6dd4bbe827 +90707 90795 1584721348 esp-idf/openssl/libopenssl.a dd8fd619cead68da +90678 90826 1584721348 esp-idf/libsodium/liblibsodium.a bb822b24df56465d +90779 90827 1584721348 esp-idf/unity/libunity.a ffbd91855b17061e +90734 90836 1584721348 esp-idf/spiffs/libspiffs.a 3977dd0f919f2d3a +90795 90868 1584721348 esp-idf/ca/libca.a 3b311f6ce51ffc82 +90826 90885 1584721348 esp-idf/cmd_nvs/libcmd_nvs.a 1b7bb0daa3755fe0 +90827 90888 1584721348 esp-idf/cmd_system/libcmd_system.a a176a672918a9671 +90781 90896 1584721348 esp-idf/wifi_provisioning/libwifi_provisioning.a e2c7ff7a52f6a2dd +90868 90901 1584721348 esp-idf/wifi/libwifi.a 318bc43937909b13 +90836 90903 1584721348 esp-idf/files/libfiles.a dc77d04f5b6e0879 +89238 90947 1584721348 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_rect.c.obj 8aca6ef3abda6ffa +90901 90967 1584721348 prvtkey.pem.S c0beeb05054b7419 +90888 90971 1584721348 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_async.c.obj c1b77a32df346167 +90903 90976 1584721348 cacert.pem.S 1436f0cea1233619 +90967 91068 1584721348 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_tick.c.obj ace34562ba706fd7 +90896 91107 1584721348 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_disp.c.obj 12a449aa1a1664db +90885 91136 1584721348 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_bidi.c.obj d7902c183a5b2219 +90948 91177 1584721348 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_indev.c.obj e6f53d5f97567024 +90971 91222 1584721348 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_anim.c.obj 8ecaf3ff76cc80a2 +91177 91230 1584721348 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/__/__/prvtkey.pem.S.obj 78fbafb907d60883 +91136 91235 1584721348 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/__/__/cacert.pem.S.obj 4e58e55c8776aa81 +91230 91332 1584721348 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_log.c.obj f089ca5bfeb1c6ec +91068 91367 1584721348 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/url_decoder.c.obj dbae24252e3f5319 +91223 91394 1584721348 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_area.c.obj b10c8ec791873d17 +90976 91404 1584721348 esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj 41be94fe95b0d90c +91235 91482 1584721348 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_math.c.obj 462a35b53554eb13 +91332 91495 1584721348 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_circ.c.obj 202997958faffd8 +91405 91568 1584721348 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_gc.c.obj 448f4112e2008e7e +91368 91571 1584721348 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_color.c.obj 66af2e837cb4a999 +91496 91680 1584721348 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_mem.c.obj 11a2740fa109f7e7 +91572 91695 1584721348 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_utils.c.obj c35808897f55164 +91394 91748 1584721349 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_fs.c.obj 45f7cf13690b31d4 +91680 91750 1584721349 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_printf.c.obj e30e93e90f4d03cd +91749 91781 1584721349 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_templ.c.obj 276e5e71880a7851 +91695 91892 1584721349 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_task.c.obj d381f9301a745f0b +91482 91906 1584721349 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_ll.c.obj d66177a0ffcf43bd +91568 91983 1584721349 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_arc.c.obj f193955b8c42aa0a +91107 91999 1584721349 esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj f9a6aecfafc9fa29 +91750 92067 1584721349 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_txt.c.obj 5c90b1a971c0eadd +92000 92113 1584721349 esp-idf/https_server/libhttps_server.a 6d743a94847b6a8d +91906 92315 1584721349 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_bar.c.obj 50d1154181295318 +91781 92333 1584721349 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cont.c.obj 413a50c3e52bcfad +91984 92427 1584721349 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_btn.c.obj 71be0516cf4f6a0b +92427 92735 1584721350 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_imgbtn.c.obj c890f381ed20869 +92334 92823 1584721350 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cb.c.obj 4727fef952142b83 +92315 92883 1584721350 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_canvas.c.obj 43b7e8e55a8c652f +92113 92895 1584721350 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_calendar.c.obj b72ba10cf95b2db +92067 92932 1584721350 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_btnm.c.obj f2fd024e1fa975c0 +91892 93048 1584721350 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_chart.c.obj e42de0096ed3f041 +92735 93060 1584721350 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_kb.c.obj 67daf5e6fb72e4ec +92932 93243 1584721350 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_img.c.obj 88efed7666c5ce1b +93243 93434 1584721350 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_objx_templ.c.obj bd49836850faaaab +92895 93515 1584721350 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_gauge.c.obj 6973a6ef54b09656 +92824 93624 1584721350 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cpicker.c.obj 113e2913a117da44 +93435 93741 1584721351 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_led.c.obj 787ee24b05e1c9a3 +92883 93816 1584721351 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_ddlist.c.obj a98c4087602f25a7 +93048 93885 1584721351 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_label.c.obj 7428f1b67dfc3173 +93516 93897 1584721351 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_line.c.obj bb0b59641abccb8a +93742 94057 1584721351 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_lmeter.c.obj ab426369ed6b3b9a +93060 94183 1584721351 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_page.c.obj 6f17c5b3c9878f40 +93816 94265 1584721351 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_mbox.c.obj b042478a2f3dae8e +93885 94380 1584721351 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_spinbox.c.obj 5f97e2ca78812554 +93624 94420 1584721351 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_list.c.obj 227a331e98e4adb1 +94381 94550 1584721351 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_material.c.obj 9c05ca892aaa6973 +94183 94598 1584721351 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_sw.c.obj fe188861deb65216 +94421 94601 1584721351 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_default.c.obj f2439b9591ca2250 +94058 94724 1584721352 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_table.c.obj 1acbae399b7d2f14 +93897 94759 1584721352 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_tabview.c.obj 84735b92955f1401 +94724 94839 1584721352 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_alien.c.obj 6d4d2d8849b5eb7b +94601 94846 1584721352 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme.c.obj 644362a9742dda6a +94760 94980 1584721352 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark.c.obj c37cbf9639581e65 +94846 95006 1584721352 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_mono.c.obj 2426e6b1c266c187 +94840 95049 1584721352 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_zen.c.obj 98853c0323109b8c +94598 95066 1584721352 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_win.c.obj b123f7629e83a0e +94980 95105 1584721352 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_nemo.c.obj 8f330d16e32710ec +95008 95167 1584721352 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_night.c.obj 45081430404b2504 +94550 95216 1584721352 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_tileview.c.obj a6b5c10ef72076d6 +95066 95291 1584721352 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark_bg.c.obj 7efe1e0ab32b3d1 +95049 95340 1584721352 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_templ.c.obj 9a506e26e365bd4f +94265 95398 1584721352 esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_ta.c.obj c9b8ef9b9fde8f +95105 95439 1584721352 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_group/lv_test_group.c.obj 30ea81df3488af2e +95398 95633 1584721352 esp-idf/lvgl/liblvgl.a 9d5d10cf8ff1386b +95340 95691 1584721352 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/terminal/terminal.c.obj a75dde4af60e08be +95439 95710 1584721352 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/tpcal/tpcal.c.obj e5fee4d095828f24 +95291 95723 1584721353 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/sysmon/sysmon.c.obj 9d8b9bf34a2485d8 +95167 95734 1584721353 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/demo.c.obj 37870f9fedb8a664 +95633 95940 1584721353 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_misc/lv_test_task.c.obj 9abe6909bdb766aa +95734 95948 1584721353 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.c.obj 7ecc016acfcde5cc +95691 95961 1584721353 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_obj/lv_test_obj.c.obj 51e8159b9d8e7d5e +95711 96032 1584721353 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.c.obj 775d7c5f8168a349 +95723 96114 1584721353 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.c.obj c5fe89752f4cfa2c +95940 96194 1584721353 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.c.obj 5be34bf504cba57c +96032 96241 1584721353 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.c.obj b488556f433ae2c2 +95961 96255 1584721353 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker/lv_test_cpicker.c.obj c218b169a7b1f0e4 +95948 96284 1584721353 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas.c.obj 7060c0e50fb7cebe +96194 96398 1584721353 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.c.obj 9e1d048f0cb8e829 +96115 96410 1584721353 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.c.obj b73f7e0fbb374dc8 +96284 96495 1584721353 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.c.obj 2225027a91639d9e +96255 96581 1584721353 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img/img_flower_icon.c.obj b157eec9a66492c9 +96241 96605 1584721353 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.c.obj 789687e77b9fb5f +96410 96684 1584721353 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_1.c.obj ca849668c650854b +96398 96718 1584721354 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.c.obj 5883b7f7471b8996 +96495 96724 1584721354 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_2.c.obj 78e8e8ce3364a1ac +96582 96877 1584721354 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_3.c.obj 580d8a4ba01c0687 +96606 96887 1584721354 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_4.c.obj 77fab12ddf03da3d +96718 96964 1584721354 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.c.obj 5100bccb56e45647 +96684 97015 1584721354 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.c.obj 2f3778df65976aec +96724 97043 1584721354 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.c.obj 810cffb50c01d7cd +96878 97167 1584721354 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.c.obj e42789913e141329 +96887 97176 1584721354 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.c.obj df65e189b5612480 +96964 97235 1584721354 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.c.obj 25b853d860fa1e5f +97044 97292 1584721354 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.c.obj bc699fe06fab5555 +97015 97299 1584721354 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.c.obj 6fa514a3b01ec059 +97177 97507 1584721354 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.c.obj eb7dce3d401265e1 +97299 97523 1584721354 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_stress/lv_test_stress.c.obj f15fcaeda5c9a9f6 +97167 97533 1584721354 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.c.obj 34ba8d468dd6dc8d +97235 97541 1584721354 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.c.obj 1d329f38a22d0e8f +95216 97678 1584721354 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/img_bubble_pattern.c.obj c8e13950b015b256 +97292 97684 1584721354 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.c.obj b2fa91a6a64edf6e +97507 97805 1584721355 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.c.obj dcac928b13cce850 +97541 97835 1584721355 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.c.obj cf94ca2b4ba65b96 +97678 97851 1584721355 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.c.obj 1c101e68373fca22 +97533 97906 1584721355 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.c.obj 411286b25a0b427 +97523 97918 1584721355 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.c.obj 70f12589ca803c6 +97684 98010 1584721355 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.c.obj 19be4538508dc608 +97805 98113 1584721355 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.c.obj 377acb21b2d72d7d +97835 98126 1584721355 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_alpha.c.obj f5c2cd6258ebb453 +97851 98142 1584721355 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_chroma.c.obj ab7a296665a468a2 +97918 98169 1584721355 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.c.obj 4be303abe85d0652 +98010 98223 1584721355 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/flower_icon_alpha.c.obj f3bcdf88c859a2f0 +97906 98296 1584721355 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/red_flower.c.obj e769cdfc8714c3f6 +98113 98385 1584721355 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/lv_tutorial_images.c.obj 4e23901008062f0f +98227 98528 1584721355 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.c.obj af3dc3966c6fcc2 +98126 98534 1584721355 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/red_rose_16.c.obj aa638c4910e76634 +98169 98564 1584721355 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.c.obj e24d7087ead2f37f +98143 98571 1584721355 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts/arial_20.c.obj 1a64cad1b833569c +98297 98582 1584721355 esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.c.obj bc2fefc4c4c1758a +98582 98727 1584721355 esp-idf/lv_examples/liblv_examples.a 82f3a76acecb0edf +98385 98766 1584721356 esp-idf/lvgl_esp32_drivers/CMakeFiles/__idf_lvgl_esp32_drivers.dir/lvgl_driver.c.obj a796265650be4e13 +98767 98876 1584721356 esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a 279a1c1b59b4b1af +98528 98901 1584721356 esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/disp_driver.c.obj bcc265ec29cd26b3 +98564 98948 1584721356 esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/hx8357.c.obj 22988675a6acd3e9 +98534 99189 1584721356 esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/disp_spi.c.obj 4a5ca543f62b88c +98727 99202 1584721356 esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/ili9488.c.obj c1d719848a067371 +98571 99264 1584721356 esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/ili9341.c.obj e201c5ea78bf2ab1 +98902 99321 1584721356 esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/ft6x36.c.obj 56ffb803817dc4fb +98949 99435 1584721356 esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/stmpe610.c.obj 6248cb2862536cc0 +99203 99497 1584721356 esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/tp_i2c.c.obj f2a34408f2aebf80 +99189 99633 1584721356 esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/touch_driver.c.obj eec018503406620b +98877 99649 1584721356 esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/st7789.c.obj dc09bb92f0e1ca1b +99321 99663 1584721356 esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/xpt2046.c.obj 13bf91f9cc30715d +99649 99688 1584721356 esp-idf/lvgl_tft/liblvgl_tft.a 54e6a07d61896206 +99265 99739 1584721357 esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/tp_spi.c.obj d5f25284dbd09a44 +99739 99763 1584721357 esp-idf/lvgl_touch/liblvgl_touch.a a84b401e288a8a96 +99763 99782 1584721357 esp-idf/main/libmain.a e50809bc3b1cf5a6 +99783 101310 1584721358 esp-idf/esp32/ld/esp32.project.ld 4c8943c0d8be2de2 +101310 101339 1584721358 CMakeFiles/bakalarka.elf.dir/project_elf_src.c.obj 788129ce217e4ec7 +101340 106914 1584721364 bakalarka.elf 336085284dda7972 +106914 107442 1584721364 .bin_timestamp afa4c1e894b79d8f +0 73 0 clean a7c70eacb11a5051 diff --git a/build/CMakeCache.txt b/build/CMakeCache.txt new file mode 100644 index 0000000..6b0e50e --- /dev/null +++ b/build/CMakeCache.txt @@ -0,0 +1,660 @@ +# This is the CMakeCache file. +# For build in directory: /home/mithras/Documents/bakalarka/build +# It was generated by CMake: /usr/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//No help, variable specified on the command line. +CCACHE_ENABLE:UNINITIALIZED=0 + +//Path to a program. +CMAKE_AR:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_AR:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_RANLIB:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib + +//Flags used by the assembler during all build types. +CMAKE_ASM_FLAGS:STRING= + +//Flags used by the assembler during debug builds. +CMAKE_ASM_FLAGS_DEBUG:STRING=-g + +//Flags used by the assembler during release minsize builds. +CMAKE_ASM_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the assembler during release builds. +CMAKE_ASM_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the assembler during Release with Debug Info builds. +CMAKE_ASM_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Choose the type of build: None Debug Release Coverage ASan ASanDbg +// MemSan MemSanDbg Check CheckFull +CMAKE_BUILD_TYPE:STRING= + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib + +//C++ Compiler Base Flags +CMAKE_CXX_FLAGS:STRING=-mlongcalls -Wno-frame-address + +//Flags used by the compiler during debug builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the compiler during release builds for minimum +// size. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the compiler during release builds with debug info. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_AR:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib + +//C Compiler Base Flags +CMAKE_C_FLAGS:STRING=-mlongcalls -Wno-frame-address + +//Flags used by the compiler during debug builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the compiler during release builds for minimum +// size. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the compiler during release builds with debug info. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Flags used by the linker. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//Path to a program. +CMAKE_LINKER:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ld + +//Program used to build from build.ninja files. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/ninja + +//Flags used by the linker during the creation of modules. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-nm + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-objcopy + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-objdump + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=bakalarka + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib + +//Flags used by the linker during the creation of dll's. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-strip + +//The CMake toolchain file +CMAKE_TOOLCHAIN_FILE:FILEPATH=/home/mithras/esp/esp-idf/tools/cmake/toolchain-esp32.cmake + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Build mbed TLS programs. +ENABLE_PROGRAMS:BOOL= + +//Build mbed TLS tests. +ENABLE_TESTING:BOOL= + +//Build mbed TLS with zlib library. +ENABLE_ZLIB_SUPPORT:BOOL=OFF + +//No help, variable specified on the command line. +ESP_PLATFORM:UNINITIALIZED=1 + +//Git command line client +GIT_EXECUTABLE:FILEPATH=/usr/bin/git + +//IDF Build Target +IDF_TARGET:STRING=esp32 + +//Install mbed TLS headers. +INSTALL_MBEDTLS_HEADERS:BOOL=ON + +//Explicitly link mbed TLS library to pthread. +LINK_WITH_PTHREAD:BOOL=OFF + +//Path to a program. +PERL_EXECUTABLE:FILEPATH=/usr/bin/perl + +//No help, variable specified on the command line. +PYTHON_DEPS_CHECKED:UNINITIALIZED=1 + +//Path to a program. +PYTHON_EXECUTABLE:FILEPATH=/home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python + +//Allow unsafe builds. These builds ARE NOT SECURE. +UNSAFE_BUILD:BOOL=OFF + +//Build mbed TLS with the pkcs11-helper library. +USE_PKCS11_HELPER_LIBRARY:BOOL=OFF + +//Build mbed TLS shared library. +USE_SHARED_MBEDTLS_LIBRARY:BOOL=OFF + +//Build mbed TLS static library. +USE_STATIC_MBEDTLS_LIBRARY:BOOL=ON + +//Dependencies for the target +__idf_app_trace_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_app_update_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_asio_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_bootloader_support_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_ca_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_cbor_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_cmd_nvs_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_cmd_system_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_coap_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_console_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_cxx_LIB_DEPENDS:STATIC=general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;general;stdc++;general;gcc; + +//Dependencies for the target +__idf_driver_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_efuse_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_esp-tls_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_esp32_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;gcc; + +//Dependencies for the target +__idf_esp_adc_cal_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_esp_common_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_xtensa;general;__idf_esp32;general;__idf_ulp;general;__idf_efuse;general;__idf_esp_http_client;general;__idf_esp_http_server;general;__idf_bootloader_support;general;__idf_nvs_flash;general;__idf_esp_wifi;general;__idf_app_update;general;__idf_lwip;general;__idf_spi_flash;general;__idf_wpa_supplicant;general;__idf_tcpip_adapter; + +//Dependencies for the target +__idf_esp_eth_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_esp_event_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_esp_gdbstub_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_esp_http_client_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_esp_http_server_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_esp_https_ota_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_esp_https_server_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_esp_local_ctrl_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_esp_netif_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_esp_ringbuf_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_esp_serial_slave_link_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_esp_timer_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_esp_websocket_client_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_esp_wifi_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;general;-L /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32;general;coexist;general;core;general;espnow;general;mesh;general;net80211;general;pp;general;rtc;general;smartconfig;general;phy; + +//Dependencies for the target +__idf_espcoredump_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_expat_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_fatfs_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_files_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_freemodbus_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_freertos_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_heap_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_https_server_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_jsmn_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_json_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_libsodium_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_log_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_lv_examples_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_lvgl_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_lvgl_esp32_drivers_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_lvgl_tft_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_lvgl_touch_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_lwip_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_main_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_mdns_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_mqtt_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_newlib_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_nghttp_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_nvs_flash_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_openssl_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_perfmon_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_protobuf-c_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_protocomm_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_pthread_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_sdmmc_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_soc_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;general;soc_esp32; + +//Dependencies for the target +__idf_spi_flash_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_spiffs_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_tcp_transport_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_tcpip_adapter_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_ulp_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_unity_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_vfs_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_wear_levelling_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_wifi_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_wifi_provisioning_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_wpa_supplicant_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +__idf_xtensa_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp32;general;/home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a; + +//Value Computed by CMake +bakalarka_BINARY_DIR:STATIC=/home/mithras/Documents/bakalarka/build + +//Value Computed by CMake +bakalarka_SOURCE_DIR:STATIC=/home/mithras/Documents/bakalarka + +//Value Computed by CMake +esp-idf_BINARY_DIR:STATIC=/home/mithras/Documents/bakalarka/build/esp-idf + +//Value Computed by CMake +esp-idf_SOURCE_DIR:STATIC=/home/mithras/esp/esp-idf + +//Value Computed by CMake +mbed TLS_BINARY_DIR:STATIC=/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls + +//Value Computed by CMake +mbed TLS_SOURCE_DIR:STATIC=/home/mithras/esp/esp-idf/components/mbedtls/mbedtls + +//Dependencies for the target +mbedcrypto_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + +//Dependencies for the target +mbedtls_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;general;mbedx509; + +//Dependencies for the target +mbedx509_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_soc;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32;general;mbedcrypto; + +//Dependencies for the target +soc_esp32_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_heap;general;__idf_log;general;__idf_lwip;general;__idf_esp_common;general;__idf_xtensa;general;__idf_esp32; + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_COMPILER_AR +CMAKE_ASM_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_COMPILER_RANLIB +CMAKE_ASM_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +CMAKE_ASM_COMPILER_WORKS:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS +CMAKE_ASM_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_DEBUG +CMAKE_ASM_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_MINSIZEREL +CMAKE_ASM_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELEASE +CMAKE_ASM_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELWITHDEBINFO +CMAKE_ASM_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/home/mithras/Documents/bakalarka/build +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=10 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=2 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/usr/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Ninja +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/home/mithras/Documents/bakalarka +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=89 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.10 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Details about finding Git +FIND_PACKAGE_MESSAGE_DETAILS_Git:INTERNAL=[/usr/bin/git][v2.17.1()] +//Details about finding Perl +FIND_PACKAGE_MESSAGE_DETAILS_Perl:INTERNAL=[/usr/bin/perl][v5.26.1()] +//Details about finding PythonInterp +FIND_PACKAGE_MESSAGE_DETAILS_PythonInterp:INTERNAL=[/home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python][v2.7.17()] +//ADVANCED property for variable: GIT_EXECUTABLE +GIT_EXECUTABLE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: PERL_EXECUTABLE +PERL_EXECUTABLE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: PYTHON_EXECUTABLE +PYTHON_EXECUTABLE-ADVANCED:INTERNAL=1 + diff --git a/build/CMakeFiles/3.10.2/CMakeASMCompiler.cmake b/build/CMakeFiles/3.10.2/CMakeASMCompiler.cmake new file mode 100644 index 0000000..f322ee9 --- /dev/null +++ b/build/CMakeFiles/3.10.2/CMakeASMCompiler.cmake @@ -0,0 +1,17 @@ +set(CMAKE_ASM_COMPILER "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc") +set(CMAKE_ASM_COMPILER_ARG1 "") +set(CMAKE_AR "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar") +set(CMAKE_ASM_COMPILER_AR "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar") +set(CMAKE_RANLIB "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib") +set(CMAKE_ASM_COMPILER_RANLIB "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib") +set(CMAKE_LINKER "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ld") +set(CMAKE_ASM_COMPILER_LOADED 1) +set(CMAKE_ASM_COMPILER_ID "GNU") +set(CMAKE_ASM_COMPILER_VERSION "") +set(CMAKE_ASM_COMPILER_ENV_VAR "ASM") + + +set(CMAKE_ASM_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_ASM_LINKER_PREFERENCE 0) + + diff --git a/build/CMakeFiles/3.10.2/CMakeCCompiler.cmake b/build/CMakeFiles/3.10.2/CMakeCCompiler.cmake new file mode 100644 index 0000000..7d75728 --- /dev/null +++ b/build/CMakeFiles/3.10.2/CMakeCCompiler.cmake @@ -0,0 +1,73 @@ +set(CMAKE_C_COMPILER "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "8.2.0") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") + +set(CMAKE_C_PLATFORM_ID "") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_SIMULATE_VERSION "") + + + +set(CMAKE_AR "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar") +set(CMAKE_C_COMPILER_AR "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar") +set(CMAKE_RANLIB "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib") +set(CMAKE_C_COMPILER_RANLIB "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib") +set(CMAKE_LINKER "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ld") +set(CMAKE_COMPILER_IS_GNUCC 1) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) +set(CMAKE_COMPILER_IS_MINGW ) +set(CMAKE_COMPILER_IS_CYGWIN ) +if(CMAKE_COMPILER_IS_CYGWIN) + set(CYGWIN 1) + set(UNIX 1) +endif() + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +if(CMAKE_COMPILER_IS_MINGW) + set(MINGW 1) +endif() +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "4") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_LIBRARY_ARCHITECTURE "") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;c;nosys;c;gcc") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/build/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake b/build/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..1221343 --- /dev/null +++ b/build/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake @@ -0,0 +1,75 @@ +set(CMAKE_CXX_COMPILER "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "8.2.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") + +set(CMAKE_CXX_PLATFORM_ID "") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + +set(CMAKE_AR "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar") +set(CMAKE_CXX_COMPILER_AR "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar") +set(CMAKE_RANLIB "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib") +set(CMAKE_LINKER "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ld") +set(CMAKE_COMPILER_IS_GNUCXX 1) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) +set(CMAKE_COMPILER_IS_MINGW ) +set(CMAKE_COMPILER_IS_CYGWIN ) +if(CMAKE_COMPILER_IS_CYGWIN) + set(CYGWIN 1) + set(UNIX 1) +endif() + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +if(CMAKE_COMPILER_IS_MINGW) + set(MINGW 1) +endif() +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;mm;CPP) +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "4") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc;c;nosys;c;gcc") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin b/build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 0000000..e18b038 Binary files /dev/null and b/build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin differ diff --git a/build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin b/build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin new file mode 100755 index 0000000..345cbf7 Binary files /dev/null and b/build/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/build/CMakeFiles/3.10.2/CMakeSystem.cmake b/build/CMakeFiles/3.10.2/CMakeSystem.cmake new file mode 100644 index 0000000..0773d3c --- /dev/null +++ b/build/CMakeFiles/3.10.2/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-4.15.0-91-generic") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "4.15.0-91-generic") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + +include("/home/mithras/esp/esp-idf/tools/cmake/toolchain-esp32.cmake") + +set(CMAKE_SYSTEM "Generic") +set(CMAKE_SYSTEM_NAME "Generic") +set(CMAKE_SYSTEM_VERSION "") +set(CMAKE_SYSTEM_PROCESSOR "") + +set(CMAKE_CROSSCOMPILING "TRUE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/build/CMakeFiles/3.10.2/CompilerIdC/CMakeCCompilerId.c b/build/CMakeFiles/3.10.2/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..722faa8 --- /dev/null +++ b/build/CMakeFiles/3.10.2/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,598 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif + /* __INTEL_COMPILER = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version) +# define COMPILER_ID "Fujitsu" + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__ARMCC_VERSION) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + +#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" +# if defined(_SGI_COMPILER_VERSION) + /* _SGI_COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) +# else + /* _COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__sgi) +# define COMPILER_ID "MIPSpro" + +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXE) || defined(__CRAYXC) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number components. */ +#ifdef COMPILER_VERSION_MAJOR +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + + +#if !defined(__STDC__) +# if defined(_MSC_VER) && !defined(__clang__) +# define C_DIALECT "90" +# else +# define C_DIALECT +# endif +#elif __STDC_VERSION__ >= 201000L +# define C_DIALECT "11" +#elif __STDC_VERSION__ >= 199901L +# define C_DIALECT "99" +#else +# define C_DIALECT "90" +#endif +const char* info_language_dialect_default = + "INFO" ":" "dialect_default[" C_DIALECT "]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXE) || defined(__CRAYXC) + require += info_cray[argc]; +#endif + require += info_language_dialect_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/build/CMakeFiles/3.10.2/CompilerIdC/a.out b/build/CMakeFiles/3.10.2/CompilerIdC/a.out new file mode 100755 index 0000000..272a5f1 Binary files /dev/null and b/build/CMakeFiles/3.10.2/CompilerIdC/a.out differ diff --git a/build/CMakeFiles/3.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp b/build/CMakeFiles/3.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..2d66298 --- /dev/null +++ b/build/CMakeFiles/3.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,576 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__COMO__) +# define COMPILER_ID "Comeau" + /* __COMO_VERSION__ = VRR */ +# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) +# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) + +#elif defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif + /* __INTEL_COMPILER = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version) +# define COMPILER_ID "Fujitsu" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__ARMCC_VERSION) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" +# if defined(_SGI_COMPILER_VERSION) + /* _SGI_COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) +# else + /* _COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__sgi) +# define COMPILER_ID "MIPSpro" + +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXE) || defined(__CRAYXC) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number components. */ +#ifdef COMPILER_VERSION_MAJOR +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + + +#if defined(_MSC_VER) && defined(_MSVC_LANG) +#define CXX_STD _MSVC_LANG +#else +#define CXX_STD __cplusplus +#endif + +const char* info_language_dialect_default = "INFO" ":" "dialect_default[" +#if CXX_STD > 201402L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "11" +#else + "98" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXE) || defined(__CRAYXC) + require += info_cray[argc]; +#endif + require += info_language_dialect_default[argc]; + (void)argv; + return require; +} diff --git a/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out b/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out new file mode 100755 index 0000000..ecc1b67 Binary files /dev/null and b/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out differ diff --git a/build/CMakeFiles/CMakeOutput.log b/build/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000..7850f97 --- /dev/null +++ b/build/CMakeFiles/CMakeOutput.log @@ -0,0 +1,506 @@ +The target system is: Generic - - +The host system is: Linux - 4.15.0-91-generic - x86_64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc +Build flags: -mlongcalls;-Wno-frame-address +Id flags: + +The output was: +0 + + +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + +The C compiler identification is GNU, found in "/home/mithras/Documents/bakalarka/build/CMakeFiles/3.10.2/CompilerIdC/a.out" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++ +Build flags: -mlongcalls;-Wno-frame-address +Id flags: + +The output was: +0 + + +Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + +The CXX compiler identification is GNU, found in "/home/mithras/Documents/bakalarka/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out" + +Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)": +xtensa-esp32-elf-gcc (crosstool-NG esp-2019r2) 8.2.0 +Copyright (C) 2018 Free Software Foundation, Inc. +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +Determining if the C compiler works passed with the following output: +Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/ninja" "cmTC_97232" +[1/2] Building C object CMakeFiles/cmTC_97232.dir/testCCompiler.c.obj +[2/2] Linking C executable cmTC_97232 + + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/ninja" "cmTC_e39d4" +[1/2] Building C object CMakeFiles/cmTC_e39d4.dir/CMakeCCompilerABI.c.obj +[2/2] Linking C executable cmTC_e39d4 +Using built-in specs. +COLLECT_GCC=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc +COLLECT_LTO_WRAPPER=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper +Target: xtensa-esp32-elf +Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2019r2' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes +Thread model: posix +gcc version 8.2.0 (crosstool-NG esp-2019r2) +COMPILER_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/bin/ +LIBRARY_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/ +COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_e39d4' + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2 -plugin /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so -plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccH4jMoM.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_e39d4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0 -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib CMakeFiles/cmTC_e39d4.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o +COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_e39d4' + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(xtensa-esp32-elf-ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:"/usr/bin/ninja" "cmTC_e39d4"] + ignore line: [[1/2] Building C object CMakeFiles/cmTC_e39d4.dir/CMakeCCompilerABI.c.obj] + ignore line: [[2/2] Linking C executable cmTC_e39d4] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc] + ignore line: [COLLECT_LTO_WRAPPER=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper] + ignore line: [Target: xtensa-esp32-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2019r2' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes] + ignore line: [Thread model: posix] + ignore line: [gcc version 8.2.0 (crosstool-NG esp-2019r2) ] + ignore line: [COMPILER_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/bin/] + ignore line: [LIBRARY_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_e39d4'] + link line: [ /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2 -plugin /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so -plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccH4jMoM.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_e39d4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0 -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib CMakeFiles/cmTC_e39d4.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o] + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccH4jMoM.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lnosys] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-o] ==> ignore + arg [cmTC_e39d4] ==> ignore + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o] ==> ignore + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o] ==> ignore + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o] ==> ignore + arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0] + arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc] + arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib] + arg [CMakeFiles/cmTC_e39d4.dir/CMakeCCompilerABI.c.obj] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lnosys] ==> lib [nosys] + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o] ==> ignore + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o] ==> ignore + collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0] + collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc] + collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib] + implicit libs: [gcc;c;nosys;c;gcc] + implicit dirs: [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib] + implicit fwks: [] + + + + +Detecting C [-std=c11] compiler features compiled with the following output: +Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/ninja" "cmTC_66137" +[1/2] Building C object CMakeFiles/cmTC_66137.dir/feature_tests.c.obj +[2/2] Linking C executable cmTC_66137 + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:1c_restrict + Feature record: C_FEATURE:1c_static_assert + Feature record: C_FEATURE:1c_variadic_macros + + +Detecting C [-std=c99] compiler features compiled with the following output: +Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/ninja" "cmTC_1a2bf" +[1/2] Building C object CMakeFiles/cmTC_1a2bf.dir/feature_tests.c.obj +[2/2] Linking C executable cmTC_1a2bf + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:1c_restrict + Feature record: C_FEATURE:0c_static_assert + Feature record: C_FEATURE:1c_variadic_macros + + +Detecting C [-std=c90] compiler features compiled with the following output: +Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/ninja" "cmTC_e5b33" +[1/2] Building C object CMakeFiles/cmTC_e5b33.dir/feature_tests.c.obj +[2/2] Linking C executable cmTC_e5b33 + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:0c_restrict + Feature record: C_FEATURE:0c_static_assert + Feature record: C_FEATURE:0c_variadic_macros +Determining if the CXX compiler works passed with the following output: +Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/ninja" "cmTC_31216" +[1/2] Building CXX object CMakeFiles/cmTC_31216.dir/testCXXCompiler.cxx.obj +[2/2] Linking CXX executable cmTC_31216 + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/ninja" "cmTC_dec4a" +[1/2] Building CXX object CMakeFiles/cmTC_dec4a.dir/CMakeCXXCompilerABI.cpp.obj +[2/2] Linking CXX executable cmTC_dec4a +Using built-in specs. +COLLECT_GCC=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++ +COLLECT_LTO_WRAPPER=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper +Target: xtensa-esp32-elf +Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2019r2' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes +Thread model: posix +gcc version 8.2.0 (crosstool-NG esp-2019r2) +COMPILER_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/bin/ +LIBRARY_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/ +COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_dec4a' + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2 -plugin /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so -plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccS991LX.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_dec4a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0 -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib CMakeFiles/cmTC_dec4a.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o +COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_dec4a' + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(xtensa-esp32-elf-ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:"/usr/bin/ninja" "cmTC_dec4a"] + ignore line: [[1/2] Building CXX object CMakeFiles/cmTC_dec4a.dir/CMakeCXXCompilerABI.cpp.obj] + ignore line: [[2/2] Linking CXX executable cmTC_dec4a] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++] + ignore line: [COLLECT_LTO_WRAPPER=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper] + ignore line: [Target: xtensa-esp32-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2019r2' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes] + ignore line: [Thread model: posix] + ignore line: [gcc version 8.2.0 (crosstool-NG esp-2019r2) ] + ignore line: [COMPILER_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/bin/] + ignore line: [LIBRARY_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_dec4a'] + link line: [ /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2 -plugin /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so -plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccS991LX.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_dec4a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0 -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib CMakeFiles/cmTC_dec4a.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o] + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccS991LX.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lnosys] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-o] ==> ignore + arg [cmTC_dec4a] ==> ignore + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o] ==> ignore + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o] ==> ignore + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o] ==> ignore + arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0] + arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc] + arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib] + arg [CMakeFiles/cmTC_dec4a.dir/CMakeCXXCompilerABI.cpp.obj] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lnosys] ==> lib [nosys] + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o] ==> ignore + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o] ==> ignore + collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0] + collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc] + collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib] + implicit libs: [stdc++;m;gcc;c;nosys;c;gcc] + implicit dirs: [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib] + implicit fwks: [] + + + + +Detecting CXX [-std=c++1z] compiler features compiled with the following output: +Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/ninja" "cmTC_bbc42" +[1/2] Building CXX object CMakeFiles/cmTC_bbc42.dir/feature_tests.cxx.obj +[2/2] Linking CXX executable cmTC_bbc42 + + + Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:1cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:1cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:1cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:1cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:1cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:1cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:1cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:1cxx_relaxed_constexpr + Feature record: CXX_FEATURE:1cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:1cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++14] compiler features compiled with the following output: +Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/ninja" "cmTC_138f8" +[1/2] Building CXX object CMakeFiles/cmTC_138f8.dir/feature_tests.cxx.obj +[2/2] Linking CXX executable cmTC_138f8 + + + Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:1cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:1cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:1cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:1cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:1cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:1cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:1cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:1cxx_relaxed_constexpr + Feature record: CXX_FEATURE:1cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:1cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++11] compiler features compiled with the following output: +Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/ninja" "cmTC_762ca" +[1/2] Building CXX object CMakeFiles/cmTC_762ca.dir/feature_tests.cxx.obj +[2/2] Linking CXX executable cmTC_762ca + + + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:0cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:0cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:0cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:0cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:0cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:0cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:0cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:0cxx_relaxed_constexpr + Feature record: CXX_FEATURE:0cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:0cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++98] compiler features compiled with the following output: +Change Dir: /home/mithras/Documents/bakalarka/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/ninja" "cmTC_71da3" +[1/2] Building CXX object CMakeFiles/cmTC_71da3.dir/feature_tests.cxx.obj +[2/2] Linking CXX executable cmTC_71da3 + + + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:0cxx_alias_templates + Feature record: CXX_FEATURE:0cxx_alignas + Feature record: CXX_FEATURE:0cxx_alignof + Feature record: CXX_FEATURE:0cxx_attributes + Feature record: CXX_FEATURE:0cxx_attribute_deprecated + Feature record: CXX_FEATURE:0cxx_auto_type + Feature record: CXX_FEATURE:0cxx_binary_literals + Feature record: CXX_FEATURE:0cxx_constexpr + Feature record: CXX_FEATURE:0cxx_contextual_conversions + Feature record: CXX_FEATURE:0cxx_decltype + Feature record: CXX_FEATURE:0cxx_decltype_auto + Feature record: CXX_FEATURE:0cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:0cxx_default_function_template_args + Feature record: CXX_FEATURE:0cxx_defaulted_functions + Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:0cxx_delegating_constructors + Feature record: CXX_FEATURE:0cxx_deleted_functions + Feature record: CXX_FEATURE:0cxx_digit_separators + Feature record: CXX_FEATURE:0cxx_enum_forward_declarations + Feature record: CXX_FEATURE:0cxx_explicit_conversions + Feature record: CXX_FEATURE:0cxx_extended_friend_declarations + Feature record: CXX_FEATURE:0cxx_extern_templates + Feature record: CXX_FEATURE:0cxx_final + Feature record: CXX_FEATURE:0cxx_func_identifier + Feature record: CXX_FEATURE:0cxx_generalized_initializers + Feature record: CXX_FEATURE:0cxx_generic_lambdas + Feature record: CXX_FEATURE:0cxx_inheriting_constructors + Feature record: CXX_FEATURE:0cxx_inline_namespaces + Feature record: CXX_FEATURE:0cxx_lambdas + Feature record: CXX_FEATURE:0cxx_lambda_init_captures + Feature record: CXX_FEATURE:0cxx_local_type_template_args + Feature record: CXX_FEATURE:0cxx_long_long_type + Feature record: CXX_FEATURE:0cxx_noexcept + Feature record: CXX_FEATURE:0cxx_nonstatic_member_init + Feature record: CXX_FEATURE:0cxx_nullptr + Feature record: CXX_FEATURE:0cxx_override + Feature record: CXX_FEATURE:0cxx_range_for + Feature record: CXX_FEATURE:0cxx_raw_string_literals + Feature record: CXX_FEATURE:0cxx_reference_qualified_functions + Feature record: CXX_FEATURE:0cxx_relaxed_constexpr + Feature record: CXX_FEATURE:0cxx_return_type_deduction + Feature record: CXX_FEATURE:0cxx_right_angle_brackets + Feature record: CXX_FEATURE:0cxx_rvalue_references + Feature record: CXX_FEATURE:0cxx_sizeof_member + Feature record: CXX_FEATURE:0cxx_static_assert + Feature record: CXX_FEATURE:0cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:0cxx_thread_local + Feature record: CXX_FEATURE:0cxx_trailing_return_types + Feature record: CXX_FEATURE:0cxx_unicode_literals + Feature record: CXX_FEATURE:0cxx_uniform_initialization + Feature record: CXX_FEATURE:0cxx_unrestricted_unions + Feature record: CXX_FEATURE:0cxx_user_literals + Feature record: CXX_FEATURE:0cxx_variable_templates + Feature record: CXX_FEATURE:0cxx_variadic_macros + Feature record: CXX_FEATURE:0cxx_variadic_templates diff --git a/build/CMakeFiles/TargetDirectories.txt b/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..360e264 --- /dev/null +++ b/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,637 @@ +/home/mithras/Documents/bakalarka/build/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/CMakeFiles/gen_project_binary.dir +/home/mithras/Documents/bakalarka/build/CMakeFiles/bakalarka.elf.dir +/home/mithras/Documents/bakalarka/build/CMakeFiles/menuconfig.dir +/home/mithras/Documents/bakalarka/build/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/CMakeFiles/app.dir +/home/mithras/Documents/bakalarka/build/CMakeFiles/erase_flash.dir +/home/mithras/Documents/bakalarka/build/CMakeFiles/bootloader.dir +/home/mithras/Documents/bakalarka/build/CMakeFiles/flash.dir +/home/mithras/Documents/bakalarka/build/CMakeFiles/confserver.dir +/home/mithras/Documents/bakalarka/build/CMakeFiles/monitor.dir +/home/mithras/Documents/bakalarka/build/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/CMakeFiles/_project_elf_src.dir +/home/mithras/Documents/bakalarka/build/CMakeFiles/size.dir +/home/mithras/Documents/bakalarka/build/CMakeFiles/size-components.dir +/home/mithras/Documents/bakalarka/build/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/CMakeFiles/size-files.dir +/home/mithras/Documents/bakalarka/build/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/xtensa/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/xtensa/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir +/home/mithras/Documents/bakalarka/build/esp-idf/xtensa/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/xtensa/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/xtensa/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/xtensa/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_rom/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_rom/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_rom/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_rom/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_rom/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_rom/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/soc/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/soc/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/soc/CMakeFiles/__idf_soc.dir +/home/mithras/Documents/bakalarka/build/esp-idf/soc/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/soc/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/soc/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/soc/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/soc/src/esp32/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/soc/src/esp32/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/soc/src/esp32/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/soc/src/esp32/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/soc/src/esp32/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/soc/src/esp32/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/soc/soc/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/soc/soc/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/soc/soc/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/soc/soc/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/soc/soc/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/soc/soc/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/soc/soc/esp32/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/soc/soc/esp32/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir +/home/mithras/Documents/bakalarka/build/esp-idf/soc/soc/esp32/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/soc/soc/esp32/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/soc/soc/esp32/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/soc/soc/esp32/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_eth/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_eth/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_eth/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_eth/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_eth/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_eth/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/tcpip_adapter/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/tcpip_adapter/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/tcpip_adapter/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/tcpip_adapter/CMakeFiles/__idf_tcpip_adapter.dir +/home/mithras/Documents/bakalarka/build/esp-idf/tcpip_adapter/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/tcpip_adapter/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/tcpip_adapter/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_netif/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_netif/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_netif/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_netif/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_netif/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_netif/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_event/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_event/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_event/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_event/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_event/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_event/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/CMakeFiles/apidoc.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/wpa_supplicant/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/wpa_supplicant/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir +/home/mithras/Documents/bakalarka/build/esp-idf/wpa_supplicant/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/wpa_supplicant/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/wpa_supplicant/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/wpa_supplicant/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/efuse/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/efuse/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/efuse/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/efuse/CMakeFiles/efuse_common_table.dir +/home/mithras/Documents/bakalarka/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir +/home/mithras/Documents/bakalarka/build/esp-idf/efuse/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/efuse/CMakeFiles/efuse_custom_table.dir +/home/mithras/Documents/bakalarka/build/esp-idf/efuse/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/efuse/CMakeFiles/show_efuse_table.dir +/home/mithras/Documents/bakalarka/build/esp-idf/efuse/CMakeFiles/efuse_test_table.dir +/home/mithras/Documents/bakalarka/build/esp-idf/efuse/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/bootloader_support/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/bootloader_support/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir +/home/mithras/Documents/bakalarka/build/esp-idf/bootloader_support/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/bootloader_support/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/bootloader_support/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/bootloader_support/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/partition_table/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/partition_table/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/partition_table/CMakeFiles/partition_table.dir +/home/mithras/Documents/bakalarka/build/esp-idf/partition_table/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/partition_table/CMakeFiles/partition_table-flash.dir +/home/mithras/Documents/bakalarka/build/esp-idf/partition_table/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/partition_table/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/partition_table/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/app_update/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/app_update/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/app_update/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/app_update/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir +/home/mithras/Documents/bakalarka/build/esp-idf/app_update/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/app_update/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/spi_flash/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/spi_flash/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir +/home/mithras/Documents/bakalarka/build/esp-idf/spi_flash/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/spi_flash/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/spi_flash/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/spi_flash/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/nvs_flash/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/nvs_flash/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/nvs_flash/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir +/home/mithras/Documents/bakalarka/build/esp-idf/nvs_flash/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/nvs_flash/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/nvs_flash/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_wifi/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_wifi/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_wifi/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_wifi/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_wifi/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_wifi/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lwip/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lwip/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lwip/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lwip/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lwip/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lwip/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/log/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/log/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/log/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/log/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/log/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/log/CMakeFiles/__idf_log.dir +/home/mithras/Documents/bakalarka/build/esp-idf/log/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/heap/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/heap/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/heap/CMakeFiles/__idf_heap.dir +/home/mithras/Documents/bakalarka/build/esp-idf/heap/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/heap/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/heap/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/heap/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_ringbuf/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_ringbuf/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_ringbuf/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_ringbuf/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_ringbuf/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_ringbuf/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/driver/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/driver/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/driver/CMakeFiles/__idf_driver.dir +/home/mithras/Documents/bakalarka/build/esp-idf/driver/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/driver/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/driver/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/driver/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/pthread/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/pthread/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir +/home/mithras/Documents/bakalarka/build/esp-idf/pthread/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/pthread/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/pthread/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/pthread/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/espcoredump/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/espcoredump/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir +/home/mithras/Documents/bakalarka/build/esp-idf/espcoredump/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/espcoredump/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/espcoredump/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/espcoredump/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/perfmon/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/perfmon/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir +/home/mithras/Documents/bakalarka/build/esp-idf/perfmon/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/perfmon/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/perfmon/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/perfmon/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp32/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp32/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp32/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp32/CMakeFiles/esp32_linker_script.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp32/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp32/CMakeFiles/__idf_esp32.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp32/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp32/CMakeFiles/__ldgen_output_esp32.project.ld.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp32/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_common/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_common/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_common/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_common/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_common/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_common/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_timer/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_timer/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_timer/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_timer/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_timer/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_timer/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/freertos/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/freertos/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir +/home/mithras/Documents/bakalarka/build/esp-idf/freertos/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/freertos/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/freertos/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/freertos/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/vfs/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/vfs/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/vfs/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/vfs/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/vfs/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir +/home/mithras/Documents/bakalarka/build/esp-idf/vfs/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/newlib/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/newlib/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir +/home/mithras/Documents/bakalarka/build/esp-idf/newlib/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/newlib/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/newlib/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/newlib/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/cxx/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/cxx/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/cxx/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir +/home/mithras/Documents/bakalarka/build/esp-idf/cxx/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/cxx/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/cxx/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/app_trace/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/app_trace/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/app_trace/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir +/home/mithras/Documents/bakalarka/build/esp-idf/app_trace/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/app_trace/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/app_trace/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/asio/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/asio/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/asio/CMakeFiles/__idf_asio.dir +/home/mithras/Documents/bakalarka/build/esp-idf/asio/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/asio/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/asio/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/asio/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/bootloader/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/bootloader/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/bootloader/CMakeFiles/bootloader-flash.dir +/home/mithras/Documents/bakalarka/build/esp-idf/bootloader/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/bootloader/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/bootloader/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/bootloader/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/bt/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/bt/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/bt/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/bt/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/bt/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/bt/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/cbor/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/cbor/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/cbor/CMakeFiles/__idf_cbor.dir +/home/mithras/Documents/bakalarka/build/esp-idf/cbor/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/cbor/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/cbor/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/cbor/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/coap/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/coap/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/coap/CMakeFiles/__idf_coap.dir +/home/mithras/Documents/bakalarka/build/esp-idf/coap/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/coap/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/coap/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/coap/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/console/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/console/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/console/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/console/CMakeFiles/__idf_console.dir +/home/mithras/Documents/bakalarka/build/esp-idf/console/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/console/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/console/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/nghttp/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/nghttp/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir +/home/mithras/Documents/bakalarka/build/esp-idf/nghttp/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/nghttp/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/nghttp/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/nghttp/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp-tls/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp-tls/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp-tls/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp-tls/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp-tls/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp-tls/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_adc_cal/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_adc_cal/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_adc_cal/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_adc_cal/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_adc_cal/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_adc_cal/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_gdbstub/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_gdbstub/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_gdbstub/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_gdbstub/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_gdbstub/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_gdbstub/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/tcp_transport/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/tcp_transport/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir +/home/mithras/Documents/bakalarka/build/esp-idf/tcp_transport/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/tcp_transport/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/tcp_transport/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/tcp_transport/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_http_client/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_http_client/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_http_client/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_http_client/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_http_client/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_http_client/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_http_server/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_http_server/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_http_server/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_http_server/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_http_server/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_http_server/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_https_ota/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_https_ota/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_https_ota/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_https_ota/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_https_ota/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_https_ota/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_https_server/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_https_server/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_https_server/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_https_server/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_https_server/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_https_server/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/protobuf-c/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/protobuf-c/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/protobuf-c/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/protobuf-c/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/protobuf-c/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir +/home/mithras/Documents/bakalarka/build/esp-idf/protobuf-c/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/protocomm/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/protocomm/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir +/home/mithras/Documents/bakalarka/build/esp-idf/protocomm/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/protocomm/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/protocomm/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/protocomm/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mdns/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mdns/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mdns/CMakeFiles/__idf_mdns.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mdns/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mdns/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mdns/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mdns/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_local_ctrl/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_local_ctrl/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_local_ctrl/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_local_ctrl/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_local_ctrl/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_local_ctrl/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/sdmmc/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/sdmmc/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir +/home/mithras/Documents/bakalarka/build/esp-idf/sdmmc/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/sdmmc/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/sdmmc/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/sdmmc/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_serial_slave_link/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_serial_slave_link/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_serial_slave_link/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_serial_slave_link/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_serial_slave_link/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_serial_slave_link/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_websocket_client/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_websocket_client/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_websocket_client/CMakeFiles/__idf_esp_websocket_client.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_websocket_client/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_websocket_client/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_websocket_client/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esp_websocket_client/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esptool_py/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esptool_py/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esptool_py/CMakeFiles/app-flash.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esptool_py/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esptool_py/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esptool_py/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/esptool_py/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/expat/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/expat/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/expat/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/expat/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/expat/CMakeFiles/__idf_expat.dir +/home/mithras/Documents/bakalarka/build/esp-idf/expat/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/expat/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/wear_levelling/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/wear_levelling/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir +/home/mithras/Documents/bakalarka/build/esp-idf/wear_levelling/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/wear_levelling/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/wear_levelling/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/wear_levelling/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/fatfs/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/fatfs/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir +/home/mithras/Documents/bakalarka/build/esp-idf/fatfs/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/fatfs/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/fatfs/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/fatfs/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/freemodbus/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/freemodbus/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir +/home/mithras/Documents/bakalarka/build/esp-idf/freemodbus/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/freemodbus/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/freemodbus/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/freemodbus/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/idf_test/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/idf_test/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/idf_test/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/idf_test/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/idf_test/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/idf_test/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/jsmn/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/jsmn/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/jsmn/CMakeFiles/__idf_jsmn.dir +/home/mithras/Documents/bakalarka/build/esp-idf/jsmn/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/jsmn/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/jsmn/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/jsmn/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/json/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/json/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/json/CMakeFiles/__idf_json.dir +/home/mithras/Documents/bakalarka/build/esp-idf/json/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/json/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/json/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/json/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/libsodium/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/libsodium/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir +/home/mithras/Documents/bakalarka/build/esp-idf/libsodium/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/libsodium/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/libsodium/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/libsodium/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mqtt/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mqtt/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mqtt/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mqtt/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mqtt/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/mqtt/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/openssl/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/openssl/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/openssl/CMakeFiles/__idf_openssl.dir +/home/mithras/Documents/bakalarka/build/esp-idf/openssl/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/openssl/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/openssl/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/openssl/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/spiffs/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/spiffs/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir +/home/mithras/Documents/bakalarka/build/esp-idf/spiffs/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/spiffs/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/spiffs/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/spiffs/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/ulp/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/ulp/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/ulp/CMakeFiles/__idf_ulp.dir +/home/mithras/Documents/bakalarka/build/esp-idf/ulp/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/ulp/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/ulp/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/ulp/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/unity/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/unity/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/unity/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/unity/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/unity/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/unity/CMakeFiles/__idf_unity.dir +/home/mithras/Documents/bakalarka/build/esp-idf/unity/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/wifi_provisioning/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/wifi_provisioning/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir +/home/mithras/Documents/bakalarka/build/esp-idf/wifi_provisioning/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/wifi_provisioning/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/wifi_provisioning/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/wifi_provisioning/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/main/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/main/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/main/CMakeFiles/__idf_main.dir +/home/mithras/Documents/bakalarka/build/esp-idf/main/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/main/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/main/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/main/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/ca/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/ca/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/ca/CMakeFiles/__idf_ca.dir +/home/mithras/Documents/bakalarka/build/esp-idf/ca/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/ca/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/ca/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/ca/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/cmd_nvs/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/cmd_nvs/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/cmd_nvs/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/cmd_nvs/CMakeFiles/__idf_cmd_nvs.dir +/home/mithras/Documents/bakalarka/build/esp-idf/cmd_nvs/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/cmd_nvs/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/cmd_nvs/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/cmd_system/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/cmd_system/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/cmd_system/CMakeFiles/__idf_cmd_system.dir +/home/mithras/Documents/bakalarka/build/esp-idf/cmd_system/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/cmd_system/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/cmd_system/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/cmd_system/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/files/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/files/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/files/CMakeFiles/__idf_files.dir +/home/mithras/Documents/bakalarka/build/esp-idf/files/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/files/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/files/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/files/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/wifi/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/wifi/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/wifi/CMakeFiles/__idf_wifi.dir +/home/mithras/Documents/bakalarka/build/esp-idf/wifi/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/wifi/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/wifi/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/wifi/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/https_server/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/https_server/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/https_server/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/https_server/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/https_server/CMakeFiles/__idf_https_server.dir +/home/mithras/Documents/bakalarka/build/esp-idf/https_server/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/https_server/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lvgl/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lvgl/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lvgl/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lvgl/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lvgl/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lvgl/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lv_examples/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lv_examples/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lv_examples/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lv_examples/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lv_examples/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lv_examples/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_esp32_drivers/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_esp32_drivers/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_esp32_drivers/CMakeFiles/__idf_lvgl_esp32_drivers.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_esp32_drivers/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_esp32_drivers/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_esp32_drivers/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_esp32_drivers/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_tft/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_tft/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_tft/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_tft/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_tft/CMakeFiles/install/local.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_tft/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_touch/CMakeFiles/install/strip.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_touch/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_touch/CMakeFiles/install.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_touch/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_touch/CMakeFiles/list_install_components.dir +/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_touch/CMakeFiles/install/local.dir diff --git a/build/CMakeFiles/bootloader.dir/Labels.json b/build/CMakeFiles/bootloader.dir/Labels.json new file mode 100644 index 0000000..d198d3d --- /dev/null +++ b/build/CMakeFiles/bootloader.dir/Labels.json @@ -0,0 +1,43 @@ +{ + "sources" : + [ + { + "file" : "/home/mithras/Documents/bakalarka/build/CMakeFiles/bootloader" + }, + { + "file" : "/home/mithras/Documents/bakalarka/build/CMakeFiles/bootloader.rule" + }, + { + "file" : "/home/mithras/Documents/bakalarka/build/CMakeFiles/bootloader-complete.rule" + }, + { + "file" : "/home/mithras/Documents/bakalarka/build/bootloader-prefix/src/bootloader-stamp/bootloader-install.rule" + }, + { + "file" : "/home/mithras/Documents/bakalarka/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir.rule" + }, + { + "file" : "/home/mithras/Documents/bakalarka/build/bootloader-prefix/src/bootloader-stamp/bootloader-download.rule" + }, + { + "file" : "/home/mithras/Documents/bakalarka/build/bootloader-prefix/src/bootloader-stamp/bootloader-update.rule" + }, + { + "file" : "/home/mithras/Documents/bakalarka/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch.rule" + }, + { + "file" : "/home/mithras/Documents/bakalarka/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure.rule" + }, + { + "file" : "/home/mithras/Documents/bakalarka/build/bootloader-prefix/src/bootloader-stamp/bootloader-build.rule" + } + ], + "target" : + { + "labels" : + [ + "bootloader" + ], + "name" : "bootloader" + } +} \ No newline at end of file diff --git a/build/CMakeFiles/bootloader.dir/Labels.txt b/build/CMakeFiles/bootloader.dir/Labels.txt new file mode 100644 index 0000000..6385676 --- /dev/null +++ b/build/CMakeFiles/bootloader.dir/Labels.txt @@ -0,0 +1,13 @@ +# Target labels + bootloader +# Source files and their labels +/home/mithras/Documents/bakalarka/build/CMakeFiles/bootloader +/home/mithras/Documents/bakalarka/build/CMakeFiles/bootloader.rule +/home/mithras/Documents/bakalarka/build/CMakeFiles/bootloader-complete.rule +/home/mithras/Documents/bakalarka/build/bootloader-prefix/src/bootloader-stamp/bootloader-install.rule +/home/mithras/Documents/bakalarka/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir.rule +/home/mithras/Documents/bakalarka/build/bootloader-prefix/src/bootloader-stamp/bootloader-download.rule +/home/mithras/Documents/bakalarka/build/bootloader-prefix/src/bootloader-stamp/bootloader-update.rule +/home/mithras/Documents/bakalarka/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch.rule +/home/mithras/Documents/bakalarka/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure.rule +/home/mithras/Documents/bakalarka/build/bootloader-prefix/src/bootloader-stamp/bootloader-build.rule diff --git a/build/CMakeFiles/cmake.check_cache b/build/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/build/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/build/CMakeFiles/feature_tests.bin b/build/CMakeFiles/feature_tests.bin new file mode 100755 index 0000000..80b41d1 Binary files /dev/null and b/build/CMakeFiles/feature_tests.bin differ diff --git a/build/CMakeFiles/feature_tests.c b/build/CMakeFiles/feature_tests.c new file mode 100644 index 0000000..83e86dd --- /dev/null +++ b/build/CMakeFiles/feature_tests.c @@ -0,0 +1,34 @@ + + const char features[] = {"\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 +"1" +#else +"0" +#endif +"c_function_prototypes\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L +"1" +#else +"0" +#endif +"c_restrict\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201000L +"1" +#else +"0" +#endif +"c_static_assert\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L +"1" +#else +"0" +#endif +"c_variadic_macros\n" + +}; + +int main(int argc, char** argv) { (void)argv; return features[argc]; } diff --git a/build/CMakeFiles/feature_tests.cxx b/build/CMakeFiles/feature_tests.cxx new file mode 100644 index 0000000..b93418c --- /dev/null +++ b/build/CMakeFiles/feature_tests.cxx @@ -0,0 +1,405 @@ + + const char features[] = {"\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_aggregate_default_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alias_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alignas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alignof\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_attributes\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_attribute_deprecated\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_auto_type\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_binary_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_constexpr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_contextual_conversions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_decltype\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_decltype_auto\n" +"CXX_FEATURE:" +#if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40801) && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_decltype_incomplete_return_types\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_default_function_template_args\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_defaulted_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_defaulted_move_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_delegating_constructors\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_deleted_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_digit_separators\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_enum_forward_declarations\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_explicit_conversions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_extended_friend_declarations\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_extern_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_final\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_func_identifier\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_generalized_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_generic_lambdas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_inheriting_constructors\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_inline_namespaces\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_lambdas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_lambda_init_captures\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_local_type_template_args\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_long_long_type\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_noexcept\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_nonstatic_member_init\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_nullptr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_override\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_range_for\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_raw_string_literals\n" +"CXX_FEATURE:" +#if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40801) && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_reference_qualified_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_relaxed_constexpr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_return_type_deduction\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_right_angle_brackets\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_rvalue_references\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_sizeof_member\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_static_assert\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_strong_enums\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && __cplusplus +"1" +#else +"0" +#endif +"cxx_template_template_parameters\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_thread_local\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_trailing_return_types\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_unicode_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_uniform_initialization\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_unrestricted_unions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_user_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_variable_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_variadic_macros\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_variadic_templates\n" + +}; + +int main(int argc, char** argv) { (void)argv; return features[argc]; } diff --git a/build/CMakeFiles/git-data/HEAD b/build/CMakeFiles/git-data/HEAD new file mode 100644 index 0000000..cb089cd --- /dev/null +++ b/build/CMakeFiles/git-data/HEAD @@ -0,0 +1 @@ +ref: refs/heads/master diff --git a/build/CMakeFiles/git-data/grabRef.cmake b/build/CMakeFiles/git-data/grabRef.cmake new file mode 100644 index 0000000..49106fa --- /dev/null +++ b/build/CMakeFiles/git-data/grabRef.cmake @@ -0,0 +1,50 @@ +# +# Internal file for GetGitRevisionDescription.cmake +# +# Requires CMake 2.6 or newer (uses the 'function' command) +# +# Original Author: +# 2009-2010 Ryan Pavlik +# http://academic.cleardefinition.com +# Iowa State University HCI Graduate Program/VRAC +# +# Copyright Iowa State University 2009-2010. +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http://www.boost.org/LICENSE_1_0.txt) + +set(HEAD_HASH) + +file(READ "/home/mithras/Documents/bakalarka/build/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024) + +string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS) +set(GIT_DIR "/home/mithras/esp/esp-idf/.git") +# handle git-worktree +if(EXISTS "${GIT_DIR}/commondir") + file(READ "${GIT_DIR}/commondir" GIT_DIR_NEW LIMIT 1024) + string(STRIP "${GIT_DIR_NEW}" GIT_DIR_NEW) + if(NOT IS_ABSOLUTE "${GIT_DIR_NEW}") + get_filename_component(GIT_DIR_NEW ${GIT_DIR}/${GIT_DIR_NEW} ABSOLUTE) + endif() + if(EXISTS "${GIT_DIR_NEW}") + set(GIT_DIR "${GIT_DIR_NEW}") + endif() +endif() +if(HEAD_CONTENTS MATCHES "ref") + # named branch + string(REPLACE "ref: " "" HEAD_REF "${HEAD_CONTENTS}") + if(EXISTS "${GIT_DIR}/${HEAD_REF}") + configure_file("${GIT_DIR}/${HEAD_REF}" "/home/mithras/Documents/bakalarka/build/CMakeFiles/git-data/head-ref" COPYONLY) + elseif(EXISTS "${GIT_DIR}/logs/${HEAD_REF}") + configure_file("${GIT_DIR}/logs/${HEAD_REF}" "/home/mithras/Documents/bakalarka/build/CMakeFiles/git-data/head-ref" COPYONLY) + set(HEAD_HASH "${HEAD_REF}") + endif() +else() + # detached HEAD + configure_file("${GIT_DIR}/HEAD" "/home/mithras/Documents/bakalarka/build/CMakeFiles/git-data/head-ref" COPYONLY) +endif() + +if(NOT HEAD_HASH) + file(READ "/home/mithras/Documents/bakalarka/build/CMakeFiles/git-data/head-ref" HEAD_HASH LIMIT 1024) + string(STRIP "${HEAD_HASH}" HEAD_HASH) +endif() diff --git a/build/CMakeFiles/git-data/head-ref b/build/CMakeFiles/git-data/head-ref new file mode 100644 index 0000000..09fc5bb --- /dev/null +++ b/build/CMakeFiles/git-data/head-ref @@ -0,0 +1 @@ +132cc67c03364f5f032aa65c6b88f1f1bf7ecbee diff --git a/build/app-flash_args b/build/app-flash_args new file mode 100644 index 0000000..55bebee --- /dev/null +++ b/build/app-flash_args @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 40m --flash_size 4MB +0x10000 bakalarka.bin diff --git a/build/bakalarka.bin b/build/bakalarka.bin new file mode 100644 index 0000000..70205ab Binary files /dev/null and b/build/bakalarka.bin differ diff --git a/build/bakalarka.map b/build/bakalarka.map new file mode 100644 index 0000000..ece7bf4 --- /dev/null +++ b/build/bakalarka.map @@ -0,0 +1,74148 @@ +Archive member included to satisfy reference by file (symbol) + +esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + (esp_app_desc) +esp-idf/pthread/libpthread.a(pthread.c.obj) + (pthread_include_pthread_impl) +esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) (pthread_key_create) +esp-idf/esp32/libesp32.a(cpu_start.c.obj) + (call_start_cpu0) +esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) (esp_crosscore_int_init) +esp-idf/esp32/libesp32.a(dport_access.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) (esp_dport_access_stall_other_cpu_start) +esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) + (ld_include_panic_highint_hdl) +esp-idf/esp32/libesp32.a(int_wdt.c.obj) + esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) (int_wdt_app_cpu_ticked) +esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/esp32/libesp32.a(crosscore_int.c.obj) (esp_intr_alloc) +esp-idf/esp32/libesp32.a(panic.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) (abort) +esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) (esp_restart_noos) +esp-idf/esp32/libesp32.a(task_wdt.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) (esp_task_wdt_init) +esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) (esp_cache_err_int_init) +esp-idf/esp32/libesp32.a(clk.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) (esp_clk_init) +esp-idf/esp_common/libesp_common.a(brownout.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) (esp_brownout_init) +esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) (esp_err_to_name) +esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) (esp_register_freertos_idle_hook_for_cpu) +esp-idf/esp_common/libesp_common.a(ipc.c.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) (esp_ipc_call_blocking) +esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) (esp_timer_init) +esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) (esp_timer_impl_get_time) +esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) (port_xSchedulerRunning) +esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/esp32/libesp32.a(crosscore_int.c.obj) (_frxt_setup_switch) +esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) (_xt_context_save) +esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) (_xt_tick_divisor) +esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) (_xt_interrupt_table) +esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) (xt_unhandled_interrupt) +esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) (_xt_user_exit) +esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + (uxTopUsedPriority) +esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_common/libesp_common.a(ipc.c.obj) (xQueueGenericCreate) +esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) (pxCurrentTCB) +esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) (xTimerCreateTimerTask) +esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) (xt_debugexception) +esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) (vListInitialise) +esp-idf/vfs/libvfs.a(vfs.c.obj) + (vfs_include_syscalls_impl) +esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) (esp_vfs_dev_uart_register) +esp-idf/newlib/libnewlib.a(heap.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) (malloc) +esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) (_lock_acquire) +esp-idf/newlib/libnewlib.a(pthread.c.obj) + (newlib_include_pthread_impl) +esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) (esp_reent_init) +esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) (esp_setup_syscall_table) +esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) (_system_r) +esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) (esp_clk_slowclk_cal_set) +esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + (__cxx_fatal_exception) +esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + (__cxa_guard_dummy) +esp-idf/main/libmain.a(main.c.obj) + (app_main) +esp-idf/ca/libca.a(ca.c.obj) esp-idf/main/libmain.a(main.c.obj) (register_ca) +esp-idf/ca/libca.a(gen_key.c.obj) + esp-idf/main/libmain.a(main.c.obj) (register_gen_key) +esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + esp-idf/main/libmain.a(main.c.obj) (register_nvs) +esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + esp-idf/main/libmain.a(main.c.obj) (register_system) +esp-idf/wifi/libwifi.a(wifi.c.obj) + esp-idf/main/libmain.a(main.c.obj) (register_wifi) +esp-idf/https_server/libhttps_server.a(https_server.c.obj) + esp-idf/main/libmain.a(main.c.obj) (register_server) +esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) + esp-idf/https_server/libhttps_server.a(https_server.c.obj) (decode) +esp-idf/https_server/libhttps_server.a(cacert.pem.S.obj) + esp-idf/https_server/libhttps_server.a(https_server.c.obj) (_binary_cacert_pem_start) +esp-idf/https_server/libhttps_server.a(prvtkey.pem.S.obj) + esp-idf/https_server/libhttps_server.a(https_server.c.obj) (_binary_prvtkey_pem_start) +esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) (esp_backtrace_get_next_frame) +esp-idf/xtensa/libxtensa.a(debug_helpers_asm.S.obj) + esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) (esp_backtrace_get_start) +esp-idf/soc/libsoc.a(brownout_hal.c.obj) + esp-idf/esp_common/libesp_common.a(brownout.c.obj) (brownout_hal_config) +esp-idf/soc/libsoc.a(cpu_util.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) (esp_cpu_stall) +esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) (rtc_clk_32k_enable) +esp-idf/soc/libsoc.a(rtc_init.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) (rtc_init) +esp-idf/soc/libsoc.a(rtc_time.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) (rtc_clk_cal) +esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) (rtc_wdt_protect_off) +esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) (IP_EVENT) +esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/main/libmain.a(main.c.obj) (esp_netif_init) +esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) (esp_netif_ppp_set_default_netif) +esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) (esp_event_handler_register) +esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) (esp_event_loop_create) +esp-idf/esp_event/libesp_event.a(event_send.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) (esp_event_send_internal) +esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) (g_wifi_default_wpa_crypto_funcs) +esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (md5_vector) +esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (hmac_md5_vector) +esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (rc4_skip) +esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (sha1_vector) +esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (pbkdf2_sha1) +esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (hmac_sha1_vector) +esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (hmac_sha256_vector) +esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-cbc.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (aes_128_cbc_encrypt) +esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (aes_decrypt_init) +esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (aes_encrypt_init) +esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) (Te0) +esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (omac1_aes_128) +esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (aes_unwrap) +esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (aes_wrap) +esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) (ccmp_decrypt) +esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) (sha256_vector) +esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) (aes_ccm_ae) +esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) (esp_efuse_get_chip_ver) +esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) (esp_efuse_utility_apply_34_encoding) +esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) (esp_efuse_read_field_blob) +esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) (esp_efuse_utility_process) +esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) (ESP_EFUSE_CHIP_VER_REV2) +esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) (esp_efuse_get_coding_scheme) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) (bootloader_fill_random) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) (bootloader_flash_update_id) +esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) (bootloader_read_flash_id) +esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) (esp_rom_spiflash_wait_idle) +esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) (spi_flash_cache_enabled) +esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) (spi_flash_init) +esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) (esp_flash_set_chip_write_protect) +esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) (esp_flash_default_chip) +esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (esp_flash_init_os_functions) +esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (esp_flash_noos_functions) +esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) (esp_partition_main_flash_region_safe) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) (esp_flash_registered_chips) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_generic) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_issi) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_gd) +esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (memspi_host_read_status_hs) +esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) (spi_flash_mmap) +esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/main/libmain.a(main.c.obj) (nvs_flash_init) +esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (_ZNK3nvs7Storage7isValidEv) +esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (_ZN3nvs19NVSPartitionManager12get_instanceEv) +esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) (_ZN3nvs8HashListD1Ev) +esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) (_ZN3nvs4Page9writeItemEhNS_8ItemTypeEPKcPKvjh) +esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) (_ZN3nvs11PageManager14requestNewPageEv) +esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) (_ZTVN3nvs15NVSHandleSimpleE) +esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) (_ZNK3nvs4Item14calculateCrc32Ev) +esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) (_ZN3nvs15nvs_flash_writeEjPKvj) +esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) (esp_wifi_init) +esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) (esp_netif_create_default_wifi_ap) +esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) (esp_wifi_destroy_if_driver) +esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) (g_wifi_osi_funcs) +esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) (esp_phy_common_clock_enable) +esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) (dhcps_option_info) +esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) (tcpip_input) +esp-idf/lwip/liblwip.a(def.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) (lwip_htons) +esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) (dns_setserver) +esp-idf/lwip/liblwip.a(init.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) (lwip_init) +esp-idf/lwip/liblwip.a(ip.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) (ipaddr_aton) +esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) (mem_init) +esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) (memp_init) +esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) (netif_set_addr) +esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) (pbuf_free) +esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) (raw_netif_ip_addr_changed) +esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) (tcp_init) +esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) (tcp_input_pcb) +esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) (tcp_split_unsent_seg) +esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) (sys_timeout) +esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) (udp_init) +esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) (dhcp_cleanup) +esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) (etharp_cleanup_netif) +esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) (icmp_dest_unreach) +esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) (igmp_init) +esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) (ip4_route_src) +esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) (ip4_addr_isbroadcast_u32) +esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) (ip4_frag) +esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) (icmp6_dest_unreach) +esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) (ip6_route) +esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(ip.c.obj) (ip6addr_aton) +esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) (ip6_reass_tmr) +esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) (mld6_stop) +esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) (nd6_input) +esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) (ethbroadcast) +esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) (sys_sem_new) +esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) (ip6_chksum_pseudo) +esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) (esp_vfs_lwip_sockets_register) +esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) (lwip_close) +esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) (netconn_new_with_proto_and_callback) +esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) (lwip_netconn_is_deallocated_msg) +esp-idf/lwip/liblwip.a(err.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) (err_to_errno) +esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) (netbuf_delete) +esp-idf/log/liblog.a(log.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) (esp_log_level_set) +esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/log/liblog.a(log.c.obj) (esp_log_impl_lock) +esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) (heap_caps_malloc) +esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) (registered_heaps) +esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) (multi_heap_get_allocated_size) +esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) (gpio_wakeup_enable) +esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + esp-idf/esp32/libesp32.a(int_wdt.c.obj) (periph_module_enable) +esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) (rtc_gpio_deinit) +esp-idf/driver/libdriver.a(rtc_module.c.obj) + esp-idf/esp_common/libesp_common.a(brownout.c.obj) (rtc_isr_register) +esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (spicommon_bus_using_iomux) +esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) (uart_set_word_length) +esp-idf/esp32/libesp32.a(hw_random.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) (esp_random) +esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) (esp_pm_impl_waiti) +esp-idf/esp32/libesp32.a(reset_reason.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) (esp_reset_reason) +esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) (esp_deep_sleep_start) +esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) (esp_efuse_mac_get_default) +esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + esp-idf/esp32/libesp32.a(pm_esp32.c.obj) (esp_pm_lock_create) +esp-idf/esp_common/libesp_common.a(system_api.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) (esp_register_shutdown_handler) +esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) (ets_timer_setfn) +esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) (xEventGroupCreate) +esp-idf/console/libconsole.a(commands.c.obj) + esp-idf/main/libmain.a(main.c.obj) (esp_console_init) +esp-idf/console/libconsole.a(split_argv.c.obj) + esp-idf/console/libconsole.a(commands.c.obj) (esp_console_split_argv) +esp-idf/console/libconsole.a(argtable3.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) (arg_end) +esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/main/libmain.a(main.c.obj) (linenoiseSetMultiLine) +esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/https_server/libhttps_server.a(https_server.c.obj) (httpd_resp_set_type) +esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + esp-idf/https_server/libhttps_server.a(https_server.c.obj) (httpd_register_uri_handler) +esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) (httpd_sess_get) +esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) (httpd_queue_work) +esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) (httpd_req_new) +esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) (cs_create_ctrl_sock) +esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + esp-idf/https_server/libhttps_server.a(https_server.c.obj) (httpd_ssl_start) +esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + esp-idf/main/libmain.a(main.c.obj) (esp_vfs_fat_spiflash_mount) +esp-idf/fatfs/libfatfs.a(diskio.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) (ff_diskio_get_drive) +esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) (ff_diskio_register_raw_partition) +esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) (ff_diskio_register_wl_partition) +esp-idf/fatfs/libfatfs.a(ff.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) (f_mount) +esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) (ff_memalloc) +esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) (esp_vfs_fat_register) +esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) (wl_mount) +esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) (_ZN9PartitionC1EPK15esp_partition_t) +esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) (_ZN8WL_FlashC1Ev) +esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) + esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) (_ZN5crc328crc32_leEjPKhj) +esp-idf/newlib/libnewlib.a(select.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) (select) +esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) (soc_get_available_memory_region_max_count) +esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) (rtcio_hal_set_direction) +esp-idf/soc/libsoc.a(gpio_hal.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) (gpio_hal_intr_enable_on_core) +esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) (uart_hal_set_baudrate) +esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) (uart_hal_rxfifo_rst) +esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (spi_flash_hal_init) +esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (spi_flash_hal_poll_cmd_done) +esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) (rtc_sleep_init) +esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) (soc_memory_region_count) +esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) (GPIO_HOLD_MASK) +esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) (rtc_io_desc) +esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (spi_periph_signal) +esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) (uart_periph_signal) +esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) (esp_netif_action_start) +esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) (_g_esp_netif_inherent_ap_config) +esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) (_g_esp_netif_netstack_default_wifi_ap) +esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) (ETH_EVENT) +esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) (tcpip_adapter_compat_start_eth) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/ca/libca.a(ca.c.obj) (mbedtls_mpi_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/ca/libca.a(ca.c.obj) (mbedtls_ctr_drbg_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) (mbedtls_ecp_curve_list) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) (mbedtls_ecp_group_load) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/ca/libca.a(ca.c.obj) (mbedtls_entropy_free) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) + esp-idf/ca/libca.a(ca.c.obj) (mbedtls_strerror) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) (mbedtls_md_info_from_type) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) (mbedtls_sha512_info) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/ca/libca.a(ca.c.obj) (mbedtls_pk_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) (mbedtls_rsa_alt_info) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) (mbedtls_pkcs5_pbkdf2_hmac) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/ca/libca.a(ca.c.obj) (mbedtls_pk_parse_keyfile) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) (mbedtls_pk_write_key_der) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) (mbedtls_calloc) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) (mbedtls_platform_zeroize) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) (mbedtls_rsa_import_raw) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) (mbedtls_rsa_deduce_primes) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) (mbedtls_sha1_ret) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) (mbedtls_sha256_ret) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) (mbedtls_sha512_ret) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) (mbedtls_hardware_poll) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) (esp_mbedtls_mem_calloc) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) (mbedtls_sha1_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) (mbedtls_sha256_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) (mbedtls_sha512_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) (mbedtls_mpi_exp_mod) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-cbc.c.obj) (esp_aes_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) (esp_sha_try_lock_engine) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) (mbedtls_asn1_get_tag) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) (mbedtls_asn1_write_len) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) (mbedtls_cipher_info_from_type) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) (mbedtls_cipher_supported) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) (mbedtls_ecdsa_write_signature) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) (mbedtls_gcm_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) (mbedtls_hmac_drbg_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) (mbedtls_md5_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) (mbedtls_oid_get_pk_alg) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) (mbedtls_pem_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) (mbedtls_pkcs12_pbe_sha1_rc4_128) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) (mbedtls_base64_encode) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) (mbedtls_ccm_init) +esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/ca/libca.a(ca.c.obj) (mbedtls_x509_dn_gets) +esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) (mbedtls_x509_crt_verify) +esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + esp-idf/ca/libca.a(ca.c.obj) (mbedtls_x509_csr_init) +esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/ca/libca.a(ca.c.obj) (mbedtls_x509write_crt_init) +esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) (mbedtls_test_cli_crt_len) +esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) (mbedtls_x509_string_to_names) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) (bootloader_common_get_sha256_of_partition) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (bootloader_mmap) +esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (esp_image_verify) +esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (esp_partition_table_verify) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (bootloader_common_get_chip_revision) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (bootloader_sha256_start) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) (bootloader_debug_buffer) +esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) (esp_ota_get_running_partition) +esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) (os_get_time) +esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) (esp_supplicant_init) +esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (esp_wifi_register_wpa3_cb) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (cipher_type_map_supp_to_public) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (wpa_parse_wpa_ie) +esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) (inc_byte_array) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) (wpabuf_alloc) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) (eloop_cancel_timeout) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (wpa_receive) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) (wpa_auth_gen_wpa_ie) +esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) (sae_set_group) +esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) (wpa_parse_wpa_ie_rsn) +esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) (crypto_bignum_init) +esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) (dh_groups_get) +esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) (hostap_init) +esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) (wpa_sm_alloc_eapol) +esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) (pmksa_cache_add) +esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) (hostapd_setup_wpa_psk) +esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_internal-modexp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) (crypto_mod_exp) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) (esp_wifi_init_internal) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) (g_ic) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) (ieee80211_crypto_attach) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) (ccmp) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) (tkip) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) (wep) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) (g_dbg_cnt_hmac) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) (ap_rx_cb) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) (ieee80211_ht_attach) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) (ieee80211_add_ie_vendor_esp_head) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) (ieee80211_decap) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) (g_wifi_menuconfig) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) (ieee80211_mesh_quick_init) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) (g_wifi_nvs) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) (ieee80211_set_hmac_stop) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) (ieee80211_phy_deinit) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) (ieee80211_psq_init) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) (ieee80211_proto_attach) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) (ieee80211_regdomain_max_tx_power) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) (ieee80211_rfid_locp_recv_reset) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) (gScanStruct) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) (ieee80211_sta_new_state) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) (esp_wifi_ap_get_prof_pmk_internal) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) (ieee80211_timer_do_process) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) (g_chm) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) (cnx_csa_fn) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) (ieee80211_send_action_register) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) (ieee80211_action_vendor_spec_attach) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) (ieee80211_getmgtframe) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) (esf_buf_setup_for_mesh) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) (ic_get_addr) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) (lmacIsIdle) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) (pm_is_open) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_for_bcn_only_mode.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) (fpm_allow_tx) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) (pTxRx) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) (wifi_gpio_debug) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) (pp_timer_do_process) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) (RC_SetBasicRate) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) (rx11NRate2AMPDULimit) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) (wDevCtrl) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) (coex_bt_high_prio) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) (phy_change_channel_nomac) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) (phy_unforce_wifi_chan) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) (g_phyFuns) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) (ram_txbbgain_to_index) +esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) (phy_printf) +esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) (xRingbufferCreate) +esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) (touch_pad_get_wakeup_status) +esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) (http_parser_execute) +esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) (esp_tls_server_session_create) +esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) (esp_mbedtls_read) +esp-idf/lwip/liblwip.a(netdb.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) (lwip_freeaddrinfo) +esp-idf/lwip/liblwip.a(wlanif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) (wlanif_input) +esp-idf/lwip/liblwip.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) (ethernetif_input) +esp-idf/lwip/liblwip.a(ethip6.c.obj) + esp-idf/lwip/liblwip.a(wlanif.c.obj) (ethip6_output) +esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) (touch_hal_set_voltage) +esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) (touch_hal_get_wakeup_status) +esp-idf/soc/soc/esp32/libsoc_esp32.a(touch_sensor_periph.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) (touch_sensor_channel_io_map) +esp-idf/esp_netif/libesp_netif.a(esp_netif_sta_list.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) (esp_netif_get_sta_list) +esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) (esp_eth_new_netif_glue) +esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) (mbedtls_ssl_init) +esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) (mbedtls_net_init) +esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) (mbedtls_ssl_list_ciphersuites) +esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) (mbedtls_ssl_handshake_client_step) +esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) (mbedtls_ssl_handshake_server_step) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) (mbedtls_dhm_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) (mbedtls_ecdh_init) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_param.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) (coex_params) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) (coex_schm_status_bit_set) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) (coex_time_now) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) (g_coa_funcs_p) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) (coex_timer_ts_start_handler) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_hw.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) (coex_force_wifi_mode) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) (coex_arbit_insert) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) (g_misc_nvs) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) (esp_mesh_is_scan_allowed) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) (mesh_set_ie_crypto_config) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) (esp_mesh_match_self) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) (mesh_self_xonseq) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) (mesh_timer_do_process) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) (esp_mesh_free_context) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) (g_is_mesh_started) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) (esp_mesh_ap_list_clear) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) (g_mesh_nvs_settings) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) (esp_mesh_io_sem_signal) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) (esp_mesh_delivery_toDS) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) (esp_mesh_channel_enable_jp) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) (mesh_sta_set_config) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) (esp_mesh_rx_task_deinit) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) (temprature_sens_read) +/home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) (rtc_pads_muxsel) +esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) (esp_mesh_send_event_internal) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (_ZdlPv) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) (_ZdaPv) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (_ZSt7nothrow) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) (_ZnwjRKSt9nothrow_t) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) (_ZnajRKSt9nothrow_t) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) (_ZTVN10__cxxabiv120__si_class_type_infoE) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) (_ZSt9terminatev) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) (__gxx_personality_v0) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) (_ZdlPvj) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) (__cxa_get_globals_fast) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) (_ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) (_ZNSt9type_infoD2Ev) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) (_ZN10__cxxabiv119__terminate_handlerE) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) (_ZN10__cxxabiv120__unexpected_handlerE) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divsf3.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) (__divsf3) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatdisf.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) (__floatundisf) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_muldf3.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) (__muldf3) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdf3.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) (__divdf3) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfdi.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) (__fixdfdi) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfdi.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) (__fixunsdfdi) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatsidf.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) (__floatsidf) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatdidf.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) (__floatdidf) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_extendsfdf2.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) (__extendsfdf2) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_popcountsi2.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__popcountsi2) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) (__bswapsi2) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + esp-idf/newlib/libnewlib.a(time.c.obj) (__divdi3) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + esp-idf/newlib/libnewlib.a(time.c.obj) (__moddi3) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + esp-idf/esp32/libesp32.a(clk.c.obj) (__udivdi3) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + esp-idf/newlib/libnewlib.a(time.c.obj) (__umoddi3) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) (_Unwind_SetGR) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) (_Unwind_Find_FDE) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(lib2funcs.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) (__xtensa_libgcc_window_spill) +/home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) + esp-idf/freertos/libfreertos.a(portasm.S.obj) (xthal_window_spill_nw) +/home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(int_asm--set_intclear.o) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) (xthal_set_intclear) +/home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) + esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) (Xthal_intlevel) +/home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--restore_extra_nw.o) + esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) (xthal_restore_extra_nw) +/home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--save_extra_nw.o) + esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) (xthal_save_extra_nw) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) + esp-idf/console/libconsole.a(commands.c.obj) (asprintf) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + esp-idf/pthread/libpthread.a(pthread.c.obj) (__assert_func) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + esp-idf/main/libmain.a(main.c.obj) (atoi) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + esp-idf/newlib/libnewlib.a(heap.c.obj) (bzero) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) (environ) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) (__errno) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + esp-idf/ca/libca.a(ca.c.obj) (fclose) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + esp-idf/ca/libca.a(gen_key.c.obj) (ferror) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) (__sflush_r) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) + esp-idf/console/libconsole.a(linenoise.c.obj) (fgetc) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + esp-idf/console/libconsole.a(linenoise.c.obj) (fgets) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) + esp-idf/main/libmain.a(main.c.obj) (fileno) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) (_cleanup_r) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) (fiprintf) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) (fopen) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + esp-idf/console/libconsole.a(argtable3.c.obj) (fprintf) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) (fputc) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) (fputs) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + esp-idf/ca/libca.a(gen_key.c.obj) (fread) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) (_fseek_r) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) (_fseeko_r) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) (ftell) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) (_ftello_r) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) (__sfvwrite_r) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) (_fwalk) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + esp-idf/ca/libca.a(ca.c.obj) (fwrite) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + esp-idf/console/libconsole.a(argtable3.c.obj) (optarg) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) (_global_impure_ptr) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + esp-idf/log/liblog.a(log_freertos.c.obj) (localtime_r) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + esp-idf/lwip/liblwip.a(dns.c.obj) (__locale_ctype_ptr) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) (__smakebuf_r) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) (__ascii_mbtowc) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + esp-idf/nghttp/libnghttp.a(http_parser.c.obj) (memchr) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + esp-idf/freertos/libfreertos.a(tasks.c.obj) (memcmp) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + esp-idf/pthread/libpthread.a(pthread.c.obj) (memcpy) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + esp-idf/lwip/liblwip.a(def.c.obj) (memmove) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + esp-idf/pthread/libpthread.a(pthread.c.obj) (memset) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) (mktime) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) (__month_lengths) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + esp-idf/console/libconsole.a(commands.c.obj) (open_memstream) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) (printf) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) (_putc_r) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + esp-idf/ca/libca.a(ca.c.obj) (putchar) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + esp-idf/main/libmain.a(main.c.obj) (puts) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) (qsort) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) (rand) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + esp-idf/freertos/libfreertos.a(tasks.c.obj) (_reclaim_reent) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) (__srefill_r) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) (__srget_r) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setjmp.o) + esp-idf/console/libconsole.a(argtable3.c.obj) (setjmp) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + esp-idf/main/libmain.a(main.c.obj) (setvbuf) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) (snprintf) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + esp-idf/freertos/libfreertos.a(tasks.c.obj) (sprintf) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) (sscanf) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) (__sread) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strchr.o) + esp-idf/ca/libca.a(ca.c.obj) (strchr) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) (strcmp) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + esp-idf/freertos/libfreertos.a(tasks.c.obj) (strcpy) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + esp-idf/console/libconsole.a(argtable3.c.obj) (strcspn) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) (strdup) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) (_strdup_r) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) (strerror_r) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) + esp-idf/console/libconsole.a(argtable3.c.obj) (strftime) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) (strlcpy) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + esp-idf/freertos/libfreertos.a(tasks.c.obj) (strlen) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncasecmp.o) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) (strncasecmp) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncat.o) + esp-idf/console/libconsole.a(argtable3.c.obj) (strncat) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) (strncmp) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) (strncpy) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) (strndup) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) (_strndup_r) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strnlen.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) (strnlen) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + esp-idf/console/libconsole.a(argtable3.c.obj) (strrchr) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + esp-idf/lwip/liblwip.a(dns.c.obj) (strstr) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + esp-idf/console/libconsole.a(argtable3.c.obj) (strtod) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) (_strtol_r) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) (strtoll) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) (strtoul) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) (strtoull) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) (_svfprintf_r) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) (__ssvfscanf_r) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysclose.o) + esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) (close) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + esp-idf/log/liblog.a(log_freertos.c.obj) (gettimeofday) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysread.o) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) (read) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysstat.o) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) (stat) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-syswrite.o) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) (write) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-time.o) + esp-idf/fatfs/libfatfs.a(diskio.c.obj) (time) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-timelocal.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) (_C_time_locale) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) (__tzcalc_limits) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) (__tz_lock) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) (_tzset_unlocked) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) (_tzset_unlocked_r) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) (_timezone) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) (_vfiprintf_r) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) (_vfprintf_r) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + esp-idf/log/liblog.a(log.c.obj) (vprintf) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) (vsnprintf) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) (__swbuf_r) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) (__ascii_wctomb) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) (__swsetup_r) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) (_isatty_r) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-abs.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) (abs) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) (_ctype_) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-div.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) (div) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) (_dtoa_r) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) (__sflags) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) (_fputwc_r) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) (__gethex) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) (__match) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) (getenv) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) (_findenv_r) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) (__gettzinfo) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) (gmtime_r) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) (iswspace) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-labs.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) (labs) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) (__localeconv_l) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) (_mbrtowc_r) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) (_Balloc) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) (frexp) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) (__sccl) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) (nanf) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) (siscanf) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sniprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) (sniprintf) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) (_strerror_r) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) (__chclass) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) (_sungetc_r) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) (_user_strerror) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) (__submore) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) (_wcrtomb_r) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) (__env_lock) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_addsubdf3.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) (__adddf3) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) (__eqdf2) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfsi.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) (__fixdfsi) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfsi.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) (__fixunsdfsi) +/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_truncdfsf2.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) (__truncdfsf2) + +Allocating common symbols +Common symbol size file + +pwrdet_offset 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +registered_heaps 0x4 esp-idf/heap/libheap.a(heap_caps_init.c.obj) +default_router_list + 0x24 esp-idf/lwip/liblwip.a(nd6.c.obj) +phy_rxbb_dc 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +netif_list 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) +tcp_active_pcbs_changed + 0x1 esp-idf/lwip/liblwip.a(tcp.c.obj) +mesh_self_xonseq 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +phy_chan_gain_table + 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +prefix_list 0x8c esp-idf/lwip/liblwip.a(nd6.c.obj) +phy_rxrf_dc 0x84 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +phy_chan_pwr_index 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +g_mesh_manual_nwk 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_mesh_self_map_addr + 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +__packed__ 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_cnxMgr 0xc18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wDevCtrl 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +g_misc_nvs 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) +netif_default 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) +DefFreqCalTimer 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +bt_wifi_chan_data 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +neighbor_cache 0x1b8 esp-idf/lwip/liblwip.a(nd6.c.obj) +g_ic 0x22c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +udp_pcbs 0x4 esp-idf/lwip/liblwip.a(udp.c.obj) +destination_cache 0x1e0 esp-idf/lwip/liblwip.a(nd6.c.obj) +ip_data 0x44 esp-idf/lwip/liblwip.a(ip.c.obj) +chip7_sleep_params 0xc4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +phy_chan_target_power + 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +g_mesh_xon_cfg_qsize + 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +s_cpu_freq_by_mode 0x40 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) +mesh_xon 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +tcp_active_pcbs 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) +dport_access_end 0x8 esp-idf/esp32/libesp32.a(dport_access.c.obj) +set_most_tpw 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +SigInMacISR 0x190 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pbuf_free_ooseq_pending + 0x1 esp-idf/lwip/liblwip.a(pbuf.c.obj) +gWpaSm 0x25c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +dhcp_rx_options_given + 0xb esp-idf/lwip/liblwip.a(dhcp.c.obj) +freq_i2c_addr 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +mesh_conn_leave 0x2c8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +h_errno 0x4 esp-idf/lwip/liblwip.a(netdb.c.obj) +tcp_input_pcb 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) +g_dbg_cnt_hmac 0x240 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) +g_wifi_menuconfig 0x48 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +gScanStruct 0x114 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +g_log_level 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) +g_mesh_cfg_attemps 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +sta_con_timer 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +s_microseconds_offset + 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) +tcp_bound_pcbs 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_ticks 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) +mesh_xmit_state_mbox + 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mbedtls_cipher_supported + 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +chip7_phy_init_ctrl + 0x6e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +lmacConfMib 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +g_mesh_current_parent + 0x50 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_log_mod 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) +g_mesh_self_sta_addr + 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +interface_mask 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +tcp_tw_pcbs 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_listen_pcbs 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) +g_mesh_ext_vote_state + 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_ext_cfg 0xcc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +dport_access_start 0x8 esp-idf/esp32/libesp32.a(dport_access.c.obj) +ff_raw_handles 0x8 esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) +g_dbg_cnt_lmac 0x6d8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +assoc_ie_buf 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +phy_rx_gain_gen 0x140 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ApFreqCalTimer 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +global_arg 0x8 esp-idf/ca/libca.a(gen_key.c.obj) +dhcp_rx_options_val + 0x2c esp-idf/lwip/liblwip.a(dhcp.c.obj) +g_mesh_ie 0x3a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +chip7_phy_api_ctrl 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +opt 0x54 esp-idf/ca/libca.a(ca.c.obj) +wpa_crypto_funcs 0x60 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) +adc_ana_conf_org 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +if_ctrl 0x28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + +Discarded input sections + + .literal 0x0000000000000000 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .text 0x0000000000000000 0x6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .debug_line 0x0000000000000000 0x89 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .debug_info 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .debug_abbrev 0x0000000000000000 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .debug_str 0x0000000000000000 0xcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .xt.prop 0x0000000000000000 0x24 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .text 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crti.o + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crti.o + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crti.o + .xt.prop 0x0000000000000000 0x30 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crti.o + .literal 0x0000000000000000 0x44 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .fini.literal 0x0000000000000000 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .init.literal 0x0000000000000000 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .text 0x0000000000000000 0xa6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .data 0x0000000000000000 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .bss 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .ctors 0x0000000000000000 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .tm_clone_table + 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .fini 0x0000000000000000 0x6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .init 0x0000000000000000 0x6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .xt.lit 0x0000000000000000 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .xt.prop 0x0000000000000000 0x15c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .text 0x0000000000000000 0x0 CMakeFiles/bakalarka.elf.dir/project_elf_src.c.obj + .data 0x0000000000000000 0x0 CMakeFiles/bakalarka.elf.dir/project_elf_src.c.obj + .bss 0x0000000000000000 0x0 CMakeFiles/bakalarka.elf.dir/project_elf_src.c.obj + .comment 0x0000000000000000 0x26 CMakeFiles/bakalarka.elf.dir/project_elf_src.c.obj + .text 0x0000000000000000 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .data 0x0000000000000000 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .xt.prop 0x0000000000000000 0xcc esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .literal.pthread_list_find_item + 0x0000000000000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_find + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.get_default_pthread_core + 0x0000000000000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_delete + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.esp_pthread_set_cfg + 0x0000000000000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.esp_pthread_get_cfg + 0x0000000000000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.esp_pthread_get_default_config + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_create + 0x0000000000000000 0x80 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_join + 0x0000000000000000 0x50 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_detach + 0x0000000000000000 0x2c esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_exit + 0x0000000000000000 0x48 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_task_func + 0x0000000000000000 0xc esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.sched_yield + 0x0000000000000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_self + 0x0000000000000000 0x2c esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_once + 0x0000000000000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_destroy + 0x0000000000000000 0xc esp-idf/pthread/libpthread.a(pthread.c.obj) + .iram1.18.literal + 0x0000000000000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .iram1.19.literal + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutexattr_settype + 0x0000000000000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_attr_init + 0x0000000000000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_attr_destroy + 0x0000000000000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .data 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_list_find_item + 0x0000000000000000 0x21 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_get_handle_by_desc + 0x0000000000000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_get_desc_by_handle + 0x0000000000000000 0xc esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_find + 0x0000000000000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.get_default_pthread_core + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_delete + 0x0000000000000000 0x27 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_set_cfg + 0x0000000000000000 0x51 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_get_cfg + 0x0000000000000000 0x32 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_get_default_config + 0x0000000000000000 0x20 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_create + 0x0000000000000000 0x1ad esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_join + 0x0000000000000000 0x125 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_detach + 0x0000000000000000 0x86 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_exit.str1.4 + 0x0000000000000000 0x34 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_exit + 0x0000000000000000 0xb6 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_task_func + 0x0000000000000000 0x2f esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.sched_yield + 0x0000000000000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_self.str1.4 + 0x0000000000000000 0x2d esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_self + 0x0000000000000000 0x5f esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_equal + 0x0000000000000000 0x11 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_once.str1.4 + 0x0000000000000000 0x29 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_once + 0x0000000000000000 0x5d esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_destroy + 0x0000000000000000 0x38 esp-idf/pthread/libpthread.a(pthread.c.obj) + .iram1.18 0x0000000000000000 0x6e esp-idf/pthread/libpthread.a(pthread.c.obj) + .iram1.19 0x0000000000000000 0x22 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_init + 0x0000000000000000 0x16 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_destroy + 0x0000000000000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_gettype + 0x0000000000000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_settype + 0x0000000000000000 0x22 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_init + 0x0000000000000000 0x18 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_destroy + 0x0000000000000000 0x18 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_getstacksize + 0x0000000000000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_setstacksize + 0x0000000000000000 0x26 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_getdetachstate + 0x0000000000000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_setdetachstate + 0x0000000000000000 0x25 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__FUNCTION__$6090 + 0x0000000000000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$6079 + 0x0000000000000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$6067 + 0x0000000000000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$6060 + 0x0000000000000000 0xf esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$6052 + 0x0000000000000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$6042 + 0x0000000000000000 0xf esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss.s_threads_list + 0x0000000000000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .xt.lit 0x0000000000000000 0xe8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .xt.prop 0x0000000000000000 0xf3c esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_internal_local_storage_destructor_callback + 0x0000000000000000 0xc esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .data 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text.pthread_internal_local_storage_destructor_callback + 0x0000000000000000 0x2a esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .xt.lit 0x0000000000000000 0x38 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .xt.prop 0x0000000000000000 0x390 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + .xt.lit 0x0000000000000000 0x48 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + .xt.prop 0x0000000000000000 0x264 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + .iram1.23.literal + 0x0000000000000000 0x4 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .iram1.23 0x0000000000000000 0xf esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .xt.prop 0x0000000000000000 0x18c esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .iram1.21.literal + 0x0000000000000000 0x10 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .iram1.23.literal + 0x0000000000000000 0x10 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .iram1.21 0x0000000000000000 0x27 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .iram1.23 0x0000000000000000 0x27 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .xt.lit 0x0000000000000000 0x50 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .xt.prop 0x0000000000000000 0x2ac esp-idf/esp32/libesp32.a(dport_access.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) + .xt.prop 0x0000000000000000 0x9c esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) + .text 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + .xt.prop 0x0000000000000000 0xb4 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + .literal.esp_intr_mark_shared + 0x0000000000000000 0x14 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .literal.esp_intr_reserve + 0x0000000000000000 0x14 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .iram1.16.literal + 0x0000000000000000 0x10 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .iram1.21.literal + 0x0000000000000000 0x4 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .iram1.22.literal + 0x0000000000000000 0x4 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .text.esp_intr_mark_shared + 0x0000000000000000 0x5d esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .text.esp_intr_reserve + 0x0000000000000000 0x4f esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .iram1.16 0x0000000000000000 0x89 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .text.esp_intr_get_intno + 0x0000000000000000 0xc esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .text.esp_intr_get_cpu + 0x0000000000000000 0xc esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .iram1.21 0x0000000000000000 0xe esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .iram1.22 0x0000000000000000 0xe esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .xt.lit 0x0000000000000000 0xa8 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .xt.prop 0x0000000000000000 0xd74 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .literal.esp_set_breakpoint_if_jtag + 0x0000000000000000 0x8 esp-idf/esp32/libesp32.a(panic.c.obj) + .literal._esp_error_check_failed_without_abort + 0x0000000000000000 0x8 esp-idf/esp32/libesp32.a(panic.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(panic.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(panic.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(panic.c.obj) + .text.esp_reset_reason_set_hint + 0x0000000000000000 0x5 esp-idf/esp32/libesp32.a(panic.c.obj) + .text.esp_reset_reason_get_hint + 0x0000000000000000 0x7 esp-idf/esp32/libesp32.a(panic.c.obj) + .text.esp_set_breakpoint_if_jtag + 0x0000000000000000 0x16 esp-idf/esp32/libesp32.a(panic.c.obj) + .text.esp_clear_watchpoint + 0x0000000000000000 0x14 esp-idf/esp32/libesp32.a(panic.c.obj) + .rodata._esp_error_check_failed_without_abort.str1.4 + 0x0000000000000000 0x1e esp-idf/esp32/libesp32.a(panic.c.obj) + .text._esp_error_check_failed_without_abort + 0x0000000000000000 0x18 esp-idf/esp32/libesp32.a(panic.c.obj) + .xt.lit 0x0000000000000000 0xb0 esp-idf/esp32/libesp32.a(panic.c.obj) + .xt.prop 0x0000000000000000 0x8ac esp-idf/esp32/libesp32.a(panic.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + .xt.prop 0x0000000000000000 0xd8 esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + .literal.esp_task_wdt_deinit + 0x0000000000000000 0x3c esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .literal.esp_task_wdt_delete + 0x0000000000000000 0x38 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .literal.esp_task_wdt_status + 0x0000000000000000 0x1c esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .rodata.esp_task_wdt_deinit.str1.4 + 0x0000000000000000 0x28 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .text.esp_task_wdt_deinit + 0x0000000000000000 0x97 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .text.esp_task_wdt_delete + 0x0000000000000000 0xb6 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .text.esp_task_wdt_status + 0x0000000000000000 0x5d esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .rodata.__func__$5761 + 0x0000000000000000 0x14 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .xt.lit 0x0000000000000000 0x50 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .xt.prop 0x0000000000000000 0x570 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + .xt.prop 0x0000000000000000 0xa8 esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + .iram1.6.literal + 0x0000000000000000 0x8 esp-idf/esp32/libesp32.a(clk.c.obj) + .literal.rtc_clk_select_rtc_slow_clk + 0x0000000000000000 0x4 esp-idf/esp32/libesp32.a(clk.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(clk.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(clk.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(clk.c.obj) + .iram1.6 0x0000000000000000 0x11 esp-idf/esp32/libesp32.a(clk.c.obj) + .text.rtc_clk_select_rtc_slow_clk + 0x0000000000000000 0xe esp-idf/esp32/libesp32.a(clk.c.obj) + .xt.lit 0x0000000000000000 0x40 esp-idf/esp32/libesp32.a(clk.c.obj) + .xt.prop 0x0000000000000000 0x21c esp-idf/esp32/libesp32.a(clk.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + .xt.prop 0x0000000000000000 0x6c esp-idf/esp_common/libesp_common.a(brownout.c.obj) + .literal.esp_err_to_name_r + 0x0000000000000000 0x18 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .rodata.esp_err_to_name_r.str1.4 + 0x0000000000000000 0xc esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .text.esp_err_to_name_r + 0x0000000000000000 0x5a esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .xt.prop 0x0000000000000000 0xe4 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .literal.esp_register_freertos_idle_hook + 0x0000000000000000 0x4 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .literal.esp_register_freertos_tick_hook + 0x0000000000000000 0x4 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .literal.esp_deregister_freertos_idle_hook_for_cpu + 0x0000000000000000 0x10 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .literal.esp_deregister_freertos_idle_hook + 0x0000000000000000 0x10 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .literal.esp_deregister_freertos_tick_hook_for_cpu + 0x0000000000000000 0x10 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .literal.esp_deregister_freertos_tick_hook + 0x0000000000000000 0x10 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .text.esp_register_freertos_idle_hook + 0x0000000000000000 0x15 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .text.esp_register_freertos_tick_hook + 0x0000000000000000 0x15 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_idle_hook_for_cpu + 0x0000000000000000 0x44 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_idle_hook + 0x0000000000000000 0x2c esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_tick_hook_for_cpu + 0x0000000000000000 0x44 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_tick_hook + 0x0000000000000000 0x2c esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .xt.lit 0x0000000000000000 0x50 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .xt.prop 0x0000000000000000 0x378 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .xt.prop 0x0000000000000000 0x1e0 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .literal.print_timer_info + 0x0000000000000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .literal.esp_timer_deinit + 0x0000000000000000 0x1c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .literal.esp_timer_dump + 0x0000000000000000 0x24 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.25.literal + 0x0000000000000000 0x14 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .rodata.print_timer_info.str1.4 + 0x0000000000000000 0x1a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.print_timer_info + 0x0000000000000000 0x2d esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.esp_timer_deinit + 0x0000000000000000 0x43 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.esp_timer_dump + 0x0000000000000000 0x89 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.25 0x0000000000000000 0x26 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .xt.lit 0x0000000000000000 0x98 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .xt.prop 0x0000000000000000 0x7d4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .literal.esp_timer_impl_deinit + 0x0000000000000000 0x14 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .literal.esp_timer_impl_get_alarm_reg + 0x0000000000000000 0x24 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text.esp_timer_impl_deinit + 0x0000000000000000 0x36 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text.esp_timer_impl_get_alarm_reg + 0x0000000000000000 0x53 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .xt.lit 0x0000000000000000 0x60 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .xt.prop 0x0000000000000000 0x39c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .literal.vPortAssertIfInISR + 0x0000000000000000 0x14 esp-idf/freertos/libfreertos.a(port.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.vPortEndScheduler + 0x0000000000000000 0x5 esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.vPortAssertIfInISR.str1.4 + 0x0000000000000000 0x58 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.vPortAssertIfInISR + 0x0000000000000000 0x1f esp-idf/freertos/libfreertos.a(port.c.obj) + .text.xPortGetTickRateHz + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.__FUNCTION__$5066 + 0x0000000000000000 0x13 esp-idf/freertos/libfreertos.a(port.c.obj) + .xt.lit 0x0000000000000000 0x60 esp-idf/freertos/libfreertos.a(port.c.obj) + .xt.prop 0x0000000000000000 0x390 esp-idf/freertos/libfreertos.a(port.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .xt.prop 0x0000000000000000 0x168 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .xt.prop 0x0000000000000000 0xf0 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .literal.xt_clock_freq + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .text.xt_clock_freq + 0x0000000000000000 0xd esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .xt.prop 0x0000000000000000 0x6c esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) + .xt.prop 0x0000000000000000 0x54 esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) + .literal.xt_set_exception_handler + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + .text.xt_set_exception_handler + 0x0000000000000000 0x4b esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + .xt.prop 0x0000000000000000 0x150 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + .DebugExceptionVector.literal + 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .DoubleExceptionVector.literal + 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .KernelExceptionVector.literal + 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .UserExceptionVector.literal + 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .Level2InterruptVector.literal + 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .Level3InterruptVector.literal + 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .Level4InterruptVector.literal + 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .Level5InterruptVector.literal + 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .NMIExceptionVector.literal + 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .UserEnter.text + 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .xt.prop 0x0000000000000000 0x4f8 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .xt.prop 0x0000000000000000 0xc esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .literal.xQueuePeekFromISR + 0x0000000000000000 0x28 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.uxQueueMessagesWaitingFromISR + 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueIsQueueEmptyFromISR + 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueIsQueueFullFromISR + 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueCreateSet + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueAddToSet + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueRemoveFromSet + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueSelectFromSet + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueSelectFromSetFromISR + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueuePeekFromISR + 0x0000000000000000 0x84 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.uxQueueMessagesWaitingFromISR + 0x0000000000000000 0x33 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.uxQueueGetQueueNumber + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.vQueueSetQueueNumber + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.ucQueueGetQueueType + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueIsQueueEmptyFromISR + 0x0000000000000000 0x3c esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueIsQueueFullFromISR + 0x0000000000000000 0x3f esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueCreateSet + 0x0000000000000000 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueAddToSet + 0x0000000000000000 0x34 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueRemoveFromSet + 0x0000000000000000 0x38 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueSelectFromSet + 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueSelectFromSetFromISR + 0x0000000000000000 0x15 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__FUNCTION__$5191 + 0x0000000000000000 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__FUNCTION__$5181 + 0x0000000000000000 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__FUNCTION__$5146 + 0x0000000000000000 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__FUNCTION__$5128 + 0x0000000000000000 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) + .xt.lit 0x0000000000000000 0xf8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .xt.prop 0x0000000000000000 0xe88 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.prvTaskGetSnapshotsFromList + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.prvTaskIsTaskSuspended + 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskCreateRestricted + 0x0000000000000000 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskResume + 0x0000000000000000 0x40 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskResumeFromISR + 0x0000000000000000 0x48 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskEndScheduler + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGetIdleTaskHandle + 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskMissedYield + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskPriorityGetFromISR + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskSetThreadLocalStoragePointer + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskAllocateMPURegions + 0x0000000000000000 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskGetStackHighWaterMark + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.pxTaskGetStackStart + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.eTaskGetState + 0x0000000000000000 0x34 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskDelayUntil + 0x0000000000000000 0x3c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.ulTaskNotifyTake + 0x0000000000000000 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskNotifyWait + 0x0000000000000000 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskNotify + 0x0000000000000000 0x48 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskNotifyFromISR + 0x0000000000000000 0x50 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskNotifyGiveFromISR + 0x0000000000000000 0x50 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskGetSnapshotAll + 0x0000000000000000 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvTaskGetSnapshot + 0x0000000000000000 0x3c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvTaskGetSnapshotsFromList + 0x0000000000000000 0x47 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvTaskIsTaskSuspended + 0x0000000000000000 0x4e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskCreateRestricted + 0x0000000000000000 0x72 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskResume + 0x0000000000000000 0xe0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskResumeFromISR + 0x0000000000000000 0xfe esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskEndScheduler + 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGetIdleTaskHandle + 0x0000000000000000 0x3a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskMissedYield + 0x0000000000000000 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetTaskNumber + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskSetTaskNumber + 0x0000000000000000 0xa esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskPriorityGetFromISR + 0x0000000000000000 0x23 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskSetThreadLocalStoragePointer + 0x0000000000000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskAllocateMPURegions.str1.4 + 0x0000000000000000 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskAllocateMPURegions + 0x0000000000000000 0x3c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetStackHighWaterMark + 0x0000000000000000 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.pxTaskGetStackStart + 0x0000000000000000 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.eTaskGetState + 0x0000000000000000 0xb5 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskDelayUntil + 0x0000000000000000 0xc7 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.ulTaskNotifyTake + 0x0000000000000000 0x145 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskNotifyWait + 0x0000000000000000 0x172 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskNotify + 0x0000000000000000 0x13a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskNotifyFromISR + 0x0000000000000000 0x16a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskNotifyGiveFromISR + 0x0000000000000000 0x118 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetSnapshotAll + 0x0000000000000000 0xa0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__FUNCTION__$5641 + 0x0000000000000000 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__FUNCTION__$5628 + 0x0000000000000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__FUNCTION__$5612 + 0x0000000000000000 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__FUNCTION__$5455 + 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__FUNCTION__$5318 + 0x0000000000000000 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__FUNCTION__$5254 + 0x0000000000000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__FUNCTION__$5243 + 0x0000000000000000 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__FUNCTION__$5248 + 0x0000000000000000 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__FUNCTION__$5212 + 0x0000000000000000 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__FUNCTION__$5196 + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__FUNCTION__$5139 + 0x0000000000000000 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .xt.lit 0x0000000000000000 0x228 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .xt.prop 0x0000000000000000 0x22ec esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.prvInitialiseNewTimer + 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(timers.c.obj) + .literal.xTimerCreate + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(timers.c.obj) + .literal.xTimerGetPeriod + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(timers.c.obj) + .literal.xTimerGetExpiryTime + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(timers.c.obj) + .literal.xTimerIsTimerActive + 0x0000000000000000 0xc esp-idf/freertos/libfreertos.a(timers.c.obj) + .literal.vTimerSetTimerID + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(timers.c.obj) + .literal.xTimerPendFunctionCallFromISR + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(timers.c.obj) + .literal.xTimerPendFunctionCall + 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(timers.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(timers.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(timers.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.prvInitialiseNewTimer + 0x0000000000000000 0x38 esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.xTimerCreate + 0x0000000000000000 0x26 esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.xTimerGetPeriod + 0x0000000000000000 0x1c esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.xTimerGetExpiryTime + 0x0000000000000000 0x1c esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.pcTimerGetTimerName + 0x0000000000000000 0x7 esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.xTimerIsTimerActive + 0x0000000000000000 0x24 esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.pvTimerGetTimerID + 0x0000000000000000 0x7 esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.vTimerSetTimerID + 0x0000000000000000 0x1c esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.xTimerPendFunctionCallFromISR + 0x0000000000000000 0x22 esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.xTimerPendFunctionCall + 0x0000000000000000 0x3c esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.__FUNCTION__$5004 + 0x0000000000000000 0x17 esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.__FUNCTION__$4987 + 0x0000000000000000 0x11 esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.__FUNCTION__$4892 + 0x0000000000000000 0x14 esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.__FUNCTION__$4886 + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.__FUNCTION__$4872 + 0x0000000000000000 0x16 esp-idf/freertos/libfreertos.a(timers.c.obj) + .xt.lit 0x0000000000000000 0x98 esp-idf/freertos/libfreertos.a(timers.c.obj) + .xt.prop 0x0000000000000000 0x720 esp-idf/freertos/libfreertos.a(timers.c.obj) + .iram1.literal + 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .xt.prop 0x0000000000000000 0x78 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + .xt.prop 0x0000000000000000 0xf0 esp-idf/freertos/libfreertos.a(list.c.obj) + .literal.esp_vfs_register_with_id + 0x0000000000000000 0x8 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_register_fd + 0x0000000000000000 0x14 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_unregister_fd + 0x0000000000000000 0x18 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_pread + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_pwrite + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.opendir + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.readdir + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.readdir_r + 0x0000000000000000 0x10 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.telldir + 0x0000000000000000 0x10 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.seekdir + 0x0000000000000000 0x10 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.rewinddir + 0x0000000000000000 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.closedir + 0x0000000000000000 0x10 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.mkdir + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.rmdir + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.ioctl + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.access + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.truncate + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcgetattr + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcsetattr + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcdrain + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcflush + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcflow + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcgetsid + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcsendbreak + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_utime + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_poll + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .text 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .data 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_with_id + 0x0000000000000000 0x22 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_fd + 0x0000000000000000 0x75 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_unregister_fd + 0x0000000000000000 0x85 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_pread + 0x0000000000000000 0x81 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_pwrite + 0x0000000000000000 0x84 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.opendir 0x0000000000000000 0x5a esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.readdir 0x0000000000000000 0x59 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.readdir_r + 0x0000000000000000 0x66 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.telldir 0x0000000000000000 0x5f esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.seekdir 0x0000000000000000 0x5e esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.rewinddir + 0x0000000000000000 0xf esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.closedir + 0x0000000000000000 0x5f esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.mkdir 0x0000000000000000 0x57 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.rmdir 0x0000000000000000 0x54 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.ioctl 0x0000000000000000 0x9d esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.access 0x0000000000000000 0x57 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.truncate + 0x0000000000000000 0x57 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcgetattr + 0x0000000000000000 0x7c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcsetattr + 0x0000000000000000 0x7e esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcdrain 0x0000000000000000 0x77 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcflush 0x0000000000000000 0x7c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcflow 0x0000000000000000 0x7c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcgetsid + 0x0000000000000000 0x77 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcsendbreak + 0x0000000000000000 0x7c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_utime + 0x0000000000000000 0x57 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_poll + 0x0000000000000000 0x196 esp-idf/vfs/libvfs.a(vfs.c.obj) + .xt.lit 0x0000000000000000 0x190 esp-idf/vfs/libvfs.a(vfs.c.obj) + .xt.prop 0x0000000000000000 0x2130 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_dev_uart_use_nonblocking + 0x0000000000000000 0x1c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .data 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_use_nonblocking + 0x0000000000000000 0x40 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .xt.lit 0x0000000000000000 0xe0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .xt.prop 0x0000000000000000 0x1608 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.memalign + 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.memalign + 0x0000000000000000 0xd esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.malloc_trim + 0x0000000000000000 0x7 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.malloc_usable_size + 0x0000000000000000 0x7 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.malloc_stats + 0x0000000000000000 0x5 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.mallopt 0x0000000000000000 0x7 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.mallinfo + 0x0000000000000000 0x1b esp-idf/newlib/libnewlib.a(heap.c.obj) + .xt.lit 0x0000000000000000 0x48 esp-idf/newlib/libnewlib.a(heap.c.obj) + .xt.prop 0x0000000000000000 0x2ac esp-idf/newlib/libnewlib.a(heap.c.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + .xt.lit 0x0000000000000000 0x60 esp-idf/newlib/libnewlib.a(locks.c.obj) + .xt.prop 0x0000000000000000 0x378 esp-idf/newlib/libnewlib.a(locks.c.obj) + .literal.pthread_condattr_setclock + 0x0000000000000000 0x14 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .rodata.pthread_condattr_setclock.str1.4 + 0x0000000000000000 0x42 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .text.pthread_condattr_setclock + 0x0000000000000000 0x22 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .text.pthread_sigmask + 0x0000000000000000 0x7 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .text.sigfillset + 0x0000000000000000 0xd esp-idf/newlib/libnewlib.a(pthread.c.obj) + .rodata.__func__$3333 + 0x0000000000000000 0x1a esp-idf/newlib/libnewlib.a(pthread.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .xt.prop 0x0000000000000000 0xd8 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .literal.esp_reent_cleanup + 0x0000000000000000 0x28 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .text.esp_reent_cleanup + 0x0000000000000000 0xdd esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .xt.prop 0x0000000000000000 0x12c esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + .xt.prop 0x0000000000000000 0x78 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + .literal.system + 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .literal.raise + 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .literal._exit + 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text.system 0x0000000000000000 0x11 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text.raise 0x0000000000000000 0x9 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text._exit 0x0000000000000000 0x9 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .xt.prop 0x0000000000000000 0x180 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .literal.adjtime + 0x0000000000000000 0x40 esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.esp_clk_rtc_time + 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.settimeofday + 0x0000000000000000 0x10 esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.system_get_time + 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.system_relative_time + 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.system_get_rtc_time + 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.clock_settime + 0x0000000000000000 0x10 esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.clock_gettime + 0x0000000000000000 0x20 esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.clock_getres + 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.adjtime 0x0000000000000000 0xea esp-idf/newlib/libnewlib.a(time.c.obj) + .text.esp_clk_rtc_time + 0x0000000000000000 0xf esp-idf/newlib/libnewlib.a(time.c.obj) + .text.settimeofday + 0x0000000000000000 0x54 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.system_get_time + 0x0000000000000000 0xd esp-idf/newlib/libnewlib.a(time.c.obj) + .text.system_relative_time + 0x0000000000000000 0xe esp-idf/newlib/libnewlib.a(time.c.obj) + .text.system_get_rtc_time + 0x0000000000000000 0xf esp-idf/newlib/libnewlib.a(time.c.obj) + .text.clock_settime + 0x0000000000000000 0x4e esp-idf/newlib/libnewlib.a(time.c.obj) + .text.clock_gettime + 0x0000000000000000 0x94 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.clock_getres + 0x0000000000000000 0x20 esp-idf/newlib/libnewlib.a(time.c.obj) + .xt.lit 0x0000000000000000 0xc0 esp-idf/newlib/libnewlib.a(time.c.obj) + .xt.prop 0x0000000000000000 0x750 esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.__cxx_fatal_exception_bool + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__cxx_fatal_exception_message + 0x0000000000000000 0x10 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__cxx_fatal_exception_message_va + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__cxx_fatal_exception_int + 0x0000000000000000 0x10 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__cxx_fatal_exception_bool + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .rodata.__cxx_fatal_exception_message.str1.4 + 0x0000000000000000 0x6 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__cxx_fatal_exception_message + 0x0000000000000000 0x1a esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__cxx_fatal_exception_message_va + 0x0000000000000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .rodata.__cxx_fatal_exception_int.str1.4 + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__cxx_fatal_exception_int + 0x0000000000000000 0x1a esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .rodata.str1.4 + 0x0000000000000000 0x16 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .data.FATAL_EXCEPTION + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .xt.prop 0x0000000000000000 0xc0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal._ZL20signal_waiting_tasksv + 0x0000000000000000 0xc esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal._ZL18wait_for_guard_objP7guard_t + 0x0000000000000000 0x34 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal._ZL19static_init_preparev + 0x0000000000000000 0x24 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal.__cxa_guard_acquire + 0x0000000000000000 0x30 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal.__cxa_guard_release + 0x0000000000000000 0x30 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal.__cxa_guard_abort + 0x0000000000000000 0x38 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text._ZL20signal_waiting_tasksv + 0x0000000000000000 0x24 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata._ZL18wait_for_guard_objP7guard_t.str1.4 + 0x0000000000000000 0x40 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text._ZL18wait_for_guard_objP7guard_t + 0x0000000000000000 0xa6 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text._ZL19static_init_preparev + 0x0000000000000000 0x4a esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text.__cxa_guard_acquire + 0x0000000000000000 0x98 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata.__cxa_guard_release.str1.4 + 0x0000000000000000 0x3f esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text.__cxa_guard_release + 0x0000000000000000 0x87 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata.__cxa_guard_abort.str1.4 + 0x0000000000000000 0x77 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text.__cxa_guard_abort + 0x0000000000000000 0x9a esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata._ZZ17__cxa_guard_abortE19__PRETTY_FUNCTION__ + 0x0000000000000000 0x2d esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata._ZZ19__cxa_guard_releaseE19__PRETTY_FUNCTION__ + 0x0000000000000000 0x2f esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata._ZZL18wait_for_guard_objP7guard_tE19__PRETTY_FUNCTION__ + 0x0000000000000000 0x22 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata._ZZ19__cxa_guard_acquireE19__PRETTY_FUNCTION__ + 0x0000000000000000 0x2e esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss._ZL31s_static_init_max_waiting_count + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss._ZL27s_static_init_waiting_count + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .data._ZL15s_init_spinlock + 0x0000000000000000 0x8 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss._ZL22s_static_init_wait_sem + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss._ZL19s_static_init_mutex + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .xt.prop 0x0000000000000000 0x270 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/main/libmain.a(main.c.obj) + .data 0x0000000000000000 0x0 esp-idf/main/libmain.a(main.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/main/libmain.a(main.c.obj) + .xt.lit 0x0000000000000000 0x20 esp-idf/main/libmain.a(main.c.obj) + .xt.prop 0x0000000000000000 0x15c esp-idf/main/libmain.a(main.c.obj) + .text 0x0000000000000000 0x0 esp-idf/ca/libca.a(ca.c.obj) + .data 0x0000000000000000 0x0 esp-idf/ca/libca.a(ca.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/ca/libca.a(ca.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/ca/libca.a(ca.c.obj) + .xt.prop 0x0000000000000000 0x834 esp-idf/ca/libca.a(ca.c.obj) + .text 0x0000000000000000 0x0 esp-idf/ca/libca.a(gen_key.c.obj) + .data 0x0000000000000000 0x0 esp-idf/ca/libca.a(gen_key.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/ca/libca.a(gen_key.c.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/ca/libca.a(gen_key.c.obj) + .xt.prop 0x0000000000000000 0x414 esp-idf/ca/libca.a(gen_key.c.obj) + .text 0x0000000000000000 0x0 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .data 0x0000000000000000 0x0 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .xt.lit 0x0000000000000000 0x80 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .xt.prop 0x0000000000000000 0x840 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .text 0x0000000000000000 0x0 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + .data 0x0000000000000000 0x0 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + .xt.lit 0x0000000000000000 0x78 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + .xt.prop 0x0000000000000000 0x528 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wifi/libwifi.a(wifi.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wifi/libwifi.a(wifi.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wifi/libwifi.a(wifi.c.obj) + .rodata.CONNECTED_BIT + 0x0000000000000000 0x4 esp-idf/wifi/libwifi.a(wifi.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/wifi/libwifi.a(wifi.c.obj) + .xt.prop 0x0000000000000000 0x1d4 esp-idf/wifi/libwifi.a(wifi.c.obj) + .text 0x0000000000000000 0x0 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + .data 0x0000000000000000 0x0 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + .xt.lit 0x0000000000000000 0x48 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + .xt.prop 0x0000000000000000 0x2ac esp-idf/https_server/libhttps_server.a(https_server.c.obj) + .text 0x0000000000000000 0x0 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) + .data 0x0000000000000000 0x0 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) + .xt.prop 0x0000000000000000 0xcc esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) + .text 0x0000000000000000 0x0 esp-idf/https_server/libhttps_server.a(cacert.pem.S.obj) + .data 0x0000000000000000 0x0 esp-idf/https_server/libhttps_server.a(cacert.pem.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/https_server/libhttps_server.a(cacert.pem.S.obj) + .text 0x0000000000000000 0x0 esp-idf/https_server/libhttps_server.a(prvtkey.pem.S.obj) + .data 0x0000000000000000 0x0 esp-idf/https_server/libhttps_server.a(prvtkey.pem.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/https_server/libhttps_server.a(prvtkey.pem.S.obj) + .iram1.13.literal + 0x0000000000000000 0x64 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .text 0x0000000000000000 0x0 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .data 0x0000000000000000 0x0 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .rodata.str1.4 + 0x0000000000000000 0x45 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .iram1.13 0x0000000000000000 0x145 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .xt.prop 0x0000000000000000 0x24c esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .iram1.literal + 0x0000000000000000 0x0 esp-idf/xtensa/libxtensa.a(debug_helpers_asm.S.obj) + .text 0x0000000000000000 0x0 esp-idf/xtensa/libxtensa.a(debug_helpers_asm.S.obj) + .data 0x0000000000000000 0x0 esp-idf/xtensa/libxtensa.a(debug_helpers_asm.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/xtensa/libxtensa.a(debug_helpers_asm.S.obj) + .iram1 0x0000000000000000 0x1a esp-idf/xtensa/libxtensa.a(debug_helpers_asm.S.obj) + .debug_line 0x0000000000000000 0xa6 esp-idf/xtensa/libxtensa.a(debug_helpers_asm.S.obj) + .debug_info 0x0000000000000000 0x26 esp-idf/xtensa/libxtensa.a(debug_helpers_asm.S.obj) + .debug_abbrev 0x0000000000000000 0x14 esp-idf/xtensa/libxtensa.a(debug_helpers_asm.S.obj) + .debug_aranges + 0x0000000000000000 0x20 esp-idf/xtensa/libxtensa.a(debug_helpers_asm.S.obj) + .debug_str 0x0000000000000000 0x76 esp-idf/xtensa/libxtensa.a(debug_helpers_asm.S.obj) + .xt.prop 0x0000000000000000 0x30 esp-idf/xtensa/libxtensa.a(debug_helpers_asm.S.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .xt.prop 0x0000000000000000 0x90 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .xt.lit 0x0000000000000000 0x20 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .xt.prop 0x0000000000000000 0x108 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .literal.rtc_clk_32k_bootstrap + 0x0000000000000000 0x34 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_enabled + 0x0000000000000000 0x8 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .literal.rtc_clk_8m_enabled + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .literal.rtc_clk_8md256_enabled + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .literal.rtc_clk_apll_enable + 0x0000000000000000 0x54 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .literal.rtc_clk_fast_freq_get + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_to_config + 0x0000000000000000 0x1c esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .literal.rtc_clk_xtal_freq_update + 0x0000000000000000 0x8 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_set_config_fast + 0x0000000000000000 0x10 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .literal.rtc_clk_apb_freq_get + 0x0000000000000000 0x14 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .text.rtc_clk_32k_bootstrap + 0x0000000000000000 0xa2 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .text.rtc_clk_32k_enabled + 0x0000000000000000 0x1c esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .text.rtc_clk_8m_enabled + 0x0000000000000000 0x1b esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .text.rtc_clk_8md256_enabled + 0x0000000000000000 0x1c esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .text.rtc_clk_apll_enable + 0x0000000000000000 0x162 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .text.rtc_clk_fast_freq_get + 0x0000000000000000 0x10 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_to_config + 0x0000000000000000 0x78 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .rodata.rtc_clk_cpu_freq_to_config + 0x0000000000000000 0x14 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .text.rtc_clk_xtal_freq_update + 0x0000000000000000 0x2c esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_config_fast + 0x0000000000000000 0x36 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .text.rtc_clk_apb_freq_get + 0x0000000000000000 0x2a esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .xt.lit 0x0000000000000000 0xf0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .xt.prop 0x0000000000000000 0xa44 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .xt.prop 0x0000000000000000 0xf0 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .literal.rtc_clk_cal_ratio + 0x0000000000000000 0x8 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .text.rtc_clk_cal_ratio + 0x0000000000000000 0x24 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .xt.prop 0x0000000000000000 0x24c esp-idf/soc/libsoc.a(rtc_time.c.obj) + .literal.rtc_wdt_get_timeout + 0x0000000000000000 0x14 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .text.rtc_wdt_get_timeout + 0x0000000000000000 0x61 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .xt.lit 0x0000000000000000 0x60 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .xt.prop 0x0000000000000000 0x408 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .literal.esp_netif_get_nr_of_ifs + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .literal.esp_netif_next + 0x0000000000000000 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .text.esp_netif_get_nr_of_ifs + 0x0000000000000000 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .text.esp_netif_next + 0x0000000000000000 0x3f esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .xt.lit 0x0000000000000000 0x48 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .xt.prop 0x0000000000000000 0x3c0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .literal.esp_netif_dhcps_start_api + 0x0000000000000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_nd6_cb + 0x0000000000000000 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_stop_api + 0x0000000000000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcpc_stop_api + 0x0000000000000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_hostname_api + 0x0000000000000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_ip_info_api + 0x0000000000000000 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_dns_info_api + 0x0000000000000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_dns_info_api + 0x0000000000000000 0x24 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_create_ip6_linklocal_api + 0x0000000000000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_ip4_addr + 0x0000000000000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_ip4addr_ntoa + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_ip4addr_aton + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_deinit + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcpc_stop + 0x0000000000000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_start + 0x0000000000000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_stop + 0x0000000000000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_hostname + 0x0000000000000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_mac + 0x0000000000000000 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_ip_info + 0x0000000000000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_set_dns_info + 0x0000000000000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_dns_info + 0x0000000000000000 0x34 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_create_ip6_linklocal + 0x0000000000000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_ip6_linklocal + 0x0000000000000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_get_ip6_global + 0x0000000000000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcps_option + 0x0000000000000000 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_dhcpc_option + 0x0000000000000000 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_start_api + 0x0000000000000000 0x55 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_nd6_cb.str1.4 + 0x0000000000000000 0x44 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_nd6_cb + 0x0000000000000000 0xde esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_stop_api + 0x0000000000000000 0x3d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_dhcpc_stop_api.str1.4 + 0x0000000000000000 0x3d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcpc_stop_api + 0x0000000000000000 0x61 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_hostname_api + 0x0000000000000000 0x55 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_set_ip_info_api.str1.4 + 0x0000000000000000 0x45 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_ip_info_api + 0x0000000000000000 0x132 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_dns_info_api + 0x0000000000000000 0x59 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_get_dns_info_api.str1.4 + 0x0000000000000000 0x33 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_dns_info_api + 0x0000000000000000 0x79 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_create_ip6_linklocal_api + 0x0000000000000000 0x32 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_ip4_addr + 0x0000000000000000 0x43 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_ip4addr_ntoa + 0x0000000000000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_ip4addr_aton + 0x0000000000000000 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_netif_impl + 0x0000000000000000 0x19 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_deinit + 0x0000000000000000 0x16 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcpc_stop + 0x0000000000000000 0x61 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_get_status + 0x0000000000000000 0x2a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_start + 0x0000000000000000 0x61 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_stop + 0x0000000000000000 0x5f esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_hostname + 0x0000000000000000 0x61 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_mac + 0x0000000000000000 0x53 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_ip_info + 0x0000000000000000 0x61 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_set_dns_info + 0x0000000000000000 0x65 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_dns_info + 0x0000000000000000 0x92 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_create_ip6_linklocal + 0x0000000000000000 0x61 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_ip6_linklocal + 0x0000000000000000 0x60 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_ip6_global + 0x0000000000000000 0x6e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_flags + 0x0000000000000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_route_prio + 0x0000000000000000 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcps_option + 0x0000000000000000 0x1e5 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_dhcpc_option + 0x0000000000000000 0x7a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_get_netif_impl_index + 0x0000000000000000 0x1d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.__func__$9845 + 0x0000000000000000 0x1b esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .xt.lit 0x0000000000000000 0x1d8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .xt.prop 0x0000000000000000 0x2178 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .literal.esp_netif_ppp_set_auth + 0x0000000000000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + .literal.esp_netif_lwip_ppp_input + 0x0000000000000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + .literal.esp_netif_ppp_set_params + 0x0000000000000000 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + .text.esp_netif_ppp_set_auth + 0x0000000000000000 0x25 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + .text.esp_netif_lwip_ppp_input + 0x0000000000000000 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + .text.esp_netif_ppp_set_params + 0x0000000000000000 0x25 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + .rodata.__func__$8723 + 0x0000000000000000 0x19 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + .rodata.__func__$8710 + 0x0000000000000000 0x19 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + .rodata.__func__$8690 + 0x0000000000000000 0x17 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + .rodata.str1.4 + 0x0000000000000000 0x11 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + .data.NETIF_PPP_STATUS + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + .xt.lit 0x0000000000000000 0x40 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + .xt.prop 0x0000000000000000 0x1ec esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + .literal.esp_event_handler_instance_register + 0x0000000000000000 0x8 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .literal.esp_event_handler_instance_unregister + 0x0000000000000000 0x8 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .literal.esp_event_isr_post + 0x0000000000000000 0x8 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .literal.esp_event_loop_delete_default + 0x0000000000000000 0x8 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .literal.esp_event_send_to_default_loop + 0x0000000000000000 0x78 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .text.esp_event_handler_instance_register + 0x0000000000000000 0x25 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .text.esp_event_handler_instance_unregister + 0x0000000000000000 0x21 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .text.esp_event_isr_post + 0x0000000000000000 0x24 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .text.esp_event_loop_delete_default + 0x0000000000000000 0x26 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .text.esp_event_send_to_default_loop + 0x0000000000000000 0x291 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .rodata.esp_event_send_to_default_loop + 0x0000000000000000 0x68 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .xt.lit 0x0000000000000000 0x48 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .xt.prop 0x0000000000000000 0x528 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .literal.handler_instances_remove_all + 0x0000000000000000 0x8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .literal.base_node_remove_all_handler + 0x0000000000000000 0xc esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .literal.loop_node_remove_all_handler + 0x0000000000000000 0xc esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .literal.esp_event_loop_delete + 0x0000000000000000 0x38 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .literal.esp_event_handler_instance_register_with + 0x0000000000000000 0x4 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .literal.esp_event_handler_instance_unregister_with + 0x0000000000000000 0x4 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .literal.esp_event_isr_post_to + 0x0000000000000000 0x1c esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.handler_instances_remove_all + 0x0000000000000000 0x3c esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.base_node_remove_all_handler + 0x0000000000000000 0x46 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.loop_node_remove_all_handler + 0x0000000000000000 0x46 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.esp_event_loop_delete + 0x0000000000000000 0xb4 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.esp_event_handler_instance_register_with + 0x0000000000000000 0x1d esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.esp_event_handler_instance_unregister_with + 0x0000000000000000 0x21 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.esp_event_isr_post_to + 0x0000000000000000 0xa0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.esp_event_dump + 0x0000000000000000 0x7 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.__func__$8791 + 0x0000000000000000 0x16 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.__func__$8688 + 0x0000000000000000 0x16 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .xt.lit 0x0000000000000000 0xa8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .xt.prop 0x0000000000000000 0xe7c esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .literal.esp_event_send + 0x0000000000000000 0x8 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + .text.esp_event_send + 0x0000000000000000 0x1a esp-idf/esp_event/libesp_event.a(event_send.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + .xt.prop 0x0000000000000000 0x3c0 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .rodata.g_wifi_default_mesh_crypto_funcs + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .xt.prop 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .xt.prop 0x0000000000000000 0x168 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + .xt.prop 0x0000000000000000 0xfc esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .xt.prop 0x0000000000000000 0x84 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .literal.SHA1Transform + 0x0000000000000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + .literal.SHA1Init + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + .literal.SHA1Update + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + .literal.SHA1Final + 0x0000000000000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + .text.SHA1Transform + 0x0000000000000000 0x11ee esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + .text.SHA1Init + 0x0000000000000000 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + .text.SHA1Update + 0x0000000000000000 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + .rodata.SHA1Final.str1.4 + 0x0000000000000000 0x2 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + .rodata 0x0000000000000000 0x2 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + .text.SHA1Final + 0x0000000000000000 0xcd esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + .xt.prop 0x0000000000000000 0x1bc esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) + .xt.prop 0x0000000000000000 0x84 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + .xt.prop 0x0000000000000000 0x1a4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + .xt.lit 0x0000000000000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + .xt.prop 0x0000000000000000 0x1d4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + .literal.aes_128_cbc_encrypt + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-cbc.c.obj) + .literal.aes_128_cbc_decrypt + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-cbc.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-cbc.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-cbc.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-cbc.c.obj) + .text.aes_128_cbc_encrypt + 0x0000000000000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-cbc.c.obj) + .text.aes_128_cbc_decrypt + 0x0000000000000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-cbc.c.obj) + .debug_frame 0x0000000000000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-cbc.c.obj) + .debug_info 0x0000000000000000 0xc98 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-cbc.c.obj) + .debug_abbrev 0x0000000000000000 0x261 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-cbc.c.obj) + .debug_loc 0x0000000000000000 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-cbc.c.obj) + .debug_aranges + 0x0000000000000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-cbc.c.obj) + .debug_ranges 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-cbc.c.obj) + .debug_line 0x0000000000000000 0x552 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-cbc.c.obj) + .debug_str 0x0000000000000000 0x675 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-cbc.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-cbc.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-cbc.c.obj) + .xt.prop 0x0000000000000000 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-cbc.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + .xt.prop 0x0000000000000000 0x18c esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + .xt.lit 0x0000000000000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + .xt.prop 0x0000000000000000 0x108 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + .xt.prop 0x0000000000000000 0x144 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + .literal.omac1_aes_256 + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + .text.omac1_aes_256 + 0x0000000000000000 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + .xt.lit 0x0000000000000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + .xt.prop 0x0000000000000000 0x1f8 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .xt.prop 0x0000000000000000 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .xt.prop 0x0000000000000000 0x84 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .literal.ccmp_aad_nonce_pv1 + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .literal.ccmp_encrypt_pv1 + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .literal.ccmp_256_decrypt + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .literal.ccmp_256_encrypt + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text.ccmp_aad_nonce_pv1 + 0x0000000000000000 0xd6 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text.ccmp_get_pn + 0x0000000000000000 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text.ccmp_encrypt_pv1 + 0x0000000000000000 0xe4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text.ccmp_256_decrypt + 0x0000000000000000 0x8c esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text.ccmp_256_encrypt + 0x0000000000000000 0x108 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .xt.lit 0x0000000000000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .xt.prop 0x0000000000000000 0x384 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) + .xt.prop 0x0000000000000000 0x9c esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .xt.lit 0x0000000000000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .xt.prop 0x0000000000000000 0x330 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .literal.esp_efuse_get_pkg_ver + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_disable_basic_rom_console + 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_write_random_key + 0x0000000000000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_get_pkg_ver + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .rodata.esp_efuse_disable_basic_rom_console.str1.4 + 0x0000000000000000 0x4f esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_disable_basic_rom_console + 0x0000000000000000 0x3b esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .rodata.esp_efuse_write_random_key.str1.4 + 0x0000000000000000 0xf0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_write_random_key + 0x0000000000000000 0x7f esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .rodata.__func__$3699 + 0x0000000000000000 0x1b esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .xt.lit 0x0000000000000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .xt.prop 0x0000000000000000 0x15c esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_set_timing + 0x0000000000000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.read_w_data_and_check_fill + 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.read_r_data + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_clear_program_registers + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_burn_efuses + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_apply_34_encoding + 0x0000000000000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_apply_new_coding_scheme + 0x0000000000000000 0x54 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_set_timing + 0x0000000000000000 0x83 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.read_w_data_and_check_fill.str1.4 + 0x0000000000000000 0xd5 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.read_w_data_and_check_fill + 0x0000000000000000 0x5f esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.read_r_data + 0x0000000000000000 0x39 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_clear_program_registers + 0x0000000000000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_efuses + 0x0000000000000000 0x53 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_apply_34_encoding + 0x0000000000000000 0x93 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_apply_new_coding_scheme.str1.4 + 0x0000000000000000 0x2f4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_apply_new_coding_scheme + 0x0000000000000000 0x1de esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$3687 + 0x0000000000000000 0x1b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$3718 + 0x0000000000000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.range_write_addr_blocks + 0x0000000000000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xt.lit 0x0000000000000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xt.prop 0x0000000000000000 0x3b4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_read_field_cnt + 0x0000000000000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_blob + 0x0000000000000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_cnt + 0x0000000000000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_reg + 0x0000000000000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_reg + 0x0000000000000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_block + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_block + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_begin + 0x0000000000000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_cancel + 0x0000000000000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_commit + 0x0000000000000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_cnt + 0x0000000000000000 0x4a esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_blob + 0x0000000000000000 0x83 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_write_field_cnt.str1.4 + 0x0000000000000000 0x58 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_cnt + 0x0000000000000000 0xab esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_reg + 0x0000000000000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_reg + 0x0000000000000000 0x56 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_block + 0x0000000000000000 0x4d esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_block + 0x0000000000000000 0x4d esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_begin.str1.4 + 0x0000000000000000 0x3f esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_begin + 0x0000000000000000 0x36 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_cancel.str1.4 + 0x0000000000000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_cancel + 0x0000000000000000 0x45 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_commit + 0x0000000000000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .bss.s_batch_writing_mode + 0x0000000000000000 0x1 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .xt.lit 0x0000000000000000 0x58 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .xt.prop 0x0000000000000000 0x42c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.fill_reg + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.set_cnt_in_reg + 0x0000000000000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.write_reg + 0x0000000000000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_reset + 0x0000000000000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_update_virt_blocks + 0x0000000000000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_debug_dump_blocks + 0x0000000000000000 0x3c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_count_once + 0x0000000000000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_cnt + 0x0000000000000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_reg + 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_blob + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.fill_reg + 0x0000000000000000 0x98 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.set_cnt_in_reg + 0x0000000000000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.write_reg + 0x0000000000000000 0x7b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_reset.str1.4 + 0x0000000000000000 0x8e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_reset + 0x0000000000000000 0x56 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_erase_virt_blocks + 0x0000000000000000 0x5 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_update_virt_blocks.str1.4 + 0x0000000000000000 0x31 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_update_virt_blocks + 0x0000000000000000 0x1e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_debug_dump_blocks.str1.4 + 0x0000000000000000 0xa8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_blocks + 0x0000000000000000 0x7b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_count_once + 0x0000000000000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_cnt + 0x0000000000000000 0x4d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_write_reg.str1.4 + 0x0000000000000000 0x5c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_reg + 0x0000000000000000 0x42 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_blob + 0x0000000000000000 0x21 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$3741 + 0x0000000000000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$3722 + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$3773 + 0x0000000000000000 0xa esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$3825 + 0x0000000000000000 0xf esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xt.lit 0x0000000000000000 0x70 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xt.prop 0x0000000000000000 0x690 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_VERSION + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_TP_HIGH + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_TP_HIGH + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_TP_LOW + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_TP_LOW + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC_VREF_AND_SDIO_DREF + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SDIO_FORCE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SDIO_TIEH + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_XPD_SDIO_REG + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_CPU_FREQ_RATED + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_CPU_FREQ_LOW + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_VER_PKG + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_VER_DIS_BT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_VER_DIS_APP_CPU + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLK3 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLK2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLK1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLK3 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLK2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLK1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_CRYPT_CNT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_CRYPT_CNT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CONSOLE_DEBUG_DISABLE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_JTAG + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_DL_CACHE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_DL_DECRYPT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_DL_ENCRYPT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ENCRYPT_CONFIG + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ENCRYPT_FLASH_KEY + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ABS_DONE_0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_KEY + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_MAC_CUSTOM_VER + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_MAC_CUSTOM + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_MAC_CUSTOM_CRC + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SECURE_VERSION + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_TP_HIGH + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_TP_HIGH + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_TP_LOW + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_TP_LOW + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC_VREF_AND_SDIO_DREF + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SDIO_FORCE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SDIO_TIEH + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.XPD_SDIO_REG + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_CPU_FREQ_RATED + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_CPU_FREQ_LOW + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_VER_PKG + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_VER_DIS_BT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_VER_DIS_APP_CPU + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLK3 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLK2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLK1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLK3 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLK2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLK1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_CRYPT_CNT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_CRYPT_CNT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CONSOLE_DEBUG_DISABLE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_JTAG + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_DL_CACHE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_DL_DECRYPT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_DL_ENCRYPT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ENCRYPT_CONFIG + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ENCRYPT_FLASH_KEY + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ABS_DONE_0 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_KEY + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC_CUSTOM_VER + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC_CUSTOM + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC_CUSTOM_CRC + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .xt.prop 0x0000000000000000 0x390 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .literal.esp_efuse_set_write_protect + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_set_read_protect + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_set_write_protect + 0x0000000000000000 0x45 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_set_read_protect + 0x0000000000000000 0x45 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .xt.prop 0x0000000000000000 0x168 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.bootloader_fill_random + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .literal.bootloader_random_enable + 0x0000000000000000 0x74 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .literal.bootloader_random_disable + 0x0000000000000000 0x4c esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .text.bootloader_fill_random + 0x0000000000000000 0xf esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .text.bootloader_random_enable + 0x0000000000000000 0x1c4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .text.bootloader_random_disable + 0x0000000000000000 0x11d esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_frame 0x0000000000000000 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_info 0x0000000000000000 0x6eec esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_abbrev 0x0000000000000000 0x2ad esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_aranges + 0x0000000000000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_ranges 0x0000000000000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_line 0x0000000000000000 0x141a esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_str 0x0000000000000000 0x4517 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .xt.prop 0x0000000000000000 0x90 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .xt.prop 0x0000000000000000 0x258 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .literal.write_status_8b_wrsr2 + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.read_status_8b_rdsr2 + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.write_status_16b_wrsr + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.read_status_16b_rdsr_rdsr2 + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.write_status_8b_wrsr + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.read_status_8b_rdsr + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.write_status_8b_xmc25qu64a + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.read_status_8b_xmc25qu64a + 0x0000000000000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.enable_qio_mode + 0x0000000000000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.bootloader_enable_qio_mode + 0x0000000000000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.write_status_8b_wrsr2 + 0x0000000000000000 0x13 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.read_status_8b_rdsr2 + 0x0000000000000000 0x15 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.write_status_16b_wrsr + 0x0000000000000000 0x13 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.read_status_16b_rdsr_rdsr2 + 0x0000000000000000 0x29 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.write_status_8b_wrsr + 0x0000000000000000 0x13 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.read_status_8b_rdsr + 0x0000000000000000 0x15 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.write_status_8b_xmc25qu64a + 0x0000000000000000 0x42 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.read_status_8b_xmc25qu64a + 0x0000000000000000 0x3a esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .rodata.enable_qio_mode.str1.4 + 0x0000000000000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.enable_qio_mode + 0x0000000000000000 0x8a esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .rodata.bootloader_enable_qio_mode.str1.4 + 0x0000000000000000 0x6f esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.bootloader_enable_qio_mode + 0x0000000000000000 0xfe esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .rodata.str1.4 + 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .rodata.chip_data + 0x0000000000000000 0x6c esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .xt.lit 0x0000000000000000 0x60 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .xt.prop 0x0000000000000000 0x300 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.spi_cache_mode_switch + 0x0000000000000000 0x3c esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_read_status + 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_wait_idle + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_erase_chip_internal + 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_erase_block_internal + 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_erase_sector_internal + 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_read_data + 0x0000000000000000 0x34 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_enable_write + 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_program_page_internal + 0x0000000000000000 0x40 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_read_statushigh + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_write_status + 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_unlock + 0x0000000000000000 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_lock + 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_config_readmode + 0x0000000000000000 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_erase_chip + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_erase_block + 0x0000000000000000 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_erase_sector + 0x0000000000000000 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_write + 0x0000000000000000 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_write_encrypted + 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_read + 0x0000000000000000 0x5c esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_erase_area + 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.spi_cache_mode_switch + 0x0000000000000000 0x286 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_read_status + 0x0000000000000000 0x63 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_wait_idle + 0x0000000000000000 0x32 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_erase_chip_internal + 0x0000000000000000 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_erase_block_internal + 0x0000000000000000 0x3c esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_erase_sector_internal + 0x0000000000000000 0x45 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .rodata.esp_rom_spiflash_read_data.str1.4 + 0x0000000000000000 0x187 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_read_data + 0x0000000000000000 0x122 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_enable_write + 0x0000000000000000 0x3d esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .rodata.esp_rom_spiflash_program_page_internal.str1.4 + 0x0000000000000000 0x13c esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_program_page_internal + 0x0000000000000000 0x12a esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_read_statushigh + 0x0000000000000000 0x21 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_write_status + 0x0000000000000000 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_unlock + 0x0000000000000000 0x82 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_lock + 0x0000000000000000 0x53 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_config_readmode + 0x0000000000000000 0xa2 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .rodata.esp_rom_spiflash_config_readmode + 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_erase_chip + 0x0000000000000000 0x2a esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_erase_block + 0x0000000000000000 0x6a esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_erase_sector + 0x0000000000000000 0x6a esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_write + 0x0000000000000000 0xde esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_write_encrypted + 0x0000000000000000 0x5a esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_read + 0x0000000000000000 0x284 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_erase_area + 0x0000000000000000 0xbc esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .rodata.__func__$3374 + 0x0000000000000000 0x1b esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .rodata.__func__$3310 + 0x0000000000000000 0x27 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .debug_frame 0x0000000000000000 0x208 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .debug_info 0x0000000000000000 0x3ec1 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .debug_abbrev 0x0000000000000000 0x43f esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .debug_loc 0x0000000000000000 0xbda esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .debug_aranges + 0x0000000000000000 0xc0 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .debug_ranges 0x0000000000000000 0xb0 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .debug_line 0x0000000000000000 0x2ff0 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .debug_str 0x0000000000000000 0x256f esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .xt.lit 0x0000000000000000 0xa8 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .xt.prop 0x0000000000000000 0xc0c esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .iram1.29.literal + 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.30.literal + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.29 0x0000000000000000 0x36 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.30 0x0000000000000000 0x21 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .xt.lit 0x0000000000000000 0x60 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .xt.prop 0x0000000000000000 0x384 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.38.literal + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.33.literal + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.27.literal + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.37.literal + 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.35.literal + 0x0000000000000000 0x38 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.36.literal + 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.38 0x0000000000000000 0x19 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.33 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.27 0x0000000000000000 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.37 0x0000000000000000 0x4e esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .rodata.str1.4 + 0x0000000000000000 0x65 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.35 0x0000000000000000 0xd5 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.36 0x0000000000000000 0x85 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .rodata.__func__$5586 + 0x0000000000000000 0x22 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .dram1.25 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .xt.lit 0x0000000000000000 0x58 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .xt.prop 0x0000000000000000 0x3b4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .literal.find_region + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.17.literal + 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.19.literal + 0x0000000000000000 0x1c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.21.literal + 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.22.literal + 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_get_protectable_regions + 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.23.literal + 0x0000000000000000 0x24 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.24.literal + 0x0000000000000000 0x24 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.27.literal + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.29.literal + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.30.literal + 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.31.literal + 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_app_disable_protect + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.find_region + 0x0000000000000000 0x42 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.17 0x0000000000000000 0x54 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.19 0x0000000000000000 0x74 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.21 0x0000000000000000 0x64 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.22 0x0000000000000000 0x59 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_get_protectable_regions + 0x0000000000000000 0x69 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.23 0x0000000000000000 0xb8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.24 0x0000000000000000 0xe8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.27 0x0000000000000000 0x51 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.29 0x0000000000000000 0x23 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.30 0x0000000000000000 0x70 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.31 0x0000000000000000 0x68 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_app_disable_protect + 0x0000000000000000 0x26 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .xt.lit 0x0000000000000000 0xc0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .xt.prop 0x0000000000000000 0x1098 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.12.literal + 0x0000000000000000 0x3c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .literal.spi_bus_remove_flash_device + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .literal.spi_bus_add_flash_device + 0x0000000000000000 0x28 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.str1.4 + 0x0000000000000000 0xdc esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .iram1.12 0x0000000000000000 0x11a esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.spi_bus_remove_flash_device + 0x0000000000000000 0x2d esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.spi_bus_add_flash_device + 0x0000000000000000 0xd1 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.__func__$6107 + 0x0000000000000000 0xe esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .xt.prop 0x0000000000000000 0x21c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .literal.esp_flash_init_os_functions + 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.spi23_start + 0x0000000000000000 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.spi23_end + 0x0000000000000000 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_init_os_functions + 0x0000000000000000 0x39 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .rodata.esp_flash_spi23_default_os_functions + 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .data.spi3_arg + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .data.spi2_arg + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .dram1.6 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .xt.prop 0x0000000000000000 0x21c esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.13.literal + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .iram1.13 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .xt.lit 0x0000000000000000 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .xt.prop 0x0000000000000000 0xcc esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .literal.esp_partition_register_external + 0x0000000000000000 0x3c esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .literal.esp_partition_deregister_external + 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .literal.esp_partition_verify + 0x0000000000000000 0x24 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .literal.esp_partition_mmap + 0x0000000000000000 0x1c esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .literal.esp_partition_get_sha256 + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .literal.esp_partition_check_identity + 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .rodata.esp_partition_register_external.str1.4 + 0x0000000000000000 0x6c esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_register_external + 0x0000000000000000 0x118 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_deregister_external + 0x0000000000000000 0x5e esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_verify + 0x0000000000000000 0x81 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_mmap + 0x0000000000000000 0x6e esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_get_sha256 + 0x0000000000000000 0x15 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_check_identity + 0x0000000000000000 0x4c esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .rodata.__func__$4297 + 0x0000000000000000 0x13 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .rodata.__func__$4262 + 0x0000000000000000 0x15 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .rodata.__func__$4112 + 0x0000000000000000 0x20 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .xt.lit 0x0000000000000000 0x90 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .xt.prop 0x0000000000000000 0x90c esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .xt.prop 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .xt.lit 0x0000000000000000 0x78 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .xt.prop 0x0000000000000000 0x738 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .xt.prop 0x0000000000000000 0xe4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .xt.prop 0x0000000000000000 0xfc esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .literal.memspi_host_init_pointers + 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_init_pointers + 0x0000000000000000 0x30 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_erase_chip + 0x0000000000000000 0x1e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_erase_sector + 0x0000000000000000 0x22 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_erase_block + 0x0000000000000000 0x23 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_program_page + 0x0000000000000000 0x2a esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_read + 0x0000000000000000 0x20 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_set_write_protect + 0x0000000000000000 0x2a esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.esp_flash_default_host + 0x0000000000000000 0x4c esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .xt.prop 0x0000000000000000 0x1f8 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .iram1.30.literal + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .literal.spi_flash_mmap_dump + 0x0000000000000000 0x20 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.32.literal + 0x0000000000000000 0x20 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.33.literal + 0x0000000000000000 0x24 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.30 0x0000000000000000 0x17 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.spi_flash_mmap_dump.str1.4 + 0x0000000000000000 0x39 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.spi_flash_mmap_dump + 0x0000000000000000 0x5b esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.32 0x0000000000000000 0x60 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.33 0x0000000000000000 0x7b esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .xt.lit 0x0000000000000000 0x68 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .xt.prop 0x0000000000000000 0x72c esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_dump + 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_init_custom + 0x0000000000000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_deinit_partition + 0x0000000000000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_flash_deinit + 0x0000000000000000 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_stats + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_get_used_entry_count + 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal.nvs_release_iterator + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_dump + 0x0000000000000000 0x3b esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_init_custom + 0x0000000000000000 0x19 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_deinit_partition + 0x0000000000000000 0x96 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_flash_deinit + 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_stats + 0x0000000000000000 0x74 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_get_used_entry_count + 0x0000000000000000 0x5a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .text.nvs_release_iterator + 0x0000000000000000 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.lit 0x0000000000000000 0x1e0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xt.prop 0x0000000000000000 0xd80 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._ZN3nvs7Storage9debugDumpEv + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .literal._ZN3nvs7Storage9fillStatsER11nvs_stats_t + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZNK3nvs7Storage7isValidEv + 0x0000000000000000 0x13 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage9debugDumpEv + 0x0000000000000000 0x17 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .text._ZN3nvs7Storage9fillStatsER11nvs_stats_t + 0x0000000000000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .rodata._ZZNK19CompressedEnumTableIbLj1ELj256EE3getEjE19__PRETTY_FUNCTION__ + 0x0000000000000000 0xa1 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .rodata._ZZN19CompressedEnumTableIbLj1ELj256EE3setEjbE19__PRETTY_FUNCTION__ + 0x0000000000000000 0xa1 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.lit 0x0000000000000000 0xb0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xt.prop 0x0000000000000000 0xe04 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .group 0x0000000000000000 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .literal._ZN3nvs19NVSPartitionManager16deinit_partitionEPKc + 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZN3nvs19NVSPartitionManager17open_handles_sizeEv + 0x0000000000000000 0x7 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text._ZN3nvs19NVSPartitionManager16deinit_partitionEPKc + 0x0000000000000000 0x79 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.lit 0x0000000000000000 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xt.prop 0x0000000000000000 0x3b4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .xt.prop 0x0000000000000000 0x2dc esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .literal._ZN3nvs4Page8findItemEhNS_8ItemTypeEPKchNS_9VerOffsetE + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page10setVersionEh + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page15pageStateToNameENS0_9PageStateE + 0x0000000000000000 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZNK3nvs4Page9debugDumpEv + 0x0000000000000000 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page11calcEntriesER11nvs_stats_t + 0x0000000000000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page8findItemEhNS_8ItemTypeEPKchNS_9VerOffsetE + 0x0000000000000000 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page10setVersionEh + 0x0000000000000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .rodata._ZN3nvs4Page15pageStateToNameENS0_9PageStateE.str1.4 + 0x0000000000000000 0x53 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page15pageStateToNameENS0_9PageStateE + 0x0000000000000000 0x61 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .rodata._ZNK3nvs4Page9debugDumpEv.str1.4 + 0x0000000000000000 0x96 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZNK3nvs4Page9debugDumpEv + 0x0000000000000000 0xfa esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .rodata._ZN3nvs4Page11calcEntriesER11nvs_stats_t.str1.4 + 0x0000000000000000 0x3b esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .text._ZN3nvs4Page11calcEntriesER11nvs_stats_t + 0x0000000000000000 0x7f esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .rodata._ZZN3nvs4Page11calcEntriesER11nvs_stats_tE19__PRETTY_FUNCTION__ + 0x0000000000000000 0x2f esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .rodata._ZZN3nvs4Page15pageStateToNameENS0_9PageStateEE19__PRETTY_FUNCTION__ + 0x0000000000000000 0x44 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .xt.lit 0x0000000000000000 0xe8 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .xt.prop 0x0000000000000000 0x156c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs11PageManager9fillStatsER11nvs_stats_t + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .text._ZN3nvs11PageManager9fillStatsER11nvs_stats_t + 0x0000000000000000 0x4a esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .xt.lit 0x0000000000000000 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .xt.prop 0x0000000000000000 0x558 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple9debugDumpEv + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple9fillStatsER11nvs_stats_t + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple22calcEntriesInNamespaceERj + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple9findEntryEP21nvs_opaque_iterator_tPKc + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .literal._ZN3nvs15NVSHandleSimple9nextEntryEP21nvs_opaque_iterator_t + 0x0000000000000000 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple9debugDumpEv + 0x0000000000000000 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple9fillStatsER11nvs_stats_t + 0x0000000000000000 0x11 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple22calcEntriesInNamespaceERj + 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple9findEntryEP21nvs_opaque_iterator_tPKc + 0x0000000000000000 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text._ZN3nvs15NVSHandleSimple9nextEntryEP21nvs_opaque_iterator_t + 0x0000000000000000 0x11 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .xt.lit 0x0000000000000000 0x90 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .xt.prop 0x0000000000000000 0x4ec esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .xt.prop 0x0000000000000000 0x90 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + .xt.prop 0x0000000000000000 0x60 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .xt.prop 0x0000000000000000 0xd8 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .literal.disconnect_and_destroy + 0x0000000000000000 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_wifi_clear_default_wifi_driver_and_handlers + 0x0000000000000000 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_netif_create_wifi + 0x0000000000000000 0x24 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_netif_create_default_wifi_mesh_netifs + 0x0000000000000000 0x80 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.disconnect_and_destroy + 0x0000000000000000 0x2c esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_wifi_clear_default_wifi_driver_and_handlers + 0x0000000000000000 0x46 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_netif_create_wifi + 0x0000000000000000 0x6a esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.esp_netif_create_default_wifi_mesh_netifs.str1.4 + 0x0000000000000000 0xfc esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.esp_netif_create_default_wifi_mesh_netifs + 0x0000000000000000 0x138 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.__func__$9260 + 0x0000000000000000 0x2a esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .rodata.__func__$9252 + 0x0000000000000000 0x16 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .xt.lit 0x0000000000000000 0xa8 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .xt.prop 0x0000000000000000 0x5f4 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .literal.esp_wifi_destroy_if_driver + 0x0000000000000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text.esp_wifi_destroy_if_driver + 0x0000000000000000 0xe esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .xt.lit 0x0000000000000000 0x48 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .xt.prop 0x0000000000000000 0x264 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .iram1.25.literal + 0x0000000000000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.24.literal + 0x0000000000000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.41 0x0000000000000000 0x14 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.25 0x0000000000000000 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.24 0x0000000000000000 0x14 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.37 0x0000000000000000 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.38 0x0000000000000000 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.coex_register_bt_cb_wrapper + 0x0000000000000000 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.39 0x0000000000000000 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.40 0x0000000000000000 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .data.g_coex_adapter_funcs + 0x0000000000000000 0x54 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .xt.lit 0x0000000000000000 0x188 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .xt.prop 0x0000000000000000 0xc0c esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .literal.esp_phy_rf_get_on_ts + 0x0000000000000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .literal.esp_phy_erase_cal_data_in_nvs + 0x0000000000000000 0x40 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .text.esp_phy_rf_get_on_ts + 0x0000000000000000 0xc esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .text.esp_phy_release_init_data + 0x0000000000000000 0x5 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .rodata.esp_phy_erase_cal_data_in_nvs.str1.4 + 0x0000000000000000 0xcd esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .text.esp_phy_erase_cal_data_in_nvs + 0x0000000000000000 0x9a esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .rodata.__func__$11116 + 0x0000000000000000 0x1e esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .xt.lit 0x0000000000000000 0x90 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .xt.prop 0x0000000000000000 0x918 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .literal.dhcps_option_info + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .literal.dhcps_set_option_info + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .literal.dhcp_search_ip_on_mac + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .literal.dhcps_dns_setserver + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .literal.dhcps_dns_getserver + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text.dhcps_option_info + 0x0000000000000000 0x5d esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text.dhcps_set_option_info + 0x0000000000000000 0x62 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text.dhcp_search_ip_on_mac + 0x0000000000000000 0x42 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text.dhcps_dns_setserver + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text.dhcps_dns_getserver + 0x0000000000000000 0xa esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .xt.lit 0x0000000000000000 0xa0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .xt.prop 0x0000000000000000 0xc60 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .literal.pbuf_free_int + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.tcpip_api_call + 0x0000000000000000 0x20 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.tcpip_callbackmsg_new + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.tcpip_callbackmsg_delete + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.tcpip_callbackmsg_trycallback + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.tcpip_callbackmsg_trycallback_fromisr + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.pbuf_free_callback + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.mem_free_callback + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.pbuf_free_int + 0x0000000000000000 0xe esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.tcpip_api_call + 0x0000000000000000 0x49 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.tcpip_callbackmsg_new + 0x0000000000000000 0x1f esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.tcpip_callbackmsg_delete + 0x0000000000000000 0xf esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.tcpip_callbackmsg_trycallback + 0x0000000000000000 0x2d esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.tcpip_callbackmsg_trycallback_fromisr + 0x0000000000000000 0x2d esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.pbuf_free_callback + 0x0000000000000000 0x13 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.mem_free_callback + 0x0000000000000000 0x13 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$7059 + 0x0000000000000000 0x26 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$7055 + 0x0000000000000000 0x1e esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$7043 + 0x0000000000000000 0xf esp-idf/lwip/liblwip.a(tcpip.c.obj) + .xt.lit 0x0000000000000000 0x88 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .xt.prop 0x0000000000000000 0x5dc esp-idf/lwip/liblwip.a(tcpip.c.obj) + .literal.lwip_strnstr + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(def.c.obj) + .literal.lwip_itoa + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(def.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(def.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(def.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(def.c.obj) + .text.lwip_strnstr + 0x0000000000000000 0x44 esp-idf/lwip/liblwip.a(def.c.obj) + .text.lwip_stricmp + 0x0000000000000000 0x3d esp-idf/lwip/liblwip.a(def.c.obj) + .text.lwip_strnicmp + 0x0000000000000000 0x51 esp-idf/lwip/liblwip.a(def.c.obj) + .text.lwip_itoa + 0x0000000000000000 0x9b esp-idf/lwip/liblwip.a(def.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(def.c.obj) + .xt.prop 0x0000000000000000 0x264 esp-idf/lwip/liblwip.a(def.c.obj) + .literal.dns_server_is_set + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_correct_response + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_lookup + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_alloc_random_port + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_alloc_pcb + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_enqueue + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_skip_name + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_compare_name + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_recv + 0x0000000000000000 0x78 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_getserver + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_gethostbyname_addrtype + 0x0000000000000000 0x30 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_gethostbyname + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(dns.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_server_is_set + 0x0000000000000000 0x7e esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_correct_response + 0x0000000000000000 0x7e esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_lookup + 0x0000000000000000 0x119 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_alloc_random_port + 0x0000000000000000 0x57 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_alloc_pcb + 0x0000000000000000 0x77 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_enqueue + 0x0000000000000000 0x1d9 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_skip_name + 0x0000000000000000 0x7a esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_compare_name + 0x0000000000000000 0xd6 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_recv + 0x0000000000000000 0x4e7 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_getserver + 0x0000000000000000 0x1e esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.dns_gethostbyname_addrtype.str1.4 + 0x0000000000000000 0x13 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_gethostbyname_addrtype + 0x0000000000000000 0x160 esp-idf/lwip/liblwip.a(dns.c.obj) + .text.dns_gethostbyname + 0x0000000000000000 0x19 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.dns_seqno + 0x0000000000000000 0x1 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.dns_last_pcb_idx + 0x0000000000000000 0x1 esp-idf/lwip/liblwip.a(dns.c.obj) + .xt.lit 0x0000000000000000 0xa8 esp-idf/lwip/liblwip.a(dns.c.obj) + .xt.prop 0x0000000000000000 0x1074 esp-idf/lwip/liblwip.a(dns.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(init.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(init.c.obj) + .xt.prop 0x0000000000000000 0x30 esp-idf/lwip/liblwip.a(init.c.obj) + .literal.ipaddr_ntoa + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(ip.c.obj) + .literal.ipaddr_ntoa_r + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(ip.c.obj) + .literal.ipaddr_aton + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(ip.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) + .text.ipaddr_ntoa + 0x0000000000000000 0x2a esp-idf/lwip/liblwip.a(ip.c.obj) + .text.ipaddr_ntoa_r + 0x0000000000000000 0x32 esp-idf/lwip/liblwip.a(ip.c.obj) + .text.ipaddr_aton + 0x0000000000000000 0x4c esp-idf/lwip/liblwip.a(ip.c.obj) + .xt.lit 0x0000000000000000 0x20 esp-idf/lwip/liblwip.a(ip.c.obj) + .xt.prop 0x0000000000000000 0x1c8 esp-idf/lwip/liblwip.a(ip.c.obj) + .literal.mem_calloc + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(mem.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(mem.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(mem.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(mem.c.obj) + .text.mem_calloc + 0x0000000000000000 0x11 esp-idf/lwip/liblwip.a(mem.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(mem.c.obj) + .xt.prop 0x0000000000000000 0x12c esp-idf/lwip/liblwip.a(mem.c.obj) + .literal.memp_malloc_pool + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(memp.c.obj) + .literal.memp_free_pool + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(memp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(memp.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(memp.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(memp.c.obj) + .text.memp_init_pool + 0x0000000000000000 0x5 esp-idf/lwip/liblwip.a(memp.c.obj) + .rodata.memp_malloc_pool.str1.4 + 0x0000000000000000 0x12 esp-idf/lwip/liblwip.a(memp.c.obj) + .text.memp_malloc_pool + 0x0000000000000000 0x24 esp-idf/lwip/liblwip.a(memp.c.obj) + .text.memp_free_pool + 0x0000000000000000 0x32 esp-idf/lwip/liblwip.a(memp.c.obj) + .rodata.__func__$8281 + 0x0000000000000000 0xf esp-idf/lwip/liblwip.a(memp.c.obj) + .rodata.__func__$8264 + 0x0000000000000000 0x11 esp-idf/lwip/liblwip.a(memp.c.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/lwip/liblwip.a(memp.c.obj) + .xt.prop 0x0000000000000000 0x330 esp-idf/lwip/liblwip.a(memp.c.obj) + .literal.netif_input + 0x0000000000000000 0x20 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_set_ipaddr + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_set_netmask + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_set_gw + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_add_noaddr + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_set_link_down + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_ip6_addr_set_parts + 0x0000000000000000 0x28 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_ip6_addr_set + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_create_ip6_linklocal_address + 0x0000000000000000 0x2c esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_add_ip6_address + 0x0000000000000000 0x2c esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_index_to_name + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_name_to_index + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_input.str1.4 + 0x0000000000000000 0x37 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_input + 0x0000000000000000 0x55 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_set_ipaddr.str1.4 + 0x0000000000000000 0x20 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_set_ipaddr + 0x0000000000000000 0x24 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_set_netmask.str1.4 + 0x0000000000000000 0x21 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_set_netmask + 0x0000000000000000 0x24 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_set_gw.str1.4 + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_set_gw + 0x0000000000000000 0x24 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_add_noaddr + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_set_link_down.str1.4 + 0x0000000000000000 0x23 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_set_link_down + 0x0000000000000000 0x22 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_ip6_addr_set_parts + 0x0000000000000000 0x10a esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_ip6_addr_set.str1.4 + 0x0000000000000000 0x46 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_ip6_addr_set + 0x0000000000000000 0x43 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_create_ip6_linklocal_address.str1.4 + 0x0000000000000000 0x32 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_create_ip6_linklocal_address + 0x0000000000000000 0xfa esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_add_ip6_address.str1.4 + 0x0000000000000000 0x4f esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_add_ip6_address + 0x0000000000000000 0xed esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_index_to_name + 0x0000000000000000 0x31 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_name_to_index + 0x0000000000000000 0x1d esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$7812 + 0x0000000000000000 0x16 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$7802 + 0x0000000000000000 0x23 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$7773 + 0x0000000000000000 0x19 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$7762 + 0x0000000000000000 0x13 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$7598 + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + .xt.lit 0x0000000000000000 0x100 esp-idf/lwip/liblwip.a(netif.c.obj) + .xt.prop 0x0000000000000000 0xf9c esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.pbuf_alloced_custom + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_header + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_dechain + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_get_contiguous + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_coalesce + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_memcmp + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_memfind + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_strstr + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_alloced_custom + 0x0000000000000000 0x38 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_header + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_dechain.str1.4 + 0x0000000000000000 0x39 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_dechain + 0x0000000000000000 0x69 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_get_contiguous.str1.4 + 0x0000000000000000 0x49 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_get_contiguous + 0x0000000000000000 0x75 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_coalesce + 0x0000000000000000 0x24 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_memcmp + 0x0000000000000000 0x63 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_memfind + 0x0000000000000000 0x42 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_strstr + 0x0000000000000000 0x55 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.__func__$7356 + 0x0000000000000000 0xd esp-idf/lwip/liblwip.a(pbuf.c.obj) + .xt.lit 0x0000000000000000 0x110 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .xt.prop 0x0000000000000000 0xff0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.raw_connect + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(raw.c.obj) + .literal.raw_disconnect + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(raw.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + .text.raw_connect + 0x0000000000000000 0x139 esp-idf/lwip/liblwip.a(raw.c.obj) + .text.raw_disconnect + 0x0000000000000000 0x96 esp-idf/lwip/liblwip.a(raw.c.obj) + .xt.lit 0x0000000000000000 0x60 esp-idf/lwip/liblwip.a(raw.c.obj) + .xt.prop 0x0000000000000000 0xf48 esp-idf/lwip/liblwip.a(raw.c.obj) + .literal.tcp_listen_with_backlog + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_txnow + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_setprio + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_connect + 0x0000000000000000 0x5c esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_debug_state_str + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_tcp_get_tcp_addrinfo + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + .literal.tcp_new + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_listen_with_backlog + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_txnow + 0x0000000000000000 0x21 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_setprio.str1.4 + 0x0000000000000000 0x19 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_setprio + 0x0000000000000000 0x19 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_connect.str1.4 + 0x0000000000000000 0x68 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_connect + 0x0000000000000000 0x390 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_debug_state_str + 0x0000000000000000 0xf esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_tcp_get_tcp_addrinfo + 0x0000000000000000 0x41 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text.tcp_new 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.str1.4 + 0x0000000000000000 0x76 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_state_str + 0x0000000000000000 0x2c esp-idf/lwip/liblwip.a(tcp.c.obj) + .xt.lit 0x0000000000000000 0x1a0 esp-idf/lwip/liblwip.a(tcp.c.obj) + .xt.prop 0x0000000000000000 0x2964 esp-idf/lwip/liblwip.a(tcp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .xt.lit 0x0000000000000000 0x58 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .xt.prop 0x0000000000000000 0x1644 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .xt.lit 0x0000000000000000 0xc0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .xt.prop 0x0000000000000000 0x1170 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .literal.sys_restart_timeouts + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .text.sys_restart_timeouts + 0x0000000000000000 0x2a esp-idf/lwip/liblwip.a(timeouts.c.obj) + .rodata.lwip_num_cyclic_timers + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .xt.lit 0x0000000000000000 0x50 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .xt.prop 0x0000000000000000 0x3e4 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + .xt.lit 0x0000000000000000 0x80 esp-idf/lwip/liblwip.a(udp.c.obj) + .xt.prop 0x0000000000000000 0x1878 esp-idf/lwip/liblwip.a(udp.c.obj) + .literal.dhcp_set_struct + 0x0000000000000000 0x24 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .literal.dhcp_inform + 0x0000000000000000 0x38 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .text.dhcp_set_struct + 0x0000000000000000 0x55 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .text.dhcp_inform + 0x0000000000000000 0xa1 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.__func__$7105 + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .xt.lit 0x0000000000000000 0x128 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .xt.prop 0x0000000000000000 0x1548 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .literal.etharp_find_addr + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(etharp.c.obj) + .literal.etharp_get_entry + 0x0000000000000000 0x24 esp-idf/lwip/liblwip.a(etharp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.etharp_find_addr.str1.4 + 0x0000000000000000 0x22 esp-idf/lwip/liblwip.a(etharp.c.obj) + .text.etharp_find_addr + 0x0000000000000000 0x6d esp-idf/lwip/liblwip.a(etharp.c.obj) + .text.etharp_get_entry + 0x0000000000000000 0x80 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.__func__$6998 + 0x0000000000000000 0x11 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.__func__$6991 + 0x0000000000000000 0x11 esp-idf/lwip/liblwip.a(etharp.c.obj) + .xt.lit 0x0000000000000000 0x80 esp-idf/lwip/liblwip.a(etharp.c.obj) + .xt.prop 0x0000000000000000 0xad4 esp-idf/lwip/liblwip.a(etharp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(icmp.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(icmp.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(icmp.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(icmp.c.obj) + .xt.prop 0x0000000000000000 0x18c esp-idf/lwip/liblwip.a(icmp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .xt.lit 0x0000000000000000 0x88 esp-idf/lwip/liblwip.a(igmp.c.obj) + .xt.prop 0x0000000000000000 0x87c esp-idf/lwip/liblwip.a(igmp.c.obj) + .literal.ip4_set_default_multicast_netif + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(ip4.c.obj) + .literal.ip4_output + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(ip4.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + .text.ip4_set_default_multicast_netif + 0x0000000000000000 0xa esp-idf/lwip/liblwip.a(ip4.c.obj) + .text.ip4_output + 0x0000000000000000 0x51 esp-idf/lwip/liblwip.a(ip4.c.obj) + .rodata.__func__$7438 + 0x0000000000000000 0xb esp-idf/lwip/liblwip.a(ip4.c.obj) + .xt.lit 0x0000000000000000 0x60 esp-idf/lwip/liblwip.a(ip4.c.obj) + .xt.prop 0x0000000000000000 0x720 esp-idf/lwip/liblwip.a(ip4.c.obj) + .literal.ip4_addr_netmask_valid + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .literal.ipaddr_addr + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .literal.ip4addr_ntoa_r + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .literal.ip4addr_ntoa + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text.ip4_addr_netmask_valid + 0x0000000000000000 0x32 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text.ipaddr_addr + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text.ip4addr_ntoa_r + 0x0000000000000000 0x96 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text.ip4addr_ntoa + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .bss.str$6304 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .xt.prop 0x0000000000000000 0x4d4 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .xt.prop 0x0000000000000000 0xe4 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .literal.icmp6_packet_too_big + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .literal.icmp6_time_exceeded + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .text.icmp6_packet_too_big + 0x0000000000000000 0x13 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .text.icmp6_time_exceeded + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .xt.lit 0x0000000000000000 0x48 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .xt.prop 0x0000000000000000 0x300 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .literal.ip6_output + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(ip6.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + .text.ip6_output + 0x0000000000000000 0x16d esp-idf/lwip/liblwip.a(ip6.c.obj) + .rodata.__func__$7256 + 0x0000000000000000 0xb esp-idf/lwip/liblwip.a(ip6.c.obj) + .xt.lit 0x0000000000000000 0x40 esp-idf/lwip/liblwip.a(ip6.c.obj) + .xt.prop 0x0000000000000000 0xd20 esp-idf/lwip/liblwip.a(ip6.c.obj) + .literal.ip6addr_aton + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .literal.ip6addr_ntoa_r + 0x0000000000000000 0x20 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .literal.ip6addr_ntoa + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .text.ip6addr_aton + 0x0000000000000000 0x1d8 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .rodata.ip6addr_ntoa_r.str1.4 + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .text.ip6addr_ntoa_r + 0x0000000000000000 0x222 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .text.ip6addr_ntoa + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .bss.str$6110 0x0000000000000000 0x28 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .xt.prop 0x0000000000000000 0x558 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .xt.prop 0x0000000000000000 0x504 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + .xt.lit 0x0000000000000000 0x60 esp-idf/lwip/liblwip.a(mld6.c.obj) + .xt.prop 0x0000000000000000 0x798 esp-idf/lwip/liblwip.a(mld6.c.obj) + .literal.nd6_set_cb + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(nd6.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.nd6_set_cb.str1.4 + 0x0000000000000000 0xe esp-idf/lwip/liblwip.a(nd6.c.obj) + .text.nd6_set_cb + 0x0000000000000000 0x23 esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.__func__$7116 + 0x0000000000000000 0xb esp-idf/lwip/liblwip.a(nd6.c.obj) + .xt.lit 0x0000000000000000 0xf8 esp-idf/lwip/liblwip.a(nd6.c.obj) + .xt.prop 0x0000000000000000 0x1c44 esp-idf/lwip/liblwip.a(nd6.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .xt.prop 0x0000000000000000 0x138 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .literal.sys_mutex_free + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.sys_sem_free + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.sys_mbox_trypost_fromisr + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.sys_jiffies + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.sys_thread_sem_deinit + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.sys_delay_ms + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_mutex_free + 0x0000000000000000 0x12 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_sem_free + 0x0000000000000000 0x12 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_mbox_trypost_fromisr.str1.4 + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_mbox_trypost_fromisr + 0x0000000000000000 0x44 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_mbox_set_owner + 0x0000000000000000 0xe esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_jiffies + 0x0000000000000000 0xd esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_thread_sem_deinit + 0x0000000000000000 0x26 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .text.sys_delay_ms + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.__func__$6252 + 0x0000000000000000 0x19 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .xt.lit 0x0000000000000000 0xd8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .xt.prop 0x0000000000000000 0x810 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .literal.inet_cksum_pseudo_partial_base + 0x0000000000000000 0x20 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .literal.inet_chksum_pseudo_partial + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .literal.ip6_chksum_pseudo_partial + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .literal.ip_chksum_pseudo_partial + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .rodata.inet_cksum_pseudo_partial_base.str1.4 + 0x0000000000000000 0x52 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .text.inet_cksum_pseudo_partial_base + 0x0000000000000000 0xba esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .text.inet_chksum_pseudo_partial + 0x0000000000000000 0x3e esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .text.ip6_chksum_pseudo_partial + 0x0000000000000000 0x56 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .text.ip_chksum_pseudo_partial + 0x0000000000000000 0x34 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .rodata.__func__$6356 + 0x0000000000000000 0x1f esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .xt.lit 0x0000000000000000 0x50 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .xt.prop 0x0000000000000000 0x348 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .xt.prop 0x0000000000000000 0x15c esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .literal.lwip_poll_inc_sockets_used + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_pollscan + 0x0000000000000000 0x3c esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_poll_dec_sockets_used + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_getaddrname + 0x0000000000000000 0x28 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_getsockopt_impl + 0x0000000000000000 0xe0 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_getsockopt_callback + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_socket_thread_init + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_socket_thread_cleanup + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_socket_dbg_get_socket + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_connect + 0x0000000000000000 0x44 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_recvmsg + 0x0000000000000000 0x48 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_readv + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_sendmsg + 0x0000000000000000 0xa8 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_writev + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_poll + 0x0000000000000000 0x50 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_shutdown + 0x0000000000000000 0x2c esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_getpeername + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_getsockname + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_getsockopt + 0x0000000000000000 0x30 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_inet_ntop + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.lwip_inet_pton + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_poll_inc_sockets_used + 0x0000000000000000 0x21 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_pollscan + 0x0000000000000000 0x140 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_poll_dec_sockets_used + 0x0000000000000000 0x29 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_getaddrname + 0x0000000000000000 0x101 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_getsockopt_impl + 0x0000000000000000 0x655 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_getsockopt_impl + 0x0000000000000000 0x38 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_getsockopt_callback + 0x0000000000000000 0x36 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_socket_thread_init + 0x0000000000000000 0xb esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_socket_thread_cleanup + 0x0000000000000000 0xb esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_socket_dbg_get_socket + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_connect.str1.4 + 0x0000000000000000 0x1e esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_connect + 0x0000000000000000 0x132 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_recvmsg.str1.4 + 0x0000000000000000 0x48 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_recvmsg + 0x0000000000000000 0x16e esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_readv + 0x0000000000000000 0x21 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_sendmsg.str1.4 + 0x0000000000000000 0xaa esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_sendmsg + 0x0000000000000000 0x28a esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_writev + 0x0000000000000000 0x21 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_poll.str1.4 + 0x0000000000000000 0x24 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_poll + 0x0000000000000000 0x142 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_shutdown + 0x0000000000000000 0xbd esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_getpeername + 0x0000000000000000 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_getsockname + 0x0000000000000000 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_getsockopt + 0x0000000000000000 0xc0 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_inet_ntop + 0x0000000000000000 0x6a esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_inet_pton + 0x0000000000000000 0x4a esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$8661 + 0x0000000000000000 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$8516 + 0x0000000000000000 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$8552 + 0x0000000000000000 0xa esp-idf/lwip/liblwip.a(sockets.c.obj) + .xt.lit 0x0000000000000000 0x230 esp-idf/lwip/liblwip.a(sockets.c.obj) + .xt.prop 0x0000000000000000 0x3af8 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.netconn_bind_if + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_connect + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_disconnect + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_sendto + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_close + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_recv_udp_raw_netbuf + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_recv_tcp_pbuf + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_recv + 0x0000000000000000 0x30 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_shutdown + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_gethostbyname_addrtype + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_thread_init + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.netconn_thread_cleanup + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.netconn_bind_if.str1.4 + 0x0000000000000000 0x1e esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_bind_if + 0x0000000000000000 0x2d esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.netconn_connect.str1.4 + 0x0000000000000000 0x1e esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_connect + 0x0000000000000000 0x35 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.netconn_disconnect.str1.4 + 0x0000000000000000 0x21 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_disconnect + 0x0000000000000000 0x26 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_sendto + 0x0000000000000000 0x8d esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_close + 0x0000000000000000 0x12 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_recv_udp_raw_netbuf + 0x0000000000000000 0x31 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_recv_tcp_pbuf + 0x0000000000000000 0x31 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.netconn_recv.str1.4 + 0x0000000000000000 0xa esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_recv + 0x0000000000000000 0xbd esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_shutdown + 0x0000000000000000 0x2d esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.netconn_gethostbyname_addrtype.str1.4 + 0x0000000000000000 0x48 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_gethostbyname_addrtype + 0x0000000000000000 0x5e esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.netconn_thread_init.str1.4 + 0x0000000000000000 0x27 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_thread_init + 0x0000000000000000 0x34 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .text.netconn_thread_cleanup + 0x0000000000000000 0x17 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.__func__$7876 + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.__func__$7789 + 0x0000000000000000 0xd esp-idf/lwip/liblwip.a(api_lib.c.obj) + .xt.lit 0x0000000000000000 0x108 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .xt.prop 0x0000000000000000 0xfd8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .literal.lwip_netconn_do_dns_found + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_connected + 0x0000000000000000 0x28 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_bind_if + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_connect + 0x0000000000000000 0x20 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_disconnect + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_netconn_do_gethostbyname + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_dns_found + 0x0000000000000000 0x2e esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_do_connected.str1.4 + 0x0000000000000000 0x7d esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_connected + 0x0000000000000000 0xe0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_bind_if + 0x0000000000000000 0x74 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_do_connect.str1.4 + 0x0000000000000000 0x15 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_connect + 0x0000000000000000 0xda esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_disconnect + 0x0000000000000000 0x2f esp-idf/lwip/liblwip.a(api_msg.c.obj) + .text.lwip_netconn_do_gethostbyname + 0x0000000000000000 0x32 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$7806 + 0x0000000000000000 0x1a esp-idf/lwip/liblwip.a(api_msg.c.obj) + .xt.lit 0x0000000000000000 0x120 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .xt.prop 0x0000000000000000 0x1c20 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .literal.lwip_strerr + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(err.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(err.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(err.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(err.c.obj) + .rodata.lwip_strerr.str1.4 + 0x0000000000000000 0xf esp-idf/lwip/liblwip.a(err.c.obj) + .text.lwip_strerr + 0x0000000000000000 0x29 esp-idf/lwip/liblwip.a(err.c.obj) + .rodata.str1.4 + 0x0000000000000000 0x13a esp-idf/lwip/liblwip.a(err.c.obj) + .rodata.err_strerr + 0x0000000000000000 0x44 esp-idf/lwip/liblwip.a(err.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(err.c.obj) + .xt.prop 0x0000000000000000 0xa8 esp-idf/lwip/liblwip.a(err.c.obj) + .literal.netbuf_new + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .literal.netbuf_ref + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .literal.netbuf_chain + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .literal.netbuf_data + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .literal.netbuf_next + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .literal.netbuf_first + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_new + 0x0000000000000000 0x1c esp-idf/lwip/liblwip.a(netbuf.c.obj) + .rodata.netbuf_ref.str1.4 + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_ref + 0x0000000000000000 0x50 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .rodata.netbuf_chain.str1.4 + 0x0000000000000000 0x37 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_chain + 0x0000000000000000 0x3a esp-idf/lwip/liblwip.a(netbuf.c.obj) + .rodata.netbuf_data.str1.4 + 0x0000000000000000 0x55 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_data + 0x0000000000000000 0x52 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .rodata.netbuf_next.str1.4 + 0x0000000000000000 0x19 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_next + 0x0000000000000000 0x30 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .rodata.netbuf_first.str1.4 + 0x0000000000000000 0x1a esp-idf/lwip/liblwip.a(netbuf.c.obj) + .text.netbuf_first + 0x0000000000000000 0x17 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .xt.lit 0x0000000000000000 0x48 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .xt.prop 0x0000000000000000 0x378 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .literal.esp_log_set_vprintf + 0x0000000000000000 0xc esp-idf/log/liblog.a(log.c.obj) + .text 0x0000000000000000 0x0 esp-idf/log/liblog.a(log.c.obj) + .data 0x0000000000000000 0x0 esp-idf/log/liblog.a(log.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/log/liblog.a(log.c.obj) + .text.esp_log_set_vprintf + 0x0000000000000000 0x1b esp-idf/log/liblog.a(log.c.obj) + .xt.lit 0x0000000000000000 0x20 esp-idf/log/liblog.a(log.c.obj) + .xt.prop 0x0000000000000000 0x2d0 esp-idf/log/liblog.a(log.c.obj) + .literal.esp_log_system_timestamp + 0x0000000000000000 0x30 esp-idf/log/liblog.a(log_freertos.c.obj) + .text 0x0000000000000000 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + .data 0x0000000000000000 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + .rodata.esp_log_system_timestamp.str1.4 + 0x0000000000000000 0x15 esp-idf/log/liblog.a(log_freertos.c.obj) + .text.esp_log_system_timestamp + 0x0000000000000000 0xe9 esp-idf/log/liblog.a(log_freertos.c.obj) + .bss.bufferLock$5140 + 0x0000000000000000 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + .bss.buffer$5139 + 0x0000000000000000 0x12 esp-idf/log/liblog.a(log_freertos.c.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/log/liblog.a(log_freertos.c.obj) + .xt.prop 0x0000000000000000 0x234 esp-idf/log/liblog.a(log_freertos.c.obj) + .literal.heap_caps_malloc_extmem_enable + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.19.literal + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.20.literal + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.21.literal + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_total_size + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_info + 0x0000000000000000 0x10 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_largest_free_block + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_print_heap_info + 0x0000000000000000 0x38 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_check_integrity + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_check_integrity_all + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_check_integrity_addr + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_dump + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_dump_all + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_allocated_size + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.26.literal + 0x0000000000000000 0x10 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_aligned_calloc + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.27.literal + 0x0000000000000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .data 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_malloc_extmem_enable + 0x0000000000000000 0xa esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.19 0x0000000000000000 0x59 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.20 0x0000000000000000 0x6c esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.21 0x0000000000000000 0x58 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_total_size + 0x0000000000000000 0x2c esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_info + 0x0000000000000000 0x73 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_largest_free_block + 0x0000000000000000 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.heap_caps_print_heap_info.str1.4 + 0x0000000000000000 0xf4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_print_heap_info + 0x0000000000000000 0x7f esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_check_integrity + 0x0000000000000000 0x57 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_check_integrity_all + 0x0000000000000000 0x13 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_check_integrity_addr + 0x0000000000000000 0x24 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_dump + 0x0000000000000000 0x3e esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_dump_all + 0x0000000000000000 0xe esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_allocated_size + 0x0000000000000000 0x1a esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.26 0x0000000000000000 0x8a esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_aligned_calloc + 0x0000000000000000 0x34 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.27 0x0000000000000000 0x2e esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$4895 + 0x0000000000000000 0x17 esp-idf/heap/libheap.a(heap_caps.c.obj) + .xt.lit 0x0000000000000000 0xd8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .xt.prop 0x0000000000000000 0xba0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_add_region_with_caps + 0x0000000000000000 0x3c esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .literal.heap_caps_add_region + 0x0000000000000000 0x10 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text.heap_caps_add_region_with_caps + 0x0000000000000000 0x108 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text.heap_caps_add_region + 0x0000000000000000 0x62 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .data.registered_heaps_write_lock$4765 + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .xt.prop 0x0000000000000000 0x378 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .literal.multi_heap_internal_lock + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_internal_unlock + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_get_next_block + 0x0000000000000000 0x14 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_check + 0x0000000000000000 0x58 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_dump + 0x0000000000000000 0x4c esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_get_info_impl + 0x0000000000000000 0x2c esp-idf/heap/libheap.a(multi_heap.c.obj) + .text 0x0000000000000000 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_block_owner + 0x0000000000000000 0x7 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_block_address_impl + 0x0000000000000000 0x7 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_internal_lock + 0x0000000000000000 0xf esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_internal_unlock + 0x0000000000000000 0xf esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_first_block + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_next_block + 0x0000000000000000 0x49 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_is_free + 0x0000000000000000 0xa esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.multi_heap_check.str1.4 + 0x0000000000000000 0x1b5 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_check + 0x0000000000000000 0x170 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.multi_heap_dump.str1.4 + 0x0000000000000000 0x7b esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_dump + 0x0000000000000000 0xd2 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_info_impl + 0x0000000000000000 0xee esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$4847 + 0x0000000000000000 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$4835 + 0x0000000000000000 0x11 esp-idf/heap/libheap.a(multi_heap.c.obj) + .xt.lit 0x0000000000000000 0x70 esp-idf/heap/libheap.a(multi_heap.c.obj) + .xt.prop 0x0000000000000000 0xbf4 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.gpio_od_enable + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_od_disable + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_input_enable + 0x0000000000000000 0x34 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_input_disable + 0x0000000000000000 0x34 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_output_disable + 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_intr_enable_on_core + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_output_enable + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_isr_register_on_core_static + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + .iram1.15.literal + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_pullup_en + 0x0000000000000000 0x48 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_pullup_dis + 0x0000000000000000 0x48 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_pulldown_en + 0x0000000000000000 0x48 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_pulldown_dis + 0x0000000000000000 0x48 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_set_intr_type + 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_intr_enable + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_intr_disable + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_set_level + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_get_level + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_set_pull_mode + 0x0000000000000000 0x54 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_set_direction + 0x0000000000000000 0x40 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_config + 0x0000000000000000 0x94 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_reset_pin + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_isr_handler_add + 0x0000000000000000 0x44 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_isr_handler_remove + 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_uninstall_isr_service + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_isr_register + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_install_isr_service + 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_wakeup_disable + 0x0000000000000000 0x34 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_set_drive_capability + 0x0000000000000000 0x5c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_get_drive_capability + 0x0000000000000000 0x54 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_hold_en + 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_hold_dis + 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_deep_sleep_hold_en + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_deep_sleep_hold_dis + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_iomux_in + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_iomux_out + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(gpio.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_od_enable + 0x0000000000000000 0x62 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_od_disable + 0x0000000000000000 0x62 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_input_enable.str1.4 + 0x0000000000000000 0x101 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_input_enable + 0x0000000000000000 0x7c esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_input_disable.str1.4 + 0x0000000000000000 0xbc esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_input_disable + 0x0000000000000000 0x7c esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_output_disable.str1.4 + 0x0000000000000000 0xc0 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_output_disable + 0x0000000000000000 0xac esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_intr_enable_on_core + 0x0000000000000000 0x54 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_output_enable.str1.4 + 0x0000000000000000 0x1b esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_output_enable + 0x0000000000000000 0x95 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_isr_register_on_core_static + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .iram1.15 0x0000000000000000 0xf8 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_pullup_en.str1.4 + 0x0000000000000000 0xac esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_pullup_en + 0x0000000000000000 0xb2 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_pullup_dis.str1.4 + 0x0000000000000000 0xac esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_pullup_dis + 0x0000000000000000 0xb2 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_pulldown_en + 0x0000000000000000 0xb2 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_pulldown_dis + 0x0000000000000000 0xb2 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_set_intr_type.str1.4 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_set_intr_type + 0x0000000000000000 0xb0 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_intr_enable + 0x0000000000000000 0x76 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_intr_disable + 0x0000000000000000 0x51 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_set_level + 0x0000000000000000 0xc8 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_get_level + 0x0000000000000000 0x34 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_set_pull_mode.str1.4 + 0x0000000000000000 0x5d esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_set_pull_mode + 0x0000000000000000 0xf5 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_set_direction.str1.4 + 0x0000000000000000 0x33 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_set_direction + 0x0000000000000000 0xb8 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_config.str1.4 + 0x0000000000000000 0x1c3 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_config + 0x0000000000000000 0x22e esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_reset_pin.str1.4 + 0x0000000000000000 0x2e esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_reset_pin + 0x0000000000000000 0x57 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_isr_handler_add.str1.4 + 0x0000000000000000 0x49 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_isr_handler_add + 0x0000000000000000 0xc1 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_isr_handler_remove + 0x0000000000000000 0xad esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_uninstall_isr_service + 0x0000000000000000 0x3a esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_isr_register.str1.4 + 0x0000000000000000 0xe esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_isr_register + 0x0000000000000000 0x8b esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_install_isr_service.str1.4 + 0x0000000000000000 0x23 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_install_isr_service + 0x0000000000000000 0x7d esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_wakeup_disable + 0x0000000000000000 0x9c esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_set_drive_capability.str1.4 + 0x0000000000000000 0xd4 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_set_drive_capability + 0x0000000000000000 0xf8 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_get_drive_capability.str1.4 + 0x0000000000000000 0xde esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_get_drive_capability + 0x0000000000000000 0xe4 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_hold_en.str1.4 + 0x0000000000000000 0x2f esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_hold_en + 0x0000000000000000 0xa6 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_hold_dis + 0x0000000000000000 0xa9 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_deep_sleep_hold_en + 0x0000000000000000 0x2b esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_deep_sleep_hold_dis + 0x0000000000000000 0x2b esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_iomux_in.str1.4 + 0x0000000000000000 0xb0 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_iomux_in + 0x0000000000000000 0x5b esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_iomux_out.str1.4 + 0x0000000000000000 0xb0 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_iomux_out + 0x0000000000000000 0x86 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$6086 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$6076 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6307 + 0x0000000000000000 0xe esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6302 + 0x0000000000000000 0xd esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$6038 + 0x0000000000000000 0x1d esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6297 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$6029 + 0x0000000000000000 0x1d esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6291 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6285 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6273 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6258 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6254 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6247 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$6228 + 0x0000000000000000 0xf esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$6219 + 0x0000000000000000 0xc esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6177 + 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6181 + 0x0000000000000000 0xf esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$5992 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6169 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6173 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$5976 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6161 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$5984 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6165 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6206 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6194 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6186 + 0x0000000000000000 0xf esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6157 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6149 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6153 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6144 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$5938 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6139 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$5932 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6135 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$5926 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6131 + 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$5920 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6127 + 0x0000000000000000 0xf esp-idf/driver/libdriver.a(gpio.c.obj) + .xt.lit 0x0000000000000000 0x128 esp-idf/driver/libdriver.a(gpio.c.obj) + .xt.prop 0x0000000000000000 0x1380 esp-idf/driver/libdriver.a(gpio.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .xt.lit 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .xt.prop 0x0000000000000000 0x948 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .literal.rtc_gpio_init + 0x0000000000000000 0x48 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_deinit + 0x0000000000000000 0x48 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_set_level + 0x0000000000000000 0x34 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_get_level + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_set_drive_capability + 0x0000000000000000 0x64 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_get_drive_capability + 0x0000000000000000 0x58 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_set_direction + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_set_direction_in_sleep + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_pullup_en + 0x0000000000000000 0x48 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_pullup_dis + 0x0000000000000000 0x48 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_pulldown_en + 0x0000000000000000 0x48 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_pulldown_dis + 0x0000000000000000 0x48 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_hold_en + 0x0000000000000000 0x34 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_hold_dis + 0x0000000000000000 0x4c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_force_hold_en_all + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_wakeup_disable + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_init + 0x0000000000000000 0xe2 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.rtc_gpio_deinit.str1.4 + 0x0000000000000000 0xbc esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_deinit + 0x0000000000000000 0xc8 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_set_level + 0x0000000000000000 0xc8 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_get_level + 0x0000000000000000 0x78 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.rtc_gpio_set_drive_capability.str1.4 + 0x0000000000000000 0xe8 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_set_drive_capability + 0x0000000000000000 0x162 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.rtc_gpio_get_drive_capability.str1.4 + 0x0000000000000000 0xd6 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_get_drive_capability + 0x0000000000000000 0x132 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_set_direction + 0x0000000000000000 0x82 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_set_direction_in_sleep + 0x0000000000000000 0x82 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_pullup_en + 0x0000000000000000 0xc6 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_pullup_dis + 0x0000000000000000 0xc9 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_pulldown_en + 0x0000000000000000 0xc6 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_pulldown_dis + 0x0000000000000000 0xcd esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_hold_en + 0x0000000000000000 0x96 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.rtc_gpio_hold_dis.str1.4 + 0x0000000000000000 0xac esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_hold_dis + 0x0000000000000000 0xe0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_force_hold_en_all + 0x0000000000000000 0x2d esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_wakeup_disable + 0x0000000000000000 0xa4 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6775 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$6620 + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6756 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6752 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$6608 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6748 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$6601 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6744 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$6594 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6740 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$6587 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6736 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6732 + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6727 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$6577 + 0x0000000000000000 0x1e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6722 + 0x0000000000000000 0x1e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$6570 + 0x0000000000000000 0x1e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6717 + 0x0000000000000000 0x1e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6712 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6708 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6703 + 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$6529 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6699 + 0x0000000000000000 0xe esp-idf/driver/libdriver.a(rtc_io.c.obj) + .xt.lit 0x0000000000000000 0x98 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .xt.prop 0x0000000000000000 0xa38 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_isr_deregister + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .text.rtc_isr_deregister + 0x0000000000000000 0x61 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .xt.lit 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .xt.prop 0x0000000000000000 0x1b0 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .literal.bus_uses_iomux_pins + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_periph_claim + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_periph_in_use + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_periph_free + 0x0000000000000000 0xc esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_irqsource_for_host + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_irqdma_source_for_host + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_dma_chan_claim + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_dma_chan_in_use + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_dma_chan_free + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_bus_initialize_io + 0x0000000000000000 0x178 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_bus_free_io_cfg + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_cs_initialize + 0x0000000000000000 0x40 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_cs_free_io + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_bus_using_iomux + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.17.literal + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.18.literal + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.19.literal + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.20.literal + 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.bus_uses_iomux_pins + 0x0000000000000000 0xa0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_periph_claim.str1.4 + 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_periph_claim + 0x0000000000000000 0xb2 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_periph_in_use + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_periph_free + 0x0000000000000000 0x86 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_irqsource_for_host + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_irqdma_source_for_host + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_dma_chan_claim.str1.4 + 0x0000000000000000 0x6d esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_dma_chan_claim + 0x0000000000000000 0x57 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_dma_chan_in_use.str1.4 + 0x0000000000000000 0x1d esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_dma_chan_in_use + 0x0000000000000000 0x36 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_dma_chan_free.str1.4 + 0x0000000000000000 0x55 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_dma_chan_free + 0x0000000000000000 0x71 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_bus_initialize_io.str1.4 + 0x0000000000000000 0x5d6 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_bus_initialize_io + 0x0000000000000000 0x77c esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_bus_free_io_cfg + 0x0000000000000000 0x43 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_cs_initialize.str1.4 + 0x0000000000000000 0xba esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_cs_initialize + 0x0000000000000000 0x10c esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_cs_free_io.str1.4 + 0x0000000000000000 0x32 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_cs_free_io + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_bus_using_iomux + 0x0000000000000000 0xa4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.17 0x0000000000000000 0x52 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.18 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.19 0x0000000000000000 0x4c esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.20 0x0000000000000000 0x2a esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$6663 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$6653 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$6622 + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__FUNCTION__$6619 + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$6601 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$6597 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$6593 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss.dmaworkaround_waiting_for_chan + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .data.dmaworkaround_mux + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss.dmaworkaround_cb_arg + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss.dmaworkaround_cb + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss.dmaworkaround_channels_busy + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .data.spi_dma_spinlock + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss.spi_dma_chan_enabled + 0x0000000000000000 0x1 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss.spi_claiming_func + 0x0000000000000000 0xc esp-idf/driver/libdriver.a(spi_common.c.obj) + .data.spi_periph_claimed + 0x0000000000000000 0x3 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_frame 0x0000000000000000 0x1c0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_info 0x0000000000000000 0x5997 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_abbrev 0x0000000000000000 0x4b9 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_loc 0x0000000000000000 0xb8b esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_aranges + 0x0000000000000000 0xa8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_ranges 0x0000000000000000 0x98 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_line 0x0000000000000000 0x224b esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_str 0x0000000000000000 0x34fc esp-idf/driver/libdriver.a(spi_common.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/driver/libdriver.a(spi_common.c.obj) + .xt.lit 0x0000000000000000 0x90 esp-idf/driver/libdriver.a(spi_common.c.obj) + .xt.prop 0x0000000000000000 0x948 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.uart_pattern_dequeue + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_line_inverse + 0x0000000000000000 0x28 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_sw_flow_ctrl + 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_hw_flow_ctrl + 0x0000000000000000 0x40 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_get_hw_flow_ctrl + 0x0000000000000000 0x28 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_clear_intr_status + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_pattern_pop_pos + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_pattern_get_pos + 0x0000000000000000 0x28 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_enable_pattern_det_intr + 0x0000000000000000 0x4c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_enable_pattern_det_baud_intr + 0x0000000000000000 0x54 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_disable_pattern_det_intr + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_isr_free + 0x0000000000000000 0x40 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_pin + 0x0000000000000000 0xb0 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_rts + 0x0000000000000000 0x34 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_dtr + 0x0000000000000000 0x28 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_tx_idle_num + 0x0000000000000000 0x34 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_tx_chars + 0x0000000000000000 0x50 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_write_bytes_with_break + 0x0000000000000000 0x50 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_mode + 0x0000000000000000 0x4c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_rx_full_threshold + 0x0000000000000000 0x44 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_tx_empty_threshold + 0x0000000000000000 0x44 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_rx_timeout + 0x0000000000000000 0x34 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_get_collision_flag + 0x0000000000000000 0x40 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_get_wakeup_threshold + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_loop_back + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(uart.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_pattern_dequeue + 0x0000000000000000 0x3e esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_line_inverse + 0x0000000000000000 0x5a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_sw_flow_ctrl.str1.4 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_sw_flow_ctrl + 0x0000000000000000 0xd5 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_hw_flow_ctrl + 0x0000000000000000 0xbc esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_get_hw_flow_ctrl + 0x0000000000000000 0x5a esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_clear_intr_status + 0x0000000000000000 0x44 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_pattern_pop_pos + 0x0000000000000000 0x90 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_pattern_get_pos + 0x0000000000000000 0x86 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_enable_pattern_det_intr.str1.4 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_enable_pattern_det_intr + 0x0000000000000000 0x120 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_enable_pattern_det_baud_intr + 0x0000000000000000 0x154 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_disable_pattern_det_intr + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_isr_free + 0x0000000000000000 0xd4 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_pin.str1.4 + 0x0000000000000000 0x34c esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_pin + 0x0000000000000000 0x2fc esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_rts.str1.4 + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_rts + 0x0000000000000000 0xa8 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_dtr + 0x0000000000000000 0x5a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_tx_idle_num.str1.4 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_tx_idle_num + 0x0000000000000000 0x8e esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_tx_chars + 0x0000000000000000 0x130 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_write_bytes_with_break + 0x0000000000000000 0x109 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_mode.str1.4 + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_mode + 0x0000000000000000 0x12c esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_rx_full_threshold.str1.4 + 0x0000000000000000 0x5e esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_rx_full_threshold + 0x0000000000000000 0xd0 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_tx_empty_threshold.str1.4 + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_tx_empty_threshold + 0x0000000000000000 0xd0 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_rx_timeout.str1.4 + 0x0000000000000000 0x1d esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_rx_timeout + 0x0000000000000000 0x94 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_get_collision_flag.str1.4 + 0x0000000000000000 0x23 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_get_collision_flag + 0x0000000000000000 0xe8 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_get_wakeup_threshold.str1.4 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_get_wakeup_threshold + 0x0000000000000000 0x74 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_loop_back + 0x0000000000000000 0x4a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7246 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7234 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7224 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7219 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7214 + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7209 + 0x0000000000000000 0x1b esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7204 + 0x0000000000000000 0xe esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7138 + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7105 + 0x0000000000000000 0xe esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7047 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7042 + 0x0000000000000000 0xd esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7037 + 0x0000000000000000 0xd esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__func__$7020 + 0x0000000000000000 0xd esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7019 + 0x0000000000000000 0xd esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7011 + 0x0000000000000000 0xe esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$6974 + 0x0000000000000000 0x22 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$6964 + 0x0000000000000000 0x1d esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$6946 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$6940 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$6900 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$6895 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$6890 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$6883 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$6876 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + .xt.lit 0x0000000000000000 0x1f8 esp-idf/driver/libdriver.a(uart.c.obj) + .xt.prop 0x0000000000000000 0x2100 esp-idf/driver/libdriver.a(uart.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(hw_random.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(hw_random.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(hw_random.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/esp32/libesp32.a(hw_random.c.obj) + .xt.prop 0x0000000000000000 0x90 esp-idf/esp32/libesp32.a(hw_random.c.obj) + .iram1.15.literal + 0x0000000000000000 0x4 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .iram1.19.literal + 0x0000000000000000 0x10 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .iram1.17.literal + 0x0000000000000000 0x38 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .iram1.18.literal + 0x0000000000000000 0x44 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .iram1.20.literal + 0x0000000000000000 0xc esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .literal.esp_pm_impl_get_mode + 0x0000000000000000 0x4 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .iram1.16.literal + 0x0000000000000000 0x30 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .literal.esp_pm_impl_idle_hook + 0x0000000000000000 0x10 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .iram1.21.literal + 0x0000000000000000 0x10 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .literal.esp_pm_impl_init + 0x0000000000000000 0x58 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .iram1.15 0x0000000000000000 0x1d esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .iram1.19 0x0000000000000000 0x3e esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .rodata.str1.4 + 0x0000000000000000 0x6e esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .iram1.17 0x0000000000000000 0xa8 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .iram1.18 0x0000000000000000 0x112 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .iram1.20 0x0000000000000000 0x30 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .text.esp_pm_impl_get_mode + 0x0000000000000000 0x20 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .text.esp_pm_configure + 0x0000000000000000 0x8 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .iram1.16 0x0000000000000000 0xb6 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .text.esp_pm_impl_idle_hook + 0x0000000000000000 0x3c esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .iram1.21 0x0000000000000000 0x40 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .rodata.esp_pm_impl_init.str1.4 + 0x0000000000000000 0x121 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .text.esp_pm_impl_init + 0x0000000000000000 0xd0 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .rodata.__func__$7273 + 0x0000000000000000 0x11 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .rodata.__func__$7223 + 0x0000000000000000 0xf esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .bss.s_config_changed + 0x0000000000000000 0x1 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .bss.s_rtos_lock_handle + 0x0000000000000000 0x8 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .bss.s_core_idle + 0x0000000000000000 0x2 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .bss.s_need_update_ccompare + 0x0000000000000000 0x2 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .bss.s_ccount_mul + 0x0000000000000000 0x4 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .bss.s_ccount_div + 0x0000000000000000 0x4 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .bss.s_mode_mask + 0x0000000000000000 0x4 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .bss.s_mode_lock_counts + 0x0000000000000000 0x10 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .data.s_new_mode + 0x0000000000000000 0x4 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .bss.s_is_switching + 0x0000000000000000 0x1 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .data.s_mode 0x0000000000000000 0x4 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .data.s_switch_lock + 0x0000000000000000 0x8 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .xt.lit 0x0000000000000000 0x50 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .xt.prop 0x0000000000000000 0x48c esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + COMMON 0x0000000000000000 0x40 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(reset_reason.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(reset_reason.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(reset_reason.c.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/esp32/libesp32.a(reset_reason.c.obj) + .xt.prop 0x0000000000000000 0x27c esp-idf/esp32/libesp32.a(reset_reason.c.obj) + .literal.esp_deep_sleep + 0x0000000000000000 0x8 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_touchpad_wakeup + 0x0000000000000000 0x14 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_ext0_wakeup + 0x0000000000000000 0x1c esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .literal.esp_sleep_get_touchpad_wakeup_status + 0x0000000000000000 0x18 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .literal.esp_sleep_get_ext1_wakeup_status + 0x0000000000000000 0x10 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .literal.esp_sleep_pd_config + 0x0000000000000000 0x4 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_disable_rom_logging + 0x0000000000000000 0x8 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ulp_wakeup + 0x0000000000000000 0x8 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .text.esp_deep_sleep + 0x0000000000000000 0x13 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .rodata.esp_sleep_enable_touchpad_wakeup.str1.4 + 0x0000000000000000 0x39 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .text.esp_sleep_enable_touchpad_wakeup + 0x0000000000000000 0x4a esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ext0_wakeup + 0x0000000000000000 0xa5 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .rodata.esp_sleep_get_touchpad_wakeup_status.str1.4 + 0x0000000000000000 0x55 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .text.esp_sleep_get_touchpad_wakeup_status + 0x0000000000000000 0x31 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .text.esp_sleep_get_ext1_wakeup_status + 0x0000000000000000 0x78 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .text.esp_sleep_pd_config + 0x0000000000000000 0x35 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .text.esp_deep_sleep_disable_rom_logging + 0x0000000000000000 0x18 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .rodata.__func__$9115 + 0x0000000000000000 0x25 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .xt.lit 0x0000000000000000 0xd8 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .xt.prop 0x0000000000000000 0xc00 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .literal.esp_efuse_mac_get_custom + 0x0000000000000000 0x38 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + .literal.esp_derive_local_mac + 0x0000000000000000 0x18 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + .rodata.esp_efuse_mac_get_custom.str1.4 + 0x0000000000000000 0xc4 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + .text.esp_efuse_mac_get_custom + 0x0000000000000000 0x92 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + .text.esp_derive_local_mac + 0x0000000000000000 0x7d esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + .xt.prop 0x0000000000000000 0x2a0 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .text.esp_pm_lock_create + 0x0000000000000000 0x8 esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .text.esp_pm_lock_delete + 0x0000000000000000 0x8 esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .iram1.14 0x0000000000000000 0x8 esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .iram1.15 0x0000000000000000 0x8 esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .text.esp_pm_dump_locks + 0x0000000000000000 0x8 esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .debug_frame 0x0000000000000000 0x88 esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .debug_info 0x0000000000000000 0x4374 esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .debug_abbrev 0x0000000000000000 0x2d3 esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .debug_loc 0x0000000000000000 0xb9 esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .debug_aranges + 0x0000000000000000 0x40 esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .debug_ranges 0x0000000000000000 0x30 esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .debug_line 0x0000000000000000 0x67e esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .debug_str 0x0000000000000000 0x2c1b esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .xt.prop 0x0000000000000000 0xb4 esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .literal.esp_get_minimum_free_heap_size + 0x0000000000000000 0x8 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .text.esp_get_minimum_free_heap_size + 0x0000000000000000 0x10 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .xt.prop 0x0000000000000000 0x1bc esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .text.ets_timer_init + 0x0000000000000000 0x5 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .text.ets_timer_deinit + 0x0000000000000000 0x5 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .xt.prop 0x0000000000000000 0x1c8 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .literal.vEventGroupClearBitsCallback + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .literal.xEventGroupClearBitsFromISR + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .literal.xEventGroupGetBitsFromISR + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .literal.xEventGroupSync + 0x0000000000000000 0x50 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .literal.vEventGroupSetBitsCallback + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .literal.xEventGroupSetBitsFromISR + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.vEventGroupClearBitsCallback + 0x0000000000000000 0xf esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.xEventGroupClearBitsFromISR + 0x0000000000000000 0x16 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.xEventGroupGetBitsFromISR + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.xEventGroupSync + 0x0000000000000000 0xf8 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.vEventGroupSetBitsCallback + 0x0000000000000000 0xf esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.xEventGroupSetBitsFromISR + 0x0000000000000000 0x16 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .text.uxEventGroupGetNumber + 0x0000000000000000 0xe esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.__FUNCTION__$4739 + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .xt.lit 0x0000000000000000 0x58 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .xt.prop 0x0000000000000000 0x4f8 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .literal.esp_console_deinit + 0x0000000000000000 0x14 esp-idf/console/libconsole.a(commands.c.obj) + .text 0x0000000000000000 0x0 esp-idf/console/libconsole.a(commands.c.obj) + .data 0x0000000000000000 0x0 esp-idf/console/libconsole.a(commands.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/console/libconsole.a(commands.c.obj) + .text.esp_console_deinit + 0x0000000000000000 0x60 esp-idf/console/libconsole.a(commands.c.obj) + .xt.lit 0x0000000000000000 0x48 esp-idf/console/libconsole.a(commands.c.obj) + .xt.prop 0x0000000000000000 0x48c esp-idf/console/libconsole.a(commands.c.obj) + .text 0x0000000000000000 0x0 esp-idf/console/libconsole.a(split_argv.c.obj) + .data 0x0000000000000000 0x0 esp-idf/console/libconsole.a(split_argv.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/console/libconsole.a(split_argv.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/console/libconsole.a(split_argv.c.obj) + .xt.prop 0x0000000000000000 0x168 esp-idf/console/libconsole.a(split_argv.c.obj) + .literal.conv_num + 0x0000000000000000 0x4 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.arg_strncasecmp + 0x0000000000000000 0x10 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.arg_strcasecmp + 0x0000000000000000 0x10 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.trex_matchcclass + 0x0000000000000000 0x44 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.trex_matchclass + 0x0000000000000000 0x1c esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.trex_matchnode + 0x0000000000000000 0x30 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.arg_dbl_scanfn + 0x0000000000000000 0x4 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.arg_extension + 0x0000000000000000 0x10 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.arg_basename + 0x0000000000000000 0x1c esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.arg_file_scanfn + 0x0000000000000000 0x8 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.trex_newnode + 0x0000000000000000 0x4 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.trex_charclass + 0x0000000000000000 0x4 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.trex_error + 0x0000000000000000 0x4 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.trex_escapechar + 0x0000000000000000 0x10 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.trex_charnode + 0x0000000000000000 0x34 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.trex_class + 0x0000000000000000 0x38 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.trex_parsenumber + 0x0000000000000000 0x10 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.trex_expect + 0x0000000000000000 0x8 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.trex_element + 0x0000000000000000 0x54 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.trex_list + 0x0000000000000000 0xc esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.dbg_printf + 0x0000000000000000 0x8 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.arg_daten + 0x0000000000000000 0x18 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.arg_date0 + 0x0000000000000000 0x4 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.arg_date1 + 0x0000000000000000 0x4 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.arg_strptime + 0x0000000000000000 0x9c esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.arg_date_scanfn + 0x0000000000000000 0xc esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.arg_dbln + 0x0000000000000000 0x18 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.arg_dbl0 + 0x0000000000000000 0x4 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.arg_dbl1 + 0x0000000000000000 0x4 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.arg_filen + 0x0000000000000000 0x1c esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.arg_file0 + 0x0000000000000000 0x4 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.arg_file1 + 0x0000000000000000 0x4 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.arg_int1 + 0x0000000000000000 0x4 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.arg_litn + 0x0000000000000000 0x14 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.arg_lit0 + 0x0000000000000000 0x4 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.arg_lit1 + 0x0000000000000000 0x4 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.arg_rem + 0x0000000000000000 0x4 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.trex_free + 0x0000000000000000 0x10 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.trex_compile + 0x0000000000000000 0x30 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.arg_rexn + 0x0000000000000000 0x44 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.arg_rex0 + 0x0000000000000000 0x4 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.arg_rex1 + 0x0000000000000000 0x4 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.trex_match + 0x0000000000000000 0x8 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.arg_rex_scanfn + 0x0000000000000000 0xc esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.trex_searchrange + 0x0000000000000000 0x4 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.trex_search + 0x0000000000000000 0x8 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.arg_date_errorfn + 0x0000000000000000 0x48 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.arg_dbl_errorfn + 0x0000000000000000 0x34 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.arg_file_errorfn + 0x0000000000000000 0x30 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.arg_lit_errorfn + 0x0000000000000000 0x20 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.arg_rex_errorfn + 0x0000000000000000 0x34 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.arg_print_syntaxv + 0x0000000000000000 0x30 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.arg_print_glossary_gnu + 0x0000000000000000 0x30 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.arg_free + 0x0000000000000000 0x4 esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.arg_freetable + 0x0000000000000000 0x4 esp-idf/console/libconsole.a(argtable3.c.obj) + .text 0x0000000000000000 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) + .data 0x0000000000000000 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_date_resetfn + 0x0000000000000000 0x9 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_date_checkfn + 0x0000000000000000 0x15 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.conv_num + 0x0000000000000000 0x85 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_dbl_resetfn + 0x0000000000000000 0x9 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_dbl_checkfn + 0x0000000000000000 0x15 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_file_resetfn + 0x0000000000000000 0x9 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_file_checkfn + 0x0000000000000000 0x15 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_lit_resetfn + 0x0000000000000000 0x9 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_lit_scanfn + 0x0000000000000000 0x18 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_lit_checkfn + 0x0000000000000000 0x15 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_rex_resetfn + 0x0000000000000000 0x9 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_rex_checkfn + 0x0000000000000000 0x15 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_strncasecmp + 0x0000000000000000 0x92 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_strcasecmp + 0x0000000000000000 0x82 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.trex_matchcclass + 0x0000000000000000 0x1ba esp-idf/console/libconsole.a(argtable3.c.obj) + .rodata.trex_matchcclass + 0x0000000000000000 0xe0 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.trex_matchclass + 0x0000000000000000 0x121 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.trex_matchnode + 0x0000000000000000 0x3e8 esp-idf/console/libconsole.a(argtable3.c.obj) + .rodata.trex_matchnode + 0x0000000000000000 0x34 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_dbl_scanfn + 0x0000000000000000 0x46 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_extension + 0x0000000000000000 0x70 esp-idf/console/libconsole.a(argtable3.c.obj) + .rodata.arg_basename.str1.4 + 0x0000000000000000 0x7 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_basename + 0x0000000000000000 0x60 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_file_scanfn + 0x0000000000000000 0x59 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.trex_newnode + 0x0000000000000000 0x59 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.trex_charclass + 0x0000000000000000 0x1b esp-idf/console/libconsole.a(argtable3.c.obj) + .text.trex_error + 0x0000000000000000 0x14 esp-idf/console/libconsole.a(argtable3.c.obj) + .rodata.trex_escapechar.str1.4 + 0x0000000000000000 0x10 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.trex_escapechar + 0x0000000000000000 0x8e esp-idf/console/libconsole.a(argtable3.c.obj) + .rodata.trex_escapechar + 0x0000000000000000 0x44 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.trex_charnode + 0x0000000000000000 0x101 esp-idf/console/libconsole.a(argtable3.c.obj) + .rodata.trex_charnode + 0x0000000000000000 0xe0 esp-idf/console/libconsole.a(argtable3.c.obj) + .rodata.trex_class.str1.4 + 0x0000000000000000 0x57 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.trex_class + 0x0000000000000000 0x133 esp-idf/console/libconsole.a(argtable3.c.obj) + .rodata.trex_parsenumber.str1.4 + 0x0000000000000000 0x1d esp-idf/console/libconsole.a(argtable3.c.obj) + .text.trex_parsenumber + 0x0000000000000000 0x59 esp-idf/console/libconsole.a(argtable3.c.obj) + .rodata.trex_expect.str1.4 + 0x0000000000000000 0xf esp-idf/console/libconsole.a(argtable3.c.obj) + .text.trex_expect + 0x0000000000000000 0x1c esp-idf/console/libconsole.a(argtable3.c.obj) + .rodata.trex_element.str1.4 + 0x0000000000000000 0x20 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.trex_element + 0x0000000000000000 0x219 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.trex_list + 0x0000000000000000 0x72 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.dbg_printf + 0x0000000000000000 0x33 esp-idf/console/libconsole.a(argtable3.c.obj) + .rodata.arg_daten.str1.4 + 0x0000000000000000 0x3 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_daten + 0x0000000000000000 0x60 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_date0 + 0x0000000000000000 0x1c esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_date1 + 0x0000000000000000 0x1c esp-idf/console/libconsole.a(argtable3.c.obj) + .rodata.arg_strptime.str1.4 + 0x0000000000000000 0x3b esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_strptime + 0x0000000000000000 0x5ee esp-idf/console/libconsole.a(argtable3.c.obj) + .rodata.arg_strptime + 0x0000000000000000 0x154 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_date_scanfn + 0x0000000000000000 0x6f esp-idf/console/libconsole.a(argtable3.c.obj) + .rodata.arg_dbln.str1.4 + 0x0000000000000000 0x9 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_dbln + 0x0000000000000000 0x56 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_dbl0 + 0x0000000000000000 0x19 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_dbl1 + 0x0000000000000000 0x19 esp-idf/console/libconsole.a(argtable3.c.obj) + .rodata.arg_filen.str1.4 + 0x0000000000000000 0x7 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_filen + 0x0000000000000000 0x82 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_file0 + 0x0000000000000000 0x19 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_file1 + 0x0000000000000000 0x19 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_int1 + 0x0000000000000000 0x19 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_litn + 0x0000000000000000 0x40 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_lit0 + 0x0000000000000000 0x18 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_lit1 + 0x0000000000000000 0x18 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_rem 0x0000000000000000 0x31 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.trex_free + 0x0000000000000000 0x2e esp-idf/console/libconsole.a(argtable3.c.obj) + .rodata.trex_compile.str1.4 + 0x0000000000000000 0x15 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.trex_compile + 0x0000000000000000 0xb4 esp-idf/console/libconsole.a(argtable3.c.obj) + .rodata.arg_rexn.str1.4 + 0x0000000000000000 0x9f esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_rexn + 0x0000000000000000 0xc7 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_rex0 + 0x0000000000000000 0x1d esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_rex1 + 0x0000000000000000 0x1d esp-idf/console/libconsole.a(argtable3.c.obj) + .text.trex_match + 0x0000000000000000 0x36 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_rex_scanfn + 0x0000000000000000 0x5c esp-idf/console/libconsole.a(argtable3.c.obj) + .text.trex_searchrange + 0x0000000000000000 0x72 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.trex_search + 0x0000000000000000 0x20 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.trex_getsubexpcount + 0x0000000000000000 0x7 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.trex_getsubexp + 0x0000000000000000 0x29 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_date_errorfn + 0x0000000000000000 0xcf esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_dbl_errorfn + 0x0000000000000000 0x8c esp-idf/console/libconsole.a(argtable3.c.obj) + .rodata.arg_file_errorfn.str1.4 + 0x0000000000000000 0x17 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_file_errorfn + 0x0000000000000000 0x7b esp-idf/console/libconsole.a(argtable3.c.obj) + .rodata.arg_lit_errorfn.str1.4 + 0x0000000000000000 0x2b esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_lit_errorfn + 0x0000000000000000 0x60 esp-idf/console/libconsole.a(argtable3.c.obj) + .rodata.arg_rex_errorfn.str1.4 + 0x0000000000000000 0x10 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_rex_errorfn + 0x0000000000000000 0x8f esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_print_syntaxv + 0x0000000000000000 0xbc esp-idf/console/libconsole.a(argtable3.c.obj) + .rodata.arg_print_glossary_gnu.str1.4 + 0x0000000000000000 0x15 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_print_glossary_gnu + 0x0000000000000000 0xbc esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_nullcheck + 0x0000000000000000 0x28 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_free + 0x0000000000000000 0x23 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_freetable + 0x0000000000000000 0x23 esp-idf/console/libconsole.a(argtable3.c.obj) + .rodata.str1.4 + 0x0000000000000000 0xf5 esp-idf/console/libconsole.a(argtable3.c.obj) + .rodata.abmon 0x0000000000000000 0x30 esp-idf/console/libconsole.a(argtable3.c.obj) + .rodata.mon 0x0000000000000000 0x30 esp-idf/console/libconsole.a(argtable3.c.obj) + .rodata.abday 0x0000000000000000 0x1c esp-idf/console/libconsole.a(argtable3.c.obj) + .rodata.day 0x0000000000000000 0x1c esp-idf/console/libconsole.a(argtable3.c.obj) + .xt.lit 0x0000000000000000 0x290 esp-idf/console/libconsole.a(argtable3.c.obj) + .xt.prop 0x0000000000000000 0x393c esp-idf/console/libconsole.a(argtable3.c.obj) + .literal.linenoiseSetFreeHintsCallback + 0x0000000000000000 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + .literal.linenoiseHistoryFree + 0x0000000000000000 0x10 esp-idf/console/libconsole.a(linenoise.c.obj) + .text 0x0000000000000000 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + .data 0x0000000000000000 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + .text.linenoiseSetFreeHintsCallback + 0x0000000000000000 0xa esp-idf/console/libconsole.a(linenoise.c.obj) + .text.linenoiseHistoryFree + 0x0000000000000000 0x3d esp-idf/console/libconsole.a(linenoise.c.obj) + .xt.lit 0x0000000000000000 0x138 esp-idf/console/libconsole.a(linenoise.c.obj) + .xt.prop 0x0000000000000000 0x11d0 esp-idf/console/libconsole.a(linenoise.c.obj) + .literal.httpd_resp_set_hdr + 0x0000000000000000 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .text.httpd_send + 0x0000000000000000 0x39 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .text.httpd_resp_set_hdr + 0x0000000000000000 0x65 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .text.httpd_register_err_handler + 0x0000000000000000 0x35 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .text.httpd_req_to_sockfd + 0x0000000000000000 0x13 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .xt.lit 0x0000000000000000 0x80 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .xt.prop 0x0000000000000000 0xa50 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .literal.httpd_uri_match_wildcard + 0x0000000000000000 0xc esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .literal.httpd_unregister_uri_handler + 0x0000000000000000 0x24 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .literal.httpd_unregister_uri + 0x0000000000000000 0x20 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .text.httpd_uri_match_wildcard + 0x0000000000000000 0x118 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .rodata.httpd_unregister_uri_handler.str1.4 + 0x0000000000000000 0x3f esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .text.httpd_unregister_uri_handler + 0x0000000000000000 0xd9 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .rodata.httpd_unregister_uri.str1.4 + 0x0000000000000000 0x37 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .text.httpd_unregister_uri + 0x0000000000000000 0xdd esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .rodata.__func__$7426 + 0x0000000000000000 0x15 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .rodata.__func__$7411 + 0x0000000000000000 0x1d esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .xt.lit 0x0000000000000000 0x40 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .xt.prop 0x0000000000000000 0x5a0 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .literal.httpd_sess_get_ctx + 0x0000000000000000 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .literal.httpd_sess_set_ctx + 0x0000000000000000 0xc esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .literal.httpd_sess_update_lru_counter + 0x0000000000000000 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .text.httpd_sess_get_ctx + 0x0000000000000000 0x25 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .text.httpd_sess_set_ctx + 0x0000000000000000 0x4a esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .text.httpd_sess_update_lru_counter + 0x0000000000000000 0x59 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .xt.lit 0x0000000000000000 0x78 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .xt.prop 0x0000000000000000 0x81c esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .text.httpd_get_global_user_ctx + 0x0000000000000000 0x7 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .xt.lit 0x0000000000000000 0x58 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .xt.prop 0x0000000000000000 0x63c esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .literal.httpd_validate_req_ptr + 0x0000000000000000 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .literal.httpd_query_key_value + 0x0000000000000000 0x20 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .literal.httpd_req_get_url_query_str + 0x0000000000000000 0x8 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .literal.httpd_req_get_hdr_value_len + 0x0000000000000000 0x14 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .literal.httpd_req_get_hdr_value_str + 0x0000000000000000 0x1c esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .text.httpd_validate_req_ptr + 0x0000000000000000 0x2a esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .text.httpd_query_key_value + 0x0000000000000000 0xc5 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .text.httpd_req_get_url_query_len + 0x0000000000000000 0x24 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .text.httpd_req_get_url_query_str + 0x0000000000000000 0x5a esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .text.httpd_req_get_hdr_value_len + 0x0000000000000000 0x9e esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .text.httpd_req_get_hdr_value_str + 0x0000000000000000 0xc5 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .xt.lit 0x0000000000000000 0xb8 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .xt.prop 0x0000000000000000 0xc54 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .literal.cs_recv_from_ctrl_sock + 0x0000000000000000 0x4 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .text.cs_recv_from_ctrl_sock + 0x0000000000000000 0x1e esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .xt.lit 0x0000000000000000 0x20 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .xt.prop 0x0000000000000000 0xfc esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + .xt.lit 0x0000000000000000 0x48 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + .xt.prop 0x0000000000000000 0x30c esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + .literal.esp_vfs_fat_spiflash_unmount + 0x0000000000000000 0x18 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + .literal.esp_vfs_fat_rawflash_mount + 0x0000000000000000 0x44 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + .literal.esp_vfs_fat_rawflash_unmount + 0x0000000000000000 0x24 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + .text 0x0000000000000000 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + .data 0x0000000000000000 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + .text.esp_vfs_fat_spiflash_unmount + 0x0000000000000000 0x64 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + .rodata.esp_vfs_fat_rawflash_mount.str1.4 + 0x0000000000000000 0x57 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + .text.esp_vfs_fat_rawflash_mount + 0x0000000000000000 0xf2 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + .text.esp_vfs_fat_rawflash_unmount + 0x0000000000000000 0x7a esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + .xt.lit 0x0000000000000000 0x20 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + .xt.prop 0x0000000000000000 0x294 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + .text 0x0000000000000000 0x0 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + .data 0x0000000000000000 0x0 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + .xt.lit 0x0000000000000000 0x40 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + .xt.prop 0x0000000000000000 0x1f8 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + .literal.ff_raw_ioctl + 0x0000000000000000 0x18 esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + .literal.ff_raw_read + 0x0000000000000000 0x28 esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + .literal.ff_diskio_register_raw_partition + 0x0000000000000000 0xc esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + .literal.ff_diskio_get_pdrv_raw + 0x0000000000000000 0x4 esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + .text 0x0000000000000000 0x0 esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + .data 0x0000000000000000 0x0 esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + .text.ff_raw_initialize + 0x0000000000000000 0x7 esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + .text.ff_raw_status + 0x0000000000000000 0x7 esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + .text.ff_raw_write + 0x0000000000000000 0x7 esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + .rodata.ff_raw_ioctl.str1.4 + 0x0000000000000000 0x4c esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + .text.ff_raw_ioctl + 0x0000000000000000 0x54 esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + .rodata.ff_raw_read.str1.4 + 0x0000000000000000 0x48 esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + .text.ff_raw_read + 0x0000000000000000 0x59 esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + .text.ff_diskio_register_raw_partition + 0x0000000000000000 0x29 esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + .text.ff_diskio_get_pdrv_raw + 0x0000000000000000 0x26 esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + .rodata.raw_impl$5446 + 0x0000000000000000 0x14 esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + .rodata.__func__$5437 + 0x0000000000000000 0xd esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + .rodata.__func__$5423 + 0x0000000000000000 0xc esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + .debug_frame 0x0000000000000000 0xb8 esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + .debug_info 0x0000000000000000 0x1f40 esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + .debug_abbrev 0x0000000000000000 0x2b3 esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + .debug_loc 0x0000000000000000 0x207 esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + .debug_aranges + 0x0000000000000000 0x50 esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + .debug_ranges 0x0000000000000000 0x40 esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + .debug_line 0x0000000000000000 0x8ae esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + .debug_str 0x0000000000000000 0x1bfd esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + .xt.lit 0x0000000000000000 0x20 esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + .xt.prop 0x0000000000000000 0x210 esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + COMMON 0x0000000000000000 0x8 esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + .literal.ff_diskio_get_pdrv_wl + 0x0000000000000000 0x4 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + .literal.ff_diskio_clear_pdrv_wl + 0x0000000000000000 0x4 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + .text 0x0000000000000000 0x0 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + .data 0x0000000000000000 0x0 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + .text.ff_diskio_get_pdrv_wl + 0x0000000000000000 0x26 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + .text.ff_diskio_clear_pdrv_wl + 0x0000000000000000 0x25 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + .xt.prop 0x0000000000000000 0x2c4 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + .literal.f_getfree + 0x0000000000000000 0x1c esp-idf/fatfs/libfatfs.a(ff.c.obj) + .literal.f_chmod + 0x0000000000000000 0x10 esp-idf/fatfs/libfatfs.a(ff.c.obj) + .literal.f_fdisk + 0x0000000000000000 0x34 esp-idf/fatfs/libfatfs.a(ff.c.obj) + .text 0x0000000000000000 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + .data 0x0000000000000000 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + .text.f_getfree + 0x0000000000000000 0xde esp-idf/fatfs/libfatfs.a(ff.c.obj) + .text.f_chmod 0x0000000000000000 0x74 esp-idf/fatfs/libfatfs.a(ff.c.obj) + .text.f_fdisk 0x0000000000000000 0x188 esp-idf/fatfs/libfatfs.a(ff.c.obj) + .xt.lit 0x0000000000000000 0x168 esp-idf/fatfs/libfatfs.a(ff.c.obj) + .xt.prop 0x0000000000000000 0x2c10 esp-idf/fatfs/libfatfs.a(ff.c.obj) + .literal.ff_memfree + 0x0000000000000000 0x4 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + .text 0x0000000000000000 0x0 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + .data 0x0000000000000000 0x0 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + .text.ff_memfree + 0x0000000000000000 0xe esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + .xt.prop 0x0000000000000000 0x120 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + .text 0x0000000000000000 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + .data 0x0000000000000000 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + .xt.lit 0x0000000000000000 0x108 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + .xt.prop 0x0000000000000000 0xf24 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + .literal.wl_unmount + 0x0000000000000000 0x28 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + .text.wl_unmount + 0x0000000000000000 0x75 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + .rodata._ZZ10wl_unmountE8__func__ + 0x0000000000000000 0xb esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + .xt.lit 0x0000000000000000 0x40 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + .xt.prop 0x0000000000000000 0x360 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + .group 0x0000000000000000 0x10 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + .xt.lit 0x0000000000000000 0x38 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + .xt.prop 0x0000000000000000 0x1a4 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + .group 0x0000000000000000 0x14 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + .text._ZN8WL_Flash7get_drvEv + 0x0000000000000000 0x8 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + .text._ZN8WL_Flash7get_cfgEv + 0x0000000000000000 0x8 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + .xt.lit 0x0000000000000000 0x88 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + .xt.prop 0x0000000000000000 0xca8 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) + .xt.prop 0x0000000000000000 0x30 esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(select.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(select.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(select.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/newlib/libnewlib.a(select.c.obj) + .xt.prop 0x0000000000000000 0x30 esp-idf/newlib/libnewlib.a(select.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .xt.lit 0x0000000000000000 0x20 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .xt.prop 0x0000000000000000 0x1ec esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .literal.rtcio_hal_set_direction + 0x0000000000000000 0x44 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .literal.rtcio_hal_set_direction_in_sleep + 0x0000000000000000 0x60 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .text.rtcio_hal_set_direction + 0x0000000000000000 0x34f esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .rodata.rtcio_hal_set_direction + 0x0000000000000000 0x18 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .rodata.rtcio_hal_set_direction_in_sleep.str1.4 + 0x0000000000000000 0x172 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .text.rtcio_hal_set_direction_in_sleep + 0x0000000000000000 0x385 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .rodata.__func__$3544 + 0x0000000000000000 0x1f esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .rodata.__func__$3516 + 0x0000000000000000 0x21 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .rodata.__func__$3530 + 0x0000000000000000 0x20 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .rodata.__func__$3537 + 0x0000000000000000 0x1e esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .rodata.__func__$3509 + 0x0000000000000000 0x20 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .rodata.__func__$3523 + 0x0000000000000000 0x1f esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .rodata.__func__$3414 + 0x0000000000000000 0x16 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .xt.prop 0x0000000000000000 0x204 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .literal.gpio_hal_intr_enable_on_core + 0x0000000000000000 0xc esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .literal.gpio_hal_intr_disable + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .text.gpio_hal_intr_enable_on_core + 0x0000000000000000 0x84 esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .text.gpio_hal_intr_disable + 0x0000000000000000 0x5b esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .debug_frame 0x0000000000000000 0x40 esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .debug_info 0x0000000000000000 0x163d esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .debug_abbrev 0x0000000000000000 0x2c9 esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .debug_loc 0x0000000000000000 0x28e esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .debug_aranges + 0x0000000000000000 0x28 esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .debug_ranges 0x0000000000000000 0x18 esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .debug_line 0x0000000000000000 0x5d8 esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .debug_str 0x0000000000000000 0xb12 esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .xt.prop 0x0000000000000000 0xa8 esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .literal.uart_hal_set_sw_flow_ctrl + 0x0000000000000000 0xc esp-idf/soc/libsoc.a(uart_hal.c.obj) + .literal.uart_hal_set_at_cmd_char + 0x0000000000000000 0xc esp-idf/soc/libsoc.a(uart_hal.c.obj) + .literal.uart_hal_set_mode + 0x0000000000000000 0x8 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .literal.uart_hal_inverse_signal + 0x0000000000000000 0x20 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .literal.uart_hal_set_loop_back + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .text.uart_hal_get_hw_flow_ctrl + 0x0000000000000000 0x28 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .text.uart_hal_set_sw_flow_ctrl + 0x0000000000000000 0xb2 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .text.uart_hal_set_at_cmd_char + 0x0000000000000000 0x87 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .text.uart_hal_set_dtr + 0x0000000000000000 0x20 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .text.uart_hal_get_wakeup_thrd + 0x0000000000000000 0x13 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .text.uart_hal_set_mode + 0x0000000000000000 0x1bd esp-idf/soc/libsoc.a(uart_hal.c.obj) + .text.uart_hal_is_hw_rts_en + 0x0000000000000000 0xf esp-idf/soc/libsoc.a(uart_hal.c.obj) + .text.uart_hal_inverse_signal + 0x0000000000000000 0x13b esp-idf/soc/libsoc.a(uart_hal.c.obj) + .text.uart_hal_set_loop_back + 0x0000000000000000 0x20 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .xt.lit 0x0000000000000000 0x60 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .xt.prop 0x0000000000000000 0x588 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .literal.uart_hal_txfifo_rst + 0x0000000000000000 0x8 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .text.uart_hal_txfifo_rst + 0x0000000000000000 0x27 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .xt.prop 0x0000000000000000 0x234 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .data.__compound_literal$5 + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .data.__compound_literal$4 + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .data.__compound_literal$3 + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .data.__compound_literal$2 + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .data.__compound_literal$1 + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .data.__compound_literal$0 + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .xt.prop 0x0000000000000000 0x1d4 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .xt.lit 0x0000000000000000 0x48 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .xt.prop 0x0000000000000000 0x3c0 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + .xt.lit 0x0000000000000000 0x20 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + .xt.prop 0x0000000000000000 0x2c4 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + .rodata.soc_memory_type_count + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + .xt.prop 0x0000000000000000 0x84 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .rodata.GPIO_HOLD_MASK + 0x0000000000000000 0xa0 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .xt.prop 0x0000000000000000 0x18 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + .xt.prop 0x0000000000000000 0x18 esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + .rodata.spi_periph_signal + 0x0000000000000000 0x6c esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + .debug_info 0x0000000000000000 0x30c0 esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + .debug_abbrev 0x0000000000000000 0x255 esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + .debug_aranges + 0x0000000000000000 0x18 esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + .debug_line 0x0000000000000000 0x33e esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + .debug_str 0x0000000000000000 0x1f2e esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + .xt.prop 0x0000000000000000 0xc esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) + .xt.prop 0x0000000000000000 0xc esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .xt.prop 0x0000000000000000 0x138 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .rodata._g_esp_netif_inherent_ppp_config + 0x0000000000000000 0x24 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .rodata._g_esp_netif_inherent_eth_config + 0x0000000000000000 0x24 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .xt.prop 0x0000000000000000 0x3c esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .data._g_esp_netif_netstack_default_ppp + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .data._g_esp_netif_netstack_default_eth + 0x0000000000000000 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .rodata.s_netif_config_ppp + 0x0000000000000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .rodata.s_eth_netif_config + 0x0000000000000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .xt.prop 0x0000000000000000 0x60 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .literal.eth_stack_input + 0x0000000000000000 0x4 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .literal.eth_on_state_changed + 0x0000000000000000 0x78 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .literal.esp_eth_driver_install + 0x0000000000000000 0xa4 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .literal.esp_eth_driver_uninstall + 0x0000000000000000 0x4c esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .literal.esp_eth_start + 0x0000000000000000 0x58 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .literal.esp_eth_stop + 0x0000000000000000 0x44 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .literal.esp_eth_update_input_path + 0x0000000000000000 0x14 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .literal.esp_eth_transmit + 0x0000000000000000 0x2c esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .literal.esp_eth_receive + 0x0000000000000000 0x2c esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .literal.esp_eth_ioctl + 0x0000000000000000 0x9c esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .literal.esp_eth_increase_reference + 0x0000000000000000 0x14 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .literal.esp_eth_decrease_reference + 0x0000000000000000 0x14 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .literal.eth_check_link_timer_cb + 0x0000000000000000 0xc esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .text.eth_phy_reg_read + 0x0000000000000000 0x14 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .text.eth_phy_reg_write + 0x0000000000000000 0x14 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .text.eth_stack_input + 0x0000000000000000 0x24 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .rodata.eth_on_state_changed.str1.4 + 0x0000000000000000 0x212 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .text.eth_on_state_changed + 0x0000000000000000 0x1e4 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .rodata.eth_on_state_changed + 0x0000000000000000 0x14 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .rodata.esp_eth_driver_install.str1.4 + 0x0000000000000000 0x220 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .text.esp_eth_driver_install + 0x0000000000000000 0x250 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .rodata.esp_eth_driver_uninstall.str1.4 + 0x0000000000000000 0x131 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .text.esp_eth_driver_uninstall + 0x0000000000000000 0x111 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .rodata.esp_eth_start.str1.4 + 0x0000000000000000 0xe2 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .text.esp_eth_start + 0x0000000000000000 0x11c esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .rodata.esp_eth_stop.str1.4 + 0x0000000000000000 0xb2 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .text.esp_eth_stop + 0x0000000000000000 0xd2 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .text.esp_eth_update_input_path + 0x0000000000000000 0x34 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .rodata.esp_eth_transmit.str1.4 + 0x0000000000000000 0x70 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .text.esp_eth_transmit + 0x0000000000000000 0x8d esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .rodata.esp_eth_receive.str1.4 + 0x0000000000000000 0x7c esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .text.esp_eth_receive + 0x0000000000000000 0xa9 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .rodata.esp_eth_ioctl.str1.4 + 0x0000000000000000 0x276 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .text.esp_eth_ioctl + 0x0000000000000000 0x252 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .rodata.esp_eth_ioctl + 0x0000000000000000 0x18 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .text.esp_eth_increase_reference + 0x0000000000000000 0x4b esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .text.esp_eth_decrease_reference + 0x0000000000000000 0x4b esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .text.eth_check_link_timer_cb + 0x0000000000000000 0x27 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .rodata.__FUNCTION__$8418 + 0x0000000000000000 0x1b esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .rodata.__FUNCTION__$8411 + 0x0000000000000000 0x1b esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .rodata.__FUNCTION__$8394 + 0x0000000000000000 0xe esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .rodata.__FUNCTION__$8384 + 0x0000000000000000 0x10 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .rodata.__FUNCTION__$8374 + 0x0000000000000000 0x11 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .rodata.__FUNCTION__$8365 + 0x0000000000000000 0x1a esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .rodata.__FUNCTION__$8352 + 0x0000000000000000 0xd esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .rodata.__FUNCTION__$8344 + 0x0000000000000000 0xe esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .rodata.__FUNCTION__$8332 + 0x0000000000000000 0x19 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .rodata.__FUNCTION__$8292 + 0x0000000000000000 0x15 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .rodata.__FUNCTION__$8313 + 0x0000000000000000 0x17 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .rodata.str1.4 + 0x0000000000000000 0xa esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .data.ETH_EVENT + 0x0000000000000000 0x4 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .debug_frame 0x0000000000000000 0x178 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .debug_info 0x0000000000000000 0x61fc esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .debug_abbrev 0x0000000000000000 0x4df esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .debug_loc 0x0000000000000000 0x17b7 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .debug_aranges + 0x0000000000000000 0x90 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .debug_ranges 0x0000000000000000 0x80 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .debug_line 0x0000000000000000 0x25d2 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .debug_str 0x0000000000000000 0x366e esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .xt.lit 0x0000000000000000 0x68 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .xt.prop 0x0000000000000000 0x900 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .literal.tcpip_adapter_compat_start_netif + 0x0000000000000000 0x10 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_init + 0x0000000000000000 0x18 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_clear_default_eth_handlers + 0x0000000000000000 0x10 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_set_default_eth_handlers + 0x0000000000000000 0x18 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_compat_start_eth + 0x0000000000000000 0x18 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_eth_input + 0x0000000000000000 0x10 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_sta_input + 0x0000000000000000 0x1c esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_ap_input + 0x0000000000000000 0x1c esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_if_from_esp_netif + 0x0000000000000000 0x4 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_get_ip_info + 0x0000000000000000 0x2c esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_get_ip6_linklocal + 0x0000000000000000 0x2c esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_get_ip6_global + 0x0000000000000000 0x2c esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_dhcpc_get_status + 0x0000000000000000 0x2c esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_is_netif_up + 0x0000000000000000 0x2c esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_get_netif + 0x0000000000000000 0x2c esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_create_ip6_linklocal + 0x0000000000000000 0x2c esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_dhcps_stop + 0x0000000000000000 0x2c esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_dhcpc_stop + 0x0000000000000000 0x2c esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_dhcps_start + 0x0000000000000000 0x2c esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_dhcpc_start + 0x0000000000000000 0x2c esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_dhcps_get_status + 0x0000000000000000 0x2c esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_dhcps_option + 0x0000000000000000 0xc esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_dhcpc_option + 0x0000000000000000 0x1c esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_set_ip_info + 0x0000000000000000 0x2c esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_get_dns_info + 0x0000000000000000 0x2c esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_set_dns_info + 0x0000000000000000 0x2c esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_get_netif_index + 0x0000000000000000 0x2c esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_get_sta_list + 0x0000000000000000 0x4 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_eth_start + 0x0000000000000000 0x10 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_sta_start + 0x0000000000000000 0x1c esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_ap_start + 0x0000000000000000 0x1c esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_stop + 0x0000000000000000 0x44 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_up + 0x0000000000000000 0x2c esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_down + 0x0000000000000000 0x2c esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_get_old_ip_info + 0x0000000000000000 0x2c esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_set_old_ip_info + 0x0000000000000000 0x2c esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_get_esp_if + 0x0000000000000000 0x8 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_set_hostname + 0x0000000000000000 0x2c esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.tcpip_adapter_get_hostname + 0x0000000000000000 0x2c esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text 0x0000000000000000 0x0 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .data 0x0000000000000000 0x0 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_compat_start_netif + 0x0000000000000000 0x51 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .rodata.tcpip_adapter_init.str1.4 + 0x0000000000000000 0x7b esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_init + 0x0000000000000000 0x32 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .rodata.tcpip_adapter_clear_default_eth_handlers.str1.4 + 0x0000000000000000 0x8 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_clear_default_eth_handlers + 0x0000000000000000 0x28 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_set_default_eth_handlers + 0x0000000000000000 0x39 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_compat_start_eth + 0x0000000000000000 0x3e esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_eth_input + 0x0000000000000000 0x32 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .rodata.tcpip_adapter_sta_input.str1.4 + 0x0000000000000000 0xd esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_sta_input + 0x0000000000000000 0x58 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .rodata.tcpip_adapter_ap_input.str1.4 + 0x0000000000000000 0xc esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_ap_input + 0x0000000000000000 0x58 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_if_from_esp_netif + 0x0000000000000000 0x23 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_get_ip_info + 0x0000000000000000 0xa4 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_get_ip6_linklocal + 0x0000000000000000 0xa4 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_get_ip6_global + 0x0000000000000000 0xa4 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_dhcpc_get_status + 0x0000000000000000 0xa4 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_is_netif_up + 0x0000000000000000 0xa1 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_get_netif + 0x0000000000000000 0xad esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_create_ip6_linklocal + 0x0000000000000000 0xa1 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_dhcps_stop + 0x0000000000000000 0xa1 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_dhcpc_stop + 0x0000000000000000 0xa1 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_dhcps_start + 0x0000000000000000 0xa1 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_dhcpc_start + 0x0000000000000000 0xa1 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_dhcps_get_status + 0x0000000000000000 0xa4 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_dhcps_option + 0x0000000000000000 0x1e esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_dhcpc_option + 0x0000000000000000 0x58 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_set_ip_info + 0x0000000000000000 0xa4 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_get_dns_info + 0x0000000000000000 0xa5 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_set_dns_info + 0x0000000000000000 0xa5 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_get_netif_index + 0x0000000000000000 0xa1 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_get_sta_list + 0x0000000000000000 0x11 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_eth_start + 0x0000000000000000 0x2c esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_sta_start + 0x0000000000000000 0x54 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_ap_start + 0x0000000000000000 0x54 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_stop + 0x0000000000000000 0x142 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_up + 0x0000000000000000 0xa1 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_down + 0x0000000000000000 0xa1 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_get_old_ip_info + 0x0000000000000000 0xa4 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_set_old_ip_info + 0x0000000000000000 0xa4 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_get_esp_if + 0x0000000000000000 0x27 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_set_hostname + 0x0000000000000000 0xa4 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .text.tcpip_adapter_get_hostname + 0x0000000000000000 0xa4 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .rodata.s_netif_keyif + 0x0000000000000000 0x10 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .xt.lit 0x0000000000000000 0x158 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .xt.prop 0x0000000000000000 0xed0 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .literal.mbedtls_mpi_read_file + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_is_prime + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_self_test + 0x0000000000000000 0x118 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_read_file + 0x0000000000000000 0xad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_is_prime + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .rodata.mbedtls_mpi_self_test.str1.4 + 0x0000000000000000 0x46a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_self_test + 0x0000000000000000 0x313 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .rodata.gcd_pairs + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .xt.lit 0x0000000000000000 0x180 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .xt.prop 0x0000000000000000 0x1efc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.ctr_drbg_self_test_entropy + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .literal.mbedtls_ctr_drbg_update_ret + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .literal.mbedtls_ctr_drbg_update + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .literal.mbedtls_ctr_drbg_write_seed_file + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .literal.mbedtls_ctr_drbg_update_seed_file + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .literal.mbedtls_ctr_drbg_self_test + 0x0000000000000000 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.ctr_drbg_self_test_entropy + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_set_prediction_resistance + 0x0000000000000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_set_entropy_len + 0x0000000000000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_set_reseed_interval + 0x0000000000000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_update_ret + 0x0000000000000000 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_update + 0x0000000000000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.mbedtls_ctr_drbg_write_seed_file.str1.4 + 0x0000000000000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_write_seed_file + 0x0000000000000000 0x55 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.mbedtls_ctr_drbg_update_seed_file.str1.4 + 0x0000000000000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_update_seed_file + 0x0000000000000000 0x96 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.mbedtls_ctr_drbg_self_test.str1.4 + 0x0000000000000000 0x46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_self_test + 0x0000000000000000 0x1b2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .bss.test_offset + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.result_nopr + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.result_pr + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.nonce_pers_nopr + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.nonce_pers_pr + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.entropy_source_nopr + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .rodata.entropy_source_pr + 0x0000000000000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .xt.lit 0x0000000000000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .xt.prop 0x0000000000000000 0x7ec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .literal.mbedtls_ecp_point_read_string + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_tls_read_group + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_self_test + 0x0000000000000000 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_point_read_string + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_tls_read_group + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.mbedtls_ecp_self_test.str1.4 + 0x0000000000000000 0x1dd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.mbedtls_ecp_self_test + 0x0000000000000000 0x294 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .xt.lit 0x0000000000000000 0x1c8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .xt.prop 0x0000000000000000 0x1d04 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .xt.lit 0x0000000000000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .xt.prop 0x0000000000000000 0x1584 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .literal.entropy_dummy_source + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_source_self_test_gather + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_update_manual + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_gather + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_write_seed_file + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_update_seed_file + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_source_self_test + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .literal.mbedtls_entropy_self_test + 0x0000000000000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_source_self_test_check_bits + 0x0000000000000000 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.entropy_dummy_source + 0x0000000000000000 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_source_self_test_gather + 0x0000000000000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_update_manual + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_gather + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .rodata.mbedtls_entropy_write_seed_file.str1.4 + 0x0000000000000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_write_seed_file + 0x0000000000000000 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .rodata.mbedtls_entropy_update_seed_file.str1.4 + 0x0000000000000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_update_seed_file + 0x0000000000000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .rodata.mbedtls_entropy_source_self_test.str1.4 + 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_source_self_test + 0x0000000000000000 0x96 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .rodata.mbedtls_entropy_self_test.str1.4 + 0x0000000000000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text.mbedtls_entropy_self_test + 0x0000000000000000 0x10e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .xt.lit 0x0000000000000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .xt.prop 0x0000000000000000 0x594 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) + .xt.prop 0x0000000000000000 0xa08 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) + .literal.mbedtls_md_list + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_info_from_string + 0x0000000000000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_clone + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_init_ctx + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_file + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_hmac + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_list + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.mbedtls_md_info_from_string.str1.4 + 0x0000000000000000 0x2f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_info_from_string + 0x0000000000000000 0xc1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_clone + 0x0000000000000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_init_ctx + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.mbedtls_md_file.str1.4 + 0x0000000000000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_file + 0x0000000000000000 0xaa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_hmac + 0x0000000000000000 0x5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_get_type + 0x0000000000000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text.mbedtls_md_get_name + 0x0000000000000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.supported_digests + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .xt.lit 0x0000000000000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .xt.prop 0x0000000000000000 0x96c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + .xt.lit 0x0000000000000000 0x110 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + .xt.prop 0x0000000000000000 0x6d8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + .literal.mbedtls_pk_setup_rsa_alt + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_debug + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_get_name + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_setup_rsa_alt + 0x0000000000000000 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_debug + 0x0000000000000000 0x23 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .rodata.mbedtls_pk_get_name.str1.4 + 0x0000000000000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .text.mbedtls_pk_get_name + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .xt.lit 0x0000000000000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .xt.prop 0x0000000000000000 0x798 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.rsa_alt_decrypt_wrap + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.rsa_alt_free_wrap + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.rsa_alt_alloc_wrap + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.rsa_alt_check_pair + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_can_do + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_get_bitlen + 0x0000000000000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_sign_wrap + 0x0000000000000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_decrypt_wrap + 0x0000000000000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_free_wrap + 0x0000000000000000 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_alloc_wrap + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .text.rsa_alt_check_pair + 0x0000000000000000 0x7d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .rodata.mbedtls_rsa_alt_info + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .xt.lit 0x0000000000000000 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .xt.prop 0x0000000000000000 0x6d8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.mbedtls_pkcs5_self_test + 0x0000000000000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.mbedtls_pkcs5_self_test.str1.4 + 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .text.mbedtls_pkcs5_self_test + 0x0000000000000000 0xe1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.result_key + 0x0000000000000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.key_len + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.it_cnt + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.salt 0x0000000000000000 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.slen 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.password + 0x0000000000000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .rodata.plen 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .xt.lit 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .xt.prop 0x0000000000000000 0x3f0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .literal.mbedtls_pk_parse_public_key + 0x0000000000000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.mbedtls_pk_parse_public_keyfile + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .rodata.mbedtls_pk_parse_public_key.str1.4 + 0x0000000000000000 0x77 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.mbedtls_pk_parse_public_key + 0x0000000000000000 0x16a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .text.mbedtls_pk_parse_public_keyfile + 0x0000000000000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .xt.lit 0x0000000000000000 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .xt.prop 0x0000000000000000 0xe88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .literal.mbedtls_pk_write_pubkey_pem + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .rodata.mbedtls_pk_write_pubkey_pem.str1.4 + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .text.mbedtls_pk_write_pubkey_pem + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .xt.lit 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .xt.prop 0x0000000000000000 0x354 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .literal.mbedtls_platform_set_calloc_free + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .text.mbedtls_platform_set_calloc_free + 0x0000000000000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .text.mbedtls_platform_setup + 0x0000000000000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .text.mbedtls_platform_teardown + 0x0000000000000000 0x5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .xt.prop 0x0000000000000000 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .xt.prop 0x0000000000000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .literal.myrand + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_import + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_export_raw + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_copy + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .literal.mbedtls_rsa_self_test + 0x0000000000000000 0xd4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.myrand 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_import + 0x0000000000000000 0x75 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_export_raw + 0x0000000000000000 0xe4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_copy + 0x0000000000000000 0x106 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .rodata.mbedtls_rsa_self_test.str1.4 + 0x0000000000000000 0x3b6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .rodata 0x0000000000000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text.mbedtls_rsa_self_test + 0x0000000000000000 0x31d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .xt.lit 0x0000000000000000 0x120 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .xt.prop 0x0000000000000000 0x1a28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + .xt.prop 0x0000000000000000 0x474 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + .literal.mbedtls_sha1 + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .literal.mbedtls_sha1_self_test + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .text.mbedtls_sha1 + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .rodata.mbedtls_sha1_self_test.str1.4 + 0x0000000000000000 0x23 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .text.mbedtls_sha1_self_test + 0x0000000000000000 0x10a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .rodata.sha1_test_sum + 0x0000000000000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .rodata.sha1_test_buflen + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .rodata.sha1_test_buf + 0x0000000000000000 0xab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .xt.prop 0x0000000000000000 0x168 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .literal.mbedtls_sha256 + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .literal.mbedtls_sha256_self_test + 0x0000000000000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .text.mbedtls_sha256 + 0x0000000000000000 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .rodata.mbedtls_sha256_self_test.str1.4 + 0x0000000000000000 0x3f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .text.mbedtls_sha256_self_test + 0x0000000000000000 0x151 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .rodata.sha256_test_sum + 0x0000000000000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .rodata.sha256_test_buflen + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .rodata.sha256_test_buf + 0x0000000000000000 0xab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .xt.prop 0x0000000000000000 0x198 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .literal.mbedtls_sha512 + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .literal.mbedtls_sha512_self_test + 0x0000000000000000 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .text.mbedtls_sha512 + 0x0000000000000000 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .rodata.mbedtls_sha512_self_test.str1.4 + 0x0000000000000000 0x3f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .text.mbedtls_sha512_self_test + 0x0000000000000000 0x151 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .rodata.sha512_test_sum + 0x0000000000000000 0x180 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .rodata.sha512_test_buflen + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .rodata.sha512_test_buf + 0x0000000000000000 0x153 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .xt.prop 0x0000000000000000 0x198 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .xt.prop 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .xt.prop 0x0000000000000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .literal.mbedtls_sha1_starts + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .literal.mbedtls_sha1_process + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .literal.mbedtls_sha1_update + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .literal.mbedtls_sha1_finish + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .text.mbedtls_sha1_starts + 0x0000000000000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .text.mbedtls_sha1_process + 0x0000000000000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .text.mbedtls_sha1_update + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .text.mbedtls_sha1_finish + 0x0000000000000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .xt.lit 0x0000000000000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .xt.prop 0x0000000000000000 0x3b4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .literal.mbedtls_sha256_starts + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_sha256_process + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_sha256_update + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_sha256_finish + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_starts + 0x0000000000000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_process + 0x0000000000000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_update + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_finish + 0x0000000000000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .xt.lit 0x0000000000000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .xt.prop 0x0000000000000000 0x450 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_sha512_starts + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .literal.mbedtls_sha512_process + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .literal.mbedtls_sha512_update + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .literal.mbedtls_sha512_finish + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text.mbedtls_sha512_starts + 0x0000000000000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text.mbedtls_sha512_process + 0x0000000000000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text.mbedtls_sha512_update + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text.mbedtls_sha512_finish + 0x0000000000000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .xt.lit 0x0000000000000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .xt.prop 0x0000000000000000 0x7ec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .xt.lit 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .xt.prop 0x0000000000000000 0x864 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .literal.esp_aes_crypt_cfb8 + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + .text.esp_aes_crypt_cfb8 + 0x0000000000000000 0xad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + .xt.lit 0x0000000000000000 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + .xt.prop 0x0000000000000000 0xa50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + .literal.esp_sha_lock_engine + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_lock_engine + 0x0000000000000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .xt.lit 0x0000000000000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .xt.prop 0x0000000000000000 0x420 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .literal.mbedtls_asn1_find_named_data + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .text.mbedtls_asn1_find_named_data + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .xt.lit 0x0000000000000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .xt.prop 0x0000000000000000 0x60c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .literal.mbedtls_asn1_write_utf8_string + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_printable_string + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_ia5_string + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_octet_string + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_utf8_string + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_printable_string + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_ia5_string + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .text.mbedtls_asn1_write_octet_string + 0x0000000000000000 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .xt.lit 0x0000000000000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .xt.prop 0x0000000000000000 0x684 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_cipher_list + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_info_from_string + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_update_ad + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_write_tag + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_check_tag + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_constant_time_memcmp + 0x0000000000000000 0x23 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_list + 0x0000000000000000 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_info_from_string + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_update_ad + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_write_tag + 0x0000000000000000 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.mbedtls_cipher_check_tag + 0x0000000000000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .bss.supported_init + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .xt.lit 0x0000000000000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .xt.prop 0x0000000000000000 0xedc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .xt.lit 0x0000000000000000 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .xt.prop 0x0000000000000000 0x588 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + COMMON 0x0000000000000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .literal.mbedtls_ecdsa_sign + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_sign_det + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_verify + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_write_signature_det + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .literal.mbedtls_ecdsa_genkey + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_sign + 0x0000000000000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_sign_det + 0x0000000000000000 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_verify + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_write_signature_det + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .text.mbedtls_ecdsa_genkey + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .xt.lit 0x0000000000000000 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .xt.prop 0x0000000000000000 0x57c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .literal.mbedtls_gcm_self_test + 0x0000000000000000 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .rodata.mbedtls_gcm_self_test.str1.4 + 0x0000000000000000 0x5b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .text.mbedtls_gcm_self_test + 0x0000000000000000 0x53c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .rodata.tag 0x0000000000000000 0x120 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .rodata.ct 0x0000000000000000 0x480 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .rodata.pt 0x0000000000000000 0x180 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .rodata.pt_index + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .rodata.pt_len + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .rodata.additional + 0x0000000000000000 0x180 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .rodata.add_index + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .rodata.add_len + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .rodata.iv 0x0000000000000000 0x180 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .rodata.iv_index + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .rodata.iv_len + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .rodata.key 0x0000000000000000 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .rodata.key_index + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .xt.lit 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .xt.prop 0x0000000000000000 0x8dc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .literal.hmac_drbg_self_test_entropy + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_update + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_seed + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_write_seed_file + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_update_seed_file + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .literal.mbedtls_hmac_drbg_self_test + 0x0000000000000000 0xa4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.hmac_drbg_self_test_entropy + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_update + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_seed + 0x0000000000000000 0x85 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_set_prediction_resistance + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_set_entropy_len + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_set_reseed_interval + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.mbedtls_hmac_drbg_write_seed_file.str1.4 + 0x0000000000000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_write_seed_file + 0x0000000000000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.mbedtls_hmac_drbg_update_seed_file.str1.4 + 0x0000000000000000 0x3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_update_seed_file + 0x0000000000000000 0x92 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.mbedtls_hmac_drbg_self_test.str1.4 + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .text.mbedtls_hmac_drbg_self_test + 0x0000000000000000 0x1c6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .bss.test_offset + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.result_nopr + 0x0000000000000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.entropy_nopr + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.result_pr + 0x0000000000000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .rodata.entropy_pr + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .xt.lit 0x0000000000000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .xt.prop 0x0000000000000000 0x690 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .literal.mbedtls_md5_starts + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .literal.mbedtls_md5_process + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .literal.mbedtls_md5_update + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .literal.mbedtls_md5_finish + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .literal.mbedtls_md5 + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .literal.mbedtls_md5_self_test + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .text.mbedtls_md5_starts + 0x0000000000000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .text.mbedtls_md5_process + 0x0000000000000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .text.mbedtls_md5_update + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .text.mbedtls_md5_finish + 0x0000000000000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .text.mbedtls_md5 + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .rodata.mbedtls_md5_self_test.str1.4 + 0x0000000000000000 0x23 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .text.mbedtls_md5_self_test + 0x0000000000000000 0x86 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .rodata.md5_test_sum + 0x0000000000000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .rodata.md5_test_buflen + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .rodata.md5_test_buf + 0x0000000000000000 0x237 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .xt.lit 0x0000000000000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .xt.prop 0x0000000000000000 0x3e4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .literal.oid_ext_key_usage_from_asn1 + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_extended_key_usage + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_sig_alg_desc + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .literal.mbedtls_oid_get_numeric_string + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.oid_ext_key_usage_from_asn1 + 0x0000000000000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_extended_key_usage + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_sig_alg_desc + 0x0000000000000000 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.mbedtls_oid_get_numeric_string.str1.4 + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text.mbedtls_oid_get_numeric_string + 0x0000000000000000 0xb9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_ext_key_usage + 0x0000000000000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .xt.lit 0x0000000000000000 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .xt.prop 0x0000000000000000 0xad4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .xt.prop 0x0000000000000000 0x540 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .xt.prop 0x0000000000000000 0x360 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .literal.mbedtls_base64_self_test + 0x0000000000000000 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .rodata.mbedtls_base64_self_test.str1.4 + 0x0000000000000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .text.mbedtls_base64_self_test + 0x0000000000000000 0x99 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .rodata.base64_test_enc + 0x0000000000000000 0x59 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .rodata.base64_test_dec + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .xt.prop 0x0000000000000000 0x378 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .literal.mbedtls_ccm_self_test + 0x0000000000000000 0x6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.mbedtls_ccm_self_test.str1.4 + 0x0000000000000000 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .text.mbedtls_ccm_self_test + 0x0000000000000000 0x1af esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.res 0x0000000000000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.tag_len + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.msg_len + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.add_len + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.iv_len + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.msg 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.ad 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.iv 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .rodata.key 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .xt.lit 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .xt.prop 0x0000000000000000 0x5dc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .literal.mbedtls_x509_serial_gets + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_sig_alg_gets + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_key_size_helper + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.mbedtls_x509_self_test + 0x0000000000000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_serial_gets.str1.4 + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_serial_gets + 0x0000000000000000 0xad esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_sig_alg_gets.str1.4 + 0x0000000000000000 0x1b esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_sig_alg_gets + 0x0000000000000000 0xc9 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_key_size_helper.str1.4 + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_key_size_helper + 0x0000000000000000 0x32 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_self_test.str1.4 + 0x0000000000000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .text.mbedtls_x509_self_test + 0x0000000000000000 0xd8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .xt.lit 0x0000000000000000 0x98 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .xt.prop 0x0000000000000000 0xe94 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.x509_info_subject_alt_name + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_info_cert_type + 0x0000000000000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_info_key_usage + 0x0000000000000000 0x54 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.x509_info_ext_key_usage + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_info + 0x0000000000000000 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_verify_info + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_verify + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_verify_with_profile + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_crt_parse_path + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.x509_info_subject_alt_name.str1.4 + 0x0000000000000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_info_subject_alt_name + 0x0000000000000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.x509_info_cert_type.str1.4 + 0x0000000000000000 0x74 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_info_cert_type + 0x0000000000000000 0x1b1 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.x509_info_key_usage.str1.4 + 0x0000000000000000 0x9c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_info_key_usage + 0x0000000000000000 0x1e5 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.x509_info_ext_key_usage.str1.4 + 0x0000000000000000 0x9 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_info_ext_key_usage + 0x0000000000000000 0x61 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.mbedtls_x509_crt_info.str1.4 + 0x0000000000000000 0x1c6 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_info + 0x0000000000000000 0x4fe esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.mbedtls_x509_crt_verify_info.str1.4 + 0x0000000000000000 0x33 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_verify_info + 0x0000000000000000 0x85 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_verify + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_verify_with_profile + 0x0000000000000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.mbedtls_x509_crt_parse_path.str1.4 + 0x0000000000000000 0x6 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.mbedtls_x509_crt_parse_path + 0x0000000000000000 0x8b esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.str1.4 + 0x0000000000000000 0x406 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.x509_crt_verify_strings + 0x0000000000000000 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata.mbedtls_x509_crt_profile_next + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .xt.lit 0x0000000000000000 0x148 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .xt.prop 0x0000000000000000 0x22c8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .literal.mbedtls_x509_csr_info + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + .rodata.mbedtls_x509_csr_info.str1.4 + 0x0000000000000000 0x53 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + .text.mbedtls_x509_csr_info + 0x0000000000000000 0x184 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + .xt.lit 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + .xt.prop 0x0000000000000000 0x468 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + .xt.lit 0x0000000000000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + .xt.prop 0x0000000000000000 0x540 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cas_pem_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cas_pem + 0x0000000000000000 0xce3 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cas_der_len + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .data.mbedtls_test_cas_der + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cas_len + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .data.mbedtls_test_cas + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cli_crt_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cli_pwd_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cli_key_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_crt_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_pwd_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_key_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_crt_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_pwd_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_key_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .data.mbedtls_test_cli_crt + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .data.mbedtls_test_cli_pwd + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .data.mbedtls_test_cli_key + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .data.mbedtls_test_srv_crt + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .data.mbedtls_test_srv_pwd + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .data.mbedtls_test_srv_key + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .data.mbedtls_test_ca_crt + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .data.mbedtls_test_ca_pwd + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .data.mbedtls_test_ca_key + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.test_cli_crt + 0x0000000000000000 0x4b9 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.test_cli_pwd + 0x0000000000000000 0x1 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.test_cli_key + 0x0000000000000000 0x6ab esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.test_srv_crt + 0x0000000000000000 0x4ad esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.test_srv_pwd + 0x0000000000000000 0x1 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.test_srv_key + 0x0000000000000000 0x6ab esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.test_ca_crt + 0x0000000000000000 0x4b9 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.test_ca_pwd + 0x0000000000000000 0xd esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.test_ca_key + 0x0000000000000000 0x6f6 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_crt_rsa_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_crt_rsa_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_crt_rsa + 0x0000000000000000 0x4ad esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_crt_rsa + 0x0000000000000000 0x4b9 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cli_crt_ec_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cli_pwd_ec_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cli_key_ec_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cli_crt_rsa_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cli_pwd_rsa_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cli_key_rsa_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_crt_ec_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_pwd_ec_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_key_ec_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_crt_rsa_sha1_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_crt_rsa_sha256_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_pwd_rsa_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_key_rsa_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_crt_ec_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_pwd_ec_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_key_ec_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_crt_rsa_sha1_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_crt_rsa_sha256_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_pwd_rsa_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_key_rsa_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cli_crt_ec + 0x0000000000000000 0x33d esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cli_pwd_ec + 0x0000000000000000 0x1 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cli_key_ec + 0x0000000000000000 0xe9 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cli_crt_rsa + 0x0000000000000000 0x4b9 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cli_pwd_rsa + 0x0000000000000000 0x1 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cli_key_rsa + 0x0000000000000000 0x6ab esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_crt_ec + 0x0000000000000000 0x32d esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_pwd_ec + 0x0000000000000000 0x1 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_key_ec + 0x0000000000000000 0xe9 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_crt_rsa_sha1 + 0x0000000000000000 0x4ad esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_crt_rsa_sha256 + 0x0000000000000000 0x4ad esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_pwd_rsa + 0x0000000000000000 0x1 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_key_rsa + 0x0000000000000000 0x6ab esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_crt_ec + 0x0000000000000000 0x373 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_pwd_ec + 0x0000000000000000 0xd esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_key_ec + 0x0000000000000000 0x16a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_crt_rsa_sha1 + 0x0000000000000000 0x4b9 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_crt_rsa_sha256 + 0x0000000000000000 0x4b9 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_pwd_rsa + 0x0000000000000000 0xd esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_key_rsa + 0x0000000000000000 0x6f6 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cli_crt_rsa_der_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cli_key_rsa_der_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cli_key_ec_der_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cli_crt_ec_der_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cli_crt_rsa_pem_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cli_pwd_rsa_pem_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cli_key_rsa_pem_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cli_pwd_ec_pem_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cli_key_ec_pem_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cli_crt_ec_pem_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cli_crt_rsa_der + 0x0000000000000000 0x343 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cli_key_rsa_der + 0x0000000000000000 0x4a8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cli_key_ec_der + 0x0000000000000000 0x79 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cli_crt_ec_der + 0x0000000000000000 0x230 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cli_crt_rsa_pem + 0x0000000000000000 0x4b9 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cli_pwd_rsa_pem + 0x0000000000000000 0x1 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cli_key_rsa_pem + 0x0000000000000000 0x6ab esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cli_pwd_ec_pem + 0x0000000000000000 0x1 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cli_key_ec_pem + 0x0000000000000000 0xe9 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_cli_crt_ec_pem + 0x0000000000000000 0x33d esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_crt_rsa_sha256_der_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_crt_rsa_sha1_der_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_pwd_rsa_der_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_key_rsa_der_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_pwd_ec_der_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_key_ec_der_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_crt_ec_der_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_crt_rsa_sha256_pem_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_crt_rsa_sha1_pem_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_pwd_rsa_pem_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_key_rsa_pem_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_pwd_ec_pem_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_key_ec_pem_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_crt_ec_pem_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_crt_rsa_sha256_der + 0x0000000000000000 0x33b esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_crt_rsa_sha1_der + 0x0000000000000000 0x33b esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_key_rsa_der + 0x0000000000000000 0x4a8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_key_ec_der + 0x0000000000000000 0x79 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_crt_ec_der + 0x0000000000000000 0x223 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_crt_rsa_sha256_pem + 0x0000000000000000 0x4ad esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_crt_rsa_sha1_pem + 0x0000000000000000 0x4ad esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_pwd_rsa_pem + 0x0000000000000000 0x1 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_key_rsa_pem + 0x0000000000000000 0x6ab esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_pwd_ec_pem + 0x0000000000000000 0x1 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_key_ec_pem + 0x0000000000000000 0xe9 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_srv_crt_ec_pem + 0x0000000000000000 0x32d esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_crt_rsa_sha256_der_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_crt_rsa_sha1_der_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_pwd_rsa_der_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_key_rsa_der_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_pwd_ec_der_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_key_ec_der_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_crt_ec_der_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_crt_rsa_sha256_pem_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_crt_rsa_sha1_pem_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_pwd_rsa_pem_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_key_rsa_pem_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_pwd_ec_pem_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_key_ec_pem_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_crt_ec_pem_len + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_crt_rsa_sha256_der + 0x0000000000000000 0x345 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_crt_rsa_sha1_der + 0x0000000000000000 0x345 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_key_rsa_der + 0x0000000000000000 0x4a8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_key_ec_der + 0x0000000000000000 0xa7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_crt_ec_der + 0x0000000000000000 0x256 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_crt_rsa_sha256_pem + 0x0000000000000000 0x4b9 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_crt_rsa_sha1_pem + 0x0000000000000000 0x4b9 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_pwd_rsa_pem + 0x0000000000000000 0xd esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_key_rsa_pem + 0x0000000000000000 0x6f6 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_pwd_ec_pem + 0x0000000000000000 0xd esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_key_ec_pem + 0x0000000000000000 0x16a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .rodata.mbedtls_test_ca_crt_ec_pem + 0x0000000000000000 0x373 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .debug_info 0x0000000000000000 0x1963 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .debug_abbrev 0x0000000000000000 0x1a1 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .debug_aranges + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .debug_line 0x0000000000000000 0x249 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .debug_str 0x0000000000000000 0x15ac esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .xt.prop 0x0000000000000000 0x6fc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + .xt.lit 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + .xt.prop 0x0000000000000000 0x384 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + .literal.bootloader_common_ota_select_crc + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_ota_select_valid + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_check_long_hold_gpio + 0x0000000000000000 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_label_search + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_erase_part_type_data + 0x0000000000000000 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_get_sha256_of_partition + 0x0000000000000000 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_get_active_otadata + 0x0000000000000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_get_partition_description + 0x0000000000000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_vddsdio_configure + 0x0000000000000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_check_chip_validity + 0x0000000000000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_get_reset_reason + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_ota_select_crc + 0x0000000000000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_ota_select_invalid + 0x0000000000000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_ota_select_valid + 0x0000000000000000 0x29 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.bootloader_common_check_long_hold_gpio.str1.4 + 0x0000000000000000 0x108 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_check_long_hold_gpio + 0x0000000000000000 0xcd esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.bootloader_common_label_search.str1.4 + 0x0000000000000000 0x3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_label_search + 0x0000000000000000 0xb4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.bootloader_common_erase_part_type_data.str1.4 + 0x0000000000000000 0x10e esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_erase_part_type_data + 0x0000000000000000 0x13e esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_get_sha256_of_partition + 0x0000000000000000 0xd7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_select_otadata + 0x0000000000000000 0x6e esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_get_active_otadata + 0x0000000000000000 0x31 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_get_partition_description + 0x0000000000000000 0x89 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_vddsdio_configure + 0x0000000000000000 0x37 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.bootloader_common_check_chip_validity.str1.4 + 0x0000000000000000 0x8f esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_check_chip_validity + 0x0000000000000000 0x78 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_get_reset_reason + 0x0000000000000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.__func__$5229 + 0x0000000000000000 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_frame 0x0000000000000000 0x148 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_info 0x0000000000000000 0x534e esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_abbrev 0x0000000000000000 0x425 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_loc 0x0000000000000000 0x881 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_aranges + 0x0000000000000000 0x80 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_ranges 0x0000000000000000 0xe8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_line 0x0000000000000000 0x1537 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_str 0x0000000000000000 0x2b9a esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .xt.lit 0x0000000000000000 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .xt.prop 0x0000000000000000 0x624 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_mmap_get_free_pages + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_mmap + 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_munmap + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_read + 0x0000000000000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_write + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_erase_sector + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_erase_range + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_mmap_get_free_pages + 0x0000000000000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.bootloader_mmap.str1.4 + 0x0000000000000000 0x7b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_mmap + 0x0000000000000000 0x6b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_munmap + 0x0000000000000000 0x1d esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_read + 0x0000000000000000 0x43 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_write + 0x0000000000000000 0x22 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_erase_sector + 0x0000000000000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_erase_range + 0x0000000000000000 0x11 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .bss.map 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_frame 0x0000000000000000 0xb8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_info 0x0000000000000000 0xf05 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_abbrev 0x0000000000000000 0x335 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_loc 0x0000000000000000 0x203 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_aranges + 0x0000000000000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_ranges 0x0000000000000000 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_line 0x0000000000000000 0x7ef esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_str 0x0000000000000000 0x9ae esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .xt.lit 0x0000000000000000 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .xt.prop 0x0000000000000000 0x1ec esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.should_map + 0x0000000000000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.verify_segment_header + 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.verify_checksum + 0x0000000000000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_segment_data + 0x0000000000000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.verify_image_header + 0x0000000000000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.should_load + 0x0000000000000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_segment + 0x0000000000000000 0x54 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.verify_simple_hash + 0x0000000000000000 0x38 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.image_load + 0x0000000000000000 0x80 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify_bootloader_data + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify_bootloader + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.should_map + 0x0000000000000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_segment_header.str1.4 + 0x0000000000000000 0x91 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.verify_segment_header + 0x0000000000000000 0x78 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_checksum.str1.4 + 0x0000000000000000 0x42 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.verify_checksum + 0x0000000000000000 0xa4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_segment_data.str1.4 + 0x0000000000000000 0x3a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_segment_data + 0x0000000000000000 0xc1 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_image_header.str1.4 + 0x0000000000000000 0xb9 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.verify_image_header + 0x0000000000000000 0xa3 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.should_load + 0x0000000000000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_segment.str1.4 + 0x0000000000000000 0xda esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_segment + 0x0000000000000000 0x13c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_simple_hash.str1.4 + 0x0000000000000000 0x5a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.verify_simple_hash + 0x0000000000000000 0x90 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.image_load.str1.4 + 0x0000000000000000 0x10a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.image_load + 0x0000000000000000 0x26a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.bootloader_load_image + 0x0000000000000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.bootloader_load_image_no_verify + 0x0000000000000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify + 0x0000000000000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify_bootloader_data + 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify_bootloader + 0x0000000000000000 0x1e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_frame 0x0000000000000000 0x160 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_info 0x0000000000000000 0x27de esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_abbrev 0x0000000000000000 0x3ac esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_loc 0x0000000000000000 0xdb7 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_aranges + 0x0000000000000000 0x88 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_ranges 0x0000000000000000 0xc0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_line 0x0000000000000000 0x1b17 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_str 0x0000000000000000 0x1b97 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .xt.lit 0x0000000000000000 0x60 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .xt.prop 0x0000000000000000 0x6e4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_partition_table_verify + 0x0000000000000000 0x5c esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .rodata.esp_partition_table_verify.str1.4 + 0x0000000000000000 0x163 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .text.esp_partition_table_verify + 0x0000000000000000 0x175 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_frame 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_info 0x0000000000000000 0xe82 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_abbrev 0x0000000000000000 0x274 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_loc 0x0000000000000000 0x1ef esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_aranges + 0x0000000000000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_ranges 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_line 0x0000000000000000 0x7f8 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_str 0x0000000000000000 0x7cd esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .xt.prop 0x0000000000000000 0x12c esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .literal.bootloader_common_get_chip_revision + 0x0000000000000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .literal.bootloader_clock_get_rated_freq_mhz + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .text.bootloader_common_get_chip_revision + 0x0000000000000000 0x4d esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .text.bootloader_clock_get_rated_freq_mhz + 0x0000000000000000 0x2d esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .debug_frame 0x0000000000000000 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .debug_info 0x0000000000000000 0xa2b esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .debug_abbrev 0x0000000000000000 0x1d0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .debug_loc 0x0000000000000000 0x77 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .debug_aranges + 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .debug_ranges 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .debug_line 0x0000000000000000 0x49d esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .debug_str 0x0000000000000000 0x64a esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .xt.prop 0x0000000000000000 0xd8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .literal.bootloader_sha256_start + 0x0000000000000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_sha256_data + 0x0000000000000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_sha256_finish + 0x0000000000000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text.bootloader_sha256_start + 0x0000000000000000 0x2e esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.bootloader_sha256_data.str1.4 + 0x0000000000000000 0x6d esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text.bootloader_sha256_data + 0x0000000000000000 0x37 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text.bootloader_sha256_finish + 0x0000000000000000 0x47 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.__func__$3379 + 0x0000000000000000 0x19 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.__func__$3372 + 0x0000000000000000 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_frame 0x0000000000000000 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_info 0x0000000000000000 0xd33 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_abbrev 0x0000000000000000 0x246 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_loc 0x0000000000000000 0xb2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_aranges + 0x0000000000000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_ranges 0x0000000000000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_line 0x0000000000000000 0x51c esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_str 0x0000000000000000 0x771 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .xt.prop 0x0000000000000000 0x108 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.log_invalid_app_partition + 0x0000000000000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.read_otadata + 0x0000000000000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.write_otadata + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.set_actual_ota_seq + 0x0000000000000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.set_cache_and_start_app + 0x0000000000000000 0x70 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.unpack_load_app + 0x0000000000000000 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.load_image + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_utility_load_partition_table + 0x0000000000000000 0x90 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_utility_get_selected_boot_partition + 0x0000000000000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_reset + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_utility_load_boot_image + 0x0000000000000000 0x74 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_debug_buffer + 0x0000000000000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.index_to_partition + 0x0000000000000000 0x4a esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.check_anti_rollback + 0x0000000000000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.try_load_partition + 0x0000000000000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.log_invalid_app_partition.str1.4 + 0x0000000000000000 0xb3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.log_invalid_app_partition + 0x0000000000000000 0x6e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.read_otadata.str1.4 + 0x0000000000000000 0x8e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.read_otadata + 0x0000000000000000 0x91 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.write_otadata.str1.4 + 0x0000000000000000 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.write_otadata + 0x0000000000000000 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.set_actual_ota_seq.str1.4 + 0x0000000000000000 0x3b esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.set_actual_ota_seq + 0x0000000000000000 0x74 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.set_cache_and_start_app + 0x0000000000000000 0x13d esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.unpack_load_app.str1.4 + 0x0000000000000000 0x6d esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.unpack_load_app + 0x0000000000000000 0xc8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.load_image.str1.4 + 0x0000000000000000 0x3d esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.load_image + 0x0000000000000000 0x2a esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_load_partition_table.str1.4 + 0x0000000000000000 0x196 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_utility_load_partition_table + 0x0000000000000000 0x1a8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_load_partition_table + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_get_selected_boot_partition.str1.4 + 0x0000000000000000 0x112 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_utility_get_selected_boot_partition + 0x0000000000000000 0x121 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_reset + 0x0000000000000000 0x9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_load_boot_image.str1.4 + 0x0000000000000000 0xe1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_utility_load_boot_image + 0x0000000000000000 0x133 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_sha256_hex_to_str + 0x0000000000000000 0x7d esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_debug_buffer.str1.4 + 0x0000000000000000 0x61 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_debug_buffer + 0x0000000000000000 0x8a esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.__func__$7154 + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .bss.ota_has_initial_contents + 0x0000000000000000 0x1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_frame 0x0000000000000000 0x190 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_info 0x0000000000000000 0x87b3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_abbrev 0x0000000000000000 0x5c2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_loc 0x0000000000000000 0xeea esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_aranges + 0x0000000000000000 0x98 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_ranges 0x0000000000000000 0xb8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_line 0x0000000000000000 0x2260 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_str 0x0000000000000000 0x44d6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .xt.lit 0x0000000000000000 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .xt.prop 0x0000000000000000 0x7d4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.image_validate + 0x0000000000000000 0x8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.get_ota_partition_count + 0x0000000000000000 0x14 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.find_default_boot_partition + 0x0000000000000000 0x1c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.read_otadata + 0x0000000000000000 0x30 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.rewrite_ota_seq + 0x0000000000000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_rewrite_ota_data + 0x0000000000000000 0x1c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.check_invalid_otadata + 0x0000000000000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.get_last_invalid_otadata + 0x0000000000000000 0xc esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_begin + 0x0000000000000000 0x28 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_write + 0x0000000000000000 0x58 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_end + 0x0000000000000000 0x14 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_set_boot_partition + 0x0000000000000000 0x14 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_boot_partition + 0x0000000000000000 0x30 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_next_update_partition + 0x0000000000000000 0x1c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_partition_description + 0x0000000000000000 0x8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_check_rollback_is_possible + 0x0000000000000000 0x24 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_current_ota_is_workable + 0x0000000000000000 0x48 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_mark_app_valid_cancel_rollback + 0x0000000000000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_mark_app_invalid_rollback_and_reboot + 0x0000000000000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_last_invalid_partition + 0x0000000000000000 0x14 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_state_partition + 0x0000000000000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_erase_last_boot_app_partition + 0x0000000000000000 0x24 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text 0x0000000000000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .data 0x0000000000000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.is_ota_partition + 0x0000000000000000 0x2e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.set_new_state_otadata + 0x0000000000000000 0x7 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.image_validate + 0x0000000000000000 0x25 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.get_ota_partition_count + 0x0000000000000000 0x3c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.find_default_boot_partition.str1.4 + 0x0000000000000000 0x4e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.find_default_boot_partition + 0x0000000000000000 0x5c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.read_otadata.str1.4 + 0x0000000000000000 0x61 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.read_otadata + 0x0000000000000000 0x92 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.rewrite_ota_seq + 0x0000000000000000 0x5a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_rewrite_ota_data + 0x0000000000000000 0x99 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.check_invalid_otadata + 0x0000000000000000 0x32 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.get_last_invalid_otadata + 0x0000000000000000 0x2c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_begin + 0x0000000000000000 0xda esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_write.str1.4 + 0x0000000000000000 0xf8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_write + 0x0000000000000000 0x15e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_end + 0x0000000000000000 0xa1 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_set_boot_partition + 0x0000000000000000 0x5d esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_get_boot_partition.str1.4 + 0x0000000000000000 0x4a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_boot_partition + 0x0000000000000000 0x82 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_get_next_update_partition.str1.4 + 0x0000000000000000 0x13 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_next_update_partition + 0x0000000000000000 0x64 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_partition_description + 0x0000000000000000 0x50 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_check_rollback_is_possible + 0x0000000000000000 0xbe esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_current_ota_is_workable.str1.4 + 0x0000000000000000 0xd7 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_current_ota_is_workable + 0x0000000000000000 0xe2 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_mark_app_valid_cancel_rollback + 0x0000000000000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_mark_app_invalid_rollback_and_reboot + 0x0000000000000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_last_invalid_partition + 0x0000000000000000 0x6a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_state_partition + 0x0000000000000000 0x9d esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_erase_last_boot_app_partition + 0x0000000000000000 0xe2 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.__func__$5853 + 0x0000000000000000 0x22 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.__func__$5799 + 0x0000000000000000 0x18 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.__func__$5772 + 0x0000000000000000 0xe esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .bss.s_ota_ops_last_handle + 0x0000000000000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .bss.s_ota_ops_entries_head + 0x0000000000000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .xt.lit 0x0000000000000000 0xb8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .xt.prop 0x0000000000000000 0xcfc esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .xt.prop 0x0000000000000000 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .xt.lit 0x0000000000000000 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .xt.prop 0x0000000000000000 0x3fc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .xt.lit 0x0000000000000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .xt.prop 0x0000000000000000 0x318 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .literal.wpa_sm_set_pmk + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .literal.wpa_sta_is_cur_pmksa_set + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text.eapol_sm_notify_eap_success + 0x0000000000000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text.wpa_eapol_key_dump + 0x0000000000000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text.wpa_sm_set_pmk + 0x0000000000000000 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text.wpa_sta_is_cur_pmksa_set + 0x0000000000000000 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .xt.lit 0x0000000000000000 0x178 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .xt.prop 0x0000000000000000 0x1ad0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .xt.prop 0x0000000000000000 0x54c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .literal.printf_encode + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.printf_decode + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.wpa_merge_byte_arrays + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.dup_binstr + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .rodata.printf_encode.str1.4 + 0x0000000000000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.printf_encode + 0x0000000000000000 0xcb esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.printf_decode + 0x0000000000000000 0x11e esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .rodata.printf_decode + 0x0000000000000000 0x15c esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.wpa_is_hex + 0x0000000000000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.wpa_merge_byte_arrays + 0x0000000000000000 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.dup_binstr + 0x0000000000000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .xt.lit 0x0000000000000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .xt.prop 0x0000000000000000 0x684 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .literal.wpabuf_resize + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal.wpabuf_alloc_ext_data + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal.wpabuf_dup + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal.wpabuf_alloc_copy + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal.wpabuf_concat + 0x0000000000000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal.wpabuf_zeropad + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal.wpabuf_printf + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_resize + 0x0000000000000000 0x84 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_alloc_ext_data + 0x0000000000000000 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_dup + 0x0000000000000000 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_alloc_copy + 0x0000000000000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_concat + 0x0000000000000000 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_zeropad + 0x0000000000000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .text.wpabuf_printf + 0x0000000000000000 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .xt.lit 0x0000000000000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .xt.prop 0x0000000000000000 0x2dc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal.wpa_snprintf_hex_uppercase + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .literal.wpa_snprintf_hex + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .rodata.wpa_snprintf_hex_uppercase.str1.4 + 0x0000000000000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .text.wpa_snprintf_hex_uppercase + 0x0000000000000000 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .rodata.wpa_snprintf_hex.str1.4 + 0x0000000000000000 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .text.wpa_snprintf_hex + 0x0000000000000000 0x54 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .xt.prop 0x0000000000000000 0x138 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .literal.wpa_auth_sm_event + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_auth_for_each_sta + 0x0000000000000000 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_auth_sta_no_wpa + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_auth_sm_event + 0x0000000000000000 0xa6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .xt.lit 0x0000000000000000 0x198 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .xt.prop 0x0000000000000000 0x1c14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .text.wpa_auth_uses_mfp + 0x0000000000000000 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .xt.lit 0x0000000000000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .xt.prop 0x0000000000000000 0x69c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .literal.wpabuf_clear_free + 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .literal.sae_state_txt + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text.wpabuf_clear_free + 0x0000000000000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.sae_state_txt.str1.4 + 0x0000000000000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text.sae_state_txt + 0x0000000000000000 0x31 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .xt.lit 0x0000000000000000 0x130 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .xt.prop 0x0000000000000000 0x15c0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .xt.lit 0x0000000000000000 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .xt.prop 0x0000000000000000 0xbac esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .literal.crypto_get_random + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .text.crypto_get_random + 0x0000000000000000 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .xt.lit 0x0000000000000000 0x110 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .xt.prop 0x0000000000000000 0xa20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .literal.dh_init + 0x0000000000000000 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .literal.dh_derive_shared + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .text.dh_init 0x0000000000000000 0xc2 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .text.dh_derive_shared + 0x0000000000000000 0x7f esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .xt.prop 0x0000000000000000 0x1bc esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .xt.prop 0x0000000000000000 0x138 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .xt.prop 0x0000000000000000 0x144 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .literal.pmksa_cache_list + 0x0000000000000000 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .text.pmksa_cache_get_current + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .rodata.pmksa_cache_list.str1.4 + 0x0000000000000000 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .text.pmksa_cache_list + 0x0000000000000000 0xf8 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .xt.lit 0x0000000000000000 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .xt.prop 0x0000000000000000 0x63c esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .literal.hostapd_config_defaults_bss + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.hostapd_config_defaults + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.hostapd_mac_comp + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.hostapd_mac_comp_empty + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.hostapd_wep_key_cmp + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.hostapd_maclist_found + 0x0000000000000000 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_config_defaults_bss + 0x0000000000000000 0x55 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_config_defaults + 0x0000000000000000 0x79 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_mac_comp + 0x0000000000000000 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_mac_comp_empty + 0x0000000000000000 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_wep_key_cmp + 0x0000000000000000 0x59 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_maclist_found + 0x0000000000000000 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .text.hostapd_rate_found + 0x0000000000000000 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .xt.lit 0x0000000000000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .xt.prop 0x0000000000000000 0x39c esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .literal.crypto_mod_exp + 0x0000000000000000 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_internal-modexp.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_internal-modexp.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_internal-modexp.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_internal-modexp.c.obj) + .text.crypto_mod_exp + 0x0000000000000000 0xdd esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_internal-modexp.c.obj) + .debug_frame 0x0000000000000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_internal-modexp.c.obj) + .debug_info 0x0000000000000000 0xcf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_internal-modexp.c.obj) + .debug_abbrev 0x0000000000000000 0x229 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_internal-modexp.c.obj) + .debug_loc 0x0000000000000000 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_internal-modexp.c.obj) + .debug_aranges + 0x0000000000000000 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_internal-modexp.c.obj) + .debug_ranges 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_internal-modexp.c.obj) + .debug_line 0x0000000000000000 0x438 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_internal-modexp.c.obj) + .debug_str 0x0000000000000000 0x6d4 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_internal-modexp.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_internal-modexp.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_internal-modexp.c.obj) + .xt.prop 0x0000000000000000 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_internal-modexp.c.obj) + .literal.esp_wifi_get_config_channel_local + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_negotiated_channel_local + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_negotiated_bw_local + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_softap_get_config_local + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_station_get_config_local + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_api_unlock$part$2 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_get_init_state + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_is_stop_in_progress + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_api_lock + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_init_completed + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_api_unlock + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.ieee80211_check_sleep + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_station_get_config + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_station_get_config_default + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_station_get_ap_info + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_station_get_current_ap_id + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_station_ap_check + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_softap_cacl_mac + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_softap_get_config + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_softap_get_station_num + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_softap_deauth + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_register_user_ie_manufacturer_recv_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_unregister_user_ie_manufacturer_recv_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_set_user_ie + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_get_user_ie + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_check_chan_param + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_deinit_in_caller_task + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_init_in_caller_task + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_osi_funcs_register + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_osi_funcs_md5_check + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_crypto_funcs_md5_check + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_wifi_type_md5_check + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_esp_wifi_md5_check + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_init_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_deinit_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_mode + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_mode + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_restart + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_start + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_stop + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_connect + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_disconnect + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_clear_fast_connect + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_deauth_sta + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_promiscuous_scan_start + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.get_total_scan_time + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_start + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_stop + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_get_ap_num + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_get_ap_records + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_config + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_config + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ap_get_sta_list + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_ps + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_ps + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_protocol + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_protocol + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_bandwidth + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_bandwidth + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_channel + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_home_channel + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_channel + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_country + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_country + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_mac + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_mac + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_sta_get_ap_info + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_promiscuous_filter + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_promiscuous_filter + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_promiscuous_ctrl_filter + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_promiscuous_ctrl_filter + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_promiscuous + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_promiscuous_rx_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_promiscuous + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_storage + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_reg_rxcb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_set_sta_ip + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_auto_connect + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_auto_connect + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_restore + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_vendor_ie + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_vendor_ie_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_set_event_handler + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_event_post + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.wifi_mesh_event_post + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_lora_enable + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_lora_disable + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_max_tx_power + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_max_tx_power + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_event_mask + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_event_mask + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_csi + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_csi_config + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_csi_rx_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_ant_gpio + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_ant_gpio + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_ant + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_ant + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_set_fix_rate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_get_fix_rate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_sta_rx_probe_req + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_ipc_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .iram1.4.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_set_log_level + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_set_log_mod + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_get_log + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_ioctl + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_get_config_channel + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_improve_contention_ability + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_get_negotiated_channel + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_internal_get_negotiated_bandwidth + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_mesh_reg_rxcb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_ap_assoc_expire + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_ap_assoc_expire + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_router_bssid + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_router_bssid + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_get_beacon_interval + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_set_beacon_interval + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_map_deauth + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_sta_disassoc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_get_cur_ap_info + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_scan_get_ap_ie_len + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_get_cur_ap_record + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_scan_get_ap_record + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_mesh_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_mesh_deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_mesh_set + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_mesh_get + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_roots_set + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_vnd_roots_get + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_allow_root_conflicts + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_is_root_conflicts_allowed + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_parent_monitor_config + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_parent_monitor_config + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_ie_crypto_funcs_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_ie_crypto_key_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_sort_ap_records + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_sort_get_cur_ap_info + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_wifi_scan_sort_get_cur_ap_record + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_parent_candidate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_clear_parent_candidate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_parent_candidate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_set_rssi_threshold_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_rssi_threshold_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_is_roots_found + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_get_storage + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.esp_mesh_switch_channel_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_config_channel_local + 0x0000000000000000 0xda /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_negotiated_channel_local + 0x0000000000000000 0xc7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_negotiated_bw_local + 0x0000000000000000 0x128 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_station_get_config + 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_station_get_config_default + 0x0000000000000000 0x19 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_station_get_ap_info + 0x0000000000000000 0xbf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_station_get_current_ap_id + 0x0000000000000000 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_station_ap_check + 0x0000000000000000 0x4e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_softap_cacl_mac + 0x0000000000000000 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_softap_get_config + 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_softap_get_station_num + 0x0000000000000000 0xac /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_register_user_ie_manufacturer_recv_cb + 0x0000000000000000 0x19 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_unregister_user_ie_manufacturer_recv_cb + 0x0000000000000000 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_set_user_ie + 0x0000000000000000 0x1b4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.wifi_get_user_ie + 0x0000000000000000 0x48 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.wifi_get_user_ie + 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_osi_funcs_md5_check + 0x0000000000000000 0x4e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_crypto_funcs_md5_check + 0x0000000000000000 0x4e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_wifi_type_md5_check + 0x0000000000000000 0x4e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_esp_wifi_md5_check + 0x0000000000000000 0x4e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_mode + 0x0000000000000000 0x6a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_restart + 0x0000000000000000 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_disconnect + 0x0000000000000000 0x94 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_clear_fast_connect + 0x0000000000000000 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_promiscuous_scan_start + 0x0000000000000000 0xa0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.get_total_scan_time + 0x0000000000000000 0xec /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_start + 0x0000000000000000 0x1ec /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_stop + 0x0000000000000000 0x94 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_get_ap_num + 0x0000000000000000 0x102 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_get_ap_records + 0x0000000000000000 0x12c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_ap_get_sta_list + 0x0000000000000000 0x8e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_ps + 0x0000000000000000 0x4c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_ps + 0x0000000000000000 0x68 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_protocol + 0x0000000000000000 0xc2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_protocol + 0x0000000000000000 0xca /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_bandwidth + 0x0000000000000000 0x94 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_bandwidth + 0x0000000000000000 0xca /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_channel + 0x0000000000000000 0x4e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_home_channel + 0x0000000000000000 0x4e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_country + 0x0000000000000000 0x54 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_country + 0x0000000000000000 0x8e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_mac + 0x0000000000000000 0xe0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_sta_get_ap_info + 0x0000000000000000 0x8e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_promiscuous_filter + 0x0000000000000000 0x8a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_promiscuous_filter + 0x0000000000000000 0x68 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_promiscuous_ctrl_filter + 0x0000000000000000 0x8a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_promiscuous_ctrl_filter + 0x0000000000000000 0x68 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_promiscuous + 0x0000000000000000 0x68 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_promiscuous_rx_cb + 0x0000000000000000 0x28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_promiscuous + 0x0000000000000000 0x7c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_auto_connect + 0x0000000000000000 0x48 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_auto_connect + 0x0000000000000000 0x7a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_restore + 0x0000000000000000 0x4c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_vendor_ie + 0x0000000000000000 0x4e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_vendor_ie_cb + 0x0000000000000000 0x54 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_max_tx_power + 0x0000000000000000 0x9c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_max_tx_power + 0x0000000000000000 0xb6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_event_mask + 0x0000000000000000 0x52 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_csi + 0x0000000000000000 0xa0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_csi_config + 0x0000000000000000 0xee /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_csi_rx_cb + 0x0000000000000000 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_ant_gpio + 0x0000000000000000 0x8c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_ant_gpio + 0x0000000000000000 0xa0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_ant + 0x0000000000000000 0x8c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_ant + 0x0000000000000000 0x72 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_set_fix_rate + 0x0000000000000000 0xe0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_get_fix_rate + 0x0000000000000000 0xdc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_sta_rx_probe_req + 0x0000000000000000 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_set_log_level + 0x0000000000000000 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_set_log_mod + 0x0000000000000000 0x50 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_get_log + 0x0000000000000000 0x3c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_ioctl + 0x0000000000000000 0x8e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_get_config_channel + 0x0000000000000000 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_improve_contention_ability + 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_get_negotiated_channel + 0x0000000000000000 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_internal_get_negotiated_bandwidth + 0x0000000000000000 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_mesh_reg_rxcb + 0x0000000000000000 0x32 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_ap_assoc_expire + 0x0000000000000000 0xaa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_ap_assoc_expire + 0x0000000000000000 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_router_bssid + 0x0000000000000000 0x90 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_router_bssid + 0x0000000000000000 0x90 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_get_beacon_interval + 0x0000000000000000 0xfa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_set_beacon_interval + 0x0000000000000000 0x120 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_sta_disassoc + 0x0000000000000000 0x98 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_get_cur_ap_info + 0x0000000000000000 0x102 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_scan_get_ap_ie_len + 0x0000000000000000 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_get_cur_ap_record + 0x0000000000000000 0x1a6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_scan_get_ap_record + 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_vnd_mesh_init + 0x0000000000000000 0x11e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_vnd_mesh_deinit + 0x0000000000000000 0xe0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_vnd_mesh_set + 0x0000000000000000 0xea /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_vnd_mesh_get + 0x0000000000000000 0xfa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_vnd_roots_set + 0x0000000000000000 0xe0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_vnd_roots_get + 0x0000000000000000 0xe0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_allow_root_conflicts + 0x0000000000000000 0x68 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_is_root_conflicts_allowed + 0x0000000000000000 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_parent_monitor_config + 0x0000000000000000 0x90 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_parent_monitor_config + 0x0000000000000000 0xa4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_ie_crypto_funcs_internal + 0x0000000000000000 0xa4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_ie_crypto_key_internal + 0x0000000000000000 0xe0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_sort_ap_records + 0x0000000000000000 0x12a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_sort_get_cur_ap_info + 0x0000000000000000 0x168 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_wifi_scan_sort_get_cur_ap_record + 0x0000000000000000 0x241 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_parent_candidate + 0x0000000000000000 0xe0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_clear_parent_candidate + 0x0000000000000000 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_parent_candidate + 0x0000000000000000 0xde /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_set_rssi_threshold_internal + 0x0000000000000000 0xde /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_rssi_threshold_internal + 0x0000000000000000 0xde /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_is_roots_found + 0x0000000000000000 0x3d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_get_storage + 0x0000000000000000 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .text.esp_mesh_switch_channel_internal + 0x0000000000000000 0x4c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10941 + 0x0000000000000000 0x25 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10935 + 0x0000000000000000 0x25 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10929 + 0x0000000000000000 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10918 + 0x0000000000000000 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10907 + 0x0000000000000000 0x25 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10895 + 0x0000000000000000 0x23 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10865 + 0x0000000000000000 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10858 + 0x0000000000000000 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10852 + 0x0000000000000000 0x23 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10846 + 0x0000000000000000 0x23 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10828 + 0x0000000000000000 0x17 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10822 + 0x0000000000000000 0x17 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10816 + 0x0000000000000000 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10810 + 0x0000000000000000 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10804 + 0x0000000000000000 0x19 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10798 + 0x0000000000000000 0x17 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10782 + 0x0000000000000000 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10767 + 0x0000000000000000 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10760 + 0x0000000000000000 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10746 + 0x0000000000000000 0x1d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10741 + 0x0000000000000000 0x1d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10735 + 0x0000000000000000 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10729 + 0x0000000000000000 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10718 + 0x0000000000000000 0x1d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10703 + 0x0000000000000000 0x21 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10659 + 0x0000000000000000 0x22 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10641 + 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10606 + 0x0000000000000000 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10598 + 0x0000000000000000 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10592 + 0x0000000000000000 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10586 + 0x0000000000000000 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10582 + 0x0000000000000000 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10576 + 0x0000000000000000 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10566 + 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10560 + 0x0000000000000000 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10547 + 0x0000000000000000 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10541 + 0x0000000000000000 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10491 + 0x0000000000000000 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10468 + 0x0000000000000000 0x19 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10454 + 0x0000000000000000 0x25 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10448 + 0x0000000000000000 0x25 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10444 + 0x0000000000000000 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10438 + 0x0000000000000000 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10432 + 0x0000000000000000 0x19 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10421 + 0x0000000000000000 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10414 + 0x0000000000000000 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10384 + 0x0000000000000000 0x17 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10377 + 0x0000000000000000 0x17 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10370 + 0x0000000000000000 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10363 + 0x0000000000000000 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10352 + 0x0000000000000000 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10341 + 0x0000000000000000 0x19 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10322 + 0x0000000000000000 0x1d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10317 + 0x0000000000000000 0x19 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10311 + 0x0000000000000000 0x13 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .bss.old_scan_id$10297 + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10303 + 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10260 + 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10230 + 0x0000000000000000 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10108 + 0x0000000000000000 0x19 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .bss.s_mesh_fetch_num + 0x0000000000000000 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .bss.s_mesh_sort_num + 0x0000000000000000 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .bss.s_mesh_sort_bss + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .data.g_esp_wifi_md5 + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .data.g_wifi_type_md5 + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .data.g_wifi_crypto_funcs_md5 + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .data.g_wifi_osi_funcs_md5 + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .xt.lit 0x0000000000000000 0x490 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .xt.prop 0x0000000000000000 0x432c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .literal.ieee80211_freedom_inside_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_rate_ref_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_freedom_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_user_ie_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_ifattach + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_ifdetach + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_create_softap + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_destroy_softap + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_create_sta + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_destroy_sta + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_mode_set + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.wifi_recycle_rx_pkt + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .text.ieee80211_rate_ref_init + 0x0000000000000000 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .text.wifi_recycle_rx_pkt + 0x0000000000000000 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .rodata.ieee80211_opcap + 0x0000000000000000 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .data.libnet80211_reversion_remote + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .data.libnet80211_reversion_git + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .xt.lit 0x0000000000000000 0x60 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .xt.prop 0x0000000000000000 0x540 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .literal.ieee80211_crypto_attach + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_available + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_setkey + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_encap + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_decap + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_aes_128_cmac_encrypt + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .literal.ieee80211_crypto_aes_128_cmac_decrypt + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .text.ieee80211_crypto_available + 0x0000000000000000 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .text.ieee80211_crypto_setkey + 0x0000000000000000 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .text.ieee80211_crypto_aes_128_cmac_encrypt + 0x0000000000000000 0xe2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .xt.lit 0x0000000000000000 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .xt.prop 0x0000000000000000 0x2c4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .literal.ccmp_encap + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .literal.ccmp_decap + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .literal.ieee80211_ccmp_decrypt + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .literal.ieee80211_ccmp_encrypt + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .xt.lit 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .xt.prop 0x0000000000000000 0x2a0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .literal.tkip_decap + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + .literal.tkip_encap + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + .xt.lit 0x0000000000000000 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + .xt.prop 0x0000000000000000 0xe4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + .literal.wep_encap + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + .literal.wep_decap + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + .xt.prop 0x0000000000000000 0x78 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + .literal.dbg_cnt_hmac_rxtx_show + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .literal.dbg_cnt_hmac_event_show + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .literal.dbg_cnt_hmac_beacon_show + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .literal.dbg_cnt_hmac_txq_show + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .literal.dbg_cnt_hmac_malloc_free_show + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .literal.dbg_wifi_nvs_show + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .literal.dbg_wifi_com_show + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .literal.dbg_wifi_ampdu_show + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .literal.dbg_wifi_bss_show + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .literal.dbg_wifi_sta_bcast_show + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .literal.dbg_wifi_eap_show + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .literal.dbg_wifi_esta_show + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .literal.dbg_wifi_conn_show + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .literal.dbg_wifi_sta_show + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .literal.dbg_wifi_ap_show + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .literal.dbg_wifi_chm_show + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .literal.dbg_ampdu_set + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .rodata.str1.4 + 0x0000000000000000 0x2381 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .text.dbg_cnt_hmac_rxtx_show + 0x0000000000000000 0x1584 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .text.dbg_cnt_hmac_event_show + 0x0000000000000000 0x3e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .text.dbg_cnt_hmac_beacon_show + 0x0000000000000000 0x3e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .text.dbg_cnt_hmac_txq_show + 0x0000000000000000 0x15c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .text.dbg_cnt_hmac_malloc_free_show + 0x0000000000000000 0x212 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .text.dbg_wifi_nvs_show + 0x0000000000000000 0xd3e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .text.dbg_wifi_com_show + 0x0000000000000000 0xe92 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .text.dbg_wifi_ampdu_show + 0x0000000000000000 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .text.dbg_wifi_bss_show + 0x0000000000000000 0xd9a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .text.dbg_wifi_sta_bcast_show + 0x0000000000000000 0x5c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .text.dbg_wifi_eap_show + 0x0000000000000000 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .text.dbg_wifi_esta_show + 0x0000000000000000 0x7f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .text.dbg_wifi_conn_show + 0x0000000000000000 0x982 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .text.dbg_wifi_sta_show + 0x0000000000000000 0x57 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .text.dbg_wifi_ap_show + 0x0000000000000000 0x57 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .text.dbg_wifi_chm_show + 0x0000000000000000 0x3ea /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .text.dbg_ampdu_set + 0x0000000000000000 0x146 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .xt.lit 0x0000000000000000 0x80 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .xt.prop 0x0000000000000000 0x21b4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .literal.ieee80211_hostap_send_beacon + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_handle_timer + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_hostapd_ps_txcb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_hostap_send_beacon_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_hostap_attach + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_handle_timer_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_hostapd_data_txcb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.wifi_ap_reg_rxcb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.hostap_input + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ap_rx_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.wifi_softap_start + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.ieee80211_hostapd_beacon_txcb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.wifi_softap_stop + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .text.ieee80211_hostapd_data_txcb + 0x0000000000000000 0x56 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .bss.APRecvBcnStartTick + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .xt.lit 0x0000000000000000 0x68 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .xt.prop 0x0000000000000000 0x171c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + COMMON 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .literal.addba_response_txcb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_timeout + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.addba_timeout + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htinfo_body + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.unlikely.ieee80211_ampdu_start_age_timer$part$1 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htcap_body + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ht_recv_action_ba_addba_response + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ampdu_tx_stop + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .wifirxiram.2.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .wifirxiram.4.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ampdu_free_rx_ba_index$part$8 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ampdu_rx_stop + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ht_recv_action_ba_delba + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ht_action_output + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ht_send_action_ba_delba + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ht_send_action_ba_addba + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .wifirxiram.5.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_attach + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ampdu_free_rx_ba_index + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ampdu_alloc_rx_ba_index + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ht_recv_action_ba_addba_request + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_deattach + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_cal_tx_pps + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_enable + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.addba_timeout_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_request + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_stop + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_age_all + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ampdu_deinit_age_timer + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .wifirxiram.6.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_recv_bar + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_node_cleanup + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_node_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_parse_htcap + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_has_ht40_bss + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_update_channel + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_updatehtcap + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_ht_updateparams + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_setup_htrates + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_setup_basic_htrates + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htcap + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htcap_vendor + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htinfo + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_htinfo_vendor + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_decap1 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_decap_amsdu + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .text.ampdu_free_rx_ba_index + 0x0000000000000000 0x2d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .text.ieee80211_ampdu_stop + 0x0000000000000000 0x53 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .xt.lit 0x0000000000000000 0x170 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .xt.prop 0x0000000000000000 0x2070 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .literal.ieee80211_add_ie_vendor_esp_head + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_mesh_group + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_simple_pair + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_freq_annon + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_now + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_ssid + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .literal.ieee80211_add_ie_vendor_esp_manufacturer + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .text.ieee80211_add_ie_vendor_esp_mesh_group + 0x0000000000000000 0x4e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .text.ieee80211_add_ie_vendor_esp_simple_pair + 0x0000000000000000 0x59 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .text.ieee80211_add_ie_vendor_esp_freq_annon + 0x0000000000000000 0x4c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .text.ieee80211_add_ie_vendor_esp_now + 0x0000000000000000 0x4d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .text.ieee80211_add_ie_vendor_esp_ssid + 0x0000000000000000 0x56 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .xt.lit 0x0000000000000000 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .xt.prop 0x0000000000000000 0x198 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .literal.wpa_cipher + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.rsn_cipher + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_deliver_data + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_decap + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_setup_phy_mode + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_is_support_rate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_is_11b_rate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_setup_rates + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_set_max_rate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_is_lr_only + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_setup_lr_rates + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_alloc_challenge + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_parse_beacon + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_parse_wpa + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_rsn_cipher_priority + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_better_rsn_pairwise_cipher + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_parse_rsn + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_is_ht_cipher + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_parse_action + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.ieee80211_setup_rateset + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .text.ieee80211_deliver_data + 0x0000000000000000 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .text.ieee80211_is_11b_rate + 0x0000000000000000 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .text.ieee80211_rsn_cipher_priority + 0x0000000000000000 0x4d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .xt.lit 0x0000000000000000 0x70 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .xt.prop 0x0000000000000000 0x165c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .literal.wifi_get_bw_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_vnd_ie_cb_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_event_mask + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_wps_stop + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_wps_start + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_wpa2_ent_enable_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_wpa2_ent_disable_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_wps_type_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_wps_status_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_wps_cb_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ioctl_ht2040_get + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_internal_ioctl_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_ioctl_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_restart_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_pmk_is_valid + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_ant_gpio + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_auto_connect_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_scan_stop_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_scan_start_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_vnd_ie_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_ap_info_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_promis_filter_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_promis_ctrl_filter_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_ap_list_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_station_set_config_local_2 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_config_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_protocol_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_home_channel_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_channel_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_ps_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_rxcb_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_max_tpw + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_csi + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_csi_set_config + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_fix_rate_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_deauth_sta_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_map_deauth_progress + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_crypto_key_set_progress + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_parent_candidate_set_progress + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_parent_candidate_clear_progress + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_log_mod_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_assoc_expire_set_progress + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_router_bssid_set_progress + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_router_bssid_get_progress + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_root_conflicts_set_progress + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_is_roots_found_progress + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_sta_list_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_set_beacon_interval_progress + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_channel_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_country + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ipc_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ioctl_ht2040_set + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_set_progress + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_get_progress + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_roots_ie_set_progress + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_roots_ie_get_progress + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_init_progress + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_deinit_progress + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_ie_crypto_funcs_set_progress + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_parent_monitor_set_progress + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_parent_monitor_get_progress + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_parent_candidate_get_progress + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_rssi_threshold_set_progress + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_rssi_threshold_get_progress + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_switch_channel_progress + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal._do_wifi_stop$part$26 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_phy_2nd_chan_is_valid$part$27 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_set_appie$part$41 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_appie_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.current_task_is_wifi_task + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.adc2_wifi_acquire + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.adc2_wifi_release + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_station_get_reconnect_policy + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal._do_wifi_stop + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal._do_wifi_start + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_mac_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_set_phy_2nd_chan + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_phy_2nd_chan_is_valid + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_set_phy_bw + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_set_phy_mode + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_protocol_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_bw_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_phy_2nd_chan_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_station_save_ap_channel + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.print_sta_pmk + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_sta_connect + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal._do_wifi_connect + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_connect_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_sta_disconnect + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal._do_wifi_disconnect + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_disconnect_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_sta_scan + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_sta_ap_change_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_sta_set_ap_num_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_get_macaddr + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.chip_post_deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.chip_enable + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.chip_disable + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_reset_mac + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_rf_phy_disable + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_txq_empty + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_stop_sw_txq + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_hw_stop + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_stop_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.esp_wifi_internal_set_baw + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_menuconfig_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_crypto_deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wpa_crypto_funcs_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_crypto_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_hmac_deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_hmac_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_lmac_deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_lmac_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_init_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_deinit_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_sta_disconnect + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ant_to_ant_type + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.cipher_map_net80211_to_public_cipher + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_chan_range + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_country + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mac_restore + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_restore_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ant_config_check + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_ant_update + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_rf_phy_enable + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_hw_start + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_promis_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_mode_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_start_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_ant + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_wps_is_started + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_set_wps_start_flag + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_wpa2_is_started + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_set_appie + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_sta_disassoc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.wifi_mesh_sta_disassoc_progress + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_ioctl_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_ioctl_deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_ioctl + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_ioctl_mesh_funcs_register + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_wps_stop + 0x0000000000000000 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_wps_start + 0x0000000000000000 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ie_crypto_key_set_progress + 0x0000000000000000 0xb7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_parent_candidate_set_progress + 0x0000000000000000 0xca /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_parent_candidate_clear_progress + 0x0000000000000000 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_assoc_expire_set_progress + 0x0000000000000000 0x92 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_router_bssid_set_progress + 0x0000000000000000 0x9c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_router_bssid_get_progress + 0x0000000000000000 0x9c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_root_conflicts_set_progress + 0x0000000000000000 0x63 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_is_roots_found_progress + 0x0000000000000000 0x72 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_set_beacon_interval_progress + 0x0000000000000000 0x114 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ie_set_progress + 0x0000000000000000 0x5e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ie_get_progress + 0x0000000000000000 0x5e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_roots_ie_set_progress + 0x0000000000000000 0x70 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_roots_ie_get_progress + 0x0000000000000000 0x70 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ie_init_progress + 0x0000000000000000 0x76 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ie_deinit_progress + 0x0000000000000000 0x58 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_ie_crypto_funcs_set_progress + 0x0000000000000000 0x6f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_parent_monitor_set_progress + 0x0000000000000000 0x58 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_parent_monitor_get_progress + 0x0000000000000000 0x58 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_parent_candidate_get_progress + 0x0000000000000000 0x58 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_rssi_threshold_set_progress + 0x0000000000000000 0x58 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_rssi_threshold_get_progress + 0x0000000000000000 0x58 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_switch_channel_progress + 0x0000000000000000 0x70 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.ieee80211_phy_2nd_chan_is_valid$part$27 + 0x0000000000000000 0xb6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text._do_wifi_stop + 0x0000000000000000 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.ieee80211_set_phy_2nd_chan + 0x0000000000000000 0x42 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.ieee80211_phy_2nd_chan_is_valid + 0x0000000000000000 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_phy_2nd_chan_process + 0x0000000000000000 0x8a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.print_sta_pmk + 0x0000000000000000 0x357 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.ieee80211_sta_scan + 0x0000000000000000 0x40 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_sta_ap_change_process + 0x0000000000000000 0x136 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_sta_set_ap_num_process + 0x0000000000000000 0x46 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.chip_post_deinit + 0x0000000000000000 0x19 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.esp_wifi_internal_set_baw + 0x0000000000000000 0x58 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_crypto_deinit + 0x0000000000000000 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_crypto_init + 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_hmac_deinit + 0x0000000000000000 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_hmac_init + 0x0000000000000000 0x54 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_lmac_deinit + 0x0000000000000000 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_sta_disconnect + 0x0000000000000000 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_ant_to_ant_type + 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.cipher_map_net80211_to_public_cipher + 0x0000000000000000 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_set_wps_start_flag + 0x0000000000000000 0x35 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.ieee80211_set_appie + 0x0000000000000000 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_sta_disassoc + 0x0000000000000000 0x62 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.wifi_mesh_sta_disassoc_progress + 0x0000000000000000 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .text.ieee80211_ioctl_mesh_funcs_register + 0x0000000000000000 0x88 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .bss.is_mesh_funcs_registered$11102 + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.__FUNCTION__$11071 + 0x0000000000000000 0x22 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.__FUNCTION__$11063 + 0x0000000000000000 0x22 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.__FUNCTION__$11059 + 0x0000000000000000 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.__FUNCTION__$11055 + 0x0000000000000000 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.__FUNCTION__$11051 + 0x0000000000000000 0x28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.__FUNCTION__$11044 + 0x0000000000000000 0x28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.__FUNCTION__$11040 + 0x0000000000000000 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.__FUNCTION__$11036 + 0x0000000000000000 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.__FUNCTION__$11030 + 0x0000000000000000 0x25 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.__FUNCTION__$11024 + 0x0000000000000000 0x27 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.__FUNCTION__$11020 + 0x0000000000000000 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.__FUNCTION__$11014 + 0x0000000000000000 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.__FUNCTION__$11009 + 0x0000000000000000 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.__FUNCTION__$11005 + 0x0000000000000000 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.__FUNCTION__$10998 + 0x0000000000000000 0x27 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.__FUNCTION__$10974 + 0x0000000000000000 0x1d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.__FUNCTION__$10970 + 0x0000000000000000 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.__FUNCTION__$10964 + 0x0000000000000000 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.__FUNCTION__$10959 + 0x0000000000000000 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.__FUNCTION__$10954 + 0x0000000000000000 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.__FUNCTION__$10949 + 0x0000000000000000 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.mesh_op + 0x0000000000000000 0xb8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .data.g_mesh_root_conflicts_allowed + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .data.map_assoc_expire + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .bss.mesh_router_bssid + 0x0000000000000000 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .xt.lit 0x0000000000000000 0x438 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .xt.prop 0x0000000000000000 0x4bfc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .literal.ieee80211_mesh_quick_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .literal.ieee80211_mesh_quick_deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .literal.ieee80211_vnd_mesh_update_beacon + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .literal.ieee80211_vnd_mesh_fully_associated + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .literal.is_esp_mesh_assoc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .rodata.str1.4 + 0x0000000000000000 0x25 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .text.ieee80211_mesh_quick_init + 0x0000000000000000 0x1ab /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .text.ieee80211_mesh_quick_deinit + 0x0000000000000000 0xfe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .text.ieee80211_vnd_mesh_update_beacon + 0x0000000000000000 0x58 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .text.ieee80211_vnd_mesh_fully_associated + 0x0000000000000000 0x4e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .rodata.__FUNCTION__$8906 + 0x0000000000000000 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .rodata.__FUNCTION__$8899 + 0x0000000000000000 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .bss.esp_mesh_appie + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .xt.lit 0x0000000000000000 0x28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .xt.prop 0x0000000000000000 0x228 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .literal.wifi_nvs_commit$part$2 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_cfg_item_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_cfg_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_sta_restore + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_ap_restore + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_get + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.ieee80211_nvs_set_default_ssid + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_get_ap_chan + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.ieee80211_adjust_2nd_chan + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_commit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_set + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_set_default_ssid + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_ap_ssid + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_ap_password + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_sta_password + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_country + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_ap_chan + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_load + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_restore + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_ap_num + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_validate_sta_listen_interval + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_get_sta_listen_interval + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.wifi_nvs_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .text.wifi_nvs_sta_restore + 0x0000000000000000 0x34 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .text.wifi_nvs_ap_restore + 0x0000000000000000 0x34 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .text.ieee80211_nvs_set_default_ssid + 0x0000000000000000 0x53 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .text.wifi_get_ap_chan + 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .text.wifi_nvs_validate_ap_ssid + 0x0000000000000000 0x22 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .text.wifi_nvs_validate_country + 0x0000000000000000 0x37 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .text.wifi_nvs_validate_ap_num + 0x0000000000000000 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .text.wifi_nvs_validate_sta_listen_interval + 0x0000000000000000 0x1d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .xt.lit 0x0000000000000000 0xc0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .xt.prop 0x0000000000000000 0xb28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .literal.ieee80211_classify + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_wme_param$isra$2 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_output_pending_eb$part$6 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_vnd_ie_size$part$7 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_vnd_ie_set$part$8 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .wifi0iram.2.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.esp_wifi_internal_tx_is_stop + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_txq_enq + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_set_hmac_stop + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_output + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.esp_wifi_internal_tx + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.esp_wifi_mesh_tx + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_empty_txq + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_txq_empty + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_output_pending_eb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_output_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_setup + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_mgmt_output + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_tx_mgt_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_nulldata + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_align_eb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_rates + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_dsparams + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_add_xrates + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_vnd_ie_size + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_vnd_ie_set + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_vnd_lora_ie_size + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_vnd_lora_ie_set + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_setup_robust_mgmtframe + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_probereq + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_getcapinfo + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_mgmt + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_alloc_proberesp + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_proberesp + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_alloc_deauth + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_send_deauth + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_raw_frame_sanity_check + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.esp_wifi_80211_tx + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_beacon_alloc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_encap_null_data + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_pm_tx_null_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.esp_wifi_internal_tx_is_stop + 0x0000000000000000 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.ieee80211_txq_enq + 0x0000000000000000 0x66 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.esp_wifi_mesh_tx + 0x0000000000000000 0x492 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.ieee80211_txq_empty + 0x0000000000000000 0x34 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.ieee80211_output_pending_eb + 0x0000000000000000 0x1d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.ieee80211_align_eb + 0x0000000000000000 0x87 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.ieee80211_add_rates + 0x0000000000000000 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.ieee80211_add_dsparams + 0x0000000000000000 0x31 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.ieee80211_vnd_ie_size + 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.ieee80211_vnd_ie_set + 0x0000000000000000 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.ieee80211_vnd_lora_ie_size + 0x0000000000000000 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.ieee80211_setup_robust_mgmtframe + 0x0000000000000000 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.ieee80211_raw_frame_sanity_check + 0x0000000000000000 0x306 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .text.esp_wifi_80211_tx + 0x0000000000000000 0x176 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .xt.lit 0x0000000000000000 0x140 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .xt.prop 0x0000000000000000 0x2538 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .literal.ieee80211_phy_deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .literal.ieee80211_phy_type_get + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .literal.ieee80211_phy_mode_show + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .literal.ieee80211_setup_ratetable + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .literal.ieee80211_phy_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .literal.ieee80211_set_user_sup_rate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .text.ieee80211_set_user_sup_rate + 0x0000000000000000 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .xt.lit 0x0000000000000000 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .xt.prop 0x0000000000000000 0x360 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .literal.ieee80211_psq_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_gpsq_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_cleanup + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_find_max_bss + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_set_tim + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_take_head + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_take_tail + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_drop_one_pkt + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_send_one_pkt + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_psq_is_buff_pkt + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_pwrsave + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.pwrsave_flushq + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_node_pwrsave + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_pwrsave_node_cleanup + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_pwrsave_txcb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .text.ieee80211_psq_cleanup + 0x0000000000000000 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .text.ieee80211_psq_find_max_bss + 0x0000000000000000 0x49 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .text.ieee80211_psq_take_head + 0x0000000000000000 0x46 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .text.ieee80211_psq_take_tail + 0x0000000000000000 0x4a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .xt.lit 0x0000000000000000 0x70 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .xt.prop 0x0000000000000000 0x57c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .literal.ieee80211_proto_attach + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .literal.ieee80211_set_shortslottime + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .literal.ieee80211_iserp_rateset + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .literal.ieee80211_wme_initparams + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .literal.ieee80211_wme_updateparams + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .literal.ieee80211_mlme_connect_bss + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .literal.ieee80211_find_ie + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .text.ieee80211_iserp_rateset + 0x0000000000000000 0x58 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .text.ieee80211_wme_initparams + 0x0000000000000000 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .rodata.rates$8808 + 0x0000000000000000 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .xt.lit 0x0000000000000000 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .xt.prop 0x0000000000000000 0x2a0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .literal.ieee80211_regdomain_get_country$part$1 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_max_tx_power + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_attach + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_update + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_update_in_scan + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_update_in_connect + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_get_country + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_add_countryie + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_max_chan + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_min_chan + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_chan_num + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_policy + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_chan_in_range + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_regdomain_is_active_scan + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .text.ieee80211_regdomain_attach + 0x0000000000000000 0x28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .text.ieee80211_regdomain_chan_num + 0x0000000000000000 0x25 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .text.ieee80211_regdomain_policy + 0x0000000000000000 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .xt.lit 0x0000000000000000 0x68 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .xt.prop 0x0000000000000000 0x45c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .literal.ieee80211_rfid_locp_recv_open + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .literal.ieee80211_rfid_locp_recv_close + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .literal.ieee80211_rfid_locp_recv_reset + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .literal.ieee80211_rfid_locp_recv + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .literal.register_ieee80211_rfid_locp_recv_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .literal.unregister_ieee80211_rfid_locp_recv_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .text.ieee80211_rfid_locp_recv_open + 0x0000000000000000 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .text.ieee80211_rfid_locp_recv_close + 0x0000000000000000 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .text.register_ieee80211_rfid_locp_recv_cb + 0x0000000000000000 0x19 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .text.unregister_ieee80211_rfid_locp_recv_cb + 0x0000000000000000 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .xt.lit 0x0000000000000000 0x28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .xt.prop 0x0000000000000000 0x150 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .literal.scan_enter_oper_channel + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_inter_channel_timeout + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_op_start + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.unlikely.scan_add_ssid_do + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.unlikely.scan_add_ssid + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_update_scan_history$part$0 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.ieee80211_scan_attach + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.ieee80211_scan_deattach + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_get_apnum + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_freq_cal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_pm_channel_op_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_flush_all_tx_buf + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_cancel + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_add_bssid + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_remove_bssid + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_hidden_ssid + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_set_act_duration + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_set_pas_duration + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_add_probe_ssid + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_remove_probe_ssid + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_prefer_chan + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_update_scan_history + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_build_chan_list + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_set_desChan + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_get_type + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.cannel_scan_connect_state + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_check_hidden + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_reset_cipher_and_akm + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_profile_check + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.free_bss_info + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.clear_bss_queue + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_done + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_next_channel + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_enter_oper_channel_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_inter_channel_timeout_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_op_end + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_start + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_connect_state + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.check_bss_queue + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_set_scan_id + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_get_scan_id + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_parse_ht2040_coex + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_fill_wps_scan_ie + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.scan_parse_beacon + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .text.scan_pm_channel_op_cb + 0x0000000000000000 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .text.scan_update_scan_history + 0x0000000000000000 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .text.cannel_scan_connect_state + 0x0000000000000000 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .text.scan_check_hidden + 0x0000000000000000 0x2e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .text.scan_reset_cipher_and_akm + 0x0000000000000000 0x28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .text.scan_connect_state + 0x0000000000000000 0x4f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .text.scan_set_scan_id + 0x0000000000000000 0x78 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .text.scan_get_scan_id + 0x0000000000000000 0x76 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .text.scan_fill_wps_scan_ie + 0x0000000000000000 0x3d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .xt.lit 0x0000000000000000 0x150 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .xt.prop 0x0000000000000000 0x1b90 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .literal.sta_recv_sa_query_resp + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_assoc_comeback + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_try_sa_query + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_sa_query_timeout + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_recv_sa_query_req + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.ieee80211_wme_standard_ac_to_esp_ac$part$1 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_action_output + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_send_sa_query_resp + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_send_sa_query_req + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.ieee80211_sta_new_state + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_rx_eapol + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.wifi_sta_reg_rxcb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_michael_mic_failure + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.ieee80211_wme_standard_ac_to_esp_ac + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.ieee80211_parse_wmeparams + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_rx_csa + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.ieee80211_parse_obss_scan_param + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_retry_assoc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.wifi_station_start + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.wifi_station_stop + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_sa_query_process_timeout + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_try_sa_query_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .wifirxiram.2.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .wifirxiram.3.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.ieee80211_setup_pmf + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.sta_is_wpa3_enabled + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .text.ieee80211_wme_standard_ac_to_esp_ac$part$1 + 0x0000000000000000 0x34 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .text.ieee80211_wme_standard_ac_to_esp_ac + 0x0000000000000000 0x40 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .xt.lit 0x0000000000000000 0xd0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .xt.prop 0x0000000000000000 0x1e54 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .literal.ieee80211_set_key$part$0 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_appie_internal$part$2 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_get_prof_pmk_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_prof_pmk_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_update_ap_info_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_ap_info_prof_pmk_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_get_prof_ap_ssid_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_prof_ssid_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_get_prof_authmode_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_prof_authmode_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_is_ap_notify_completed_rsne_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_get_prof_password_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.wifi_sta_get_prof_password + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_prof_password_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_reset_param_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_set_reset_param_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_prof_is_wpa_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_prof_is_wpa2_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_prof_is_wpa3_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_pairwise_cipher_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_group_cipher_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_get_key + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_set_key + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_get_sta_gtk_index + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_set_sta_gtk_index + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_set_gtk + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_get_ptk + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_wpa_ptk_init_done_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_enable_sta_privacy_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_is_running_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_send_mgmt_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_auth_done_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_register_wpa2_cb_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_unregister_wpa2_cb_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_unregister_wpa_cb_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_register_wpa_cb_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_assoc_bssid_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .iram1.2.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_hostap_private_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_deauthenticate_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_user_init_flag_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.wifi_set_rx_policy + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_espnow_get_init_flag + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_espnow_set_init_flag + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_mt_key_is_mask + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_mt_key_is_mask_zero + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_mt_key_set_mask + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_mt_key_clear_mask + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_get_mac_addr_from_frame + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_del_key_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_key_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_key_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_register_tx_cb_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_macaddr_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_ap_deauth_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.wifi_init_key + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_ap_key_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ppInstallKey + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_sta_key_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_sta_key_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_appie_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_appie_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_unset_appie_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_wpa2_ent_enable_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_wpa2_ent_disable_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_wpa2_ent_state_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_wps_type_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_wps_type_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_get_wps_status_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_disarm_sta_connection_timer_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_wps_status_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_wps_cb_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_internal_supplicant_header_md5_check + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_wps_start_flag_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_pmf_enabled + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_sta_get_mgmt_group_cipher + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.esp_wifi_set_igtk_internal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211w_get_active_igtk_key_id + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211w_get_igtk_from_keyidx + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_sta_get_prof_pmk_internal + 0x0000000000000000 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_get_key + 0x0000000000000000 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_set_key + 0x0000000000000000 0x21 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_get_sta_gtk_index + 0x0000000000000000 0x17 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_set_sta_gtk_index + 0x0000000000000000 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_get_ptk + 0x0000000000000000 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_enable_sta_privacy_internal + 0x0000000000000000 0x1d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_sta_send_mgmt_internal + 0x0000000000000000 0x23 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_register_wpa2_cb_internal + 0x0000000000000000 0x27 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_unregister_wpa2_cb_internal + 0x0000000000000000 0x27 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_get_assoc_bssid_internal + 0x0000000000000000 0x5e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_get_user_init_flag_internal + 0x0000000000000000 0x1d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_espnow_get_init_flag + 0x0000000000000000 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_espnow_set_init_flag + 0x0000000000000000 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_mt_key_is_mask + 0x0000000000000000 0x28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_mt_key_is_mask_zero + 0x0000000000000000 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_mt_key_set_mask + 0x0000000000000000 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_mt_key_clear_mask + 0x0000000000000000 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.ieee80211_get_mac_addr_from_frame + 0x0000000000000000 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_del_key_internal + 0x0000000000000000 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_key_internal + 0x0000000000000000 0x37 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_get_key_internal + 0x0000000000000000 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.wifi_init_key + 0x0000000000000000 0x33 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_get_appie_internal + 0x0000000000000000 0x1d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_unset_appie_internal + 0x0000000000000000 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_sta_wpa2_ent_enable_internal + 0x0000000000000000 0x8e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_sta_wpa2_ent_disable_internal + 0x0000000000000000 0x8e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_wpa2_ent_state_internal + 0x0000000000000000 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_wps_type_internal + 0x0000000000000000 0x48 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_get_wps_type_internal + 0x0000000000000000 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_get_wps_status_internal + 0x0000000000000000 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_disarm_sta_connection_timer_internal + 0x0000000000000000 0x5a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_wps_status_internal + 0x0000000000000000 0x48 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_wps_cb_internal + 0x0000000000000000 0x52 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_internal_supplicant_header_md5_check + 0x0000000000000000 0x4e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .text.esp_wifi_set_wps_start_flag_internal + 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .rodata.__FUNCTION__$9508 + 0x0000000000000000 0x27 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .rodata.__FUNCTION__$9502 + 0x0000000000000000 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .data.g_wifi_supplicant_funcs_md5 + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .xt.lit 0x0000000000000000 0x270 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .xt.prop 0x0000000000000000 0x1578 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .literal.ieee80211_ampdu_age_handle + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_addba + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_coexist + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_sta_retry_assoc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_sta_sa_query_timeout + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_sta_try_sa_query + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_assoc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_hostap_handle + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_auth + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_send_beacon + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_chm_dwell + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_handshake + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_beacon + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_probe_send + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_csa + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_scan_enter_op_chan + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_scan_inter_chan + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_timer_connect + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_timer_do_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.ieee80211_timer_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .xt.lit 0x0000000000000000 0xa0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .xt.prop 0x0000000000000000 0xb1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .literal.chm_end_op_timeout + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_mhz2num + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_release_lock + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_end_op + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_end_op_timeout_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_cancel_op + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_acquire_lock + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_get_current_channel + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_set_current_channel + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_change_channel + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_start_op + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_return_home_channel + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .wifi0iram.2.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_get_home_channel + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_set_home_channel + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.chm_get_chan_info + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .xt.lit 0x0000000000000000 0x90 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .xt.prop 0x0000000000000000 0x6c0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .literal.cnx_cal_rc_util + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_get_next_rc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_traverse_rc_lis_done + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_sta_connect_led_timer_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_connect_op + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_connect_to_bss + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_connect_timeout + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_handshake_timeout + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_csa_fn + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.mgd_probe_send_timeout + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_beacon_timeout + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_sta_pm + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.send_ap_probe + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_probe_rc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.ieee80211_cnx_attach + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal._cnx_start_connect_without_scan + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_can_do_obss_scan + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_obss_scan + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_obss_scan_timeout + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_sta_scan_cmd + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_auth_timeout + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_assoc_timeout + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_coexist_timeout + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_coexist_timeout_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.wl_is_ap_no_lr + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.wl_clear_ap_no_lr + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_csa_fn_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_bss_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_check_bssid_in_blacklist + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_add_to_blacklist + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_clear_blacklist + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_choose_rc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_rc_search + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_add_rc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_remove_all_rc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_do_handoff + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_connect_next_ap + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_start_handoff_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_remove_rc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_sta_connect_cmd + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_connect_timeout_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_auth_timeout_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_assoc_timeout_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_handshake_timeout_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_bss_alloc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_remove_rc_except + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_rc_update_rssi + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_rc_update_state_metric + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_probe_rc_tx_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_rc_update_age + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_update_bss + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.esp_mesh_debug_tsf_time + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.esp_mesh_get_tsf_time + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_update_bss_more + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_beacon_timeout_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.mgd_probe_send_timeout_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_node_alloc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_node_remove + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .wifi0iram.3.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .wifi0iram.4.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.wifi_softap_staconnected_event_policy + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.wifi_softap_toomany_deny + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.ic_set_sta + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_sta_leave + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_sta_associated + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_node_leave + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_node_join + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_start_obss_scan + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_obss_scan_done_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_stop_obss_scan + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.cnx_auth_done + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .text.esp_mesh_debug_tsf_time + 0x0000000000000000 0xde /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .text.esp_mesh_get_tsf_time + 0x0000000000000000 0x48 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .text.wifi_softap_staconnected_event_policy + 0x0000000000000000 0x3c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .text.wifi_softap_toomany_deny + 0x0000000000000000 0x34 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .bss.last_self_tsf$9830 + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .bss.count$9838 + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .bss.last_parent_tsf$9829 + 0x0000000000000000 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .xt.lit 0x0000000000000000 0x230 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .xt.prop 0x0000000000000000 0x2d0c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .literal.send_inval + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .literal.recv_inval + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_send_action_register + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_send_action_unregister + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_send_action + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_recv_action_register + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_recv_action_unregister + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_recv_action + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .text.ieee80211_send_action_unregister + 0x0000000000000000 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .text.ieee80211_recv_action_unregister + 0x0000000000000000 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .xt.lit 0x0000000000000000 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .xt.prop 0x0000000000000000 0x468 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .literal.ieee80211_recv_action_vendor_spec + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.get_iav_key + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.register_ieee80211_action_vendor_get_key_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.unregister_ieee80211_action_vendor_get_key_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.ieee80211_add_action_vendor_spec_esp + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.ieee80211_alloc_action_vendor_spec + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.ieee80211_send_action_vendor_spec + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.ieee80211_action_vendor_spec_attach + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.register_ieee80211_action_vendor_spec_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.unregister_ieee80211_action_vendor_spec_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .text.get_iav_key + 0x0000000000000000 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .text.register_ieee80211_action_vendor_get_key_cb + 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .text.unregister_ieee80211_action_vendor_get_key_cb + 0x0000000000000000 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .rodata.str1.4 + 0x0000000000000000 0x23 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .text.ieee80211_add_action_vendor_spec_esp + 0x0000000000000000 0x67 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .text.ieee80211_alloc_action_vendor_spec + 0x0000000000000000 0x133 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .text.ieee80211_send_action_vendor_spec + 0x0000000000000000 0x474 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .text.register_ieee80211_action_vendor_spec_cb + 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .text.unregister_ieee80211_action_vendor_spec_cb + 0x0000000000000000 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .data.s_global_vendor_seq$8945 + 0x0000000000000000 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .bss.avs_tx_content + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .xt.lit 0x0000000000000000 0x50 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .xt.prop 0x0000000000000000 0x4ec /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .literal.ieee80211_getmgtframe + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .literal.ieee80211_getbcnframe + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .xt.lit 0x0000000000000000 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .xt.prop 0x0000000000000000 0x120 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .literal.esf_buf_free_static$part$4 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .wifirxiram.3.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .wifirxiram.4.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .literal.esf_buf_setup_for_mesh + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .literal.esf_buf_setup + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .literal.esf_buf_free_static + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .literal.esf_buf_setdown + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .text.esf_buf_setup_for_mesh + 0x0000000000000000 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .text.esf_buf_free_static + 0x0000000000000000 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .xt.lit 0x0000000000000000 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .xt.prop 0x0000000000000000 0x678 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .literal.bb_intr_handl + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_addr + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_is_pure_sta + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_ptk_alg + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_disable_crypto + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_vif + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_key + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_key + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_rssi + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_tx_pkt + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_ebuf_alloc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_ebuf_recycle_tx + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_ebuf_recycle_rx + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.esp_wifi_internal_free_rx_buffer + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_tx_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_rx_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_timer_post_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_michael_mic_failure_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_promis_filter + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_promis_filter + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_promis_ctrl_filter + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_promis_ctrl_filter + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_promis_rx_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_csi_rx_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_config_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_pm_tx_null_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_net80211_tx_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_register_timer_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_pp_post + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_enable_sniffer + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_disable_sniffer + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_next_tbtt + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_del_rx_ba + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_reset_rx_ba + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_add_rx_ba + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_reset_tbtt + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_del_key_all + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_del_key + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_ac_param + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_ampdu_op + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.esp_mesh_set_6m_rate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_trc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_bb_check_noise_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_enable + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_disable + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_enable_rx + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_disable_rx + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_beacon_int + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_mac + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_bssid + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_current_channel + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_random + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_trc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_tx_is_idle + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_pp_hdl + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_rx_policy_ubssid_check + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_rx_policy + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_sta_auth_flag + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_opmode + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_interface + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_trc_set_per_pkt_rate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_trc_update_conn_phy_mode + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_stop_hw_txq + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_stop_sw_txq + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_txq_empty + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_fix_rate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_get_fix_rate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_lmac_stop + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_create_wifi_task + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_delete_wifi_task + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_set_csi + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_mac_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_mac_deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.ic_csi_set_config + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.bb_intr_handl + 0x0000000000000000 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_is_pure_sta + 0x0000000000000000 0x28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_get_rssi + 0x0000000000000000 0x22 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_get_promis_filter + 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_get_promis_ctrl_filter + 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_register_promis_rx_cb + 0x0000000000000000 0x19 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_register_csi_rx_cb + 0x0000000000000000 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_pp_post + 0x0000000000000000 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_enable_sniffer + 0x0000000000000000 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_disable_sniffer + 0x0000000000000000 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.esp_mesh_set_6m_rate + 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_bb_check_noise_init + 0x0000000000000000 0x64 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_get_random + 0x0000000000000000 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_trc_set_per_pkt_rate + 0x0000000000000000 0x13 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .text.ic_get_fix_rate + 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .xt.lit 0x0000000000000000 0x260 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .xt.prop 0x0000000000000000 0x1158 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .literal.unlikely.lmacClearWaitQueue + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.unlikely.lmacSetWaitQueue + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacSetTxFrame + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.12.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.unlikely.lmacEndRetryAMPDUFail$isra$2 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacDiscardMSDU + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacDiscardFrameExchangeSequence + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacIsIdle + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacSetAcParam + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacInit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessTxopStartData + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.2.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacDiscardAgedMSDU + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.3.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .iram1.5.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .iram1.6.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .iram1.7.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .iram1.8.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.9.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.esp_wifi_internal_set_retry_counter + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.esp_wifi_internal_set_msdu_lifetime + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.esp_wifi_internal_get_mib + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.esp_wifi_internal_set_rts + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.esp_wifi_internal_get_rts + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .iram1.10.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.11.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.unlikely.lmacRetryTxFrame + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.unlikely.lmacEndTxopFrameExchangeSequence + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessTxopSuccess + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.4.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.unlikely.lmacProcessLongRetryFail + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessShortRetryFail + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessCtsTimeout + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessCollision + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessCollisions_task + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessTxRtsError + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessAckTimeout + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessTxError + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessTxSuccess + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessTxComplete + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacRxDone + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacDisableTransmit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmacProcessTxTimeout + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.dbg_lmac_get_acs + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.lmac_stop_hw_txq + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .wifi0iram.13.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.unlikely.lmacSetWaitQueue + 0x0000000000000000 0xd6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.lmacProcessTxopStartData + 0x0000000000000000 0x42c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.esp_wifi_internal_set_retry_counter + 0x0000000000000000 0x17 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.esp_wifi_internal_set_msdu_lifetime + 0x0000000000000000 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.esp_wifi_internal_get_mib + 0x0000000000000000 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.esp_wifi_internal_set_rts + 0x0000000000000000 0xb0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.esp_wifi_internal_get_rts + 0x0000000000000000 0x50 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.lmacProcessTxopSuccess + 0x0000000000000000 0x1cf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .text.dbg_lmac_get_acs + 0x0000000000000000 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$7686 + 0x0000000000000000 0x17 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$7570 + 0x0000000000000000 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$7676 + 0x0000000000000000 0x22 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$7666 + 0x0000000000000000 0x19 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .data.txopstart_index + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .xt.lit 0x0000000000000000 0x170 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .xt.prop 0x0000000000000000 0x1fc8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .literal.pm_coex_schm_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_coex_schm_process_restart + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_coex_slice_wifi_timeout + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_coex_schm_timeout + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_noise_check_timeout + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_sleep_delay_timeout + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_active_timeout + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_dream_timeout + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_tbtt_timeout + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifirxiram.4.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_sleep$part$1 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.wifi_apb80m_request + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.wifi_apb80m_release + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifirxiram.2.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_is_dream + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_is_sleeping + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_is_open + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_is_on_channel + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifirxiram.3.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_allow_tx + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_allow_sleep + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_noise_check_disable + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_noise_check_enable + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_noise_check + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_noise_check_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_register_pm_tx_null_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_send_nullfunc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifirxiram.5.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_sleep + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_send_probe_start + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_send_probe_stop + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_off_channel + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_on_channel + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_wake_up + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifirxiram.6.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_go_to_sleep + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_go_to_wake + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_coex_schm_timeout_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_coex_slice_timeout_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_active_timeout_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_sleep_delay_timeout_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_tbtt_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_rx_beacon_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_tx_data_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifirxiram.7.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_tx_data_done_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_tx_null_data_done_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_send_sleep_null_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_send_wake_null_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_on_coex_schm_process_restart + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_on_beacon_rx + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifirxiram.8.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_on_data_tx + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_on_data_tx_done + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_start + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_stop + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_attach + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_deattach + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_set_sleep_type + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_get_sleep_type + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_scan_lock + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_scan_unlock + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_try_scan_unlock + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_force_scan_unlock + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.pm_get_idle_wait_time + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .wifirxiram.2 0x0000000000000000 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_is_dream + 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_is_sleeping + 0x0000000000000000 0x19 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_send_nullfunc + 0x0000000000000000 0x3e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_sleep + 0x0000000000000000 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_get_sleep_type + 0x0000000000000000 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_scan_lock + 0x0000000000000000 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_scan_unlock + 0x0000000000000000 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_try_scan_unlock + 0x0000000000000000 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .text.pm_get_idle_wait_time + 0x0000000000000000 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .xt.lit 0x0000000000000000 0x1d0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .xt.prop 0x0000000000000000 0x18c0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .literal.fpm_allow_tx + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_for_bcn_only_mode.o) + .literal.fpm_do_wakeup + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_for_bcn_only_mode.o) + .literal.fpm_is_open + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_for_bcn_only_mode.o) + .literal.fpm_do_sleep + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_for_bcn_only_mode.o) + .literal.fpm_open + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_for_bcn_only_mode.o) + .literal.fpm_close + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_for_bcn_only_mode.o) + .literal.fpm_rf_is_closed + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_for_bcn_only_mode.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_for_bcn_only_mode.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_for_bcn_only_mode.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_for_bcn_only_mode.o) + .text.fpm_is_open + 0x0000000000000000 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_for_bcn_only_mode.o) + .text.fpm_do_sleep + 0x0000000000000000 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_for_bcn_only_mode.o) + .text.fpm_open + 0x0000000000000000 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_for_bcn_only_mode.o) + .text.fpm_close + 0x0000000000000000 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_for_bcn_only_mode.o) + .text.fpm_rf_is_closed + 0x0000000000000000 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_for_bcn_only_mode.o) + .xt.prop 0x0000000000000000 0xfc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_for_bcn_only_mode.o) + .literal.pp_delete_task_manually + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_set_cut_rx + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_set_cut_evt + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_can_cut_sevt + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_can_cut_evt + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.RxNodeNum + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.TxNodeNum + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.SigSpaceMalloc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.SigSpaceFree + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.DefFreqCalTimerCB + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifirxiram.5.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_register_net80211_tx_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_register_config_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_register_timer_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_register_michael_mic_failure_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.7.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppAddTimCount + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppSetStop + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppRegisterPromisRxCallback + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppRegisterRxCallback + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppUnregisterTxCallback + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_register_tx_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppRegisterTxCallback + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_unregister_tx_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppRecycleRxPkt + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppSetInterface + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifirxiram.11.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppClearRxFragment + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppGetTxQFirstAvail_Locked + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppFetchTxQFirstAvail + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppDequeueTxQ + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppRollBackTxQ + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppFillAMPDUBar + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppReSendBar + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppRecordBarRRC + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppTxqUpdateBitmap + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppGetTxqInfo + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppEnqueueTxDone + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppDequeueTxDone_Locked + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppProcTxDone + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifirxiram.20.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifirxiram.21.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifirxiram.13.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.emul_timeout + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_create_task + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_deattach + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppGetTxframe + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.23.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppTxqEmpty + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .iram1.25.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_delete_task + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppMapWaitTxq + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppProcessWaitingQueue + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppProcessWaitQ + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppDisableQueue + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppCheckTxIdle + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppSelectNextQueue + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.22.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.24.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppDiscardMPDU + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.26.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppCalTxop + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.27.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.18.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.10.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.9.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.19.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.6.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .wifi0iram.8.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppPrepareBarFrame + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_attach + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppDirectRecycleAmpdu + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppClearTxq + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.pp_stop_sw_txq + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppRecycleAmpdu + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppRegressAmpdu + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppGetTaskHdl + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .literal.ppMessageInQ + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.pp_set_cut_rx + 0x0000000000000000 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.pp_set_cut_evt + 0x0000000000000000 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.pp_can_cut_sevt + 0x0000000000000000 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.pp_can_cut_evt + 0x0000000000000000 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.RxNodeNum + 0x0000000000000000 0x4e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.TxNodeNum + 0x0000000000000000 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.SigSpaceMalloc + 0x0000000000000000 0x4c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.SigSpaceFree + 0x0000000000000000 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.DefFreqCalTimerCB + 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppAddTimCount + 0x0000000000000000 0x1e4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppRegisterPromisRxCallback + 0x0000000000000000 0x13 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppUnregisterTxCallback + 0x0000000000000000 0x3a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.pp_unregister_tx_cb + 0x0000000000000000 0x3a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.emul_timeout + 0x0000000000000000 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppProcessWaitQ + 0x0000000000000000 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppDisableQueue + 0x0000000000000000 0x3c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppDiscardMPDU + 0x0000000000000000 0x36 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .text.ppMessageInQ + 0x0000000000000000 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .data.CanDoFreqCal + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.LowestFreqOffsetInOneChk + 0x0000000000000000 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.HighestFreqOffsetInOneChk + 0x0000000000000000 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .data.NoiseTimerInterval + 0x0000000000000000 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.pend_flag_periodic_cal + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.CurSigIdxToBeUse + 0x0000000000000000 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.CurFreeSigIdx + 0x0000000000000000 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.pp_allow_cut_sevt + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.pp_need_cut_rx + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .data.libpp_reversion_git + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .xt.lit 0x0000000000000000 0x258 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .xt.prop 0x0000000000000000 0x2a84 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + COMMON 0x0000000000000000 0x1a4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .iram1.3.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .iram1.4.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_cnt_lmac_hw_show + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_cnt_lmac_int_show + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_cnt_lmac_rxtx_show + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_cnt_eb_alloc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_cnt_eb_free + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_cnt_lmac_eb_show + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_cnt_lmac_event_show + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_cnt_lmac_ps_show + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_cnt_lmac_q_show + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_his_lmac_eb_show + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_his_lmac_event_show + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_his_lmac_int_show + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_his_lmac_rx_show + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_his_lmac_tx_show + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_display_acs + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_lmac_show + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_ebuf_loc_show + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_perf_path_show + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_perf_path_set + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_perf_throughput_cal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_trc_show_sched + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_trc_show_sched_table + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_trc_show_global + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_trc_show_schedule + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_trc_rate_show + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_trc_rate_show_value + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_enable_long_rate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_adjust_long_rate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.trc_set_per_conn_rate_fix + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.trc_show_rate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.trc_modify_sched + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.trc_set_per_conn_rate_limit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.trc_set_per_conn_rate_create_new_table + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.trc_set_per_conn_rate_modify_new_table + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.trc_set_per_conn_rate_modify_global_table + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.trc_set_per_conn_rate_create_new_sched + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.trc_set_per_conn_rate_modify_new_sched + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.trc_set_per_conn_rate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.esp_wifi_internal_set_rate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_cnt_lmac_ps_reset + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.dbg_lmac_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .iram1.4 0x0000000000000000 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata.str1.4 + 0x0000000000000000 0x241e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_cnt_lmac_hw_show + 0x0000000000000000 0x7cc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_cnt_lmac_int_show + 0x0000000000000000 0x498 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_cnt_lmac_rxtx_show + 0x0000000000000000 0xb9c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_cnt_lmac_eb_show + 0x0000000000000000 0x1a6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_cnt_lmac_event_show + 0x0000000000000000 0x233 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_cnt_lmac_ps_show + 0x0000000000000000 0x4bf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_cnt_lmac_q_show + 0x0000000000000000 0x1be /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_his_lmac_eb_show + 0x0000000000000000 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_his_lmac_event_show + 0x0000000000000000 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_his_lmac_int_show + 0x0000000000000000 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_his_lmac_rx_show + 0x0000000000000000 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_his_lmac_tx_show + 0x0000000000000000 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_display_acs + 0x0000000000000000 0x1a9 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_lmac_show + 0x0000000000000000 0x93b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_ebuf_loc_show + 0x0000000000000000 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_perf_path_show + 0x0000000000000000 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_perf_path_set + 0x0000000000000000 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_perf_throughput_cal + 0x0000000000000000 0x90 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_trc_show_sched + 0x0000000000000000 0x118 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_trc_show_sched_table + 0x0000000000000000 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_trc_show_global + 0x0000000000000000 0xb27 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_trc_show_schedule + 0x0000000000000000 0x29b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_trc_rate_show + 0x0000000000000000 0xfb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata 0x0000000000000000 0xd0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_trc_rate_show_value + 0x0000000000000000 0x173 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_enable_long_rate + 0x0000000000000000 0x137 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.dbg_adjust_long_rate + 0x0000000000000000 0x128 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata.dbg_adjust_long_rate + 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.trc_set_per_conn_rate_fix + 0x0000000000000000 0x22f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.trc_show_rate + 0x0000000000000000 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.trc_modify_sched + 0x0000000000000000 0x116 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.trc_set_per_conn_rate_limit + 0x0000000000000000 0x9a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.trc_set_per_conn_rate_create_new_table + 0x0000000000000000 0x10b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.trc_set_per_conn_rate_modify_new_table + 0x0000000000000000 0xa6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.trc_set_per_conn_rate_modify_global_table + 0x0000000000000000 0xae /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.trc_set_per_conn_rate_create_new_sched + 0x0000000000000000 0x158 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.trc_set_per_conn_rate_modify_new_sched + 0x0000000000000000 0xdc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.trc_set_per_conn_rate + 0x0000000000000000 0x9d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .rodata.trc_set_per_conn_rate + 0x0000000000000000 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .text.esp_wifi_internal_set_rate + 0x0000000000000000 0x1be /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .bss.s_t_old 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .bss.s_total 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .xt.lit 0x0000000000000000 0x110 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .xt.prop 0x0000000000000000 0x2154 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .literal.pp_timer_dream + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_sleep_delay + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_coex_slice + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_coex_schm + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_active + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_tbtt + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_noise_check + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_do_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_register_post_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.pp_timer_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .xt.lit 0x0000000000000000 0x48 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .xt.prop 0x0000000000000000 0x2b8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .literal.RC_SetBasicRate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .literal.RC_GetAckRate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .literal.RC_GetRtsRate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .literal.RC_GetAckTime + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .literal.RC_GetCtsTime + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .literal.RC_GetBlockAckTime + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .text.RC_GetAckRate + 0x0000000000000000 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .text.RC_GetRtsRate + 0x0000000000000000 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .xt.lit 0x0000000000000000 0x28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .xt.prop 0x0000000000000000 0x198 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .literal.rc11NRate2SchedIdx + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc11GRate2SchedIdx + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc11BRate2SchedIdx + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcLoRaRate2SchedIdx + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rssi_margin + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_set_per_conn_fix_rate$part$4 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcTxUpdatePer + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rx11NRate2AMPDULimit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcSetTxAmpduLimit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcUpdateAMPDUParam + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcGet11NHighestRateIdx + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcGet11GHighestRateIdx + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcGet11BHighestRateIdx + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcGetHighestRateIdx$part$8 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcGetDefaultHigestRateIdx + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcGetHighestRateIdx + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcUpdatePhyMode + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .wifi0iram.2.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcUpdateRxDone + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_onAmpduOp + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .wifi0iram.3.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_set_per_pkt_rate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .wifi0iram.4.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcGetAmpduSched + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcGetRate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcReachRetryLimit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rcAttach + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_NeedRTS + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_onDisconnect + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_onScanStart + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_onScanDone + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_isAmpduOn + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_onPPTxDone + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .wifi0iram.5.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .wifi0iram.6.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_enable_trc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_get_mask + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_disable_trc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_disable_trc_by_interface + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_get_sta_trc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .wifirxiram.7.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_get_trc_by_index + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_get_trc_default + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_only_sta_trc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_update_conn_phy_mode + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.trc_deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_get_fix_rate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.rc_set_fix_rate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.dbg_get_per_conn_trc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.dbg_get_trc_table + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rx11NRate2AMPDULimit + 0x0000000000000000 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rcSetTxAmpduLimit + 0x0000000000000000 0x31 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rcGetDefaultHigestRateIdx + 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rcGetHighestRateIdx + 0x0000000000000000 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_set_per_pkt_rate + 0x0000000000000000 0x2e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_NeedRTS + 0x0000000000000000 0x9a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.trc_NeedRTS + 0x0000000000000000 0x68 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_onDisconnect + 0x0000000000000000 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_onScanStart + 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_onScanDone + 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.trc_isAmpduOn + 0x0000000000000000 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rc_get_mask + 0x0000000000000000 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rc_get_sta_trc + 0x0000000000000000 0x3e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rc_get_trc_default + 0x0000000000000000 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rc_only_sta_trc + 0x0000000000000000 0x36 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rc_get_fix_rate + 0x0000000000000000 0x3a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.dbg_get_per_conn_trc + 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.dbg_get_trc_table + 0x0000000000000000 0x77 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.dbg_get_trc_table + 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .xt.lit 0x0000000000000000 0x148 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .xt.prop 0x0000000000000000 0x231c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .literal.wdev_csi_hw_bug_check + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_csi_rx_process$part$3 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.unlikely.wDev_SnifferRxData + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Enable_Beacon_Tsf + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Disable_Beacon_Tsf + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_SetCurChannel + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_SetOpMode + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_SetAuthed + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Set_Beacon_Int + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Reset_TBTT + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Mesh_Enable_Tsf + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Mesh_Set_TBTT + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Get_Next_TBTT + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_set_promis_misc_pkt + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .iram1.7.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_pop_promis_misc_buf + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_process_misc_pkt + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_set_promis_misc_buf + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_set_promis_ctrl_pkt + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_set_promis + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_set_promis_filter + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_get_promis_filter + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_set_promis_ctrl_filter + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_get_promis_ctrl_filter + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_FetchFirstDesc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Ant_Init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_rxbuf_cnt_set + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Rxbuf_Deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifirxiram.13.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.esp_wifi_internal_set_autoack_rate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_disable_low_rate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_enable_low_rate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_is_low_rate_enable + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Initialize + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_DeInitialize + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifi0iram.15.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .iram1.20.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_EnableTransmit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_DisableTransmit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_SetMacAddress + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.Tx_Copy2Queue + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_SetBssid + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_ClearBssid + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_ProcessCollision + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_SetFrameAckType + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifirxiram.21.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifirxiram.12.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_AppendRxAmpduLensBlocks + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Get_KeyEntry + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_remove_KeyEntry + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_remove_KeyEntry_all_cnx + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Insert_KeyEntry + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Crypto_Conf + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_Crypto_Disable + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_AddRXBA + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_ResetRXBA + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_RemoveRXBA + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wDev_GetBAInfo + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifirxiram.22.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_set_csi + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_set_csi_rx_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_mac_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.wdev_mac_deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wDev_Enable_Beacon_Tsf + 0x0000000000000000 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wDev_Disable_Beacon_Tsf + 0x0000000000000000 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wdev_set_promis_misc_pkt + 0x0000000000000000 0x42 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wdev_get_promis_filter + 0x0000000000000000 0x41 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wdev_get_promis_ctrl_filter + 0x0000000000000000 0x41 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wDev_FetchFirstDesc + 0x0000000000000000 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wdev_rxbuf_cnt_set + 0x0000000000000000 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.esp_wifi_internal_set_autoack_rate + 0x0000000000000000 0x52 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .wifi0iram.15 0x0000000000000000 0x7a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wDev_DisableTransmit + 0x0000000000000000 0x29 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wDev_ClearBssid + 0x0000000000000000 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wDev_AppendRxAmpduLensBlocks + 0x0000000000000000 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .text.wdev_set_csi_rx_cb + 0x0000000000000000 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata.__FUNCTION__$8525 + 0x0000000000000000 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .bss.time_max 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .bss.time_end 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .bss.time_start + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .bss.append_count + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .bss.reload_count + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .xt.lit 0x0000000000000000 0x1d8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .xt.prop 0x0000000000000000 0x1ac4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .literal.BT_tx_8m_enable + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .literal.BT_tx_if_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .literal.BT_init_rx_filters + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .literal.bt_dgmixer_fstep_250k + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .literal.bt_rfoffset_en + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .literal.bt_bb_init_cmplx + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .literal.bt_bb_init_cmplx_reg + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .literal.rw_coex_on + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .literal.force_bt_mode + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .literal.force_wifi_mode + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .literal.unforce_wifi_mode + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .literal.coex_bt_high_prio + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .literal.bt_rxfilt + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .literal.bt_txfilt + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .literal.bt_cmplx_hq_wr + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .literal.bt_cmplx_lq_wr + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .literal.bt_cmplx_hq_re + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .literal.bt_cmplx_lq_re + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .text.BT_tx_8m_enable + 0x0000000000000000 0x7f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .text.BT_tx_if_init + 0x0000000000000000 0x94 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .text.BT_init_rx_filters + 0x0000000000000000 0x2bc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .text.bt_dgmixer_fstep_250k + 0x0000000000000000 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .text.bt_rfoffset_en + 0x0000000000000000 0x47 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .text.bt_bb_init_cmplx + 0x0000000000000000 0x26e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .text.bt_bb_init_cmplx_reg + 0x0000000000000000 0xb5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .text.rw_coex_on + 0x0000000000000000 0x90 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .text.force_bt_mode + 0x0000000000000000 0xf6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .text.force_wifi_mode + 0x0000000000000000 0xb2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .text.unforce_wifi_mode + 0x0000000000000000 0x96 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .text.bt_rxfilt + 0x0000000000000000 0x22 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .text.bt_txfilt + 0x0000000000000000 0x22 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .text.bt_cmplx_hq_wr + 0x0000000000000000 0x22 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .text.bt_cmplx_lq_wr + 0x0000000000000000 0x22 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .text.bt_cmplx_hq_re + 0x0000000000000000 0x21 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .text.bt_cmplx_lq_re + 0x0000000000000000 0x21 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .bss.force_wifi_mode_on + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .xt.lit 0x0000000000000000 0x90 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .xt.prop 0x0000000000000000 0x3e4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .literal.RFChannelSel + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) + .literal.phy_change_channel + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) + .literal.phy_change_channel_nomac + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) + .text.RFChannelSel + 0x0000000000000000 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) + .text.phy_change_channel + 0x0000000000000000 0x17 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) + .xt.lit 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) + .xt.prop 0x0000000000000000 0x90 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) + .iram1.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.get_i2c_read_mask + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.ram_pbus_force_mode + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.rfpll_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.ram_rfpll_reset + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.ram_restart_cal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.ram_wait_rfpll_cal_end + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.chip_v7_rxmax_ext_ana + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.bb_bss_cbw40_ana + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.chip_v7_adc_wr_dly + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.chip_v7_ana_rx_cfg + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.get_rf_freq_cap + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.correct_rfpll_offset + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.wr_rf_freq_mem + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.get_rf_freq_init$part$1 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.write_freq_mem_all + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.get_rf_freq_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.bt_i2c_read_set + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.bt_i2c_read_mem + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.bt_i2c_write_set + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.bt_i2c_set_wifi_data + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.phy_wifi_pll_track + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.phy_bt_pll_track + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.tsens_read_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.phy_bt_power_track + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.bt_get_i2c_data + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.write_wifi_chan_data + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.set_chan_freq_hw_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.rf_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.check_rfpll_write_i2c + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.set_chan_freq_sw_start + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.set_channel_rfpll_freq + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.chip_v7_set_chan_nomac + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.chip_v7_set_chan + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.chip_v7_set_chan_offset + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.chip_v7_set_chan_ana + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .literal.phy_set_wifi_mode_only + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.get_i2c_read_mask + 0x0000000000000000 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.chip_v7_adc_wr_dly + 0x0000000000000000 0x62 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.get_rf_freq_init + 0x0000000000000000 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.bt_i2c_read_set + 0x0000000000000000 0xd6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.bt_i2c_read_mem + 0x0000000000000000 0xb7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.phy_wifi_pll_track + 0x0000000000000000 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.phy_bt_pll_track + 0x0000000000000000 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.tsens_read_init + 0x0000000000000000 0x7e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.phy_bt_power_track + 0x0000000000000000 0x93 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.check_rfpll_write_i2c + 0x0000000000000000 0x86 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .text.chip_v7_set_chan + 0x0000000000000000 0x2f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .xt.lit 0x0000000000000000 0x188 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .xt.prop 0x0000000000000000 0x147c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .iram1.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ram_set_pbus_mem + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ram_start_tx_tone + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ram_bb_tx_ht20_cen + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ram_phy_get_noisefloor + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ram_check_noise_floor + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ram_set_noise_floor + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ram_gen_rx_gain_table + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ram_bb_bss_cbw40_dig + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ram_cbw2040_cfg + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ram_bb_bss_bw_40_en + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.bt_txdc_cal$part$3 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.bt_txiq_cal$part$4 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.spur_cal$part$5 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ram_spur_coef_cfg + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.disable_wifi_agc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.enable_wifi_agc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.set_rx_gain_cal_iq + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.set_rx_gain_cal_dc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.wr_rx_gain_mem + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.set_rx_gain_testchip_70 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.bt_correct_bbgain + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.bt_tx_gain_cal$part$2 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.bt_tx_gain_cal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.bt_index_to_bb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.bt_bb_to_index + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.bt_txdc_cal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.get_bbgain_db + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.bt_txiq_cal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.wr_bt_tx_gain_mem + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.set_tx_gain_table_bt + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.set_tx_dig_gain + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.spur_cal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.set_chanfreq + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.set_chanfreq_nomac + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.chip_sleep_prot_en + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.chip_sleep_prot_dis + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.bb_bss_cbw40 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.chip_v7_rxmax_ext_dig + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.chip_v7_rxmax_ext + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.set_cca + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.read_hw_noisefloor + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_get_txpwr_param + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.noise_check_loop + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.noise_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.target_power_backoff + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.chip_v7_set_chan_misc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.set_rx_gain_table + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.txiq_cal_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_rx11blr_cfg + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.opt_11b_resart + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.wifi_rifs_mode_en + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_chan_filt_set + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_get_tx_rate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.register_chipv7_phy_init_param + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.uart_wait_idle + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_get_romfunc_addr + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_byte_to_word + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.rf_cal_data_recovery + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.rf_cal_data_backup + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_get_rf_cal_version + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_rfcal_data_check + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.tx_cont_en + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.tx_cont_dis + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.tx_cont_cfg + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_get_tx_pwr + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_init_pwr_print + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_get_rx_freq + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.set_xpd_sar + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_close_rf + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_set_most_tpw + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_get_most_tpw + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_rx_sense_set + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_ant_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.bb_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.register_chipv7_phy + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ant_dft_cfg + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ant_wifitx_cfg + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ant_wifirx_cfg + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ant_bttx_cfg + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.ant_btrx_cfg + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.esp_tx_state_out + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_chan_dump_cfg + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.chan14_mic_cfg + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.chan14_mic_enable + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_get_adc_rand + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_enable_low_rate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_disable_low_rate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.phy_close_pa + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .literal.btpwr_backoff + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .text.bt_tx_gain_cal + 0x0000000000000000 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .text.bt_bb_to_index + 0x0000000000000000 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .text.bt_txdc_cal + 0x0000000000000000 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .text.bt_txiq_cal + 0x0000000000000000 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .text.set_tx_dig_gain + 0x0000000000000000 0x40 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .text.spur_cal + 0x0000000000000000 0x28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .text.set_chanfreq + 0x0000000000000000 0x2f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .text.chip_sleep_prot_en + 0x0000000000000000 0x9b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .text.chip_sleep_prot_dis + 0x0000000000000000 0x2e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .text.chip_v7_rxmax_ext_dig + 0x0000000000000000 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .text.chip_v7_rxmax_ext + 0x0000000000000000 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .text.set_cca 0x0000000000000000 0x94 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_get_txpwr_param + 0x0000000000000000 0x81 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .text.target_power_backoff + 0x0000000000000000 0x37 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_rx11blr_cfg + 0x0000000000000000 0x76 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .text.wifi_rifs_mode_en + 0x0000000000000000 0x21 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_get_tx_rate + 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .text.uart_wait_idle + 0x0000000000000000 0x33 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .text.tx_cont_en + 0x0000000000000000 0x64 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .text.tx_cont_dis + 0x0000000000000000 0x52 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .text.tx_cont_cfg + 0x0000000000000000 0x21 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_get_tx_pwr + 0x0000000000000000 0x59 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_init_pwr_print + 0x0000000000000000 0x152 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_get_rx_freq + 0x0000000000000000 0x51 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_rx_sense_set + 0x0000000000000000 0x99 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .text.ant_bttx_cfg + 0x0000000000000000 0x48 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .text.ant_btrx_cfg + 0x0000000000000000 0xb6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .text.esp_tx_state_out + 0x0000000000000000 0x123 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .text.chan14_mic_enable + 0x0000000000000000 0x71 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_get_adc_rand + 0x0000000000000000 0x193 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_enable_low_rate + 0x0000000000000000 0x76 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_disable_low_rate + 0x0000000000000000 0x76 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .text.phy_close_pa + 0x0000000000000000 0xa5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .text.btpwr_backoff + 0x0000000000000000 0x74 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .rodata.__func__$5545 + 0x0000000000000000 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .bss.bt_txpwr_backoff + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .bss.chan14_mic_flag + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .bss.adaptive_test_en + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .bss.rxmax_ext_level + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .xt.lit 0x0000000000000000 0x2e0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .xt.prop 0x0000000000000000 0x26c4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .iram1.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_index_to_txbbgain + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_txdc_cal_v70 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.pwdet_sar2_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_en_pwdet + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.txcal_debuge_mode + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_txcal_work_mode + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_get_fm_sar_dout + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_txiq_get_mis_pwr + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_txiq_cover + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.rfcal_txiq + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_iq_est_enable + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_iq_est_disable + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_dc_iq_est + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_pbus_rx_dco_cal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.pbus_rx_dco_cal_1step + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.rc_cal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.tx_cap_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_meas_tone_pwr_db + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_rfcal_pwrctrl + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_tx_pwr_backoff + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.cal_rf_ana_gain + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.tx_pwctrl_init_cal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.tx_pwctrl_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.bt_tx_pwctrl_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.set_bt_chan_cal_interp + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.phy_set_bt_dig_gain + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_phy_get_vdd33 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.txpwr_offset + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.phy_get_bb_freqoffset + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.phy_set_bbfreq_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.ram_tx_pwctrl_bg_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.phy_pwdet_always_en + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.dpd_scale_set + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .text.set_bt_chan_cal_interp + 0x0000000000000000 0xcc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .text.phy_set_bt_dig_gain + 0x0000000000000000 0x4a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .text.phy_get_bb_freqoffset + 0x0000000000000000 0x73 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .text.phy_pwdet_always_en + 0x0000000000000000 0x61 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .text.dpd_scale_set + 0x0000000000000000 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .xt.lit 0x0000000000000000 0x178 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .xt.prop 0x0000000000000000 0x1be4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .literal.wpa_printf + 0x0000000000000000 0x8 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .literal.wpa2_printf + 0x0000000000000000 0x8 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .literal.wps_printf + 0x0000000000000000 0x8 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .literal.pp_printf + 0x0000000000000000 0x8 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .literal.sc_printf + 0x0000000000000000 0x8 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .literal.core_printf + 0x0000000000000000 0x8 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .literal.coexist_printf + 0x0000000000000000 0x8 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .text.rtc_printf + 0x0000000000000000 0x7 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .rodata.wpa_printf.str1.4 + 0x0000000000000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .text.wpa_printf + 0x0000000000000000 0x2a esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .rodata.wpa2_printf.str1.4 + 0x0000000000000000 0x5 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .text.wpa2_printf + 0x0000000000000000 0x2a esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .rodata.wps_printf.str1.4 + 0x0000000000000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .text.wps_printf + 0x0000000000000000 0x2a esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .rodata.pp_printf.str1.4 + 0x0000000000000000 0x3 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .text.pp_printf + 0x0000000000000000 0x2a esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .rodata.sc_printf.str1.4 + 0x0000000000000000 0xc esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .text.sc_printf + 0x0000000000000000 0x2a esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .rodata.core_printf.str1.4 + 0x0000000000000000 0x5 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .text.core_printf + 0x0000000000000000 0x2a esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .rodata.coexist_printf.str1.4 + 0x0000000000000000 0x8 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .text.coexist_printf + 0x0000000000000000 0x2a esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .xt.lit 0x0000000000000000 0x50 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .xt.prop 0x0000000000000000 0x240 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .literal.xRingbufferCreateNoSplit + 0x0000000000000000 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferSendAcquire + 0x0000000000000000 0x3c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferSendComplete + 0x0000000000000000 0x28 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveSplit + 0x0000000000000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveSplitFromISR + 0x0000000000000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveUpTo + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveUpToFromISR + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferGetCurFreeSize + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferAddToQueueSetRead + 0x0000000000000000 0x28 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferCanRead + 0x0000000000000000 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferRemoveFromQueueSetRead + 0x0000000000000000 0x28 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.vRingbufferGetInfo + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferPrintInfo + 0x0000000000000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferCreateNoSplit + 0x0000000000000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferSendAcquire + 0x0000000000000000 0x11c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferSendComplete + 0x0000000000000000 0x75 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveSplit + 0x0000000000000000 0xa0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveSplitFromISR + 0x0000000000000000 0xa0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveUpTo + 0x0000000000000000 0x60 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveUpToFromISR + 0x0000000000000000 0x5b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferGetCurFreeSize + 0x0000000000000000 0x38 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferAddToQueueSetRead + 0x0000000000000000 0x76 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferCanRead + 0x0000000000000000 0x29 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferRemoveFromQueueSetRead + 0x0000000000000000 0x76 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.vRingbufferGetInfo + 0x0000000000000000 0x66 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferPrintInfo.str1.4 + 0x0000000000000000 0x3d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferPrintInfo + 0x0000000000000000 0x4a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5504 + 0x0000000000000000 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5499 + 0x0000000000000000 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5487 + 0x0000000000000000 0x22 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5481 + 0x0000000000000000 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5473 + 0x0000000000000000 0x1d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5466 + 0x0000000000000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5436 + 0x0000000000000000 0x1e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5427 + 0x0000000000000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5415 + 0x0000000000000000 0x1f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5402 + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5350 + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5337 + 0x0000000000000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .xt.lit 0x0000000000000000 0x128 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .xt.prop 0x0000000000000000 0x15fc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.touch_pad_isr_deregister + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_set_voltage + 0x0000000000000000 0x44 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_get_voltage + 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_set_cnt_mode + 0x0000000000000000 0x44 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_get_cnt_mode + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_io_init + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_fsm_start + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_fsm_stop + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_set_fsm_mode + 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_get_fsm_mode + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_sw_start + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_set_thresh + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_get_thresh + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.touch_pad_get_wakeup_status + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .iram1.15.literal + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .iram1.16.literal + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_isr_deregister + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.touch_pad_set_voltage.str1.4 + 0x0000000000000000 0xb6 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_set_voltage + 0x0000000000000000 0xea esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_get_voltage + 0x0000000000000000 0x36 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.touch_pad_set_cnt_mode.str1.4 + 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_set_cnt_mode + 0x0000000000000000 0xcc esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_get_cnt_mode + 0x0000000000000000 0x6c esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_io_init + 0x0000000000000000 0x6c esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_fsm_start + 0x0000000000000000 0x2d esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_fsm_stop + 0x0000000000000000 0x2d esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.touch_pad_set_fsm_mode.str1.4 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_set_fsm_mode + 0x0000000000000000 0x92 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_get_fsm_mode + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_sw_start + 0x0000000000000000 0x41 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_set_thresh + 0x0000000000000000 0xae esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_get_thresh + 0x0000000000000000 0x92 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .text.touch_pad_get_wakeup_status + 0x0000000000000000 0x47 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .iram1.15 0x0000000000000000 0x41 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .iram1.16 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.__FUNCTION__$7094 + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.__FUNCTION__$7090 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.__FUNCTION__$7085 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.__FUNCTION__$7074 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.__FUNCTION__$7063 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.__FUNCTION__$7058 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.__FUNCTION__$7051 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .rodata.__FUNCTION__$7038 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .debug_frame 0x0000000000000000 0x190 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .debug_info 0x0000000000000000 0x6be6 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .debug_abbrev 0x0000000000000000 0x426 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .debug_loc 0x0000000000000000 0x57f esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .debug_aranges + 0x0000000000000000 0x98 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .debug_ranges 0x0000000000000000 0x88 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .debug_line 0x0000000000000000 0x12cc esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .debug_str 0x0000000000000000 0x4188 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .xt.lit 0x0000000000000000 0x80 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .xt.prop 0x0000000000000000 0x57c esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .literal.http_method_str + 0x0000000000000000 0x8 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .literal.http_errno_name + 0x0000000000000000 0x18 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .literal.http_errno_description + 0x0000000000000000 0x18 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .literal.http_body_is_final + 0x0000000000000000 0x8 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .literal.http_parser_version + 0x0000000000000000 0x4 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .text 0x0000000000000000 0x0 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .data 0x0000000000000000 0x0 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .rodata.http_method_str.str1.4 + 0x0000000000000000 0xa esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .text.http_method_str + 0x0000000000000000 0x1a esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .rodata.http_errno_name.str1.4 + 0x0000000000000000 0x2f esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .text.http_errno_name + 0x0000000000000000 0x26 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .text.http_errno_description + 0x0000000000000000 0x26 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .text.http_body_is_final + 0x0000000000000000 0x1b esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .text.http_parser_version + 0x0000000000000000 0x8 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .rodata.__func__$3170 + 0x0000000000000000 0x17 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .rodata.__func__$3166 + 0x0000000000000000 0x10 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .rodata.http_strerror_tab + 0x0000000000000000 0x108 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .xt.lit 0x0000000000000000 0x78 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .xt.prop 0x0000000000000000 0x35a0 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .literal.ms_to_timeval + 0x0000000000000000 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.tcp_write + 0x0000000000000000 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.tcp_read + 0x0000000000000000 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.resolve_host_name + 0x0000000000000000 0x24 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.esp_tcp_connect + 0x0000000000000000 0x98 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.create_ssl_handle + 0x0000000000000000 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.esp_tls_handshake + 0x0000000000000000 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.esp_tls_low_level_conn + 0x0000000000000000 0x7c esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.get_port + 0x0000000000000000 0x14 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.esp_tls_conn_delete + 0x0000000000000000 0x10 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.esp_tls_init + 0x0000000000000000 0x10 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.esp_tls_conn_new + 0x0000000000000000 0x38 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.esp_tls_conn_new_sync + 0x0000000000000000 0x30 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.esp_tls_conn_new_async + 0x0000000000000000 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.esp_tls_conn_http_new + 0x0000000000000000 0x1c esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.esp_tls_conn_http_new_async + 0x0000000000000000 0x14 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.esp_tls_get_global_ca_store + 0x0000000000000000 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.esp_tls_get_conn_sockfd + 0x0000000000000000 0x10 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.esp_tls_init_global_ca_store + 0x0000000000000000 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.esp_tls_set_global_ca_store + 0x0000000000000000 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.esp_tls_free_global_ca_store + 0x0000000000000000 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.ms_to_timeval + 0x0000000000000000 0x37 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.tcp_write + 0x0000000000000000 0x19 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.tcp_read + 0x0000000000000000 0x19 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .rodata.resolve_host_name.str1.4 + 0x0000000000000000 0x3e esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.resolve_host_name + 0x0000000000000000 0x6e esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .rodata.esp_tcp_connect.str1.4 + 0x0000000000000000 0x11d esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tcp_connect + 0x0000000000000000 0x1be esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.create_ssl_handle + 0x0000000000000000 0x15 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_handshake + 0x0000000000000000 0x11 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .rodata.esp_tls_low_level_conn.str1.4 + 0x0000000000000000 0xc5 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_low_level_conn + 0x0000000000000000 0x23c esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .rodata.get_port.str1.4 + 0x0000000000000000 0xe esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.get_port + 0x0000000000000000 0x52 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_conn_delete + 0x0000000000000000 0x32 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_init + 0x0000000000000000 0x42 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .rodata.esp_tls_conn_new.str1.4 + 0x0000000000000000 0x82 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_conn_new + 0x0000000000000000 0xa8 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .rodata.esp_tls_conn_new_sync.str1.4 + 0x0000000000000000 0x4a esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_conn_new_sync + 0x0000000000000000 0x9f esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_conn_new_async + 0x0000000000000000 0x18 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_conn_http_new + 0x0000000000000000 0x62 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_conn_http_new_async + 0x0000000000000000 0x4a esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_get_global_ca_store + 0x0000000000000000 0xd esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .rodata.esp_tls_get_conn_sockfd.str1.4 + 0x0000000000000000 0x30 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_get_conn_sockfd + 0x0000000000000000 0x48 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_get_and_clear_last_error + 0x0000000000000000 0x45 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_init_global_ca_store + 0x0000000000000000 0xd esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_set_global_ca_store + 0x0000000000000000 0x11 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .text.esp_tls_free_global_ca_store + 0x0000000000000000 0xb esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .xt.lit 0x0000000000000000 0xc0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .xt.prop 0x0000000000000000 0x7e0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .literal.esp_mbedtls_verify_certificate + 0x0000000000000000 0x38 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .literal.esp_mbedtls_handshake + 0x0000000000000000 0x20 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .literal.esp_mbedtls_conn_delete + 0x0000000000000000 0x8 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .literal.esp_mbedtls_init_global_ca_store + 0x0000000000000000 0x1c esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .literal.esp_mbedtls_set_global_ca_store + 0x0000000000000000 0x3c esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .literal.esp_mbedtls_get_global_ca_store + 0x0000000000000000 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .literal.esp_mbedtls_free_global_ca_store + 0x0000000000000000 0x8 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .rodata.esp_mbedtls_verify_certificate.str1.4 + 0x0000000000000000 0xa1 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .text.esp_mbedtls_verify_certificate + 0x0000000000000000 0x92 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .rodata.esp_mbedtls_handshake.str1.4 + 0x0000000000000000 0x3c esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .text.esp_mbedtls_handshake + 0x0000000000000000 0x93 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .text.esp_mbedtls_conn_delete + 0x0000000000000000 0x22 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .rodata.esp_mbedtls_init_global_ca_store.str1.4 + 0x0000000000000000 0x33 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .text.esp_mbedtls_init_global_ca_store + 0x0000000000000000 0x49 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .rodata.esp_mbedtls_set_global_ca_store.str1.4 + 0x0000000000000000 0x94 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .text.esp_mbedtls_set_global_ca_store + 0x0000000000000000 0xa8 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .text.esp_mbedtls_get_global_ca_store + 0x0000000000000000 0xa esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .text.esp_mbedtls_free_global_ca_store + 0x0000000000000000 0x1a esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .xt.lit 0x0000000000000000 0x98 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .xt.prop 0x0000000000000000 0x948 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .literal.lwip_gethostbyname + 0x0000000000000000 0x24 esp-idf/lwip/liblwip.a(netdb.c.obj) + .literal.lwip_gethostbyname_r + 0x0000000000000000 0xc esp-idf/lwip/liblwip.a(netdb.c.obj) + .literal.lwip_freeaddrinfo + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(netdb.c.obj) + .literal.lwip_getaddrinfo + 0x0000000000000000 0x4c esp-idf/lwip/liblwip.a(netdb.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(netdb.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(netdb.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(netdb.c.obj) + .text.lwip_gethostbyname + 0x0000000000000000 0x6c esp-idf/lwip/liblwip.a(netdb.c.obj) + .text.lwip_gethostbyname_r + 0x0000000000000000 0xbb esp-idf/lwip/liblwip.a(netdb.c.obj) + .text.lwip_freeaddrinfo + 0x0000000000000000 0x19 esp-idf/lwip/liblwip.a(netdb.c.obj) + .rodata.lwip_getaddrinfo.str1.4 + 0x0000000000000000 0x87 esp-idf/lwip/liblwip.a(netdb.c.obj) + .text.lwip_getaddrinfo + 0x0000000000000000 0x27d esp-idf/lwip/liblwip.a(netdb.c.obj) + .rodata.__func__$7138 + 0x0000000000000000 0x11 esp-idf/lwip/liblwip.a(netdb.c.obj) + .bss.s_aliases$7097 + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(netdb.c.obj) + .bss.s_hostent$7096 + 0x0000000000000000 0x14 esp-idf/lwip/liblwip.a(netdb.c.obj) + .bss.s_hostname$7100 + 0x0000000000000000 0x101 esp-idf/lwip/liblwip.a(netdb.c.obj) + .bss.s_phostent_addr$7099 + 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(netdb.c.obj) + .bss.s_hostent_addr$7098 + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(netdb.c.obj) + .debug_frame 0x0000000000000000 0x70 esp-idf/lwip/liblwip.a(netdb.c.obj) + .debug_info 0x0000000000000000 0x246e esp-idf/lwip/liblwip.a(netdb.c.obj) + .debug_abbrev 0x0000000000000000 0x3a3 esp-idf/lwip/liblwip.a(netdb.c.obj) + .debug_loc 0x0000000000000000 0x6d0 esp-idf/lwip/liblwip.a(netdb.c.obj) + .debug_aranges + 0x0000000000000000 0x38 esp-idf/lwip/liblwip.a(netdb.c.obj) + .debug_ranges 0x0000000000000000 0x40 esp-idf/lwip/liblwip.a(netdb.c.obj) + .debug_line 0x0000000000000000 0x11b9 esp-idf/lwip/liblwip.a(netdb.c.obj) + .debug_str 0x0000000000000000 0x1c2c esp-idf/lwip/liblwip.a(netdb.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/lwip/liblwip.a(netdb.c.obj) + .xt.lit 0x0000000000000000 0x20 esp-idf/lwip/liblwip.a(netdb.c.obj) + .xt.prop 0x0000000000000000 0x3fc esp-idf/lwip/liblwip.a(netdb.c.obj) + COMMON 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(netdb.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(wlanif.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(wlanif.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(wlanif.c.obj) + .xt.lit 0x0000000000000000 0x38 esp-idf/lwip/liblwip.a(wlanif.c.obj) + .xt.prop 0x0000000000000000 0x204 esp-idf/lwip/liblwip.a(wlanif.c.obj) + .literal.ethernet_free_rx_buf_l2 + 0x0000000000000000 0x4 esp-idf/lwip/liblwip.a(ethernetif.c.obj) + .literal.ethernet_low_level_output + 0x0000000000000000 0x18 esp-idf/lwip/liblwip.a(ethernetif.c.obj) + .literal.ethernetif_input + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(ethernetif.c.obj) + .literal.ethernetif_init + 0x0000000000000000 0x38 esp-idf/lwip/liblwip.a(ethernetif.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ethernetif.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ethernetif.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ethernetif.c.obj) + .text.ethernet_low_level_init + 0x0000000000000000 0x15 esp-idf/lwip/liblwip.a(ethernetif.c.obj) + .text.ethernet_free_rx_buf_l2 + 0x0000000000000000 0xe esp-idf/lwip/liblwip.a(ethernetif.c.obj) + .text.ethernet_low_level_output + 0x0000000000000000 0x7a esp-idf/lwip/liblwip.a(ethernetif.c.obj) + .text.ethernetif_input + 0x0000000000000000 0x5b esp-idf/lwip/liblwip.a(ethernetif.c.obj) + .rodata.ethernetif_init.str1.4 + 0x0000000000000000 0x62 esp-idf/lwip/liblwip.a(ethernetif.c.obj) + .text.ethernetif_init + 0x0000000000000000 0x7c esp-idf/lwip/liblwip.a(ethernetif.c.obj) + .rodata.__func__$8796 + 0x0000000000000000 0x10 esp-idf/lwip/liblwip.a(ethernetif.c.obj) + .debug_frame 0x0000000000000000 0x88 esp-idf/lwip/liblwip.a(ethernetif.c.obj) + .debug_info 0x0000000000000000 0x48bc esp-idf/lwip/liblwip.a(ethernetif.c.obj) + .debug_abbrev 0x0000000000000000 0x3df esp-idf/lwip/liblwip.a(ethernetif.c.obj) + .debug_loc 0x0000000000000000 0x249 esp-idf/lwip/liblwip.a(ethernetif.c.obj) + .debug_aranges + 0x0000000000000000 0x40 esp-idf/lwip/liblwip.a(ethernetif.c.obj) + .debug_ranges 0x0000000000000000 0x30 esp-idf/lwip/liblwip.a(ethernetif.c.obj) + .debug_line 0x0000000000000000 0xc49 esp-idf/lwip/liblwip.a(ethernetif.c.obj) + .debug_str 0x0000000000000000 0x3544 esp-idf/lwip/liblwip.a(ethernetif.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/lwip/liblwip.a(ethernetif.c.obj) + .xt.lit 0x0000000000000000 0x20 esp-idf/lwip/liblwip.a(ethernetif.c.obj) + .xt.prop 0x0000000000000000 0x1b0 esp-idf/lwip/liblwip.a(ethernetif.c.obj) + .text 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .data 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .xt.prop 0x0000000000000000 0x54 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .literal.touch_hal_config + 0x0000000000000000 0x14 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .literal.touch_hal_set_voltage + 0x0000000000000000 0x10 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .literal.touch_hal_get_voltage + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .literal.touch_hal_set_meas_mode + 0x0000000000000000 0xc esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .literal.touch_hal_get_meas_mode + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .text.touch_hal_config + 0x0000000000000000 0xa1 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .text.touch_hal_set_voltage + 0x0000000000000000 0x5f esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .text.touch_hal_get_voltage + 0x0000000000000000 0x29 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .text.touch_hal_set_meas_mode + 0x0000000000000000 0x63 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .text.touch_hal_get_meas_mode + 0x0000000000000000 0x43 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .debug_frame 0x0000000000000000 0x88 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .debug_info 0x0000000000000000 0x4d77 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .debug_abbrev 0x0000000000000000 0x36c esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .debug_loc 0x0000000000000000 0x4e3 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .debug_aranges + 0x0000000000000000 0x40 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .debug_ranges 0x0000000000000000 0x30 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .debug_line 0x0000000000000000 0x8fb esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .debug_str 0x0000000000000000 0x2d57 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .xt.prop 0x0000000000000000 0x1c8 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .literal.touch_hal_init + 0x0000000000000000 0x3c esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .literal.touch_hal_deinit + 0x0000000000000000 0x10 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .literal.touch_hal_get_wakeup_status + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .text.touch_hal_init + 0x0000000000000000 0x10f esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .text.touch_hal_deinit + 0x0000000000000000 0x3d esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .text.touch_hal_get_wakeup_status + 0x0000000000000000 0x52 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .debug_frame 0x0000000000000000 0x58 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .debug_info 0x0000000000000000 0x4999 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .debug_abbrev 0x0000000000000000 0x33f esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .debug_loc 0x0000000000000000 0xdf esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .debug_aranges + 0x0000000000000000 0x30 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .debug_ranges 0x0000000000000000 0x20 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .debug_line 0x0000000000000000 0x719 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .debug_str 0x0000000000000000 0x2b9a esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .xt.prop 0x0000000000000000 0xa8 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(touch_sensor_periph.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(touch_sensor_periph.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(touch_sensor_periph.c.obj) + .rodata.touch_sensor_channel_io_map + 0x0000000000000000 0x28 esp-idf/soc/soc/esp32/libsoc_esp32.a(touch_sensor_periph.c.obj) + .debug_info 0x0000000000000000 0x4566 esp-idf/soc/soc/esp32/libsoc_esp32.a(touch_sensor_periph.c.obj) + .debug_abbrev 0x0000000000000000 0x228 esp-idf/soc/soc/esp32/libsoc_esp32.a(touch_sensor_periph.c.obj) + .debug_aranges + 0x0000000000000000 0x18 esp-idf/soc/soc/esp32/libsoc_esp32.a(touch_sensor_periph.c.obj) + .debug_line 0x0000000000000000 0x368 esp-idf/soc/soc/esp32/libsoc_esp32.a(touch_sensor_periph.c.obj) + .debug_str 0x0000000000000000 0x280e esp-idf/soc/soc/esp32/libsoc_esp32.a(touch_sensor_periph.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/soc/soc/esp32/libsoc_esp32.a(touch_sensor_periph.c.obj) + .xt.prop 0x0000000000000000 0xc esp-idf/soc/soc/esp32/libsoc_esp32.a(touch_sensor_periph.c.obj) + .literal.esp_netif_get_sta_list + 0x0000000000000000 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_sta_list.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_sta_list.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_sta_list.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_sta_list.c.obj) + .text.esp_netif_get_sta_list + 0x0000000000000000 0x69 esp-idf/esp_netif/libesp_netif.a(esp_netif_sta_list.c.obj) + .debug_frame 0x0000000000000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_sta_list.c.obj) + .debug_info 0x0000000000000000 0x407b esp-idf/esp_netif/libesp_netif.a(esp_netif_sta_list.c.obj) + .debug_abbrev 0x0000000000000000 0x326 esp-idf/esp_netif/libesp_netif.a(esp_netif_sta_list.c.obj) + .debug_loc 0x0000000000000000 0x65 esp-idf/esp_netif/libesp_netif.a(esp_netif_sta_list.c.obj) + .debug_aranges + 0x0000000000000000 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_sta_list.c.obj) + .debug_ranges 0x0000000000000000 0x28 esp-idf/esp_netif/libesp_netif.a(esp_netif_sta_list.c.obj) + .debug_line 0x0000000000000000 0x8b0 esp-idf/esp_netif/libesp_netif.a(esp_netif_sta_list.c.obj) + .debug_str 0x0000000000000000 0x30ba esp-idf/esp_netif/libesp_netif.a(esp_netif_sta_list.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/esp_netif/libesp_netif.a(esp_netif_sta_list.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_sta_list.c.obj) + .xt.prop 0x0000000000000000 0x60 esp-idf/esp_netif/libesp_netif.a(esp_netif_sta_list.c.obj) + .literal.esp_eth_post_attach + 0x0000000000000000 0x44 esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + .literal.eth_input_to_netif + 0x0000000000000000 0x4 esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + .literal.esp_eth_new_netif_glue + 0x0000000000000000 0x1c esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + .literal.esp_eth_del_netif_glue + 0x0000000000000000 0x8 esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + .literal.esp_eth_clear_default_handlers + 0x0000000000000000 0x40 esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + .literal.esp_eth_set_default_handlers + 0x0000000000000000 0x44 esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + .rodata.esp_eth_post_attach.str1.4 + 0x0000000000000000 0x102 esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + .text.esp_eth_post_attach + 0x0000000000000000 0xac esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + .text.eth_input_to_netif + 0x0000000000000000 0x15 esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + .rodata.esp_eth_new_netif_glue.str1.4 + 0x0000000000000000 0x30 esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + .text.esp_eth_new_netif_glue + 0x0000000000000000 0x44 esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + .text.esp_eth_del_netif_glue + 0x0000000000000000 0x18 esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + .rodata.esp_eth_clear_default_handlers.str1.4 + 0x0000000000000000 0x36 esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + .text.esp_eth_clear_default_handlers + 0x0000000000000000 0x75 esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + .text.esp_eth_set_default_handlers + 0x0000000000000000 0xa6 esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + .rodata.__func__$8138 + 0x0000000000000000 0x14 esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + .debug_frame 0x0000000000000000 0xa0 esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + .debug_info 0x0000000000000000 0x458f esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + .debug_abbrev 0x0000000000000000 0x39b esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + .debug_loc 0x0000000000000000 0x23b esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + .debug_aranges + 0x0000000000000000 0x48 esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + .debug_ranges 0x0000000000000000 0x38 esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + .debug_line 0x0000000000000000 0xbfe esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + .debug_str 0x0000000000000000 0x342a esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + .xt.prop 0x0000000000000000 0x18c esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + .literal.mbedtls_ssl_conf_dtls_anti_replay + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_set_timer_cb + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_set_hs_own_cert + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_conf_psk + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_set_hs_psk + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_conf_dh_param + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_conf_dh_param_ctx + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_conf_fallback + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_conf_cert_req_ca_list + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_conf_max_frag_len + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_conf_truncated_hmac + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_conf_cbc_record_splitting + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_conf_renegotiation + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_conf_renegotiation_period + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_conf_session_tickets + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_ciphersuite + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_version + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_session_copy + 0x0000000000000000 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_set_session + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_get_session + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_session_reset + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_send_fatal_handshake_failure + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_close_notify + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_dtls_anti_replay + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_dtls_badmac_limit + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_datagram_packing + 0x0000000000000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_handshake_timeout + 0x0000000000000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_verify + 0x0000000000000000 0x9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_dbg + 0x0000000000000000 0x9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_mtu + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_read_timeout + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_timer_cb + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_session_cache + 0x0000000000000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_ciphersuites + 0x0000000000000000 0xd esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_ciphersuites_for_version + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_cert_profile + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_hs_own_cert + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_hs_ca_chain + 0x0000000000000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_hs_authmode + 0x0000000000000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_psk + 0x0000000000000000 0xf1 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_hs_psk + 0x0000000000000000 0x79 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_psk_cb + 0x0000000000000000 0xa esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_dh_param + 0x0000000000000000 0x42 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_dh_param_ctx + 0x0000000000000000 0x3e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_dhm_min_bitlen + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_sig_hashes + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_curves + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_sni + 0x0000000000000000 0x9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_alpn_protocol + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_max_version + 0x0000000000000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_min_version + 0x0000000000000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_fallback + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_cert_req_ca_list + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_encrypt_then_mac + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_extended_master_secret + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_max_frag_len + 0x0000000000000000 0x3d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_truncated_hmac + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_cbc_record_splitting + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_legacy_renegotiation + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_renegotiation + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_renegotiation_enforced + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_renegotiation_period + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_session_tickets + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_session_tickets_cb + 0x0000000000000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_conf_export_keys_cb + 0x0000000000000000 0xb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_check_pending + 0x0000000000000000 0x41 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_verify_result + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_ciphersuite + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.mbedtls_ssl_get_version.str1.4 + 0x0000000000000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_version + 0x0000000000000000 0x61 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_peer_cert + 0x0000000000000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_session_copy + 0x0000000000000000 0x96 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_set_session + 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_get_session + 0x0000000000000000 0x49 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_session_reset + 0x0000000000000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_send_fatal_handshake_failure + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_close_notify + 0x0000000000000000 0x46 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .xt.lit 0x0000000000000000 0x438 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .xt.prop 0x0000000000000000 0x5c4c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_net_connect + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .literal.mbedtls_net_bind + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .literal.mbedtls_net_accept + 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .literal.mbedtls_net_set_block + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .literal.mbedtls_net_set_nonblock + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .literal.mbedtls_net_usleep + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .literal.mbedtls_net_recv_timeout + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .literal.mbedtls_net_free + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .text.net_prepare + 0x0000000000000000 0x7 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .text.mbedtls_net_init + 0x0000000000000000 0x9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .text.mbedtls_net_connect + 0x0000000000000000 0x9c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .text.mbedtls_net_bind + 0x0000000000000000 0xec esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .text.mbedtls_net_accept + 0x0000000000000000 0x134 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .text.mbedtls_net_set_block + 0x0000000000000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .text.mbedtls_net_set_nonblock + 0x0000000000000000 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .text.mbedtls_net_usleep + 0x0000000000000000 0x2b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .text.mbedtls_net_recv_timeout + 0x0000000000000000 0xae esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .text.mbedtls_net_free + 0x0000000000000000 0x1e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .xt.lit 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .xt.prop 0x0000000000000000 0x660 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .literal.mbedtls_ssl_ciphersuite_from_string + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .literal.mbedtls_ssl_get_ciphersuite_name + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .literal.mbedtls_ssl_get_ciphersuite_id + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.mbedtls_ssl_ciphersuite_from_string + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .rodata.mbedtls_ssl_get_ciphersuite_name.str1.4 + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.mbedtls_ssl_get_ciphersuite_name + 0x0000000000000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text.mbedtls_ssl_get_ciphersuite_id + 0x0000000000000000 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .xt.prop 0x0000000000000000 0x3f0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + .xt.lit 0x0000000000000000 0x100 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + .xt.prop 0x0000000000000000 0x1b48 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + .literal.mbedtls_ssl_set_client_transport_id + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + .text.mbedtls_ssl_set_client_transport_id + 0x0000000000000000 0x45 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + .text.mbedtls_ssl_conf_dtls_cookies + 0x0000000000000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + .xt.lit 0x0000000000000000 0x108 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + .xt.prop 0x0000000000000000 0x2220 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + .literal.load_file + 0x0000000000000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + .literal.mbedtls_dhm_parse_dhm + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + .literal.mbedtls_dhm_parse_dhmfile + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + .literal.mbedtls_dhm_self_test + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + .rodata.load_file.str1.4 + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + .text.load_file + 0x0000000000000000 0xd2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + .rodata.mbedtls_dhm_parse_dhm.str1.4 + 0x0000000000000000 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + .text.mbedtls_dhm_parse_dhm + 0x0000000000000000 0x112 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + .text.mbedtls_dhm_parse_dhmfile + 0x0000000000000000 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + .rodata.mbedtls_dhm_self_test.str1.4 + 0x0000000000000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + .text.mbedtls_dhm_self_test + 0x0000000000000000 0x4f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + .rodata.mbedtls_test_dhm_params + 0x0000000000000000 0xfb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + .xt.lit 0x0000000000000000 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + .xt.prop 0x0000000000000000 0x78c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .xt.lit 0x0000000000000000 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .xt.prop 0x0000000000000000 0x5b8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_param.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_param.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_param.o) + .xt.prop 0x0000000000000000 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_param.o) + .literal.coex_schm_status_change + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_status_bit_set + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_status_bit_clear + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_status_get + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_curr_phase_idx_set + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_curr_phase_idx_get + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_interval_get + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_interval_set + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_curr_period_get + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_curr_phase_get + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_get_phase_by_idx + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_register_btdm_callback + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .literal.coex_wifi_channel_set + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .literal.coex_wifi_channel_get + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .literal.coex_register_wifi_channel_change_callback + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .literal.coex_schm_deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .text.coex_schm_status_get + 0x0000000000000000 0x5c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .text.coex_schm_get_phase_by_idx + 0x0000000000000000 0x56 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .text.coex_schm_register_btdm_callback + 0x0000000000000000 0x3f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .text.coex_wifi_channel_get + 0x0000000000000000 0x9e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .text.coex_register_wifi_channel_change_callback + 0x0000000000000000 0x3f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .text.coex_schm_init + 0x0000000000000000 0x4c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .text.coex_schm_deinit + 0x0000000000000000 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .rodata.__func__$4018 + 0x0000000000000000 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .dram1.10 0x0000000000000000 0x27 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .dram1.9 0x0000000000000000 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_default_bt_idle_wifi_conn + 0x0000000000000000 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_default_bt_idle_wifi_connecting + 0x0000000000000000 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_default_bt_idle_wifi_scan + 0x0000000000000000 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_default_bt_a2dp_wifi_default + 0x0000000000000000 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_default_bt_idle_wifi_default + 0x0000000000000000 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .data.coex_schm_ble_idle_bt_idle_wifi_default + 0x0000000000000000 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .xt.lit 0x0000000000000000 0x80 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .xt.prop 0x0000000000000000 0x1680 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .iram1.4.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .iram1.5.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .iram1.6.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .iram1.7.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .iram1.8.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .iram1.9.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .iram1.10.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .iram1.11.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .iram1.12.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .iram1.13.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .iram1.14.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .literal.coex_timer_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .literal.coex_timer_deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .iram1.4 0x0000000000000000 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .iram1.5 0x0000000000000000 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .iram1.6 0x0000000000000000 0x2e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .iram1.7 0x0000000000000000 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .iram1.8 0x0000000000000000 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .iram1.9 0x0000000000000000 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .iram1.10 0x0000000000000000 0x2b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .iram1.11 0x0000000000000000 0x2e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .iram1.12 0x0000000000000000 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .iram1.13 0x0000000000000000 0x2e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .iram1.14 0x0000000000000000 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .text.coex_timer_init + 0x0000000000000000 0x4e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .text.coex_timer_deinit + 0x0000000000000000 0x2e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .dram1.3 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .dram1.2 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .dram1.1 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .dram1.0 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .comment 0x0000000000000000 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .xt.lit 0x0000000000000000 0x60 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .xt.prop 0x0000000000000000 0x2a0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .literal.esp_coex_adapter_funcs_md5_check + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .literal.esp_coex_adapter_register + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .literal.esp_coex_status_bit_set + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .literal.esp_coex_status_bit_clear + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .literal.coex_wifi_request + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .literal.coex_wifi_release + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .iram1.8.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .iram1.9.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .literal.coex_condition_set + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .literal.coex_condition_get + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .literal.coex_condition_check + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .literal.coex_pre_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .literal.coex_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .literal.coex_deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .literal.coex_pause + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .literal.coex_resume + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .literal.coex_status_get + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .literal.coex_preference_set + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .literal.coex_version_get + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .literal.coex_register_wifi_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .literal.coex_register_bt_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .iram1.11.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .iram1.12.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .rodata.str1.4 + 0x0000000000000000 0x110 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .text.esp_coex_adapter_funcs_md5_check + 0x0000000000000000 0x4e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .text.esp_coex_adapter_register + 0x0000000000000000 0x76 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .text.esp_coex_status_bit_set + 0x0000000000000000 0xb4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .text.esp_coex_status_bit_clear + 0x0000000000000000 0xb4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .text.coex_wifi_request + 0x0000000000000000 0x19 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .text.coex_wifi_release + 0x0000000000000000 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .iram1.8 0x0000000000000000 0x19 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .iram1.9 0x0000000000000000 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .text.coex_condition_set + 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .text.coex_condition_get + 0x0000000000000000 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .text.coex_condition_check + 0x0000000000000000 0x33 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .text.coex_pre_init + 0x0000000000000000 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .text.coex_init + 0x0000000000000000 0x44 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .text.coex_deinit + 0x0000000000000000 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .text.coex_pause + 0x0000000000000000 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .text.coex_resume + 0x0000000000000000 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .text.coex_status_get + 0x0000000000000000 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .text.coex_preference_set + 0x0000000000000000 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .text.coex_version_get + 0x0000000000000000 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .text.coex_register_wifi_cb + 0x0000000000000000 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .text.coex_register_bt_cb + 0x0000000000000000 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .iram1.11 0x0000000000000000 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .iram1.12 0x0000000000000000 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .dram1.10 0x0000000000000000 0x5b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .dram1.7 0x0000000000000000 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .dram1.6 0x0000000000000000 0x2b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .dram1.5 0x0000000000000000 0x31 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .dram1.4 0x0000000000000000 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .dram1.3 0x0000000000000000 0x2b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .dram1.2 0x0000000000000000 0x31 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .dram1.1 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .data.g_coex_adapter_funcs_md5 + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .rodata.coex_version_str + 0x0000000000000000 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .data.libcoexist_reversion_git + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .xt.lit 0x0000000000000000 0xb0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .xt.prop 0x0000000000000000 0x630 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .iram1.15.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .iram1.16.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .iram1.20.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .iram1.19.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .iram1.22.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .iram1.24.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .iram1.25.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .iram1.26.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .iram1.27.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .literal.coex_core_pre_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .literal.coex_core_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .literal.coex_core_deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .literal.coex_core_pause + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .literal.coex_core_resume + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .literal.coex_core_status_get + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .literal.coex_core_register_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .iram1.35.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .iram1.36.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .iram1.15 0x0000000000000000 0x66 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .iram1.16 0x0000000000000000 0x63 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .iram1.20 0x0000000000000000 0x14e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .iram1.19 0x0000000000000000 0x76 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .rodata.str1.4 + 0x0000000000000000 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .iram1.22 0x0000000000000000 0x55 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .iram1.24 0x0000000000000000 0xb7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .iram1.25 0x0000000000000000 0xb7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .iram1.26 0x0000000000000000 0xd6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .iram1.27 0x0000000000000000 0xf2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .text.coex_core_pre_init + 0x0000000000000000 0x107 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .text.coex_core_init + 0x0000000000000000 0x13d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .text.coex_core_deinit + 0x0000000000000000 0xfc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .text.coex_core_pause + 0x0000000000000000 0x6a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .text.coex_core_resume + 0x0000000000000000 0x6b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .text.coex_core_status_get + 0x0000000000000000 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .text.coex_core_register_cb + 0x0000000000000000 0x7e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .iram1.35 0x0000000000000000 0x40 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .iram1.36 0x0000000000000000 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .dram1.34 0x0000000000000000 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .dram1.33 0x0000000000000000 0x22 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .dram1.32 0x0000000000000000 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .dram1.31 0x0000000000000000 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .dram1.30 0x0000000000000000 0x27 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .dram1.29 0x0000000000000000 0x22 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .dram1.28 0x0000000000000000 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .dram1.23 0x0000000000000000 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .dram1.13 0x0000000000000000 0x78 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .dram1.12 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .dram1.11 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .dram1.10 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .dram1.9 0x0000000000000000 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .comment 0x0000000000000000 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .xt.lit 0x0000000000000000 0x90 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .xt.prop 0x0000000000000000 0x90c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .iram1.12.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_hw.o) + .iram1.17.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_hw.o) + .iram1.18.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_hw.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_hw.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_hw.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_hw.o) + .iram1.12 0x0000000000000000 0x114 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_hw.o) + .iram1.17 0x0000000000000000 0x3ab /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_hw.o) + .iram1.18 0x0000000000000000 0x192 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_hw.o) + .dram1.9 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_hw.o) + .comment 0x0000000000000000 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_hw.o) + .xt.lit 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_hw.o) + .xt.prop 0x0000000000000000 0x1f8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_hw.o) + .iram1.11.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .iram1.18.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .iram1.19.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .iram1.20.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .iram1.21.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .iram1.22.literal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .literal.coex_arbit_dump + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .literal.coex_arbit_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .literal.coex_arbit_deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .iram1.11 0x0000000000000000 0x5c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .rodata.str1.4 + 0x0000000000000000 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .iram1.18 0x0000000000000000 0x1fb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .iram1.19 0x0000000000000000 0x80 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .iram1.20 0x0000000000000000 0x37 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .iram1.21 0x0000000000000000 0x36 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .iram1.22 0x0000000000000000 0x5a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .text.coex_arbit_dump + 0x0000000000000000 0x3a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .text.coex_arbit_init + 0x0000000000000000 0xeb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .text.coex_arbit_deinit + 0x0000000000000000 0x12e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .dram1.28 0x0000000000000000 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .dram1.27 0x0000000000000000 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .dram1.26 0x0000000000000000 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .dram1.25 0x0000000000000000 0x22 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .dram1.24 0x0000000000000000 0x22 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .dram1.23 0x0000000000000000 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .dram1.10 0x0000000000000000 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .dram1.3 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .dram1.2 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .dram1.1 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .dram1.0 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .comment 0x0000000000000000 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .xt.lit 0x0000000000000000 0x48 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .xt.prop 0x0000000000000000 0x588 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .literal.misc_nvs_deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .literal.nvs_log_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .literal.misc_nvs_load + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .literal.misc_nvs_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .literal.misc_nvs_restore + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .data.libcore_reversion_git + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .xt.lit 0x0000000000000000 0x28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .xt.prop 0x0000000000000000 0x234 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .literal.esp_mesh_set_ie$part$0 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_bcn_change_timer_start$part$3 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_conn_deinit$part$14 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_set_root_candidate$part$16 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_set_root_candidate_ie$part$17 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_rootless$part$18 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_select_is_better_parent$part$21 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_revote_root$part$24 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_register_timer_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_ie_update_rssi + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_clear_parent$part$23 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_set_ie + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.is_mesh_last_parent + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_send_root_switch + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_is_switch_parent + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_compute_my_votes + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_check_rc_expire + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_change_layer + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_set_parent_candidate_config + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_parent_check_root_conflict + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.route_announce_timer_start + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.route_announce_timeout_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.route_announce_timer_stop + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_ie_monitor + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_ie_monitor_timeout_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_bcn_change_timer_start + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_root_connect_timer_start + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.candidate_monitor_timer_stop + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_disable_parent_switch_monitor + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.candidate_monitor_timer_start + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_find_conflict_roots + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_remove_conflict_roots + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.is_self_mac_greater + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_is_yield_root + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_add_conflict_roots + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_yield_roots_announce + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_yield_roots_monitor + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_delete_timers + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_send_roots_gone + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_send_roots_fixed + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_send_roots_stop + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_check_conflict_roots + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_send_rmv_announcement + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_is_scan_allowed + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_rt_change_debug + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_is_rt_change_debug + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_node_process_disconnect + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_node_process_healing + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_vote_done + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_disconnected + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_scan_done + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_scan_request + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_rootless + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_check_no_parent_found + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_root_process_connect + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.is_mesh_child + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_flush_scan_result + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_scan_done_process_weak + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_conn_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_conn_deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_parent_insert_candidate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_scan_done_vote + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_scan_done + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_update_current_parent + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_set_root_candidate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_update_ie_rssi + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_set_root_candidate_ie + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_compute_votes + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_process_root_candidate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_process_same_root_candidate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_add_invalid_rc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal._mesh_find_root_competitor + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.print_rc_info + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_is_last_rc_existing + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_update_rcandidate_rssi + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_init_rcandidate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_check_last_rcandidate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_find_root_competitor + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_vote_root_candidate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_select_router + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_nvs_settings + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_select_is_better_parent + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_select_parent_compute_rank + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_select_set_ignore + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_select_parent_limit_layer2_cap + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_select_parent_try_rssi + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_select_parent_try_layer + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_select_parent + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_get_child_num + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_child_event + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_process_child_macconnected + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.print_txupQ_pending + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_get_child_idx + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_get_child_idx_lock + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_insert_child + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_remove_child + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_remove_children + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_leaf + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_no_parent + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_clear_parent + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_revote_root + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_push_to_nwk_queue + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_route_announce_timeout + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_ie_monitor_timeout + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_bcn_change_timeout + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_root_connect_timeout + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_candidate_monitor_timeout + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_candidate_monitor_timeout_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_sta_connect + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_connect_to_router + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_connect_to_candidate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_root_connect_timeout_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_root_process_disconnect + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_manual_networking + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_sta_disconnect + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_connect + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_disconnect + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_parent_reselect + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_check_layer$part$30 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_check_layer + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_ie_change + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_process_conflict_discnx + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_node_process_cycle + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_wifi_event_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_post_toDS_state + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_set_rssi_threshold + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_get_rssi_threshold + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_set_default_rssi_threshold + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_is_nwk_inited + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_is_nwk_running + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_process_parent_organized + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_task_deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_nwk_task_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_nwk_task_deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_get_beacon_interval + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_adjust_passive_scan_time + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_set_beacon_interval + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_bcn_change_timeout_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_parent_select_done + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_parent_select + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.mesh_nwk_task_main + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_set_ie$part$0 + 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_bcn_change_timer_start$part$3 + 0x0000000000000000 0x2e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_conn_deinit$part$14 + 0x0000000000000000 0xac /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_set_root_candidate$part$16 + 0x0000000000000000 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_set_root_candidate_ie$part$17 + 0x0000000000000000 0x5f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_rootless$part$18 + 0x0000000000000000 0xa0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_select_is_better_parent$part$21 + 0x0000000000000000 0xc5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_revote_root$part$24 + 0x0000000000000000 0x54 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_register_timer_cb + 0x0000000000000000 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_ie_update_rssi + 0x0000000000000000 0x94 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.str1.4 + 0x0000000000000000 0x29e7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_clear_parent$part$23 + 0x0000000000000000 0x146 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_set_ie + 0x0000000000000000 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.is_mesh_last_parent + 0x0000000000000000 0x40 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_send_root_switch + 0x0000000000000000 0x82 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_is_switch_parent + 0x0000000000000000 0x1e6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_compute_my_votes + 0x0000000000000000 0x6a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_check_rc_expire + 0x0000000000000000 0x42f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_change_layer + 0x0000000000000000 0x96 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_set_parent_candidate_config + 0x0000000000000000 0xe2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_parent_check_root_conflict + 0x0000000000000000 0xb3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.route_announce_timer_start + 0x0000000000000000 0xd4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.route_announce_timeout_process + 0x0000000000000000 0xb4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.route_announce_timer_stop + 0x0000000000000000 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_ie_monitor + 0x0000000000000000 0x180 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_ie_monitor_timeout_process + 0x0000000000000000 0x25 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_bcn_change_timer_start + 0x0000000000000000 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_root_connect_timer_start + 0x0000000000000000 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.candidate_monitor_timer_stop + 0x0000000000000000 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_disable_parent_switch_monitor + 0x0000000000000000 0x23 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.candidate_monitor_timer_start + 0x0000000000000000 0x22c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.candidate_monitor_timer_start + 0x0000000000000000 0x98 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_find_conflict_roots + 0x0000000000000000 0x65 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_remove_conflict_roots + 0x0000000000000000 0xf0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.is_self_mac_greater + 0x0000000000000000 0x82 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_is_yield_root + 0x0000000000000000 0x59 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_add_conflict_roots + 0x0000000000000000 0x224 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_yield_roots_announce + 0x0000000000000000 0x21c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_yield_roots_monitor + 0x0000000000000000 0x1c7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_delete_timers + 0x0000000000000000 0xa2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_send_roots_gone + 0x0000000000000000 0x7e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_send_roots_fixed + 0x0000000000000000 0xd8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_send_roots_stop + 0x0000000000000000 0xb0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_check_conflict_roots + 0x0000000000000000 0x19a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_send_rmv_announcement + 0x0000000000000000 0x203 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_is_scan_allowed + 0x0000000000000000 0x2f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_rt_change_debug + 0x0000000000000000 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_is_rt_change_debug + 0x0000000000000000 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_node_process_disconnect + 0x0000000000000000 0x3d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_node_process_healing + 0x0000000000000000 0xe7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_vote_done + 0x0000000000000000 0xe1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_disconnected + 0x0000000000000000 0xae /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_scan_done + 0x0000000000000000 0x248 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_scan_request + 0x0000000000000000 0xfd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_rootless + 0x0000000000000000 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_check_no_parent_found + 0x0000000000000000 0x8e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_root_process_connect + 0x0000000000000000 0x84 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.is_mesh_child + 0x0000000000000000 0x67 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_flush_scan_result + 0x0000000000000000 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_scan_done_process_weak + 0x0000000000000000 0xd9 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_conn_init + 0x0000000000000000 0xcc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_conn_deinit + 0x0000000000000000 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_parent_insert_candidate + 0x0000000000000000 0x18e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_scan_done_vote + 0x0000000000000000 0x568 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_scan_done + 0x0000000000000000 0x78c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_update_current_parent + 0x0000000000000000 0xf8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_set_root_candidate + 0x0000000000000000 0x8f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_update_ie_rssi + 0x0000000000000000 0xaa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_set_root_candidate_ie + 0x0000000000000000 0x7d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_compute_votes + 0x0000000000000000 0xf6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_process_root_candidate + 0x0000000000000000 0x253 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_process_same_root_candidate + 0x0000000000000000 0x74 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_add_invalid_rc + 0x0000000000000000 0x114 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text._mesh_find_root_competitor + 0x0000000000000000 0x8ac /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.print_rc_info + 0x0000000000000000 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_is_last_rc_existing + 0x0000000000000000 0x136 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_update_rcandidate_rssi + 0x0000000000000000 0xa1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_init_rcandidate + 0x0000000000000000 0x126 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_check_last_rcandidate + 0x0000000000000000 0x2ad /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_find_root_competitor + 0x0000000000000000 0x1e2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_vote_root_candidate + 0x0000000000000000 0x732 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_select_router + 0x0000000000000000 0x44 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_nvs_settings + 0x0000000000000000 0x27a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_select_is_better_parent + 0x0000000000000000 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_select_parent_compute_rank + 0x0000000000000000 0x6d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_select_set_ignore + 0x0000000000000000 0xd2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_select_parent_limit_layer2_cap + 0x0000000000000000 0x31c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_select_parent_try_rssi + 0x0000000000000000 0x21c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_select_parent_try_layer + 0x0000000000000000 0x14c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_select_parent + 0x0000000000000000 0x22b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_get_child_num + 0x0000000000000000 0x62 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_child_event + 0x0000000000000000 0xea /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_process_child_macconnected + 0x0000000000000000 0x271 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.print_txupQ_pending + 0x0000000000000000 0x334 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_get_child_idx + 0x0000000000000000 0x6c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_get_child_idx_lock + 0x0000000000000000 0x4c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_insert_child + 0x0000000000000000 0x402 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_remove_child + 0x0000000000000000 0x70 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_remove_children + 0x0000000000000000 0x135 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_leaf + 0x0000000000000000 0x74 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_no_parent + 0x0000000000000000 0xcc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_clear_parent + 0x0000000000000000 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_revote_root + 0x0000000000000000 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_push_to_nwk_queue + 0x0000000000000000 0x144 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_route_announce_timeout + 0x0000000000000000 0x63 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_ie_monitor_timeout + 0x0000000000000000 0x63 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_bcn_change_timeout + 0x0000000000000000 0x63 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_root_connect_timeout + 0x0000000000000000 0x63 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_candidate_monitor_timeout + 0x0000000000000000 0x63 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_candidate_monitor_timeout_process + 0x0000000000000000 0xe2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_sta_connect + 0x0000000000000000 0x245 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_connect_to_router + 0x0000000000000000 0x32a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_connect_to_candidate + 0x0000000000000000 0x438 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_root_connect_timeout_process + 0x0000000000000000 0x76 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_root_process_disconnect + 0x0000000000000000 0x108 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_manual_networking + 0x0000000000000000 0x33a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_sta_disconnect + 0x0000000000000000 0x78 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_connect + 0x0000000000000000 0x84 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_disconnect + 0x0000000000000000 0x82 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_parent_reselect + 0x0000000000000000 0xe4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_check_layer$part$30 + 0x0000000000000000 0xd2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_check_layer + 0x0000000000000000 0x25 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_ie_change + 0x0000000000000000 0x404 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_process_conflict_discnx + 0x0000000000000000 0x74 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_node_process_cycle + 0x0000000000000000 0xfc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_wifi_event_cb + 0x0000000000000000 0x47b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.mesh_wifi_event_cb + 0x0000000000000000 0x84 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_post_toDS_state + 0x0000000000000000 0x58 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_set_rssi_threshold + 0x0000000000000000 0x42 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_get_rssi_threshold + 0x0000000000000000 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_set_default_rssi_threshold + 0x0000000000000000 0x27 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_is_nwk_inited + 0x0000000000000000 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_is_nwk_running + 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_process_parent_organized + 0x0000000000000000 0x7c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_task_deinit + 0x0000000000000000 0xca /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_nwk_task_init + 0x0000000000000000 0x3ae /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_nwk_task_deinit + 0x0000000000000000 0x98 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_get_beacon_interval + 0x0000000000000000 0x6b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_adjust_passive_scan_time + 0x0000000000000000 0x7a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_set_beacon_interval + 0x0000000000000000 0x3e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_bcn_change_timeout_process + 0x0000000000000000 0x3a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_parent_select_done + 0x0000000000000000 0x99e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.esp_mesh_parent_select + 0x0000000000000000 0xb3c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .text.mesh_nwk_task_main + 0x0000000000000000 0x39a1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.mesh_nwk_task_main + 0x0000000000000000 0xb4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.last_event_id$9015 + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$8983 + 0x0000000000000000 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$8952 + 0x0000000000000000 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$8939 + 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$8923 + 0x0000000000000000 0x17 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$8664 + 0x0000000000000000 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$8660 + 0x0000000000000000 0x13 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$8651 + 0x0000000000000000 0x13 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$8624 + 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$8603 + 0x0000000000000000 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$8596 + 0x0000000000000000 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$8530 + 0x0000000000000000 0x13 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$8419 + 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$8400 + 0x0000000000000000 0x1d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$8377 + 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$8366 + 0x0000000000000000 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$8352 + 0x0000000000000000 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$8295 + 0x0000000000000000 0x21 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$8206 + 0x0000000000000000 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$8198 + 0x0000000000000000 0x22 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$8193 + 0x0000000000000000 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$8181 + 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$8172 + 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$8148 + 0x0000000000000000 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$8142 + 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.cnx_backoff$8137 + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_final_struggle$8126 + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.max_voter_num$8121 + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$8076 + 0x0000000000000000 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$8022 + 0x0000000000000000 0x17 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .rodata.__func__$8002 + 0x0000000000000000 0x19 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_mesh_rt_change_dbg + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_monitor_timer_interval + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_history_root_backoff + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.retry_attemps + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.mesh_ps_cnt + 0x0000000000000000 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_layer_backoff_times + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_rssi_backoff_times + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.vote_log_time_start + 0x0000000000000000 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.vote_log_time_stop + 0x0000000000000000 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_vote_scan_times + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_extra_scan_attempts + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_vote_ps_times + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_vote_rc_times + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_mesh_last_rcandidate + 0x0000000000000000 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_mesh_rcandidate + 0x0000000000000000 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .data.s_mesh_beacon_interval + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_mesh_running_channel + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .data.s_monitor_parent_config + 0x0000000000000000 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_first_short_time_retries + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_parent_rssi_threshold + 0x0000000000000000 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_mesh_root_addr + 0x0000000000000000 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_is_parent_set + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_sta_discnx_times + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_sta_cnx_times + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.g_mesh_last_parent + 0x0000000000000000 0x64 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.g_mesh_last_parent_ie + 0x0000000000000000 0x3a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.ann_time_start + 0x0000000000000000 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.mie_log_time_start + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_root_connect_timer_armed + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.candidate_monitor_timer + 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.root_connect_timer + 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.bcn_change_timer + 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.mie_monitor_timer + 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.route_announce_timer + 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.mesh_timer_func + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.mesh_nwk_task + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.mesh_nwk_mbox + 0x0000000000000000 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.is_nwk_running + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_parent_root_children_list + 0x0000000000000000 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_vote_invalid_list + 0x0000000000000000 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_vote_expire_list + 0x0000000000000000 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_parent_cyclic_list + 0x0000000000000000 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_parent_map_list + 0x0000000000000000 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_parent_idle_list + 0x0000000000000000 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .data.s_mesh_scan_done + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_mesh_scan_req + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.s_mesh_last_layer + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.g_mesh_rmv_opt + 0x0000000000000000 0x4d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.mesh_conn_mutex + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.g_mesh_conn + 0x0000000000000000 0x2c8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.g_is_wifi_disconnecting + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.g_is_wifi_connecting + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.g_is_wifi_connected + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .bss.MESH_ZERO_ADDR + 0x0000000000000000 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .comment 0x0000000000000000 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .xt.lit 0x0000000000000000 0x458 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .xt.prop 0x0000000000000000 0x6a38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + COMMON 0x0000000000000000 0x6c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .literal.esp_mesh_get_vnd_ext_assoc_len + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_ssid + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_roots_announce + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_roots_yield + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_roots_fixed + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_roots_gone + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.is_esp_mesh_ext_assoc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_get_vnd_ssid_len + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_parse_ext_assoc_ie + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._wifi_vnd_ext_mesh_roots_free$part$6 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_fixed$part$7 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_announce$part$8 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_yield$part$9 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_fixed$part$10 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_gone$part$11 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_get_conflict_root_state$part$18 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_deinit_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.is_my_ie_encrypted + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_coding_ie_key + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_encrypt_vnd_ie + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_mesh_assoc_ie + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_mesh_ssid_ie + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_mesh_ext_assoc_ie + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_decrypt_vnd_ie + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_check_vnd_ie + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_set_ie_crypto_config + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_mesh_quick_set + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_mesh_quick_get + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_sta_monitor_rssi + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_map_reject_connection + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_map_change_beacon_interval + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_is_new_root_found$part$15 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_vnd_mesh_quick_set + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_vnd_mesh_quick_get + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_ie_esp_mesh_head + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_init_mesh_assoc_ie + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.roots_type2str + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._wifi_vnd_ext_mesh_roots_free + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._wifi_vnd_ext_mesh_roots_malloc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._print_roots_count + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_roots_num_reach_max + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_reset_window_open_time + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_announce + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_fixed + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_vnd_mesh_roots_get + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_valid + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_announce + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_yield + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_announce_used + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_yield_used + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_fixed + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_is_mesh_roots_gone + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_get_vnd_roots_len + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_add_mesh_roots_ie + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_map_stop_beacon + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_check_window_close_expire + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_check_roots_gone + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_timer_process_announce + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_check_window_open_expire + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_timer_process_fixed + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_timer_process_gone + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_timer_process_conflict_root + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.print_roots_ie + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_is_new_root_found + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_is_new_root_invalid + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_is_ie_ignored + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_is_same_router + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_get_conflict_root_state + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_remove_conflict_root + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_yield$part$21 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_yield + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_conflict_table + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_find_conflict_root + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_update_conflict_root + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_add_conflict_root + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_is_new_found_conflict_root + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.ieee80211_vnd_mesh_roots_set + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_remove_gone + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_gone + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_roots_process_stop + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_process_roots_ie_ttl + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_timer_process_yield$part$25 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_timer_process_yield + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_root_process_roots_ie + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_process_roots_ie + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_parse_conflict_roots_ie + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_parse_conflict_roots_ie + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_check_conflict_beacon + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_parse_conflict_assoc_ie + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_set_parent_candidate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_clear_parent_candidate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_get_parent_candidate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_post_parent_switch_candidate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_post_parent_weak_rssi + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_post_parent_assoc_ie + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_monitor_parent_candidate_ie + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_set_parent_monitor_config + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_get_parent_monitor_config + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_get_sub_ie + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal._mesh_set_flag_roots_found + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_get_vnd_roots_len + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_map_probe_response + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_monitor_parent_ie + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_monitor_vote_candidate_rssi + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_parse_beacon + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_set_rssi_threshold + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_get_rssi_threshold + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_quick_funcs_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_init_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.esp_mesh_quick_funcs_deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_get_vnd_ext_assoc_len + 0x0000000000000000 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_ssid + 0x0000000000000000 0x3c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_roots_announce + 0x0000000000000000 0x3c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_roots_yield + 0x0000000000000000 0x3c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_roots_fixed + 0x0000000000000000 0x3c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_roots_gone + 0x0000000000000000 0x3c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.is_esp_mesh_ext_assoc + 0x0000000000000000 0x5c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_get_vnd_ssid_len + 0x0000000000000000 0x6b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_parse_ext_assoc_ie + 0x0000000000000000 0x78 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._wifi_vnd_ext_mesh_roots_free$part$6 + 0x0000000000000000 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_fixed$part$7 + 0x0000000000000000 0x64 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_announce$part$8 + 0x0000000000000000 0x9a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_yield$part$9 + 0x0000000000000000 0x32 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_fixed$part$10 + 0x0000000000000000 0x40 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_gone$part$11 + 0x0000000000000000 0x40 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_get_conflict_root_state$part$18 + 0x0000000000000000 0x264 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_deinit_cb + 0x0000000000000000 0x44 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.is_my_ie_encrypted + 0x0000000000000000 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.str1.4 + 0x0000000000000000 0xd11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_coding_ie_key + 0x0000000000000000 0x97 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_encrypt_vnd_ie + 0x0000000000000000 0xce /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_add_mesh_assoc_ie + 0x0000000000000000 0xe6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_add_mesh_ssid_ie + 0x0000000000000000 0x13e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_add_mesh_ext_assoc_ie + 0x0000000000000000 0x10a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_decrypt_vnd_ie + 0x0000000000000000 0xce /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_check_vnd_ie + 0x0000000000000000 0xf0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_set_ie_crypto_config + 0x0000000000000000 0xa0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_mesh_quick_set + 0x0000000000000000 0x250 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.ieee80211_mesh_quick_set + 0x0000000000000000 0x64 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_mesh_quick_get + 0x0000000000000000 0x25c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.ieee80211_mesh_quick_get + 0x0000000000000000 0x64 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_sta_monitor_rssi + 0x0000000000000000 0x13a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_map_reject_connection + 0x0000000000000000 0xc1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_map_change_beacon_interval + 0x0000000000000000 0x80 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_is_new_root_found$part$15 + 0x0000000000000000 0x1d8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_vnd_mesh_quick_set + 0x0000000000000000 0x1aa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_vnd_mesh_quick_get + 0x0000000000000000 0x96 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_add_ie_esp_mesh_head + 0x0000000000000000 0x40 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_init_mesh_assoc_ie + 0x0000000000000000 0x58 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.roots_type2str + 0x0000000000000000 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._wifi_vnd_ext_mesh_roots_free + 0x0000000000000000 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._wifi_vnd_ext_mesh_roots_malloc + 0x0000000000000000 0x7e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._print_roots_count + 0x0000000000000000 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_roots_num_reach_max + 0x0000000000000000 0x21 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_reset_window_open_time + 0x0000000000000000 0x7c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_announce + 0x0000000000000000 0x300 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_fixed + 0x0000000000000000 0x19 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_vnd_mesh_roots_get + 0x0000000000000000 0x35 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_valid + 0x0000000000000000 0xbe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_announce + 0x0000000000000000 0x28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_yield + 0x0000000000000000 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_announce_used + 0x0000000000000000 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_yield_used + 0x0000000000000000 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_fixed + 0x0000000000000000 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_is_mesh_roots_gone + 0x0000000000000000 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_get_vnd_roots_len + 0x0000000000000000 0xcc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_add_mesh_roots_ie + 0x0000000000000000 0x1da /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_map_stop_beacon + 0x0000000000000000 0xe0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_check_window_close_expire + 0x0000000000000000 0x1dc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_check_roots_gone + 0x0000000000000000 0xf6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_timer_process_announce + 0x0000000000000000 0x122 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_check_window_open_expire + 0x0000000000000000 0x25e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_timer_process_fixed + 0x0000000000000000 0x98 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_timer_process_gone + 0x0000000000000000 0x92 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_timer_process_conflict_root + 0x0000000000000000 0x13c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.print_roots_ie + 0x0000000000000000 0x41e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_is_new_root_found + 0x0000000000000000 0x31 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_is_new_root_invalid + 0x0000000000000000 0x95 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_is_ie_ignored + 0x0000000000000000 0x83 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_is_same_router + 0x0000000000000000 0x64 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_get_conflict_root_state + 0x0000000000000000 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_remove_conflict_root + 0x0000000000000000 0x7b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_yield$part$21 + 0x0000000000000000 0x15d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_yield + 0x0000000000000000 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_conflict_table + 0x0000000000000000 0x12c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_find_conflict_root + 0x0000000000000000 0x44 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_update_conflict_root + 0x0000000000000000 0x110 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_add_conflict_root + 0x0000000000000000 0x21f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_is_new_found_conflict_root + 0x0000000000000000 0x4e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.ieee80211_vnd_mesh_roots_set + 0x0000000000000000 0x5f7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_remove_gone + 0x0000000000000000 0x45 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_gone + 0x0000000000000000 0x1d9 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_roots_process_stop + 0x0000000000000000 0x17e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_process_roots_ie_ttl + 0x0000000000000000 0xba /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_timer_process_yield$part$25 + 0x0000000000000000 0x2c2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_timer_process_yield + 0x0000000000000000 0x68 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_root_process_roots_ie + 0x0000000000000000 0x30c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_process_roots_ie + 0x0000000000000000 0x3d6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_parse_conflict_roots_ie + 0x0000000000000000 0x625 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_parse_conflict_roots_ie + 0x0000000000000000 0x64 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_check_conflict_beacon + 0x0000000000000000 0xea /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_parse_conflict_assoc_ie + 0x0000000000000000 0x61f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_set_parent_candidate + 0x0000000000000000 0x134 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_clear_parent_candidate + 0x0000000000000000 0x1d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_get_parent_candidate + 0x0000000000000000 0x62 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_post_parent_switch_candidate + 0x0000000000000000 0x3eb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_post_parent_weak_rssi + 0x0000000000000000 0x217 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_post_parent_assoc_ie + 0x0000000000000000 0xfc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_monitor_parent_candidate_ie + 0x0000000000000000 0x29f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_set_parent_monitor_config + 0x0000000000000000 0xca /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_get_parent_monitor_config + 0x0000000000000000 0x66 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_get_sub_ie + 0x0000000000000000 0x73 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text._mesh_set_flag_roots_found + 0x0000000000000000 0xce /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_get_vnd_roots_len + 0x0000000000000000 0x348 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_map_probe_response + 0x0000000000000000 0x121 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_monitor_parent_ie + 0x0000000000000000 0x4a8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_monitor_vote_candidate_rssi + 0x0000000000000000 0x10a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_parse_beacon + 0x0000000000000000 0x1a0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_set_rssi_threshold + 0x0000000000000000 0x62 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_get_rssi_threshold + 0x0000000000000000 0x62 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_quick_funcs_init + 0x0000000000000000 0x1a4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.mesh_init_cb + 0x0000000000000000 0x66 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .text.esp_mesh_quick_funcs_deinit + 0x0000000000000000 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.CSWTCH$304 + 0x0000000000000000 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__FUNCTION__$8063 + 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__FUNCTION__$8059 + 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.monitor_count$7982 + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.last_parent_layer$7981 + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.mesh_sub_ie$7974 + 0x0000000000000000 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__FUNCTION__$7970 + 0x0000000000000000 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__FUNCTION__$7966 + 0x0000000000000000 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .data.candidate_rssi$7960 + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__FUNCTION__$7928 + 0x0000000000000000 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__FUNCTION__$7921 + 0x0000000000000000 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.monitor_time_start$7906 + 0x0000000000000000 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__func__$7875 + 0x0000000000000000 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.post_event_time$7712 + 0x0000000000000000 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__func__$7660 + 0x0000000000000000 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.max_ie_len$7657 + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.roots_found_time$7655 + 0x0000000000000000 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.is_roots_found$7654 + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.post_event_time$7624 + 0x0000000000000000 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__FUNCTION__$7605 + 0x0000000000000000 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__FUNCTION__$7601 + 0x0000000000000000 0x19 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__FUNCTION__$7597 + 0x0000000000000000 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__FUNCTION__$7591 + 0x0000000000000000 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__FUNCTION__$7410 + 0x0000000000000000 0x19 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__func__$7315 + 0x0000000000000000 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__func__$7309 + 0x0000000000000000 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__FUNCTION__$7251 + 0x0000000000000000 0x1d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__FUNCTION__$7242 + 0x0000000000000000 0x1d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__FUNCTION__$7210 + 0x0000000000000000 0x19 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__FUNCTION__$7176 + 0x0000000000000000 0x19 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__FUNCTION__$7170 + 0x0000000000000000 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__FUNCTION__$7162 + 0x0000000000000000 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__FUNCTION__$7157 + 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__FUNCTION__$7150 + 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__FUNCTION__$7139 + 0x0000000000000000 0x13 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .rodata.__func__$7131 + 0x0000000000000000 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_parent_worse_rssi_time + 0x0000000000000000 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.wifi_vnd_ext_mesh_roots + 0x0000000000000000 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_mesh_conflict_roots + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_mesh_roots_ie_life + 0x0000000000000000 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_parent_monitor_assoc_time + 0x0000000000000000 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_parent_monitor_weak_time + 0x0000000000000000 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_mesh_parent_candidate + 0x0000000000000000 0xa8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_mesh_rssi_threshold + 0x0000000000000000 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_mesh_monitor_parent_cfg + 0x0000000000000000 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_recv_bcn_count + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_is_probe_requested + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.iv 0x0000000000000000 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_mesh_ie_crypto_funcs + 0x0000000000000000 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .bss.s_mesh_ie_crypto_key + 0x0000000000000000 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .data.g_mesh_monitor_parent_beacon_count + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .comment 0x0000000000000000 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .xt.lit 0x0000000000000000 0x360 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .xt.prop 0x0000000000000000 0x4794 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .literal.mesh_rt_change_timeout + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_pack_multi_routing_table$part$1 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_route_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_route_deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.mesh_rt_change_timer_start + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.mesh_rt_change_timeout_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_match_self + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_get_total_children_num + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_lookup_sub_route + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_lookup_route + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_print_route_table + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_get_sub_capacity + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.routetype2str + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.mesh_update_route_table + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_delete_sub_children + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_send_add_announcement + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_pack_rmv_announcement + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_pack_multi_routing_table + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_ie_update_capacity + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_check_nonassociated_children + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_monitor_nonassociated_children + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_remove_nonassociated_children + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_copy_mgmt_announce + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_process_redundant_subchildren + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_combine_multi_redundant_ack + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_check_multi_redundant_ack + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_refresh_routing_table + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_get_routing_table_size + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_get_routing_table + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.mesh_get_subnet_nodes_num + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.mesh_get_subnet_nodes_list + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_send_rtable_request + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_send_rtable_ack + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_nwk_redundant_route + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.mesh_rt_change_timeout + 0x0000000000000000 0x60 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.str1.4 + 0x0000000000000000 0xd20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_pack_multi_routing_table$part$1 + 0x0000000000000000 0x552 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_route_init + 0x0000000000000000 0x5b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_route_deinit + 0x0000000000000000 0x82 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.mesh_rt_change_timer_start + 0x0000000000000000 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.mesh_rt_change_timeout_process + 0x0000000000000000 0x43 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_match_self + 0x0000000000000000 0x5e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_get_total_children_num + 0x0000000000000000 0x71 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_lookup_sub_route + 0x0000000000000000 0x8c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_lookup_route + 0x0000000000000000 0x14c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_print_route_table + 0x0000000000000000 0xaf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_get_sub_capacity + 0x0000000000000000 0x61 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.routetype2str + 0x0000000000000000 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.mesh_update_route_table + 0x0000000000000000 0x317 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_delete_sub_children + 0x0000000000000000 0x60 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_send_add_announcement + 0x0000000000000000 0x96 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_pack_rmv_announcement + 0x0000000000000000 0x63a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_pack_multi_routing_table + 0x0000000000000000 0x78 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_ie_update_capacity + 0x0000000000000000 0x1a7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_check_nonassociated_children + 0x0000000000000000 0x74 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_monitor_nonassociated_children + 0x0000000000000000 0x29a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_remove_nonassociated_children + 0x0000000000000000 0x191 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_copy_mgmt_announce + 0x0000000000000000 0x34a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_process_redundant_subchildren + 0x0000000000000000 0x578 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_combine_multi_redundant_ack + 0x0000000000000000 0x25c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_check_multi_redundant_ack + 0x0000000000000000 0x37a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_refresh_routing_table + 0x0000000000000000 0x730 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_get_routing_table_size + 0x0000000000000000 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_get_routing_table + 0x0000000000000000 0x186 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.mesh_get_subnet_nodes_num + 0x0000000000000000 0xc3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.mesh_get_subnet_nodes_list + 0x0000000000000000 0xe8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_send_rtable_request + 0x0000000000000000 0x82 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_send_rtable_ack + 0x0000000000000000 0x22e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .text.esp_mesh_nwk_redundant_route + 0x0000000000000000 0x1e8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.CSWTCH$101 + 0x0000000000000000 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$8061 + 0x0000000000000000 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$8048 + 0x0000000000000000 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$8026 + 0x0000000000000000 0x23 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$8021 + 0x0000000000000000 0x25 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$7995 + 0x0000000000000000 0x27 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$7980 + 0x0000000000000000 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$7933 + 0x0000000000000000 0x22 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$7906 + 0x0000000000000000 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$7874 + 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$7804 + 0x0000000000000000 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$7787 + 0x0000000000000000 0x17 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .rodata.__func__$7779 + 0x0000000000000000 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .bss.mesh_multi_send_ack + 0x0000000000000000 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .bss.mesh_multi_recv_ack + 0x0000000000000000 0xf0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .bss.rt_change_timer + 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .bss.mesh_route_table + 0x0000000000000000 0x50 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .bss.is_route_inited + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .bss.MESH_ZERO_ADDR + 0x0000000000000000 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .comment 0x0000000000000000 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .xt.lit 0x0000000000000000 0x108 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .xt.prop 0x0000000000000000 0x1848 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .literal.esp_mesh_available_txupQ_num$part$7 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_print_txQ_waiting + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_print_txQ_waiting + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_get_tx_pending + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_get_tx_pending + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_send_block_event + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_send_block_start + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_push_to_ack_state_queue + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_tx_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_best_effort_tx + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_push_to_wnd_queue + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_operation_rxseqno + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending_get_cidx + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending_insert_child + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending_delete_child + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending_get_xonseq + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending_clear_xonseq + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_txupQ_pending + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_process_txupQ_pending + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_push_to_tx_queue + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_force_txupQ_pending + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_available_txupQ_num + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_flush_txup_queue + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_flush_txQ + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_tx_tid_flush + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_tx_tid_stop + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_discard_context + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_send_xon + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_recv_xon + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_tx_task_main + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_xon_deliver_packet + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_xon_flush_packets + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_xon_process_disconnected + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_xon_process_expired + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_flush_upstream_packets + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_xon_task_main + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_tx_task_deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_tx_task_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_tx_task_deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_send_block_deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_send_block_deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_send_block_main + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_send_block_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.esp_mesh_flush_upstream_packets + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.str1.4 + 0x0000000000000000 0x138a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_available_txupQ_num$part$7 + 0x0000000000000000 0x1b6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_print_txQ_waiting + 0x0000000000000000 0x168 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_print_txQ_waiting + 0x0000000000000000 0x72 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_get_tx_pending + 0x0000000000000000 0x28a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_get_tx_pending + 0x0000000000000000 0x62 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_send_block_event + 0x0000000000000000 0x1d2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_send_block_start + 0x0000000000000000 0x200 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_push_to_ack_state_queue + 0x0000000000000000 0xba /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_tx_cb + 0x0000000000000000 0xe4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_best_effort_tx + 0x0000000000000000 0x318 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_push_to_wnd_queue + 0x0000000000000000 0x10a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_operation_rxseqno + 0x0000000000000000 0x552 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_txupQ_pending_get_cidx + 0x0000000000000000 0x6c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_txupQ_pending_insert_child + 0x0000000000000000 0x90 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_txupQ_pending_delete_child + 0x0000000000000000 0x3a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_txupQ_pending_get_xonseq + 0x0000000000000000 0x52 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_txupQ_pending_clear_xonseq + 0x0000000000000000 0x5b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_txupQ_pending + 0x0000000000000000 0x1292 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_process_txupQ_pending + 0x0000000000000000 0x330 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_push_to_tx_queue + 0x0000000000000000 0x97f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_force_txupQ_pending + 0x0000000000000000 0x1aa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_available_txupQ_num + 0x0000000000000000 0x39 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_flush_txup_queue + 0x0000000000000000 0x90 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_flush_txQ + 0x0000000000000000 0x8b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_tx_tid_flush + 0x0000000000000000 0x1d2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_tx_tid_stop + 0x0000000000000000 0x14a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_discard_context + 0x0000000000000000 0x14e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_send_xon + 0x0000000000000000 0x881 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_recv_xon + 0x0000000000000000 0x158 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_tx_task_main + 0x0000000000000000 0x92c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_xon_deliver_packet + 0x0000000000000000 0x1e2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_xon_flush_packets + 0x0000000000000000 0x2ba /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_xon_process_disconnected + 0x0000000000000000 0x302 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_xon_process_expired + 0x0000000000000000 0x154 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_flush_upstream_packets + 0x0000000000000000 0x128 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_xon_task_main + 0x0000000000000000 0xaac /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_tx_task_deinit + 0x0000000000000000 0x1d6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_tx_task_init + 0x0000000000000000 0x1ee /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_tx_task_deinit + 0x0000000000000000 0x80 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_send_block_deinit + 0x0000000000000000 0xca /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_send_block_deinit + 0x0000000000000000 0x88 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.mesh_send_block_main + 0x0000000000000000 0x50e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_send_block_init + 0x0000000000000000 0x70 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .text.esp_mesh_flush_upstream_packets + 0x0000000000000000 0x6a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$8215 + 0x0000000000000000 0x17 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$8207 + 0x0000000000000000 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$8176 + 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$8137 + 0x0000000000000000 0x13 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$8112 + 0x0000000000000000 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$8107 + 0x0000000000000000 0x19 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$8099 + 0x0000000000000000 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$8081 + 0x0000000000000000 0x17 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$8073 + 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$8065 + 0x0000000000000000 0x19 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.mesh_tx_fail_cnt$8042 + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$8047 + 0x0000000000000000 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$8017 + 0x0000000000000000 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$8003 + 0x0000000000000000 0x1d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$7992 + 0x0000000000000000 0x17 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$7979 + 0x0000000000000000 0x1d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$7969 + 0x0000000000000000 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$7931 + 0x0000000000000000 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$7915 + 0x0000000000000000 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$7884 + 0x0000000000000000 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$7872 + 0x0000000000000000 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$7848 + 0x0000000000000000 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .rodata.__func__$7817 + 0x0000000000000000 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.send_block_flush_mbox + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.send_block_task + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.send_block_mbox + 0x0000000000000000 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.is_block_running + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.mesh_xreq_seqno + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.mesh_be_xmit_seqno + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.mesh_new_wnd_mbox + 0x0000000000000000 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.mesh_ack_state_mbox + 0x0000000000000000 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.mesh_tx_mbox + 0x0000000000000000 0x78 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.mesh_tx_task + 0x0000000000000000 0x28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.is_mesh_tx_started + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.mesh_reassign_xseqno + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .data.MESH_BCAST_ADDR + 0x0000000000000000 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .bss.MESH_ZERO_ADDR + 0x0000000000000000 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .comment 0x0000000000000000 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .xt.lit 0x0000000000000000 0x160 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .xt.prop 0x0000000000000000 0x30fc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + COMMON 0x0000000000000000 0x2e8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .literal.mesh_timer_route_announce + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .literal.mesh_timer_mie_monitor + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .literal.mesh_timer_bcn_change + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .literal.mesh_timer_root_connect + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .literal.mesh_timer_candidate_monitor + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .literal.mesh_timer_rt_change + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .literal.mesh_timer_do_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .text.mesh_timer_route_announce + 0x0000000000000000 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .text.mesh_timer_mie_monitor + 0x0000000000000000 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .text.mesh_timer_bcn_change + 0x0000000000000000 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .text.mesh_timer_root_connect + 0x0000000000000000 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .text.mesh_timer_candidate_monitor + 0x0000000000000000 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .text.mesh_timer_rt_change + 0x0000000000000000 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .rodata.str1.4 + 0x0000000000000000 0x60 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .text.mesh_timer_do_process + 0x0000000000000000 0xee /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .rodata.__func__$7805 + 0x0000000000000000 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .data.mesh_timer_info + 0x0000000000000000 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .comment 0x0000000000000000 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .xt.lit 0x0000000000000000 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .xt.prop 0x0000000000000000 0x1f8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .literal.esp_mesh_free_context + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.mesh_mutex_lock + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.mesh_mutex_unlock + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.esp_mesh_create_mbox + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.esp_mesh_free_mbox + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.mesh_malloc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.esp_mesh_create_context + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.mesh_free + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.mesh_create_task + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.wifi_event_id2str + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.nwk_event_id2str + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.tx_msg_id2str + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.tx_state_id2str + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.discnx_reason_id2str + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.mesh_ie_type2str + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.scan_status2str + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.vote_done2str + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.vote_start2str + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.txq_opr2str + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.tx_wifi_err2str + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.io_cfg2str + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.opt_type2str + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.reconnect_type2str + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.str1.4 + 0x0000000000000000 0xe14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.esp_mesh_free_context + 0x0000000000000000 0x7a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.mesh_mutex_lock + 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.mesh_mutex_unlock + 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.esp_mesh_create_mbox + 0x0000000000000000 0xac /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.esp_mesh_free_mbox + 0x0000000000000000 0x90 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.mesh_malloc + 0x0000000000000000 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.esp_mesh_create_context + 0x0000000000000000 0x66 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.mesh_free + 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.mesh_create_task + 0x0000000000000000 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.wifi_event_id2str + 0x0000000000000000 0x149 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.wifi_event_id2str + 0x0000000000000000 0x84 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.nwk_event_id2str + 0x0000000000000000 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.tx_msg_id2str + 0x0000000000000000 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.tx_state_id2str + 0x0000000000000000 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.discnx_reason_id2str + 0x0000000000000000 0x102 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.discnx_reason_id2str + 0x0000000000000000 0x334 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.mesh_ie_type2str + 0x0000000000000000 0x3e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.scan_status2str + 0x0000000000000000 0x4e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.vote_done2str + 0x0000000000000000 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.vote_start2str + 0x0000000000000000 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.txq_opr2str + 0x0000000000000000 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.tx_wifi_err2str + 0x0000000000000000 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.io_cfg2str + 0x0000000000000000 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.opt_type2str + 0x0000000000000000 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .text.reconnect_type2str + 0x0000000000000000 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$57 + 0x0000000000000000 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$55 + 0x0000000000000000 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$53 + 0x0000000000000000 0x34 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$51 + 0x0000000000000000 0x44 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$49 + 0x0000000000000000 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$47 + 0x0000000000000000 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$45 + 0x0000000000000000 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$40 + 0x0000000000000000 0x28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$38 + 0x0000000000000000 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.CSWTCH$36 + 0x0000000000000000 0xc0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .bss.strid$7822 + 0x0000000000000000 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .rodata.__func__$7772 + 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .comment 0x0000000000000000 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .xt.lit 0x0000000000000000 0xb8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .xt.prop 0x0000000000000000 0xc3c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .literal.esp_mesh_print_rxQ_waiting + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_rx_pending + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_ie_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_wifi_event_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_wifi_event_deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_stop_recv + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_parse_option + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_add_option + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_send_process_flag + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_send_sem_wait + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_send_sem_signal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_send_mgmt + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_send + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_recv_add_option + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_recv_process_flag + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_recv + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_recv + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_encrypt_ie_plain_key + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_config + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_router + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_config + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_router + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_set_id + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_id + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_id + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_type + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_type + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_max_layer + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_ap_password + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_ap_authmode + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_ap_authmode + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_ap_connections + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_ap_connections + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_layer + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_parent_bssid + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_is_root + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_push_to_myself_queue + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_push_to_tcpip_queue + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_flush_tcpip_queue + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_recv_toDS + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_max_layer + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_self_organized + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_self_organized + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_set_parent + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_parent + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_waive_root + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_waive_root + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_send_stop_vote + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_send_stop_vote + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_vote_percentage + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_vote_percentage + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_root_addr + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_attempts + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_attempts + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_push_to_xmit_state_queue + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_stop + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_start + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_total_node_num + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_switch_parent_paras + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_switch_parent_paras + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_xon_qsize + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_xon_qsize + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_is_my_group + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_insert_group_addr + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_delete_group_addr + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_group_id + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_delete_group_id + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_group_num + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_group_list + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_capacity_num + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_capacity_num + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_is_my_ie_encrypted + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_set_ie_crypto_funcs + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_ie_crypto_funcs + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_set_ie_crypto_key + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.mesh_sta_crypto_config + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_ie_crypto_key + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_ie_crypto_key + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_root_healing_delay + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_root_healing_delay + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_passive_scan_time + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_passive_scan_time + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_fix_root + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_is_root_fixed + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_set_announce_interval + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_announce_interval + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_subnet_nodes_num + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_get_subnet_nodes_list + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_switch_channel + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_look_for_network + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.str1.4 + 0x0000000000000000 0x9f8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_print_rxQ_waiting + 0x0000000000000000 0x22c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_rx_pending + 0x0000000000000000 0x160 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_ie_init + 0x0000000000000000 0xff /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_wifi_event_init + 0x0000000000000000 0xd0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_wifi_event_deinit + 0x0000000000000000 0x3e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_init + 0x0000000000000000 0x2b8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_stop_recv + 0x0000000000000000 0x20e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_parse_option + 0x0000000000000000 0x146 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.mesh_parse_option + 0x0000000000000000 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_add_option + 0x0000000000000000 0x14e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_send_process_flag + 0x0000000000000000 0x1ca /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_send_sem_wait + 0x0000000000000000 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_send_sem_signal + 0x0000000000000000 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_send_mgmt + 0x0000000000000000 0x2b2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_send + 0x0000000000000000 0x706 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.esp_mesh_send + 0x0000000000000000 0x44 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_recv_add_option + 0x0000000000000000 0x1b4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_recv_process_flag + 0x0000000000000000 0x13a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_recv + 0x0000000000000000 0x46e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_recv + 0x0000000000000000 0x180 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_encrypt_ie_plain_key + 0x0000000000000000 0x120 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_config + 0x0000000000000000 0x72 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_router + 0x0000000000000000 0xb0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_config + 0x0000000000000000 0x3a7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_router + 0x0000000000000000 0x74 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_set_id + 0x0000000000000000 0xce /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_id + 0x0000000000000000 0x14e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_id + 0x0000000000000000 0x74 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_type + 0x0000000000000000 0xc0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_type + 0x0000000000000000 0x4e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_max_layer + 0x0000000000000000 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_ap_password + 0x0000000000000000 0xcb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_ap_authmode + 0x0000000000000000 0x28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_ap_authmode + 0x0000000000000000 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_ap_connections + 0x0000000000000000 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_ap_connections + 0x0000000000000000 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_layer + 0x0000000000000000 0x48 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_parent_bssid + 0x0000000000000000 0xa6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_is_root + 0x0000000000000000 0x2f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_push_to_myself_queue + 0x0000000000000000 0x23e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_push_to_tcpip_queue + 0x0000000000000000 0x4f2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_flush_tcpip_queue + 0x0000000000000000 0xb4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_recv_toDS + 0x0000000000000000 0x200 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_max_layer + 0x0000000000000000 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_self_organized + 0x0000000000000000 0x72 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_self_organized + 0x0000000000000000 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_set_parent + 0x0000000000000000 0x672 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_parent + 0x0000000000000000 0x14e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_waive_root + 0x0000000000000000 0xb0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_waive_root + 0x0000000000000000 0xa8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata 0x0000000000000000 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_send_stop_vote + 0x0000000000000000 0x194 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_send_stop_vote + 0x0000000000000000 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_vote_percentage + 0x0000000000000000 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_vote_percentage + 0x0000000000000000 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_root_addr + 0x0000000000000000 0xa6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_attempts + 0x0000000000000000 0xca /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_attempts + 0x0000000000000000 0x72 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_push_to_xmit_state_queue + 0x0000000000000000 0xc6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_stop + 0x0000000000000000 0x662 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_deinit + 0x0000000000000000 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_start + 0x0000000000000000 0x203 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_total_node_num + 0x0000000000000000 0x47 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_switch_parent_paras + 0x0000000000000000 0xce /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_switch_parent_paras + 0x0000000000000000 0x72 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_xon_qsize + 0x0000000000000000 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_xon_qsize + 0x0000000000000000 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_is_my_group + 0x0000000000000000 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_insert_group_addr + 0x0000000000000000 0x148 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_delete_group_addr + 0x0000000000000000 0x20c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_group_id + 0x0000000000000000 0x44 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_delete_group_id + 0x0000000000000000 0x44 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_group_num + 0x0000000000000000 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_group_list + 0x0000000000000000 0x86 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_capacity_num + 0x0000000000000000 0x83 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_capacity_num + 0x0000000000000000 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_is_my_ie_encrypted + 0x0000000000000000 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_set_ie_crypto_funcs + 0x0000000000000000 0x3a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_ie_crypto_funcs + 0x0000000000000000 0x10a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_set_ie_crypto_key + 0x0000000000000000 0x48 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.mesh_sta_crypto_config + 0x0000000000000000 0xf0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_ie_crypto_key + 0x0000000000000000 0x198 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_ie_crypto_key + 0x0000000000000000 0xf0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_root_healing_delay + 0x0000000000000000 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_root_healing_delay + 0x0000000000000000 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_passive_scan_time + 0x0000000000000000 0x22 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_passive_scan_time + 0x0000000000000000 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_fix_root + 0x0000000000000000 0x41 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_is_root_fixed + 0x0000000000000000 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_set_announce_interval + 0x0000000000000000 0x2d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_announce_interval + 0x0000000000000000 0x25 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_subnet_nodes_num + 0x0000000000000000 0xea /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_get_subnet_nodes_list + 0x0000000000000000 0x134 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_switch_channel + 0x0000000000000000 0x12c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .text.esp_mesh_look_for_network + 0x0000000000000000 0x5d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$8263 + 0x0000000000000000 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$8251 + 0x0000000000000000 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$8195 + 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$8136 + 0x0000000000000000 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$8126 + 0x0000000000000000 0x1d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$8117 + 0x0000000000000000 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$8047 + 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$8013 + 0x0000000000000000 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$7946 + 0x0000000000000000 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$7927 + 0x0000000000000000 0x13 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$7861 + 0x0000000000000000 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .rodata.__func__$7850 + 0x0000000000000000 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.s_mesh_group_addr + 0x0000000000000000 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.s_mesh_stop_mutex + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.g_mesh_stop_event_group + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.mesh_ioctl_sem + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.mesh_xmit_sem + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.mesh_tcpip_mbox + 0x0000000000000000 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.mesh_myself_mbox + 0x0000000000000000 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.s_mesh_ext_crypto_config + 0x0000000000000000 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .data.s_mesh_ie_crypto_plain_key + 0x0000000000000000 0x41 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.g_is_mesh_started + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.g_is_mesh_inited + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.s_extra_toDS_qsize + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.s_extra_toSelf_qsize + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.g_is_standalone_sta + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .data.g_mesh_ann_interval + 0x0000000000000000 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.g_is_root_fixed + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .data.g_mesh_rt_capacity + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .data.g_mesh_root_healing_delay + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .data.g_mesh_passive_scan_time + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .data.g_mesh_cfg_vote_percent + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.g_mesh_cfg_switch_parent + 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .data.g_mesh_max_layer + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .data.libmesh_reversion_git + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .data.MESH_BCAST_ADDR + 0x0000000000000000 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .bss.MESH_ZERO_ADDR + 0x0000000000000000 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .comment 0x0000000000000000 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .xt.lit 0x0000000000000000 0x2e0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .xt.prop 0x0000000000000000 0x38e8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + COMMON 0x0000000000000000 0x13e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .literal.esp_mesh_ap_list_find_invalid$part$0 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_find$part$1 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_clear + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_find_expire + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_clear_expire + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_find_invalid + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_clear_invalid + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_update_invalid + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_list_find + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .literal.esp_mesh_ap_enqueue + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_find_invalid$part$0 + 0x0000000000000000 0x95 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_find$part$1 + 0x0000000000000000 0x86 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .rodata.str1.4 + 0x0000000000000000 0x34 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_clear + 0x0000000000000000 0xe2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_find_expire + 0x0000000000000000 0x52 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_clear_expire + 0x0000000000000000 0xc4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_find_invalid + 0x0000000000000000 0x2e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_clear_invalid + 0x0000000000000000 0xc6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_update_invalid + 0x0000000000000000 0x3f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_list_find + 0x0000000000000000 0x2d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .text.esp_mesh_ap_enqueue + 0x0000000000000000 0x288 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .rodata.__func__$7842 + 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .rodata.__func__$7771 + 0x0000000000000000 0x17 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .comment 0x0000000000000000 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .xt.lit 0x0000000000000000 0x50 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .xt.prop 0x0000000000000000 0x6cc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .literal.nvs_op2str + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .literal.esp_mesh_nvs_operate + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .literal.esp_mesh_nvs_set_layer + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .literal.esp_mesh_nvs_set_assoc + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .literal.esp_mesh_nvs_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .literal.esp_mesh_nvs_deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .rodata.str1.4 + 0x0000000000000000 0x10c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .text.nvs_op2str + 0x0000000000000000 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .text.esp_mesh_nvs_operate + 0x0000000000000000 0x35c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .rodata.esp_mesh_nvs_operate + 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .text.esp_mesh_nvs_set_layer + 0x0000000000000000 0x52 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .text.esp_mesh_nvs_set_assoc + 0x0000000000000000 0x56 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .text.esp_mesh_nvs_init + 0x0000000000000000 0x55 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .text.esp_mesh_nvs_deinit + 0x0000000000000000 0x22 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .rodata.CSWTCH$12 + 0x0000000000000000 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .bss.mesh_nvs_settings + 0x0000000000000000 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .data.mesh_nvs_handle + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .bss.g_mesh_nvs_settings + 0x0000000000000000 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .comment 0x0000000000000000 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .xt.lit 0x0000000000000000 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .xt.prop 0x0000000000000000 0x360 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .literal.mesh_set_io_process$part$0 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.esp_mesh_io_sem_wait + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.esp_mesh_io_sem_signal + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_set_io_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.esp_mesh_stop_parent_reconnection + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_set_router + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_set_self_organized + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_set_type + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_csa_set_bssid + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_switch_channel + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_look_for_network + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_nwk_io_process + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text.mesh_set_io_process$part$0 + 0x0000000000000000 0x8f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text.esp_mesh_io_sem_wait + 0x0000000000000000 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text.esp_mesh_io_sem_signal + 0x0000000000000000 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .rodata.str1.4 + 0x0000000000000000 0x22e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text.mesh_set_io_process + 0x0000000000000000 0x62 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text.esp_mesh_stop_parent_reconnection + 0x0000000000000000 0x64 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text.mesh_set_router + 0x0000000000000000 0x241 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text.mesh_set_self_organized + 0x0000000000000000 0x13e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text.mesh_set_type + 0x0000000000000000 0x269 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text.mesh_csa_set_bssid + 0x0000000000000000 0x8a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text.mesh_switch_channel + 0x0000000000000000 0x7c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text.mesh_look_for_network + 0x0000000000000000 0x42 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .text.mesh_nwk_io_process + 0x0000000000000000 0x1bf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .rodata.mesh_nwk_io_process + 0x0000000000000000 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .rodata.__func__$7828 + 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .rodata.__func__$7779 + 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .bss.csa_bssid + 0x0000000000000000 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .bss.s_mesh_io_error + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .bss.g_mesh_stop_reconnection + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .bss.MESH_ZERO_ADDR + 0x0000000000000000 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .comment 0x0000000000000000 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .xt.lit 0x0000000000000000 0x60 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .xt.prop 0x0000000000000000 0x744 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .literal.mesh_process_mgmt_announce$part$5 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.mesh_process_mgmt_routing_table$part$6 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.optype2str + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_get_optlen + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_mcast_cover_node + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.mesh_remove_myself_from_forwarding + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_delivery_toDS + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_delivery_toSelf + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.mesh_process_mcast_cover_node + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_process_mcast + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_process_bcast + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.mesh_process_mgmt_root_switch + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.mesh_process_mgmt_root_waive + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.mesh_process_mgmt_announce + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.mesh_process_mgmt_routing_table + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_process_options + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_process_ucast + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_forward_packet + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .rodata.str1.4 + 0x0000000000000000 0x894 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.mesh_process_mgmt_announce$part$5 + 0x0000000000000000 0x32b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.mesh_process_mgmt_routing_table$part$6 + 0x0000000000000000 0x47e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.optype2str + 0x0000000000000000 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.esp_mesh_get_optlen + 0x0000000000000000 0xca /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.esp_mesh_mcast_cover_node + 0x0000000000000000 0x31e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.mesh_remove_myself_from_forwarding + 0x0000000000000000 0x126 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.esp_mesh_delivery_toDS + 0x0000000000000000 0x22c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.esp_mesh_delivery_toSelf + 0x0000000000000000 0x390 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.mesh_process_mcast_cover_node + 0x0000000000000000 0x4e5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.esp_mesh_process_mcast + 0x0000000000000000 0x199 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.esp_mesh_process_bcast + 0x0000000000000000 0x3a8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.mesh_process_mgmt_root_switch + 0x0000000000000000 0x196 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.mesh_process_mgmt_root_waive + 0x0000000000000000 0x1ea /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.mesh_process_mgmt_announce + 0x0000000000000000 0x66 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.mesh_process_mgmt_routing_table + 0x0000000000000000 0x6e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.esp_mesh_process_options + 0x0000000000000000 0x210 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.esp_mesh_process_ucast + 0x0000000000000000 0xbf3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .text.esp_mesh_forward_packet + 0x0000000000000000 0x413 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .rodata.CSWTCH$105 + 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .rodata.__func__$7880 + 0x0000000000000000 0x17 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .rodata.__func__$7866 + 0x0000000000000000 0x17 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .rodata.__func__$7850 + 0x0000000000000000 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .rodata.__func__$7818 + 0x0000000000000000 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .rodata.__func__$7780 + 0x0000000000000000 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .bss.mesh_xseqno + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .data.MESH_BCAST_ADDR + 0x0000000000000000 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .bss.MESH_ZERO_ADDR + 0x0000000000000000 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .comment 0x0000000000000000 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .xt.lit 0x0000000000000000 0x90 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .xt.prop 0x0000000000000000 0x14e8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .literal.esp_mesh_channel_enable_jp + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .literal.esp_mesh_scan_done_get_channel + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .literal.mesh_nwk_process_reselect + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .literal.mesh_nwk_process_look_for_network + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .literal.mesh_nwk_process_allow_switch + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .rodata.str1.4 + 0x0000000000000000 0x6e0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .rodata 0x0000000000000000 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .text.esp_mesh_channel_enable_jp + 0x0000000000000000 0x63 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .text.esp_mesh_scan_done_get_channel + 0x0000000000000000 0x92a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .text.mesh_nwk_process_reselect + 0x0000000000000000 0x2a4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .text.mesh_nwk_process_look_for_network + 0x0000000000000000 0x36d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .text.mesh_nwk_process_allow_switch + 0x0000000000000000 0x17c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .rodata.__func__$7844 + 0x0000000000000000 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .rodata.__func__$7833 + 0x0000000000000000 0x22 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .bss.look_for_nwk_count$7828 + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .bss.scan_times$7812 + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .rodata.__func__$7817 + 0x0000000000000000 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .bss.MESH_ZERO_ADDR + 0x0000000000000000 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .comment 0x0000000000000000 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .xt.lit 0x0000000000000000 0x28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .xt.prop 0x0000000000000000 0x5e8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .literal.mesh_sta_set_config + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + .literal.mesh_sta_start + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + .rodata.str1.4 + 0x0000000000000000 0xf6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + .rodata 0x0000000000000000 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + .text.mesh_sta_set_config + 0x0000000000000000 0x25d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + .text.mesh_sta_start + 0x0000000000000000 0xee /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + .rodata.__func__$7780 + 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + .comment 0x0000000000000000 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + .xt.lit 0x0000000000000000 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + .xt.prop 0x0000000000000000 0x15c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + .literal.esp_mesh_push_to_rx_queue + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .literal.esp_mesh_wifi_recv_cb + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .literal.esp_mesh_rx_task_deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .literal.mesh_rx_task_deinit + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .literal.mesh_rx_task_main + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .literal.esp_mesh_rx_task_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .rodata.str1.4 + 0x0000000000000000 0x2e0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .text.esp_mesh_push_to_rx_queue + 0x0000000000000000 0xd6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .text.esp_mesh_wifi_recv_cb + 0x0000000000000000 0x7f6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .text.esp_mesh_rx_task_deinit + 0x0000000000000000 0x48 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .text.mesh_rx_task_deinit + 0x0000000000000000 0x90 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .text.mesh_rx_task_main + 0x0000000000000000 0x288 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .text.esp_mesh_rx_task_init + 0x0000000000000000 0x88 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .rodata.__func__$7827 + 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .rodata.__func__$7814 + 0x0000000000000000 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .bss.parent_last_mac_seqno$7811 + 0x0000000000000000 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .rodata.__func__$7794 + 0x0000000000000000 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .bss.mesh_rx_task + 0x0000000000000000 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .bss.mesh_rx_mbox + 0x0000000000000000 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .bss.is_rx_running + 0x0000000000000000 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .data.MESH_BCAST_ADDR + 0x0000000000000000 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .bss.MESH_ZERO_ADDR + 0x0000000000000000 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .comment 0x0000000000000000 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .xt.lit 0x0000000000000000 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .xt.prop 0x0000000000000000 0x564 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .literal.temprature_sens_read + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .literal.dac_out + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .literal.touch_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .literal.touch_read + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .literal.vdd33_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .literal.get_vdd33 + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .literal.adc1_read_test + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .literal.adc1_amp_read_full + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .literal.hall_sens_read_full + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .literal.hall_sens_amp_read_full + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .literal.adc2_read_test + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .literal.adc1_pad_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .literal.adc1_read + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .literal.adc1_amp_read + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .literal.hall_sens_read + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .literal.hall_sens_amp_read + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .literal.adc2_pad_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .literal.adc2_read + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .literal.adc_pad_int + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .literal.adc_pad_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .literal.dac_pad_init + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .text.dac_out 0x0000000000000000 0x249 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .text.touch_init + 0x0000000000000000 0xc2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .text.touch_read + 0x0000000000000000 0xba /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .text.vdd33_init + 0x0000000000000000 0x13b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .text.get_vdd33 + 0x0000000000000000 0x100 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .text.adc1_read_test + 0x0000000000000000 0x1f0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .text.adc1_amp_read_full + 0x0000000000000000 0x213 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .text.hall_sens_read_full + 0x0000000000000000 0xfd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .text.hall_sens_amp_read_full + 0x0000000000000000 0xe8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .text.adc2_read_test + 0x0000000000000000 0x1b0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .text.adc1_pad_init + 0x0000000000000000 0x6e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .text.adc1_read + 0x0000000000000000 0x28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .text.adc1_amp_read + 0x0000000000000000 0x29 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .text.hall_sens_read + 0x0000000000000000 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .text.hall_sens_amp_read + 0x0000000000000000 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .text.adc2_pad_init + 0x0000000000000000 0x70 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .text.adc2_read + 0x0000000000000000 0x28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .text.adc_pad_int + 0x0000000000000000 0x108 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .text.adc_pad_init + 0x0000000000000000 0x180 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .text.dac_pad_init + 0x0000000000000000 0xce /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .rodata.CSWTCH$24 + 0x0000000000000000 0x28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .rodata.CSWTCH$18 + 0x0000000000000000 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .xt.lit 0x0000000000000000 0xa8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .xt.prop 0x0000000000000000 0x630 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .literal.rtc_cmd_wakeup_conf + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .literal.rtc_pads_muxsel + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .literal.rtc_pads_funsel + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .literal.rtc_pads_slpsel + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .literal.rtc_pads_slpoe + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .literal.rtc_pads_slpie + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .literal.rtc_pads_funie + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .literal.rtc_pads_pu + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .literal.rtc_pads_pd + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .literal.rtc_pads_hold + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .literal.rtc_apbbridge_sel + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .literal.rtc_powerup_rf + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .literal.rtc_powerdown_rf + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .literal.rtc_get_st + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .literal.rtc_is_st_idle + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .literal.rtc_soc_clk_ck12m + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .literal.rtc_init_full + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .literal.rtc_pad_gpio_wakeup + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .literal.rtc_pad_ext_wakeup + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .literal.rtc_cmd_ext_wakeup + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .literal.rtc_wifi_force_pd + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .literal.rtc_sdreg_off + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .literal.rtc_slp_prep_lite_12M + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .literal.cfg_sdio_volt + 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .text.rtc_cmd_wakeup_conf + 0x0000000000000000 0x67 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .text.rtc_pads_muxsel + 0x0000000000000000 0x29e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .text.rtc_pads_funsel + 0x0000000000000000 0x292 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .text.rtc_pads_slpsel + 0x0000000000000000 0x292 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .text.rtc_pads_slpoe + 0x0000000000000000 0x1ba /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .text.rtc_pads_slpie + 0x0000000000000000 0x28e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .text.rtc_pads_funie + 0x0000000000000000 0x292 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .text.rtc_pads_pu + 0x0000000000000000 0x1ba /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .text.rtc_pads_pd + 0x0000000000000000 0x1ba /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .text.rtc_pads_hold + 0x0000000000000000 0x266 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .text.rtc_apbbridge_sel + 0x0000000000000000 0x29 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .text.rtc_powerup_rf + 0x0000000000000000 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .text.rtc_powerdown_rf + 0x0000000000000000 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .text.rtc_get_st + 0x0000000000000000 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .text.rtc_is_st_idle + 0x0000000000000000 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .text.rtc_soc_clk_ck12m + 0x0000000000000000 0x4f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .text.rtc_init_full + 0x0000000000000000 0x3ba /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .text.rtc_pad_gpio_wakeup + 0x0000000000000000 0xd3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .text.rtc_pad_ext_wakeup + 0x0000000000000000 0xd7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .text.rtc_cmd_ext_wakeup + 0x0000000000000000 0xce /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .text.rtc_wifi_force_pd + 0x0000000000000000 0x68 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .text.rtc_sdreg_off + 0x0000000000000000 0x48 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .text.rtc_slp_prep_lite_12M + 0x0000000000000000 0x32 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .text.cfg_sdio_volt + 0x0000000000000000 0xb3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .debug_frame 0x0000000000000000 0x250 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .debug_info 0x0000000000000000 0x965 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .debug_abbrev 0x0000000000000000 0x1ac /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .debug_loc 0x0000000000000000 0x455 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .debug_aranges + 0x0000000000000000 0xd8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .debug_ranges 0x0000000000000000 0xc8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .debug_line 0x0000000000000000 0x104b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .debug_str 0x0000000000000000 0x4a2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .comment 0x0000000000000000 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .xt.lit 0x0000000000000000 0xc0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .xt.prop 0x0000000000000000 0xc6c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .literal.esp_mesh_send_event_internal + 0x0000000000000000 0x8 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .text.esp_mesh_send_event_internal + 0x0000000000000000 0x1a esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .rodata.str1.4 + 0x0000000000000000 0xb esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .data.MESH_EVENT + 0x0000000000000000 0x4 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_frame 0x0000000000000000 0x28 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_info 0x0000000000000000 0x3e77 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_abbrev 0x0000000000000000 0x2e4 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_loc 0x0000000000000000 0x25 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_aranges + 0x0000000000000000 0x20 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_ranges 0x0000000000000000 0x10 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_line 0x0000000000000000 0x72d esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .debug_str 0x0000000000000000 0x2fae esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .xt.prop 0x0000000000000000 0x3c esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .text 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + .xt.prop 0x0000000000000000 0x30 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + .text 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + .xt.prop 0x0000000000000000 0x30 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + .literal._ZSt15set_new_handlerPFvvE + 0x0000000000000000 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .text 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .text._ZSt15set_new_handlerPFvvE + 0x0000000000000000 0x1f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .xt.lit 0x0000000000000000 0x10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .xt.prop 0x0000000000000000 0x78 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .group 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + .group 0x0000000000000000 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + .group 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + .group 0x0000000000000000 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + .text 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + .xt.prop 0x0000000000000000 0x78 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + .text 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + .xt.prop 0x0000000000000000 0x30 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + .group 0x0000000000000000 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .text 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .xt.lit 0x0000000000000000 0x30 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .xt.prop 0x0000000000000000 0x198 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .literal._ZSt13set_terminatePFvvE + 0x0000000000000000 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .literal._ZSt14set_unexpectedPFvvE + 0x0000000000000000 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .text 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .text._ZSt13set_terminatePFvvE + 0x0000000000000000 0x1f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .text._ZSt14set_unexpectedPFvvE + 0x0000000000000000 0x1f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .xt.lit 0x0000000000000000 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .xt.prop 0x0000000000000000 0x198 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .text 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + .xt.lit 0x0000000000000000 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + .xt.prop 0x0000000000000000 0x684 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + .text 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + .xt.prop 0x0000000000000000 0x30 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + .literal.__cxa_get_globals + 0x0000000000000000 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .text 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .text.__cxa_get_globals + 0x0000000000000000 0x42 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .gcc_except_table.__cxa_get_globals + 0x0000000000000000 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .xt.lit 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .xt.prop 0x0000000000000000 0x168 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .group 0x0000000000000000 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .text 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .xt.lit 0x0000000000000000 0x30 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .xt.prop 0x0000000000000000 0x1b0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .group 0x0000000000000000 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .literal._ZNSt9type_infoD0Ev + 0x0000000000000000 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .literal._ZNKSt9type_info10__do_catchEPKS_PPvj + 0x0000000000000000 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .text 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .text._ZNKSt9type_info11__do_upcastEPKN10__cxxabiv117__class_type_infoEPPv + 0x0000000000000000 0x7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .text._ZNSt9type_infoD0Ev + 0x0000000000000000 0xf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .text._ZNKSt9type_info10__do_catchEPKS_PPvj + 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .rodata._ZTVSt9type_info + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .xt.lit 0x0000000000000000 0x10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .xt.prop 0x0000000000000000 0xcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .xt.prop._ZTVSt9type_info + 0x0000000000000000 0xc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .text 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + .xt.prop 0x0000000000000000 0xc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + .text 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + .xt.prop 0x0000000000000000 0xc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + .text 0x0000000000000000 0x59 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divsf3.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divsf3.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divsf3.o) + .debug_line 0x0000000000000000 0x13a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divsf3.o) + .debug_info 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divsf3.o) + .debug_abbrev 0x0000000000000000 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divsf3.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divsf3.o) + .debug_str 0x0000000000000000 0xd3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divsf3.o) + .xt.prop 0x0000000000000000 0x24 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divsf3.o) + .text 0x0000000000000000 0x85 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatdisf.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatdisf.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatdisf.o) + .debug_line 0x0000000000000000 0x19a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatdisf.o) + .debug_info 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatdisf.o) + .debug_abbrev 0x0000000000000000 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatdisf.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatdisf.o) + .debug_str 0x0000000000000000 0xd3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatdisf.o) + .xt.prop 0x0000000000000000 0x90 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatdisf.o) + .literal 0x0000000000000000 0xc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_muldf3.o) + .text 0x0000000000000000 0x1ff /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_muldf3.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_muldf3.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_muldf3.o) + .debug_line 0x0000000000000000 0x4b9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_muldf3.o) + .debug_info 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_muldf3.o) + .debug_abbrev 0x0000000000000000 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_muldf3.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_muldf3.o) + .debug_str 0x0000000000000000 0xd3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_muldf3.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_muldf3.o) + .xt.prop 0x0000000000000000 0x228 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_muldf3.o) + .literal 0x0000000000000000 0x10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdf3.o) + .text 0x0000000000000000 0x213 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdf3.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdf3.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdf3.o) + .debug_line 0x0000000000000000 0x4e2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdf3.o) + .debug_info 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdf3.o) + .debug_abbrev 0x0000000000000000 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdf3.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdf3.o) + .debug_str 0x0000000000000000 0xd3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdf3.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdf3.o) + .xt.prop 0x0000000000000000 0x264 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdf3.o) + .literal 0x0000000000000000 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfdi.o) + .text 0x0000000000000000 0x6c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfdi.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfdi.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfdi.o) + .debug_line 0x0000000000000000 0x176 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfdi.o) + .debug_info 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfdi.o) + .debug_abbrev 0x0000000000000000 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfdi.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfdi.o) + .debug_str 0x0000000000000000 0xd3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfdi.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfdi.o) + .xt.prop 0x0000000000000000 0xa8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfdi.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfdi.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfdi.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfdi.o) + .xt.prop 0x0000000000000000 0xcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfdi.o) + .text 0x0000000000000000 0x3d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatsidf.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatsidf.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatsidf.o) + .debug_line 0x0000000000000000 0x10a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatsidf.o) + .debug_info 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatsidf.o) + .debug_abbrev 0x0000000000000000 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatsidf.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatsidf.o) + .debug_str 0x0000000000000000 0xd3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatsidf.o) + .xt.prop 0x0000000000000000 0x54 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatsidf.o) + .text 0x0000000000000000 0x81 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatdidf.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatdidf.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatdidf.o) + .debug_line 0x0000000000000000 0x19a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatdidf.o) + .debug_info 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatdidf.o) + .debug_abbrev 0x0000000000000000 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatdidf.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatdidf.o) + .debug_str 0x0000000000000000 0xd3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatdidf.o) + .xt.prop 0x0000000000000000 0x9c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatdidf.o) + .literal 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_extendsfdf2.o) + .text 0x0000000000000000 0x62 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_extendsfdf2.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_extendsfdf2.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_extendsfdf2.o) + .debug_line 0x0000000000000000 0x158 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_extendsfdf2.o) + .debug_info 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_extendsfdf2.o) + .debug_abbrev 0x0000000000000000 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_extendsfdf2.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_extendsfdf2.o) + .debug_str 0x0000000000000000 0xd3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_extendsfdf2.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_extendsfdf2.o) + .xt.prop 0x0000000000000000 0x6c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_extendsfdf2.o) + .literal 0x0000000000000000 0xc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .text 0x0000000000000000 0x37 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .debug_info 0x0000000000000000 0xb02 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .debug_abbrev 0x0000000000000000 0x1b1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .debug_loc 0x0000000000000000 0xd1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .debug_line 0x0000000000000000 0x330 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .debug_str 0x0000000000000000 0x6e3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .xt.prop 0x0000000000000000 0x30 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .literal 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .text 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .debug_info 0x0000000000000000 0xb02 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .debug_abbrev 0x0000000000000000 0x1b1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .debug_loc 0x0000000000000000 0x25 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .debug_line 0x0000000000000000 0x2e2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .debug_str 0x0000000000000000 0x6df /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .xt.prop 0x0000000000000000 0x30 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .text 0x0000000000000000 0x2aa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .xt.prop 0x0000000000000000 0x234 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .text 0x0000000000000000 0x2ae /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + .xt.prop 0x0000000000000000 0x168 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + .text 0x0000000000000000 0x26a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .xt.prop 0x0000000000000000 0x21c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .text 0x0000000000000000 0x272 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + .xt.prop 0x0000000000000000 0x168 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + .xt.prop 0x0000000000000000 0x7bc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + .xt.prop 0x0000000000000000 0xbd0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + .literal 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(lib2funcs.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(lib2funcs.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(lib2funcs.o) + .xt.prop 0x0000000000000000 0xe4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(lib2funcs.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) + .xt.prop 0x0000000000000000 0xf0 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(int_asm--set_intclear.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(int_asm--set_intclear.o) + .xt.prop 0x0000000000000000 0x24 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(int_asm--set_intclear.o) + .text 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) + .xt.prop 0x0000000000000000 0xc /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--restore_extra_nw.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--restore_extra_nw.o) + .xt.prop 0x0000000000000000 0x24 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--restore_extra_nw.o) + .data 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--save_extra_nw.o) + .bss 0x0000000000000000 0x0 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--save_extra_nw.o) + .xt.prop 0x0000000000000000 0x24 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--save_extra_nw.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) + .xt.prop 0x0000000000000000 0x60 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + .xt.prop 0x0000000000000000 0x3c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + .literal 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + .text 0x0000000000000000 0x29 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + .debug_frame 0x0000000000000000 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + .debug_info 0x0000000000000000 0x9d9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + .debug_abbrev 0x0000000000000000 0x1e4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + .debug_loc 0x0000000000000000 0x4a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + .debug_line 0x0000000000000000 0x290 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + .debug_str 0x0000000000000000 0x5cf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + .xt.prop 0x0000000000000000 0x48 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + .literal 0x0000000000000000 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .text 0x0000000000000000 0x12 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .debug_info 0x0000000000000000 0x977 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .debug_abbrev 0x0000000000000000 0x1cc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .debug_line 0x0000000000000000 0x262 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .debug_str 0x0000000000000000 0x5c3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .xt.prop 0x0000000000000000 0x30 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .text 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + .bss 0x0000000000000000 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + .debug_info 0x0000000000000000 0x43 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + .debug_abbrev 0x0000000000000000 0x37 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + .debug_aranges + 0x0000000000000000 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + .debug_line 0x0000000000000000 0x79 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + .debug_str 0x0000000000000000 0x110 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .xt.prop 0x0000000000000000 0x30 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .literal 0x0000000000000000 0x48 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .text 0x0000000000000000 0x11e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .debug_frame 0x0000000000000000 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .debug_info 0x0000000000000000 0xdad /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .debug_abbrev 0x0000000000000000 0x2a4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .debug_loc 0x0000000000000000 0x10a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .debug_line 0x0000000000000000 0x560 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .debug_str 0x0000000000000000 0x7de /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .xt.prop 0x0000000000000000 0x108 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + .xt.prop 0x0000000000000000 0x84 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + .literal 0x0000000000000000 0x44 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .text 0x0000000000000000 0x1fc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .debug_frame 0x0000000000000000 0x58 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .debug_info 0x0000000000000000 0xe7b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .debug_abbrev 0x0000000000000000 0x2f1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .debug_loc 0x0000000000000000 0x28d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .debug_line 0x0000000000000000 0x880 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .debug_str 0x0000000000000000 0x7e1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .xt.prop 0x0000000000000000 0x210 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) + .xt.prop 0x0000000000000000 0xb4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .xt.prop 0x0000000000000000 0xfc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) + .xt.prop 0x0000000000000000 0x9c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) + .literal 0x0000000000000000 0x94 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .text 0x0000000000000000 0x25b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .bss 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .rodata 0x0000000000000000 0x60 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .debug_frame 0x0000000000000000 0x160 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .debug_info 0x0000000000000000 0x1292 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .debug_abbrev 0x0000000000000000 0x3b4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .debug_loc 0x0000000000000000 0x18d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .debug_ranges 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .debug_line 0x0000000000000000 0x9fd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .debug_str 0x0000000000000000 0x8eb /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .xt.prop 0x0000000000000000 0x228 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + .xt.prop 0x0000000000000000 0x48 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .xt.prop 0x0000000000000000 0x9c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + .xt.prop 0x0000000000000000 0x48 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + .xt.prop 0x0000000000000000 0x9c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .xt.prop 0x0000000000000000 0xa8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .xt.prop 0x0000000000000000 0x108 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .xt.prop 0x0000000000000000 0x48 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .xt.prop 0x0000000000000000 0x2dc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + .xt.prop 0x0000000000000000 0x48 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + .xt.prop 0x0000000000000000 0x144 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + .literal 0x0000000000000000 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .text 0x0000000000000000 0x2c1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .debug_info 0x0000000000000000 0xf31 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .debug_abbrev 0x0000000000000000 0x26f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .debug_loc 0x0000000000000000 0x5bc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .debug_line 0x0000000000000000 0xb20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .debug_str 0x0000000000000000 0x7d2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .xt.prop 0x0000000000000000 0x204 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .text 0x0000000000000000 0x77 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .debug_frame 0x0000000000000000 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .debug_info 0x0000000000000000 0xcd5 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .debug_abbrev 0x0000000000000000 0x20d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .debug_loc 0x0000000000000000 0x11b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .debug_line 0x0000000000000000 0x437 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .debug_str 0x0000000000000000 0x745 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .xt.prop 0x0000000000000000 0xb4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + .xt.prop 0x0000000000000000 0xcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + .xt.prop 0x0000000000000000 0x4b0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + .text 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .bss 0x0000000000000000 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .debug_info 0x0000000000000000 0x916 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .debug_abbrev 0x0000000000000000 0x169 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .debug_aranges + 0x0000000000000000 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .debug_line 0x0000000000000000 0x174 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .debug_str 0x0000000000000000 0x5a7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .literal 0x0000000000000000 0x2c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .text 0x0000000000000000 0x27d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .debug_info 0x0000000000000000 0xc51 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .debug_abbrev 0x0000000000000000 0x234 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .debug_loc 0x0000000000000000 0x1ba /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .debug_line 0x0000000000000000 0x885 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .debug_str 0x0000000000000000 0x6f9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .xt.prop 0x0000000000000000 0x234 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .bss 0x0000000000000000 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .xt.prop 0x0000000000000000 0x9c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .xt.prop 0x0000000000000000 0xf0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .xt.prop 0x0000000000000000 0x60 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .text 0x0000000000000000 0x1b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .debug_info 0x0000000000000000 0x9ac /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .debug_abbrev 0x0000000000000000 0x1c3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .debug_loc 0x0000000000000000 0xab /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .debug_line 0x0000000000000000 0x2ab /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .debug_str 0x0000000000000000 0x5c7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .xt.prop 0x0000000000000000 0x48 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .text 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .debug_info 0x0000000000000000 0x999 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .debug_abbrev 0x0000000000000000 0x1c0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .debug_loc 0x0000000000000000 0xb9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .debug_line 0x0000000000000000 0x2ca /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .debug_str 0x0000000000000000 0x5b7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .xt.prop 0x0000000000000000 0x54 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .text 0x0000000000000000 0x135 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .debug_line 0x0000000000000000 0x355 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .debug_info 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .debug_abbrev 0x0000000000000000 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .debug_str 0x0000000000000000 0xe4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .xt.prop 0x0000000000000000 0x150 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .text 0x0000000000000000 0x3f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .debug_info 0x0000000000000000 0xef7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .debug_abbrev 0x0000000000000000 0x1c8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .debug_loc 0x0000000000000000 0x1bf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .debug_line 0x0000000000000000 0x39d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .debug_str 0x0000000000000000 0x8e7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .xt.prop 0x0000000000000000 0x6c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .text 0x0000000000000000 0x74 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .debug_line 0x0000000000000000 0x18c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .debug_info 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .debug_abbrev 0x0000000000000000 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .debug_str 0x0000000000000000 0xe4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .xt.prop 0x0000000000000000 0xcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .literal 0x0000000000000000 0x48 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + .text 0x0000000000000000 0x5b6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + .rodata 0x0000000000000000 0x60 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + .debug_frame 0x0000000000000000 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + .debug_info 0x0000000000000000 0xda9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + .debug_abbrev 0x0000000000000000 0x28e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + .debug_loc 0x0000000000000000 0x42d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + .debug_ranges 0x0000000000000000 0x38 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + .debug_line 0x0000000000000000 0xe68 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + .debug_str 0x0000000000000000 0x769 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + .xt.prop 0x0000000000000000 0x2f4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + .text 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .rodata 0x0000000000000000 0x60 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .debug_info 0x0000000000000000 0x979 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .debug_abbrev 0x0000000000000000 0x182 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .debug_aranges + 0x0000000000000000 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .debug_line 0x0000000000000000 0x239 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .debug_str 0x0000000000000000 0x5d8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .xt.prop 0x0000000000000000 0xc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + .xt.prop 0x0000000000000000 0x2dc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .xt.prop 0x0000000000000000 0x60 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .xt.prop 0x0000000000000000 0xb4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .xt.prop 0x0000000000000000 0x60 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .xt.prop 0x0000000000000000 0xa8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .literal 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .text 0x0000000000000000 0x2de /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .debug_frame 0x0000000000000000 0x58 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .debug_info 0x0000000000000000 0x113a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .debug_abbrev 0x0000000000000000 0x330 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .debug_loc 0x0000000000000000 0x7e8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .debug_line 0x0000000000000000 0x956 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .debug_str 0x0000000000000000 0x5fb /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .xt.prop 0x0000000000000000 0x348 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .literal 0x0000000000000000 0x44 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + .text 0x0000000000000000 0xaf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + .debug_frame 0x0000000000000000 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + .debug_info 0x0000000000000000 0xa44 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + .debug_abbrev 0x0000000000000000 0x23b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + .debug_loc 0x0000000000000000 0x7e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + .debug_ranges 0x0000000000000000 0x60 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + .debug_line 0x0000000000000000 0x43a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + .debug_str 0x0000000000000000 0x5d9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + .xt.prop 0x0000000000000000 0x54 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .xt.prop 0x0000000000000000 0x114 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .literal 0x0000000000000000 0x38 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .text 0x0000000000000000 0x164 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .debug_frame 0x0000000000000000 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .debug_info 0x0000000000000000 0xd27 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .debug_abbrev 0x0000000000000000 0x264 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .debug_loc 0x0000000000000000 0x135 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .debug_line 0x0000000000000000 0x68a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .debug_str 0x0000000000000000 0x788 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .xt.prop 0x0000000000000000 0x150 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) + .xt.prop 0x0000000000000000 0x90 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) + .text 0x0000000000000000 0xd8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setjmp.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setjmp.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setjmp.o) + .debug_line 0x0000000000000000 0x2ad /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setjmp.o) + .debug_info 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setjmp.o) + .debug_abbrev 0x0000000000000000 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setjmp.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setjmp.o) + .debug_str 0x0000000000000000 0xe4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setjmp.o) + .xt.prop 0x0000000000000000 0x6c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setjmp.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .xt.prop 0x0000000000000000 0x18c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .xt.prop 0x0000000000000000 0xc0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + .xt.prop 0x0000000000000000 0x48 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + .xt.prop 0x0000000000000000 0x48 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + .literal 0x0000000000000000 0x24 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .text 0x0000000000000000 0xbe /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .debug_frame 0x0000000000000000 0x88 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .debug_info 0x0000000000000000 0xe38 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .debug_abbrev 0x0000000000000000 0x24f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .debug_loc 0x0000000000000000 0x14c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .debug_line 0x0000000000000000 0x45c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .debug_str 0x0000000000000000 0x77d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .xt.prop 0x0000000000000000 0xcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .text 0x0000000000000000 0x1d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strchr.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strchr.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strchr.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strchr.o) + .debug_info 0x0000000000000000 0x982 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strchr.o) + .debug_abbrev 0x0000000000000000 0x1aa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strchr.o) + .debug_loc 0x0000000000000000 0x74 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strchr.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strchr.o) + .debug_line 0x0000000000000000 0x2b6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strchr.o) + .debug_str 0x0000000000000000 0x5b0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strchr.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strchr.o) + .xt.prop 0x0000000000000000 0x54 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strchr.o) + .literal 0x0000000000000000 0x1c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + .text 0x0000000000000000 0x123 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + .debug_line 0x0000000000000000 0x2fb /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + .debug_info 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + .debug_abbrev 0x0000000000000000 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + .debug_str 0x0000000000000000 0xe4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + .xt.prop 0x0000000000000000 0x120 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + .literal 0x0000000000000000 0xc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + .text 0x0000000000000000 0x90 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + .debug_line 0x0000000000000000 0x1c8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + .debug_info 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + .debug_abbrev 0x0000000000000000 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + .debug_str 0x0000000000000000 0xe4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + .xt.prop 0x0000000000000000 0x114 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + .text 0x0000000000000000 0x2b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .debug_info 0x0000000000000000 0x97a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .debug_abbrev 0x0000000000000000 0x1b9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .debug_loc 0x0000000000000000 0x83 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .debug_line 0x0000000000000000 0x2f3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .debug_str 0x0000000000000000 0x5b9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .xt.prop 0x0000000000000000 0x90 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .literal 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + .text 0x0000000000000000 0x15 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + .debug_info 0x0000000000000000 0x980 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + .debug_abbrev 0x0000000000000000 0x1f1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + .debug_loc 0x0000000000000000 0x25 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + .debug_line 0x0000000000000000 0x26e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + .debug_str 0x0000000000000000 0x5cf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + .xt.prop 0x0000000000000000 0x30 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + .literal 0x0000000000000000 0xc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + .text 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + .debug_info 0x0000000000000000 0x9ff /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + .debug_abbrev 0x0000000000000000 0x22c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + .debug_loc 0x0000000000000000 0x4f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + .debug_line 0x0000000000000000 0x2a8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + .debug_str 0x0000000000000000 0x5ed /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + .xt.prop 0x0000000000000000 0x3c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + .literal 0x0000000000000000 0x10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .text 0x0000000000000000 0x2e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .debug_info 0x0000000000000000 0xa2b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .debug_abbrev 0x0000000000000000 0x239 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .debug_loc 0x0000000000000000 0x3a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .debug_line 0x0000000000000000 0x29a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .debug_str 0x0000000000000000 0x60f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .xt.prop 0x0000000000000000 0x3c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .literal 0x0000000000000000 0x11c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) + .text 0x0000000000000000 0xc48 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) + .rodata.str1.1 + 0x0000000000000000 0x6b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) + .rodata 0x0000000000000000 0x158 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) + .debug_frame 0x0000000000000000 0x70 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) + .debug_info 0x0000000000000000 0x19fa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) + .debug_abbrev 0x0000000000000000 0x35b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) + .debug_loc 0x0000000000000000 0xf09 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) + .debug_line 0x0000000000000000 0x1a4e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) + .debug_str 0x0000000000000000 0xb3e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) + .xt.prop 0x0000000000000000 0x900 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) + .text 0x0000000000000000 0x46 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .debug_info 0x0000000000000000 0x9a2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .debug_abbrev 0x0000000000000000 0x1b9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .debug_loc 0x0000000000000000 0x1b3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .debug_line 0x0000000000000000 0x32b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .debug_str 0x0000000000000000 0x5b9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .xt.prop 0x0000000000000000 0x78 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .literal 0x0000000000000000 0xc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .text 0x0000000000000000 0x63 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .debug_line 0x0000000000000000 0x168 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .debug_info 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .debug_abbrev 0x0000000000000000 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .debug_str 0x0000000000000000 0xe4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .xt.prop 0x0000000000000000 0xc0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .literal 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncasecmp.o) + .text 0x0000000000000000 0x56 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncasecmp.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncasecmp.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncasecmp.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncasecmp.o) + .debug_info 0x0000000000000000 0x1a5 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncasecmp.o) + .debug_abbrev 0x0000000000000000 0xe2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncasecmp.o) + .debug_loc 0x0000000000000000 0x177 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncasecmp.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncasecmp.o) + .debug_line 0x0000000000000000 0x261 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncasecmp.o) + .debug_str 0x0000000000000000 0x1ca /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncasecmp.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncasecmp.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncasecmp.o) + .xt.prop 0x0000000000000000 0x78 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncasecmp.o) + .text 0x0000000000000000 0x32 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncat.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncat.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncat.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncat.o) + .debug_info 0x0000000000000000 0x98a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncat.o) + .debug_abbrev 0x0000000000000000 0x1af /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncat.o) + .debug_loc 0x0000000000000000 0xc4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncat.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncat.o) + .debug_line 0x0000000000000000 0x2df /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncat.o) + .debug_str 0x0000000000000000 0x5b9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncat.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncat.o) + .xt.prop 0x0000000000000000 0x6c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncat.o) + .text 0x0000000000000000 0x3e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .debug_info 0x0000000000000000 0x96e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .debug_abbrev 0x0000000000000000 0x194 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .debug_loc 0x0000000000000000 0xd6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .debug_line 0x0000000000000000 0x2e7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .debug_str 0x0000000000000000 0x5b9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .xt.prop 0x0000000000000000 0x3c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .literal 0x0000000000000000 0xc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .text 0x0000000000000000 0x113 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .debug_line 0x0000000000000000 0x2ef /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .debug_info 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .debug_abbrev 0x0000000000000000 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .debug_str 0x0000000000000000 0xe5 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .xt.prop 0x0000000000000000 0x1a4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .literal 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + .text 0x0000000000000000 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + .debug_info 0x0000000000000000 0x99e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + .debug_abbrev 0x0000000000000000 0x202 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + .debug_loc 0x0000000000000000 0x25 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + .debug_line 0x0000000000000000 0x271 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + .debug_str 0x0000000000000000 0x5d9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + .xt.prop 0x0000000000000000 0x30 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + .literal 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + .text 0x0000000000000000 0x41 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + .debug_info 0x0000000000000000 0xa05 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + .debug_abbrev 0x0000000000000000 0x22f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + .debug_loc 0x0000000000000000 0xff /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + .debug_line 0x0000000000000000 0x30f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + .debug_str 0x0000000000000000 0x5e8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + .xt.prop 0x0000000000000000 0x78 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + .text 0x0000000000000000 0x1d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strnlen.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strnlen.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strnlen.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strnlen.o) + .debug_info 0x0000000000000000 0x970 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strnlen.o) + .debug_abbrev 0x0000000000000000 0x1a8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strnlen.o) + .debug_loc 0x0000000000000000 0x79 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strnlen.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strnlen.o) + .debug_line 0x0000000000000000 0x29d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strnlen.o) + .debug_str 0x0000000000000000 0x5bf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strnlen.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strnlen.o) + .xt.prop 0x0000000000000000 0x54 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strnlen.o) + .literal 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + .text 0x0000000000000000 0x2d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + .debug_info 0x0000000000000000 0x990 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + .debug_abbrev 0x0000000000000000 0x1f2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + .debug_loc 0x0000000000000000 0xa4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + .debug_line 0x0000000000000000 0x2cb /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + .debug_str 0x0000000000000000 0x5be /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + .xt.prop 0x0000000000000000 0x6c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + .text 0x0000000000000000 0x3a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .debug_info 0x0000000000000000 0x974 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .debug_abbrev 0x0000000000000000 0x1c2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .debug_loc 0x0000000000000000 0x6e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .debug_line 0x0000000000000000 0x2fc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .debug_str 0x0000000000000000 0x5c8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .xt.prop 0x0000000000000000 0x78 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .xt.prop 0x0000000000000000 0x984 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .literal 0x0000000000000000 0x24 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .text 0x0000000000000000 0x17c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .debug_frame 0x0000000000000000 0x70 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .debug_info 0x0000000000000000 0x123f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .debug_abbrev 0x0000000000000000 0x2ff /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .debug_loc 0x0000000000000000 0x39c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .debug_line 0x0000000000000000 0x787 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .debug_str 0x0000000000000000 0x98e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .xt.prop 0x0000000000000000 0x1c8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .xt.prop 0x0000000000000000 0x1f8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .literal 0x0000000000000000 0x1c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .text 0x0000000000000000 0x170 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .debug_frame 0x0000000000000000 0x70 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .debug_info 0x0000000000000000 0x123f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .debug_abbrev 0x0000000000000000 0x2ff /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .debug_loc 0x0000000000000000 0x38d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .debug_line 0x0000000000000000 0x76e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .debug_str 0x0000000000000000 0x993 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .xt.prop 0x0000000000000000 0x1c8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .xt.prop 0x0000000000000000 0x1ec /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .xt.prop 0x0000000000000000 0x27fc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + .xt.prop 0x0000000000000000 0x2100 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + .literal 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysclose.o) + .text 0x0000000000000000 0x15 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysclose.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysclose.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysclose.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysclose.o) + .debug_info 0x0000000000000000 0x9c1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysclose.o) + .debug_abbrev 0x0000000000000000 0x1f1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysclose.o) + .debug_loc 0x0000000000000000 0x25 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysclose.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysclose.o) + .debug_line 0x0000000000000000 0x271 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysclose.o) + .debug_str 0x0000000000000000 0x5f6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysclose.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysclose.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysclose.o) + .xt.prop 0x0000000000000000 0x30 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysclose.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .xt.prop 0x0000000000000000 0x30 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .literal 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysread.o) + .text 0x0000000000000000 0x19 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysread.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysread.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysread.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysread.o) + .debug_info 0x0000000000000000 0x9f5 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysread.o) + .debug_abbrev 0x0000000000000000 0x202 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysread.o) + .debug_loc 0x0000000000000000 0x25 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysread.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysread.o) + .debug_line 0x0000000000000000 0x272 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysread.o) + .debug_str 0x0000000000000000 0x5fa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysread.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysread.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysread.o) + .xt.prop 0x0000000000000000 0x30 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysread.o) + .literal 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysstat.o) + .text 0x0000000000000000 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysstat.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysstat.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysstat.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysstat.o) + .debug_info 0x0000000000000000 0xbfb /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysstat.o) + .debug_abbrev 0x0000000000000000 0x202 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysstat.o) + .debug_loc 0x0000000000000000 0x25 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysstat.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysstat.o) + .debug_line 0x0000000000000000 0x30b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysstat.o) + .debug_str 0x0000000000000000 0x753 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysstat.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysstat.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysstat.o) + .xt.prop 0x0000000000000000 0x30 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysstat.o) + .literal 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-syswrite.o) + .text 0x0000000000000000 0x19 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-syswrite.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-syswrite.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-syswrite.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-syswrite.o) + .debug_info 0x0000000000000000 0x9fc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-syswrite.o) + .debug_abbrev 0x0000000000000000 0x207 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-syswrite.o) + .debug_loc 0x0000000000000000 0x25 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-syswrite.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-syswrite.o) + .debug_line 0x0000000000000000 0x273 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-syswrite.o) + .debug_str 0x0000000000000000 0x5fd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-syswrite.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-syswrite.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-syswrite.o) + .xt.prop 0x0000000000000000 0x30 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-syswrite.o) + .literal 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-time.o) + .text 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-time.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-time.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-time.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-time.o) + .debug_info 0x0000000000000000 0xa0c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-time.o) + .debug_abbrev 0x0000000000000000 0x202 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-time.o) + .debug_loc 0x0000000000000000 0x25 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-time.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-time.o) + .debug_line 0x0000000000000000 0x2c5 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-time.o) + .debug_str 0x0000000000000000 0x617 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-time.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-time.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-time.o) + .xt.prop 0x0000000000000000 0x48 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-time.o) + .text 0x0000000000000000 0x7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-timelocal.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-timelocal.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-timelocal.o) + .rodata.str1.1 + 0x0000000000000000 0x12c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-timelocal.o) + .rodata 0x0000000000000000 0xfc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-timelocal.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-timelocal.o) + .debug_info 0x0000000000000000 0xf03 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-timelocal.o) + .debug_abbrev 0x0000000000000000 0x1ef /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-timelocal.o) + .debug_loc 0x0000000000000000 0x25 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-timelocal.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-timelocal.o) + .debug_line 0x0000000000000000 0x298 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-timelocal.o) + .debug_str 0x0000000000000000 0x8fd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-timelocal.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-timelocal.o) + .xt.prop 0x0000000000000000 0x30 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-timelocal.o) + .literal 0x0000000000000000 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .text 0x0000000000000000 0x16a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .debug_info 0x0000000000000000 0xb6e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .debug_abbrev 0x0000000000000000 0x207 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .debug_loc 0x0000000000000000 0x1ac /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .debug_ranges 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .debug_line 0x0000000000000000 0x606 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .debug_str 0x0000000000000000 0x698 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .xt.prop 0x0000000000000000 0xe4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .literal 0x0000000000000000 0x10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .text 0x0000000000000000 0x1e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .bss 0x0000000000000000 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .debug_frame 0x0000000000000000 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .debug_info 0x0000000000000000 0x9f1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .debug_abbrev 0x0000000000000000 0x1ce /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .debug_line 0x0000000000000000 0x26d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .debug_str 0x0000000000000000 0x60e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .xt.prop 0x0000000000000000 0x54 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .literal 0x0000000000000000 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .text 0x0000000000000000 0x31 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .debug_frame 0x0000000000000000 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .debug_info 0x0000000000000000 0xa08 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .debug_abbrev 0x0000000000000000 0x1c4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .debug_line 0x0000000000000000 0x279 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .debug_str 0x0000000000000000 0x619 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .xt.prop 0x0000000000000000 0x48 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .literal 0x0000000000000000 0x7c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .text 0x0000000000000000 0x33e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .bss 0x0000000000000000 0x1a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .rodata.str1.1 + 0x0000000000000000 0x4e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .debug_frame 0x0000000000000000 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .debug_info 0x0000000000000000 0xe78 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .debug_abbrev 0x0000000000000000 0x262 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .debug_loc 0x0000000000000000 0x1be /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .debug_line 0x0000000000000000 0xb3b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .debug_str 0x0000000000000000 0x70e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .xt.prop 0x0000000000000000 0x1d4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .text 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .data 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .bss 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .rodata.str1.1 + 0x0000000000000000 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .debug_info 0x0000000000000000 0x960 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .debug_abbrev 0x0000000000000000 0x17c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .debug_aranges + 0x0000000000000000 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .debug_line 0x0000000000000000 0x1ce /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .debug_str 0x0000000000000000 0x5c1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .xt.prop 0x0000000000000000 0xc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .xt.prop 0x0000000000000000 0x2208 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .xt.prop 0x0000000000000000 0x2904 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .xt.prop 0x0000000000000000 0x60 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + .xt.prop 0x0000000000000000 0x84 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + .literal 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .text 0x0000000000000000 0xdc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .debug_frame 0x0000000000000000 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .debug_info 0x0000000000000000 0xce2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .debug_abbrev 0x0000000000000000 0x288 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .debug_loc 0x0000000000000000 0x10c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .debug_ranges 0x0000000000000000 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .debug_line 0x0000000000000000 0x4c9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .debug_str 0x0000000000000000 0x763 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .xt.prop 0x0000000000000000 0xe4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .literal 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .text 0x0000000000000000 0x4d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .debug_frame 0x0000000000000000 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .debug_info 0x0000000000000000 0x1020 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .debug_abbrev 0x0000000000000000 0x24a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .debug_loc 0x0000000000000000 0xa7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .debug_ranges 0x0000000000000000 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .debug_line 0x0000000000000000 0x3e7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .debug_str 0x0000000000000000 0x968 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .xt.prop 0x0000000000000000 0x6c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .literal 0x0000000000000000 0x1c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .text 0x0000000000000000 0xdf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .debug_info 0x0000000000000000 0xc51 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .debug_abbrev 0x0000000000000000 0x247 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .debug_loc 0x0000000000000000 0x5c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .debug_line 0x0000000000000000 0x4fa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .debug_str 0x0000000000000000 0x75e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .xt.prop 0x0000000000000000 0xf0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .literal 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + .text 0x0000000000000000 0x27 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + .debug_info 0x0000000000000000 0xba7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + .debug_abbrev 0x0000000000000000 0x1f5 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + .debug_loc 0x0000000000000000 0x25 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + .debug_line 0x0000000000000000 0x30e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + .debug_str 0x0000000000000000 0x71e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + .xt.prop 0x0000000000000000 0x3c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + .text 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-abs.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-abs.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-abs.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-abs.o) + .debug_info 0x0000000000000000 0x948 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-abs.o) + .debug_abbrev 0x0000000000000000 0x1a7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-abs.o) + .debug_loc 0x0000000000000000 0x25 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-abs.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-abs.o) + .debug_line 0x0000000000000000 0x259 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-abs.o) + .debug_str 0x0000000000000000 0x5b0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-abs.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-abs.o) + .xt.prop 0x0000000000000000 0x24 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-abs.o) + .text 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + .rodata 0x0000000000000000 0x101 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + .debug_info 0x0000000000000000 0xe9a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + .debug_abbrev 0x0000000000000000 0x178 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + .debug_aranges + 0x0000000000000000 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + .debug_line 0x0000000000000000 0x259 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + .debug_str 0x0000000000000000 0x8cb /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + .text 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-div.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-div.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-div.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-div.o) + .debug_info 0x0000000000000000 0x9a0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-div.o) + .debug_abbrev 0x0000000000000000 0x1cf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-div.o) + .debug_loc 0x0000000000000000 0xbd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-div.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-div.o) + .debug_line 0x0000000000000000 0x2f8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-div.o) + .debug_str 0x0000000000000000 0x5c1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-div.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-div.o) + .xt.prop 0x0000000000000000 0x48 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-div.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .xt.prop 0x0000000000000000 0x81c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .xt.prop 0x0000000000000000 0xc0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .literal 0x0000000000000000 0x34 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + .text 0x0000000000000000 0x145 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + .debug_frame 0x0000000000000000 0x58 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + .debug_info 0x0000000000000000 0xed0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + .debug_abbrev 0x0000000000000000 0x2f3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + .debug_loc 0x0000000000000000 0x1e8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + .debug_ranges 0x0000000000000000 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + .debug_line 0x0000000000000000 0x5e5 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + .debug_str 0x0000000000000000 0x7f9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + .xt.prop 0x0000000000000000 0x144 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + .xt.prop 0x0000000000000000 0x48c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + .xt.prop 0x0000000000000000 0x1b0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) + .xt.prop 0x0000000000000000 0x48 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) + .literal 0x0000000000000000 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .text 0x0000000000000000 0x94 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .debug_frame 0x0000000000000000 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .debug_info 0x0000000000000000 0xaab /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .debug_abbrev 0x0000000000000000 0x236 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .debug_loc 0x0000000000000000 0x124 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .debug_line 0x0000000000000000 0x422 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .debug_str 0x0000000000000000 0x612 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .xt.prop 0x0000000000000000 0xcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .literal 0x0000000000000000 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .text 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .data 0x0000000000000000 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .debug_info 0x0000000000000000 0xa6a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .debug_abbrev 0x0000000000000000 0x1a4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .debug_line 0x0000000000000000 0x266 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .debug_str 0x0000000000000000 0x654 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .xt.prop 0x0000000000000000 0x3c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .literal 0x0000000000000000 0x44 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .text 0x0000000000000000 0x1ae /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .debug_info 0x0000000000000000 0xb35 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .debug_abbrev 0x0000000000000000 0x1fa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .debug_loc 0x0000000000000000 0x198 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .debug_line 0x0000000000000000 0x671 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .debug_str 0x0000000000000000 0x666 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .xt.prop 0x0000000000000000 0x90 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .xt.prop 0x0000000000000000 0x3c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .text 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-labs.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-labs.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-labs.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-labs.o) + .debug_info 0x0000000000000000 0x948 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-labs.o) + .debug_abbrev 0x0000000000000000 0x1a7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-labs.o) + .debug_loc 0x0000000000000000 0x32 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-labs.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-labs.o) + .debug_line 0x0000000000000000 0x260 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-labs.o) + .debug_str 0x0000000000000000 0x5b6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-labs.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-labs.o) + .xt.prop 0x0000000000000000 0x24 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-labs.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .xt.prop 0x0000000000000000 0x60 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .xt.prop 0x0000000000000000 0x6c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .xt.prop 0x0000000000000000 0x738 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .xt.prop 0x0000000000000000 0x48 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .text 0x0000000000000000 0x88 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .debug_info 0x0000000000000000 0xbd0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .debug_abbrev 0x0000000000000000 0x1f1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .debug_loc 0x0000000000000000 0x178 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .debug_line 0x0000000000000000 0x423 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .debug_str 0x0000000000000000 0x713 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .xt.prop 0x0000000000000000 0xc0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + .xt.prop 0x0000000000000000 0x30 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + .literal 0x0000000000000000 0x1c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .text 0x0000000000000000 0xc2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .debug_frame 0x0000000000000000 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .debug_info 0x0000000000000000 0xd0c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .debug_abbrev 0x0000000000000000 0x27c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .debug_loc 0x0000000000000000 0x99 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .debug_line 0x0000000000000000 0x4e1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .debug_str 0x0000000000000000 0x778 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .xt.prop 0x0000000000000000 0x48 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .literal 0x0000000000000000 0xc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sniprintf.o) + .text 0x0000000000000000 0xd9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sniprintf.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sniprintf.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sniprintf.o) + .debug_frame 0x0000000000000000 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sniprintf.o) + .debug_info 0x0000000000000000 0xd47 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sniprintf.o) + .debug_abbrev 0x0000000000000000 0x299 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sniprintf.o) + .debug_loc 0x0000000000000000 0x147 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sniprintf.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sniprintf.o) + .debug_line 0x0000000000000000 0x5d7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sniprintf.o) + .debug_str 0x0000000000000000 0x799 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sniprintf.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sniprintf.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sniprintf.o) + .xt.prop 0x0000000000000000 0xc0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sniprintf.o) + .literal 0x0000000000000000 0x154 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .text 0x0000000000000000 0x242 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .rodata.str1.1 + 0x0000000000000000 0x697 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .rodata 0x0000000000000000 0x23c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .debug_frame 0x0000000000000000 0x58 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .debug_info 0x0000000000000000 0xac3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .debug_abbrev 0x0000000000000000 0x233 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .debug_loc 0x0000000000000000 0x63c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .debug_line 0x0000000000000000 0xc83 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .debug_str 0x0000000000000000 0x629 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .xt.prop 0x0000000000000000 0x81c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .xt.prop 0x0000000000000000 0x2148 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .xt.prop 0x0000000000000000 0x1d64 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .text 0x0000000000000000 0x7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .debug_frame 0x0000000000000000 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .debug_info 0x0000000000000000 0x8b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .debug_abbrev 0x0000000000000000 0x76 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .debug_loc 0x0000000000000000 0x25 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .debug_line 0x0000000000000000 0xbb /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .debug_str 0x0000000000000000 0x12f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .xt.prop 0x0000000000000000 0x24 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .literal 0x0000000000000000 0x44 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .text 0x0000000000000000 0x200 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .debug_frame 0x0000000000000000 0x58 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .debug_info 0x0000000000000000 0xe87 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .debug_abbrev 0x0000000000000000 0x323 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .debug_loc 0x0000000000000000 0x2d0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .debug_line 0x0000000000000000 0x877 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .debug_str 0x0000000000000000 0x7c8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .xt.prop 0x0000000000000000 0x1a4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .literal 0x0000000000000000 0x10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + .text 0x0000000000000000 0x6d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + .debug_frame 0x0000000000000000 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + .debug_info 0x0000000000000000 0x10ab /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + .debug_abbrev 0x0000000000000000 0x26c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + .debug_loc 0x0000000000000000 0xca /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + .debug_line 0x0000000000000000 0x428 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + .debug_str 0x0000000000000000 0x955 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + .xt.prop 0x0000000000000000 0x6c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + .literal 0x0000000000000000 0x10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .text 0x0000000000000000 0x1e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .bss 0x0000000000000000 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .debug_frame 0x0000000000000000 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .debug_info 0x0000000000000000 0x9ad /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .debug_abbrev 0x0000000000000000 0x1cc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .debug_line 0x0000000000000000 0x278 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .debug_str 0x0000000000000000 0x608 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .comment 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .xt.prop 0x0000000000000000 0x54 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .literal 0x0000000000000000 0x10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_addsubdf3.o) + .text 0x0000000000000000 0x312 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_addsubdf3.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_addsubdf3.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_addsubdf3.o) + .debug_line 0x0000000000000000 0x6f2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_addsubdf3.o) + .debug_info 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_addsubdf3.o) + .debug_abbrev 0x0000000000000000 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_addsubdf3.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_addsubdf3.o) + .debug_str 0x0000000000000000 0xd3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_addsubdf3.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_addsubdf3.o) + .xt.prop 0x0000000000000000 0x420 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_addsubdf3.o) + .literal 0x0000000000000000 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + .text 0x0000000000000000 0x176 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + .debug_line 0x0000000000000000 0x3b0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + .debug_info 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + .debug_abbrev 0x0000000000000000 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + .debug_str 0x0000000000000000 0xd3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + .xt.prop 0x0000000000000000 0x288 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + .literal 0x0000000000000000 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfsi.o) + .text 0x0000000000000000 0x4c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfsi.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfsi.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfsi.o) + .debug_line 0x0000000000000000 0x128 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfsi.o) + .debug_info 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfsi.o) + .debug_abbrev 0x0000000000000000 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfsi.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfsi.o) + .debug_str 0x0000000000000000 0xd3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfsi.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfsi.o) + .xt.prop 0x0000000000000000 0x6c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfsi.o) + .literal 0x0000000000000000 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfsi.o) + .text 0x0000000000000000 0x5d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfsi.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfsi.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfsi.o) + .debug_line 0x0000000000000000 0x158 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfsi.o) + .debug_info 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfsi.o) + .debug_abbrev 0x0000000000000000 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfsi.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfsi.o) + .debug_str 0x0000000000000000 0xd3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfsi.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfsi.o) + .xt.prop 0x0000000000000000 0xa8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfsi.o) + .literal 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_truncdfsf2.o) + .text 0x0000000000000000 0xa4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_truncdfsf2.o) + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_truncdfsf2.o) + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_truncdfsf2.o) + .debug_line 0x0000000000000000 0x1d6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_truncdfsf2.o) + .debug_info 0x0000000000000000 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_truncdfsf2.o) + .debug_abbrev 0x0000000000000000 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_truncdfsf2.o) + .debug_aranges + 0x0000000000000000 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_truncdfsf2.o) + .debug_str 0x0000000000000000 0xd3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_truncdfsf2.o) + .xt.lit 0x0000000000000000 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_truncdfsf2.o) + .xt.prop 0x0000000000000000 0xb4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_truncdfsf2.o) + .literal 0x0000000000000000 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + .init.literal 0x0000000000000000 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + .text 0x0000000000000000 0x16 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + .ctors 0x0000000000000000 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + .tm_clone_table + 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + .init 0x0000000000000000 0x6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + .xt.lit 0x0000000000000000 0x10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + .xt.prop 0x0000000000000000 0x84 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + .text 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtn.o + .data 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtn.o + .bss 0x0000000000000000 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtn.o + .init 0x0000000000000000 0x2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtn.o + .fini 0x0000000000000000 0x2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtn.o + .xt.prop 0x0000000000000000 0x30 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtn.o + +Memory Configuration + +Name Origin Length Attributes +iram0_0_seg 0x0000000040080000 0x0000000000020000 xr +iram0_2_seg 0x00000000400d0020 0x000000000032ffe0 xr +dram0_0_seg 0x000000003ffb0000 0x000000000002c200 rw +drom0_0_seg 0x000000003f400020 0x00000000003fffe0 r +rtc_iram_seg 0x00000000400c0000 0x0000000000002000 xrw +rtc_data_seg 0x000000003ff80000 0x0000000000002000 rw +rtc_slow_seg 0x0000000050000000 0x0000000000001000 rw +extern_ram_seg 0x000000003f800000 0x0000000000400000 xrw +*default* 0x0000000000000000 0xffffffffffffffff + +Linker script and memory map + +LOAD /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o +LOAD /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crti.o +LOAD /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o +LOAD CMakeFiles/bakalarka.elf.dir/project_elf_src.c.obj +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/esp_eth/libesp_eth.a +LOAD esp-idf/tcpip_adapter/libtcpip_adapter.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/lwip/liblwip.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/heap/libheap.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/espcoredump/libespcoredump.a +LOAD esp-idf/perfmon/libperfmon.a +LOAD esp-idf/esp32/libesp32.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/vfs/libvfs.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD esp-idf/asio/libasio.a +LOAD esp-idf/cbor/libcbor.a +LOAD esp-idf/coap/libcoap.a +LOAD esp-idf/console/libconsole.a +LOAD esp-idf/nghttp/libnghttp.a +LOAD esp-idf/esp-tls/libesp-tls.a +LOAD esp-idf/esp_adc_cal/libesp_adc_cal.a +LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a +LOAD esp-idf/tcp_transport/libtcp_transport.a +LOAD esp-idf/esp_http_client/libesp_http_client.a +LOAD esp-idf/esp_http_server/libesp_http_server.a +LOAD esp-idf/esp_https_ota/libesp_https_ota.a +LOAD esp-idf/esp_https_server/libesp_https_server.a +LOAD esp-idf/protobuf-c/libprotobuf-c.a +LOAD esp-idf/protocomm/libprotocomm.a +LOAD esp-idf/mdns/libmdns.a +LOAD esp-idf/esp_local_ctrl/libesp_local_ctrl.a +LOAD esp-idf/sdmmc/libsdmmc.a +LOAD esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a +LOAD esp-idf/esp_websocket_client/libesp_websocket_client.a +LOAD esp-idf/expat/libexpat.a +LOAD esp-idf/wear_levelling/libwear_levelling.a +LOAD esp-idf/fatfs/libfatfs.a +LOAD esp-idf/freemodbus/libfreemodbus.a +LOAD esp-idf/jsmn/libjsmn.a +LOAD esp-idf/json/libjson.a +LOAD esp-idf/libsodium/liblibsodium.a +LOAD esp-idf/mqtt/libmqtt.a +LOAD esp-idf/openssl/libopenssl.a +LOAD esp-idf/spiffs/libspiffs.a +LOAD esp-idf/ulp/libulp.a +LOAD esp-idf/unity/libunity.a +LOAD esp-idf/wifi_provisioning/libwifi_provisioning.a +LOAD esp-idf/main/libmain.a +LOAD esp-idf/ca/libca.a +LOAD esp-idf/cmd_nvs/libcmd_nvs.a +LOAD esp-idf/cmd_system/libcmd_system.a +LOAD esp-idf/files/libfiles.a +LOAD esp-idf/wifi/libwifi.a +LOAD esp-idf/https_server/libhttps_server.a +LOAD esp-idf/lvgl/liblvgl.a +LOAD esp-idf/lv_examples/liblv_examples.a +LOAD esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a +LOAD esp-idf/lvgl_tft/liblvgl_tft.a +LOAD esp-idf/lvgl_touch/liblvgl_touch.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/esp_eth/libesp_eth.a +LOAD esp-idf/tcpip_adapter/libtcpip_adapter.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/lwip/liblwip.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/heap/libheap.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/espcoredump/libespcoredump.a +LOAD esp-idf/perfmon/libperfmon.a +LOAD esp-idf/esp32/libesp32.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/vfs/libvfs.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD esp-idf/asio/libasio.a +LOAD esp-idf/cbor/libcbor.a +LOAD esp-idf/coap/libcoap.a +LOAD esp-idf/console/libconsole.a +LOAD esp-idf/nghttp/libnghttp.a +LOAD esp-idf/esp-tls/libesp-tls.a +LOAD esp-idf/esp_adc_cal/libesp_adc_cal.a +LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a +LOAD esp-idf/tcp_transport/libtcp_transport.a +LOAD esp-idf/esp_http_client/libesp_http_client.a +LOAD esp-idf/esp_http_server/libesp_http_server.a +LOAD esp-idf/esp_https_ota/libesp_https_ota.a +LOAD esp-idf/esp_https_server/libesp_https_server.a +LOAD esp-idf/protobuf-c/libprotobuf-c.a +LOAD esp-idf/protocomm/libprotocomm.a +LOAD esp-idf/mdns/libmdns.a +LOAD esp-idf/esp_local_ctrl/libesp_local_ctrl.a +LOAD esp-idf/sdmmc/libsdmmc.a +LOAD esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a +LOAD esp-idf/esp_websocket_client/libesp_websocket_client.a +LOAD esp-idf/expat/libexpat.a +LOAD esp-idf/wear_levelling/libwear_levelling.a +LOAD esp-idf/fatfs/libfatfs.a +LOAD esp-idf/sdmmc/libsdmmc.a +LOAD esp-idf/wear_levelling/libwear_levelling.a +LOAD esp-idf/freemodbus/libfreemodbus.a +LOAD esp-idf/jsmn/libjsmn.a +LOAD esp-idf/json/libjson.a +LOAD esp-idf/libsodium/liblibsodium.a +LOAD esp-idf/mqtt/libmqtt.a +LOAD esp-idf/openssl/libopenssl.a +LOAD esp-idf/spiffs/libspiffs.a +LOAD esp-idf/ulp/libulp.a +LOAD esp-idf/unity/libunity.a +LOAD esp-idf/wifi_provisioning/libwifi_provisioning.a +LOAD esp-idf/protocomm/libprotocomm.a +LOAD esp-idf/protobuf-c/libprotobuf-c.a +LOAD esp-idf/mdns/libmdns.a +LOAD esp-idf/json/libjson.a +LOAD esp-idf/spiffs/libspiffs.a +LOAD esp-idf/esp_https_server/libesp_https_server.a +LOAD esp-idf/wifi/libwifi.a +LOAD esp-idf/console/libconsole.a +LOAD esp-idf/lvgl/liblvgl.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/heap/libheap.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/lwip/liblwip.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp32/libesp32.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/soc/soc/esp32/libsoc_esp32.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/esp_eth/libesp_eth.a +LOAD esp-idf/tcpip_adapter/libtcpip_adapter.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a +LOAD esp-idf/vfs/libvfs.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/espcoredump/libespcoredump.a +LOAD esp-idf/perfmon/libperfmon.a +LOAD esp-idf/ulp/libulp.a +LOAD esp-idf/esp_http_client/libesp_http_client.a +LOAD esp-idf/esp_http_server/libesp_http_server.a +LOAD esp-idf/nghttp/libnghttp.a +LOAD esp-idf/esp-tls/libesp-tls.a +LOAD esp-idf/tcp_transport/libtcp_transport.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/heap/libheap.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/lwip/liblwip.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp32/libesp32.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/soc/soc/esp32/libsoc_esp32.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/esp_eth/libesp_eth.a +LOAD esp-idf/tcpip_adapter/libtcpip_adapter.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a +LOAD esp-idf/vfs/libvfs.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/espcoredump/libespcoredump.a +LOAD esp-idf/perfmon/libperfmon.a +LOAD esp-idf/ulp/libulp.a +LOAD esp-idf/esp_http_client/libesp_http_client.a +LOAD esp-idf/esp_http_server/libesp_http_server.a +LOAD esp-idf/nghttp/libnghttp.a +LOAD esp-idf/esp-tls/libesp-tls.a +LOAD esp-idf/tcp_transport/libtcp_transport.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/heap/libheap.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/lwip/liblwip.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp32/libesp32.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/soc/soc/esp32/libsoc_esp32.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/esp_eth/libesp_eth.a +LOAD esp-idf/tcpip_adapter/libtcpip_adapter.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a +LOAD esp-idf/vfs/libvfs.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/espcoredump/libespcoredump.a +LOAD esp-idf/perfmon/libperfmon.a +LOAD esp-idf/ulp/libulp.a +LOAD esp-idf/esp_http_client/libesp_http_client.a +LOAD esp-idf/esp_http_server/libesp_http_server.a +LOAD esp-idf/nghttp/libnghttp.a +LOAD esp-idf/esp-tls/libesp-tls.a +LOAD esp-idf/tcp_transport/libtcp_transport.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/heap/libheap.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/lwip/liblwip.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp32/libesp32.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/soc/soc/esp32/libsoc_esp32.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/esp_eth/libesp_eth.a +LOAD esp-idf/tcpip_adapter/libtcpip_adapter.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/nvs_flash/libnvs_flash.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a +LOAD /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a +LOAD esp-idf/vfs/libvfs.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/espcoredump/libespcoredump.a +LOAD esp-idf/perfmon/libperfmon.a +LOAD esp-idf/ulp/libulp.a +LOAD esp-idf/esp_http_client/libesp_http_client.a +LOAD esp-idf/esp_http_server/libesp_http_server.a +LOAD esp-idf/nghttp/libnghttp.a +LOAD esp-idf/esp-tls/libesp-tls.a +LOAD esp-idf/tcp_transport/libtcp_transport.a +LOAD /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/newlib/libnewlib.a +LOAD /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a +LOAD /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcov.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcov.a +LOAD /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a +LOAD /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a +LOAD /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a +LOAD /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a +LOAD /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a +LOAD /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libnosys.a +LOAD /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a +LOAD /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a +LOAD /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o +LOAD /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtn.o + 0x0000000040059588 asctime = 0x40059588 + 0x0000000040000ec8 asctime_r = 0x40000ec8 + 0x00000000400595b0 ctime = 0x400595b0 + 0x00000000400595c4 ctime_r = 0x400595c4 + 0x0000000040001fcc __gettzinfo = 0x40001fcc + 0x0000000040001834 __get_current_time_locale = 0x40001834 + 0x0000000040059848 gmtime = 0x40059848 + 0x0000000040059868 gmtime_r = 0x40059868 + 0x00000000400595dc localtime = 0x400595dc + 0x00000000400595fc localtime_r = 0x400595fc + 0x000000004005a5e8 mktime = 0x4005a5e8 + 0x0000000040059ab4 strftime = 0x40059ab4 + 0x0000000040001844 time = 0x40001844 + 0x000000004000183c __time_load_locale = 0x4000183c + 0x0000000040001a1c tzset = 0x40001a1c + 0x0000000040001a28 _tzset_r = 0x40001a28 + [!provide] PROVIDE (Add2SelfBigHex256 = 0x40015b7c) + [!provide] PROVIDE (AddBigHex256 = 0x40015b28) + [!provide] PROVIDE (AddBigHexModP256 = 0x40015c98) + [!provide] PROVIDE (AddP256 = 0x40015c74) + [!provide] PROVIDE (AddPdiv2_256 = 0x40015ce0) + [!provide] PROVIDE (app_gpio_arg = 0x3ffe003c) + [!provide] PROVIDE (app_gpio_handler = 0x3ffe0040) + [!provide] PROVIDE (BasePoint_x_256 = 0x3ff97488) + [!provide] PROVIDE (BasePoint_y_256 = 0x3ff97468) + [!provide] PROVIDE (bigHexInversion256 = 0x400168f0) + [!provide] PROVIDE (bigHexP256 = 0x3ff973bc) + [!provide] PROVIDE (btdm_r_ble_bt_handler_tab_p_get = 0x40019b0c) + [!provide] PROVIDE (btdm_r_btdm_option_data_p_get = 0x40010004) + [!provide] PROVIDE (btdm_r_btdm_rom_version_get = 0x40010078) + [!provide] PROVIDE (btdm_r_data_init = 0x4001002c) + [!provide] PROVIDE (btdm_r_import_rf_phy_func_p_get = 0x40054298) + [!provide] PROVIDE (btdm_r_ip_func_p_get = 0x40019af0) + [!provide] PROVIDE (btdm_r_ip_func_p_set = 0x40019afc) + [!provide] PROVIDE (btdm_r_modules_func_p_get = 0x4005427c) + [!provide] PROVIDE (btdm_r_modules_func_p_set = 0x40054270) + [!provide] PROVIDE (btdm_r_plf_func_p_set = 0x40054288) + [!provide] PROVIDE (bt_util_buf_env = 0x3ffb8bd4) + 0x00000000400095e0 PROVIDE (cache_flash_mmu_set_rom = 0x400095e0) + 0x0000000040009a14 PROVIDE (Cache_Flush_rom = 0x40009a14) + 0x0000000040009ab8 PROVIDE (Cache_Read_Disable_rom = 0x40009ab8) + 0x0000000040009a84 PROVIDE (Cache_Read_Enable_rom = 0x40009a84) + [!provide] PROVIDE (Cache_Read_Init_rom = 0x40009950) + [!provide] PROVIDE (cache_sram_mmu_set_rom = 0x400097f4) + [!provide] PROVIDE (calc_rtc_memory_crc = 0x40008170) + [!provide] PROVIDE (__clear_cache = 0x40063860) + [!provide] PROVIDE (co_default_bdaddr = 0x3ffae704) + [!provide] PROVIDE (co_null_bdaddr = 0x3ffb80e0) + [!provide] PROVIDE (co_sca2ppm = 0x3ff971e8) + [!provide] PROVIDE (crc16_be = 0x4005d09c) + [!provide] PROVIDE (crc16_le = 0x4005d05c) + [!provide] PROVIDE (crc32_be = 0x4005d024) + 0x000000004005cfec PROVIDE (crc32_le = 0x4005cfec) + [!provide] PROVIDE (crc8_be = 0x4005d114) + [!provide] PROVIDE (crc8_le = 0x4005d0e0) + [!provide] PROVIDE (_data_end_rom = 0x4000d5c8) + [!provide] PROVIDE (_data_end_btdm_rom = 0x4000d4f8) + [!provide] PROVIDE (_data_start_rom = 0x4000d4f8) + [!provide] PROVIDE (_data_start_btdm_rom = 0x4000d4f4) + [!provide] PROVIDE (_data_start_btdm = 0x3ffae6e0) + [!provide] PROVIDE (_data_end_btdm = 0x3ffaff10) + [!provide] PROVIDE (_bss_start_btdm = 0x3ffb8000) + [!provide] PROVIDE (_bss_end_btdm = 0x3ffbff70) + [!provide] PROVIDE (dbg_default_handler = 0x3ff97218) + [!provide] PROVIDE (dbg_default_state = 0x3ff97220) + [!provide] PROVIDE (dbg_state = 0x3ffb8d5d) + [!provide] PROVIDE (DebugE256PublicKey_x = 0x3ff97428) + [!provide] PROVIDE (DebugE256PublicKey_y = 0x3ff97408) + [!provide] PROVIDE (DebugE256SecretKey = 0x3ff973e8) + [!provide] PROVIDE (debug_timer = 0x3ffe042c) + [!provide] PROVIDE (debug_timerfn = 0x3ffe0430) + [!provide] PROVIDE (dh_group14_generator = 0x3ff9ac60) + [!provide] PROVIDE (dh_group14_prime = 0x3ff9ab60) + [!provide] PROVIDE (dh_group15_generator = 0x3ff9ab5f) + [!provide] PROVIDE (dh_group15_prime = 0x3ff9a9df) + [!provide] PROVIDE (dh_group16_generator = 0x3ff9a9de) + [!provide] PROVIDE (dh_group16_prime = 0x3ff9a7de) + [!provide] PROVIDE (dh_group17_generator = 0x3ff9a7dd) + [!provide] PROVIDE (dh_group17_prime = 0x3ff9a4dd) + [!provide] PROVIDE (dh_group18_generator = 0x3ff9a4dc) + [!provide] PROVIDE (dh_group18_prime = 0x3ff9a0dc) + [!provide] PROVIDE (dh_group1_generator = 0x3ff9ae03) + [!provide] PROVIDE (dh_group1_prime = 0x3ff9ada3) + [!provide] PROVIDE (dh_group2_generator = 0x3ff9ada2) + [!provide] PROVIDE (dh_group2_prime = 0x3ff9ad22) + [!provide] PROVIDE (dh_group5_generator = 0x3ff9ad21) + [!provide] PROVIDE (dh_group5_prime = 0x3ff9ac61) + 0x000000003ffae290 PROVIDE (g_rom_spiflash_dummy_len_plus = 0x3ffae290) + [!provide] PROVIDE (ecc_env = 0x3ffb8d60) + [!provide] PROVIDE (ecc_Jacobian_InfinityPoint256 = 0x3ff972e8) + [!provide] PROVIDE (em_buf_env = 0x3ffb8d74) + 0x000000004005d144 PROVIDE (esp_crc8 = 0x4005d144) + [!provide] PROVIDE (_etext = 0x4000d66c) + [!provide] PROVIDE (ets_readySet_ = 0x3ffe01f0) + [!provide] PROVIDE (ets_startup_callback = 0x3ffe0404) + [!provide] PROVIDE (rwip_coex_cfg = 0x3ff9914c) + [!provide] PROVIDE (rwip_priority = 0x3ff99159) + [!provide] PROVIDE (exc_cause_table = 0x3ff991d0) + [!provide] PROVIDE (GF_Jacobian_Point_Addition256 = 0x400163a4) + [!provide] PROVIDE (GF_Jacobian_Point_Double256 = 0x40016260) + [!provide] PROVIDE (GF_Point_Jacobian_To_Affine256 = 0x40016b0c) + [!provide] PROVIDE (g_phyFuns_instance = 0x3ffae0c4) + 0x000000003ffae270 PROVIDE (g_rom_flashchip = 0x3ffae270) + [!provide] PROVIDE (gTxMsg = 0x3ffe0050) + [!provide] PROVIDE (hci_cmd_desc_root_tab = 0x3ff976d4) + [!provide] PROVIDE (hci_cmd_desc_tab_ctrl_bb = 0x3ff97b70) + [!provide] PROVIDE (hci_cmd_desc_tab_info_par = 0x3ff97b1c) + [!provide] PROVIDE (hci_cmd_desc_tab_le = 0x3ff97870) + [!provide] PROVIDE (hci_cmd_desc_tab_lk_ctrl = 0x3ff97fc0) + [!provide] PROVIDE (hci_cmd_desc_tab_lk_pol = 0x3ff97f3c) + [!provide] PROVIDE (hci_cmd_desc_tab_stat_par = 0x3ff97ac8) + [!provide] PROVIDE (hci_cmd_desc_tab_testing = 0x3ff97a98) + [!provide] PROVIDE (hci_cmd_desc_tab_vs = 0x3ff97714) + [!provide] PROVIDE (hci_command_handler = 0x4004c928) + [!provide] PROVIDE (hci_env = 0x3ffb9350) + [!provide] PROVIDE (rwip_env = 0x3ffb8bcc) + [!provide] PROVIDE (hci_evt_dbg_desc_tab = 0x3ff9750c) + [!provide] PROVIDE (hci_evt_desc_tab = 0x3ff9751c) + [!provide] PROVIDE (hci_evt_le_desc_tab = 0x3ff974b4) + [!provide] PROVIDE (hci_fc_env = 0x3ffb9340) + [!provide] PROVIDE (jd_decomp = 0x400613e8) + [!provide] PROVIDE (jd_prepare = 0x40060fa8) + [!provide] PROVIDE (ke_env = 0x3ffb93cc) + [!provide] PROVIDE (lb_default_handler = 0x3ff982b8) + [!provide] PROVIDE (lb_default_state_tab_p_get = 0x4001c198) + [!provide] PROVIDE (lb_env = 0x3ffb9424) + [!provide] PROVIDE (lb_hci_cmd_handler_tab_p_get = 0x4001c18c) + [!provide] PROVIDE (lb_state = 0x3ffb94e8) + [!provide] PROVIDE (lc_default_handler = 0x3ff98648) + [!provide] PROVIDE (lc_default_state_tab_p_get = 0x4002f494) + [!provide] PROVIDE (lc_env = 0x3ffb94ec) + [!provide] PROVIDE (lc_hci_cmd_handler_tab_p_get = 0x4002f488) + [!provide] PROVIDE (lc_state = 0x3ffb9508) + [!provide] PROVIDE (ld_acl_br_sizes = 0x3ff98a2a) + [!provide] PROVIDE (ld_acl_br_types = 0x3ff98a36) + [!provide] PROVIDE (ld_acl_edr_sizes = 0x3ff98a14) + [!provide] PROVIDE (ld_acl_edr_types = 0x3ff98a22) + [!provide] PROVIDE (ld_env = 0x3ffb9510) + [!provide] PROVIDE (ld_pcm_settings_dft = 0x3ff98a0c) + [!provide] PROVIDE (ld_sched_params = 0x3ffb96c0) + [!provide] PROVIDE (ld_sync_train_channels = 0x3ff98a3c) + [!provide] PROVIDE (llc_default_handler = 0x3ff98b3c) + [!provide] PROVIDE (llc_default_state_tab_p_get = 0x40046058) + [!provide] PROVIDE (llc_env = 0x3ffb96d0) + [!provide] PROVIDE (llc_hci_acl_data_tx_handler = 0x40042398) + [!provide] PROVIDE (llc_hci_cmd_handler_tab_p_get = 0x40042358) + [!provide] PROVIDE (llc_hci_command_handler = 0x40042360) + [!provide] PROVIDE (llcp_pdu_handler_tab_p_get = 0x40043f64) + [!provide] PROVIDE (llc_state = 0x3ffb96f8) + [!provide] PROVIDE (lldesc_build_chain = 0x4000a850) + [!provide] PROVIDE (lldesc_num2link = 0x4000a948) + [!provide] PROVIDE (lldesc_set_owner = 0x4000a974) + [!provide] PROVIDE (lld_evt_deferred_elt_push = 0x400466b4) + [!provide] PROVIDE (lld_evt_deferred_elt_pop = 0x400466dc) + [!provide] PROVIDE (lld_evt_winsize_change = 0x40046730) + [!provide] PROVIDE (lld_evt_rxwin_compute = 0x400467c8) + [!provide] PROVIDE (lld_evt_slave_time_compute = 0x40046818) + [!provide] PROVIDE (lld_evt_env = 0x3ffb9704) + [!provide] PROVIDE (lld_evt_elt_wait_get = 0x400468e4) + [!provide] PROVIDE (lld_evt_get_next_free_slot = 0x4004692c) + [!provide] PROVIDE (lld_pdu_adv_pk_desc_tab = 0x3ff98c70) + [!provide] PROVIDE (lld_pdu_llcp_pk_desc_tab = 0x3ff98b68) + [!provide] PROVIDE (lld_pdu_tx_flush_list = 0x4004a760) + [!provide] PROVIDE (lld_pdu_pack = 0x4004ab14) + [!provide] PROVIDE (LLM_AA_CT1 = 0x3ff98d8a) + [!provide] PROVIDE (LLM_AA_CT2 = 0x3ff98d88) + [!provide] PROVIDE (llm_default_handler = 0x3ff98d80) + [!provide] PROVIDE (llm_default_state_tab_p_get = 0x4004e718) + [!provide] PROVIDE (llm_hci_cmd_handler_tab_p_get = 0x4004c920) + [!provide] PROVIDE (llm_le_env = 0x3ffb976c) + [!provide] PROVIDE (llm_local_cmds = 0x3ff98d38) + [!provide] PROVIDE (llm_local_data_len_values = 0x3ff98d1c) + [!provide] PROVIDE (llm_local_le_feats = 0x3ff98d30) + [!provide] PROVIDE (llm_local_le_states = 0x3ff98d28) + [!provide] PROVIDE (llm_state = 0x3ffb985c) + [!provide] PROVIDE (lm_default_handler = 0x3ff990e0) + [!provide] PROVIDE (lm_default_state_tab_p_get = 0x40054268) + [!provide] PROVIDE (lm_env = 0x3ffb9860) + [!provide] PROVIDE (lm_hci_cmd_handler_tab_p_get = 0x4005425c) + [!provide] PROVIDE (lm_local_supp_feats = 0x3ff990ee) + [!provide] PROVIDE (lm_n_page_tab = 0x3ff990e8) + [!provide] PROVIDE (lmp_desc_tab = 0x3ff96e6c) + [!provide] PROVIDE (lmp_ext_desc_tab = 0x3ff96d9c) + [!provide] PROVIDE (lm_state = 0x3ffb9a1c) + [!provide] PROVIDE (maxSecretKey_256 = 0x3ff97448) + [!provide] PROVIDE (mmu_init = 0x400095a4) + [!provide] PROVIDE (MultiplyBigHexByUint32_256 = 0x40016214) + [!provide] PROVIDE (MultiplyBigHexModP256 = 0x400160b8) + [!provide] PROVIDE (MultiplyByU32ModP256 = 0x40015fdc) + [!provide] PROVIDE (multofup = 0x4000ab8c) + [!provide] PROVIDE (mz_adler32 = 0x4005edbc) + [!provide] PROVIDE (mz_crc32 = 0x4005ee88) + [!provide] PROVIDE (mz_free = 0x4005eed4) + [!provide] PROVIDE (notEqual256 = 0x40015b04) + [!provide] PROVIDE (one_bits = 0x3ff971f8) + 0x0000000040004100 PROVIDE (phy_get_romfuncs = 0x40004100) + [!provide] PROVIDE (_Pri_4_HandlerAddress = 0x3ffe0648) + [!provide] PROVIDE (_Pri_5_HandlerAddress = 0x3ffe064c) + [!provide] PROVIDE (r_btdm_option_data = 0x3ffae6e0) + [!provide] PROVIDE (r_bt_util_buf_acl_rx_alloc = 0x40010218) + [!provide] PROVIDE (r_bt_util_buf_acl_rx_free = 0x40010234) + [!provide] PROVIDE (r_bt_util_buf_acl_tx_alloc = 0x40010268) + [!provide] PROVIDE (r_bt_util_buf_acl_tx_free = 0x40010280) + [!provide] PROVIDE (r_bt_util_buf_init = 0x400100e4) + [!provide] PROVIDE (r_bt_util_buf_lmp_tx_alloc = 0x400101d0) + [!provide] PROVIDE (r_bt_util_buf_lmp_tx_free = 0x400101ec) + [!provide] PROVIDE (r_bt_util_buf_sync_clear = 0x400103c8) + [!provide] PROVIDE (r_bt_util_buf_sync_init = 0x400102c4) + [!provide] PROVIDE (r_bt_util_buf_sync_rx_alloc = 0x40010468) + [!provide] PROVIDE (r_bt_util_buf_sync_rx_free = 0x4001049c) + [!provide] PROVIDE (r_bt_util_buf_sync_tx_alloc = 0x400103ec) + [!provide] PROVIDE (r_bt_util_buf_sync_tx_free = 0x40010428) + [!provide] PROVIDE (r_co_bdaddr_compare = 0x40014324) + [!provide] PROVIDE (r_co_bytes_to_string = 0x400142e4) + [!provide] PROVIDE (r_co_list_check_size_available = 0x400142c4) + [!provide] PROVIDE (r_co_list_extract = 0x4001404c) + [!provide] PROVIDE (r_co_list_extract_after = 0x40014118) + [!provide] PROVIDE (r_co_list_find = 0x4001419c) + [!provide] PROVIDE (r_co_list_init = 0x40013f14) + [!provide] PROVIDE (r_co_list_insert_after = 0x40014254) + [!provide] PROVIDE (r_co_list_insert_before = 0x40014200) + [!provide] PROVIDE (r_co_list_merge = 0x400141bc) + [!provide] PROVIDE (r_co_list_pool_init = 0x40013f30) + [!provide] PROVIDE (r_co_list_pop_front = 0x40014028) + [!provide] PROVIDE (r_co_list_push_back = 0x40013fb8) + [!provide] PROVIDE (r_co_list_push_front = 0x40013ff4) + [!provide] PROVIDE (r_co_list_size = 0x400142ac) + [!provide] PROVIDE (r_co_nb_good_channels = 0x40014360) + [!provide] PROVIDE (r_co_slot_to_duration = 0x40014348) + [!provide] PROVIDE (r_dbg_init = 0x40014394) + [!provide] PROVIDE (r_dbg_platform_reset_complete = 0x400143d0) + [!provide] PROVIDE (r_dbg_swdiag_init = 0x40014470) + [!provide] PROVIDE (r_dbg_swdiag_read = 0x400144a4) + [!provide] PROVIDE (r_dbg_swdiag_write = 0x400144d0) + [!provide] PROVIDE (r_E1 = 0x400108e8) + [!provide] PROVIDE (r_E21 = 0x40010968) + [!provide] PROVIDE (r_E22 = 0x400109b4) + [!provide] PROVIDE (r_E3 = 0x40010a58) + [!provide] PROVIDE (lm_n192_mod_mul = 0x40011dc0) + [!provide] PROVIDE (lm_n192_mod_add = 0x40011e9c) + [!provide] PROVIDE (lm_n192_mod_sub = 0x40011eec) + [!provide] PROVIDE (r_ea_alarm_clear = 0x40015ab4) + [!provide] PROVIDE (r_ea_alarm_set = 0x40015a10) + [!provide] PROVIDE (r_ea_elt_cancel = 0x400150d0) + [!provide] PROVIDE (r_ea_elt_create = 0x40015264) + [!provide] PROVIDE (r_ea_elt_insert = 0x400152a8) + [!provide] PROVIDE (r_ea_elt_remove = 0x400154f0) + [!provide] PROVIDE (r_ea_finetimer_isr = 0x400155d4) + [!provide] PROVIDE (r_ea_init = 0x40015228) + [!provide] PROVIDE (r_ea_interval_create = 0x4001555c) + [!provide] PROVIDE (r_ea_interval_delete = 0x400155a8) + [!provide] PROVIDE (r_ea_interval_duration_req = 0x4001597c) + [!provide] PROVIDE (r_ea_interval_insert = 0x4001557c) + [!provide] PROVIDE (r_ea_interval_remove = 0x40015590) + [!provide] PROVIDE (ea_conflict_check = 0x40014e9c) + [!provide] PROVIDE (ea_prog_timer = 0x40014f88) + [!provide] PROVIDE (r_ea_offset_req = 0x40015748) + [!provide] PROVIDE (r_ea_sleep_check = 0x40015928) + [!provide] PROVIDE (r_ea_sw_isr = 0x40015724) + [!provide] PROVIDE (r_ea_time_get_halfslot_rounded = 0x40015894) + [!provide] PROVIDE (r_ea_time_get_slot_rounded = 0x400158d4) + [!provide] PROVIDE (r_ecc_abort_key256_generation = 0x40017070) + [!provide] PROVIDE (r_ecc_generate_key256 = 0x40016e00) + [!provide] PROVIDE (r_ecc_gen_new_public_key = 0x400170c0) + [!provide] PROVIDE (r_ecc_gen_new_secret_key = 0x400170e4) + [!provide] PROVIDE (r_ecc_get_debug_Keys = 0x40017224) + [!provide] PROVIDE (r_ecc_init = 0x40016dbc) + [!provide] PROVIDE (ecc_point_multiplication_uint8_256 = 0x40016804) + [!provide] PROVIDE (RecvBuff = 0x3ffe009c) + [!provide] PROVIDE (r_em_buf_init = 0x4001729c) + [!provide] PROVIDE (r_em_buf_rx_buff_addr_get = 0x400173e8) + [!provide] PROVIDE (r_em_buf_rx_free = 0x400173c4) + [!provide] PROVIDE (r_em_buf_tx_buff_addr_get = 0x40017404) + [!provide] PROVIDE (r_em_buf_tx_free = 0x4001741c) + [!provide] PROVIDE (r_F1_256 = 0x400133e4) + [!provide] PROVIDE (r_F2_256 = 0x40013568) + [!provide] PROVIDE (r_F3_256 = 0x40013664) + [!provide] PROVIDE (RFPLL_ICP_TABLE = 0x3ffb8b7c) + [!provide] PROVIDE (r_G_256 = 0x40013470) + [!provide] PROVIDE (r_H3 = 0x40013760) + [!provide] PROVIDE (r_H4 = 0x40013830) + [!provide] PROVIDE (r_h4tl_init = 0x40017878) + [!provide] PROVIDE (r_h4tl_start = 0x40017924) + [!provide] PROVIDE (r_h4tl_stop = 0x40017934) + [!provide] PROVIDE (r_h4tl_write = 0x400178d0) + [!provide] PROVIDE (r_H5 = 0x400138dc) + [!provide] PROVIDE (r_hashConcat = 0x40013a38) + [!provide] PROVIDE (r_hci_acl_tx_data_alloc = 0x4001951c) + [!provide] PROVIDE (r_hci_acl_tx_data_received = 0x40019654) + [!provide] PROVIDE (r_hci_bt_acl_bdaddr_register = 0x40018900) + [!provide] PROVIDE (r_hci_bt_acl_bdaddr_unregister = 0x400189ac) + [!provide] PROVIDE (r_hci_bt_acl_conhdl_register = 0x4001895c) + [!provide] PROVIDE (r_hci_cmd_get_max_param_size = 0x400192d0) + [!provide] PROVIDE (r_hci_cmd_received = 0x400192f8) + [!provide] PROVIDE (r_hci_evt_filter_add = 0x40018a64) + [!provide] PROVIDE (r_hci_evt_mask_set = 0x400189e4) + [!provide] PROVIDE (r_hci_fc_acl_buf_size_set = 0x40017988) + [!provide] PROVIDE (r_hci_fc_acl_en = 0x400179d8) + [!provide] PROVIDE (r_hci_fc_acl_packet_sent = 0x40017a3c) + [!provide] PROVIDE (r_hci_fc_check_host_available_nb_acl_packets = 0x40017aa4) + [!provide] PROVIDE (r_hci_fc_check_host_available_nb_sync_packets = 0x40017ac8) + [!provide] PROVIDE (r_hci_fc_host_nb_acl_pkts_complete = 0x40017a6c) + [!provide] PROVIDE (r_hci_fc_host_nb_sync_pkts_complete = 0x40017a88) + [!provide] PROVIDE (r_hci_fc_init = 0x40017974) + [!provide] PROVIDE (r_hci_fc_sync_buf_size_set = 0x400179b0) + [!provide] PROVIDE (r_hci_fc_sync_en = 0x40017a30) + [!provide] PROVIDE (r_hci_fc_sync_packet_sent = 0x40017a54) + [!provide] PROVIDE (r_hci_init = 0x40018538) + [!provide] PROVIDE (r_hci_look_for_cmd_desc = 0x40018454) + [!provide] PROVIDE (r_hci_look_for_dbg_evt_desc = 0x400184c4) + [!provide] PROVIDE (r_hci_look_for_evt_desc = 0x400184a0) + [!provide] PROVIDE (r_hci_look_for_le_evt_desc = 0x400184e0) + [!provide] PROVIDE (r_hci_reset = 0x4001856c) + [!provide] PROVIDE (r_hci_send_2_host = 0x400185bc) + [!provide] PROVIDE (r_hci_sync_tx_data_alloc = 0x40019754) + [!provide] PROVIDE (r_hci_sync_tx_data_received = 0x400197c0) + [!provide] PROVIDE (r_hci_tl_init = 0x40019290) + [!provide] PROVIDE (r_hci_tl_send = 0x40019228) + [!provide] PROVIDE (r_hci_util_pack = 0x40019874) + [!provide] PROVIDE (r_hci_util_unpack = 0x40019998) + [!provide] PROVIDE (r_hci_voice_settings_get = 0x40018bdc) + [!provide] PROVIDE (r_hci_voice_settings_set = 0x40018be8) + [!provide] PROVIDE (r_HMAC = 0x40013968) + [!provide] PROVIDE (r_import_rf_phy_func = 0x3ffb8354) + [!provide] PROVIDE (r_import_rf_phy_func_p = 0x3ffafd64) + [!provide] PROVIDE (r_ip_funcs = 0x3ffae710) + [!provide] PROVIDE (r_ip_funcs_p = 0x3ffae70c) + [!provide] PROVIDE (r_ke_check_malloc = 0x40019de0) + [!provide] PROVIDE (r_ke_event_callback_set = 0x40019ba8) + [!provide] PROVIDE (r_ke_event_clear = 0x40019c2c) + [!provide] PROVIDE (r_ke_event_flush = 0x40019ccc) + [!provide] PROVIDE (r_ke_event_get = 0x40019c78) + [!provide] PROVIDE (r_ke_event_get_all = 0x40019cc0) + [!provide] PROVIDE (r_ke_event_init = 0x40019b90) + [!provide] PROVIDE (r_ke_event_schedule = 0x40019cdc) + [!provide] PROVIDE (r_ke_event_set = 0x40019be0) + [!provide] PROVIDE (r_ke_flush = 0x4001a374) + [!provide] PROVIDE (r_ke_free = 0x4001a014) + [!provide] PROVIDE (r_ke_get_max_mem_usage = 0x4001a1c8) + [!provide] PROVIDE (r_ke_get_mem_usage = 0x4001a1a0) + [!provide] PROVIDE (r_ke_init = 0x4001a318) + [!provide] PROVIDE (r_ke_is_free = 0x4001a184) + [!provide] PROVIDE (r_ke_malloc = 0x40019eb4) + [!provide] PROVIDE (r_ke_mem_init = 0x40019d3c) + [!provide] PROVIDE (r_ke_mem_is_empty = 0x40019d8c) + [!provide] PROVIDE (r_ke_msg_alloc = 0x4001a1e0) + [!provide] PROVIDE (r_ke_msg_dest_id_get = 0x4001a2e0) + [!provide] PROVIDE (r_ke_msg_discard = 0x4001a850) + [!provide] PROVIDE (r_ke_msg_forward = 0x4001a290) + [!provide] PROVIDE (r_ke_msg_forward_new_id = 0x4001a2ac) + [!provide] PROVIDE (r_ke_msg_free = 0x4001a2cc) + [!provide] PROVIDE (r_ke_msg_in_queue = 0x4001a2f8) + [!provide] PROVIDE (r_ke_msg_save = 0x4001a858) + [!provide] PROVIDE (r_ke_msg_send = 0x4001a234) + [!provide] PROVIDE (r_ke_msg_send_basic = 0x4001a26c) + [!provide] PROVIDE (r_ke_msg_src_id_get = 0x4001a2ec) + [!provide] PROVIDE (r_ke_queue_extract = 0x40055fd0) + [!provide] PROVIDE (r_ke_queue_insert = 0x40056020) + [!provide] PROVIDE (r_ke_sleep_check = 0x4001a3d8) + [!provide] PROVIDE (r_ke_state_get = 0x4001a7d8) + [!provide] PROVIDE (r_ke_state_set = 0x4001a6fc) + [!provide] PROVIDE (r_ke_stats_get = 0x4001a3f0) + [!provide] PROVIDE (r_ke_task_check = 0x4001a8a4) + [!provide] PROVIDE (r_ke_task_create = 0x4001a674) + [!provide] PROVIDE (r_ke_task_delete = 0x4001a6c0) + [!provide] PROVIDE (r_ke_task_init = 0x4001a650) + [!provide] PROVIDE (r_ke_task_msg_flush = 0x4001a860) + [!provide] PROVIDE (r_ke_timer_active = 0x4001ac08) + [!provide] PROVIDE (r_ke_timer_adjust_all = 0x4001ac30) + [!provide] PROVIDE (r_ke_timer_clear = 0x4001ab90) + [!provide] PROVIDE (r_ke_timer_init = 0x4001aa9c) + [!provide] PROVIDE (r_ke_timer_set = 0x4001aac0) + [!provide] PROVIDE (r_ke_timer_sleep_check = 0x4001ac50) + [!provide] PROVIDE (r_KPrimC = 0x40010ad4) + [!provide] PROVIDE (r_lb_clk_adj_activate = 0x4001ae70) + [!provide] PROVIDE (r_lb_clk_adj_id_get = 0x4001af14) + [!provide] PROVIDE (r_lb_clk_adj_period_update = 0x4001af20) + [!provide] PROVIDE (r_lb_init = 0x4001acd4) + [!provide] PROVIDE (r_lb_mst_key = 0x4001afc0) + [!provide] PROVIDE (r_lb_mst_key_cmp = 0x4001af74) + [!provide] PROVIDE (r_lb_mst_key_restart_enc = 0x4001b0d4) + [!provide] PROVIDE (r_lb_mst_start_act_bcst_enc = 0x4001b198) + [!provide] PROVIDE (r_lb_mst_stop_act_bcst_enc = 0x4001b24c) + [!provide] PROVIDE (r_lb_reset = 0x4001ad38) + [!provide] PROVIDE (r_lb_send_lmp = 0x4001adbc) + [!provide] PROVIDE (r_lb_send_pdu_clk_adj = 0x4001af3c) + [!provide] PROVIDE (r_lb_util_get_csb_mode = 0x4001ada4) + [!provide] PROVIDE (r_lb_util_get_nb_broadcast = 0x4001ad80) + [!provide] PROVIDE (r_lb_util_get_res_lt_addr = 0x4001ad98) + [!provide] PROVIDE (r_lb_util_set_nb_broadcast = 0x4001ad8c) + [!provide] PROVIDE (r_lc_afh_set = 0x4001cc74) + [!provide] PROVIDE (r_lc_afh_start = 0x4001d240) + [!provide] PROVIDE (r_lc_auth_cmp = 0x4001cd54) + [!provide] PROVIDE (r_lc_calc_link_key = 0x4001ce7c) + [!provide] PROVIDE (r_lc_chg_pkt_type_cmp = 0x4001d038) + [!provide] PROVIDE (r_lc_chg_pkt_type_cont = 0x4001cfbc) + [!provide] PROVIDE (r_lc_chg_pkt_type_retry = 0x4001d0ac) + [!provide] PROVIDE (r_lc_chk_to = 0x4001d2a8) + [!provide] PROVIDE (r_lc_cmd_stat_send = 0x4001c914) + [!provide] PROVIDE (r_lc_comb_key_svr = 0x4001d30c) + [!provide] PROVIDE (r_lc_con_cmp = 0x4001d44c) + [!provide] PROVIDE (r_lc_con_cmp_evt_send = 0x4001d4fc) + [!provide] PROVIDE (r_lc_conn_seq_done = 0x40021334) + [!provide] PROVIDE (r_lc_detach = 0x4002037c) + [!provide] PROVIDE (r_lc_dhkey = 0x4001d564) + [!provide] PROVIDE (r_lc_enc_cmp = 0x4001d8bc) + [!provide] PROVIDE (r_lc_enc_key_refresh = 0x4001d720) + [!provide] PROVIDE (r_lc_end_chk_colli = 0x4001d858) + [!provide] PROVIDE (r_lc_end_of_sniff_nego = 0x4001d9a4) + [!provide] PROVIDE (r_lc_enter_sniff_mode = 0x4001ddb8) + [!provide] PROVIDE (r_lc_epr_change_lk = 0x4001db38) + [!provide] PROVIDE (r_lc_epr_cmp = 0x4001da88) + [!provide] PROVIDE (r_lc_epr_resp = 0x4001e0b4) + [!provide] PROVIDE (r_lc_epr_rsw_cmp = 0x4001dd40) + [!provide] PROVIDE (r_lc_ext_feat = 0x40020d6c) + [!provide] PROVIDE (r_lc_feat = 0x40020984) + [!provide] PROVIDE (r_lc_hl_connect = 0x400209e8) + [!provide] PROVIDE (r_lc_init = 0x4001c948) + [!provide] PROVIDE (r_lc_init_calc_f3 = 0x4001deb0) + [!provide] PROVIDE (r_lc_initiator_epr = 0x4001e064) + [!provide] PROVIDE (r_lc_init_passkey_loop = 0x4001dfc0) + [!provide] PROVIDE (r_lc_init_start_mutual_auth = 0x4001df60) + [!provide] PROVIDE (r_lc_key_exch_end = 0x4001e140) + [!provide] PROVIDE (r_lc_legacy_pair = 0x4001e1c0) + [!provide] PROVIDE (r_lc_local_switch = 0x4001e22c) + [!provide] PROVIDE (r_lc_local_trans_mode = 0x4001e2e4) + [!provide] PROVIDE (r_lc_local_untrans_mode = 0x4001e3a0) + [!provide] PROVIDE (r_lc_loc_auth = 0x40020ecc) + [!provide] PROVIDE (r_lc_locepr_lkref = 0x4001d648) + [!provide] PROVIDE (r_lc_locepr_rsw = 0x4001d5d0) + [!provide] PROVIDE (r_lc_loc_sniff = 0x40020a6c) + [!provide] PROVIDE (r_lc_max_slot_mgt = 0x4001e410) + [!provide] PROVIDE (r_lc_mst_key = 0x4001e7c0) + [!provide] PROVIDE (r_lc_mst_qos_done = 0x4001ea80) + [!provide] PROVIDE (r_lc_mst_send_mst_key = 0x4001e8f4) + [!provide] PROVIDE (r_lc_mutual_auth_end = 0x4001e670) + [!provide] PROVIDE (r_lc_mutual_auth_end2 = 0x4001e4f4) + [!provide] PROVIDE (r_lc_packet_type = 0x40021038) + [!provide] PROVIDE (r_lc_pair = 0x40020ddc) + [!provide] PROVIDE (r_lc_pairing_cont = 0x4001eafc) + [!provide] PROVIDE (r_lc_passkey_comm = 0x4001ed20) + [!provide] PROVIDE (r_lc_prepare_all_links_for_clk_adj = 0x40021430) + [!provide] PROVIDE (r_lc_proc_rcv_dhkey = 0x4001edec) + [!provide] PROVIDE (r_lc_ptt = 0x4001ee2c) + [!provide] PROVIDE (r_lc_ptt_cmp = 0x4001eeec) + [!provide] PROVIDE (r_lc_qos_setup = 0x4001ef50) + [!provide] PROVIDE (r_lc_rd_rem_name = 0x4001efd0) + [!provide] PROVIDE (r_lc_release = 0x4001f8a8) + [!provide] PROVIDE (r_lc_rem_enc = 0x4001f124) + [!provide] PROVIDE (r_lc_rem_name_cont = 0x4001f290) + [!provide] PROVIDE (r_lc_rem_nego_trans_mode = 0x4001f1b4) + [!provide] PROVIDE (r_lc_rem_sniff = 0x40020ca4) + [!provide] PROVIDE (r_lc_rem_sniff_sub_rate = 0x40020b10) + [!provide] PROVIDE (r_lc_rem_switch = 0x4001f070) + [!provide] PROVIDE (r_lc_rem_trans_mode = 0x4001f314) + [!provide] PROVIDE (r_lc_rem_unsniff = 0x400207a0) + [!provide] PROVIDE (r_lc_rem_untrans_mode = 0x4001f36c) + [!provide] PROVIDE (r_lc_reset = 0x4001c99c) + [!provide] PROVIDE (r_lc_resp_auth = 0x4001f518) + [!provide] PROVIDE (r_lc_resp_calc_f3 = 0x4001f710) + [!provide] PROVIDE (r_lc_resp_num_comp = 0x40020074) + [!provide] PROVIDE (r_lc_resp_oob_nonce = 0x4001f694) + [!provide] PROVIDE (r_lc_resp_oob_wait_nonce = 0x4001f66c) + [!provide] PROVIDE (r_lc_resp_pair = 0x400208a4) + [!provide] PROVIDE (r_lc_resp_sec_auth = 0x4001f4a0) + [!provide] PROVIDE (r_lc_resp_wait_dhkey_cont = 0x4001f86c) + [!provide] PROVIDE (r_lc_restart_enc = 0x4001f8ec) + [!provide] PROVIDE (r_lc_restart_enc_cont = 0x4001f940) + [!provide] PROVIDE (r_lc_restore_afh_reporting = 0x4001f028) + [!provide] PROVIDE (r_lc_restore_to = 0x4001f9e0) + [!provide] PROVIDE (r_lc_ret_sniff_max_slot_chg = 0x4001fa30) + [!provide] PROVIDE (r_lc_rsw_clean_up = 0x4001dc70) + [!provide] PROVIDE (r_lc_rsw_done = 0x4001db94) + [!provide] PROVIDE (r_lc_sco_baseband_ack = 0x40022b00) + [!provide] PROVIDE (r_lc_sco_detach = 0x40021e40) + [!provide] PROVIDE (r_lc_sco_host_accept = 0x40022118) + [!provide] PROVIDE (r_lc_sco_host_reject = 0x400222b8) + [!provide] PROVIDE (r_lc_sco_host_request = 0x40021f4c) + [!provide] PROVIDE (r_lc_sco_host_request_disc = 0x4002235c) + [!provide] PROVIDE (r_lc_sco_init = 0x40021dc8) + [!provide] PROVIDE (r_lc_sco_peer_accept = 0x40022780) + [!provide] PROVIDE (r_lc_sco_peer_accept_disc = 0x40022a08) + [!provide] PROVIDE (r_lc_sco_peer_reject = 0x40022824) + [!provide] PROVIDE (r_lc_sco_peer_reject_disc = 0x40022a8c) + [!provide] PROVIDE (r_lc_sco_peer_request = 0x4002240c) + [!provide] PROVIDE (r_lc_sco_peer_request_disc = 0x400228ec) + [!provide] PROVIDE (r_lc_sco_release = 0x40021eec) + [!provide] PROVIDE (r_lc_sco_reset = 0x40021dfc) + [!provide] PROVIDE (r_lc_sco_timeout = 0x40022bd4) + [!provide] PROVIDE (r_lc_sec_auth_compute_sres = 0x4001f3ec) + [!provide] PROVIDE (r_lc_semi_key_cmp = 0x40020294) + [!provide] PROVIDE (r_lc_send_enc_chg_evt = 0x4002134c) + [!provide] PROVIDE (r_lc_send_enc_mode = 0x40020220) + [!provide] PROVIDE (r_lc_send_lmp = 0x4001c1a8) + [!provide] PROVIDE (r_lc_send_pdu_acc = 0x4001c21c) + [!provide] PROVIDE (r_lc_send_pdu_acc_ext4 = 0x4001c240) + [!provide] PROVIDE (r_lc_send_pdu_au_rand = 0x4001c308) + [!provide] PROVIDE (r_lc_send_pdu_auto_rate = 0x4001c5d0) + [!provide] PROVIDE (r_lc_send_pdu_clk_adj_ack = 0x4001c46c) + [!provide] PROVIDE (r_lc_send_pdu_clk_adj_req = 0x4001c494) + [!provide] PROVIDE (r_lc_send_pdu_comb_key = 0x4001c368) + [!provide] PROVIDE (r_lc_send_pdu_dhkey_chk = 0x4001c8e8) + [!provide] PROVIDE (r_lc_send_pdu_encaps_head = 0x4001c440) + [!provide] PROVIDE (r_lc_send_pdu_encaps_payl = 0x4001c410) + [!provide] PROVIDE (r_lc_send_pdu_enc_key_sz_req = 0x4001c670) + [!provide] PROVIDE (r_lc_send_pdu_esco_lk_rem_req = 0x4001c5a8) + [!provide] PROVIDE (r_lc_send_pdu_feats_ext_req = 0x4001c6ec) + [!provide] PROVIDE (r_lc_send_pdu_feats_res = 0x4001c694) + [!provide] PROVIDE (r_lc_send_pdu_in_rand = 0x4001c338) + [!provide] PROVIDE (r_lc_send_pdu_io_cap_res = 0x4001c72c) + [!provide] PROVIDE (r_lc_send_pdu_lsto = 0x4001c64c) + [!provide] PROVIDE (r_lc_send_pdu_max_slot = 0x4001c3c8) + [!provide] PROVIDE (r_lc_send_pdu_max_slot_req = 0x4001c3ec) + [!provide] PROVIDE (r_lc_send_pdu_not_acc = 0x4001c26c) + [!provide] PROVIDE (r_lc_send_pdu_not_acc_ext4 = 0x4001c294) + [!provide] PROVIDE (r_lc_send_pdu_num_comp_fail = 0x4001c770) + [!provide] PROVIDE (r_lc_send_pdu_pause_enc_aes_req = 0x4001c794) + [!provide] PROVIDE (r_lc_send_pdu_paus_enc_req = 0x4001c7c0) + [!provide] PROVIDE (r_lc_send_pdu_ptt_req = 0x4001c4c0) + [!provide] PROVIDE (r_lc_send_pdu_qos_req = 0x4001c82c) + [!provide] PROVIDE (r_lc_send_pdu_resu_enc_req = 0x4001c7e4) + [!provide] PROVIDE (r_lc_send_pdu_sco_lk_rem_req = 0x4001c580) + [!provide] PROVIDE (r_lc_send_pdu_set_afh = 0x4001c2c8) + [!provide] PROVIDE (r_lc_send_pdu_setup_cmp = 0x4001c808) + [!provide] PROVIDE (r_lc_send_pdu_slot_off = 0x4001c854) + [!provide] PROVIDE (r_lc_send_pdu_sniff_req = 0x4001c5f0) + [!provide] PROVIDE (r_lc_send_pdu_sp_cfm = 0x4001c518) + [!provide] PROVIDE (r_lc_send_pdu_sp_nb = 0x4001c4e8) + [!provide] PROVIDE (r_lc_send_pdu_sres = 0x4001c548) + [!provide] PROVIDE (r_lc_send_pdu_tim_acc = 0x4001c6cc) + [!provide] PROVIDE (r_lc_send_pdu_unit_key = 0x4001c398) + [!provide] PROVIDE (r_lc_send_pdu_unsniff_req = 0x4001c894) + [!provide] PROVIDE (r_lc_send_pdu_vers_req = 0x4001c8b4) + [!provide] PROVIDE (r_lc_skip_hl_oob_req = 0x400201bc) + [!provide] PROVIDE (r_lc_sniff_init = 0x40022cac) + [!provide] PROVIDE (r_lc_sniff_max_slot_chg = 0x40020590) + [!provide] PROVIDE (r_lc_sniff_reset = 0x40022cc8) + [!provide] PROVIDE (r_lc_sniff_slot_unchange = 0x40021100) + [!provide] PROVIDE (r_lc_sniff_sub_mode = 0x400204fc) + [!provide] PROVIDE (r_lc_sp_end = 0x400213a8) + [!provide] PROVIDE (r_lc_sp_fail = 0x40020470) + [!provide] PROVIDE (r_lc_sp_oob_tid_fail = 0x400204cc) + [!provide] PROVIDE (r_lc_ssr_nego = 0x4002125c) + [!provide] PROVIDE (r_lc_start = 0x4001ca28) + [!provide] PROVIDE (r_lc_start_enc = 0x4001fb28) + [!provide] PROVIDE (r_lc_start_enc_key_size = 0x4001fd9c) + [!provide] PROVIDE (r_lc_start_key_exch = 0x4001fe10) + [!provide] PROVIDE (r_lc_start_lmp_to = 0x4001fae8) + [!provide] PROVIDE (r_lc_start_oob = 0x4001fffc) + [!provide] PROVIDE (r_lc_start_passkey = 0x4001feac) + [!provide] PROVIDE (r_lc_start_passkey_loop = 0x4001ff88) + [!provide] PROVIDE (r_lc_stop_afh_report = 0x40020184) + [!provide] PROVIDE (r_lc_stop_enc = 0x40020110) + [!provide] PROVIDE (r_lc_switch_cmp = 0x40020448) + [!provide] PROVIDE (r_lc_unit_key_svr = 0x400206d8) + [!provide] PROVIDE (r_lc_unsniff = 0x40020c50) + [!provide] PROVIDE (r_lc_unsniff_cmp = 0x40020810) + [!provide] PROVIDE (r_lc_unsniff_cont = 0x40020750) + [!provide] PROVIDE (r_lc_upd_to = 0x4002065c) + [!provide] PROVIDE (r_lc_util_convert_pref_rate_to_packet_type = 0x4002f9b0) + [!provide] PROVIDE (r_lc_util_get_max_packet_size = 0x4002f4ac) + [!provide] PROVIDE (r_lc_util_get_offset_clke = 0x4002f538) + [!provide] PROVIDE (r_lc_util_get_offset_clkn = 0x4002f51c) + [!provide] PROVIDE (r_lc_util_set_loc_trans_coll = 0x4002f500) + [!provide] PROVIDE (r_lc_version = 0x40020a30) + [!provide] PROVIDE (lc_set_encap_pdu_data_p192 = 0x4002e4c8) + [!provide] PROVIDE (lc_set_encap_pdu_data_p256 = 0x4002e454) + [!provide] PROVIDE (lm_get_auth_method = 0x40023420) + [!provide] PROVIDE (lmp_accepted_ext_handler = 0x40027290) + [!provide] PROVIDE (lmp_not_accepted_ext_handler = 0x40029c54) + [!provide] PROVIDE (lmp_clk_adj_handler = 0x40027468) + [!provide] PROVIDE (lmp_clk_adj_ack_handler = 0x400274f4) + [!provide] PROVIDE (lm_get_auth_method = 0x40023420) + [!provide] PROVIDE (lmp_accepted_ext_handler = 0x40027290) + [!provide] PROVIDE (lmp_not_accepted_ext_handler = 0x40029c54) + [!provide] PROVIDE (lmp_clk_adj_handler = 0x40027468) + [!provide] PROVIDE (lmp_clk_adj_ack_handler = 0x400274f4) + [!provide] PROVIDE (lmp_clk_adj_req_handler = 0x4002751c) + [!provide] PROVIDE (lmp_feats_res_ext_handler = 0x4002cac4) + [!provide] PROVIDE (lmp_feats_req_ext_handler = 0x4002ccb0) + [!provide] PROVIDE (lmp_pkt_type_tbl_req_handler = 0x40027574) + [!provide] PROVIDE (lmp_esco_link_req_handler = 0x40027610) + [!provide] PROVIDE (lmp_rmv_esco_link_req_handler = 0x400276e8) + [!provide] PROVIDE (lmp_ch_class_req_handler = 0x40027730) + [!provide] PROVIDE (lmp_ch_class_handler = 0x4002ca18) + [!provide] PROVIDE (lmp_ssr_req_handler = 0x4002780c) + [!provide] PROVIDE (lmp_ssr_res_handler = 0x40027900) + [!provide] PROVIDE (lmp_pause_enc_aes_req_handler = 0x400279a4) + [!provide] PROVIDE (lmp_pause_enc_req_handler = 0x4002df90) + [!provide] PROVIDE (lmp_resume_enc_req_handler = 0x4002e084) + [!provide] PROVIDE (lmp_num_comparison_fail_handler = 0x40027a74) + [!provide] PROVIDE (lmp_passkey_fail_handler = 0x40027aec) + [!provide] PROVIDE (lmp_keypress_notif_handler = 0x4002c5c8) + [!provide] PROVIDE (lmp_pwr_ctrl_req_handler = 0x400263bc) + [!provide] PROVIDE (lmp_pwr_ctrl_res_handler = 0x40026480) + [!provide] PROVIDE (lmp_auto_rate_handler = 0x40026548) + [!provide] PROVIDE (lmp_pref_rate_handler = 0x4002657c) + [!provide] PROVIDE (lmp_name_req_handler = 0x40025050) + [!provide] PROVIDE (lmp_name_res_handler = 0x400250bc) + [!provide] PROVIDE (lmp_not_accepted_handler = 0x400251d0) + [!provide] PROVIDE (lmp_accepted_handler = 0x4002e894) + [!provide] PROVIDE (lmp_clk_off_req_handler = 0x40025a44) + [!provide] PROVIDE (lmp_clk_off_res_handler = 0x40025ab8) + [!provide] PROVIDE (lmp_detach_handler = 0x40025b74) + [!provide] PROVIDE (lmp_tempkey_handler = 0x4002b6b0) + [!provide] PROVIDE (lmp_temprand_handler = 0x4002b74c) + [!provide] PROVIDE (lmp_sres_handler = 0x4002b840) + [!provide] PROVIDE (lmp_aurand_handler = 0x4002bda0) + [!provide] PROVIDE (lmp_unitkey_handler = 0x4002c13c) + [!provide] PROVIDE (lmp_combkey_handler = 0x4002c234) + [!provide] PROVIDE (lmp_inrand_handler = 0x4002c414) + [!provide] PROVIDE (lmp_oob_fail_handler = 0x40027b84) + [!provide] PROVIDE (lmp_ping_req_handler = 0x40027c08) + [!provide] PROVIDE (lmp_ping_res_handler = 0x40027c5c) + [!provide] PROVIDE (lmp_enc_mode_req_handler = 0x40025c60) + [!provide] PROVIDE (lmp_enc_key_size_req_handler = 0x40025e54) + [!provide] PROVIDE (lmp_switch_req_handler = 0x40025f84) + [!provide] PROVIDE (lmp_start_enc_req_handler = 0x4002e124) + [!provide] PROVIDE (lmp_stop_enc_req_handler = 0x4002de30) + [!provide] PROVIDE (lmp_sniff_req_handler = 0x400260c8) + [!provide] PROVIDE (lmp_unsniff_req_handler = 0x400261e0) + [!provide] PROVIDE (lmp_incr_pwr_req_handler = 0x4002629c) + [!provide] PROVIDE (lmp_decr_pwr_req_handler = 0x400262f8) + [!provide] PROVIDE (lmp_max_pwr_handler = 0x40026354) + [!provide] PROVIDE (lmp_min_pwr_handler = 0x40026388) + [!provide] PROVIDE (lmp_ver_req_handler = 0x400265f0) + [!provide] PROVIDE (lmp_ver_res_handler = 0x40026670) + [!provide] PROVIDE (lmp_qos_handler = 0x40026790) + [!provide] PROVIDE (lmp_qos_req_handler = 0x40026844) + [!provide] PROVIDE (lmp_sco_link_req_handler = 0x40026930) + [!provide] PROVIDE (lmp_rmv_sco_link_req_handler = 0x40026a10) + [!provide] PROVIDE (lmp_max_slot_handler = 0x40026a54) + [!provide] PROVIDE (lmp_max_slot_req_handler = 0x40026aac) + [!provide] PROVIDE (lmp_timing_accu_req_handler = 0x40026b54) + [!provide] PROVIDE (lmp_timing_accu_res_handler = 0x40026bcc) + [!provide] PROVIDE (lmp_setup_cmp_handler = 0x40026c84) + [!provide] PROVIDE (lmp_feats_res_handler = 0x4002b548) + [!provide] PROVIDE (lmp_feats_req_handler = 0x4002b620) + [!provide] PROVIDE (lmp_host_con_req_handler = 0x4002b3d8) + [!provide] PROVIDE (lmp_use_semi_perm_key_handler = 0x4002b4c4) + [!provide] PROVIDE (lmp_slot_off_handler = 0x40026cc8) + [!provide] PROVIDE (lmp_page_mode_req_handler = 0x40026d0c) + [!provide] PROVIDE (lmp_page_scan_mode_req_handler = 0x40026d4c) + [!provide] PROVIDE (lmp_supv_to_handler = 0x40026d94) + [!provide] PROVIDE (lmp_test_activate_handler = 0x40026e7c) + [!provide] PROVIDE (lmp_test_ctrl_handler = 0x40026ee4) + [!provide] PROVIDE (lmp_enc_key_size_mask_req_handler = 0x40027038) + [!provide] PROVIDE (lmp_enc_key_size_mask_res_handler = 0x400270a4) + [!provide] PROVIDE (lmp_set_afh_handler = 0x4002b2e4) + [!provide] PROVIDE (lmp_encaps_hdr_handler = 0x40027120) + [!provide] PROVIDE (lmp_encaps_payl_handler = 0x4002e590) + [!provide] PROVIDE (lmp_sp_nb_handler = 0x4002acf0) + [!provide] PROVIDE (lmp_sp_cfm_handler = 0x4002b170) + [!provide] PROVIDE (lmp_dhkey_chk_handler = 0x4002ab48) + [!provide] PROVIDE (lmp_pause_enc_aes_req_handler = 0x400279a4) + [!provide] PROVIDE (lmp_io_cap_res_handler = 0x4002c670) + [!provide] PROVIDE (lmp_io_cap_req_handler = 0x4002c7a4) + [!provide] PROVIDE (ld_acl_tx_packet_type_select = 0x4002fb40) + [!provide] PROVIDE (ld_acl_sched = 0x40033268) + [!provide] PROVIDE (ld_acl_sniff_sched = 0x4003340c) + [!provide] PROVIDE (ld_acl_rx = 0x4003274c) + [!provide] PROVIDE (ld_acl_tx = 0x4002ffdc) + [!provide] PROVIDE (ld_acl_rx_sync = 0x4002fbec) + [!provide] PROVIDE (ld_acl_rx_sync2 = 0x4002fd8c) + [!provide] PROVIDE (ld_acl_rx_no_sync = 0x4002fe78) + [!provide] PROVIDE (ld_acl_clk_isr = 0x40030cf8) + [!provide] PROVIDE (ld_acl_rsw_frm_cbk = 0x40033bb0) + [!provide] PROVIDE (ld_sco_modify = 0x40031778) + [!provide] PROVIDE (lm_cmd_cmp_send = 0x40051838) + [!provide] PROVIDE (ld_sco_frm_cbk = 0x400349dc) + [!provide] PROVIDE (ld_acl_sniff_frm_cbk = 0x4003482c) + [!provide] PROVIDE (ld_inq_end = 0x4003ab48) + [!provide] PROVIDE (ld_inq_sched = 0x4003aba4) + [!provide] PROVIDE (ld_inq_frm_cbk = 0x4003ae4c) + [!provide] PROVIDE (r_ld_acl_active_hop_types_get = 0x40036e10) + [!provide] PROVIDE (r_ld_acl_afh_confirm = 0x40036d40) + [!provide] PROVIDE (r_ld_acl_afh_prepare = 0x40036c84) + [!provide] PROVIDE (r_ld_acl_afh_set = 0x40036b60) + [!provide] PROVIDE (r_ld_acl_allowed_tx_packet_types_set = 0x40036810) + [!provide] PROVIDE (r_ld_acl_bcst_rx_dec = 0x40036394) + [!provide] PROVIDE (r_ld_acl_bit_off_get = 0x40036b18) + [!provide] PROVIDE (r_ld_acl_clk_adj_set = 0x40036a00) + [!provide] PROVIDE (r_ld_acl_clk_off_get = 0x40036b00) + [!provide] PROVIDE (r_ld_acl_clk_set = 0x40036950) + [!provide] PROVIDE (r_ld_acl_clock_offset_get = 0x400364c0) + [!provide] PROVIDE (r_ld_acl_current_tx_power_get = 0x400368f0) + [!provide] PROVIDE (r_ld_acl_data_flush = 0x400357bc) + [!provide] PROVIDE (r_ld_acl_data_tx = 0x4003544c) + [!provide] PROVIDE (r_ld_acl_edr_set = 0x4003678c) + [!provide] PROVIDE (r_ld_acl_enc_key_load = 0x40036404) + [!provide] PROVIDE (r_ld_acl_flow_off = 0x40035400) + [!provide] PROVIDE (r_ld_acl_flow_on = 0x4003541c) + [!provide] PROVIDE (r_ld_acl_flush_timeout_get = 0x40035f9c) + [!provide] PROVIDE (r_ld_acl_flush_timeout_set = 0x40035fe0) + [!provide] PROVIDE (r_ld_acl_init = 0x40034d08) + [!provide] PROVIDE (r_ld_acl_lmp_flush = 0x40035d80) + [!provide] PROVIDE (r_ld_acl_lmp_tx = 0x40035b34) + [!provide] PROVIDE (r_ld_acl_lsto_get = 0x400366b4) + [!provide] PROVIDE (r_ld_acl_lsto_set = 0x400366f8) + [!provide] PROVIDE (r_ld_acl_reset = 0x40034d24) + [!provide] PROVIDE (r_ld_acl_role_get = 0x40036b30) + [!provide] PROVIDE (r_ld_acl_rssi_delta_get = 0x40037028) + [!provide] PROVIDE (r_ld_acl_rsw_req = 0x40035e74) + [!provide] PROVIDE (r_ld_acl_rx_enc = 0x40036344) + [!provide] PROVIDE (r_ld_acl_rx_max_slot_get = 0x40036e58) + [!provide] PROVIDE (r_ld_acl_rx_max_slot_set = 0x40036ea0) + [!provide] PROVIDE (r_ld_acl_slot_offset_get = 0x4003653c) + [!provide] PROVIDE (r_ld_acl_slot_offset_set = 0x40036658) + [!provide] PROVIDE (r_ld_acl_sniff = 0x4003617c) + [!provide] PROVIDE (r_ld_acl_sniff_trans = 0x400360a8) + [!provide] PROVIDE (r_ld_acl_ssr_set = 0x40036274) + [!provide] PROVIDE (r_ld_acl_start = 0x40034ddc) + [!provide] PROVIDE (r_ld_acl_stop = 0x4003532c) + [!provide] PROVIDE (r_ld_acl_test_mode_set = 0x40036f24) + [!provide] PROVIDE (r_ld_acl_timing_accuracy_set = 0x4003673c) + [!provide] PROVIDE (r_ld_acl_t_poll_get = 0x40036024) + [!provide] PROVIDE (r_ld_acl_t_poll_set = 0x40036068) + [!provide] PROVIDE (r_ld_acl_tx_enc = 0x400362f8) + [!provide] PROVIDE (r_ld_acl_unsniff = 0x400361e0) + [!provide] PROVIDE (r_ld_active_check = 0x4003cac4) + [!provide] PROVIDE (r_ld_afh_ch_assess_data_get = 0x4003caec) + [!provide] PROVIDE (r_ld_bcst_acl_data_tx = 0x40038d3c) + [!provide] PROVIDE (r_ld_bcst_acl_init = 0x40038bd0) + [!provide] PROVIDE (r_ld_bcst_acl_reset = 0x40038bdc) + [!provide] PROVIDE (r_ld_bcst_acl_start = 0x4003882c) + [!provide] PROVIDE (r_ld_bcst_afh_update = 0x40038f3c) + [!provide] PROVIDE (r_ld_bcst_enc_key_load = 0x4003906c) + [!provide] PROVIDE (r_ld_bcst_lmp_tx = 0x40038bf8) + [!provide] PROVIDE (r_ld_bcst_tx_enc = 0x40038ff8) + [!provide] PROVIDE (r_ld_bd_addr_get = 0x4003ca20) + [!provide] PROVIDE (r_ld_channel_assess = 0x4003c184) + [!provide] PROVIDE (r_ld_class_of_dev_get = 0x4003ca34) + [!provide] PROVIDE (r_ld_class_of_dev_set = 0x4003ca50) + [!provide] PROVIDE (r_ld_csb_rx_afh_update = 0x40039af4) + [!provide] PROVIDE (r_ld_csb_rx_init = 0x40039690) + [!provide] PROVIDE (r_ld_csb_rx_reset = 0x4003969c) + [!provide] PROVIDE (r_ld_csb_rx_start = 0x4003972c) + [!provide] PROVIDE (r_ld_csb_rx_stop = 0x40039bb8) + [!provide] PROVIDE (r_ld_csb_tx_afh_update = 0x4003a5fc) + [!provide] PROVIDE (r_ld_csb_tx_clr_data = 0x4003a71c) + [!provide] PROVIDE (r_ld_csb_tx_dis = 0x4003a5e8) + [!provide] PROVIDE (r_ld_csb_tx_en = 0x4003a1c0) + [!provide] PROVIDE (r_ld_csb_tx_init = 0x4003a0e8) + [!provide] PROVIDE (r_ld_csb_tx_reset = 0x4003a0f8) + [!provide] PROVIDE (r_ld_csb_tx_set_data = 0x4003a6c0) + [!provide] PROVIDE (r_ld_fm_clk_isr = 0x4003a7a8) + [!provide] PROVIDE (r_ld_fm_frame_isr = 0x4003a82c) + [!provide] PROVIDE (r_ld_fm_init = 0x4003a760) + [!provide] PROVIDE (r_ld_fm_prog_check = 0x4003ab28) + [!provide] PROVIDE (r_ld_fm_prog_disable = 0x4003a984) + [!provide] PROVIDE (r_ld_fm_prog_enable = 0x4003a944) + [!provide] PROVIDE (r_ld_fm_prog_push = 0x4003a9d4) + [!provide] PROVIDE (r_ld_fm_reset = 0x4003a794) + [!provide] PROVIDE (r_ld_fm_rx_isr = 0x4003a7f4) + [!provide] PROVIDE (r_ld_fm_sket_isr = 0x4003a8a4) + [!provide] PROVIDE (r_ld_init = 0x4003c294) + [!provide] PROVIDE (r_ld_inq_init = 0x4003b15c) + [!provide] PROVIDE (r_ld_inq_reset = 0x4003b168) + [!provide] PROVIDE (r_ld_inq_start = 0x4003b1f0) + [!provide] PROVIDE (r_ld_inq_stop = 0x4003b4f0) + [!provide] PROVIDE (r_ld_iscan_eir_get = 0x4003c118) + [!provide] PROVIDE (r_ld_iscan_eir_set = 0x4003bfa0) + [!provide] PROVIDE (r_ld_iscan_init = 0x4003b9f0) + [!provide] PROVIDE (r_ld_iscan_reset = 0x4003ba14) + [!provide] PROVIDE (r_ld_iscan_restart = 0x4003ba44) + [!provide] PROVIDE (r_ld_iscan_start = 0x4003bb28) + [!provide] PROVIDE (r_ld_iscan_stop = 0x4003bf1c) + [!provide] PROVIDE (r_ld_iscan_tx_pwr_get = 0x4003c138) + [!provide] PROVIDE (r_ld_page_init = 0x4003d808) + [!provide] PROVIDE (r_ld_page_reset = 0x4003d814) + [!provide] PROVIDE (r_ld_page_start = 0x4003d848) + [!provide] PROVIDE (r_ld_page_stop = 0x4003da54) + [!provide] PROVIDE (r_ld_pca_coarse_clock_adjust = 0x4003e324) + [!provide] PROVIDE (r_ld_pca_init = 0x4003deb4) + [!provide] PROVIDE (r_ld_pca_initiate_clock_dragging = 0x4003e4ac) + [!provide] PROVIDE (r_ld_pca_local_config = 0x4003df6c) + [!provide] PROVIDE (r_ld_pca_mws_frame_sync = 0x4003e104) + [!provide] PROVIDE (r_ld_pca_mws_moment_offset_gt = 0x4003e278) + [!provide] PROVIDE (r_ld_pca_mws_moment_offset_lt = 0x4003e280) + [!provide] PROVIDE (r_ld_pca_reporting_enable = 0x4003e018) + [!provide] PROVIDE (r_ld_pca_reset = 0x4003df0c) + [!provide] PROVIDE (r_ld_pca_update_target_offset = 0x4003e050) + [!provide] PROVIDE (r_ld_pscan_evt_handler = 0x4003f238) + [!provide] PROVIDE (r_ld_pscan_init = 0x4003f474) + [!provide] PROVIDE (r_ld_pscan_reset = 0x4003f498) + [!provide] PROVIDE (r_ld_pscan_restart = 0x4003f4b8) + [!provide] PROVIDE (r_ld_pscan_start = 0x4003f514) + [!provide] PROVIDE (r_ld_pscan_stop = 0x4003f618) + [!provide] PROVIDE (r_ld_read_clock = 0x4003c9e4) + [!provide] PROVIDE (r_ld_reset = 0x4003c714) + [!provide] PROVIDE (r_ld_sched_acl_add = 0x4003f978) + [!provide] PROVIDE (r_ld_sched_acl_remove = 0x4003f99c) + [!provide] PROVIDE (r_ld_sched_compute = 0x4003f6f8) + [!provide] PROVIDE (r_ld_sched_init = 0x4003f7ac) + [!provide] PROVIDE (r_ld_sched_inq_add = 0x4003f8a8) + [!provide] PROVIDE (r_ld_sched_inq_remove = 0x4003f8d0) + [!provide] PROVIDE (r_ld_sched_iscan_add = 0x4003f7e8) + [!provide] PROVIDE (r_ld_sched_iscan_remove = 0x4003f808) + [!provide] PROVIDE (r_ld_sched_page_add = 0x4003f910) + [!provide] PROVIDE (r_ld_sched_page_remove = 0x4003f938) + [!provide] PROVIDE (r_ld_sched_pscan_add = 0x4003f828) + [!provide] PROVIDE (r_ld_sched_pscan_remove = 0x4003f848) + [!provide] PROVIDE (r_ld_sched_reset = 0x4003f7d4) + [!provide] PROVIDE (r_ld_sched_sco_add = 0x4003fa4c) + [!provide] PROVIDE (r_ld_sched_sco_remove = 0x4003fa9c) + [!provide] PROVIDE (r_ld_sched_sniff_add = 0x4003f9c4) + [!provide] PROVIDE (r_ld_sched_sniff_remove = 0x4003fa0c) + [!provide] PROVIDE (r_ld_sched_sscan_add = 0x4003f868) + [!provide] PROVIDE (r_ld_sched_sscan_remove = 0x4003f888) + [!provide] PROVIDE (r_ld_sco_audio_isr = 0x40037cc8) + [!provide] PROVIDE (r_ld_sco_data_tx = 0x40037ee8) + [!provide] PROVIDE (r_ld_sco_start = 0x40037110) + [!provide] PROVIDE (r_ld_sco_stop = 0x40037c40) + [!provide] PROVIDE (r_ld_sco_update = 0x40037a74) + [!provide] PROVIDE (r_ld_sscan_activated = 0x4004031c) + [!provide] PROVIDE (r_ld_sscan_init = 0x400402f0) + [!provide] PROVIDE (r_ld_sscan_reset = 0x400402fc) + [!provide] PROVIDE (r_ld_sscan_start = 0x40040384) + [!provide] PROVIDE (r_ld_strain_init = 0x400409f4) + [!provide] PROVIDE (r_ld_strain_reset = 0x40040a00) + [!provide] PROVIDE (r_ld_strain_start = 0x40040a8c) + [!provide] PROVIDE (r_ld_strain_stop = 0x40040df0) + [!provide] PROVIDE (r_ld_timing_accuracy_get = 0x4003caac) + [!provide] PROVIDE (r_ld_util_active_master_afh_map_get = 0x4004131c) + [!provide] PROVIDE (r_ld_util_active_master_afh_map_set = 0x40041308) + [!provide] PROVIDE (r_ld_util_bch_create = 0x40040fcc) + [!provide] PROVIDE (r_ld_util_fhs_pk = 0x400411c8) + [!provide] PROVIDE (r_ld_util_fhs_unpk = 0x40040e54) + [!provide] PROVIDE (r_ld_util_stp_pk = 0x400413f4) + [!provide] PROVIDE (r_ld_util_stp_unpk = 0x40041324) + [!provide] PROVIDE (r_ld_version_get = 0x4003ca6c) + [!provide] PROVIDE (r_ld_wlcoex_set = 0x4003caf8) + [!provide] PROVIDE (r_llc_ch_assess_get_current_ch_map = 0x40041574) + [!provide] PROVIDE (r_llc_ch_assess_get_local_ch_map = 0x4004150c) + [!provide] PROVIDE (r_llc_ch_assess_local = 0x40041494) + [!provide] PROVIDE (r_llc_ch_assess_merge_ch = 0x40041588) + [!provide] PROVIDE (r_llc_ch_assess_reass_ch = 0x400415c0) + [!provide] PROVIDE (r_llc_common_cmd_complete_send = 0x40044eac) + [!provide] PROVIDE (r_llc_common_cmd_status_send = 0x40044ee0) + [!provide] PROVIDE (r_llc_common_enc_change_evt_send = 0x40044f6c) + [!provide] PROVIDE (r_llc_common_enc_key_ref_comp_evt_send = 0x40044f38) + [!provide] PROVIDE (r_llc_common_flush_occurred_send = 0x40044f0c) + [!provide] PROVIDE (r_llc_common_nb_of_pkt_comp_evt_send = 0x40045000) + [!provide] PROVIDE (r_llc_con_update_complete_send = 0x40044d68) + [!provide] PROVIDE (r_llc_con_update_finished = 0x4004518c) + [!provide] PROVIDE (r_llc_con_update_ind = 0x40045038) + [!provide] PROVIDE (r_llc_discon_event_complete_send = 0x40044a30) + [!provide] PROVIDE (r_llc_end_evt_defer = 0x40046330) + [!provide] PROVIDE (r_llc_feats_rd_event_send = 0x40044e0c) + [!provide] PROVIDE (r_llc_init = 0x40044778) + [!provide] PROVIDE (r_llc_le_con_cmp_evt_send = 0x40044a78) + [!provide] PROVIDE (r_llc_llcp_ch_map_update_pdu_send = 0x40043f94) + [!provide] PROVIDE (r_llc_llcp_con_param_req_pdu_send = 0x400442fc) + [!provide] PROVIDE (r_llc_llcp_con_param_rsp_pdu_send = 0x40044358) + [!provide] PROVIDE (r_llc_llcp_con_update_pdu_send = 0x400442c4) + [!provide] PROVIDE (r_llc_llcp_enc_req_pdu_send = 0x40044064) + [!provide] PROVIDE (r_llc_llcp_enc_rsp_pdu_send = 0x40044160) + [!provide] PROVIDE (r_llc_llcp_feats_req_pdu_send = 0x400443b4) + [!provide] PROVIDE (r_llc_llcp_feats_rsp_pdu_send = 0x400443f0) + [!provide] PROVIDE (r_llc_llcp_get_autorize = 0x4004475c) + [!provide] PROVIDE (r_llc_llcp_length_req_pdu_send = 0x40044574) + [!provide] PROVIDE (r_llc_llcp_length_rsp_pdu_send = 0x400445ac) + [!provide] PROVIDE (r_llc_llcp_pause_enc_req_pdu_send = 0x40043fd8) + [!provide] PROVIDE (r_llc_llcp_pause_enc_rsp_pdu_send = 0x40044010) + [!provide] PROVIDE (r_llc_llcp_ping_req_pdu_send = 0x4004454c) + [!provide] PROVIDE (r_llc_llcp_ping_rsp_pdu_send = 0x40044560) + [!provide] PROVIDE (r_llc_llcp_recv_handler = 0x40044678) + [!provide] PROVIDE (r_llc_llcp_reject_ind_pdu_send = 0x4004425c) + [!provide] PROVIDE (r_llc_llcp_start_enc_req_pdu_send = 0x4004441c) + [!provide] PROVIDE (r_llc_llcp_start_enc_rsp_pdu_send = 0x400441f8) + [!provide] PROVIDE (r_llc_llcp_terminate_ind_pdu_send = 0x400444b0) + [!provide] PROVIDE (r_llc_llcp_tester_send = 0x400445e4) + [!provide] PROVIDE (r_llc_llcp_unknown_rsp_send_pdu = 0x40044534) + [!provide] PROVIDE (r_llc_llcp_version_ind_pdu_send = 0x40043f6c) + [!provide] PROVIDE (r_llc_lsto_con_update = 0x40045098) + [!provide] PROVIDE (r_llc_ltk_req_send = 0x40044dc0) + [!provide] PROVIDE (r_llc_map_update_finished = 0x40045260) + [!provide] PROVIDE (r_llc_map_update_ind = 0x400450f0) + [!provide] PROVIDE (r_llc_pdu_acl_tx_ack_defer = 0x400464dc) + [!provide] PROVIDE (r_llc_pdu_defer = 0x40046528) + [!provide] PROVIDE (r_llc_pdu_llcp_tx_ack_defer = 0x400463ac) + [!provide] PROVIDE (r_llc_reset = 0x400447b8) + [!provide] PROVIDE (r_llc_start = 0x400447f4) + [!provide] PROVIDE (r_llc_stop = 0x400449ac) + [!provide] PROVIDE (r_llc_util_bw_mgt = 0x4004629c) + [!provide] PROVIDE (r_llc_util_clear_operation_ptr = 0x40046234) + [!provide] PROVIDE (r_llc_util_dicon_procedure = 0x40046130) + [!provide] PROVIDE (r_llc_util_get_free_conhdl = 0x400460c8) + [!provide] PROVIDE (r_llc_util_get_nb_active_link = 0x40046100) + [!provide] PROVIDE (r_llc_util_set_auth_payl_to_margin = 0x400461f4) + [!provide] PROVIDE (r_llc_util_set_llcp_discard_enable = 0x400461c8) + [!provide] PROVIDE (r_llc_util_update_channel_map = 0x400461ac) + [!provide] PROVIDE (r_llc_version_rd_event_send = 0x40044e60) + [!provide] PROVIDE (r_lld_adv_start = 0x40048b38) + [!provide] PROVIDE (r_lld_adv_stop = 0x40048ea0) + [!provide] PROVIDE (r_lld_ch_map_ind = 0x4004a2f4) + [!provide] PROVIDE (r_lld_con_param_req = 0x40049f0c) + [!provide] PROVIDE (r_lld_con_param_rsp = 0x40049e00) + [!provide] PROVIDE (r_lld_con_start = 0x400491f8) + [!provide] PROVIDE (r_lld_con_stop = 0x40049fdc) + [!provide] PROVIDE (r_lld_con_update_after_param_req = 0x40049bcc) + [!provide] PROVIDE (r_lld_con_update_ind = 0x4004a30c) + [!provide] PROVIDE (r_lld_con_update_req = 0x40049b60) + [!provide] PROVIDE (r_lld_core_reset = 0x40048a9c) + [!provide] PROVIDE (r_lld_crypt_isr = 0x4004a324) + [!provide] PROVIDE (r_lld_evt_adv_create = 0x400481f4) + [!provide] PROVIDE (r_lld_evt_canceled = 0x400485c8) + [!provide] PROVIDE (r_lld_evt_channel_next = 0x40046aac) + [!provide] PROVIDE (r_lld_evt_deffered_elt_handler = 0x400482bc) + [!provide] PROVIDE (r_lld_evt_delete_elt_handler = 0x40046974) + [!provide] PROVIDE (r_lld_evt_delete_elt_push = 0x40046a3c) + [!provide] PROVIDE (r_lld_evt_drift_compute = 0x40047670) + [!provide] PROVIDE (r_lld_evt_elt_delete = 0x40047538) + [!provide] PROVIDE (r_lld_evt_elt_insert = 0x400474c8) + [!provide] PROVIDE (r_lld_evt_end = 0x400483e8) + [!provide] PROVIDE (r_lld_evt_end_isr = 0x4004862c) + [!provide] PROVIDE (r_lld_evt_init = 0x40046b3c) + [!provide] PROVIDE (r_lld_evt_init_evt = 0x40046cd0) + [!provide] PROVIDE (r_lld_evt_move_to_master = 0x40047ba0) + [!provide] PROVIDE (r_lld_evt_move_to_slave = 0x40047e18) + [!provide] PROVIDE (r_lld_evt_prevent_stop = 0x40047adc) + [!provide] PROVIDE (r_lld_evt_restart = 0x40046d50) + [!provide] PROVIDE (r_lld_evt_rx = 0x40048578) + [!provide] PROVIDE (r_lld_evt_rx_isr = 0x40048678) + [!provide] PROVIDE (r_lld_evt_scan_create = 0x40047ae8) + [!provide] PROVIDE (r_lld_evt_schedule = 0x40047908) + [!provide] PROVIDE (r_lld_evt_schedule_next = 0x400477dc) + [!provide] PROVIDE (r_lld_evt_schedule_next_instant = 0x400476a8) + [!provide] PROVIDE (r_lld_evt_slave_update = 0x40048138) + [!provide] PROVIDE (r_lld_evt_update_create = 0x40047cd8) + [!provide] PROVIDE (r_lld_get_mode = 0x40049ff8) + [!provide] PROVIDE (r_lld_init = 0x4004873c) + [!provide] PROVIDE (r_lld_move_to_master = 0x400499e0) + [!provide] PROVIDE (r_lld_move_to_slave = 0x4004a024) + [!provide] PROVIDE (r_lld_pdu_adv_pack = 0x4004b488) + [!provide] PROVIDE (r_lld_pdu_check = 0x4004ac34) + [!provide] PROVIDE (r_lld_pdu_data_send = 0x4004b018) + [!provide] PROVIDE (r_lld_pdu_data_tx_push = 0x4004aecc) + [!provide] PROVIDE (r_lld_pdu_rx_handler = 0x4004b4d4) + [!provide] PROVIDE (r_lld_pdu_send_packet = 0x4004b774) + [!provide] PROVIDE (r_lld_pdu_tx_flush = 0x4004b414) + [!provide] PROVIDE (r_lld_pdu_tx_loop = 0x4004ae40) + [!provide] PROVIDE (r_lld_pdu_tx_prog = 0x4004b120) + [!provide] PROVIDE (r_lld_pdu_tx_push = 0x4004b080) + [!provide] PROVIDE (r_lld_ral_renew_req = 0x4004a73c) + [!provide] PROVIDE (r_lld_scan_start = 0x40048ee0) + [!provide] PROVIDE (r_lld_scan_stop = 0x40049190) + [!provide] PROVIDE (r_lld_test_mode_rx = 0x4004a540) + [!provide] PROVIDE (r_lld_test_mode_tx = 0x4004a350) + [!provide] PROVIDE (r_lld_test_stop = 0x4004a710) + [!provide] PROVIDE (r_lld_util_anchor_point_move = 0x4004bacc) + [!provide] PROVIDE (r_lld_util_compute_ce_max = 0x4004bc0c) + [!provide] PROVIDE (r_lld_util_connection_param_set = 0x4004ba40) + [!provide] PROVIDE (r_lld_util_dle_set_cs_fields = 0x4004ba90) + [!provide] PROVIDE (r_lld_util_eff_tx_time_set = 0x4004bd88) + [!provide] PROVIDE (r_lld_util_elt_programmed = 0x4004bce0) + [!provide] PROVIDE (r_lld_util_flush_list = 0x4004bbd8) + [!provide] PROVIDE (r_lld_util_freq2chnl = 0x4004b9e4) + [!provide] PROVIDE (r_lld_util_get_bd_address = 0x4004b8ac) + [!provide] PROVIDE (r_lld_util_get_local_offset = 0x4004ba10) + [!provide] PROVIDE (r_lld_util_get_peer_offset = 0x4004ba24) + [!provide] PROVIDE (r_lld_util_get_tx_pkt_cnt = 0x4004bd80) + [!provide] PROVIDE (r_lld_util_instant_get = 0x4004b890) + [!provide] PROVIDE (r_lld_util_instant_ongoing = 0x4004bbfc) + [!provide] PROVIDE (r_lld_util_priority_set = 0x4004bd10) + [!provide] PROVIDE (r_lld_util_priority_update = 0x4004bd78) + [!provide] PROVIDE (r_lld_util_ral_force_rpa_renew = 0x4004b980) + [!provide] PROVIDE (r_lld_util_set_bd_address = 0x4004b8f8) + [!provide] PROVIDE (r_lld_wlcoex_set = 0x4004bd98) + [!provide] PROVIDE (r_llm_ble_ready = 0x4004cc34) + [!provide] PROVIDE (r_llm_common_cmd_complete_send = 0x4004d288) + [!provide] PROVIDE (r_llm_common_cmd_status_send = 0x4004d2b4) + [!provide] PROVIDE (r_llm_con_req_ind = 0x4004cc54) + [!provide] PROVIDE (r_llm_con_req_tx_cfm = 0x4004d158) + [!provide] PROVIDE (r_llm_create_con = 0x4004de78) + [!provide] PROVIDE (r_llm_encryption_done = 0x4004dff8) + [!provide] PROVIDE (r_llm_encryption_start = 0x4004e128) + [!provide] PROVIDE (r_llm_end_evt_defer = 0x4004eb6c) + [!provide] PROVIDE (r_llm_init = 0x4004c9f8) + [!provide] PROVIDE (r_llm_le_adv_report_ind = 0x4004cdf4) + [!provide] PROVIDE (r_llm_pdu_defer = 0x4004ec48) + [!provide] PROVIDE (r_llm_ral_clear = 0x4004e1fc) + [!provide] PROVIDE (r_llm_ral_dev_add = 0x4004e23c) + [!provide] PROVIDE (r_llm_ral_dev_rm = 0x4004e3bc) + [!provide] PROVIDE (r_llm_ral_get_rpa = 0x4004e400) + [!provide] PROVIDE (r_llm_ral_set_timeout = 0x4004e4a0) + [!provide] PROVIDE (r_llm_ral_update = 0x4004e4f8) + [!provide] PROVIDE (r_llm_set_adv_data = 0x4004d960) + [!provide] PROVIDE (r_llm_set_adv_en = 0x4004d7ec) + [!provide] PROVIDE (r_llm_set_adv_param = 0x4004d5f4) + [!provide] PROVIDE (r_llm_set_scan_en = 0x4004db64) + [!provide] PROVIDE (r_llm_set_scan_param = 0x4004dac8) + [!provide] PROVIDE (r_llm_set_scan_rsp_data = 0x4004da14) + [!provide] PROVIDE (r_llm_test_mode_start_rx = 0x4004d534) + [!provide] PROVIDE (r_llm_test_mode_start_tx = 0x4004d2fc) + [!provide] PROVIDE (r_llm_util_adv_data_update = 0x4004e8fc) + [!provide] PROVIDE (r_llm_util_apply_bd_addr = 0x4004e868) + [!provide] PROVIDE (r_llm_util_bd_addr_in_ral = 0x4004eb08) + [!provide] PROVIDE (r_llm_util_bd_addr_in_wl = 0x4004e788) + [!provide] PROVIDE (r_llm_util_bd_addr_wl_position = 0x4004e720) + [!provide] PROVIDE (r_llm_util_bl_add = 0x4004e9ac) + [!provide] PROVIDE (r_llm_util_bl_check = 0x4004e930) + [!provide] PROVIDE (r_llm_util_bl_rem = 0x4004ea70) + [!provide] PROVIDE (r_llm_util_check_address_validity = 0x4004e7e4) + [!provide] PROVIDE (r_llm_util_check_evt_mask = 0x4004e8b0) + [!provide] PROVIDE (r_llm_util_check_map_validity = 0x4004e800) + [!provide] PROVIDE (r_llm_util_get_channel_map = 0x4004e8d4) + [!provide] PROVIDE (r_llm_util_get_supp_features = 0x4004e8e8) + [!provide] PROVIDE (r_llm_util_set_public_addr = 0x4004e89c) + [!provide] PROVIDE (r_llm_wl_clr = 0x4004dc54) + [!provide] PROVIDE (r_llm_wl_dev_add = 0x4004dcc0) + [!provide] PROVIDE (r_llm_wl_dev_add_hdl = 0x4004dd38) + [!provide] PROVIDE (r_llm_wl_dev_rem = 0x4004dcfc) + [!provide] PROVIDE (r_llm_wl_dev_rem_hdl = 0x4004dde0) + [!provide] PROVIDE (r_lm_acl_disc = 0x4004f148) + [!provide] PROVIDE (r_LM_AddSniff = 0x40022d20) + [!provide] PROVIDE (r_lm_add_sync = 0x40051358) + [!provide] PROVIDE (r_lm_afh_activate_timer = 0x4004f444) + [!provide] PROVIDE (r_lm_afh_ch_ass_en_get = 0x4004f3f8) + [!provide] PROVIDE (r_lm_afh_host_ch_class_get = 0x4004f410) + [!provide] PROVIDE (r_lm_afh_master_ch_map_get = 0x4004f43c) + [!provide] PROVIDE (r_lm_afh_peer_ch_class_set = 0x4004f418) + [!provide] PROVIDE (r_lm_check_active_sync = 0x40051334) + [!provide] PROVIDE (r_LM_CheckEdrFeatureRequest = 0x4002f90c) + [!provide] PROVIDE (r_LM_CheckSwitchInstant = 0x4002f8c0) + [!provide] PROVIDE (r_lm_check_sync_hl_rsp = 0x4005169c) + [!provide] PROVIDE (r_lm_clk_adj_ack_pending_clear = 0x4004f514) + [!provide] PROVIDE (r_lm_clk_adj_instant_pending_set = 0x4004f4d8) + [!provide] PROVIDE (r_LM_ComputePacketType = 0x4002f554) + [!provide] PROVIDE (r_LM_ComputeSniffSubRate = 0x400233ac) + [!provide] PROVIDE (r_lm_debug_key_compare_192 = 0x4004f3a8) + [!provide] PROVIDE (r_lm_debug_key_compare_256 = 0x4004f3d0) + [!provide] PROVIDE (r_lm_dhkey_calc_init = 0x40013234) + [!provide] PROVIDE (r_lm_dhkey_compare = 0x400132d8) + [!provide] PROVIDE (r_lm_dut_mode_en_get = 0x4004f3ec) + [!provide] PROVIDE (r_LM_ExtractMaxEncKeySize = 0x4001aca4) + [!provide] PROVIDE (r_lm_f1 = 0x40012bb8) + [!provide] PROVIDE (r_lm_f2 = 0x40012cfc) + [!provide] PROVIDE (r_lm_f3 = 0x40013050) + [!provide] PROVIDE (r_lm_g = 0x40012f90) + [!provide] PROVIDE (r_LM_GetAFHSwitchInstant = 0x4002f86c) + [!provide] PROVIDE (r_lm_get_auth_en = 0x4004f1ac) + [!provide] PROVIDE (r_lm_get_common_pkt_types = 0x4002fa1c) + [!provide] PROVIDE (r_LM_GetConnectionAcceptTimeout = 0x4004f1f4) + [!provide] PROVIDE (r_LM_GetFeature = 0x4002f924) + [!provide] PROVIDE (r_LM_GetLinkTimeout = 0x400233ec) + [!provide] PROVIDE (r_LM_GetLocalNameSeg = 0x4004f200) + [!provide] PROVIDE (r_lm_get_loopback_mode = 0x4004f248) + [!provide] PROVIDE (r_LM_GetMasterEncKeySize = 0x4001b29c) + [!provide] PROVIDE (r_LM_GetMasterEncRand = 0x4001b288) + [!provide] PROVIDE (r_LM_GetMasterKey = 0x4001b260) + [!provide] PROVIDE (r_LM_GetMasterKeyRand = 0x4001b274) + [!provide] PROVIDE (r_lm_get_min_sync_intv = 0x400517a8) + [!provide] PROVIDE (r_lm_get_nb_acl = 0x4004ef9c) + [!provide] PROVIDE (r_lm_get_nb_sync_link = 0x4005179c) + [!provide] PROVIDE (r_lm_get_nonce = 0x400131c4) + [!provide] PROVIDE (r_lm_get_oob_local_commit = 0x4004f374) + [!provide] PROVIDE (r_lm_get_oob_local_data_192 = 0x4004f2d4) + [!provide] PROVIDE (r_lm_get_oob_local_data_256 = 0x4004f318) + [!provide] PROVIDE (r_LM_GetPINType = 0x4004f1e8) + [!provide] PROVIDE (r_lm_get_priv_key_192 = 0x4004f278) + [!provide] PROVIDE (r_lm_get_priv_key_256 = 0x4004f2b8) + [!provide] PROVIDE (r_lm_get_pub_key_192 = 0x4004f258) + [!provide] PROVIDE (r_lm_get_pub_key_256 = 0x4004f298) + [!provide] PROVIDE (r_LM_GetQoSParam = 0x4002f6e0) + [!provide] PROVIDE (r_lm_get_sec_con_host_supp = 0x4004f1d4) + [!provide] PROVIDE (r_LM_GetSniffSubratingParam = 0x4002325c) + [!provide] PROVIDE (r_lm_get_sp_en = 0x4004f1c0) + [!provide] PROVIDE (r_LM_GetSwitchInstant = 0x4002f7f8) + [!provide] PROVIDE (r_lm_get_synchdl = 0x4005175c) + [!provide] PROVIDE (r_lm_get_sync_param = 0x400503b4) + [!provide] PROVIDE (r_lm_init = 0x4004ed34) + [!provide] PROVIDE (r_lm_init_sync = 0x400512d8) + [!provide] PROVIDE (r_lm_is_acl_con = 0x4004f47c) + [!provide] PROVIDE (r_lm_is_acl_con_role = 0x4004f49c) + [!provide] PROVIDE (r_lm_is_clk_adj_ack_pending = 0x4004f4e8) + [!provide] PROVIDE (r_lm_is_clk_adj_instant_pending = 0x4004f4c8) + [!provide] PROVIDE (r_lm_local_ext_fr_configured = 0x4004f540) + [!provide] PROVIDE (r_lm_look_for_stored_link_key = 0x4002f948) + [!provide] PROVIDE (r_lm_look_for_sync = 0x40051774) + [!provide] PROVIDE (r_lm_lt_addr_alloc = 0x4004ef1c) + [!provide] PROVIDE (r_lm_lt_addr_free = 0x4004ef74) + [!provide] PROVIDE (r_lm_lt_addr_reserve = 0x4004ef48) + [!provide] PROVIDE (r_LM_MakeCof = 0x4002f84c) + [!provide] PROVIDE (r_LM_MakeRandVec = 0x400112d8) + [!provide] PROVIDE (r_lm_master_clk_adj_req_handler = 0x40054180) + [!provide] PROVIDE (r_LM_MaxSlot = 0x4002f694) + [!provide] PROVIDE (r_lm_modif_sync = 0x40051578) + [!provide] PROVIDE (r_lm_n_is_zero = 0x40012170) + [!provide] PROVIDE (r_lm_num_clk_adj_ack_pending_set = 0x4004f500) + [!provide] PROVIDE (r_lm_oob_f1 = 0x40012e54) + [!provide] PROVIDE (r_lm_pca_sscan_link_get = 0x4004f560) + [!provide] PROVIDE (r_lm_pca_sscan_link_set = 0x4004f550) + [!provide] PROVIDE (nvds_null_read = 0x400542a0) + [!provide] PROVIDE (nvds_null_write = 0x400542a8) + [!provide] PROVIDE (nvds_null_erase = 0x400542b0) + [!provide] PROVIDE (nvds_read = 0x400542c4) + [!provide] PROVIDE (nvds_write = 0x400542fc) + [!provide] PROVIDE (nvds_erase = 0x40054334) + [!provide] PROVIDE (nvds_init_memory = 0x40054358) + [!provide] PROVIDE (r_lmp_pack = 0x4001135c) + [!provide] PROVIDE (r_lmp_unpack = 0x4001149c) + [!provide] PROVIDE (r_lm_read_features = 0x4004f0d8) + [!provide] PROVIDE (r_LM_RemoveSniff = 0x40023124) + [!provide] PROVIDE (r_LM_RemoveSniffSubrating = 0x400233c4) + [!provide] PROVIDE (r_lm_remove_sync = 0x400517c8) + [!provide] PROVIDE (r_lm_reset_sync = 0x40051304) + [!provide] PROVIDE (r_lm_role_switch_finished = 0x4004f028) + [!provide] PROVIDE (r_lm_role_switch_start = 0x4004efe0) + [!provide] PROVIDE (r_lm_sco_nego_end = 0x40051828) + [!provide] PROVIDE (r_LM_SniffSubrateNegoRequired = 0x40023334) + [!provide] PROVIDE (r_LM_SniffSubratingHlReq = 0x40023154) + [!provide] PROVIDE (r_LM_SniffSubratingPeerReq = 0x400231dc) + [!provide] PROVIDE (r_lm_sp_debug_mode_get = 0x4004f398) + [!provide] PROVIDE (r_lm_sp_n192_convert_wnaf = 0x400123c0) + [!provide] PROVIDE (r_lm_sp_n_one = 0x400123a4) + [!provide] PROVIDE (r_lm_sp_p192_add = 0x40012828) + [!provide] PROVIDE (r_lm_sp_p192_dbl = 0x4001268c) + [!provide] PROVIDE (r_lm_sp_p192_invert = 0x40012b6c) + [!provide] PROVIDE (r_lm_sp_p192_point_jacobian_to_affine = 0x40012468) + [!provide] PROVIDE (r_lm_sp_p192_points_jacobian_to_affine = 0x400124e4) + [!provide] PROVIDE (r_lm_sp_p192_point_to_inf = 0x40012458) + [!provide] PROVIDE (r_lm_sp_pre_compute_points = 0x40012640) + [!provide] PROVIDE (r_lm_sp_sha256_calculate = 0x400121a0) + [!provide] PROVIDE (r_LM_SuppressAclPacket = 0x4002f658) + [!provide] PROVIDE (r_lm_sync_flow_ctrl_en_get = 0x4004f404) + [!provide] PROVIDE (r_LM_UpdateAclEdrPacketType = 0x4002f5d8) + [!provide] PROVIDE (r_LM_UpdateAclPacketType = 0x4002f584) + [!provide] PROVIDE (r_modules_funcs = 0x3ffafd6c) + [!provide] PROVIDE (r_modules_funcs_p = 0x3ffafd68) + [!provide] PROVIDE (r_nvds_del = 0x400544c4) + [!provide] PROVIDE (r_nvds_get = 0x40054488) + [!provide] PROVIDE (r_nvds_init = 0x40054410) + [!provide] PROVIDE (r_nvds_lock = 0x400544fc) + [!provide] PROVIDE (r_nvds_put = 0x40054534) + [!provide] PROVIDE (rom_abs_temp = 0x400054f0) + [!provide] PROVIDE (rom_bb_bss_bw_40_en = 0x4000401c) + [!provide] PROVIDE (rom_bb_bss_cbw40_dig = 0x40003bac) + [!provide] PROVIDE (rom_bb_rx_ht20_cen_bcov_en = 0x40003734) + [!provide] PROVIDE (rom_bb_tx_ht20_cen = 0x40003760) + [!provide] PROVIDE (rom_bb_wdg_test_en = 0x40003b70) + [!provide] PROVIDE (rom_cbw2040_cfg = 0x400040b0) + [!provide] PROVIDE (rom_check_noise_floor = 0x40003c78) + [!provide] PROVIDE (rom_chip_i2c_readReg = 0x40004110) + [!provide] PROVIDE (rom_chip_i2c_writeReg = 0x40004168) + [!provide] PROVIDE (rom_chip_v7_bt_init = 0x40004d8c) + [!provide] PROVIDE (rom_chip_v7_rx_init = 0x40004cec) + [!provide] PROVIDE (rom_chip_v7_rx_rifs_en = 0x40003d90) + [!provide] PROVIDE (rom_chip_v7_tx_init = 0x40004d18) + [!provide] PROVIDE (rom_clk_force_on_vit = 0x40003710) + [!provide] PROVIDE (rom_correct_rf_ana_gain = 0x400062a8) + [!provide] PROVIDE (rom_dc_iq_est = 0x400055c8) + [!provide] PROVIDE (rom_disable_agc = 0x40002fa4) + [!provide] PROVIDE (rom_enable_agc = 0x40002fcc) + [!provide] PROVIDE (rom_en_pwdet = 0x4000506c) + [!provide] PROVIDE (rom_gen_rx_gain_table = 0x40003e3c) + [!provide] PROVIDE (rom_get_data_sat = 0x4000312c) + [!provide] PROVIDE (rom_get_fm_sar_dout = 0x40005204) + [!provide] PROVIDE (rom_get_power_db = 0x40005fc8) + [!provide] PROVIDE (rom_get_pwctrl_correct = 0x400065d4) + [!provide] PROVIDE (rom_get_rfcal_rxiq_data = 0x40005bbc) + [!provide] PROVIDE (rom_get_rf_gain_qdb = 0x40006290) + [!provide] PROVIDE (rom_get_sar_dout = 0x40006564) + [!provide] PROVIDE (rom_i2c_readReg = 0x40004148) + 0x00000000400041c0 PROVIDE (rom_i2c_readReg_Mask = 0x400041c0) + 0x00000000400041a4 PROVIDE (rom_i2c_writeReg = 0x400041a4) + 0x00000000400041fc PROVIDE (rom_i2c_writeReg_Mask = 0x400041fc) + [!provide] PROVIDE (rom_index_to_txbbgain = 0x40004df8) + [!provide] PROVIDE (rom_iq_est_disable = 0x40005590) + [!provide] PROVIDE (rom_iq_est_enable = 0x40005514) + [!provide] PROVIDE (rom_linear_to_db = 0x40005f64) + [!provide] PROVIDE (rom_loopback_mode_en = 0x400030f8) + [!provide] PROVIDE (rom_meas_tone_pwr_db = 0x40006004) + [!provide] PROVIDE (rom_mhz2ieee = 0x4000404c) + [!provide] PROVIDE (rom_noise_floor_auto_set = 0x40003bdc) + [!provide] PROVIDE (rom_pbus_debugmode = 0x40004458) + [!provide] PROVIDE (rom_pbus_force_mode = 0x40004270) + [!provide] PROVIDE (rom_pbus_force_test = 0x400043c0) + [!provide] PROVIDE (rom_pbus_rd = 0x40004414) + [!provide] PROVIDE (rom_pbus_rd_addr = 0x40004334) + [!provide] PROVIDE (rom_pbus_rd_shift = 0x40004374) + [!provide] PROVIDE (rom_pbus_rx_dco_cal = 0x40005620) + [!provide] PROVIDE (rom_pbus_set_dco = 0x40004638) + [!provide] PROVIDE (rom_pbus_set_rxgain = 0x40004480) + [!provide] PROVIDE (rom_pbus_workmode = 0x4000446c) + [!provide] PROVIDE (rom_pbus_xpd_rx_off = 0x40004508) + [!provide] PROVIDE (rom_pbus_xpd_rx_on = 0x4000453c) + [!provide] PROVIDE (rom_pbus_xpd_tx_off = 0x40004590) + [!provide] PROVIDE (rom_pbus_xpd_tx_on = 0x400045e0) + [!provide] PROVIDE (rom_phy_disable_agc = 0x40002f6c) + [!provide] PROVIDE (rom_phy_disable_cca = 0x40003000) + [!provide] PROVIDE (rom_phy_enable_agc = 0x40002f88) + [!provide] PROVIDE (rom_phy_enable_cca = 0x4000302c) + [!provide] PROVIDE (rom_phy_freq_correct = 0x40004b44) + [!provide] PROVIDE (rom_phyFuns = 0x3ffae0c0) + [!provide] PROVIDE (rom_phy_get_noisefloor = 0x40003c2c) + [!provide] PROVIDE (rom_phy_get_vdd33 = 0x4000642c) + [!provide] PROVIDE (rom_pow_usr = 0x40003044) + [!provide] PROVIDE (rom_read_sar_dout = 0x400051c0) + [!provide] PROVIDE (rom_restart_cal = 0x400046e0) + [!provide] PROVIDE (rom_rfcal_pwrctrl = 0x40006058) + [!provide] PROVIDE (rom_rfcal_rxiq = 0x40005b4c) + [!provide] PROVIDE (rom_rfcal_txcap = 0x40005dec) + [!provide] PROVIDE (rom_rfpll_reset = 0x40004680) + [!provide] PROVIDE (rom_rfpll_set_freq = 0x400047f8) + [!provide] PROVIDE (rom_rtc_mem_backup = 0x40003db4) + [!provide] PROVIDE (rom_rtc_mem_recovery = 0x40003df4) + [!provide] PROVIDE (rom_rx_gain_force = 0x4000351c) + [!provide] PROVIDE (rom_rxiq_cover_mg_mp = 0x40005a68) + [!provide] PROVIDE (rom_rxiq_get_mis = 0x400058e4) + [!provide] PROVIDE (rom_rxiq_set_reg = 0x40005a00) + [!provide] PROVIDE (rom_set_cal_rxdc = 0x400030b8) + [!provide] PROVIDE (rom_set_chan_cal_interp = 0x40005ce0) + [!provide] PROVIDE (rom_set_channel_freq = 0x40004880) + [!provide] PROVIDE (rom_set_loopback_gain = 0x40003060) + [!provide] PROVIDE (rom_set_noise_floor = 0x40003d48) + [!provide] PROVIDE (rom_set_pbus_mem = 0x400031a4) + [!provide] PROVIDE (rom_set_rf_freq_offset = 0x40004ca8) + [!provide] PROVIDE (rom_set_rxclk_en = 0x40003594) + [!provide] PROVIDE (rom_set_txcap_reg = 0x40005d50) + [!provide] PROVIDE (rom_set_txclk_en = 0x40003564) + [!provide] PROVIDE (rom_spur_coef_cfg = 0x40003ac8) + [!provide] PROVIDE (rom_spur_reg_write_one_tone = 0x400037f0) + [!provide] PROVIDE (rom_start_tx_tone = 0x400036b4) + [!provide] PROVIDE (rom_start_tx_tone_step = 0x400035d0) + [!provide] PROVIDE (rom_stop_tx_tone = 0x40003f98) + [!provide] PROVIDE (_rom_store = 0x4000d66c) + [!provide] PROVIDE (_rom_store_table = 0x4000d4f8) + [!provide] PROVIDE (rom_target_power_add_backoff = 0x40006268) + [!provide] PROVIDE (rom_tx_atten_set_interp = 0x400061cc) + [!provide] PROVIDE (rom_txbbgain_to_index = 0x40004dc0) + [!provide] PROVIDE (rom_txcal_work_mode = 0x4000510c) + [!provide] PROVIDE (rom_txdc_cal_init = 0x40004e10) + [!provide] PROVIDE (rom_txdc_cal_v70 = 0x40004ea4) + [!provide] PROVIDE (rom_txiq_cover = 0x4000538c) + [!provide] PROVIDE (rom_txiq_get_mis_pwr = 0x400052dc) + [!provide] PROVIDE (rom_txiq_set_reg = 0x40005154) + [!provide] PROVIDE (rom_tx_pwctrl_bg_init = 0x4000662c) + [!provide] PROVIDE (rom_txtone_linear_pwr = 0x40005290) + [!provide] PROVIDE (rom_wait_rfpll_cal_end = 0x400047a8) + [!provide] PROVIDE (rom_write_gain_mem = 0x4000348c) + [!provide] PROVIDE (rom_write_rfpll_sdm = 0x40004740) + 0x000000004000ab7c PROVIDE (roundup2 = 0x4000ab7c) + [!provide] PROVIDE (r_plf_funcs_p = 0x3ffb8360) + [!provide] PROVIDE (r_rf_rw_bt_init = 0x40054868) + [!provide] PROVIDE (r_rf_rw_init = 0x40054b0c) + [!provide] PROVIDE (r_rf_rw_le_init = 0x400549d0) + [!provide] PROVIDE (r_rwble_activity_ongoing_check = 0x40054d8c) + [!provide] PROVIDE (r_rwble_init = 0x40054bf4) + [!provide] PROVIDE (r_rwble_isr = 0x40054e08) + [!provide] PROVIDE (r_rwble_reset = 0x40054ce8) + [!provide] PROVIDE (r_rwble_sleep_check = 0x40054d78) + [!provide] PROVIDE (r_rwble_version = 0x40054dac) + [!provide] PROVIDE (r_rwbt_init = 0x40055160) + [!provide] PROVIDE (r_rwbt_isr = 0x40055248) + [!provide] PROVIDE (r_rwbt_reset = 0x400551bc) + [!provide] PROVIDE (r_rwbt_sleep_check = 0x4005577c) + [!provide] PROVIDE (r_rwbt_sleep_enter = 0x400557a4) + [!provide] PROVIDE (r_rwbt_sleep_wakeup = 0x400557fc) + [!provide] PROVIDE (r_rwbt_sleep_wakeup_end = 0x400558cc) + [!provide] PROVIDE (r_rwbt_version = 0x4005520c) + [!provide] PROVIDE (r_rwip_assert_err = 0x40055f88) + [!provide] PROVIDE (r_rwip_check_wakeup_boundary = 0x400558fc) + [!provide] PROVIDE (r_rwip_ext_wakeup_enable = 0x40055f3c) + [!provide] PROVIDE (r_rwip_init = 0x4005595c) + [!provide] PROVIDE (r_rwip_pca_clock_dragging_only = 0x40055f48) + [!provide] PROVIDE (r_rwip_prevent_sleep_clear = 0x40055ec8) + [!provide] PROVIDE (r_rwip_prevent_sleep_set = 0x40055e64) + [!provide] PROVIDE (r_rwip_reset = 0x40055ab8) + [!provide] PROVIDE (r_rwip_schedule = 0x40055b38) + [!provide] PROVIDE (r_rwip_sleep = 0x40055b5c) + [!provide] PROVIDE (r_rwip_sleep_enable = 0x40055f30) + [!provide] PROVIDE (r_rwip_version = 0x40055b20) + [!provide] PROVIDE (r_rwip_wakeup = 0x40055dc4) + [!provide] PROVIDE (r_rwip_wakeup_delay_set = 0x40055e4c) + [!provide] PROVIDE (r_rwip_wakeup_end = 0x40055e18) + [!provide] PROVIDE (r_rwip_wlcoex_set = 0x40055f60) + [!provide] PROVIDE (r_SHA_256 = 0x40013a90) + [!provide] PROVIDE (rwip_coex_cfg = 0x3ff9914c) + [!provide] PROVIDE (rwip_priority = 0x3ff99159) + [!provide] PROVIDE (rwip_rf = 0x3ffbdb28) + [!provide] PROVIDE (rwip_rf_p_get = 0x400558f4) + [!provide] PROVIDE (r_XorKey = 0x400112c0) + [!provide] PROVIDE (sha_blk_bits = 0x3ff99290) + [!provide] PROVIDE (sha_blk_bits_bytes = 0x3ff99288) + [!provide] PROVIDE (sha_blk_hash_bytes = 0x3ff9928c) + [!provide] PROVIDE (sig_matrix = 0x3ffae293) + [!provide] PROVIDE (sip_after_tx_complete = 0x4000b358) + [!provide] PROVIDE (sip_alloc_to_host_evt = 0x4000ab9c) + [!provide] PROVIDE (sip_get_ptr = 0x4000b34c) + [!provide] PROVIDE (sip_get_state = 0x4000ae2c) + [!provide] PROVIDE (sip_init_attach = 0x4000ae58) + [!provide] PROVIDE (sip_install_rx_ctrl_cb = 0x4000ae10) + [!provide] PROVIDE (sip_install_rx_data_cb = 0x4000ae20) + [!provide] PROVIDE (sip_is_active = 0x4000b3c0) + [!provide] PROVIDE (sip_post_init = 0x4000aed8) + [!provide] PROVIDE (sip_reclaim_from_host_cmd = 0x4000adbc) + [!provide] PROVIDE (sip_reclaim_tx_data_pkt = 0x4000ad5c) + [!provide] PROVIDE (sip_send = 0x4000af54) + [!provide] PROVIDE (sip_to_host_chain_append = 0x4000aef8) + [!provide] PROVIDE (sip_to_host_evt_send_done = 0x4000ac04) + [!provide] PROVIDE (slc_add_credits = 0x4000baf4) + [!provide] PROVIDE (slc_enable = 0x4000b64c) + [!provide] PROVIDE (slc_from_host_chain_fetch = 0x4000b7e8) + [!provide] PROVIDE (slc_from_host_chain_recycle = 0x4000bb10) + [!provide] PROVIDE (slc_has_pkt_to_host = 0x4000b5fc) + [!provide] PROVIDE (slc_init_attach = 0x4000b918) + [!provide] PROVIDE (slc_init_credit = 0x4000badc) + [!provide] PROVIDE (slc_reattach = 0x4000b62c) + [!provide] PROVIDE (slc_send_to_host_chain = 0x4000b6a0) + [!provide] PROVIDE (slc_set_host_io_max_window = 0x4000b89c) + [!provide] PROVIDE (slc_to_host_chain_recycle = 0x4000b758) + [!provide] PROVIDE (specialModP256 = 0x4001600c) + [!provide] PROVIDE (__stack = 0x3ffe3f20) + [!provide] PROVIDE (__stack_app = 0x3ffe7e30) + [!provide] PROVIDE (_stack_sentry = 0x3ffe1320) + [!provide] PROVIDE (_stack_sentry_app = 0x3ffe5230) + [!provide] PROVIDE (_start = 0x40000704) + [!provide] PROVIDE (start_tb_console = 0x4005a980) + [!provide] PROVIDE (_stat_r = 0x4000bcb4) + [!provide] PROVIDE (_stext = 0x40000560) + [!provide] PROVIDE (SubtractBigHex256 = 0x40015bcc) + [!provide] PROVIDE (SubtractBigHexMod256 = 0x40015e8c) + [!provide] PROVIDE (SubtractBigHexUint32_256 = 0x40015f8c) + [!provide] PROVIDE (SubtractFromSelfBigHex256 = 0x40015c20) + [!provide] PROVIDE (SubtractFromSelfBigHexSign256 = 0x40015dc8) + [!provide] PROVIDE (sw_to_hw = 0x3ffb8d40) + 0x000000003ffae020 PROVIDE (syscall_table_ptr_app = 0x3ffae020) + 0x000000003ffae024 PROVIDE (syscall_table_ptr_pro = 0x3ffae024) + [!provide] PROVIDE (tdefl_compress = 0x400600bc) + [!provide] PROVIDE (tdefl_compress_buffer = 0x400607f4) + [!provide] PROVIDE (tdefl_compress_mem_to_mem = 0x40060900) + [!provide] PROVIDE (tdefl_compress_mem_to_output = 0x400608e0) + [!provide] PROVIDE (tdefl_get_adler32 = 0x400608d8) + [!provide] PROVIDE (tdefl_get_prev_return_status = 0x400608d0) + [!provide] PROVIDE (tdefl_init = 0x40060810) + [!provide] PROVIDE (tdefl_write_image_to_png_file_in_memory = 0x4006091c) + [!provide] PROVIDE (tdefl_write_image_to_png_file_in_memory_ex = 0x40060910) + [!provide] PROVIDE (tinfl_decompress = 0x4005ef30) + [!provide] PROVIDE (tinfl_decompress_mem_to_callback = 0x40060090) + [!provide] PROVIDE (tinfl_decompress_mem_to_mem = 0x40060050) + [!provide] PROVIDE (UartDev = 0x3ffe019c) + [!provide] PROVIDE (user_code_start = 0x3ffe0400) + [!provide] PROVIDE (veryBigHexP256 = 0x3ff9736c) + [!provide] PROVIDE (xthal_bcopy = 0x4000c098) + [!provide] PROVIDE (xthal_copy123 = 0x4000c124) + [!provide] PROVIDE (xthal_get_ccompare = 0x4000c078) + [!provide] PROVIDE (xthal_get_ccount = 0x4000c050) + [!provide] PROVIDE (xthal_get_interrupt = 0x4000c1e4) + [!provide] PROVIDE (xthal_get_intread = 0x4000c1e4) + [!provide] PROVIDE (Xthal_intlevel = 0x3ff9c2b4) + [!provide] PROVIDE (xthal_memcpy = 0x4000c0bc) + [!provide] PROVIDE (xthal_set_ccompare = 0x4000c058) + [!provide] PROVIDE (xthal_set_intclear = 0x4000c1ec) + 0x000000004000bfdc PROVIDE (_xtos_set_intlevel = 0x4000bfdc) + 0x000000003ffe01e0 PROVIDE (g_ticks_per_us_pro = 0x3ffe01e0) + 0x000000003ffe40f0 PROVIDE (g_ticks_per_us_app = 0x3ffe40f0) + [!provide] PROVIDE (esp_rom_spiflash_config_param = 0x40063238) + 0x00000000400621b0 PROVIDE (esp_rom_spiflash_read_user_cmd = 0x400621b0) + 0x0000000040062e60 PROVIDE (esp_rom_spiflash_write_encrypted_disable = 0x40062e60) + 0x0000000040062df4 PROVIDE (esp_rom_spiflash_write_encrypted_enable = 0x40062df4) + 0x0000000040062e1c PROVIDE (esp_rom_spiflash_prepare_encrypted_data = 0x40062e1c) + 0x0000000040061ddc PROVIDE (esp_rom_spiflash_select_qio_pins = 0x40061ddc) + [!provide] PROVIDE (esp_rom_spiflash_attach = 0x40062a6c) + 0x0000000040062bc8 PROVIDE (esp_rom_spiflash_config_clk = 0x40062bc8) + 0x000000003ffae270 PROVIDE (g_rom_spiflash_chip = 0x3ffae270) + [!provide] PROVIDE (hci_le_rd_rem_used_feats_cmd_handler = 0x400417b4) + [!provide] PROVIDE (llcp_length_req_handler = 0x40043808) + [!provide] PROVIDE (llcp_unknown_rsp_handler = 0x40043ba8) + [!provide] PROVIDE (FilePacketSendDeflatedReqMsgProc = 0x40008b24) + [!provide] PROVIDE (FilePacketSendReqMsgProc = 0x40008860) + [!provide] PROVIDE (FlashDwnLdDeflatedStartMsgProc = 0x40008ad8) + [!provide] PROVIDE (FlashDwnLdParamCfgMsgProc = 0x4000891c) + [!provide] PROVIDE (FlashDwnLdStartMsgProc = 0x40008820) + [!provide] PROVIDE (FlashDwnLdStopDeflatedReqMsgProc = 0x40008c18) + [!provide] PROVIDE (FlashDwnLdStopReqMsgProc = 0x400088ec) + [!provide] PROVIDE (MemDwnLdStartMsgProc = 0x40008948) + [!provide] PROVIDE (MemDwnLdStopReqMsgProc = 0x400089dc) + [!provide] PROVIDE (MemPacketSendReqMsgProc = 0x40008978) + [!provide] PROVIDE (uart_baudrate_detect = 0x40009034) + [!provide] PROVIDE (uart_buff_switch = 0x400093c0) + [!provide] PROVIDE (UartConnCheck = 0x40008738) + [!provide] PROVIDE (UartConnectProc = 0x40008a04) + [!provide] PROVIDE (UartDwnLdProc = 0x40008ce8) + [!provide] PROVIDE (UartRegReadProc = 0x40008a58) + [!provide] PROVIDE (UartRegWriteProc = 0x40008a14) + [!provide] PROVIDE (UartSetBaudProc = 0x40008aac) + [!provide] PROVIDE (UartSpiAttachProc = 0x40008a6c) + [!provide] PROVIDE (UartSpiReadProc = 0x40008a80) + [!provide] PROVIDE (VerifyFlashMd5Proc = 0x40008c44) + [!provide] PROVIDE (GetUartDevice = 0x40009598) + [!provide] PROVIDE (RcvMsg = 0x4000954c) + [!provide] PROVIDE (SendMsg = 0x40009384) + [!provide] PROVIDE (UartGetCmdLn = 0x40009564) + [!provide] PROVIDE (UartRxString = 0x400092fc) + [!provide] PROVIDE (Uart_Init = 0x40009120) + [!provide] PROVIDE (recv_packet = 0x40009424) + [!provide] PROVIDE (send_packet = 0x40009340) + 0x0000000040008fd0 PROVIDE (uartAttach = 0x40008fd0) + 0x00000000400090cc PROVIDE (uart_div_modify = 0x400090cc) + [!provide] PROVIDE (uart_rx_intr_handler = 0x40008f4c) + [!provide] PROVIDE (uart_rx_one_char = 0x400092d0) + [!provide] PROVIDE (uart_rx_one_char_block = 0x400092a4) + [!provide] PROVIDE (uart_rx_readbuff = 0x40009394) + [!provide] PROVIDE (uart_tx_flush = 0x40009258) + [!provide] PROVIDE (uart_tx_one_char = 0x40009200) + [!provide] PROVIDE (uart_tx_one_char2 = 0x4000922c) + 0x0000000040009028 PROVIDE (uart_tx_switch = 0x40009028) + 0x0000000040009b24 PROVIDE (gpio_output_set = 0x40009b24) + 0x0000000040009b5c PROVIDE (gpio_output_set_high = 0x40009b5c) + 0x0000000040009b88 PROVIDE (gpio_input_get = 0x40009b88) + 0x0000000040009b9c PROVIDE (gpio_input_get_high = 0x40009b9c) + 0x0000000040009edc PROVIDE (gpio_matrix_in = 0x40009edc) + 0x0000000040009f0c PROVIDE (gpio_matrix_out = 0x40009f0c) + 0x0000000040009fdc PROVIDE (gpio_pad_select_gpio = 0x40009fdc) + [!provide] PROVIDE (gpio_pad_set_drv = 0x4000a11c) + [!provide] PROVIDE (gpio_pad_pulldown = 0x4000a348) + 0x000000004000a22c PROVIDE (gpio_pad_pullup = 0x4000a22c) + [!provide] PROVIDE (gpio_pad_hold = 0x4000a734) + [!provide] PROVIDE (gpio_pad_unhold = 0x4000a484) + [!provide] PROVIDE (ets_aes_crypt = 0x4005c9b8) + [!provide] PROVIDE (ets_aes_disable = 0x4005c8f8) + [!provide] PROVIDE (ets_aes_enable = 0x4005c8cc) + [!provide] PROVIDE (ets_aes_set_endian = 0x4005c928) + [!provide] PROVIDE (ets_aes_setkey_dec = 0x4005c994) + [!provide] PROVIDE (ets_aes_setkey_enc = 0x4005c97c) + [!provide] PROVIDE (ets_bigint_disable = 0x4005c4e0) + [!provide] PROVIDE (ets_bigint_enable = 0x4005c498) + [!provide] PROVIDE (ets_bigint_mod_mult_getz = 0x4005c818) + [!provide] PROVIDE (ets_bigint_mod_mult_prepare = 0x4005c7b4) + [!provide] PROVIDE (ets_bigint_mod_power_getz = 0x4005c614) + [!provide] PROVIDE (ets_bigint_mod_power_prepare = 0x4005c54c) + [!provide] PROVIDE (ets_bigint_montgomery_mult_getz = 0x4005c7a4) + [!provide] PROVIDE (ets_bigint_montgomery_mult_prepare = 0x4005c6fc) + [!provide] PROVIDE (ets_bigint_mult_getz = 0x4005c6e8) + [!provide] PROVIDE (ets_bigint_mult_prepare = 0x4005c630) + [!provide] PROVIDE (ets_bigint_wait_finish = 0x4005c520) + [!provide] PROVIDE (ets_post = 0x4000673c) + [!provide] PROVIDE (ets_run = 0x400066bc) + [!provide] PROVIDE (ets_set_idle_cb = 0x40006674) + [!provide] PROVIDE (ets_task = 0x40006688) + [!provide] PROVIDE (ets_efuse_get_8M_clock = 0x40008710) + 0x0000000040008658 PROVIDE (ets_efuse_get_spiconfig = 0x40008658) + [!provide] PROVIDE (ets_efuse_program_op = 0x40008628) + [!provide] PROVIDE (ets_efuse_read_op = 0x40008600) + [!provide] PROVIDE (ets_intr_lock = 0x400067b0) + [!provide] PROVIDE (ets_intr_unlock = 0x400067c4) + [!provide] PROVIDE (ets_isr_attach = 0x400067ec) + [!provide] PROVIDE (ets_waiti0 = 0x400067d8) + 0x000000004000681c PROVIDE (intr_matrix_set = 0x4000681c) + [!provide] PROVIDE (check_pos = 0x400068b8) + 0x000000004000689c PROVIDE (ets_set_appcpu_boot_addr = 0x4000689c) + [!provide] PROVIDE (ets_set_startup_callback = 0x4000688c) + [!provide] PROVIDE (ets_set_user_start = 0x4000687c) + [!provide] PROVIDE (ets_unpack_flash_code = 0x40007018) + [!provide] PROVIDE (ets_unpack_flash_code_legacy = 0x4000694c) + [!provide] PROVIDE (rom_main = 0x400076c4) + [!provide] PROVIDE (ets_write_char_uart = 0x40007cf8) + [!provide] PROVIDE (ets_install_putc1 = 0x40007d18) + [!provide] PROVIDE (ets_install_putc2 = 0x40007d38) + 0x0000000040007d28 PROVIDE (ets_install_uart_printf = 0x40007d28) + 0x0000000040007d54 PROVIDE (ets_printf = 0x40007d54) + [!provide] PROVIDE (rtc_boot_control = 0x4000821c) + 0x00000000400081d4 PROVIDE (rtc_get_reset_reason = 0x400081d4) + [!provide] PROVIDE (rtc_get_wakeup_cause = 0x400081f4) + [!provide] PROVIDE (rtc_select_apb_bridge = 0x40008288) + 0x0000000040008208 PROVIDE (set_rtc_memory_crc = 0x40008208) + [!provide] PROVIDE (software_reset = 0x4000824c) + [!provide] PROVIDE (software_reset_cpu = 0x40008264) + [!provide] PROVIDE (ets_secure_boot_check = 0x4005cb40) + [!provide] PROVIDE (ets_secure_boot_check_finish = 0x4005cc04) + [!provide] PROVIDE (ets_secure_boot_check_start = 0x4005cbcc) + [!provide] PROVIDE (ets_secure_boot_finish = 0x4005ca84) + [!provide] PROVIDE (ets_secure_boot_hash = 0x4005cad4) + [!provide] PROVIDE (ets_secure_boot_obtain = 0x4005cb14) + [!provide] PROVIDE (ets_secure_boot_rd_abstract = 0x4005cba8) + [!provide] PROVIDE (ets_secure_boot_rd_iv = 0x4005cb84) + [!provide] PROVIDE (ets_secure_boot_start = 0x4005ca34) + [!provide] PROVIDE (ets_sha_disable = 0x4005c0a8) + [!provide] PROVIDE (ets_sha_enable = 0x4005c07c) + [!provide] PROVIDE (ets_sha_finish = 0x4005c104) + [!provide] PROVIDE (ets_sha_init = 0x4005c0d4) + [!provide] PROVIDE (ets_sha_update = 0x4005c2a0) + 0x0000000040008534 PROVIDE (ets_delay_us = 0x40008534) + [!provide] PROVIDE (ets_get_cpu_frequency = 0x4000855c) + 0x0000000040008588 PROVIDE (ets_get_detected_xtal_freq = 0x40008588) + [!provide] PROVIDE (ets_get_xtal_scale = 0x4000856c) + 0x0000000040008550 PROVIDE (ets_update_cpu_frequency_rom = 0x40008550) + [!provide] PROVIDE (hci_tl_env = 0x3ffb8154) + [!provide] PROVIDE (ld_acl_env = 0x3ffb8258) + [!provide] PROVIDE (ea_env = 0x3ffb80ec) + [!provide] PROVIDE (lc_sco_data_path_config = 0x3ffb81f8) + [!provide] PROVIDE (lc_sco_env = 0x3ffb81fc) + [!provide] PROVIDE (ld_active_ch_map = 0x3ffb8334) + [!provide] PROVIDE (ld_bcst_acl_env = 0x3ffb8274) + [!provide] PROVIDE (ld_csb_rx_env = 0x3ffb8278) + [!provide] PROVIDE (ld_csb_tx_env = 0x3ffb827c) + [!provide] PROVIDE (ld_env = 0x3ffb9510) + [!provide] PROVIDE (ld_fm_env = 0x3ffb8284) + [!provide] PROVIDE (ld_inq_env = 0x3ffb82e4) + [!provide] PROVIDE (ld_iscan_env = 0x3ffb82e8) + [!provide] PROVIDE (ld_page_env = 0x3ffb82f0) + [!provide] PROVIDE (ld_pca_env = 0x3ffb82f4) + [!provide] PROVIDE (ld_pscan_env = 0x3ffb8308) + [!provide] PROVIDE (ld_sched_env = 0x3ffb830c) + [!provide] PROVIDE (ld_sched_params = 0x3ffb96c0) + [!provide] PROVIDE (ld_sco_env = 0x3ffb824c) + [!provide] PROVIDE (ld_sscan_env = 0x3ffb832c) + [!provide] PROVIDE (ld_strain_env = 0x3ffb8330) + [!provide] PROVIDE (LM_Sniff = 0x3ffb8230) + [!provide] PROVIDE (LM_SniffSubRate = 0x3ffb8214) + [!provide] PROVIDE (prbs_64bytes = 0x3ff98992) + [!provide] PROVIDE (nvds_env = 0x3ffb8364) + [!provide] PROVIDE (nvds_magic_number = 0x3ff9912a) + [!provide] PROVIDE (TASK_DESC_LLD = 0x3ff98b58) + 0x000000004006387c __absvdi2 = 0x4006387c + 0x0000000040063868 __absvsi2 = 0x40063868 + 0x0000000040002590 __adddf3 = 0x40002590 + 0x00000000400020e8 __addsf3 = 0x400020e8 + 0x0000000040002cbc __addvdi3 = 0x40002cbc + 0x0000000040002c98 __addvsi3 = 0x40002c98 + 0x000000004000c818 __ashldi3 = 0x4000c818 + 0x000000004000c830 __ashrdi3 = 0x4000c830 + 0x0000000040064b08 __bswapdi2 = 0x40064b08 + 0x0000000040064ae0 __bswapsi2 = 0x40064ae0 + 0x0000000040064b7c __clrsbdi2 = 0x40064b7c + 0x0000000040064b64 __clrsbsi2 = 0x40064b64 + 0x000000004000ca50 __clzdi2 = 0x4000ca50 + 0x000000004000c7e8 __clzsi2 = 0x4000c7e8 + 0x0000000040063820 __cmpdi2 = 0x40063820 + 0x000000004000ca64 __ctzdi2 = 0x4000ca64 + 0x000000004000c7f0 __ctzsi2 = 0x4000c7f0 + 0x00000000400645a4 __divdc3 = 0x400645a4 + 0x0000000040002954 __divdf3 = 0x40002954 + 0x000000004000ca84 __divdi3 = 0x4000ca84 + 0x000000004000c7b8 __divsi3 = 0x4000c7b8 + 0x00000000400636a8 __eqdf2 = 0x400636a8 + 0x0000000040063374 __eqsf2 = 0x40063374 + 0x0000000040002c34 __extendsfdf2 = 0x40002c34 + 0x000000004000ca2c __ffsdi2 = 0x4000ca2c + 0x000000004000c804 __ffssi2 = 0x4000c804 + 0x0000000040002ac4 __fixdfdi = 0x40002ac4 + 0x0000000040002a78 __fixdfsi = 0x40002a78 + 0x000000004000244c __fixsfdi = 0x4000244c + 0x000000004000240c __fixsfsi = 0x4000240c + 0x0000000040002b30 __fixunsdfsi = 0x40002b30 + 0x0000000040002504 __fixunssfdi = 0x40002504 + 0x00000000400024ac __fixunssfsi = 0x400024ac + 0x000000004000c988 __floatdidf = 0x4000c988 + 0x000000004000c8c0 __floatdisf = 0x4000c8c0 + 0x000000004000c944 __floatsidf = 0x4000c944 + 0x000000004000c870 __floatsisf = 0x4000c870 + 0x000000004000c978 __floatundidf = 0x4000c978 + 0x000000004000c8b0 __floatundisf = 0x4000c8b0 + 0x000000004000c938 __floatunsidf = 0x4000c938 + 0x000000004000c864 __floatunsisf = 0x4000c864 + 0x0000000040064a70 __gcc_bcmp = 0x40064a70 + 0x0000000040063768 __gedf2 = 0x40063768 + 0x000000004006340c __gesf2 = 0x4006340c + 0x00000000400636dc __gtdf2 = 0x400636dc + 0x00000000400633a0 __gtsf2 = 0x400633a0 + 0x0000000040063704 __ledf2 = 0x40063704 + 0x00000000400633c0 __lesf2 = 0x400633c0 + 0x000000004000c84c __lshrdi3 = 0x4000c84c + 0x0000000040063790 __ltdf2 = 0x40063790 + 0x000000004006342c __ltsf2 = 0x4006342c + 0x000000004000cd4c __moddi3 = 0x4000cd4c + 0x000000004000c7c0 __modsi3 = 0x4000c7c0 + 0x0000000040063c90 __muldc3 = 0x40063c90 + 0x000000004006358c __muldf3 = 0x4006358c + 0x000000004000c9fc __muldi3 = 0x4000c9fc + 0x00000000400632c8 __mulsf3 = 0x400632c8 + 0x000000004000c7b0 __mulsi3 = 0x4000c7b0 + 0x0000000040002d78 __mulvdi3 = 0x40002d78 + 0x0000000040002d60 __mulvsi3 = 0x40002d60 + 0x00000000400636a8 __nedf2 = 0x400636a8 + 0x00000000400634a0 __negdf2 = 0x400634a0 + 0x000000004000ca14 __negdi2 = 0x4000ca14 + 0x00000000400020c0 __negsf2 = 0x400020c0 + 0x0000000040002e98 __negvdi2 = 0x40002e98 + 0x0000000040002e78 __negvsi2 = 0x40002e78 + 0x0000000040063374 __nesf2 = 0x40063374 + 0x000000003ff96544 __nsau_data = 0x3ff96544 + 0x0000000040002f3c __paritysi2 = 0x40002f3c + 0x000000003ff96544 __popcount_tab = 0x3ff96544 + 0x0000000040002ef8 __popcountdi2 = 0x40002ef8 + 0x0000000040002ed0 __popcountsi2 = 0x40002ed0 + 0x00000000400638e4 __powidf2 = 0x400638e4 + 0x00000000400026e4 __subdf3 = 0x400026e4 + 0x00000000400021d0 __subsf3 = 0x400021d0 + 0x0000000040002d20 __subvdi3 = 0x40002d20 + 0x0000000040002cf8 __subvsi3 = 0x40002cf8 + 0x0000000040002b90 __truncdfsf2 = 0x40002b90 + 0x0000000040063840 __ucmpdi2 = 0x40063840 + 0x0000000040064bec __udiv_w_sdiv = 0x40064bec + 0x000000004000cff8 __udivdi3 = 0x4000cff8 + 0x0000000040064bf4 __udivmoddi4 = 0x40064bf4 + 0x000000004000c7c8 __udivsi3 = 0x4000c7c8 + 0x000000004000d280 __umoddi3 = 0x4000d280 + 0x000000004000c7d0 __umodsi3 = 0x4000c7d0 + 0x000000004000c7d8 __umulsidi3 = 0x4000c7d8 + 0x00000000400637f4 __unorddf2 = 0x400637f4 + 0x0000000040063478 __unordsf2 = 0x40063478 + 0x000000003ff96354 _ctype_ = 0x3ff96354 + 0x000000003ff96350 __ctype_ptr__ = 0x3ff96350 + 0x000000003ffae0a4 _daylight = 0x3ffae0a4 + 0x000000003ffae0b4 environ = 0x3ffae0b4 + 0x000000003ffae0b0 _global_impure_ptr = 0x3ffae0b0 + 0x000000003ff96530 __mb_cur_max = 0x3ff96530 + 0x000000003ff9609c __month_lengths = 0x3ff9609c + 0x000000003ff96458 __sf_fake_stderr = 0x3ff96458 + 0x000000003ff96498 __sf_fake_stdin = 0x3ff96498 + 0x000000003ff96478 __sf_fake_stdout = 0x3ff96478 + 0x000000003ffae0a0 _timezone = 0x3ffae0a0 + 0x000000003ffae030 _tzname = 0x3ffae030 + 0x000000003ff96540 __wctomb = 0x3ff96540 + 0x0000000040001778 close = 0x40001778 + 0x000000004000178c open = 0x4000178c + 0x00000000400017dc read = 0x400017dc + 0x00000000400017f4 sbrk = 0x400017f4 + 0x0000000040001808 times = 0x40001808 + 0x000000004000181c write = 0x4000181c + 0x0000000040056340 abs = 0x40056340 + 0x0000000040058ef0 __ascii_wctomb = 0x40058ef0 + 0x00000000400566c4 atoi = 0x400566c4 + 0x00000000400566d4 _atoi_r = 0x400566d4 + 0x00000000400566ec atol = 0x400566ec + 0x00000000400566fc _atol_r = 0x400566fc + 0x000000004000c1f4 bzero = 0x4000c1f4 + 0x0000000040001df8 _cleanup = 0x40001df8 + 0x0000000040001d48 _cleanup_r = 0x40001d48 + 0x0000000040000e8c creat = 0x40000e8c + 0x0000000040056348 div = 0x40056348 + 0x000000004000c728 __dummy_lock = 0x4000c728 + 0x000000004000c730 __dummy_lock_try = 0x4000c730 + 0x0000000040001fd4 __env_lock = 0x40001fd4 + 0x0000000040001fe0 __env_unlock = 0x40001fe0 + 0x00000000400020ac fclose = 0x400020ac + 0x0000000040001fec _fclose_r = 0x40001fec + 0x0000000040059394 fflush = 0x40059394 + 0x0000000040059320 _fflush_r = 0x40059320 + 0x0000000040001f44 _findenv_r = 0x40001f44 + 0x0000000040001f1c __fp_lock_all = 0x40001f1c + 0x0000000040001f30 __fp_unlock_all = 0x40001f30 + 0x0000000040058da0 __fputwc = 0x40058da0 + 0x0000000040058ea8 fputwc = 0x40058ea8 + 0x0000000040058e4c _fputwc_r = 0x40058e4c + 0x000000004000c738 _fwalk = 0x4000c738 + 0x000000004000c770 _fwalk_reent = 0x4000c770 + 0x0000000040001fbc _getenv_r = 0x40001fbc + 0x0000000040000f04 isalnum = 0x40000f04 + 0x0000000040000f18 isalpha = 0x40000f18 + 0x000000004000c20c isascii = 0x4000c20c + 0x0000000040000ea0 _isatty_r = 0x40000ea0 + 0x0000000040000f2c isblank = 0x40000f2c + 0x0000000040000f50 iscntrl = 0x40000f50 + 0x0000000040000f64 isdigit = 0x40000f64 + 0x0000000040000f94 isgraph = 0x40000f94 + 0x0000000040000f78 islower = 0x40000f78 + 0x0000000040000fa8 isprint = 0x40000fa8 + 0x0000000040000fc0 ispunct = 0x40000fc0 + 0x0000000040000fd4 isspace = 0x40000fd4 + 0x0000000040000fe8 isupper = 0x40000fe8 + 0x0000000040056678 __itoa = 0x40056678 + 0x00000000400566b4 itoa = 0x400566b4 + 0x0000000040056370 labs = 0x40056370 + 0x0000000040056378 ldiv = 0x40056378 + 0x00000000400562cc longjmp = 0x400562cc + 0x000000004000c220 memccpy = 0x4000c220 + 0x000000004000c244 memchr = 0x4000c244 + 0x000000004000c260 memcmp = 0x4000c260 + 0x000000004000c2c8 memcpy = 0x4000c2c8 + 0x000000004000c3c0 memmove = 0x4000c3c0 + 0x000000004000c400 memrchr = 0x4000c400 + 0x000000004000c44c memset = 0x4000c44c + 0x0000000040056424 qsort = 0x40056424 + 0x0000000040001058 rand = 0x40001058 + 0x00000000400010d4 rand_r = 0x400010d4 + 0x000000004000c498 __sccl = 0x4000c498 + 0x00000000400011b8 __sclose = 0x400011b8 + 0x0000000040001148 __seofread = 0x40001148 + 0x0000000040056268 setjmp = 0x40056268 + 0x00000000400591e0 __sflush_r = 0x400591e0 + 0x0000000040001dc8 __sfmoreglue = 0x40001dc8 + 0x0000000040001e90 __sfp = 0x40001e90 + 0x0000000040001e08 __sfp_lock_acquire = 0x40001e08 + 0x0000000040001e14 __sfp_lock_release = 0x40001e14 + 0x000000004005893c __sfvwrite_r = 0x4005893c + 0x0000000040001e38 __sinit = 0x40001e38 + 0x0000000040001e20 __sinit_lock_acquire = 0x40001e20 + 0x0000000040001e2c __sinit_lock_release = 0x40001e2c + 0x0000000040059108 __smakebuf_r = 0x40059108 + 0x0000000040001004 srand = 0x40001004 + 0x0000000040001118 __sread = 0x40001118 + 0x00000000400593d4 __srefill_r = 0x400593d4 + 0x0000000040001184 __sseek = 0x40001184 + 0x00000000400011cc strcasecmp = 0x400011cc + 0x0000000040001210 strcasestr = 0x40001210 + 0x000000004000c518 strcat = 0x4000c518 + 0x000000004000c53c strchr = 0x4000c53c + 0x0000000040001274 strcmp = 0x40001274 + 0x0000000040001398 strcoll = 0x40001398 + 0x00000000400013ac strcpy = 0x400013ac + 0x000000004000c558 strcspn = 0x4000c558 + 0x000000004000143c strdup = 0x4000143c + 0x0000000040001450 _strdup_r = 0x40001450 + 0x0000000040001470 strlcat = 0x40001470 + 0x000000004000c584 strlcpy = 0x4000c584 + 0x00000000400014c0 strlen = 0x400014c0 + 0x0000000040001524 strlwr = 0x40001524 + 0x0000000040001550 strncasecmp = 0x40001550 + 0x000000004000c5c4 strncat = 0x4000c5c4 + 0x000000004000c5f4 strncmp = 0x4000c5f4 + 0x00000000400015d4 strncpy = 0x400015d4 + 0x00000000400016b0 strndup = 0x400016b0 + 0x00000000400016c4 _strndup_r = 0x400016c4 + 0x000000004000c628 strnlen = 0x4000c628 + 0x0000000040001708 strrchr = 0x40001708 + 0x0000000040001734 strsep = 0x40001734 + 0x000000004000c648 strspn = 0x4000c648 + 0x000000004000c674 strstr = 0x4000c674 + 0x000000004000c6a8 __strtok_r = 0x4000c6a8 + 0x000000004000c70c strtok_r = 0x4000c70c + 0x000000004005681c strtol = 0x4005681c + 0x0000000040056714 _strtol_r = 0x40056714 + 0x000000004005692c strtoul = 0x4005692c + 0x0000000040056834 _strtoul_r = 0x40056834 + 0x000000004000174c strupr = 0x4000174c + 0x0000000040058f3c __submore = 0x40058f3c + 0x0000000040058cb4 __swbuf = 0x40058cb4 + 0x0000000040058bec __swbuf_r = 0x40058bec + 0x0000000040001150 __swrite = 0x40001150 + 0x0000000040058cc8 __swsetup_r = 0x40058cc8 + 0x000000004000c720 toascii = 0x4000c720 + 0x0000000040001868 tolower = 0x40001868 + 0x0000000040001884 toupper = 0x40001884 + 0x00000000400018a0 __tzcalc_limits = 0x400018a0 + 0x0000000040001a04 __tz_lock = 0x40001a04 + 0x0000000040001a10 __tz_unlock = 0x40001a10 + 0x00000000400590f4 ungetc = 0x400590f4 + 0x0000000040058fa0 _ungetc_r = 0x40058fa0 + 0x00000000400561f0 __utoa = 0x400561f0 + 0x0000000040056258 utoa = 0x40056258 + 0x0000000040058920 wcrtomb = 0x40058920 + 0x00000000400588d8 _wcrtomb_r = 0x400588d8 + 0x0000000040058f14 _wctomb_r = 0x40058f14 + 0x000000003ffb9590 _static_data_end = _bss_end + 0x0000000040000000 _heap_end = 0x40000000 + 0x000000003ff80000 _data_seg_org = ORIGIN (rtc_data_seg) + +.rtc.text 0x00000000400c0000 0x63 + 0x00000000400c0000 . = ALIGN (0x4) + *(EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .rtc.literal EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .rtc.text EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .rtc.text.*) + .rtc.text.25.literal + 0x00000000400c0000 0x1c esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .rtc.text.25 0x00000000400c001c 0x47 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400c001c esp_default_wake_deep_sleep + 0x00000000400c001c esp_wake_deep_sleep + *libsoc.a:uart_hal_iram.*(.rtc.literal .rtc.text .rtc.text.*) + *rtc_wake_stub*.*(.literal .text .literal.* .text.*) + 0x00000000400c0063 _rtc_text_end = ABSOLUTE (.) + +.rtc.dummy 0x000000003ff80000 0x63 + 0x000000003ff80000 _rtc_dummy_start = ABSOLUTE (.) + 0x000000003ff80000 _rtc_fast_start = ABSOLUTE (.) + 0x0000000000000063 . = SIZEOF (.rtc.text) + *fill* 0x000000003ff80000 0x63 + 0x000000003ff80063 _rtc_dummy_end = ABSOLUTE (.) + +.rtc.force_fast + 0x000000003ff80063 0x1 + 0x000000003ff80064 . = ALIGN (0x4) + *fill* 0x000000003ff80063 0x1 + 0x000000003ff80064 _rtc_force_fast_start = ABSOLUTE (.) + *(.rtc.force_fast .rtc.force_fast.*) + 0x000000003ff80064 . = ALIGN (0x4) + 0x000000003ff80064 _rtc_force_fast_end = ABSOLUTE (.) + +.rtc.data 0x0000000050000000 0x0 + 0x0000000050000000 _rtc_data_start = ABSOLUTE (.) + *(EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .rtc.data EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .rtc.data.* EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .rtc.rodata EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .rtc.rodata.*) + *libsoc.a:uart_hal_iram.*(.rtc.data .rtc.data.* .rtc.rodata .rtc.rodata.*) + *rtc_wake_stub*.*(.data .rodata .data.* .rodata.* .bss .bss.*) + 0x0000000050000000 _rtc_data_end = ABSOLUTE (.) + +.rtc.bss 0x0000000050000000 0x0 + 0x0000000050000000 _rtc_bss_start = ABSOLUTE (.) + *rtc_wake_stub*.*(.bss .bss.*) + *rtc_wake_stub*.*(COMMON) + *(EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .rtc.bss) + *libsoc.a:uart_hal_iram.*(.rtc.bss) + 0x0000000050000000 _rtc_bss_end = ABSOLUTE (.) + +.rtc_noinit 0x0000000050000000 0x0 + 0x0000000050000000 . = ALIGN (0x4) + 0x0000000050000000 _rtc_noinit_start = ABSOLUTE (.) + *(.rtc_noinit .rtc_noinit.*) + 0x0000000050000000 . = ALIGN (0x4) + 0x0000000050000000 _rtc_noinit_end = ABSOLUTE (.) + +.rtc.force_slow + 0x0000000050000000 0x0 + 0x0000000050000000 . = ALIGN (0x4) + 0x0000000050000000 _rtc_force_slow_start = ABSOLUTE (.) + *(.rtc.force_slow .rtc.force_slow.*) + 0x0000000050000000 . = ALIGN (0x4) + 0x0000000050000000 _rtc_force_slow_end = ABSOLUTE (.) + 0x0000000000000000 _rtc_slow_length = (ORIGIN (rtc_slow_seg) == ORIGIN (rtc_data_location))?(_rtc_force_slow_end - _rtc_data_start):(_rtc_force_slow_end - _rtc_force_slow_start) + 0x0000000000000064 _rtc_fast_length = (ORIGIN (rtc_slow_seg) == ORIGIN (rtc_data_location))?(_rtc_force_fast_end - _rtc_fast_start):(_rtc_noinit_end - _rtc_fast_start) + 0x0000000000000000 ASSERT ((_rtc_slow_length <= LENGTH (rtc_slow_seg)), RTC_SLOW segment data does not fit.) + 0x0000000000000000 ASSERT ((_rtc_fast_length <= LENGTH (rtc_data_seg)), RTC_FAST segment data does not fit.) + +.iram0.vectors 0x0000000040080000 0x403 + 0x0000000040080000 _iram_start = ABSOLUTE (.) + 0x0000000040080000 _init_start = ABSOLUTE (.) + 0x0000000000000000 . = 0x0 + *(.WindowVectors.text) + .WindowVectors.text + 0x0000000040080000 0x16a esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x0000000040080000 _WindowOverflow4 + 0x0000000040080040 _WindowUnderflow4 + 0x0000000040080050 _xt_alloca_exc + 0x0000000040080080 _WindowOverflow8 + 0x00000000400800c0 _WindowUnderflow8 + 0x0000000040080100 _WindowOverflow12 + 0x0000000040080140 _WindowUnderflow12 + 0x0000000000000180 . = 0x180 + *fill* 0x000000004008016a 0x16 + *(.Level2InterruptVector.text) + .Level2InterruptVector.text + 0x0000000040080180 0x6 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x0000000040080180 _Level2Vector + 0x00000000000001c0 . = 0x1c0 + *fill* 0x0000000040080186 0x3a + *(.Level3InterruptVector.text) + .Level3InterruptVector.text + 0x00000000400801c0 0x6 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x00000000400801c0 _Level3Vector + 0x0000000000000200 . = 0x200 + *fill* 0x00000000400801c6 0x3a + *(.Level4InterruptVector.text) + .Level4InterruptVector.text + 0x0000000040080200 0x6 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x0000000040080200 _Level4Vector + 0x0000000000000240 . = 0x240 + *fill* 0x0000000040080206 0x3a + *(.Level5InterruptVector.text) + .Level5InterruptVector.text + 0x0000000040080240 0x6 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x0000000040080240 _Level5Vector + 0x0000000000000280 . = 0x280 + *fill* 0x0000000040080246 0x3a + *(.DebugExceptionVector.text) + .DebugExceptionVector.text + 0x0000000040080280 0x6 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x0000000040080280 _DebugExceptionVector + 0x00000000000002c0 . = 0x2c0 + *fill* 0x0000000040080286 0x3a + *(.NMIExceptionVector.text) + .NMIExceptionVector.text + 0x00000000400802c0 0x6 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x00000000400802c0 _NMIExceptionVector + 0x0000000000000300 . = 0x300 + *fill* 0x00000000400802c6 0x3a + *(.KernelExceptionVector.text) + .KernelExceptionVector.text + 0x0000000040080300 0x6 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x0000000040080300 _KernelExceptionVector + 0x0000000000000340 . = 0x340 + *fill* 0x0000000040080306 0x3a + *(.UserExceptionVector.text) + .UserExceptionVector.text + 0x0000000040080340 0x6 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x0000000040080340 _UserExceptionVector + 0x00000000000003c0 . = 0x3c0 + *fill* 0x0000000040080346 0x7a + *(.DoubleExceptionVector.text) + .DoubleExceptionVector.text + 0x00000000400803c0 0xf esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x00000000400803c0 _DoubleExceptionVector + 0x0000000000000400 . = 0x400 + *fill* 0x00000000400803cf 0x31 + *(.*Vector.literal) + *(.UserEnter.literal) + *(.UserEnter.text) + 0x0000000040080400 . = ALIGN (0x10) + *(.entry.text) + *(.init.literal) + *(.init) + .init 0x0000000040080400 0x3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crti.o + 0x0000000040080400 _init + 0x0000000040080403 _init_end = ABSOLUTE (.) + +.iram0.text 0x0000000040080404 0x16f09 + 0x0000000040080404 _iram_text_start = ABSOLUTE (.) + *(EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .iram1 EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .iram1.*) + .iram1.1.literal + 0x0000000040080404 0x4 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .iram1.16.literal + 0x0000000040080408 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x10 (size before relaxing) + .iram1.17.literal + 0x0000000040080408 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x8 (size before relaxing) + .iram1.20.literal + 0x000000004008040c 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x20 (size before relaxing) + .iram1.26.literal + 0x000000004008041c 0xa4 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0xe4 (size before relaxing) + .iram1.28.literal + 0x00000000400804c0 0xc esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0x2c (size before relaxing) + .iram1.30.literal + 0x00000000400804cc 0x24 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0x34 (size before relaxing) + .iram1.29.literal + 0x00000000400804f0 0x68 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0x114 (size before relaxing) + .iram1.21.literal + 0x0000000040080558 0x1c esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + 0x28 (size before relaxing) + .iram1.20.literal + 0x0000000040080574 0x0 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + 0x18 (size before relaxing) + .iram1.22.literal + 0x0000000040080574 0x0 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + 0x4 (size before relaxing) + .iram1.19.literal + 0x0000000040080574 0x28 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x2c (size before relaxing) + .iram1.20.literal + 0x000000004008059c 0xc esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x2c (size before relaxing) + .iram1.22.literal + 0x00000000400805a8 0x0 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x4 (size before relaxing) + .iram1.25.literal + 0x00000000400805a8 0x4 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .iram1.26.literal + 0x00000000400805ac 0x0 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x4 (size before relaxing) + .iram1.24.literal + 0x00000000400805ac 0x0 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x8 (size before relaxing) + .iram1.literal + 0x00000000400805ac 0x14 esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) + 0x28 (size before relaxing) + .iram1.15.literal + 0x00000000400805c0 0x8 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + 0xc (size before relaxing) + .iram1.15.literal + 0x00000000400805c8 0x4 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0xc (size before relaxing) + .iram1.17.literal + 0x00000000400805cc 0x4 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x24 (size before relaxing) + .iram1.18.literal + 0x00000000400805d0 0xc esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x40 (size before relaxing) + .iram1.19.literal + 0x00000000400805dc 0xc esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x10 (size before relaxing) + .iram1.20.literal + 0x00000000400805e8 0x0 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0xc (size before relaxing) + .iram1.25.literal + 0x00000000400805e8 0x44 esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + 0xb0 (size before relaxing) + .iram1.17.literal + 0x000000004008062c 0xc esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + 0x14 (size before relaxing) + .iram1.4.literal + 0x0000000040080638 0x8 esp-idf/esp32/libesp32.a(clk.c.obj) + .iram1.5.literal + 0x0000000040080640 0x0 esp-idf/esp32/libesp32.a(clk.c.obj) + 0x8 (size before relaxing) + .iram1.7.literal + 0x0000000040080640 0x4 esp-idf/esp32/libesp32.a(clk.c.obj) + 0x8 (size before relaxing) + .iram1.14.literal + 0x0000000040080644 0x4 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .iram1.15.literal + 0x0000000040080648 0x20 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + 0x34 (size before relaxing) + .iram1.24.literal + 0x0000000040080668 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.21.literal + 0x000000004008066c 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x10 (size before relaxing) + .iram1.18.literal + 0x0000000040080670 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x18 (size before relaxing) + .iram1.22.literal + 0x0000000040080680 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x10 (size before relaxing) + .iram1.19.literal + 0x0000000040080680 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x10 (size before relaxing) + .iram1.23.literal + 0x0000000040080684 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0xc (size before relaxing) + .iram1.17.literal + 0x0000000040080688 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0xc (size before relaxing) + .iram1.26.literal + 0x0000000040080688 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x4 (size before relaxing) + .iram1.15.literal + 0x0000000040080688 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x20 (size before relaxing) + .iram1.16.literal + 0x0000000040080688 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x20 (size before relaxing) + .iram1.17.literal + 0x0000000040080688 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .iram1.14.literal + 0x0000000040080690 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .iram1.15.literal + 0x00000000400806a0 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x4 (size before relaxing) + .iram1.16.literal + 0x00000000400806a0 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x34 (size before relaxing) + .iram1.18.literal + 0x00000000400806b0 0x18 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x30 (size before relaxing) + .iram1.19.literal + 0x00000000400806c8 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x8 (size before relaxing) + .iram1.15.literal + 0x00000000400806cc 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + .iram1.literal + 0x00000000400806d0 0x44 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x68 (size before relaxing) + .iram1.15.literal + 0x0000000040080714 0x4 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x1c (size before relaxing) + .iram1.19.literal + 0x0000000040080718 0xc esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x30 (size before relaxing) + .iram1.24.literal + 0x0000000040080724 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x14 (size before relaxing) + .iram1.16.literal + 0x0000000040080724 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.17.literal + 0x0000000040080724 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.18.literal + 0x0000000040080724 0x4 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x24 (size before relaxing) + .iram1.20.literal + 0x0000000040080728 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.21.literal + 0x0000000040080728 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.22.literal + 0x0000000040080728 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.23.literal + 0x0000000040080728 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.25.literal + 0x0000000040080728 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.26.literal + 0x0000000040080728 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x0000000040080728 0x4 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + 0xc (size before relaxing) + .iram1.16.literal + 0x000000004008072c 0x10 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x18 (size before relaxing) + .iram1.15.literal + 0x000000004008073c 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x8 (size before relaxing) + .iram1.12.literal + 0x000000004008073c 0x30 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .iram1.0.literal + 0x000000004008076c 0x18 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .iram1.1.literal + 0x0000000040080784 0x0 esp-idf/soc/libsoc.a(cpu_util.c.obj) + 0x10 (size before relaxing) + .iram1.2.literal + 0x0000000040080784 0x0 esp-idf/soc/libsoc.a(cpu_util.c.obj) + 0x4 (size before relaxing) + .iram1.3.literal + 0x0000000040080784 0x4 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .iram1.0.literal + 0x0000000040080788 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .iram1.1.literal + 0x0000000040080798 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .iram1.2.literal + 0x000000004008079c 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x60 (size before relaxing) + .iram1.3.literal + 0x00000000400807dc 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x18 (size before relaxing) + .iram1.32.literal + 0x00000000400807f0 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x20 (size before relaxing) + .iram1.26.literal + 0x0000000040080800 0xc esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x20 (size before relaxing) + .iram1.31.literal + 0x000000004008080c 0x8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x30 (size before relaxing) + .iram1.27.literal + 0x0000000040080814 0x28 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x64 (size before relaxing) + .iram1.28.literal + 0x000000004008083c 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x44 (size before relaxing) + .iram1.33.literal + 0x000000004008084c 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x10 (size before relaxing) + .iram1.34.literal + 0x000000004008084c 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x4 (size before relaxing) + .iram1.26.literal + 0x000000004008084c 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.28.literal + 0x0000000040080850 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x4 (size before relaxing) + .iram1.34.literal + 0x0000000040080850 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0xc (size before relaxing) + .iram1.32.literal + 0x0000000040080850 0x18 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x24 (size before relaxing) + .iram1.16.literal + 0x0000000040080868 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x24 (size before relaxing) + .iram1.15.literal + 0x0000000040080874 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0xc (size before relaxing) + .iram1.18.literal + 0x0000000040080874 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x18 (size before relaxing) + .iram1.14.literal + 0x0000000040080878 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x3c (size before relaxing) + .iram1.20.literal + 0x0000000040080884 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x30 (size before relaxing) + .iram1.25.literal + 0x0000000040080884 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x30 (size before relaxing) + .iram1.26.literal + 0x000000004008088c 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x24 (size before relaxing) + .iram1.33.literal + 0x000000004008088c 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x8 (size before relaxing) + .iram1.34.literal + 0x000000004008088c 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x8 (size before relaxing) + .iram1.35.literal + 0x000000004008088c 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x8 (size before relaxing) + .iram1.2.literal + 0x000000004008088c 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.3.literal + 0x000000004008088c 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.4.literal + 0x000000004008088c 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.5.literal + 0x000000004008088c 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.11.literal + 0x0000000040080890 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x4 (size before relaxing) + .iram1.10.literal + 0x0000000040080890 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x30 (size before relaxing) + .iram1.9.literal + 0x0000000040080890 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x18 (size before relaxing) + .iram1.26.literal + 0x0000000040080890 0x4 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x8 (size before relaxing) + .iram1.25.literal + 0x0000000040080894 0xc esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x18 (size before relaxing) + .iram1.34.literal + 0x00000000400808a0 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x10 (size before relaxing) + .iram1.31.literal + 0x00000000400808a0 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x10 (size before relaxing) + .iram1.28.literal + 0x00000000400808a0 0x20 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x80 (size before relaxing) + .iram1.27.literal + 0x00000000400808c0 0x8 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x18 (size before relaxing) + .iram1.29.literal + 0x00000000400808c8 0xc esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x34 (size before relaxing) + .iram1.35.literal + 0x00000000400808d4 0xc esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x2c (size before relaxing) + .iram1.29.literal + 0x00000000400808e0 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.17.literal + 0x00000000400808e4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.18.literal + 0x00000000400808e4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.19.literal + 0x00000000400808e4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.33.literal + 0x00000000400808e4 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .iram1.20.literal + 0x00000000400808e8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .iram1.36.literal + 0x00000000400808e8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xc (size before relaxing) + .iram1.35.literal + 0x00000000400808e8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .iram1.34.literal + 0x00000000400808e8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .iram1.32.literal + 0x00000000400808e8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.31.literal + 0x00000000400808e8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.30.literal + 0x00000000400808e8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.16.literal + 0x00000000400808e8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.15.literal + 0x00000000400808e8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.28.literal + 0x00000000400808e8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.27.literal + 0x00000000400808e8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.26.literal + 0x00000000400808e8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.23.literal + 0x00000000400808e8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .iram1.22.literal + 0x00000000400808e8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xc (size before relaxing) + .iram1.21.literal + 0x00000000400808e8 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xc (size before relaxing) + .iram1.19.literal + 0x00000000400808e8 0x4 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x10 (size before relaxing) + .iram1.20.literal + 0x00000000400808ec 0x0 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x10 (size before relaxing) + .iram1.23.literal + 0x00000000400808ec 0xc esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x24 (size before relaxing) + .iram1.24.literal + 0x00000000400808f8 0x4 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x28 (size before relaxing) + .iram1.22.literal + 0x00000000400808fc 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.15.literal + 0x0000000040080900 0x20 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x34 (size before relaxing) + .iram1.16.literal + 0x0000000040080920 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x1c (size before relaxing) + .iram1.17.literal + 0x0000000040080924 0xc esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x20 (size before relaxing) + .iram1.23.literal + 0x0000000040080930 0xc esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x20 (size before relaxing) + .iram1.24.literal + 0x000000004008093c 0xc esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x50 (size before relaxing) + .iram1.18.literal + 0x0000000040080948 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x20 (size before relaxing) + .iram1.25.literal + 0x0000000040080948 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x8 (size before relaxing) + .iram1.0.literal + 0x0000000040080948 0x8 esp-idf/esp32/libesp32.a(hw_random.c.obj) + 0x10 (size before relaxing) + .iram1.0.literal + 0x0000000040080950 0x18 esp-idf/esp32/libesp32.a(reset_reason.c.obj) + 0x1c (size before relaxing) + .iram1.1.literal + 0x0000000040080968 0x0 esp-idf/esp32/libesp32.a(reset_reason.c.obj) + 0x4 (size before relaxing) + .iram1.26.literal + 0x0000000040080968 0x1c esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x24 (size before relaxing) + .iram1.27.literal + 0x0000000040080984 0x14 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x2c (size before relaxing) + .iram1.28.literal + 0x0000000040080998 0x8 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x20 (size before relaxing) + .iram1.29.literal + 0x00000000400809a0 0x30 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x58 (size before relaxing) + .iram1.31.literal + 0x00000000400809d0 0x0 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0xc (size before relaxing) + .iram1.30.literal + 0x00000000400809d0 0x14 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x20 (size before relaxing) + .iram1.15.literal + 0x00000000400809e4 0x4 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + 0xc (size before relaxing) + .iram1.15.literal + 0x00000000400809e8 0x4 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .iram1.16.literal + 0x00000000400809ec 0x14 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x30 (size before relaxing) + .iram1.17.literal + 0x0000000040080a00 0x4 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x30 (size before relaxing) + .iram1.18.literal + 0x0000000040080a04 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x8 (size before relaxing) + .iram1.0.literal + 0x0000000040080a04 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x0000000040080a04 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + 0x4 (size before relaxing) + .literal.prvReturnItemByteBuf + 0x0000000040080a04 0xc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x14 (size before relaxing) + .literal.prvGetItemByteBuf + 0x0000000040080a10 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x18 (size before relaxing) + .literal.prvCheckItemFitsByteBuffer + 0x0000000040080a14 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x10 (size before relaxing) + .literal.prvReturnItemDefault + 0x0000000040080a18 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x28 (size before relaxing) + .literal.prvGetItemDefault + 0x0000000040080a1c 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x2c (size before relaxing) + .literal.prvAcquireItemNoSplit + 0x0000000040080a20 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x18 (size before relaxing) + .literal.prvSendItemDoneNoSplit + 0x0000000040080a24 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x28 (size before relaxing) + .literal.prvCheckItemFitsDefault + 0x0000000040080a28 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x14 (size before relaxing) + .literal.prvGetFreeSize + 0x0000000040080a2c 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x10 (size before relaxing) + .literal.prvCopyItemByteBuf + 0x0000000040080a30 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x18 (size before relaxing) + .literal.prvCopyItemAllowSplit + 0x0000000040080a34 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x20 (size before relaxing) + .literal.prvCopyItemNoSplit + 0x0000000040080a38 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0xc (size before relaxing) + .literal.prvInitializeNewRingbuffer + 0x0000000040080a38 0x40 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x48 (size before relaxing) + .literal.prvReceiveGeneric + 0x0000000040080a78 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x34 (size before relaxing) + .literal.prvReceiveGenericFromISR + 0x0000000040080a7c 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x24 (size before relaxing) + .literal.xRingbufferCreate + 0x0000000040080a80 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x38 (size before relaxing) + .literal.xRingbufferSend + 0x0000000040080a84 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x38 (size before relaxing) + .literal.xRingbufferSendFromISR + 0x0000000040080a88 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x28 (size before relaxing) + .literal.xRingbufferReceive + 0x0000000040080a8c 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x14 (size before relaxing) + .literal.xRingbufferReceiveFromISR + 0x0000000040080a90 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x14 (size before relaxing) + .literal.vRingbufferReturnItem + 0x0000000040080a94 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x20 (size before relaxing) + .literal.vRingbufferReturnItemFromISR + 0x0000000040080a98 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x20 (size before relaxing) + .literal.vRingbufferDelete + 0x0000000040080a9c 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x20 (size before relaxing) + .literal.xRingbufferGetMaxItemSize + 0x0000000040080aa0 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x10 (size before relaxing) + .literal.esp_log_early_timestamp + 0x0000000040080aa4 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x4 (size before relaxing) + .literal.esp_log_impl_lock_timeout + 0x0000000040080aa4 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + 0xc (size before relaxing) + .literal.esp_log_timestamp + 0x0000000040080aa8 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x1c (size before relaxing) + .literal.esp_log_impl_unlock + 0x0000000040080aac 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x8 (size before relaxing) + .literal.esp_log_write + 0x0000000040080aac 0x34 esp-idf/log/liblog.a(log.c.obj) + 0x44 (size before relaxing) + .literal.esp_log_impl_lock + 0x0000000040080ae0 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + 0xc (size before relaxing) + .literal.get_prev_free_block + 0x0000000040080ae0 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x28 (size before relaxing) + .literal.split_if_necessary + 0x0000000040080af0 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x50 (size before relaxing) + .literal.assert_valid_block + 0x0000000040080b00 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x2c (size before relaxing) + .literal.merge_adjacent + 0x0000000040080b00 0x8 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x4c (size before relaxing) + .literal.multi_heap_get_allocated_size_impl + 0x0000000040080b08 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x10 (size before relaxing) + .literal.multi_heap_malloc_impl + 0x0000000040080b08 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x28 (size before relaxing) + .literal.multi_heap_free_impl + 0x0000000040080b08 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x50 (size before relaxing) + .literal.multi_heap_realloc_impl + 0x0000000040080b08 0xc esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x68 (size before relaxing) + .literal.panicPutChar + 0x0000000040080b14 0x4 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x8 (size before relaxing) + .literal.panicPutStr + 0x0000000040080b18 0x0 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x4 (size before relaxing) + .literal.panicPutHex + 0x0000000040080b18 0x0 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x8 (size before relaxing) + .literal.panicPutDec + 0x0000000040080b18 0x4 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x10 (size before relaxing) + .literal.illegal_instruction_helper + 0x0000000040080b1c 0x18 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x3c (size before relaxing) + .literal.reconfigureAllWdts + 0x0000000040080b34 0x10 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x2c (size before relaxing) + .literal.putEntry + 0x0000000040080b44 0x8 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x18 (size before relaxing) + .literal.invoke_abort + 0x0000000040080b4c 0x4 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x8 (size before relaxing) + .literal.haltOtherCore + 0x0000000040080b50 0x0 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x4 (size before relaxing) + .literal.doBacktrace + 0x0000000040080b50 0x10 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x60 (size before relaxing) + .literal.commonErrorHandler_dump + 0x0000000040080b60 0x30 esp-idf/esp32/libesp32.a(panic.c.obj) + 0xa8 (size before relaxing) + .literal.esp_panic_dig_reset + 0x0000000040080b90 0x0 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x18 (size before relaxing) + .literal.commonErrorHandler + 0x0000000040080b90 0xc esp-idf/esp32/libesp32.a(panic.c.obj) + 0x60 (size before relaxing) + .literal.esp_error_check_failed_print + 0x0000000040080b9c 0x18 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x2c (size before relaxing) + .literal.abort + 0x0000000040080bb4 0x8 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x18 (size before relaxing) + .literal.vApplicationStackOverflowHook + 0x0000000040080bbc 0x8 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x18 (size before relaxing) + .literal.panicHandler + 0x0000000040080bc4 0x38 esp-idf/esp32/libesp32.a(panic.c.obj) + 0xbc (size before relaxing) + .literal.xt_unhandled_exception + 0x0000000040080bfc 0x18 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x68 (size before relaxing) + .literal.esp_set_watchpoint + 0x0000000040080c14 0x0 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x4 (size before relaxing) + .literal._esp_error_check_failed + 0x0000000040080c14 0x4 esp-idf/esp32/libesp32.a(panic.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_chip_issi_probe + 0x0000000040080c18 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_issi_set_io_mode + 0x0000000040080c1c 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_chip_issi_get_io_mode + 0x0000000040080c24 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_gd_probe + 0x0000000040080c24 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .literal.spi_flash_chip_gd_set_io_mode + 0x0000000040080c28 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x20 (size before relaxing) + .literal.spi_flash_chip_gd_get_io_mode + 0x0000000040080c3c 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_detect_size + 0x0000000040080c3c 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_generic_erase_chip + 0x0000000040080c40 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .literal.spi_flash_chip_generic_write_encrypted + 0x0000000040080c44 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_read_status_16b_rdsr_rdsr2 + 0x0000000040080c44 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_common_write_status_16b_wrsr + 0x0000000040080c44 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_get_write_protect + 0x0000000040080c44 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x10 (size before relaxing) + .literal.spi_flash_chip_generic_wait_idle + 0x0000000040080c50 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_config_host_io_mode + 0x0000000040080c50 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_generic_read + 0x0000000040080c54 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_common_read_status_8b_rdsr2 + 0x0000000040080c5c 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_get_io_mode + 0x0000000040080c5c 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_read_status_8b_rdsr + 0x0000000040080c5c 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_write_status_8b_wrsr + 0x0000000040080c5c 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_write_status_8b_wrsr2 + 0x0000000040080c5c 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_set_io_mode + 0x0000000040080c5c 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0xc (size before relaxing) + .literal.memspi_host_read_id_hs + 0x0000000040080c5c 0x10 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x18 (size before relaxing) + .literal.memspi_host_flush_cache + 0x0000000040080c6c 0x4 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x8 (size before relaxing) + .literal.rtc_init + 0x0000000040080c70 0x94 esp-idf/soc/libsoc.a(rtc_init.c.obj) + 0xe0 (size before relaxing) + .literal.rtc_vddsdio_get_config + 0x0000000040080d04 0xc esp-idf/soc/libsoc.a(rtc_init.c.obj) + 0x10 (size before relaxing) + .literal.rtc_vddsdio_set_config + 0x0000000040080d10 0x0 esp-idf/soc/libsoc.a(rtc_init.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_configure_host_io_mode + 0x0000000040080d10 0x1c esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x4c (size before relaxing) + .literal.spi_flash_hal_common_command + 0x0000000040080d2c 0x0 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x24 (size before relaxing) + .literal.spi_flash_hal_read + 0x0000000040080d2c 0x0 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_hal_erase_chip + 0x0000000040080d2c 0x0 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_hal_erase_sector + 0x0000000040080d2c 0x4 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_hal_erase_block + 0x0000000040080d30 0x0 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_hal_program_page + 0x0000000040080d30 0x4 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_hal_set_write_protect + 0x0000000040080d34 0x4 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_host_idle + 0x0000000040080d38 0x4 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.rtc_clk_cal_internal + 0x0000000040080d3c 0x3c esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0x70 (size before relaxing) + .literal.rtc_clk_cal + 0x0000000040080d78 0x0 esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0xc (size before relaxing) + .literal.rtc_time_us_to_slowclk + 0x0000000040080d78 0x0 esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0x4 (size before relaxing) + .literal.rtc_time_get + 0x0000000040080d78 0x10 esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0x18 (size before relaxing) + .literal.rtc_clk_wait_for_slow_cycle + 0x0000000040080d88 0x8 esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0x20 (size before relaxing) + .literal.rtc_wdt_get_protect_status + 0x0000000040080d90 0x8 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .literal.rtc_wdt_protect_off + 0x0000000040080d98 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x8 (size before relaxing) + .literal.rtc_wdt_protect_on + 0x0000000040080d98 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x4 (size before relaxing) + .literal.rtc_wdt_enable + 0x0000000040080d98 0xc esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x10 (size before relaxing) + .literal.rtc_wdt_flashboot_mode_enable + 0x0000000040080da4 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x4 (size before relaxing) + .literal.rtc_wdt_feed + 0x0000000040080da4 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x14 (size before relaxing) + .literal.rtc_wdt_set_time + 0x0000000040080da4 0x14 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x20 (size before relaxing) + .literal.rtc_wdt_set_stage + 0x0000000040080db8 0xc esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x24 (size before relaxing) + .literal.rtc_wdt_disable + 0x0000000040080dc4 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x2c (size before relaxing) + .literal.rtc_wdt_set_length_of_reset_signal + 0x0000000040080dc4 0x10 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x14 (size before relaxing) + .literal.rtc_wdt_is_on + 0x0000000040080dd4 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x4 (size before relaxing) + .literal.rtc_sleep_pd + 0x0000000040080dd4 0x18 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + 0x2c (size before relaxing) + .literal.rtc_sleep_init + 0x0000000040080dec 0x40 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + 0xd0 (size before relaxing) + .literal.rtc_sleep_set_wakeup_time + 0x0000000040080e2c 0x8 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + .literal.rtc_sleep_start + 0x0000000040080e34 0x14 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + 0x28 (size before relaxing) + .literal.rtc_clk_32k_enable_common + 0x0000000040080e48 0x18 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .literal.rtc_clk_bbpll_disable + 0x0000000040080e60 0x4 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_bbpll_enable + 0x0000000040080e64 0x8 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x1c (size before relaxing) + .literal.rtc_clk_32k_enable + 0x0000000040080e6c 0x4 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_32k_enable_external + 0x0000000040080e70 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_8m_enable + 0x0000000040080e70 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_slow_freq_set + 0x0000000040080e70 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0xc (size before relaxing) + .literal.rtc_clk_slow_freq_get + 0x0000000040080e70 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_slow_freq_get_hz + 0x0000000040080e70 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_fast_freq_set + 0x0000000040080e70 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_bbpll_configure + 0x0000000040080e70 0x4 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x40 (size before relaxing) + .literal.rtc_clk_xtal_freq_get + 0x0000000040080e74 0x8 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_mhz_to_config + 0x0000000040080e7c 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_cpu_freq_get_config + 0x0000000040080e7c 0x10 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x34 (size before relaxing) + .literal.rtc_clk_apb_freq_update + 0x0000000040080e8c 0x4 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_to_xtal + 0x0000000040080e90 0x8 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x2c (size before relaxing) + .literal.rtc_clk_cpu_freq_set_xtal + 0x0000000040080e98 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_cpu_freq_to_pll_mhz + 0x0000000040080e98 0x8 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x44 (size before relaxing) + .literal.rtc_clk_cpu_freq_to_8m + 0x0000000040080ea0 0x4 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x28 (size before relaxing) + .literal.rtc_clk_cpu_freq_set_config + 0x0000000040080ea4 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x30 (size before relaxing) + .literal.malloc + 0x0000000040080ea4 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal.realloc + 0x0000000040080ea4 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal.free 0x0000000040080ea4 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal._malloc_r + 0x0000000040080ea4 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal._free_r + 0x0000000040080ea4 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal._realloc_r + 0x0000000040080ea4 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal._calloc_r + 0x0000000040080ea4 0x4 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x8 (size before relaxing) + .literal.calloc + 0x0000000040080ea8 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x8 (size before relaxing) + .literal 0x0000000040080ea8 0x4 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) + .literal.vPortTaskWrapper + 0x0000000040080eac 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x18 (size before relaxing) + .literal.pxPortInitialiseStack + 0x0000000040080eb4 0x14 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x1c (size before relaxing) + .literal.xPortStartScheduler + 0x0000000040080ec8 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x14 (size before relaxing) + .literal.xPortSysTickHandler + 0x0000000040080ec8 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x8 (size before relaxing) + .literal.vPortYieldOtherCore + 0x0000000040080ec8 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4 (size before relaxing) + .literal.vPortReleaseTaskMPUSettings + 0x0000000040080ec8 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4 (size before relaxing) + .literal.xPortInIsrContext + 0x0000000040080ec8 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x8 (size before relaxing) + .literal.vPortSetStackWatchpoint + 0x0000000040080ec8 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x8 (size before relaxing) + .literal.vPortEnterCritical + 0x0000000040080ec8 0x28 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3c (size before relaxing) + .literal.vPortExitCritical + 0x0000000040080ef0 0xc esp-idf/freertos/libfreertos.a(port.c.obj) + 0x30 (size before relaxing) + .literal 0x0000000040080efc 0xc esp-idf/freertos/libfreertos.a(portasm.S.obj) + 0x54 (size before relaxing) + .literal 0x0000000040080f08 0x4 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + 0x14 (size before relaxing) + .literal._xt_tick_divisor_init + 0x0000000040080f0c 0x4 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + 0xc (size before relaxing) + .literal.xt_unhandled_interrupt + 0x0000000040080f10 0x4 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + 0x8 (size before relaxing) + .literal.xt_set_interrupt_handler + 0x0000000040080f14 0x8 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + 0xc (size before relaxing) + .literal.prvIsQueueFull + 0x0000000040080f1c 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x8 (size before relaxing) + .literal.prvCopyDataToQueue + 0x0000000040080f1c 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xc (size before relaxing) + .literal.prvNotifyQueueSetContainer + 0x0000000040080f1c 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x2c (size before relaxing) + .literal.prvCopyDataFromQueue + 0x0000000040080f30 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x4 (size before relaxing) + .literal.xQueueGenericReset + 0x0000000040080f30 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x3c (size before relaxing) + .literal.prvInitialiseNewQueue + 0x0000000040080f40 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x4 (size before relaxing) + .literal.xQueueGenericCreate + 0x0000000040080f40 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueGetMutexHolder + 0x0000000040080f44 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x8 (size before relaxing) + .literal.xQueueCreateCountingSemaphore + 0x0000000040080f44 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1c (size before relaxing) + .literal.xQueueGenericSend + 0x0000000040080f48 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x74 (size before relaxing) + .literal.prvInitialiseMutex + 0x0000000040080f4c 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueCreateMutex + 0x0000000040080f4c 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x8 (size before relaxing) + .literal.xQueueGiveMutexRecursive + 0x0000000040080f4c 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueGenericSendFromISR + 0x0000000040080f50 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x30 (size before relaxing) + .literal.xQueueGiveFromISR + 0x0000000040080f54 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x28 (size before relaxing) + .literal.xQueueGenericReceive + 0x0000000040080f58 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x6c (size before relaxing) + .literal.xQueueTakeMutexRecursive + 0x0000000040080f5c 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueReceiveFromISR + 0x0000000040080f60 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x28 (size before relaxing) + .literal.uxQueueMessagesWaiting + 0x0000000040080f64 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.uxQueueSpacesAvailable + 0x0000000040080f68 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.vQueueDelete + 0x0000000040080f6c 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x14 (size before relaxing) + .literal.vQueueWaitForMessageRestricted + 0x0000000040080f70 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xc (size before relaxing) + .literal.prvListTaskWithinSingleList + 0x0000000040080f70 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.prvResetNextTaskUnblockTime + 0x0000000040080f70 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.prvDeleteTLS + 0x0000000040080f78 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x14 (size before relaxing) + .literal.prvInitialiseNewTask + 0x0000000040080f88 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x18 (size before relaxing) + .literal.prvInitialiseTaskLists + 0x0000000040080f88 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40 (size before relaxing) + .literal.prvDeleteTCB + 0x0000000040080fa8 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x28 (size before relaxing) + .literal.prvCheckTasksWaitingTermination + 0x0000000040080fb4 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x30 (size before relaxing) + .literal.prvAddCurrentTaskToDelayedList + 0x0000000040080fc8 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1c (size before relaxing) + .literal.prvIdleTask + 0x0000000040080fcc 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.prvWriteNameToBuffer + 0x0000000040080fd0 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.taskYIELD_OTHER_CORE + 0x0000000040080fd8 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.prvAddNewTaskToReadyList + 0x0000000040080fd8 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x54 (size before relaxing) + .literal.xTaskCreatePinnedToCore + 0x0000000040080fec 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x18 (size before relaxing) + .literal.vTaskStartScheduler + 0x0000000040080fec 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x38 (size before relaxing) + .literal.vTaskSuspendAll + 0x0000000040081004 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.xTaskGetTickCount + 0x0000000040081008 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.xTaskGetTickCountFromISR + 0x0000000040081008 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.uxTaskGetNumberOfTasks + 0x0000000040081008 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.uxTaskGetSystemState + 0x0000000040081008 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x38 (size before relaxing) + .literal.xTaskGetIdleTaskHandleForCPU + 0x0000000040081008 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x18 (size before relaxing) + .literal.xTaskIncrementTick + 0x0000000040081010 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x64 (size before relaxing) + .literal.vTaskSwitchContext + 0x0000000040081024 0x2c esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x78 (size before relaxing) + .literal.vTaskPlaceOnEventList + 0x0000000040081050 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + .literal.vTaskPlaceOnUnorderedEventList + 0x0000000040081058 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4c (size before relaxing) + .literal.vTaskPlaceOnEventListRestricted + 0x0000000040081064 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x34 (size before relaxing) + .literal.xTaskRemoveFromEventList + 0x000000004008106c 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x54 (size before relaxing) + .literal.xTaskRemoveFromUnorderedEventList + 0x0000000040081074 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x54 (size before relaxing) + .literal.vTaskSetTimeOutState + 0x0000000040081080 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1c (size before relaxing) + .literal.xTaskCheckForTimeOut + 0x0000000040081088 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x34 (size before relaxing) + .literal.xTaskGetCurrentTaskHandle + 0x0000000040081094 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.uxTaskPriorityGet + 0x0000000040081094 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.vTaskPrioritySet + 0x0000000040081094 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40 (size before relaxing) + .literal.__getreent + 0x0000000040081098 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.pcTaskGetTaskName + 0x0000000040081098 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x18 (size before relaxing) + .literal.vTaskSetThreadLocalStoragePointerAndDelCallback + 0x00000000400810a0 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.pvTaskGetThreadLocalStoragePointer + 0x00000000400810a0 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.xTaskGetAffinity + 0x00000000400810a0 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.xTaskGetCurrentTaskHandleForCPU + 0x00000000400810a0 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.xTaskGetSchedulerState + 0x00000000400810a0 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xc (size before relaxing) + .literal.vTaskDelete + 0x00000000400810a0 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x5c (size before relaxing) + .literal.vTaskDelay + 0x00000000400810a4 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x34 (size before relaxing) + .literal.vTaskSuspend + 0x00000000400810a8 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x5c (size before relaxing) + .literal.xTaskResumeAll + 0x00000000400810ac 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x5c (size before relaxing) + .literal.vTaskPriorityInherit + 0x00000000400810b4 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x28 (size before relaxing) + .literal.xTaskPriorityDisinherit + 0x00000000400810b4 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x38 (size before relaxing) + .literal.vTaskList + 0x00000000400810bc 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x20 (size before relaxing) + .literal.uxTaskResetEventItemValue + 0x00000000400810c4 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.pvTaskIncrementMutexHeldCount + 0x00000000400810c4 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.prvGetNextExpireTime + 0x00000000400810c4 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + .literal.prvInsertTimerInActiveList + 0x00000000400810c8 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x10 (size before relaxing) + .literal.prvCheckForValidListAndQueue + 0x00000000400810cc 0x1c esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x40 (size before relaxing) + .literal.xTimerCreateTimerTask + 0x00000000400810e8 0xc esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x28 (size before relaxing) + .literal.xTimerGenericCommand + 0x00000000400810f4 0x0 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x14 (size before relaxing) + .literal.prvSwitchTimerLists + 0x00000000400810f4 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x24 (size before relaxing) + .literal.prvSampleTimeNow + 0x00000000400810f8 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0xc (size before relaxing) + .literal.prvProcessExpiredTimer + 0x00000000400810fc 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x20 (size before relaxing) + .literal.prvProcessTimerOrBlockTask + 0x0000000040081100 0x0 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x24 (size before relaxing) + .literal.prvProcessReceivedCommands + 0x0000000040081100 0x8 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x38 (size before relaxing) + .literal.prvTimerTask + 0x0000000040081108 0x0 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0xc (size before relaxing) + .literal.xEventGroupCreate + 0x0000000040081108 0xc esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x1c (size before relaxing) + .literal.xEventGroupWaitBits + 0x0000000040081114 0xc esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x5c (size before relaxing) + .literal.xEventGroupClearBits + 0x0000000040081120 0x4 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x20 (size before relaxing) + .literal.xEventGroupSetBits + 0x0000000040081124 0x4 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x34 (size before relaxing) + .literal.vEventGroupDelete + 0x0000000040081128 0x4 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x2c (size before relaxing) + .iram1.1 0x000000004008112c 0x69 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + 0x000000004008112c esp_ota_get_app_elf_sha256 + *fill* 0x0000000040081195 0x3 + .iram1.16 0x0000000040081198 0x58 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x64 (size before relaxing) + .iram1.17 0x00000000400811f0 0x22 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x00000000400811f0 pthread_mutex_lock + *fill* 0x0000000040081212 0x2 + .iram1.20 0x0000000040081214 0x65 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x6d (size before relaxing) + 0x0000000040081214 pthread_mutex_unlock + *fill* 0x0000000040081279 0x3 + .iram1.26 0x000000004008127c 0x165 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0x185 (size before relaxing) + 0x000000004008127c start_cpu0_default + 0x000000004008127c start_cpu0 + *fill* 0x00000000400813e1 0x3 + .iram1.28 0x00000000400813e4 0x3e esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0x46 (size before relaxing) + 0x00000000400813e4 start_cpu1 + 0x00000000400813e4 start_cpu1_default + *fill* 0x0000000040081422 0x2 + .iram1.30 0x0000000040081424 0x54 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0x58 (size before relaxing) + .iram1.29 0x0000000040081478 0x1c8 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0x21a (size before relaxing) + 0x0000000040081478 call_start_cpu0 + *fill* 0x0000000040081640 0x0 + .iram1.21 0x0000000040081640 0x58 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + 0x5c (size before relaxing) + .iram1.20 0x0000000040081698 0x44 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + 0x4c (size before relaxing) + .iram1.22 0x00000000400816dc 0xf esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + 0x00000000400816dc esp_crosscore_int_send_yield + *fill* 0x00000000400816eb 0x1 + .iram1.19 0x00000000400816ec 0xb6 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x00000000400816ec esp_dport_access_stall_other_cpu_start + *fill* 0x00000000400817a2 0x2 + .iram1.20 0x00000000400817a4 0x83 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x00000000400817a4 esp_dport_access_stall_other_cpu_end + *fill* 0x0000000040081827 0x1 + .iram1.22 0x0000000040081828 0x14 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x0000000040081828 esp_dport_access_int_abort + .iram1.25 0x000000004008183c 0x15 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x000000004008183c esp_dport_access_reg_read + *fill* 0x0000000040081851 0x3 + .iram1.26 0x0000000040081854 0xc esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x0000000040081854 esp_dport_access_sequence_reg_read + .iram1.24 0x0000000040081860 0x2a esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x0000000040081860 esp_dport_access_read_buffer + *fill* 0x000000004008188a 0x2 + .iram1 0x000000004008188c 0xe6 esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) + 0x000000004008188c xt_highint4 + 0x0000000040081972 ld_include_panic_highint_hdl + *fill* 0x0000000040081972 0x2 + .iram1.15 0x0000000040081974 0x56 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + *fill* 0x00000000400819ca 0x2 + .iram1.15 0x00000000400819cc 0x39 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x3c (size before relaxing) + *fill* 0x0000000040081a05 0x3 + .iram1.17 0x0000000040081a08 0xad esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0xb9 (size before relaxing) + 0x0000000040081a08 esp_intr_enable + *fill* 0x0000000040081ab5 0x3 + .iram1.18 0x0000000040081ab8 0xfb esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x117 (size before relaxing) + 0x0000000040081ab8 esp_intr_disable + *fill* 0x0000000040081bb3 0x1 + .iram1.19 0x0000000040081bb4 0x52 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x0000000040081bb4 esp_intr_noniram_disable + *fill* 0x0000000040081c06 0x2 + .iram1.20 0x0000000040081c08 0x41 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x0000000040081c08 esp_intr_noniram_enable + *fill* 0x0000000040081c49 0x3 + .iram1.25 0x0000000040081c4c 0x16f esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + 0x1bb (size before relaxing) + 0x0000000040081c4c esp_restart_noos + *fill* 0x0000000040081dbb 0x1 + .iram1.17 0x0000000040081dbc 0x2c esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + 0x30 (size before relaxing) + 0x0000000040081dbc esp_cache_err_get_cpuid + .iram1.4 0x0000000040081de8 0x10 esp-idf/esp32/libesp32.a(clk.c.obj) + 0x0000000040081de8 esp_clk_cpu_freq + .iram1.5 0x0000000040081df8 0x15 esp-idf/esp32/libesp32.a(clk.c.obj) + 0x0000000040081df8 esp_clk_apb_freq + *fill* 0x0000000040081e0d 0x3 + .iram1.7 0x0000000040081e10 0xf esp-idf/esp32/libesp32.a(clk.c.obj) + 0x0000000040081e10 ets_update_cpu_frequency + *fill* 0x0000000040081e1f 0x1 + .iram1.14 0x0000000040081e20 0x2b esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + 0x0000000040081e20 esp_vApplicationTickHook + *fill* 0x0000000040081e4b 0x1 + .iram1.15 0x0000000040081e4c 0xa0 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + 0xa4 (size before relaxing) + .iram1.24 0x0000000040081eec 0x13 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x0000000040081eff 0x1 + .iram1.21 0x0000000040081f00 0x1c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x23 (size before relaxing) + *fill* 0x0000000040081f1c 0x0 + .iram1.18 0x0000000040081f1c 0x86 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x0000000040081fa2 0x2 + .iram1.22 0x0000000040081fa4 0x1c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x23 (size before relaxing) + *fill* 0x0000000040081fc0 0x0 + .iram1.19 0x0000000040081fc0 0x2c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x30 (size before relaxing) + .iram1.23 0x0000000040081fec 0x1c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x20 (size before relaxing) + .iram1.17 0x0000000040082008 0x31 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x39 (size before relaxing) + 0x0000000040082008 esp_timer_stop + *fill* 0x0000000040082039 0x3 + .iram1.26 0x000000004008203c 0xf esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x000000004008203c esp_timer_get_time + *fill* 0x000000004008204b 0x1 + .iram1.15 0x000000004008204c 0x57 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x67 (size before relaxing) + 0x000000004008204c esp_timer_start_once + *fill* 0x00000000400820a3 0x1 + .iram1.16 0x00000000400820a4 0x69 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x81 (size before relaxing) + 0x00000000400820a4 esp_timer_start_periodic + *fill* 0x000000004008210d 0x3 + .iram1.17 0x0000000040082110 0x1a esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + *fill* 0x000000004008212a 0x2 + .iram1.14 0x000000004008212c 0x51 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x000000004008212c esp_timer_impl_get_counter_reg + *fill* 0x000000004008217d 0x3 + .iram1.15 0x0000000040082180 0x14 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x17 (size before relaxing) + 0x0000000040082180 esp_timer_impl_get_time + *fill* 0x0000000040082194 0x0 + .iram1.16 0x0000000040082194 0xe4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0xf7 (size before relaxing) + 0x0000000040082194 esp_timer_impl_set_alarm + *fill* 0x0000000040082278 0x0 + .iram1.18 0x0000000040082278 0x63 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x0000000040082278 esp_timer_impl_update_apb_freq + 0x0000000040082278 esp_timer_private_update_apb_freq + *fill* 0x00000000400822db 0x1 + .iram1.19 0x00000000400822dc 0xb esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x00000000400822dc esp_timer_impl_get_min_period_us + *fill* 0x00000000400822e7 0x1 + .iram1.15 0x00000000400822e8 0x1e esp-idf/freertos/libfreertos.a(port.c.obj) + 0x00000000400822e8 xPortInterruptedFromISRContext + *fill* 0x0000000040082306 0x2 + .iram1 0x0000000040082308 0x4fc esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x0000000040082308 _xt_panic + 0x0000000040082428 _xt_user_exit + 0x0000000040082740 _xt_medint2_exit + 0x00000000400827f0 _xt_medint3_exit + .iram1.15 0x0000000040082804 0x34 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x43 (size before relaxing) + *fill* 0x0000000040082838 0x0 + .iram1.19 0x0000000040082838 0x9e esp-idf/newlib/libnewlib.a(locks.c.obj) + 0xb6 (size before relaxing) + *fill* 0x00000000400828d6 0x2 + .iram1.24 0x00000000400828d8 0x46 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4e (size before relaxing) + *fill* 0x000000004008291e 0x2 + .iram1.16 0x0000000040082920 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x0000000040082920 _lock_init + *fill* 0x0000000040082933 0x1 + .iram1.17 0x0000000040082934 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x0000000040082934 _lock_init_recursive + *fill* 0x0000000040082947 0x1 + .iram1.18 0x0000000040082948 0x3b esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x43 (size before relaxing) + 0x0000000040082948 _lock_close + 0x0000000040082948 _lock_close_recursive + *fill* 0x0000000040082983 0x1 + .iram1.20 0x0000000040082984 0xe esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x12 (size before relaxing) + 0x0000000040082984 _lock_acquire + *fill* 0x0000000040082992 0x2 + .iram1.21 0x0000000040082994 0xe esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x12 (size before relaxing) + 0x0000000040082994 _lock_acquire_recursive + *fill* 0x00000000400829a2 0x2 + .iram1.22 0x00000000400829a4 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x14 (size before relaxing) + 0x00000000400829a4 _lock_try_acquire + .iram1.23 0x00000000400829b4 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x14 (size before relaxing) + 0x00000000400829b4 _lock_try_acquire_recursive + .iram1.25 0x00000000400829c4 0xf esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x00000000400829c4 _lock_release + *fill* 0x00000000400829d3 0x1 + .iram1.26 0x00000000400829d4 0xf esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x00000000400829d4 _lock_release_recursive + *fill* 0x00000000400829e3 0x1 + .iram1.0 0x00000000400829e4 0x37 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + 0x00000000400829e4 esp_reent_init + *fill* 0x0000000040082a1b 0x1 + .iram1.16 0x0000000040082a1c 0x4a esp-idf/newlib/libnewlib.a(time.c.obj) + 0x0000000040082a1c _gettimeofday_r + *fill* 0x0000000040082a66 0x2 + .iram1.15 0x0000000040082a68 0x29 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x2d (size before relaxing) + 0x0000000040082a68 _times_r + *fill* 0x0000000040082a91 0x3 + .iram1.12 0x0000000040082a94 0xa9 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + 0x0000000040082a94 esp_backtrace_get_next_frame + *fill* 0x0000000040082b3d 0x3 + .iram1.0 0x0000000040082b40 0x93 esp-idf/soc/libsoc.a(cpu_util.c.obj) + 0x0000000040082b40 esp_cpu_stall + *fill* 0x0000000040082bd3 0x1 + .iram1.1 0x0000000040082bd4 0x57 esp-idf/soc/libsoc.a(cpu_util.c.obj) + 0x0000000040082bd4 esp_cpu_unstall + *fill* 0x0000000040082c2b 0x1 + .iram1.2 0x0000000040082c2c 0x21 esp-idf/soc/libsoc.a(cpu_util.c.obj) + 0x0000000040082c2c esp_cpu_reset + *fill* 0x0000000040082c4d 0x3 + .iram1.3 0x0000000040082c50 0xe esp-idf/soc/libsoc.a(cpu_util.c.obj) + 0x0000000040082c50 esp_cpu_in_ocd_debug_mode + *fill* 0x0000000040082c5e 0x2 + .iram1.0 0x0000000040082c60 0x6e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x0000000040082c60 bootloader_flash_cs_timing_config + *fill* 0x0000000040082cce 0x2 + .iram1.1 0x0000000040082cd0 0x3e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x0000000040082cd0 bootloader_flash_clock_config + *fill* 0x0000000040082d0e 0x2 + .iram1.2 0x0000000040082d10 0x240 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x0000000040082d10 bootloader_flash_gpio_config + .iram1.3 0x0000000040082f50 0xb0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x0000000040082f50 bootloader_flash_dummy_config + .iram1.32 0x0000000040083000 0x64 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x6c (size before relaxing) + .iram1.26 0x0000000040083064 0x46 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x52 (size before relaxing) + 0x0000000040083064 spi_flash_op_block_func + *fill* 0x00000000400830aa 0x2 + .iram1.31 0x00000000400830ac 0x66 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x6e (size before relaxing) + *fill* 0x0000000040083112 0x2 + .iram1.27 0x0000000040083114 0xfb esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x10f (size before relaxing) + 0x0000000040083114 spi_flash_disable_interrupts_caches_and_other_cpu + *fill* 0x000000004008320f 0x1 + .iram1.28 0x0000000040083210 0xa1 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0xa9 (size before relaxing) + 0x0000000040083210 spi_flash_enable_interrupts_caches_and_other_cpu + *fill* 0x00000000400832b1 0x3 + .iram1.33 0x00000000400832b4 0x25 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x29 (size before relaxing) + 0x00000000400832b4 spi_flash_cache_enabled + *fill* 0x00000000400832d9 0x3 + .iram1.34 0x00000000400832dc 0xf esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x00000000400832dc spi_flash_enable_cache + *fill* 0x00000000400832eb 0x1 + .iram1.26 0x00000000400832ec 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x00000000400832ec spi_flash_guard_set + *fill* 0x00000000400832f6 0x2 + .iram1.28 0x00000000400832f8 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x00000000400832f8 spi_flash_get_chip_size + *fill* 0x0000000040083302 0x2 + .iram1.34 0x0000000040083304 0x32 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x0000000040083304 spi_flash_erase_sector + *fill* 0x0000000040083336 0x2 + .iram1.32 0x0000000040083338 0x6b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x6f (size before relaxing) + *fill* 0x00000000400833a3 0x1 + .iram1.16 0x00000000400833a4 0x7c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x84 (size before relaxing) + .iram1.15 0x0000000040083420 0x36 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x3e (size before relaxing) + 0x0000000040083420 esp_flash_read_chip_id + *fill* 0x0000000040083456 0x2 + .iram1.18 0x0000000040083458 0x74 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x7c (size before relaxing) + 0x0000000040083458 esp_flash_get_size + .iram1.14 0x00000000400834cc 0xe2 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0xfa (size before relaxing) + 0x00000000400834cc esp_flash_init + *fill* 0x00000000400835ae 0x2 + .iram1.20 0x00000000400835b0 0x1e8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x1f0 (size before relaxing) + 0x00000000400835b0 esp_flash_erase_region + .iram1.25 0x0000000040083798 0x117 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x11b (size before relaxing) + 0x0000000040083798 esp_flash_read + *fill* 0x00000000400838af 0x1 + .iram1.26 0x00000000400838b0 0xf0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0xf4 (size before relaxing) + 0x00000000400838b0 esp_flash_write + .iram1.33 0x00000000400839a0 0x16 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x1a (size before relaxing) + 0x00000000400839a0 spi_flash_erase_range + *fill* 0x00000000400839b6 0x2 + .iram1.34 0x00000000400839b8 0x17 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x1b (size before relaxing) + 0x00000000400839b8 spi_flash_write + *fill* 0x00000000400839cf 0x1 + .iram1.35 0x00000000400839d0 0x17 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x1b (size before relaxing) + 0x00000000400839d0 spi_flash_read + *fill* 0x00000000400839e7 0x1 + .iram1.2 0x00000000400839e8 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.3 0x00000000400839f8 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.4 0x0000000040083a08 0x1d esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *fill* 0x0000000040083a25 0x3 + .iram1.5 0x0000000040083a28 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *fill* 0x0000000040083a46 0x2 + .iram1.11 0x0000000040083a48 0x1d esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + *fill* 0x0000000040083a65 0x3 + .iram1.10 0x0000000040083a68 0x3f esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x57 (size before relaxing) + *fill* 0x0000000040083aa7 0x1 + .iram1.9 0x0000000040083aa8 0x23 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x2f (size before relaxing) + *fill* 0x0000000040083acb 0x1 + .iram1.26 0x0000000040083acc 0x25 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + *fill* 0x0000000040083af1 0x3 + .iram1.25 0x0000000040083af4 0x84 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x8c (size before relaxing) + .iram1.34 0x0000000040083b78 0x64 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.31 0x0000000040083bdc 0x1a esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x22 (size before relaxing) + *fill* 0x0000000040083bf6 0x2 + .iram1.28 0x0000000040083bf8 0x232 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x256 (size before relaxing) + 0x0000000040083bf8 spi_flash_mmap_pages + *fill* 0x0000000040083e2a 0x2 + .iram1.27 0x0000000040083e2c 0x75 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x79 (size before relaxing) + 0x0000000040083e2c spi_flash_mmap + *fill* 0x0000000040083ea1 0x3 + .iram1.29 0x0000000040083ea4 0xa0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0xa6 (size before relaxing) + 0x0000000040083ea4 spi_flash_munmap + *fill* 0x0000000040083f44 0x0 + .iram1.35 0x0000000040083f44 0x6b esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x77 (size before relaxing) + 0x0000000040083f44 spi_flash_check_and_flush_cache + *fill* 0x0000000040083faf 0x1 + .iram1.29 0x0000000040083fb0 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000040083fbe 0x2 + .iram1.17 0x0000000040083fc0 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x10 (size before relaxing) + 0x0000000040083fc0 wifi_malloc + .iram1.18 0x0000000040083fcc 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x0000000040083fcc wifi_realloc + *fill* 0x0000000040083fdd 0x3 + .iram1.19 0x0000000040083fe0 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x0000000040083fe0 wifi_calloc + *fill* 0x0000000040083ff1 0x3 + .iram1.33 0x0000000040083ff4 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000040084006 0x2 + .iram1.20 0x0000000040084008 0x1c esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x20 (size before relaxing) + .iram1.36 0x0000000040084024 0x22 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000040084046 0x2 + .iram1.35 0x0000000040084048 0x14 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.34 0x000000004008405c 0x14 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .iram1.32 0x0000000040084070 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000040084082 0x2 + .iram1.31 0x0000000040084084 0xa esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xe (size before relaxing) + *fill* 0x000000004008408e 0x2 + .iram1.30 0x0000000040084090 0x12 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x00000000400840a2 0x2 + .iram1.16 0x00000000400840a4 0x8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xb (size before relaxing) + *fill* 0x00000000400840ac 0x0 + .iram1.15 0x00000000400840ac 0x8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xb (size before relaxing) + *fill* 0x00000000400840b4 0x0 + .iram1.28 0x00000000400840b4 0x15 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x00000000400840c9 0x3 + .iram1.27 0x00000000400840cc 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x10 (size before relaxing) + .iram1.26 0x00000000400840d8 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x00000000400840e9 0x3 + .iram1.23 0x00000000400840ec 0x8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xb (size before relaxing) + *fill* 0x00000000400840f4 0x0 + .iram1.22 0x00000000400840f4 0x17 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x22 (size before relaxing) + *fill* 0x000000004008410b 0x1 + .iram1.21 0x000000004008410c 0x1c esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x24 (size before relaxing) + .iram1.19 0x0000000040084128 0x1e esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x25 (size before relaxing) + 0x0000000040084128 phy_enter_critical + *fill* 0x0000000040084146 0x2 + .iram1.20 0x0000000040084148 0x1c esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x23 (size before relaxing) + 0x0000000040084148 phy_exit_critical + *fill* 0x0000000040084164 0x0 + .iram1.23 0x0000000040084164 0x54 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x63 (size before relaxing) + 0x0000000040084164 esp_phy_common_clock_enable + *fill* 0x00000000400841b8 0x0 + .iram1.24 0x00000000400841b8 0x61 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x74 (size before relaxing) + 0x00000000400841b8 esp_phy_common_clock_disable + *fill* 0x0000000040084219 0x3 + .iram1.22 0x000000004008421c 0x23 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000004008423f 0x1 + .iram1.15 0x0000000040084240 0x78 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.16 0x00000000400842b8 0xac esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xb0 (size before relaxing) + 0x00000000400842b8 heap_caps_malloc + .iram1.17 0x0000000040084364 0x41 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x49 (size before relaxing) + 0x0000000040084364 heap_caps_malloc_default + *fill* 0x00000000400843a5 0x3 + .iram1.23 0x00000000400843a8 0x37 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x3e (size before relaxing) + 0x00000000400843a8 heap_caps_free + *fill* 0x00000000400843df 0x1 + .iram1.24 0x00000000400843e0 0x116 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x12a (size before relaxing) + 0x00000000400843e0 heap_caps_realloc + *fill* 0x00000000400844f6 0x2 + .iram1.18 0x00000000400844f8 0x5e esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x62 (size before relaxing) + 0x00000000400844f8 heap_caps_realloc_default + *fill* 0x0000000040084556 0x2 + .iram1.25 0x0000000040084558 0x30 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x34 (size before relaxing) + 0x0000000040084558 heap_caps_calloc + .iram1.0 0x0000000040084588 0x42 esp-idf/esp32/libesp32.a(hw_random.c.obj) + 0x46 (size before relaxing) + 0x0000000040084588 esp_random + *fill* 0x00000000400845ca 0x2 + .iram1.0 0x00000000400845cc 0x31 esp-idf/esp32/libesp32.a(reset_reason.c.obj) + 0x00000000400845cc esp_reset_reason_set_hint + *fill* 0x00000000400845fd 0x3 + .iram1.1 0x0000000040084600 0x2f esp-idf/esp32/libesp32.a(reset_reason.c.obj) + 0x0000000040084600 esp_reset_reason_get_hint + *fill* 0x000000004008462f 0x1 + .iram1.26 0x0000000040084630 0x52 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + *fill* 0x0000000040084682 0x2 + .iram1.27 0x0000000040084684 0x7b esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + *fill* 0x00000000400846ff 0x1 + .iram1.28 0x0000000040084700 0x70 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .iram1.29 0x0000000040084770 0x100 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x118 (size before relaxing) + .iram1.31 0x0000000040084870 0x24 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x28 (size before relaxing) + .iram1.30 0x0000000040084894 0x3f esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x47 (size before relaxing) + 0x0000000040084894 esp_deep_sleep_start + *fill* 0x00000000400848d3 0x1 + .iram1.15 0x00000000400848d4 0x24 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + 0x2a (size before relaxing) + 0x00000000400848d4 esp_restart + *fill* 0x00000000400848f8 0x0 + .iram1.15 0x00000000400848f8 0x15 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + *fill* 0x000000004008490d 0x3 + .iram1.16 0x0000000040084910 0x5a esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x6e (size before relaxing) + 0x0000000040084910 os_timer_arm_us + 0x0000000040084910 ets_timer_arm_us + *fill* 0x000000004008496a 0x2 + .iram1.17 0x000000004008496c 0x66 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x76 (size before relaxing) + 0x000000004008496c ets_timer_arm + 0x000000004008496c os_timer_arm + *fill* 0x00000000400849d2 0x2 + .iram1.18 0x00000000400849d4 0x14 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x18 (size before relaxing) + 0x00000000400849d4 ets_timer_disarm + 0x00000000400849d4 os_timer_disarm + .iram1.0 0x00000000400849e8 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + 0x00000000400849e8 esp_mbedtls_mem_calloc + .iram1.1 0x00000000400849fc 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + 0xe (size before relaxing) + 0x00000000400849fc esp_mbedtls_mem_free + *fill* 0x0000000040084a06 0x2 + .iram1.4 0x0000000040084a08 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x0000000040084a0c esp_wifi_internal_update_mac_time + .iram1.2 0x0000000040084a1c 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x0000000040084a20 ieee80211_sta_is_connected + .iram1.5 0x0000000040084a34 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x13 (size before relaxing) + 0x0000000040084a34 lmacProcessCollisions + *fill* 0x0000000040084a43 0x1 + .iram1.6 0x0000000040084a44 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x13 (size before relaxing) + 0x0000000040084a44 lmacProcessAllTxTimeout + *fill* 0x0000000040084a53 0x1 + .iram1.7 0x0000000040084a54 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x13 (size before relaxing) + 0x0000000040084a54 lmacPostTxComplete + *fill* 0x0000000040084a63 0x1 + .iram1.8 0x0000000040084a64 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x28 (size before relaxing) + 0x0000000040084a68 lmacProcessRxSucData + .iram1.10 0x0000000040084a84 0x50 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x58 (size before relaxing) + 0x0000000040084a8c lmacAdjustTimestamp + .iram1.25 0x0000000040084ad4 0x1dc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x0000000040084af8 pp_post + .iram1.3 0x0000000040084cb0 0x17 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + 0x0000000040084cb4 wifi_gpio_debug + *fill* 0x0000000040084cc7 0x1 + .iram1.7 0x0000000040084cc8 0x79 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x81 (size before relaxing) + 0x0000000040084ccc wdev_push_promis_misc_buf + *fill* 0x0000000040084d41 0x3 + .iram1.20 0x0000000040084d44 0x396 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x3f2 (size before relaxing) + 0x0000000040084d9c wDev_ProcessFiq + *fill* 0x00000000400850da 0x2 + .iram1 0x00000000400850dc 0x7f6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x90a (size before relaxing) + 0x000000004008510c pll_correct_dcap + 0x00000000400851f8 phy_unforce_wifi_chan + 0x0000000040085274 phy_dis_hw_set_freq + 0x00000000400852b0 phy_force_wifi_chan + 0x0000000040085368 ram_chip_i2c_writeReg + 0x0000000040085420 ram_chip_i2c_readReg + 0x000000004008550c phy_en_hw_set_freq + 0x0000000040085528 wifi_track_pll_cap + 0x00000000400855c4 phy_get_fetx_delay + 0x0000000040085600 btpwr_tsens_track + 0x000000004008570c btpwr_pll_track + 0x00000000400857dc bt_track_tx_power + 0x0000000040085868 bt_track_pll_cap + *fill* 0x00000000400858d2 0x2 + .iram1 0x00000000400858d4 0x405 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x435 (size before relaxing) + 0x00000000400858d8 ram_disable_agc + 0x00000000400858f0 ram_enable_agc + 0x0000000040085920 ram_write_gain_mem + 0x0000000040085998 wr_bt_tx_atten + 0x00000000400859e4 set_tx_gain_table + 0x0000000040085ac0 set_most_pwr_reg + 0x0000000040085c70 bb_wdt_rst_enable + 0x0000000040085c90 bb_wdt_int_enable + 0x0000000040085cb4 bb_wdt_timeout_clear + 0x0000000040085ccc bb_wdt_get_status + *fill* 0x0000000040085cd9 0x3 + .iram1 0x0000000040085cdc 0xd5c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0xdfc (size before relaxing) + 0x0000000040085ce4 get_target_power_offset + 0x0000000040085d2c ram_txbbgain_to_index + 0x0000000040085d64 ram_set_chan_cal_interp + 0x0000000040085e2c write_txrate_power_offset + 0x0000000040085f98 get_phy_target_power + 0x0000000040086004 ram_read_sar_dout + 0x0000000040086034 get_rate_fcc_index + 0x0000000040086114 get_rate_target_power + 0x0000000040086160 get_chan_pwr_index + 0x00000000400861e4 write_wifi_dig_gain + 0x0000000040086228 set_chan_dig_gain + 0x0000000040086464 tx_pwctrl_cal + 0x0000000040086820 wifi_11g_rate_chg + 0x0000000040086838 ram_set_txcap_reg + 0x00000000400868c0 phy_pwdet_onetime_en + 0x0000000040086918 tx_pwctrl_background + *fill* 0x0000000040086a38 0x0 + *fill* 0x0000000040086a38 0x0 + *fill* 0x0000000040086a38 0x0 + *fill* 0x0000000040086a38 0x0 + *fill* 0x0000000040086a38 0x0 + *fill* 0x0000000040086a38 0x0 + *fill* 0x0000000040086a38 0x0 + *fill* 0x0000000040086a38 0x0 + *fill* 0x0000000040086a38 0x0 + *fill* 0x0000000040086a38 0x0 + *fill* 0x0000000040086a38 0x0 + *fill* 0x0000000040086a38 0x0 + *fill* 0x0000000040086a38 0x0 + *fill* 0x0000000040086a38 0x0 + *fill* 0x0000000040086a38 0x0 + *fill* 0x0000000040086a38 0x0 + *fill* 0x0000000040086a38 0x0 + *fill* 0x0000000040086a38 0x0 + *fill* 0x0000000040086a38 0x0 + *fill* 0x0000000040086a38 0x0 + *fill* 0x0000000040086a38 0x0 + .iram1.20 0x0000000040086a38 0x13 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x0000000040086a4b 0x0 + *fill* 0x0000000040086a4b 0x0 + *fill* 0x0000000040086a4b 0x0 + *fill* 0x0000000040086a4b 0x0 + *fill* 0x0000000040086a4b 0x0 + *fill* 0x0000000040086a4b 0x0 + *fill* 0x0000000040086a4b 0x0 + *fill* 0x0000000040086a4b 0x0 + *fill* 0x0000000040086a4b 0x0 + *fill* 0x0000000040086a4b 0x0 + *fill* 0x0000000040086a4b 0x0 + *fill* 0x0000000040086a4b 0x0 + *fill* 0x0000000040086a4b 0x0 + *fill* 0x0000000040086a4b 0x0 + *fill* 0x0000000040086a4b 0x0 + *fill* 0x0000000040086a4b 0x1 + .iram1 0x0000000040086a4c 0x2e esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + 0x0000000040086a4c xt_debugexception + 0x0000000040086a6c xt_highint5 + 0x0000000040086a74 _xt_nmi + 0x0000000040086a74 xt_nmi + *fill* 0x0000000040086a7a 0x0 + *fill* 0x0000000040086a7a 0x0 + *fill* 0x0000000040086a7a 0x0 + *fill* 0x0000000040086a7a 0x0 + *fill* 0x0000000040086a7a 0x0 + *fill* 0x0000000040086a7a 0x0 + *fill* 0x0000000040086a7a 0x0 + *fill* 0x0000000040086a7a 0x0 + *fill* 0x0000000040086a7a 0x0 + *fill* 0x0000000040086a7a 0x0 + *fill* 0x0000000040086a7a 0x0 + *fill* 0x0000000040086a7a 0x0 + *fill* 0x0000000040086a7a 0x0 + *fill* 0x0000000040086a7a 0x0 + *fill* 0x0000000040086a7a 0x0 + *fill* 0x0000000040086a7a 0x0 + *fill* 0x0000000040086a7a 0x0 + *fill* 0x0000000040086a7a 0x0 + *fill* 0x0000000040086a7a 0x0 + *fill* 0x0000000040086a7a 0x0 + *fill* 0x0000000040086a7a 0x0 + *fill* 0x0000000040086a7a 0x0 + *fill* 0x0000000040086a7a 0x0 + *fill* 0x0000000040086a7a 0x0 + *fill* 0x0000000040086a7a 0x0 + *fill* 0x0000000040086a7a 0x0 + *fill* 0x0000000040086a7a 0x0 + *fill* 0x0000000040086a7a 0x0 + *fill* 0x0000000040086a7a 0x0 + *fill* 0x0000000040086a7a 0x2 + .iram1.12 0x0000000040086a7c 0x20 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.13 0x0000000040086a9c 0x18 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *fill* 0x0000000040086ab4 0x0 + *libesp_ringbuf.a:(.literal .literal.* .text .text.*) + .text.prvReturnItemByteBuf + 0x0000000040086ab4 0x43 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x0000000040086af7 0x1 + .text.prvGetItemByteBuf + 0x0000000040086af8 0xd7 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x0000000040086bcf 0x1 + .text.prvCheckItemFitsByteBuffer + 0x0000000040086bd0 0x5e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x0000000040086c2e 0x2 + .text.prvReturnItemDefault + 0x0000000040086c30 0x12e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x0000000040086d5e 0x2 + .text.prvGetItemDefault + 0x0000000040086d60 0x12e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x0000000040086e8e 0x2 + .text.prvAcquireItemNoSplit + 0x0000000040086e90 0xa0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvSendItemDoneNoSplit + 0x0000000040086f30 0x110 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCheckItemFitsDefault + 0x0000000040087040 0xa4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetFreeSize + 0x00000000400870e4 0x38 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCopyItemByteBuf + 0x000000004008711c 0x7a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x0000000040087196 0x2 + .text.prvCopyItemAllowSplit + 0x0000000040087198 0xec esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCopyItemNoSplit + 0x0000000040087284 0x22 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x26 (size before relaxing) + *fill* 0x00000000400872a6 0x2 + .text.prvInitializeNewRingbuffer + 0x00000000400872a8 0xbd esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0xc1 (size before relaxing) + *fill* 0x0000000040087365 0x3 + .text.prvReceiveGeneric + 0x0000000040087368 0x12c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x138 (size before relaxing) + .text.prvReceiveGenericFromISR + 0x0000000040087494 0xd4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0xdc (size before relaxing) + .text.xRingbufferCreate + 0x0000000040087568 0xb4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0xcc (size before relaxing) + 0x0000000040087568 xRingbufferCreate + .text.xRingbufferSend + 0x000000004008761c 0xf8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x108 (size before relaxing) + 0x000000004008761c xRingbufferSend + .text.xRingbufferSendFromISR + 0x0000000040087714 0xb8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0xc0 (size before relaxing) + 0x0000000040087714 xRingbufferSendFromISR + .text.xRingbufferReceive + 0x00000000400877cc 0x3e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x42 (size before relaxing) + 0x00000000400877cc xRingbufferReceive + *fill* 0x000000004008780a 0x2 + .text.xRingbufferReceiveFromISR + 0x000000004008780c 0x3a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x3e (size before relaxing) + 0x000000004008780c xRingbufferReceiveFromISR + *fill* 0x0000000040087846 0x2 + .text.vRingbufferReturnItem + 0x0000000040087848 0x52 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x5a (size before relaxing) + 0x0000000040087848 vRingbufferReturnItem + *fill* 0x000000004008789a 0x2 + .text.vRingbufferReturnItemFromISR + 0x000000004008789c 0x4e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x56 (size before relaxing) + 0x000000004008789c vRingbufferReturnItemFromISR + *fill* 0x00000000400878ea 0x2 + .text.vRingbufferDelete + 0x00000000400878ec 0x2f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x3b (size before relaxing) + 0x00000000400878ec vRingbufferDelete + *fill* 0x000000004008791b 0x1 + .text.xRingbufferGetMaxItemSize + 0x000000004008791c 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x000000004008791c xRingbufferGetMaxItemSize + .text.prvCheckItemAvail + 0x0000000040087938 0x38 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetCurMaxSizeNoSplit + 0x0000000040087970 0x3e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x00000000400879ae 0x2 + .text.prvGetCurMaxSizeAllowSplit + 0x00000000400879b0 0x50 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetCurMaxSizeByteBuf + 0x0000000040087a00 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x0000000040087a20 0x0 + *fill* 0x0000000040087a20 0x0 + *fill* 0x0000000040087a20 0x0 + *fill* 0x0000000040087a20 0x0 + *fill* 0x0000000040087a20 0x0 + *fill* 0x0000000040087a20 0x0 + *fill* 0x0000000040087a20 0x0 + *fill* 0x0000000040087a20 0x0 + *fill* 0x0000000040087a20 0x0 + *fill* 0x0000000040087a20 0x0 + *fill* 0x0000000040087a20 0x0 + *fill* 0x0000000040087a20 0x0 + *fill* 0x0000000040087a20 0x0 + *libgcov.a:(.literal .literal.* .text .text.*) + *libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.*(.literal .literal.* .text .text.*) + *libapp_trace.a:SEGGER_SYSVIEW.*(.literal .literal.* .text .text.*) + *libapp_trace.a:app_trace.*(.literal .literal.* .text .text.*) + *libapp_trace.a:app_trace_util.*(.literal .literal.* .text .text.*) + *libapp_trace.a:SEGGER_RTT_esp32.*(.literal .literal.* .text .text.*) + *libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.*(.literal .literal.* .text .text.*) + *liblog.a:log_freertos.*(.literal.esp_log_early_timestamp .text.esp_log_early_timestamp) + .text.esp_log_early_timestamp + 0x0000000040087a20 0x1e esp-idf/log/liblog.a(log_freertos.c.obj) + 0x0000000040087a20 esp_log_early_timestamp + *liblog.a:log_freertos.*(.literal.esp_log_impl_lock_timeout .text.esp_log_impl_lock_timeout) + *fill* 0x0000000040087a3e 0x2 + .text.esp_log_impl_lock_timeout + 0x0000000040087a40 0x31 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x35 (size before relaxing) + 0x0000000040087a40 esp_log_impl_lock_timeout + *fill* 0x0000000040087a71 0x0 + *liblog.a:log_freertos.*(.literal.esp_log_timestamp .text.esp_log_timestamp) + *fill* 0x0000000040087a71 0x3 + .text.esp_log_timestamp + 0x0000000040087a74 0x4f esp-idf/log/liblog.a(log_freertos.c.obj) + 0x5b (size before relaxing) + 0x0000000040087a74 esp_log_timestamp + *fill* 0x0000000040087ac3 0x0 + *liblog.a:log_freertos.*(.literal.esp_log_impl_unlock .text.esp_log_impl_unlock) + *fill* 0x0000000040087ac3 0x1 + .text.esp_log_impl_unlock + 0x0000000040087ac4 0x16 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x0000000040087ac4 esp_log_impl_unlock + *fill* 0x0000000040087ada 0x0 + *liblog.a:log.*(.literal.esp_log_write .text.esp_log_write) + *fill* 0x0000000040087ada 0x2 + .text.esp_log_write + 0x0000000040087adc 0x16a esp-idf/log/liblog.a(log.c.obj) + 0x16e (size before relaxing) + 0x0000000040087adc esp_log_write + *fill* 0x0000000040087c46 0x0 + *liblog.a:log_freertos.*(.literal.esp_log_impl_lock .text.esp_log_impl_lock) + *fill* 0x0000000040087c46 0x2 + .text.esp_log_impl_lock + 0x0000000040087c48 0x28 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x2c (size before relaxing) + 0x0000000040087c48 esp_log_impl_lock + *fill* 0x0000000040087c70 0x0 + *libpp.a:(.wifirxiram .wifirxiram.*) + .wifirxiram.3 0x0000000040087c70 0x3a6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x3c2 (size before relaxing) + 0x0000000040087c98 esf_buf_alloc + *fill* 0x0000000040088016 0x2 + .wifirxiram.4 0x0000000040088018 0xf2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x10e (size before relaxing) + 0x0000000040088020 esf_buf_recycle + *fill* 0x000000004008810a 0x2 + .wifirxiram.4 0x000000004008810c 0x66 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x6e (size before relaxing) + *fill* 0x0000000040088172 0x2 + .wifirxiram.3 0x0000000040088174 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x32 (size before relaxing) + 0x0000000040088178 pm_sleep_for + *fill* 0x000000004008819e 0x2 + .wifirxiram.5 0x00000000400881a0 0xfb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x107 (size before relaxing) + 0x00000000400881b0 pm_dream + *fill* 0x000000004008829b 0x1 + .wifirxiram.6 0x000000004008829c 0x25 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x30 (size before relaxing) + 0x000000004008829c pm_check_state + *fill* 0x00000000400882c1 0x3 + .wifirxiram.7 0x00000000400882c4 0x6b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x82 (size before relaxing) + 0x00000000400882c8 pm_rx_data_process + *fill* 0x000000004008832f 0x1 + .wifirxiram.8 0x0000000040088330 0x2b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x3f (size before relaxing) + 0x0000000040088330 pm_on_data_rx + *fill* 0x000000004008835b 0x1 + .wifirxiram.5 0x000000004008835c 0x32 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x36 (size before relaxing) + 0x0000000040088360 ppProcessRxPktHdr + *fill* 0x000000004008838e 0x2 + .wifirxiram.11 + 0x0000000040088390 0x114 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x130 (size before relaxing) + 0x00000000400883a0 ppRxProtoProc + .wifirxiram.20 + 0x00000000400884a4 0x37 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x3f (size before relaxing) + 0x00000000400884a4 ppEnqueueRxq + *fill* 0x00000000400884db 0x1 + .wifirxiram.21 + 0x00000000400884dc 0x54 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x64 (size before relaxing) + 0x00000000400884dc ppDequeueRxq_Locked + .wifirxiram.13 + 0x0000000040088530 0x981 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0xa29 (size before relaxing) + 0x0000000040088550 ppRxPkt + *fill* 0x0000000040088eb1 0x3 + .wifirxiram.7 0x0000000040088eb4 0x60 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x64 (size before relaxing) + 0x0000000040088ebc rc_get_trc + .wifirxiram.13 + 0x0000000040088f14 0x329 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x351 (size before relaxing) + 0x0000000040088f44 wDev_Rxbuf_Init + *fill* 0x000000004008923d 0x3 + .wifirxiram.21 + 0x0000000040089240 0x1c8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x1f0 (size before relaxing) + 0x0000000040089264 wDev_AppendRxBlocks + .wifirxiram.12 + 0x0000000040089408 0xe8e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xf6a (size before relaxing) + 0x000000004008945c wdevProcessRxSucDataAll + *fill* 0x000000004008a296 0x2 + .wifirxiram.22 + 0x000000004008a298 0xc0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xd4 (size before relaxing) + 0x000000004008a2a4 wDevCheckBlockError + *fill* 0x000000004008a358 0x0 + *fill* 0x000000004008a358 0x0 + *fill* 0x000000004008a358 0x0 + *fill* 0x000000004008a358 0x0 + *fill* 0x000000004008a358 0x0 + *fill* 0x000000004008a358 0x0 + *fill* 0x000000004008a358 0x0 + *fill* 0x000000004008a358 0x0 + *fill* 0x000000004008a358 0x0 + *fill* 0x000000004008a358 0x0 + *fill* 0x000000004008a358 0x0 + *fill* 0x000000004008a358 0x0 + *libpp.a:(.wifi0iram .wifi0iram.*) + .wifi0iram.12 0x000000004008a358 0x9c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0xb4 (size before relaxing) + .wifi0iram.2 0x000000004008a3f4 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x15 (size before relaxing) + 0x000000004008a3f4 GetAccess + *fill* 0x000000004008a405 0x3 + .wifi0iram.3 0x000000004008a408 0xb0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0xe8 (size before relaxing) + 0x000000004008a408 lmacRecycleMPDU + .wifi0iram.9 0x000000004008a4b8 0x5d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x6d (size before relaxing) + 0x000000004008a4b8 lmacMSDUAged + *fill* 0x000000004008a515 0x3 + .wifi0iram.11 0x000000004008a518 0x23b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x263 (size before relaxing) + 0x000000004008a52c lmacTxFrame + *fill* 0x000000004008a753 0x1 + .wifi0iram.4 0x000000004008a754 0x326 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x35e (size before relaxing) + *fill* 0x000000004008aa7a 0x2 + .wifi0iram.13 0x000000004008aa7c 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x20 (size before relaxing) + 0x000000004008aa7c is_lmac_idle + .wifi0iram.7 0x000000004008aa98 0xb7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0xc3 (size before relaxing) + 0x000000004008aa98 ppTxProtoProc + *fill* 0x000000004008ab4f 0x1 + .wifi0iram.23 0x000000004008ab50 0x19d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x1a5 (size before relaxing) + 0x000000004008ab50 ppSearchTxQueue + *fill* 0x000000004008aced 0x3 + .wifi0iram.22 0x000000004008acf0 0x120 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x134 (size before relaxing) + 0x000000004008acf8 ppSearchTxframe + .wifi0iram.24 0x000000004008ae10 0x1de /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x206 (size before relaxing) + 0x000000004008ae18 ppMapTxQueue + *fill* 0x000000004008afee 0x2 + .wifi0iram.26 0x000000004008aff0 0x13f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x16b (size before relaxing) + 0x000000004008affc ppProcTxSecFrame + *fill* 0x000000004008b12f 0x1 + .wifi0iram.27 0x000000004008b130 0x68 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x6c (size before relaxing) + 0x000000004008b13c ppCalFrameTimes + .wifi0iram.18 0x000000004008b198 0x61c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x658 (size before relaxing) + 0x000000004008b1a8 ppCalTxAMPDULength + .wifi0iram.10 0x000000004008b7b4 0x232 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x276 (size before relaxing) + 0x000000004008b7c0 ppProcessTxQ + *fill* 0x000000004008b9e6 0x2 + .wifi0iram.9 0x000000004008b9e8 0x42 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x46 (size before relaxing) + 0x000000004008b9f0 ppProcessAllTxQ + *fill* 0x000000004008ba2a 0x2 + .wifi0iram.19 0x000000004008ba2c 0x5a3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x61e (size before relaxing) + 0x000000004008ba38 ppResortTxAMPDU + *fill* 0x000000004008bfcf 0x1 + .wifi0iram.6 0x000000004008bfd0 0x28f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x2cb (size before relaxing) + 0x000000004008c008 ppTask + *fill* 0x000000004008c25f 0x1 + .wifi0iram.8 0x000000004008c260 0x2b2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x31a (size before relaxing) + 0x000000004008c26c ppTxPkt + *fill* 0x000000004008c512 0x2 + .wifi0iram.2 0x000000004008c514 0xd6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0xe2 (size before relaxing) + 0x000000004008c518 rcUpdateTxDone + *fill* 0x000000004008c5ea 0x2 + .wifi0iram.3 0x000000004008c5ec 0x902 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x97a (size before relaxing) + 0x000000004008c61c rcUpdateTxDoneAmpdu2 + *fill* 0x000000004008ceee 0x2 + .wifi0iram.4 0x000000004008cef0 0x47e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x496 (size before relaxing) + 0x000000004008cf28 rcGetSched + *fill* 0x000000004008d36e 0x0 + *fill* 0x000000004008d36e 0x0 + *fill* 0x000000004008d36e 0x0 + *fill* 0x000000004008d36e 0x0 + *fill* 0x000000004008d36e 0x0 + *fill* 0x000000004008d36e 0x0 + *fill* 0x000000004008d36e 0x0 + *fill* 0x000000004008d36e 0x0 + *fill* 0x000000004008d36e 0x0 + *fill* 0x000000004008d36e 0x0 + *fill* 0x000000004008d36e 0x0 + *fill* 0x000000004008d36e 0x0 + *fill* 0x000000004008d36e 0x0 + *fill* 0x000000004008d36e 0x0 + *fill* 0x000000004008d36e 0x0 + *fill* 0x000000004008d36e 0x2 + .wifi0iram.5 0x000000004008d370 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000004008d370 trc_isTxAmpduOperational + *fill* 0x000000004008d382 0x2 + .wifi0iram.6 0x000000004008d384 0x17 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x000000004008d384 trc_tid_isTxAmpduOperational + *libgcc.a:_divsf3.*(.literal .literal.* .text .text.*) + *libgcc.a:lib2funcs.*(.literal .literal.* .text .text.*) + *fill* 0x000000004008d39b 0x1 + .text 0x000000004008d39c 0x68 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(lib2funcs.o) + 0x000000004008d39c __xtensa_libgcc_window_spill + 0x000000004008d3bc __xtensa_nonlocal_goto + 0x000000004008d3fc __xtensa_sync_caches + *libesp_event.a:default_event_loop.*(.literal.esp_event_isr_post .text.esp_event_isr_post) + *libesp_event.a:esp_event.*(.literal.esp_event_isr_post_to .text.esp_event_isr_post_to) + *librtc.a:(.literal .literal.* .text .text.*) + .text.coex_bt_high_prio + 0x000000004008d404 0x123 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + 0x137 (size before relaxing) + 0x000000004008d42c coex_bt_high_prio + *fill* 0x000000004008d527 0x1 + .text.temprature_sens_read + 0x000000004008d528 0xbd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + 0xe1 (size before relaxing) + 0x000000004008d538 temprature_sens_read + *fill* 0x000000004008d5e5 0x0 + *libheap.a:multi_heap_poisoning.*(.literal .literal.* .text .text.*) + *libheap.a:multi_heap.*(.literal .literal.* .text .text.*) + *fill* 0x000000004008d5e5 0x3 + .text.get_prev_free_block + 0x000000004008d5e8 0x6f esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x7a (size before relaxing) + *fill* 0x000000004008d657 0x1 + .text.split_if_necessary + 0x000000004008d658 0x137 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x143 (size before relaxing) + *fill* 0x000000004008d78f 0x1 + .text.assert_valid_block + 0x000000004008d790 0xb0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0xb4 (size before relaxing) + .text.merge_adjacent + 0x000000004008d840 0x122 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x132 (size before relaxing) + *fill* 0x000000004008d962 0x2 + .text.multi_heap_get_allocated_size_impl + 0x000000004008d964 0x39 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x3d (size before relaxing) + 0x000000004008d964 multi_heap_get_allocated_size + 0x000000004008d964 multi_heap_get_allocated_size_impl + *fill* 0x000000004008d99d 0x3 + .text.multi_heap_malloc_impl + 0x000000004008d9a0 0x119 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x129 (size before relaxing) + 0x000000004008d9a0 multi_heap_malloc_impl + 0x000000004008d9a0 multi_heap_malloc + *fill* 0x000000004008dab9 0x3 + .text.multi_heap_free_impl + 0x000000004008dabc 0x13c esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x154 (size before relaxing) + 0x000000004008dabc multi_heap_free + 0x000000004008dabc multi_heap_free_impl + .text.multi_heap_realloc_impl + 0x000000004008dbf8 0x240 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x254 (size before relaxing) + 0x000000004008dbf8 multi_heap_realloc_impl + 0x000000004008dbf8 multi_heap_realloc + *fill* 0x000000004008de38 0x0 + *fill* 0x000000004008de38 0x0 + *fill* 0x000000004008de38 0x0 + *fill* 0x000000004008de38 0x0 + *fill* 0x000000004008de38 0x0 + .text.multi_heap_register_impl + 0x000000004008de38 0x60 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x000000004008de38 multi_heap_register_impl + 0x000000004008de38 multi_heap_register + .text.multi_heap_set_lock + 0x000000004008de98 0x7 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x000000004008de98 multi_heap_set_lock + *fill* 0x000000004008de9f 0x0 + *fill* 0x000000004008de9f 0x1 + .text.multi_heap_free_size_impl + 0x000000004008dea0 0xe esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x000000004008dea0 multi_heap_free_size_impl + 0x000000004008dea0 multi_heap_free_size + *fill* 0x000000004008deae 0x2 + .text.multi_heap_minimum_free_size_impl + 0x000000004008deb0 0xe esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x000000004008deb0 multi_heap_minimum_free_size + 0x000000004008deb0 multi_heap_minimum_free_size_impl + *libnet80211.a:(.wifirxiram .wifirxiram.*) + *fill* 0x000000004008debe 0x2 + .wifirxiram.2 0x000000004008dec0 0x84 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x8c (size before relaxing) + .wifirxiram.4 0x000000004008df44 0x93 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0xab (size before relaxing) + *fill* 0x000000004008dfd7 0x1 + .wifirxiram.5 0x000000004008dfd8 0x1a9 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x1c5 (size before relaxing) + *fill* 0x000000004008e181 0x3 + .wifirxiram.6 0x000000004008e184 0x384 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x3b4 (size before relaxing) + 0x000000004008e1ac ieee80211_ampdu_reorder + .wifirxiram.2 0x000000004008e508 0x1b86 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x1c3e (size before relaxing) + 0x000000004008e654 sta_input + *fill* 0x000000004009008e 0x2 + .wifirxiram.3 0x0000000040090090 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x20 (size before relaxing) + 0x0000000040090090 sta_rx_cb + *fill* 0x00000000400900a8 0x0 + *fill* 0x00000000400900a8 0x0 + *fill* 0x00000000400900a8 0x0 + *fill* 0x00000000400900a8 0x0 + *libnet80211.a:(.wifi0iram .wifi0iram.*) + .wifi0iram.2 0x00000000400900a8 0xd22 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0xdde (size before relaxing) + 0x0000000040090100 ieee80211_output_process + *fill* 0x0000000040090dca 0x2 + .wifi0iram.2 0x0000000040090dcc 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x1e (size before relaxing) + 0x0000000040090dcc chm_is_at_home_channel + *fill* 0x0000000040090de6 0x2 + .wifi0iram.3 0x0000000040090de8 0x99 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xa5 (size before relaxing) + 0x0000000040090dfc cnx_node_search + *fill* 0x0000000040090e81 0x3 + .wifi0iram.4 0x0000000040090e84 0x6d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x85 (size before relaxing) + 0x0000000040090e88 cnx_node_is_existing + *fill* 0x0000000040090ef1 0x0 + *fill* 0x0000000040090ef1 0x0 + *fill* 0x0000000040090ef1 0x0 + *libesp32.a:panic.*(.literal .literal.* .text .text.*) + *fill* 0x0000000040090ef1 0x3 + .text.panicPutChar + 0x0000000040090ef4 0x1e esp-idf/esp32/libesp32.a(panic.c.obj) + *fill* 0x0000000040090f12 0x2 + .text.panicPutStr + 0x0000000040090f14 0x1a esp-idf/esp32/libesp32.a(panic.c.obj) + *fill* 0x0000000040090f2e 0x2 + .text.panicPutHex + 0x0000000040090f30 0x2c esp-idf/esp32/libesp32.a(panic.c.obj) + 0x2f (size before relaxing) + *fill* 0x0000000040090f5c 0x0 + .text.panicPutDec + 0x0000000040090f5c 0x40 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x46 (size before relaxing) + *fill* 0x0000000040090f9c 0x0 + .text.illegal_instruction_helper + 0x0000000040090f9c 0x57 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x73 (size before relaxing) + *fill* 0x0000000040090ff3 0x1 + .text.reconfigureAllWdts + 0x0000000040090ff4 0xcc esp-idf/esp32/libesp32.a(panic.c.obj) + .text.putEntry + 0x00000000400910c0 0x1b esp-idf/esp32/libesp32.a(panic.c.obj) + 0x27 (size before relaxing) + *fill* 0x00000000400910db 0x1 + .text.invoke_abort + 0x00000000400910dc 0x1d esp-idf/esp32/libesp32.a(panic.c.obj) + *fill* 0x00000000400910f9 0x3 + .text.haltOtherCore + 0x00000000400910fc 0x1a esp-idf/esp32/libesp32.a(panic.c.obj) + *fill* 0x0000000040091116 0x2 + .text.doBacktrace + 0x0000000040091118 0x129 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x138 (size before relaxing) + *fill* 0x0000000040091241 0x3 + .text.commonErrorHandler_dump + 0x0000000040091244 0xfe esp-idf/esp32/libesp32.a(panic.c.obj) + 0x14e (size before relaxing) + *fill* 0x0000000040091342 0x2 + .text.esp_panic_dig_reset + 0x0000000040091344 0x32 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x36 (size before relaxing) + *fill* 0x0000000040091376 0x2 + .text.commonErrorHandler + 0x0000000040091378 0x7a esp-idf/esp32/libesp32.a(panic.c.obj) + 0xb9 (size before relaxing) + *fill* 0x00000000400913f2 0x2 + .text.esp_error_check_failed_print + 0x00000000400913f4 0x5a esp-idf/esp32/libesp32.a(panic.c.obj) + 0x5e (size before relaxing) + *fill* 0x000000004009144e 0x2 + .text.abort 0x0000000040091450 0x38 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x3e (size before relaxing) + 0x0000000040091450 abort + *fill* 0x0000000040091488 0x0 + .text.vApplicationStackOverflowHook + 0x0000000040091488 0x17 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x23 (size before relaxing) + 0x0000000040091488 vApplicationStackOverflowHook + *fill* 0x000000004009149f 0x1 + .text.panicHandler + 0x00000000400914a0 0x17d esp-idf/esp32/libesp32.a(panic.c.obj) + 0x1c0 (size before relaxing) + 0x00000000400914a0 panicHandler + *fill* 0x000000004009161d 0x3 + .text.xt_unhandled_exception + 0x0000000040091620 0x88 esp-idf/esp32/libesp32.a(panic.c.obj) + 0xb8 (size before relaxing) + 0x0000000040091620 xt_unhandled_exception + .text.esp_set_watchpoint + 0x00000000400916a8 0x59 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x00000000400916a8 esp_set_watchpoint + *fill* 0x0000000040091701 0x3 + .text._esp_error_check_failed + 0x0000000040091704 0x16 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x1e (size before relaxing) + 0x0000000040091704 _esp_error_check_failed + *fill* 0x000000004009171a 0x0 + *fill* 0x000000004009171a 0x0 + *fill* 0x000000004009171a 0x0 + *fill* 0x000000004009171a 0x0 + *fill* 0x000000004009171a 0x2 + .text.setFirstBreakpoint + 0x000000004009171c 0x13 esp-idf/esp32/libesp32.a(panic.c.obj) + *fill* 0x000000004009172f 0x0 + *fill* 0x000000004009172f 0x0 + *fill* 0x000000004009172f 0x0 + *fill* 0x000000004009172f 0x0 + *fill* 0x000000004009172f 0x0 + *fill* 0x000000004009172f 0x0 + *fill* 0x000000004009172f 0x0 + *fill* 0x000000004009172f 0x0 + *fill* 0x000000004009172f 0x0 + *fill* 0x000000004009172f 0x0 + *fill* 0x000000004009172f 0x0 + *fill* 0x000000004009172f 0x0 + *libspi_flash.a:spi_flash_rom_patch.*(.literal .literal.* .text .text.*) + *libspi_flash.a:spi_flash_chip_issi.*(.literal .literal.* .text .text.*) + *fill* 0x000000004009172f 0x1 + .text.spi_flash_chip_issi_probe + 0x0000000040091730 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x0000000040091730 spi_flash_chip_issi_probe + *fill* 0x0000000040091759 0x3 + .text.spi_flash_chip_issi_set_io_mode + 0x000000004009175c 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x18 (size before relaxing) + 0x000000004009175c spi_flash_chip_issi_set_io_mode + .text.spi_flash_chip_issi_get_io_mode + 0x0000000040091770 0x1c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x20 (size before relaxing) + 0x0000000040091770 spi_flash_chip_issi_get_io_mode + *fill* 0x000000004009178c 0x0 + *fill* 0x000000004009178c 0x0 + *libspi_flash.a:spi_flash_chip_gd.*(.literal .literal.* .text .text.*) + .text.spi_flash_chip_gd_probe + 0x000000004009178c 0x41 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x000000004009178c spi_flash_chip_gd_probe + *fill* 0x00000000400917cd 0x3 + .text.spi_flash_chip_gd_set_io_mode + 0x00000000400917d0 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x00000000400917d0 spi_flash_chip_gd_set_io_mode + .text.spi_flash_chip_gd_get_io_mode + 0x0000000040091814 0x1c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x20 (size before relaxing) + 0x0000000040091814 spi_flash_chip_gd_get_io_mode + *fill* 0x0000000040091830 0x0 + *libspi_flash.a:spi_flash_chip_generic.*(.literal .literal.* .text .text.*) + .text.spi_flash_chip_generic_detect_size + 0x0000000040091830 0x25 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040091830 spi_flash_chip_generic_detect_size + *fill* 0x0000000040091855 0x3 + .text.spi_flash_chip_generic_erase_chip + 0x0000000040091858 0x48 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040091858 spi_flash_chip_generic_erase_chip + .text.spi_flash_chip_generic_write_encrypted + 0x00000000400918a0 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x00000000400918a0 spi_flash_chip_generic_write_encrypted + .text.spi_flash_common_read_status_16b_rdsr_rdsr2 + 0x00000000400918a8 0x34 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x38 (size before relaxing) + 0x00000000400918a8 spi_flash_common_read_status_16b_rdsr_rdsr2 + .text.spi_flash_common_write_status_16b_wrsr + 0x00000000400918dc 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x00000000400918dc spi_flash_common_write_status_16b_wrsr + *fill* 0x00000000400918f1 0x3 + .text.spi_flash_chip_generic_get_write_protect + 0x00000000400918f4 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x00000000400918f4 spi_flash_chip_generic_get_write_protect + .text.spi_flash_chip_generic_wait_idle + 0x000000004009192c 0x58 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x5c (size before relaxing) + 0x000000004009192c spi_flash_chip_generic_wait_idle + .text.spi_flash_chip_generic_config_host_io_mode + 0x0000000040091984 0x5e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040091984 spi_flash_chip_generic_config_host_io_mode + *fill* 0x00000000400919e2 0x2 + .text.spi_flash_chip_generic_read + 0x00000000400919e4 0x5d esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x65 (size before relaxing) + 0x00000000400919e4 spi_flash_chip_generic_read + *fill* 0x0000000040091a41 0x3 + .text.spi_flash_common_read_status_8b_rdsr2 + 0x0000000040091a44 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040091a44 spi_flash_common_read_status_8b_rdsr2 + *fill* 0x0000000040091a59 0x3 + .text.spi_flash_chip_generic_get_io_mode + 0x0000000040091a5c 0x1c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x20 (size before relaxing) + 0x0000000040091a5c spi_flash_chip_generic_get_io_mode + .text.spi_flash_common_read_status_8b_rdsr + 0x0000000040091a78 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040091a78 spi_flash_common_read_status_8b_rdsr + *fill* 0x0000000040091a8d 0x3 + .text.spi_flash_common_write_status_8b_wrsr + 0x0000000040091a90 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040091a90 spi_flash_common_write_status_8b_wrsr + *fill* 0x0000000040091aa5 0x3 + .text.spi_flash_common_write_status_8b_wrsr2 + 0x0000000040091aa8 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040091aa8 spi_flash_common_write_status_8b_wrsr2 + *fill* 0x0000000040091abd 0x3 + .text.spi_flash_chip_generic_set_io_mode + 0x0000000040091ac0 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040091ac0 spi_flash_chip_generic_set_io_mode + .text.spi_flash_chip_generic_probe + 0x0000000040091ad8 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040091ad8 spi_flash_chip_generic_probe + *fill* 0x0000000040091adf 0x1 + .text.spi_flash_chip_generic_reset + 0x0000000040091ae0 0x4c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040091ae0 spi_flash_chip_generic_reset + *fill* 0x0000000040091b2c 0x0 + .text.spi_flash_chip_generic_erase_sector + 0x0000000040091b2c 0x4c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040091b2c spi_flash_chip_generic_erase_sector + .text.spi_flash_chip_generic_erase_block + 0x0000000040091b78 0x4c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040091b78 spi_flash_chip_generic_erase_block + .text.spi_flash_chip_generic_page_program + 0x0000000040091bc4 0x31 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040091bc4 spi_flash_chip_generic_page_program + *fill* 0x0000000040091bf5 0x3 + .text.spi_flash_chip_generic_write + 0x0000000040091bf8 0x7a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040091bf8 spi_flash_chip_generic_write + *fill* 0x0000000040091c72 0x2 + .text.spi_flash_chip_generic_set_write_protect + 0x0000000040091c74 0x3b esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040091c74 spi_flash_chip_generic_set_write_protect + *fill* 0x0000000040091caf 0x1 + .text.spi_flash_common_read_qe_sr + 0x0000000040091cb0 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x0000000040091cd9 0x3 + .text.spi_flash_common_write_qe_sr + 0x0000000040091cdc 0x31 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x0000000040091d0d 0x0 + *fill* 0x0000000040091d0d 0x3 + .text.spi_flash_generic_wait_host_idle + 0x0000000040091d10 0x3a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040091d10 spi_flash_generic_wait_host_idle + *fill* 0x0000000040091d4a 0x0 + *fill* 0x0000000040091d4a 0x0 + *fill* 0x0000000040091d4a 0x0 + *fill* 0x0000000040091d4a 0x0 + *fill* 0x0000000040091d4a 0x0 + *fill* 0x0000000040091d4a 0x0 + *fill* 0x0000000040091d4a 0x2 + .text.spi_flash_common_set_io_mode + 0x0000000040091d4c 0x78 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040091d4c spi_flash_common_set_io_mode + *libspi_flash.a:memspi_host_driver.*(.literal .literal.* .text .text.*) + .text.memspi_host_read_id_hs + 0x0000000040091dc4 0x79 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x7d (size before relaxing) + 0x0000000040091dc4 memspi_host_read_id_hs + *fill* 0x0000000040091e3d 0x3 + .text.memspi_host_flush_cache + 0x0000000040091e40 0x18 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x1c (size before relaxing) + 0x0000000040091e40 memspi_host_flush_cache + .text.memspi_host_read_status_hs + 0x0000000040091e58 0x2d esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x0000000040091e58 memspi_host_read_status_hs + *fill* 0x0000000040091e85 0x0 + *fill* 0x0000000040091e85 0x0 + *libsoc.a:rtc_init.*(.literal .literal.* .text .text.*) + *fill* 0x0000000040091e85 0x3 + .text.rtc_init + 0x0000000040091e88 0x344 esp-idf/soc/libsoc.a(rtc_init.c.obj) + 0x368 (size before relaxing) + 0x0000000040091e88 rtc_init + .text.rtc_vddsdio_get_config + 0x00000000400921cc 0xd7 esp-idf/soc/libsoc.a(rtc_init.c.obj) + 0x00000000400921cc rtc_vddsdio_get_config + *fill* 0x00000000400922a3 0x1 + .text.rtc_vddsdio_set_config + 0x00000000400922a4 0x46 esp-idf/soc/libsoc.a(rtc_init.c.obj) + 0x00000000400922a4 rtc_vddsdio_set_config + *fill* 0x00000000400922ea 0x0 + *libsoc.a:spi_flash_hal_iram.*(.literal .literal.* .text .text.*) + *fill* 0x00000000400922ea 0x2 + .text.spi_flash_hal_configure_host_io_mode + 0x00000000400922ec 0x1b4 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x00000000400922ec spi_flash_hal_configure_host_io_mode + .text.spi_flash_hal_common_command + 0x00000000400924a0 0x1c3 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x00000000400924a0 spi_flash_hal_common_command + *fill* 0x0000000040092663 0x1 + .text.spi_flash_hal_read + 0x0000000040092664 0xf3 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x0000000040092664 spi_flash_hal_read + *fill* 0x0000000040092757 0x1 + .text.spi_flash_hal_erase_chip + 0x0000000040092758 0x22 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x0000000040092758 spi_flash_hal_erase_chip + *fill* 0x000000004009277a 0x2 + .text.spi_flash_hal_erase_sector + 0x000000004009277c 0x5a esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x000000004009277c spi_flash_hal_erase_sector + *fill* 0x00000000400927d6 0x2 + .text.spi_flash_hal_erase_block + 0x00000000400927d8 0x52 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x00000000400927d8 spi_flash_hal_erase_block + *fill* 0x000000004009282a 0x2 + .text.spi_flash_hal_program_page + 0x000000004009282c 0xa7 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x000000004009282c spi_flash_hal_program_page + *fill* 0x00000000400928d3 0x1 + .text.spi_flash_hal_set_write_protect + 0x00000000400928d4 0x40 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x00000000400928d4 spi_flash_hal_set_write_protect + .text.spi_flash_hal_host_idle + 0x0000000040092914 0x3a esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x0000000040092914 spi_flash_hal_host_idle + *fill* 0x000000004009294e 0x2 + .text.spi_flash_hal_poll_cmd_done + 0x0000000040092950 0x11 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x0000000040092950 spi_flash_hal_poll_cmd_done + *fill* 0x0000000040092961 0x3 + .text.spi_flash_hal_device_config + 0x0000000040092964 0x74 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x0000000040092964 spi_flash_hal_device_config + *fill* 0x00000000400929d8 0x0 + *fill* 0x00000000400929d8 0x0 + *fill* 0x00000000400929d8 0x0 + *fill* 0x00000000400929d8 0x0 + *fill* 0x00000000400929d8 0x0 + *fill* 0x00000000400929d8 0x0 + *libsoc.a:rtc_time.*(.literal .literal.* .text .text.*) + .text.rtc_clk_cal_internal + 0x00000000400929d8 0x1d4 esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0x1dc (size before relaxing) + .text.rtc_clk_cal + 0x0000000040092bac 0x4e esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0x52 (size before relaxing) + 0x0000000040092bac rtc_clk_cal + *fill* 0x0000000040092bfa 0x2 + .text.rtc_time_us_to_slowclk + 0x0000000040092bfc 0x1f esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0x0000000040092bfc rtc_time_us_to_slowclk + *fill* 0x0000000040092c1b 0x1 + .text.rtc_time_get + 0x0000000040092c1c 0x50 esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0x0000000040092c1c rtc_time_get + .text.rtc_clk_wait_for_slow_cycle + 0x0000000040092c6c 0x79 esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0x0000000040092c6c rtc_clk_wait_for_slow_cycle + *fill* 0x0000000040092ce5 0x0 + *fill* 0x0000000040092ce5 0x0 + *fill* 0x0000000040092ce5 0x3 + .text.rtc_time_slowclk_to_us + 0x0000000040092ce8 0x1e esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0x0000000040092ce8 rtc_time_slowclk_to_us + *fill* 0x0000000040092d06 0x0 + *libsoc.a:ledc_hal_iram.*(.literal .literal.* .text .text.*) + *libsoc.a:rtc_wdt.*(.literal .literal.* .text .text.*) + *fill* 0x0000000040092d06 0x2 + .text.rtc_wdt_get_protect_status + 0x0000000040092d08 0x1b esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040092d08 rtc_wdt_get_protect_status + *fill* 0x0000000040092d23 0x1 + .text.rtc_wdt_protect_off + 0x0000000040092d24 0x10 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040092d24 rtc_wdt_protect_off + .text.rtc_wdt_protect_on + 0x0000000040092d34 0xf esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040092d34 rtc_wdt_protect_on + *fill* 0x0000000040092d43 0x1 + .text.rtc_wdt_enable + 0x0000000040092d44 0x2b esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040092d44 rtc_wdt_enable + *fill* 0x0000000040092d6f 0x1 + .text.rtc_wdt_flashboot_mode_enable + 0x0000000040092d70 0x18 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040092d70 rtc_wdt_flashboot_mode_enable + .text.rtc_wdt_feed + 0x0000000040092d88 0x2a esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x32 (size before relaxing) + 0x0000000040092d88 rtc_wdt_feed + *fill* 0x0000000040092db2 0x2 + .text.rtc_wdt_set_time + 0x0000000040092db4 0x61 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040092db4 rtc_wdt_set_time + *fill* 0x0000000040092e15 0x3 + .text.rtc_wdt_set_stage + 0x0000000040092e18 0xc1 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040092e18 rtc_wdt_set_stage + *fill* 0x0000000040092ed9 0x3 + .text.rtc_wdt_disable + 0x0000000040092edc 0x6a esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x7e (size before relaxing) + 0x0000000040092edc rtc_wdt_disable + *fill* 0x0000000040092f46 0x2 + .text.rtc_wdt_set_length_of_reset_signal + 0x0000000040092f48 0x71 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040092f48 rtc_wdt_set_length_of_reset_signal + *fill* 0x0000000040092fb9 0x3 + .text.rtc_wdt_is_on + 0x0000000040092fbc 0x28 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040092fbc rtc_wdt_is_on + *fill* 0x0000000040092fe4 0x0 + *fill* 0x0000000040092fe4 0x0 + *fill* 0x0000000040092fe4 0x0 + *fill* 0x0000000040092fe4 0x0 + *fill* 0x0000000040092fe4 0x0 + *fill* 0x0000000040092fe4 0x0 + *fill* 0x0000000040092fe4 0x0 + *fill* 0x0000000040092fe4 0x0 + *fill* 0x0000000040092fe4 0x0 + *libsoc.a:spi_flash_hal_gpspi.*(.literal .literal.* .text .text.*) + *libsoc.a:spi_slave_hal_iram.*(.literal .literal.* .text .text.*) + *libsoc.a:lldesc.*(.literal .literal.* .text .text.*) + *libsoc.a:rtc_periph.*(.literal .literal.* .text .text.*) + *libsoc.a:rtc_pm.*(.literal .literal.* .text .text.*) + *libsoc.a:rtc_clk_init.*(.literal .literal.* .text .text.*) + *libsoc.a:uart_hal_iram.*(.iram1 .iram1.*) + *libsoc.a:spi_hal_iram.*(.literal .literal.* .text .text.*) + *libsoc.a:rtc_sleep.*(.literal .literal.* .text .text.*) + .text.rtc_sleep_pd + 0x0000000040092fe4 0x1bb esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + *fill* 0x000000004009319f 0x1 + .text.rtc_sleep_init + 0x00000000400931a0 0x483 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + 0x487 (size before relaxing) + 0x00000000400931a0 rtc_sleep_init + *fill* 0x0000000040093623 0x1 + .text.rtc_sleep_set_wakeup_time + 0x0000000040093624 0x15 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + 0x0000000040093624 rtc_sleep_set_wakeup_time + *fill* 0x0000000040093639 0x3 + .text.rtc_sleep_start + 0x000000004009363c 0x7d esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + 0x000000004009363c rtc_sleep_start + *fill* 0x00000000400936b9 0x0 + *fill* 0x00000000400936b9 0x0 + *fill* 0x00000000400936b9 0x0 + *libsoc.a:cpu_util.*(.literal .literal.* .text .text.*) + *libsoc.a:rtc_clk.*(.literal .literal.* .text .text.*) + *fill* 0x00000000400936b9 0x3 + .text.rtc_clk_32k_enable_common + 0x00000000400936bc 0x88 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .text.rtc_clk_bbpll_disable + 0x0000000040093744 0x3e esp-idf/soc/libsoc.a(rtc_clk.c.obj) + *fill* 0x0000000040093782 0x2 + .text.rtc_clk_bbpll_enable + 0x0000000040093784 0x66 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + *fill* 0x00000000400937ea 0x2 + .text.rtc_clk_32k_enable + 0x00000000400937ec 0x3d esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x00000000400937ec rtc_clk_32k_enable + *fill* 0x0000000040093829 0x3 + .text.rtc_clk_32k_enable_external + 0x000000004009382c 0xe esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x12 (size before relaxing) + 0x000000004009382c rtc_clk_32k_enable_external + *fill* 0x000000004009383a 0x2 + .text.rtc_clk_8m_enable + 0x000000004009383c 0x9c esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x000000004009383c rtc_clk_8m_enable + .text.rtc_clk_slow_freq_set + 0x00000000400938d8 0x48 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x00000000400938d8 rtc_clk_slow_freq_set + .text.rtc_clk_slow_freq_get + 0x0000000040093920 0x10 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x0000000040093920 rtc_clk_slow_freq_get + .text.rtc_clk_slow_freq_get_hz + 0x0000000040093930 0x29 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x2d (size before relaxing) + 0x0000000040093930 rtc_clk_slow_freq_get_hz + *fill* 0x0000000040093959 0x3 + .text.rtc_clk_fast_freq_set + 0x000000004009395c 0x2c esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x000000004009395c rtc_clk_fast_freq_set + .text.rtc_clk_bbpll_configure + 0x0000000040093988 0x19d esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x1a1 (size before relaxing) + 0x0000000040093988 rtc_clk_bbpll_configure + *fill* 0x0000000040093b25 0x3 + .text.rtc_clk_xtal_freq_get + 0x0000000040093b28 0x36 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x0000000040093b28 rtc_get_xtal + 0x0000000040093b28 rtc_clk_xtal_freq_get + *fill* 0x0000000040093b5e 0x2 + .text.rtc_clk_cpu_freq_mhz_to_config + 0x0000000040093b60 0x64 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x0000000040093b60 rtc_clk_cpu_freq_mhz_to_config + .text.rtc_clk_cpu_freq_get_config + 0x0000000040093bc4 0xa6 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0xb6 (size before relaxing) + 0x0000000040093bc4 rtc_clk_cpu_freq_get_config + *fill* 0x0000000040093c6a 0x2 + .text.rtc_clk_apb_freq_update + 0x0000000040093c6c 0x19 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x0000000040093c6c rtc_clk_apb_freq_update + *fill* 0x0000000040093c85 0x3 + .text.rtc_clk_cpu_freq_to_xtal + 0x0000000040093c88 0x87 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x8b (size before relaxing) + 0x0000000040093c88 rtc_clk_cpu_freq_to_xtal + *fill* 0x0000000040093d0f 0x1 + .text.rtc_clk_cpu_freq_set_xtal + 0x0000000040093d10 0x13 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x1f (size before relaxing) + 0x0000000040093d10 rtc_clk_cpu_freq_set_xtal + *fill* 0x0000000040093d23 0x1 + .text.rtc_clk_cpu_freq_to_pll_mhz + 0x0000000040093d24 0x9c esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0xa8 (size before relaxing) + .text.rtc_clk_cpu_freq_to_8m + 0x0000000040093dc0 0x58 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x5c (size before relaxing) + .text.rtc_clk_cpu_freq_set_config + 0x0000000040093e18 0x5c esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x77 (size before relaxing) + 0x0000000040093e18 rtc_clk_cpu_freq_set_config + *fill* 0x0000000040093e74 0x0 + *fill* 0x0000000040093e74 0x0 + *fill* 0x0000000040093e74 0x0 + *fill* 0x0000000040093e74 0x0 + *fill* 0x0000000040093e74 0x0 + *fill* 0x0000000040093e74 0x0 + *fill* 0x0000000040093e74 0x0 + *fill* 0x0000000040093e74 0x0 + *fill* 0x0000000040093e74 0x0 + *fill* 0x0000000040093e74 0x0 + *fill* 0x0000000040093e74 0x0 + *fill* 0x0000000040093e74 0x0 + *libsoc.a:i2c_hal_iram.*(.literal .literal.* .text .text.*) + *libxtensa.a:eri.*(.literal .literal.* .text .text.*) + *libnewlib.a:heap.*(.literal .literal.* .text .text.*) + *fill* 0x0000000040093e74 0x0 + .text.malloc 0x0000000040093e74 0xc esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x10 (size before relaxing) + 0x0000000040093e74 pvalloc + 0x0000000040093e74 valloc + 0x0000000040093e74 malloc + .text.realloc 0x0000000040093e80 0x11 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x0000000040093e80 realloc + *fill* 0x0000000040093e91 0x3 + .text.free 0x0000000040093e94 0xa esp-idf/newlib/libnewlib.a(heap.c.obj) + 0xe (size before relaxing) + 0x0000000040093e94 free + 0x0000000040093e94 cfree + *fill* 0x0000000040093e9e 0x2 + .text._malloc_r + 0x0000000040093ea0 0xc esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x10 (size before relaxing) + 0x0000000040093ea0 _malloc_r + .text._free_r 0x0000000040093eac 0xa esp-idf/newlib/libnewlib.a(heap.c.obj) + 0xe (size before relaxing) + 0x0000000040093eac _free_r + *fill* 0x0000000040093eb6 0x2 + .text._realloc_r + 0x0000000040093eb8 0x11 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x0000000040093eb8 _realloc_r + *fill* 0x0000000040093ec9 0x3 + .text._calloc_r + 0x0000000040093ecc 0x2c esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x30 (size before relaxing) + 0x0000000040093ecc _calloc_r + .text.calloc 0x0000000040093ef8 0x14 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x18 (size before relaxing) + 0x0000000040093ef8 calloc + *fill* 0x0000000040093f0c 0x0 + *fill* 0x0000000040093f0c 0x0 + *fill* 0x0000000040093f0c 0x0 + *fill* 0x0000000040093f0c 0x0 + *fill* 0x0000000040093f0c 0x0 + .text.newlib_include_heap_impl + 0x0000000040093f0c 0x5 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x0000000040093f0c newlib_include_heap_impl + *libhal.a:(.literal .literal.* .text .text.*) + *fill* 0x0000000040093f11 0x3 + .text 0x0000000040093f14 0x137 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) + 0x0000000040093f14 xthal_spill_registers_into_stack_nw + 0x0000000040093f14 xthal_window_spill_nw + 0x0000000040094028 xthal_window_spill + *fill* 0x000000004009404b 0x0 + *fill* 0x000000004009404b 0x1 + .text 0x000000004009404c 0x8 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(int_asm--set_intclear.o) + 0x000000004009404c xthal_set_intclear + .text 0x0000000040094054 0x3e /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--restore_extra_nw.o) + 0x0000000040094054 xthal_restore_extra_nw + *fill* 0x0000000040094092 0x2 + .text 0x0000000040094094 0x3e /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--save_extra_nw.o) + 0x0000000040094094 xthal_save_extra_nw + *libfreertos.a:(.literal .literal.* .text .text.*) + *fill* 0x00000000400940d2 0x2 + .text.vPortTaskWrapper + 0x00000000400940d4 0x26 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x32 (size before relaxing) + *fill* 0x00000000400940fa 0x2 + .text.pxPortInitialiseStack + 0x00000000400940fc 0x86 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x00000000400940fc pxPortInitialiseStack + *fill* 0x0000000040094182 0x2 + .text.xPortStartScheduler + 0x0000000040094184 0x23 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x2f (size before relaxing) + 0x0000000040094184 xPortStartScheduler + *fill* 0x00000000400941a7 0x1 + .text.xPortSysTickHandler + 0x00000000400941a8 0x10 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x16 (size before relaxing) + 0x00000000400941a8 xPortSysTickHandler + *fill* 0x00000000400941b8 0x0 + .text.vPortYieldOtherCore + 0x00000000400941b8 0xa esp-idf/freertos/libfreertos.a(port.c.obj) + 0xe (size before relaxing) + 0x00000000400941b8 vPortYieldOtherCore + *fill* 0x00000000400941c2 0x2 + .text.vPortReleaseTaskMPUSettings + 0x00000000400941c4 0xa esp-idf/freertos/libfreertos.a(port.c.obj) + 0xe (size before relaxing) + 0x00000000400941c4 vPortReleaseTaskMPUSettings + *fill* 0x00000000400941ce 0x2 + .text.xPortInIsrContext + 0x00000000400941d0 0x28 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x00000000400941d0 xPortInIsrContext + .text.vPortSetStackWatchpoint + 0x00000000400941f8 0x1a esp-idf/freertos/libfreertos.a(port.c.obj) + 0x00000000400941f8 vPortSetStackWatchpoint + *fill* 0x0000000040094212 0x2 + .text.vPortEnterCritical + 0x0000000040094214 0xba esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040094214 vPortEnterCritical + *fill* 0x00000000400942ce 0x2 + .text.vPortExitCritical + 0x00000000400942d0 0x8a esp-idf/freertos/libfreertos.a(port.c.obj) + 0x00000000400942d0 vPortExitCritical + *fill* 0x000000004009435a 0x2 + .text 0x000000004009435c 0x1d0 esp-idf/freertos/libfreertos.a(portasm.S.obj) + 0x000000004009435c _frxt_setup_switch + 0x0000000040094374 _frxt_int_enter + 0x00000000400943bc _frxt_int_exit + 0x000000004009440c _frxt_timer_int + 0x0000000040094434 _frxt_tick_timer_init + 0x000000004009444c _frxt_dispatch + 0x0000000040094494 vPortYield + 0x00000000400944e0 vPortYieldFromInt + 0x0000000040094500 _frxt_task_coproc_state + .text 0x000000004009452c 0x16b esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + 0x000000004009452c _xt_context_save + 0x00000000400945d4 _xt_context_restore + 0x0000000040094618 _xt_coproc_init + 0x000000004009462c _xt_coproc_release + 0x0000000040094658 _xt_coproc_savecs + 0x0000000040094678 _xt_coproc_restorecs + *fill* 0x0000000040094697 0x1 + .text._xt_tick_divisor_init + 0x0000000040094698 0x1c esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + 0x1f (size before relaxing) + 0x0000000040094698 _xt_tick_divisor_init + *fill* 0x00000000400946b4 0x0 + .text.xt_unhandled_interrupt + 0x00000000400946b4 0x16 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + 0x00000000400946b4 xt_unhandled_interrupt + *fill* 0x00000000400946ca 0x2 + .text.xt_set_interrupt_handler + 0x00000000400946cc 0x4f esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + 0x00000000400946cc xt_set_interrupt_handler + *fill* 0x000000004009471b 0x1 + .text.prvIsQueueFull + 0x000000004009471c 0x2a esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x0000000040094746 0x2 + .text.prvCopyDataToQueue + 0x0000000040094748 0xa2 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x00000000400947ea 0x2 + .text.prvNotifyQueueSetContainer + 0x00000000400947ec 0x79 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x80 (size before relaxing) + *fill* 0x0000000040094865 0x3 + .text.prvCopyDataFromQueue + 0x0000000040094868 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueGenericReset + 0x000000004009488c 0xa2 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xaa (size before relaxing) + 0x000000004009488c xQueueGenericReset + *fill* 0x000000004009492e 0x2 + .text.prvInitialiseNewQueue + 0x0000000040094930 0x22 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x26 (size before relaxing) + *fill* 0x0000000040094952 0x2 + .text.xQueueGenericCreate + 0x0000000040094954 0x43 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x47 (size before relaxing) + 0x0000000040094954 xQueueGenericCreate + *fill* 0x0000000040094997 0x1 + .text.xQueueGetMutexHolder + 0x0000000040094998 0x23 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040094998 xQueueGetMutexHolder + *fill* 0x00000000400949bb 0x1 + .text.xQueueCreateCountingSemaphore + 0x00000000400949bc 0x58 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x00000000400949bc xQueueCreateCountingSemaphore + .text.xQueueGenericSend + 0x0000000040094a14 0x168 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x198 (size before relaxing) + 0x0000000040094a14 xQueueGenericSend + .text.prvInitialiseMutex + 0x0000000040094b7c 0x3a esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x3e (size before relaxing) + *fill* 0x0000000040094bb6 0x2 + .text.xQueueCreateMutex + 0x0000000040094bb8 0x16 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1a (size before relaxing) + 0x0000000040094bb8 xQueueCreateMutex + *fill* 0x0000000040094bce 0x2 + .text.xQueueGiveMutexRecursive + 0x0000000040094bd0 0x44 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x48 (size before relaxing) + 0x0000000040094bd0 xQueueGiveMutexRecursive + .text.xQueueGenericSendFromISR + 0x0000000040094c14 0xce esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xd6 (size before relaxing) + 0x0000000040094c14 xQueueGenericSendFromISR + *fill* 0x0000000040094ce2 0x2 + .text.xQueueGiveFromISR + 0x0000000040094ce4 0xb2 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xb6 (size before relaxing) + 0x0000000040094ce4 xQueueGiveFromISR + *fill* 0x0000000040094d96 0x2 + .text.xQueueGenericReceive + 0x0000000040094d98 0x134 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x168 (size before relaxing) + 0x0000000040094d98 xQueueGenericReceive + .text.xQueueTakeMutexRecursive + 0x0000000040094ecc 0x49 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040094ecc xQueueTakeMutexRecursive + *fill* 0x0000000040094f15 0x3 + .text.xQueueReceiveFromISR + 0x0000000040094f18 0x92 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x9a (size before relaxing) + 0x0000000040094f18 xQueueReceiveFromISR + *fill* 0x0000000040094faa 0x2 + .text.uxQueueMessagesWaiting + 0x0000000040094fac 0x2f esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x33 (size before relaxing) + 0x0000000040094fac uxQueueMessagesWaiting + *fill* 0x0000000040094fdb 0x1 + .text.uxQueueSpacesAvailable + 0x0000000040094fdc 0x34 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x38 (size before relaxing) + 0x0000000040094fdc uxQueueSpacesAvailable + .text.vQueueDelete + 0x0000000040095010 0x1f esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x22 (size before relaxing) + 0x0000000040095010 vQueueDelete + *fill* 0x000000004009502f 0x1 + .text.vQueueWaitForMessageRestricted + 0x0000000040095030 0x23 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x2a (size before relaxing) + 0x0000000040095030 vQueueWaitForMessageRestricted + *fill* 0x0000000040095053 0x1 + .text.prvListTaskWithinSingleList + 0x0000000040095054 0x8b esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x00000000400950df 0x1 + .text.prvResetNextTaskUnblockTime + 0x00000000400950e0 0x34 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvDeleteTLS + 0x0000000040095114 0x3f esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x0000000040095153 0x1 + .text.prvInitialiseNewTask + 0x0000000040095154 0xc2 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xce (size before relaxing) + *fill* 0x0000000040095216 0x2 + .text.prvInitialiseTaskLists + 0x0000000040095218 0x5a esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x72 (size before relaxing) + *fill* 0x0000000040095272 0x2 + .text.prvDeleteTCB + 0x0000000040095274 0x4b esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x57 (size before relaxing) + *fill* 0x00000000400952bf 0x1 + .text.prvCheckTasksWaitingTermination + 0x00000000400952c0 0xca esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xd2 (size before relaxing) + *fill* 0x000000004009538a 0x2 + .text.prvAddCurrentTaskToDelayedList + 0x000000004009538c 0x6a esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x6e (size before relaxing) + *fill* 0x00000000400953f6 0x2 + .text.prvIdleTask + 0x00000000400953f8 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x12 (size before relaxing) + *fill* 0x0000000040095407 0x1 + .text.prvWriteNameToBuffer + 0x0000000040095408 0x2f esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x0000000040095437 0x1 + .text.taskYIELD_OTHER_CORE + 0x0000000040095438 0x54 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x58 (size before relaxing) + 0x0000000040095438 taskYIELD_OTHER_CORE + .text.prvAddNewTaskToReadyList + 0x000000004009548c 0x16c esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x17f (size before relaxing) + *fill* 0x00000000400955f8 0x0 + .text.xTaskCreatePinnedToCore + 0x00000000400955f8 0x69 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x79 (size before relaxing) + 0x00000000400955f8 xTaskCreatePinnedToCore + *fill* 0x0000000040095661 0x3 + .text.vTaskStartScheduler + 0x0000000040095664 0x7a esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x7e (size before relaxing) + 0x0000000040095664 vTaskStartScheduler + *fill* 0x00000000400956de 0x2 + .text.vTaskSuspendAll + 0x00000000400956e0 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x00000000400956e0 vTaskSuspendAll + .text.xTaskGetTickCount + 0x0000000040095708 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040095708 xTaskGetTickCount + *fill* 0x0000000040095715 0x3 + .text.xTaskGetTickCountFromISR + 0x0000000040095718 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040095718 xTaskGetTickCountFromISR + *fill* 0x0000000040095725 0x3 + .text.uxTaskGetNumberOfTasks + 0x0000000040095728 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040095728 uxTaskGetNumberOfTasks + *fill* 0x0000000040095735 0x3 + .text.uxTaskGetSystemState + 0x0000000040095738 0xb4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xc7 (size before relaxing) + 0x0000000040095738 uxTaskGetSystemState + *fill* 0x00000000400957ec 0x0 + .text.xTaskGetIdleTaskHandleForCPU + 0x00000000400957ec 0x35 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x00000000400957ec xTaskGetIdleTaskHandleForCPU + *fill* 0x0000000040095821 0x3 + .text.xTaskIncrementTick + 0x0000000040095824 0x1aa esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1b6 (size before relaxing) + 0x0000000040095824 xTaskIncrementTick + *fill* 0x00000000400959ce 0x2 + .text.vTaskSwitchContext + 0x00000000400959d0 0x3cc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3d4 (size before relaxing) + 0x00000000400959d0 vTaskSwitchContext + .text.vTaskPlaceOnEventList + 0x0000000040095d9c 0x8b esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x9f (size before relaxing) + 0x0000000040095d9c vTaskPlaceOnEventList + *fill* 0x0000000040095e27 0x1 + .text.vTaskPlaceOnUnorderedEventList + 0x0000000040095e28 0xcf esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xdf (size before relaxing) + 0x0000000040095e28 vTaskPlaceOnUnorderedEventList + *fill* 0x0000000040095ef7 0x1 + .text.vTaskPlaceOnEventListRestricted + 0x0000000040095ef8 0x6b esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x7b (size before relaxing) + 0x0000000040095ef8 vTaskPlaceOnEventListRestricted + *fill* 0x0000000040095f63 0x1 + .text.xTaskRemoveFromEventList + 0x0000000040095f64 0x143 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x14a (size before relaxing) + 0x0000000040095f64 xTaskRemoveFromEventList + *fill* 0x00000000400960a7 0x1 + .text.xTaskRemoveFromUnorderedEventList + 0x00000000400960a8 0xec esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xfb (size before relaxing) + 0x00000000400960a8 xTaskRemoveFromUnorderedEventList + *fill* 0x0000000040096194 0x0 + .text.vTaskSetTimeOutState + 0x0000000040096194 0x2e esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040096194 vTaskSetTimeOutState + *fill* 0x00000000400961c2 0x2 + .text.xTaskCheckForTimeOut + 0x00000000400961c4 0x83 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8a (size before relaxing) + 0x00000000400961c4 xTaskCheckForTimeOut + *fill* 0x0000000040096247 0x1 + .text.xTaskGetCurrentTaskHandle + 0x0000000040096248 0x22 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040096248 xTaskGetCurrentTaskHandle + *fill* 0x000000004009626a 0x2 + .text.uxTaskPriorityGet + 0x000000004009626c 0x1c esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x23 (size before relaxing) + 0x000000004009626c uxTaskPriorityGet + *fill* 0x0000000040096288 0x0 + .text.vTaskPrioritySet + 0x0000000040096288 0x135 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x147 (size before relaxing) + 0x0000000040096288 vTaskPrioritySet + *fill* 0x00000000400963bd 0x3 + .text.__getreent + 0x00000000400963c0 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x19 (size before relaxing) + 0x00000000400963c0 __getreent + *fill* 0x00000000400963d5 0x3 + .text.pcTaskGetTaskName + 0x00000000400963d8 0x27 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x00000000400963d8 pcTaskGetTaskName + *fill* 0x00000000400963ff 0x1 + .text.vTaskSetThreadLocalStoragePointerAndDelCallback + 0x0000000040096400 0x2a esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x32 (size before relaxing) + 0x0000000040096400 vTaskSetThreadLocalStoragePointerAndDelCallback + *fill* 0x000000004009642a 0x2 + .text.pvTaskGetThreadLocalStoragePointer + 0x000000004009642c 0x21 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004009642c pvTaskGetThreadLocalStoragePointer + *fill* 0x000000004009644d 0x3 + .text.xTaskGetAffinity + 0x0000000040096450 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x13 (size before relaxing) + 0x0000000040096450 xTaskGetAffinity + *fill* 0x0000000040096460 0x0 + .text.xTaskGetCurrentTaskHandleForCPU + 0x0000000040096460 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040096460 xTaskGetCurrentTaskHandleForCPU + *fill* 0x000000004009647a 0x2 + .text.xTaskGetSchedulerState + 0x000000004009647c 0x3a esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000004009647c xTaskGetSchedulerState + *fill* 0x00000000400964b6 0x2 + .text.vTaskDelete + 0x00000000400964b8 0x107 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x11f (size before relaxing) + 0x00000000400964b8 vTaskDelete + *fill* 0x00000000400965bf 0x1 + .text.vTaskDelay + 0x00000000400965c0 0x66 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x76 (size before relaxing) + 0x00000000400965c0 vTaskDelay + *fill* 0x0000000040096626 0x2 + .text.vTaskSuspend + 0x0000000040096628 0xd8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xf8 (size before relaxing) + 0x0000000040096628 vTaskSuspend + .text.xTaskResumeAll + 0x0000000040096700 0x17f esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x192 (size before relaxing) + 0x0000000040096700 xTaskResumeAll + *fill* 0x000000004009687f 0x1 + .text.vTaskPriorityInherit + 0x0000000040096880 0xd8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xe3 (size before relaxing) + 0x0000000040096880 vTaskPriorityInherit + *fill* 0x0000000040096958 0x0 + .text.xTaskPriorityDisinherit + 0x0000000040096958 0x98 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xa7 (size before relaxing) + 0x0000000040096958 xTaskPriorityDisinherit + *fill* 0x00000000400969f0 0x0 + .text.vTaskList + 0x00000000400969f0 0x108 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x114 (size before relaxing) + 0x00000000400969f0 vTaskList + .text.uxTaskResetEventItemValue + 0x0000000040096af8 0x52 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x56 (size before relaxing) + 0x0000000040096af8 uxTaskResetEventItemValue + *fill* 0x0000000040096b4a 0x2 + .text.pvTaskIncrementMutexHeldCount + 0x0000000040096b4c 0x56 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x5a (size before relaxing) + 0x0000000040096b4c pvTaskIncrementMutexHeldCount + *fill* 0x0000000040096ba2 0x2 + .text.prvGetNextExpireTime + 0x0000000040096ba4 0x20 esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.prvInsertTimerInActiveList + 0x0000000040096bc4 0x52 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x5a (size before relaxing) + *fill* 0x0000000040096c16 0x2 + .text.prvCheckForValidListAndQueue + 0x0000000040096c18 0x69 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x7c (size before relaxing) + *fill* 0x0000000040096c81 0x3 + .text.xTimerCreateTimerTask + 0x0000000040096c84 0x42 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x46 (size before relaxing) + 0x0000000040096c84 xTimerCreateTimerTask + *fill* 0x0000000040096cc6 0x2 + .text.xTimerGenericCommand + 0x0000000040096cc8 0x59 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x61 (size before relaxing) + 0x0000000040096cc8 xTimerGenericCommand + *fill* 0x0000000040096d21 0x3 + .text.prvSwitchTimerLists + 0x0000000040096d24 0x74 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x7c (size before relaxing) + .text.prvSampleTimeNow + 0x0000000040096d98 0x2b esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x2f (size before relaxing) + *fill* 0x0000000040096dc3 0x1 + .text.prvProcessExpiredTimer + 0x0000000040096dc4 0x52 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x5a (size before relaxing) + *fill* 0x0000000040096e16 0x2 + .text.prvProcessTimerOrBlockTask + 0x0000000040096e18 0x5c esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x70 (size before relaxing) + .text.prvProcessReceivedCommands + 0x0000000040096e74 0xd6 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0xe2 (size before relaxing) + *fill* 0x0000000040096f4a 0x2 + .text.prvTimerTask + 0x0000000040096f4c 0x15 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x1d (size before relaxing) + *fill* 0x0000000040096f61 0x3 + .text.xEventGroupCreate + 0x0000000040096f64 0x37 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x3f (size before relaxing) + 0x0000000040096f64 xEventGroupCreate + *fill* 0x0000000040096f9b 0x1 + .text.xEventGroupWaitBits + 0x0000000040096f9c 0x10b esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x126 (size before relaxing) + 0x0000000040096f9c xEventGroupWaitBits + *fill* 0x00000000400970a7 0x1 + .text.xEventGroupClearBits + 0x00000000400970a8 0x50 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x54 (size before relaxing) + 0x00000000400970a8 xEventGroupClearBits + .text.xEventGroupSetBits + 0x00000000400970f8 0x9b esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0xa7 (size before relaxing) + 0x00000000400970f8 xEventGroupSetBits + *fill* 0x0000000040097193 0x1 + .text.vEventGroupDelete + 0x0000000040097194 0x49 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x59 (size before relaxing) + 0x0000000040097194 vEventGroupDelete + *fill* 0x00000000400971dd 0x0 + *fill* 0x00000000400971dd 0x0 + *fill* 0x00000000400971dd 0x0 + *fill* 0x00000000400971dd 0x0 + *fill* 0x00000000400971dd 0x0 + *fill* 0x00000000400971dd 0x3 + .text.vPortStoreTaskMPUSettings + 0x00000000400971e0 0x13 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x00000000400971e0 vPortStoreTaskMPUSettings + *fill* 0x00000000400971f3 0x0 + *fill* 0x00000000400971f3 0x0 + *fill* 0x00000000400971f3 0x0 + *fill* 0x00000000400971f3 0x0 + *fill* 0x00000000400971f3 0x0 + *fill* 0x00000000400971f3 0x0 + *fill* 0x00000000400971f3 0x1 + .text 0x00000000400971f4 0x33 esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) + 0x00000000400971f4 xt_ints_on + 0x000000004009720c xt_ints_off + *fill* 0x0000000040097227 0x0 + *fill* 0x0000000040097227 0x0 + *fill* 0x0000000040097227 0x1 + .text.prvIsQueueEmpty + 0x0000000040097228 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000004009723c 0x0 + *fill* 0x000000004009723c 0x0 + *fill* 0x000000004009723c 0x0 + *fill* 0x000000004009723c 0x0 + *fill* 0x000000004009723c 0x0 + *fill* 0x000000004009723c 0x0 + *fill* 0x000000004009723c 0x0 + *fill* 0x000000004009723c 0x0 + *fill* 0x000000004009723c 0x0 + *fill* 0x000000004009723c 0x0 + *fill* 0x000000004009723c 0x0 + *fill* 0x000000004009723c 0x0 + *fill* 0x000000004009723c 0x0 + *fill* 0x000000004009723c 0x0 + *fill* 0x000000004009723c 0x0 + .text.prvTaskCheckFreeStackSpace + 0x000000004009723c 0x19 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x0 + *fill* 0x0000000040097255 0x3 + .text.vListInitialise + 0x0000000040097258 0x15 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x0000000040097258 vListInitialise + *fill* 0x000000004009726d 0x3 + .text.vListInitialiseItem + 0x0000000040097270 0x9 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x0000000040097270 vListInitialiseItem + *fill* 0x0000000040097279 0x3 + .text.vListInsertEnd + 0x000000004009727c 0x19 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x000000004009727c vListInsertEnd + *fill* 0x0000000040097295 0x3 + .text.vListInsert + 0x0000000040097298 0x2f esp-idf/freertos/libfreertos.a(list.c.obj) + 0x0000000040097298 vListInsert + *fill* 0x00000000400972c7 0x1 + .text.uxListRemove + 0x00000000400972c8 0x24 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x00000000400972c8 uxListRemove + .text.prvTestWaitCondition + 0x00000000400972ec 0x21 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + *fill* 0x000000004009730d 0x0 + *fill* 0x000000004009730d 0x0 + *fill* 0x000000004009730d 0x0 + *fill* 0x000000004009730d 0x0 + 0x000000004009730d _iram_text_end = ABSOLUTE (.) + +.dram0.data 0x000000003ffb0000 0x3974 + 0x000000003ffb0000 _data_start = ABSOLUTE (.) + 0x000000003ffb0000 _bt_data_start = ABSOLUTE (.) + *libbt.a:(.data .data.*) + 0x000000003ffb0000 . = ALIGN (0x4) + 0x000000003ffb0000 _bt_data_end = ABSOLUTE (.) + 0x000000003ffb0000 _btdm_data_start = ABSOLUTE (.) + *libbtdm_app.a:(.data .data.*) + 0x000000003ffb0000 . = ALIGN (0x4) + 0x000000003ffb0000 _btdm_data_end = ABSOLUTE (.) + 0x000000003ffb0000 _nimble_data_start = ABSOLUTE (.) + *libnimble.a:(.data .data.*) + 0x000000003ffb0000 . = ALIGN (0x4) + 0x000000003ffb0000 _nimble_data_end = ABSOLUTE (.) + *(.gnu.linkonce.d.*) + *(.data1) + *(.sdata) + *(.sdata.*) + *(.gnu.linkonce.s.*) + *(.sdata2) + *(.sdata2.*) + *(.gnu.linkonce.s2.*) + *(.jcr) + *(EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .data EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .data.* EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .dram1 EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .dram1.*) + .data.s_mutex_init_lock + 0x000000003ffb0000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .data.s_keys_lock + 0x000000003ffb0008 0x8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .data.reason_spinlock + 0x000000003ffb0010 0x8 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .data.g_dport_mux + 0x000000003ffb0018 0x8 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .data 0x000000003ffb0020 0xc esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) + .data.spinlock + 0x000000003ffb002c 0x8 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .dram1.18 0x000000003ffb0034 0x19 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + *fill* 0x000000003ffb004d 0x3 + .dram1.17 0x000000003ffb0050 0x8 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .dram1.16 0x000000003ffb0058 0x6 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + *fill* 0x000000003ffb005e 0x2 + .dram1.15 0x000000003ffb0060 0x6 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + *fill* 0x000000003ffb0066 0x2 + .data.twdt_spinlock + 0x000000003ffb0068 0x8 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .data.hooks_spinlock + 0x000000003ffb0070 0x8 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .data.s_timer_lock + 0x000000003ffb0078 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .data.s_time_update_lock + 0x000000003ffb0080 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x000000003ffb0080 s_time_update_lock + *fill* 0x000000003ffb0088 0x8 + .data 0x000000003ffb0090 0xc0c esp-idf/freertos/libfreertos.a(portasm.S.obj) + 0x000000003ffb0090 port_IntStack + 0x000000003ffb0c90 port_IntStackTop + 0x000000003ffb0c94 port_switch_flag + *fill* 0x000000003ffb0c9c 0x4 + .data 0x000000003ffb0ca0 0x400 esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) + 0x000000003ffb0ca0 _xt_interrupt_table + 0x000000003ffb0ea0 _xt_exception_table + .data 0x000000003ffb10a0 0x8 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x000000003ffb10a0 _xt_coproc_owner_sa + .dram1.14 0x000000003ffb10a8 0x4 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + 0x000000003ffb10a8 uxTopUsedPriority + .data.xTaskQueueMutex + 0x000000003ffb10ac 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .data.xNextTaskUnblockTime + 0x000000003ffb10b4 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .data.xTimerMux + 0x000000003ffb10b8 0x8 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x000000003ffb10b8 xTimerMux + .data.s_fd_table + 0x000000003ffb10c0 0xc0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .data.s_registered_select_lock + 0x000000003ffb1180 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .data.s_context + 0x000000003ffb1188 0x6c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .data.lock_init_spinlock + 0x000000003ffb11f4 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + .data.s_stub_table + 0x000000003ffb11fc 0x90 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + .data.current_namespace + 0x000000003ffb128c 0x10 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .data.IP_EVENT + 0x000000003ffb129c 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x000000003ffb129c IP_EVENT + .data.ESP_EFUSE_CHIP_VER_REV2 + 0x000000003ffb12a0 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x000000003ffb12a0 ESP_EFUSE_CHIP_VER_REV2 + .data.ESP_EFUSE_CHIP_VER_REV1 + 0x000000003ffb12a8 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x000000003ffb12a8 ESP_EFUSE_CHIP_VER_REV1 + .data.ESP_EFUSE_MAC_FACTORY_CRC + 0x000000003ffb12b0 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x000000003ffb12b0 ESP_EFUSE_MAC_FACTORY_CRC + .data.ESP_EFUSE_MAC_FACTORY + 0x000000003ffb12b8 0x1c esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0x000000003ffb12b8 ESP_EFUSE_MAC_FACTORY + .data.s_flash_op_cpu + 0x000000003ffb12d4 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .dram1.24 0x000000003ffb12d8 0x14 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x000000003ffb12d8 g_flash_guard_default_ops + .dram1.15 0x000000003ffb12ec 0x1c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .dram1.14 0x000000003ffb1308 0x4c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .dram1.13 0x000000003ffb1354 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .dram1.8 0x000000003ffb1364 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x000000003ffb1364 esp_flash_spi1_default_os_functions + .dram1.7 0x000000003ffb1374 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .dram1.12 0x000000003ffb137c 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x000000003ffb137c esp_flash_noos_functions + .data.esp_flash_registered_chips + 0x000000003ffb138c 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + 0x000000003ffb138c esp_flash_registered_chips + .data.default_registered_chips + 0x000000003ffb1390 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .data.WIFI_EVENT + 0x000000003ffb13a0 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x000000003ffb13a0 WIFI_EVENT + .data.g_wifi_osi_funcs + 0x000000003ffb13a4 0x17c esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x000000003ffb13a4 g_wifi_osi_funcs + .dram1.18 0x000000003ffb1520 0x8 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .data.s_phy_spin_lock + 0x000000003ffb1528 0x8 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .data.dhcps_offer + 0x000000003ffb1530 0x1 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x000000003ffb1531 0x3 + .data.dhcps_lease_time + 0x000000003ffb1534 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .data.iss$7528 + 0x000000003ffb1538 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + .data.tcp_port + 0x000000003ffb153c 0x2 esp-idf/lwip/liblwip.a(tcp.c.obj) + .data.udp_port + 0x000000003ffb153e 0x2 esp-idf/lwip/liblwip.a(udp.c.obj) + .data.retrans_timer + 0x000000003ffb1540 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x000000003ffb1540 retrans_timer + .data.reachable_time + 0x000000003ffb1544 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x000000003ffb1544 reachable_time + .data.s_log_print_func + 0x000000003ffb1548 0x4 esp-idf/log/liblog.a(log.c.obj) + .data.s_log_default_level + 0x000000003ffb154c 0x4 esp-idf/log/liblog.a(log.c.obj) + .data.malloc_alwaysinternal_limit + 0x000000003ffb1550 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .data.gpio_context + 0x000000003ffb1554 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .data._gpio_hal + 0x000000003ffb156c 0x8 esp-idf/driver/libdriver.a(gpio.c.obj) + .data.periph_spinlock + 0x000000003ffb1574 0x8 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .data.s_rtc_isr_handler_list_lock + 0x000000003ffb157c 0x8 esp-idf/driver/libdriver.a(rtc_module.c.obj) + 0x000000003ffb157c s_rtc_isr_handler_list_lock + .data.rtc_spinlock + 0x000000003ffb1584 0x8 esp-idf/driver/libdriver.a(rtc_module.c.obj) + 0x000000003ffb1584 rtc_spinlock + .data.uart_selectlock + 0x000000003ffb158c 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + .data.uart_context + 0x000000003ffb1594 0x30 esp-idf/driver/libdriver.a(uart.c.obj) + .data.light_sleep_lock$9079 + 0x000000003ffb15c4 0x8 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + *fill* 0x000000003ffb15cc 0x4 + .data.s_config + 0x000000003ffb15d0 0x30 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .data.history_max_len + 0x000000003ffb1600 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + .data.VolToPart + 0x000000003ffb1604 0x4 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + 0x000000003ffb1604 VolToPart + .data.ff_wl_handles + 0x000000003ffb1608 0x8 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + 0x000000003ffb1608 ff_wl_handles + .data._g_esp_netif_netstack_default_wifi_ap + 0x000000003ffb1610 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + 0x000000003ffb1610 _g_esp_netif_netstack_default_wifi_ap + .data._g_esp_netif_netstack_default_wifi_sta + 0x000000003ffb1614 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + 0x000000003ffb1614 _g_esp_netif_netstack_default_wifi_sta + .data.one$3748 + 0x000000003ffb1618 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .data.Rp$3941 0x000000003ffb161c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .data.Rp$3945 0x000000003ffb1624 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .data.Rp$3949 0x000000003ffb162c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .data.mbedtls_free_func + 0x000000003ffb1634 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .data.mbedtls_calloc_func + 0x000000003ffb1638 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .data.memset_func + 0x000000003ffb163c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .data.aes_spinlock + 0x000000003ffb1640 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + .data.engines_in_use_lock + 0x000000003ffb1648 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .data.memory_block_lock + 0x000000003ffb1650 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .data.g_allowed_groups + 0x000000003ffb1658 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x000000003ffb1658 g_allowed_groups + .data.WIFI_MESH_EVENT + 0x000000003ffb1660 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000003ffb1660 WIFI_MESH_EVENT + .dram1.3 0x000000003ffb1664 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000003ffb1664 g_wifi_mac_time_delta + .data.g_wifi_event_mask + 0x000000003ffb1668 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000003ffb1668 g_wifi_event_mask + .dram1.2 0x000000003ffb166c 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000003ffb166c g_osi_funcs_p + .data.s_wifi_init_state + 0x000000003ffb1670 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .data.ccmp 0x000000003ffb1674 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x000000003ffb1674 ccmp + .data.tkip 0x000000003ffb168c 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + 0x000000003ffb168c tkip + .data.wep 0x000000003ffb16a4 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + 0x000000003ffb16a4 wep + .data.TmpSTAAPCloseAP + 0x000000003ffb16bc 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x000000003ffb16bc TmpSTAAPCloseAP + *fill* 0x000000003ffb16bd 0x3 + .data.g_op 0x000000003ffb16c0 0x250 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .data.s_ioctl_table + 0x000000003ffb1910 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x000000003ffb1910 s_ioctl_table + .dram1.2 0x000000003ffb1928 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x000000003ffb1928 g_intr_lock_mux + .data.g_mesh_self_organized + 0x000000003ffb192c 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x000000003ffb192c g_mesh_self_organized + *fill* 0x000000003ffb192d 0x3 + .data.g_wifi_nvs + 0x000000003ffb1930 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x000000003ffb1930 g_wifi_nvs + .data.s_raw_seq$9684 + 0x000000003ffb1934 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .data.g_hmac_stop + 0x000000003ffb1936 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + *fill* 0x000000003ffb1937 0x1 + .data.s_map 0x000000003ffb1938 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x000000003ffb1938 s_map + .data.g_scan_chan_list + 0x000000003ffb1950 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .data.s_sta_igtk_active_idx + 0x000000003ffb195e 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .data.g_timer_info + 0x000000003ffb1960 0x98 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x000000003ffb1960 g_timer_info + .data.g_chm 0x000000003ffb19f8 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x000000003ffb19f8 g_chm + .data.join_deny_flag + 0x000000003ffb19fc 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .dram1.2 0x000000003ffb19fd 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x000000003ffb19fd g_sta_connected_flag + *fill* 0x000000003ffb19fe 0x2 + .data.sa_query_recv_action + 0x000000003ffb1a00 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data.vendor_recv_action + 0x000000003ffb1a08 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data.ht_recv_action + 0x000000003ffb1a0c 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data.ba_recv_action + 0x000000003ffb1a10 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data.sa_query_send_action + 0x000000003ffb1a1c 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data.vendor_send_action + 0x000000003ffb1a24 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data.ht_send_action + 0x000000003ffb1a28 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data.ba_send_action + 0x000000003ffb1a2c 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .data.g_eb_list_desc + 0x000000003ffb1a38 0xb4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .dram1.2 0x000000003ffb1aec 0x80 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .data.g_long_ampdu_retry + 0x000000003ffb1b6c 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x000000003ffb1b6c g_long_ampdu_retry + .data.g_short_ampdu_retry + 0x000000003ffb1b6d 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x000000003ffb1b6d g_short_ampdu_retry + *fill* 0x000000003ffb1b6e 0x2 + .dram1.4 0x000000003ffb1b70 0x90 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .data.pTxRx 0x000000003ffb1c00 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000003ffb1c00 pTxRx + .dram1.3 0x000000003ffb1c04 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000003ffb1c04 xphyQueue + .data.g_pp_stop_flag + 0x000000003ffb1c08 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + *fill* 0x000000003ffb1c09 0x3 + .dram1.2 0x000000003ffb1c0c 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000003ffb1c0c pp_sig_cnt + *fill* 0x000000003ffb1c27 0x1 + .dram1.5 0x000000003ffb1c28 0x48 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + 0x000000003ffb1c28 g_dbg_cnt_lmac_interrupt + .dram1.2 0x000000003ffb1c70 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .data.g_pp_timer_info + 0x000000003ffb1c74 0x40 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x000000003ffb1c74 g_pp_timer_info + .data.rc11BSchedTbl + 0x000000003ffb1cb4 0x48 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .data.rcP2P11GSchedTbl + 0x000000003ffb1cfc 0x60 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .data.rc11GSchedTbl + 0x000000003ffb1d5c 0x9c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .data.rcP2P11NSchedTbl + 0x000000003ffb1df8 0x6c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .data.rc11NSchedTbl + 0x000000003ffb1e64 0xa8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .data.rcLoRaSchedTbl + 0x000000003ffb1f0c 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .data.BasicOFDMSched + 0x000000003ffb1f24 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .dram1.19 0x000000003ffb1f30 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + *fill* 0x000000003ffb1f31 0x3 + .dram1.18 0x000000003ffb1f34 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .dram1.6 0x000000003ffb1f50 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .data.BcnInterval + 0x000000003ffb1f54 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .dram1.4 0x000000003ffb1f58 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .dram1.3 0x000000003ffb1f5c 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .data.g_noise_now + 0x000000003ffb1f60 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000003ffb1f60 g_noise_now + *fill* 0x000000003ffb1f61 0x3 + .data.g_wdev_rx_mblk_size + 0x000000003ffb1f64 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000003ffb1f64 g_wdev_rx_mblk_size + .dram1.2 0x000000003ffb1f68 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000003ffb1f68 g_sniffer_mode + .data.phy_wifi_pll_track_en + 0x000000003ffb1f69 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffb1f69 phy_wifi_pll_track_en + .data.phy_bt_pll_track_en + 0x000000003ffb1f6a 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffb1f6a phy_bt_pll_track_en + .data.chan14_mic_most_power + 0x000000003ffb1f6b 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffb1f6b chan14_mic_most_power + .data.phy_in_most_power_bk + 0x000000003ffb1f6c 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffb1f6c phy_in_most_power_bk + .data.phy_in_most_power + 0x000000003ffb1f6d 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffb1f6d phy_in_most_power + *fill* 0x000000003ffb1f6e 0x2 + .data.tx_rf_ana_gain + 0x000000003ffb1f70 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffb1f70 tx_rf_ana_gain + .data.noise_array + 0x000000003ffb1f74 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffb1f74 noise_array + *fill* 0x000000003ffb1f7a 0x2 + .data.bt_rx_gain_swp + 0x000000003ffb1f7c 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .data.bb_gain_swp + 0x000000003ffb1f8c 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .data.rfbb_gain_swp + 0x000000003ffb1f98 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + *fill* 0x000000003ffb1f9a 0x2 + .data.rf_gain_swp_wifi + 0x000000003ffb1f9c 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + *fill* 0x000000003ffb1fb2 0x2 + .data.wifi_rx_gain_swp + 0x000000003ffb1fb4 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .data.rfcal_bb_atten_init + 0x000000003ffb1fcc 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000003ffb1fcc rfcal_bb_atten_init + *fill* 0x000000003ffb1fcd 0x3 + .data.ssl_preset_suiteb_curves + 0x000000003ffb1fd0 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .data.ssl_preset_suiteb_hashes + 0x000000003ffb1fdc 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .data.ssl_preset_suiteb_ciphersuites + 0x000000003ffb1fe8 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .data.ssl_preset_default_hashes + 0x000000003ffb1ff4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .dram1.0 0x000000003ffb200c 0x90 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_param.o) + 0x000000003ffb200c coex_params + .data.coex_schm_ble_default_bt_default_wifi_conn + 0x000000003ffb209c 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb209c coex_schm_ble_default_bt_default_wifi_conn + *fill* 0x000000003ffb20a6 0x2 + .data.coex_schm_ble_default_bt_a2dp_wifi_conn + 0x000000003ffb20a8 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb20a8 coex_schm_ble_default_bt_a2dp_wifi_conn + *fill* 0x000000003ffb20b2 0x2 + .data.coex_schm_ble_mesh_standby_bt_default_wifi_conn + 0x000000003ffb20b4 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb20b4 coex_schm_ble_mesh_standby_bt_default_wifi_conn + *fill* 0x000000003ffb20c2 0x2 + .data.coex_schm_ble_mesh_standby_bt_sniff_wifi_conn + 0x000000003ffb20c4 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb20c4 coex_schm_ble_mesh_standby_bt_sniff_wifi_conn + *fill* 0x000000003ffb20ce 0x2 + .data.coex_schm_ble_mesh_standby_bt_a2dp_wifi_conn + 0x000000003ffb20d0 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb20d0 coex_schm_ble_mesh_standby_bt_a2dp_wifi_conn + *fill* 0x000000003ffb20de 0x2 + .data.coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_conn + 0x000000003ffb20e0 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb20e0 coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_conn + *fill* 0x000000003ffb20ee 0x2 + .data.coex_schm_ble_mesh_standby_bt_conn_wifi_conn + 0x000000003ffb20f0 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb20f0 coex_schm_ble_mesh_standby_bt_conn_wifi_conn + *fill* 0x000000003ffb20fe 0x2 + .data.coex_schm_ble_mesh_standby_bt_iscan_wifi_conn + 0x000000003ffb2100 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2100 coex_schm_ble_mesh_standby_bt_iscan_wifi_conn + *fill* 0x000000003ffb210e 0x2 + .data.coex_schm_ble_mesh_traffic_bt_default_wifi_conn + 0x000000003ffb2110 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2110 coex_schm_ble_mesh_traffic_bt_default_wifi_conn + *fill* 0x000000003ffb211e 0x2 + .data.coex_schm_ble_mesh_traffic_bt_sniff_wifi_conn + 0x000000003ffb2120 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2120 coex_schm_ble_mesh_traffic_bt_sniff_wifi_conn + *fill* 0x000000003ffb212a 0x2 + .data.coex_schm_ble_mesh_traffic_bt_a2dp_wifi_conn + 0x000000003ffb212c 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb212c coex_schm_ble_mesh_traffic_bt_a2dp_wifi_conn + *fill* 0x000000003ffb213a 0x2 + .data.coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_conn + 0x000000003ffb213c 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb213c coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_conn + *fill* 0x000000003ffb214a 0x2 + .data.coex_schm_ble_mesh_traffic_bt_conn_wifi_conn + 0x000000003ffb214c 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb214c coex_schm_ble_mesh_traffic_bt_conn_wifi_conn + *fill* 0x000000003ffb215a 0x2 + .data.coex_schm_ble_mesh_traffic_bt_iscan_wifi_conn + 0x000000003ffb215c 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb215c coex_schm_ble_mesh_traffic_bt_iscan_wifi_conn + *fill* 0x000000003ffb216a 0x2 + .data.coex_schm_ble_mesh_config_bt_default_wifi_conn + 0x000000003ffb216c 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb216c coex_schm_ble_mesh_config_bt_default_wifi_conn + *fill* 0x000000003ffb217a 0x2 + .data.coex_schm_ble_mesh_config_bt_sniff_wifi_conn + 0x000000003ffb217c 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb217c coex_schm_ble_mesh_config_bt_sniff_wifi_conn + *fill* 0x000000003ffb2186 0x2 + .data.coex_schm_ble_mesh_config_bt_a2dp_wifi_conn + 0x000000003ffb2188 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2188 coex_schm_ble_mesh_config_bt_a2dp_wifi_conn + *fill* 0x000000003ffb2196 0x2 + .data.coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_conn + 0x000000003ffb2198 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2198 coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_conn + *fill* 0x000000003ffb21a6 0x2 + .data.coex_schm_ble_mesh_config_bt_conn_wifi_conn + 0x000000003ffb21a8 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb21a8 coex_schm_ble_mesh_config_bt_conn_wifi_conn + *fill* 0x000000003ffb21b6 0x2 + .data.coex_schm_ble_mesh_config_bt_iscan_wifi_conn + 0x000000003ffb21b8 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb21b8 coex_schm_ble_mesh_config_bt_iscan_wifi_conn + *fill* 0x000000003ffb21c6 0x2 + .data.coex_schm_ble_mesh_standby_wifi_conn + 0x000000003ffb21c8 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb21c8 coex_schm_ble_mesh_standby_wifi_conn + *fill* 0x000000003ffb21d2 0x2 + .data.coex_schm_ble_mesh_traffic_wifi_conn + 0x000000003ffb21d4 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb21d4 coex_schm_ble_mesh_traffic_wifi_conn + *fill* 0x000000003ffb21de 0x2 + .data.coex_schm_ble_mesh_config_wifi_conn + 0x000000003ffb21e0 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb21e0 coex_schm_ble_mesh_config_wifi_conn + *fill* 0x000000003ffb21ea 0x2 + .data.coex_schm_bt_default_wifi_conn + 0x000000003ffb21ec 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb21ec coex_schm_bt_default_wifi_conn + *fill* 0x000000003ffb21f6 0x2 + .data.coex_schm_bt_sniff_wifi_conn + 0x000000003ffb21f8 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb21f8 coex_schm_bt_sniff_wifi_conn + *fill* 0x000000003ffb21fe 0x2 + .data.coex_schm_bt_a2dp_wifi_conn + 0x000000003ffb2200 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2200 coex_schm_bt_a2dp_wifi_conn + *fill* 0x000000003ffb220a 0x2 + .data.coex_schm_bt_a2dp_paused_wifi_conn + 0x000000003ffb220c 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb220c coex_schm_bt_a2dp_paused_wifi_conn + *fill* 0x000000003ffb2216 0x2 + .data.coex_schm_bt_conn_wifi_conn + 0x000000003ffb2218 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2218 coex_schm_bt_conn_wifi_conn + *fill* 0x000000003ffb2222 0x2 + .data.coex_schm_bt_iscan_wifi_conn + 0x000000003ffb2224 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2224 coex_schm_bt_iscan_wifi_conn + *fill* 0x000000003ffb222e 0x2 + .data.coex_schm_bt_idle_wifi_conn + 0x000000003ffb2230 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2230 coex_schm_bt_idle_wifi_conn + *fill* 0x000000003ffb2236 0x2 + .data.coex_schm_ble_default_bt_default_wifi_connecting + 0x000000003ffb2238 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2238 coex_schm_ble_default_bt_default_wifi_connecting + *fill* 0x000000003ffb2242 0x2 + .data.coex_schm_ble_default_bt_a2dp_wifi_connecting + 0x000000003ffb2244 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2244 coex_schm_ble_default_bt_a2dp_wifi_connecting + *fill* 0x000000003ffb224e 0x2 + .data.coex_schm_ble_mesh_standby_bt_default_wifi_connecting + 0x000000003ffb2250 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2250 coex_schm_ble_mesh_standby_bt_default_wifi_connecting + *fill* 0x000000003ffb2266 0x2 + .data.coex_schm_ble_mesh_standby_bt_sniff_wifi_connecting + 0x000000003ffb2268 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2268 coex_schm_ble_mesh_standby_bt_sniff_wifi_connecting + *fill* 0x000000003ffb2272 0x2 + .data.coex_schm_ble_mesh_standby_bt_a2dp_wifi_connecting + 0x000000003ffb2274 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2274 coex_schm_ble_mesh_standby_bt_a2dp_wifi_connecting + *fill* 0x000000003ffb228a 0x2 + .data.coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_connecting + 0x000000003ffb228c 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb228c coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_connecting + *fill* 0x000000003ffb229a 0x2 + .data.coex_schm_ble_mesh_standby_bt_conn_wifi_connecting + 0x000000003ffb229c 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb229c coex_schm_ble_mesh_standby_bt_conn_wifi_connecting + *fill* 0x000000003ffb22aa 0x2 + .data.coex_schm_ble_mesh_standby_bt_iscan_wifi_connecting + 0x000000003ffb22ac 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb22ac coex_schm_ble_mesh_standby_bt_iscan_wifi_connecting + *fill* 0x000000003ffb22ba 0x2 + .data.coex_schm_ble_mesh_traffic_bt_default_wifi_connecting + 0x000000003ffb22bc 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb22bc coex_schm_ble_mesh_traffic_bt_default_wifi_connecting + *fill* 0x000000003ffb22d2 0x2 + .data.coex_schm_ble_mesh_traffic_bt_sniff_wifi_connecting + 0x000000003ffb22d4 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb22d4 coex_schm_ble_mesh_traffic_bt_sniff_wifi_connecting + *fill* 0x000000003ffb22de 0x2 + .data.coex_schm_ble_mesh_traffic_bt_a2dp_wifi_connecting + 0x000000003ffb22e0 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb22e0 coex_schm_ble_mesh_traffic_bt_a2dp_wifi_connecting + *fill* 0x000000003ffb22f6 0x2 + .data.coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_connecting + 0x000000003ffb22f8 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb22f8 coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_connecting + *fill* 0x000000003ffb2306 0x2 + .data.coex_schm_ble_mesh_traffic_bt_conn_wifi_connecting + 0x000000003ffb2308 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2308 coex_schm_ble_mesh_traffic_bt_conn_wifi_connecting + *fill* 0x000000003ffb2316 0x2 + .data.coex_schm_ble_mesh_traffic_bt_iscan_wifi_connecting + 0x000000003ffb2318 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2318 coex_schm_ble_mesh_traffic_bt_iscan_wifi_connecting + *fill* 0x000000003ffb2326 0x2 + .data.coex_schm_ble_mesh_config_bt_default_wifi_connecting + 0x000000003ffb2328 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2328 coex_schm_ble_mesh_config_bt_default_wifi_connecting + *fill* 0x000000003ffb2336 0x2 + .data.coex_schm_ble_mesh_config_bt_sniff_wifi_connecting + 0x000000003ffb2338 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2338 coex_schm_ble_mesh_config_bt_sniff_wifi_connecting + *fill* 0x000000003ffb2342 0x2 + .data.coex_schm_ble_mesh_config_bt_a2dp_wifi_connecting + 0x000000003ffb2344 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2344 coex_schm_ble_mesh_config_bt_a2dp_wifi_connecting + *fill* 0x000000003ffb2352 0x2 + .data.coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_connecting + 0x000000003ffb2354 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2354 coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_connecting + *fill* 0x000000003ffb2362 0x2 + .data.coex_schm_ble_mesh_config_bt_conn_wifi_connecting + 0x000000003ffb2364 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2364 coex_schm_ble_mesh_config_bt_conn_wifi_connecting + *fill* 0x000000003ffb2372 0x2 + .data.coex_schm_ble_mesh_config_bt_iscan_wifi_connecting + 0x000000003ffb2374 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2374 coex_schm_ble_mesh_config_bt_iscan_wifi_connecting + *fill* 0x000000003ffb2382 0x2 + .data.coex_schm_ble_mesh_standby_wifi_connecting + 0x000000003ffb2384 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2384 coex_schm_ble_mesh_standby_wifi_connecting + *fill* 0x000000003ffb238e 0x2 + .data.coex_schm_ble_mesh_traffic_wifi_connecting + 0x000000003ffb2390 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2390 coex_schm_ble_mesh_traffic_wifi_connecting + *fill* 0x000000003ffb239a 0x2 + .data.coex_schm_ble_mesh_config_wifi_connecting + 0x000000003ffb239c 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb239c coex_schm_ble_mesh_config_wifi_connecting + *fill* 0x000000003ffb23a6 0x2 + .data.coex_schm_bt_default_wifi_connecting + 0x000000003ffb23a8 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb23a8 coex_schm_bt_default_wifi_connecting + *fill* 0x000000003ffb23b2 0x2 + .data.coex_schm_bt_sniff_wifi_connecting + 0x000000003ffb23b4 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb23b4 coex_schm_bt_sniff_wifi_connecting + *fill* 0x000000003ffb23ba 0x2 + .data.coex_schm_bt_a2dp_wifi_connecting + 0x000000003ffb23bc 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb23bc coex_schm_bt_a2dp_wifi_connecting + *fill* 0x000000003ffb23c6 0x2 + .data.coex_schm_bt_a2dp_paused_wifi_connecting + 0x000000003ffb23c8 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb23c8 coex_schm_bt_a2dp_paused_wifi_connecting + *fill* 0x000000003ffb23d2 0x2 + .data.coex_schm_bt_conn_wifi_connecting + 0x000000003ffb23d4 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb23d4 coex_schm_bt_conn_wifi_connecting + *fill* 0x000000003ffb23de 0x2 + .data.coex_schm_bt_iscan_wifi_connecting + 0x000000003ffb23e0 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb23e0 coex_schm_bt_iscan_wifi_connecting + *fill* 0x000000003ffb23ea 0x2 + .data.coex_schm_bt_idle_wifi_connecting + 0x000000003ffb23ec 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb23ec coex_schm_bt_idle_wifi_connecting + *fill* 0x000000003ffb23f2 0x2 + .data.coex_schm_ble_default_bt_default_wifi_scan + 0x000000003ffb23f4 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb23f4 coex_schm_ble_default_bt_default_wifi_scan + *fill* 0x000000003ffb23fe 0x2 + .data.coex_schm_ble_default_bt_a2dp_wifi_scan + 0x000000003ffb2400 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2400 coex_schm_ble_default_bt_a2dp_wifi_scan + *fill* 0x000000003ffb240a 0x2 + .data.coex_schm_ble_mesh_standby_bt_default_wifi_scan + 0x000000003ffb240c 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb240c coex_schm_ble_mesh_standby_bt_default_wifi_scan + *fill* 0x000000003ffb2422 0x2 + .data.coex_schm_ble_mesh_standby_bt_sniff_wifi_scan + 0x000000003ffb2424 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2424 coex_schm_ble_mesh_standby_bt_sniff_wifi_scan + *fill* 0x000000003ffb242e 0x2 + .data.coex_schm_ble_mesh_standby_bt_a2dp_wifi_scan + 0x000000003ffb2430 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2430 coex_schm_ble_mesh_standby_bt_a2dp_wifi_scan + *fill* 0x000000003ffb2446 0x2 + .data.coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_scan + 0x000000003ffb2448 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2448 coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_scan + *fill* 0x000000003ffb2456 0x2 + .data.coex_schm_ble_mesh_standby_bt_conn_wifi_scan + 0x000000003ffb2458 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2458 coex_schm_ble_mesh_standby_bt_conn_wifi_scan + *fill* 0x000000003ffb2466 0x2 + .data.coex_schm_ble_mesh_standby_bt_iscan_wifi_scan + 0x000000003ffb2468 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2468 coex_schm_ble_mesh_standby_bt_iscan_wifi_scan + *fill* 0x000000003ffb2476 0x2 + .data.coex_schm_ble_mesh_traffic_bt_default_wifi_scan + 0x000000003ffb2478 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2478 coex_schm_ble_mesh_traffic_bt_default_wifi_scan + *fill* 0x000000003ffb248e 0x2 + .data.coex_schm_ble_mesh_traffic_bt_sniff_wifi_scan + 0x000000003ffb2490 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2490 coex_schm_ble_mesh_traffic_bt_sniff_wifi_scan + *fill* 0x000000003ffb249a 0x2 + .data.coex_schm_ble_mesh_traffic_bt_a2dp_wifi_scan + 0x000000003ffb249c 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb249c coex_schm_ble_mesh_traffic_bt_a2dp_wifi_scan + *fill* 0x000000003ffb24b2 0x2 + .data.coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_scan + 0x000000003ffb24b4 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb24b4 coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_scan + *fill* 0x000000003ffb24c2 0x2 + .data.coex_schm_ble_mesh_traffic_bt_conn_wifi_scan + 0x000000003ffb24c4 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb24c4 coex_schm_ble_mesh_traffic_bt_conn_wifi_scan + *fill* 0x000000003ffb24d2 0x2 + .data.coex_schm_ble_mesh_traffic_bt_iscan_wifi_scan + 0x000000003ffb24d4 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb24d4 coex_schm_ble_mesh_traffic_bt_iscan_wifi_scan + *fill* 0x000000003ffb24e2 0x2 + .data.coex_schm_ble_mesh_config_bt_default_wifi_scan + 0x000000003ffb24e4 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb24e4 coex_schm_ble_mesh_config_bt_default_wifi_scan + *fill* 0x000000003ffb24f2 0x2 + .data.coex_schm_ble_mesh_config_bt_sniff_wifi_scan + 0x000000003ffb24f4 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb24f4 coex_schm_ble_mesh_config_bt_sniff_wifi_scan + *fill* 0x000000003ffb24fe 0x2 + .data.coex_schm_ble_mesh_config_bt_a2dp_wifi_scan + 0x000000003ffb2500 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2500 coex_schm_ble_mesh_config_bt_a2dp_wifi_scan + *fill* 0x000000003ffb250e 0x2 + .data.coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_scan + 0x000000003ffb2510 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2510 coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_scan + *fill* 0x000000003ffb251e 0x2 + .data.coex_schm_ble_mesh_config_bt_conn_wifi_scan + 0x000000003ffb2520 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2520 coex_schm_ble_mesh_config_bt_conn_wifi_scan + *fill* 0x000000003ffb252e 0x2 + .data.coex_schm_ble_mesh_config_bt_iscan_wifi_scan + 0x000000003ffb2530 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2530 coex_schm_ble_mesh_config_bt_iscan_wifi_scan + *fill* 0x000000003ffb253e 0x2 + .data.coex_schm_ble_mesh_standby_wifi_scan + 0x000000003ffb2540 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2540 coex_schm_ble_mesh_standby_wifi_scan + *fill* 0x000000003ffb254a 0x2 + .data.coex_schm_ble_mesh_traffic_wifi_scan + 0x000000003ffb254c 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb254c coex_schm_ble_mesh_traffic_wifi_scan + *fill* 0x000000003ffb2556 0x2 + .data.coex_schm_ble_mesh_config_wifi_scan + 0x000000003ffb2558 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2558 coex_schm_ble_mesh_config_wifi_scan + *fill* 0x000000003ffb2562 0x2 + .data.coex_schm_bt_default_wifi_scan + 0x000000003ffb2564 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2564 coex_schm_bt_default_wifi_scan + *fill* 0x000000003ffb256e 0x2 + .data.coex_schm_bt_sniff_wifi_scan + 0x000000003ffb2570 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2570 coex_schm_bt_sniff_wifi_scan + *fill* 0x000000003ffb2576 0x2 + .data.coex_schm_bt_a2dp_wifi_scan + 0x000000003ffb2578 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2578 coex_schm_bt_a2dp_wifi_scan + *fill* 0x000000003ffb2582 0x2 + .data.coex_schm_bt_a2dp_paused_wifi_scan + 0x000000003ffb2584 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2584 coex_schm_bt_a2dp_paused_wifi_scan + *fill* 0x000000003ffb258e 0x2 + .data.coex_schm_bt_conn_wifi_scan + 0x000000003ffb2590 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb2590 coex_schm_bt_conn_wifi_scan + *fill* 0x000000003ffb259a 0x2 + .data.coex_schm_bt_iscan_wifi_scan + 0x000000003ffb259c 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb259c coex_schm_bt_iscan_wifi_scan + *fill* 0x000000003ffb25a6 0x2 + .data.coex_schm_bt_idle_wifi_scan + 0x000000003ffb25a8 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb25a8 coex_schm_bt_idle_wifi_scan + *fill* 0x000000003ffb25ae 0x2 + .data.coex_schm_all_default + 0x000000003ffb25b0 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb25b0 coex_schm_all_default + *fill* 0x000000003ffb25ba 0x2 + .dram1.0 0x000000003ffb25bc 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + 0x000000003ffb25bc g_coa_funcs_p + .data._ZN10__cxxabiv119__terminate_handlerE + 0x000000003ffb25c0 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + 0x000000003ffb25c0 _ZN10__cxxabiv119__terminate_handlerE + .data._ZN10__cxxabiv120__unexpected_handlerE + 0x000000003ffb25c4 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + 0x000000003ffb25c4 _ZN10__cxxabiv120__unexpected_handlerE + .data 0x000000003ffb25c8 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + .data 0x000000003ffb25cc 0x16c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + 0x000000003ffb25cc __global_locale + *libgcov.a:(.rodata .rodata.*) + *libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.*(.rodata .rodata.*) + *libapp_trace.a:SEGGER_SYSVIEW.*(.rodata .rodata.*) + *libapp_trace.a:app_trace.*(.rodata .rodata.*) + *libapp_trace.a:app_trace_util.*(.rodata .rodata.*) + *libapp_trace.a:SEGGER_RTT_esp32.*(.rodata .rodata.*) + *libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.*(.rodata .rodata.*) + *liblog.a:log_freertos.*(.rodata.esp_log_early_timestamp) + *liblog.a:log_freertos.*(.rodata.esp_log_impl_lock_timeout) + *liblog.a:log_freertos.*(.rodata.esp_log_timestamp) + *liblog.a:log_freertos.*(.rodata.esp_log_impl_unlock) + *liblog.a:log.*(.rodata.esp_log_write) + *liblog.a:log_freertos.*(.rodata.esp_log_impl_lock) + *libgcc.a:_divsf3.*(.rodata .rodata.*) + *libesp_event.a:default_event_loop.*(.rodata.esp_event_isr_post) + *libesp_event.a:esp_event.*(.rodata.esp_event_isr_post_to) + *libheap.a:multi_heap_poisoning.*(.rodata .rodata.*) + *libheap.a:multi_heap.*(.rodata .rodata.*) + .rodata.get_prev_free_block.str1.4 + 0x000000003ffb2738 0x8a esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x000000003ffb27c2 0x2 + .rodata.split_if_necessary.str1.4 + 0x000000003ffb27c4 0x2f esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x000000003ffb27f3 0x1 + .rodata.merge_adjacent.str1.4 + 0x000000003ffb27f4 0x6 esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x000000003ffb27fa 0x2 + .rodata.multi_heap_realloc_impl.str1.4 + 0x000000003ffb27fc 0xd esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x000000003ffb2809 0x3 + .rodata.__func__$4823 + 0x000000003ffb280c 0x18 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$4745 + 0x000000003ffb2824 0xf esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x000000003ffb2833 0x1 + .rodata.__func__$4735 + 0x000000003ffb2834 0x14 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$4756 + 0x000000003ffb2848 0x13 esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x000000003ffb285b 0x1 + .rodata.__func__$4710 + 0x000000003ffb285c 0xf esp-idf/heap/libheap.a(multi_heap.c.obj) + *libesp32.a:panic.*(.rodata .rodata.*) + *fill* 0x000000003ffb286b 0x1 + .rodata.illegal_instruction_helper.str1.4 + 0x000000003ffb286c 0x17 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x1f (size before relaxing) + *fill* 0x000000003ffb2883 0x1 + .rodata.putEntry.str1.4 + 0x000000003ffb2884 0x8 esp-idf/esp32/libesp32.a(panic.c.obj) + .rodata.doBacktrace.str1.4 + 0x000000003ffb288c 0x2e esp-idf/esp32/libesp32.a(panic.c.obj) + *fill* 0x000000003ffb28ba 0x2 + .rodata.commonErrorHandler_dump.str1.4 + 0x000000003ffb28bc 0x1b1 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x1b9 (size before relaxing) + *fill* 0x000000003ffb2a6d 0x3 + .rodata 0x000000003ffb2a70 0x80 esp-idf/esp32/libesp32.a(panic.c.obj) + .rodata.commonErrorHandler.str1.4 + 0x000000003ffb2af0 0x27 esp-idf/esp32/libesp32.a(panic.c.obj) + *fill* 0x000000003ffb2b17 0x1 + .rodata.esp_error_check_failed_print.str1.4 + 0x000000003ffb2b18 0x5c esp-idf/esp32/libesp32.a(panic.c.obj) + .rodata.abort.str1.4 + 0x000000003ffb2b74 0x2d esp-idf/esp32/libesp32.a(panic.c.obj) + *fill* 0x000000003ffb2ba1 0x3 + .rodata.vApplicationStackOverflowHook.str1.4 + 0x000000003ffb2ba4 0x3e esp-idf/esp32/libesp32.a(panic.c.obj) + *fill* 0x000000003ffb2be2 0x2 + .rodata.panicHandler.str1.4 + 0x000000003ffb2be4 0x1b9 esp-idf/esp32/libesp32.a(panic.c.obj) + *fill* 0x000000003ffb2d9d 0x3 + .rodata.xt_unhandled_exception.str1.4 + 0x000000003ffb2da0 0x4d esp-idf/esp32/libesp32.a(panic.c.obj) + 0x51 (size before relaxing) + *fill* 0x000000003ffb2ded 0x3 + .rodata._esp_error_check_failed.str1.4 + 0x000000003ffb2df0 0x10 esp-idf/esp32/libesp32.a(panic.c.obj) + .rodata.str1.4 + 0x000000003ffb2e00 0x1db esp-idf/esp32/libesp32.a(panic.c.obj) + *fill* 0x000000003ffb2fdb 0x1 + .rodata.edesc 0x000000003ffb2fdc 0xa0 esp-idf/esp32/libesp32.a(panic.c.obj) + *libspi_flash.a:spi_flash_chip_issi.*(.rodata .rodata.*) + .rodata.esp_flash_chip_issi + 0x000000003ffb307c 0x5c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x000000003ffb307c esp_flash_chip_issi + .rodata.chip_name + 0x000000003ffb30d8 0x5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + *libspi_flash.a:spi_flash_chip_gd.*(.rodata .rodata.*) + *fill* 0x000000003ffb30dd 0x3 + .rodata.esp_flash_chip_gd + 0x000000003ffb30e0 0x5c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x000000003ffb30e0 esp_flash_chip_gd + .rodata.chip_name + 0x000000003ffb313c 0x3 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + *libspi_flash.a:spi_flash_chip_generic.*(.rodata .rodata.*) + *fill* 0x000000003ffb313f 0x1 + .rodata.spi_flash_chip_generic_get_write_protect.str1.4 + 0x000000003ffb3140 0x60 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.spi_flash_chip_generic_config_host_io_mode + 0x000000003ffb31a0 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.spi_flash_chip_generic_read.str1.4 + 0x000000003ffb31b8 0x43 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x000000003ffb31fb 0x1 + .rodata.__func__$3629 + 0x000000003ffb31fc 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x000000003ffb3225 0x3 + .rodata.esp_flash_chip_generic + 0x000000003ffb3228 0x5c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000003ffb3228 esp_flash_chip_generic + .rodata.chip_name + 0x000000003ffb3284 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.TAG 0x000000003ffb328c 0xd esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *libspi_flash.a:memspi_host_driver.*(.rodata .rodata.*) + *fill* 0x000000003ffb3299 0x3 + .rodata.memspi_host_read_id_hs.str1.4 + 0x000000003ffb329c 0x24 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.TAG 0x000000003ffb32c0 0x7 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + *libsoc.a:spi_flash_hal_iram.*(.rodata .rodata.*) + *fill* 0x000000003ffb32c7 0x1 + .rodata.spi_flash_hal_configure_host_io_mode + 0x000000003ffb32c8 0x18 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + *libsoc.a:spi_flash_hal_gpspi.*(.rodata .rodata.*) + *libsoc.a:uart_hal_iram.*(.data .data.* .dram1 .dram1.*) + *libsoc.a:rtc_clk.*(.rodata .rodata.*) + .rodata.rtc_clk_cpu_freq_to_config.str1.4 + 0x000000003ffb32e0 0x3c esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .rodata.rtc_clk_cpu_freq_get_config.str1.4 + 0x000000003ffb331c 0x3b esp-idf/soc/libsoc.a(rtc_clk.c.obj) + *fill* 0x000000003ffb3357 0x1 + .rodata.rtc_clk_cpu_freq_to_pll_mhz.str1.4 + 0x000000003ffb3358 0x29 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + *libsoc.a:i2c_hal_iram.*(.rodata .rodata.*) + *libnewlib.a:heap.*(.rodata .rodata.*) + *libphy.a:(.rodata .rodata.*) + *fill* 0x000000003ffb3381 0x3 + .rodata.str1.4 + 0x000000003ffb3384 0x44 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x48 (size before relaxing) + .rodata.bt_i2c_write_set + 0x000000003ffb33c8 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .rodata.bt_get_i2c_data + 0x000000003ffb33ec 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .rodata 0x000000003ffb3418 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .rodata.CSWTCH$130 + 0x000000003ffb3420 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .rodata 0x000000003ffb3450 0x70 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .rodata.ram_set_pbus_mem + 0x000000003ffb34c0 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .rodata.str1.4 + 0x000000003ffb34ec 0x27e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x292 (size before relaxing) + *fill* 0x000000003ffb376a 0x2 + .rodata.bt_tx_gain_cal$part$2 + 0x000000003ffb376c 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .rodata.CSWTCH$208 + 0x000000003ffb378c 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + *fill* 0x000000003ffb3792 0x2 + .rodata 0x000000003ffb3794 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .rodata.str1.4 + 0x000000003ffb37b8 0x190 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x191 (size before relaxing) + .rodata.CSWTCH$273 + 0x000000003ffb3948 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .rodata.CSWTCH$269 + 0x000000003ffb394c 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + *fill* 0x000000003ffb3957 0x1 + .rodata.CSWTCH$263 + 0x000000003ffb3958 0x3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + *fill* 0x000000003ffb395b 0x1 + .rodata.CSWTCH$237 + 0x000000003ffb395c 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .rodata.CSWTCH$228 + 0x000000003ffb3964 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .rodata.dco_gain_coarse$4685 + 0x000000003ffb396c 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000003ffb3972 _data_end = ABSOLUTE (.) + 0x000000003ffb3974 . = ALIGN (0x4) + *fill* 0x000000003ffb3972 0x2 + +.noinit 0x000000003ffb3974 0x0 + 0x000000003ffb3974 . = ALIGN (0x4) + 0x000000003ffb3974 _noinit_start = ABSOLUTE (.) + *(.noinit .noinit.*) + 0x000000003ffb3974 . = ALIGN (0x4) + 0x000000003ffb3974 _noinit_end = ABSOLUTE (.) + +.dram0.bss 0x000000003ffb3978 0x5c18 + 0x000000003ffb3978 . = ALIGN (0x8) + 0x000000003ffb3978 _bss_start = ABSOLUTE (.) + *(.ext_ram.bss*) + 0x000000003ffb3978 _bt_bss_start = ABSOLUTE (.) + *libbt.a:(.bss .bss.* COMMON) + 0x000000003ffb3978 . = ALIGN (0x4) + 0x000000003ffb3978 _bt_bss_end = ABSOLUTE (.) + 0x000000003ffb3978 _btdm_bss_start = ABSOLUTE (.) + *libbtdm_app.a:(.bss .bss.* COMMON) + 0x000000003ffb3978 . = ALIGN (0x4) + 0x000000003ffb3978 _btdm_bss_end = ABSOLUTE (.) + 0x000000003ffb3978 _nimble_bss_start = ABSOLUTE (.) + *libnimble.a:(.bss .bss.* COMMON) + 0x000000003ffb3978 . = ALIGN (0x4) + 0x000000003ffb3978 _nimble_bss_end = ABSOLUTE (.) + *(EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .bss EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .bss.* EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) COMMON) + .bss.s_pthread_cfg_key + 0x000000003ffb3978 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss.s_threads_mux + 0x000000003ffb397c 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss.s_keys 0x000000003ffb3980 0x4 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x000000003ffb3980 s_keys + .bss.app_cpu_started + 0x000000003ffb3984 0x1 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + *fill* 0x000000003ffb3985 0x3 + .bss.reason 0x000000003ffb3988 0x8 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .bss.oldInterruptLevel + 0x000000003ffb3990 0x8 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .bss.dport_access_ref + 0x000000003ffb3998 0x8 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .bss.dport_core_state + 0x000000003ffb39a0 0x8 esp-idf/esp32/libesp32.a(dport_access.c.obj) + COMMON 0x000000003ffb39a8 0x10 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x000000003ffb39a8 dport_access_end + 0x000000003ffb39b0 dport_access_start + .bss.int_wdt_app_cpu_ticked + 0x000000003ffb39b8 0x1 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + 0x000000003ffb39b8 int_wdt_app_cpu_ticked + *fill* 0x000000003ffb39b9 0x3 + .bss.non_iram_int_disabled_flag + 0x000000003ffb39bc 0x2 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + *fill* 0x000000003ffb39be 0x2 + .bss.non_iram_int_disabled + 0x000000003ffb39c0 0x8 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .bss.non_iram_int_mask + 0x000000003ffb39c8 0x8 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .bss.vector_desc_head + 0x000000003ffb39d0 0x4 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .bss.other_core_frame + 0x000000003ffb39d4 0x4 esp-idf/esp32/libesp32.a(panic.c.obj) + .bss.abort_called + 0x000000003ffb39d8 0x1 esp-idf/esp32/libesp32.a(panic.c.obj) + *fill* 0x000000003ffb39d9 0x3 + .bss.twdt_config + 0x000000003ffb39dc 0x4 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .bss.tick_cb 0x000000003ffb39e0 0x40 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .bss.idle_cb 0x000000003ffb3a20 0x40 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .bss.s_ipc_wait + 0x000000003ffb3a60 0x8 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .bss.s_func_arg + 0x000000003ffb3a68 0x8 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .bss.s_func 0x000000003ffb3a70 0x8 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .bss.s_ipc_ack + 0x000000003ffb3a78 0x8 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .bss.s_ipc_sem + 0x000000003ffb3a80 0x8 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .bss.s_ipc_mutex + 0x000000003ffb3a88 0x8 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .bss.s_ipc_task_handle + 0x000000003ffb3a90 0x8 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .bss.s_timer_semaphore + 0x000000003ffb3a98 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .bss.s_timer_task + 0x000000003ffb3a9c 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .bss.s_timers 0x000000003ffb3aa0 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .bss.s_alarm_handler + 0x000000003ffb3aa4 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .bss.s_timer_interrupt_handle + 0x000000003ffb3aa8 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .bss.port_uxOldInterruptState + 0x000000003ffb3aac 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000003ffb3aac port_uxOldInterruptState + .bss.port_uxCriticalNesting + 0x000000003ffb3ab4 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000003ffb3ab4 port_uxCriticalNesting + .bss.port_interruptNesting + 0x000000003ffb3abc 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000003ffb3abc port_interruptNesting + .bss.port_xSchedulerRunning + 0x000000003ffb3ac4 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000003ffb3ac4 port_xSchedulerRunning + .bss._xt_tick_divisor + 0x000000003ffb3acc 0x4 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + 0x000000003ffb3acc _xt_tick_divisor + .bss.xSwitchingContext + 0x000000003ffb3ad0 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxSchedulerSuspended + 0x000000003ffb3ad8 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxTaskNumber + 0x000000003ffb3ae0 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xNumOfOverflows + 0x000000003ffb3ae4 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xYieldPending + 0x000000003ffb3ae8 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxPendedTicks + 0x000000003ffb3af0 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xSchedulerRunning + 0x000000003ffb3af4 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxTopReadyPriority + 0x000000003ffb3af8 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xTickCount + 0x000000003ffb3afc 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxCurrentNumberOfTasks + 0x000000003ffb3b00 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xIdleTaskHandle + 0x000000003ffb3b04 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xSuspendedTaskList + 0x000000003ffb3b0c 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxTasksDeleted + 0x000000003ffb3b20 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xTasksWaitingTermination + 0x000000003ffb3b24 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xPendingReadyList + 0x000000003ffb3b38 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxOverflowDelayedTaskList + 0x000000003ffb3b60 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxDelayedTaskList + 0x000000003ffb3b64 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xDelayedTaskList2 + 0x000000003ffb3b68 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xDelayedTaskList1 + 0x000000003ffb3b7c 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxReadyTasksLists + 0x000000003ffb3b90 0x1f4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxCurrentTCB + 0x000000003ffb3d84 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000003ffb3d84 pxCurrentTCB + .bss.xLastTime$4924 + 0x000000003ffb3d8c 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + .bss.xTimerQueue + 0x000000003ffb3d90 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + .bss.pxOverflowTimerList + 0x000000003ffb3d94 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + .bss.pxCurrentTimerList + 0x000000003ffb3d98 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + .bss.xActiveTimerList2 + 0x000000003ffb3d9c 0x14 esp-idf/freertos/libfreertos.a(timers.c.obj) + .bss.xActiveTimerList1 + 0x000000003ffb3db0 0x14 esp-idf/freertos/libfreertos.a(timers.c.obj) + .bss.s_fd_table_lock + 0x000000003ffb3dc4 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss.s_vfs_count + 0x000000003ffb3dc8 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss.s_vfs 0x000000003ffb3dcc 0x20 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss.s_registered_select_num + 0x000000003ffb3dec 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .bss.s_registered_selects + 0x000000003ffb3df0 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .bss.s_reent 0x000000003ffb3df4 0xf0 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + *fill* 0x000000003ffb3ee4 0x4 + .bss.adjtime_total_correction + 0x000000003ffb3ee8 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + .bss.adjtime_start + 0x000000003ffb3ef0 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + .bss.s_adjust_time_lock + 0x000000003ffb3ef8 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + .bss.s_boot_time_lock + 0x000000003ffb3efc 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + COMMON 0x000000003ffb3f00 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x000000003ffb3f00 s_microseconds_offset + .bss.wl_handle$11080 + 0x000000003ffb3f08 0x4 esp-idf/main/libmain.a(main.c.obj) + COMMON 0x000000003ffb3f0c 0x54 esp-idf/ca/libca.a(ca.c.obj) + 0x000000003ffb3f0c opt + COMMON 0x000000003ffb3f60 0x8 esp-idf/ca/libca.a(gen_key.c.obj) + 0x000000003ffb3f60 global_arg + .bss.list_args + 0x000000003ffb3f68 0x10 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .bss.namespace_args + 0x000000003ffb3f78 0x8 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .bss.erase_all_args + 0x000000003ffb3f80 0x8 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .bss.erase_args + 0x000000003ffb3f88 0x8 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .bss.get_args 0x000000003ffb3f90 0xc esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .bss.set_args 0x000000003ffb3f9c 0x10 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .bss.light_sleep_args + 0x000000003ffb3fac 0x10 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + .bss.deep_sleep_args + 0x000000003ffb3fbc 0x10 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + .bss.initialized$9388 + 0x000000003ffb3fcc 0x1 esp-idf/wifi/libwifi.a(wifi.c.obj) + *fill* 0x000000003ffb3fcd 0x3 + .bss.join_args + 0x000000003ffb3fd0 0x10 esp-idf/wifi/libwifi.a(wifi.c.obj) + .bss.wifi_event_group + 0x000000003ffb3fe0 0x4 esp-idf/wifi/libwifi.a(wifi.c.obj) + .bss.server$10034 + 0x000000003ffb3fe4 0x4 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + .bss.xHandleServer + 0x000000003ffb3fe8 0x4 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x000000003ffb3fe8 xHandleServer + .bss.s_cur_pll_freq + 0x000000003ffb3fec 0x4 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .bss.s_list_lock + 0x000000003ffb3ff0 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .bss.s_esp_netif_counter + 0x000000003ffb3ff4 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .bss.s_head 0x000000003ffb3ff8 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x000000003ffb3ff8 s_head + .bss.s_last_default_esp_netif + 0x000000003ffb3ffc 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .bss.tcpip_initialized + 0x000000003ffb4000 0x1 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003ffb4001 0x3 + .bss.api_lock_sem + 0x000000003ffb4004 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .bss.api_sync_sem + 0x000000003ffb4008 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .bss.s_default_loop + 0x000000003ffb400c 0x4 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .bss.s_efuse_lock + 0x000000003ffb4010 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .bss.s_flash_op_complete + 0x000000003ffb4014 0x1 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_flash_op_can_start + 0x000000003ffb4015 0x1 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + *fill* 0x000000003ffb4016 0x2 + .bss.s_flash_op_mutex + 0x000000003ffb4018 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_flash_op_cache_state + 0x000000003ffb401c 0x8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_flash_guard_ops + 0x000000003ffb4024 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .bss.esp_flash_default_chip + 0x000000003ffb4028 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x000000003ffb4028 esp_flash_default_chip + .bss.s_partition_list_lock + 0x000000003ffb402c 0x4 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .bss.s_partition_list + 0x000000003ffb4030 0x4 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .bss.s_mmap_last_handle + 0x000000003ffb4034 0x4 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .bss.s_mmap_page_refcnt + 0x000000003ffb4038 0x100 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .bss.s_mmap_entries_head + 0x000000003ffb4138 0x4 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .bss._ZL13s_nvs_handles + 0x000000003ffb413c 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .bss._ZN3nvs4Lock10mSemaphoreE + 0x000000003ffb4148 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x000000003ffb4148 _ZN3nvs4Lock10mSemaphoreE + .bss._ZN14NVSHandleEntry17s_nvs_next_handleE + 0x000000003ffb414c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x000000003ffb414c _ZN14NVSHandleEntry17s_nvs_next_handleE + .bss._ZN3nvs19NVSPartitionManager8instanceE + 0x000000003ffb4150 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x000000003ffb4150 _ZN3nvs19NVSPartitionManager8instanceE + *fill* 0x000000003ffb4154 0x4 + .bss.g_wifi_feature_caps + 0x000000003ffb4158 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x000000003ffb4158 g_wifi_feature_caps + .bss.s_wifi_mac_time_update_cb + 0x000000003ffb4160 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x000000003ffb4160 s_wifi_mac_time_update_cb + .bss.wifi_default_handlers_set + 0x000000003ffb4164 0x1 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + *fill* 0x000000003ffb4165 0x3 + .bss.s_wifi_netifs + 0x000000003ffb4168 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .bss.s_wifi_netifs + 0x000000003ffb4170 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .bss.s_wifi_rxcbs + 0x000000003ffb4178 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .bss.s_wifi_thread_sem_key$9939 + 0x000000003ffb4180 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .bss.s_wifi_thread_sem_key_init$9938 + 0x000000003ffb4184 0x1 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x000000003ffb4185 0x3 + .bss.s_common_clock_disable_time$11032 + 0x000000003ffb4188 0x4 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003ffb418c 0x4 + .bss.s_phy_rf_en_ts + 0x000000003ffb4190 0x8 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .bss.s_modem_sleep_lock + 0x000000003ffb4198 0x4 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .bss.s_is_modem_sleep_en + 0x000000003ffb419c 0x1 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003ffb419d 0x3 + .bss.s_modem_sleep_module_register + 0x000000003ffb41a0 0x4 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .bss.s_modem_sleep_module_enter + 0x000000003ffb41a4 0x4 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .bss.s_common_clock_enable_ref + 0x000000003ffb41a8 0x4 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .bss.s_is_phy_rf_en + 0x000000003ffb41ac 0x1 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003ffb41ad 0x3 + .bss.s_module_phy_rf_init + 0x000000003ffb41b0 0x4 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .bss.s_phy_rf_init_lock + 0x000000003ffb41b4 0x4 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .bss.dhcps_cb 0x000000003ffb41b8 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .bss.dhcps_dns + 0x000000003ffb41bc 0x1 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x000000003ffb41bd 0x3 + .bss.dhcps_poll + 0x000000003ffb41c0 0xc esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .bss.renew 0x000000003ffb41cc 0x1 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x000000003ffb41cd 0x3 + .bss.plist 0x000000003ffb41d0 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .bss.client_address_plus + 0x000000003ffb41d4 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .bss.client_address + 0x000000003ffb41d8 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .bss.dns_server + 0x000000003ffb41dc 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .bss.server_address + 0x000000003ffb41e0 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .bss.broadcast_dhcps + 0x000000003ffb41e4 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .bss.dhcps_netif + 0x000000003ffb41e8 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .bss.g_lwip_task + 0x000000003ffb41ec 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x000000003ffb41ec g_lwip_task + .bss.tcpip_mbox + 0x000000003ffb41f0 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .bss.tcpip_init_done_arg + 0x000000003ffb41f4 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .bss.tcpip_init_done + 0x000000003ffb41f8 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .bss.dns_servers + 0x000000003ffb41fc 0x48 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.dns_requests + 0x000000003ffb4244 0x30 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.dns_table + 0x000000003ffb4274 0x4a0 esp-idf/lwip/liblwip.a(dns.c.obj) + .bss.dns_pcbs 0x000000003ffb4714 0x10 esp-idf/lwip/liblwip.a(dns.c.obj) + COMMON 0x000000003ffb4724 0x44 esp-idf/lwip/liblwip.a(ip.c.obj) + 0x000000003ffb4724 ip_data + .bss.loop_netif + 0x000000003ffb4768 0x124 esp-idf/lwip/liblwip.a(netif.c.obj) + .bss.netif_num + 0x000000003ffb488c 0x1 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003ffb488d 0x3 + COMMON 0x000000003ffb4890 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x000000003ffb4890 netif_list + 0x000000003ffb4894 netif_default + COMMON 0x000000003ffb4898 0x1 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x000000003ffb4898 pbuf_free_ooseq_pending + *fill* 0x000000003ffb4899 0x3 + .bss.raw_pcbs 0x000000003ffb489c 0x4 esp-idf/lwip/liblwip.a(raw.c.obj) + .bss.tcp_timer_ctr + 0x000000003ffb48a0 0x1 esp-idf/lwip/liblwip.a(tcp.c.obj) + .bss.tcp_timer + 0x000000003ffb48a1 0x1 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003ffb48a2 0x2 + COMMON 0x000000003ffb48a4 0x18 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000003ffb48a4 tcp_active_pcbs_changed + 0x000000003ffb48a8 tcp_active_pcbs + 0x000000003ffb48ac tcp_bound_pcbs + 0x000000003ffb48b0 tcp_ticks + 0x000000003ffb48b4 tcp_tw_pcbs + 0x000000003ffb48b8 tcp_listen_pcbs + .bss.recv_data + 0x000000003ffb48bc 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.recv_flags + 0x000000003ffb48c0 0x1 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.flags 0x000000003ffb48c1 0x1 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcplen 0x000000003ffb48c2 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.recv_acked + 0x000000003ffb48c4 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003ffb48c6 0x2 + .bss.ackno 0x000000003ffb48c8 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.seqno 0x000000003ffb48cc 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcp_optidx + 0x000000003ffb48d0 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003ffb48d2 0x2 + .bss.tcphdr_opt2 + 0x000000003ffb48d4 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcphdr_opt1len + 0x000000003ffb48d8 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcphdr_optlen + 0x000000003ffb48da 0x2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.tcphdr 0x000000003ffb48dc 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .bss.inseg 0x000000003ffb48e0 0x14 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + COMMON 0x000000003ffb48f4 0x4 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x000000003ffb48f4 tcp_input_pcb + .bss.tcpip_tcp_timer_active + 0x000000003ffb48f8 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .bss.current_timeout_due_time + 0x000000003ffb48fc 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .bss.next_timeout + 0x000000003ffb4900 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) + COMMON 0x000000003ffb4904 0x4 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x000000003ffb4904 udp_pcbs + .bss.xid$7406 0x000000003ffb4908 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .bss.dhcp_pcb_refcount + 0x000000003ffb490c 0x1 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003ffb490d 0x3 + .bss.dhcp_pcb 0x000000003ffb4910 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + COMMON 0x000000003ffb4914 0x38 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x000000003ffb4914 dhcp_rx_options_given + 0x000000003ffb4920 dhcp_rx_options_val + .bss.etharp_cached_entry + 0x000000003ffb494c 0x1 esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003ffb494d 0x3 + .bss.arp_table + 0x000000003ffb4950 0xf0 esp-idf/lwip/liblwip.a(etharp.c.obj) + .bss.is_tmr_start + 0x000000003ffb4a40 0x1 esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x000000003ffb4a41 0x3 + .bss.allrouters + 0x000000003ffb4a44 0x4 esp-idf/lwip/liblwip.a(igmp.c.obj) + .bss.allsystems + 0x000000003ffb4a48 0x4 esp-idf/lwip/liblwip.a(igmp.c.obj) + .bss.ip4_default_multicast_netif + 0x000000003ffb4a4c 0x4 esp-idf/lwip/liblwip.a(ip4.c.obj) + .bss.ip_id 0x000000003ffb4a50 0x2 esp-idf/lwip/liblwip.a(ip4.c.obj) + *fill* 0x000000003ffb4a52 0x2 + .bss.identification$6864 + 0x000000003ffb4a54 0x4 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .bss.ip6_reass_pbufcount + 0x000000003ffb4a58 0x2 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + *fill* 0x000000003ffb4a5a 0x2 + .bss.reassdatagrams + 0x000000003ffb4a5c 0x4 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .bss.is_tmr_start + 0x000000003ffb4a60 0x1 esp-idf/lwip/liblwip.a(mld6.c.obj) + .bss.last_router$7276 + 0x000000003ffb4a61 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003ffb4a62 0x2 + .bss.nd6_ra_buffer + 0x000000003ffb4a64 0x20 esp-idf/lwip/liblwip.a(nd6.c.obj) + .bss.nd6_tmr_rs_reduction + 0x000000003ffb4a84 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003ffb4a85 0x3 + .bss.multicast_address + 0x000000003ffb4a88 0x14 esp-idf/lwip/liblwip.a(nd6.c.obj) + .bss.nd6_cached_destination_index + 0x000000003ffb4a9c 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) + .bss.nd6_cached_neighbor_index + 0x000000003ffb4a9d 0x1 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003ffb4a9e 0x2 + COMMON 0x000000003ffb4aa0 0x448 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x000000003ffb4aa0 default_router_list + 0x000000003ffb4ac4 prefix_list + 0x000000003ffb4b50 neighbor_cache + 0x000000003ffb4d08 destination_cache + .bss.sys_thread_sem_key + 0x000000003ffb4ee8 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .bss.g_lwip_protect_mutex + 0x000000003ffb4eec 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .bss.select_cb_list + 0x000000003ffb4ef0 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss.select_cb_ctr + 0x000000003ffb4ef4 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss.sockets 0x000000003ffb4ef8 0xf0 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss.socket_ipv6_multicast_memberships + 0x000000003ffb4fe8 0x118 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss.socket_ipv4_multicast_memberships + 0x000000003ffb5100 0x78 esp-idf/lwip/liblwip.a(sockets.c.obj) + .bss.s_log_cache_misses + 0x000000003ffb5178 0x4 esp-idf/log/liblog.a(log.c.obj) + .bss.s_log_cache_entry_count + 0x000000003ffb517c 0x4 esp-idf/log/liblog.a(log.c.obj) + .bss.s_log_cache_max_generation + 0x000000003ffb5180 0x4 esp-idf/log/liblog.a(log.c.obj) + .bss.s_log_cache + 0x000000003ffb5184 0xf8 esp-idf/log/liblog.a(log.c.obj) + .bss.s_log_tags + 0x000000003ffb527c 0x4 esp-idf/log/liblog.a(log.c.obj) + .bss.base$5155 + 0x000000003ffb5280 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + .bss.s_log_mutex + 0x000000003ffb5284 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + COMMON 0x000000003ffb5288 0x4 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x000000003ffb5288 registered_heaps + .bss.s_rtc_isr_handle + 0x000000003ffb528c 0x4 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .bss.s_rtc_isr_handler_list + 0x000000003ffb5290 0x4 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .bss.pat_flg$7078 + 0x000000003ffb5294 0x1 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003ffb5295 0x3 + .bss.p_uart_obj + 0x000000003ffb5298 0xc esp-idf/driver/libdriver.a(uart.c.obj) + .bss.last_ccount$3124 + 0x000000003ffb52a4 0x4 esp-idf/esp32/libesp32.a(hw_random.c.obj) + .bss.s_reset_reason + 0x000000003ffb52a8 0x4 esp-idf/esp32/libesp32.a(reset_reason.c.obj) + .bss.lock_rtc_memory_crc + 0x000000003ffb52ac 0x4 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .bss.s_light_sleep_wakeup + 0x000000003ffb52b0 0x1 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + *fill* 0x000000003ffb52b1 0x3 + .bss.base_mac_addr + 0x000000003ffb52b4 0x6 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + *fill* 0x000000003ffb52ba 0x2 + .bss.shutdown_handlers + 0x000000003ffb52bc 0x8 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .bss.s_tmp_line_buf + 0x000000003ffb52c4 0x4 esp-idf/console/libconsole.a(commands.c.obj) + .bss.s_config 0x000000003ffb52c8 0x10 esp-idf/console/libconsole.a(commands.c.obj) + .bss.s_cmd_list + 0x000000003ffb52d8 0x4 esp-idf/console/libconsole.a(commands.c.obj) + .bss.history 0x000000003ffb52dc 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + .bss.history_len + 0x000000003ffb52e0 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + .bss.dumbmode 0x000000003ffb52e4 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + .bss.mlmode 0x000000003ffb52e8 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + .bss.freeHintsCallback + 0x000000003ffb52ec 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + .bss.hintsCallback + 0x000000003ffb52f0 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + .bss.completionCallback + 0x000000003ffb52f4 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + .bss.lru_counter$7435 + 0x000000003ffb52f8 0x8 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .bss.s_impls 0x000000003ffb5300 0x8 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + .bss.Fsid 0x000000003ffb5308 0x2 esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x000000003ffb530a 0x2 + .bss.FatFs 0x000000003ffb530c 0x8 esp-idf/fatfs/libfatfs.a(ff.c.obj) + .bss.s_fat_ctxs + 0x000000003ffb5314 0x8 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + .bss._ZL16s_instances_lock + 0x000000003ffb531c 0x4 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + .bss._ZL11s_instances + 0x000000003ffb5320 0x40 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + .bss.s_tcpip_adapter_compat + 0x000000003ffb5360 0x1 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + *fill* 0x000000003ffb5361 0x3 + .bss.s_esp_netifs + 0x000000003ffb5364 0x10 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .bss.init_done$3945 + 0x000000003ffb5374 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss.ecp_supported_grp_id + 0x000000003ffb5378 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss.mul_count + 0x000000003ffb53a8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss.dbl_count + 0x000000003ffb53ac 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss.add_count + 0x000000003ffb53b0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .bss.mpi_lock 0x000000003ffb53b4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .bss.engines_in_use + 0x000000003ffb53b8 0x1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + *fill* 0x000000003ffb53b9 0x3 + .bss.engine_states + 0x000000003ffb53bc 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .bss.curr_partition$5840 + 0x000000003ffb53c8 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .bss.g_sae_data + 0x000000003ffb53cc 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + COMMON 0x000000003ffb5418 0x28c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000003ffb5418 gWpaSm + 0x000000003ffb5674 assoc_ie_buf + .bss.s_sm_valid_bitmap + 0x000000003ffb56a4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .bss.s_sm_table + 0x000000003ffb56a8 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .bss.mesh_rxcb + 0x000000003ffb56e8 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000003ffb56e8 mesh_rxcb + .bss.s_wifi_api_lock + 0x000000003ffb56ec 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000003ffb56ec s_wifi_api_lock + .bss.g_event_handler + 0x000000003ffb56f0 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .bss.s_wifi_stop_in_progress + 0x000000003ffb56f4 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + *fill* 0x000000003ffb56f5 0x3 + .bss.wifi_sta_rx_probe_req + 0x000000003ffb56f8 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000003ffb56f8 wifi_sta_rx_probe_req + *fill* 0x000000003ffb56fc 0x4 + COMMON 0x000000003ffb5700 0xc30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000003ffb5700 __packed__ + 0x000000003ffb5718 g_cnxMgr + COMMON 0x000000003ffb6330 0x22c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x000000003ffb6330 g_ic + COMMON 0x000000003ffb655c 0x60 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0x000000003ffb655c wpa_crypto_funcs + COMMON 0x000000003ffb65bc 0x240 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + 0x000000003ffb65bc g_dbg_cnt_hmac + .bss.g_beacon_eb_allocated + 0x000000003ffb67fc 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + *fill* 0x000000003ffb67fd 0x3 + .bss.ap_rxcb 0x000000003ffb6800 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x000000003ffb6800 ap_rxcb + .bss.tim_offset + 0x000000003ffb6804 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + *fill* 0x000000003ffb6805 0x3 + .bss.BcnIntvl 0x000000003ffb6808 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .bss.g_beacon_idx + 0x000000003ffb680c 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x000000003ffb680c g_beacon_idx + *fill* 0x000000003ffb680d 0x3 + .bss.g_beacon_eb + 0x000000003ffb6810 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x000000003ffb6810 g_beacon_eb + .bss.g_beacon_dtim_send_mc + 0x000000003ffb6818 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .bss.beacon_send_start_flag + 0x000000003ffb6819 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + *fill* 0x000000003ffb681a 0x2 + .bss.beacon_timer + 0x000000003ffb681c 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .bss.tokens$9092 + 0x000000003ffb6830 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .bss.s_age_timer_init + 0x000000003ffb6834 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .bss.s_age_timer_start + 0x000000003ffb6835 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + *fill* 0x000000003ffb6836 0x2 + .bss.s_age_timer + 0x000000003ffb6838 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .bss.ap_id$10367 + 0x000000003ffb684c 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + *fill* 0x000000003ffb684d 0x3 + .bss.mesh_deauth_reason + 0x000000003ffb6850 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .bss.SleepDeferSoftAPConfig + 0x000000003ffb6854 0x6c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .bss.SleepDeferStationConfig + 0x000000003ffb68c0 0x80 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .bss.s_wifi_task_hdl + 0x000000003ffb6940 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x000000003ffb6940 s_wifi_task_hdl + .bss.g_wifi_global_lock + 0x000000003ffb6944 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x000000003ffb6944 g_wifi_global_lock + .bss.s_wps_start + 0x000000003ffb6948 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .bss.s_wpa2_start + 0x000000003ffb6949 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + *fill* 0x000000003ffb694a 0x2 + .bss.s_wifi_rf_phy_enabled + 0x000000003ffb694c 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .bss.s_wifi_rf_phy_init + 0x000000003ffb6950 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .bss.g_wifi_hw_start + 0x000000003ffb6954 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + COMMON 0x000000003ffb6958 0x48 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x000000003ffb6958 g_wifi_menuconfig + .bss.esp_mesh_quick_funcs + 0x000000003ffb69a0 0x60 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x000000003ffb69a0 esp_mesh_quick_funcs + .bss.g_mesh_is_root + 0x000000003ffb6a00 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x000000003ffb6a00 g_mesh_is_root + .bss.g_mesh_is_started + 0x000000003ffb6a01 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x000000003ffb6a01 g_mesh_is_started + *fill* 0x000000003ffb6a02 0x2 + .bss.g_wifi_nvs_cfg + 0x000000003ffb6a04 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .bss.s_wifi_nvs + 0x000000003ffb6a08 0x400 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .bss.g_txq 0x000000003ffb6e08 0xa28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .bss.g_wifi_improve_contention_ability + 0x000000003ffb7830 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x000000003ffb7830 g_wifi_improve_contention_ability + *fill* 0x000000003ffb7831 0x3 + .bss.s_ch$9434 + 0x000000003ffb7834 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .bss.TestStaFreqCalValInput + 0x000000003ffb7836 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000003ffb7836 TestStaFreqCalValInput + .bss.FreqCalCntForScan + 0x000000003ffb7838 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000003ffb7838 FreqCalCntForScan + .bss.connect_scan_flag + 0x000000003ffb7839 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000003ffb7839 connect_scan_flag + .bss.scannum 0x000000003ffb783a 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000003ffb783a scannum + COMMON 0x000000003ffb783c 0x114 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x000000003ffb783c gScanStruct + .bss.sta_csa_timer + 0x000000003ffb7950 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000003ffb7950 sta_csa_timer + .bss.s_sa_query_success + 0x000000003ffb7964 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + *fill* 0x000000003ffb7965 0x3 + .bss.s_sa_query_retries + 0x000000003ffb7968 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .bss.s_trans_id + 0x000000003ffb796c 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + *fill* 0x000000003ffb796e 0x2 + .bss.sta_rxcb 0x000000003ffb7970 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000003ffb7970 sta_rxcb + .bss.rssi_index + 0x000000003ffb7974 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + *fill* 0x000000003ffb7975 0x3 + .bss.rssi_saved + 0x000000003ffb7978 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .bss.in_rssi_adjust + 0x000000003ffb7980 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + *fill* 0x000000003ffb7981 0x3 + .bss.s_sta_igtk + 0x000000003ffb7984 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .bss.gChmCxt 0x000000003ffb79b4 0xfc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .bss.is_connected_sync + 0x000000003ffb7ab0 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .bss.ap_no_lr 0x000000003ffb7ab1 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .bss.reconnect_flag + 0x000000003ffb7ab2 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x000000003ffb7ab2 reconnect_flag + .bss.in_blacklist_flag + 0x000000003ffb7ab3 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x000000003ffb7ab3 in_blacklist_flag + .bss.wrong_password_flag + 0x000000003ffb7ab4 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x000000003ffb7ab4 wrong_password_flag + *fill* 0x000000003ffb7ab5 0x1 + .bss.s_sta_last_start_txseq + 0x000000003ffb7ab6 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .bss.g_cnx_probe_rc_list_cb + 0x000000003ffb7ab8 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x000000003ffb7ab8 g_cnx_probe_rc_list_cb + .bss.cnx_csa_timer + 0x000000003ffb7abc 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .bss.s_csa_timer_bss + 0x000000003ffb7ad0 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + COMMON 0x000000003ffb7ad4 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x000000003ffb7ad4 sta_con_timer + .bss.avs_rx_content + 0x000000003ffb7ae8 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .bss.get_key_cb + 0x000000003ffb7aec 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .bss.avs_cb 0x000000003ffb7af0 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .bss.eb_space 0x000000003ffb7af4 0xc0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .bss.s_is_6m 0x000000003ffb7bb4 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x000000003ffb7bb4 s_is_6m + *fill* 0x000000003ffb7bb5 0x3 + COMMON 0x000000003ffb7bb8 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x000000003ffb7bb8 interface_mask + 0x000000003ffb7bbc if_ctrl + .bss.g_pp_tx_pkt_num + 0x000000003ffb7be4 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .bss.g_mpdu_retry_before_rts + 0x000000003ffb7be5 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x000000003ffb7be5 g_mpdu_retry_before_rts + .bss.our_wait_clear_type + 0x000000003ffb7be6 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000003ffb7be7 0x1 + .bss.our_wait_eb + 0x000000003ffb7be8 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .bss.our_tx_eb + 0x000000003ffb7bec 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .bss.our_instances + 0x000000003ffb7bf0 0xb4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + COMMON 0x000000003ffb7ca4 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x000000003ffb7ca4 lmacConfMib + .bss.g_pm_tx_null_func + 0x000000003ffb7cd0 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + *fill* 0x000000003ffb7cd4 0x4 + .bss.g_pm 0x000000003ffb7cd8 0x128 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .bss.current_ifidx$9236 + 0x000000003ffb7e00 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + *fill* 0x000000003ffb7e01 0x3 + .bss.s_fragment + 0x000000003ffb7e04 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.TotalUsedSigNum + 0x000000003ffb7e0c 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000003ffb7e0c TotalUsedSigNum + .bss.TxRxCxt 0x000000003ffb7e10 0x360 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.g_pp_if 0x000000003ffb8170 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.s_wifi_queue + 0x000000003ffb8178 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000003ffb8178 s_wifi_queue + .bss.s_michael_mic_failure_cb + 0x000000003ffb817c 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.s_pp_task_del_sem + 0x000000003ffb8180 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.s_pp_task_create_sem + 0x000000003ffb8184 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.pp_task_hdl + 0x000000003ffb8188 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.g_timer_func + 0x000000003ffb818c 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.g_net80211_tx_func + 0x000000003ffb8190 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .bss.g_config_func + 0x000000003ffb8194 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + COMMON 0x000000003ffb8198 0x6d8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + 0x000000003ffb8198 g_dbg_cnt_lmac + .bss.s_timer_post + 0x000000003ffb8870 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .bss.updateCounter + 0x000000003ffb8874 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .bss.s_fix_rate + 0x000000003ffb8878 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .bss.s_fix_rate_mask + 0x000000003ffb8880 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .bss.interface_trc_mask + 0x000000003ffb8884 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .bss.trc_mask 0x000000003ffb8894 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .bss.g_per_conn_trc + 0x000000003ffb8898 0x750 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .bss.BcnSendTick + 0x000000003ffb8fe8 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .bss.g_wdev_opmode + 0x000000003ffb8fec 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + *fill* 0x000000003ffb8fed 0x3 + .bss.g_wdev_csi_rx_ctx + 0x000000003ffb8ff0 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000003ffb8ff0 g_wdev_csi_rx_ctx + .bss.g_wdev_csi_rx + 0x000000003ffb8ff4 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000003ffb8ff4 g_wdev_csi_rx + .bss.g_wdev_last_desc_reset + 0x000000003ffb8ff8 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000003ffb8ff8 g_wdev_last_desc_reset + *fill* 0x000000003ffb8ff9 0x3 + COMMON 0x000000003ffb8ffc 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000003ffb8ffc wDevCtrl + .bss.bt_pwr_track_num + 0x000000003ffb902c 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffb902c bt_pwr_track_num + .bss.bt_pwr_freq_old + 0x000000003ffb902d 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffb902d bt_pwr_freq_old + .bss.bt_pwr_cap_sum_old + 0x000000003ffb902e 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffb902e bt_pwr_cap_sum_old + *fill* 0x000000003ffb902f 0x1 + .bss.bt_pwr_cap_sum + 0x000000003ffb9030 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffb9030 bt_pwr_cap_sum + .bss.btpwr_atten_offset + 0x000000003ffb9032 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffb9032 btpwr_atten_offset + .bss.btpwr_tsen_flag + 0x000000003ffb9033 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffb9033 btpwr_tsen_flag + .bss.btpwr_tsen_old + 0x000000003ffb9034 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffb9034 btpwr_tsen_old + .bss.btpwr_tsen_init + 0x000000003ffb9035 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffb9035 btpwr_tsen_init + .bss.rfpll_offset_delta + 0x000000003ffb9036 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffb9036 rfpll_offset_delta + .bss.phy_bt_power_track_en + 0x000000003ffb9038 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffb9038 phy_bt_power_track_en + .bss.phy_sw_set_chan_en + 0x000000003ffb9039 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffb9039 phy_sw_set_chan_en + .bss.phy_force_wifi_chan_en + 0x000000003ffb903a 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffb903a phy_force_wifi_chan_en + .bss.phy_freq_wifi_only + 0x000000003ffb903b 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffb903b phy_freq_wifi_only + .bss.phy_freq_offset + 0x000000003ffb903c 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffb903c phy_freq_offset + *fill* 0x000000003ffb903e 0x2 + COMMON 0x000000003ffb9040 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000003ffb9040 bt_wifi_chan_data + 0x000000003ffb9054 freq_i2c_addr + *fill* 0x000000003ffb905f 0x1 + .bss.g_phyFuns + 0x000000003ffb9060 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffb9060 g_phyFuns + .bss.lr_enable + 0x000000003ffb9064 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffb9064 lr_enable + .bss.chan14_mic_en + 0x000000003ffb9065 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffb9065 chan14_mic_en + .bss.re_entry 0x000000003ffb9066 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffb9066 re_entry + .bss.phy_init_flag + 0x000000003ffb9067 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffb9067 phy_init_flag + .bss.phy_set_most_tpw_index + 0x000000003ffb9068 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffb9068 phy_set_most_tpw_index + .bss.target_power_backoff_qdb + 0x000000003ffb9069 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffb9069 target_power_backoff_qdb + .bss.phy_set_most_tpw_flag + 0x000000003ffb906a 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffb906a phy_set_most_tpw_flag + .bss.phy_set_most_tpw_disbg + 0x000000003ffb906b 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffb906b phy_set_most_tpw_disbg + .bss.phy_meas_noise_floor + 0x000000003ffb906c 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffb906c phy_meas_noise_floor + .bss.sw_scan_mode + 0x000000003ffb906e 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffb906e sw_scan_mode + .bss.bt_mode_wifibb + 0x000000003ffb906f 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffb906f bt_mode_wifibb + .bss.noise_timeout_flag + 0x000000003ffb9070 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffb9070 noise_timeout_flag + *fill* 0x000000003ffb9071 0x3 + COMMON 0x000000003ffb9074 0x32c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000003ffb9074 pwrdet_offset + 0x000000003ffb9078 phy_rxbb_dc + 0x000000003ffb9090 phy_rxrf_dc + 0x000000003ffb9114 chip7_sleep_params + 0x000000003ffb91d8 set_most_tpw + 0x000000003ffb91dc chip7_phy_init_ctrl + 0x000000003ffb924c phy_rx_gain_gen + 0x000000003ffb938c chip7_phy_api_ctrl + 0x000000003ffb939c adc_ana_conf_org + .bss.phy_pwdet_onetime_flag + 0x000000003ffb93a0 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000003ffb93a0 phy_pwdet_onetime_flag + .bss.phy_dis_pwdet_one + 0x000000003ffb93a1 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000003ffb93a1 phy_dis_pwdet_one + .bss.phy_tx_pwr_error + 0x000000003ffb93a2 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000003ffb93a2 phy_tx_pwr_error + .bss.phy_in_vdd33_offset + 0x000000003ffb93a4 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000003ffb93a4 phy_in_vdd33_offset + .bss.tx_pwctrl_track_num + 0x000000003ffb93a5 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000003ffb93a5 tx_pwctrl_track_num + .bss.phy_tx_power_out + 0x000000003ffb93a6 0x2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000003ffb93a6 phy_tx_power_out + COMMON 0x000000003ffb93a8 0x2d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000003ffb93a8 phy_chan_gain_table + 0x000000003ffb93b0 phy_chan_pwr_index + 0x000000003ffb93c4 phy_chan_target_power + *fill* 0x000000003ffb93d5 0x3 + .bss.global_cacert + 0x000000003ffb93d8 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .bss.supported_init + 0x000000003ffb93dc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .bss.supported_ciphersuites + 0x000000003ffb93e0 0x13c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .bss.coex_schm_env + 0x000000003ffb951c 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x000000003ffb951c coex_schm_env + .bss.g_misc_nvs_init + 0x000000003ffb9538 0x1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + *fill* 0x000000003ffb9539 0x3 + COMMON 0x000000003ffb953c 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + 0x000000003ffb953c g_misc_nvs + 0x000000003ffb9540 g_log_level + 0x000000003ffb9544 g_log_mod + .bss._ZN12_GLOBAL__N_113__new_handlerE + 0x000000003ffb9558 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .bss._ZL4init 0x000000003ffb955c 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .bss._ZL10eh_globals + 0x000000003ffb9564 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .bss 0x000000003ffb956c 0xc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + .bss 0x000000003ffb9578 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + 0x000000003ffb9578 optopt + 0x000000003ffb957c opterr + 0x000000003ffb9580 optind + 0x000000003ffb9584 optarg + *libsoc.a:uart_hal_iram.*(.bss .bss.* COMMON) + *(.dynsbss) + *(.sbss) + *(.sbss.*) + *(.gnu.linkonce.sb.*) + *(.scommon) + *(.sbss2) + *(.sbss2.*) + *(.gnu.linkonce.sb2.*) + *(.dynbss) + *(.share.mem) + *(.gnu.linkonce.b.*) + 0x000000003ffb9590 . = ALIGN (0x8) + *fill* 0x000000003ffb958c 0x4 + 0x000000003ffb9590 _bss_end = ABSOLUTE (.) + 0x0000000000000001 ASSERT (((_bss_end - ORIGIN (dram0_0_seg)) <= LENGTH (dram0_0_seg)), DRAM segment data does not fit.) + +.flash.rodata 0x000000003f400020 0x26408 + 0x000000003f400020 _rodata_start = ABSOLUTE (.) + *(.rodata_desc .rodata_desc.*) + .rodata_desc 0x000000003f400020 0x100 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + 0x000000003f400020 esp_app_desc + *(.rodata_custom_desc .rodata_custom_desc.*) + *(EXCLUDE_FILE(*libphy.a *libnewlib.a:heap.* *libsoc.a:spi_flash_hal_iram.* *libsoc.a:spi_flash_hal_gpspi.* *libsoc.a:uart_hal_iram.* *libsoc.a:rtc_clk.* *libsoc.a:i2c_hal_iram.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:memspi_host_driver.* *libesp32.a:panic.* *libheap.a:multi_heap_poisoning.* *libheap.a:multi_heap.* *libgcc.a:_divsf3.* *libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.* *libapp_trace.a:SEGGER_SYSVIEW.* *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:SEGGER_RTT_esp32.* *libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.* *libgcov.a) .rodata EXCLUDE_FILE(*libphy.a *libnewlib.a:heap.* *libsoc.a:spi_flash_hal_iram.* *libsoc.a:spi_flash_hal_gpspi.* *libsoc.a:uart_hal_iram.* *libsoc.a:rtc_clk.* *libsoc.a:i2c_hal_iram.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:memspi_host_driver.* *libesp32.a:panic.* *libheap.a:multi_heap_poisoning.* *libheap.a:multi_heap.* *libesp_event.a:default_event_loop.* *libesp_event.a:esp_event.* *libgcc.a:_divsf3.* *liblog.a:log.* *liblog.a:log_freertos.* *libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.* *libapp_trace.a:SEGGER_SYSVIEW.* *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:SEGGER_RTT_esp32.* *libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.* *libgcov.a) .rodata.*) + .rodata.pthread_create.str1.4 + 0x000000003f400120 0x107 esp-idf/pthread/libpthread.a(pthread.c.obj) + *fill* 0x000000003f400227 0x1 + .rodata.pthread_cancel.str1.4 + 0x000000003f400228 0x2a esp-idf/pthread/libpthread.a(pthread.c.obj) + *fill* 0x000000003f400252 0x2 + .rodata.str1.4 + 0x000000003f400254 0x23 esp-idf/pthread/libpthread.a(pthread.c.obj) + *fill* 0x000000003f400277 0x1 + .rodata.__func__$6136 + 0x000000003f400278 0x15 esp-idf/pthread/libpthread.a(pthread.c.obj) + *fill* 0x000000003f40028d 0x3 + .rodata.__FUNCTION__$6072 + 0x000000003f400290 0xf esp-idf/pthread/libpthread.a(pthread.c.obj) + *fill* 0x000000003f40029f 0x1 + .rodata.pthread_local_storage_thread_deleted_callback.str1.4 + 0x000000003f4002a0 0x51 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + *fill* 0x000000003f4002f1 0x3 + .rodata.__func__$5849 + 0x000000003f4002f4 0x2e esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + *fill* 0x000000003f400322 0x2 + .rodata 0x000000003f400324 0x14 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + .rodata.main_task.str1.4 + 0x000000003f400338 0xa5 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + *fill* 0x000000003f4003dd 0x3 + .rodata.str1.4 + 0x000000003f4003e0 0x36b esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0x373 (size before relaxing) + *fill* 0x000000003f40074b 0x1 + .rodata.__func__$10299 + 0x000000003f40074c 0xa esp-idf/esp32/libesp32.a(cpu_start.c.obj) + *fill* 0x000000003f400756 0x2 + .rodata.__func__$10274 + 0x000000003f400758 0x13 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + *fill* 0x000000003f40076b 0x1 + .rodata.str1.4 + 0x000000003f40076c 0x57 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + *fill* 0x000000003f4007c3 0x1 + .rodata.esp_crosscore_int_init.str1.4 + 0x000000003f4007c4 0xe esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + *fill* 0x000000003f4007d2 0x2 + .rodata.__func__$6754 + 0x000000003f4007d4 0x17 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + *fill* 0x000000003f4007eb 0x1 + .rodata.__func__$6749 + 0x000000003f4007ec 0x17 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + *fill* 0x000000003f400803 0x1 + .rodata.str1.4 + 0x000000003f400804 0x3a esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x3e (size before relaxing) + *fill* 0x000000003f40083e 0x2 + .rodata.esp_dport_access_int_init.str1.4 + 0x000000003f400840 0x6 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x16 (size before relaxing) + *fill* 0x000000003f400846 0x2 + .rodata.__func__$6428 + 0x000000003f400848 0x1a esp-idf/esp32/libesp32.a(dport_access.c.obj) + *fill* 0x000000003f400862 0x2 + .rodata.__func__$6418 + 0x000000003f400864 0x25 esp-idf/esp32/libesp32.a(dport_access.c.obj) + *fill* 0x000000003f400889 0x3 + .rodata.find_desc_for_source.str1.4 + 0x000000003f40088c 0x44 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .rodata.is_vect_desc_usable.str1.4 + 0x000000003f4008d0 0x43 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + *fill* 0x000000003f400913 0x1 + .rodata.esp_intr_free.str1.4 + 0x000000003f400914 0x4 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .rodata.__func__$5178 + 0x000000003f400918 0x11 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + *fill* 0x000000003f400929 0x3 + .rodata.__func__$5158 + 0x000000003f40092c 0xe esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + *fill* 0x000000003f40093a 0x2 + .rodata.__func__$5088 + 0x000000003f40093c 0x14 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .rodata.__func__$5053 + 0x000000003f400950 0x15 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + *fill* 0x000000003f400965 0x3 + .rodata.int_desc + 0x000000003f400968 0x200 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .rodata.task_wdt_isr.str1.4 + 0x000000003f400b68 0xfd esp-idf/esp32/libesp32.a(task_wdt.c.obj) + *fill* 0x000000003f400c65 0x3 + .rodata.esp_task_wdt_init.str1.4 + 0x000000003f400c68 0x96 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + *fill* 0x000000003f400cfe 0x2 + .rodata.esp_task_wdt_add.str1.4 + 0x000000003f400d00 0x39 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + *fill* 0x000000003f400d39 0x3 + .rodata.__func__$5773 + 0x000000003f400d3c 0x11 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + *fill* 0x000000003f400d4d 0x3 + .rodata.__func__$5756 + 0x000000003f400d50 0x12 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + *fill* 0x000000003f400d62 0x2 + .rodata.select_rtc_slow_clk.str1.4 + 0x000000003f400d64 0x5b esp-idf/esp32/libesp32.a(clk.c.obj) + *fill* 0x000000003f400dbf 0x1 + .rodata.esp_clk_init.str1.4 + 0x000000003f400dc0 0x68 esp-idf/esp32/libesp32.a(clk.c.obj) + .rodata 0x000000003f400e28 0x4 esp-idf/esp32/libesp32.a(clk.c.obj) + .rodata.__func__$7386 + 0x000000003f400e2c 0xd esp-idf/esp32/libesp32.a(clk.c.obj) + *fill* 0x000000003f400e39 0x3 + .rodata.rtc_brownout_isr_handler.str1.4 + 0x000000003f400e3c 0x26 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + *fill* 0x000000003f400e62 0x2 + .rodata.esp_brownout_init.str1.4 + 0x000000003f400e64 0x8f esp-idf/esp_common/libesp_common.a(brownout.c.obj) + *fill* 0x000000003f400ef3 0x1 + .rodata 0x000000003f400ef4 0x5 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + *fill* 0x000000003f400ef9 0x3 + .rodata.__func__$5399 + 0x000000003f400efc 0x12 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + *fill* 0x000000003f400f0e 0x2 + .rodata.esp_unknown_msg + 0x000000003f400f10 0x6 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + *fill* 0x000000003f400f16 0x2 + .rodata.str1.4 + 0x000000003f400f18 0xf2f esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + *fill* 0x000000003f401e47 0x1 + .rodata.esp_err_msg_table + 0x000000003f401e48 0x4b8 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .rodata.str1.4 + 0x000000003f402300 0x56 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + *fill* 0x000000003f402356 0x2 + .rodata.esp_ipc_init.str1.4 + 0x000000003f402358 0x6 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + 0x16 (size before relaxing) + *fill* 0x000000003f40235e 0x2 + .rodata.__func__$4999 + 0x000000003f402360 0x9 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + *fill* 0x000000003f402369 0x3 + .rodata.__func__$5011 + 0x000000003f40236c 0xd esp-idf/esp_common/libesp_common.a(ipc.c.obj) + *fill* 0x000000003f402379 0x3 + .rodata.str1.4 + 0x000000003f40237c 0x47 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .rodata.timer_task.str1.4 + 0x000000003f4023c3 0xe esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x000000003f4023c3 0x1 + .rodata.esp_timer_init.str1.4 + 0x000000003f4023c4 0xa esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x000000003f4023ce 0x2 + .rodata.__func__$5190 + 0x000000003f4023d0 0xb esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x000000003f4023db 0x1 + .rodata.__func__$5162 + 0x000000003f4023dc 0xd esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x000000003f4023e9 0x3 + .rodata.str1.4 + 0x000000003f4023ec 0xe0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .rodata.esp_timer_impl_init.str1.4 + 0x000000003f4024cc 0x72 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + *fill* 0x000000003f40253e 0x2 + .rodata.__func__$5695 + 0x000000003f402540 0x14 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .rodata.__func__$5679 + 0x000000003f402554 0x1f esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + *fill* 0x000000003f402573 0x1 + .rodata.vPortTaskWrapper.str1.4 + 0x000000003f402574 0x57 esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x000000003f4025cb 0x1 + .rodata.vPortEnterCritical.str1.4 + 0x000000003f4025cc 0xbb esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x000000003f402687 0x1 + .rodata.vPortExitCritical.str1.4 + 0x000000003f402688 0x2c esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.__func__$4258 + 0x000000003f4026b4 0x11 esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x000000003f4026c5 0x3 + .rodata.__func__$4245 + 0x000000003f4026c8 0x11 esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x000000003f4026d9 0x3 + .rodata.xt_unhandled_interrupt.str1.4 + 0x000000003f4026dc 0x23 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + *fill* 0x000000003f4026ff 0x1 + .rodata 0x000000003f402700 0x24 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x000000003f402700 _xt_coproc_sa_offset + .rodata.prvNotifyQueueSetContainer.str1.4 + 0x000000003f402724 0x54 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGenericReset.str1.4 + 0x000000003f402778 0x48 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__FUNCTION__$5151 + 0x000000003f402778 0xd esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f402785 0x3 + .rodata.__FUNCTION__$5140 + 0x000000003f402788 0x17 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f40279f 0x1 + .rodata.__FUNCTION__$5134 + 0x000000003f4027a0 0x17 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f4027b7 0x1 + .rodata.__FUNCTION__$5119 + 0x000000003f4027b8 0x15 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f4027cd 0x3 + .rodata.__FUNCTION__$5109 + 0x000000003f4027d0 0x15 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f4027e5 0x3 + .rodata.__FUNCTION__$5098 + 0x000000003f4027e8 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f4027fa 0x2 + .rodata.__FUNCTION__$5090 + 0x000000003f4027fc 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f402815 0x3 + .rodata.__FUNCTION__$5227 + 0x000000003f402818 0x1b esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f402833 0x1 + .rodata.__FUNCTION__$5079 + 0x000000003f402834 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f402846 0x2 + .rodata.__FUNCTION__$5068 + 0x000000003f402848 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f402866 0x2 + .rodata.__FUNCTION__$5062 + 0x000000003f402868 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f402881 0x3 + .rodata.__FUNCTION__$5055 + 0x000000003f402884 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f40289d 0x3 + .rodata.__FUNCTION__$5028 + 0x000000003f4028a0 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$4229 + 0x000000003f4028b4 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__FUNCTION__$5019 + 0x000000003f4028c8 0x13 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f4028db 0x1 + .rodata.prvDeleteTLS.str1.4 + 0x000000003f4028dc 0x36 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x54 (size before relaxing) + *fill* 0x000000003f402912 0x2 + .rodata.vTaskStartScheduler.str1.4 + 0x000000003f402914 0x7 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskSwitchContext.str1.4 + 0x000000003f40291b 0xe0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f40291b 0x1 + .rodata.vTaskList.str1.4 + 0x000000003f40291c 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f40292b 0x1 + .rodata.__FUNCTION__$5557 + 0x000000003f40292c 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__FUNCTION__$5410 + 0x000000003f402944 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f402959 0x3 + .rodata.__FUNCTION__$5404 + 0x000000003f40295c 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f402971 0x3 + .rodata.__FUNCTION__$5400 + 0x000000003f402974 0x22 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f402996 0x2 + .rodata.__FUNCTION__$5390 + 0x000000003f402998 0x19 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f4029b1 0x3 + .rodata.__FUNCTION__$5381 + 0x000000003f4029b4 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__FUNCTION__$5375 + 0x000000003f4029d4 0x1f esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f4029f3 0x1 + .rodata.__FUNCTION__$5368 + 0x000000003f4029f4 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f402a0a 0x2 + .rodata.__func__$4262 + 0x000000003f402a0c 0x11 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f402a1d 0x3 + .rodata.__func__$4249 + 0x000000003f402a20 0x11 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f402a31 0x3 + .rodata.ucExpectedStackBytes$5339 + 0x000000003f402a34 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__FUNCTION__$5332 + 0x000000003f402a48 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f402a5b 0x1 + .rodata.__FUNCTION__$5323 + 0x000000003f402a5c 0x1d esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f402a79 0x3 + .rodata.__FUNCTION__$5305 + 0x000000003f402a7c 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f402a8e 0x2 + .rodata.__FUNCTION__$5285 + 0x000000003f402a90 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f402a9f 0x1 + .rodata.__FUNCTION__$5266 + 0x000000003f402aa0 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__FUNCTION__$5237 + 0x000000003f402ab4 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f402ac1 0x3 + .rodata.__FUNCTION__$5231 + 0x000000003f402ac4 0x11 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f402ad5 0x3 + .rodata.__FUNCTION__$5203 + 0x000000003f402ad8 0xb esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f402ae3 0x1 + .rodata.__FUNCTION__$5521 + 0x000000003f402ae4 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f402af1 0x3 + .rodata.__FUNCTION__$5525 + 0x000000003f402af4 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f402b01 0x3 + .rodata.__FUNCTION__$5188 + 0x000000003f402b04 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__FUNCTION__$5181 + 0x000000003f402b10 0x19 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f402b29 0x3 + .rodata.prvCheckForValidListAndQueue.str1.4 + 0x000000003f402b2c 0x37 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x54 (size before relaxing) + *fill* 0x000000003f402b63 0x1 + .rodata.xTimerCreateTimerTask.str1.4 + 0x000000003f402b64 0x8 esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.prvProcessReceivedCommands + 0x000000003f402b6c 0x28 esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.__FUNCTION__$4972 + 0x000000003f402b94 0x1d esp-idf/freertos/libfreertos.a(timers.c.obj) + *fill* 0x000000003f402bb1 0x3 + .rodata.__FUNCTION__$4941 + 0x000000003f402bb4 0x1b esp-idf/freertos/libfreertos.a(timers.c.obj) + *fill* 0x000000003f402bcf 0x1 + .rodata.__FUNCTION__$4903 + 0x000000003f402bd0 0x17 esp-idf/freertos/libfreertos.a(timers.c.obj) + *fill* 0x000000003f402be7 0x1 + .rodata.__FUNCTION__$4965 + 0x000000003f402be8 0x14 esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.__FUNCTION__$4855 + 0x000000003f402bfc 0x16 esp-idf/freertos/libfreertos.a(timers.c.obj) + *fill* 0x000000003f402c12 0x2 + .rodata.translate_path.str1.4 + 0x000000003f402c14 0x73 esp-idf/vfs/libvfs.a(vfs.c.obj) + .rodata.esp_vfs_register_fd_range.str1.4 + 0x000000003f402c87 0x73 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x1 (size before relaxing) + *fill* 0x000000003f402c87 0x1 + .rodata 0x000000003f402c88 0x3 esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x000000003f402c8b 0x1 + .rodata.__func__$6185 + 0x000000003f402c8c 0xf esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x000000003f402c9b 0x1 + .rodata.uart_tcsetattr + 0x000000003f402c9c 0x7c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.uart_access.str1.4 + 0x000000003f402d18 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f402d23 0x1 + .rodata.uart_fcntl.str1.4 + 0x000000003f402d24 0x48 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.uart_return_char.str1.4 + 0x000000003f402d6c 0x1d esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f402d89 0x3 + .rodata.uart_fsync.str1.4 + 0x000000003f402d8c 0x172 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f402efe 0x2 + .rodata.esp_vfs_dev_uart_register.str1.4 + 0x000000003f402f00 0x36 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f402f36 0x2 + .rodata.__func__$7385 + 0x000000003f402f38 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f402f43 0x1 + .rodata.__func__$7401 + 0x000000003f402f44 0x11 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f402f55 0x3 + .rodata.__func__$7407 + 0x000000003f402f58 0xa esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f402f62 0x2 + .rodata.__func__$7423 + 0x000000003f402f64 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f402f6f 0x1 + .rodata.__func__$7419 + 0x000000003f402f70 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f402f7b 0x1 + .rodata.__func__$7429 + 0x000000003f402f7c 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f402f87 0x1 + .rodata.__func__$7271 + 0x000000003f402f88 0x12 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f402f9a 0x2 + .rodata.__func__$7439 + 0x000000003f402f9c 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f402fa7 0x1 + .rodata.__func__$7637 + 0x000000003f402fa8 0x1a esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f402fc2 0x2 + .rodata.s_ctx 0x000000003f402fc4 0xc esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.str1.4 + 0x000000003f402fd0 0x34 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x50 (size before relaxing) + .rodata.__FUNCTION__$4770 + 0x000000003f403004 0x15 esp-idf/newlib/libnewlib.a(locks.c.obj) + *fill* 0x000000003f403019 0x3 + .rodata.__FUNCTION__$4761 + 0x000000003f40301c 0xc esp-idf/newlib/libnewlib.a(locks.c.obj) + .rodata.initialize_nvs.str1.4 + 0x000000003f403028 0x28 esp-idf/main/libmain.a(main.c.obj) + .rodata.initialize_filesystem.str1.4 + 0x000000003f403050 0x4a esp-idf/main/libmain.a(main.c.obj) + *fill* 0x000000003f40309a 0x2 + .rodata.initialize_console.str1.4 + 0x000000003f40309c 0xc2 esp-idf/main/libmain.a(main.c.obj) + *fill* 0x000000003f40315e 0x2 + .rodata.app_main.str1.4 + 0x000000003f403160 0x23c esp-idf/main/libmain.a(main.c.obj) + .rodata.__func__$11095 + 0x000000003f40339c 0x13 esp-idf/main/libmain.a(main.c.obj) + *fill* 0x000000003f4033af 0x1 + .rodata.__func__$11088 + 0x000000003f4033b0 0xf esp-idf/main/libmain.a(main.c.obj) + *fill* 0x000000003f4033bf 0x1 + .rodata.__func__$11103 + 0x000000003f4033c0 0x9 esp-idf/main/libmain.a(main.c.obj) + .rodata.write_certificate.str1.4 + 0x000000003f4033c9 0x2 esp-idf/ca/libca.a(ca.c.obj) + *fill* 0x000000003f4033c9 0x3 + .rodata.connect.str1.4 + 0x000000003f4033cc 0x1432 esp-idf/ca/libca.a(ca.c.obj) + 0x146a (size before relaxing) + *fill* 0x000000003f4047fe 0x2 + .rodata.register_ca.str1.4 + 0x000000003f404800 0x63 esp-idf/ca/libca.a(ca.c.obj) + *fill* 0x000000003f404863 0x1 + .rodata 0x000000003f404864 0x14 esp-idf/ca/libca.a(ca.c.obj) + .rodata.__func__$5698 + 0x000000003f404878 0xc esp-idf/ca/libca.a(ca.c.obj) + .rodata.dev_random_entropy_poll.str1.4 + 0x000000003f404884 0x10 esp-idf/ca/libca.a(gen_key.c.obj) + .rodata.write_private_key.str1.4 + 0x000000003f404894 0x3 esp-idf/ca/libca.a(gen_key.c.obj) + *fill* 0x000000003f404897 0x1 + .rodata.task_create.str1.4 + 0x000000003f404898 0x8 esp-idf/ca/libca.a(gen_key.c.obj) + .rodata.connect.str1.4 + 0x000000003f4048a0 0x457 esp-idf/ca/libca.a(gen_key.c.obj) + 0x46f (size before relaxing) + *fill* 0x000000003f404cf7 0x1 + .rodata.register_gen_key.str1.4 + 0x000000003f404cf8 0x55 esp-idf/ca/libca.a(gen_key.c.obj) + *fill* 0x000000003f404d4d 0x3 + .rodata 0x000000003f404d50 0x14 esp-idf/ca/libca.a(gen_key.c.obj) + .rodata.__func__$7118 + 0x000000003f404d64 0x11 esp-idf/ca/libca.a(gen_key.c.obj) + *fill* 0x000000003f404d75 0x3 + .rodata.type_to_str.str1.4 + 0x000000003f404d78 0x8 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .rodata.list.str1.4 + 0x000000003f404d80 0x5e esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .rodata.list_entries.str1.4 + 0x000000003f404dde 0x1 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + *fill* 0x000000003f404dde 0x2 + .rodata.set_namespace.str1.4 + 0x000000003f404de0 0x2d esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + *fill* 0x000000003f404e0d 0x3 + .rodata.erase_all.str1.4 + 0x000000003f404e10 0x38 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .rodata.erase_namespace.str1.4 + 0x000000003f404e48 0x1a esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .rodata.erase.str1.4 + 0x000000003f404e48 0x32 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + *fill* 0x000000003f404e7a 0x2 + .rodata.print_blob.str1.4 + 0x000000003f404e7c 0x5 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + *fill* 0x000000003f404e81 0x3 + .rodata.get_value_from_nvs.str1.4 + 0x000000003f404e84 0x42 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x46 (size before relaxing) + *fill* 0x000000003f404ec6 0x2 + .rodata.store_blob.str1.4 + 0x000000003f404ec8 0x83 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + *fill* 0x000000003f404f4b 0x1 + .rodata.set_value_in_nvs.str1.4 + 0x000000003f404f4c 0x33 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + *fill* 0x000000003f404f7f 0x1 + .rodata.register_nvs.str1.4 + 0x000000003f404f80 0x4fd esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x521 (size before relaxing) + *fill* 0x000000003f40547d 0x3 + .rodata 0x000000003f405480 0x78 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .rodata.__func__$5941 + 0x000000003f4054f8 0xd esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + *fill* 0x000000003f405505 0x3 + .rodata.str1.4 + 0x000000003f405508 0x30 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .rodata.type_str_pair + 0x000000003f405538 0x58 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .rodata.register_free.str1.4 + 0x000000003f405590 0x7a esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + *fill* 0x000000003f40560a 0x2 + .rodata.register_heap.str1.4 + 0x000000003f40560c 0x80 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + .rodata.register_version.str1.4 + 0x000000003f40568c 0x1c esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x24 (size before relaxing) + .rodata.register_restart.str1.4 + 0x000000003f4056a8 0x23 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + *fill* 0x000000003f4056cb 0x1 + .rodata.register_tasks.str1.4 + 0x000000003f4056cc 0x2c esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + .rodata.free_mem.str1.4 + 0x000000003f4056f8 0x4 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + .rodata.heap_size.str1.4 + 0x000000003f4056f8 0x35 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + *fill* 0x000000003f40572d 0x3 + .rodata.get_version.str1.4 + 0x000000003f405730 0xba esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0xbe (size before relaxing) + *fill* 0x000000003f4057ea 0x2 + .rodata.restart.str1.4 + 0x000000003f4057ec 0x22 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + *fill* 0x000000003f40580e 0x2 + .rodata.register_deep_sleep.str1.4 + 0x000000003f405810 0x116 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x122 (size before relaxing) + *fill* 0x000000003f405926 0x2 + .rodata 0x000000003f405928 0x28 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + .rodata.deep_sleep.str1.4 + 0x000000003f405950 0x14c esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x150 (size before relaxing) + .rodata.register_light_sleep.str1.4 + 0x000000003f405a9c 0xc7 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + *fill* 0x000000003f405b63 0x1 + .rodata.light_sleep.str1.4 + 0x000000003f405b64 0x1c0 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x1d0 (size before relaxing) + .rodata.tasks_info.str1.4 + 0x000000003f405d24 0x68 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + .rodata.__func__$8191 + 0x000000003f405d8c 0xf esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + *fill* 0x000000003f405d9b 0x1 + .rodata.__func__$8228 + 0x000000003f405d9c 0xc esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + .rodata.__func__$8252 + 0x000000003f405da8 0x15 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + *fill* 0x000000003f405dbd 0x3 + .rodata.__func__$8205 + 0x000000003f405dc0 0xb esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + *fill* 0x000000003f405dcb 0x1 + .rodata.__func__$8214 + 0x000000003f405dcc 0x14 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + .rodata.__func__$8158 + 0x000000003f405de0 0x11 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + *fill* 0x000000003f405df1 0x3 + .rodata.__func__$8148 + 0x000000003f405df4 0x11 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + *fill* 0x000000003f405e05 0x3 + .rodata.__func__$8179 + 0x000000003f405e08 0xe esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + *fill* 0x000000003f405e16 0x2 + .rodata.__func__$8168 + 0x000000003f405e18 0xe esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + *fill* 0x000000003f405e26 0x2 + .rodata.initialise_wifi.str1.4 + 0x000000003f405e28 0x159 esp-idf/wifi/libwifi.a(wifi.c.obj) + *fill* 0x000000003f405f81 0x3 + .rodata.wifi_join.str1.4 + 0x000000003f405f84 0x6b esp-idf/wifi/libwifi.a(wifi.c.obj) + *fill* 0x000000003f405fef 0x1 + .rodata.connect.str1.4 + 0x000000003f405ff0 0x79 esp-idf/wifi/libwifi.a(wifi.c.obj) + *fill* 0x000000003f406069 0x3 + .rodata.register_wifi.str1.4 + 0x000000003f40606c 0x6a esp-idf/wifi/libwifi.a(wifi.c.obj) + 0x92 (size before relaxing) + *fill* 0x000000003f4060d6 0x2 + .rodata 0x000000003f4060d8 0x14 esp-idf/wifi/libwifi.a(wifi.c.obj) + .rodata.__func__$9390 + 0x000000003f4060ec 0x10 esp-idf/wifi/libwifi.a(wifi.c.obj) + .rodata.__func__$9406 + 0x000000003f4060fc 0xa esp-idf/wifi/libwifi.a(wifi.c.obj) + *fill* 0x000000003f406106 0x2 + .rodata.__func__$9421 + 0x000000003f406108 0x8 esp-idf/wifi/libwifi.a(wifi.c.obj) + .rodata.__func__$9428 + 0x000000003f406110 0xe esp-idf/wifi/libwifi.a(wifi.c.obj) + *fill* 0x000000003f40611e 0x2 + .rodata.connect.str1.4 + 0x000000003f406120 0xe6 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + *fill* 0x000000003f406206 0x2 + .rodata.start_webserver.str1.4 + 0x000000003f406208 0x88 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x90 (size before relaxing) + .rodata 0x000000003f406290 0x7c esp-idf/https_server/libhttps_server.a(https_server.c.obj) + .rodata.echo_post_handler.str1.4 + 0x000000003f40630c 0xac esp-idf/https_server/libhttps_server.a(https_server.c.obj) + .rodata.root_get_handler.str1.4 + 0x000000003f4063b8 0xc5 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + *fill* 0x000000003f40647d 0x3 + .rodata.register_server.str1.4 + 0x000000003f406480 0x7b esp-idf/https_server/libhttps_server.a(https_server.c.obj) + *fill* 0x000000003f4064fb 0x1 + .rodata.__func__$10036 + 0x000000003f4064fc 0x8 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + .rodata.__func__$10046 + 0x000000003f406504 0x10 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + .rodata.str1.4 + 0x000000003f406514 0x6 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0xa (size before relaxing) + *fill* 0x000000003f40651a 0x2 + .rodata.root 0x000000003f40651c 0x10 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + .rodata.echo 0x000000003f40652c 0x10 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + .rodata.decode.str1.4 + 0x000000003f40653c 0x4 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) + .rodata.embedded + 0x000000003f406540 0x48c esp-idf/https_server/libhttps_server.a(cacert.pem.S.obj) + 0x000000003f406540 _binary_cacert_pem_start + 0x000000003f406540 cacert_pem + 0x000000003f4069c8 _binary_cacert_pem_end + 0x000000003f4069c8 cacert_pem_length + .rodata.embedded + 0x000000003f4069cc 0x6ad esp-idf/https_server/libhttps_server.a(prvtkey.pem.S.obj) + 0x000000003f4069cc prvtkey_pem + 0x000000003f4069cc _binary_prvtkey_pem_start + 0x000000003f407075 prvtkey_pem_length + 0x000000003f407075 _binary_prvtkey_pem_end + *fill* 0x000000003f407079 0x3 + .rodata.rtc_clk_cal_internal.str1.4 + 0x000000003f40707c 0xad esp-idf/soc/libsoc.a(rtc_time.c.obj) + *fill* 0x000000003f407129 0x3 + .rodata.__func__$3596 + 0x000000003f40712c 0x15 esp-idf/soc/libsoc.a(rtc_time.c.obj) + *fill* 0x000000003f407141 0x3 + .rodata.esp_netif_list_unlock.str1.4 + 0x000000003f407144 0x4f esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + *fill* 0x000000003f407193 0x1 + .rodata.esp_netif_remove_from_list.str1.4 + 0x000000003f407194 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .rodata.esp_netif_next.str1.4 + 0x000000003f4071ac 0x51 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + *fill* 0x000000003f4071fd 0x3 + .rodata.__func__$8224 + 0x000000003f407200 0x1b esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + *fill* 0x000000003f40721b 0x1 + .rodata.__func__$8212 + 0x000000003f40721c 0x16 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + *fill* 0x000000003f407232 0x2 + .rodata.str1.4 + 0x000000003f407234 0x9 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + *fill* 0x000000003f40723d 0x3 + .rodata.esp_netif_config_sanity_check.str1.4 + 0x000000003f407240 0x122 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003f407362 0x2 + .rodata.esp_netif_dhcps_cb.str1.4 + 0x000000003f407364 0x9f esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003f407403 0x1 + .rodata.esp_netif_lwip_add.str1.4 + 0x000000003f407404 0x32 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003f407436 0x2 + .rodata.esp_netif_ip_lost_timer.str1.4 + 0x000000003f407438 0x48 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_dhcpc_start_api.str1.4 + 0x000000003f407480 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_init.str1.4 + 0x000000003f4074b0 0x70 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.esp_netif_new.str1.4 + 0x000000003f407520 0x101 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003f407621 0x3 + .rodata.esp_netif_attach.str1.4 + 0x000000003f407624 0x49 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003f40766d 0x3 + .rodata.esp_netif_start_api.str1.4 + 0x000000003f407670 0x92 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003f407702 0x2 + .rodata.esp_netif_dhcpc_cb.str1.4 + 0x000000003f407704 0x42 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003f407746 0x2 + .rodata.__func__$9639 + 0x000000003f407748 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .rodata.__func__$9591 + 0x000000003f40775c 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x000000003f40776a 0x2 + .rodata.esp_netif_ppp_set_auth.str1.4 + 0x000000003f40776c 0x6f esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + *fill* 0x000000003f4077db 0x1 + .rodata.__func__$8718 + 0x000000003f4077dc 0x16 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + *fill* 0x000000003f4077f2 0x2 + .rodata.__func__$8714 + 0x000000003f4077f4 0x13 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + *fill* 0x000000003f407807 0x1 + .rodata.__func__$8703 + 0x000000003f407808 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + .rodata.__func__$8699 + 0x000000003f40781c 0x12 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + *fill* 0x000000003f40782e 0x2 + .rodata.__func__$8694 + 0x000000003f407830 0x20 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + .rodata 0x000000003f407850 0x14 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .rodata.esp_event_legacy_wifi_event_id.str1.4 + 0x000000003f407864 0x3c esp-idf/esp_event/libesp_event.a(event_send.c.obj) + .rodata.esp_event_legacy_wifi_event_id + 0x000000003f4078a0 0x44 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + .rodata.esp_event_legacy_ip_event_id.str1.4 + 0x000000003f4078e4 0x2e esp-idf/esp_event/libesp_event.a(event_send.c.obj) + *fill* 0x000000003f407912 0x2 + .rodata.esp_event_legacy_ip_event_id + 0x000000003f407914 0x14 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + .rodata.esp_event_legacy_event_id.str1.4 + 0x000000003f407928 0x2d esp-idf/esp_event/libesp_event.a(event_send.c.obj) + *fill* 0x000000003f407955 0x3 + .rodata.g_wifi_default_wpa_crypto_funcs + 0x000000003f407958 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x000000003f407958 g_wifi_default_wpa_crypto_funcs + .rodata.rcons 0x000000003f4079b8 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + 0x000000003f4079b8 rcons + *fill* 0x000000003f4079c2 0x2 + .rodata.Td4s 0x000000003f4079c4 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + 0x000000003f4079c4 Td4s + .rodata.Td0 0x000000003f407ac4 0x400 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + 0x000000003f407ac4 Td0 + .rodata.Te0 0x000000003f407ec4 0x400 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + 0x000000003f407ec4 Te0 + .rodata.range_read_addr_blocks + 0x000000003f4082c4 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x000000003f4082c4 range_read_addr_blocks + .rodata.set_cnt_in_reg.str1.4 + 0x000000003f4082e4 0x77 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x000000003f40835b 0x1 + .rodata.write_reg.str1.4 + 0x000000003f40835c 0xc0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_process.str1.4 + 0x000000003f40841c 0x69 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x000000003f408485 0x3 + .rodata.esp_efuse_utility_read_reg.str1.4 + 0x000000003f408488 0xd0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$3764 + 0x000000003f408558 0x1b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x000000003f408573 0x1 + .rodata.__func__$3668 + 0x000000003f408574 0x1a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x000000003f40858e 0x2 + .rodata.CHIP_VER_REV2 + 0x000000003f408590 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_VER_REV1 + 0x000000003f408594 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC_FACTORY_CRC + 0x000000003f408598 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC_FACTORY + 0x000000003f40859c 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.spi_flash_init_lock.str1.4 + 0x000000003f4085b4 0x59 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + *fill* 0x000000003f40860d 0x3 + .rodata.str1.4 + 0x000000003f408610 0xb7 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + *fill* 0x000000003f4086c7 0x1 + .rodata.__func__$5413 + 0x000000003f4086c8 0x31 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + *fill* 0x000000003f4086f9 0x3 + .rodata.__func__$5402 + 0x000000003f4086fc 0x32 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + *fill* 0x000000003f40872e 0x2 + .rodata.__func__$5383 + 0x000000003f408730 0x14 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .rodata.str1.4 + 0x000000003f408744 0xbc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.io_mode_str + 0x000000003f408800 0x2a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x000000003f40882a 0x2 + .rodata.TAG 0x000000003f40882c 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x000000003f408836 0x2 + .rodata.esp_flash_init_default_chip.str1.4 + 0x000000003f408838 0xfb esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + *fill* 0x000000003f408933 0x1 + .rodata.TAG 0x000000003f408934 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + *fill* 0x000000003f40893e 0x2 + .rodata.ensure_partitions_loaded.str1.4 + 0x000000003f408940 0x41 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + *fill* 0x000000003f408981 0x3 + .rodata.esp_partition_next.str1.4 + 0x000000003f408984 0x3f esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + *fill* 0x000000003f4089c3 0x1 + .rodata.esp_partition_get.str1.4 + 0x000000003f4089c4 0x11 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + *fill* 0x000000003f4089d5 0x3 + .rodata.esp_partition_verify.str1.4 + 0x000000003f4089d8 0x12 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + *fill* 0x000000003f4089ea 0x2 + .rodata.__func__$4288 + 0x000000003f4089ec 0x1a esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + *fill* 0x000000003f408a06 0x2 + .rodata.__func__$4282 + 0x000000003f408a08 0x14 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .rodata.__func__$4275 + 0x000000003f408a1c 0x13 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + *fill* 0x000000003f408a2f 0x1 + .rodata.__func__$4230 + 0x000000003f408a30 0x12 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + *fill* 0x000000003f408a42 0x2 + .rodata.__func__$4192 + 0x000000003f408a44 0x13 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + *fill* 0x000000003f408a57 0x1 + .rodata.str1.4 + 0x000000003f408a58 0x102 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + *fill* 0x000000003f408b5a 0x2 + .rodata.__func__$5465 + 0x000000003f408b5c 0x11 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + *fill* 0x000000003f408b6d 0x3 + .rodata.__func__$5456 + 0x000000003f408b70 0x15 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.nvs_flash_init.str1.4 + 0x000000003f408b85 0x102 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + *fill* 0x000000003f408b85 0x3 + .rodata.nvs_entry_next.str1.4 + 0x000000003f408b88 0x3f esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x43 (size before relaxing) + *fill* 0x000000003f408bc7 0x1 + .rodata._ZZ14nvs_entry_nextE19__PRETTY_FUNCTION__ + 0x000000003f408bc8 0x36 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + *fill* 0x000000003f408bfe 0x2 + .rodata._ZN3nvs7Storage4initEjj.str1.4 + 0x000000003f408c00 0xcd esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + *fill* 0x000000003f408ccd 0x3 + .rodata._ZN3nvs7Storage18writeMultiPageBlobEhPKcPKvjNS_9VerOffsetE.str1.4 + 0x000000003f408cd0 0x63 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + *fill* 0x000000003f408d33 0x1 + .rodata._ZN3nvs7Storage16cmpMultiPageBlobEhPKcPKvj.str1.4 + 0x000000003f408d34 0x53 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + *fill* 0x000000003f408d87 0x1 + .rodata._ZN3nvs7Storage18eraseMultiPageBlobEhPKcNS_9VerOffsetE.str1.4 + 0x000000003f408d88 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .rodata._ZN3nvs7Storage17readMultiPageBlobEhPKcPvj.str1.4 + 0x000000003f408db0 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + *fill* 0x000000003f408dc5 0x3 + .rodata._ZN3nvs7Storage9writeItemEhNS_8ItemTypeEPKcPKvj.str1.4 + 0x000000003f408dc8 0x81 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + *fill* 0x000000003f408e49 0x3 + .rodata._ZZN3nvs7Storage18eraseMultiPageBlobEhPKcNS_9VerOffsetEE19__PRETTY_FUNCTION__ + 0x000000003f408e4c 0x51 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + *fill* 0x000000003f408e9d 0x3 + .rodata._ZZN3nvs7Storage16cmpMultiPageBlobEhPKcPKvjE19__PRETTY_FUNCTION__ + 0x000000003f408ea0 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .rodata._ZZN3nvs7Storage17readMultiPageBlobEhPKcPvjE19__PRETTY_FUNCTION__ + 0x000000003f408ef4 0x4f esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + *fill* 0x000000003f408f43 0x1 + .rodata._ZZN3nvs7Storage9writeItemEhNS_8ItemTypeEPKcPKvjE19__PRETTY_FUNCTION__ + 0x000000003f408f44 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .rodata._ZZN3nvs7Storage18writeMultiPageBlobEhPKcPKvjNS_9VerOffsetEE19__PRETTY_FUNCTION__ + 0x000000003f408fa0 0x66 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + *fill* 0x000000003f409006 0x2 + .rodata._ZZN3nvs4Item8getValueIhEEvRT_E19__PRETTY_FUNCTION__ + 0x000000003f409008 0x36 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + *fill* 0x000000003f40903e 0x2 + .rodata._ZTVN3nvs19NVSPartitionManagerE + 0x000000003f409040 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x000000003f409040 _ZTVN3nvs19NVSPartitionManagerE + .rodata._ZN3nvs8HashList5eraseEjb.str1.4 + 0x000000003f409050 0x7e esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + *fill* 0x000000003f4090ce 0x2 + .rodata._ZZN3nvs8HashList5eraseEjbE19__PRETTY_FUNCTION__ + 0x000000003f4090d0 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .rodata._ZN3nvs4Page20updateFirstUsedEntryEjj.str1.4 + 0x000000003f4090f8 0x5c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0xc9 (size before relaxing) + .rodata._ZN3nvs4Page10initializeEv.str1.4 + 0x000000003f409154 0x23 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x000000003f409177 0x1 + .rodata._ZN3nvs4Page15alterEntryStateEjNS0_10EntryStateE.str1.4 + 0x000000003f409178 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .rodata._ZN3nvs4Page10writeEntryERKNS_4ItemE.str1.4 + 0x000000003f40918c 0x54 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .rodata._ZN3nvs4Page20alterEntryRangeStateEjjNS0_10EntryStateE.str1.4 + 0x000000003f4091e0 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .rodata._ZN3nvs4Page14writeEntryDataEPKhj.str1.4 + 0x000000003f409200 0x59 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x000000003f409259 0x3 + .rodata._ZN3nvs4Page9writeItemEhNS_8ItemTypeEPKcPKvjh.str1.4 + 0x000000003f40925c 0x3a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x000000003f409296 0x2 + .rodata._ZN3nvs4Page17eraseEntryAndSpanEj.str1.4 + 0x000000003f409298 0x3b esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x000000003f4092d3 0x1 + .rodata._ZN3nvs4Page9copyItemsERS0_.str1.4 + 0x000000003f4092d4 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x000000003f4092f6 0x2 + .rodata._ZN3nvs4Page15mLoadEntryTableEv.str1.4 + 0x000000003f4092f8 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x000000003f409306 0x2 + .rodata._ZZN3nvs4Page20alterEntryRangeStateEjjNS0_10EntryStateEE19__PRETTY_FUNCTION__ + 0x000000003f409308 0x51 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x000000003f409359 0x3 + .rodata._ZZN19CompressedEnumTableIN3nvs4Page10EntryStateELj2ELj126EE3setEjS2_E19__PRETTY_FUNCTION__ + 0x000000003f40935c 0xb2 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x000000003f40940e 0x2 + .rodata._ZZN3nvs4Page15alterEntryStateEjNS0_10EntryStateEE19__PRETTY_FUNCTION__ + 0x000000003f409410 0x44 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .rodata._ZZN3nvs4Page10initializeEvE19__PRETTY_FUNCTION__ + 0x000000003f409454 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x000000003f409476 0x2 + .rodata._ZZN3nvs4Page15mLoadEntryTableEvE19__PRETTY_FUNCTION__ + 0x000000003f409478 0x27 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x000000003f40949f 0x1 + .rodata._ZZN3nvs4Page9copyItemsERS0_E19__PRETTY_FUNCTION__ + 0x000000003f4094a0 0x2b esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x000000003f4094cb 0x1 + .rodata._ZZN3nvs4Page20updateFirstUsedEntryEjjE19__PRETTY_FUNCTION__ + 0x000000003f4094cc 0x35 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x000000003f409501 0x3 + .rodata._ZZNK19CompressedEnumTableIN3nvs4Page10EntryStateELj2ELj126EE3getEjE19__PRETTY_FUNCTION__ + 0x000000003f409504 0xb2 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x000000003f4095b6 0x2 + .rodata._ZZN3nvs4Page17eraseEntryAndSpanEjE19__PRETTY_FUNCTION__ + 0x000000003f4095b8 0x2f esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x000000003f4095e7 0x1 + .rodata._ZZN3nvs4Page9writeItemEhNS_8ItemTypeEPKcPKvjhE19__PRETTY_FUNCTION__ + 0x000000003f4095e8 0x62 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x000000003f40964a 0x2 + .rodata._ZZN3nvs4Page14writeEntryDataEPKhjE19__PRETTY_FUNCTION__ + 0x000000003f40964c 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .rodata._ZZNK3nvs4Page15getEntryAddressEjE19__PRETTY_FUNCTION__ + 0x000000003f409688 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x000000003f4096ba 0x2 + .rodata._ZN3nvs11PageManager14requestNewPageEv.str1.4 + 0x000000003f4096bc 0x73 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + *fill* 0x000000003f40972f 0x1 + .rodata._ZN3nvs11PageManager4loadEjj.str1.4 + 0x000000003f409730 0x29 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + *fill* 0x000000003f409759 0x3 + .rodata._ZZN3nvs11PageManager14requestNewPageEvE19__PRETTY_FUNCTION__ + 0x000000003f40975c 0x2d esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + *fill* 0x000000003f409789 0x3 + .rodata._ZZN3nvs11PageManager4loadEjjE19__PRETTY_FUNCTION__ + 0x000000003f40978c 0x35 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + *fill* 0x000000003f4097c1 0x3 + .rodata._ZTVN3nvs15NVSHandleSimpleE + 0x000000003f4097c4 0x3c esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x000000003f4097c4 _ZTVN3nvs15NVSHandleSimpleE + .rodata.s_set_default_wifi_log_level.str1.4 + 0x000000003f409800 0x5 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0xd (size before relaxing) + *fill* 0x000000003f409805 0x3 + .rodata.esp_wifi_deinit.str1.4 + 0x000000003f409808 0x48 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .rodata.esp_wifi_init.str1.4 + 0x000000003f409850 0xb9 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + *fill* 0x000000003f409909 0x3 + .rodata.str1.4 + 0x000000003f40990c 0xb esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + *fill* 0x000000003f409917 0x1 + .rodata.wifi_default_action_sta_got_ip.str1.4 + 0x000000003f409918 0x57 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + *fill* 0x000000003f40996f 0x1 + .rodata.wifi_start.str1.4 + 0x000000003f409970 0x82 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + *fill* 0x000000003f4099f2 0x2 + .rodata.create_and_attach.str1.4 + 0x000000003f4099f4 0x3e esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + *fill* 0x000000003f409a32 0x2 + .rodata.esp_netif_create_default_wifi_ap.str1.4 + 0x000000003f409a34 0x41 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x49 (size before relaxing) + *fill* 0x000000003f409a75 0x3 + .rodata.__func__$9245 + 0x000000003f409a78 0x22 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + *fill* 0x000000003f409a9a 0x2 + .rodata.__func__$9239 + 0x000000003f409a9c 0x21 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + *fill* 0x000000003f409abd 0x3 + .rodata.esp_wifi_create_if_driver.str1.4 + 0x000000003f409ac0 0x4f esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + *fill* 0x000000003f409b0f 0x1 + .rodata.esp_wifi_register_if_rxcb.str1.4 + 0x000000003f409b10 0xe3 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + *fill* 0x000000003f409bf3 0x1 + .rodata.load_cal_data_from_nvs_handle.str1.4 + 0x000000003f409bf4 0xf0 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .rodata.store_cal_data_to_nvs_handle.str1.4 + 0x000000003f409ce4 0x10a esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003f409dee 0x2 + .rodata.esp_phy_rf_deinit.str1.4 + 0x000000003f409df0 0xd3 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003f409ec3 0x1 + .rodata.esp_modem_sleep_enter.str1.4 + 0x000000003f409ec4 0x3f esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003f409f03 0x1 + .rodata.esp_modem_sleep_register.str1.4 + 0x000000003f409f04 0x40 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .rodata.esp_phy_load_cal_data_from_nvs.str1.4 + 0x000000003f409f44 0x6a esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003f409fae 0x2 + .rodata.esp_phy_rf_init.str1.4 + 0x000000003f409fb0 0x59 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003f40a009 0x3 + .rodata.esp_modem_sleep_deregister.str1.4 + 0x000000003f40a00c 0x3f esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003f40a04b 0x1 + .rodata.esp_phy_load_cal_and_init.str1.4 + 0x000000003f40a04c 0x12b esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003f40a177 0x1 + .rodata.__func__$11133 + 0x000000003f40a178 0x1d esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003f40a195 0x3 + .rodata.__func__$11123 + 0x000000003f40a198 0x1e esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003f40a1b6 0x2 + .rodata.__func__$11104 + 0x000000003f40a1b8 0x1f esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003f40a1d7 0x1 + .rodata.__func__$11082 + 0x000000003f40a1d8 0x1b esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003f40a1f3 0x1 + .rodata.__func__$11078 + 0x000000003f40a1f4 0x19 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003f40a20d 0x3 + .rodata.__func__$11073 + 0x000000003f40a210 0x15 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003f40a225 0x3 + .rodata.__func__$11068 + 0x000000003f40a228 0x16 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003f40a23e 0x2 + .rodata.__func__$11059 + 0x000000003f40a240 0x12 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x000000003f40a252 0x2 + .rodata.__func__$11052 + 0x000000003f40a254 0x10 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .rodata.phy_init_data + 0x000000003f40a264 0x80 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .rodata.dhcps_start.str1.4 + 0x000000003f40a2e4 0x24 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .rodata.dhcps_stop.str1.4 + 0x000000003f40a308 0x1c esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .rodata.magic_cookie + 0x000000003f40a324 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .rodata.tcpip_thread_handle_msg.str1.4 + 0x000000003f40a328 0x5f esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x000000003f40a387 0x1 + .rodata.tcpip_thread_handle_msg + 0x000000003f40a388 0x14 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.tcpip_inpkt.str1.4 + 0x000000003f40a39c 0xd esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x000000003f40a3a9 0x3 + .rodata.tcpip_send_msg_wait_sem.str1.4 + 0x000000003f40a3ac 0x1a esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x000000003f40a3c6 0x2 + .rodata.tcpip_init.str1.4 + 0x000000003f40a3c8 0x28 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$7007 + 0x000000003f40a3f0 0x18 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$6988 + 0x000000003f40a408 0xd esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x000000003f40a415 0x3 + .rodata.__func__$7064 + 0x000000003f40a418 0xb esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x000000003f40a423 0x1 + .rodata.__func__$7037 + 0x000000003f40a424 0x18 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.__func__$7030 + 0x000000003f40a43c 0x13 esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x000000003f40a44f 0x1 + .rodata.__func__$7024 + 0x000000003f40a450 0xf esp-idf/lwip/liblwip.a(tcpip.c.obj) + *fill* 0x000000003f40a45f 0x1 + .rodata.__func__$7014 + 0x000000003f40a460 0xc esp-idf/lwip/liblwip.a(tcpip.c.obj) + .rodata.dns_call_found.str1.4 + 0x000000003f40a46c 0x52 esp-idf/lwip/liblwip.a(dns.c.obj) + *fill* 0x000000003f40a4be 0x2 + .rodata.dns_send.str1.4 + 0x000000003f40a4c0 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.dns_check_entry.str1.4 + 0x000000003f40a4d8 0x3b esp-idf/lwip/liblwip.a(dns.c.obj) + *fill* 0x000000003f40a513 0x1 + .rodata.__func__$6881 + 0x000000003f40a514 0x9 esp-idf/lwip/liblwip.a(dns.c.obj) + *fill* 0x000000003f40a51d 0x3 + .rodata.__func__$6915 + 0x000000003f40a520 0xf esp-idf/lwip/liblwip.a(dns.c.obj) + *fill* 0x000000003f40a52f 0x1 + .rodata.__func__$6941 + 0x000000003f40a530 0x10 esp-idf/lwip/liblwip.a(dns.c.obj) + .rodata.dns_mquery_v6group + 0x000000003f40a540 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x000000003f40a540 dns_mquery_v6group + .rodata.dns_mquery_v4group + 0x000000003f40a558 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x000000003f40a558 dns_mquery_v4group + .rodata.ip_addr_any_type + 0x000000003f40a570 0x18 esp-idf/lwip/liblwip.a(ip.c.obj) + 0x000000003f40a570 ip_addr_any_type + .rodata.mem_malloc.str1.4 + 0x000000003f40a588 0x62 esp-idf/lwip/liblwip.a(mem.c.obj) + *fill* 0x000000003f40a5ea 0x2 + .rodata.mem_free.str1.4 + 0x000000003f40a5ec 0x28 esp-idf/lwip/liblwip.a(mem.c.obj) + .rodata.__func__$6172 + 0x000000003f40a614 0x9 esp-idf/lwip/liblwip.a(mem.c.obj) + *fill* 0x000000003f40a61d 0x3 + .rodata.__func__$6168 + 0x000000003f40a620 0xb esp-idf/lwip/liblwip.a(mem.c.obj) + *fill* 0x000000003f40a62b 0x1 + .rodata.do_memp_malloc_pool.str1.4 + 0x000000003f40a62c 0x63 esp-idf/lwip/liblwip.a(memp.c.obj) + *fill* 0x000000003f40a68f 0x1 + .rodata.do_memp_free_pool.str1.4 + 0x000000003f40a690 0x20 esp-idf/lwip/liblwip.a(memp.c.obj) + .rodata.memp_malloc.str1.4 + 0x000000003f40a6b0 0x1d esp-idf/lwip/liblwip.a(memp.c.obj) + *fill* 0x000000003f40a6cd 0x3 + .rodata.memp_free.str1.4 + 0x000000003f40a6d0 0x1b esp-idf/lwip/liblwip.a(memp.c.obj) + *fill* 0x000000003f40a6eb 0x1 + .rodata.__func__$8276 + 0x000000003f40a6ec 0x12 esp-idf/lwip/liblwip.a(memp.c.obj) + *fill* 0x000000003f40a6fe 0x2 + .rodata.__func__$8259 + 0x000000003f40a700 0x14 esp-idf/lwip/liblwip.a(memp.c.obj) + .rodata.memp_pools + 0x000000003f40a714 0x4c esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40a714 memp_pools + .rodata.str1.4 + 0x000000003f40a760 0xdc esp-idf/lwip/liblwip.a(memp.c.obj) + .rodata.memp_PBUF_POOL + 0x000000003f40a83c 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40a83c memp_PBUF_POOL + .rodata.memp_PBUF + 0x000000003f40a844 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40a844 memp_PBUF + .rodata.memp_MLD6_GROUP + 0x000000003f40a84c 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40a84c memp_MLD6_GROUP + .rodata.memp_IP6_REASSDATA + 0x000000003f40a854 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40a854 memp_IP6_REASSDATA + .rodata.memp_ND6_QUEUE + 0x000000003f40a85c 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40a85c memp_ND6_QUEUE + .rodata.memp_NETDB + 0x000000003f40a864 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40a864 memp_NETDB + .rodata.memp_SYS_TIMEOUT + 0x000000003f40a86c 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40a86c memp_SYS_TIMEOUT + .rodata.memp_IGMP_GROUP + 0x000000003f40a874 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40a874 memp_IGMP_GROUP + .rodata.memp_ARP_QUEUE + 0x000000003f40a87c 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40a87c memp_ARP_QUEUE + .rodata.memp_TCPIP_MSG_INPKT + 0x000000003f40a884 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40a884 memp_TCPIP_MSG_INPKT + .rodata.memp_TCPIP_MSG_API + 0x000000003f40a88c 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40a88c memp_TCPIP_MSG_API + .rodata.memp_NETCONN + 0x000000003f40a894 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40a894 memp_NETCONN + .rodata.memp_NETBUF + 0x000000003f40a89c 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40a89c memp_NETBUF + .rodata.memp_FRAG_PBUF + 0x000000003f40a8a4 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40a8a4 memp_FRAG_PBUF + .rodata.memp_TCP_SEG + 0x000000003f40a8ac 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40a8ac memp_TCP_SEG + .rodata.memp_TCP_PCB_LISTEN + 0x000000003f40a8b4 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40a8b4 memp_TCP_PCB_LISTEN + .rodata.memp_TCP_PCB + 0x000000003f40a8bc 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40a8bc memp_TCP_PCB + .rodata.memp_UDP_PCB + 0x000000003f40a8c4 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40a8c4 memp_UDP_PCB + .rodata.memp_RAW_PCB + 0x000000003f40a8cc 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x000000003f40a8cc memp_RAW_PCB + .rodata.netif_loopif_init.str1.4 + 0x000000003f40a8d4 0x64 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_issue_reports.str1.4 + 0x000000003f40a938 0x23 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_do_set_ipaddr.str1.4 + 0x000000003f40a95b 0x23 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x10 (size before relaxing) + *fill* 0x000000003f40a95b 0x1 + .rodata.netif_poll.str1.4 + 0x000000003f40a95c 0x98 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_add.str1.4 + 0x000000003f40a9f4 0x82 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f40aa76 0x2 + .rodata.netif_set_up.str1.4 + 0x000000003f40aa78 0x1c esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_set_down.str1.4 + 0x000000003f40aa94 0x1e esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f40aab2 0x2 + .rodata.netif_set_link_up.str1.4 + 0x000000003f40aab4 0x21 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f40aad5 0x3 + .rodata.netif_loop_output.str1.4 + 0x000000003f40aad8 0x70 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.netif_ip6_addr_set_parts.str1.4 + 0x000000003f40ab48 0x1e esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f40ab66 0x2 + .rodata.netif_get_ip6_addr_match.str1.4 + 0x000000003f40ab68 0x52 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f40abba 0x2 + .rodata.__func__$7792 + 0x000000003f40abbc 0x19 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f40abd5 0x3 + .rodata.__func__$7782 + 0x000000003f40abd8 0x19 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f40abf1 0x3 + .rodata.__func__$7747 + 0x000000003f40abf4 0xb esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f40abff 0x1 + .rodata.__func__$7729 + 0x000000003f40ac00 0x12 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f40ac12 0x2 + .rodata.__func__$7709 + 0x000000003f40ac14 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$7643 + 0x000000003f40ac28 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) + .rodata.__func__$7620 + 0x000000003f40ac3c 0xa esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f40ac46 0x2 + .rodata.__func__$7587 + 0x000000003f40ac48 0x12 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000003f40ac5a 0x2 + .rodata.pbuf_add_header_impl.str1.4 + 0x000000003f40ac5c 0x3f esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4b (size before relaxing) + *fill* 0x000000003f40ac9b 0x1 + .rodata.pbuf_alloc_reference.str1.4 + 0x000000003f40ac9c 0x12 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40acae 0x2 + .rodata.pbuf_remove_header.str1.4 + 0x000000003f40acb0 0x1e esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40acce 0x2 + .rodata.pbuf_free.str1.4 + 0x000000003f40acd0 0x4e esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40ad1e 0x2 + .rodata.pbuf_alloc.str1.4 + 0x000000003f40ad20 0xab esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40adcb 0x1 + .rodata.pbuf_realloc.str1.4 + 0x000000003f40adcc 0x4c esp-idf/lwip/liblwip.a(pbuf.c.obj) + .rodata.pbuf_ref.str1.4 + 0x000000003f40ae18 0x12 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40ae2a 0x2 + .rodata.pbuf_cat.str1.4 + 0x000000003f40ae2c 0x65 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40ae91 0x3 + .rodata.pbuf_copy.str1.4 + 0x000000003f40ae94 0x9e esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40af32 0x2 + .rodata.pbuf_copy_partial.str1.4 + 0x000000003f40af34 0x43 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40af77 0x1 + .rodata.pbuf_take.str1.4 + 0x000000003f40af78 0x82 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40affa 0x2 + .rodata.pbuf_take_at.str1.4 + 0x000000003f40affc 0x17 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b013 0x1 + .rodata.pbuf_clone.str1.4 + 0x000000003f40b014 0x11 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b025 0x3 + .rodata.__func__$7446 + 0x000000003f40b028 0xb esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b033 0x1 + .rodata.__func__$7433 + 0x000000003f40b034 0xd esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b041 0x3 + .rodata.__func__$7418 + 0x000000003f40b044 0xa esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b04e 0x2 + .rodata.__func__$7367 + 0x000000003f40b050 0xa esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b05a 0x2 + .rodata.__func__$7345 + 0x000000003f40b05c 0x9 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b065 0x3 + .rodata.__func__$7336 + 0x000000003f40b068 0x9 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b071 0x3 + .rodata.__func__$7314 + 0x000000003f40b074 0xa esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b07e 0x2 + .rodata.__func__$7283 + 0x000000003f40b080 0x13 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b093 0x1 + .rodata.__func__$7266 + 0x000000003f40b094 0x15 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b0a9 0x3 + .rodata.__func__$7254 + 0x000000003f40b0ac 0xd esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b0b9 0x3 + .rodata.__func__$7233 + 0x000000003f40b0bc 0x15 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b0d1 0x3 + .rodata.__func__$7219 + 0x000000003f40b0d4 0xb esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x000000003f40b0df 0x1 + .rodata.raw_input.str1.4 + 0x000000003f40b0e0 0x8a esp-idf/lwip/liblwip.a(raw.c.obj) + *fill* 0x000000003f40b16a 0x2 + .rodata.raw_sendto_if_src.str1.4 + 0x000000003f40b16c 0x4a esp-idf/lwip/liblwip.a(raw.c.obj) + *fill* 0x000000003f40b1b6 0x2 + .rodata.__func__$6816 + 0x000000003f40b1b8 0x12 esp-idf/lwip/liblwip.a(raw.c.obj) + *fill* 0x000000003f40b1ca 0x2 + .rodata.__func__$6766 + 0x000000003f40b1cc 0xa esp-idf/lwip/liblwip.a(raw.c.obj) + *fill* 0x000000003f40b1d6 0x2 + .rodata.tcp_remove_listener.str1.4 + 0x000000003f40b1d8 0x66 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b23e 0x2 + .rodata.tcp_listen_closed.str1.4 + 0x000000003f40b240 0x21 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b261 0x3 + .rodata.tcp_free_listen.str1.4 + 0x000000003f40b264 0x19 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b27d 0x3 + .rodata.tcp_free.str1.4 + 0x000000003f40b280 0x11 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b291 0x3 + .rodata.tcp_backlog_delayed.str1.4 + 0x000000003f40b294 0x15 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b2a9 0x3 + .rodata.tcp_bind.str1.4 + 0x000000003f40b2ac 0x40 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_listen_with_backlog_and_err.str1.4 + 0x000000003f40b2ec 0x95 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b381 0x3 + .rodata.tcp_update_rcv_ann_wnd.str1.4 + 0x000000003f40b384 0x3e esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b3c2 0x2 + .rodata.tcp_recved.str1.4 + 0x000000003f40b3c4 0x3e esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b402 0x2 + .rodata.tcp_seg_copy.str1.4 + 0x000000003f40b404 0x1a esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b41e 0x2 + .rodata.tcp_recv.str1.4 + 0x000000003f40b420 0x27 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b447 0x1 + .rodata.tcp_sent.str1.4 + 0x000000003f40b448 0x27 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b46f 0x1 + .rodata.tcp_err.str1.4 + 0x000000003f40b470 0x26 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b496 0x2 + .rodata.tcp_poll.str1.4 + 0x000000003f40b498 0x36 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b4ce 0x2 + .rodata.tcp_next_iss.str1.4 + 0x000000003f40b4d0 0x1a esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b4ea 0x2 + .rodata.tcp_eff_send_mss_netif.str1.4 + 0x000000003f40b4ec 0x27 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b513 0x1 + .rodata.tcp_pcb_purge.str1.4 + 0x000000003f40b514 0x1b esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b52f 0x1 + .rodata.tcp_pcb_remove.str1.4 + 0x000000003f40b530 0x87 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b5b7 0x1 + .rodata.tcp_abandon.str1.4 + 0x000000003f40b5b8 0x4d esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b605 0x3 + .rodata.tcp_accept_null.str1.4 + 0x000000003f40b608 0x1d esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b625 0x3 + .rodata.tcp_netif_ip_addr_changed_pcblist.str1.4 + 0x000000003f40b628 0x34 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.tcp_kill_state.str1.4 + 0x000000003f40b65c 0xe esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b66a 0x2 + .rodata.tcp_close_shutdown.str1.4 + 0x000000003f40b66c 0x39 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b6a5 0x3 + .rodata.tcp_close.str1.4 + 0x000000003f40b6a8 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b6bf 0x1 + .rodata.tcp_recv_null.str1.4 + 0x000000003f40b6c0 0x1b esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b6db 0x1 + .rodata.tcp_process_refused_data.str1.4 + 0x000000003f40b6dc 0x26 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b702 0x2 + .rodata.tcp_shutdown.str1.4 + 0x000000003f40b704 0x1a esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b71e 0x2 + .rodata.tcp_slowtmr.str1.4 + 0x000000003f40b720 0x1ca esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b8ea 0x2 + .rodata.__func__$7544 + 0x000000003f40b8ec 0x22 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b90e 0x2 + .rodata.__func__$7537 + 0x000000003f40b910 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b927 0x1 + .rodata.__func__$7529 + 0x000000003f40b928 0xd esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b935 0x3 + .rodata.__func__$7520 + 0x000000003f40b938 0xf esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b947 0x1 + .rodata.__func__$7507 + 0x000000003f40b948 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b951 0x3 + .rodata.__func__$7496 + 0x000000003f40b954 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$7491 + 0x000000003f40b95c 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b965 0x3 + .rodata.__func__$7486 + 0x000000003f40b968 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b971 0x3 + .rodata.__func__$7408 + 0x000000003f40b974 0xf esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b983 0x1 + .rodata.__func__$7384 + 0x000000003f40b984 0xd esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b991 0x3 + .rodata.__func__$7311 + 0x000000003f40b994 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$7259 + 0x000000003f40b9a0 0xb esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b9ab 0x1 + .rodata.__func__$7251 + 0x000000003f40b9ac 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40b9c3 0x1 + .rodata.__func__$7226 + 0x000000003f40b9c4 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$7246 + 0x000000003f40b9d4 0x20 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$7188 + 0x000000003f40b9f4 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$7161 + 0x000000003f40ba00 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40ba17 0x1 + .rodata.__func__$7110 + 0x000000003f40ba18 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$7119 + 0x000000003f40ba28 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$7127 + 0x000000003f40ba3c 0x12 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40ba4e 0x2 + .rodata.__func__$7143 + 0x000000003f40ba50 0x13 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40ba63 0x1 + .rodata.__func__$7138 + 0x000000003f40ba64 0x15 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40ba79 0x3 + .rodata.__func__$7134 + 0x000000003f40ba7c 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) + .rodata.__func__$7106 + 0x000000003f40ba90 0x9 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40ba99 0x3 + .rodata.tcp_pcb_lists + 0x000000003f40ba9c 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x000000003f40ba9c tcp_pcb_lists + .rodata.tcp_persist_backoff + 0x000000003f40baac 0x7 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40bab3 0x1 + .rodata.tcp_backoff + 0x000000003f40bab4 0xd esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x000000003f40bac1 0x3 + .rodata.tcp_parseopt.str1.4 + 0x000000003f40bac4 0x5d esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003f40bb21 0x3 + .rodata.tcp_input_delayed_close.str1.4 + 0x000000003f40bb24 0x25 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003f40bb49 0x3 + .rodata.tcp_timewait_input.str1.4 + 0x000000003f40bb4c 0x20 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.tcp_listen_input.str1.4 + 0x000000003f40bb6c 0x1e esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003f40bb8a 0x2 + .rodata.tcp_free_acked_segments.str1.4 + 0x000000003f40bb8c 0x48 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.tcp_oos_insert_segment.str1.4 + 0x000000003f40bbd4 0x25 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003f40bbf9 0x3 + .rodata.tcp_receive.str1.4 + 0x000000003f40bbfc 0x131 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003f40bd2d 0x3 + .rodata.tcp_process.str1.4 + 0x000000003f40bd30 0x86 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003f40bdb6 0x2 + .rodata.tcp_process + 0x000000003f40bdb8 0x28 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.tcp_input.str1.4 + 0x000000003f40bde0 0x172 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003f40bf52 0x2 + .rodata.__func__$7194 + 0x000000003f40bf54 0x18 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.__func__$7257 + 0x000000003f40bf6c 0x17 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003f40bf83 0x1 + .rodata.__func__$7271 + 0x000000003f40bf84 0x18 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.__func__$7282 + 0x000000003f40bf9c 0xc esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.__func__$7217 + 0x000000003f40bfa8 0xc esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .rodata.__func__$7338 + 0x000000003f40bfb4 0xd esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003f40bfc1 0x3 + .rodata.__func__$7201 + 0x000000003f40bfc4 0x11 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003f40bfd5 0x3 + .rodata.__func__$7210 + 0x000000003f40bfd8 0x13 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003f40bfeb 0x1 + .rodata.__func__$7164 + 0x000000003f40bfec 0xa esp-idf/lwip/liblwip.a(tcp_in.c.obj) + *fill* 0x000000003f40bff6 0x2 + .rodata.tcp_write_checks.str1.4 + 0x000000003f40bff8 0xd2 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c0ca 0x2 + .rodata.tcp_output_segment_busy.str1.4 + 0x000000003f40c0cc 0x25 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c0f1 0x3 + .rodata.tcp_output_fill_options.str1.4 + 0x000000003f40c0f4 0x3b esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c12f 0x1 + .rodata.tcp_pbuf_prealloc.str1.4 + 0x000000003f40c130 0x58 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_create_segment.str1.4 + 0x000000003f40c188 0x59 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c1e1 0x3 + .rodata.tcp_output_alloc_header_common.str1.4 + 0x000000003f40c1e4 0x2e esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c212 0x2 + .rodata.tcp_output_alloc_header.str1.4 + 0x000000003f40c214 0x25 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c239 0x3 + .rodata.tcp_output_segment.str1.4 + 0x000000003f40c23c 0x62 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c29e 0x2 + .rodata.tcp_output_control_segment.str1.4 + 0x000000003f40c2a0 0x29 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c2c9 0x3 + .rodata.tcp_write.str1.4 + 0x000000003f40c2cc 0x1a2 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c46e 0x2 + .rodata.tcp_split_unsent_seg.str1.4 + 0x000000003f40c470 0x66 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c4d6 0x2 + .rodata.tcp_enqueue_flags.str1.4 + 0x000000003f40c4d8 0x120 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_send_fin.str1.4 + 0x000000003f40c5f8 0x1a esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c612 0x2 + .rodata.tcp_rexmit_rto_prepare.str1.4 + 0x000000003f40c614 0x24 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_rexmit.str1.4 + 0x000000003f40c638 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_rexmit_fast.str1.4 + 0x000000003f40c650 0x1d esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c66d 0x3 + .rodata.tcp_rst.str1.4 + 0x000000003f40c670 0x37 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c6a7 0x1 + .rodata.tcp_send_empty_ack.str1.4 + 0x000000003f40c6a8 0x20 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_output.str1.4 + 0x000000003f40c6c8 0x57 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c71f 0x1 + .rodata.tcp_rexmit_rto_commit.str1.4 + 0x000000003f40c720 0x23 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c743 0x1 + .rodata.tcp_rexmit_rto.str1.4 + 0x000000003f40c744 0x1c esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.tcp_keepalive.str1.4 + 0x000000003f40c760 0x1b esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c77b 0x1 + .rodata.tcp_zero_window_probe.str1.4 + 0x000000003f40c77c 0x23 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c79f 0x1 + .rodata.__func__$7402 + 0x000000003f40c7a0 0x16 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c7b6 0x2 + .rodata.__func__$7383 + 0x000000003f40c7b8 0xe esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c7c6 0x2 + .rodata.__func__$7328 + 0x000000003f40c7c8 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$7374 + 0x000000003f40c7e0 0x13 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c7f3 0x1 + .rodata.__func__$7347 + 0x000000003f40c7f4 0x1b esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c80f 0x1 + .rodata.__func__$7338 + 0x000000003f40c810 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$7320 + 0x000000003f40c828 0x1f esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c847 0x1 + .rodata.__func__$7363 + 0x000000003f40c848 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$7305 + 0x000000003f40c850 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$7297 + 0x000000003f40c860 0xb esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c86b 0x1 + .rodata.__func__$7291 + 0x000000003f40c86c 0xf esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c87b 0x1 + .rodata.__func__$7287 + 0x000000003f40c87c 0x16 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c892 0x2 + .rodata.__func__$7278 + 0x000000003f40c894 0x17 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c8ab 0x1 + .rodata.__func__$7260 + 0x000000003f40c8ac 0x18 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .rodata.__func__$7269 + 0x000000003f40c8c4 0x13 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c8d7 0x1 + .rodata.__func__$7241 + 0x000000003f40c8d8 0xb esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c8e3 0x1 + .rodata.__func__$7225 + 0x000000003f40c8e4 0x12 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c8f6 0x2 + .rodata.__func__$7211 + 0x000000003f40c8f8 0xd esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c905 0x3 + .rodata.__func__$7202 + 0x000000003f40c908 0x15 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c91d 0x3 + .rodata.__func__$7113 + 0x000000003f40c920 0x13 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c933 0x1 + .rodata.__func__$7127 + 0x000000003f40c934 0x12 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c946 0x2 + .rodata.__func__$7132 + 0x000000003f40c948 0x11 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c959 0x3 + .rodata.__func__$7164 + 0x000000003f40c95c 0xa esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x000000003f40c966 0x2 + .rodata.sys_timeout_abs.str1.4 + 0x000000003f40c968 0x83 esp-idf/lwip/liblwip.a(timeouts.c.obj) + *fill* 0x000000003f40c9eb 0x1 + .rodata.sys_timeout.str1.4 + 0x000000003f40c9ec 0x36 esp-idf/lwip/liblwip.a(timeouts.c.obj) + *fill* 0x000000003f40ca22 0x2 + .rodata.sys_timeouts_sleeptime.str1.4 + 0x000000003f40ca24 0x12 esp-idf/lwip/liblwip.a(timeouts.c.obj) + *fill* 0x000000003f40ca36 0x2 + .rodata.__func__$7422 + 0x000000003f40ca38 0x17 esp-idf/lwip/liblwip.a(timeouts.c.obj) + *fill* 0x000000003f40ca4f 0x1 + .rodata.__func__$7390 + 0x000000003f40ca50 0xc esp-idf/lwip/liblwip.a(timeouts.c.obj) + .rodata.__func__$7367 + 0x000000003f40ca5c 0x10 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .rodata.lwip_cyclic_timers + 0x000000003f40ca6c 0x48 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x000000003f40ca6c lwip_cyclic_timers + .rodata.udp_input_local_match.str1.4 + 0x000000003f40cab4 0x89 esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000003f40cb3d 0x3 + .rodata.udp_input.str1.4 + 0x000000003f40cb40 0x4f esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000003f40cb8f 0x1 + .rodata.udp_bind.str1.4 + 0x000000003f40cb90 0x16 esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000003f40cba6 0x2 + .rodata.udp_sendto_if_src.str1.4 + 0x000000003f40cba8 0xda esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000003f40cc82 0x2 + .rodata.udp_sendto_if.str1.4 + 0x000000003f40cc84 0x75 esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000003f40ccf9 0x3 + .rodata.udp_sendto.str1.4 + 0x000000003f40ccfc 0x4f esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000003f40cd4b 0x1 + .rodata.udp_send.str1.4 + 0x000000003f40cd4c 0x2f esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000003f40cd7b 0x1 + .rodata.udp_connect.str1.4 + 0x000000003f40cd7c 0x38 esp-idf/lwip/liblwip.a(udp.c.obj) + .rodata.udp_disconnect.str1.4 + 0x000000003f40cdb4 0x1c esp-idf/lwip/liblwip.a(udp.c.obj) + .rodata.udp_recv.str1.4 + 0x000000003f40cdd0 0x16 esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000003f40cde6 0x2 + .rodata.udp_remove.str1.4 + 0x000000003f40cde8 0x18 esp-idf/lwip/liblwip.a(udp.c.obj) + .rodata.__func__$7018 + 0x000000003f40ce00 0x12 esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000003f40ce12 0x2 + .rodata.__func__$6934 + 0x000000003f40ce14 0x16 esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000003f40ce2a 0x2 + .rodata.__func__$6947 + 0x000000003f40ce2c 0xa esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x000000003f40ce36 0x2 + .rodata.dhcp_option_short.str1.4 + 0x000000003f40ce38 0x80 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_option.str1.4 + 0x000000003f40ceb8 0x42 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f40cefa 0x2 + .rodata.dhcp_option_byte.str1.4 + 0x000000003f40cefc 0x35 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f40cf31 0x3 + .rodata.dhcp_option_long.str1.4 + 0x000000003f40cf34 0x3a esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f40cf6e 0x2 + .rodata.dhcp_create_msg.str1.4 + 0x000000003f40cf70 0x80 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_option_hostname.str1.4 + 0x000000003f40cff0 0x1c esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_select.str1.4 + 0x000000003f40d00c 0x36 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f40d042 0x2 + .rodata.dhcp_bind.str1.4 + 0x000000003f40d044 0x34 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_dec_pcb_refcount.str1.4 + 0x000000003f40d078 0x24 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_inc_pcb_refcount.str1.4 + 0x000000003f40d09c 0x25 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f40d0c1 0x3 + .rodata.dhcp_parse_reply.str1.4 + 0x000000003f40d0c4 0xa7 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f40d16b 0x1 + .rodata.dhcp_parse_reply + 0x000000003f40d16c 0xf0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_recv.str1.4 + 0x000000003f40d25c 0x1c esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_set_struct.str1.4 + 0x000000003f40d278 0x34 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x44 (size before relaxing) + .rodata.dhcp_network_changed.str1.4 + 0x000000003f40d2ac 0x14 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_start.str1.4 + 0x000000003f40d2c0 0x21 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f40d2e1 0x3 + .rodata.__func__$7149 + 0x000000003f40d2e4 0x15 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f40d2f9 0x3 + .rodata.__func__$7355 + 0x000000003f40d2fc 0x11 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f40d30d 0x3 + .rodata.__func__$7379 + 0x000000003f40d310 0xa esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f40d31a 0x2 + .rodata.__func__$7003 + 0x000000003f40d31c 0x16 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f40d332 0x2 + .rodata.__func__$7007 + 0x000000003f40d334 0x16 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f40d34a 0x2 + .rodata.__func__$7116 + 0x000000003f40d34c 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.__func__$7109 + 0x000000003f40d358 0xd esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f40d365 0x3 + .rodata.__func__$7303 + 0x000000003f40d368 0x11 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f40d379 0x3 + .rodata.__func__$7313 + 0x000000003f40d37c 0x15 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f40d391 0x3 + .rodata.__func__$7291 + 0x000000003f40d394 0x11 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f40d3a5 0x3 + .rodata.__func__$7285 + 0x000000003f40d3a8 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.__func__$7297 + 0x000000003f40d3b4 0x12 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x000000003f40d3c6 0x2 + .rodata.__func__$7408 + 0x000000003f40d3c8 0x10 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.dhcp_discover_request_options + 0x000000003f40d3d8 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .rodata.free_etharp_q.str1.4 + 0x000000003f40d3dc 0x61 esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003f40d43d 0x3 + .rodata.etharp_find_entry.str1.4 + 0x000000003f40d440 0x55 esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003f40d495 0x3 + .rodata.etharp_update_arp_entry.str1.4 + 0x000000003f40d498 0x24 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.etharp_raw.str1.4 + 0x000000003f40d4bc 0x75 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x85 (size before relaxing) + *fill* 0x000000003f40d531 0x3 + .rodata.etharp_get_entry.str1.4 + 0x000000003f40d534 0x20 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.etharp_output_to_arp_index.str1.4 + 0x000000003f40d554 0x30 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.etharp_query.str1.4 + 0x000000003f40d584 0x52 esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003f40d5d6 0x2 + .rodata.__func__$7049 + 0x000000003f40d5d8 0xd esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003f40d5e5 0x3 + .rodata.__func__$7022 + 0x000000003f40d5e8 0x1b esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003f40d603 0x1 + .rodata.__func__$7031 + 0x000000003f40d604 0xe esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003f40d612 0x2 + .rodata.__func__$7078 + 0x000000003f40d614 0xb esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003f40d61f 0x1 + .rodata.__func__$6967 + 0x000000003f40d620 0x18 esp-idf/lwip/liblwip.a(etharp.c.obj) + .rodata.__func__$6949 + 0x000000003f40d638 0x12 esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003f40d64a 0x2 + .rodata.__func__$6916 + 0x000000003f40d64c 0xe esp-idf/lwip/liblwip.a(etharp.c.obj) + *fill* 0x000000003f40d65a 0x2 + .rodata.icmp_send_response.str1.4 + 0x000000003f40d65c 0x70 esp-idf/lwip/liblwip.a(icmp.c.obj) + .rodata.icmp_input.str1.4 + 0x000000003f40d6cc 0x6a esp-idf/lwip/liblwip.a(icmp.c.obj) + *fill* 0x000000003f40d736 0x2 + .rodata.__func__$6832 + 0x000000003f40d738 0x13 esp-idf/lwip/liblwip.a(icmp.c.obj) + *fill* 0x000000003f40d74b 0x1 + .rodata.__func__$6809 + 0x000000003f40d74c 0xb esp-idf/lwip/liblwip.a(icmp.c.obj) + *fill* 0x000000003f40d757 0x1 + .rodata.igmp_send.str1.4 + 0x000000003f40d758 0x80 esp-idf/lwip/liblwip.a(igmp.c.obj) + .rodata.igmp_lookup_group.str1.4 + 0x000000003f40d7d8 0x75 esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x000000003f40d84d 0x3 + .rodata.igmp_joingroup_netif.str1.4 + 0x000000003f40d850 0xb0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .rodata.igmp_joingroup.str1.4 + 0x000000003f40d900 0x6b esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x000000003f40d96b 0x1 + .rodata.igmp_leavegroup_netif.str1.4 + 0x000000003f40d96c 0xb6 esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x000000003f40da22 0x2 + .rodata.igmp_leavegroup.str1.4 + 0x000000003f40da24 0x6d esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x000000003f40da91 0x3 + .rodata.__func__$7019 + 0x000000003f40da94 0xa esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x000000003f40da9e 0x2 + .rodata.__func__$6883 + 0x000000003f40daa0 0x12 esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x000000003f40dab2 0x2 + .rodata.ip4_output_if_opt_src.str1.4 + 0x000000003f40dab4 0x7d esp-idf/lwip/liblwip.a(ip4.c.obj) + *fill* 0x000000003f40db31 0x3 + .rodata.__func__$7415 + 0x000000003f40db34 0x16 esp-idf/lwip/liblwip.a(ip4.c.obj) + *fill* 0x000000003f40db4a 0x2 + .rodata.ip4addr_aton.str1.4 + 0x000000003f40db4c 0x54 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .rodata.ip4addr_aton + 0x000000003f40dba0 0x14 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .rodata.__func__$6300 + 0x000000003f40dbb4 0xd esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + *fill* 0x000000003f40dbc1 0x3 + .rodata.ip_addr_broadcast + 0x000000003f40dbc4 0x18 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x000000003f40dbc4 ip_addr_broadcast + .rodata.ip_addr_any + 0x000000003f40dbdc 0x18 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x000000003f40dbdc ip_addr_any + .rodata.ip4_frag.str1.4 + 0x000000003f40dbf4 0x84 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .rodata.__func__$6799 + 0x000000003f40dc78 0x9 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + *fill* 0x000000003f40dc81 0x3 + .rodata.icmp6_send_response_with_addrs_and_netif.str1.4 + 0x000000003f40dc84 0x75 esp-idf/lwip/liblwip.a(icmp6.c.obj) + *fill* 0x000000003f40dcf9 0x3 + .rodata.icmp6_send_response.str1.4 + 0x000000003f40dcfc 0x24 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .rodata.icmp6_send_response_with_addrs.str1.4 + 0x000000003f40dd20 0x29 esp-idf/lwip/liblwip.a(icmp6.c.obj) + *fill* 0x000000003f40dd49 0x3 + .rodata.__func__$6900 + 0x000000003f40dd4c 0x1f esp-idf/lwip/liblwip.a(icmp6.c.obj) + *fill* 0x000000003f40dd6b 0x1 + .rodata.__func__$6913 + 0x000000003f40dd6c 0x29 esp-idf/lwip/liblwip.a(icmp6.c.obj) + *fill* 0x000000003f40dd95 0x3 + .rodata.__func__$6888 + 0x000000003f40dd98 0x14 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .rodata.ip6_output_if_src.str1.4 + 0x000000003f40ddac 0x72 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x7e (size before relaxing) + *fill* 0x000000003f40de1e 0x2 + .rodata.__func__$7235 + 0x000000003f40de20 0x12 esp-idf/lwip/liblwip.a(ip6.c.obj) + *fill* 0x000000003f40de32 0x2 + .rodata.ip6_addr_any + 0x000000003f40de34 0x18 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + 0x000000003f40de34 ip6_addr_any + .rodata.ip6_reass_free_complete_datagram.str1.4 + 0x000000003f40de4c 0xbb esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + *fill* 0x000000003f40df07 0x1 + .rodata.ip6_reass.str1.4 + 0x000000003f40df08 0x11f esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + *fill* 0x000000003f40e027 0x1 + .rodata.ip6_frag.str1.4 + 0x000000003f40e028 0x17 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x38 (size before relaxing) + *fill* 0x000000003f40e03f 0x1 + .rodata.__func__$6872 + 0x000000003f40e040 0x9 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + *fill* 0x000000003f40e049 0x3 + .rodata.__func__$6830 + 0x000000003f40e04c 0xa esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + *fill* 0x000000003f40e056 0x2 + .rodata.__func__$6791 + 0x000000003f40e058 0x21 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + *fill* 0x000000003f40e079 0x3 + .rodata.mld6_joingroup.str1.4 + 0x000000003f40e07c 0x36 esp-idf/lwip/liblwip.a(mld6.c.obj) + *fill* 0x000000003f40e0b2 0x2 + .rodata.nd6_process_autoconfig_prefix.str1.4 + 0x000000003f40e0b4 0x57 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003f40e10b 0x1 + .rodata.nd6_free_q.str1.4 + 0x000000003f40e10c 0xd esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x29 (size before relaxing) + *fill* 0x000000003f40e119 0x3 + .rodata.nd6_send_na.str1.4 + 0x000000003f40e11c 0x1b esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.nd6_get_next_hop_entry.str1.4 + 0x000000003f40e137 0xe esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003f40e137 0x1 + .rodata.nd6_tmr + 0x000000003f40e138 0x18 esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.nd6_find_route.str1.4 + 0x000000003f40e150 0x2b esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003f40e17b 0x1 + .rodata.__func__$7332 + 0x000000003f40e17c 0x17 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003f40e193 0x1 + .rodata.__func__$7291 + 0x000000003f40e194 0xf esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003f40e1a3 0x1 + .rodata.__func__$7358 + 0x000000003f40e1a4 0xb esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003f40e1af 0x1 + .rodata.__func__$7042 + 0x000000003f40e1b0 0x1e esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x000000003f40e1ce 0x2 + .rodata.__func__$7171 + 0x000000003f40e1d0 0xc esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.__func__$7184 + 0x000000003f40e1dc 0xc esp-idf/lwip/liblwip.a(nd6.c.obj) + .rodata.ethernet_output.str1.4 + 0x000000003f40e1e8 0x78 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .rodata.__func__$6754 + 0x000000003f40e260 0x10 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .rodata.ethzero + 0x000000003f40e270 0x6 esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x000000003f40e270 ethzero + *fill* 0x000000003f40e276 0x2 + .rodata.ethbroadcast + 0x000000003f40e278 0x6 esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x000000003f40e278 ethbroadcast + *fill* 0x000000003f40e27e 0x2 + .rodata.sys_mutex_lock.str1.4 + 0x000000003f40e280 0x65 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f40e2e5 0x3 + .rodata.sys_mutex_unlock.str1.4 + 0x000000003f40e2e8 0x19 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f40e301 0x3 + .rodata.sys_sem_new.str1.4 + 0x000000003f40e304 0x49 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f40e34d 0x3 + .rodata.sys_sem_signal.str1.4 + 0x000000003f40e350 0x22 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f40e372 0x2 + .rodata.sys_arch_sem_wait.str1.4 + 0x000000003f40e374 0x18 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_mbox_post.str1.4 + 0x000000003f40e38c 0x11 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f40e39d 0x3 + .rodata.sys_arch_mbox_fetch.str1.4 + 0x000000003f40e3a0 0x12 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f40e3b2 0x2 + .rodata.sys_mbox_free.str1.4 + 0x000000003f40e3b4 0x16 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f40e3ca 0x2 + .rodata.sys_init.str1.4 + 0x000000003f40e3cc 0x50 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.sys_thread_sem_init.str1.4 + 0x000000003f40e41c 0x36 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f40e452 0x2 + .rodata.__func__$6278 + 0x000000003f40e454 0xe esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f40e462 0x2 + .rodata.__func__$6268 + 0x000000003f40e464 0x17 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f40e47b 0x1 + .rodata.__func__$6260 + 0x000000003f40e47c 0x14 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.__func__$6239 + 0x000000003f40e490 0xe esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f40e49e 0x2 + .rodata.__func__$6222 + 0x000000003f40e4a0 0x12 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f40e4b2 0x2 + .rodata.__func__$6212 + 0x000000003f40e4b4 0xf esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f40e4c3 0x1 + .rodata.__func__$6205 + 0x000000003f40e4c4 0xc esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .rodata.__func__$6196 + 0x000000003f40e4d0 0x11 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f40e4e1 0x3 + .rodata.__func__$6191 + 0x000000003f40e4e4 0xf esp-idf/lwip/liblwip.a(sys_arch.c.obj) + *fill* 0x000000003f40e4f3 0x1 + .rodata.esp_vfs_lwip_sockets_register.str1.4 + 0x000000003f40e4f4 0x84 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .rodata.__func__$7376 + 0x000000003f40e578 0x1e esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + *fill* 0x000000003f40e596 0x2 + .rodata.free_socket_locked.str1.4 + 0x000000003f40e598 0x55 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40e5ed 0x3 + .rodata.lwip_sockopt_to_ipopt.str1.4 + 0x000000003f40e5f0 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40e606 0x2 + .rodata.lwip_unlink_select_cb.str1.4 + 0x000000003f40e608 0x30 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_sock_make_addr.str1.4 + 0x000000003f40e638 0x34 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.sock_inc_used.str1.4 + 0x000000003f40e66c 0x23 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40e68f 0x1 + .rodata.alloc_socket.str1.4 + 0x000000003f40e690 0x1f esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40e6af 0x1 + .rodata.lwip_selscan.str1.4 + 0x000000003f40e6b0 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_select_dec_sockets_used.str1.4 + 0x000000003f40e6bc 0x21 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40e6dd 0x3 + .rodata.lwip_pollscan.str1.4 + 0x000000003f40e6e0 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40e6f9 0x3 + .rodata.lwip_recv_tcp.str1.4 + 0x000000003f40e6fc 0x6c esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x78 (size before relaxing) + .rodata.lwip_recvfrom_udp_raw.str1.4 + 0x000000003f40e768 0x38 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.event_callback.str1.4 + 0x000000003f40e7a0 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40e7ae 0x2 + .rodata.event_callback + 0x000000003f40e7b0 0x14 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_getsockopt_callback.str1.4 + 0x000000003f40e7c4 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_setsockopt_impl.str1.4 + 0x000000003f40e7d0 0x40 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_setsockopt_impl + 0x000000003f40e810 0x38 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.lwip_accept.str1.4 + 0x000000003f40e848 0x25 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40e86d 0x3 + .rodata.lwip_bind.str1.4 + 0x000000003f40e870 0x1b esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40e88b 0x1 + .rodata.lwip_close.str1.4 + 0x000000003f40e88c 0x17 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40e8a3 0x1 + .rodata.lwip_recvfrom.str1.4 + 0x000000003f40e8a4 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40e8b2 0x2 + .rodata.lwip_sendto.str1.4 + 0x000000003f40e8b4 0x1d esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40e8d1 0x3 + .rodata.__func__$8799 + 0x000000003f40e8d4 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40e8e9 0x3 + .rodata.__func__$8770 + 0x000000003f40e8ec 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40e905 0x3 + .rodata.__func__$8669 + 0x000000003f40e908 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40e91e 0x2 + .rodata.__func__$8460 + 0x000000003f40e920 0x1d esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40e93d 0x3 + .rodata.__func__$8430 + 0x000000003f40e940 0xd esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40e94d 0x3 + .rodata.__func__$8387 + 0x000000003f40e950 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40e966 0x2 + .rodata.__func__$7998 + 0x000000003f40e968 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40e97d 0x3 + .rodata.__func__$8492 + 0x000000003f40e980 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$8583 + 0x000000003f40e98c 0xf esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40e99b 0x1 + .rodata.__func__$8218 + 0x000000003f40e99c 0x16 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40e9b2 0x2 + .rodata.__func__$8187 + 0x000000003f40e9b4 0x14 esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$8163 + 0x000000003f40e9c8 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40e9d6 0x2 + .rodata.__func__$8121 + 0x000000003f40e9d8 0xb esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40e9e3 0x1 + .rodata.__func__$8006 + 0x000000003f40e9e4 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.__func__$8049 + 0x000000003f40e9f0 0x13 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40ea03 0x1 + .rodata.__func__$8039 + 0x000000003f40ea04 0xd esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40ea11 0x3 + .rodata.__func__$7994 + 0x000000003f40ea14 0xe esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x000000003f40ea22 0x2 + .rodata.__func__$8081 + 0x000000003f40ea24 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + .rodata.netconn_tcp_recvd_msg.str1.4 + 0x000000003f40ea30 0x24 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.netconn_close_shutdown.str1.4 + 0x000000003f40ea54 0x1c esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.netconn_new_with_proto_and_callback.str1.4 + 0x000000003f40ea70 0xa1 esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x000000003f40eb11 0x3 + .rodata.netconn_getaddr.str1.4 + 0x000000003f40eb14 0x5e esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x000000003f40eb72 0x2 + .rodata.netconn_bind.str1.4 + 0x000000003f40eb74 0x1b esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x000000003f40eb8f 0x1 + .rodata.netconn_listen_with_backlog.str1.4 + 0x000000003f40eb90 0x1d esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x000000003f40ebad 0x3 + .rodata.netconn_send.str1.4 + 0x000000003f40ebb0 0x1b esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x000000003f40ebcb 0x1 + .rodata.netconn_write_vectors_partly.str1.4 + 0x000000003f40ebcc 0x63 esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x000000003f40ec2f 0x1 + .rodata.netconn_accept.str1.4 + 0x000000003f40ec30 0x3d esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x000000003f40ec6d 0x3 + .rodata.netconn_recv_data.str1.4 + 0x000000003f40ec70 0x3b esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x48 (size before relaxing) + *fill* 0x000000003f40ecab 0x1 + .rodata.netconn_recv_udp_raw_netbuf.str1.4 + 0x000000003f40ecac 0x2a esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x000000003f40ecd6 0x2 + .rodata.netconn_join_leave_group.str1.4 + 0x000000003f40ecd8 0x27 esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x000000003f40ecff 0x1 + .rodata.__func__$7827 + 0x000000003f40ed00 0x1d esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x000000003f40ed1d 0x3 + .rodata.__func__$7741 + 0x000000003f40ed20 0x12 esp-idf/lwip/liblwip.a(api_lib.c.obj) + *fill* 0x000000003f40ed32 0x2 + .rodata.__func__$7674 + 0x000000003f40ed34 0x24 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .rodata.lwip_netconn_err_to_msg.str1.4 + 0x000000003f40ed58 0x51 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40eda9 0x3 + .rodata.recv_udp.str1.4 + 0x000000003f40edac 0x62 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40ee0e 0x2 + .rodata.pcb_new.str1.4 + 0x000000003f40ee10 0x1f esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40ee2f 0x1 + .rodata.err_tcp.str1.4 + 0x000000003f40ee30 0x62 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40ee92 0x2 + .rodata.lwip_netconn_do_writemore.str1.4 + 0x000000003f40ee94 0xcb esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40ef5f 0x1 + .rodata.lwip_netconn_do_close_internal.str1.4 + 0x000000003f40ef60 0x7b esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x8b (size before relaxing) + *fill* 0x000000003f40efdb 0x1 + .rodata.recv_tcp.str1.4 + 0x000000003f40efdc 0x7a esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f056 0x2 + .rodata.lwip_netconn_is_err_msg.str1.4 + 0x000000003f40f058 0xc esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.netconn_alloc.str1.4 + 0x000000003f40f064 0x26 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f08a 0x2 + .rodata.netconn_free.str1.4 + 0x000000003f40f08c 0xa8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.netconn_drain.str1.4 + 0x000000003f40f134 0x16 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f14a 0x2 + .rodata.accept_function.str1.4 + 0x000000003f40f14c 0x27 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f173 0x1 + .rodata.lwip_netconn_do_delconn.str1.4 + 0x000000003f40f174 0x4f esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_do_listen.str1.4 + 0x000000003f40f1c3 0x2d esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f1c3 0x1 + .rodata.lwip_netconn_do_write.str1.4 + 0x000000003f40f1c4 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.lwip_netconn_do_getaddr.str1.4 + 0x000000003f40f1d8 0x15 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f1ed 0x3 + .rodata.lwip_netconn_do_close.str1.4 + 0x000000003f40f1f0 0x24 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$7893 + 0x000000003f40f214 0x16 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f22a 0x2 + .rodata.__func__$7886 + 0x000000003f40f22c 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$7876 + 0x000000003f40f244 0x16 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f25a 0x2 + .rodata.__func__$7693 + 0x000000003f40f25c 0x10 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$7829 + 0x000000003f40f26c 0x17 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f283 0x1 + .rodata.__func__$7770 + 0x000000003f40f284 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$7732 + 0x000000003f40f29c 0xe esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f2aa 0x2 + .rodata.__func__$7727 + 0x000000003f40f2ac 0xd esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f2b9 0x3 + .rodata.__func__$7722 + 0x000000003f40f2bc 0xe esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f2ca 0x2 + .rodata.__func__$7656 + 0x000000003f40f2cc 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f2d5 0x3 + .rodata.__func__$7669 + 0x000000003f40f2d8 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f2e1 0x3 + .rodata.__func__$7762 + 0x000000003f40f2e4 0x1f esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f303 0x1 + .rodata.__func__$7864 + 0x000000003f40f304 0x1a esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f31e 0x2 + .rodata.__func__$7662 + 0x000000003f40f320 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f329 0x3 + .rodata.__func__$7619 + 0x000000003f40f32c 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$7678 + 0x000000003f40f344 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$7645 + 0x000000003f40f34c 0x9 esp-idf/lwip/liblwip.a(api_msg.c.obj) + *fill* 0x000000003f40f355 0x3 + .rodata.__func__$7700 + 0x000000003f40f358 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.__func__$7624 + 0x000000003f40f360 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .rodata.netconn_closed + 0x000000003f40f378 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x000000003f40f378 netconn_closed + .rodata.netconn_reset + 0x000000003f40f379 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x000000003f40f379 netconn_reset + .rodata.netconn_aborted + 0x000000003f40f37a 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x000000003f40f37a netconn_aborted + .rodata.netconn_deleted + 0x000000003f40f37b 0x1 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x000000003f40f37b netconn_deleted + .rodata.err_to_errno_table + 0x000000003f40f37c 0x44 esp-idf/lwip/liblwip.a(err.c.obj) + .rodata.netbuf_alloc.str1.4 + 0x000000003f40f3c0 0x80 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .rodata.netbuf_free.str1.4 + 0x000000003f40f440 0x19 esp-idf/lwip/liblwip.a(netbuf.c.obj) + *fill* 0x000000003f40f459 0x3 + .rodata.__func__$6337 + 0x000000003f40f45c 0xd esp-idf/lwip/liblwip.a(netbuf.c.obj) + *fill* 0x000000003f40f469 0x3 + .rodata.str1.4 + 0x000000003f40f46c 0x131 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000003f40f59d 0x3 + .rodata.__func__$4777 + 0x000000003f40f5a0 0x12 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000003f40f5b2 0x2 + .rodata.__func__$4767 + 0x000000003f40f5b4 0xf esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000003f40f5c3 0x1 + .rodata.__func__$4688 + 0x000000003f40f5c4 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.register_heap.str1.4 + 0x000000003f40f5dc 0x57 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x000000003f40f633 0x1 + .rodata.heap_caps_init.str1.4 + 0x000000003f40f634 0xf4 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x13c (size before relaxing) + .rodata.__func__$4049 + 0x000000003f40f728 0x14 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .rodata.__func__$4730 + 0x000000003f40f73c 0xf esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x000000003f40f74b 0x1 + .rodata.__func__$4699 + 0x000000003f40f74c 0xe esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x000000003f40f75a 0x2 + .rodata.gpio_od_enable.str1.4 + 0x000000003f40f75c 0x3e esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003f40f79a 0x2 + .rodata.gpio_wakeup_enable.str1.4 + 0x000000003f40f79c 0x5c esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6280 + 0x000000003f40f7f8 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003f40f80b 0x1 + .rodata.get_clk_en_mask + 0x000000003f40f80c 0x8c esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .rodata.get_rst_en_mask + 0x000000003f40f898 0x8c esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .rodata.rtc_gpio_init.str1.4 + 0x000000003f40f924 0x17f esp-idf/driver/libdriver.a(rtc_io.c.obj) + *fill* 0x000000003f40faa3 0x1 + .rodata.__FUNCTION__$6771 + 0x000000003f40faa4 0x17 esp-idf/driver/libdriver.a(rtc_io.c.obj) + *fill* 0x000000003f40fabb 0x1 + .rodata.__FUNCTION__$6760 + 0x000000003f40fabc 0x11 esp-idf/driver/libdriver.a(rtc_io.c.obj) + *fill* 0x000000003f40facd 0x3 + .rodata.uart_pattern_enqueue.str1.4 + 0x000000003f40fad0 0x58 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_word_length.str1.4 + 0x000000003f40fb28 0x1f esp-idf/driver/libdriver.a(uart.c.obj) + 0x43 (size before relaxing) + *fill* 0x000000003f40fb47 0x1 + .rodata.uart_set_stop_bits.str1.4 + 0x000000003f40fb48 0xf esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f40fb57 0x1 + .rodata.uart_set_hw_flow_ctrl.str1.4 + 0x000000003f40fb58 0x2f esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f40fb87 0x1 + .rodata.uart_pattern_pop_pos.str1.4 + 0x000000003f40fb88 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f40fb9a 0x2 + .rodata.uart_enable_tx_intr.str1.4 + 0x000000003f40fb9c 0x1b esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f40fbb7 0x1 + .rodata.uart_param_config.str1.4 + 0x000000003f40fbb8 0xb esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f40fbc3 0x1 + .rodata.uart_tx_chars.str1.4 + 0x000000003f40fbc4 0xc esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_write_bytes_with_break.str1.4 + 0x000000003f40fbd0 0x30 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_flush_input.str1.4 + 0x000000003f40fc00 0x2d esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f40fc2d 0x3 + .rodata.uart_driver_delete.str1.4 + 0x000000003f40fc30 0x24 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_driver_install.str1.4 + 0x000000003f40fc54 0x155 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f40fda9 0x3 + .rodata 0x000000003f40fdac 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_wakeup_threshold.str1.4 + 0x000000003f40fdb4 0x1f esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f40fdd3 0x1 + .rodata.__FUNCTION__$7238 + 0x000000003f40fdd4 0x1a esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f40fdee 0x2 + .rodata.__FUNCTION__$7229 + 0x000000003f40fdf0 0x1a esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f40fe0a 0x2 + .rodata.__FUNCTION__$7189 + 0x000000003f40fe0c 0x13 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f40fe1f 0x1 + .rodata.__FUNCTION__$7183 + 0x000000003f40fe20 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7167 + 0x000000003f40fe34 0x11 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f40fe45 0x3 + .rodata.__FUNCTION__$7161 + 0x000000003f40fe48 0x1b esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f40fe63 0x1 + .rodata.__FUNCTION__$7149 + 0x000000003f40fe64 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7131 + 0x000000003f40fe74 0x11 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f40fe85 0x3 + .rodata.__FUNCTION__$7096 + 0x000000003f40fe88 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f40fe9a 0x2 + .rodata.__FUNCTION__$7057 + 0x000000003f40fe9c 0x11 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f40fead 0x3 + .rodata.__FUNCTION__$7052 + 0x000000003f40feb0 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f40fec2 0x2 + .rodata.__FUNCTION__$7006 + 0x000000003f40fec4 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f40fed6 0x2 + .rodata.__FUNCTION__$6996 + 0x000000003f40fed8 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$6953 + 0x000000003f40feec 0x19 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f40ff05 0x3 + .rodata.__FUNCTION__$6910 + 0x000000003f40ff08 0x17 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f40ff1f 0x1 + .rodata.__FUNCTION__$6905 + 0x000000003f40ff20 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f40ff36 0x2 + .rodata.__FUNCTION__$6871 + 0x000000003f40ff38 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f40ff4a 0x2 + .rodata.__FUNCTION__$6865 + 0x000000003f40ff4c 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f40ff5e 0x2 + .rodata.__FUNCTION__$6860 + 0x000000003f40ff60 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$6855 + 0x000000003f40ff70 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$6850 + 0x000000003f40ff80 0x13 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f40ff93 0x1 + .rodata.__FUNCTION__$6845 + 0x000000003f40ff94 0x13 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f40ffa7 0x1 + .rodata.__FUNCTION__$6840 + 0x000000003f40ffa8 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f40ffbd 0x3 + .rodata.__FUNCTION__$6835 + 0x000000003f40ffc0 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f40ffd5 0x3 + .rodata.esp_fill_random.str1.4 + 0x000000003f40ffd8 0x37 esp-idf/esp32/libesp32.a(hw_random.c.obj) + 0x43 (size before relaxing) + *fill* 0x000000003f41000f 0x1 + .rodata.__func__$3138 + 0x000000003f410010 0x10 esp-idf/esp32/libesp32.a(hw_random.c.obj) + .rodata.get_reset_reason + 0x000000003f410020 0x44 esp-idf/esp32/libesp32.a(reset_reason.c.obj) + .rodata.str1.4 + 0x000000003f410064 0x5e esp-idf/esp32/libesp32.a(reset_reason.c.obj) + *fill* 0x000000003f4100c2 0x2 + .rodata.__func__$4253 + 0x000000003f4100c4 0x1a esp-idf/esp32/libesp32.a(reset_reason.c.obj) + *fill* 0x000000003f4100de 0x2 + .rodata.str1.4 + 0x000000003f4100e0 0x332 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x492 (size before relaxing) + *fill* 0x000000003f410412 0x2 + .rodata.ext0_wakeup_prepare.str1.4 + 0x000000003f410414 0x8a esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + *fill* 0x000000003f41049e 0x2 + .rodata.esp_sleep_disable_wakeup_source.str1.4 + 0x000000003f4104a0 0x48 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .rodata.esp_sleep_enable_ext0_wakeup.str1.4 + 0x000000003f4104e8 0x41 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + *fill* 0x000000003f410529 0x3 + .rodata.esp_sleep_enable_ext1_wakeup.str1.4 + 0x000000003f41052c 0x2d esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + *fill* 0x000000003f410559 0x3 + .rodata.__func__$9044 + 0x000000003f41055c 0xd esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + *fill* 0x000000003f410569 0x3 + .rodata.__func__$9155 + 0x000000003f41056c 0x14 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .rodata.__func__$9124 + 0x000000003f410580 0x14 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .rodata.__func__$9030 + 0x000000003f410594 0xe esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + *fill* 0x000000003f4105a2 0x2 + .rodata.__func__$6637 + 0x000000003f4105a4 0x12 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + *fill* 0x000000003f4105b6 0x2 + .rodata.esp_base_mac_addr_set.str1.4 + 0x000000003f4105b8 0x72 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + *fill* 0x000000003f41062a 0x2 + .rodata.esp_base_mac_addr_get.str1.4 + 0x000000003f41062c 0x33 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + *fill* 0x000000003f41065f 0x1 + .rodata.esp_efuse_mac_get_default.str1.4 + 0x000000003f410660 0x6c esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + .rodata.esp_derive_local_mac.str1.4 + 0x000000003f4106cc 0x31 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + *fill* 0x000000003f4106fd 0x3 + .rodata.esp_read_mac.str1.4 + 0x000000003f410700 0x9c esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + .rodata.esp_get_idf_version.str1.4 + 0x000000003f41079c 0x1e esp-idf/esp_common/libesp_common.a(system_api.c.obj) + *fill* 0x000000003f4107ba 0x2 + .rodata.ets_timer_setfn.str1.4 + 0x000000003f4107bc 0x9e esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + *fill* 0x000000003f41085a 0x2 + .rodata.str1.4 + 0x000000003f41085c 0x85 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + *fill* 0x000000003f4108e1 0x3 + .rodata.__func__$5106 + 0x000000003f4108e4 0xe esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + *fill* 0x000000003f4108f2 0x2 + .rodata.__func__$5097 + 0x000000003f4108f4 0x11 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + *fill* 0x000000003f410905 0x3 + .rodata.__func__$5091 + 0x000000003f410908 0x10 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .rodata.xEventGroupCreate.str1.4 + 0x000000003f410918 0x48 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.xEventGroupWaitBits.str1.4 + 0x000000003f410918 0x3d esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x5c (size before relaxing) + *fill* 0x000000003f410955 0x3 + .rodata.__FUNCTION__$4795 + 0x000000003f410958 0x12 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + *fill* 0x000000003f41096a 0x2 + .rodata.__FUNCTION__$4786 + 0x000000003f41096c 0x13 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + *fill* 0x000000003f41097f 0x1 + .rodata.__FUNCTION__$4761 + 0x000000003f410980 0x15 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + *fill* 0x000000003f410995 0x3 + .rodata.__FUNCTION__$4753 + 0x000000003f410998 0x14 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.__func__$4000 + 0x000000003f4109ac 0x14 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .rodata.help_command.str1.4 + 0x000000003f4109c0 0x18 esp-idf/console/libconsole.a(commands.c.obj) + 0x1c (size before relaxing) + .rodata.esp_console_cmd_register.str1.4 + 0x000000003f4109d8 0x4 esp-idf/console/libconsole.a(commands.c.obj) + .rodata.esp_console_register_help_command.str1.4 + 0x000000003f4109dc 0x2e esp-idf/console/libconsole.a(commands.c.obj) + *fill* 0x000000003f410a0a 0x2 + .rodata.esp_console_split_argv + 0x000000003f410a0c 0x2c esp-idf/console/libconsole.a(split_argv.c.obj) + .rodata.arg_end_errorfn.str1.4 + 0x000000003f410a38 0xa1 esp-idf/console/libconsole.a(argtable3.c.obj) + 0xa5 (size before relaxing) + *fill* 0x000000003f410ad9 0x3 + .rodata.arg_end_errorfn + 0x000000003f410adc 0x18 esp-idf/console/libconsole.a(argtable3.c.obj) + .rodata.arg_int_scanfn.str1.4 + 0x000000003f410af4 0xb esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x000000003f410aff 0x1 + .rodata.arg_cat_optionv.str1.4 + 0x000000003f410b00 0xa esp-idf/console/libconsole.a(argtable3.c.obj) + 0x16 (size before relaxing) + *fill* 0x000000003f410b0a 0x2 + .rodata.arg_print_gnuswitch.str1.4 + 0x000000003f410b0c 0x15 esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x000000003f410b21 0x3 + .rodata.arg_intn.str1.4 + 0x000000003f410b24 0x6 esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x000000003f410b2a 0x2 + .rodata.arg_strn.str1.4 + 0x000000003f410b2c 0x9 esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x000000003f410b35 0x3 + .rodata.arg_print_option.str1.4 + 0x000000003f410b38 0x2 esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x000000003f410b3a 0x2 + .rodata.arg_date_errorfn.str1.4 + 0x000000003f410b3c 0x78 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x7c (size before relaxing) + .rodata.arg_dbl_errorfn.str1.4 + 0x000000003f410bb4 0x21 esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x000000003f410bd5 0x3 + .rodata.arg_int_errorfn.str1.4 + 0x000000003f410bd8 0x2f esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x000000003f410c07 0x1 + .rodata.arg_print_syntax.str1.4 + 0x000000003f410c08 0x1d esp-idf/console/libconsole.a(argtable3.c.obj) + 0x21 (size before relaxing) + *fill* 0x000000003f410c25 0x3 + .rodata.arg_print_glossary.str1.4 + 0x000000003f410c28 0xf esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x000000003f410c37 0x1 + .rodata.getCursorPosition.str1.4 + 0x000000003f410c38 0xe esp-idf/console/libconsole.a(linenoise.c.obj) + *fill* 0x000000003f410c46 0x2 + .rodata.getColumns.str1.4 + 0x000000003f410c48 0xe esp-idf/console/libconsole.a(linenoise.c.obj) + *fill* 0x000000003f410c56 0x2 + .rodata.linenoiseDumb.str1.4 + 0x000000003f410c58 0x3 esp-idf/console/libconsole.a(linenoise.c.obj) + *fill* 0x000000003f410c5b 0x1 + .rodata.linenoiseClearScreen.str1.4 + 0x000000003f410c5c 0x8 esp-idf/console/libconsole.a(linenoise.c.obj) + .rodata.refreshShowHints.str1.4 + 0x000000003f410c64 0x11 esp-idf/console/libconsole.a(linenoise.c.obj) + *fill* 0x000000003f410c75 0x3 + .rodata.refreshMultiLine.str1.4 + 0x000000003f410c78 0x2b esp-idf/console/libconsole.a(linenoise.c.obj) + 0x2f (size before relaxing) + *fill* 0x000000003f410ca3 0x1 + .rodata.refreshSingleLine.str1.4 + 0x000000003f410ca4 0x5 esp-idf/console/libconsole.a(linenoise.c.obj) + *fill* 0x000000003f410ca9 0x3 + .rodata.completeLine.str1.4 + 0x000000003f410cac 0x3 esp-idf/console/libconsole.a(linenoise.c.obj) + *fill* 0x000000003f410caf 0x1 + .rodata.linenoiseProbe.str1.4 + 0x000000003f410cb0 0x5 esp-idf/console/libconsole.a(linenoise.c.obj) + .rodata.linenoiseEdit.str1.4 + 0x000000003f410cb5 0x1 esp-idf/console/libconsole.a(linenoise.c.obj) + *fill* 0x000000003f410cb5 0x3 + .rodata.linenoiseEdit + 0x000000003f410cb8 0x220 esp-idf/console/libconsole.a(linenoise.c.obj) + .rodata.linenoiseHistorySave.str1.4 + 0x000000003f410ed8 0x5 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x8 (size before relaxing) + .rodata.linenoiseHistoryLoad.str1.4 + 0x000000003f410ed8 0x2 esp-idf/console/libconsole.a(linenoise.c.obj) + .rodata.httpd_sock_err.str1.4 + 0x000000003f410ed8 0x38 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .rodata.httpd_resp_send.str1.4 + 0x000000003f410f10 0x37 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x3b (size before relaxing) + *fill* 0x000000003f410f47 0x1 + .rodata.httpd_resp_send_chunk.str1.4 + 0x000000003f410f48 0x41 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + *fill* 0x000000003f410f89 0x3 + .rodata.httpd_resp_send_err.str1.4 + 0x000000003f410f8c 0x339 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x345 (size before relaxing) + *fill* 0x000000003f4112c5 0x3 + .rodata.httpd_resp_send_err + 0x000000003f4112c8 0x28 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .rodata.httpd_default_send.str1.4 + 0x000000003f4112f0 0x5 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + *fill* 0x000000003f4112f5 0x3 + .rodata.httpd_default_recv.str1.4 + 0x000000003f4112f8 0x5 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + *fill* 0x000000003f4112fd 0x3 + .rodata.__func__$7530 + 0x000000003f411300 0xf esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + *fill* 0x000000003f41130f 0x1 + .rodata.__func__$7497 + 0x000000003f411310 0x14 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .rodata.httpd_register_uri_handler.str1.4 + 0x000000003f411324 0x95 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + *fill* 0x000000003f4113b9 0x3 + .rodata.httpd_uri.str1.4 + 0x000000003f4113bc 0xa8 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .rodata.__func__$7448 + 0x000000003f411464 0xa esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + *fill* 0x000000003f41146e 0x2 + .rodata.__func__$7398 + 0x000000003f411470 0x1b esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + *fill* 0x000000003f41148b 0x1 + .rodata.httpd_sess_new.str1.4 + 0x000000003f41148c 0x4b esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + *fill* 0x000000003f4114d7 0x1 + .rodata.httpd_sess_delete_invalid.str1.4 + 0x000000003f4114d8 0x35 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + *fill* 0x000000003f41150d 0x3 + .rodata.__func__$7440 + 0x000000003f411510 0x1a esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + *fill* 0x000000003f41152a 0x2 + .rodata.__func__$7384 + 0x000000003f41152c 0xf esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + *fill* 0x000000003f41153b 0x1 + .rodata.httpd_process_ctrl_msg.str1.4 + 0x000000003f41153c 0x62 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x000000003f41159e 0x2 + .rodata.httpd_accept_conn.str1.4 + 0x000000003f4115a0 0x63 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x000000003f411603 0x1 + .rodata.httpd_server.str1.4 + 0x000000003f411604 0x6a esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x000000003f41166e 0x2 + .rodata.httpd_create.str1.4 + 0x000000003f411670 0x185 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x000000003f4117f5 0x3 + .rodata.httpd_server_init.str1.4 + 0x000000003f4117f8 0x149 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x000000003f411941 0x3 + .rodata.httpd_queue_work.str1.4 + 0x000000003f411944 0x30 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .rodata.httpd_start.str1.4 + 0x000000003f411974 0xa1 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x000000003f411a15 0x3 + .rodata.__func__$7456 + 0x000000003f411a18 0x12 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x000000003f411a2a 0x2 + .rodata.__func__$7467 + 0x000000003f411a2c 0xd esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x000000003f411a39 0x3 + .rodata.__func__$7385 + 0x000000003f411a3c 0x12 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x000000003f411a4e 0x2 + .rodata.__func__$7422 + 0x000000003f411a50 0x17 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x000000003f411a67 0x1 + .rodata.__func__$7438 + 0x000000003f411a68 0xd esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x000000003f411a75 0x3 + .rodata.__func__$7402 + 0x000000003f411a78 0x11 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x000000003f411a89 0x3 + .rodata.cb_header_value.str1.4 + 0x000000003f411a8c 0x43 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x000000003f411acf 0x1 + .rodata.cb_url.str1.4 + 0x000000003f411ad0 0x47 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x000000003f411b17 0x1 + .rodata.verify_url.str1.4 + 0x000000003f411b18 0x84 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .rodata.cb_headers_complete.str1.4 + 0x000000003f411b9c 0xc7 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x000000003f411c63 0x1 + .rodata.pause_parsing.str1.4 + 0x000000003f411c64 0x77 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x000000003f411cdb 0x1 + .rodata.parse_block.str1.4 + 0x000000003f411cdc 0xd5 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x000000003f411db1 0x3 + .rodata.httpd_req_new.str1.4 + 0x000000003f411db4 0x7 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x12 (size before relaxing) + *fill* 0x000000003f411dbb 0x1 + .rodata.__func__$7485 + 0x000000003f411dbc 0xc esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .rodata.__func__$7402 + 0x000000003f411dc8 0x7 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x000000003f411dcf 0x1 + .rodata.__func__$7426 + 0x000000003f411dd0 0x10 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .rodata.__func__$7441 + 0x000000003f411de0 0x10 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .rodata.__func__$7448 + 0x000000003f411df0 0x14 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .rodata.__func__$7461 + 0x000000003f411e04 0xb esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x000000003f411e0f 0x1 + .rodata.__func__$7411 + 0x000000003f411e10 0xe esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x000000003f411e1e 0x2 + .rodata.__func__$7395 + 0x000000003f411e20 0xb esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x000000003f411e2b 0x1 + .rodata.__func__$7466 + 0x000000003f411e2c 0xb esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x000000003f411e37 0x1 + .rodata.cs_create_ctrl_sock.str1.4 + 0x000000003f411e38 0xa esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + *fill* 0x000000003f411e42 0x2 + .rodata.httpd_ssl_close.str1.4 + 0x000000003f411e44 0x55 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + *fill* 0x000000003f411e99 0x3 + .rodata.httpd_ssl_open.str1.4 + 0x000000003f411e9c 0xa8 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + .rodata.httpd_ssl_recv.str1.4 + 0x000000003f411f44 0xc esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + .rodata.free_secure_context.str1.4 + 0x000000003f411f44 0x40 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + .rodata.httpd_ssl_start.str1.4 + 0x000000003f411f84 0x53 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x7b (size before relaxing) + *fill* 0x000000003f411fd7 0x1 + .rodata.__func__$10684 + 0x000000003f411fd8 0x14 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + .rodata.__func__$10647 + 0x000000003f411fec 0x10 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + .rodata.__func__$10671 + 0x000000003f411ffc 0xf esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + *fill* 0x000000003f41200b 0x1 + .rodata.__func__$10662 + 0x000000003f41200c 0xf esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + *fill* 0x000000003f41201b 0x1 + .rodata.__func__$10653 + 0x000000003f41201c 0x12 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + *fill* 0x000000003f41202e 0x2 + .rodata.__func__$10676 + 0x000000003f412030 0xf esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + *fill* 0x000000003f41203f 0x1 + .rodata.__func__$10694 + 0x000000003f412040 0x10 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + .rodata.esp_vfs_fat_spiflash_mount.str1.4 + 0x000000003f412050 0x248 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + .rodata.ff_diskio_register.str1.4 + 0x000000003f412298 0x5d esp-idf/fatfs/libfatfs.a(diskio.c.obj) + *fill* 0x000000003f4122f5 0x3 + .rodata.__func__$5346 + 0x000000003f4122f8 0x13 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + *fill* 0x000000003f41230b 0x1 + .rodata.ff_wl_read.str1.4 + 0x000000003f41230c 0x8f esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + *fill* 0x000000003f41239b 0x1 + .rodata.ff_wl_write.str1.4 + 0x000000003f41239c 0x60 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + .rodata.wl_impl$5475 + 0x000000003f4123fc 0x14 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + .rodata.__func__$5466 + 0x000000003f412410 0xc esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + .rodata.__func__$5458 + 0x000000003f41241c 0xc esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + .rodata.__func__$5449 + 0x000000003f412428 0xb esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + *fill* 0x000000003f412433 0x1 + .rodata.create_name.str1.4 + 0x000000003f412434 0xf esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x000000003f412443 0x1 + .rodata.check_fs.str1.4 + 0x000000003f412444 0xa esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x000000003f41244e 0x2 + .rodata.f_mkfs.str1.4 + 0x000000003f412450 0x34 esp-idf/fatfs/libfatfs.a(ff.c.obj) + .rodata.cst$5212 + 0x000000003f412484 0xe esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x000000003f412492 0x2 + .rodata.cst32$5213 + 0x000000003f412494 0xe esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x000000003f4124a2 0x2 + .rodata.ExCvt 0x000000003f4124a4 0x80 esp-idf/fatfs/libfatfs.a(ff.c.obj) + .rodata.prepend_drive_to_path.str1.4 + 0x000000003f412524 0x5 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + *fill* 0x000000003f412529 0x3 + .rodata.fresult_to_errno.str1.4 + 0x000000003f41252c 0x55 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + *fill* 0x000000003f412581 0x3 + .rodata.fresult_to_errno + 0x000000003f412584 0x50 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + .rodata.vfs_fat_telldir.str1.4 + 0x000000003f4125d4 0x5 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + *fill* 0x000000003f4125d9 0x3 + .rodata.vfs_fat_truncate.str1.4 + 0x000000003f4125dc 0x47 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + *fill* 0x000000003f412623 0x1 + .rodata.vfs_fat_open.str1.4 + 0x000000003f412624 0x36 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + .rodata.vfs_fat_stat.str1.4 + 0x000000003f41265a 0x2 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + *fill* 0x000000003f41265a 0x2 + .rodata.__func__$6731 + 0x000000003f41265c 0x12 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + *fill* 0x000000003f41266e 0x2 + .rodata.__func__$6738 + 0x000000003f412670 0x10 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + .rodata.__func__$6745 + 0x000000003f412680 0x10 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + .rodata.__func__$6715 + 0x000000003f412690 0x11 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + *fill* 0x000000003f4126a1 0x3 + .rodata.__func__$6541 + 0x000000003f4126a4 0x11 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + *fill* 0x000000003f4126b5 0x3 + .rodata._ZL12check_handleiPKc.str1.4 + 0x000000003f4126b8 0xb4 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + .rodata.wl_mount.str1.4 + 0x000000003f41276c 0x12d esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + *fill* 0x000000003f412899 0x3 + .rodata._ZZ14wl_sector_sizeE8__func__ + 0x000000003f41289c 0xf esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + *fill* 0x000000003f4128ab 0x1 + .rodata._ZZ7wl_sizeE8__func__ + 0x000000003f4128ac 0x8 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + .rodata._ZZ7wl_readE8__func__ + 0x000000003f4128b4 0x8 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + .rodata._ZZ8wl_writeE8__func__ + 0x000000003f4128bc 0x9 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + *fill* 0x000000003f4128c5 0x3 + .rodata._ZZ14wl_erase_rangeE8__func__ + 0x000000003f4128c8 0xf esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + *fill* 0x000000003f4128d7 0x1 + .rodata._ZZ8wl_mountE8__func__ + 0x000000003f4128d8 0x9 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + *fill* 0x000000003f4128e1 0x3 + .rodata._ZN9Partition11erase_rangeEjj.str1.4 + 0x000000003f4128e4 0x66 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + *fill* 0x000000003f41294a 0x2 + .rodata._ZTV9Partition + 0x000000003f41294c 0x2c esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0x000000003f41294c _ZTV9Partition + .rodata._ZN8WL_Flash11erase_rangeEjj.str1.4 + 0x000000003f412978 0x3b esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + *fill* 0x000000003f4129b3 0x1 + .rodata._ZN8WL_Flash11updateV1_V2Ev.str1.4 + 0x000000003f4129b4 0x8a esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + *fill* 0x000000003f412a3e 0x2 + .rodata._ZN8WL_Flash4initEv.str1.4 + 0x000000003f412a40 0x73 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + *fill* 0x000000003f412ab3 0x1 + .rodata._ZN8WL_Flash8updateWLEv.str1.4 + 0x000000003f412ab4 0x1ab esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + *fill* 0x000000003f412c5f 0x1 + .rodata._ZZN8WL_Flash4readEjPvjE12__FUNCTION__ + 0x000000003f412c60 0x5 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + *fill* 0x000000003f412c65 0x3 + .rodata._ZZN8WL_Flash5writeEjPKvjE12__FUNCTION__ + 0x000000003f412c68 0x6 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + *fill* 0x000000003f412c6e 0x2 + .rodata._ZZN8WL_Flash11erase_rangeEjjE12__FUNCTION__ + 0x000000003f412c70 0xc esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + .rodata._ZZN8WL_Flash12erase_sectorEjE12__FUNCTION__ + 0x000000003f412c7c 0xd esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + *fill* 0x000000003f412c89 0x3 + .rodata._ZZN8WL_Flash8updateWLEvE12__FUNCTION__ + 0x000000003f412c8c 0x9 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + *fill* 0x000000003f412c95 0x3 + .rodata._ZZN8WL_Flash8updateWLEvE8__func__ + 0x000000003f412c98 0x9 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + *fill* 0x000000003f412ca1 0x3 + .rodata._ZZN8WL_Flash11updateV1_V2EvE8__func__ + 0x000000003f412ca4 0xc esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + .rodata._ZZN8WL_Flash11updateV1_V2EvE12__FUNCTION__ + 0x000000003f412cb0 0xc esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + .rodata._ZZN8WL_Flash12initSectionsEvE12__FUNCTION__ + 0x000000003f412cbc 0xd esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + *fill* 0x000000003f412cc9 0x3 + .rodata._ZZN8WL_Flash10recoverPosEvE12__FUNCTION__ + 0x000000003f412ccc 0xb esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + *fill* 0x000000003f412cd7 0x1 + .rodata._ZZN8WL_Flash4initEvE8__func__ + 0x000000003f412cd8 0x5 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + *fill* 0x000000003f412cdd 0x3 + .rodata._ZZN8WL_Flash4initEvE12__FUNCTION__ + 0x000000003f412ce0 0x5 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + *fill* 0x000000003f412ce5 0x3 + .rodata._ZZN8WL_Flash6configEP11WL_Config_sP12Flash_AccessE12__FUNCTION__ + 0x000000003f412ce8 0x7 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + *fill* 0x000000003f412cef 0x1 + .rodata._ZTV8WL_Flash + 0x000000003f412cf0 0x34 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x000000003f412cf0 _ZTV8WL_Flash + .rodata.s_prepare_reserved_regions.str1.4 + 0x000000003f412d24 0x10c esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .rodata.__func__$2659 + 0x000000003f412e30 0x1b esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + *fill* 0x000000003f412e4b 0x1 + .rodata.rtcio_hal_set_direction.str1.4 + 0x000000003f412e4c 0xbc esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + 0x1c0 (size before relaxing) + .rodata.__func__$3470 + 0x000000003f412f08 0x1a esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + *fill* 0x000000003f412f22 0x2 + .rodata.__func__$3456 + 0x000000003f412f24 0x18 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .rodata.__func__$3421 + 0x000000003f412f3c 0x17 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + *fill* 0x000000003f412f53 0x1 + .rodata.spi_flash_clk_cfg_reg + 0x000000003f412f54 0x30 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .rodata.soc_memory_region_count + 0x000000003f412f84 0x4 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + 0x000000003f412f84 soc_memory_region_count + .rodata.soc_memory_regions + 0x000000003f412f88 0x2b0 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + 0x000000003f412f88 soc_memory_regions + .rodata.str1.4 + 0x000000003f413238 0x95 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + 0xa5 (size before relaxing) + *fill* 0x000000003f4132cd 0x3 + .rodata.soc_memory_types + 0x000000003f4132d0 0x12c esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + 0x000000003f4132d0 soc_memory_types + .rodata.GPIO_PIN_MUX_REG + 0x000000003f4133fc 0xa0 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + 0x000000003f4133fc GPIO_PIN_MUX_REG + .rodata.rtc_io_desc + 0x000000003f41349c 0x3f0 esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + 0x000000003f41349c rtc_io_desc + .rodata.rtc_io_num_map + 0x000000003f41388c 0xa0 esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + 0x000000003f41388c rtc_io_num_map + .rodata.uart_periph_signal + 0x000000003f41392c 0x24 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) + 0x000000003f41392c uart_periph_signal + .rodata.esp_netif_action_connected.str1.4 + 0x000000003f413950 0xa1 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + *fill* 0x000000003f4139f1 0x3 + .rodata.esp_netif_action_got_ip.str1.4 + 0x000000003f4139f4 0x4e esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + *fill* 0x000000003f413a42 0x2 + .rodata.__FUNCTION__$8394 + 0x000000003f413a44 0x1b esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + *fill* 0x000000003f413a5f 0x1 + .rodata._g_esp_netif_soft_ap_ip + 0x000000003f413a60 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + 0x000000003f413a60 _g_esp_netif_soft_ap_ip + .rodata.str1.4 + 0x000000003f413a6c 0x3c esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .rodata._g_esp_netif_inherent_ap_config + 0x000000003f413aa8 0x24 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + 0x000000003f413aa8 _g_esp_netif_inherent_ap_config + .rodata._g_esp_netif_inherent_sta_config + 0x000000003f413acc 0x24 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + 0x000000003f413acc _g_esp_netif_inherent_sta_config + .rodata.s_wifi_netif_config_sta + 0x000000003f413af0 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .rodata.s_wifi_netif_config_ap + 0x000000003f413af8 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .rodata.mbedtls_mpi_write_string.str1.4 + 0x000000003f413b00 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .rodata.mbedtls_mpi_write_file.str1.4 + 0x000000003f413b11 0x9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + *fill* 0x000000003f413b11 0x3 + .rodata.small_prime + 0x000000003f413b14 0x2a0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .rodata.str1.4 + 0x000000003f413db4 0x8e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + *fill* 0x000000003f413e42 0x2 + .rodata.ecp_supported_curves + 0x000000003f413e44 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .rodata.ecp_use_curve25519.str1.4 + 0x000000003f413ed4 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x000000003f413efd 0x3 + .rodata.mbedtls_ecp_group_load + 0x000000003f413f00 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_n + 0x000000003f413f34 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_gy + 0x000000003f413f74 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_gx + 0x000000003f413fb4 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_b + 0x000000003f413ff4 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_a + 0x000000003f414034 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP512r1_p + 0x000000003f414074 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_n + 0x000000003f4140b4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_gy + 0x000000003f4140e4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_gx + 0x000000003f414114 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_b + 0x000000003f414144 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_a + 0x000000003f414174 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP384r1_p + 0x000000003f4141a4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_n + 0x000000003f4141d4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_gy + 0x000000003f4141f4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_gx + 0x000000003f414214 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_b + 0x000000003f414234 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_a + 0x000000003f414254 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.brainpoolP256r1_p + 0x000000003f414274 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_n + 0x000000003f414294 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_gy + 0x000000003f4142b4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_gx + 0x000000003f4142d4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_b + 0x000000003f4142f4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_a + 0x000000003f4142f8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256k1_p + 0x000000003f4142fc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_n + 0x000000003f41431c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_gy + 0x000000003f41433c 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_gx + 0x000000003f414358 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_b + 0x000000003f414374 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_a + 0x000000003f414378 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224k1_p + 0x000000003f41437c 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_n + 0x000000003f414398 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_gy + 0x000000003f4143b0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_gx + 0x000000003f4143c8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_b + 0x000000003f4143e0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_a + 0x000000003f4143e4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192k1_p + 0x000000003f4143e8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_n + 0x000000003f414400 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_gy + 0x000000003f414444 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_gx + 0x000000003f414488 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_b + 0x000000003f4144cc 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp521r1_p + 0x000000003f414510 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_n + 0x000000003f414554 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_gy + 0x000000003f414584 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_gx + 0x000000003f4145b4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_b + 0x000000003f4145e4 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp384r1_p + 0x000000003f414614 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_n + 0x000000003f414644 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_gy + 0x000000003f414664 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_gx + 0x000000003f414684 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_b + 0x000000003f4146a4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp256r1_p + 0x000000003f4146c4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_n + 0x000000003f4146e4 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_gy + 0x000000003f414700 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_gx + 0x000000003f41471c 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_b + 0x000000003f414738 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp224r1_p + 0x000000003f414754 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_n + 0x000000003f414774 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_gy + 0x000000003f41478c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_gx + 0x000000003f4147a4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_b + 0x000000003f4147bc 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.secp192r1_p + 0x000000003f4147d4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .rodata.mbedtls_strerror.str1.4 + 0x000000003f4147ec 0x29aa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) + *fill* 0x000000003f417196 0x2 + .rodata.mbedtls_md_info_from_type + 0x000000003f417198 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .rodata.str1.4 + 0x000000003f4171b0 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + .rodata.mbedtls_sha512_info + 0x000000003f4171b0 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x000000003f4171b0 mbedtls_sha512_info + .rodata.mbedtls_sha384_info + 0x000000003f4171e0 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x000000003f4171e0 mbedtls_sha384_info + .rodata.mbedtls_sha256_info + 0x000000003f417210 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x000000003f417210 mbedtls_sha256_info + .rodata.mbedtls_sha224_info + 0x000000003f417240 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x000000003f417240 mbedtls_sha224_info + .rodata.mbedtls_sha1_info + 0x000000003f417270 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x000000003f417270 mbedtls_sha1_info + .rodata.mbedtls_md5_info + 0x000000003f4172a0 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x000000003f4172a0 mbedtls_md5_info + .rodata.rsa_debug.str1.4 + 0x000000003f4172d0 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x000000003f4172de 0x2 + .rodata.eckey_debug.str1.4 + 0x000000003f4172e0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .rodata.str1.4 + 0x000000003f4172e8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .rodata.mbedtls_ecdsa_info + 0x000000003f417308 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x000000003f417308 mbedtls_ecdsa_info + .rodata.mbedtls_eckeydh_info + 0x000000003f417338 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x000000003f417338 mbedtls_eckeydh_info + .rodata.mbedtls_eckey_info + 0x000000003f417368 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x000000003f417368 mbedtls_eckey_info + .rodata.mbedtls_rsa_info + 0x000000003f417398 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x000000003f417398 mbedtls_rsa_info + .rodata.mbedtls_pkcs5_pbes2.str1.4 + 0x000000003f4173c8 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + *fill* 0x000000003f4173d2 0x2 + .rodata.pk_group_from_specified.str1.4 + 0x000000003f4173d4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .rodata.pk_parse_key_pkcs8_encrypted_der.str1.4 + 0x000000003f4173dc 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + *fill* 0x000000003f4173f2 0x2 + .rodata.mbedtls_pk_load_file.str1.4 + 0x000000003f4173f4 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x10 (size before relaxing) + .rodata.mbedtls_pk_parse_key.str1.4 + 0x000000003f417400 0x102 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + *fill* 0x000000003f417502 0x2 + .rodata.mbedtls_pk_write_key_pem.str1.4 + 0x000000003f417504 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .rodata 0x000000003f417588 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + *fill* 0x000000003f4175be 0x2 + .rodata.sha1_padding + 0x000000003f4175c0 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .rodata.sha256_padding + 0x000000003f417600 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .rodata.K 0x000000003f417640 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .rodata.sha512_padding + 0x000000003f417740 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .rodata.K 0x000000003f4177c0 0x280 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .rodata.mont.str1.4 + 0x000000003f417a40 0x59 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + *fill* 0x000000003f417a99 0x3 + .rodata.__func__$5544 + 0x000000003f417a9c 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + *fill* 0x000000003f417aad 0x3 + .rodata.sha_get_engine_state.str1.4 + 0x000000003f417ab0 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + *fill* 0x000000003f417b02 0x2 + .rodata.esp_sha_lock_engine_common.str1.4 + 0x000000003f417b04 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.esp_sha_read_digest_state.str1.4 + 0x000000003f417b18 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.__func__$4952 + 0x000000003f417b60 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + *fill* 0x000000003f417b6e 0x2 + .rodata.__func__$4929 + 0x000000003f417b70 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + *fill* 0x000000003f417b8a 0x2 + .rodata.__func__$4895 + 0x000000003f417b8c 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + *fill* 0x000000003f417ba1 0x3 + .rodata.__func__$4911 + 0x000000003f417ba4 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + *fill* 0x000000003f417bbf 0x1 + .rodata.mbedtls_cipher_set_padding_mode + 0x000000003f417bc0 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .rodata.mbedtls_cipher_definitions + 0x000000003f417bd4 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x000000003f417bd4 mbedtls_cipher_definitions + .rodata.str1.4 + 0x000000003f417c94 0x120 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_ccm_info + 0x000000003f417db4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_ccm_info + 0x000000003f417dd4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_ccm_info + 0x000000003f417df4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.ccm_aes_info + 0x000000003f417e14 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_gcm_info + 0x000000003f417e40 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_gcm_info + 0x000000003f417e60 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_gcm_info + 0x000000003f417e80 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.gcm_aes_info + 0x000000003f417ea0 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_xts_info + 0x000000003f417ecc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_xts_info + 0x000000003f417eec 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.xts_aes_info + 0x000000003f417f0c 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_ctr_info + 0x000000003f417f38 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_ctr_info + 0x000000003f417f58 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_ctr_info + 0x000000003f417f78 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_ofb_info + 0x000000003f417f98 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_ofb_info + 0x000000003f417fb8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_ofb_info + 0x000000003f417fd8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_cfb128_info + 0x000000003f417ff8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_cfb128_info + 0x000000003f418018 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_cfb128_info + 0x000000003f418038 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_cbc_info + 0x000000003f418058 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_cbc_info + 0x000000003f418078 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_cbc_info + 0x000000003f418098 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_256_ecb_info + 0x000000003f4180b8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_192_ecb_info + 0x000000003f4180d8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_128_ecb_info + 0x000000003f4180f8 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .rodata.aes_info + 0x000000003f418118 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x000000003f418144 0x4 + .rodata.last4 0x000000003f418148 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .rodata.str1.4 + 0x000000003f4181c8 0xb1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0xbc9 (size before relaxing) + *fill* 0x000000003f418ce5 0x3 + .rodata.oid_pkcs12_pbe_alg + 0x000000003f418ce8 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_md_hmac + 0x000000003f418d30 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_md_alg + 0x000000003f418da8 0x8c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_cipher_alg + 0x000000003f418e34 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata 0x000000003f418e70 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x000000003f418e9e 0x2 + .rodata.oid_ecp_grp + 0x000000003f418ea0 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_pk_alg + 0x000000003f418f90 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_sig_alg + 0x000000003f418fe0 0x150 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_x509_ext + 0x000000003f419130 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.oid_x520_attr_type + 0x000000003f4191a8 0x190 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .rodata.mbedtls_pem_read_buffer.str1.4 + 0x000000003f419338 0x6f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + *fill* 0x000000003f4193a7 0x1 + .rodata.base64_dec_map + 0x000000003f4193a8 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .rodata.base64_enc_map + 0x000000003f419428 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .rodata.x509_date_is_valid + 0x000000003f419468 0x34 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .rodata.mbedtls_x509_get_rsassa_pss_params.str1.4 + 0x000000003f41949c 0xa esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + *fill* 0x000000003f4194a6 0x2 + .rodata.mbedtls_x509_dn_gets.str1.4 + 0x000000003f4194a8 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x13 (size before relaxing) + .rodata.x509_crt_verify_name.str1.4 + 0x000000003f4194b4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .rodata 0x000000003f4194b4 0x5 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + *fill* 0x000000003f4194b9 0x3 + .rodata.mbedtls_x509_crt_parse.str1.4 + 0x000000003f4194bc 0x36 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + *fill* 0x000000003f4194f2 0x2 + .rodata.mbedtls_x509_crt_profile_suiteb + 0x000000003f4194f4 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x000000003f4194f4 mbedtls_x509_crt_profile_suiteb + .rodata.mbedtls_x509_crt_profile_default + 0x000000003f419504 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x000000003f419504 mbedtls_x509_crt_profile_default + .rodata.mbedtls_x509_csr_parse.str1.4 + 0x000000003f419514 0x98 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + .rodata.mbedtls_x509write_crt_set_basic_constraints.str1.4 + 0x000000003f4195ac 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + .rodata.mbedtls_x509write_crt_set_subject_key_identifier.str1.4 + 0x000000003f4195ac 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + .rodata.mbedtls_x509write_crt_set_authority_key_identifier.str1.4 + 0x000000003f4195b0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + .rodata.mbedtls_x509write_crt_set_key_usage.str1.4 + 0x000000003f4195b4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + .rodata.mbedtls_x509write_crt_set_ns_cert_type.str1.4 + 0x000000003f4195b4 0xa esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + .rodata.mbedtls_x509write_crt_pem.str1.4 + 0x000000003f4195b4 0x39 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + *fill* 0x000000003f4195ed 0x3 + .rodata.str1.4 + 0x000000003f4195f0 0x88 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + 0x183 (size before relaxing) + .rodata.x509_attrs + 0x000000003f419678 0x1d0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + .rodata.get_ota_partition_count.str1.4 + 0x000000003f419848 0x86 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + *fill* 0x000000003f4198ce 0x2 + .rodata.esp_ota_get_running_partition.str1.4 + 0x000000003f4198d0 0x33 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + *fill* 0x000000003f419903 0x1 + .rodata.__func__$5842 + 0x000000003f419904 0x1e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + *fill* 0x000000003f419922 0x2 + .rodata.wpa_config_profile.str1.4 + 0x000000003f419924 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x5a (size before relaxing) + *fill* 0x000000003f41997a 0x2 + .rodata.wpa_sta_connect.str1.4 + 0x000000003f41997c 0x9 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + *fill* 0x000000003f419985 0x3 + .rodata.__func__$11518 + 0x000000003f419988 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .rodata.__func__$11480 + 0x000000003f419998 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + *fill* 0x000000003f4199ab 0x1 + .rodata.cipher_type_map_public_to_supp + 0x000000003f4199ac 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .rodata.wpa_derive_ptk.str1.4 + 0x000000003f4199c8 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + *fill* 0x000000003f4199df 0x1 + .rodata.wpa_gen_wpa_ie_rsn.str1.4 + 0x000000003f4199e0 0x72 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + *fill* 0x000000003f419a52 0x2 + .rodata.wpa_gen_wpa_ie_wpa.str1.4 + 0x000000003f419a54 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + *fill* 0x000000003f419a7a 0x2 + .rodata.__func__$5092 + 0x000000003f419a7c 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + *fill* 0x000000003f419a8f 0x1 + .rodata.__func__$5106 + 0x000000003f419a90 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + *fill* 0x000000003f419aa3 0x1 + .rodata.wpa_group_init_gmk_and_counter.str1.4 + 0x000000003f419aa4 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000003f419ab1 0x3 + .rodata.wpa_gtk_update.str1.4 + 0x000000003f419ab4 0x27 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000003f419adb 0x1 + .rodata.wpa_group_config_group_keys.str1.4 + 0x000000003f419adc 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .rodata.wpa_derive_ptk.str1.4 + 0x000000003f419ae3 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000003f419ae3 0x1 + .rodata.sm_WPA_PTK_Step + 0x000000003f419ae4 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .rodata.wpa_receive + 0x000000003f419b10 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .rodata.sae_test_pwd_seed_ecc.str1.4 + 0x000000003f419b2c 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata.sae_derive_keys.str1.4 + 0x000000003f419b44 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .rodata 0x000000003f419b54 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .rodata.rsn_pmkid.str1.4 + 0x000000003f419b60 0x9 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + *fill* 0x000000003f419b69 0x3 + .rodata.dh_groups + 0x000000003f419b6c 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .rodata.dh_group5_order + 0x000000003f419b8c 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .rodata.dh_group5_prime + 0x000000003f419c4c 0xc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .rodata.dh_group5_generator + 0x000000003f419d0c 0x1 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + *fill* 0x000000003f419d0d 0x3 + .rodata.pmksa_cache_init.str1.4 + 0x000000003f419d10 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .rodata.str1.4 + 0x000000003f419d24 0x5a8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x5b0 (size before relaxing) + .rodata.__FUNCTION__$10754 + 0x000000003f41a2cc 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10614 + 0x000000003f41a2e0 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + *fill* 0x000000003f41a2f6 0x2 + .rodata.__FUNCTION__$10556 + 0x000000003f41a2f8 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10482 + 0x000000003f41a310 0x1d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + *fill* 0x000000003f41a32d 0x3 + .rodata.__FUNCTION__$10476 + 0x000000003f41a330 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + *fill* 0x000000003f41a34b 0x1 + .rodata.__FUNCTION__$10428 + 0x000000003f41a34c 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + *fill* 0x000000003f41a35d 0x3 + .rodata.__FUNCTION__$10403 + 0x000000003f41a360 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + *fill* 0x000000003f41a375 0x3 + .rodata.__FUNCTION__$10337 + 0x000000003f41a378 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10329 + 0x000000003f41a38c 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10269 + 0x000000003f41a3a0 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .rodata.__FUNCTION__$10254 + 0x000000003f41a3b4 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + *fill* 0x000000003f41a3c5 0x3 + .rodata.__FUNCTION__$10056 + 0x000000003f41a3c8 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + *fill* 0x000000003f41a3e6 0x2 + .rodata.str1.4 + 0x000000003f41a3e8 0x104 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x10c (size before relaxing) + .rodata.ieee80211_ethbroadcast + 0x000000003f41a4ec 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x000000003f41a4ec ieee80211_ethbroadcast + *fill* 0x000000003f41a4f2 0x2 + .rodata.str1.4 + 0x000000003f41a4f4 0xd2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0xda (size before relaxing) + *fill* 0x000000003f41a5c6 0x2 + .rodata.str1.4 + 0x000000003f41a5c8 0x1e1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x1e9 (size before relaxing) + *fill* 0x000000003f41a7a9 0x3 + .rodata.str1.4 + 0x000000003f41a7ac 0x301 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x31d (size before relaxing) + *fill* 0x000000003f41aaad 0x3 + .rodata.__FUNCTION__$9908 + 0x000000003f41aab0 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + *fill* 0x000000003f41aac2 0x2 + .rodata.str1.4 + 0x000000003f41aac4 0x4ba /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x4d6 (size before relaxing) + *fill* 0x000000003f41af7e 0x2 + .rodata 0x000000003f41af80 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .rodata.str1.4 + 0x000000003f41af90 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .rodata.str1.4 + 0x000000003f41af90 0x416 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x43a (size before relaxing) + *fill* 0x000000003f41b3a6 0x2 + .rodata 0x000000003f41b3a8 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata.CSWTCH$58 + 0x000000003f41b3bc 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .rodata.str1.4 + 0x000000003f41b3dc 0xcbf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xd1f (size before relaxing) + *fill* 0x000000003f41c09b 0x1 + .rodata 0x000000003f41c09c 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + *fill* 0x000000003f41c0a2 0x2 + .rodata.CSWTCH$338 + 0x000000003f41c0a4 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.__FUNCTION__$10984 + 0x000000003f41c0c8 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + *fill* 0x000000003f41c0e6 0x2 + .rodata.__FUNCTION__$10862 + 0x000000003f41c0e8 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.__FUNCTION__$10772 + 0x000000003f41c100 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + *fill* 0x000000003f41c111 0x3 + .rodata.__FUNCTION__$10756 + 0x000000003f41c114 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.__FUNCTION__$10746 + 0x000000003f41c128 0x19 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + *fill* 0x000000003f41c141 0x3 + .rodata.__FUNCTION__$10452 + 0x000000003f41c144 0x1d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + *fill* 0x000000003f41c161 0x3 + .rodata.__FUNCTION__$10351 + 0x000000003f41c164 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .rodata.__FUNCTION__$10677 + 0x000000003f41c184 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + *fill* 0x000000003f41c19e 0x2 + .rodata.__FUNCTION__$10574 + 0x000000003f41c1a0 0x13 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + *fill* 0x000000003f41c1b3 0x1 + .rodata.__FUNCTION__$10532 + 0x000000003f41c1b4 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + *fill* 0x000000003f41c1ca 0x2 + .rodata.__FUNCTION__$10277 + 0x000000003f41c1cc 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + *fill* 0x000000003f41c1e2 0x2 + .rodata.__FUNCTION__$10443 + 0x000000003f41c1e4 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + *fill* 0x000000003f41c202 0x2 + .rodata.__FUNCTION__$10417 + 0x000000003f41c204 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + *fill* 0x000000003f41c219 0x3 + .rodata.__FUNCTION__$10342 + 0x000000003f41c21c 0x1d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + *fill* 0x000000003f41c239 0x3 + .rodata.__FUNCTION__$10330 + 0x000000003f41c23c 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + *fill* 0x000000003f41c251 0x3 + .rodata.__FUNCTION__$10312 + 0x000000003f41c254 0x17 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + *fill* 0x000000003f41c26b 0x1 + .rodata.str1.4 + 0x000000003f41c26c 0x3fd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x419 (size before relaxing) + *fill* 0x000000003f41c669 0x3 + .rodata.wifi_nvs_set + 0x000000003f41c66c 0x40 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata.wifi_nvs_load + 0x000000003f41c6ac 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .rodata.str1.4 + 0x000000003f41c6cc 0x43e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x45a (size before relaxing) + *fill* 0x000000003f41cb0a 0x2 + .rodata 0x000000003f41cb0c 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + *fill* 0x000000003f41cb12 0x2 + .rodata.s_ac_param$9489 + 0x000000003f41cb14 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .rodata.param$9490 + 0x000000003f41cb30 0x9 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + *fill* 0x000000003f41cb39 0x3 + .rodata.info$9484 + 0x000000003f41cb3c 0x9 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + *fill* 0x000000003f41cb45 0x3 + .rodata.str1.4 + 0x000000003f41cb48 0x58 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + 0x77 (size before relaxing) + .rodata.ieee80211_11g_table + 0x000000003f41cba0 0xd4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .rodata.ieee80211_11b_table + 0x000000003f41cc74 0xd4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .rodata.str1.4 + 0x000000003f41cd48 0x2f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x37 (size before relaxing) + *fill* 0x000000003f41cd77 0x1 + .rodata.str1.4 + 0x000000003f41cd78 0x50 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x58 (size before relaxing) + .rodata.str1.4 + 0x000000003f41cdc8 0xa60 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0xae0 (size before relaxing) + .rodata.str1.4 + 0x000000003f41d828 0xa80 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0xb02 (size before relaxing) + .rodata.ieee80211_sta_new_state + 0x000000003f41e2a8 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata 0x000000003f41e2c0 0x4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata.state_desc$9652 + 0x000000003f41e2c4 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .rodata.str1.4 + 0x000000003f41e2e8 0x50 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x8c (size before relaxing) + .rodata.wifi_set_rx_policy + 0x000000003f41e338 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .rodata.str1.4 + 0x000000003f41e364 0x179 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x181 (size before relaxing) + *fill* 0x000000003f41e4dd 0x3 + .rodata.__FUNCTION__$8592 + 0x000000003f41e4e0 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$8596 + 0x000000003f41e4f8 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + *fill* 0x000000003f41e512 0x2 + .rodata.__FUNCTION__$8600 + 0x000000003f41e514 0x1d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + *fill* 0x000000003f41e531 0x3 + .rodata.__FUNCTION__$8604 + 0x000000003f41e534 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + *fill* 0x000000003f41e542 0x2 + .rodata.__FUNCTION__$8608 + 0x000000003f41e544 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + *fill* 0x000000003f41e559 0x3 + .rodata.__FUNCTION__$8612 + 0x000000003f41e55c 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + *fill* 0x000000003f41e56d 0x3 + .rodata.__FUNCTION__$8616 + 0x000000003f41e570 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$8620 + 0x000000003f41e584 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$8624 + 0x000000003f41e598 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + *fill* 0x000000003f41e5ae 0x2 + .rodata.__FUNCTION__$8631 + 0x000000003f41e5b0 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + *fill* 0x000000003f41e5bf 0x1 + .rodata.__FUNCTION__$8639 + 0x000000003f41e5c0 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$8635 + 0x000000003f41e5d8 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .rodata.__FUNCTION__$8643 + 0x000000003f41e5e8 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + *fill* 0x000000003f41e603 0x1 + .rodata.__FUNCTION__$8647 + 0x000000003f41e604 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + *fill* 0x000000003f41e623 0x1 + .rodata.__FUNCTION__$8651 + 0x000000003f41e624 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + *fill* 0x000000003f41e63e 0x2 + .rodata.__FUNCTION__$8655 + 0x000000003f41e640 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + *fill* 0x000000003f41e652 0x2 + .rodata.str1.4 + 0x000000003f41e654 0x139 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x155 (size before relaxing) + *fill* 0x000000003f41e78d 0x3 + .rodata.str1.4 + 0x000000003f41e790 0x110d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x11a9 (size before relaxing) + *fill* 0x000000003f41f89d 0x3 + .rodata.__FUNCTION__$9655 + 0x000000003f41f8a0 0x13 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + *fill* 0x000000003f41f8b3 0x1 + .rodata.str1.4 + 0x000000003f41f8b4 0x13 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + 0x2f (size before relaxing) + *fill* 0x000000003f41f8c7 0x1 + .rodata.str1.4 + 0x000000003f41f8c8 0x8e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + 0x96 (size before relaxing) + *fill* 0x000000003f41f956 0x2 + .rodata.str1.4 + 0x000000003f41f958 0x1f5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x1fd (size before relaxing) + *fill* 0x000000003f41fb4d 0x3 + .rodata.str1.4 + 0x000000003f41fb50 0x60 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x90 (size before relaxing) + .rodata 0x000000003f41fbb0 0x6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + *fill* 0x000000003f41fbb6 0x2 + .rodata.str1.4 + 0x000000003f41fbb8 0x153 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x15b (size before relaxing) + *fill* 0x000000003f41fd0b 0x1 + .rodata.lmacProcessTxComplete + 0x000000003f41fd0c 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$7975 + 0x000000003f41fd24 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .rodata.__FUNCTION__$7931 + 0x000000003f41fd30 0x13 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000003f41fd43 0x1 + .rodata.__FUNCTION__$7914 + 0x000000003f41fd44 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000003f41fd5a 0x2 + .rodata.__FUNCTION__$7902 + 0x000000003f41fd5c 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000003f41fd72 0x2 + .rodata.__FUNCTION__$7894 + 0x000000003f41fd74 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000003f41fd8a 0x2 + .rodata.__FUNCTION__$7843 + 0x000000003f41fd8c 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000003f41fda2 0x2 + .rodata.__FUNCTION__$7880 + 0x000000003f41fda4 0x19 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000003f41fdbd 0x3 + .rodata.__FUNCTION__$7723 + 0x000000003f41fdc0 0x21 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000003f41fde1 0x3 + .rodata.__FUNCTION__$7859 + 0x000000003f41fde4 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000003f41fdfe 0x2 + .rodata.__FUNCTION__$7797 + 0x000000003f41fe00 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000003f41fe15 0x3 + .rodata.__FUNCTION__$7771 + 0x000000003f41fe18 0x1d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000003f41fe35 0x3 + .rodata.__FUNCTION__$7696 + 0x000000003f41fe38 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000003f41fe4d 0x3 + .rodata.__FUNCTION__$7990 + 0x000000003f41fe50 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000003f41fe5b 0x1 + .rodata.__FUNCTION__$7752 + 0x000000003f41fe5c 0x21 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000003f41fe7d 0x3 + .rodata.__FUNCTION__$7607 + 0x000000003f41fe80 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000003f41fe8f 0x1 + .rodata.__FUNCTION__$7581 + 0x000000003f41fe90 0x13 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + *fill* 0x000000003f41fea3 0x1 + .rodata.str1.4 + 0x000000003f41fea4 0x2be /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x2c6 (size before relaxing) + *fill* 0x000000003f420162 0x2 + .rodata.str1.4 + 0x000000003f420164 0x25d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x270 (size before relaxing) + *fill* 0x000000003f4203c1 0x3 + .rodata 0x000000003f4203c4 0x6c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata.CSWTCH$278 + 0x000000003f420430 0x3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .rodata.str1.4 + 0x000000003f420433 0x3d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + *fill* 0x000000003f420433 0x1 + .rodata.our_controls + 0x000000003f420434 0x158 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .rodata.rc11NRate2SchedIdx + 0x000000003f42058c 0xac /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.rssi_margin + 0x000000003f420638 0x80 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.rcUpdateAMPDUParam + 0x000000003f4206b8 0x40 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.str1.4 + 0x000000003f4206f8 0x1d8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x1f8 (size before relaxing) + .rodata.rcUpdatePhyMode + 0x000000003f4208d0 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata 0x000000003f420908 0x104 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.CSWTCH$109 + 0x000000003f420a0c 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + *fill* 0x000000003f420a2a 0x2 + .rodata.CSWTCH$79 + 0x000000003f420a2c 0x2b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + *fill* 0x000000003f420a57 0x1 + .rodata.CSWTCH$77 + 0x000000003f420a58 0x2b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + *fill* 0x000000003f420a83 0x1 + .rodata.__FUNCTION__$7589 + 0x000000003f420a84 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + *fill* 0x000000003f420a96 0x2 + .rodata.__FUNCTION__$7502 + 0x000000003f420a98 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + *fill* 0x000000003f420aa2 0x2 + .rodata.__FUNCTION__$7492 + 0x000000003f420aa4 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .rodata.__FUNCTION__$7486 + 0x000000003f420ab4 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + *fill* 0x000000003f420abf 0x1 + .rodata.str1.4 + 0x000000003f420ac0 0x24e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x26e (size before relaxing) + *fill* 0x000000003f420d0e 0x2 + .rodata.__FUNCTION__$8795 + 0x000000003f420d10 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata.__FUNCTION__$8658 + 0x000000003f420d24 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata.__FUNCTION__$8290 + 0x000000003f420d38 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + *fill* 0x000000003f420d4e 0x2 + .rodata.__FUNCTION__$8301 + 0x000000003f420d50 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .rodata.lib_printf.str1.4 + 0x000000003f420d68 0x1a esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .rodata.phy_printf.str1.4 + 0x000000003f420d82 0x4 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .rodata.net80211_printf.str1.4 + 0x000000003f420d82 0x1a esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + 0x9 (size before relaxing) + *fill* 0x000000003f420d82 0x2 + .rodata.prvReturnItemByteBuf.str1.4 + 0x000000003f420d84 0x3b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x58 (size before relaxing) + .rodata.prvInitializeNewRingbuffer.str1.4 + 0x000000003f420dbf 0x48 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f420dbf 0x1 + .rodata.__FUNCTION__$5461 + 0x000000003f420dc0 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f420dda 0x2 + .rodata.__FUNCTION__$5456 + 0x000000003f420ddc 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f420dee 0x2 + .rodata.__FUNCTION__$5451 + 0x000000003f420df0 0x1d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f420e0d 0x3 + .rodata.__FUNCTION__$5444 + 0x000000003f420e10 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f420e26 0x2 + .rodata.__FUNCTION__$5317 + 0x000000003f420e28 0x19 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f420e41 0x3 + .rodata.__FUNCTION__$5390 + 0x000000003f420e44 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f420e5e 0x2 + .rodata.__FUNCTION__$5303 + 0x000000003f420e60 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f420e72 0x2 + .rodata.__FUNCTION__$5382 + 0x000000003f420e74 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f420e87 0x1 + .rodata.__FUNCTION__$5373 + 0x000000003f420e88 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f420e9f 0x1 + .rodata.__FUNCTION__$5358 + 0x000000003f420ea0 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5184 + 0x000000003f420eb0 0xf esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f420ebf 0x1 + .rodata.__func__$4229 + 0x000000003f420ec0 0x14 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5189 + 0x000000003f420ed4 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5210 + 0x000000003f420eec 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f420f03 0x1 + .rodata.__FUNCTION__$5202 + 0x000000003f420f04 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f420f1a 0x2 + .rodata.__FUNCTION__$5249 + 0x000000003f420f1c 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f420f2e 0x2 + .rodata.__FUNCTION__$5263 + 0x000000003f420f30 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f420f45 0x3 + .rodata.__FUNCTION__$5229 + 0x000000003f420f48 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f420f5e 0x2 + .rodata.__FUNCTION__$5195 + 0x000000003f420f60 0x1b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f420f7b 0x1 + .rodata.__FUNCTION__$5237 + 0x000000003f420f7c 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f420f8f 0x1 + .rodata.__FUNCTION__$5257 + 0x000000003f420f90 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f420fa2 0x2 + .rodata.__FUNCTION__$5273 + 0x000000003f420fa4 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f420fb9 0x3 + .rodata.__FUNCTION__$5322 + 0x000000003f420fbc 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f420fce 0x2 + .rodata.parse_url_char + 0x000000003f420fd0 0x30 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .rodata.http_parse_host_char + 0x000000003f421000 0x34 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .rodata.http_parse_host.str1.4 + 0x000000003f421034 0x5f esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + *fill* 0x000000003f421093 0x1 + .rodata.http_parse_host + 0x000000003f421094 0x58 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .rodata.http_parser_execute.str1.4 + 0x000000003f4210ec 0x1ee esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + *fill* 0x000000003f4212da 0x2 + .rodata.http_parser_execute + 0x000000003f4212dc 0x204 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .rodata.http_parser_parse_url.str1.4 + 0x000000003f4214e0 0x14 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .rodata.http_parser_parse_url + 0x000000003f4214f4 0x8c esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .rodata.http_parser_pause.str1.4 + 0x000000003f421580 0x31 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + *fill* 0x000000003f4215b1 0x3 + .rodata.__func__$3257 + 0x000000003f4215b4 0x12 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + *fill* 0x000000003f4215c6 0x2 + .rodata.__func__$3196 + 0x000000003f4215c8 0x10 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .rodata.__func__$3248 + 0x000000003f4215d8 0x16 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + *fill* 0x000000003f4215ee 0x2 + .rodata.__func__$2911 + 0x000000003f4215f0 0x14 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .rodata.str1.4 + 0x000000003f421604 0x793 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x7a3 (size before relaxing) + *fill* 0x000000003f421d97 0x1 + .rodata.normal_url_char + 0x000000003f421d98 0x20 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .rodata.unhex 0x000000003f421db8 0x100 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .rodata.tokens + 0x000000003f421eb8 0x100 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .rodata.method_strings + 0x000000003f421fb8 0x84 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .rodata.esp_mbedtls_read.str1.4 + 0x000000003f42203c 0x37 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + *fill* 0x000000003f422073 0x1 + .rodata.esp_mbedtls_write.str1.4 + 0x000000003f422074 0x28 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .rodata.set_ca_cert.str1.4 + 0x000000003f42209c 0x7d esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x81 (size before relaxing) + *fill* 0x000000003f422119 0x3 + .rodata.set_global_ca_store.str1.4 + 0x000000003f42211c 0x2d esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + *fill* 0x000000003f422149 0x3 + .rodata.set_pki_context.str1.4 + 0x000000003f42214c 0x84 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .rodata.esp_mbedtls_get_bytes_avail.str1.4 + 0x000000003f4221d0 0x45 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + *fill* 0x000000003f422215 0x3 + .rodata.set_server_config.str1.4 + 0x000000003f422218 0xc1 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0xcd (size before relaxing) + *fill* 0x000000003f4222d9 0x3 + .rodata.set_client_config.str1.4 + 0x000000003f4222dc 0x1eb esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + *fill* 0x000000003f4224c7 0x1 + .rodata.esp_create_mbedtls_handle.str1.4 + 0x000000003f4224c8 0xec esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .rodata.esp_mbedtls_server_session_create.str1.4 + 0x000000003f4225b4 0x69 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + *fill* 0x000000003f42261d 0x3 + .rodata.__func__$10580 + 0x000000003f422620 0x14 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .rodata.__func__$10595 + 0x000000003f422634 0x12 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + *fill* 0x000000003f422646 0x2 + .rodata.__func__$10575 + 0x000000003f422648 0x10 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .rodata.__func__$10569 + 0x000000003f422658 0xc esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .rodata.__func__$10585 + 0x000000003f422664 0x12 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + *fill* 0x000000003f422676 0x2 + .rodata.__func__$10524 + 0x000000003f422678 0x1a esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + *fill* 0x000000003f422692 0x2 + .rodata.wlanif_init.str1.4 + 0x000000003f422694 0x4e esp-idf/lwip/liblwip.a(wlanif.c.obj) + 0x5e (size before relaxing) + *fill* 0x000000003f4226e2 0x2 + .rodata.__func__$9617 + 0x000000003f4226e4 0xc esp-idf/lwip/liblwip.a(wlanif.c.obj) + .rodata.ssl_calc_finished_tls_sha256.str1.4 + 0x000000003f4226f0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata 0x000000003f422710 0x104 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.mbedtls_ssl_derive_keys.str1.4 + 0x000000003f422814 0x36 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x000000003f42284a 0x2 + .rodata.mbedtls_ssl_md_alg_from_hash + 0x000000003f42284c 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.mbedtls_ssl_hash_from_md_alg + 0x000000003f422868 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.mbedtls_ssl_check_cert_usage.str1.4 + 0x000000003f422880 0x15 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.mbedtls_ssl_check_cert_usage + 0x000000003f422880 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .rodata.mbedtls_ssl_get_ciphersuite_sig_pk_alg + 0x000000003f4228ac 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .rodata.str1.4 + 0x000000003f4228d8 0xab5 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0xab9 (size before relaxing) + *fill* 0x000000003f42338d 0x3 + .rodata.ciphersuite_definitions + 0x000000003f423390 0xc58 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .rodata.ciphersuite_preference + 0x000000003f423fe8 0x340 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .rodata.mbedtls_ssl_handshake_client_step + 0x000000003f424328 0x48 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + .rodata.ssl_write_server_key_exchange + 0x000000003f424370 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + .rodata.mbedtls_ssl_handshake_server_step + 0x000000003f42439c 0x4c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + .rodata.str1.4 + 0x000000003f4243e8 0x120 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + 0x178 (size before relaxing) + .rodata.__FUNCTION__$5393 + 0x000000003f424508 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .rodata._ZSt7nothrow + 0x000000003f424516 0x1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + 0x000000003f424516 _ZSt7nothrow + .rodata._ZTSSt9exception + 0x000000003f424517 0xd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + 0x000000003f424517 _ZTSSt9exception + .rodata._ZTISt9exception + 0x000000003f424524 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + 0x000000003f424524 _ZTISt9exception + .rodata._ZTSSt9bad_alloc + 0x000000003f42452c 0xd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + 0x000000003f42452c _ZTSSt9bad_alloc + *fill* 0x000000003f424539 0x3 + .rodata._ZTISt9bad_alloc + 0x000000003f42453c 0xc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + 0x000000003f42453c _ZTISt9bad_alloc + .rodata._ZTVN10__cxxabiv120__si_class_type_infoE + 0x000000003f424548 0x2c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x000000003f424548 _ZTVN10__cxxabiv120__si_class_type_infoE + .rodata._ZL28read_encoded_value_with_basehjPKhPj + 0x000000003f424574 0x34 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + .rodata._ZTVN10__cxxabiv117__class_type_infoE + 0x000000003f4245a8 0x2c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x000000003f4245a8 _ZTVN10__cxxabiv117__class_type_infoE + .rodata 0x000000003f4245d4 0x34 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + .rodata 0x000000003f424608 0x3c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + .rodata 0x000000003f424644 0x20 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) + 0x000000003f424644 Xthal_intlevel + .rodata.str1.1 + 0x000000003f424664 0x3c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + 0x3d (size before relaxing) + .rodata.str1.1 + 0x000000003f4246a0 0x81 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + 0x84 (size before relaxing) + .rodata.str1.1 + 0x000000003f424721 0xa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + 0xb (size before relaxing) + .rodata.str1.1 + 0x000000003f42472b 0xa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + 0x2 (size before relaxing) + .rodata.str1.1 + 0x000000003f42472b 0xa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + 0xc (size before relaxing) + *fill* 0x000000003f42472b 0x5 + .rodata 0x000000003f424730 0x68 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .rodata 0x000000003f424798 0x2bc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .rodata.str1.1 + 0x000000003f424a54 0x34 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .rodata.str1.1 + 0x000000003f424a88 0x5 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + *fill* 0x000000003f424a8d 0x3 + .rodata 0x000000003f424a90 0x17e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + *fill* 0x000000003f424c0e 0x2 + .rodata 0x000000003f424c10 0x2bc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .rodata.str1.1 + 0x000000003f424ecc 0x22 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .rodata 0x000000003f424ecc 0x2bc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .rodata.str1.1 + 0x000000003f425188 0x34 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .rodata.str1.1 + 0x000000003f425188 0xd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + 0xf (size before relaxing) + .rodata.str1.1 + 0x000000003f425195 0x1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + *fill* 0x000000003f425195 0x3 + .rodata 0x000000003f425198 0x128 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + 0x000000003f4251a8 __mprec_tinytens + 0x000000003f4251d0 __mprec_bigtens + 0x000000003f4251f8 __mprec_tens + .rodata 0x000000003f4252c0 0x494 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + 0x000000003f42557c __action_table + 0x000000003f4255e8 __state_table + 0x000000003f425654 __chclass + .rodata.str1.1 + 0x000000003f425754 0x22 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .rodata 0x000000003f425754 0x22 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + *liblog.a:log.*(.rodata.esp_log_level_set.str1.4 .rodata.__func__$3523 .rodata.__func__$3500) + *fill* 0x000000003f425776 0x2 + .rodata.esp_log_level_set.str1.4 + 0x000000003f425778 0x7f esp-idf/log/liblog.a(log.c.obj) + *fill* 0x000000003f4257f7 0x1 + .rodata.__func__$3523 + 0x000000003f4257f8 0x15 esp-idf/log/liblog.a(log.c.obj) + *fill* 0x000000003f42580d 0x3 + .rodata.__func__$3500 + 0x000000003f425810 0x12 esp-idf/log/liblog.a(log.c.obj) + *liblog.a:log_freertos.*(.rodata.esp_log_system_timestamp.str1.4) + *libesp_event.a:default_event_loop.*(.rodata.esp_event_loop_create_default.str1.4 .rodata.esp_event_send_to_default_loop) + *fill* 0x000000003f425822 0x2 + .rodata.esp_event_loop_create_default.str1.4 + 0x000000003f425824 0x8 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + *libesp_event.a:esp_event.*(.rodata.handler_instances_add.str1.4 .rodata.base_node_add_handler.str1.4 .rodata.loop_node_add_handler.str1.4 .rodata.esp_event_loop_create.str1.4 .rodata.esp_event_loop_run.str1.4 .rodata.esp_event_loop_run_task.str1.4 .rodata.esp_event_handler_register_with_internal.str1.4 .rodata.esp_event_handler_unregister_with_internal.str1.4 .rodata.__func__$8791 .rodata.__func__$8778 .rodata.__func__$8745 .rodata.__func__$8713 .rodata.__func__$8688 .rodata.__func__$8647 .rodata.__func__$8638) + .rodata.handler_instances_add.str1.4 + 0x000000003f42582c 0x3f esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x47 (size before relaxing) + *fill* 0x000000003f42586b 0x1 + .rodata.base_node_add_handler.str1.4 + 0x000000003f42586c 0x34 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.loop_node_add_handler.str1.4 + 0x000000003f4258a0 0x3a esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x3e (size before relaxing) + *fill* 0x000000003f4258da 0x2 + .rodata.esp_event_loop_create.str1.4 + 0x000000003f4258dc 0x123 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x125 (size before relaxing) + *fill* 0x000000003f4259ff 0x1 + .rodata.esp_event_loop_run.str1.4 + 0x000000003f425a00 0xb esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000003f425a0b 0x1 + .rodata.esp_event_loop_run_task.str1.4 + 0x000000003f425a0c 0x32 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000003f425a3e 0x2 + .rodata.esp_event_handler_register_with_internal.str1.4 + 0x000000003f425a40 0x9a esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000003f425ada 0x2 + .rodata.esp_event_handler_unregister_with_internal.str1.4 + 0x000000003f425adc 0x60 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .rodata.__func__$8778 + 0x000000003f425b3c 0x12 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000003f425b4e 0x2 + .rodata.__func__$8745 + 0x000000003f425b50 0x2b esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000003f425b7b 0x1 + .rodata.__func__$8713 + 0x000000003f425b7c 0x29 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000003f425ba5 0x3 + .rodata.__func__$8647 + 0x000000003f425ba8 0x13 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000003f425bbb 0x1 + .rodata.__func__$8638 + 0x000000003f425bbc 0x16 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *libsoc.a:uart_hal_iram.*(.rodata .rodata.*) + *fill* 0x000000003f425bd2 0x2 + .rodata.uart_hal_rxfifo_rst.str1.4 + 0x000000003f425bd4 0xd9 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + *fill* 0x000000003f425cad 0x3 + .rodata.uart_hal_write_txfifo.str1.4 + 0x000000003f425cb0 0x90 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .rodata.__func__$2736 + 0x000000003f425d40 0x14 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .rodata.__func__$2748 + 0x000000003f425d54 0x15 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + *fill* 0x000000003f425d69 0x3 + .rodata.__func__$2759 + 0x000000003f425d6c 0x13 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + *(.irom1.text) + *(.gnu.linkonce.r.*) + *(.rodata1) + 0x000000003f425d7f __XT_EXCEPTION_TABLE_ = ABSOLUTE (.) + *(.xt_except_table) + *(.gcc_except_table .gcc_except_table.*) + *fill* 0x000000003f425d7f 0x1 + .gcc_except_table._ZnwjRKSt9nothrow_t + 0x000000003f425d80 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + .gcc_except_table._ZN10__cxxabiv111__terminateEPFvvE + 0x000000003f425d94 0x1d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + *fill* 0x000000003f425db1 0x3 + .gcc_except_table.__gxx_personality_v0 + 0x000000003f425db4 0x1c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + .gcc_except_table.__cxa_call_unexpected + 0x000000003f425dd0 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + .gcc_except_table.__cxa_get_globals_fast + 0x000000003f425de8 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .gcc_except_table._GLOBAL__sub_D___cxa_get_globals_fast + 0x000000003f425dec 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + *(.gnu.linkonce.e.*) + *(.gnu.version_r) + 0x000000003f425df0 . = ((. + 0x3) & 0xfffffffffffffffc) + 0x000000003f425df0 __eh_frame = ABSOLUTE (.) + *(.eh_frame) + .eh_frame 0x000000003f425df0 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .eh_frame 0x000000003f425df0 0x38 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + .eh_frame 0x000000003f425e28 0x58 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .eh_frame 0x000000003f425e80 0x70 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .eh_frame 0x000000003f425ef0 0x118 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + .eh_frame 0x000000003f426008 0x8c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .eh_frame 0x000000003f426094 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .eh_frame 0x000000003f4260d4 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .eh_frame 0x000000003f4260fc 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + .eh_frame 0x000000003f426124 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .eh_frame 0x000000003f42614c 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + .eh_frame 0x000000003f426174 0x110 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + .eh_frame 0x000000003f426284 0x148 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + .eh_frame 0x000000003f4263cc 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + 0x000000003f4263d4 . = ((. + 0x7) & 0xfffffffffffffffc) + *fill* 0x000000003f4263d0 0x4 + 0x000000003f4263d4 __init_array_start = ABSOLUTE (.) + *(EXCLUDE_FILE(*crtbegin.* *crtend.*) .ctors .ctors.*) + .ctors 0x000000003f4263d4 0x4 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .ctors 0x000000003f4263d8 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .ctors 0x000000003f4263dc 0x4 esp-idf/esp32/libesp32.a(reset_reason.c.obj) + .ctors 0x000000003f4263e0 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + 0x000000003f4263e4 __init_array_end = ABSOLUTE (.) + *crtbegin.*(.dtors) + .dtors 0x000000003f4263e4 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + *(EXCLUDE_FILE(*crtend.*) .dtors) + .dtors 0x000000003f4263e8 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + *(SORT_BY_NAME(.dtors.*)) + *(.dtors) + .dtors 0x000000003f4263ec 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + 0x000000003f4263ec __DTOR_END__ + 0x000000003f4263f0 __XT_EXCEPTION_DESCS_ = ABSOLUTE (.) + *(.xt_except_desc) + *(.gnu.linkonce.h.*) + 0x000000003f4263f0 __XT_EXCEPTION_DESCS_END__ = ABSOLUTE (.) + *(.xt_except_desc_end) + *(.dynamic) + *(.gnu.version_d) + 0x000000003f4263f0 soc_reserved_memory_region_start = ABSOLUTE (.) + *(.reserved_memory_address) + .reserved_memory_address + 0x000000003f4263f0 0x38 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + 0x000000003f426428 soc_reserved_memory_region_end = ABSOLUTE (.) + 0x000000003f426428 _rodata_end = ABSOLUTE (.) + 0x000000003f426428 _lit4_start = ABSOLUTE (.) + *(*.lit4) + *(.lit4.*) + *(.gnu.linkonce.lit4.*) + 0x000000003f426428 _lit4_end = ABSOLUTE (.) + 0x000000003f426428 . = ALIGN (0x4) + 0x000000003f426428 _thread_local_start = ABSOLUTE (.) + *(.tdata) + *(.tdata.*) + *(.tbss) + *(.tbss.*) + 0x000000003f426428 _thread_local_end = ABSOLUTE (.) + 0x000000003f426428 . = ALIGN (0x4) + +.flash.text 0x00000000400d0020 0xaa237 + 0x00000000400d0020 _stext = . + 0x00000000400d0020 _text_start = ABSOLUTE (.) + *(EXCLUDE_FILE(*libfreertos.a *libhal.a *libnewlib.a:heap.* *libxtensa.a:eri.* *libsoc.a:rtc_init.* *libsoc.a:spi_flash_hal_iram.* *libsoc.a:rtc_time.* *libsoc.a:ledc_hal_iram.* *libsoc.a:rtc_wdt.* *libsoc.a:spi_flash_hal_gpspi.* *libsoc.a:spi_slave_hal_iram.* *libsoc.a:lldesc.* *libsoc.a:rtc_periph.* *libsoc.a:rtc_pm.* *libsoc.a:rtc_clk_init.* *libsoc.a:uart_hal_iram.* *libsoc.a:spi_hal_iram.* *libsoc.a:rtc_sleep.* *libsoc.a:cpu_util.* *libsoc.a:rtc_clk.* *libsoc.a:i2c_hal_iram.* *libspi_flash.a:spi_flash_rom_patch.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:memspi_host_driver.* *libesp32.a:panic.* *libheap.a:multi_heap_poisoning.* *libheap.a:multi_heap.* *librtc.a *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.* *libapp_trace.a:SEGGER_SYSVIEW.* *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:SEGGER_RTT_esp32.* *libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.* *libgcov.a *libesp_ringbuf.a) .literal EXCLUDE_FILE(*libfreertos.a *libhal.a *libnewlib.a:heap.* *libxtensa.a:eri.* *libsoc.a:rtc_init.* *libsoc.a:spi_flash_hal_iram.* *libsoc.a:rtc_time.* *libsoc.a:ledc_hal_iram.* *libsoc.a:rtc_wdt.* *libsoc.a:spi_flash_hal_gpspi.* *libsoc.a:spi_slave_hal_iram.* *libsoc.a:lldesc.* *libsoc.a:rtc_periph.* *libsoc.a:rtc_pm.* *libsoc.a:rtc_clk_init.* *libsoc.a:uart_hal_iram.* *libsoc.a:spi_hal_iram.* *libsoc.a:rtc_sleep.* *libsoc.a:cpu_util.* *libsoc.a:rtc_clk.* *libsoc.a:i2c_hal_iram.* *libspi_flash.a:spi_flash_rom_patch.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:memspi_host_driver.* *libesp32.a:panic.* *libheap.a:multi_heap_poisoning.* *libheap.a:multi_heap.* *librtc.a *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *liblog.a:log_freertos.* *liblog.a:log.* *libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.* *libapp_trace.a:SEGGER_SYSVIEW.* *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:SEGGER_RTT_esp32.* *libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.* *libgcov.a *libesp_ringbuf.a) .literal.* EXCLUDE_FILE(*libfreertos.a *libhal.a *libnewlib.a:heap.* *libxtensa.a:eri.* *libsoc.a:rtc_init.* *libsoc.a:spi_flash_hal_iram.* *libsoc.a:rtc_time.* *libsoc.a:ledc_hal_iram.* *libsoc.a:rtc_wdt.* *libsoc.a:spi_flash_hal_gpspi.* *libsoc.a:spi_slave_hal_iram.* *libsoc.a:lldesc.* *libsoc.a:rtc_periph.* *libsoc.a:rtc_pm.* *libsoc.a:rtc_clk_init.* *libsoc.a:uart_hal_iram.* *libsoc.a:spi_hal_iram.* *libsoc.a:rtc_sleep.* *libsoc.a:cpu_util.* *libsoc.a:rtc_clk.* *libsoc.a:i2c_hal_iram.* *libspi_flash.a:spi_flash_rom_patch.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:memspi_host_driver.* *libesp32.a:panic.* *libheap.a:multi_heap_poisoning.* *libheap.a:multi_heap.* *librtc.a *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.* *libapp_trace.a:SEGGER_SYSVIEW.* *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:SEGGER_RTT_esp32.* *libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.* *libgcov.a *libesp_ringbuf.a) .text EXCLUDE_FILE(*libfreertos.a *libhal.a *libnewlib.a:heap.* *libxtensa.a:eri.* *libsoc.a:rtc_init.* *libsoc.a:spi_flash_hal_iram.* *libsoc.a:rtc_time.* *libsoc.a:ledc_hal_iram.* *libsoc.a:rtc_wdt.* *libsoc.a:spi_flash_hal_gpspi.* *libsoc.a:spi_slave_hal_iram.* *libsoc.a:lldesc.* *libsoc.a:rtc_periph.* *libsoc.a:rtc_pm.* *libsoc.a:rtc_clk_init.* *libsoc.a:uart_hal_iram.* *libsoc.a:spi_hal_iram.* *libsoc.a:rtc_sleep.* *libsoc.a:cpu_util.* *libsoc.a:rtc_clk.* *libsoc.a:i2c_hal_iram.* *libspi_flash.a:spi_flash_rom_patch.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:memspi_host_driver.* *libesp32.a:panic.* *libheap.a:multi_heap_poisoning.* *libheap.a:multi_heap.* *librtc.a *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *liblog.a:log_freertos.* *liblog.a:log.* *libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.* *libapp_trace.a:SEGGER_SYSVIEW.* *libapp_trace.a:app_trace.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:SEGGER_RTT_esp32.* *libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.* *libgcov.a *libesp_ringbuf.a) .text.* EXCLUDE_FILE(*libsoc.a:uart_hal_iram.* *libnet80211.a *libpp.a) .wifi0iram EXCLUDE_FILE(*libsoc.a:uart_hal_iram.* *libnet80211.a *libpp.a) .wifi0iram.* EXCLUDE_FILE(*libsoc.a:uart_hal_iram.* *libnet80211.a *libpp.a) .wifirxiram EXCLUDE_FILE(*libsoc.a:uart_hal_iram.* *libnet80211.a *libpp.a) .wifirxiram.*) + .literal.esp_ota_get_app_description + 0x00000000400d0020 0x4 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .literal.esp_pthread_cfg_key_destructor + 0x00000000400d0024 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x4 (size before relaxing) + .literal.esp_pthread_init + 0x00000000400d0024 0xc esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x18 (size before relaxing) + .literal.pthread_cancel + 0x00000000400d0030 0xc esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x14 (size before relaxing) + .literal.pthread_mutex_init + 0x00000000400d003c 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x14 (size before relaxing) + .literal.pthread_mutex_init_if_static + 0x00000000400d0040 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x10 (size before relaxing) + .literal.find_key + 0x00000000400d0044 0x8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x10 (size before relaxing) + .literal.pthread_local_storage_thread_deleted_callback + 0x00000000400d004c 0x10 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x1c (size before relaxing) + .literal.pthread_key_create + 0x00000000400d005c 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x14 (size before relaxing) + .literal.pthread_key_delete + 0x00000000400d005c 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x18 (size before relaxing) + .literal.pthread_getspecific + 0x00000000400d005c 0x4 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x8 (size before relaxing) + .literal.pthread_setspecific + 0x00000000400d0060 0x4 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x20 (size before relaxing) + .literal.cpu_configure_region_protection + 0x00000000400d0064 0xc esp-idf/esp32/libesp32.a(cpu_start.c.obj) + .literal.do_global_ctors + 0x00000000400d0070 0x8 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + .literal.main_task + 0x00000000400d0078 0x18 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0x48 (size before relaxing) + .literal.intr_matrix_clear + 0x00000000400d0090 0x4 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0x8 (size before relaxing) + .literal.wdt_reset_cpu1_info_enable + 0x00000000400d0094 0x4 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0xc (size before relaxing) + .literal.esp_crosscore_int_init + 0x00000000400d0098 0x1c esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + 0x30 (size before relaxing) + .literal.dport_access_init_core + 0x00000000400d00b4 0x14 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x24 (size before relaxing) + .literal.esp_dport_access_int_init + 0x00000000400d00c8 0x14 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x1c (size before relaxing) + .literal.esp_int_wdt_init + 0x00000000400d00dc 0x2c esp-idf/esp32/libesp32.a(int_wdt.c.obj) + 0x34 (size before relaxing) + .literal.esp_int_wdt_cpu_init + 0x00000000400d0108 0x8 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + 0x18 (size before relaxing) + .literal.insert_vector_desc + 0x00000000400d0110 0x4 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .literal.find_desc_for_int + 0x00000000400d0114 0x0 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .literal.int_has_handler + 0x00000000400d0114 0x8 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .literal.get_desc_for_int + 0x00000000400d011c 0xc esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x18 (size before relaxing) + .literal.find_desc_for_source + 0x00000000400d0128 0xc esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x14 (size before relaxing) + .literal.is_vect_desc_usable + 0x00000000400d0134 0xc esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x18 (size before relaxing) + .literal.get_available_int + 0x00000000400d0140 0x4 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x24 (size before relaxing) + .literal.esp_intr_alloc_intrstatus + 0x00000000400d0144 0x1c esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x6c (size before relaxing) + .literal.esp_intr_alloc + 0x00000000400d0160 0x0 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .literal.esp_intr_free + 0x00000000400d0160 0xc esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x3c (size before relaxing) + .literal.esp_intr_free_cb + 0x00000000400d016c 0x0 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .literal.esp_chip_info + 0x00000000400d016c 0x4 esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + 0x8 (size before relaxing) + .literal.find_task_in_twdt_list + 0x00000000400d0170 0x4 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .literal.reset_hw_timer + 0x00000000400d0174 0x4 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + 0xc (size before relaxing) + .literal.task_wdt_isr + 0x00000000400d0178 0x34 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + 0x94 (size before relaxing) + .literal.esp_task_wdt_init + 0x00000000400d01ac 0x1c esp-idf/esp32/libesp32.a(task_wdt.c.obj) + 0x70 (size before relaxing) + .literal.esp_task_wdt_add + 0x00000000400d01c8 0xc esp-idf/esp32/libesp32.a(task_wdt.c.obj) + 0x48 (size before relaxing) + .literal.esp_task_wdt_reset + 0x00000000400d01d4 0x0 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + 0x24 (size before relaxing) + .literal.idle_hook_cb + 0x00000000400d01d4 0x0 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + 0x4 (size before relaxing) + .literal.esp_cache_err_int_init + 0x00000000400d01d4 0xc esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + 0x20 (size before relaxing) + .literal.select_rtc_slow_clk + 0x00000000400d01e0 0xc esp-idf/esp32/libesp32.a(clk.c.obj) + 0x30 (size before relaxing) + .literal.esp_clk_init + 0x00000000400d01ec 0x24 esp-idf/esp32/libesp32.a(clk.c.obj) + 0x68 (size before relaxing) + .literal.esp_perip_clk_init + 0x00000000400d0210 0x2c esp-idf/esp32/libesp32.a(clk.c.obj) + 0x60 (size before relaxing) + .literal.rtc_brownout_isr_handler + 0x00000000400d023c 0x4 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + 0x18 (size before relaxing) + .literal.esp_brownout_init + 0x00000000400d0240 0x14 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + 0x24 (size before relaxing) + .literal.esp_err_to_name + 0x00000000400d0254 0x8 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .literal.esp_vApplicationIdleHook + 0x00000000400d025c 0x8 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .literal.esp_register_freertos_idle_hook_for_cpu + 0x00000000400d0264 0x4 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + 0x14 (size before relaxing) + .literal.esp_register_freertos_tick_hook_for_cpu + 0x00000000400d0268 0x4 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + 0x14 (size before relaxing) + .literal.esp_ipc_call_and_wait + 0x00000000400d026c 0x1c esp-idf/esp_common/libesp_common.a(ipc.c.obj) + 0x44 (size before relaxing) + .literal.esp_ipc_init + 0x00000000400d0288 0x18 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + 0x3c (size before relaxing) + .literal.esp_ipc_call + 0x00000000400d02a0 0x0 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + 0x4 (size before relaxing) + .literal.esp_ipc_call_blocking + 0x00000000400d02a0 0x0 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + 0x4 (size before relaxing) + .literal.timer_process_alarm + 0x00000000400d02a0 0xc esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x34 (size before relaxing) + .literal.timer_task + 0x00000000400d02ac 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x1c (size before relaxing) + .literal.esp_timer_create + 0x00000000400d02bc 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x8 (size before relaxing) + .literal.esp_timer_init + 0x00000000400d02bc 0x14 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x30 (size before relaxing) + .literal.esp_timer_delete + 0x00000000400d02d0 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x20 (size before relaxing) + .literal.esp_timer_impl_lock + 0x00000000400d02d0 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x8 (size before relaxing) + .literal.esp_timer_impl_unlock + 0x00000000400d02d4 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x8 (size before relaxing) + .literal.esp_timer_impl_advance + 0x00000000400d02d4 0xc esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x1c (size before relaxing) + .literal.esp_timer_impl_init + 0x00000000400d02e0 0x44 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x74 (size before relaxing) + .literal.get_vfs_for_fd + 0x00000000400d0324 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.call_end_selects + 0x00000000400d0330 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.set_global_fd_sets + 0x00000000400d0330 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4 (size before relaxing) + .literal.esp_vfs_register_common + 0x00000000400d0330 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x1c (size before relaxing) + .literal.get_vfs_for_path + 0x00000000400d0334 0x8 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x10 (size before relaxing) + .literal.translate_path + 0x00000000400d033c 0x14 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x1c (size before relaxing) + .literal.esp_vfs_register + 0x00000000400d0350 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_register_fd_range + 0x00000000400d0350 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x28 (size before relaxing) + .literal.esp_vfs_unregister + 0x00000000400d035c 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x28 (size before relaxing) + .literal.esp_vfs_open + 0x00000000400d035c 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x1c (size before relaxing) + .literal.esp_vfs_write + 0x00000000400d035c 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_lseek + 0x00000000400d035c 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_read + 0x00000000400d035c 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_close + 0x00000000400d035c 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x18 (size before relaxing) + .literal.esp_vfs_fstat + 0x00000000400d035c 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_stat + 0x00000000400d035c 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_link + 0x00000000400d035c 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x10 (size before relaxing) + .literal.esp_vfs_unlink + 0x00000000400d035c 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_rename + 0x00000000400d035c 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x10 (size before relaxing) + .literal._fcntl_r + 0x00000000400d035c 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.fsync + 0x00000000400d035c 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xc (size before relaxing) + .literal.esp_vfs_select + 0x00000000400d035c 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x64 (size before relaxing) + .literal.esp_vfs_select_triggered + 0x00000000400d0360 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xc (size before relaxing) + .literal.esp_vfs_select_triggered_isr + 0x00000000400d0360 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xc (size before relaxing) + .literal.uart_tx_char + 0x00000000400d0360 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.uart_rx_char + 0x00000000400d0364 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x4 (size before relaxing) + .literal.uart_read_char + 0x00000000400d0364 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x4 (size before relaxing) + .literal.unregister_select + 0x00000000400d0364 0xc esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x18 (size before relaxing) + .literal.uart_end_select + 0x00000000400d0370 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x1c (size before relaxing) + .literal.register_select + 0x00000000400d0370 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x18 (size before relaxing) + .literal.uart_start_select + 0x00000000400d0370 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x38 (size before relaxing) + .literal.select_notif_callback_isr + 0x00000000400d0374 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x20 (size before relaxing) + .literal.uart_tcflush + 0x00000000400d0374 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x10 (size before relaxing) + .literal.uart_tcdrain + 0x00000000400d0378 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0xc (size before relaxing) + .literal.uart_tcgetattr + 0x00000000400d0378 0x48 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x8c (size before relaxing) + .literal.uart_tcsetattr + 0x00000000400d03c0 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0xa0 (size before relaxing) + .literal.uart_access + 0x00000000400d03c4 0x10 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x20 (size before relaxing) + .literal.uart_open + 0x00000000400d03d4 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x24 (size before relaxing) + .literal.uart_fcntl + 0x00000000400d03d8 0xc esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x1c (size before relaxing) + .literal.uart_fstat + 0x00000000400d03e4 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x14 (size before relaxing) + .literal.uart_close + 0x00000000400d03ec 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x10 (size before relaxing) + .literal.uart_return_char + 0x00000000400d03f0 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x14 (size before relaxing) + .literal.uart_fsync + 0x00000000400d03f8 0x24 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x40 (size before relaxing) + .literal.uart_read + 0x00000000400d041c 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x30 (size before relaxing) + .literal.uart_write + 0x00000000400d0420 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x1c (size before relaxing) + .literal.uart_rx_char_via_driver + 0x00000000400d0424 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x8 (size before relaxing) + .literal.uart_tx_char_via_driver + 0x00000000400d0424 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x4 (size before relaxing) + .literal.esp_vfs_dev_uart_register + 0x00000000400d0424 0x44 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x54 (size before relaxing) + .literal.esp_vfs_dev_uart_set_rx_line_endings + 0x00000000400d0468 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x4 (size before relaxing) + .literal.esp_vfs_dev_uart_set_tx_line_endings + 0x00000000400d0468 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x4 (size before relaxing) + .literal.esp_vfs_dev_uart_use_driver + 0x00000000400d0468 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x1c (size before relaxing) + .literal.raise_r_stub + 0x00000000400d0470 0x0 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + 0x4 (size before relaxing) + .literal.esp_setup_syscall_table + 0x00000000400d0470 0x18 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + 0x1c (size before relaxing) + .literal._raise_r + 0x00000000400d0488 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x4 (size before relaxing) + .literal._sbrk_r + 0x00000000400d0488 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x4 (size before relaxing) + .literal.fcntl + 0x00000000400d0488 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x8 (size before relaxing) + .literal.get_boot_time + 0x00000000400d0488 0xc esp-idf/newlib/libnewlib.a(time.c.obj) + 0x14 (size before relaxing) + .literal.set_boot_time + 0x00000000400d0494 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x14 (size before relaxing) + .literal.get_time_since_boot + 0x00000000400d0494 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x8 (size before relaxing) + .literal.adjust_boot_time + 0x00000000400d0498 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x20 (size before relaxing) + .literal.get_adjusted_boot_time + 0x00000000400d04a0 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x10 (size before relaxing) + .literal.adjtime_corr_stop + 0x00000000400d04a4 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x1c (size before relaxing) + .literal.esp_clk_slowclk_cal_set + 0x00000000400d04a4 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x14 (size before relaxing) + .literal.esp_clk_slowclk_cal_get + 0x00000000400d04ac 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x4 (size before relaxing) + .literal.get_rtc_time_us + 0x00000000400d04ac 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x8 (size before relaxing) + .literal.esp_set_time_from_rtc + 0x00000000400d04ac 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0xc (size before relaxing) + .literal.usleep + 0x00000000400d04ac 0xc esp-idf/newlib/libnewlib.a(time.c.obj) + 0x10 (size before relaxing) + .literal.sleep + 0x00000000400d04b8 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x8 (size before relaxing) + .literal.esp_sync_counters_rtc_and_frc + 0x00000000400d04b8 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x18 (size before relaxing) + .literal.__cxx_fatal_exception + 0x00000000400d04b8 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x4 (size before relaxing) + .literal.initialize_nvs + 0x00000000400d04b8 0x18 esp-idf/main/libmain.a(main.c.obj) + 0x2c (size before relaxing) + .literal.initialize_filesystem + 0x00000000400d04d0 0x14 esp-idf/main/libmain.a(main.c.obj) + 0x24 (size before relaxing) + .literal.initialize_console + 0x00000000400d04e4 0x30 esp-idf/main/libmain.a(main.c.obj) + 0x80 (size before relaxing) + .literal.app_main + 0x00000000400d0514 0x38 esp-idf/main/libmain.a(main.c.obj) + 0xb0 (size before relaxing) + .literal.write_certificate + 0x00000000400d054c 0x10 esp-idf/ca/libca.a(ca.c.obj) + 0x24 (size before relaxing) + .literal.connect + 0x00000000400d055c 0x194 esp-idf/ca/libca.a(ca.c.obj) + 0x484 (size before relaxing) + .literal.register_ca + 0x00000000400d06f0 0x10 esp-idf/ca/libca.a(ca.c.obj) + 0x1c (size before relaxing) + .literal.dev_random_entropy_poll + 0x00000000400d0700 0x10 esp-idf/ca/libca.a(gen_key.c.obj) + 0x20 (size before relaxing) + .literal.write_private_key + 0x00000000400d0710 0x8 esp-idf/ca/libca.a(gen_key.c.obj) + 0x2c (size before relaxing) + .literal.task_create + 0x00000000400d0718 0x10 esp-idf/ca/libca.a(gen_key.c.obj) + 0x24 (size before relaxing) + .literal.connect + 0x00000000400d0728 0xc0 esp-idf/ca/libca.a(gen_key.c.obj) + 0x234 (size before relaxing) + .literal.task_run + 0x00000000400d07e8 0x0 esp-idf/ca/libca.a(gen_key.c.obj) + 0x8 (size before relaxing) + .literal.register_gen_key + 0x00000000400d07e8 0x10 esp-idf/ca/libca.a(gen_key.c.obj) + 0x1c (size before relaxing) + .literal.type_to_str + 0x00000000400d07f8 0x8 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .literal.str_to_type + 0x00000000400d0800 0x0 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x8 (size before relaxing) + .literal.list 0x00000000400d0800 0xc esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x2c (size before relaxing) + .literal.list_entries + 0x00000000400d080c 0xc esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x18 (size before relaxing) + .literal.set_namespace + 0x00000000400d0818 0x10 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x28 (size before relaxing) + .literal.erase_all + 0x00000000400d0828 0x8 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x28 (size before relaxing) + .literal.erase_namespace + 0x00000000400d0830 0x8 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x28 (size before relaxing) + .literal.erase + 0x00000000400d0838 0x4 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x24 (size before relaxing) + .literal.erase_value + 0x00000000400d083c 0x4 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x28 (size before relaxing) + .literal.print_blob + 0x00000000400d0840 0x4 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0xc (size before relaxing) + .literal.get_value_from_nvs + 0x00000000400d0844 0x18 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x9c (size before relaxing) + .literal.get_value + 0x00000000400d085c 0x4 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x28 (size before relaxing) + .literal.store_blob + 0x00000000400d0860 0x8 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x38 (size before relaxing) + .literal.set_value_in_nvs + 0x00000000400d0868 0x20 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0xb0 (size before relaxing) + .literal.set_value + 0x00000000400d0888 0x4 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x28 (size before relaxing) + .literal.register_nvs + 0x00000000400d088c 0x88 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x12c (size before relaxing) + .literal.register_free + 0x00000000400d0914 0x18 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x20 (size before relaxing) + .literal.register_heap + 0x00000000400d092c 0x14 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x20 (size before relaxing) + .literal.register_version + 0x00000000400d0940 0x10 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x20 (size before relaxing) + .literal.register_restart + 0x00000000400d0950 0x10 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x20 (size before relaxing) + .literal.register_tasks + 0x00000000400d0960 0x10 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x20 (size before relaxing) + .literal.free_mem + 0x00000000400d0970 0x4 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0xc (size before relaxing) + .literal.heap_size + 0x00000000400d0974 0x8 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x18 (size before relaxing) + .literal.get_version + 0x00000000400d097c 0x3c esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x60 (size before relaxing) + .literal.restart + 0x00000000400d09b8 0x4 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x14 (size before relaxing) + .literal.register_deep_sleep + 0x00000000400d09bc 0x34 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x58 (size before relaxing) + .literal.deep_sleep + 0x00000000400d09f0 0x28 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x78 (size before relaxing) + .literal.register_light_sleep + 0x00000000400d0a18 0xc esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x58 (size before relaxing) + .literal.light_sleep + 0x00000000400d0a24 0x30 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0xd8 (size before relaxing) + .literal.tasks_info + 0x00000000400d0a54 0x10 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x3c (size before relaxing) + .literal.register_system + 0x00000000400d0a64 0x0 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x1c (size before relaxing) + .literal.initialise_wifi + 0x00000000400d0a64 0x5c esp-idf/wifi/libwifi.a(wifi.c.obj) + 0xa0 (size before relaxing) + .literal.wifi_join + 0x00000000400d0ac0 0x10 esp-idf/wifi/libwifi.a(wifi.c.obj) + 0x48 (size before relaxing) + .literal.connect + 0x00000000400d0ad0 0x14 esp-idf/wifi/libwifi.a(wifi.c.obj) + 0x40 (size before relaxing) + .literal.event_handler + 0x00000000400d0ae4 0x0 esp-idf/wifi/libwifi.a(wifi.c.obj) + 0x18 (size before relaxing) + .literal.register_wifi + 0x00000000400d0ae4 0x28 esp-idf/wifi/libwifi.a(wifi.c.obj) + 0x4c (size before relaxing) + .literal.server_off + 0x00000000400d0b0c 0x4 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x8 (size before relaxing) + .literal.connect + 0x00000000400d0b10 0x1c esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x34 (size before relaxing) + .literal.stop_webserver + 0x00000000400d0b2c 0x0 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x4 (size before relaxing) + .literal.disconnect_handler + 0x00000000400d0b2c 0x0 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x4 (size before relaxing) + .literal.start_webserver + 0x00000000400d0b2c 0x30 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x58 (size before relaxing) + .literal.connect_handler + 0x00000000400d0b5c 0x0 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x4 (size before relaxing) + .literal.echo_post_handler + 0x00000000400d0b5c 0x18 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x60 (size before relaxing) + .literal.root_get_handler + 0x00000000400d0b74 0xc esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x10 (size before relaxing) + .literal.register_server + 0x00000000400d0b80 0x14 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x30 (size before relaxing) + .literal.decode + 0x00000000400d0b94 0x8 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) + 0xc (size before relaxing) + .literal.brownout_hal_config + 0x00000000400d0b9c 0x1c esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .literal.brownout_hal_intr_enable + 0x00000000400d0bb8 0x0 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + 0x4 (size before relaxing) + .literal.brownout_hal_intr_clear + 0x00000000400d0bb8 0x0 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_list_lock + 0x00000000400d0bb8 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0xc (size before relaxing) + .literal.esp_netif_list_unlock + 0x00000000400d0bbc 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x20 (size before relaxing) + .literal.esp_netif_add_to_list + 0x00000000400d0bcc 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x14 (size before relaxing) + .literal.esp_netif_remove_from_list + 0x00000000400d0bd0 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x28 (size before relaxing) + .literal.esp_netif_next_unsafe + 0x00000000400d0bd8 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_is_netif_listed + 0x00000000400d0bd8 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x24 (size before relaxing) + .literal.esp_netif_get_handle_from_ifkey + 0x00000000400d0be0 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x2c (size before relaxing) + .literal.esp_netif_config_sanity_check + 0x00000000400d0be4 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x1c (size before relaxing) + .literal.esp_netif_set_ip_old_info_api + 0x00000000400d0bf0 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_init_configuration + 0x00000000400d0bf0 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x20 (size before relaxing) + .literal.esp_netif_lwip_remove + 0x00000000400d0bfc 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_dhcps_cb + 0x00000000400d0bfc 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x24 (size before relaxing) + .literal.esp_netif_lwip_add + 0x00000000400d0c04 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x28 (size before relaxing) + .literal.esp_netif_is_active + 0x00000000400d0c10 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_ip_lost_timer + 0x00000000400d0c10 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x20 (size before relaxing) + .literal.esp_netif_set_default_netif + 0x00000000400d0c18 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_api_cb + 0x00000000400d0c18 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_start_ip_lost_timer + 0x00000000400d0c1c 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xc (size before relaxing) + .literal.esp_netif_dhcpc_start_api + 0x00000000400d0c24 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x2c (size before relaxing) + .literal.esp_netif_init + 0x00000000400d0c34 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x34 (size before relaxing) + .literal.esp_netif_destroy + 0x00000000400d0c44 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x2c (size before relaxing) + .literal.esp_netif_new + 0x00000000400d0c48 0x10 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x8c (size before relaxing) + .literal.esp_netif_attach + 0x00000000400d0c58 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x14 (size before relaxing) + .literal.esp_netif_set_driver_config + 0x00000000400d0c60 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_set_mac + 0x00000000400d0c60 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xc (size before relaxing) + .literal.esp_netif_dhcpc_start + 0x00000000400d0c60 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x28 (size before relaxing) + .literal.esp_netif_get_hostname + 0x00000000400d0c6c 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_up + 0x00000000400d0c6c 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x28 (size before relaxing) + .literal.esp_netif_down + 0x00000000400d0c70 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x28 (size before relaxing) + .literal.esp_netif_update_default_netif + 0x00000000400d0c74 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x38 (size before relaxing) + .literal.esp_netif_start + 0x00000000400d0c78 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x30 (size before relaxing) + .literal.esp_netif_start_api + 0x00000000400d0c7c 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x40 (size before relaxing) + .literal.esp_netif_stop + 0x00000000400d0c98 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x30 (size before relaxing) + .literal.esp_netif_stop_api + 0x00000000400d0c9c 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x28 (size before relaxing) + .literal.esp_netif_up_api + 0x00000000400d0c9c 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xc (size before relaxing) + .literal.esp_netif_down_api + 0x00000000400d0c9c 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x1c (size before relaxing) + .literal.esp_netif_get_old_ip_info + 0x00000000400d0c9c 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_get_ip_info + 0x00000000400d0c9c 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_set_old_ip_info + 0x00000000400d0c9c 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x28 (size before relaxing) + .literal.esp_netif_dhcpc_cb + 0x00000000400d0ca0 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x34 (size before relaxing) + .literal.esp_netif_ppp_set_default_netif + 0x00000000400d0cac 0xc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + 0x14 (size before relaxing) + .literal.esp_netif_new_ppp + 0x00000000400d0cb8 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + 0x14 (size before relaxing) + .literal.esp_netif_start_ppp + 0x00000000400d0cbc 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + 0x14 (size before relaxing) + .literal.esp_netif_stop_ppp + 0x00000000400d0cc0 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + 0x14 (size before relaxing) + .literal.esp_netif_destroy_ppp + 0x00000000400d0cc4 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + 0x14 (size before relaxing) + .literal.esp_event_legacy_wifi_event_id + 0x00000000400d0cc8 0xc esp-idf/esp_event/libesp_event.a(event_send.c.obj) + 0x14 (size before relaxing) + .literal.esp_event_legacy_ip_event_id + 0x00000000400d0cd4 0x8 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + 0x14 (size before relaxing) + .literal.esp_event_legacy_event_id + 0x00000000400d0cdc 0x4 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + 0x20 (size before relaxing) + .literal.esp_event_send_internal + 0x00000000400d0ce0 0x8 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + 0x10 (size before relaxing) + .literal.MD5Transform + 0x00000000400d0ce8 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .literal.MD5Init + 0x00000000400d0de8 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .literal.MD5Update + 0x00000000400d0df8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + 0x18 (size before relaxing) + .literal.MD5Final + 0x00000000400d0df8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + 0x1c (size before relaxing) + .literal.md5_vector + 0x00000000400d0df8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + 0xc (size before relaxing) + .literal.hmac_md5_vector + 0x00000000400d0df8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + 0x1c (size before relaxing) + .literal.hmac_md5 + 0x00000000400d0df8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + 0x4 (size before relaxing) + .literal.sha1_vector + 0x00000000400d0df8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + 0x14 (size before relaxing) + .literal.pbkdf2_sha1 + 0x00000000400d0df8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) + 0x18 (size before relaxing) + .literal.hmac_sha1_vector + 0x00000000400d0dfc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + 0x1c (size before relaxing) + .literal.hmac_sha1 + 0x00000000400d0dfc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + 0x4 (size before relaxing) + .literal.sha1_prf + 0x00000000400d0dfc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + 0x10 (size before relaxing) + .literal.hmac_sha256_vector + 0x00000000400d0dfc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + 0x1c (size before relaxing) + .literal.hmac_sha256 + 0x00000000400d0dfc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + 0x4 (size before relaxing) + .literal.sha256_prf_bits + 0x00000000400d0dfc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + 0x10 (size before relaxing) + .literal.sha256_prf + 0x00000000400d0dfc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + 0x4 (size before relaxing) + .literal.rijndaelDecrypt + 0x00000000400d0dfc 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + .literal.rijndaelKeySetupDec + 0x00000000400d0e04 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + 0xc (size before relaxing) + .literal.aes_decrypt_init + 0x00000000400d0e08 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + 0xc (size before relaxing) + .literal.aes_decrypt + 0x00000000400d0e08 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + 0x4 (size before relaxing) + .literal.aes_decrypt_deinit + 0x00000000400d0e08 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + 0x4 (size before relaxing) + .literal.rijndaelEncrypt + 0x00000000400d0e08 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + 0x10 (size before relaxing) + .literal.aes_encrypt_init + 0x00000000400d0e14 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + 0xc (size before relaxing) + .literal.aes_encrypt + 0x00000000400d0e14 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + 0x4 (size before relaxing) + .literal.aes_encrypt_deinit + 0x00000000400d0e14 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + 0x4 (size before relaxing) + .literal.rijndaelKeySetupEnc + 0x00000000400d0e14 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + 0x14 (size before relaxing) + .literal.omac1_aes_vector + 0x00000000400d0e18 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + 0x1c (size before relaxing) + .literal.omac1_aes_128_vector + 0x00000000400d0e1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + 0x4 (size before relaxing) + .literal.omac1_aes_128 + 0x00000000400d0e1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + 0x4 (size before relaxing) + .literal.aes_unwrap + 0x00000000400d0e1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + 0x24 (size before relaxing) + .literal.aes_wrap + 0x00000000400d0e1c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + 0x2c (size before relaxing) + .literal.ccmp_aad_nonce + 0x00000000400d0e1c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x18 (size before relaxing) + .literal.ccmp_decrypt + 0x00000000400d0e24 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x10 (size before relaxing) + .literal.ccmp_encrypt + 0x00000000400d0e24 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x18 (size before relaxing) + .literal.sha256_vector + 0x00000000400d0e24 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) + 0x14 (size before relaxing) + .literal.aes_ccm_encr_start + 0x00000000400d0e24 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x4 (size before relaxing) + .literal.aes_ccm_auth + 0x00000000400d0e24 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0xc (size before relaxing) + .literal.aes_ccm_encr + 0x00000000400d0e28 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0xc (size before relaxing) + .literal.aes_ccm_encr_auth + 0x00000000400d0e28 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x4 (size before relaxing) + .literal.aes_ccm_decr_auth + 0x00000000400d0e28 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x4 (size before relaxing) + .literal.aes_ccm_auth_start + 0x00000000400d0e28 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x20 (size before relaxing) + .literal.aes_ccm_ae + 0x00000000400d0e28 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x1c (size before relaxing) + .literal.aes_ccm_ad + 0x00000000400d0e28 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x20 (size before relaxing) + .literal.esp_efuse_get_chip_ver + 0x00000000400d0e28 0xc esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + 0x14 (size before relaxing) + .literal.esp_efuse_read_field_blob + 0x00000000400d0e34 0xc esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x1c (size before relaxing) + .literal.check_range_of_bits + 0x00000000400d0e40 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x4 (size before relaxing) + .literal.esp_efuse_utility_process + 0x00000000400d0e40 0x28 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x38 (size before relaxing) + .literal.esp_efuse_utility_read_reg + 0x00000000400d0e68 0x18 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x2c (size before relaxing) + .literal.esp_efuse_utility_fill_buff + 0x00000000400d0e80 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x8 (size before relaxing) + .literal.esp_efuse_get_coding_scheme + 0x00000000400d0e84 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.bootloader_flash_update_id + 0x00000000400d0e88 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x8 (size before relaxing) + .literal.execute_flash_command + 0x00000000400d0e8c 0x28 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x3c (size before relaxing) + .literal.bootloader_read_flash_id + 0x00000000400d0eb4 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_init_lock + 0x00000000400d0eb4 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_op_lock + 0x00000000400d0ec4 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_op_unlock + 0x00000000400d0ec4 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x8 (size before relaxing) + .literal.is_safe_write_address + 0x00000000400d0ec4 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_init + 0x00000000400d0ec4 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x4 (size before relaxing) + .literal.esp_flash_init_default_chip + 0x00000000400d0ec4 0x18 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x34 (size before relaxing) + .literal.esp_flash_app_init + 0x00000000400d0edc 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x8 (size before relaxing) + .literal.esp_flash_app_init_os_functions + 0x00000000400d0edc 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .literal.load_partitions + 0x00000000400d0ee4 0x1c esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x38 (size before relaxing) + .literal.ensure_partitions_loaded + 0x00000000400d0f00 0xc esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x24 (size before relaxing) + .literal.iterator_create + 0x00000000400d0f0c 0x0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x8 (size before relaxing) + .literal.esp_partition_iterator_release + 0x00000000400d0f0c 0x0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x4 (size before relaxing) + .literal.esp_partition_next + 0x00000000400d0f0c 0xc esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x28 (size before relaxing) + .literal.esp_partition_find + 0x00000000400d0f18 0x0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0xc (size before relaxing) + .literal.esp_partition_get + 0x00000000400d0f18 0x8 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x10 (size before relaxing) + .literal.esp_partition_find_first + 0x00000000400d0f20 0x0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0xc (size before relaxing) + .literal.esp_partition_read + 0x00000000400d0f20 0x8 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x14 (size before relaxing) + .literal.esp_partition_write + 0x00000000400d0f28 0x4 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x14 (size before relaxing) + .literal.esp_partition_erase_range + 0x00000000400d0f2c 0x4 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x14 (size before relaxing) + .literal.esp_partition_main_flash_region_safe + 0x00000000400d0f30 0x4 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_cache2phys + 0x00000000400d0f34 0x10 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x18 (size before relaxing) + .literal._ZL18nvs_find_ns_handlejPPN3nvs15NVSHandleSimpleE + 0x00000000400d0f44 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .literal._ZL24lookup_storage_from_namePKc + 0x00000000400d0f4c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x8 (size before relaxing) + .literal._ZL19nvs_get_str_or_blobjN3nvs8ItemTypeEPKcPvPj + 0x00000000400d0f4c 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal._ZL15create_iteratorPN3nvs7StorageE10nvs_type_t + 0x00000000400d0f54 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal.nvs_flash_init_partition + 0x00000000400d0f54 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x18 (size before relaxing) + .literal.nvs_flash_init + 0x00000000400d0f54 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x8 (size before relaxing) + .literal.nvs_flash_erase_partition + 0x00000000400d0f58 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x8 (size before relaxing) + .literal.nvs_flash_erase + 0x00000000400d0f58 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x8 (size before relaxing) + .literal.nvs_open_from_partition + 0x00000000400d0f58 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x24 (size before relaxing) + .literal.nvs_open + 0x00000000400d0f64 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x8 (size before relaxing) + .literal.nvs_close + 0x00000000400d0f64 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x18 (size before relaxing) + .literal.nvs_erase_key + 0x00000000400d0f68 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_erase_all + 0x00000000400d0f68 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_commit + 0x00000000400d0f68 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_set_str + 0x00000000400d0f68 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_set_blob + 0x00000000400d0f68 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + .literal.nvs_get_str + 0x00000000400d0f68 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal.nvs_get_blob + 0x00000000400d0f68 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal.nvs_entry_find + 0x00000000400d0f68 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x1c (size before relaxing) + .literal.nvs_entry_next + 0x00000000400d0f68 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x24 (size before relaxing) + .literal.nvs_entry_info + 0x00000000400d0f74 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_setIaEijPKcT_ + 0x00000000400d0f74 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_set_i8 + 0x00000000400d0f78 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_setIhEijPKcT_ + 0x00000000400d0f78 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_set_u8 + 0x00000000400d0f7c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_setIsEijPKcT_ + 0x00000000400d0f7c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_set_i16 + 0x00000000400d0f80 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_setItEijPKcT_ + 0x00000000400d0f80 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_set_u16 + 0x00000000400d0f84 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_setIiEijPKcT_ + 0x00000000400d0f84 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_set_i32 + 0x00000000400d0f88 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_setIjEijPKcT_ + 0x00000000400d0f88 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_set_u32 + 0x00000000400d0f8c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_setIxEijPKcT_ + 0x00000000400d0f8c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_set_i64 + 0x00000000400d0f90 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_setIyEijPKcT_ + 0x00000000400d0f90 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_set_u64 + 0x00000000400d0f94 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_getIaEijPKcPT_ + 0x00000000400d0f94 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_get_i8 + 0x00000000400d0f98 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_getIhEijPKcPT_ + 0x00000000400d0f98 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_get_u8 + 0x00000000400d0f9c 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_getIsEijPKcPT_ + 0x00000000400d0f9c 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_get_i16 + 0x00000000400d0fa0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_getItEijPKcPT_ + 0x00000000400d0fa0 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_get_u16 + 0x00000000400d0fa4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_getIiEijPKcPT_ + 0x00000000400d0fa4 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_get_i32 + 0x00000000400d0fa8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_getIjEijPKcPT_ + 0x00000000400d0fa8 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_get_u32 + 0x00000000400d0fac 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_getIxEijPKcPT_ + 0x00000000400d0fac 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_get_i64 + 0x00000000400d0fb0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._Z7nvs_getIyEijPKcPT_ + 0x00000000400d0fb0 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + .literal.nvs_get_u64 + 0x00000000400d0fb4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs7Storage15clearNamespacesEv + 0x00000000400d0fb4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs7StorageD2Ev + 0x00000000400d0fb4 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs7Storage19populateBlobIndicesER14intrusive_listINS0_13BlobIndexNodeEE + 0x00000000400d0fb8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x10 (size before relaxing) + .literal._ZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEE + 0x00000000400d0fb8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x28 (size before relaxing) + .literal._ZN3nvs7Storage4initEjj + 0x00000000400d0fb8 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x3c (size before relaxing) + .literal._ZN3nvs7Storage8findItemEhNS_8ItemTypeEPKcRPNS_4PageERNS_4ItemEhNS_9VerOffsetE + 0x00000000400d0fc4 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs7Storage18writeMultiPageBlobEhPKcPKvjNS_9VerOffsetE + 0x00000000400d0fc8 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x50 (size before relaxing) + .literal._ZN3nvs7Storage16cmpMultiPageBlobEhPKcPKvj + 0x00000000400d0fdc 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x2c (size before relaxing) + .literal._ZN3nvs7Storage18eraseMultiPageBlobEhPKcNS_9VerOffsetE + 0x00000000400d0fec 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x2c (size before relaxing) + .literal._ZN3nvs7Storage17readMultiPageBlobEhPKcPvj + 0x00000000400d0ffc 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x34 (size before relaxing) + .literal._ZN3nvs7Storage8readItemEhNS_8ItemTypeEPKcPvj + 0x00000000400d1004 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN3nvs7Storage9writeItemEhNS_8ItemTypeEPKcPKvj + 0x00000000400d1004 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x6c (size before relaxing) + .literal._ZN3nvs7Storage21createOrOpenNamespaceEPKcbRh + 0x00000000400d1018 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x20 (size before relaxing) + .literal._ZN3nvs7Storage9eraseItemEhNS_8ItemTypeEPKc + 0x00000000400d1018 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN3nvs7Storage14eraseNamespaceEh + 0x00000000400d1018 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs7Storage15getItemDataSizeEhNS_8ItemTypeEPKcRj + 0x00000000400d1018 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs7Storage22calcEntriesInNamespaceEhRj + 0x00000000400d1018 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs7Storage13fillEntryInfoERNS_4ItemER16nvs_entry_info_t + 0x00000000400d1018 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs7Storage9nextEntryEP21nvs_opaque_iterator_t + 0x00000000400d1018 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs7Storage9findEntryEP21nvs_opaque_iterator_tPKc + 0x00000000400d1018 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManagerD5Ev + 0x00000000400d1018 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager12get_instanceEv + 0x00000000400d1018 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x10 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager12close_handleEPNS_15NVSHandleSimpleE + 0x00000000400d1020 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKc + 0x00000000400d1020 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager11init_customEPKcjj + 0x00000000400d1020 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x20 (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager14init_partitionEPKc + 0x00000000400d1020 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs19NVSPartitionManager11open_handleEPKcS2_15nvs_open_mode_tPPNS_15NVSHandleSimpleE + 0x00000000400d1020 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x1c (size before relaxing) + .literal._ZN3nvs8HashList5clearEv + 0x00000000400d1028 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs8HashListD2Ev + 0x00000000400d1028 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs8HashList6insertERKNS_4ItemEj + 0x00000000400d1028 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x10 (size before relaxing) + .literal._ZN3nvs8HashList5eraseEjb + 0x00000000400d102c 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN3nvs8HashList4findEjRKNS_4ItemE + 0x00000000400d1038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs4Page6Header14calculateCrc32Ev + 0x00000000400d1038 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .literal._ZN3nvs4Page20updateFirstUsedEntryEjj + 0x00000000400d103c 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x20 (size before relaxing) + .literal._ZN3nvs4Page10initializeEv + 0x00000000400d1054 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x18 (size before relaxing) + .literal._ZN3nvs4Page15alterEntryStateEjNS0_10EntryStateE + 0x00000000400d105c 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x24 (size before relaxing) + .literal._ZN3nvs4Page10writeEntryERKNS_4ItemE + 0x00000000400d1068 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x18 (size before relaxing) + .literal._ZN3nvs4Page20alterEntryRangeStateEjjNS0_10EntryStateE + 0x00000000400d1074 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x2c (size before relaxing) + .literal._ZN3nvs4Page14writeEntryDataEPKhj + 0x00000000400d1080 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x48 (size before relaxing) + .literal._ZN3nvs4Page9writeItemEhNS_8ItemTypeEPKcPKvjh + 0x00000000400d1094 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x5c (size before relaxing) + .literal._ZN3nvs4Page14alterPageStateENS0_9PageStateE + 0x00000000400d10a8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZNK3nvs4Page9readEntryEjRNS_4ItemE + 0x00000000400d10a8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN3nvs4Page17eraseEntryAndSpanEj + 0x00000000400d10a8 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x48 (size before relaxing) + .literal._ZN3nvs4Page9copyItemsERS0_ + 0x00000000400d10b0 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x44 (size before relaxing) + .literal._ZN3nvs4Page8findItemEhNS_8ItemTypeEPKcRjRNS_4ItemEhNS_9VerOffsetE + 0x00000000400d10b8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x30 (size before relaxing) + .literal._ZN3nvs4Page8readItemEhNS_8ItemTypeEPKcPvjhNS_9VerOffsetE + 0x00000000400d10b8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x28 (size before relaxing) + .literal._ZN3nvs4Page7cmpItemEhNS_8ItemTypeEPKcPKvjhNS_9VerOffsetE + 0x00000000400d10b8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x28 (size before relaxing) + .literal._ZN3nvs4Page9eraseItemEhNS_8ItemTypeEPKchNS_9VerOffsetE + 0x00000000400d10b8 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs4Page15mLoadEntryTableEv + 0x00000000400d10b8 0x8 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x7c (size before relaxing) + .literal._ZN3nvs4Page4loadEj + 0x00000000400d10c0 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x2c (size before relaxing) + .literal._ZNK3nvs4Page12getSeqNumberERj + 0x00000000400d10d0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Page12setSeqNumberEj + 0x00000000400d10d0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs4Page5eraseEv + 0x00000000400d10d0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs4Page11markFreeingEv + 0x00000000400d10d0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs4Page8markFullEv + 0x00000000400d10d0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x8 (size before relaxing) + .literal._ZNK3nvs4Page18getVarDataTailroomEv + 0x00000000400d10d0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs11PageManager12activatePageEv + 0x00000000400d10d0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs11PageManager14requestNewPageEv + 0x00000000400d10d0 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x30 (size before relaxing) + .literal._ZN3nvs11PageManager4loadEjj + 0x00000000400d10dc 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x60 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple6commitEv + 0x00000000400d10f0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimpleD2Ev + 0x00000000400d10f0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs15NVSHandleSimpleD0Ev + 0x00000000400d10f0 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple14set_typed_itemENS_8ItemTypeEPKcPKvj + 0x00000000400d10f0 0x4 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple8set_blobEPKcPKvj + 0x00000000400d10f4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple14get_typed_itemENS_8ItemTypeEPKcPvj + 0x00000000400d10f4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple10get_stringEPKcPcj + 0x00000000400d10f4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple8get_blobEPKcPvj + 0x00000000400d10f4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple10set_stringEPKcS2_ + 0x00000000400d10f4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x10 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple13get_item_sizeENS_8ItemTypeEPKcRj + 0x00000000400d10f4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple10erase_itemEPKc + 0x00000000400d10f4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple9erase_allEv + 0x00000000400d10f4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs15NVSHandleSimple20get_used_entry_countERj + 0x00000000400d10f4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x8 (size before relaxing) + .literal._ZNK3nvs4Item14calculateCrc32Ev + 0x00000000400d10f4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0xc (size before relaxing) + .literal._ZNK3nvs4Item26calculateCrc32WithoutValueEv + 0x00000000400d10f4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0xc (size before relaxing) + .literal._ZN3nvs4Item14calculateCrc32EPKhj + 0x00000000400d10f4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs15nvs_flash_writeEjPKvj + 0x00000000400d10f4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN3nvs14nvs_flash_readEjPvj + 0x00000000400d10f4 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + 0x4 (size before relaxing) + .literal.s_set_default_wifi_log_level + 0x00000000400d10f4 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x10 (size before relaxing) + .literal.esp_wifi_deinit + 0x00000000400d10fc 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x1c (size before relaxing) + .literal.esp_wifi_init + 0x00000000400d1104 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x40 (size before relaxing) + .literal.wifi_default_action_sta_got_ip + 0x00000000400d1118 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x1c (size before relaxing) + .literal.wifi_default_action_ap_stop + 0x00000000400d1124 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.wifi_default_action_sta_stop + 0x00000000400d1124 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.wifi_start + 0x00000000400d1124 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x38 (size before relaxing) + .literal.wifi_default_action_ap_start + 0x00000000400d1138 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.wifi_default_action_sta_start + 0x00000000400d1138 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.wifi_default_action_sta_disconnected + 0x00000000400d1138 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.wifi_default_action_sta_connected + 0x00000000400d1138 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x28 (size before relaxing) + .literal.create_and_attach + 0x00000000400d1138 0x4 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x18 (size before relaxing) + .literal._esp_wifi_clear_default_wifi_handlers + 0x00000000400d113c 0x28 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x4c (size before relaxing) + .literal._esp_wifi_set_default_wifi_handlers + 0x00000000400d1164 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x50 (size before relaxing) + .literal.esp_wifi_set_default_wifi_sta_handlers + 0x00000000400d1164 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x4 (size before relaxing) + .literal.esp_wifi_set_default_wifi_ap_handlers + 0x00000000400d1164 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_attach_wifi_station + 0x00000000400d1164 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_attach_wifi_ap + 0x00000000400d1164 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x8 (size before relaxing) + .literal.esp_netif_create_default_wifi_ap + 0x00000000400d1164 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x24 (size before relaxing) + .literal.esp_netif_create_default_wifi_sta + 0x00000000400d1178 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x24 (size before relaxing) + .literal.wifi_sta_receive + 0x00000000400d1184 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .literal.wifi_ap_receive + 0x00000000400d118c 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x8 (size before relaxing) + .literal.wifi_driver_start + 0x00000000400d118c 0x8 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0xc (size before relaxing) + .literal.wifi_free + 0x00000000400d1194 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x4 (size before relaxing) + .literal.wifi_transmit + 0x00000000400d1194 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x4 (size before relaxing) + .literal.esp_wifi_create_if_driver + 0x00000000400d1194 0xc esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x18 (size before relaxing) + .literal.esp_wifi_get_if_mac + 0x00000000400d11a0 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x4 (size before relaxing) + .literal.esp_wifi_register_if_rxcb + 0x00000000400d11a0 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x3c (size before relaxing) + .literal.queue_create_wrapper + 0x00000000400d11b4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.mutex_delete_wrapper + 0x00000000400d11b4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.wifi_thread_semphr_free + 0x00000000400d11b4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.semphr_delete_wrapper + 0x00000000400d11b4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.get_time_wrapper + 0x00000000400d11b4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.timer_setfn_wrapper + 0x00000000400d11b4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.timer_done_wrapper + 0x00000000400d11b4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.esp_event_post_wrapper + 0x00000000400d11b4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.task_create_wrapper + 0x00000000400d11b4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.task_create_pinned_to_core_wrapper + 0x00000000400d11b4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.event_group_wait_bits_wrapper + 0x00000000400d11b4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.queue_recv_wrapper + 0x00000000400d11b4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.semphr_take_wrapper + 0x00000000400d11b4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.queue_send_to_front_wrapper + 0x00000000400d11b4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.queue_send_to_back_wrapper + 0x00000000400d11b4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.queue_send_wrapper + 0x00000000400d11b4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.semphr_give_wrapper + 0x00000000400d11b4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.recursive_mutex_create_wrapper + 0x00000000400d11b4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.mutex_create_wrapper + 0x00000000400d11b4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.semphr_create_wrapper + 0x00000000400d11b4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.wifi_thread_semphr_get_wrapper + 0x00000000400d11b4 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x1c (size before relaxing) + .literal.spin_lock_create_wrapper + 0x00000000400d11c0 0x4 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xc (size before relaxing) + .literal.set_isr_wrapper + 0x00000000400d11c4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.wifi_create_queue + 0x00000000400d11c4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xc (size before relaxing) + .literal.wifi_create_queue_wrapper + 0x00000000400d11c4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.wifi_delete_queue + 0x00000000400d11c4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x8 (size before relaxing) + .literal.wifi_delete_queue_wrapper + 0x00000000400d11c4 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x4 (size before relaxing) + .literal.load_cal_data_from_nvs_handle + 0x00000000400d11c4 0x1c esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x48 (size before relaxing) + .literal.store_cal_data_to_nvs_handle + 0x00000000400d11e0 0x14 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x60 (size before relaxing) + .literal.esp_phy_rf_deinit + 0x00000000400d11f4 0x1c esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x44 (size before relaxing) + .literal.esp_modem_sleep_enter + 0x00000000400d1210 0x18 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x3c (size before relaxing) + .literal.esp_modem_sleep_register + 0x00000000400d1228 0x8 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x34 (size before relaxing) + .literal.esp_phy_get_init_data + 0x00000000400d1230 0x4 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .literal.esp_phy_load_cal_data_from_nvs + 0x00000000400d1234 0xc esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x28 (size before relaxing) + .literal.esp_phy_store_cal_data_to_nvs + 0x00000000400d1240 0x0 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x10 (size before relaxing) + .literal.esp_phy_rf_init + 0x00000000400d1240 0xc esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x58 (size before relaxing) + .literal.esp_modem_sleep_exit + 0x00000000400d124c 0x4 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x3c (size before relaxing) + .literal.esp_modem_sleep_deregister + 0x00000000400d1250 0x8 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x3c (size before relaxing) + .literal.esp_phy_load_cal_and_init + 0x00000000400d1258 0x14 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x78 (size before relaxing) + .literal.kill_oldest_dhcps_pool + 0x00000000400d126c 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0xc (size before relaxing) + .literal.parse_options + 0x00000000400d1270 0x8 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0xc (size before relaxing) + .literal.create_msg + 0x00000000400d1278 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x18 (size before relaxing) + .literal.add_offer_options + 0x00000000400d127c 0x18 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x1c (size before relaxing) + .literal.dhcps_poll_set + 0x00000000400d1294 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x1c (size before relaxing) + .literal.parse_msg + 0x00000000400d1298 0x10 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x70 (size before relaxing) + .literal.dhcps_pbuf_alloc + 0x00000000400d12a8 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x4 (size before relaxing) + .literal.send_offer + 0x00000000400d12a8 0xc esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x24 (size before relaxing) + .literal.send_ack + 0x00000000400d12b4 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x28 (size before relaxing) + .literal.send_nak + 0x00000000400d12b8 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x20 (size before relaxing) + .literal.handle_dhcp + 0x00000000400d12b8 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x24 (size before relaxing) + .literal.dhcps_set_new_lease_cb + 0x00000000400d12b8 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x4 (size before relaxing) + .literal.dhcps_start + 0x00000000400d12b8 0x8 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x34 (size before relaxing) + .literal.dhcps_stop + 0x00000000400d12c0 0x4 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x20 (size before relaxing) + .literal.dhcps_coarse_tmr + 0x00000000400d12c4 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x14 (size before relaxing) + .literal.tcpip_timeouts_mbox_fetch + 0x00000000400d12c4 0x0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x14 (size before relaxing) + .literal.tcpip_thread_handle_msg + 0x00000000400d12c4 0x10 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x24 (size before relaxing) + .literal.tcpip_thread + 0x00000000400d12d4 0x10 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x24 (size before relaxing) + .literal.tcpip_inpkt + 0x00000000400d12e4 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x20 (size before relaxing) + .literal.tcpip_input + 0x00000000400d12ec 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x10 (size before relaxing) + .literal.tcpip_callback + 0x00000000400d12f4 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x1c (size before relaxing) + .literal.tcpip_try_callback + 0x00000000400d12f8 0x4 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x20 (size before relaxing) + .literal.tcpip_send_msg_wait_sem + 0x00000000400d12fc 0x8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x24 (size before relaxing) + .literal.tcpip_init + 0x00000000400d1304 0x14 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x38 (size before relaxing) + .literal.lwip_htonl + 0x00000000400d1318 0x0 esp-idf/lwip/liblwip.a(def.c.obj) + 0x8 (size before relaxing) + .literal.dns_backupserver_available + 0x00000000400d1318 0x4 esp-idf/lwip/liblwip.a(dns.c.obj) + .literal.dns_create_txid + 0x00000000400d131c 0x4 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x8 (size before relaxing) + .literal.dns_call_found + 0x00000000400d1320 0x14 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x24 (size before relaxing) + .literal.dns_send + 0x00000000400d1334 0x18 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x60 (size before relaxing) + .literal.dns_check_entry + 0x00000000400d134c 0xc esp-idf/lwip/liblwip.a(dns.c.obj) + 0x34 (size before relaxing) + .literal.dns_check_entries + 0x00000000400d1358 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x4 (size before relaxing) + .literal.dns_setserver + 0x00000000400d1358 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x10 (size before relaxing) + .literal.dns_clear_servers + 0x00000000400d1358 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x4 (size before relaxing) + .literal.dns_tmr + 0x00000000400d1358 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x4 (size before relaxing) + .literal.lwip_init + 0x00000000400d1358 0xc esp-idf/lwip/liblwip.a(init.c.obj) + 0x24 (size before relaxing) + .literal.ip_input + 0x00000000400d1364 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) + 0x8 (size before relaxing) + .literal.mem_malloc + 0x00000000400d1364 0xc esp-idf/lwip/liblwip.a(mem.c.obj) + 0x1c (size before relaxing) + .literal.mem_free + 0x00000000400d1370 0xc esp-idf/lwip/liblwip.a(mem.c.obj) + 0x1c (size before relaxing) + .literal.do_memp_malloc_pool + 0x00000000400d137c 0xc esp-idf/lwip/liblwip.a(memp.c.obj) + 0x20 (size before relaxing) + .literal.do_memp_free_pool + 0x00000000400d1388 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x1c (size before relaxing) + .literal.memp_malloc + 0x00000000400d1390 0x8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x10 (size before relaxing) + .literal.memp_free + 0x00000000400d1398 0x4 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x10 (size before relaxing) + .literal.netif_loopif_init + 0x00000000400d139c 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x18 (size before relaxing) + .literal.netif_do_ip_addr_changed + 0x00000000400d13b0 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0xc (size before relaxing) + .literal.netif_issue_reports + 0x00000000400d13b0 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x1c (size before relaxing) + .literal.netif_do_set_ipaddr + 0x00000000400d13b8 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x1c (size before relaxing) + .literal.netif_poll + 0x00000000400d13c0 0x14 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x40 (size before relaxing) + .literal.netif_set_addr + 0x00000000400d13d4 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x14 (size before relaxing) + .literal.netif_add + 0x00000000400d13dc 0x28 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x48 (size before relaxing) + .literal.netif_set_default + 0x00000000400d1404 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + .literal.netif_set_up + 0x00000000400d1408 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x10 (size before relaxing) + .literal.netif_set_down + 0x00000000400d140c 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x10 (size before relaxing) + .literal.netif_remove + 0x00000000400d1410 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x24 (size before relaxing) + .literal.netif_set_link_up + 0x00000000400d1410 0x4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x14 (size before relaxing) + .literal.netif_init + 0x00000000400d1414 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + 0x20 (size before relaxing) + .literal.netif_loop_output + 0x00000000400d1420 0x18 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x44 (size before relaxing) + .literal.netif_loop_output_ipv6 + 0x00000000400d1438 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x4 (size before relaxing) + .literal.netif_loop_output_ipv4 + 0x00000000400d1438 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x4 (size before relaxing) + .literal.netif_ip6_addr_set_state + 0x00000000400d1438 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + 0x24 (size before relaxing) + .literal.netif_get_ip6_addr_match + 0x00000000400d1444 0xc esp-idf/lwip/liblwip.a(netif.c.obj) + 0x18 (size before relaxing) + .literal.netif_get_by_index + 0x00000000400d1450 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x4 (size before relaxing) + .literal.netif_find + 0x00000000400d1450 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x8 (size before relaxing) + .literal.pbuf_add_header_impl + 0x00000000400d1450 0xc esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x14 (size before relaxing) + .literal.pbuf_pool_is_empty + 0x00000000400d145c 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x1c (size before relaxing) + .literal.pbuf_free_ooseq + 0x00000000400d1464 0x4 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x14 (size before relaxing) + .literal.pbuf_free_ooseq_callback + 0x00000000400d1468 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_alloc_reference + 0x00000000400d1468 0xc esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x18 (size before relaxing) + .literal.pbuf_add_header + 0x00000000400d1474 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_add_header_force + 0x00000000400d1474 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_remove_header + 0x00000000400d1474 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x1c (size before relaxing) + .literal.pbuf_header_impl + 0x00000000400d147c 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x8 (size before relaxing) + .literal.pbuf_header_force + 0x00000000400d147c 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_free + 0x00000000400d147c 0x10 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x3c (size before relaxing) + .literal.pbuf_alloc + 0x00000000400d148c 0x14 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x44 (size before relaxing) + .literal.pbuf_realloc + 0x00000000400d14a0 0x14 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x28 (size before relaxing) + .literal.pbuf_free_header + 0x00000000400d14b4 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x8 (size before relaxing) + .literal.pbuf_ref + 0x00000000400d14b4 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x18 (size before relaxing) + .literal.pbuf_cat + 0x00000000400d14bc 0xc esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x18 (size before relaxing) + .literal.pbuf_chain + 0x00000000400d14c8 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x8 (size before relaxing) + .literal.pbuf_copy + 0x00000000400d14c8 0x18 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x38 (size before relaxing) + .literal.pbuf_copy_partial + 0x00000000400d14e0 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x14 (size before relaxing) + .literal.pbuf_skip + 0x00000000400d14e8 0x4 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .literal.pbuf_take + 0x00000000400d14ec 0x18 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x34 (size before relaxing) + .literal.pbuf_take_at + 0x00000000400d1504 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x1c (size before relaxing) + .literal.pbuf_clone + 0x00000000400d150c 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x18 (size before relaxing) + .literal.pbuf_try_get_at + 0x00000000400d1514 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_get_at + 0x00000000400d1514 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.pbuf_put_at + 0x00000000400d1514 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4 (size before relaxing) + .literal.raw_input_local_match + 0x00000000400d1514 0x4 esp-idf/lwip/liblwip.a(raw.c.obj) + .literal.raw_input + 0x00000000400d1518 0x18 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x24 (size before relaxing) + .literal.raw_bind + 0x00000000400d1530 0xc esp-idf/lwip/liblwip.a(raw.c.obj) + 0x10 (size before relaxing) + .literal.raw_sendto_if_src + 0x00000000400d153c 0xc esp-idf/lwip/liblwip.a(raw.c.obj) + 0x40 (size before relaxing) + .literal.raw_sendto + 0x00000000400d1548 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x18 (size before relaxing) + .literal.raw_send + 0x00000000400d1548 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x4 (size before relaxing) + .literal.raw_remove + 0x00000000400d1548 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x8 (size before relaxing) + .literal.raw_new + 0x00000000400d1548 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0xc (size before relaxing) + .literal.raw_new_ip_type + 0x00000000400d1548 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x4 (size before relaxing) + .literal.raw_netif_ip_addr_changed + 0x00000000400d1548 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x4 (size before relaxing) + .literal.tcp_new_port + 0x00000000400d1548 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_remove_listener + 0x00000000400d1558 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x10 (size before relaxing) + .literal.tcp_listen_closed + 0x00000000400d1564 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x20 (size before relaxing) + .literal.tcp_free_listen + 0x00000000400d1570 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_init + 0x00000000400d1578 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x8 (size before relaxing) + .literal.tcp_free + 0x00000000400d1578 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_backlog_delayed + 0x00000000400d1580 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x18 (size before relaxing) + .literal.tcp_backlog_accepted + 0x00000000400d1588 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x18 (size before relaxing) + .literal.tcp_close_shutdown_fin + 0x00000000400d158c 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x24 (size before relaxing) + .literal.tcp_handle_closepend + 0x00000000400d1590 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x8 (size before relaxing) + .literal.tcp_bind + 0x00000000400d1590 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x34 (size before relaxing) + .literal.tcp_listen_with_backlog_and_err + 0x00000000400d159c 0x18 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x38 (size before relaxing) + .literal.tcp_update_rcv_ann_wnd + 0x00000000400d15b4 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x20 (size before relaxing) + .literal.tcp_recved + 0x00000000400d15c4 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x24 (size before relaxing) + .literal.tcp_seg_free + 0x00000000400d15d4 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x8 (size before relaxing) + .literal.tcp_segs_free + 0x00000000400d15d4 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4 (size before relaxing) + .literal.tcp_seg_copy + 0x00000000400d15d4 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x1c (size before relaxing) + .literal.tcp_pcb_num_cal + 0x00000000400d15dc 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x10 (size before relaxing) + .literal.tcp_recv + 0x00000000400d15e0 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_sent + 0x00000000400d15ec 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_err + 0x00000000400d15f8 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_poll + 0x00000000400d1604 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x1c (size before relaxing) + .literal.tcp_next_iss + 0x00000000400d1614 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x1c (size before relaxing) + .literal.tcp_eff_send_mss_netif + 0x00000000400d1628 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x18 (size before relaxing) + .literal.tcp_free_ooseq + 0x00000000400d1634 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4 (size before relaxing) + .literal.tcp_pcb_purge + 0x00000000400d1634 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x1c (size before relaxing) + .literal.tcp_pcb_remove + 0x00000000400d1638 0x2c esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4c (size before relaxing) + .literal.tcp_abandon + 0x00000000400d1664 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4c (size before relaxing) + .literal.tcp_abort + 0x00000000400d1674 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4 (size before relaxing) + .literal.tcp_accept_null + 0x00000000400d1674 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_kill_timewait + 0x00000000400d167c 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xc (size before relaxing) + .literal.tcp_kill_prio + 0x00000000400d167c 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xc (size before relaxing) + .literal.tcp_netif_ip_addr_changed_pcblist + 0x00000000400d167c 0xc esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x18 (size before relaxing) + .literal.tcp_netif_ip_addr_changed + 0x00000000400d1688 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_kill_state + 0x00000000400d1688 0x8 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x1c (size before relaxing) + .literal.tcp_alloc + 0x00000000400d1690 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x64 (size before relaxing) + .literal.tcp_new_ip_type + 0x00000000400d16a0 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4 (size before relaxing) + .literal.tcp_close_shutdown + 0x00000000400d16a0 0x10 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x5c (size before relaxing) + .literal.tcp_close + 0x00000000400d16b0 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xc (size before relaxing) + .literal.tcp_recv_null + 0x00000000400d16b4 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_process_refused_data + 0x00000000400d16b8 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x10 (size before relaxing) + .literal.tcp_fasttmr + 0x00000000400d16bc 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x18 (size before relaxing) + .literal.tcp_shutdown + 0x00000000400d16bc 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x14 (size before relaxing) + .literal.tcp_slowtmr + 0x00000000400d16c0 0x40 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xb8 (size before relaxing) + .literal.tcp_tmr + 0x00000000400d1700 0x4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xc (size before relaxing) + .literal.tcp_get_next_optbyte + 0x00000000400d1704 0x10 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .literal.tcp_parseopt + 0x00000000400d1714 0x10 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x2c (size before relaxing) + .literal.tcp_input_delayed_close + 0x00000000400d1724 0xc esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x20 (size before relaxing) + .literal.tcp_timewait_input + 0x00000000400d1730 0x1c esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x38 (size before relaxing) + .literal.tcp_listen_input + 0x00000000400d174c 0x8 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x64 (size before relaxing) + .literal.tcp_free_acked_segments + 0x00000000400d1754 0x10 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x30 (size before relaxing) + .literal.tcp_oos_insert_segment + 0x00000000400d1764 0x8 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x2c (size before relaxing) + .literal.tcp_receive + 0x00000000400d176c 0x40 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x16c (size before relaxing) + .literal.tcp_process + 0x00000000400d17ac 0x20 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0xc8 (size before relaxing) + .literal.tcp_input + 0x00000000400d17cc 0x30 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x134 (size before relaxing) + .literal.tcp_trigger_input_pcb_close + 0x00000000400d17fc 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x4 (size before relaxing) + .literal.tcp_write_checks + 0x00000000400d17fc 0x14 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x20 (size before relaxing) + .literal.tcp_output_segment_busy + 0x00000000400d1810 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x10 (size before relaxing) + .literal.tcp_output_fill_options + 0x00000000400d1818 0xc esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x18 (size before relaxing) + .literal.tcp_pbuf_prealloc + 0x00000000400d1824 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x24 (size before relaxing) + .literal.tcp_create_segment + 0x00000000400d1834 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x40 (size before relaxing) + .literal.tcp_output_alloc_header_common + 0x00000000400d1844 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x28 (size before relaxing) + .literal.tcp_output_alloc_header + 0x00000000400d184c 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x14 (size before relaxing) + .literal.tcp_route + 0x00000000400d1854 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0xc (size before relaxing) + .literal.tcp_output_segment + 0x00000000400d1854 0x14 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x54 (size before relaxing) + .literal.tcp_output_control_segment + 0x00000000400d1868 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x24 (size before relaxing) + .literal.tcp_write + 0x00000000400d1870 0x30 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x88 (size before relaxing) + .literal.tcp_split_unsent_seg + 0x00000000400d18a0 0x14 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x54 (size before relaxing) + .literal.tcp_enqueue_flags + 0x00000000400d18b4 0x1c esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x44 (size before relaxing) + .literal.tcp_send_fin + 0x00000000400d18d0 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x1c (size before relaxing) + .literal.tcp_rexmit_rto_prepare + 0x00000000400d18d8 0xc esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x24 (size before relaxing) + .literal.tcp_rexmit + 0x00000000400d18e4 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x1c (size before relaxing) + .literal.tcp_rexmit_fast + 0x00000000400d18ec 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x14 (size before relaxing) + .literal.tcp_rst + 0x00000000400d18f4 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x2c (size before relaxing) + .literal.tcp_send_empty_ack + 0x00000000400d1904 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x20 (size before relaxing) + .literal.tcp_output + 0x00000000400d190c 0x10 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x68 (size before relaxing) + .literal.tcp_rexmit_rto_commit + 0x00000000400d191c 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x14 (size before relaxing) + .literal.tcp_rexmit_rto + 0x00000000400d1924 0x8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x18 (size before relaxing) + .literal.tcp_keepalive + 0x00000000400d192c 0xc esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x24 (size before relaxing) + .literal.tcp_zero_window_probe + 0x00000000400d1938 0xc esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x34 (size before relaxing) + .literal.sys_timeout_abs + 0x00000000400d1944 0x10 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x18 (size before relaxing) + .literal.lwip_cyclic_timer + 0x00000000400d1954 0x8 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x14 (size before relaxing) + .literal.sys_timeout + 0x00000000400d195c 0xc esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x1c (size before relaxing) + .literal.tcp_timer_needed + 0x00000000400d1968 0x8 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x14 (size before relaxing) + .literal.tcpip_tcp_timer + 0x00000000400d1970 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x18 (size before relaxing) + .literal.sys_timeouts_init + 0x00000000400d1970 0x4 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0xc (size before relaxing) + .literal.sys_untimeout + 0x00000000400d1974 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x8 (size before relaxing) + .literal.sys_check_timeouts + 0x00000000400d1974 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x10 (size before relaxing) + .literal.sys_timeouts_sleeptime + 0x00000000400d1974 0x8 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x18 (size before relaxing) + .literal.udp_new_port + 0x00000000400d197c 0x8 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x14 (size before relaxing) + .literal.udp_input_local_match + 0x00000000400d1984 0x10 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x1c (size before relaxing) + .literal.udp_init + 0x00000000400d1994 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x8 (size before relaxing) + .literal.udp_input + 0x00000000400d1994 0x10 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x6c (size before relaxing) + .literal.udp_bind + 0x00000000400d19a4 0x4 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x24 (size before relaxing) + .literal.udp_sendto_if_src + 0x00000000400d19a8 0x1c esp-idf/lwip/liblwip.a(udp.c.obj) + 0x68 (size before relaxing) + .literal.udp_sendto_if + 0x00000000400d19c4 0x10 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x2c (size before relaxing) + .literal.udp_sendto + 0x00000000400d19d4 0x10 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x44 (size before relaxing) + .literal.udp_send + 0x00000000400d19e4 0x8 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x14 (size before relaxing) + .literal.udp_connect + 0x00000000400d19ec 0x8 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x28 (size before relaxing) + .literal.udp_disconnect + 0x00000000400d19f4 0x8 esp-idf/lwip/liblwip.a(udp.c.obj) + 0xc (size before relaxing) + .literal.udp_recv + 0x00000000400d19fc 0x4 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x8 (size before relaxing) + .literal.udp_remove + 0x00000000400d1a00 0x4 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x10 (size before relaxing) + .literal.udp_new + 0x00000000400d1a04 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x8 (size before relaxing) + .literal.udp_new_ip_type + 0x00000000400d1a04 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x4 (size before relaxing) + .literal.udp_netif_ip_addr_changed + 0x00000000400d1a04 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_option_short + 0x00000000400d1a04 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_option + 0x00000000400d1a10 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_option_byte + 0x00000000400d1a18 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_option_long + 0x00000000400d1a20 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_create_msg + 0x00000000400d1a28 0x14 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x3c (size before relaxing) + .literal.dhcp_option_hostname + 0x00000000400d1a3c 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x20 (size before relaxing) + .literal.dhcp_option_trailer + 0x00000000400d1a44 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_rebind + 0x00000000400d1a44 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x3c (size before relaxing) + .literal.dhcp_t2_timeout + 0x00000000400d1a50 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_reboot + 0x00000000400d1a50 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x48 (size before relaxing) + .literal.dhcp_select + 0x00000000400d1a50 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x68 (size before relaxing) + .literal.dhcp_handle_offer + 0x00000000400d1a5c 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_discover + 0x00000000400d1a64 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x3c (size before relaxing) + .literal.dhcp_decline + 0x00000000400d1a68 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x2c (size before relaxing) + .literal.dhcp_check + 0x00000000400d1a68 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x8 (size before relaxing) + .literal.dhcp_bind + 0x00000000400d1a68 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x24 (size before relaxing) + .literal.dhcp_handle_nak + 0x00000000400d1a70 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_dec_pcb_refcount + 0x00000000400d1a70 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x1c (size before relaxing) + .literal.dhcp_inc_pcb_refcount + 0x00000000400d1a7c 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x30 (size before relaxing) + .literal.dhcp_parse_reply + 0x00000000400d1a88 0x30 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x84 (size before relaxing) + .literal.dhcp_handle_ack + 0x00000000400d1ab8 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x18 (size before relaxing) + .literal.dhcp_recv + 0x00000000400d1ab8 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x44 (size before relaxing) + .literal.dhcp_cleanup + 0x00000000400d1ac0 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x14 (size before relaxing) + .literal.dhcp_set_cb + 0x00000000400d1ac8 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + .literal.dhcp_network_changed + 0x00000000400d1acc 0x8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x18 (size before relaxing) + .literal.dhcp_arp_reply + 0x00000000400d1ad4 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0xc (size before relaxing) + .literal.dhcp_renew + 0x00000000400d1ad4 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x38 (size before relaxing) + .literal.dhcp_t1_timeout + 0x00000000400d1ad4 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_release_and_stop + 0x00000000400d1ad4 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x34 (size before relaxing) + .literal.dhcp_start + 0x00000000400d1ad8 0x4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x2c (size before relaxing) + .literal.dhcp_coarse_tmr + 0x00000000400d1adc 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x14 (size before relaxing) + .literal.dhcp_timeout + 0x00000000400d1adc 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x20 (size before relaxing) + .literal.dhcp_fine_tmr + 0x00000000400d1adc 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x8 (size before relaxing) + .literal.dhcp_release + 0x00000000400d1adc 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4 (size before relaxing) + .literal.dhcp_stop + 0x00000000400d1adc 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x4 (size before relaxing) + .literal.free_etharp_q + 0x00000000400d1adc 0x10 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x20 (size before relaxing) + .literal.etharp_free_entry + 0x00000000400d1aec 0x8 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x10 (size before relaxing) + .literal.etharp_find_entry + 0x00000000400d1af4 0x10 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x2c (size before relaxing) + .literal.etharp_update_arp_entry + 0x00000000400d1b04 0x8 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x30 (size before relaxing) + .literal.etharp_raw + 0x00000000400d1b0c 0x14 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x3c (size before relaxing) + .literal.etharp_request_dst + 0x00000000400d1b20 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x8 (size before relaxing) + .literal.etharp_cleanup_netif + 0x00000000400d1b20 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x8 (size before relaxing) + .literal.etharp_input + 0x00000000400d1b20 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x1c (size before relaxing) + .literal.etharp_request + 0x00000000400d1b20 0x4 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x8 (size before relaxing) + .literal.garp_tmr + 0x00000000400d1b24 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x8 (size before relaxing) + .literal.etharp_tmr + 0x00000000400d1b24 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0xc (size before relaxing) + .literal.etharp_output_to_arp_index + 0x00000000400d1b24 0x8 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x24 (size before relaxing) + .literal.etharp_query + 0x00000000400d1b2c 0x14 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x5c (size before relaxing) + .literal.etharp_output + 0x00000000400d1b40 0xc esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x48 (size before relaxing) + .literal.icmp_send_response + 0x00000000400d1b4c 0xc esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x28 (size before relaxing) + .literal.icmp_input + 0x00000000400d1b58 0xc esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x68 (size before relaxing) + .literal.icmp_dest_unreach + 0x00000000400d1b64 0x0 esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x4 (size before relaxing) + .literal.igmp_start_timer + 0x00000000400d1b64 0x8 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x10 (size before relaxing) + .literal.igmp_delaying_member + 0x00000000400d1b6c 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4 (size before relaxing) + .literal.igmp_ip_output_if + 0x00000000400d1b6c 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4 (size before relaxing) + .literal.igmp_send + 0x00000000400d1b6c 0x10 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x28 (size before relaxing) + .literal.igmp_timeout + 0x00000000400d1b7c 0x4 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x8 (size before relaxing) + .literal.igmp_init + 0x00000000400d1b80 0x8 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x10 (size before relaxing) + .literal.igmp_stop + 0x00000000400d1b88 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4 (size before relaxing) + .literal.igmp_report_groups + 0x00000000400d1b88 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4 (size before relaxing) + .literal.igmp_lookup_group + 0x00000000400d1b88 0x10 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x24 (size before relaxing) + .literal.igmp_start + 0x00000000400d1b98 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x8 (size before relaxing) + .literal.igmp_input + 0x00000000400d1b98 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x28 (size before relaxing) + .literal.igmp_joingroup_netif + 0x00000000400d1b98 0xc esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x28 (size before relaxing) + .literal.igmp_joingroup + 0x00000000400d1ba4 0x8 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x1c (size before relaxing) + .literal.igmp_leavegroup_netif + 0x00000000400d1bac 0x10 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x2c (size before relaxing) + .literal.igmp_leavegroup + 0x00000000400d1bbc 0x8 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x1c (size before relaxing) + .literal.igmp_tmr + 0x00000000400d1bc4 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x18 (size before relaxing) + .literal.igmp_timeout_cb + 0x00000000400d1bc4 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x4 (size before relaxing) + .literal.ip4_input_accept + 0x00000000400d1bc4 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x8 (size before relaxing) + .literal.ip4_netif_exist + 0x00000000400d1bc4 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x4 (size before relaxing) + .literal.ip4_route_src_hook + 0x00000000400d1bc4 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x4 (size before relaxing) + .literal.ip4_route + 0x00000000400d1bc4 0x4 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x10 (size before relaxing) + .literal.ip4_route_src + 0x00000000400d1bc8 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0xc (size before relaxing) + .literal.ip4_input + 0x00000000400d1bc8 0x4 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x68 (size before relaxing) + .literal.ip4_output_if_opt_src + 0x00000000400d1bcc 0x14 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x44 (size before relaxing) + .literal.ip4_output_if_opt + 0x00000000400d1be0 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x4 (size before relaxing) + .literal.ip4_output_if + 0x00000000400d1be0 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x4 (size before relaxing) + .literal.ip4_output_if_src + 0x00000000400d1be0 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x4 (size before relaxing) + .literal.ip4addr_aton + 0x00000000400d1be0 0x14 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x34 (size before relaxing) + .literal.ip4_frag + 0x00000000400d1bf4 0x10 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + 0x44 (size before relaxing) + .literal.icmp6_send_response_with_addrs_and_netif + 0x00000000400d1c04 0xc esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x28 (size before relaxing) + .literal.icmp6_send_response + 0x00000000400d1c10 0x8 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x20 (size before relaxing) + .literal.icmp6_send_response_with_addrs + 0x00000000400d1c18 0x8 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x1c (size before relaxing) + .literal.icmp6_input + 0x00000000400d1c20 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x48 (size before relaxing) + .literal.icmp6_dest_unreach + 0x00000000400d1c20 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x4 (size before relaxing) + .literal.icmp6_time_exceeded_with_addrs + 0x00000000400d1c20 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x4 (size before relaxing) + .literal.icmp6_param_problem + 0x00000000400d1c20 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x8 (size before relaxing) + .literal.ip6_input_accept + 0x00000000400d1c20 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x4 (size before relaxing) + .literal.ip6_route + 0x00000000400d1c20 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x1c (size before relaxing) + .literal.ip6_select_source_address + 0x00000000400d1c20 0x4 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x14 (size before relaxing) + .literal.ip6_input + 0x00000000400d1c24 0x4 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0xf8 (size before relaxing) + .literal.ip6_output_if_src + 0x00000000400d1c28 0x18 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x48 (size before relaxing) + .literal.ip6_output_if + 0x00000000400d1c40 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x8 (size before relaxing) + .literal.ip6_options_add_hbh_ra + 0x00000000400d1c40 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x4 (size before relaxing) + .literal.ip6_reass_free_complete_datagram + 0x00000000400d1c40 0x1c esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x48 (size before relaxing) + .literal.ip6_reass_remove_oldest_datagram + 0x00000000400d1c5c 0x0 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0xc (size before relaxing) + .literal.ip6_reass_tmr + 0x00000000400d1c5c 0x0 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x8 (size before relaxing) + .literal.ip6_reass + 0x00000000400d1c5c 0x24 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x98 (size before relaxing) + .literal.ip6_frag + 0x00000000400d1c80 0x10 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x44 (size before relaxing) + .literal.mld6_delayed_report + 0x00000000400d1c90 0xc esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x14 (size before relaxing) + .literal.mld6_new_group + 0x00000000400d1c9c 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x4 (size before relaxing) + .literal.mld6_send + 0x00000000400d1c9c 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x20 (size before relaxing) + .literal.mld6_stop + 0x00000000400d1c9c 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x4 (size before relaxing) + .literal.mld6_report_groups + 0x00000000400d1c9c 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x4 (size before relaxing) + .literal.mld6_input + 0x00000000400d1c9c 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x28 (size before relaxing) + .literal.mld6_joingroup_netif + 0x00000000400d1c9c 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x1c (size before relaxing) + .literal.mld6_joingroup + 0x00000000400d1c9c 0x4 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x14 (size before relaxing) + .literal.mld6_leavegroup_netif + 0x00000000400d1ca0 0x4 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x1c (size before relaxing) + .literal.mld6_leavegroup + 0x00000000400d1ca4 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0xc (size before relaxing) + .literal.mld6_tmr + 0x00000000400d1ca4 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x18 (size before relaxing) + .literal.mld6_timeout_cb + 0x00000000400d1ca4 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_find_neighbor_cache_entry + 0x00000000400d1ca4 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + .literal.nd6_find_destination_cache_entry + 0x00000000400d1ca8 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + .literal.nd6_new_destination_cache_entry + 0x00000000400d1cac 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_is_prefix_in_netif + 0x00000000400d1cac 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + .literal.nd6_select_router + 0x00000000400d1cb0 0x8 esp-idf/lwip/liblwip.a(nd6.c.obj) + .literal.nd6_get_router + 0x00000000400d1cb8 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_get_onlink_prefix + 0x00000000400d1cb8 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_new_onlink_prefix + 0x00000000400d1cb8 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_send_q + 0x00000000400d1cb8 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x18 (size before relaxing) + .literal.nd6_duplicate_addr_detected + 0x00000000400d1cb8 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x8 (size before relaxing) + .literal.nd6_process_autoconfig_prefix + 0x00000000400d1cb8 0x10 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x2c (size before relaxing) + .literal.nd6_free_q + 0x00000000400d1cc8 0x1c esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x34 (size before relaxing) + .literal.nd6_free_neighbor_cache_entry + 0x00000000400d1ce4 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x8 (size before relaxing) + .literal.nd6_new_neighbor_cache_entry + 0x00000000400d1ce4 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x1c (size before relaxing) + .literal.nd6_send_na + 0x00000000400d1ce4 0xc esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x30 (size before relaxing) + .literal.nd6_send_rs + 0x00000000400d1cf0 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x20 (size before relaxing) + .literal.nd6_send_ns + 0x00000000400d1cf0 0x4 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x30 (size before relaxing) + .literal.nd6_send_neighbor_cache_probe + 0x00000000400d1cf4 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_new_router + 0x00000000400d1cf4 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x14 (size before relaxing) + .literal.nd6_get_next_hop_entry + 0x00000000400d1cf4 0x10 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4c (size before relaxing) + .literal.nd6_queue_packet + 0x00000000400d1d04 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x24 (size before relaxing) + .literal.nd6_input + 0x00000000400d1d04 0x10 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x124 (size before relaxing) + .literal.nd6_tmr + 0x00000000400d1d14 0x8 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x54 (size before relaxing) + .literal.nd6_clear_destination_cache + 0x00000000400d1d1c 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4 (size before relaxing) + .literal.nd6_find_route + 0x00000000400d1d1c 0x8 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x1c (size before relaxing) + .literal.nd6_get_next_hop_addr_or_queue + 0x00000000400d1d24 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0xc (size before relaxing) + .literal.nd6_get_destination_mtu + 0x00000000400d1d24 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x8 (size before relaxing) + .literal.nd6_reachability_hint + 0x00000000400d1d24 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x1c (size before relaxing) + .literal.nd6_cleanup_netif + 0x00000000400d1d24 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x14 (size before relaxing) + .literal.nd6_adjust_mld_membership + 0x00000000400d1d24 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x10 (size before relaxing) + .literal.ethernet_input + 0x00000000400d1d24 0x4 esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x28 (size before relaxing) + .literal.ethernet_output + 0x00000000400d1d28 0xc esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x20 (size before relaxing) + .literal.sys_thread_sem_free + 0x00000000400d1d34 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x8 (size before relaxing) + .literal.sys_mutex_new + 0x00000000400d1d34 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x4 (size before relaxing) + .literal.sys_mutex_lock + 0x00000000400d1d34 0xc esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x14 (size before relaxing) + .literal.sys_mutex_unlock + 0x00000000400d1d40 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x14 (size before relaxing) + .literal.sys_sem_new + 0x00000000400d1d48 0xc esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x20 (size before relaxing) + .literal.sys_sem_signal + 0x00000000400d1d54 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x14 (size before relaxing) + .literal.sys_sem_signal_isr + 0x00000000400d1d5c 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x4 (size before relaxing) + .literal.sys_arch_sem_wait + 0x00000000400d1d5c 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x20 (size before relaxing) + .literal.sys_mbox_new + 0x00000000400d1d64 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0xc (size before relaxing) + .literal.sys_mbox_post + 0x00000000400d1d64 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x14 (size before relaxing) + .literal.sys_mbox_trypost + 0x00000000400d1d6c 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x4 (size before relaxing) + .literal.sys_arch_mbox_fetch + 0x00000000400d1d6c 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x20 (size before relaxing) + .literal.sys_arch_mbox_tryfetch + 0x00000000400d1d74 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x14 (size before relaxing) + .literal.sys_mbox_free + 0x00000000400d1d78 0x8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x1c (size before relaxing) + .literal.sys_thread_new + 0x00000000400d1d80 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x8 (size before relaxing) + .literal.sys_init + 0x00000000400d1d80 0x14 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x28 (size before relaxing) + .literal.sys_now + 0x00000000400d1d94 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x4 (size before relaxing) + .literal.sys_arch_protect + 0x00000000400d1d94 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0xc (size before relaxing) + .literal.sys_arch_unprotect + 0x00000000400d1d94 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x8 (size before relaxing) + .literal.sys_thread_sem_init + 0x00000000400d1d94 0x4 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x2c (size before relaxing) + .literal.sys_thread_sem_get + 0x00000000400d1d98 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0xc (size before relaxing) + .literal.inet_cksum_pseudo_base + 0x00000000400d1d98 0x4 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0xc (size before relaxing) + .literal.inet_chksum_pseudo + 0x00000000400d1d9c 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x4 (size before relaxing) + .literal.ip6_chksum_pseudo + 0x00000000400d1d9c 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x4 (size before relaxing) + .literal.ip_chksum_pseudo + 0x00000000400d1d9c 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x8 (size before relaxing) + .literal.inet_chksum + 0x00000000400d1d9c 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x4 (size before relaxing) + .literal.inet_chksum_pbuf + 0x00000000400d1d9c 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x4 (size before relaxing) + .literal.lwip_get_socket_select_semaphore + 0x00000000400d1d9c 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x4 (size before relaxing) + .literal.lwip_stop_socket_select_isr + 0x00000000400d1d9c 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x4 (size before relaxing) + .literal.lwip_stop_socket_select + 0x00000000400d1d9c 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x4 (size before relaxing) + .literal.lwip_ioctl_r_wrapper + 0x00000000400d1d9c 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x4 (size before relaxing) + .literal.lwip_fcntl_r_wrapper + 0x00000000400d1d9c 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x4 (size before relaxing) + .literal.esp_vfs_lwip_sockets_register + 0x00000000400d1d9c 0x30 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x3c (size before relaxing) + .literal.tryget_socket_unconn_nouse + 0x00000000400d1dcc 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + .literal.free_socket_locked + 0x00000000400d1dd0 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10 (size before relaxing) + .literal.lwip_sockopt_to_ipopt + 0x00000000400d1ddc 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x14 (size before relaxing) + .literal.lwip_link_select_cb + 0x00000000400d1de8 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10 (size before relaxing) + .literal.lwip_unlink_select_cb + 0x00000000400d1df0 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x28 (size before relaxing) + .literal.sockaddr_to_ipaddr_port + 0x00000000400d1dfc 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x14 (size before relaxing) + .literal.lwip_sock_make_addr + 0x00000000400d1dfc 0x10 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x30 (size before relaxing) + .literal.lwip_recv_tcp_from + 0x00000000400d1e0c 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x8 (size before relaxing) + .literal.sock_inc_used + 0x00000000400d1e0c 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x20 (size before relaxing) + .literal.tryget_socket_unconn + 0x00000000400d1e18 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x8 (size before relaxing) + .literal.sock_inc_used_locked + 0x00000000400d1e18 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x28 (size before relaxing) + .literal.tryget_socket_unconn_locked + 0x00000000400d1e1c 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x8 (size before relaxing) + .literal.lwip_select_inc_sockets_used_set + 0x00000000400d1e1c 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xc (size before relaxing) + .literal.lwip_select_inc_sockets_used + 0x00000000400d1e1c 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xc (size before relaxing) + .literal.alloc_socket + 0x00000000400d1e1c 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x28 (size before relaxing) + .literal.free_socket_free_elements + 0x00000000400d1e24 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xc (size before relaxing) + .literal.free_socket + 0x00000000400d1e24 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10 (size before relaxing) + .literal.done_socket + 0x00000000400d1e24 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x28 (size before relaxing) + .literal.tryget_socket + 0x00000000400d1e28 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x8 (size before relaxing) + .literal.get_socket + 0x00000000400d1e28 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x8 (size before relaxing) + .literal.lwip_selscan + 0x00000000400d1e28 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x24 (size before relaxing) + .literal.lwip_select_dec_sockets_used + 0x00000000400d1e30 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x18 (size before relaxing) + .literal.lwip_socket_register_membership + 0x00000000400d1e38 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10 (size before relaxing) + .literal.lwip_socket_unregister_membership + 0x00000000400d1e3c 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xc (size before relaxing) + .literal.lwip_socket_register_mld6_membership + 0x00000000400d1e3c 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10 (size before relaxing) + .literal.lwip_socket_unregister_mld6_membership + 0x00000000400d1e40 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xc (size before relaxing) + .literal.lwip_socket_drop_registered_memberships + 0x00000000400d1e40 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10 (size before relaxing) + .literal.lwip_socket_drop_registered_mld6_memberships + 0x00000000400d1e40 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x10 (size before relaxing) + .literal.lwip_recv_tcp + 0x00000000400d1e40 0x18 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x50 (size before relaxing) + .literal.lwip_recvfrom_udp_raw + 0x00000000400d1e58 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x28 (size before relaxing) + .literal.select_check_waiters + 0x00000000400d1e64 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x20 (size before relaxing) + .literal.event_callback + 0x00000000400d1e68 0x10 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x38 (size before relaxing) + .literal.lwip_setsockopt_impl + 0x00000000400d1e78 0x38 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x158 (size before relaxing) + .literal.lwip_setsockopt_callback + 0x00000000400d1eb0 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1c (size before relaxing) + .literal.lwip_accept + 0x00000000400d1ebc 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x78 (size before relaxing) + .literal.lwip_bind + 0x00000000400d1ec8 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x40 (size before relaxing) + .literal.lwip_close + 0x00000000400d1ecc 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x30 (size before relaxing) + .literal.lwip_listen + 0x00000000400d1ed4 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1c (size before relaxing) + .literal.lwip_recvfrom + 0x00000000400d1ed4 0x8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x30 (size before relaxing) + .literal.lwip_read + 0x00000000400d1edc 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x4 (size before relaxing) + .literal.lwip_recv + 0x00000000400d1edc 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x4 (size before relaxing) + .literal.lwip_sendto + 0x00000000400d1edc 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x50 (size before relaxing) + .literal.lwip_send + 0x00000000400d1ee0 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1c (size before relaxing) + .literal.lwip_socket + 0x00000000400d1ee0 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x2c (size before relaxing) + .literal.lwip_write + 0x00000000400d1ee4 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x4 (size before relaxing) + .literal.lwip_select + 0x00000000400d1ee4 0xc esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x8c (size before relaxing) + .literal.lwip_setsockopt + 0x00000000400d1ef0 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x30 (size before relaxing) + .literal.lwip_ioctl + 0x00000000400d1ef4 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x14 (size before relaxing) + .literal.lwip_fcntl + 0x00000000400d1ef8 0x4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x20 (size before relaxing) + .literal.netconn_apimsg + 0x00000000400d1efc 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x8 (size before relaxing) + .literal.netconn_tcp_recvd_msg + 0x00000000400d1efc 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x10 (size before relaxing) + .literal.netconn_close_shutdown + 0x00000000400d1f04 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x14 (size before relaxing) + .literal.netconn_new_with_proto_and_callback + 0x00000000400d1f0c 0x18 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x34 (size before relaxing) + .literal.netconn_prepare_delete + 0x00000000400d1f24 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xc (size before relaxing) + .literal.netconn_delete + 0x00000000400d1f28 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x8 (size before relaxing) + .literal.netconn_getaddr + 0x00000000400d1f28 0x10 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x20 (size before relaxing) + .literal.netconn_bind + 0x00000000400d1f38 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x1c (size before relaxing) + .literal.netconn_listen_with_backlog + 0x00000000400d1f40 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x10 (size before relaxing) + .literal.netconn_tcp_recvd + 0x00000000400d1f48 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xc (size before relaxing) + .literal.netconn_send + 0x00000000400d1f48 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x10 (size before relaxing) + .literal.netconn_write_vectors_partly + 0x00000000400d1f50 0x14 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x30 (size before relaxing) + .literal.netconn_write_partly + 0x00000000400d1f64 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x4 (size before relaxing) + .literal.netconn_err + 0x00000000400d1f64 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x8 (size before relaxing) + .literal.netconn_accept + 0x00000000400d1f64 0xc esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x2c (size before relaxing) + .literal.netconn_recv_data + 0x00000000400d1f70 0x10 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x38 (size before relaxing) + .literal.netconn_recv_udp_raw_netbuf_flags + 0x00000000400d1f80 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xc (size before relaxing) + .literal.netconn_recv_data_tcp + 0x00000000400d1f84 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x10 (size before relaxing) + .literal.netconn_recv_tcp_pbuf_flags + 0x00000000400d1f84 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xc (size before relaxing) + .literal.netconn_join_leave_group + 0x00000000400d1f84 0x8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x14 (size before relaxing) + .literal.netconn_join_leave_group_netif + 0x00000000400d1f8c 0x4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x14 (size before relaxing) + .literal.lwip_netconn_err_to_msg + 0x00000000400d1f90 0x18 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x1c (size before relaxing) + .literal.recv_udp + 0x00000000400d1fa8 0x10 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x3c (size before relaxing) + .literal.recv_raw + 0x00000000400d1fb8 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x18 (size before relaxing) + .literal.setup_tcp + 0x00000000400d1fb8 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x24 (size before relaxing) + .literal.pcb_new + 0x00000000400d1fcc 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x30 (size before relaxing) + .literal.err_tcp + 0x00000000400d1fe0 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x40 (size before relaxing) + .literal.netconn_mark_mbox_invalid + 0x00000000400d1ff4 0x4 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x14 (size before relaxing) + .literal.lwip_netconn_do_writemore + 0x00000000400d1ff8 0x20 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x60 (size before relaxing) + .literal.lwip_netconn_do_close_internal + 0x00000000400d2018 0x1c esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x88 (size before relaxing) + .literal.poll_tcp + 0x00000000400d2034 0x4 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x1c (size before relaxing) + .literal.sent_tcp + 0x00000000400d2038 0x4 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x1c (size before relaxing) + .literal.recv_tcp + 0x00000000400d203c 0x14 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x38 (size before relaxing) + .literal.lwip_netconn_is_deallocated_msg + 0x00000000400d2050 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x4 (size before relaxing) + .literal.lwip_netconn_is_err_msg + 0x00000000400d2050 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x1c (size before relaxing) + .literal.lwip_netconn_do_newconn + 0x00000000400d2058 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x8 (size before relaxing) + .literal.netconn_alloc + 0x00000000400d2058 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x1c (size before relaxing) + .literal.netconn_free + 0x00000000400d2060 0x10 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x28 (size before relaxing) + .literal.netconn_drain + 0x00000000400d2070 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x40 (size before relaxing) + .literal.accept_function + 0x00000000400d2078 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x4c (size before relaxing) + .literal.lwip_netconn_do_delconn + 0x00000000400d2080 0x10 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x38 (size before relaxing) + .literal.lwip_netconn_do_bind + 0x00000000400d2090 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x18 (size before relaxing) + .literal.lwip_netconn_do_listen + 0x00000000400d2090 0xc esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x34 (size before relaxing) + .literal.lwip_netconn_do_send + 0x00000000400d209c 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x28 (size before relaxing) + .literal.lwip_netconn_do_recv + 0x00000000400d209c 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0xc (size before relaxing) + .literal.lwip_netconn_do_accepted + 0x00000000400d209c 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x8 (size before relaxing) + .literal.lwip_netconn_do_write + 0x00000000400d209c 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x24 (size before relaxing) + .literal.lwip_netconn_do_getaddr + 0x00000000400d20a4 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x14 (size before relaxing) + .literal.lwip_netconn_do_close + 0x00000000400d20ac 0x8 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x34 (size before relaxing) + .literal.lwip_netconn_do_join_leave_group + 0x00000000400d20b4 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x14 (size before relaxing) + .literal.lwip_netconn_do_join_leave_group_netif + 0x00000000400d20b4 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x18 (size before relaxing) + .literal.err_to_errno + 0x00000000400d20b4 0x4 esp-idf/lwip/liblwip.a(err.c.obj) + .literal.netbuf_delete + 0x00000000400d20b8 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x8 (size before relaxing) + .literal.netbuf_alloc + 0x00000000400d20b8 0x10 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x20 (size before relaxing) + .literal.netbuf_free + 0x00000000400d20c8 0x4 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0xc (size before relaxing) + .literal.heap_caps_get_free_size + 0x00000000400d20cc 0xc esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_minimum_free_size + 0x00000000400d20d8 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xc (size before relaxing) + .literal.register_heap + 0x00000000400d20dc 0x14 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x18 (size before relaxing) + .literal.heap_caps_enable_nonos_stack_heaps + 0x00000000400d20f0 0x4 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0xc (size before relaxing) + .literal.heap_caps_init + 0x00000000400d20f4 0x38 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x84 (size before relaxing) + .literal.gpio_wakeup_enable + 0x00000000400d212c 0x2c esp-idf/driver/libdriver.a(gpio.c.obj) + 0x40 (size before relaxing) + .literal.get_clk_en_mask + 0x00000000400d2158 0x20 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + 0x48 (size before relaxing) + .literal.get_rst_en_mask + 0x00000000400d2178 0x4 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + 0x3c (size before relaxing) + .literal.get_clk_en_reg + 0x00000000400d217c 0x4 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + 0x10 (size before relaxing) + .literal.get_rst_en_reg + 0x00000000400d2180 0x4 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + 0x10 (size before relaxing) + .literal.periph_module_enable + 0x00000000400d2184 0xc esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + 0x34 (size before relaxing) + .literal.periph_module_disable + 0x00000000400d2190 0x0 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + 0x34 (size before relaxing) + .literal.periph_module_reset + 0x00000000400d2190 0x0 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + 0x2c (size before relaxing) + .literal.rtc_gpio_isolate + 0x00000000400d2190 0x18 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x30 (size before relaxing) + .literal.rtc_gpio_force_hold_dis_all + 0x00000000400d21a8 0x8 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x14 (size before relaxing) + .literal.rtc_gpio_wakeup_enable + 0x00000000400d21b0 0x8 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x30 (size before relaxing) + .literal.rtc_isr + 0x00000000400d21b8 0x10 esp-idf/driver/libdriver.a(rtc_module.c.obj) + 0x20 (size before relaxing) + .literal.rtc_isr_ensure_installed + 0x00000000400d21c8 0xc esp-idf/driver/libdriver.a(rtc_module.c.obj) + 0x20 (size before relaxing) + .literal.rtc_isr_register + 0x00000000400d21d4 0x4 esp-idf/driver/libdriver.a(rtc_module.c.obj) + 0x18 (size before relaxing) + .literal.uart_pattern_queue_update + 0x00000000400d21d8 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_pattern_link_free + 0x00000000400d21dc 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x14 (size before relaxing) + .literal.uart_module_enable + 0x00000000400d21e4 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x18 (size before relaxing) + .literal.uart_pattern_enqueue + 0x00000000400d21e8 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x14 (size before relaxing) + .literal.uart_rx_intr_handler_default + 0x00000000400d21f0 0x40 esp-idf/driver/libdriver.a(uart.c.obj) + 0x114 (size before relaxing) + .literal.uart_module_disable + 0x00000000400d2230 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + 0x14 (size before relaxing) + .literal.uart_set_word_length + 0x00000000400d2230 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + 0x34 (size before relaxing) + .literal.uart_get_word_length + 0x00000000400d2244 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x20 (size before relaxing) + .literal.uart_set_stop_bits + 0x00000000400d224c 0xc esp-idf/driver/libdriver.a(uart.c.obj) + 0x34 (size before relaxing) + .literal.uart_get_stop_bits + 0x00000000400d2258 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x20 (size before relaxing) + .literal.uart_set_parity + 0x00000000400d2260 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x28 (size before relaxing) + .literal.uart_get_parity + 0x00000000400d2268 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x20 (size before relaxing) + .literal.uart_set_baudrate + 0x00000000400d2270 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x2c (size before relaxing) + .literal.uart_get_baudrate + 0x00000000400d2278 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x28 (size before relaxing) + .literal.uart_enable_intr_mask + 0x00000000400d227c 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x24 (size before relaxing) + .literal.uart_disable_intr_mask + 0x00000000400d2280 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x24 (size before relaxing) + .literal.uart_pattern_queue_reset + 0x00000000400d2284 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x3c (size before relaxing) + .literal.uart_enable_rx_intr + 0x00000000400d228c 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + 0x4 (size before relaxing) + .literal.uart_check_buf_full + 0x00000000400d228c 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x18 (size before relaxing) + .literal.uart_disable_rx_intr + 0x00000000400d2290 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + 0x4 (size before relaxing) + .literal.uart_disable_tx_intr + 0x00000000400d2290 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + 0x4 (size before relaxing) + .literal.uart_enable_tx_intr + 0x00000000400d2290 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x34 (size before relaxing) + .literal.uart_tx_all + 0x00000000400d2298 0xc esp-idf/driver/libdriver.a(uart.c.obj) + 0x50 (size before relaxing) + .literal.uart_isr_register + 0x00000000400d22a4 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x2c (size before relaxing) + .literal.uart_param_config + 0x00000000400d22a8 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + 0x78 (size before relaxing) + .literal.uart_intr_config + 0x00000000400d22b8 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x44 (size before relaxing) + .literal.uart_wait_tx_done + 0x00000000400d22c0 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x64 (size before relaxing) + .literal.uart_write_bytes + 0x00000000400d22c8 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x38 (size before relaxing) + .literal.uart_read_bytes + 0x00000000400d22d0 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + 0x64 (size before relaxing) + .literal.uart_get_buffered_data_len + 0x00000000400d22e0 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x28 (size before relaxing) + .literal.uart_flush_input + 0x00000000400d22e4 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x84 (size before relaxing) + .literal.uart_driver_delete + 0x00000000400d22ec 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + 0x60 (size before relaxing) + .literal.uart_driver_install + 0x00000000400d2300 0x3c esp-idf/driver/libdriver.a(uart.c.obj) + 0xbc (size before relaxing) + .literal.uart_is_driver_installed + 0x00000000400d233c 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + 0x4 (size before relaxing) + .literal.uart_set_select_notif_callback + 0x00000000400d233c 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + 0x4 (size before relaxing) + .literal.uart_get_selectlock + 0x00000000400d233c 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + 0x4 (size before relaxing) + .literal.uart_set_wakeup_threshold + 0x00000000400d233c 0xc esp-idf/driver/libdriver.a(uart.c.obj) + 0x34 (size before relaxing) + .literal.uart_wait_tx_idle_polling + 0x00000000400d2348 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x1c (size before relaxing) + .literal.esp_fill_random + 0x00000000400d234c 0x10 esp-idf/esp32/libesp32.a(hw_random.c.obj) + 0x18 (size before relaxing) + .literal.get_reset_reason + 0x00000000400d235c 0x4 esp-idf/esp32/libesp32.a(reset_reason.c.obj) + .literal.esp_reset_reason_clear_hint + 0x00000000400d2360 0x4 esp-idf/esp32/libesp32.a(reset_reason.c.obj) + .literal.esp_reset_reason + 0x00000000400d2364 0x4 esp-idf/esp32/libesp32.a(reset_reason.c.obj) + .literal.esp_reset_reason_init + 0x00000000400d2368 0x4 esp-idf/esp32/libesp32.a(reset_reason.c.obj) + 0x14 (size before relaxing) + .literal.get_power_down_flags + 0x00000000400d236c 0x4 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .literal.ext0_wakeup_prepare + 0x00000000400d2370 0x1c esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x30 (size before relaxing) + .literal.ext1_wakeup_prepare + 0x00000000400d238c 0xc esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x40 (size before relaxing) + .literal.timer_wakeup_prepare + 0x00000000400d2398 0x8 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x10 (size before relaxing) + .literal.esp_get_deep_sleep_wake_stub + 0x00000000400d23a0 0x30 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x38 (size before relaxing) + .literal.esp_set_deep_sleep_wake_stub + 0x00000000400d23d0 0x0 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x14 (size before relaxing) + .literal.esp_light_sleep_start + 0x00000000400d23d0 0x50 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x84 (size before relaxing) + .literal.esp_sleep_disable_wakeup_source + 0x00000000400d2420 0xc esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x28 (size before relaxing) + .literal.esp_sleep_enable_timer_wakeup + 0x00000000400d242c 0x0 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x4 (size before relaxing) + .literal.esp_sleep_enable_ext1_wakeup + 0x00000000400d242c 0x4 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x24 (size before relaxing) + .literal.esp_sleep_enable_gpio_wakeup + 0x00000000400d2430 0x4 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x14 (size before relaxing) + .literal.esp_sleep_enable_uart_wakeup + 0x00000000400d2434 0x0 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x4 (size before relaxing) + .literal.esp_sleep_get_wakeup_cause + 0x00000000400d2434 0x4 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0xc (size before relaxing) + .literal.esp_base_mac_addr_set + 0x00000000400d2438 0x10 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + 0x24 (size before relaxing) + .literal.esp_base_mac_addr_get + 0x00000000400d2448 0x4 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + 0x1c (size before relaxing) + .literal.esp_efuse_mac_get_default + 0x00000000400d244c 0x18 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + 0x2c (size before relaxing) + .literal.esp_read_mac + 0x00000000400d2464 0x10 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + 0x50 (size before relaxing) + .literal.esp_register_shutdown_handler + 0x00000000400d2474 0x4 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .literal.esp_unregister_shutdown_handler + 0x00000000400d2478 0x0 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + 0x4 (size before relaxing) + .literal.esp_get_free_heap_size + 0x00000000400d2478 0x0 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + 0x8 (size before relaxing) + .literal.esp_get_idf_version + 0x00000000400d2478 0x4 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .literal.ets_timer_setfn + 0x00000000400d247c 0x1c esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x24 (size before relaxing) + .literal.ets_timer_done + 0x00000000400d2498 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x8 (size before relaxing) + .literal.find_command_by_name + 0x00000000400d2498 0x4 esp-idf/console/libconsole.a(commands.c.obj) + 0x10 (size before relaxing) + .literal.help_command + 0x00000000400d249c 0x14 esp-idf/console/libconsole.a(commands.c.obj) + 0x30 (size before relaxing) + .literal.esp_console_init + 0x00000000400d24b0 0xc esp-idf/console/libconsole.a(commands.c.obj) + 0x10 (size before relaxing) + .literal.esp_console_cmd_register + 0x00000000400d24bc 0x4 esp-idf/console/libconsole.a(commands.c.obj) + 0x28 (size before relaxing) + .literal.esp_console_get_completion + 0x00000000400d24c0 0x0 esp-idf/console/libconsole.a(commands.c.obj) + 0x10 (size before relaxing) + .literal.esp_console_get_hint + 0x00000000400d24c0 0x0 esp-idf/console/libconsole.a(commands.c.obj) + 0x14 (size before relaxing) + .literal.esp_console_run + 0x00000000400d24c0 0x0 esp-idf/console/libconsole.a(commands.c.obj) + 0x24 (size before relaxing) + .literal.esp_console_register_help_command + 0x00000000400d24c0 0xc esp-idf/console/libconsole.a(commands.c.obj) + 0x10 (size before relaxing) + .literal.esp_console_split_argv + 0x00000000400d24cc 0x4 esp-idf/console/libconsole.a(split_argv.c.obj) + .literal.arg_register_error + 0x00000000400d24d0 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x4 (size before relaxing) + .literal.arg_parse_untagged + 0x00000000400d24d0 0x4 esp-idf/console/libconsole.a(argtable3.c.obj) + 0xc (size before relaxing) + .literal.arg_parse_check + 0x00000000400d24d4 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x4 (size before relaxing) + .literal.detectsuffix + 0x00000000400d24d4 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) + 0xc (size before relaxing) + .literal.alloc_shortoptions + 0x00000000400d24d4 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x8 (size before relaxing) + .literal.arg_end_errorfn + 0x00000000400d24d4 0x24 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x44 (size before relaxing) + .literal.strtol0X + 0x00000000400d24f8 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x10 (size before relaxing) + .literal.arg_int_scanfn + 0x00000000400d24f8 0x10 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x3c (size before relaxing) + .literal.alloc_longoptions + 0x00000000400d2508 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) + 0xc (size before relaxing) + .literal.find_shortoption + 0x00000000400d2508 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x4 (size before relaxing) + .literal.arg_parse_tagged + 0x00000000400d2508 0xc esp-idf/console/libconsole.a(argtable3.c.obj) + 0x54 (size before relaxing) + .literal.arg_cat_optionv + 0x00000000400d2514 0x24 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x50 (size before relaxing) + .literal.arg_cat_option + 0x00000000400d2538 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x60 (size before relaxing) + .literal.arg_print_gnuswitch + 0x00000000400d2538 0x10 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x24 (size before relaxing) + .literal.arg_end + 0x00000000400d2548 0x8 esp-idf/console/libconsole.a(argtable3.c.obj) + 0xc (size before relaxing) + .literal.arg_intn + 0x00000000400d2550 0x14 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x18 (size before relaxing) + .literal.arg_int0 + 0x00000000400d2564 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x4 (size before relaxing) + .literal.arg_strn + 0x00000000400d2564 0x14 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x1c (size before relaxing) + .literal.arg_str0 + 0x00000000400d2578 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x4 (size before relaxing) + .literal.arg_str1 + 0x00000000400d2578 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x4 (size before relaxing) + .literal.arg_parse + 0x00000000400d2578 0x8 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x24 (size before relaxing) + .literal.arg_print_option + 0x00000000400d2580 0x4 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x18 (size before relaxing) + .literal.arg_int_errorfn + 0x00000000400d2584 0x18 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x4c (size before relaxing) + .literal.arg_str_errorfn + 0x00000000400d259c 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x28 (size before relaxing) + .literal.arg_print_syntax + 0x00000000400d259c 0x10 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x30 (size before relaxing) + .literal.arg_print_glossary + 0x00000000400d25ac 0x8 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x14 (size before relaxing) + .literal.arg_print_formatted + 0x00000000400d25b4 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x18 (size before relaxing) + .literal.abAppend + 0x00000000400d25b4 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x8 (size before relaxing) + .literal.abFree + 0x00000000400d25b8 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x4 (size before relaxing) + .literal.freeCompletions + 0x00000000400d25b8 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x8 (size before relaxing) + .literal.getCursorPosition + 0x00000000400d25b8 0x8 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x1c (size before relaxing) + .literal.getColumns + 0x00000000400d25c0 0x8 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x28 (size before relaxing) + .literal.linenoiseBeep + 0x00000000400d25c8 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x8 (size before relaxing) + .literal.linenoiseDumb + 0x00000000400d25c8 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x2c (size before relaxing) + .literal.sanitize + 0x00000000400d25cc 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x4 (size before relaxing) + .literal.linenoiseSetMultiLine + 0x00000000400d25cc 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + .literal.linenoiseSetDumbMode + 0x00000000400d25d0 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + .literal.linenoiseClearScreen + 0x00000000400d25d4 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + 0xc (size before relaxing) + .literal.linenoiseSetCompletionCallback + 0x00000000400d25d8 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + .literal.linenoiseSetHintsCallback + 0x00000000400d25dc 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + .literal.linenoiseAddCompletion + 0x00000000400d25e0 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x14 (size before relaxing) + .literal.refreshShowHints + 0x00000000400d25e0 0xc esp-idf/console/libconsole.a(linenoise.c.obj) + 0x28 (size before relaxing) + .literal.refreshMultiLine + 0x00000000400d25ec 0x1c esp-idf/console/libconsole.a(linenoise.c.obj) + 0x78 (size before relaxing) + .literal.refreshSingleLine + 0x00000000400d2608 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x44 (size before relaxing) + .literal.refreshLine + 0x00000000400d260c 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0xc (size before relaxing) + .literal.completeLine + 0x00000000400d260c 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x38 (size before relaxing) + .literal.linenoiseEditInsert + 0x00000000400d2610 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x1c (size before relaxing) + .literal.linenoiseEditMoveLeft + 0x00000000400d2610 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x4 (size before relaxing) + .literal.linenoiseEditMoveRight + 0x00000000400d2610 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x4 (size before relaxing) + .literal.linenoiseEditMoveHome + 0x00000000400d2610 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x4 (size before relaxing) + .literal.linenoiseEditMoveEnd + 0x00000000400d2610 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x4 (size before relaxing) + .literal.linenoiseEditHistoryNext + 0x00000000400d2610 0x8 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x1c (size before relaxing) + .literal.linenoiseEditDelete + 0x00000000400d2618 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x8 (size before relaxing) + .literal.linenoiseEditBackspace + 0x00000000400d2618 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x8 (size before relaxing) + .literal.linenoiseEditDeletePrevWord + 0x00000000400d2618 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x8 (size before relaxing) + .literal.linenoiseProbe + 0x00000000400d2618 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x30 (size before relaxing) + .literal.linenoiseFree + 0x00000000400d261c 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x4 (size before relaxing) + .literal.linenoiseHistoryAdd + 0x00000000400d261c 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x28 (size before relaxing) + .literal.linenoiseEdit + 0x00000000400d2620 0xc esp-idf/console/libconsole.a(linenoise.c.obj) + 0xd8 (size before relaxing) + .literal.linenoiseRaw + 0x00000000400d262c 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x10 (size before relaxing) + .literal.linenoise + 0x00000000400d262c 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x20 (size before relaxing) + .literal.linenoiseHistorySetMaxLen + 0x00000000400d262c 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x20 (size before relaxing) + .literal.linenoiseHistorySave + 0x00000000400d262c 0x8 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x1c (size before relaxing) + .literal.linenoiseHistoryLoad + 0x00000000400d2634 0x4 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x20 (size before relaxing) + .literal.httpd_recv_pending + 0x00000000400d2638 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x4 (size before relaxing) + .literal.httpd_sock_err + 0x00000000400d2638 0xc esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x1c (size before relaxing) + .literal.httpd_sess_set_send_override + 0x00000000400d2644 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .literal.httpd_sess_set_recv_override + 0x00000000400d2648 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x4 (size before relaxing) + .literal.httpd_sess_set_pending_override + 0x00000000400d2648 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x4 (size before relaxing) + .literal.httpd_recv_with_opt + 0x00000000400d2648 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x4 (size before relaxing) + .literal.httpd_recv + 0x00000000400d2648 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x4 (size before relaxing) + .literal.httpd_unrecv + 0x00000000400d2648 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x4 (size before relaxing) + .literal.httpd_resp_send + 0x00000000400d2648 0x18 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x44 (size before relaxing) + .literal.httpd_resp_send_chunk + 0x00000000400d2660 0x8 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x58 (size before relaxing) + .literal.httpd_resp_send_err + 0x00000000400d2668 0x6c esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0xa4 (size before relaxing) + .literal.httpd_req_handle_err + 0x00000000400d26d4 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x4 (size before relaxing) + .literal.httpd_req_recv + 0x00000000400d26d4 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x4 (size before relaxing) + .literal.httpd_default_send + 0x00000000400d26d4 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0xc (size before relaxing) + .literal.httpd_default_recv + 0x00000000400d26d8 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0xc (size before relaxing) + .literal.httpd_uri_match_simple + 0x00000000400d26dc 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + 0x8 (size before relaxing) + .literal.httpd_find_uri_handler + 0x00000000400d26dc 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + 0x4 (size before relaxing) + .literal.httpd_register_uri_handler + 0x00000000400d26dc 0x1c esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + 0x40 (size before relaxing) + .literal.httpd_unregister_all_uri_handlers + 0x00000000400d26f8 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + 0x8 (size before relaxing) + .literal.httpd_uri + 0x00000000400d26f8 0x10 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + 0x38 (size before relaxing) + .literal.fd_is_valid + 0x00000000400d2708 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x8 (size before relaxing) + .literal.httpd_sess_free_ctx + 0x00000000400d2708 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x4 (size before relaxing) + .literal.httpd_sess_get_transport_ctx + 0x00000000400d2708 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x4 (size before relaxing) + .literal.httpd_sess_set_transport_ctx + 0x00000000400d2708 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x8 (size before relaxing) + .literal.httpd_sess_delete + 0x00000000400d2708 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x8 (size before relaxing) + .literal.httpd_sess_new + 0x00000000400d2708 0x14 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x28 (size before relaxing) + .literal.httpd_sess_delete_invalid + 0x00000000400d271c 0x8 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x1c (size before relaxing) + .literal.httpd_sess_close + 0x00000000400d2724 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x8 (size before relaxing) + .literal.httpd_sess_pending + 0x00000000400d2728 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x4 (size before relaxing) + .literal.httpd_sess_process + 0x00000000400d2728 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x10 (size before relaxing) + .literal.httpd_sess_trigger_close + 0x00000000400d272c 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0xc (size before relaxing) + .literal.httpd_sess_close_lru + 0x00000000400d2730 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x4 (size before relaxing) + .literal.httpd_close_all_sessions + 0x00000000400d2730 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0xc (size before relaxing) + .literal.httpd_process_ctrl_msg + 0x00000000400d2734 0x10 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x28 (size before relaxing) + .literal.httpd_accept_conn + 0x00000000400d2744 0x10 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x4c (size before relaxing) + .literal.httpd_server + 0x00000000400d2754 0x10 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x50 (size before relaxing) + .literal.httpd_thread + 0x00000000400d2764 0x8 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x1c (size before relaxing) + .literal.httpd_create + 0x00000000400d276c 0x18 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x84 (size before relaxing) + .literal.httpd_server_init + 0x00000000400d2784 0x1c esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x9c (size before relaxing) + .literal.httpd_delete + 0x00000000400d27a0 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x18 (size before relaxing) + .literal.httpd_queue_work + 0x00000000400d27a0 0x8 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x18 (size before relaxing) + .literal.httpd_start + 0x00000000400d27a8 0x14 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x34 (size before relaxing) + .literal.httpd_stop + 0x00000000400d27bc 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x14 (size before relaxing) + .literal.init_req + 0x00000000400d27c0 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x4 (size before relaxing) + .literal.init_req_aux + 0x00000000400d27c0 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x8 (size before relaxing) + .literal.parse_init + 0x00000000400d27c0 0x18 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x24 (size before relaxing) + .literal.cb_header_value + 0x00000000400d27d8 0xc esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x14 (size before relaxing) + .literal.cb_url + 0x00000000400d27e4 0x8 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x20 (size before relaxing) + .literal.verify_url + 0x00000000400d27ec 0xc esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x3c (size before relaxing) + .literal.cb_headers_complete + 0x00000000400d27f8 0x10 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x3c (size before relaxing) + .literal.pause_parsing + 0x00000000400d2808 0xc esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x28 (size before relaxing) + .literal.cb_no_body + 0x00000000400d2814 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x1c (size before relaxing) + .literal.cb_on_body + 0x00000000400d2818 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x18 (size before relaxing) + .literal.cb_header_field + 0x00000000400d281c 0x4 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x20 (size before relaxing) + .literal.continue_parsing + 0x00000000400d2820 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x4 (size before relaxing) + .literal.read_block + 0x00000000400d2820 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x8 (size before relaxing) + .literal.parse_block + 0x00000000400d2820 0x14 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x40 (size before relaxing) + .literal.httpd_parse_req + 0x00000000400d2834 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x14 (size before relaxing) + .literal.httpd_req_cleanup + 0x00000000400d2834 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x4 (size before relaxing) + .literal.httpd_req_new + 0x00000000400d2834 0x8 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x18 (size before relaxing) + .literal.httpd_req_delete + 0x00000000400d283c 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0xc (size before relaxing) + .literal.cs_create_ctrl_sock + 0x00000000400d283c 0x4 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + 0x18 (size before relaxing) + .literal.cs_free_ctrl_sock + 0x00000000400d2840 0x0 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + 0x4 (size before relaxing) + .literal.cs_send_to_ctrl_sock + 0x00000000400d2840 0x0 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + 0x10 (size before relaxing) + .literal.httpd_ssl_close + 0x00000000400d2840 0xc esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x14 (size before relaxing) + .literal.httpd_ssl_open + 0x00000000400d284c 0x30 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x68 (size before relaxing) + .literal.httpd_ssl_recv + 0x00000000400d287c 0x8 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x14 (size before relaxing) + .literal.httpd_ssl_send + 0x00000000400d2884 0x4 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x14 (size before relaxing) + .literal.httpd_ssl_pending + 0x00000000400d2888 0x4 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x18 (size before relaxing) + .literal.free_secure_context + 0x00000000400d288c 0x8 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x2c (size before relaxing) + .literal.create_secure_context + 0x00000000400d2894 0x0 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x20 (size before relaxing) + .literal.httpd_ssl_start + 0x00000000400d2894 0x1c esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x44 (size before relaxing) + .literal.httpd_ssl_stop + 0x00000000400d28b0 0x0 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x4 (size before relaxing) + .literal.esp_vfs_fat_spiflash_mount + 0x00000000400d28b0 0x24 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + 0xa0 (size before relaxing) + .literal.ff_diskio_get_drive + 0x00000000400d28d4 0x4 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + .literal.ff_diskio_register + 0x00000000400d28d8 0x10 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + 0x28 (size before relaxing) + .literal.ff_disk_initialize + 0x00000000400d28e8 0x0 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + 0x4 (size before relaxing) + .literal.ff_disk_status + 0x00000000400d28e8 0x0 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + 0x4 (size before relaxing) + .literal.ff_disk_read + 0x00000000400d28e8 0x0 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + 0x4 (size before relaxing) + .literal.ff_disk_write + 0x00000000400d28e8 0x0 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + 0x4 (size before relaxing) + .literal.ff_disk_ioctl + 0x00000000400d28e8 0x0 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + 0x4 (size before relaxing) + .literal.get_fattime + 0x00000000400d28e8 0x8 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + .literal.ff_wl_read + 0x00000000400d28f0 0x18 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + 0x30 (size before relaxing) + .literal.ff_wl_write + 0x00000000400d2908 0xc esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + 0x48 (size before relaxing) + .literal.ff_wl_ioctl + 0x00000000400d2914 0x4 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + 0x20 (size before relaxing) + .literal.ff_diskio_register_wl_partition + 0x00000000400d2918 0x4 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + 0xc (size before relaxing) + .literal.ld_clust + 0x00000000400d291c 0x4 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x8 (size before relaxing) + .literal.st_clust + 0x00000000400d2920 0x4 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x8 (size before relaxing) + .literal.get_fileinfo + 0x00000000400d2924 0x4 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0xc (size before relaxing) + .literal.create_name + 0x00000000400d2928 0x18 esp-idf/fatfs/libfatfs.a(ff.c.obj) + .literal.lock_fs + 0x00000000400d2940 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x4 (size before relaxing) + .literal.sync_window + 0x00000000400d2940 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x8 (size before relaxing) + .literal.move_window + 0x00000000400d2940 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x8 (size before relaxing) + .literal.check_fs + 0x00000000400d2940 0x10 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x1c (size before relaxing) + .literal.find_volume + 0x00000000400d2950 0x24 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x88 (size before relaxing) + .literal.put_fat + 0x00000000400d2974 0xc esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x28 (size before relaxing) + .literal.get_fat + 0x00000000400d2980 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x1c (size before relaxing) + .literal.dir_sdi + 0x00000000400d2980 0x8 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0xc (size before relaxing) + .literal.create_chain + 0x00000000400d2988 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x14 (size before relaxing) + .literal.remove_chain + 0x00000000400d2988 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0xc (size before relaxing) + .literal.dir_remove + 0x00000000400d2988 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x4 (size before relaxing) + .literal.dir_clear + 0x00000000400d2988 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x14 (size before relaxing) + .literal.dir_next + 0x00000000400d2988 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x14 (size before relaxing) + .literal.dir_find + 0x00000000400d2988 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x10 (size before relaxing) + .literal.follow_path + 0x00000000400d2988 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x10 (size before relaxing) + .literal.dir_alloc + 0x00000000400d2988 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0xc (size before relaxing) + .literal.dir_register + 0x00000000400d2988 0x4 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x10 (size before relaxing) + .literal.dir_read + 0x00000000400d298c 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x8 (size before relaxing) + .literal.sync_fs + 0x00000000400d298c 0x4 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x34 (size before relaxing) + .literal.unlock_fs + 0x00000000400d2990 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x4 (size before relaxing) + .literal.validate + 0x00000000400d2990 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0xc (size before relaxing) + .literal.f_mount + 0x00000000400d2990 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x18 (size before relaxing) + .literal.f_open + 0x00000000400d2990 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x48 (size before relaxing) + .literal.f_read + 0x00000000400d2990 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x44 (size before relaxing) + .literal.f_write + 0x00000000400d2990 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x48 (size before relaxing) + .literal.f_sync + 0x00000000400d2990 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x2c (size before relaxing) + .literal.f_close + 0x00000000400d2990 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0xc (size before relaxing) + .literal.f_lseek + 0x00000000400d2990 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x40 (size before relaxing) + .literal.f_opendir + 0x00000000400d2990 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x14 (size before relaxing) + .literal.f_closedir + 0x00000000400d2990 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x8 (size before relaxing) + .literal.f_readdir + 0x00000000400d2990 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x18 (size before relaxing) + .literal.f_stat + 0x00000000400d2990 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x10 (size before relaxing) + .literal.f_truncate + 0x00000000400d2990 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x24 (size before relaxing) + .literal.f_unlink + 0x00000000400d2990 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x24 (size before relaxing) + .literal.f_mkdir + 0x00000000400d2990 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x40 (size before relaxing) + .literal.f_rename + 0x00000000400d2990 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x3c (size before relaxing) + .literal.f_utime + 0x00000000400d2990 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x14 (size before relaxing) + .literal.f_mkfs + 0x00000000400d2990 0x24 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x140 (size before relaxing) + .literal.ff_memalloc + 0x00000000400d29b4 0x0 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + 0x4 (size before relaxing) + .literal.ff_cre_syncobj + 0x00000000400d29b4 0x0 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + 0x4 (size before relaxing) + .literal.ff_del_syncobj + 0x00000000400d29b4 0x0 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + 0x4 (size before relaxing) + .literal.ff_req_grant + 0x00000000400d29b4 0x0 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + 0x4 (size before relaxing) + .literal.ff_rel_grant + 0x00000000400d29b4 0x0 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + 0x4 (size before relaxing) + .literal.find_unused_context_index + 0x00000000400d29b4 0x4 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + .literal.get_next_fd + 0x00000000400d29b8 0x4 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + .literal.fat_mode_conv + 0x00000000400d29bc 0x4 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + .literal.vfs_fat_fstat + 0x00000000400d29c0 0x8 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + .literal.file_cleanup + 0x00000000400d29c8 0x8 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0xc (size before relaxing) + .literal.prepend_drive_to_path + 0x00000000400d29d0 0xc esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x14 (size before relaxing) + .literal.fresult_to_errno + 0x00000000400d29dc 0x10 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x14 (size before relaxing) + .literal.vfs_fat_utime + 0x00000000400d29ec 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x28 (size before relaxing) + .literal.vfs_fat_telldir + 0x00000000400d29ec 0x8 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x10 (size before relaxing) + .literal.vfs_fat_lseek + 0x00000000400d29f4 0x4 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x1c (size before relaxing) + .literal.vfs_fat_close + 0x00000000400d29f8 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x1c (size before relaxing) + .literal.vfs_fat_truncate + 0x00000000400d29f8 0x8 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x74 (size before relaxing) + .literal.vfs_fat_open + 0x00000000400d2a00 0x4 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x44 (size before relaxing) + .literal.vfs_fat_access + 0x00000000400d2a04 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x18 (size before relaxing) + .literal.vfs_fat_fsync + 0x00000000400d2a04 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x18 (size before relaxing) + .literal.vfs_fat_rmdir + 0x00000000400d2a04 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x18 (size before relaxing) + .literal.vfs_fat_unlink + 0x00000000400d2a04 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x18 (size before relaxing) + .literal.vfs_fat_mkdir + 0x00000000400d2a04 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x18 (size before relaxing) + .literal.vfs_fat_closedir + 0x00000000400d2a04 0x4 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x20 (size before relaxing) + .literal.vfs_fat_seekdir + 0x00000000400d2a08 0x4 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x28 (size before relaxing) + .literal.vfs_fat_readdir_r + 0x00000000400d2a0c 0x4 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x1c (size before relaxing) + .literal.vfs_fat_readdir + 0x00000000400d2a10 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x8 (size before relaxing) + .literal.vfs_fat_opendir + 0x00000000400d2a10 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x2c (size before relaxing) + .literal.vfs_fat_rename + 0x00000000400d2a10 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x18 (size before relaxing) + .literal.vfs_fat_pread + 0x00000000400d2a10 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x34 (size before relaxing) + .literal.vfs_fat_read + 0x00000000400d2a10 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x10 (size before relaxing) + .literal.vfs_fat_link + 0x00000000400d2a10 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x68 (size before relaxing) + .literal.vfs_fat_pwrite + 0x00000000400d2a10 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x34 (size before relaxing) + .literal.vfs_fat_write + 0x00000000400d2a10 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x20 (size before relaxing) + .literal.find_context_index_by_path + 0x00000000400d2a10 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x8 (size before relaxing) + .literal.vfs_fat_stat + 0x00000000400d2a10 0x10 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x34 (size before relaxing) + .literal.esp_vfs_fat_register + 0x00000000400d2a20 0x64 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0xa0 (size before relaxing) + .literal.esp_vfs_fat_unregister_path + 0x00000000400d2a84 0x4 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x18 (size before relaxing) + .literal._ZL12check_handleiPKc + 0x00000000400d2a88 0x14 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + 0x2c (size before relaxing) + .literal.wl_mount + 0x00000000400d2a9c 0x1c esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + 0x78 (size before relaxing) + .literal.wl_erase_range + 0x00000000400d2ab8 0x4 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + 0x14 (size before relaxing) + .literal.wl_write + 0x00000000400d2abc 0x4 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + 0x14 (size before relaxing) + .literal.wl_read + 0x00000000400d2ac0 0x4 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + 0x14 (size before relaxing) + .literal.wl_size + 0x00000000400d2ac4 0x4 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + 0x14 (size before relaxing) + .literal.wl_sector_size + 0x00000000400d2ac8 0x4 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN9Partition12erase_sectorEj + 0x00000000400d2acc 0x4 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + .literal._ZN9Partition11sector_sizeEv + 0x00000000400d2ad0 0x0 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN9Partition11erase_rangeEjj + 0x00000000400d2ad0 0x8 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN9Partition5writeEjPKvj + 0x00000000400d2ad8 0x0 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN9Partition4readEjPvj + 0x00000000400d2ad8 0x0 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN9PartitionD0Ev + 0x00000000400d2ad8 0x0 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN9PartitionC2EPK15esp_partition_t + 0x00000000400d2ad8 0x4 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + .literal._ZN8WL_FlashD2Ev + 0x00000000400d2adc 0x0 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN8WL_FlashD0Ev + 0x00000000400d2adc 0x0 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x8 (size before relaxing) + .literal._ZN8WL_Flash11erase_rangeEjj + 0x00000000400d2adc 0xc esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x14 (size before relaxing) + .literal._ZN8WL_Flash6configEP11WL_Config_sP12Flash_Access + 0x00000000400d2ae8 0x8 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x30 (size before relaxing) + .literal._ZN8WL_FlashC2Ev + 0x00000000400d2af0 0x4 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + .literal._ZN8WL_Flash12initSectionsEv + 0x00000000400d2af4 0x4 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x48 (size before relaxing) + .literal._ZN8WL_Flash10fillOkBuffEi + 0x00000000400d2af8 0x0 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN8WL_Flash11updateV1_V2Ev + 0x00000000400d2af8 0x10 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x94 (size before relaxing) + .literal._ZN8WL_Flash13updateVersionEv + 0x00000000400d2b08 0x0 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN8WL_Flash9OkBuffSetEi + 0x00000000400d2b08 0x0 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN8WL_Flash10recoverPosEv + 0x00000000400d2b08 0x4 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x18 (size before relaxing) + .literal._ZN8WL_Flash4initEv + 0x00000000400d2b0c 0x10 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x100 (size before relaxing) + .literal._ZN8WL_Flash8updateWLEv + 0x00000000400d2b1c 0x20 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x84 (size before relaxing) + .literal._ZN8WL_Flash5flushEv + 0x00000000400d2b3c 0x0 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x4 (size before relaxing) + .literal._ZN8WL_Flash12erase_sectorEj + 0x00000000400d2b3c 0x4 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x24 (size before relaxing) + .literal._ZN8WL_Flash5writeEjPKvj + 0x00000000400d2b40 0x4 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x24 (size before relaxing) + .literal._ZN8WL_Flash4readEjPvj + 0x00000000400d2b44 0x4 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x24 (size before relaxing) + .literal._ZN5crc328crc32_leEjPKhj + 0x00000000400d2b48 0x0 esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) + 0x4 (size before relaxing) + .literal.select + 0x00000000400d2b48 0x0 esp-idf/newlib/libnewlib.a(select.c.obj) + 0x4 (size before relaxing) + .literal.s_get_num_reserved_regions + 0x00000000400d2b48 0x8 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .literal.s_prepare_reserved_regions + 0x00000000400d2b50 0x24 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + 0x3c (size before relaxing) + .literal.soc_get_available_memory_region_max_count + 0x00000000400d2b74 0x4 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + 0x8 (size before relaxing) + .literal.soc_get_available_memory_regions + 0x00000000400d2b78 0x4 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + 0x14 (size before relaxing) + .literal.rtcio_hal_isolate + 0x00000000400d2b7c 0x18 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + 0x38 (size before relaxing) + .literal.uart_hal_set_baudrate + 0x00000000400d2b94 0x14 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x18 (size before relaxing) + .literal.uart_hal_get_baudrate + 0x00000000400d2ba8 0x0 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0xc (size before relaxing) + .literal.uart_hal_set_hw_flow_ctrl + 0x00000000400d2ba8 0x10 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x14 (size before relaxing) + .literal.uart_hal_set_rx_timeout + 0x00000000400d2bb8 0xc esp-idf/soc/libsoc.a(uart_hal.c.obj) + .literal.uart_hal_set_tx_idle_num + 0x00000000400d2bc4 0x4 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .literal.uart_hal_set_txfifo_empty_thr + 0x00000000400d2bc8 0x4 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .literal.uart_hal_init + 0x00000000400d2bcc 0xc esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x20 (size before relaxing) + .literal.spi_flash_hal_init + 0x00000000400d2bd8 0x1c esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + 0x2c (size before relaxing) + .literal.spi_flash_hal_supports_direct_write + 0x00000000400d2bf4 0x8 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_hal_supports_direct_read + 0x00000000400d2bfc 0x0 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + 0xc (size before relaxing) + .literal.esp_netif_action_start + 0x00000000400d2bfc 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_action_stop + 0x00000000400d2bfc 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_action_connected + 0x00000000400d2bfc 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x50 (size before relaxing) + .literal.esp_netif_action_disconnected + 0x00000000400d2c18 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x4 (size before relaxing) + .literal.esp_netif_action_got_ip + 0x00000000400d2c18 0x4 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x14 (size before relaxing) + .literal.wifi_create_and_start_sta + 0x00000000400d2c1c 0x4 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + 0x18 (size before relaxing) + .literal.wifi_create_and_start_ap + 0x00000000400d2c20 0x0 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + 0x18 (size before relaxing) + .literal.tcpip_adapter_set_default_wifi_handlers + 0x00000000400d2c20 0x14 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + 0x1c (size before relaxing) + .literal.tcpip_adapter_clear_default_wifi_handlers + 0x00000000400d2c34 0x0 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_clz + 0x00000000400d2c34 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_int_div_int + 0x00000000400d2c34 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mbedtls_mpi_zeroize + 0x00000000400d2c40 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mpi_uint_bigendian_to_host + 0x00000000400d2c40 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .literal.mpi_bigendian_to_host + 0x00000000400d2c44 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_free + 0x00000000400d2c44 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_grow + 0x00000000400d2c44 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_mpi_shrink + 0x00000000400d2c48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_mpi_copy + 0x00000000400d2c48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_swap + 0x00000000400d2c48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_safe_cond_assign + 0x00000000400d2c48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_safe_cond_swap + 0x00000000400d2c48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_lset + 0x00000000400d2c48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_set_bit + 0x00000000400d2c48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_bitlen + 0x00000000400d2c48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_size + 0x00000000400d2c48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_read_binary + 0x00000000400d2c48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_mpi_write_binary + 0x00000000400d2c48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_shift_l + 0x00000000400d2c48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_shift_r + 0x00000000400d2c48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_mpi_cmp_abs + 0x00000000400d2c48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_cmp_mpi + 0x00000000400d2c48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_cmp_int + 0x00000000400d2c48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_add_abs + 0x00000000400d2c48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_sub_abs + 0x00000000400d2c48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_mpi_add_mpi + 0x00000000400d2c48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_sub_mpi + 0x00000000400d2c48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_add_int + 0x00000000400d2c48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_sub_int + 0x00000000400d2c48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_mul_int + 0x00000000400d2c48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_read_string + 0x00000000400d2c48 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x30 (size before relaxing) + .literal.mbedtls_mpi_div_mpi + 0x00000000400d2c4c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xb8 (size before relaxing) + .literal.mbedtls_mpi_div_int + 0x00000000400d2c50 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_mpi_mod_mpi + 0x00000000400d2c50 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_mpi_mod_int + 0x00000000400d2c50 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4 (size before relaxing) + .literal.mpi_write_hlp + 0x00000000400d2c50 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_mpi_write_string + 0x00000000400d2c50 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_mpi_write_file + 0x00000000400d2c54 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x2c (size before relaxing) + .literal.mpi_check_small_factors + 0x00000000400d2c64 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_mpi_gcd + 0x00000000400d2c68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x60 (size before relaxing) + .literal.mbedtls_mpi_fill_random + 0x00000000400d2c68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x14 (size before relaxing) + .literal.mpi_miller_rabin + 0x00000000400d2c68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x78 (size before relaxing) + .literal.mbedtls_mpi_inv_mod + 0x00000000400d2c68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xd0 (size before relaxing) + .literal.mbedtls_mpi_is_prime_ext + 0x00000000400d2c68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_mpi_gen_prime + 0x00000000400d2c68 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x4c (size before relaxing) + .literal.block_cipher_df + 0x00000000400d2c70 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x3c (size before relaxing) + .literal.ctr_drbg_update_internal + 0x00000000400d2c70 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ctr_drbg_init + 0x00000000400d2c70 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ctr_drbg_free + 0x00000000400d2c70 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ctr_drbg_reseed + 0x00000000400d2c70 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ctr_drbg_seed_entropy_len + 0x00000000400d2c70 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ctr_drbg_seed + 0x00000000400d2c70 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ctr_drbg_random_with_add + 0x00000000400d2c70 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_ctr_drbg_random + 0x00000000400d2c70 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x4 (size before relaxing) + .literal.ecp_check_pubkey_mx + 0x00000000400d2c70 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8 (size before relaxing) + .literal.ecp_modp + 0x00000000400d2c74 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x20 (size before relaxing) + .literal.ecp_randomize_mxz + 0x00000000400d2c78 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x30 (size before relaxing) + .literal.ecp_randomize_jac + 0x00000000400d2c80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x50 (size before relaxing) + .literal.ecp_double_add_mxz + 0x00000000400d2c80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xf8 (size before relaxing) + .literal.ecp_normalize_mxz + 0x00000000400d2c80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x14 (size before relaxing) + .literal.ecp_normalize_jac + 0x00000000400d2c80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x40 (size before relaxing) + .literal.ecp_double_jac + 0x00000000400d2c80 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x134 (size before relaxing) + .literal.ecp_normalize_jac_many + 0x00000000400d2c84 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x84 (size before relaxing) + .literal.ecp_safe_invert_jac + 0x00000000400d2c88 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x14 (size before relaxing) + .literal.ecp_select_comb + 0x00000000400d2c88 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.ecp_comb_recode_core + 0x00000000400d2c88 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8 (size before relaxing) + .literal.ecp_comb_recode_scalar + 0x00000000400d2c88 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x2c (size before relaxing) + .literal.ecp_check_pubkey_sw + 0x00000000400d2c88 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x68 (size before relaxing) + .literal.mbedtls_ecp_curve_list + 0x00000000400d2c88 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .literal.mbedtls_ecp_grp_id_list + 0x00000000400d2c8c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_curve_info_from_grp_id + 0x00000000400d2c94 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_curve_info_from_tls_id + 0x00000000400d2c94 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_curve_info_from_name + 0x00000000400d2c94 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ecp_point_init + 0x00000000400d2c98 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_group_init + 0x00000000400d2c98 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ecp_keypair_init + 0x00000000400d2c98 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_point_free + 0x00000000400d2c98 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_group_free + 0x00000000400d2c98 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_ecp_keypair_free + 0x00000000400d2c98 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_copy + 0x00000000400d2c98 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.ecp_mul_mxz + 0x00000000400d2c98 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x50 (size before relaxing) + .literal.mbedtls_ecp_group_copy + 0x00000000400d2c98 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_set_zero + 0x00000000400d2c98 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.ecp_add_mixed + 0x00000000400d2c98 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x120 (size before relaxing) + .literal.ecp_precompute_comb + 0x00000000400d2c9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x18 (size before relaxing) + .literal.ecp_mul_comb_core + 0x00000000400d2c9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x20 (size before relaxing) + .literal.ecp_mul_comb_after_precomp + 0x00000000400d2c9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x10 (size before relaxing) + .literal.ecp_mul_comb + 0x00000000400d2c9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_ecp_is_zero + 0x00000000400d2c9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_point_cmp + 0x00000000400d2c9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ecp_point_write_binary + 0x00000000400d2c9c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_ecp_point_read_binary + 0x00000000400d2ca0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_ecp_tls_read_point + 0x00000000400d2ca4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ecp_tls_write_point + 0x00000000400d2ca4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ecp_tls_read_group_id + 0x00000000400d2ca4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_tls_write_group + 0x00000000400d2ca4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecp_check_pubkey + 0x00000000400d2ca4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ecp_check_privkey + 0x00000000400d2ca4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_ecp_mul_restartable + 0x00000000400d2ca4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ecp_mul + 0x00000000400d2ca4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_mul_shortcuts + 0x00000000400d2ca4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_ecp_muladd_restartable + 0x00000000400d2ca4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_ecp_muladd + 0x00000000400d2ca4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_gen_privkey + 0x00000000400d2ca4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x38 (size before relaxing) + .literal.mbedtls_ecp_gen_keypair_base + 0x00000000400d2ca4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ecp_gen_keypair + 0x00000000400d2ca4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecp_gen_key + 0x00000000400d2ca4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ecp_check_pub_priv + 0x00000000400d2ca4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x34 (size before relaxing) + .literal.ecp_mod_p255 + 0x00000000400d2ca4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x18 (size before relaxing) + .literal.ecp_mod_p521 + 0x00000000400d2ca4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0xc (size before relaxing) + .literal.ecp_mod_p192 + 0x00000000400d2ca4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x4 (size before relaxing) + .literal.ecp_mod_p384 + 0x00000000400d2ca4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0xc (size before relaxing) + .literal.ecp_group_load + 0x00000000400d2ca8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0xc (size before relaxing) + .literal.ecp_use_curve25519 + 0x00000000400d2cac 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x34 (size before relaxing) + .literal.ecp_mod_p224 + 0x00000000400d2cb4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0xc (size before relaxing) + .literal.ecp_mod_p256 + 0x00000000400d2cb4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0xc (size before relaxing) + .literal.ecp_mod_p192k1 + 0x00000000400d2cb4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x1c (size before relaxing) + .literal.ecp_mod_p256k1 + 0x00000000400d2cb8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x1c (size before relaxing) + .literal.ecp_mod_p224k1 + 0x00000000400d2cbc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_ecp_group_load + 0x00000000400d2cc0 0x11c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x158 (size before relaxing) + .literal.entropy_update + 0x00000000400d2ddc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x14 (size before relaxing) + .literal.entropy_gather_internal + 0x00000000400d2ddc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_entropy_free + 0x00000000400d2ddc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_entropy_init + 0x00000000400d2ddc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_entropy_func + 0x00000000400d2de0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x28 (size before relaxing) + .literal.mbedtls_strerror + 0x00000000400d2de0 0x5a4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) + 0x8ec (size before relaxing) + .literal.mbedtls_md_info_from_type + 0x00000000400d3384 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .literal.mbedtls_md_free + 0x00000000400d33a0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_md_setup + 0x00000000400d33a0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_md_starts + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_md_update + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_md_finish + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_md + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_md_hmac_starts + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_md_hmac_update + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_md_hmac_finish + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_md_hmac_reset + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_md_process + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x4 (size before relaxing) + .literal.md5_process_wrap + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.md5_clone_wrap + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.md5_ctx_free + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x8 (size before relaxing) + .literal.md5_ctx_alloc + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x8 (size before relaxing) + .literal.md5_finish_wrap + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.md5_update_wrap + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.md5_starts_wrap + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha1_process_wrap + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha1_clone_wrap + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha1_ctx_free + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x8 (size before relaxing) + .literal.sha1_ctx_alloc + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x8 (size before relaxing) + .literal.sha1_finish_wrap + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha1_update_wrap + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha1_starts_wrap + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha224_process_wrap + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha224_clone_wrap + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha224_ctx_free + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x8 (size before relaxing) + .literal.sha224_ctx_alloc + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x8 (size before relaxing) + .literal.sha224_wrap + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha256_wrap + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha224_finish_wrap + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha224_update_wrap + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha224_starts_wrap + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha256_starts_wrap + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha384_process_wrap + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha384_clone_wrap + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha384_ctx_free + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x8 (size before relaxing) + .literal.sha384_ctx_alloc + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x8 (size before relaxing) + .literal.sha384_wrap + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha512_wrap + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha384_finish_wrap + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha384_update_wrap + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha384_starts_wrap + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.sha512_starts_wrap + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_pk_free + 0x00000000400d33a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_pk_info_from_type + 0x00000000400d33a8 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_setup + 0x00000000400d33b8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .literal.mbedtls_pk_verify_restartable + 0x00000000400d33c0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_pk_verify + 0x00000000400d33c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_pk_sign_restartable + 0x00000000400d33c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_pk_sign + 0x00000000400d33c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_pk_decrypt + 0x00000000400d33c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_pk_encrypt + 0x00000000400d33c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_pk_check_pair + 0x00000000400d33c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_pk_verify_ext + 0x00000000400d33c4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x24 (size before relaxing) + .literal.rsa_debug + 0x00000000400d33cc 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.eckey_debug + 0x00000000400d33d4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .literal.rsa_free_wrap + 0x00000000400d33d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.rsa_alloc_wrap + 0x00000000400d33d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.rsa_check_pair_wrap + 0x00000000400d33d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x4 (size before relaxing) + .literal.rsa_get_bitlen + 0x00000000400d33d8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x4 (size before relaxing) + .literal.rsa_encrypt_wrap + 0x00000000400d33d8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0xc (size before relaxing) + .literal.rsa_decrypt_wrap + 0x00000000400d33dc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0xc (size before relaxing) + .literal.rsa_sign_wrap + 0x00000000400d33e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.rsa_verify_wrap + 0x00000000400d33e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x10 (size before relaxing) + .literal.eckey_free_wrap + 0x00000000400d33e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.eckey_alloc_wrap + 0x00000000400d33e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.eckey_check_pair + 0x00000000400d33e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x4 (size before relaxing) + .literal.ecdsa_alloc_wrap + 0x00000000400d33e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.ecdsa_free_wrap + 0x00000000400d33e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x8 (size before relaxing) + .literal.ecdsa_sign_wrap + 0x00000000400d33e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x4 (size before relaxing) + .literal.eckey_sign_wrap + 0x00000000400d33e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x10 (size before relaxing) + .literal.ecdsa_verify_wrap + 0x00000000400d33e0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0xc (size before relaxing) + .literal.eckey_verify_wrap + 0x00000000400d33e4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x10 (size before relaxing) + .literal.pkcs5_parse_pbkdf2_params + 0x00000000400d33e4 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_pkcs5_pbkdf2_hmac + 0x00000000400d33f0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x28 (size before relaxing) + .literal.mbedtls_pkcs5_pbes2 + 0x00000000400d33f4 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x58 (size before relaxing) + .literal.pk_get_ecparams + 0x00000000400d3404 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x10 (size before relaxing) + .literal.pk_get_pk_alg + 0x00000000400d3410 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x10 (size before relaxing) + .literal.pk_get_rsapubkey + 0x00000000400d3418 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x24 (size before relaxing) + .literal.pk_group_from_specified + 0x00000000400d3420 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x64 (size before relaxing) + .literal.pk_group_id_from_group + 0x00000000400d342c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x38 (size before relaxing) + .literal.pk_group_id_from_specified + 0x00000000400d342c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x10 (size before relaxing) + .literal.pk_use_ecparams + 0x00000000400d342c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x14 (size before relaxing) + .literal.pk_get_ecpubkey + 0x00000000400d3430 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x8 (size before relaxing) + .literal.pk_parse_key_pkcs1_der + 0x00000000400d3430 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x5c (size before relaxing) + .literal.pk_parse_key_sec1_der + 0x00000000400d3434 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x58 (size before relaxing) + .literal.pk_parse_key_pkcs8_unencrypted_der + 0x00000000400d3434 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x38 (size before relaxing) + .literal.pk_parse_key_pkcs8_encrypted_der + 0x00000000400d3434 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x44 (size before relaxing) + .literal.mbedtls_pk_load_file + 0x00000000400d3448 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x44 (size before relaxing) + .literal.mbedtls_pk_parse_subpubkey + 0x00000000400d345c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_pk_parse_key + 0x00000000400d345c 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0xdc (size before relaxing) + .literal.mbedtls_pk_parse_keyfile + 0x00000000400d3488 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x18 (size before relaxing) + .literal.pk_write_rsa_pubkey + 0x00000000400d348c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0x20 (size before relaxing) + .literal.pk_write_ec_pubkey + 0x00000000400d348c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0x8 (size before relaxing) + .literal.pk_write_ec_param + 0x00000000400d348c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_pk_write_pubkey + 0x00000000400d348c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_pk_write_pubkey_der + 0x00000000400d348c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0x28 (size before relaxing) + .literal.mbedtls_pk_write_key_der + 0x00000000400d348c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0x90 (size before relaxing) + .literal.mbedtls_pk_write_key_pem + 0x00000000400d348c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_calloc + 0x00000000400d34a4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .literal.mbedtls_free + 0x00000000400d34a8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .literal.mbedtls_platform_zeroize + 0x00000000400d34ac 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .literal.if_int + 0x00000000400d34b0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x4 (size before relaxing) + .literal.mem_move_to_left + 0x00000000400d34b0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xc (size before relaxing) + .literal.rsa_check_context + 0x00000000400d34b0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x30 (size before relaxing) + .literal.rsa_prepare_blinding + 0x00000000400d34b0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x28 (size before relaxing) + .literal.mgf_mask + 0x00000000400d34b4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x1c (size before relaxing) + .literal.rsa_rsassa_pkcs1_v15_encode + 0x00000000400d34b8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_rsa_import_raw + 0x00000000400d34c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_rsa_complete + 0x00000000400d34c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x30 (size before relaxing) + .literal.mbedtls_rsa_export + 0x00000000400d34c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_rsa_export_crt + 0x00000000400d34c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_rsa_init + 0x00000000400d34c0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_rsa_check_pubkey + 0x00000000400d34c0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_rsa_check_privkey + 0x00000000400d34c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_rsa_check_pub_priv + 0x00000000400d34c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x14 (size before relaxing) + .text.esp_ota_get_app_description + 0x00000000400d34c4 0x8 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + 0x00000000400d34c4 esp_ota_get_app_description + .text.esp_pthread_cfg_key_destructor + 0x00000000400d34cc 0xa esp-idf/pthread/libpthread.a(pthread.c.obj) + 0xe (size before relaxing) + *fill* 0x00000000400d34d6 0x2 + .text.esp_pthread_init + 0x00000000400d34d8 0x36 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x3e (size before relaxing) + 0x00000000400d34d8 esp_pthread_init + *fill* 0x00000000400d350e 0x2 + .text.pthread_cancel + 0x00000000400d3510 0x1e esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x22 (size before relaxing) + 0x00000000400d3510 pthread_cancel + *fill* 0x00000000400d352e 0x2 + .text.pthread_mutex_init + 0x00000000400d3530 0x68 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x70 (size before relaxing) + 0x00000000400d3530 pthread_mutex_init + .text.pthread_mutex_init_if_static + 0x00000000400d3598 0x30 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x38 (size before relaxing) + .text.find_key + 0x00000000400d35c8 0x28 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x2b (size before relaxing) + *fill* 0x00000000400d35f0 0x0 + .text.pthread_local_storage_thread_deleted_callback + 0x00000000400d35f0 0x46 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x4a (size before relaxing) + *fill* 0x00000000400d3636 0x2 + .text.pthread_key_create + 0x00000000400d3638 0x48 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x4c (size before relaxing) + 0x00000000400d3638 pthread_key_create + .text.pthread_key_delete + 0x00000000400d3680 0x3a esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x45 (size before relaxing) + 0x00000000400d3680 pthread_key_delete + *fill* 0x00000000400d36ba 0x2 + .text.pthread_getspecific + 0x00000000400d36bc 0x25 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x29 (size before relaxing) + 0x00000000400d36bc pthread_getspecific + *fill* 0x00000000400d36e1 0x3 + .text.pthread_setspecific + 0x00000000400d36e4 0x95 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0xa5 (size before relaxing) + 0x00000000400d36e4 pthread_setspecific + *fill* 0x00000000400d3779 0x3 + .text.cpu_configure_region_protection + 0x00000000400d377c 0x42 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + *fill* 0x00000000400d37be 0x2 + .text.do_global_ctors + 0x00000000400d37c0 0x19 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + *fill* 0x00000000400d37d9 0x3 + .text.main_task + 0x00000000400d37dc 0x6c esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0x90 (size before relaxing) + .text.intr_matrix_clear + 0x00000000400d3848 0x29 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + *fill* 0x00000000400d3871 0x3 + .text.wdt_reset_cpu1_info_enable + 0x00000000400d3874 0x29 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0x2d (size before relaxing) + *fill* 0x00000000400d389d 0x3 + .text.esp_crosscore_int_init + 0x00000000400d38a0 0x6e esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + 0x76 (size before relaxing) + 0x00000000400d38a0 esp_crosscore_int_init + *fill* 0x00000000400d390e 0x2 + .text.dport_access_init_core + 0x00000000400d3910 0x62 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x6a (size before relaxing) + *fill* 0x00000000400d3972 0x2 + .text.esp_dport_access_int_init + 0x00000000400d3974 0x37 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x00000000400d3974 esp_dport_access_int_init + *fill* 0x00000000400d39ab 0x1 + .text.esp_int_wdt_init + 0x00000000400d39ac 0xee esp-idf/esp32/libesp32.a(int_wdt.c.obj) + 0xf2 (size before relaxing) + 0x00000000400d39ac esp_int_wdt_init + *fill* 0x00000000400d3a9a 0x2 + .text.esp_int_wdt_cpu_init + 0x00000000400d3a9c 0x2f esp-idf/esp32/libesp32.a(int_wdt.c.obj) + 0x37 (size before relaxing) + 0x00000000400d3a9c esp_int_wdt_cpu_init + *fill* 0x00000000400d3acb 0x1 + .text.insert_vector_desc + 0x00000000400d3acc 0x50 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .text.find_desc_for_int + 0x00000000400d3b1c 0x25 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + *fill* 0x00000000400d3b41 0x3 + .text.int_has_handler + 0x00000000400d3b44 0x23 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + *fill* 0x00000000400d3b67 0x1 + .text.get_desc_for_int + 0x00000000400d3b68 0x6c esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x74 (size before relaxing) + .text.find_desc_for_source + 0x00000000400d3bd4 0x6c esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .text.is_vect_desc_usable + 0x00000000400d3c40 0xe0 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .text.get_available_int + 0x00000000400d3d20 0x158 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x164 (size before relaxing) + .text.esp_intr_alloc_intrstatus + 0x00000000400d3e78 0x281 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x2a5 (size before relaxing) + 0x00000000400d3e78 esp_intr_alloc_intrstatus + *fill* 0x00000000400d40f9 0x3 + .text.esp_intr_alloc + 0x00000000400d40fc 0x18 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x1c (size before relaxing) + 0x00000000400d40fc esp_intr_alloc + .text.esp_intr_free + 0x00000000400d4114 0xee esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0xfe (size before relaxing) + 0x00000000400d4114 esp_intr_free + *fill* 0x00000000400d4202 0x2 + .text.esp_intr_free_cb + 0x00000000400d4204 0xa esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0xe (size before relaxing) + *fill* 0x00000000400d420e 0x2 + .text.esp_chip_info + 0x00000000400d4210 0x7b esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + 0x7f (size before relaxing) + 0x00000000400d4210 esp_chip_info + *fill* 0x00000000400d428b 0x1 + .text.find_task_in_twdt_list + 0x00000000400d428c 0x2f esp-idf/esp32/libesp32.a(task_wdt.c.obj) + *fill* 0x00000000400d42bb 0x1 + .text.reset_hw_timer + 0x00000000400d42bc 0x35 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + *fill* 0x00000000400d42f1 0x3 + .text.task_wdt_isr + 0x00000000400d42f4 0x12e esp-idf/esp32/libesp32.a(task_wdt.c.obj) + 0x156 (size before relaxing) + *fill* 0x00000000400d4422 0x2 + .text.esp_task_wdt_init + 0x00000000400d4424 0x1c5 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + 0x1d5 (size before relaxing) + 0x00000000400d4424 esp_task_wdt_init + *fill* 0x00000000400d45e9 0x3 + .text.esp_task_wdt_add + 0x00000000400d45ec 0xb6 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + 0xd5 (size before relaxing) + 0x00000000400d45ec esp_task_wdt_add + *fill* 0x00000000400d46a2 0x2 + .text.esp_task_wdt_reset + 0x00000000400d46a4 0x4f esp-idf/esp32/libesp32.a(task_wdt.c.obj) + 0x61 (size before relaxing) + 0x00000000400d46a4 esp_task_wdt_reset + *fill* 0x00000000400d46f3 0x1 + .text.idle_hook_cb + 0x00000000400d46f4 0xa esp-idf/esp32/libesp32.a(task_wdt.c.obj) + 0xd (size before relaxing) + *fill* 0x00000000400d46fe 0x2 + .text.esp_cache_err_int_init + 0x00000000400d4700 0x56 esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + 0x5e (size before relaxing) + 0x00000000400d4700 esp_cache_err_int_init + *fill* 0x00000000400d4756 0x2 + .text.select_rtc_slow_clk + 0x00000000400d4758 0x67 esp-idf/esp32/libesp32.a(clk.c.obj) + 0x7b (size before relaxing) + *fill* 0x00000000400d47bf 0x1 + .text.esp_clk_init + 0x00000000400d47c0 0xa9 esp-idf/esp32/libesp32.a(clk.c.obj) + 0xd9 (size before relaxing) + 0x00000000400d47c0 esp_clk_init + *fill* 0x00000000400d4869 0x3 + .text.esp_perip_clk_init + 0x00000000400d486c 0xde esp-idf/esp32/libesp32.a(clk.c.obj) + 0x10a (size before relaxing) + 0x00000000400d486c esp_perip_clk_init + *fill* 0x00000000400d494a 0x2 + .text.rtc_brownout_isr_handler + 0x00000000400d494c 0x29 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + 0x35 (size before relaxing) + *fill* 0x00000000400d4975 0x3 + .text.esp_brownout_init + 0x00000000400d4978 0x37 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + 0x43 (size before relaxing) + 0x00000000400d4978 esp_brownout_init + *fill* 0x00000000400d49af 0x1 + .text.esp_err_to_name + 0x00000000400d49b0 0x2d esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + 0x00000000400d49b0 esp_err_to_name + *fill* 0x00000000400d49dd 0x3 + .text.esp_vApplicationIdleHook + 0x00000000400d49e0 0x37 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + 0x00000000400d49e0 esp_vApplicationIdleHook + *fill* 0x00000000400d4a17 0x1 + .text.esp_register_freertos_idle_hook_for_cpu + 0x00000000400d4a18 0x59 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + 0x5d (size before relaxing) + 0x00000000400d4a18 esp_register_freertos_idle_hook_for_cpu + *fill* 0x00000000400d4a71 0x3 + .text.esp_register_freertos_tick_hook_for_cpu + 0x00000000400d4a74 0x5a esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + 0x00000000400d4a74 esp_register_freertos_tick_hook_for_cpu + *fill* 0x00000000400d4ace 0x2 + .text.esp_ipc_call_and_wait + 0x00000000400d4ad0 0xb5 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + 0xd5 (size before relaxing) + *fill* 0x00000000400d4b85 0x3 + .text.esp_ipc_init + 0x00000000400d4b88 0x7d esp-idf/esp_common/libesp_common.a(ipc.c.obj) + 0x89 (size before relaxing) + *fill* 0x00000000400d4c05 0x3 + .text.esp_ipc_call + 0x00000000400d4c08 0x15 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + 0x00000000400d4c08 esp_ipc_call + *fill* 0x00000000400d4c1d 0x3 + .text.esp_ipc_call_blocking + 0x00000000400d4c20 0x15 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + 0x00000000400d4c20 esp_ipc_call_blocking + *fill* 0x00000000400d4c35 0x3 + .text.timer_process_alarm + 0x00000000400d4c38 0xba esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0xcd (size before relaxing) + *fill* 0x00000000400d4cf2 0x2 + .text.timer_task + 0x00000000400d4cf4 0x31 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x34 (size before relaxing) + *fill* 0x00000000400d4d25 0x3 + .text.esp_timer_create + 0x00000000400d4d28 0x49 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x4d (size before relaxing) + 0x00000000400d4d28 esp_timer_create + *fill* 0x00000000400d4d71 0x3 + .text.esp_timer_init + 0x00000000400d4d74 0x7a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x86 (size before relaxing) + 0x00000000400d4d74 esp_timer_init + *fill* 0x00000000400d4dee 0x2 + .text.esp_timer_delete + 0x00000000400d4df0 0x41 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x51 (size before relaxing) + 0x00000000400d4df0 esp_timer_delete + *fill* 0x00000000400d4e31 0x3 + .text.esp_timer_impl_lock + 0x00000000400d4e34 0xb esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0xe (size before relaxing) + 0x00000000400d4e34 esp_timer_private_lock + 0x00000000400d4e34 esp_timer_impl_lock + *fill* 0x00000000400d4e3f 0x1 + .text.esp_timer_impl_unlock + 0x00000000400d4e40 0xb esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0xe (size before relaxing) + 0x00000000400d4e40 esp_timer_impl_unlock + 0x00000000400d4e40 esp_timer_private_unlock + *fill* 0x00000000400d4e4b 0x1 + .text.esp_timer_impl_advance + 0x00000000400d4e4c 0x4a esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x52 (size before relaxing) + 0x00000000400d4e4c esp_timer_impl_advance + 0x00000000400d4e4c esp_timer_private_advance + *fill* 0x00000000400d4e96 0x2 + .text.esp_timer_impl_init + 0x00000000400d4e98 0xf2 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x10a (size before relaxing) + 0x00000000400d4e98 esp_timer_impl_init + *fill* 0x00000000400d4f8a 0x2 + .text.get_vfs_for_fd + 0x00000000400d4f8c 0x3e esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x00000000400d4fca 0x2 + .text.call_end_selects + 0x00000000400d4fcc 0x4f esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x00000000400d501b 0x1 + .text.set_global_fd_sets + 0x00000000400d501c 0x114 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_common + 0x00000000400d5130 0xf6 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xfa (size before relaxing) + *fill* 0x00000000400d5226 0x2 + .text.get_vfs_for_path + 0x00000000400d5228 0x70 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.translate_path + 0x00000000400d5298 0x3e esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x00000000400d52d6 0x2 + .text.esp_vfs_register + 0x00000000400d52d8 0x1c esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x20 (size before relaxing) + 0x00000000400d52d8 esp_vfs_register + .text.esp_vfs_register_fd_range + 0x00000000400d52f4 0x10a esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x112 (size before relaxing) + 0x00000000400d52f4 esp_vfs_register_fd_range + *fill* 0x00000000400d53fe 0x2 + .text.esp_vfs_unregister + 0x00000000400d5400 0xa8 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xb0 (size before relaxing) + 0x00000000400d5400 esp_vfs_unregister + .text.esp_vfs_open + 0x00000000400d54a8 0xd4 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xd8 (size before relaxing) + 0x00000000400d54a8 esp_vfs_open + 0x00000000400d54a8 _open_r + .text.esp_vfs_write + 0x00000000400d557c 0x74 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x78 (size before relaxing) + 0x00000000400d557c esp_vfs_write + 0x00000000400d557c _write_r + .text.esp_vfs_lseek + 0x00000000400d55f0 0x74 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x78 (size before relaxing) + 0x00000000400d55f0 _lseek_r + 0x00000000400d55f0 esp_vfs_lseek + .text.esp_vfs_read + 0x00000000400d5664 0x74 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x78 (size before relaxing) + 0x00000000400d5664 esp_vfs_read + 0x00000000400d5664 _read_r + .text.esp_vfs_close + 0x00000000400d56d8 0xa0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xab (size before relaxing) + 0x00000000400d56d8 _close_r + 0x00000000400d56d8 esp_vfs_close + *fill* 0x00000000400d5778 0x0 + .text.esp_vfs_fstat + 0x00000000400d5778 0x70 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x74 (size before relaxing) + 0x00000000400d5778 esp_vfs_fstat + 0x00000000400d5778 _fstat_r + .text.esp_vfs_stat + 0x00000000400d57e8 0x47 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4b (size before relaxing) + 0x00000000400d57e8 esp_vfs_stat + 0x00000000400d57e8 _stat_r + *fill* 0x00000000400d582f 0x1 + .text.esp_vfs_link + 0x00000000400d5830 0x68 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x70 (size before relaxing) + 0x00000000400d5830 _link_r + 0x00000000400d5830 esp_vfs_link + .text.esp_vfs_unlink + 0x00000000400d5898 0x44 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x48 (size before relaxing) + 0x00000000400d5898 _unlink_r + 0x00000000400d5898 esp_vfs_unlink + .text.esp_vfs_rename + 0x00000000400d58dc 0x68 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x70 (size before relaxing) + 0x00000000400d58dc _rename_r + 0x00000000400d58dc esp_vfs_rename + .text._fcntl_r + 0x00000000400d5944 0x76 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x7a (size before relaxing) + 0x00000000400d5944 _fcntl_r + *fill* 0x00000000400d59ba 0x2 + .text.fsync 0x00000000400d59bc 0x73 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x77 (size before relaxing) + 0x00000000400d59bc fsync + *fill* 0x00000000400d5a2f 0x1 + .text.esp_vfs_select + 0x00000000400d5a30 0x42a esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x45a (size before relaxing) + 0x00000000400d5a30 esp_vfs_select + *fill* 0x00000000400d5e5a 0x2 + .text.esp_vfs_select_triggered + 0x00000000400d5e5c 0x49 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4d (size before relaxing) + 0x00000000400d5e5c esp_vfs_select_triggered + *fill* 0x00000000400d5ea5 0x3 + .text.esp_vfs_select_triggered_isr + 0x00000000400d5ea8 0x45 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x49 (size before relaxing) + 0x00000000400d5ea8 esp_vfs_select_triggered_isr + *fill* 0x00000000400d5eed 0x3 + .text.uart_tx_char + 0x00000000400d5ef0 0x29 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x00000000400d5f19 0x3 + .text.uart_rx_char + 0x00000000400d5f1c 0x26 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x00000000400d5f42 0x2 + .text.uart_read_char + 0x00000000400d5f44 0x24 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.unregister_select + 0x00000000400d5f68 0x68 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x6c (size before relaxing) + .text.uart_end_select + 0x00000000400d5fd0 0x34 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x48 (size before relaxing) + .text.register_select + 0x00000000400d6004 0x49 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x4d (size before relaxing) + *fill* 0x00000000400d604d 0x3 + .text.uart_start_select + 0x00000000400d6050 0x179 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x199 (size before relaxing) + *fill* 0x00000000400d61c9 0x3 + .text.select_notif_callback_isr + 0x00000000400d61cc 0xde esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0xe2 (size before relaxing) + *fill* 0x00000000400d62aa 0x2 + .text.uart_tcflush + 0x00000000400d62ac 0x41 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x00000000400d62ed 0x3 + .text.uart_tcdrain + 0x00000000400d62f0 0x35 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x00000000400d6325 0x3 + .text.uart_tcgetattr + 0x00000000400d6328 0x384 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_tcsetattr + 0x00000000400d66ac 0x27d esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x00000000400d6929 0x3 + .text.uart_access + 0x00000000400d692c 0x5a esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x00000000400d6986 0x2 + .text.uart_open + 0x00000000400d6988 0x64 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_fcntl + 0x00000000400d69ec 0x65 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x00000000400d6a51 0x3 + .text.uart_fstat + 0x00000000400d6a54 0x21 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x00000000400d6a75 0x3 + .text.uart_close + 0x00000000400d6a78 0x1c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_return_char + 0x00000000400d6a94 0x28 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_fsync + 0x00000000400d6abc 0x82 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x86 (size before relaxing) + *fill* 0x00000000400d6b3e 0x2 + .text.uart_read + 0x00000000400d6b40 0xb2 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0xbe (size before relaxing) + *fill* 0x00000000400d6bf2 0x2 + .text.uart_write + 0x00000000400d6bf4 0x8c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x90 (size before relaxing) + .text.uart_rx_char_via_driver + 0x00000000400d6c80 0x32 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x00000000400d6cb2 0x2 + .text.uart_tx_char_via_driver + 0x00000000400d6cb4 0x14 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_register + 0x00000000400d6cc8 0x7e esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x82 (size before relaxing) + 0x00000000400d6cc8 esp_vfs_dev_uart_register + *fill* 0x00000000400d6d46 0x2 + .text.esp_vfs_dev_uart_set_rx_line_endings + 0x00000000400d6d48 0x1b esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x00000000400d6d48 esp_vfs_dev_uart_set_rx_line_endings + *fill* 0x00000000400d6d63 0x1 + .text.esp_vfs_dev_uart_set_tx_line_endings + 0x00000000400d6d64 0x1b esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x00000000400d6d64 esp_vfs_dev_uart_set_tx_line_endings + *fill* 0x00000000400d6d7f 0x1 + .text.esp_vfs_dev_uart_use_driver + 0x00000000400d6d80 0x34 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x40 (size before relaxing) + 0x00000000400d6d80 esp_vfs_dev_uart_use_driver + .text.raise_r_stub + 0x00000000400d6db4 0xf esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + *fill* 0x00000000400d6dc3 0x1 + .text.esp_setup_syscall_table + 0x00000000400d6dc4 0x2b esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + 0x00000000400d6dc4 esp_setup_syscall_table + *fill* 0x00000000400d6def 0x1 + .text._raise_r + 0x00000000400d6df0 0x6 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x9 (size before relaxing) + 0x00000000400d6df0 _raise_r + *fill* 0x00000000400d6df6 0x2 + .text._sbrk_r 0x00000000400d6df8 0x6 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x9 (size before relaxing) + 0x00000000400d6df8 _sbrk_r + *fill* 0x00000000400d6dfe 0x2 + .text.fcntl 0x00000000400d6e00 0x32 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x36 (size before relaxing) + 0x00000000400d6e00 fcntl + *fill* 0x00000000400d6e32 0x2 + .text.get_boot_time + 0x00000000400d6e34 0x23 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x27 (size before relaxing) + *fill* 0x00000000400d6e57 0x1 + .text.set_boot_time + 0x00000000400d6e58 0x24 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x28 (size before relaxing) + .text.get_time_since_boot + 0x00000000400d6e7c 0x1f esp-idf/newlib/libnewlib.a(time.c.obj) + *fill* 0x00000000400d6e9b 0x1 + .text.adjust_boot_time + 0x00000000400d6e9c 0x146 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x14a (size before relaxing) + *fill* 0x00000000400d6fe2 0x2 + .text.get_adjusted_boot_time + 0x00000000400d6fe4 0x1e esp-idf/newlib/libnewlib.a(time.c.obj) + 0x26 (size before relaxing) + *fill* 0x00000000400d7002 0x2 + .text.adjtime_corr_stop + 0x00000000400d7004 0x2d esp-idf/newlib/libnewlib.a(time.c.obj) + 0x38 (size before relaxing) + *fill* 0x00000000400d7031 0x3 + .text.esp_clk_slowclk_cal_set + 0x00000000400d7034 0x6a esp-idf/newlib/libnewlib.a(time.c.obj) + 0x6e (size before relaxing) + 0x00000000400d7034 esp_clk_slowclk_cal_set + *fill* 0x00000000400d709e 0x2 + .text.esp_clk_slowclk_cal_get + 0x00000000400d70a0 0xd esp-idf/newlib/libnewlib.a(time.c.obj) + 0x00000000400d70a0 esp_clk_slowclk_cal_get + *fill* 0x00000000400d70ad 0x3 + .text.get_rtc_time_us + 0x00000000400d70b0 0x43 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x47 (size before relaxing) + *fill* 0x00000000400d70f3 0x1 + .text.esp_set_time_from_rtc + 0x00000000400d70f4 0x27 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x2f (size before relaxing) + 0x00000000400d70f4 esp_set_time_from_rtc + *fill* 0x00000000400d711b 0x1 + .text.usleep 0x00000000400d711c 0x2c esp-idf/newlib/libnewlib.a(time.c.obj) + 0x00000000400d711c usleep + .text.sleep 0x00000000400d7148 0x10 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x13 (size before relaxing) + 0x00000000400d7148 sleep + *fill* 0x00000000400d7158 0x0 + .text.esp_sync_counters_rtc_and_frc + 0x00000000400d7158 0x58 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x60 (size before relaxing) + 0x00000000400d7158 esp_sync_counters_rtc_and_frc + .text.__cxx_fatal_exception + 0x00000000400d71b0 0x6 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x9 (size before relaxing) + 0x00000000400d71b0 __cxa_end_catch + 0x00000000400d71b0 __cxa_allocate_exception + 0x00000000400d71b0 __cxa_get_exception_ptr + 0x00000000400d71b0 __cxa_call_terminate + 0x00000000400d71b0 __cxa_free_dependent_exception + 0x00000000400d71b0 __cxx_fatal_exception + 0x00000000400d71b0 __cxa_begin_catch + 0x00000000400d71b0 __cxa_rethrow + 0x00000000400d71b0 __cxa_throw + 0x00000000400d71b0 __cxa_allocate_dependent_exception + 0x00000000400d71b0 __cxa_free_exception + *fill* 0x00000000400d71b6 0x2 + .text.initialize_nvs + 0x00000000400d71b8 0x53 esp-idf/main/libmain.a(main.c.obj) + 0x5f (size before relaxing) + *fill* 0x00000000400d720b 0x1 + .text.initialize_filesystem + 0x00000000400d720c 0x42 esp-idf/main/libmain.a(main.c.obj) + 0x4e (size before relaxing) + *fill* 0x00000000400d724e 0x2 + .text.initialize_console + 0x00000000400d7250 0xda esp-idf/main/libmain.a(main.c.obj) + 0x112 (size before relaxing) + *fill* 0x00000000400d732a 0x2 + .text.app_main + 0x00000000400d732c 0xf1 esp-idf/main/libmain.a(main.c.obj) + 0x137 (size before relaxing) + 0x00000000400d732c app_main + *fill* 0x00000000400d741d 0x3 + .text.write_certificate + 0x00000000400d7420 0x6c esp-idf/ca/libca.a(ca.c.obj) + 0x74 (size before relaxing) + 0x00000000400d7420 write_certificate + .text.connect 0x00000000400d748c 0xd66 esp-idf/ca/libca.a(ca.c.obj) + 0xe26 (size before relaxing) + *fill* 0x00000000400d81f2 0x2 + .text.register_ca + 0x00000000400d81f4 0x2a esp-idf/ca/libca.a(ca.c.obj) + 0x2e (size before relaxing) + 0x00000000400d81f4 register_ca + *fill* 0x00000000400d821e 0x2 + .text.dev_random_entropy_poll + 0x00000000400d8220 0x6a esp-idf/ca/libca.a(gen_key.c.obj) + 0x6e (size before relaxing) + 0x00000000400d8220 dev_random_entropy_poll + *fill* 0x00000000400d828a 0x2 + .text.write_private_key + 0x00000000400d828c 0x8c esp-idf/ca/libca.a(gen_key.c.obj) + 0x94 (size before relaxing) + .text.task_create + 0x00000000400d8318 0x62 esp-idf/ca/libca.a(gen_key.c.obj) + 0x6e (size before relaxing) + 0x00000000400d8318 task_create + *fill* 0x00000000400d837a 0x2 + .text.connect 0x00000000400d837c 0x50a esp-idf/ca/libca.a(gen_key.c.obj) + 0x586 (size before relaxing) + 0x00000000400d837c connect + *fill* 0x00000000400d8886 0x2 + .text.task_run + 0x00000000400d8888 0x13 esp-idf/ca/libca.a(gen_key.c.obj) + 0x17 (size before relaxing) + 0x00000000400d8888 task_run + *fill* 0x00000000400d889b 0x1 + .text.register_gen_key + 0x00000000400d889c 0x2a esp-idf/ca/libca.a(gen_key.c.obj) + 0x2e (size before relaxing) + 0x00000000400d889c register_gen_key + *fill* 0x00000000400d88c6 0x2 + .text.type_to_str + 0x00000000400d88c8 0x2c esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .text.str_to_type + 0x00000000400d88f4 0x35 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + *fill* 0x00000000400d8929 0x3 + .text.list 0x00000000400d892c 0x59 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x6d (size before relaxing) + *fill* 0x00000000400d8985 0x3 + .text.list_entries + 0x00000000400d8988 0x5c esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x60 (size before relaxing) + .text.set_namespace + 0x00000000400d89e4 0x58 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x60 (size before relaxing) + .text.erase_all + 0x00000000400d8a3c 0x51 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x61 (size before relaxing) + *fill* 0x00000000400d8a8d 0x3 + .text.erase_namespace + 0x00000000400d8a90 0x5c esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x6c (size before relaxing) + .text.erase 0x00000000400d8aec 0x43 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x56 (size before relaxing) + *fill* 0x00000000400d8b2f 0x1 + .text.erase_value + 0x00000000400d8b30 0x5c esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x6c (size before relaxing) + .text.print_blob + 0x00000000400d8b8c 0x26 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + *fill* 0x00000000400d8bb2 0x2 + .text.get_value_from_nvs + 0x00000000400d8bb4 0x1de esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x20e (size before relaxing) + *fill* 0x00000000400d8d92 0x2 + .text.get_value + 0x00000000400d8d94 0x60 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x70 (size before relaxing) + .text.store_blob + 0x00000000400d8df4 0xe0 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0xf4 (size before relaxing) + .text.set_value_in_nvs + 0x00000000400d8ed4 0x26d esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x298 (size before relaxing) + *fill* 0x00000000400d9141 0x3 + .text.set_value + 0x00000000400d9144 0x68 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x78 (size before relaxing) + .text.register_nvs + 0x00000000400d91ac 0x1cb esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x227 (size before relaxing) + 0x00000000400d91ac register_nvs + *fill* 0x00000000400d9377 0x1 + .text.register_free + 0x00000000400d9378 0x32 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x36 (size before relaxing) + *fill* 0x00000000400d93aa 0x2 + .text.register_heap + 0x00000000400d93ac 0x32 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x36 (size before relaxing) + *fill* 0x00000000400d93de 0x2 + .text.register_version + 0x00000000400d93e0 0x32 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x36 (size before relaxing) + *fill* 0x00000000400d9412 0x2 + .text.register_restart + 0x00000000400d9414 0x32 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x36 (size before relaxing) + *fill* 0x00000000400d9446 0x2 + .text.register_tasks + 0x00000000400d9448 0x32 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x36 (size before relaxing) + *fill* 0x00000000400d947a 0x2 + .text.free_mem + 0x00000000400d947c 0x18 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + .text.heap_size + 0x00000000400d9494 0x24 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x2c (size before relaxing) + .text.get_version + 0x00000000400d94b8 0xa4 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0xac (size before relaxing) + .text.restart 0x00000000400d955c 0x1a esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x22 (size before relaxing) + *fill* 0x00000000400d9576 0x2 + .text.register_deep_sleep + 0x00000000400d9578 0x63 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x77 (size before relaxing) + *fill* 0x00000000400d95db 0x1 + .text.deep_sleep + 0x00000000400d95dc 0x13b esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x16b (size before relaxing) + *fill* 0x00000000400d9717 0x1 + .text.register_light_sleep + 0x00000000400d9718 0x6e esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x82 (size before relaxing) + *fill* 0x00000000400d9786 0x2 + .text.light_sleep + 0x00000000400d9788 0x1df esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x22f (size before relaxing) + *fill* 0x00000000400d9967 0x1 + .text.tasks_info + 0x00000000400d9968 0x6d esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x85 (size before relaxing) + *fill* 0x00000000400d99d5 0x3 + .text.register_system + 0x00000000400d99d8 0x1b esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x2f (size before relaxing) + 0x00000000400d99d8 register_system + *fill* 0x00000000400d99f3 0x1 + .text.initialise_wifi + 0x00000000400d99f4 0x157 esp-idf/wifi/libwifi.a(wifi.c.obj) + 0x17b (size before relaxing) + *fill* 0x00000000400d9b4b 0x1 + .text.wifi_join + 0x00000000400d9b4c 0x8d esp-idf/wifi/libwifi.a(wifi.c.obj) + 0xa5 (size before relaxing) + *fill* 0x00000000400d9bd9 0x3 + .text.connect 0x00000000400d9bdc 0xa2 esp-idf/wifi/libwifi.a(wifi.c.obj) + 0xb6 (size before relaxing) + *fill* 0x00000000400d9c7e 0x2 + .text.event_handler + 0x00000000400d9c80 0x3a esp-idf/wifi/libwifi.a(wifi.c.obj) + 0x3e (size before relaxing) + *fill* 0x00000000400d9cba 0x2 + .text.register_wifi + 0x00000000400d9cbc 0x63 esp-idf/wifi/libwifi.a(wifi.c.obj) + 0x73 (size before relaxing) + 0x00000000400d9cbc register_wifi + *fill* 0x00000000400d9d1f 0x1 + .text.server_off + 0x00000000400d9d20 0xd esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x10 (size before relaxing) + *fill* 0x00000000400d9d2d 0x3 + .text.connect 0x00000000400d9d30 0x4f esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x53 (size before relaxing) + *fill* 0x00000000400d9d7f 0x1 + .text.stop_webserver + 0x00000000400d9d80 0xa esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0xe (size before relaxing) + *fill* 0x00000000400d9d8a 0x2 + .text.disconnect_handler + 0x00000000400d9d8c 0x13 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + *fill* 0x00000000400d9d9f 0x1 + .text.start_webserver + 0x00000000400d9da0 0x90 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0xb0 (size before relaxing) + .text.connect_handler + 0x00000000400d9e30 0xf esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x12 (size before relaxing) + *fill* 0x00000000400d9e3f 0x1 + .text.echo_post_handler + 0x00000000400d9e40 0x100 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x124 (size before relaxing) + .text.root_get_handler + 0x00000000400d9f40 0x1c esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x20 (size before relaxing) + .text.register_server + 0x00000000400d9f5c 0x4f esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x5b (size before relaxing) + 0x00000000400d9f5c register_server + *fill* 0x00000000400d9fab 0x1 + .text.decode 0x00000000400d9fac 0xb3 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) + 0x00000000400d9fac decode + *fill* 0x00000000400da05f 0x1 + .text.brownout_hal_config + 0x00000000400da060 0xb6 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + 0x00000000400da060 brownout_hal_config + *fill* 0x00000000400da116 0x2 + .text.brownout_hal_intr_enable + 0x00000000400da118 0x21 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + 0x00000000400da118 brownout_hal_intr_enable + *fill* 0x00000000400da139 0x3 + .text.brownout_hal_intr_clear + 0x00000000400da13c 0x1a esp-idf/soc/libsoc.a(brownout_hal.c.obj) + 0x00000000400da13c brownout_hal_intr_clear + *fill* 0x00000000400da156 0x2 + .text.esp_netif_list_lock + 0x00000000400da158 0x35 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x39 (size before relaxing) + 0x00000000400da158 esp_netif_list_lock + *fill* 0x00000000400da18d 0x3 + .text.esp_netif_list_unlock + 0x00000000400da190 0x3c esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x40 (size before relaxing) + 0x00000000400da190 esp_netif_list_unlock + .text.esp_netif_add_to_list + 0x00000000400da1cc 0x36 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x3e (size before relaxing) + 0x00000000400da1cc esp_netif_add_to_list + *fill* 0x00000000400da202 0x2 + .text.esp_netif_remove_from_list + 0x00000000400da204 0x6d esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x78 (size before relaxing) + 0x00000000400da204 esp_netif_remove_from_list + *fill* 0x00000000400da271 0x3 + .text.esp_netif_next_unsafe + 0x00000000400da274 0x36 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x00000000400da274 esp_netif_next_unsafe + *fill* 0x00000000400da2aa 0x2 + .text.esp_netif_is_netif_listed + 0x00000000400da2ac 0x5c esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x6e (size before relaxing) + 0x00000000400da2ac esp_netif_is_netif_listed + *fill* 0x00000000400da308 0x0 + .text.esp_netif_get_handle_from_ifkey + 0x00000000400da308 0x60 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x70 (size before relaxing) + 0x00000000400da308 esp_netif_get_handle_from_ifkey + .text.esp_netif_config_sanity_check + 0x00000000400da368 0x5a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x6a (size before relaxing) + *fill* 0x00000000400da3c2 0x2 + .text.esp_netif_set_ip_old_info_api + 0x00000000400da3c4 0x35 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x00000000400da3f9 0x3 + .text.esp_netif_init_configuration + 0x00000000400da3fc 0x100 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .text.esp_netif_lwip_remove + 0x00000000400da4fc 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x1e (size before relaxing) + *fill* 0x00000000400da514 0x0 + .text.esp_netif_dhcps_cb + 0x00000000400da514 0x6a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x7a (size before relaxing) + *fill* 0x00000000400da57e 0x2 + .text.esp_netif_lwip_add + 0x00000000400da580 0x76 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x86 (size before relaxing) + *fill* 0x00000000400da5f6 0x2 + .text.esp_netif_is_active + 0x00000000400da5f8 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x12 (size before relaxing) + *fill* 0x00000000400da606 0x2 + .text.esp_netif_ip_lost_timer + 0x00000000400da608 0x82 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x92 (size before relaxing) + *fill* 0x00000000400da68a 0x2 + .text.esp_netif_set_default_netif + 0x00000000400da68c 0x1a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x1d (size before relaxing) + *fill* 0x00000000400da6a6 0x2 + .text.esp_netif_api_cb + 0x00000000400da6a8 0x1b esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x00000000400da6c3 0x1 + .text.esp_netif_start_ip_lost_timer + 0x00000000400da6c4 0x29 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x00000000400da6ed 0x3 + .text.esp_netif_dhcpc_start_api + 0x00000000400da6f0 0xc1 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xc9 (size before relaxing) + *fill* 0x00000000400da7b1 0x3 + .text.esp_netif_init + 0x00000000400da7b4 0x85 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x95 (size before relaxing) + 0x00000000400da7b4 esp_netif_init + *fill* 0x00000000400da839 0x3 + .text.esp_netif_destroy + 0x00000000400da83c 0x54 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x6f (size before relaxing) + 0x00000000400da83c esp_netif_destroy + *fill* 0x00000000400da890 0x0 + .text.esp_netif_new + 0x00000000400da890 0x13c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x18c (size before relaxing) + 0x00000000400da890 esp_netif_new + .text.esp_netif_attach + 0x00000000400da9cc 0x36 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x3e (size before relaxing) + 0x00000000400da9cc esp_netif_attach + *fill* 0x00000000400daa02 0x2 + .text.esp_netif_set_driver_config + 0x00000000400daa04 0x31 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400daa04 esp_netif_set_driver_config + *fill* 0x00000000400daa35 0x3 + .text.esp_netif_set_mac + 0x00000000400daa38 0x45 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400daa38 esp_netif_set_mac + *fill* 0x00000000400daa7d 0x3 + .text.esp_netif_dhcpc_start + 0x00000000400daa80 0x51 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x61 (size before relaxing) + 0x00000000400daa80 esp_netif_dhcpc_start + *fill* 0x00000000400daad1 0x3 + .text.esp_netif_get_hostname + 0x00000000400daad4 0x39 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400daad4 esp_netif_get_hostname + *fill* 0x00000000400dab0d 0x3 + .text.esp_netif_up + 0x00000000400dab10 0x53 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x5f (size before relaxing) + 0x00000000400dab10 esp_netif_up + *fill* 0x00000000400dab63 0x1 + .text.esp_netif_down + 0x00000000400dab64 0x51 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x61 (size before relaxing) + 0x00000000400dab64 esp_netif_down + *fill* 0x00000000400dabb5 0x3 + .text.esp_netif_update_default_netif + 0x00000000400dabb8 0xbc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xcc (size before relaxing) + .text.esp_netif_start + 0x00000000400dac74 0x6a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x7a (size before relaxing) + 0x00000000400dac74 esp_netif_start + *fill* 0x00000000400dacde 0x2 + .text.esp_netif_start_api + 0x00000000400dace0 0xb1 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xc9 (size before relaxing) + *fill* 0x00000000400dad91 0x3 + .text.esp_netif_stop + 0x00000000400dad94 0x6a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x7a (size before relaxing) + 0x00000000400dad94 esp_netif_stop + *fill* 0x00000000400dadfe 0x2 + .text.esp_netif_stop_api + 0x00000000400dae00 0x79 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x89 (size before relaxing) + *fill* 0x00000000400dae79 0x3 + .text.esp_netif_up_api + 0x00000000400dae7c 0x2d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x35 (size before relaxing) + *fill* 0x00000000400daea9 0x3 + .text.esp_netif_down_api + 0x00000000400daeac 0x5a esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x62 (size before relaxing) + *fill* 0x00000000400daf06 0x2 + .text.esp_netif_get_old_ip_info + 0x00000000400daf08 0x32 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400daf08 esp_netif_get_old_ip_info + *fill* 0x00000000400daf3a 0x2 + .text.esp_netif_get_ip_info + 0x00000000400daf3c 0x6d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000400daf3c esp_netif_get_ip_info + *fill* 0x00000000400dafa9 0x3 + .text.esp_netif_set_old_ip_info + 0x00000000400dafac 0x51 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x61 (size before relaxing) + 0x00000000400dafac esp_netif_set_old_ip_info + *fill* 0x00000000400daffd 0x3 + .text.esp_netif_dhcpc_cb + 0x00000000400db000 0xdf esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0xea (size before relaxing) + *fill* 0x00000000400db0df 0x1 + .text.esp_netif_ppp_set_default_netif + 0x00000000400db0e0 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + 0x20 (size before relaxing) + 0x00000000400db0e0 esp_netif_ppp_set_default_netif + .text.esp_netif_new_ppp + 0x00000000400db0fc 0x1e esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + 0x22 (size before relaxing) + 0x00000000400db0fc esp_netif_new_ppp + *fill* 0x00000000400db11a 0x2 + .text.esp_netif_start_ppp + 0x00000000400db11c 0x1d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + 0x25 (size before relaxing) + 0x00000000400db11c esp_netif_start_ppp + *fill* 0x00000000400db139 0x3 + .text.esp_netif_stop_ppp + 0x00000000400db13c 0x1d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + 0x25 (size before relaxing) + 0x00000000400db13c esp_netif_stop_ppp + *fill* 0x00000000400db159 0x3 + .text.esp_netif_destroy_ppp + 0x00000000400db15c 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + 0x20 (size before relaxing) + 0x00000000400db15c esp_netif_destroy_ppp + .text.esp_event_legacy_wifi_event_id + 0x00000000400db178 0x85 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + 0x89 (size before relaxing) + *fill* 0x00000000400db1fd 0x3 + .text.esp_event_legacy_ip_event_id + 0x00000000400db200 0x47 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + 0x4b (size before relaxing) + *fill* 0x00000000400db247 0x1 + .text.esp_event_legacy_event_id + 0x00000000400db248 0x46 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + 0x4e (size before relaxing) + *fill* 0x00000000400db28e 0x2 + .text.esp_event_send_internal + 0x00000000400db290 0x38 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + 0x3c (size before relaxing) + 0x00000000400db290 esp_event_send_internal + .text.MD5Transform + 0x00000000400db2c8 0x6e3 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + *fill* 0x00000000400db9ab 0x1 + .text.MD5Init 0x00000000400db9ac 0x1f esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + 0x00000000400db9ac MD5Init + *fill* 0x00000000400db9cb 0x1 + .text.MD5Update + 0x00000000400db9cc 0x92 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + 0x96 (size before relaxing) + 0x00000000400db9cc MD5Update + *fill* 0x00000000400dba5e 0x2 + .text.MD5Final + 0x00000000400dba60 0x77 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + 0x7b (size before relaxing) + 0x00000000400dba60 MD5Final + *fill* 0x00000000400dbad7 0x1 + .text.md5_vector + 0x00000000400dbad8 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + 0x38 (size before relaxing) + 0x00000000400dbad8 md5_vector + .text.hmac_md5_vector + 0x00000000400dbb08 0x10c esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + 0x110 (size before relaxing) + 0x00000000400dbb08 hmac_md5_vector + .text.hmac_md5 + 0x00000000400dbc14 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + 0x00000000400dbc14 hmac_md5 + *fill* 0x00000000400dbc31 0x3 + .text.sha1_vector + 0x00000000400dbc34 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + 0x58 (size before relaxing) + 0x00000000400dbc34 sha1_vector + .text.pbkdf2_sha1 + 0x00000000400dbc80 0x5c esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) + 0x67 (size before relaxing) + 0x00000000400dbc80 pbkdf2_sha1 + *fill* 0x00000000400dbcdc 0x0 + .text.hmac_sha1_vector + 0x00000000400dbcdc 0x10c esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + 0x110 (size before relaxing) + 0x00000000400dbcdc hmac_sha1_vector + .text.hmac_sha1 + 0x00000000400dbde8 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + 0x00000000400dbde8 hmac_sha1 + *fill* 0x00000000400dbe05 0x3 + .text.sha1_prf + 0x00000000400dbe08 0x99 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + 0x00000000400dbe08 sha1_prf + *fill* 0x00000000400dbea1 0x3 + .text.hmac_sha256_vector + 0x00000000400dbea4 0x10c esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + 0x110 (size before relaxing) + 0x00000000400dbea4 hmac_sha256_vector + .text.hmac_sha256 + 0x00000000400dbfb0 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + 0x00000000400dbfb0 hmac_sha256 + *fill* 0x00000000400dbfcb 0x1 + .text.sha256_prf_bits + 0x00000000400dbfcc 0xe2 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + 0x00000000400dbfcc sha256_prf_bits + *fill* 0x00000000400dc0ae 0x2 + .text.sha256_prf + 0x00000000400dc0b0 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + 0x00000000400dc0b0 sha256_prf + .text.rijndaelDecrypt + 0x00000000400dc0d0 0x419 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + *fill* 0x00000000400dc4e9 0x3 + .text.rijndaelKeySetupDec + 0x00000000400dc4ec 0x104 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + 0x108 (size before relaxing) + .text.aes_decrypt_init + 0x00000000400dc5f0 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + 0x38 (size before relaxing) + 0x00000000400dc5f0 aes_decrypt_init + .text.aes_decrypt + 0x00000000400dc620 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + 0x00000000400dc620 aes_decrypt + .text.aes_decrypt_deinit + 0x00000000400dc634 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + 0xe (size before relaxing) + 0x00000000400dc634 aes_decrypt_deinit + *fill* 0x00000000400dc63e 0x2 + .text.rijndaelEncrypt + 0x00000000400dc640 0x44e esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + 0x00000000400dc640 rijndaelEncrypt + *fill* 0x00000000400dca8e 0x2 + .text.aes_encrypt_init + 0x00000000400dca90 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + 0x38 (size before relaxing) + 0x00000000400dca90 aes_encrypt_init + .text.aes_encrypt + 0x00000000400dcac0 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + 0x00000000400dcac0 aes_encrypt + .text.aes_encrypt_deinit + 0x00000000400dcad4 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + 0xe (size before relaxing) + 0x00000000400dcad4 aes_encrypt_deinit + *fill* 0x00000000400dcade 0x2 + .text.rijndaelKeySetupEnc + 0x00000000400dcae0 0x344 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + 0x00000000400dcae0 rijndaelKeySetupEnc + .text.omac1_aes_vector + 0x00000000400dce24 0x169 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + 0x171 (size before relaxing) + 0x00000000400dce24 omac1_aes_vector + *fill* 0x00000000400dcf8d 0x3 + .text.omac1_aes_128_vector + 0x00000000400dcf90 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + 0x00000000400dcf90 omac1_aes_128_vector + *fill* 0x00000000400dcfa9 0x3 + .text.omac1_aes_128 + 0x00000000400dcfac 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + 0x1c (size before relaxing) + 0x00000000400dcfac omac1_aes_128 + .text.aes_unwrap + 0x00000000400dcfc4 0xca esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + 0xd6 (size before relaxing) + 0x00000000400dcfc4 aes_unwrap + *fill* 0x00000000400dd08e 0x2 + .text.aes_wrap + 0x00000000400dd090 0xbc esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + 0xc8 (size before relaxing) + 0x00000000400dd090 aes_wrap + .text.ccmp_aad_nonce + 0x00000000400dd14c 0x11a esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + *fill* 0x00000000400dd266 0x2 + .text.ccmp_decrypt + 0x00000000400dd268 0x7c esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x8c (size before relaxing) + 0x00000000400dd268 ccmp_decrypt + .text.ccmp_encrypt + 0x00000000400dd2e4 0xf8 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x108 (size before relaxing) + 0x00000000400dd2e4 ccmp_encrypt + .text.sha256_vector + 0x00000000400dd3dc 0x53 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) + 0x5e (size before relaxing) + 0x00000000400dd3dc sha256_vector + *fill* 0x00000000400dd42f 0x1 + .text.aes_ccm_encr_start + 0x00000000400dd430 0x1a esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + *fill* 0x00000000400dd44a 0x2 + .text.aes_ccm_auth + 0x00000000400dd44c 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x5e (size before relaxing) + *fill* 0x00000000400dd4a2 0x2 + .text.aes_ccm_encr + 0x00000000400dd4a4 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x7a (size before relaxing) + *fill* 0x00000000400dd51a 0x2 + .text.aes_ccm_encr_auth + 0x00000000400dd51c 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x36 (size before relaxing) + *fill* 0x00000000400dd54e 0x2 + .text.aes_ccm_decr_auth + 0x00000000400dd550 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x36 (size before relaxing) + *fill* 0x00000000400dd582 0x2 + .text.aes_ccm_auth_start + 0x00000000400dd584 0xbb esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0xc3 (size before relaxing) + *fill* 0x00000000400dd63f 0x1 + .text.aes_ccm_ae + 0x00000000400dd640 0x92 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0xa6 (size before relaxing) + 0x00000000400dd640 aes_ccm_ae + *fill* 0x00000000400dd6d2 0x2 + .text.aes_ccm_ad + 0x00000000400dd6d4 0xaa esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0xc2 (size before relaxing) + 0x00000000400dd6d4 aes_ccm_ad + *fill* 0x00000000400dd77e 0x2 + .text.esp_efuse_get_chip_ver + 0x00000000400dd780 0x52 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + 0x56 (size before relaxing) + 0x00000000400dd780 esp_efuse_get_chip_ver + *fill* 0x00000000400dd7d2 0x2 + .text.esp_efuse_read_field_blob + 0x00000000400dd7d4 0x5f esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x66 (size before relaxing) + 0x00000000400dd7d4 esp_efuse_read_field_blob + *fill* 0x00000000400dd833 0x1 + .text.check_range_of_bits + 0x00000000400dd834 0x5a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x5e (size before relaxing) + *fill* 0x00000000400dd88e 0x2 + .text.esp_efuse_utility_process + 0x00000000400dd890 0x116 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x11e (size before relaxing) + 0x00000000400dd890 esp_efuse_utility_process + *fill* 0x00000000400dd9a6 0x2 + .text.esp_efuse_utility_read_reg + 0x00000000400dd9a8 0x6b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x00000000400dd9a8 esp_efuse_utility_read_reg + *fill* 0x00000000400dda13 0x1 + .text.esp_efuse_utility_fill_buff + 0x00000000400dda14 0xc7 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x00000000400dda14 esp_efuse_utility_fill_buff + *fill* 0x00000000400ddadb 0x1 + .text.esp_efuse_get_coding_scheme + 0x00000000400ddadc 0x41 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x00000000400ddadc esp_efuse_get_coding_scheme + *fill* 0x00000000400ddb1d 0x3 + .text.bootloader_flash_update_id + 0x00000000400ddb20 0xd esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x10 (size before relaxing) + 0x00000000400ddb20 bootloader_flash_update_id + *fill* 0x00000000400ddb2d 0x3 + .text.execute_flash_command + 0x00000000400ddb30 0x18c esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.bootloader_read_flash_id + 0x00000000400ddcbc 0x2a esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x2e (size before relaxing) + 0x00000000400ddcbc bootloader_read_flash_id + *fill* 0x00000000400ddce6 0x2 + .text.spi_flash_init_lock + 0x00000000400ddce8 0x22 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x26 (size before relaxing) + 0x00000000400ddce8 spi_flash_init_lock + *fill* 0x00000000400ddd0a 0x2 + .text.spi_flash_op_lock + 0x00000000400ddd0c 0x12 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x00000000400ddd0c spi_flash_op_lock + *fill* 0x00000000400ddd1e 0x2 + .text.spi_flash_op_unlock + 0x00000000400ddd20 0xd esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x10 (size before relaxing) + 0x00000000400ddd20 spi_flash_op_unlock + *fill* 0x00000000400ddd2d 0x3 + .text.is_safe_write_address + 0x00000000400ddd30 0x15 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x19 (size before relaxing) + *fill* 0x00000000400ddd45 0x3 + .text.spi_flash_init + 0x00000000400ddd48 0x8 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0xb (size before relaxing) + 0x00000000400ddd48 spi_flash_init + *fill* 0x00000000400ddd50 0x0 + .text.esp_flash_init_default_chip + 0x00000000400ddd50 0x9a esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0xa2 (size before relaxing) + 0x00000000400ddd50 esp_flash_init_default_chip + *fill* 0x00000000400dddea 0x2 + .text.esp_flash_app_init + 0x00000000400dddec 0xd esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x10 (size before relaxing) + 0x00000000400dddec esp_flash_app_init + *fill* 0x00000000400dddf9 0x3 + .text.esp_flash_app_init_os_functions + 0x00000000400dddfc 0x11 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x00000000400dddfc esp_flash_app_init_os_functions + *fill* 0x00000000400dde0d 0x3 + .text.load_partitions + 0x00000000400dde10 0xf7 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0xfa (size before relaxing) + *fill* 0x00000000400ddf07 0x1 + .text.ensure_partitions_loaded + 0x00000000400ddf08 0x4c esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x58 (size before relaxing) + .text.iterator_create + 0x00000000400ddf54 0x1d esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x21 (size before relaxing) + *fill* 0x00000000400ddf71 0x3 + .text.esp_partition_iterator_release + 0x00000000400ddf74 0xa esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0xe (size before relaxing) + 0x00000000400ddf74 esp_partition_iterator_release + *fill* 0x00000000400ddf7e 0x2 + .text.esp_partition_next + 0x00000000400ddf80 0x80 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x84 (size before relaxing) + 0x00000000400ddf80 esp_partition_next + .text.esp_partition_find + 0x00000000400de000 0x20 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x28 (size before relaxing) + 0x00000000400de000 esp_partition_find + .text.esp_partition_get + 0x00000000400de020 0x1c esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x00000000400de020 esp_partition_get + .text.esp_partition_find_first + 0x00000000400de03c 0x24 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x2c (size before relaxing) + 0x00000000400de03c esp_partition_find_first + .text.esp_partition_read + 0x00000000400de060 0x4d esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x51 (size before relaxing) + 0x00000000400de060 esp_partition_read + *fill* 0x00000000400de0ad 0x3 + .text.esp_partition_write + 0x00000000400de0b0 0x4d esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x51 (size before relaxing) + 0x00000000400de0b0 esp_partition_write + *fill* 0x00000000400de0fd 0x3 + .text.esp_partition_erase_range + 0x00000000400de100 0x59 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x00000000400de100 esp_partition_erase_range + *fill* 0x00000000400de159 0x3 + .text.esp_partition_main_flash_region_safe + 0x00000000400de15c 0x39 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x3d (size before relaxing) + 0x00000000400de15c esp_partition_main_flash_region_safe + *fill* 0x00000000400de195 0x3 + .text.spi_flash_cache2phys + 0x00000000400de198 0x69 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x00000000400de198 spi_flash_cache2phys + *fill* 0x00000000400de201 0x3 + .text._ZL18nvs_find_ns_handlejPPN3nvs15NVSHandleSimpleE + 0x00000000400de204 0x29 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + *fill* 0x00000000400de22d 0x3 + .text._ZL24lookup_storage_from_namePKc + 0x00000000400de230 0x11 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x15 (size before relaxing) + *fill* 0x00000000400de241 0x3 + .text._ZL19nvs_get_str_or_blobjN3nvs8ItemTypeEPKcPvPj + 0x00000000400de244 0x7e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x86 (size before relaxing) + *fill* 0x00000000400de2c2 0x2 + .text._ZL15create_iteratorPN3nvs7StorageE10nvs_type_t + 0x00000000400de2c4 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x18 (size before relaxing) + .text.nvs_flash_init_partition + 0x00000000400de2d8 0x42 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x52 (size before relaxing) + 0x00000000400de2d8 nvs_flash_init_partition + *fill* 0x00000000400de31a 0x2 + .text.nvs_flash_init + 0x00000000400de31c 0xd esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + 0x00000000400de31c nvs_flash_init + *fill* 0x00000000400de329 0x3 + .text.nvs_flash_erase_partition + 0x00000000400de32c 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x26 (size before relaxing) + 0x00000000400de32c nvs_flash_erase_partition + *fill* 0x00000000400de34e 0x2 + .text.nvs_flash_erase + 0x00000000400de350 0xd esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x10 (size before relaxing) + 0x00000000400de350 nvs_flash_erase + *fill* 0x00000000400de35d 0x3 + .text.nvs_open_from_partition + 0x00000000400de360 0xa2 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0xae (size before relaxing) + 0x00000000400de360 nvs_open_from_partition + *fill* 0x00000000400de402 0x2 + .text.nvs_open + 0x00000000400de404 0x16 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400de404 nvs_open + *fill* 0x00000000400de41a 0x2 + .text.nvs_close + 0x00000000400de41c 0x92 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x9a (size before relaxing) + 0x00000000400de41c nvs_close + *fill* 0x00000000400de4ae 0x2 + .text.nvs_erase_key + 0x00000000400de4b0 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4a (size before relaxing) + 0x00000000400de4b0 nvs_erase_key + *fill* 0x00000000400de4ee 0x2 + .text.nvs_erase_all + 0x00000000400de4f0 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4a (size before relaxing) + 0x00000000400de4f0 nvs_erase_all + *fill* 0x00000000400de52e 0x2 + .text.nvs_commit + 0x00000000400de530 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4a (size before relaxing) + 0x00000000400de530 nvs_commit + *fill* 0x00000000400de56e 0x2 + .text.nvs_set_str + 0x00000000400de570 0x42 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4e (size before relaxing) + 0x00000000400de570 nvs_set_str + *fill* 0x00000000400de5b2 0x2 + .text.nvs_set_blob + 0x00000000400de5b4 0x42 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4e (size before relaxing) + 0x00000000400de5b4 nvs_set_blob + *fill* 0x00000000400de5f6 0x2 + .text.nvs_get_str + 0x00000000400de5f8 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x18 (size before relaxing) + 0x00000000400de5f8 nvs_get_str + .text.nvs_get_blob + 0x00000000400de60c 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x18 (size before relaxing) + 0x00000000400de60c nvs_get_blob + .text.nvs_entry_find + 0x00000000400de620 0x52 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x62 (size before relaxing) + 0x00000000400de620 nvs_entry_find + *fill* 0x00000000400de672 0x2 + .text.nvs_entry_next + 0x00000000400de674 0x4f esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x57 (size before relaxing) + 0x00000000400de674 nvs_entry_next + *fill* 0x00000000400de6c3 0x1 + .text.nvs_entry_info + 0x00000000400de6c4 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400de6c4 nvs_entry_info + *fill* 0x00000000400de6d6 0x2 + .text._Z7nvs_setIaEijPKcT_ + 0x00000000400de6d8 0x43 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4f (size before relaxing) + *fill* 0x00000000400de71b 0x1 + .text.nvs_set_i8 + 0x00000000400de71c 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400de71c nvs_set_i8 + .text._Z7nvs_setIhEijPKcT_ + 0x00000000400de730 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4a (size before relaxing) + *fill* 0x00000000400de76e 0x2 + .text.nvs_set_u8 + 0x00000000400de770 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400de770 nvs_set_u8 + .text._Z7nvs_setIsEijPKcT_ + 0x00000000400de784 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4a (size before relaxing) + *fill* 0x00000000400de7c2 0x2 + .text.nvs_set_i16 + 0x00000000400de7c4 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400de7c4 nvs_set_i16 + .text._Z7nvs_setItEijPKcT_ + 0x00000000400de7d8 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4a (size before relaxing) + *fill* 0x00000000400de816 0x2 + .text.nvs_set_u16 + 0x00000000400de818 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400de818 nvs_set_u16 + .text._Z7nvs_setIiEijPKcT_ + 0x00000000400de82c 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4a (size before relaxing) + *fill* 0x00000000400de86a 0x2 + .text.nvs_set_i32 + 0x00000000400de86c 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + 0x00000000400de86c nvs_set_i32 + .text._Z7nvs_setIjEijPKcT_ + 0x00000000400de87c 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4a (size before relaxing) + *fill* 0x00000000400de8ba 0x2 + .text.nvs_set_u32 + 0x00000000400de8bc 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + 0x00000000400de8bc nvs_set_u32 + .text._Z7nvs_setIxEijPKcT_ + 0x00000000400de8cc 0x42 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4e (size before relaxing) + *fill* 0x00000000400de90e 0x2 + .text.nvs_set_i64 + 0x00000000400de910 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400de910 nvs_set_i64 + *fill* 0x00000000400de925 0x3 + .text._Z7nvs_setIyEijPKcT_ + 0x00000000400de928 0x42 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4e (size before relaxing) + *fill* 0x00000000400de96a 0x2 + .text.nvs_set_u64 + 0x00000000400de96c 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x00000000400de96c nvs_set_u64 + *fill* 0x00000000400de981 0x3 + .text._Z7nvs_getIaEijPKcPT_ + 0x00000000400de984 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4a (size before relaxing) + *fill* 0x00000000400de9c2 0x2 + .text.nvs_get_i8 + 0x00000000400de9c4 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + 0x00000000400de9c4 nvs_get_i8 + .text._Z7nvs_getIhEijPKcPT_ + 0x00000000400de9d4 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4a (size before relaxing) + *fill* 0x00000000400dea12 0x2 + .text.nvs_get_u8 + 0x00000000400dea14 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + 0x00000000400dea14 nvs_get_u8 + .text._Z7nvs_getIsEijPKcPT_ + 0x00000000400dea24 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4a (size before relaxing) + *fill* 0x00000000400dea62 0x2 + .text.nvs_get_i16 + 0x00000000400dea64 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + 0x00000000400dea64 nvs_get_i16 + .text._Z7nvs_getItEijPKcPT_ + 0x00000000400dea74 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4a (size before relaxing) + *fill* 0x00000000400deab2 0x2 + .text.nvs_get_u16 + 0x00000000400deab4 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + 0x00000000400deab4 nvs_get_u16 + .text._Z7nvs_getIiEijPKcPT_ + 0x00000000400deac4 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4a (size before relaxing) + *fill* 0x00000000400deb02 0x2 + .text.nvs_get_i32 + 0x00000000400deb04 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + 0x00000000400deb04 nvs_get_i32 + .text._Z7nvs_getIjEijPKcPT_ + 0x00000000400deb14 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4a (size before relaxing) + *fill* 0x00000000400deb52 0x2 + .text.nvs_get_u32 + 0x00000000400deb54 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + 0x00000000400deb54 nvs_get_u32 + .text._Z7nvs_getIxEijPKcPT_ + 0x00000000400deb64 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4a (size before relaxing) + *fill* 0x00000000400deba2 0x2 + .text.nvs_get_i64 + 0x00000000400deba4 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + 0x00000000400deba4 nvs_get_i64 + .text._Z7nvs_getIyEijPKcPT_ + 0x00000000400debb4 0x3e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x4a (size before relaxing) + *fill* 0x00000000400debf2 0x2 + .text.nvs_get_u64 + 0x00000000400debf4 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x14 (size before relaxing) + 0x00000000400debf4 nvs_get_u64 + .text._ZN3nvs7Storage15clearNamespacesEv + 0x00000000400dec04 0x32 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400dec04 _ZN3nvs7Storage15clearNamespacesEv + *fill* 0x00000000400dec36 0x2 + .text._ZN3nvs7StorageD2Ev + 0x00000000400dec38 0x3b esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x3f (size before relaxing) + 0x00000000400dec38 _ZN3nvs7StorageD2Ev + 0x00000000400dec38 _ZN3nvs7StorageD1Ev + *fill* 0x00000000400dec73 0x1 + .text._ZN3nvs7Storage19populateBlobIndicesER14intrusive_listINS0_13BlobIndexNodeEE + 0x00000000400dec74 0x99 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x9d (size before relaxing) + 0x00000000400dec74 _ZN3nvs7Storage19populateBlobIndicesER14intrusive_listINS0_13BlobIndexNodeEE + *fill* 0x00000000400ded0d 0x3 + .text._ZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEE + 0x00000000400ded10 0x122 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x12a (size before relaxing) + 0x00000000400ded10 _ZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEE + *fill* 0x00000000400dee32 0x2 + .text._ZN3nvs7Storage4initEjj + 0x00000000400dee34 0x190 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x194 (size before relaxing) + 0x00000000400dee34 _ZN3nvs7Storage4initEjj + .text._ZN3nvs7Storage8findItemEhNS_8ItemTypeEPKcRPNS_4PageERNS_4ItemEhNS_9VerOffsetE + 0x00000000400defc4 0x4b esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400defc4 _ZN3nvs7Storage8findItemEhNS_8ItemTypeEPKcRPNS_4PageERNS_4ItemEhNS_9VerOffsetE + *fill* 0x00000000400df00f 0x1 + .text._ZN3nvs7Storage18writeMultiPageBlobEhPKcPKvjNS_9VerOffsetE + 0x00000000400df010 0x23a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x24a (size before relaxing) + 0x00000000400df010 _ZN3nvs7Storage18writeMultiPageBlobEhPKcPKvjNS_9VerOffsetE + *fill* 0x00000000400df24a 0x2 + .text._ZN3nvs7Storage16cmpMultiPageBlobEhPKcPKvj + 0x00000000400df24c 0xe1 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xe9 (size before relaxing) + 0x00000000400df24c _ZN3nvs7Storage16cmpMultiPageBlobEhPKcPKvj + *fill* 0x00000000400df32d 0x3 + .text._ZN3nvs7Storage18eraseMultiPageBlobEhPKcNS_9VerOffsetE + 0x00000000400df330 0xf1 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0xf9 (size before relaxing) + 0x00000000400df330 _ZN3nvs7Storage18eraseMultiPageBlobEhPKcNS_9VerOffsetE + *fill* 0x00000000400df421 0x3 + .text._ZN3nvs7Storage17readMultiPageBlobEhPKcPvj + 0x00000000400df424 0x110 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x114 (size before relaxing) + 0x00000000400df424 _ZN3nvs7Storage17readMultiPageBlobEhPKcPvj + .text._ZN3nvs7Storage8readItemEhNS_8ItemTypeEPKcPvj + 0x00000000400df534 0x68 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x70 (size before relaxing) + 0x00000000400df534 _ZN3nvs7Storage8readItemEhNS_8ItemTypeEPKcPvj + .text._ZN3nvs7Storage9writeItemEhNS_8ItemTypeEPKcPKvj + 0x00000000400df59c 0x27e esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x2aa (size before relaxing) + 0x00000000400df59c _ZN3nvs7Storage9writeItemEhNS_8ItemTypeEPKcPKvj + *fill* 0x00000000400df81a 0x2 + .text._ZN3nvs7Storage21createOrOpenNamespaceEPKcbRh + 0x00000000400df81c 0x12c esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x130 (size before relaxing) + 0x00000000400df81c _ZN3nvs7Storage21createOrOpenNamespaceEPKcbRh + .text._ZN3nvs7Storage9eraseItemEhNS_8ItemTypeEPKc + 0x00000000400df948 0x94 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x9c (size before relaxing) + 0x00000000400df948 _ZN3nvs7Storage9eraseItemEhNS_8ItemTypeEPKc + .text._ZN3nvs7Storage14eraseNamespaceEh + 0x00000000400df9dc 0x41 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400df9dc _ZN3nvs7Storage14eraseNamespaceEh + *fill* 0x00000000400dfa1d 0x3 + .text._ZN3nvs7Storage15getItemDataSizeEhNS_8ItemTypeEPKcRj + 0x00000000400dfa20 0x64 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x68 (size before relaxing) + 0x00000000400dfa20 _ZN3nvs7Storage15getItemDataSizeEhNS_8ItemTypeEPKcRj + .text._ZN3nvs7Storage22calcEntriesInNamespaceEhRj + 0x00000000400dfa84 0x60 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400dfa84 _ZN3nvs7Storage22calcEntriesInNamespaceEhRj + .text._ZN3nvs7Storage13fillEntryInfoERNS_4ItemER16nvs_entry_info_t + 0x00000000400dfae4 0x3a esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400dfae4 _ZN3nvs7Storage13fillEntryInfoERNS_4ItemER16nvs_entry_info_t + *fill* 0x00000000400dfb1e 0x2 + .text._ZN3nvs7Storage9nextEntryEP21nvs_opaque_iterator_t + 0x00000000400dfb20 0x74 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x7c (size before relaxing) + 0x00000000400dfb20 _ZN3nvs7Storage9nextEntryEP21nvs_opaque_iterator_t + .text._ZN3nvs7Storage9findEntryEP21nvs_opaque_iterator_tPKc + 0x00000000400dfb94 0x35 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x00000000400dfb94 _ZN3nvs7Storage9findEntryEP21nvs_opaque_iterator_tPKc + *fill* 0x00000000400dfbc9 0x3 + .text._ZN3nvs19NVSPartitionManagerD0Ev + 0x00000000400dfbcc 0xe esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x00000000400dfbcc _ZN3nvs19NVSPartitionManagerD0Ev + *fill* 0x00000000400dfbda 0x2 + .text._ZN3nvs19NVSPartitionManager12get_instanceEv + 0x00000000400dfbdc 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x00000000400dfbdc _ZN3nvs19NVSPartitionManager12get_instanceEv + .text._ZN3nvs19NVSPartitionManager12close_handleEPNS_15NVSHandleSimpleE + 0x00000000400dfc14 0x36 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x00000000400dfc14 _ZN3nvs19NVSPartitionManager12close_handleEPNS_15NVSHandleSimpleE + *fill* 0x00000000400dfc4a 0x2 + .text._ZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKc + 0x00000000400dfc4c 0x1f esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x00000000400dfc4c _ZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKc + *fill* 0x00000000400dfc6b 0x1 + .text._ZN3nvs19NVSPartitionManager11init_customEPKcjj + 0x00000000400dfc6c 0xb8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0xbc (size before relaxing) + 0x00000000400dfc6c _ZN3nvs19NVSPartitionManager11init_customEPKcjj + .text._ZN3nvs19NVSPartitionManager14init_partitionEPKc + 0x00000000400dfd24 0x3a esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x42 (size before relaxing) + 0x00000000400dfd24 _ZN3nvs19NVSPartitionManager14init_partitionEPKc + *fill* 0x00000000400dfd5e 0x2 + .text._ZN3nvs19NVSPartitionManager11open_handleEPKcS2_15nvs_open_mode_tPPNS_15NVSHandleSimpleE + 0x00000000400dfd60 0x98 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x9c (size before relaxing) + 0x00000000400dfd60 _ZN3nvs19NVSPartitionManager11open_handleEPKcS2_15nvs_open_mode_tPPNS_15NVSHandleSimpleE + .text._ZN3nvs8HashList5clearEv + 0x00000000400dfdf8 0x36 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x00000000400dfdf8 _ZN3nvs8HashList5clearEv + *fill* 0x00000000400dfe2e 0x2 + .text._ZN3nvs8HashListD2Ev + 0x00000000400dfe30 0xa esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0xe (size before relaxing) + 0x00000000400dfe30 _ZN3nvs8HashListD2Ev + 0x00000000400dfe30 _ZN3nvs8HashListD1Ev + *fill* 0x00000000400dfe3a 0x2 + .text._ZN3nvs8HashList6insertERKNS_4ItemEj + 0x00000000400dfe3c 0x81 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x85 (size before relaxing) + 0x00000000400dfe3c _ZN3nvs8HashList6insertERKNS_4ItemEj + *fill* 0x00000000400dfebd 0x3 + .text._ZN3nvs8HashList5eraseEjb + 0x00000000400dfec0 0x92 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x00000000400dfec0 _ZN3nvs8HashList5eraseEjb + *fill* 0x00000000400dff52 0x2 + .text._ZN3nvs8HashList4findEjRKNS_4ItemE + 0x00000000400dff54 0x48 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x4c (size before relaxing) + 0x00000000400dff54 _ZN3nvs8HashList4findEjRKNS_4ItemE + .text._ZN3nvs4Page6Header14calculateCrc32Ev + 0x00000000400dff9c 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400dff9c _ZN3nvs4Page6Header14calculateCrc32Ev + .text._ZN3nvs4Page20updateFirstUsedEntryEjj + 0x00000000400dffb0 0x70 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400dffb0 _ZN3nvs4Page20updateFirstUsedEntryEjj + .text._ZN3nvs4Page10initializeEv + 0x00000000400e0020 0x74 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x78 (size before relaxing) + 0x00000000400e0020 _ZN3nvs4Page10initializeEv + .text._ZN3nvs4Page15alterEntryStateEjNS0_10EntryStateE + 0x00000000400e0094 0x84 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400e0094 _ZN3nvs4Page15alterEntryStateEjNS0_10EntryStateE + .text._ZN3nvs4Page10writeEntryERKNS_4ItemE + 0x00000000400e0118 0x64 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400e0118 _ZN3nvs4Page10writeEntryERKNS_4ItemE + .text._ZN3nvs4Page20alterEntryRangeStateEjjNS0_10EntryStateE + 0x00000000400e017c 0xba esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400e017c _ZN3nvs4Page20alterEntryRangeStateEjjNS0_10EntryStateE + *fill* 0x00000000400e0236 0x2 + .text._ZN3nvs4Page14writeEntryDataEPKhj + 0x00000000400e0238 0xd8 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0xe4 (size before relaxing) + 0x00000000400e0238 _ZN3nvs4Page14writeEntryDataEPKhj + .text._ZN3nvs4Page9writeItemEhNS_8ItemTypeEPKcPKvjh + 0x00000000400e0310 0x1f0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x204 (size before relaxing) + 0x00000000400e0310 _ZN3nvs4Page9writeItemEhNS_8ItemTypeEPKcPKvjh + .text._ZN3nvs4Page14alterPageStateENS0_9PageStateE + 0x00000000400e0500 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400e0500 _ZN3nvs4Page14alterPageStateENS0_9PageStateE + .text._ZNK3nvs4Page9readEntryEjRNS_4ItemE + 0x00000000400e0520 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x34 (size before relaxing) + 0x00000000400e0520 _ZNK3nvs4Page9readEntryEjRNS_4ItemE + .text._ZN3nvs4Page17eraseEntryAndSpanEj + 0x00000000400e0550 0x14a esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x162 (size before relaxing) + 0x00000000400e0550 _ZN3nvs4Page17eraseEntryAndSpanEj + *fill* 0x00000000400e069a 0x2 + .text._ZN3nvs4Page9copyItemsERS0_ + 0x00000000400e069c 0xe6 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0xfa (size before relaxing) + 0x00000000400e069c _ZN3nvs4Page9copyItemsERS0_ + *fill* 0x00000000400e0782 0x2 + .text._ZN3nvs4Page8findItemEhNS_8ItemTypeEPKcRjRNS_4ItemEhNS_9VerOffsetE + 0x00000000400e0784 0x29d esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x2a5 (size before relaxing) + 0x00000000400e0784 _ZN3nvs4Page8findItemEhNS_8ItemTypeEPKcRjRNS_4ItemEhNS_9VerOffsetE + *fill* 0x00000000400e0a21 0x3 + .text._ZN3nvs4Page8readItemEhNS_8ItemTypeEPKcPvjhNS_9VerOffsetE + 0x00000000400e0a24 0x101 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x109 (size before relaxing) + 0x00000000400e0a24 _ZN3nvs4Page8readItemEhNS_8ItemTypeEPKcPvjhNS_9VerOffsetE + *fill* 0x00000000400e0b25 0x3 + .text._ZN3nvs4Page7cmpItemEhNS_8ItemTypeEPKcPKvjhNS_9VerOffsetE + 0x00000000400e0b28 0xfd esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x101 (size before relaxing) + 0x00000000400e0b28 _ZN3nvs4Page7cmpItemEhNS_8ItemTypeEPKcPKvjhNS_9VerOffsetE + *fill* 0x00000000400e0c25 0x3 + .text._ZN3nvs4Page9eraseItemEhNS_8ItemTypeEPKchNS_9VerOffsetE + 0x00000000400e0c28 0x34 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x38 (size before relaxing) + 0x00000000400e0c28 _ZN3nvs4Page9eraseItemEhNS_8ItemTypeEPKchNS_9VerOffsetE + .text._ZN3nvs4Page15mLoadEntryTableEv + 0x00000000400e0c5c 0x460 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x47c (size before relaxing) + 0x00000000400e0c5c _ZN3nvs4Page15mLoadEntryTableEv + .text._ZN3nvs4Page4loadEj + 0x00000000400e10bc 0x114 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x118 (size before relaxing) + 0x00000000400e10bc _ZN3nvs4Page4loadEj + .text._ZNK3nvs4Page12getSeqNumberERj + 0x00000000400e11d0 0x2d esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400e11d0 _ZNK3nvs4Page12getSeqNumberERj + *fill* 0x00000000400e11fd 0x3 + .text._ZN3nvs4Page12setSeqNumberEj + 0x00000000400e1200 0x15 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400e1200 _ZN3nvs4Page12setSeqNumberEj + *fill* 0x00000000400e1215 0x3 + .text._ZN3nvs4Page5eraseEv + 0x00000000400e1218 0x36 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400e1218 _ZN3nvs4Page5eraseEv + *fill* 0x00000000400e124e 0x2 + .text._ZN3nvs4Page11markFreeingEv + 0x00000000400e1250 0x2d esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400e1250 _ZN3nvs4Page11markFreeingEv + *fill* 0x00000000400e127d 0x3 + .text._ZN3nvs4Page8markFullEv + 0x00000000400e1280 0x1e esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400e1280 _ZN3nvs4Page8markFullEv + *fill* 0x00000000400e129e 0x2 + .text._ZNK3nvs4Page18getVarDataTailroomEv + 0x00000000400e12a0 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x00000000400e12a0 _ZNK3nvs4Page18getVarDataTailroomEv + .text._ZN3nvs11PageManager12activatePageEv + 0x00000000400e12d8 0x74 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x00000000400e12d8 _ZN3nvs11PageManager12activatePageEv + .text._ZN3nvs11PageManager14requestNewPageEv + 0x00000000400e134c 0xdc esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0xf0 (size before relaxing) + 0x00000000400e134c _ZN3nvs11PageManager14requestNewPageEv + .text._ZN3nvs11PageManager4loadEjj + 0x00000000400e1428 0x3be esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x3da (size before relaxing) + 0x00000000400e1428 _ZN3nvs11PageManager4loadEjj + *fill* 0x00000000400e17e6 0x2 + .text._ZN3nvs15NVSHandleSimple6commitEv + 0x00000000400e17e8 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000400e17e8 _ZN3nvs15NVSHandleSimple6commitEv + *fill* 0x00000000400e17fa 0x2 + .text._ZN3nvs15NVSHandleSimpleD2Ev + 0x00000000400e17fc 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x18 (size before relaxing) + 0x00000000400e17fc _ZN3nvs15NVSHandleSimpleD2Ev + 0x00000000400e17fc _ZN3nvs15NVSHandleSimpleD1Ev + .text._ZN3nvs15NVSHandleSimpleD0Ev + 0x00000000400e1810 0x12 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x16 (size before relaxing) + 0x00000000400e1810 _ZN3nvs15NVSHandleSimpleD0Ev + *fill* 0x00000000400e1822 0x2 + .text._ZN3nvs15NVSHandleSimple14set_typed_itemENS_8ItemTypeEPKcPKvj + 0x00000000400e1824 0x35 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000400e1824 _ZN3nvs15NVSHandleSimple14set_typed_itemENS_8ItemTypeEPKcPKvj + *fill* 0x00000000400e1859 0x3 + .text._ZN3nvs15NVSHandleSimple8set_blobEPKcPKvj + 0x00000000400e185c 0x31 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000400e185c _ZN3nvs15NVSHandleSimple8set_blobEPKcPKvj + *fill* 0x00000000400e188d 0x3 + .text._ZN3nvs15NVSHandleSimple14get_typed_itemENS_8ItemTypeEPKcPvj + 0x00000000400e1890 0x26 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000400e1890 _ZN3nvs15NVSHandleSimple14get_typed_itemENS_8ItemTypeEPKcPvj + *fill* 0x00000000400e18b6 0x2 + .text._ZN3nvs15NVSHandleSimple10get_stringEPKcPcj + 0x00000000400e18b8 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x26 (size before relaxing) + 0x00000000400e18b8 _ZN3nvs15NVSHandleSimple10get_stringEPKcPcj + *fill* 0x00000000400e18da 0x2 + .text._ZN3nvs15NVSHandleSimple8get_blobEPKcPvj + 0x00000000400e18dc 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x26 (size before relaxing) + 0x00000000400e18dc _ZN3nvs15NVSHandleSimple8get_blobEPKcPvj + *fill* 0x00000000400e18fe 0x2 + .text._ZN3nvs15NVSHandleSimple10set_stringEPKcS2_ + 0x00000000400e1900 0x3d esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000400e1900 _ZN3nvs15NVSHandleSimple10set_stringEPKcS2_ + *fill* 0x00000000400e193d 0x3 + .text._ZN3nvs15NVSHandleSimple13get_item_sizeENS_8ItemTypeEPKcRj + 0x00000000400e1940 0x25 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000400e1940 _ZN3nvs15NVSHandleSimple13get_item_sizeENS_8ItemTypeEPKcRj + *fill* 0x00000000400e1965 0x3 + .text._ZN3nvs15NVSHandleSimple10erase_itemEPKc + 0x00000000400e1968 0x2d esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000400e1968 _ZN3nvs15NVSHandleSimple10erase_itemEPKc + *fill* 0x00000000400e1995 0x3 + .text._ZN3nvs15NVSHandleSimple9erase_allEv + 0x00000000400e1998 0x29 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000400e1998 _ZN3nvs15NVSHandleSimple9erase_allEv + *fill* 0x00000000400e19c1 0x3 + .text._ZN3nvs15NVSHandleSimple20get_used_entry_countERj + 0x00000000400e19c4 0x2a esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x00000000400e19c4 _ZN3nvs15NVSHandleSimple20get_used_entry_countERj + *fill* 0x00000000400e19ee 0x2 + .text._ZNK3nvs4Item14calculateCrc32Ev + 0x00000000400e19f0 0x2c esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x00000000400e19f0 _ZNK3nvs4Item14calculateCrc32Ev + .text._ZNK3nvs4Item26calculateCrc32WithoutValueEv + 0x00000000400e1a1c 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x00000000400e1a1c _ZNK3nvs4Item26calculateCrc32WithoutValueEv + .text._ZN3nvs4Item14calculateCrc32EPKhj + 0x00000000400e1a44 0x14 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x00000000400e1a44 _ZN3nvs4Item14calculateCrc32EPKhj + .text._ZN3nvs15nvs_flash_writeEjPKvj + 0x00000000400e1a58 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + 0x14 (size before relaxing) + 0x00000000400e1a58 _ZN3nvs15nvs_flash_writeEjPKvj + .text._ZN3nvs14nvs_flash_readEjPvj + 0x00000000400e1a68 0x10 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + 0x14 (size before relaxing) + 0x00000000400e1a68 _ZN3nvs14nvs_flash_readEjPvj + .text.s_set_default_wifi_log_level + 0x00000000400e1a78 0x1b esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + *fill* 0x00000000400e1a93 0x1 + .text.esp_wifi_deinit + 0x00000000400e1a94 0x26 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x35 (size before relaxing) + 0x00000000400e1a94 esp_wifi_deinit + *fill* 0x00000000400e1aba 0x2 + .text.esp_wifi_init + 0x00000000400e1abc 0x6e esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x8a (size before relaxing) + 0x00000000400e1abc esp_wifi_init + *fill* 0x00000000400e1b2a 0x2 + .text.wifi_default_action_sta_got_ip + 0x00000000400e1b2c 0x3b esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x43 (size before relaxing) + *fill* 0x00000000400e1b67 0x1 + .text.wifi_default_action_ap_stop + 0x00000000400e1b68 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.wifi_default_action_sta_stop + 0x00000000400e1b80 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.wifi_start + 0x00000000400e1b98 0x7c esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x98 (size before relaxing) + .text.wifi_default_action_ap_start + 0x00000000400e1c14 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.wifi_default_action_sta_start + 0x00000000400e1c2c 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.wifi_default_action_sta_disconnected + 0x00000000400e1c44 0x18 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .text.wifi_default_action_sta_connected + 0x00000000400e1c5c 0x5b esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x67 (size before relaxing) + *fill* 0x00000000400e1cb7 0x1 + .text.create_and_attach + 0x00000000400e1cb8 0x32 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x3a (size before relaxing) + *fill* 0x00000000400e1cea 0x2 + .text._esp_wifi_clear_default_wifi_handlers + 0x00000000400e1cec 0x76 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x7e (size before relaxing) + 0x00000000400e1cec _esp_wifi_clear_default_wifi_handlers + *fill* 0x00000000400e1d62 0x2 + .text._esp_wifi_set_default_wifi_handlers + 0x00000000400e1d64 0xe9 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0xed (size before relaxing) + 0x00000000400e1d64 _esp_wifi_set_default_wifi_handlers + *fill* 0x00000000400e1e4d 0x3 + .text.esp_wifi_set_default_wifi_sta_handlers + 0x00000000400e1e50 0xa esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0xd (size before relaxing) + 0x00000000400e1e50 esp_wifi_set_default_wifi_sta_handlers + *fill* 0x00000000400e1e5a 0x2 + .text.esp_wifi_set_default_wifi_ap_handlers + 0x00000000400e1e5c 0xa esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0xd (size before relaxing) + 0x00000000400e1e5c esp_wifi_set_default_wifi_ap_handlers + *fill* 0x00000000400e1e66 0x2 + .text.esp_netif_attach_wifi_station + 0x00000000400e1e68 0x1e esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400e1e68 esp_netif_attach_wifi_station + *fill* 0x00000000400e1e86 0x2 + .text.esp_netif_attach_wifi_ap + 0x00000000400e1e88 0x1e esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x00000000400e1e88 esp_netif_attach_wifi_ap + *fill* 0x00000000400e1ea6 0x2 + .text.esp_netif_create_default_wifi_ap + 0x00000000400e1ea8 0x38 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x42 (size before relaxing) + 0x00000000400e1ea8 esp_netif_create_default_wifi_ap + *fill* 0x00000000400e1ee0 0x0 + .text.esp_netif_create_default_wifi_sta + 0x00000000400e1ee0 0x38 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x42 (size before relaxing) + 0x00000000400e1ee0 esp_netif_create_default_wifi_sta + *fill* 0x00000000400e1f18 0x0 + .text.wifi_sta_receive + 0x00000000400e1f18 0x1c esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text.wifi_ap_receive + 0x00000000400e1f34 0x1c esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text.wifi_driver_start + 0x00000000400e1f50 0x1c esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x20 (size before relaxing) + .text.wifi_free + 0x00000000400e1f6c 0xa esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0xe (size before relaxing) + *fill* 0x00000000400e1f76 0x2 + .text.wifi_transmit + 0x00000000400e1f78 0x14 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .text.esp_wifi_create_if_driver + 0x00000000400e1f8c 0x31 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x3d (size before relaxing) + 0x00000000400e1f8c esp_wifi_create_if_driver + *fill* 0x00000000400e1fbd 0x3 + .text.esp_wifi_get_if_mac + 0x00000000400e1fc0 0x11 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x00000000400e1fc0 esp_wifi_get_if_mac + *fill* 0x00000000400e1fd1 0x3 + .text.esp_wifi_register_if_rxcb + 0x00000000400e1fd4 0x8e esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0xa6 (size before relaxing) + 0x00000000400e1fd4 esp_wifi_register_if_rxcb + *fill* 0x00000000400e2062 0x2 + .text.queue_create_wrapper + 0x00000000400e2064 0x10 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x14 (size before relaxing) + .text.mutex_delete_wrapper + 0x00000000400e2074 0xa esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xe (size before relaxing) + *fill* 0x00000000400e207e 0x2 + .text.wifi_thread_semphr_free + 0x00000000400e2080 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xf (size before relaxing) + *fill* 0x00000000400e208c 0x0 + .text.semphr_delete_wrapper + 0x00000000400e208c 0xa esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xe (size before relaxing) + *fill* 0x00000000400e2096 0x2 + .text.get_time_wrapper + 0x00000000400e2098 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x10 (size before relaxing) + .text.timer_setfn_wrapper + 0x00000000400e20a4 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x12 (size before relaxing) + *fill* 0x00000000400e20b2 0x2 + .text.timer_done_wrapper + 0x00000000400e20b4 0xa esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xe (size before relaxing) + *fill* 0x00000000400e20be 0x2 + .text.esp_event_post_wrapper + 0x00000000400e20c0 0x28 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.task_create_wrapper + 0x00000000400e20e8 0x1e esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x00000000400e2106 0x2 + .text.task_create_pinned_to_core_wrapper + 0x00000000400e2108 0x24 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.event_group_wait_bits_wrapper + 0x00000000400e212c 0x24 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x28 (size before relaxing) + .text.queue_recv_wrapper + 0x00000000400e2150 0x26 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x00000000400e2176 0x2 + .text.semphr_take_wrapper + 0x00000000400e2178 0x28 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.queue_send_to_front_wrapper + 0x00000000400e21a0 0x15 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x00000000400e21b5 0x3 + .text.queue_send_to_back_wrapper + 0x00000000400e21b8 0x15 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x00000000400e21cd 0x3 + .text.queue_send_wrapper + 0x00000000400e21d0 0x26 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x00000000400e21f6 0x2 + .text.semphr_give_wrapper + 0x00000000400e21f8 0x15 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x00000000400e220d 0x3 + .text.recursive_mutex_create_wrapper + 0x00000000400e2210 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x10 (size before relaxing) + .text.mutex_create_wrapper + 0x00000000400e221c 0xc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x10 (size before relaxing) + .text.semphr_create_wrapper + 0x00000000400e2228 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x00000000400e2239 0x3 + .text.wifi_thread_semphr_get_wrapper + 0x00000000400e223c 0x48 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x58 (size before relaxing) + .text.spin_lock_create_wrapper + 0x00000000400e2284 0x24 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .text.set_isr_wrapper + 0x00000000400e22a8 0xe esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x12 (size before relaxing) + *fill* 0x00000000400e22b6 0x2 + .text.wifi_create_queue + 0x00000000400e22b8 0x20 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x24 (size before relaxing) + 0x00000000400e22b8 wifi_create_queue + .text.wifi_create_queue_wrapper + 0x00000000400e22d8 0x11 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x00000000400e22e9 0x3 + .text.wifi_delete_queue + 0x00000000400e22ec 0x13 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x17 (size before relaxing) + 0x00000000400e22ec wifi_delete_queue + *fill* 0x00000000400e22ff 0x1 + .text.wifi_delete_queue_wrapper + 0x00000000400e2300 0xa esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0xe (size before relaxing) + *fill* 0x00000000400e230a 0x2 + .text.load_cal_data_from_nvs_handle + 0x00000000400e230c 0x104 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x124 (size before relaxing) + .text.store_cal_data_to_nvs_handle + 0x00000000400e2410 0xbe esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0xe6 (size before relaxing) + *fill* 0x00000000400e24ce 0x2 + .text.esp_phy_rf_deinit + 0x00000000400e24d0 0xf7 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x10e (size before relaxing) + 0x00000000400e24d0 esp_phy_rf_deinit + *fill* 0x00000000400e25c7 0x1 + .text.esp_modem_sleep_enter + 0x00000000400e25c8 0x9d esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0xad (size before relaxing) + 0x00000000400e25c8 esp_modem_sleep_enter + *fill* 0x00000000400e2665 0x3 + .text.esp_modem_sleep_register + 0x00000000400e2668 0x84 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x90 (size before relaxing) + 0x00000000400e2668 esp_modem_sleep_register + .text.esp_phy_get_init_data + 0x00000000400e26ec 0x8 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x00000000400e26ec esp_phy_get_init_data + .text.esp_phy_load_cal_data_from_nvs + 0x00000000400e26f4 0x44 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x50 (size before relaxing) + 0x00000000400e26f4 esp_phy_load_cal_data_from_nvs + .text.esp_phy_store_cal_data_to_nvs + 0x00000000400e2738 0x24 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x2c (size before relaxing) + 0x00000000400e2738 esp_phy_store_cal_data_to_nvs + .text.esp_phy_rf_init + 0x00000000400e275c 0x110 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x12f (size before relaxing) + 0x00000000400e275c esp_phy_rf_init + *fill* 0x00000000400e286c 0x0 + .text.esp_modem_sleep_exit + 0x00000000400e286c 0xa1 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0xb1 (size before relaxing) + 0x00000000400e286c esp_modem_sleep_exit + *fill* 0x00000000400e290d 0x3 + .text.esp_modem_sleep_deregister + 0x00000000400e2910 0xae esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0xc1 (size before relaxing) + 0x00000000400e2910 esp_modem_sleep_deregister + *fill* 0x00000000400e29be 0x2 + .text.esp_phy_load_cal_and_init + 0x00000000400e29c0 0xfa esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x13a (size before relaxing) + 0x00000000400e29c0 esp_phy_load_cal_and_init + *fill* 0x00000000400e2aba 0x2 + .text.kill_oldest_dhcps_pool + 0x00000000400e2abc 0x3a esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x3e (size before relaxing) + *fill* 0x00000000400e2af6 0x2 + .text.parse_options + 0x00000000400e2af8 0x99 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x00000000400e2b91 0x3 + .text.create_msg + 0x00000000400e2b94 0xb1 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x00000000400e2c45 0x3 + .text.add_offer_options + 0x00000000400e2c48 0x15f esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x163 (size before relaxing) + *fill* 0x00000000400e2da7 0x1 + .text.dhcps_poll_set + 0x00000000400e2da8 0xb2 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0xbe (size before relaxing) + *fill* 0x00000000400e2e5a 0x2 + .text.parse_msg + 0x00000000400e2e5c 0x1ca esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x1ea (size before relaxing) + *fill* 0x00000000400e3026 0x2 + .text.dhcps_pbuf_alloc + 0x00000000400e3028 0x1d esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x00000000400e3028 dhcps_pbuf_alloc + *fill* 0x00000000400e3045 0x3 + .text.send_offer + 0x00000000400e3048 0x8f esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x9b (size before relaxing) + *fill* 0x00000000400e30d7 0x1 + .text.send_ack + 0x00000000400e30d8 0xa0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0xab (size before relaxing) + *fill* 0x00000000400e3178 0x0 + .text.send_nak + 0x00000000400e3178 0x8b esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x97 (size before relaxing) + *fill* 0x00000000400e3203 0x1 + .text.handle_dhcp + 0x00000000400e3204 0xc6 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0xda (size before relaxing) + *fill* 0x00000000400e32ca 0x2 + .text.dhcps_set_new_lease_cb + 0x00000000400e32cc 0xa esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x00000000400e32cc dhcps_set_new_lease_cb + *fill* 0x00000000400e32d6 0x2 + .text.dhcps_start + 0x00000000400e32d8 0x6b esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x77 (size before relaxing) + 0x00000000400e32d8 dhcps_start + *fill* 0x00000000400e3343 0x1 + .text.dhcps_stop + 0x00000000400e3344 0x4f esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x57 (size before relaxing) + 0x00000000400e3344 dhcps_stop + *fill* 0x00000000400e3393 0x1 + .text.dhcps_coarse_tmr + 0x00000000400e3394 0x4c esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x50 (size before relaxing) + 0x00000000400e3394 dhcps_coarse_tmr + .text.tcpip_timeouts_mbox_fetch + 0x00000000400e33e0 0x36 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x42 (size before relaxing) + *fill* 0x00000000400e3416 0x2 + .text.tcpip_thread_handle_msg + 0x00000000400e3418 0x90 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .text.tcpip_thread + 0x00000000400e34a8 0x36 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x3d (size before relaxing) + *fill* 0x00000000400e34de 0x2 + .text.tcpip_inpkt + 0x00000000400e34e0 0x52 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x5a (size before relaxing) + 0x00000000400e34e0 tcpip_inpkt + *fill* 0x00000000400e3532 0x2 + .text.tcpip_input + 0x00000000400e3534 0x2e esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x31 (size before relaxing) + 0x00000000400e3534 tcpip_input + *fill* 0x00000000400e3562 0x2 + .text.tcpip_callback + 0x00000000400e3564 0x41 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x45 (size before relaxing) + 0x00000000400e3564 tcpip_callback + *fill* 0x00000000400e35a5 0x3 + .text.tcpip_try_callback + 0x00000000400e35a8 0x52 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x5a (size before relaxing) + 0x00000000400e35a8 tcpip_try_callback + *fill* 0x00000000400e35fa 0x2 + .text.tcpip_send_msg_wait_sem + 0x00000000400e35fc 0x50 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x54 (size before relaxing) + 0x00000000400e35fc tcpip_send_msg_wait_sem + .text.tcpip_init + 0x00000000400e364c 0x4b esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x53 (size before relaxing) + 0x00000000400e364c tcpip_init + *fill* 0x00000000400e3697 0x1 + .text.lwip_htonl + 0x00000000400e3698 0x26 esp-idf/lwip/liblwip.a(def.c.obj) + 0x00000000400e3698 lwip_htonl + *fill* 0x00000000400e36be 0x2 + .text.dns_backupserver_available + 0x00000000400e36c0 0x8d esp-idf/lwip/liblwip.a(dns.c.obj) + *fill* 0x00000000400e374d 0x3 + .text.dns_create_txid + 0x00000000400e3750 0x3e esp-idf/lwip/liblwip.a(dns.c.obj) + *fill* 0x00000000400e378e 0x2 + .text.dns_call_found + 0x00000000400e3790 0x1d7 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x1db (size before relaxing) + *fill* 0x00000000400e3967 0x1 + .text.dns_send + 0x00000000400e3968 0x2d5 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x2e5 (size before relaxing) + *fill* 0x00000000400e3c3d 0x3 + .text.dns_check_entry + 0x00000000400e3c40 0x2ea esp-idf/lwip/liblwip.a(dns.c.obj) + *fill* 0x00000000400e3f2a 0x2 + .text.dns_check_entries + 0x00000000400e3f2c 0x1a esp-idf/lwip/liblwip.a(dns.c.obj) + *fill* 0x00000000400e3f46 0x2 + .text.dns_setserver + 0x00000000400e3f48 0x43 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x00000000400e3f48 dns_setserver + *fill* 0x00000000400e3f8b 0x1 + .text.dns_clear_servers + 0x00000000400e3f8c 0x2e esp-idf/lwip/liblwip.a(dns.c.obj) + 0x00000000400e3f8c dns_clear_servers + *fill* 0x00000000400e3fba 0x2 + .text.dns_tmr 0x00000000400e3fbc 0x8 esp-idf/lwip/liblwip.a(dns.c.obj) + 0xb (size before relaxing) + 0x00000000400e3fbc dns_tmr + *fill* 0x00000000400e3fc4 0x0 + .text.lwip_init + 0x00000000400e3fc4 0x29 esp-idf/lwip/liblwip.a(init.c.obj) + 0x3b (size before relaxing) + 0x00000000400e3fc4 lwip_init + *fill* 0x00000000400e3fed 0x3 + .text.ip_input + 0x00000000400e3ff0 0x31 esp-idf/lwip/liblwip.a(ip.c.obj) + 0x39 (size before relaxing) + 0x00000000400e3ff0 ip_input + *fill* 0x00000000400e4021 0x3 + .text.mem_malloc + 0x00000000400e4024 0x37 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x3f (size before relaxing) + 0x00000000400e4024 mem_malloc + *fill* 0x00000000400e405b 0x1 + .text.mem_free + 0x00000000400e405c 0x3b esp-idf/lwip/liblwip.a(mem.c.obj) + 0x3e (size before relaxing) + 0x00000000400e405c mem_free + *fill* 0x00000000400e4097 0x1 + .text.do_memp_malloc_pool + 0x00000000400e4098 0x3f esp-idf/lwip/liblwip.a(memp.c.obj) + 0x4a (size before relaxing) + *fill* 0x00000000400e40d7 0x1 + .text.do_memp_free_pool + 0x00000000400e40d8 0x28 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x30 (size before relaxing) + .text.memp_malloc + 0x00000000400e4100 0x2c esp-idf/lwip/liblwip.a(memp.c.obj) + 0x00000000400e4100 memp_malloc + .text.memp_free + 0x00000000400e412c 0x2a esp-idf/lwip/liblwip.a(memp.c.obj) + 0x00000000400e412c memp_free + *fill* 0x00000000400e4156 0x2 + .text.netif_loopif_init + 0x00000000400e4158 0x34 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_do_ip_addr_changed + 0x00000000400e418c 0x1c esp-idf/lwip/liblwip.a(netif.c.obj) + 0x24 (size before relaxing) + .text.netif_issue_reports + 0x00000000400e41a8 0x4b esp-idf/lwip/liblwip.a(netif.c.obj) + 0x53 (size before relaxing) + *fill* 0x00000000400e41f3 0x1 + .text.netif_do_set_ipaddr + 0x00000000400e41f4 0x91 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x95 (size before relaxing) + *fill* 0x00000000400e4285 0x3 + .text.netif_poll + 0x00000000400e4288 0xc3 esp-idf/lwip/liblwip.a(netif.c.obj) + 0xd5 (size before relaxing) + 0x00000000400e4288 netif_poll + *fill* 0x00000000400e434b 0x1 + .text.netif_set_addr + 0x00000000400e434c 0x54 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400e434c netif_set_addr + .text.netif_add + 0x00000000400e43a0 0x217 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400e43a0 netif_add + *fill* 0x00000000400e45b7 0x1 + .text.netif_set_default + 0x00000000400e45b8 0xa esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400e45b8 netif_set_default + *fill* 0x00000000400e45c2 0x2 + .text.netif_set_up + 0x00000000400e45c4 0x33 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400e45c4 netif_set_up + *fill* 0x00000000400e45f7 0x1 + .text.netif_set_down + 0x00000000400e45f8 0x34 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400e45f8 netif_set_down + .text.netif_remove + 0x00000000400e462c 0x99 esp-idf/lwip/liblwip.a(netif.c.obj) + 0xa1 (size before relaxing) + 0x00000000400e462c netif_remove + *fill* 0x00000000400e46c5 0x3 + .text.netif_set_link_up + 0x00000000400e46c8 0x38 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x3c (size before relaxing) + 0x00000000400e46c8 netif_set_link_up + .text.netif_init + 0x00000000400e4700 0x56 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x5e (size before relaxing) + 0x00000000400e4700 netif_init + *fill* 0x00000000400e4756 0x2 + .text.netif_loop_output + 0x00000000400e4758 0xd4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0xe0 (size before relaxing) + 0x00000000400e4758 netif_loop_output + .text.netif_loop_output_ipv6 + 0x00000000400e482c 0x12 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x00000000400e483e 0x2 + .text.netif_loop_output_ipv4 + 0x00000000400e4840 0x12 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x00000000400e4852 0x2 + .text.netif_ip6_addr_set_state + 0x00000000400e4854 0xab esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400e4854 netif_ip6_addr_set_state + *fill* 0x00000000400e48ff 0x1 + .text.netif_get_ip6_addr_match + 0x00000000400e4900 0xb4 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400e4900 netif_get_ip6_addr_match + .text.netif_get_by_index + 0x00000000400e49b4 0x28 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400e49b4 netif_get_by_index + .text.netif_find + 0x00000000400e49dc 0x3e esp-idf/lwip/liblwip.a(netif.c.obj) + 0x00000000400e49dc netif_find + *fill* 0x00000000400e4a1a 0x2 + .text.pbuf_add_header_impl + 0x00000000400e4a1c 0x84 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .text.pbuf_pool_is_empty + 0x00000000400e4aa0 0x3f esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4b (size before relaxing) + *fill* 0x00000000400e4adf 0x1 + .text.pbuf_free_ooseq + 0x00000000400e4ae0 0x33 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x3b (size before relaxing) + *fill* 0x00000000400e4b13 0x1 + .text.pbuf_free_ooseq_callback + 0x00000000400e4b14 0x8 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0xb (size before relaxing) + *fill* 0x00000000400e4b1c 0x0 + .text.pbuf_alloc_reference + 0x00000000400e4b1c 0x52 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400e4b1c pbuf_alloc_reference + *fill* 0x00000000400e4b6e 0x2 + .text.pbuf_add_header + 0x00000000400e4b70 0x10 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x14 (size before relaxing) + 0x00000000400e4b70 pbuf_add_header + .text.pbuf_add_header_force + 0x00000000400e4b80 0x10 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x14 (size before relaxing) + 0x00000000400e4b80 pbuf_add_header_force + .text.pbuf_remove_header + 0x00000000400e4b90 0x64 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400e4b90 pbuf_remove_header + .text.pbuf_header_impl + 0x00000000400e4bf4 0x22 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x00000000400e4c16 0x2 + .text.pbuf_header_force + 0x00000000400e4c18 0x14 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400e4c18 pbuf_header_force + .text.pbuf_free + 0x00000000400e4c2c 0xd1 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0xe1 (size before relaxing) + 0x00000000400e4c2c pbuf_free + *fill* 0x00000000400e4cfd 0x3 + .text.pbuf_alloc + 0x00000000400e4d00 0x160 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x16c (size before relaxing) + 0x00000000400e4d00 pbuf_alloc + .text.pbuf_realloc + 0x00000000400e4e60 0x9b esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x9e (size before relaxing) + 0x00000000400e4e60 pbuf_realloc + *fill* 0x00000000400e4efb 0x1 + .text.pbuf_free_header + 0x00000000400e4efc 0x46 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x4a (size before relaxing) + 0x00000000400e4efc pbuf_free_header + *fill* 0x00000000400e4f42 0x2 + .text.pbuf_ref + 0x00000000400e4f44 0x2e esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x32 (size before relaxing) + 0x00000000400e4f44 pbuf_ref + *fill* 0x00000000400e4f72 0x2 + .text.pbuf_cat + 0x00000000400e4f74 0x61 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400e4f74 pbuf_cat + *fill* 0x00000000400e4fd5 0x3 + .text.pbuf_chain + 0x00000000400e4fd8 0x13 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x17 (size before relaxing) + 0x00000000400e4fd8 pbuf_chain + *fill* 0x00000000400e4feb 0x1 + .text.pbuf_copy + 0x00000000400e4fec 0x107 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400e4fec pbuf_copy + *fill* 0x00000000400e50f3 0x1 + .text.pbuf_copy_partial + 0x00000000400e50f4 0x87 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400e50f4 pbuf_copy_partial + *fill* 0x00000000400e517b 0x1 + .text.pbuf_skip + 0x00000000400e517c 0x14 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400e517c pbuf_skip + .text.pbuf_take + 0x00000000400e5190 0x94 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400e5190 pbuf_take + .text.pbuf_take_at + 0x00000000400e5224 0x7e esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x86 (size before relaxing) + 0x00000000400e5224 pbuf_take_at + *fill* 0x00000000400e52a2 0x2 + .text.pbuf_clone + 0x00000000400e52a4 0x32 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x36 (size before relaxing) + 0x00000000400e52a4 pbuf_clone + *fill* 0x00000000400e52d6 0x2 + .text.pbuf_try_get_at + 0x00000000400e52d8 0x2e esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x00000000400e52d8 pbuf_try_get_at + *fill* 0x00000000400e5306 0x2 + .text.pbuf_get_at + 0x00000000400e5308 0x18 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x1c (size before relaxing) + 0x00000000400e5308 pbuf_get_at + .text.pbuf_put_at + 0x00000000400e5320 0x24 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x28 (size before relaxing) + 0x00000000400e5320 pbuf_put_at + .text.raw_input_local_match + 0x00000000400e5344 0x12e esp-idf/lwip/liblwip.a(raw.c.obj) + *fill* 0x00000000400e5472 0x2 + .text.raw_input + 0x00000000400e5474 0x125 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x00000000400e5474 raw_input + *fill* 0x00000000400e5599 0x3 + .text.raw_bind + 0x00000000400e559c 0x144 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x00000000400e559c raw_bind + .text.raw_sendto_if_src + 0x00000000400e56e0 0x25e esp-idf/lwip/liblwip.a(raw.c.obj) + 0x276 (size before relaxing) + 0x00000000400e56e0 raw_sendto_if_src + *fill* 0x00000000400e593e 0x2 + .text.raw_sendto + 0x00000000400e5940 0x169 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x00000000400e5940 raw_sendto + *fill* 0x00000000400e5aa9 0x3 + .text.raw_send + 0x00000000400e5aac 0x15 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x00000000400e5aac raw_send + *fill* 0x00000000400e5ac1 0x3 + .text.raw_remove + 0x00000000400e5ac4 0x36 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x3a (size before relaxing) + 0x00000000400e5ac4 raw_remove + *fill* 0x00000000400e5afa 0x2 + .text.raw_new 0x00000000400e5afc 0x32 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x00000000400e5afc raw_new + *fill* 0x00000000400e5b2e 0x2 + .text.raw_new_ip_type + 0x00000000400e5b30 0x19 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x1c (size before relaxing) + 0x00000000400e5b30 raw_new_ip_type + *fill* 0x00000000400e5b49 0x3 + .text.raw_netif_ip_addr_changed + 0x00000000400e5b4c 0x143 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x00000000400e5b4c raw_netif_ip_addr_changed + *fill* 0x00000000400e5c8f 0x1 + .text.tcp_new_port + 0x00000000400e5c90 0x6f esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x00000000400e5cff 0x1 + .text.tcp_remove_listener + 0x00000000400e5d00 0x2b esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x00000000400e5d2b 0x1 + .text.tcp_listen_closed + 0x00000000400e5d2c 0x4c esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x50 (size before relaxing) + .text.tcp_free_listen + 0x00000000400e5d78 0x26 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x00000000400e5d9e 0x2 + .text.tcp_init + 0x00000000400e5da0 0x14 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x17 (size before relaxing) + 0x00000000400e5da0 tcp_init + *fill* 0x00000000400e5db4 0x0 + .text.tcp_free + 0x00000000400e5db4 0x26 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e5db4 tcp_free + *fill* 0x00000000400e5dda 0x2 + .text.tcp_backlog_delayed + 0x00000000400e5ddc 0x53 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e5ddc tcp_backlog_delayed + *fill* 0x00000000400e5e2f 0x1 + .text.tcp_backlog_accepted + 0x00000000400e5e30 0x4d esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e5e30 tcp_backlog_accepted + *fill* 0x00000000400e5e7d 0x3 + .text.tcp_close_shutdown_fin + 0x00000000400e5e80 0x88 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x90 (size before relaxing) + .text.tcp_handle_closepend + 0x00000000400e5f08 0x29 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x00000000400e5f31 0x3 + .text.tcp_bind + 0x00000000400e5f34 0x369 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x36d (size before relaxing) + 0x00000000400e5f34 tcp_bind + *fill* 0x00000000400e629d 0x3 + .text.tcp_listen_with_backlog_and_err + 0x00000000400e62a0 0x1b4 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x1b8 (size before relaxing) + 0x00000000400e62a0 tcp_listen_with_backlog_and_err + .text.tcp_update_rcv_ann_wnd + 0x00000000400e6454 0x70 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e6454 tcp_update_rcv_ann_wnd + .text.tcp_recved + 0x00000000400e64c4 0x6b esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x6f (size before relaxing) + 0x00000000400e64c4 tcp_recved + *fill* 0x00000000400e652f 0x1 + .text.tcp_seg_free + 0x00000000400e6530 0x18 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x1c (size before relaxing) + 0x00000000400e6530 tcp_seg_free + .text.tcp_segs_free + 0x00000000400e6548 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e6548 tcp_segs_free + *fill* 0x00000000400e655f 0x1 + .text.tcp_seg_copy + 0x00000000400e6560 0x36 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x3a (size before relaxing) + 0x00000000400e6560 tcp_seg_copy + *fill* 0x00000000400e6596 0x2 + .text.tcp_pcb_num_cal + 0x00000000400e6598 0xcb esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e6598 tcp_pcb_num_cal + *fill* 0x00000000400e6663 0x1 + .text.tcp_recv + 0x00000000400e6664 0x22 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e6664 tcp_recv + *fill* 0x00000000400e6686 0x2 + .text.tcp_sent + 0x00000000400e6688 0x22 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e6688 tcp_sent + *fill* 0x00000000400e66aa 0x2 + .text.tcp_err 0x00000000400e66ac 0x22 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e66ac tcp_err + *fill* 0x00000000400e66ce 0x2 + .text.tcp_poll + 0x00000000400e66d0 0x34 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e66d0 tcp_poll + .text.tcp_next_iss + 0x00000000400e6704 0x28 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e6704 tcp_next_iss + .text.tcp_eff_send_mss_netif + 0x00000000400e672c 0x53 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x57 (size before relaxing) + 0x00000000400e672c tcp_eff_send_mss_netif + *fill* 0x00000000400e677f 0x1 + .text.tcp_free_ooseq + 0x00000000400e6780 0x12 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x16 (size before relaxing) + 0x00000000400e6780 tcp_free_ooseq + *fill* 0x00000000400e6792 0x2 + .text.tcp_pcb_purge + 0x00000000400e6794 0x6a esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x72 (size before relaxing) + 0x00000000400e6794 tcp_pcb_purge + *fill* 0x00000000400e67fe 0x2 + .text.tcp_pcb_remove + 0x00000000400e6800 0xd1 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xd9 (size before relaxing) + 0x00000000400e6800 tcp_pcb_remove + *fill* 0x00000000400e68d1 0x3 + .text.tcp_abandon + 0x00000000400e68d4 0xe2 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0xf6 (size before relaxing) + 0x00000000400e68d4 tcp_abandon + *fill* 0x00000000400e69b6 0x2 + .text.tcp_abort + 0x00000000400e69b8 0xf esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e69b8 tcp_abort + *fill* 0x00000000400e69c7 0x1 + .text.tcp_accept_null + 0x00000000400e69c8 0x22 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x25 (size before relaxing) + *fill* 0x00000000400e69ea 0x2 + .text.tcp_kill_timewait + 0x00000000400e69ec 0x2f esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x32 (size before relaxing) + *fill* 0x00000000400e6a1b 0x1 + .text.tcp_kill_prio + 0x00000000400e6a1c 0x58 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x5b (size before relaxing) + *fill* 0x00000000400e6a74 0x0 + .text.tcp_netif_ip_addr_changed_pcblist + 0x00000000400e6a74 0x95 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x00000000400e6b09 0x3 + .text.tcp_netif_ip_addr_changed + 0x00000000400e6b0c 0x158 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x15c (size before relaxing) + 0x00000000400e6b0c tcp_netif_ip_addr_changed + .text.tcp_kill_state + 0x00000000400e6c64 0x52 esp-idf/lwip/liblwip.a(tcp.c.obj) + *fill* 0x00000000400e6cb6 0x2 + .text.tcp_alloc + 0x00000000400e6cb8 0x122 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x152 (size before relaxing) + 0x00000000400e6cb8 tcp_alloc + *fill* 0x00000000400e6dda 0x2 + .text.tcp_new_ip_type + 0x00000000400e6ddc 0x1a esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e6ddc tcp_new_ip_type + *fill* 0x00000000400e6df6 0x2 + .text.tcp_close_shutdown + 0x00000000400e6df8 0x157 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x16a (size before relaxing) + *fill* 0x00000000400e6f4f 0x1 + .text.tcp_close + 0x00000000400e6f50 0x35 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e6f50 tcp_close + *fill* 0x00000000400e6f85 0x3 + .text.tcp_recv_null + 0x00000000400e6f88 0x42 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x46 (size before relaxing) + 0x00000000400e6f88 tcp_recv_null + *fill* 0x00000000400e6fca 0x2 + .text.tcp_process_refused_data + 0x00000000400e6fcc 0x92 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e6fcc tcp_process_refused_data + *fill* 0x00000000400e705e 0x2 + .text.tcp_fasttmr + 0x00000000400e7060 0x87 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000400e7060 tcp_fasttmr + *fill* 0x00000000400e70e7 0x1 + .text.tcp_shutdown + 0x00000000400e70e8 0x7f esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x83 (size before relaxing) + 0x00000000400e70e8 tcp_shutdown + *fill* 0x00000000400e7167 0x1 + .text.tcp_slowtmr + 0x00000000400e7168 0x49d esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x4b5 (size before relaxing) + 0x00000000400e7168 tcp_slowtmr + *fill* 0x00000000400e7605 0x3 + .text.tcp_tmr 0x00000000400e7608 0x1c esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x22 (size before relaxing) + 0x00000000400e7608 tcp_tmr + *fill* 0x00000000400e7624 0x0 + .text.tcp_get_next_optbyte + 0x00000000400e7624 0x40 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .text.tcp_parseopt + 0x00000000400e7664 0xa8 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0xb4 (size before relaxing) + .text.tcp_input_delayed_close + 0x00000000400e770c 0x4d esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x51 (size before relaxing) + *fill* 0x00000000400e7759 0x3 + .text.tcp_timewait_input + 0x00000000400e775c 0xa6 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0xaa (size before relaxing) + *fill* 0x00000000400e7802 0x2 + .text.tcp_listen_input + 0x00000000400e7804 0x1fb esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x21e (size before relaxing) + *fill* 0x00000000400e79ff 0x1 + .text.tcp_free_acked_segments + 0x00000000400e7a00 0xdc esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .text.tcp_oos_insert_segment + 0x00000000400e7adc 0xfc esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x104 (size before relaxing) + .text.tcp_receive + 0x00000000400e7bd8 0xbe6 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0xc2a (size before relaxing) + *fill* 0x00000000400e87be 0x2 + .text.tcp_process + 0x00000000400e87c0 0x61e esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x63a (size before relaxing) + *fill* 0x00000000400e8dde 0x2 + .text.tcp_input + 0x00000000400e8de0 0x954 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x997 (size before relaxing) + 0x00000000400e8de0 tcp_input + *fill* 0x00000000400e9734 0x0 + .text.tcp_trigger_input_pcb_close + 0x00000000400e9734 0x13 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x00000000400e9734 tcp_trigger_input_pcb_close + *fill* 0x00000000400e9747 0x1 + .text.tcp_write_checks + 0x00000000400e9748 0xc0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .text.tcp_output_segment_busy + 0x00000000400e9808 0x29 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x00000000400e9831 0x3 + .text.tcp_output_fill_options + 0x00000000400e9834 0x42 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + *fill* 0x00000000400e9876 0x2 + .text.tcp_pbuf_prealloc + 0x00000000400e9878 0x64 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .text.tcp_create_segment + 0x00000000400e98dc 0x10b esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x117 (size before relaxing) + *fill* 0x00000000400e99e7 0x1 + .text.tcp_output_alloc_header_common + 0x00000000400e99e8 0xd8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0xe0 (size before relaxing) + .text.tcp_output_alloc_header + 0x00000000400e9ac0 0x44 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x48 (size before relaxing) + .text.tcp_route + 0x00000000400e9b04 0x3c esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .text.tcp_output_segment + 0x00000000400e9b40 0x19c esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x1b0 (size before relaxing) + .text.tcp_output_control_segment + 0x00000000400e9cdc 0x93 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x9a (size before relaxing) + *fill* 0x00000000400e9d6f 0x1 + .text.tcp_write + 0x00000000400e9d70 0x362 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x36e (size before relaxing) + 0x00000000400e9d70 tcp_write + *fill* 0x00000000400ea0d2 0x2 + .text.tcp_split_unsent_seg + 0x00000000400ea0d4 0x1d9 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x1ed (size before relaxing) + 0x00000000400ea0d4 tcp_split_unsent_seg + *fill* 0x00000000400ea2ad 0x3 + .text.tcp_enqueue_flags + 0x00000000400ea2b0 0x140 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x00000000400ea2b0 tcp_enqueue_flags + .text.tcp_send_fin + 0x00000000400ea3f0 0x85 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x89 (size before relaxing) + 0x00000000400ea3f0 tcp_send_fin + *fill* 0x00000000400ea475 0x3 + .text.tcp_rexmit_rto_prepare + 0x00000000400ea478 0xcd esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0xd5 (size before relaxing) + 0x00000000400ea478 tcp_rexmit_rto_prepare + *fill* 0x00000000400ea545 0x3 + .text.tcp_rexmit + 0x00000000400ea548 0xc1 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0xc5 (size before relaxing) + 0x00000000400ea548 tcp_rexmit + *fill* 0x00000000400ea609 0x3 + .text.tcp_rexmit_fast + 0x00000000400ea60c 0x68 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x6b (size before relaxing) + 0x00000000400ea60c tcp_rexmit_fast + *fill* 0x00000000400ea674 0x0 + .text.tcp_rst 0x00000000400ea674 0x6c esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x78 (size before relaxing) + 0x00000000400ea674 tcp_rst + .text.tcp_send_empty_ack + 0x00000000400ea6e0 0x7f esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x87 (size before relaxing) + 0x00000000400ea6e0 tcp_send_empty_ack + *fill* 0x00000000400ea75f 0x1 + .text.tcp_output + 0x00000000400ea760 0x417 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x433 (size before relaxing) + 0x00000000400ea760 tcp_output + *fill* 0x00000000400eab77 0x1 + .text.tcp_rexmit_rto_commit + 0x00000000400eab78 0x2d esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x30 (size before relaxing) + 0x00000000400eab78 tcp_rexmit_rto_commit + *fill* 0x00000000400eaba5 0x3 + .text.tcp_rexmit_rto + 0x00000000400eaba8 0x2b esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x2f (size before relaxing) + 0x00000000400eaba8 tcp_rexmit_rto + *fill* 0x00000000400eabd3 0x1 + .text.tcp_keepalive + 0x00000000400eabd4 0x53 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x5f (size before relaxing) + 0x00000000400eabd4 tcp_keepalive + *fill* 0x00000000400eac27 0x1 + .text.tcp_zero_window_probe + 0x00000000400eac28 0x135 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x141 (size before relaxing) + 0x00000000400eac28 tcp_zero_window_probe + *fill* 0x00000000400ead5d 0x3 + .text.sys_timeout_abs + 0x00000000400ead60 0x61 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x65 (size before relaxing) + *fill* 0x00000000400eadc1 0x3 + .text.lwip_cyclic_timer + 0x00000000400eadc4 0x37 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x3f (size before relaxing) + *fill* 0x00000000400eadfb 0x1 + .text.sys_timeout + 0x00000000400eadfc 0x2b esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x2f (size before relaxing) + 0x00000000400eadfc sys_timeout + *fill* 0x00000000400eae27 0x1 + .text.tcp_timer_needed + 0x00000000400eae28 0x2f esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x00000000400eae28 tcp_timer_needed + *fill* 0x00000000400eae57 0x1 + .text.tcpip_tcp_timer + 0x00000000400eae58 0x2d esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x35 (size before relaxing) + *fill* 0x00000000400eae85 0x3 + .text.sys_timeouts_init + 0x00000000400eae88 0x26 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x00000000400eae88 sys_timeouts_init + *fill* 0x00000000400eaeae 0x2 + .text.sys_untimeout + 0x00000000400eaeb0 0x3e esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x42 (size before relaxing) + 0x00000000400eaeb0 sys_untimeout + *fill* 0x00000000400eaeee 0x2 + .text.sys_check_timeouts + 0x00000000400eaef0 0x3a esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x42 (size before relaxing) + 0x00000000400eaef0 sys_check_timeouts + *fill* 0x00000000400eaf2a 0x2 + .text.sys_timeouts_sleeptime + 0x00000000400eaf2c 0x3c esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x00000000400eaf2c sys_timeouts_sleeptime + .text.udp_new_port + 0x00000000400eaf68 0x57 esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x00000000400eafbf 0x1 + .text.udp_input_local_match + 0x00000000400eafc0 0x176 esp-idf/lwip/liblwip.a(udp.c.obj) + *fill* 0x00000000400eb136 0x2 + .text.udp_init + 0x00000000400eb138 0x14 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x17 (size before relaxing) + 0x00000000400eb138 udp_init + *fill* 0x00000000400eb14c 0x0 + .text.udp_input + 0x00000000400eb14c 0x390 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x3a7 (size before relaxing) + 0x00000000400eb14c udp_input + *fill* 0x00000000400eb4dc 0x0 + .text.udp_bind + 0x00000000400eb4dc 0x319 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x31d (size before relaxing) + 0x00000000400eb4dc udp_bind + *fill* 0x00000000400eb7f5 0x3 + .text.udp_sendto_if_src + 0x00000000400eb7f8 0x231 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x24d (size before relaxing) + 0x00000000400eb7f8 udp_sendto_if_src + *fill* 0x00000000400eba29 0x3 + .text.udp_sendto_if + 0x00000000400eba2c 0xf9 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400eba2c udp_sendto_if + *fill* 0x00000000400ebb25 0x3 + .text.udp_sendto + 0x00000000400ebb28 0x14d esp-idf/lwip/liblwip.a(udp.c.obj) + 0x159 (size before relaxing) + 0x00000000400ebb28 udp_sendto + *fill* 0x00000000400ebc75 0x3 + .text.udp_send + 0x00000000400ebc78 0x4d esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400ebc78 udp_send + *fill* 0x00000000400ebcc5 0x3 + .text.udp_connect + 0x00000000400ebcc8 0x16e esp-idf/lwip/liblwip.a(udp.c.obj) + 0x172 (size before relaxing) + 0x00000000400ebcc8 udp_connect + *fill* 0x00000000400ebe36 0x2 + .text.udp_disconnect + 0x00000000400ebe38 0xa6 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400ebe38 udp_disconnect + *fill* 0x00000000400ebede 0x2 + .text.udp_recv + 0x00000000400ebee0 0x19 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400ebee0 udp_recv + *fill* 0x00000000400ebef9 0x3 + .text.udp_remove + 0x00000000400ebefc 0x44 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400ebefc udp_remove + .text.udp_new 0x00000000400ebf40 0x20 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x24 (size before relaxing) + 0x00000000400ebf40 udp_new + .text.udp_new_ip_type + 0x00000000400ebf60 0x15 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x18 (size before relaxing) + 0x00000000400ebf60 udp_new_ip_type + *fill* 0x00000000400ebf75 0x3 + .text.udp_netif_ip_addr_changed + 0x00000000400ebf78 0x143 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000400ebf78 udp_netif_ip_addr_changed + *fill* 0x00000000400ec0bb 0x1 + .text.dhcp_option_short + 0x00000000400ec0bc 0x35 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x00000000400ec0f1 0x3 + .text.dhcp_option + 0x00000000400ec0f4 0x34 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .text.dhcp_option_byte + 0x00000000400ec128 0x26 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x00000000400ec14e 0x2 + .text.dhcp_option_long + 0x00000000400ec150 0x4f esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x00000000400ec19f 0x1 + .text.dhcp_create_msg + 0x00000000400ec1a0 0x13d esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x149 (size before relaxing) + *fill* 0x00000000400ec2dd 0x3 + .text.dhcp_option_hostname + 0x00000000400ec2e0 0x7a esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x00000000400ec35a 0x2 + .text.dhcp_option_trailer + 0x00000000400ec35c 0x3f esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x00000000400ec39b 0x1 + .text.dhcp_rebind + 0x00000000400ec39c 0xed esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x105 (size before relaxing) + *fill* 0x00000000400ec489 0x3 + .text.dhcp_t2_timeout + 0x00000000400ec48c 0x3e esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x00000000400ec4ca 0x2 + .text.dhcp_reboot + 0x00000000400ec4cc 0x10d esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x12d (size before relaxing) + *fill* 0x00000000400ec5d9 0x3 + .text.dhcp_select + 0x00000000400ec5dc 0x154 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x184 (size before relaxing) + .text.dhcp_handle_offer + 0x00000000400ec730 0x5b esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x62 (size before relaxing) + *fill* 0x00000000400ec78b 0x1 + .text.dhcp_discover + 0x00000000400ec78c 0xda esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0xf2 (size before relaxing) + *fill* 0x00000000400ec866 0x2 + .text.dhcp_decline + 0x00000000400ec868 0x87 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x9f (size before relaxing) + *fill* 0x00000000400ec8ef 0x1 + .text.dhcp_check + 0x00000000400ec8f0 0x2f esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x33 (size before relaxing) + *fill* 0x00000000400ec91f 0x1 + .text.dhcp_bind + 0x00000000400ec920 0xe4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0xe8 (size before relaxing) + .text.dhcp_handle_nak + 0x00000000400eca04 0x2d esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x34 (size before relaxing) + *fill* 0x00000000400eca31 0x3 + .text.dhcp_dec_pcb_refcount + 0x00000000400eca34 0x3b esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x00000000400eca6f 0x1 + .text.dhcp_inc_pcb_refcount + 0x00000000400eca70 0x72 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x7e (size before relaxing) + *fill* 0x00000000400ecae2 0x2 + .text.dhcp_parse_reply + 0x00000000400ecae4 0x3bf esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x3c7 (size before relaxing) + *fill* 0x00000000400ecea3 0x1 + .text.dhcp_handle_ack + 0x00000000400ecea4 0x102 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10a (size before relaxing) + *fill* 0x00000000400ecfa6 0x2 + .text.dhcp_recv + 0x00000000400ecfa8 0x135 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x148 (size before relaxing) + *fill* 0x00000000400ed0dd 0x3 + .text.dhcp_cleanup + 0x00000000400ed0e0 0x28 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x2b (size before relaxing) + 0x00000000400ed0e0 dhcp_cleanup + *fill* 0x00000000400ed108 0x0 + .text.dhcp_set_cb + 0x00000000400ed108 0x22 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x00000000400ed108 dhcp_set_cb + *fill* 0x00000000400ed12a 0x2 + .text.dhcp_network_changed + 0x00000000400ed12c 0x4c esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x53 (size before relaxing) + 0x00000000400ed12c dhcp_network_changed + *fill* 0x00000000400ed178 0x0 + .text.dhcp_arp_reply + 0x00000000400ed178 0x2a esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x2e (size before relaxing) + 0x00000000400ed178 dhcp_arp_reply + *fill* 0x00000000400ed1a2 0x2 + .text.dhcp_renew + 0x00000000400ed1a4 0xed esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x105 (size before relaxing) + 0x00000000400ed1a4 dhcp_renew + *fill* 0x00000000400ed291 0x3 + .text.dhcp_t1_timeout + 0x00000000400ed294 0x3b esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x00000000400ed2cf 0x1 + .text.dhcp_release_and_stop + 0x00000000400ed2d0 0x103 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x123 (size before relaxing) + 0x00000000400ed2d0 dhcp_release_and_stop + *fill* 0x00000000400ed3d3 0x1 + .text.dhcp_start + 0x00000000400ed3d4 0xb4 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0xbc (size before relaxing) + 0x00000000400ed3d4 dhcp_start + .text.dhcp_coarse_tmr + 0x00000000400ed488 0x63 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x6b (size before relaxing) + 0x00000000400ed488 dhcp_coarse_tmr + *fill* 0x00000000400ed4eb 0x1 + .text.dhcp_timeout + 0x00000000400ed4ec 0x87 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x92 (size before relaxing) + *fill* 0x00000000400ed573 0x1 + .text.dhcp_fine_tmr + 0x00000000400ed574 0x33 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x37 (size before relaxing) + 0x00000000400ed574 dhcp_fine_tmr + *fill* 0x00000000400ed5a7 0x1 + .text.dhcp_release + 0x00000000400ed5a8 0xc esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x10 (size before relaxing) + 0x00000000400ed5a8 dhcp_release + .text.dhcp_stop + 0x00000000400ed5b4 0xa esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0xe (size before relaxing) + 0x00000000400ed5b4 dhcp_stop + *fill* 0x00000000400ed5be 0x2 + .text.free_etharp_q + 0x00000000400ed5c0 0x41 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x49 (size before relaxing) + *fill* 0x00000000400ed601 0x3 + .text.etharp_free_entry + 0x00000000400ed604 0x5e esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x62 (size before relaxing) + *fill* 0x00000000400ed662 0x2 + .text.etharp_find_entry + 0x00000000400ed664 0x1e6 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x1ea (size before relaxing) + *fill* 0x00000000400ed84a 0x2 + .text.etharp_update_arp_entry + 0x00000000400ed84c 0xc6 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0xce (size before relaxing) + *fill* 0x00000000400ed912 0x2 + .text.etharp_raw + 0x00000000400ed914 0x105 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x10d (size before relaxing) + *fill* 0x00000000400eda19 0x3 + .text.etharp_request_dst + 0x00000000400eda1c 0x21 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x25 (size before relaxing) + *fill* 0x00000000400eda3d 0x3 + .text.etharp_cleanup_netif + 0x00000000400eda40 0x35 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x00000000400eda40 etharp_cleanup_netif + *fill* 0x00000000400eda75 0x3 + .text.etharp_input + 0x00000000400eda78 0xf8 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0xfe (size before relaxing) + 0x00000000400eda78 etharp_input + *fill* 0x00000000400edb70 0x0 + .text.etharp_request + 0x00000000400edb70 0x15 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x00000000400edb70 etharp_request + *fill* 0x00000000400edb85 0x3 + .text.garp_tmr + 0x00000000400edb88 0x33 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x00000000400edb88 garp_tmr + *fill* 0x00000000400edbbb 0x1 + .text.etharp_tmr + 0x00000000400edbbc 0x9e esp-idf/lwip/liblwip.a(etharp.c.obj) + 0xa2 (size before relaxing) + 0x00000000400edbbc etharp_tmr + *fill* 0x00000000400edc5a 0x2 + .text.etharp_output_to_arp_index + 0x00000000400edc5c 0xd2 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0xd6 (size before relaxing) + *fill* 0x00000000400edd2e 0x2 + .text.etharp_query + 0x00000000400edd30 0x22f esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x23f (size before relaxing) + 0x00000000400edd30 etharp_query + *fill* 0x00000000400edf5f 0x1 + .text.etharp_output + 0x00000000400edf60 0x171 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x00000000400edf60 etharp_output + *fill* 0x00000000400ee0d1 0x3 + .text.icmp_send_response + 0x00000000400ee0d4 0xd3 esp-idf/lwip/liblwip.a(icmp.c.obj) + 0xe6 (size before relaxing) + *fill* 0x00000000400ee1a7 0x1 + .text.icmp_input + 0x00000000400ee1a8 0x1cf esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x1f6 (size before relaxing) + 0x00000000400ee1a8 icmp_input + *fill* 0x00000000400ee377 0x1 + .text.icmp_dest_unreach + 0x00000000400ee378 0x12 esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x00000000400ee378 icmp_dest_unreach + *fill* 0x00000000400ee38a 0x2 + .text.igmp_start_timer + 0x00000000400ee38c 0x3e esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x42 (size before relaxing) + *fill* 0x00000000400ee3ca 0x2 + .text.igmp_delaying_member + 0x00000000400ee3cc 0x26 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x2a (size before relaxing) + *fill* 0x00000000400ee3f2 0x2 + .text.igmp_ip_output_if + 0x00000000400ee3f4 0x2d esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x31 (size before relaxing) + *fill* 0x00000000400ee421 0x3 + .text.igmp_send + 0x00000000400ee424 0xbf esp-idf/lwip/liblwip.a(igmp.c.obj) + 0xca (size before relaxing) + *fill* 0x00000000400ee4e3 0x1 + .text.igmp_timeout + 0x00000000400ee4e4 0x26 esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x00000000400ee50a 0x2 + .text.igmp_init + 0x00000000400ee50c 0x15 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400ee50c igmp_init + *fill* 0x00000000400ee521 0x3 + .text.igmp_stop + 0x00000000400ee524 0x31 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400ee524 igmp_stop + *fill* 0x00000000400ee555 0x3 + .text.igmp_report_groups + 0x00000000400ee558 0x1f esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400ee558 igmp_report_groups + *fill* 0x00000000400ee577 0x1 + .text.igmp_lookup_group + 0x00000000400ee578 0x82 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x86 (size before relaxing) + *fill* 0x00000000400ee5fa 0x2 + .text.igmp_start + 0x00000000400ee5fc 0x36 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400ee5fc igmp_start + *fill* 0x00000000400ee632 0x2 + .text.igmp_input + 0x00000000400ee634 0x10b esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x116 (size before relaxing) + 0x00000000400ee634 igmp_input + *fill* 0x00000000400ee73f 0x1 + .text.igmp_joingroup_netif + 0x00000000400ee740 0x9d esp-idf/lwip/liblwip.a(igmp.c.obj) + 0xa5 (size before relaxing) + 0x00000000400ee740 igmp_joingroup_netif + *fill* 0x00000000400ee7dd 0x3 + .text.igmp_joingroup + 0x00000000400ee7e0 0x6e esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400ee7e0 igmp_joingroup + *fill* 0x00000000400ee84e 0x2 + .text.igmp_leavegroup_netif + 0x00000000400ee850 0xa5 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0xad (size before relaxing) + 0x00000000400ee850 igmp_leavegroup_netif + *fill* 0x00000000400ee8f5 0x3 + .text.igmp_leavegroup + 0x00000000400ee8f8 0x6d esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x71 (size before relaxing) + 0x00000000400ee8f8 igmp_leavegroup + *fill* 0x00000000400ee965 0x3 + .text.igmp_tmr + 0x00000000400ee968 0x64 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x00000000400ee968 igmp_tmr + .text.igmp_timeout_cb + 0x00000000400ee9cc 0x8 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0xb (size before relaxing) + *fill* 0x00000000400ee9d4 0x0 + .text.ip4_input_accept + 0x00000000400ee9d4 0x34 esp-idf/lwip/liblwip.a(ip4.c.obj) + .text.ip4_netif_exist + 0x00000000400eea08 0x38 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x00000000400eea08 ip4_netif_exist + .text.ip4_route_src_hook + 0x00000000400eea40 0x32 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x00000000400eea40 ip4_route_src_hook + *fill* 0x00000000400eea72 0x2 + .text.ip4_route + 0x00000000400eea74 0x70 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x74 (size before relaxing) + 0x00000000400eea74 ip4_route + .text.ip4_route_src + 0x00000000400eeae4 0x2c esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x34 (size before relaxing) + 0x00000000400eeae4 ip4_route_src + .text.ip4_input + 0x00000000400eeb10 0x29f esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x2c6 (size before relaxing) + 0x00000000400eeb10 ip4_input + *fill* 0x00000000400eedaf 0x1 + .text.ip4_output_if_opt_src + 0x00000000400eedb0 0x291 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x299 (size before relaxing) + 0x00000000400eedb0 ip4_output_if_opt_src + *fill* 0x00000000400ef041 0x3 + .text.ip4_output_if_opt + 0x00000000400ef044 0x35 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x00000000400ef044 ip4_output_if_opt + *fill* 0x00000000400ef079 0x3 + .text.ip4_output_if + 0x00000000400ef07c 0x25 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x29 (size before relaxing) + 0x00000000400ef07c ip4_output_if + *fill* 0x00000000400ef0a1 0x3 + .text.ip4_output_if_src + 0x00000000400ef0a4 0x25 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x29 (size before relaxing) + 0x00000000400ef0a4 ip4_output_if_src + *fill* 0x00000000400ef0c9 0x3 + .text.ip4addr_aton + 0x00000000400ef0cc 0x1e3 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x1e7 (size before relaxing) + 0x00000000400ef0cc ip4addr_aton + *fill* 0x00000000400ef2af 0x1 + .text.ip4_frag + 0x00000000400ef2b0 0x191 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + 0x1a1 (size before relaxing) + 0x00000000400ef2b0 ip4_frag + *fill* 0x00000000400ef441 0x3 + .text.icmp6_send_response_with_addrs_and_netif + 0x00000000400ef444 0x9f esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0xaf (size before relaxing) + *fill* 0x00000000400ef4e3 0x1 + .text.icmp6_send_response + 0x00000000400ef4e4 0x3e esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x42 (size before relaxing) + *fill* 0x00000000400ef522 0x2 + .text.icmp6_send_response_with_addrs + 0x00000000400ef524 0x4a esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x4e (size before relaxing) + *fill* 0x00000000400ef56e 0x2 + .text.icmp6_input + 0x00000000400ef570 0x101 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x12c (size before relaxing) + 0x00000000400ef570 icmp6_input + *fill* 0x00000000400ef671 0x3 + .text.icmp6_dest_unreach + 0x00000000400ef674 0x14 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x00000000400ef674 icmp6_dest_unreach + .text.icmp6_time_exceeded_with_addrs + 0x00000000400ef688 0x18 esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x00000000400ef688 icmp6_time_exceeded_with_addrs + .text.icmp6_param_problem + 0x00000000400ef6a0 0x1a esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x00000000400ef6a0 icmp6_param_problem + *fill* 0x00000000400ef6ba 0x2 + .text.ip6_input_accept + 0x00000000400ef6bc 0x96 esp-idf/lwip/liblwip.a(ip6.c.obj) + *fill* 0x00000000400ef752 0x2 + .text.ip6_route + 0x00000000400ef754 0x2c0 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x2c4 (size before relaxing) + 0x00000000400ef754 ip6_route + .text.ip6_select_source_address + 0x00000000400efa14 0x1d7 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x00000000400efa14 ip6_select_source_address + *fill* 0x00000000400efbeb 0x1 + .text.ip6_input + 0x00000000400efbec 0x711 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x779 (size before relaxing) + 0x00000000400efbec ip6_input + *fill* 0x00000000400f02fd 0x3 + .text.ip6_output_if_src + 0x00000000400f0300 0x385 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x399 (size before relaxing) + 0x00000000400f0300 ip6_output_if_src + *fill* 0x00000000400f0685 0x3 + .text.ip6_output_if + 0x00000000400f0688 0x65 esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x00000000400f0688 ip6_output_if + *fill* 0x00000000400f06ed 0x3 + .text.ip6_options_add_hbh_ra + 0x00000000400f06f0 0x3e esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x42 (size before relaxing) + 0x00000000400f06f0 ip6_options_add_hbh_ra + *fill* 0x00000000400f072e 0x2 + .text.ip6_reass_free_complete_datagram + 0x00000000400f0730 0x248 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x25f (size before relaxing) + *fill* 0x00000000400f0978 0x0 + .text.ip6_reass_remove_oldest_datagram + 0x00000000400f0978 0x40 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x43 (size before relaxing) + *fill* 0x00000000400f09b8 0x0 + .text.ip6_reass_tmr + 0x00000000400f09b8 0x2b esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x00000000400f09b8 ip6_reass_tmr + *fill* 0x00000000400f09e3 0x1 + .text.ip6_reass + 0x00000000400f09e4 0x62a esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x652 (size before relaxing) + 0x00000000400f09e4 ip6_reass + *fill* 0x00000000400f100e 0x2 + .text.ip6_frag + 0x00000000400f1010 0x16d esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x181 (size before relaxing) + 0x00000000400f1010 ip6_frag + *fill* 0x00000000400f117d 0x3 + .text.mld6_delayed_report + 0x00000000400f1180 0x58 esp-idf/lwip/liblwip.a(mld6.c.obj) + .text.mld6_new_group + 0x00000000400f11d8 0x61 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x65 (size before relaxing) + *fill* 0x00000000400f1239 0x3 + .text.mld6_send + 0x00000000400f123c 0x110 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x124 (size before relaxing) + .text.mld6_stop + 0x00000000400f134c 0x31 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x00000000400f134c mld6_stop + *fill* 0x00000000400f137d 0x3 + .text.mld6_report_groups + 0x00000000400f1380 0x1b esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x00000000400f1380 mld6_report_groups + *fill* 0x00000000400f139b 0x1 + .text.mld6_input + 0x00000000400f139c 0x16c esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x17b (size before relaxing) + 0x00000000400f139c mld6_input + *fill* 0x00000000400f1508 0x0 + .text.mld6_joingroup_netif + 0x00000000400f1508 0xfe esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x106 (size before relaxing) + 0x00000000400f1508 mld6_joingroup_netif + *fill* 0x00000000400f1606 0x2 + .text.mld6_joingroup + 0x00000000400f1608 0x5a esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x61 (size before relaxing) + 0x00000000400f1608 mld6_joingroup + *fill* 0x00000000400f1662 0x2 + .text.mld6_leavegroup_netif + 0x00000000400f1664 0x109 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x111 (size before relaxing) + 0x00000000400f1664 mld6_leavegroup_netif + *fill* 0x00000000400f176d 0x3 + .text.mld6_leavegroup + 0x00000000400f1770 0x45 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x4d (size before relaxing) + 0x00000000400f1770 mld6_leavegroup + *fill* 0x00000000400f17b5 0x3 + .text.mld6_tmr + 0x00000000400f17b8 0x72 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x76 (size before relaxing) + 0x00000000400f17b8 mld6_tmr + *fill* 0x00000000400f182a 0x2 + .text.mld6_timeout_cb + 0x00000000400f182c 0x8 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0xb (size before relaxing) + *fill* 0x00000000400f1834 0x0 + .text.nd6_find_neighbor_cache_entry + 0x00000000400f1834 0x6a esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x00000000400f189e 0x2 + .text.nd6_find_destination_cache_entry + 0x00000000400f18a0 0x5e esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x00000000400f18fe 0x2 + .text.nd6_new_destination_cache_entry + 0x00000000400f1900 0x64 esp-idf/lwip/liblwip.a(nd6.c.obj) + .text.nd6_is_prefix_in_netif + 0x00000000400f1964 0xc6 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x00000000400f1a2a 0x2 + .text.nd6_select_router + 0x00000000400f1a2c 0x102 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x00000000400f1b2e 0x2 + .text.nd6_get_router + 0x00000000400f1b30 0x5c esp-idf/lwip/liblwip.a(nd6.c.obj) + .text.nd6_get_onlink_prefix + 0x00000000400f1b8c 0x72 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x00000000400f1bfe 0x2 + .text.nd6_new_onlink_prefix + 0x00000000400f1c00 0xd1 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x00000000400f1cd1 0x3 + .text.nd6_send_q + 0x00000000400f1cd4 0x150 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x154 (size before relaxing) + .text.nd6_duplicate_addr_detected + 0x00000000400f1e24 0x46 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x4e (size before relaxing) + *fill* 0x00000000400f1e6a 0x2 + .text.nd6_process_autoconfig_prefix + 0x00000000400f1e6c 0x27b esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x286 (size before relaxing) + *fill* 0x00000000400f20e7 0x1 + .text.nd6_free_q + 0x00000000400f20e8 0x55 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x61 (size before relaxing) + *fill* 0x00000000400f213d 0x3 + .text.nd6_free_neighbor_cache_entry + 0x00000000400f2140 0x82 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x86 (size before relaxing) + *fill* 0x00000000400f21c2 0x2 + .text.nd6_new_neighbor_cache_entry + 0x00000000400f21c4 0x216 esp-idf/lwip/liblwip.a(nd6.c.obj) + *fill* 0x00000000400f23da 0x2 + .text.nd6_send_na + 0x00000000400f23dc 0x15a esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x166 (size before relaxing) + *fill* 0x00000000400f2536 0x2 + .text.nd6_send_rs + 0x00000000400f2538 0xe9 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0xf5 (size before relaxing) + *fill* 0x00000000400f2621 0x3 + .text.nd6_send_ns + 0x00000000400f2624 0x158 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x164 (size before relaxing) + .text.nd6_send_neighbor_cache_probe + 0x00000000400f277c 0xe esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x12 (size before relaxing) + *fill* 0x00000000400f278a 0x2 + .text.nd6_new_router + 0x00000000400f278c 0x17a esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x17e (size before relaxing) + *fill* 0x00000000400f2906 0x2 + .text.nd6_get_next_hop_entry + 0x00000000400f2908 0x3a1 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x3a5 (size before relaxing) + *fill* 0x00000000400f2ca9 0x3 + .text.nd6_queue_packet + 0x00000000400f2cac 0x13d esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x14d (size before relaxing) + *fill* 0x00000000400f2de9 0x3 + .text.nd6_input + 0x00000000400f2dec 0xdcb esp-idf/lwip/liblwip.a(nd6.c.obj) + 0xe26 (size before relaxing) + 0x00000000400f2dec nd6_input + *fill* 0x00000000400f3bb7 0x1 + .text.nd6_tmr 0x00000000400f3bb8 0x53b esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x54f (size before relaxing) + 0x00000000400f3bb8 nd6_tmr + *fill* 0x00000000400f40f3 0x1 + .text.nd6_clear_destination_cache + 0x00000000400f40f4 0x2b esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400f40f4 nd6_clear_destination_cache + *fill* 0x00000000400f411f 0x1 + .text.nd6_find_route + 0x00000000400f4120 0x98 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x9c (size before relaxing) + 0x00000000400f4120 nd6_find_route + .text.nd6_get_next_hop_addr_or_queue + 0x00000000400f41b8 0x99 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0xa1 (size before relaxing) + 0x00000000400f41b8 nd6_get_next_hop_addr_or_queue + *fill* 0x00000000400f4251 0x3 + .text.nd6_get_destination_mtu + 0x00000000400f4254 0x2a esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x2e (size before relaxing) + 0x00000000400f4254 nd6_get_destination_mtu + *fill* 0x00000000400f427e 0x2 + .text.nd6_reachability_hint + 0x00000000400f4280 0x146 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x14a (size before relaxing) + 0x00000000400f4280 nd6_reachability_hint + *fill* 0x00000000400f43c6 0x2 + .text.nd6_cleanup_netif + 0x00000000400f43c8 0xca esp-idf/lwip/liblwip.a(nd6.c.obj) + 0xce (size before relaxing) + 0x00000000400f43c8 nd6_cleanup_netif + *fill* 0x00000000400f4492 0x2 + .text.nd6_adjust_mld_membership + 0x00000000400f4494 0xb0 esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x00000000400f4494 nd6_adjust_mld_membership + .text.ethernet_input + 0x00000000400f4544 0xf8 esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x104 (size before relaxing) + 0x00000000400f4544 ethernet_input + .text.ethernet_output + 0x00000000400f463c 0x6d esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x71 (size before relaxing) + 0x00000000400f463c ethernet_output + *fill* 0x00000000400f46a9 0x3 + .text.sys_thread_sem_free + 0x00000000400f46ac 0x18 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x1c (size before relaxing) + .text.sys_mutex_new + 0x00000000400f46c4 0x16 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x1a (size before relaxing) + 0x00000000400f46c4 sys_mutex_new + *fill* 0x00000000400f46da 0x2 + .text.sys_mutex_lock + 0x00000000400f46dc 0x23 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x27 (size before relaxing) + 0x00000000400f46dc sys_mutex_lock + *fill* 0x00000000400f46ff 0x1 + .text.sys_mutex_unlock + 0x00000000400f4700 0x24 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x28 (size before relaxing) + 0x00000000400f4700 sys_mutex_unlock + .text.sys_sem_new + 0x00000000400f4724 0x55 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x61 (size before relaxing) + 0x00000000400f4724 sys_sem_new + *fill* 0x00000000400f4779 0x3 + .text.sys_sem_signal + 0x00000000400f477c 0x24 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x28 (size before relaxing) + 0x00000000400f477c sys_sem_signal + .text.sys_sem_signal_isr + 0x00000000400f47a0 0x1e esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400f47a0 sys_sem_signal_isr + *fill* 0x00000000400f47be 0x2 + .text.sys_arch_sem_wait + 0x00000000400f47c0 0x54 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x60 (size before relaxing) + 0x00000000400f47c0 sys_arch_sem_wait + .text.sys_mbox_new + 0x00000000400f4814 0x36 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x3e (size before relaxing) + 0x00000000400f4814 sys_mbox_new + *fill* 0x00000000400f484a 0x2 + .text.sys_mbox_post + 0x00000000400f484c 0x28 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x2c (size before relaxing) + 0x00000000400f484c sys_mbox_post + .text.sys_mbox_trypost + 0x00000000400f4874 0x22 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x00000000400f4874 sys_mbox_trypost + *fill* 0x00000000400f4896 0x2 + .text.sys_arch_mbox_fetch + 0x00000000400f4898 0x65 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x70 (size before relaxing) + 0x00000000400f4898 sys_arch_mbox_fetch + *fill* 0x00000000400f48fd 0x3 + .text.sys_arch_mbox_tryfetch + 0x00000000400f4900 0x3a esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x3d (size before relaxing) + 0x00000000400f4900 sys_arch_mbox_tryfetch + *fill* 0x00000000400f493a 0x2 + .text.sys_mbox_free + 0x00000000400f493c 0x36 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x3e (size before relaxing) + 0x00000000400f493c sys_mbox_free + *fill* 0x00000000400f4972 0x2 + .text.sys_thread_new + 0x00000000400f4974 0x24 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x28 (size before relaxing) + 0x00000000400f4974 sys_thread_new + .text.sys_init + 0x00000000400f4998 0x36 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x48 (size before relaxing) + 0x00000000400f4998 sys_init + *fill* 0x00000000400f49ce 0x2 + .text.sys_now 0x00000000400f49d0 0x10 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x13 (size before relaxing) + 0x00000000400f49d0 sys_now + *fill* 0x00000000400f49e0 0x0 + .text.sys_arch_protect + 0x00000000400f49e0 0x1b esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x21 (size before relaxing) + 0x00000000400f49e0 sys_arch_protect + *fill* 0x00000000400f49fb 0x1 + .text.sys_arch_unprotect + 0x00000000400f49fc 0xb esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0xe (size before relaxing) + 0x00000000400f49fc sys_arch_unprotect + *fill* 0x00000000400f4a07 0x1 + .text.sys_thread_sem_init + 0x00000000400f4a08 0x5c esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x74 (size before relaxing) + 0x00000000400f4a08 sys_thread_sem_init + .text.sys_thread_sem_get + 0x00000000400f4a64 0x16 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x1a (size before relaxing) + 0x00000000400f4a64 sys_thread_sem_get + *fill* 0x00000000400f4a7a 0x2 + .text.inet_cksum_pseudo_base + 0x00000000400f4a7c 0x7c esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .text.inet_chksum_pseudo + 0x00000000400f4af8 0x38 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x3c (size before relaxing) + 0x00000000400f4af8 inet_chksum_pseudo + .text.ip6_chksum_pseudo + 0x00000000400f4b30 0x55 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x00000000400f4b30 ip6_chksum_pseudo + *fill* 0x00000000400f4b85 0x3 + .text.ip_chksum_pseudo + 0x00000000400f4b88 0x32 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x00000000400f4b88 ip_chksum_pseudo + *fill* 0x00000000400f4bba 0x2 + .text.inet_chksum + 0x00000000400f4bbc 0x18 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x00000000400f4bbc inet_chksum + .text.inet_chksum_pbuf + 0x00000000400f4bd4 0x5b esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x00000000400f4bd4 inet_chksum_pbuf + *fill* 0x00000000400f4c2f 0x1 + .text.lwip_get_socket_select_semaphore + 0x00000000400f4c30 0xa esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0xd (size before relaxing) + *fill* 0x00000000400f4c3a 0x2 + .text.lwip_stop_socket_select_isr + 0x00000000400f4c3c 0x12 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x16 (size before relaxing) + *fill* 0x00000000400f4c4e 0x2 + .text.lwip_stop_socket_select + 0x00000000400f4c50 0xa esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0xe (size before relaxing) + *fill* 0x00000000400f4c5a 0x2 + .text.lwip_ioctl_r_wrapper + 0x00000000400f4c5c 0x34 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x38 (size before relaxing) + .text.lwip_fcntl_r_wrapper + 0x00000000400f4c90 0x10 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x14 (size before relaxing) + .text.esp_vfs_lwip_sockets_register + 0x00000000400f4ca0 0x62 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x66 (size before relaxing) + 0x00000000400f4ca0 esp_vfs_lwip_sockets_register + *fill* 0x00000000400f4d02 0x2 + .text.tryget_socket_unconn_nouse + 0x00000000400f4d04 0x20 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.free_socket_locked + 0x00000000400f4d24 0x48 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_sockopt_to_ipopt + 0x00000000400f4d6c 0x20 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_link_select_cb + 0x00000000400f4d8c 0x30 esp-idf/lwip/liblwip.a(sockets.c.obj) + .text.lwip_unlink_select_cb + 0x00000000400f4dbc 0x67 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x6b (size before relaxing) + *fill* 0x00000000400f4e23 0x1 + .text.sockaddr_to_ipaddr_port + 0x00000000400f4e24 0x83 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x00000000400f4ea7 0x1 + .text.lwip_sock_make_addr + 0x00000000400f4ea8 0xf6 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x00000000400f4f9e 0x2 + .text.lwip_recv_tcp_from + 0x00000000400f4fa0 0x42 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x46 (size before relaxing) + *fill* 0x00000000400f4fe2 0x2 + .text.sock_inc_used + 0x00000000400f4fe4 0x52 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x5a (size before relaxing) + *fill* 0x00000000400f5036 0x2 + .text.tryget_socket_unconn + 0x00000000400f5038 0x26 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x2a (size before relaxing) + *fill* 0x00000000400f505e 0x2 + .text.sock_inc_used_locked + 0x00000000400f5060 0x6c esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x78 (size before relaxing) + .text.tryget_socket_unconn_locked + 0x00000000400f50cc 0x26 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x2a (size before relaxing) + *fill* 0x00000000400f50f2 0x2 + .text.lwip_select_inc_sockets_used_set + 0x00000000400f50f4 0x53 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x5b (size before relaxing) + *fill* 0x00000000400f5147 0x1 + .text.lwip_select_inc_sockets_used + 0x00000000400f5148 0x34 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x3c (size before relaxing) + .text.alloc_socket + 0x00000000400f517c 0xdd esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xe5 (size before relaxing) + *fill* 0x00000000400f5259 0x3 + .text.free_socket_free_elements + 0x00000000400f525c 0x1f esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x26 (size before relaxing) + *fill* 0x00000000400f527b 0x1 + .text.free_socket + 0x00000000400f527c 0x2a esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x36 (size before relaxing) + *fill* 0x00000000400f52a6 0x2 + .text.done_socket + 0x00000000400f52a8 0x7e esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x8e (size before relaxing) + *fill* 0x00000000400f5326 0x2 + .text.tryget_socket + 0x00000000400f5328 0x1a esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1e (size before relaxing) + *fill* 0x00000000400f5342 0x2 + .text.get_socket + 0x00000000400f5344 0x18 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1c (size before relaxing) + .text.lwip_selscan + 0x00000000400f535c 0x1c9 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1d1 (size before relaxing) + *fill* 0x00000000400f5525 0x3 + .text.lwip_select_dec_sockets_used + 0x00000000400f5528 0x3f esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x46 (size before relaxing) + *fill* 0x00000000400f5567 0x1 + .text.lwip_socket_register_membership + 0x00000000400f5568 0x5a esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x5e (size before relaxing) + *fill* 0x00000000400f55c2 0x2 + .text.lwip_socket_unregister_membership + 0x00000000400f55c4 0x6c esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x73 (size before relaxing) + *fill* 0x00000000400f5630 0x0 + .text.lwip_socket_register_mld6_membership + 0x00000000400f5630 0x69 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x71 (size before relaxing) + *fill* 0x00000000400f5699 0x3 + .text.lwip_socket_unregister_mld6_membership + 0x00000000400f569c 0xd3 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xda (size before relaxing) + *fill* 0x00000000400f576f 0x1 + .text.lwip_socket_drop_registered_memberships + 0x00000000400f5770 0x73 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x7b (size before relaxing) + *fill* 0x00000000400f57e3 0x1 + .text.lwip_socket_drop_registered_mld6_memberships + 0x00000000400f57e4 0x7e esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x86 (size before relaxing) + *fill* 0x00000000400f5862 0x2 + .text.lwip_recv_tcp + 0x00000000400f5864 0x158 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x164 (size before relaxing) + .text.lwip_recvfrom_udp_raw + 0x00000000400f59bc 0xe0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xe4 (size before relaxing) + .text.select_check_waiters + 0x00000000400f5a9c 0xd3 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xe3 (size before relaxing) + *fill* 0x00000000400f5b6f 0x1 + .text.event_callback + 0x00000000400f5b70 0xec esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xfc (size before relaxing) + .text.lwip_setsockopt_impl + 0x00000000400f5c5c 0x7d4 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x82c (size before relaxing) + .text.lwip_setsockopt_callback + 0x00000000400f6430 0x2c esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x34 (size before relaxing) + .text.lwip_accept + 0x00000000400f645c 0x1d8 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x210 (size before relaxing) + 0x00000000400f645c lwip_accept + .text.lwip_bind + 0x00000000400f6634 0xf6 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x11e (size before relaxing) + 0x00000000400f6634 lwip_bind + *fill* 0x00000000400f672a 0x2 + .text.lwip_close + 0x00000000400f672c 0x81 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x99 (size before relaxing) + 0x00000000400f672c lwip_close + *fill* 0x00000000400f67ad 0x3 + .text.lwip_listen + 0x00000000400f67b0 0x71 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x81 (size before relaxing) + 0x00000000400f67b0 lwip_listen + *fill* 0x00000000400f6821 0x3 + .text.lwip_recvfrom + 0x00000000400f6824 0xca esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xe2 (size before relaxing) + 0x00000000400f6824 lwip_recvfrom + *fill* 0x00000000400f68ee 0x2 + .text.lwip_read + 0x00000000400f68f0 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f68f0 lwip_read + *fill* 0x00000000400f6909 0x3 + .text.lwip_recv + 0x00000000400f690c 0x19 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f690c lwip_recv + *fill* 0x00000000400f6925 0x3 + .text.lwip_sendto + 0x00000000400f6928 0x186 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x1b2 (size before relaxing) + 0x00000000400f6928 lwip_sendto + *fill* 0x00000000400f6aae 0x2 + .text.lwip_send + 0x00000000400f6ab0 0x82 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x96 (size before relaxing) + 0x00000000400f6ab0 lwip_send + *fill* 0x00000000400f6b32 0x2 + .text.lwip_socket + 0x00000000400f6b34 0xd2 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xde (size before relaxing) + 0x00000000400f6b34 lwip_socket + *fill* 0x00000000400f6c06 0x2 + .text.lwip_write + 0x00000000400f6c08 0x15 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x00000000400f6c08 lwip_write + *fill* 0x00000000400f6c1d 0x3 + .text.lwip_select + 0x00000000400f6c20 0x33d esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x385 (size before relaxing) + 0x00000000400f6c20 lwip_select + *fill* 0x00000000400f6f5d 0x3 + .text.lwip_setsockopt + 0x00000000400f6f60 0x80 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xa0 (size before relaxing) + 0x00000000400f6f60 lwip_setsockopt + .text.lwip_ioctl + 0x00000000400f6fe0 0x5c esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x64 (size before relaxing) + 0x00000000400f6fe0 lwip_ioctl + .text.lwip_fcntl + 0x00000000400f703c 0xc0 esp-idf/lwip/liblwip.a(sockets.c.obj) + 0xcc (size before relaxing) + 0x00000000400f703c lwip_fcntl + .text.netconn_apimsg + 0x00000000400f70fc 0x22 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x26 (size before relaxing) + *fill* 0x00000000400f711e 0x2 + .text.netconn_tcp_recvd_msg + 0x00000000400f7120 0x31 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x35 (size before relaxing) + *fill* 0x00000000400f7151 0x3 + .text.netconn_close_shutdown + 0x00000000400f7154 0x2a esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x32 (size before relaxing) + *fill* 0x00000000400f717e 0x2 + .text.netconn_new_with_proto_and_callback + 0x00000000400f7180 0x72 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x86 (size before relaxing) + 0x00000000400f7180 netconn_new_with_proto_and_callback + *fill* 0x00000000400f71f2 0x2 + .text.netconn_prepare_delete + 0x00000000400f71f4 0x1e esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x26 (size before relaxing) + 0x00000000400f71f4 netconn_prepare_delete + *fill* 0x00000000400f7212 0x2 + .text.netconn_delete + 0x00000000400f7214 0x2a esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x32 (size before relaxing) + 0x00000000400f7214 netconn_delete + *fill* 0x00000000400f723e 0x2 + .text.netconn_getaddr + 0x00000000400f7240 0x4d esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x55 (size before relaxing) + 0x00000000400f7240 netconn_getaddr + *fill* 0x00000000400f728d 0x3 + .text.netconn_bind + 0x00000000400f7290 0xb5 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xb9 (size before relaxing) + 0x00000000400f7290 netconn_bind + *fill* 0x00000000400f7345 0x3 + .text.netconn_listen_with_backlog + 0x00000000400f7348 0x29 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x2d (size before relaxing) + 0x00000000400f7348 netconn_listen_with_backlog + *fill* 0x00000000400f7371 0x3 + .text.netconn_tcp_recvd + 0x00000000400f7374 0x2d esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x31 (size before relaxing) + 0x00000000400f7374 netconn_tcp_recvd + *fill* 0x00000000400f73a1 0x3 + .text.netconn_send + 0x00000000400f73a4 0x25 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x29 (size before relaxing) + 0x00000000400f73a4 netconn_send + *fill* 0x00000000400f73c9 0x3 + .text.netconn_write_vectors_partly + 0x00000000400f73cc 0xfa esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400f73cc netconn_write_vectors_partly + *fill* 0x00000000400f74c6 0x2 + .text.netconn_write_partly + 0x00000000400f74c8 0x1d esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400f74c8 netconn_write_partly + *fill* 0x00000000400f74e5 0x3 + .text.netconn_err + 0x00000000400f74e8 0x1f esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x23 (size before relaxing) + 0x00000000400f74e8 netconn_err + *fill* 0x00000000400f7507 0x1 + .text.netconn_accept + 0x00000000400f7508 0xf4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xf8 (size before relaxing) + 0x00000000400f7508 netconn_accept + .text.netconn_recv_data + 0x00000000400f75fc 0x138 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x148 (size before relaxing) + .text.netconn_recv_udp_raw_netbuf_flags + 0x00000000400f7734 0x31 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x35 (size before relaxing) + 0x00000000400f7734 netconn_recv_udp_raw_netbuf_flags + *fill* 0x00000000400f7765 0x3 + .text.netconn_recv_data_tcp + 0x00000000400f7768 0xad esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0xb1 (size before relaxing) + *fill* 0x00000000400f7815 0x3 + .text.netconn_recv_tcp_pbuf_flags + 0x00000000400f7818 0x31 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x35 (size before relaxing) + 0x00000000400f7818 netconn_recv_tcp_pbuf_flags + *fill* 0x00000000400f7849 0x3 + .text.netconn_join_leave_group + 0x00000000400f784c 0x36 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x00000000400f784c netconn_join_leave_group + *fill* 0x00000000400f7882 0x2 + .text.netconn_join_leave_group_netif + 0x00000000400f7884 0x3d esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x41 (size before relaxing) + 0x00000000400f7884 netconn_join_leave_group_netif + *fill* 0x00000000400f78c1 0x3 + .text.lwip_netconn_err_to_msg + 0x00000000400f78c4 0x46 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x4a (size before relaxing) + *fill* 0x00000000400f790a 0x2 + .text.recv_udp + 0x00000000400f790c 0x11b esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x12b (size before relaxing) + *fill* 0x00000000400f7a27 0x1 + .text.recv_raw + 0x00000000400f7a28 0xa5 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0xb5 (size before relaxing) + *fill* 0x00000000400f7acd 0x3 + .text.setup_tcp + 0x00000000400f7ad0 0x36 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x42 (size before relaxing) + *fill* 0x00000000400f7b06 0x2 + .text.pcb_new 0x00000000400f7b08 0xee esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0xf2 (size before relaxing) + *fill* 0x00000000400f7bf6 0x2 + .text.err_tcp 0x00000000400f7bf8 0x11c esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x12c (size before relaxing) + .text.netconn_mark_mbox_invalid + 0x00000000400f7d14 0x40 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x47 (size before relaxing) + *fill* 0x00000000400f7d54 0x0 + .text.lwip_netconn_do_writemore + 0x00000000400f7d54 0x281 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x291 (size before relaxing) + *fill* 0x00000000400f7fd5 0x3 + .text.lwip_netconn_do_close_internal + 0x00000000400f7fd8 0x1ee esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x206 (size before relaxing) + *fill* 0x00000000400f81c6 0x2 + .text.poll_tcp + 0x00000000400f81c8 0x62 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x69 (size before relaxing) + *fill* 0x00000000400f822a 0x2 + .text.sent_tcp + 0x00000000400f822c 0x66 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x6a (size before relaxing) + *fill* 0x00000000400f8292 0x2 + .text.recv_tcp + 0x00000000400f8294 0xa6 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0xb6 (size before relaxing) + *fill* 0x00000000400f833a 0x2 + .text.lwip_netconn_is_deallocated_msg + 0x00000000400f833c 0x12 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400f833c lwip_netconn_is_deallocated_msg + *fill* 0x00000000400f834e 0x2 + .text.lwip_netconn_is_err_msg + 0x00000000400f8350 0x4c esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x00000000400f8350 lwip_netconn_is_err_msg + .text.lwip_netconn_do_newconn + 0x00000000400f839c 0x1d esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x20 (size before relaxing) + 0x00000000400f839c lwip_netconn_do_newconn + *fill* 0x00000000400f83b9 0x3 + .text.netconn_alloc + 0x00000000400f83bc 0x6e esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x7a (size before relaxing) + 0x00000000400f83bc netconn_alloc + *fill* 0x00000000400f842a 0x2 + .text.netconn_free + 0x00000000400f842c 0x56 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x5a (size before relaxing) + 0x00000000400f842c netconn_free + *fill* 0x00000000400f8482 0x2 + .text.netconn_drain + 0x00000000400f8484 0xba esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0xde (size before relaxing) + *fill* 0x00000000400f853e 0x2 + .text.accept_function + 0x00000000400f8540 0x108 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x138 (size before relaxing) + .text.lwip_netconn_do_delconn + 0x00000000400f8648 0xff esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x10b (size before relaxing) + 0x00000000400f8648 lwip_netconn_do_delconn + *fill* 0x00000000400f8747 0x1 + .text.lwip_netconn_do_bind + 0x00000000400f8748 0xf9 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x104 (size before relaxing) + 0x00000000400f8748 lwip_netconn_do_bind + *fill* 0x00000000400f8841 0x3 + .text.lwip_netconn_do_listen + 0x00000000400f8844 0x17f esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x18f (size before relaxing) + 0x00000000400f8844 lwip_netconn_do_listen + *fill* 0x00000000400f89c3 0x1 + .text.lwip_netconn_do_send + 0x00000000400f89c4 0x152 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x166 (size before relaxing) + 0x00000000400f89c4 lwip_netconn_do_send + *fill* 0x00000000400f8b16 0x2 + .text.lwip_netconn_do_recv + 0x00000000400f8b18 0x44 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x48 (size before relaxing) + 0x00000000400f8b18 lwip_netconn_do_recv + .text.lwip_netconn_do_accepted + 0x00000000400f8b5c 0x23 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x2a (size before relaxing) + 0x00000000400f8b5c lwip_netconn_do_accepted + *fill* 0x00000000400f8b7f 0x1 + .text.lwip_netconn_do_write + 0x00000000400f8b80 0x7e esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x8a (size before relaxing) + 0x00000000400f8b80 lwip_netconn_do_write + *fill* 0x00000000400f8bfe 0x2 + .text.lwip_netconn_do_getaddr + 0x00000000400f8c00 0x17e esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x182 (size before relaxing) + 0x00000000400f8c00 lwip_netconn_do_getaddr + *fill* 0x00000000400f8d7e 0x2 + .text.lwip_netconn_do_close + 0x00000000400f8d80 0xcc esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0xdb (size before relaxing) + 0x00000000400f8d80 lwip_netconn_do_close + *fill* 0x00000000400f8e4c 0x0 + .text.lwip_netconn_do_join_leave_group + 0x00000000400f8e4c 0x71 esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x75 (size before relaxing) + 0x00000000400f8e4c lwip_netconn_do_join_leave_group + *fill* 0x00000000400f8ebd 0x3 + .text.lwip_netconn_do_join_leave_group_netif + 0x00000000400f8ec0 0x7c esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x7f (size before relaxing) + 0x00000000400f8ec0 lwip_netconn_do_join_leave_group_netif + *fill* 0x00000000400f8f3c 0x0 + .text.err_to_errno + 0x00000000400f8f3c 0x28 esp-idf/lwip/liblwip.a(err.c.obj) + 0x00000000400f8f3c err_to_errno + .text.netbuf_delete + 0x00000000400f8f64 0x1b esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x22 (size before relaxing) + 0x00000000400f8f64 netbuf_delete + *fill* 0x00000000400f8f7f 0x1 + .text.netbuf_alloc + 0x00000000400f8f80 0x48 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x54 (size before relaxing) + 0x00000000400f8f80 netbuf_alloc + .text.netbuf_free + 0x00000000400f8fc8 0x1d esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x24 (size before relaxing) + 0x00000000400f8fc8 netbuf_free + *fill* 0x00000000400f8fe5 0x3 + .text.heap_caps_get_free_size + 0x00000000400f8fe8 0x2d esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x00000000400f8fe8 heap_caps_get_free_size + *fill* 0x00000000400f9015 0x3 + .text.heap_caps_get_minimum_free_size + 0x00000000400f9018 0x2d esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x00000000400f9018 heap_caps_get_minimum_free_size + *fill* 0x00000000400f9045 0x3 + .text.register_heap + 0x00000000400f9048 0x2b esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x00000000400f9073 0x1 + .text.heap_caps_enable_nonos_stack_heaps + 0x00000000400f9074 0x2c esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x00000000400f9074 heap_caps_enable_nonos_stack_heaps + .text.heap_caps_init + 0x00000000400f90a0 0x2b2 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x2c6 (size before relaxing) + 0x00000000400f90a0 heap_caps_init + *fill* 0x00000000400f9352 0x2 + .text.gpio_wakeup_enable + 0x00000000400f9354 0xdd esp-idf/driver/libdriver.a(gpio.c.obj) + 0x00000000400f9354 gpio_wakeup_enable + *fill* 0x00000000400f9431 0x3 + .text.get_clk_en_mask + 0x00000000400f9434 0xdf esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + *fill* 0x00000000400f9513 0x1 + .text.get_rst_en_mask + 0x00000000400f9514 0xda esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + *fill* 0x00000000400f95ee 0x2 + .text.get_clk_en_reg + 0x00000000400f95f0 0x24 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .text.get_rst_en_reg + 0x00000000400f9614 0x25 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + *fill* 0x00000000400f9639 0x3 + .text.periph_module_enable + 0x00000000400f963c 0x83 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + 0x8f (size before relaxing) + 0x00000000400f963c periph_module_enable + *fill* 0x00000000400f96bf 0x1 + .text.periph_module_disable + 0x00000000400f96c0 0x83 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + 0x8f (size before relaxing) + 0x00000000400f96c0 periph_module_disable + *fill* 0x00000000400f9743 0x1 + .text.periph_module_reset + 0x00000000400f9744 0x77 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + 0x7b (size before relaxing) + 0x00000000400f9744 periph_module_reset + *fill* 0x00000000400f97bb 0x1 + .text.rtc_gpio_isolate + 0x00000000400f97bc 0x80 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x00000000400f97bc rtc_gpio_isolate + .text.rtc_gpio_force_hold_dis_all + 0x00000000400f983c 0x2d esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x00000000400f983c rtc_gpio_force_hold_dis_all + *fill* 0x00000000400f9869 0x3 + .text.rtc_gpio_wakeup_enable + 0x00000000400f986c 0xb6 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x00000000400f986c rtc_gpio_wakeup_enable + *fill* 0x00000000400f9922 0x2 + .text.rtc_isr 0x00000000400f9924 0x56 esp-idf/driver/libdriver.a(rtc_module.c.obj) + *fill* 0x00000000400f997a 0x2 + .text.rtc_isr_ensure_installed + 0x00000000400f997c 0x46 esp-idf/driver/libdriver.a(rtc_module.c.obj) + 0x4a (size before relaxing) + *fill* 0x00000000400f99c2 0x2 + .text.rtc_isr_register + 0x00000000400f99c4 0x46 esp-idf/driver/libdriver.a(rtc_module.c.obj) + 0x4a (size before relaxing) + 0x00000000400f99c4 rtc_isr_register + *fill* 0x00000000400f9a0a 0x2 + .text.uart_pattern_queue_update + 0x00000000400f9a0c 0x46 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x00000000400f9a52 0x2 + .text.uart_pattern_link_free + 0x00000000400f9a54 0x4d esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x00000000400f9aa1 0x3 + .text.uart_module_enable + 0x00000000400f9aa4 0x5b esp-idf/driver/libdriver.a(uart.c.obj) + 0x5f (size before relaxing) + *fill* 0x00000000400f9aff 0x1 + .text.uart_pattern_enqueue + 0x00000000400f9b00 0x4c esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_rx_intr_handler_default + 0x00000000400f9b4c 0x776 esp-idf/driver/libdriver.a(uart.c.obj) + 0x77a (size before relaxing) + *fill* 0x00000000400fa2c2 0x2 + .text.uart_module_disable + 0x00000000400fa2c4 0x48 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_word_length + 0x00000000400fa30c 0x88 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fa30c uart_set_word_length + .text.uart_get_word_length + 0x00000000400fa394 0x45 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fa394 uart_get_word_length + *fill* 0x00000000400fa3d9 0x3 + .text.uart_set_stop_bits + 0x00000000400fa3dc 0x88 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fa3dc uart_set_stop_bits + .text.uart_get_stop_bits + 0x00000000400fa464 0x45 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fa464 uart_get_stop_bits + *fill* 0x00000000400fa4a9 0x3 + .text.uart_set_parity + 0x00000000400fa4ac 0x5a esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fa4ac uart_set_parity + *fill* 0x00000000400fa506 0x2 + .text.uart_get_parity + 0x00000000400fa508 0x45 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fa508 uart_get_parity + *fill* 0x00000000400fa54d 0x3 + .text.uart_set_baudrate + 0x00000000400fa550 0x68 esp-idf/driver/libdriver.a(uart.c.obj) + 0x6c (size before relaxing) + 0x00000000400fa550 uart_set_baudrate + .text.uart_get_baudrate + 0x00000000400fa5b8 0x56 esp-idf/driver/libdriver.a(uart.c.obj) + 0x5a (size before relaxing) + 0x00000000400fa5b8 uart_get_baudrate + *fill* 0x00000000400fa60e 0x2 + .text.uart_enable_intr_mask + 0x00000000400fa610 0x66 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fa610 uart_enable_intr_mask + *fill* 0x00000000400fa676 0x2 + .text.uart_disable_intr_mask + 0x00000000400fa678 0x64 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fa678 uart_disable_intr_mask + .text.uart_pattern_queue_reset + 0x00000000400fa6dc 0xc0 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fa6dc uart_pattern_queue_reset + .text.uart_enable_rx_intr + 0x00000000400fa79c 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fa79c uart_enable_rx_intr + *fill* 0x00000000400fa7ae 0x2 + .text.uart_check_buf_full + 0x00000000400fa7b0 0x6a esp-idf/driver/libdriver.a(uart.c.obj) + 0x6e (size before relaxing) + *fill* 0x00000000400fa81a 0x2 + .text.uart_disable_rx_intr + 0x00000000400fa81c 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fa81c uart_disable_rx_intr + *fill* 0x00000000400fa82e 0x2 + .text.uart_disable_tx_intr + 0x00000000400fa830 0x11 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fa830 uart_disable_tx_intr + *fill* 0x00000000400fa841 0x3 + .text.uart_enable_tx_intr + 0x00000000400fa844 0xa1 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fa844 uart_enable_tx_intr + *fill* 0x00000000400fa8e5 0x3 + .text.uart_tx_all + 0x00000000400fa8e8 0x1fc esp-idf/driver/libdriver.a(uart.c.obj) + 0x200 (size before relaxing) + .text.uart_isr_register + 0x00000000400faae4 0x6a esp-idf/driver/libdriver.a(uart.c.obj) + 0x6e (size before relaxing) + 0x00000000400faae4 uart_isr_register + *fill* 0x00000000400fab4e 0x2 + .text.uart_param_config + 0x00000000400fab50 0x15d esp-idf/driver/libdriver.a(uart.c.obj) + 0x16d (size before relaxing) + 0x00000000400fab50 uart_param_config + *fill* 0x00000000400facad 0x3 + .text.uart_intr_config + 0x00000000400facb0 0xee esp-idf/driver/libdriver.a(uart.c.obj) + 0xf5 (size before relaxing) + 0x00000000400facb0 uart_intr_config + *fill* 0x00000000400fad9e 0x2 + .text.uart_wait_tx_done + 0x00000000400fada0 0x1c9 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fada0 uart_wait_tx_done + *fill* 0x00000000400faf69 0x3 + .text.uart_write_bytes + 0x00000000400faf6c 0xa9 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400faf6c uart_write_bytes + *fill* 0x00000000400fb015 0x3 + .text.uart_read_bytes + 0x00000000400fb018 0x1c1 esp-idf/driver/libdriver.a(uart.c.obj) + 0x1cd (size before relaxing) + 0x00000000400fb018 uart_read_bytes + *fill* 0x00000000400fb1d9 0x3 + .text.uart_get_buffered_data_len + 0x00000000400fb1dc 0x71 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fb1dc uart_get_buffered_data_len + *fill* 0x00000000400fb24d 0x3 + .text.uart_flush_input + 0x00000000400fb250 0x1fd esp-idf/driver/libdriver.a(uart.c.obj) + 0x20d (size before relaxing) + 0x00000000400fb250 uart_flush_input + 0x00000000400fb250 uart_flush + *fill* 0x00000000400fb44d 0x3 + .text.uart_driver_delete + 0x00000000400fb450 0x1b0 esp-idf/driver/libdriver.a(uart.c.obj) + 0x1bc (size before relaxing) + 0x00000000400fb450 uart_driver_delete + .text.uart_driver_install + 0x00000000400fb600 0x2f5 esp-idf/driver/libdriver.a(uart.c.obj) + 0x304 (size before relaxing) + 0x00000000400fb600 uart_driver_install + *fill* 0x00000000400fb8f5 0x3 + .text.uart_is_driver_installed + 0x00000000400fb8f8 0x1e esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fb8f8 uart_is_driver_installed + *fill* 0x00000000400fb916 0x2 + .text.uart_set_select_notif_callback + 0x00000000400fb918 0x17 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fb918 uart_set_select_notif_callback + *fill* 0x00000000400fb92f 0x1 + .text.uart_get_selectlock + 0x00000000400fb930 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fb930 uart_get_selectlock + .text.uart_set_wakeup_threshold + 0x00000000400fb938 0x94 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fb938 uart_set_wakeup_threshold + .text.uart_wait_tx_idle_polling + 0x00000000400fb9cc 0x6f esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400fb9cc uart_wait_tx_idle_polling + *fill* 0x00000000400fba3b 0x1 + .text.esp_fill_random + 0x00000000400fba3c 0x37 esp-idf/esp32/libesp32.a(hw_random.c.obj) + 0x3b (size before relaxing) + 0x00000000400fba3c esp_fill_random + *fill* 0x00000000400fba73 0x1 + .text.get_reset_reason + 0x00000000400fba74 0x6f esp-idf/esp32/libesp32.a(reset_reason.c.obj) + *fill* 0x00000000400fbae3 0x1 + .text.esp_reset_reason_clear_hint + 0x00000000400fbae4 0xf esp-idf/esp32/libesp32.a(reset_reason.c.obj) + *fill* 0x00000000400fbaf3 0x1 + .text.esp_reset_reason + 0x00000000400fbaf4 0xa esp-idf/esp32/libesp32.a(reset_reason.c.obj) + 0x00000000400fbaf4 esp_reset_reason + *fill* 0x00000000400fbafe 0x2 + .text.esp_reset_reason_init + 0x00000000400fbb00 0x27 esp-idf/esp32/libesp32.a(reset_reason.c.obj) + 0x2b (size before relaxing) + *fill* 0x00000000400fbb27 0x1 + .text.get_power_down_flags + 0x00000000400fbb28 0x98 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .text.ext0_wakeup_prepare + 0x00000000400fbbc0 0xbe esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0xc2 (size before relaxing) + *fill* 0x00000000400fbc7e 0x2 + .text.ext1_wakeup_prepare + 0x00000000400fbc80 0x16d esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + *fill* 0x00000000400fbded 0x3 + .text.timer_wakeup_prepare + 0x00000000400fbdf0 0x52 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + *fill* 0x00000000400fbe42 0x2 + .text.esp_get_deep_sleep_wake_stub + 0x00000000400fbe44 0x9e esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400fbe44 esp_get_deep_sleep_wake_stub + *fill* 0x00000000400fbee2 0x2 + .text.esp_set_deep_sleep_wake_stub + 0x00000000400fbee4 0x26 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400fbee4 esp_set_deep_sleep_wake_stub + *fill* 0x00000000400fbf0a 0x2 + .text.esp_light_sleep_start + 0x00000000400fbf0c 0x152 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x15e (size before relaxing) + 0x00000000400fbf0c esp_light_sleep_start + *fill* 0x00000000400fc05e 0x2 + .text.esp_sleep_disable_wakeup_source + 0x00000000400fc060 0x131 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400fc060 esp_sleep_disable_wakeup_source + *fill* 0x00000000400fc191 0x3 + .text.esp_sleep_enable_timer_wakeup + 0x00000000400fc194 0x17 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400fc194 esp_sleep_enable_timer_wakeup + *fill* 0x00000000400fc1ab 0x1 + .text.esp_sleep_enable_ext1_wakeup + 0x00000000400fc1ac 0xb9 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400fc1ac esp_sleep_enable_ext1_wakeup + *fill* 0x00000000400fc265 0x3 + .text.esp_sleep_enable_gpio_wakeup + 0x00000000400fc268 0x4d esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400fc268 esp_sleep_enable_gpio_wakeup + *fill* 0x00000000400fc2b5 0x3 + .text.esp_sleep_enable_uart_wakeup + 0x00000000400fc2b8 0x32 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400fc2b8 esp_sleep_enable_uart_wakeup + *fill* 0x00000000400fc2ea 0x2 + .text.esp_sleep_get_wakeup_cause + 0x00000000400fc2ec 0x65 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x00000000400fc2ec esp_sleep_get_wakeup_cause + *fill* 0x00000000400fc351 0x3 + .text.esp_base_mac_addr_set + 0x00000000400fc354 0x60 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + 0x00000000400fc354 esp_base_mac_addr_set + .text.esp_base_mac_addr_get + 0x00000000400fc3b4 0x4c esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + 0x00000000400fc3b4 esp_base_mac_addr_get + .text.esp_efuse_mac_get_default + 0x00000000400fc400 0x6b esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + 0x6f (size before relaxing) + 0x00000000400fc400 esp_efuse_mac_get_default + *fill* 0x00000000400fc46b 0x1 + .text.esp_read_mac + 0x00000000400fc46c 0xfe esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + 0x106 (size before relaxing) + 0x00000000400fc46c esp_read_mac + *fill* 0x00000000400fc56a 0x2 + .text.esp_register_shutdown_handler + 0x00000000400fc56c 0x35 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + 0x00000000400fc56c esp_register_shutdown_handler + *fill* 0x00000000400fc5a1 0x3 + .text.esp_unregister_shutdown_handler + 0x00000000400fc5a4 0x2b esp-idf/esp_common/libesp_common.a(system_api.c.obj) + 0x00000000400fc5a4 esp_unregister_shutdown_handler + *fill* 0x00000000400fc5cf 0x1 + .text.esp_get_free_heap_size + 0x00000000400fc5d0 0xd esp-idf/esp_common/libesp_common.a(system_api.c.obj) + 0x10 (size before relaxing) + 0x00000000400fc5d0 esp_get_free_heap_size + *fill* 0x00000000400fc5dd 0x3 + .text.esp_get_idf_version + 0x00000000400fc5e0 0x8 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + 0x00000000400fc5e0 esp_get_idf_version + .text.ets_timer_setfn + 0x00000000400fc5e8 0x52 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x00000000400fc5e8 os_timer_setfn + 0x00000000400fc5e8 ets_timer_setfn + *fill* 0x00000000400fc63a 0x2 + .text.ets_timer_done + 0x00000000400fc63c 0x1a esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x1e (size before relaxing) + 0x00000000400fc63c ets_timer_done + 0x00000000400fc63c os_timer_done + *fill* 0x00000000400fc656 0x2 + .text.find_command_by_name + 0x00000000400fc658 0x3b esp-idf/console/libconsole.a(commands.c.obj) + *fill* 0x00000000400fc693 0x1 + .text.help_command + 0x00000000400fc694 0x5c esp-idf/console/libconsole.a(commands.c.obj) + 0x68 (size before relaxing) + .text.esp_console_init + 0x00000000400fc6f0 0x55 esp-idf/console/libconsole.a(commands.c.obj) + 0x00000000400fc6f0 esp_console_init + *fill* 0x00000000400fc745 0x3 + .text.esp_console_cmd_register + 0x00000000400fc748 0xe3 esp-idf/console/libconsole.a(commands.c.obj) + 0xeb (size before relaxing) + 0x00000000400fc748 esp_console_cmd_register + *fill* 0x00000000400fc82b 0x1 + .text.esp_console_get_completion + 0x00000000400fc82c 0x39 esp-idf/console/libconsole.a(commands.c.obj) + 0x00000000400fc82c esp_console_get_completion + *fill* 0x00000000400fc865 0x3 + .text.esp_console_get_hint + 0x00000000400fc868 0x4b esp-idf/console/libconsole.a(commands.c.obj) + 0x00000000400fc868 esp_console_get_hint + *fill* 0x00000000400fc8b3 0x1 + .text.esp_console_run + 0x00000000400fc8b4 0x89 esp-idf/console/libconsole.a(commands.c.obj) + 0x8d (size before relaxing) + 0x00000000400fc8b4 esp_console_run + *fill* 0x00000000400fc93d 0x3 + .text.esp_console_register_help_command + 0x00000000400fc940 0x24 esp-idf/console/libconsole.a(commands.c.obj) + 0x00000000400fc940 esp_console_register_help_command + .text.esp_console_split_argv + 0x00000000400fc964 0x101 esp-idf/console/libconsole.a(split_argv.c.obj) + 0x00000000400fc964 esp_console_split_argv + *fill* 0x00000000400fca65 0x3 + .text.arg_register_error + 0x00000000400fca68 0x63 esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x00000000400fcacb 0x1 + .text.arg_parse_untagged + 0x00000000400fcacc 0xb2 esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x00000000400fcb7e 0x2 + .text.arg_parse_check + 0x00000000400fcb80 0x30 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x34 (size before relaxing) + .text.detectsuffix + 0x00000000400fcbb0 0x71 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x79 (size before relaxing) + *fill* 0x00000000400fcc21 0x3 + .text.alloc_shortoptions + 0x00000000400fcc24 0x90 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_end_errorfn + 0x00000000400fccb4 0x96 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x9e (size before relaxing) + *fill* 0x00000000400fcd4a 0x2 + .text.strtol0X + 0x00000000400fcd4c 0xa1 esp-idf/console/libconsole.a(argtable3.c.obj) + 0xa5 (size before relaxing) + *fill* 0x00000000400fcded 0x3 + .text.arg_int_scanfn + 0x00000000400fcdf0 0x100 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x108 (size before relaxing) + .text.alloc_longoptions + 0x00000000400fcef0 0x119 esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x00000000400fd009 0x3 + .text.find_shortoption + 0x00000000400fd00c 0x2b esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x00000000400fd037 0x1 + .text.arg_parse_tagged + 0x00000000400fd038 0x192 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x1aa (size before relaxing) + *fill* 0x00000000400fd1ca 0x2 + .text.arg_cat_optionv + 0x00000000400fd1cc 0x140 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_cat_option + 0x00000000400fd30c 0x140 esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_print_gnuswitch + 0x00000000400fd44c 0x83 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x86 (size before relaxing) + *fill* 0x00000000400fd4cf 0x1 + .text.arg_end 0x00000000400fd4d0 0x50 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400fd4d0 arg_end + .text.arg_intn + 0x00000000400fd520 0x4c esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400fd520 arg_intn + .text.arg_int0 + 0x00000000400fd56c 0x19 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400fd56c arg_int0 + *fill* 0x00000000400fd585 0x3 + .text.arg_strn + 0x00000000400fd588 0x61 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400fd588 arg_strn + *fill* 0x00000000400fd5e9 0x3 + .text.arg_str0 + 0x00000000400fd5ec 0x19 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400fd5ec arg_str0 + *fill* 0x00000000400fd605 0x3 + .text.arg_str1 + 0x00000000400fd608 0x19 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x00000000400fd608 arg_str1 + *fill* 0x00000000400fd621 0x3 + .text.arg_parse + 0x00000000400fd624 0x99 esp-idf/console/libconsole.a(argtable3.c.obj) + 0xa5 (size before relaxing) + 0x00000000400fd624 arg_parse + *fill* 0x00000000400fd6bd 0x3 + .text.arg_print_option + 0x00000000400fd6c0 0x40 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x4c (size before relaxing) + 0x00000000400fd6c0 arg_print_option + .text.arg_int_errorfn + 0x00000000400fd700 0xb8 esp-idf/console/libconsole.a(argtable3.c.obj) + 0xd0 (size before relaxing) + .text.arg_str_errorfn + 0x00000000400fd7b8 0x63 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x6b (size before relaxing) + *fill* 0x00000000400fd81b 0x1 + .text.arg_print_syntax + 0x00000000400fd81c 0xc7 esp-idf/console/libconsole.a(argtable3.c.obj) + 0xcb (size before relaxing) + 0x00000000400fd81c arg_print_syntax + *fill* 0x00000000400fd8e3 0x1 + .text.arg_print_glossary + 0x00000000400fd8e4 0x61 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x65 (size before relaxing) + 0x00000000400fd8e4 arg_print_glossary + *fill* 0x00000000400fd945 0x3 + .text.arg_print_formatted + 0x00000000400fd948 0xa6 esp-idf/console/libconsole.a(argtable3.c.obj) + 0xaa (size before relaxing) + 0x00000000400fd948 arg_print_formatted + *fill* 0x00000000400fd9ee 0x2 + .text.abAppend + 0x00000000400fd9f0 0x2c esp-idf/console/libconsole.a(linenoise.c.obj) + .text.abFree 0x00000000400fda1c 0xe esp-idf/console/libconsole.a(linenoise.c.obj) + *fill* 0x00000000400fda2a 0x2 + .text.freeCompletions + 0x00000000400fda2c 0x2b esp-idf/console/libconsole.a(linenoise.c.obj) + *fill* 0x00000000400fda57 0x1 + .text.getCursorPosition + 0x00000000400fda58 0x84 esp-idf/console/libconsole.a(linenoise.c.obj) + .text.getColumns + 0x00000000400fdadc 0x66 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x76 (size before relaxing) + *fill* 0x00000000400fdb42 0x2 + .text.linenoiseBeep + 0x00000000400fdb44 0x12 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x16 (size before relaxing) + *fill* 0x00000000400fdb56 0x2 + .text.linenoiseDumb + 0x00000000400fdb58 0xa3 esp-idf/console/libconsole.a(linenoise.c.obj) + 0xa7 (size before relaxing) + *fill* 0x00000000400fdbfb 0x1 + .text.sanitize + 0x00000000400fdbfc 0x31 esp-idf/console/libconsole.a(linenoise.c.obj) + *fill* 0x00000000400fdc2d 0x3 + .text.linenoiseSetMultiLine + 0x00000000400fdc30 0xa esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400fdc30 linenoiseSetMultiLine + *fill* 0x00000000400fdc3a 0x2 + .text.linenoiseSetDumbMode + 0x00000000400fdc3c 0xa esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400fdc3c linenoiseSetDumbMode + *fill* 0x00000000400fdc46 0x2 + .text.linenoiseClearScreen + 0x00000000400fdc48 0x1a esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400fdc48 linenoiseClearScreen + *fill* 0x00000000400fdc62 0x2 + .text.linenoiseSetCompletionCallback + 0x00000000400fdc64 0xa esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400fdc64 linenoiseSetCompletionCallback + *fill* 0x00000000400fdc6e 0x2 + .text.linenoiseSetHintsCallback + 0x00000000400fdc70 0xa esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400fdc70 linenoiseSetHintsCallback + *fill* 0x00000000400fdc7a 0x2 + .text.linenoiseAddCompletion + 0x00000000400fdc7c 0x56 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400fdc7c linenoiseAddCompletion + *fill* 0x00000000400fdcd2 0x2 + .text.refreshShowHints + 0x00000000400fdcd4 0xaf esp-idf/console/libconsole.a(linenoise.c.obj) + 0xb7 (size before relaxing) + 0x00000000400fdcd4 refreshShowHints + *fill* 0x00000000400fdd83 0x1 + .text.refreshMultiLine + 0x00000000400fdd84 0x193 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x1b7 (size before relaxing) + *fill* 0x00000000400fdf17 0x1 + .text.refreshSingleLine + 0x00000000400fdf18 0xcb esp-idf/console/libconsole.a(linenoise.c.obj) + 0xeb (size before relaxing) + *fill* 0x00000000400fdfe3 0x1 + .text.refreshLine + 0x00000000400fdfe4 0x19 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x20 (size before relaxing) + *fill* 0x00000000400fdffd 0x3 + .text.completeLine + 0x00000000400fe000 0xf3 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x106 (size before relaxing) + *fill* 0x00000000400fe0f3 0x1 + .text.linenoiseEditInsert + 0x00000000400fe0f4 0xbc esp-idf/console/libconsole.a(linenoise.c.obj) + 0xc4 (size before relaxing) + 0x00000000400fe0f4 linenoiseEditInsert + .text.linenoiseEditMoveLeft + 0x00000000400fe1b0 0x12 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x16 (size before relaxing) + 0x00000000400fe1b0 linenoiseEditMoveLeft + *fill* 0x00000000400fe1c2 0x2 + .text.linenoiseEditMoveRight + 0x00000000400fe1c4 0x18 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400fe1c4 linenoiseEditMoveRight + .text.linenoiseEditMoveHome + 0x00000000400fe1dc 0x12 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x16 (size before relaxing) + 0x00000000400fe1dc linenoiseEditMoveHome + *fill* 0x00000000400fe1ee 0x2 + .text.linenoiseEditMoveEnd + 0x00000000400fe1f0 0x16 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400fe1f0 linenoiseEditMoveEnd + *fill* 0x00000000400fe206 0x2 + .text.linenoiseEditHistoryNext + 0x00000000400fe208 0x93 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400fe208 linenoiseEditHistoryNext + *fill* 0x00000000400fe29b 0x1 + .text.linenoiseEditDelete + 0x00000000400fe29c 0x36 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x3a (size before relaxing) + 0x00000000400fe29c linenoiseEditDelete + *fill* 0x00000000400fe2d2 0x2 + .text.linenoiseEditBackspace + 0x00000000400fe2d4 0x3b esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400fe2d4 linenoiseEditBackspace + *fill* 0x00000000400fe30f 0x1 + .text.linenoiseEditDeletePrevWord + 0x00000000400fe310 0x53 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x57 (size before relaxing) + 0x00000000400fe310 linenoiseEditDeletePrevWord + *fill* 0x00000000400fe363 0x1 + .text.linenoiseProbe + 0x00000000400fe364 0x92 esp-idf/console/libconsole.a(linenoise.c.obj) + 0xa2 (size before relaxing) + 0x00000000400fe364 linenoiseProbe + *fill* 0x00000000400fe3f6 0x2 + .text.linenoiseFree + 0x00000000400fe3f8 0xe esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400fe3f8 linenoiseFree + *fill* 0x00000000400fe406 0x2 + .text.linenoiseHistoryAdd + 0x00000000400fe408 0xb6 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400fe408 linenoiseHistoryAdd + *fill* 0x00000000400fe4be 0x2 + .text.linenoiseEdit + 0x00000000400fe4c0 0x328 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x37c (size before relaxing) + .text.linenoiseRaw + 0x00000000400fe7e8 0x30 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x34 (size before relaxing) + .text.linenoise + 0x00000000400fe818 0x54 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x58 (size before relaxing) + 0x00000000400fe818 linenoise + .text.linenoiseHistorySetMaxLen + 0x00000000400fe86c 0x9e esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400fe86c linenoiseHistorySetMaxLen + *fill* 0x00000000400fe90a 0x2 + .text.linenoiseHistorySave + 0x00000000400fe90c 0x4b esp-idf/console/libconsole.a(linenoise.c.obj) + 0x00000000400fe90c linenoiseHistorySave + *fill* 0x00000000400fe957 0x1 + .text.linenoiseHistoryLoad + 0x00000000400fe958 0x59 esp-idf/console/libconsole.a(linenoise.c.obj) + 0x5d (size before relaxing) + 0x00000000400fe958 linenoiseHistoryLoad + *fill* 0x00000000400fe9b1 0x3 + .text.httpd_recv_pending + 0x00000000400fe9b4 0x31 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + *fill* 0x00000000400fe9e5 0x3 + .text.httpd_sock_err + 0x00000000400fe9e8 0x79 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x7d (size before relaxing) + *fill* 0x00000000400fea61 0x3 + .text.httpd_sess_set_send_override + 0x00000000400fea64 0x1d esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x00000000400fea64 httpd_sess_set_send_override + *fill* 0x00000000400fea81 0x3 + .text.httpd_sess_set_recv_override + 0x00000000400fea84 0x1d esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x00000000400fea84 httpd_sess_set_recv_override + *fill* 0x00000000400feaa1 0x3 + .text.httpd_sess_set_pending_override + 0x00000000400feaa4 0x1d esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x00000000400feaa4 httpd_sess_set_pending_override + *fill* 0x00000000400feac1 0x3 + .text.httpd_recv_with_opt + 0x00000000400feac4 0x6b esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x00000000400feac4 httpd_recv_with_opt + *fill* 0x00000000400feb2f 0x1 + .text.httpd_recv + 0x00000000400feb30 0x15 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x00000000400feb30 httpd_recv + *fill* 0x00000000400feb45 0x3 + .text.httpd_unrecv + 0x00000000400feb48 0x2d esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x00000000400feb48 httpd_unrecv + *fill* 0x00000000400feb75 0x3 + .text.httpd_resp_send + 0x00000000400feb78 0x145 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x149 (size before relaxing) + 0x00000000400feb78 httpd_resp_send + *fill* 0x00000000400fecbd 0x3 + .text.httpd_resp_send_chunk + 0x00000000400fecc0 0x186 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x18e (size before relaxing) + 0x00000000400fecc0 httpd_resp_send_chunk + *fill* 0x00000000400fee46 0x2 + .text.httpd_resp_send_err + 0x00000000400fee48 0x13e esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x152 (size before relaxing) + 0x00000000400fee48 httpd_resp_send_err + *fill* 0x00000000400fef86 0x2 + .text.httpd_req_handle_err + 0x00000000400fef88 0x37 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x00000000400fef88 httpd_req_handle_err + *fill* 0x00000000400fefbf 0x1 + .text.httpd_req_recv + 0x00000000400fefc0 0x50 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x00000000400fefc0 httpd_req_recv + .text.httpd_default_send + 0x00000000400ff010 0x28 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x2c (size before relaxing) + 0x00000000400ff010 httpd_default_send + .text.httpd_default_recv + 0x00000000400ff038 0x28 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x2c (size before relaxing) + 0x00000000400ff038 httpd_default_recv + .text.httpd_uri_match_simple + 0x00000000400ff060 0x2d esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + *fill* 0x00000000400ff08d 0x3 + .text.httpd_find_uri_handler + 0x00000000400ff090 0x72 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + *fill* 0x00000000400ff102 0x2 + .text.httpd_register_uri_handler + 0x00000000400ff104 0x101 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + 0x105 (size before relaxing) + 0x00000000400ff104 httpd_register_uri_handler + *fill* 0x00000000400ff205 0x3 + .text.httpd_unregister_all_uri_handlers + 0x00000000400ff208 0x3c esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + 0x00000000400ff208 httpd_unregister_all_uri_handlers + .text.httpd_uri + 0x00000000400ff244 0xce esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + 0xd6 (size before relaxing) + 0x00000000400ff244 httpd_uri + *fill* 0x00000000400ff312 0x2 + .text.fd_is_valid + 0x00000000400ff314 0x28 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x2c (size before relaxing) + .text.httpd_sess_free_ctx + 0x00000000400ff33c 0x19 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x00000000400ff33c httpd_sess_free_ctx + *fill* 0x00000000400ff355 0x3 + .text.httpd_sess_get_transport_ctx + 0x00000000400ff358 0x18 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x00000000400ff358 httpd_sess_get_transport_ctx + .text.httpd_sess_set_transport_ctx + 0x00000000400ff370 0x24 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x00000000400ff370 httpd_sess_set_transport_ctx + .text.httpd_sess_delete + 0x00000000400ff394 0xa8 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x00000000400ff394 httpd_sess_delete + .text.httpd_sess_new + 0x00000000400ff43c 0xbb esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0xbf (size before relaxing) + 0x00000000400ff43c httpd_sess_new + *fill* 0x00000000400ff4f7 0x1 + .text.httpd_sess_delete_invalid + 0x00000000400ff4f8 0x62 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x66 (size before relaxing) + 0x00000000400ff4f8 httpd_sess_delete_invalid + *fill* 0x00000000400ff55a 0x2 + .text.httpd_sess_close + 0x00000000400ff55c 0x24 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .text.httpd_sess_pending + 0x00000000400ff580 0x39 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x00000000400ff580 httpd_sess_pending + *fill* 0x00000000400ff5b9 0x3 + .text.httpd_sess_process + 0x00000000400ff5bc 0x52 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x56 (size before relaxing) + 0x00000000400ff5bc httpd_sess_process + *fill* 0x00000000400ff60e 0x2 + .text.httpd_sess_trigger_close + 0x00000000400ff610 0x26 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x00000000400ff610 httpd_sess_trigger_close + *fill* 0x00000000400ff636 0x2 + .text.httpd_sess_close_lru + 0x00000000400ff638 0x55 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x00000000400ff638 httpd_sess_close_lru + *fill* 0x00000000400ff68d 0x3 + .text.httpd_close_all_sessions + 0x00000000400ff690 0x2b esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x00000000400ff6bb 0x1 + .text.httpd_process_ctrl_msg + 0x00000000400ff6bc 0x7b esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x83 (size before relaxing) + *fill* 0x00000000400ff737 0x1 + .text.httpd_accept_conn + 0x00000000400ff738 0xc2 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0xd2 (size before relaxing) + *fill* 0x00000000400ff7fa 0x2 + .text.httpd_server + 0x00000000400ff7fc 0x18c esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x1a0 (size before relaxing) + .text.httpd_thread + 0x00000000400ff988 0x40 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x48 (size before relaxing) + .text.httpd_create + 0x00000000400ff9c8 0x16f esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + *fill* 0x00000000400ffb37 0x1 + .text.httpd_server_init + 0x00000000400ffb38 0x1c1 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x1e5 (size before relaxing) + *fill* 0x00000000400ffcf9 0x3 + .text.httpd_delete + 0x00000000400ffcfc 0x3c esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .text.httpd_queue_work + 0x00000000400ffd38 0x5e esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x62 (size before relaxing) + 0x00000000400ffd38 httpd_queue_work + *fill* 0x00000000400ffd96 0x2 + .text.httpd_start + 0x00000000400ffd98 0xa7 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0xb3 (size before relaxing) + 0x00000000400ffd98 httpd_start + *fill* 0x00000000400ffe3f 0x1 + .text.httpd_stop + 0x00000000400ffe40 0x6d esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x75 (size before relaxing) + 0x00000000400ffe40 httpd_stop + *fill* 0x00000000400ffead 0x3 + .text.init_req + 0x00000000400ffeb0 0x2f esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x00000000400ffedf 0x1 + .text.init_req_aux + 0x00000000400ffee0 0x36 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x00000000400fff16 0x2 + .text.parse_init + 0x00000000400fff18 0x40 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x48 (size before relaxing) + .text.cb_header_value + 0x00000000400fff58 0x66 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x00000000400fffbe 0x2 + .text.cb_url 0x00000000400fffc0 0x88 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .text.verify_url + 0x0000000040100048 0xe9 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0xed (size before relaxing) + *fill* 0x0000000040100131 0x3 + .text.cb_headers_complete + 0x0000000040100134 0x132 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x136 (size before relaxing) + *fill* 0x0000000040100266 0x2 + .text.pause_parsing + 0x0000000040100268 0x87 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x8b (size before relaxing) + *fill* 0x00000000401002ef 0x1 + .text.cb_no_body + 0x00000000401002f0 0x71 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x0000000040100361 0x3 + .text.cb_on_body + 0x0000000040100364 0x59 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + *fill* 0x00000000401003bd 0x3 + .text.cb_header_field + 0x00000000401003c0 0xa6 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0xaa (size before relaxing) + *fill* 0x0000000040100466 0x2 + .text.continue_parsing + 0x0000000040100468 0x1f esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x23 (size before relaxing) + *fill* 0x0000000040100487 0x1 + .text.read_block + 0x0000000040100488 0x4d esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x51 (size before relaxing) + *fill* 0x00000000401004d5 0x3 + .text.parse_block + 0x00000000401004d8 0x110 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .text.httpd_parse_req + 0x00000000401005e8 0x5e esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x6a (size before relaxing) + *fill* 0x0000000040100646 0x2 + .text.httpd_req_cleanup + 0x0000000040100648 0x44 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .text.httpd_req_new + 0x000000004010068c 0x57 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x63 (size before relaxing) + 0x000000004010068c httpd_req_new + *fill* 0x00000000401006e3 0x1 + .text.httpd_req_delete + 0x00000000401006e4 0x3d esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x41 (size before relaxing) + 0x00000000401006e4 httpd_req_delete + *fill* 0x0000000040100721 0x3 + .text.cs_create_ctrl_sock + 0x0000000040100724 0x56 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + 0x62 (size before relaxing) + 0x0000000040100724 cs_create_ctrl_sock + *fill* 0x000000004010077a 0x2 + .text.cs_free_ctrl_sock + 0x000000004010077c 0xe esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + 0x000000004010077c cs_free_ctrl_sock + *fill* 0x000000004010078a 0x2 + .text.cs_send_to_ctrl_sock + 0x000000004010078c 0x35 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + 0x3d (size before relaxing) + 0x000000004010078c cs_send_to_ctrl_sock + *fill* 0x00000000401007c1 0x3 + .text.httpd_ssl_close + 0x00000000401007c4 0x1d esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x20 (size before relaxing) + *fill* 0x00000000401007e1 0x3 + .text.httpd_ssl_open + 0x00000000401007e4 0xc5 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0xd5 (size before relaxing) + *fill* 0x00000000401008a9 0x3 + .text.httpd_ssl_recv + 0x00000000401008ac 0x2d esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x31 (size before relaxing) + *fill* 0x00000000401008d9 0x3 + .text.httpd_ssl_send + 0x00000000401008dc 0x2d esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x31 (size before relaxing) + *fill* 0x0000000040100909 0x3 + .text.httpd_ssl_pending + 0x000000004010090c 0x23 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x2a (size before relaxing) + *fill* 0x000000004010092f 0x1 + .text.free_secure_context + 0x0000000040100930 0x4e esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + *fill* 0x000000004010097e 0x2 + .text.create_secure_context + 0x0000000040100980 0x75 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + *fill* 0x00000000401009f5 0x3 + .text.httpd_ssl_start + 0x00000000401009f8 0xa2 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0xaa (size before relaxing) + 0x00000000401009f8 httpd_ssl_start + *fill* 0x0000000040100a9a 0x2 + .text.httpd_ssl_stop + 0x0000000040100a9c 0xa esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0xe (size before relaxing) + 0x0000000040100a9c httpd_ssl_stop + *fill* 0x0000000040100aa6 0x2 + .text.esp_vfs_fat_spiflash_mount + 0x0000000040100aa8 0x212 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + 0x22a (size before relaxing) + 0x0000000040100aa8 esp_vfs_fat_spiflash_mount + *fill* 0x0000000040100cba 0x2 + .text.ff_diskio_get_drive + 0x0000000040100cbc 0x29 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + 0x0000000040100cbc ff_diskio_get_drive + *fill* 0x0000000040100ce5 0x3 + .text.ff_diskio_register + 0x0000000040100ce8 0x64 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + 0x6c (size before relaxing) + 0x0000000040100ce8 ff_diskio_register + .text.ff_disk_initialize + 0x0000000040100d4c 0x19 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + 0x0000000040100d4c ff_disk_initialize + *fill* 0x0000000040100d65 0x3 + .text.ff_disk_status + 0x0000000040100d68 0x19 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + 0x0000000040100d68 ff_disk_status + *fill* 0x0000000040100d81 0x3 + .text.ff_disk_read + 0x0000000040100d84 0x20 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + 0x0000000040100d84 ff_disk_read + .text.ff_disk_write + 0x0000000040100da4 0x20 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + 0x0000000040100da4 ff_disk_write + .text.ff_disk_ioctl + 0x0000000040100dc4 0x1e esp-idf/fatfs/libfatfs.a(diskio.c.obj) + 0x0000000040100dc4 ff_disk_ioctl + *fill* 0x0000000040100de2 0x2 + .text.get_fattime + 0x0000000040100de4 0x57 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + 0x0000000040100de4 get_fattime + *fill* 0x0000000040100e3b 0x1 + .text.ff_wl_read + 0x0000000040100e3c 0x61 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + 0x71 (size before relaxing) + 0x0000000040100e3c ff_wl_read + *fill* 0x0000000040100e9d 0x3 + .text.ff_wl_write + 0x0000000040100ea0 0x9d esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + 0xb5 (size before relaxing) + 0x0000000040100ea0 ff_wl_write + *fill* 0x0000000040100f3d 0x3 + .text.ff_wl_ioctl + 0x0000000040100f40 0x62 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + 0x6a (size before relaxing) + 0x0000000040100f40 ff_wl_ioctl + *fill* 0x0000000040100fa2 0x2 + .text.ff_diskio_register_wl_partition + 0x0000000040100fa4 0x26 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + 0x0000000040100fa4 ff_diskio_register_wl_partition + *fill* 0x0000000040100fca 0x2 + .text.ld_clust + 0x0000000040100fcc 0x27 esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x0000000040100ff3 0x1 + .text.st_clust + 0x0000000040100ff4 0x23 esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x0000000040101017 0x1 + .text.get_fileinfo + 0x0000000040101018 0x83 esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x000000004010109b 0x1 + .text.create_name + 0x000000004010109c 0x175 esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x0000000040101211 0x3 + .text.lock_fs 0x0000000040101214 0xc esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x10 (size before relaxing) + .text.sync_window + 0x0000000040101220 0x58 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x5c (size before relaxing) + .text.move_window + 0x0000000040101278 0x32 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x36 (size before relaxing) + *fill* 0x00000000401012aa 0x2 + .text.check_fs + 0x00000000401012ac 0x90 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x94 (size before relaxing) + .text.find_volume + 0x000000004010133c 0x3a0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x3b0 (size before relaxing) + .text.put_fat 0x00000000401016dc 0x154 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x158 (size before relaxing) + .text.get_fat 0x0000000040101830 0x105 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x109 (size before relaxing) + *fill* 0x0000000040101935 0x3 + .text.dir_sdi 0x0000000040101938 0xac esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0xb0 (size before relaxing) + .text.create_chain + 0x00000000401019e4 0x13a esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x13e (size before relaxing) + *fill* 0x0000000040101b1e 0x2 + .text.remove_chain + 0x0000000040101b20 0x77 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x7f (size before relaxing) + *fill* 0x0000000040101b97 0x1 + .text.dir_remove + 0x0000000040101b98 0x1e esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x22 (size before relaxing) + *fill* 0x0000000040101bb6 0x2 + .text.dir_clear + 0x0000000040101bb8 0x5c esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x60 (size before relaxing) + .text.dir_next + 0x0000000040101c14 0xca esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0xce (size before relaxing) + *fill* 0x0000000040101cde 0x2 + .text.dir_find + 0x0000000040101ce0 0x58 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x60 (size before relaxing) + .text.follow_path + 0x0000000040101d38 0x9a esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x9e (size before relaxing) + *fill* 0x0000000040101dd2 0x2 + .text.dir_alloc + 0x0000000040101dd4 0x5a esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x5e (size before relaxing) + *fill* 0x0000000040101e2e 0x2 + .text.dir_register + 0x0000000040101e30 0x40 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x44 (size before relaxing) + .text.dir_read + 0x0000000040101e70 0x76 esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x0000000040101ee6 0x2 + .text.sync_fs 0x0000000040101ee8 0x96 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x9e (size before relaxing) + *fill* 0x0000000040101f7e 0x2 + .text.unlock_fs + 0x0000000040101f80 0x3f esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x0000000040101fbf 0x1 + .text.validate + 0x0000000040101fc0 0x68 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x6c (size before relaxing) + .text.f_mount 0x0000000040102028 0x88 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x90 (size before relaxing) + 0x0000000040102028 f_mount + .text.f_open 0x00000000401020b0 0x1e0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x200 (size before relaxing) + 0x00000000401020b0 f_open + .text.f_read 0x0000000040102290 0x1f0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x214 (size before relaxing) + 0x0000000040102290 f_read + .text.f_write 0x0000000040102480 0x231 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x249 (size before relaxing) + 0x0000000040102480 f_write + *fill* 0x00000000401026b1 0x3 + .text.f_sync 0x00000000401026b4 0xba esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0xd2 (size before relaxing) + 0x00000000401026b4 f_sync + *fill* 0x000000004010276e 0x2 + .text.f_close 0x0000000040102770 0x26 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x2e (size before relaxing) + 0x0000000040102770 f_close + *fill* 0x0000000040102796 0x2 + .text.f_lseek 0x0000000040102798 0x1e6 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x1fa (size before relaxing) + 0x0000000040102798 f_lseek + *fill* 0x000000004010297e 0x2 + .text.f_opendir + 0x0000000040102980 0x7c esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x8c (size before relaxing) + 0x0000000040102980 f_opendir + .text.f_closedir + 0x00000000401029fc 0x1e esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x22 (size before relaxing) + 0x00000000401029fc f_closedir + *fill* 0x0000000040102a1a 0x2 + .text.f_readdir + 0x0000000040102a1c 0x52 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x62 (size before relaxing) + 0x0000000040102a1c f_readdir + *fill* 0x0000000040102a6e 0x2 + .text.f_stat 0x0000000040102a70 0x42 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x4a (size before relaxing) + 0x0000000040102a70 f_stat + *fill* 0x0000000040102ab2 0x2 + .text.f_truncate + 0x0000000040102ab4 0xd8 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0xe4 (size before relaxing) + 0x0000000040102ab4 f_truncate + .text.f_unlink + 0x0000000040102b8c 0xbc esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0xd3 (size before relaxing) + 0x0000000040102b8c f_unlink + *fill* 0x0000000040102c48 0x0 + .text.f_mkdir 0x0000000040102c48 0x110 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x12c (size before relaxing) + 0x0000000040102c48 f_mkdir + .text.f_rename + 0x0000000040102d58 0x13f esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x156 (size before relaxing) + 0x0000000040102d58 f_rename + *fill* 0x0000000040102e97 0x1 + .text.f_utime 0x0000000040102e98 0x68 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x70 (size before relaxing) + 0x0000000040102e98 f_utime + .text.f_mkfs 0x0000000040102f00 0x761 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x791 (size before relaxing) + 0x0000000040102f00 f_mkfs + *fill* 0x0000000040103661 0x3 + .text.ff_memalloc + 0x0000000040103664 0x10 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + 0x0000000040103664 ff_memalloc + .text.ff_cre_syncobj + 0x0000000040103674 0x17 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + 0x0000000040103674 ff_cre_syncobj + *fill* 0x000000004010368b 0x1 + .text.ff_del_syncobj + 0x000000004010368c 0x10 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + 0x000000004010368c ff_del_syncobj + .text.ff_req_grant + 0x000000004010369c 0x1d esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + 0x000000004010369c ff_req_grant + *fill* 0x00000000401036b9 0x3 + .text.ff_rel_grant + 0x00000000401036bc 0x13 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + 0x00000000401036bc ff_rel_grant + *fill* 0x00000000401036cf 0x1 + .text.find_unused_context_index + 0x00000000401036d0 0x1e esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + *fill* 0x00000000401036ee 0x2 + .text.get_next_fd + 0x00000000401036f0 0x30 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + .text.fat_mode_conv + 0x0000000040103720 0x4f esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + *fill* 0x000000004010376f 0x1 + .text.vfs_fat_fstat + 0x0000000040103770 0x2c esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + .text.file_cleanup + 0x000000004010379c 0x26 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + *fill* 0x00000000401037c2 0x2 + .text.prepend_drive_to_path + 0x00000000401037c4 0x36 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x3a (size before relaxing) + *fill* 0x00000000401037fa 0x2 + .text.fresult_to_errno + 0x00000000401037fc 0x7c esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + .text.vfs_fat_utime + 0x0000000040103878 0xc4 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0xd4 (size before relaxing) + .text.vfs_fat_telldir + 0x000000004010393c 0x19 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x1c (size before relaxing) + *fill* 0x0000000040103955 0x3 + .text.vfs_fat_lseek + 0x0000000040103958 0x88 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x90 (size before relaxing) + .text.vfs_fat_close + 0x00000000401039e0 0x50 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x5c (size before relaxing) + .text.vfs_fat_truncate + 0x0000000040103a30 0x112 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x13a (size before relaxing) + *fill* 0x0000000040103b42 0x2 + .text.vfs_fat_open + 0x0000000040103b44 0xc1 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0xd9 (size before relaxing) + *fill* 0x0000000040103c05 0x3 + .text.vfs_fat_access + 0x0000000040103c08 0x5c esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x64 (size before relaxing) + .text.vfs_fat_fsync + 0x0000000040103c64 0x49 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x51 (size before relaxing) + *fill* 0x0000000040103cad 0x3 + .text.vfs_fat_rmdir + 0x0000000040103cb0 0x40 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x4c (size before relaxing) + .text.vfs_fat_unlink + 0x0000000040103cf0 0x40 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x4c (size before relaxing) + .text.vfs_fat_mkdir + 0x0000000040103d30 0x40 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x4c (size before relaxing) + .text.vfs_fat_closedir + 0x0000000040103d70 0x3c esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x48 (size before relaxing) + .text.vfs_fat_seekdir + 0x0000000040103dac 0x67 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x7b (size before relaxing) + *fill* 0x0000000040103e13 0x1 + .text.vfs_fat_readdir_r + 0x0000000040103e14 0x69 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x71 (size before relaxing) + *fill* 0x0000000040103e7d 0x3 + .text.vfs_fat_readdir + 0x0000000040103e80 0x24 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x28 (size before relaxing) + .text.vfs_fat_opendir + 0x0000000040103ea4 0x72 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x82 (size before relaxing) + *fill* 0x0000000040103f16 0x2 + .text.vfs_fat_rename + 0x0000000040103f18 0x44 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x50 (size before relaxing) + .text.vfs_fat_pread + 0x0000000040103f5c 0xa8 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0xc0 (size before relaxing) + .text.vfs_fat_read + 0x0000000040104004 0x45 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x4d (size before relaxing) + *fill* 0x0000000040104049 0x3 + .text.vfs_fat_link + 0x000000004010404c 0x160 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x17c (size before relaxing) + .text.vfs_fat_pwrite + 0x00000000401041ac 0xa8 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0xc0 (size before relaxing) + .text.vfs_fat_write + 0x0000000040104254 0x79 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x89 (size before relaxing) + *fill* 0x00000000401042cd 0x3 + .text.find_context_index_by_path + 0x00000000401042d0 0x2f esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + *fill* 0x00000000401042ff 0x1 + .text.vfs_fat_stat + 0x0000000040104300 0xce esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0xda (size before relaxing) + *fill* 0x00000000401043ce 0x2 + .text.esp_vfs_fat_register + 0x00000000401043d0 0x16d esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x179 (size before relaxing) + 0x00000000401043d0 esp_vfs_fat_register + *fill* 0x000000004010453d 0x3 + .text.esp_vfs_fat_unregister_path + 0x0000000040104540 0x52 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x5a (size before relaxing) + 0x0000000040104540 esp_vfs_fat_unregister_path + *fill* 0x0000000040104592 0x2 + .text._ZL12check_handleiPKc + 0x0000000040104594 0x86 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + *fill* 0x000000004010461a 0x2 + .text.wl_mount + 0x000000004010461c 0x1aa esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + 0x1ae (size before relaxing) + 0x000000004010461c wl_mount + *fill* 0x00000000401047c6 0x2 + .text.wl_erase_range + 0x00000000401047c8 0x3c esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + 0x40 (size before relaxing) + 0x00000000401047c8 wl_erase_range + .text.wl_write + 0x0000000040104804 0x40 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + 0x44 (size before relaxing) + 0x0000000040104804 wl_write + .text.wl_read 0x0000000040104844 0x40 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + 0x44 (size before relaxing) + 0x0000000040104844 wl_read + .text.wl_size 0x0000000040104884 0x3c esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + 0x40 (size before relaxing) + 0x0000000040104884 wl_size + .text.wl_sector_size + 0x00000000401048c0 0x3c esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + 0x40 (size before relaxing) + 0x00000000401048c0 wl_sector_size + .text._ZN9Partition12erase_sectorEj + 0x00000000401048fc 0x16 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0x00000000401048fc _ZN9Partition12erase_sectorEj + *fill* 0x0000000040104912 0x2 + .text._ZN9Partition11sector_sizeEv + 0x0000000040104914 0x8 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0x0000000040104914 _ZN9Partition11sector_sizeEv + .text._ZN9Partition11erase_rangeEjj + 0x000000004010491c 0x32 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0x36 (size before relaxing) + 0x000000004010491c _ZN9Partition11erase_rangeEjj + *fill* 0x000000004010494e 0x2 + .text._ZN9Partition5writeEjPKvj + 0x0000000040104950 0x15 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0x0000000040104950 _ZN9Partition5writeEjPKvj + *fill* 0x0000000040104965 0x3 + .text._ZN9Partition4readEjPvj + 0x0000000040104968 0x15 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0x0000000040104968 _ZN9Partition4readEjPvj + *fill* 0x000000004010497d 0x3 + .text._ZN9PartitionD0Ev + 0x0000000040104980 0xa esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0xe (size before relaxing) + 0x0000000040104980 _ZN9PartitionD0Ev + *fill* 0x000000004010498a 0x2 + .text._ZN9PartitionC2EPK15esp_partition_t + 0x000000004010498c 0xc esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0x000000004010498c _ZN9PartitionC1EPK15esp_partition_t + 0x000000004010498c _ZN9PartitionC2EPK15esp_partition_t + .text._ZN8WL_FlashD2Ev + 0x0000000040104998 0xe esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x0000000040104998 _ZN8WL_FlashD2Ev + 0x0000000040104998 _ZN8WL_FlashD1Ev + *fill* 0x00000000401049a6 0x2 + .text._ZN8WL_FlashD0Ev + 0x00000000401049a8 0x12 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x16 (size before relaxing) + 0x00000000401049a8 _ZN8WL_FlashD0Ev + *fill* 0x00000000401049ba 0x2 + .text._ZN8WL_Flash11erase_rangeEjj + 0x00000000401049bc 0x60 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x00000000401049bc _ZN8WL_Flash11erase_rangeEjj + .text._ZN8WL_Flash6configEP11WL_Config_sP12Flash_Access + 0x0000000040104a1c 0x149 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x14d (size before relaxing) + 0x0000000040104a1c _ZN8WL_Flash6configEP11WL_Config_sP12Flash_Access + *fill* 0x0000000040104b65 0x3 + .text._ZN8WL_FlashC2Ev + 0x0000000040104b68 0x1a esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x0000000040104b68 _ZN8WL_FlashC1Ev + 0x0000000040104b68 _ZN8WL_FlashC2Ev + *fill* 0x0000000040104b82 0x2 + .text._ZN8WL_Flash12initSectionsEv + 0x0000000040104b84 0x1c4 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x1c8 (size before relaxing) + 0x0000000040104b84 _ZN8WL_Flash12initSectionsEv + .text._ZN8WL_Flash10fillOkBuffEi + 0x0000000040104d48 0x2e esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x32 (size before relaxing) + 0x0000000040104d48 _ZN8WL_Flash10fillOkBuffEi + *fill* 0x0000000040104d76 0x2 + .text._ZN8WL_Flash11updateV1_V2Ev + 0x0000000040104d78 0x370 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x384 (size before relaxing) + 0x0000000040104d78 _ZN8WL_Flash11updateV1_V2Ev + .text._ZN8WL_Flash13updateVersionEv + 0x00000000401050e8 0xc esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x10 (size before relaxing) + 0x00000000401050e8 _ZN8WL_Flash13updateVersionEv + .text._ZN8WL_Flash9OkBuffSetEi + 0x00000000401050f4 0x39 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x00000000401050f4 _ZN8WL_Flash9OkBuffSetEi + *fill* 0x000000004010512d 0x3 + .text._ZN8WL_Flash10recoverPosEv + 0x0000000040105130 0x78 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x0000000040105130 _ZN8WL_Flash10recoverPosEv + .text._ZN8WL_Flash4initEv + 0x00000000401051a8 0x63d esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x649 (size before relaxing) + 0x00000000401051a8 _ZN8WL_Flash4initEv + *fill* 0x00000000401057e5 0x3 + .text._ZN8WL_Flash8updateWLEv + 0x00000000401057e8 0x2f2 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x2fe (size before relaxing) + 0x00000000401057e8 _ZN8WL_Flash8updateWLEv + *fill* 0x0000000040105ada 0x2 + .text._ZN8WL_Flash5flushEv + 0x0000000040105adc 0x15 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x0000000040105adc _ZN8WL_Flash5flushEv + *fill* 0x0000000040105af1 0x3 + .text._ZN8WL_Flash12erase_sectorEj + 0x0000000040105af4 0x8c esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x90 (size before relaxing) + 0x0000000040105af4 _ZN8WL_Flash12erase_sectorEj + .text._ZN8WL_Flash5writeEjPKvj + 0x0000000040105b80 0xcc esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0xd4 (size before relaxing) + 0x0000000040105b80 _ZN8WL_Flash5writeEjPKvj + .text._ZN8WL_Flash4readEjPvj + 0x0000000040105c4c 0xcc esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0xd4 (size before relaxing) + 0x0000000040105c4c _ZN8WL_Flash4readEjPvj + .text._ZN5crc328crc32_leEjPKhj + 0x0000000040105d18 0x14 esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) + 0x0000000040105d18 _ZN5crc328crc32_leEjPKhj + .text.select 0x0000000040105d2c 0x14 esp-idf/newlib/libnewlib.a(select.c.obj) + 0x18 (size before relaxing) + 0x0000000040105d2c select + .text.s_get_num_reserved_regions + 0x0000000040105d40 0x11 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + *fill* 0x0000000040105d51 0x3 + .text.s_prepare_reserved_regions + 0x0000000040105d54 0x9e esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + 0xa2 (size before relaxing) + *fill* 0x0000000040105df2 0x2 + .text.soc_get_available_memory_region_max_count + 0x0000000040105df4 0x12 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + 0x0000000040105df4 soc_get_available_memory_region_max_count + *fill* 0x0000000040105e06 0x2 + .text.soc_get_available_memory_regions + 0x0000000040105e08 0x100 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + 0x104 (size before relaxing) + 0x0000000040105e08 soc_get_available_memory_regions + .text.rtcio_hal_isolate + 0x0000000040105f08 0x12e esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + 0x13a (size before relaxing) + 0x0000000040105f08 rtcio_hal_isolate + *fill* 0x0000000040106036 0x2 + .text.uart_hal_set_baudrate + 0x0000000040106038 0x6e esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x0000000040106038 uart_hal_set_baudrate + *fill* 0x00000000401060a6 0x2 + .text.uart_hal_get_baudrate + 0x00000000401060a8 0x44 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x00000000401060a8 uart_hal_get_baudrate + .text.uart_hal_set_hw_flow_ctrl + 0x00000000401060ec 0x74 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x00000000401060ec uart_hal_set_hw_flow_ctrl + .text.uart_hal_set_rx_timeout + 0x0000000040106160 0x56 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x0000000040106160 uart_hal_set_rx_timeout + *fill* 0x00000000401061b6 0x2 + .text.uart_hal_set_tx_idle_num + 0x00000000401061b8 0x22 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x00000000401061b8 uart_hal_set_tx_idle_num + *fill* 0x00000000401061da 0x2 + .text.uart_hal_set_txfifo_empty_thr + 0x00000000401061dc 0x20 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x00000000401061dc uart_hal_set_txfifo_empty_thr + .text.uart_hal_init + 0x00000000401061fc 0x108 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x00000000401061fc uart_hal_init + .text.spi_flash_hal_init + 0x0000000040106304 0xc2 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + 0x0000000040106304 spi_flash_hal_init + *fill* 0x00000000401063c6 0x2 + .text.spi_flash_hal_supports_direct_write + 0x00000000401063c8 0x26 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + 0x00000000401063c8 spi_flash_hal_supports_direct_write + *fill* 0x00000000401063ee 0x2 + .text.spi_flash_hal_supports_direct_read + 0x00000000401063f0 0x26 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + 0x00000000401063f0 spi_flash_hal_supports_direct_read + *fill* 0x0000000040106416 0x2 + .text.esp_netif_action_start + 0x0000000040106418 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0xe (size before relaxing) + 0x0000000040106418 esp_netif_action_start + *fill* 0x0000000040106422 0x2 + .text.esp_netif_action_stop + 0x0000000040106424 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0xe (size before relaxing) + 0x0000000040106424 esp_netif_action_stop + *fill* 0x000000004010642e 0x2 + .text.esp_netif_action_connected + 0x0000000040106430 0xde esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0xf6 (size before relaxing) + 0x0000000040106430 esp_netif_action_connected + *fill* 0x000000004010650e 0x2 + .text.esp_netif_action_disconnected + 0x0000000040106510 0xa esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0xe (size before relaxing) + 0x0000000040106510 esp_netif_action_disconnected + *fill* 0x000000004010651a 0x2 + .text.esp_netif_action_got_ip + 0x000000004010651c 0x62 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x66 (size before relaxing) + 0x000000004010651c esp_netif_action_got_ip + *fill* 0x000000004010657e 0x2 + .text.wifi_create_and_start_sta + 0x0000000040106580 0x2f esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + 0x37 (size before relaxing) + *fill* 0x00000000401065af 0x1 + .text.wifi_create_and_start_ap + 0x00000000401065b0 0x2f esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + 0x37 (size before relaxing) + *fill* 0x00000000401065df 0x1 + .text.tcpip_adapter_set_default_wifi_handlers + 0x00000000401065e0 0x44 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + 0x48 (size before relaxing) + 0x00000000401065e0 tcpip_adapter_set_default_wifi_handlers + .text.tcpip_adapter_clear_default_wifi_handlers + 0x0000000040106624 0xa esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + 0xd (size before relaxing) + 0x0000000040106624 tcpip_adapter_clear_default_wifi_handlers + *fill* 0x000000004010662e 0x2 + .text.mbedtls_clz + 0x0000000040106630 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + *fill* 0x000000004010664d 0x3 + .text.mbedtls_int_div_int + 0x0000000040106650 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mbedtls_mpi_zeroize + 0x000000004010669c 0xd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10 (size before relaxing) + *fill* 0x00000000401066a9 0x3 + .text.mpi_uint_bigendian_to_host + 0x00000000401066ac 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .text.mpi_bigendian_to_host + 0x00000000401066bc 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x32 (size before relaxing) + *fill* 0x00000000401066ea 0x2 + .text.mbedtls_mpi_free + 0x00000000401066ec 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x26 (size before relaxing) + 0x00000000401066ec mbedtls_mpi_free + *fill* 0x000000004010670e 0x2 + .text.mbedtls_mpi_grow + 0x0000000040106710 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x58 (size before relaxing) + 0x0000000040106710 mbedtls_mpi_grow + .text.mbedtls_mpi_shrink + 0x000000004010675c 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x7a (size before relaxing) + 0x000000004010675c mbedtls_mpi_shrink + *fill* 0x00000000401067ce 0x2 + .text.mbedtls_mpi_copy + 0x00000000401067d0 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x7a (size before relaxing) + 0x00000000401067d0 mbedtls_mpi_copy + *fill* 0x0000000040106846 0x2 + .text.mbedtls_mpi_swap + 0x0000000040106848 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000040106848 mbedtls_mpi_swap + *fill* 0x0000000040106873 0x1 + .text.mbedtls_mpi_safe_cond_assign + 0x0000000040106874 0x75 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000040106874 mbedtls_mpi_safe_cond_assign + *fill* 0x00000000401068e9 0x3 + .text.mbedtls_mpi_safe_cond_swap + 0x00000000401068ec 0x8a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x8e (size before relaxing) + 0x00000000401068ec mbedtls_mpi_safe_cond_swap + *fill* 0x0000000040106976 0x2 + .text.mbedtls_mpi_lset + 0x0000000040106978 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000040106978 mbedtls_mpi_lset + .text.mbedtls_mpi_set_bit + 0x00000000401069b0 0x67 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x00000000401069b0 mbedtls_mpi_set_bit + *fill* 0x0000000040106a17 0x1 + .text.mbedtls_mpi_bitlen + 0x0000000040106a18 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000040106a18 mbedtls_mpi_bitlen + *fill* 0x0000000040106a55 0x3 + .text.mbedtls_mpi_size + 0x0000000040106a58 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x13 (size before relaxing) + 0x0000000040106a58 mbedtls_mpi_size + *fill* 0x0000000040106a67 0x1 + .text.mbedtls_mpi_read_binary + 0x0000000040106a68 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x68 (size before relaxing) + 0x0000000040106a68 mbedtls_mpi_read_binary + .text.mbedtls_mpi_write_binary + 0x0000000040106ac4 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000040106ac4 mbedtls_mpi_write_binary + .text.mbedtls_mpi_shift_l + 0x0000000040106b40 0xb1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xb9 (size before relaxing) + 0x0000000040106b40 mbedtls_mpi_shift_l + *fill* 0x0000000040106bf1 0x3 + .text.mbedtls_mpi_shift_r + 0x0000000040106bf4 0xa6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000040106bf4 mbedtls_mpi_shift_r + *fill* 0x0000000040106c9a 0x2 + .text.mbedtls_mpi_cmp_abs + 0x0000000040106c9c 0x85 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000040106c9c mbedtls_mpi_cmp_abs + *fill* 0x0000000040106d21 0x3 + .text.mbedtls_mpi_cmp_mpi + 0x0000000040106d24 0xa6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000040106d24 mbedtls_mpi_cmp_mpi + *fill* 0x0000000040106dca 0x2 + .text.mbedtls_mpi_cmp_int + 0x0000000040106dcc 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000040106dcc mbedtls_mpi_cmp_int + *fill* 0x0000000040106df6 0x2 + .text.mbedtls_mpi_add_abs + 0x0000000040106df8 0xae esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xb2 (size before relaxing) + 0x0000000040106df8 mbedtls_mpi_add_abs + *fill* 0x0000000040106ea6 0x2 + .text.mbedtls_mpi_sub_abs + 0x0000000040106ea8 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x7a (size before relaxing) + 0x0000000040106ea8 mbedtls_mpi_sub_abs + *fill* 0x0000000040106f16 0x2 + .text.mbedtls_mpi_add_mpi + 0x0000000040106f18 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x5a (size before relaxing) + 0x0000000040106f18 mbedtls_mpi_add_mpi + *fill* 0x0000000040106f6a 0x2 + .text.mbedtls_mpi_sub_mpi + 0x0000000040106f6c 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x5a (size before relaxing) + 0x0000000040106f6c mbedtls_mpi_sub_mpi + *fill* 0x0000000040106fbe 0x2 + .text.mbedtls_mpi_add_int + 0x0000000040106fc0 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000040106fc0 mbedtls_mpi_add_int + .text.mbedtls_mpi_sub_int + 0x0000000040106fec 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000040106fec mbedtls_mpi_sub_int + .text.mbedtls_mpi_mul_int + 0x0000000040107018 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x20 (size before relaxing) + 0x0000000040107018 mbedtls_mpi_mul_int + .text.mbedtls_mpi_read_string + 0x0000000040107034 0x131 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x145 (size before relaxing) + 0x0000000040107034 mbedtls_mpi_read_string + *fill* 0x0000000040107165 0x3 + .text.mbedtls_mpi_div_mpi + 0x0000000040107168 0x37e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x3ee (size before relaxing) + 0x0000000040107168 mbedtls_mpi_div_mpi + *fill* 0x00000000401074e6 0x2 + .text.mbedtls_mpi_div_int + 0x00000000401074e8 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x00000000401074e8 mbedtls_mpi_div_int + *fill* 0x0000000040107516 0x2 + .text.mbedtls_mpi_mod_mpi + 0x0000000040107518 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x6c (size before relaxing) + 0x0000000040107518 mbedtls_mpi_mod_mpi + .text.mbedtls_mpi_mod_int + 0x000000004010757c 0x7e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x000000004010757c mbedtls_mpi_mod_int + *fill* 0x00000000401075fa 0x2 + .text.mpi_write_hlp + 0x00000000401075fc 0x7a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x7e (size before relaxing) + *fill* 0x0000000040107676 0x2 + .text.mbedtls_mpi_write_string + 0x0000000040107678 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x10c (size before relaxing) + 0x0000000040107678 mbedtls_mpi_write_string + .text.mbedtls_mpi_write_file + 0x0000000040107778 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xa0 (size before relaxing) + 0x0000000040107778 mbedtls_mpi_write_file + .text.mpi_check_small_factors + 0x000000004010780c 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x54 (size before relaxing) + .text.mbedtls_mpi_gcd + 0x000000004010785c 0x10b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x14b (size before relaxing) + 0x000000004010785c mbedtls_mpi_gcd + *fill* 0x0000000040107967 0x1 + .text.mbedtls_mpi_fill_random + 0x0000000040107968 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x68 (size before relaxing) + 0x0000000040107968 mbedtls_mpi_fill_random + .text.mpi_miller_rabin + 0x00000000401079c4 0x1b4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x204 (size before relaxing) + .text.mbedtls_mpi_inv_mod + 0x0000000040107b78 0x2a4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x334 (size before relaxing) + 0x0000000040107b78 mbedtls_mpi_inv_mod + .text.mbedtls_mpi_is_prime_ext + 0x0000000040107e1c 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x64 (size before relaxing) + 0x0000000040107e1c mbedtls_mpi_is_prime_ext + .text.mbedtls_mpi_gen_prime + 0x0000000040107e74 0x214 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x240 (size before relaxing) + 0x0000000040107e74 mbedtls_mpi_gen_prime + .text.block_cipher_df + 0x0000000040108088 0x1a6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x1ba (size before relaxing) + *fill* 0x000000004010822e 0x2 + .text.ctr_drbg_update_internal + 0x0000000040108230 0xa4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .text.mbedtls_ctr_drbg_init + 0x00000000401082d4 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x00000000401082d4 mbedtls_ctr_drbg_init + *fill* 0x00000000401082e6 0x2 + .text.mbedtls_ctr_drbg_free + 0x00000000401082e8 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x1a (size before relaxing) + 0x00000000401082e8 mbedtls_ctr_drbg_free + *fill* 0x00000000401082fe 0x2 + .text.mbedtls_ctr_drbg_reseed + 0x0000000040108300 0x8f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x97 (size before relaxing) + 0x0000000040108300 mbedtls_ctr_drbg_reseed + *fill* 0x000000004010838f 0x1 + .text.mbedtls_ctr_drbg_seed_entropy_len + 0x0000000040108390 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x50 (size before relaxing) + 0x0000000040108390 mbedtls_ctr_drbg_seed_entropy_len + .text.mbedtls_ctr_drbg_seed + 0x00000000401083d8 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x00000000401083d8 mbedtls_ctr_drbg_seed + *fill* 0x00000000401083f1 0x3 + .text.mbedtls_ctr_drbg_random_with_add + 0x00000000401083f4 0xe7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0xf7 (size before relaxing) + 0x00000000401083f4 mbedtls_ctr_drbg_random_with_add + *fill* 0x00000000401084db 0x1 + .text.mbedtls_ctr_drbg_random + 0x00000000401084dc 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0x18 (size before relaxing) + 0x00000000401084dc mbedtls_ctr_drbg_random + .text.ecp_check_pubkey_mx + 0x00000000401084f0 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x21 (size before relaxing) + *fill* 0x000000004010850d 0x3 + .text.ecp_modp + 0x0000000040108510 0x97 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x9b (size before relaxing) + *fill* 0x00000000401085a7 0x1 + .text.ecp_randomize_mxz + 0x00000000401085a8 0xad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xd1 (size before relaxing) + *fill* 0x0000000040108655 0x3 + .text.ecp_randomize_jac + 0x0000000040108658 0x12d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x161 (size before relaxing) + *fill* 0x0000000040108785 0x3 + .text.ecp_double_add_mxz + 0x0000000040108788 0x38f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x427 (size before relaxing) + *fill* 0x0000000040108b17 0x1 + .text.ecp_normalize_mxz + 0x0000000040108b18 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x45 (size before relaxing) + *fill* 0x0000000040108b51 0x3 + .text.ecp_normalize_jac + 0x0000000040108b54 0xce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xfe (size before relaxing) + *fill* 0x0000000040108c22 0x2 + .text.ecp_double_jac + 0x0000000040108c24 0x4b2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x55e (size before relaxing) + *fill* 0x00000000401090d6 0x2 + .text.ecp_normalize_jac_many + 0x00000000401090d8 0x235 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x28d (size before relaxing) + *fill* 0x000000004010930d 0x3 + .text.ecp_safe_invert_jac + 0x0000000040109310 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x48 (size before relaxing) + *fill* 0x0000000040109349 0x3 + .text.ecp_select_comb + 0x000000004010934c 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x60 (size before relaxing) + .text.ecp_comb_recode_core + 0x00000000401093a4 0x8a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x8e (size before relaxing) + *fill* 0x000000004010942e 0x2 + .text.ecp_comb_recode_scalar + 0x0000000040109430 0x75 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x91 (size before relaxing) + *fill* 0x00000000401094a5 0x3 + .text.ecp_check_pubkey_sw + 0x00000000401094a8 0x168 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x19c (size before relaxing) + .text.mbedtls_ecp_curve_list + 0x0000000040109610 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x0000000040109610 mbedtls_ecp_curve_list + .text.mbedtls_ecp_grp_id_list + 0x0000000040109618 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x0000000040109618 mbedtls_ecp_grp_id_list + *fill* 0x0000000040109659 0x3 + .text.mbedtls_ecp_curve_info_from_grp_id + 0x000000004010965c 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x000000004010965c mbedtls_ecp_curve_info_from_grp_id + .text.mbedtls_ecp_curve_info_from_tls_id + 0x0000000040109678 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x24 (size before relaxing) + 0x0000000040109678 mbedtls_ecp_curve_info_from_tls_id + .text.mbedtls_ecp_curve_info_from_name + 0x0000000040109698 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x0000000040109698 mbedtls_ecp_curve_info_from_name + *fill* 0x00000000401096c6 0x2 + .text.mbedtls_ecp_point_init + 0x00000000401096c8 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1f (size before relaxing) + 0x00000000401096c8 mbedtls_ecp_point_init + *fill* 0x00000000401096df 0x1 + .text.mbedtls_ecp_group_init + 0x00000000401096e0 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x51 (size before relaxing) + 0x00000000401096e0 mbedtls_ecp_group_init + *fill* 0x0000000040109721 0x3 + .text.mbedtls_ecp_keypair_init + 0x0000000040109724 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x22 (size before relaxing) + 0x0000000040109724 mbedtls_ecp_keypair_init + *fill* 0x000000004010973e 0x2 + .text.mbedtls_ecp_point_free + 0x0000000040109740 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x20 (size before relaxing) + 0x0000000040109740 mbedtls_ecp_point_free + .text.mbedtls_ecp_group_free + 0x0000000040109758 0x63 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x77 (size before relaxing) + 0x0000000040109758 mbedtls_ecp_group_free + *fill* 0x00000000401097bb 0x1 + .text.mbedtls_ecp_keypair_free + 0x00000000401097bc 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x23 (size before relaxing) + 0x00000000401097bc mbedtls_ecp_keypair_free + *fill* 0x00000000401097d7 0x1 + .text.mbedtls_ecp_copy + 0x00000000401097d8 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x2c (size before relaxing) + 0x00000000401097d8 mbedtls_ecp_copy + .text.ecp_mul_mxz + 0x00000000401097fc 0x101 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x141 (size before relaxing) + *fill* 0x00000000401098fd 0x3 + .text.mbedtls_ecp_group_copy + 0x0000000040109900 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x0000000040109900 mbedtls_ecp_group_copy + *fill* 0x0000000040109911 0x3 + .text.mbedtls_ecp_set_zero + 0x0000000040109914 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x2a (size before relaxing) + 0x0000000040109914 mbedtls_ecp_set_zero + *fill* 0x0000000040109936 0x2 + .text.ecp_add_mixed + 0x0000000040109938 0x411 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x4b1 (size before relaxing) + *fill* 0x0000000040109d49 0x3 + .text.ecp_precompute_comb + 0x0000000040109d4c 0x128 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .text.ecp_mul_comb_core + 0x0000000040109e74 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xa4 (size before relaxing) + .text.ecp_mul_comb_after_precomp + 0x0000000040109f04 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x5d (size before relaxing) + *fill* 0x0000000040109f55 0x3 + .text.ecp_mul_comb + 0x0000000040109f58 0x122 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x132 (size before relaxing) + *fill* 0x000000004010a07a 0x2 + .text.mbedtls_ecp_is_zero + 0x000000004010a07c 0x17 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x000000004010a07c mbedtls_ecp_is_zero + *fill* 0x000000004010a093 0x1 + .text.mbedtls_ecp_point_cmp + 0x000000004010a094 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x42 (size before relaxing) + 0x000000004010a094 mbedtls_ecp_point_cmp + *fill* 0x000000004010a0ce 0x2 + .text.mbedtls_ecp_point_write_binary + 0x000000004010a0d0 0x9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xa8 (size before relaxing) + 0x000000004010a0d0 mbedtls_ecp_point_write_binary + .text.mbedtls_ecp_point_read_binary + 0x000000004010a16c 0x6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x7c (size before relaxing) + 0x000000004010a16c mbedtls_ecp_point_read_binary + .text.mbedtls_ecp_tls_read_point + 0x000000004010a1d8 0x3d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x000000004010a1d8 mbedtls_ecp_tls_read_point + *fill* 0x000000004010a215 0x3 + .text.mbedtls_ecp_tls_write_point + 0x000000004010a218 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x32 (size before relaxing) + 0x000000004010a218 mbedtls_ecp_tls_write_point + *fill* 0x000000004010a246 0x2 + .text.mbedtls_ecp_tls_read_group_id + 0x000000004010a248 0x49 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x000000004010a248 mbedtls_ecp_tls_read_group_id + *fill* 0x000000004010a291 0x3 + .text.mbedtls_ecp_tls_write_group + 0x000000004010a294 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x39 (size before relaxing) + 0x000000004010a294 mbedtls_ecp_tls_write_group + *fill* 0x000000004010a2c9 0x3 + .text.mbedtls_ecp_check_pubkey + 0x000000004010a2cc 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x51 (size before relaxing) + 0x000000004010a2cc mbedtls_ecp_check_pubkey + *fill* 0x000000004010a319 0x3 + .text.mbedtls_ecp_check_privkey + 0x000000004010a31c 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x98 (size before relaxing) + 0x000000004010a31c mbedtls_ecp_check_privkey + .text.mbedtls_ecp_mul_restartable + 0x000000004010a3a4 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x6e (size before relaxing) + 0x000000004010a3a4 mbedtls_ecp_mul_restartable + *fill* 0x000000004010a40a 0x2 + .text.mbedtls_ecp_mul + 0x000000004010a40c 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x000000004010a40c mbedtls_ecp_mul + *fill* 0x000000004010a429 0x3 + .text.mbedtls_ecp_mul_shortcuts + 0x000000004010a42c 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x72 (size before relaxing) + *fill* 0x000000004010a48e 0x2 + .text.mbedtls_ecp_muladd_restartable + 0x000000004010a490 0x67 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x77 (size before relaxing) + 0x000000004010a490 mbedtls_ecp_muladd_restartable + *fill* 0x000000004010a4f7 0x1 + .text.mbedtls_ecp_muladd + 0x000000004010a4f8 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x000000004010a4f8 mbedtls_ecp_muladd + *fill* 0x000000004010a515 0x3 + .text.mbedtls_ecp_gen_privkey + 0x000000004010a518 0x101 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x121 (size before relaxing) + 0x000000004010a518 mbedtls_ecp_gen_privkey + *fill* 0x000000004010a619 0x3 + .text.mbedtls_ecp_gen_keypair_base + 0x000000004010a61c 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x29 (size before relaxing) + 0x000000004010a61c mbedtls_ecp_gen_keypair_base + *fill* 0x000000004010a641 0x3 + .text.mbedtls_ecp_gen_keypair + 0x000000004010a644 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x000000004010a644 mbedtls_ecp_gen_keypair + *fill* 0x000000004010a65e 0x2 + .text.mbedtls_ecp_gen_key + 0x000000004010a660 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x28 (size before relaxing) + 0x000000004010a660 mbedtls_ecp_gen_key + .text.mbedtls_ecp_check_pub_priv + 0x000000004010a684 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0xbc (size before relaxing) + 0x000000004010a684 mbedtls_ecp_check_pub_priv + .text.ecp_mod_p255 + 0x000000004010a71c 0x9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0xac (size before relaxing) + .text.ecp_mod_p521 + 0x000000004010a7b8 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + *fill* 0x000000004010a82a 0x2 + .text.ecp_mod_p192 + 0x000000004010a82c 0x220 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .text.ecp_mod_p384 + 0x000000004010aa4c 0x83c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x844 (size before relaxing) + .text.ecp_group_load + 0x000000004010b288 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x7e (size before relaxing) + *fill* 0x000000004010b2fe 0x2 + .text.ecp_use_curve25519 + 0x000000004010b300 0x93 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0xb7 (size before relaxing) + *fill* 0x000000004010b393 0x1 + .text.ecp_mod_p224 + 0x000000004010b394 0x32c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x334 (size before relaxing) + .text.ecp_mod_p256 + 0x000000004010b6c0 0x65c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x660 (size before relaxing) + .text.ecp_mod_p192k1 + 0x000000004010bd1c 0x10e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x116 (size before relaxing) + *fill* 0x000000004010be2a 0x2 + .text.ecp_mod_p256k1 + 0x000000004010be2c 0x10a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x116 (size before relaxing) + *fill* 0x000000004010bf36 0x2 + .text.ecp_mod_p224k1 + 0x000000004010bf38 0x10e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x116 (size before relaxing) + *fill* 0x000000004010c046 0x2 + .text.mbedtls_ecp_group_load + 0x000000004010c048 0x283 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0x28e (size before relaxing) + 0x000000004010c048 mbedtls_ecp_group_load + *fill* 0x000000004010c2cb 0x1 + .text.entropy_update + 0x000000004010c2cc 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x6a (size before relaxing) + *fill* 0x000000004010c32e 0x2 + .text.entropy_gather_internal + 0x000000004010c330 0x9e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0xa2 (size before relaxing) + *fill* 0x000000004010c3ce 0x2 + .text.mbedtls_entropy_free + 0x000000004010c3d0 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x24 (size before relaxing) + 0x000000004010c3d0 mbedtls_entropy_free + .text.mbedtls_entropy_init + 0x000000004010c3ec 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x36 (size before relaxing) + 0x000000004010c3ec mbedtls_entropy_init + *fill* 0x000000004010c41e 0x2 + .text.mbedtls_entropy_func + 0x000000004010c420 0xe4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0xf8 (size before relaxing) + 0x000000004010c420 mbedtls_entropy_func + .text.mbedtls_strerror + 0x000000004010c504 0xd5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) + 0x102e (size before relaxing) + 0x000000004010c504 mbedtls_strerror + *fill* 0x000000004010d262 0x2 + .text.mbedtls_md_info_from_type + 0x000000004010d264 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x000000004010d264 mbedtls_md_info_from_type + *fill* 0x000000004010d2a2 0x2 + .text.mbedtls_md_free + 0x000000004010d2a4 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x38 (size before relaxing) + 0x000000004010d2a4 mbedtls_md_free + .text.mbedtls_md_setup + 0x000000004010d2d8 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x55 (size before relaxing) + 0x000000004010d2d8 mbedtls_md_setup + *fill* 0x000000004010d329 0x3 + .text.mbedtls_md_starts + 0x000000004010d32c 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x000000004010d32c mbedtls_md_starts + *fill* 0x000000004010d34d 0x3 + .text.mbedtls_md_update + 0x000000004010d350 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x000000004010d350 mbedtls_md_update + *fill* 0x000000004010d375 0x3 + .text.mbedtls_md_finish + 0x000000004010d378 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x000000004010d378 mbedtls_md_finish + *fill* 0x000000004010d39d 0x3 + .text.mbedtls_md + 0x000000004010d3a0 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x000000004010d3a0 mbedtls_md + *fill* 0x000000004010d3ba 0x2 + .text.mbedtls_md_hmac_starts + 0x000000004010d3bc 0xd3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x000000004010d3bc mbedtls_md_hmac_starts + *fill* 0x000000004010d48f 0x1 + .text.mbedtls_md_hmac_update + 0x000000004010d490 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x000000004010d490 mbedtls_md_hmac_update + *fill* 0x000000004010d4c1 0x3 + .text.mbedtls_md_hmac_finish + 0x000000004010d4c4 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x000000004010d4c4 mbedtls_md_hmac_finish + .text.mbedtls_md_hmac_reset + 0x000000004010d538 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x000000004010d538 mbedtls_md_hmac_reset + .text.mbedtls_md_process + 0x000000004010d578 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x000000004010d578 mbedtls_md_process + *fill* 0x000000004010d59a 0x2 + .text.md5_process_wrap + 0x000000004010d59c 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x000000004010d5ad 0x3 + .text.md5_clone_wrap + 0x000000004010d5b0 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x000000004010d5bf 0x1 + .text.md5_ctx_free + 0x000000004010d5c0 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x000000004010d5d2 0x2 + .text.md5_ctx_alloc + 0x000000004010d5d4 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x000000004010d5ea 0x2 + .text.md5_finish_wrap + 0x000000004010d5ec 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x000000004010d5fd 0x3 + .text.md5_update_wrap + 0x000000004010d600 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x14 (size before relaxing) + .text.md5_starts_wrap + 0x000000004010d610 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x10 (size before relaxing) + .text.sha1_process_wrap + 0x000000004010d61c 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x000000004010d62d 0x3 + .text.sha1_clone_wrap + 0x000000004010d630 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x000000004010d63f 0x1 + .text.sha1_ctx_free + 0x000000004010d640 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x000000004010d652 0x2 + .text.sha1_ctx_alloc + 0x000000004010d654 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x000000004010d66a 0x2 + .text.sha1_finish_wrap + 0x000000004010d66c 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x000000004010d67d 0x3 + .text.sha1_update_wrap + 0x000000004010d680 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x14 (size before relaxing) + .text.sha1_starts_wrap + 0x000000004010d690 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x10 (size before relaxing) + .text.sha224_process_wrap + 0x000000004010d69c 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x000000004010d6ad 0x3 + .text.sha224_clone_wrap + 0x000000004010d6b0 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x000000004010d6bf 0x1 + .text.sha224_ctx_free + 0x000000004010d6c0 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x000000004010d6d2 0x2 + .text.sha224_ctx_alloc + 0x000000004010d6d4 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x000000004010d6ea 0x2 + .text.sha224_wrap + 0x000000004010d6ec 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x000000004010d701 0x3 + .text.sha256_wrap + 0x000000004010d704 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x000000004010d719 0x3 + .text.sha224_finish_wrap + 0x000000004010d71c 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x000000004010d72d 0x3 + .text.sha224_update_wrap + 0x000000004010d730 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x14 (size before relaxing) + .text.sha224_starts_wrap + 0x000000004010d740 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x000000004010d751 0x3 + .text.sha256_starts_wrap + 0x000000004010d754 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x000000004010d765 0x3 + .text.sha384_process_wrap + 0x000000004010d768 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x000000004010d779 0x3 + .text.sha384_clone_wrap + 0x000000004010d77c 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x000000004010d78b 0x1 + .text.sha384_ctx_free + 0x000000004010d78c 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x000000004010d79e 0x2 + .text.sha384_ctx_alloc + 0x000000004010d7a0 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x000000004010d7b6 0x2 + .text.sha384_wrap + 0x000000004010d7b8 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x000000004010d7cd 0x3 + .text.sha512_wrap + 0x000000004010d7d0 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x000000004010d7e5 0x3 + .text.sha384_finish_wrap + 0x000000004010d7e8 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x000000004010d7f9 0x3 + .text.sha384_update_wrap + 0x000000004010d7fc 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0x14 (size before relaxing) + .text.sha384_starts_wrap + 0x000000004010d80c 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x000000004010d81d 0x3 + .text.sha512_starts_wrap + 0x000000004010d820 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + *fill* 0x000000004010d831 0x3 + .text.mbedtls_pk_free + 0x000000004010d834 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x000000004010d834 mbedtls_pk_free + .text.mbedtls_pk_info_from_type + 0x000000004010d850 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x000000004010d850 mbedtls_pk_info_from_type + *fill* 0x000000004010d889 0x3 + .text.mbedtls_pk_setup + 0x000000004010d88c 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x000000004010d88c mbedtls_pk_setup + *fill* 0x000000004010d8b7 0x1 + .text.mbedtls_pk_verify_restartable + 0x000000004010d8b8 0x4b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x4f (size before relaxing) + 0x000000004010d8b8 mbedtls_pk_verify_restartable + *fill* 0x000000004010d903 0x1 + .text.mbedtls_pk_verify + 0x000000004010d904 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x000000004010d904 mbedtls_pk_verify + *fill* 0x000000004010d921 0x3 + .text.mbedtls_pk_sign_restartable + 0x000000004010d924 0x55 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x59 (size before relaxing) + 0x000000004010d924 mbedtls_pk_sign_restartable + *fill* 0x000000004010d979 0x3 + .text.mbedtls_pk_sign + 0x000000004010d97c 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x000000004010d97c mbedtls_pk_sign + *fill* 0x000000004010d9a1 0x3 + .text.mbedtls_pk_decrypt + 0x000000004010d9a4 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x000000004010d9a4 mbedtls_pk_decrypt + *fill* 0x000000004010d9d9 0x3 + .text.mbedtls_pk_encrypt + 0x000000004010d9dc 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x000000004010d9dc mbedtls_pk_encrypt + *fill* 0x000000004010da11 0x3 + .text.mbedtls_pk_check_pair + 0x000000004010da14 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x000000004010da14 mbedtls_pk_check_pair + *fill* 0x000000004010da61 0x3 + .text.mbedtls_pk_verify_ext + 0x000000004010da64 0xa6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0xb2 (size before relaxing) + 0x000000004010da64 mbedtls_pk_verify_ext + *fill* 0x000000004010db0a 0x2 + .text.rsa_debug + 0x000000004010db0c 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x000000004010db2a 0x2 + .text.eckey_debug + 0x000000004010db2c 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x000000004010db41 0x3 + .text.rsa_free_wrap + 0x000000004010db44 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x000000004010db56 0x2 + .text.rsa_alloc_wrap + 0x000000004010db58 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x1e (size before relaxing) + *fill* 0x000000004010db72 0x2 + .text.rsa_check_pair_wrap + 0x000000004010db74 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x000000004010db85 0x3 + .text.rsa_get_bitlen + 0x000000004010db88 0xd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x11 (size before relaxing) + *fill* 0x000000004010db95 0x3 + .text.rsa_encrypt_wrap + 0x000000004010db98 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x31 (size before relaxing) + *fill* 0x000000004010dbc5 0x3 + .text.rsa_decrypt_wrap + 0x000000004010dbc8 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x31 (size before relaxing) + *fill* 0x000000004010dbf5 0x3 + .text.rsa_sign_wrap + 0x000000004010dbf8 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x28 (size before relaxing) + .text.rsa_verify_wrap + 0x000000004010dc1c 0x37 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x3f (size before relaxing) + *fill* 0x000000004010dc53 0x1 + .text.eckey_free_wrap + 0x000000004010dc54 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x000000004010dc66 0x2 + .text.eckey_alloc_wrap + 0x000000004010dc68 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x000000004010dc7e 0x2 + .text.eckey_check_pair + 0x000000004010dc80 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x000000004010dc91 0x3 + .text.ecdsa_alloc_wrap + 0x000000004010dc94 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x000000004010dcaa 0x2 + .text.ecdsa_free_wrap + 0x000000004010dcac 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x000000004010dcbe 0x2 + .text.ecdsa_sign_wrap + 0x000000004010dcc0 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x000000004010dce1 0x3 + .text.eckey_sign_wrap + 0x000000004010dce4 0x3c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x47 (size before relaxing) + *fill* 0x000000004010dd20 0x0 + .text.ecdsa_verify_wrap + 0x000000004010dd20 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x21 (size before relaxing) + *fill* 0x000000004010dd3d 0x3 + .text.eckey_verify_wrap + 0x000000004010dd40 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0x38 (size before relaxing) + *fill* 0x000000004010dd6d 0x3 + .text.pkcs5_parse_pbkdf2_params + 0x000000004010dd70 0xab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0xaf (size before relaxing) + *fill* 0x000000004010de1b 0x1 + .text.mbedtls_pkcs5_pbkdf2_hmac + 0x000000004010de1c 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x114 (size before relaxing) + 0x000000004010de1c mbedtls_pkcs5_pbkdf2_hmac + .text.mbedtls_pkcs5_pbes2 + 0x000000004010df1c 0x1ca esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x1f6 (size before relaxing) + 0x000000004010df1c mbedtls_pkcs5_pbes2 + *fill* 0x000000004010e0e6 0x2 + .text.pk_get_ecparams + 0x000000004010e0e8 0x5d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + *fill* 0x000000004010e145 0x3 + .text.pk_get_pk_alg + 0x000000004010e148 0x83 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x87 (size before relaxing) + *fill* 0x000000004010e1cb 0x1 + .text.pk_get_rsapubkey + 0x000000004010e1cc 0xdd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0xe9 (size before relaxing) + *fill* 0x000000004010e2a9 0x3 + .text.pk_group_from_specified + 0x000000004010e2ac 0x1e2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x212 (size before relaxing) + *fill* 0x000000004010e48e 0x2 + .text.pk_group_id_from_group + 0x000000004010e490 0xb2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0xd2 (size before relaxing) + *fill* 0x000000004010e542 0x2 + .text.pk_group_id_from_specified + 0x000000004010e544 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x30 (size before relaxing) + *fill* 0x000000004010e569 0x3 + .text.pk_use_ecparams + 0x000000004010e56c 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x48 (size before relaxing) + .text.pk_get_ecpubkey + 0x000000004010e5b0 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x2a (size before relaxing) + *fill* 0x000000004010e5d6 0x2 + .text.pk_parse_key_pkcs1_der + 0x000000004010e5d8 0x1d0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x204 (size before relaxing) + .text.pk_parse_key_sec1_der + 0x000000004010e7a8 0x17f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x19f (size before relaxing) + *fill* 0x000000004010e927 0x1 + .text.pk_parse_key_pkcs8_unencrypted_der + 0x000000004010e928 0xea esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0xfe (size before relaxing) + *fill* 0x000000004010ea12 0x2 + .text.pk_parse_key_pkcs8_encrypted_der + 0x000000004010ea14 0x136 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x13e (size before relaxing) + *fill* 0x000000004010eb4a 0x2 + .text.mbedtls_pk_load_file + 0x000000004010eb4c 0xbc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0xd0 (size before relaxing) + 0x000000004010eb4c mbedtls_pk_load_file + .text.mbedtls_pk_parse_subpubkey + 0x000000004010ec08 0xc6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0xde (size before relaxing) + 0x000000004010ec08 mbedtls_pk_parse_subpubkey + *fill* 0x000000004010ecce 0x2 + .text.mbedtls_pk_parse_key + 0x000000004010ecd0 0x26a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x2d2 (size before relaxing) + 0x000000004010ecd0 mbedtls_pk_parse_key + *fill* 0x000000004010ef3a 0x2 + .text.mbedtls_pk_parse_keyfile + 0x000000004010ef3c 0x4f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x5b (size before relaxing) + 0x000000004010ef3c mbedtls_pk_parse_keyfile + *fill* 0x000000004010ef8b 0x1 + .text.pk_write_rsa_pubkey + 0x000000004010ef8c 0x86 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0x9a (size before relaxing) + *fill* 0x000000004010f012 0x2 + .text.pk_write_ec_pubkey + 0x000000004010f014 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0x50 (size before relaxing) + .text.pk_write_ec_param + 0x000000004010f060 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0x24 (size before relaxing) + .text.mbedtls_pk_write_pubkey + 0x000000004010f080 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0x42 (size before relaxing) + 0x000000004010f080 mbedtls_pk_write_pubkey + *fill* 0x000000004010f0b6 0x2 + .text.mbedtls_pk_write_pubkey_der + 0x000000004010f0b8 0xb4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0xd8 (size before relaxing) + 0x000000004010f0b8 mbedtls_pk_write_pubkey_der + .text.mbedtls_pk_write_key_der + 0x000000004010f16c 0x28a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0x2fe (size before relaxing) + 0x000000004010f16c mbedtls_pk_write_key_der + *fill* 0x000000004010f3f6 0x2 + .text.mbedtls_pk_write_key_pem + 0x000000004010f3f8 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0x6e (size before relaxing) + 0x000000004010f3f8 mbedtls_pk_write_key_pem + *fill* 0x000000004010f45e 0x2 + .text.mbedtls_calloc + 0x000000004010f460 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + 0x000000004010f460 mbedtls_calloc + .text.mbedtls_free + 0x000000004010f474 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + 0x000000004010f474 mbedtls_free + *fill* 0x000000004010f483 0x1 + .text.mbedtls_platform_zeroize + 0x000000004010f484 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + 0x000000004010f484 mbedtls_platform_zeroize + *fill* 0x000000004010f49a 0x2 + .text.if_int 0x000000004010f49c 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x17 (size before relaxing) + *fill* 0x000000004010f4af 0x1 + .text.mem_move_to_left + 0x000000004010f4b0 0x5c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x64 (size before relaxing) + .text.rsa_check_context + 0x000000004010f50c 0xc8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xe8 (size before relaxing) + .text.rsa_prepare_blinding + 0x000000004010f5d4 0xac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xc8 (size before relaxing) + .text.mgf_mask + 0x000000004010f680 0x9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xac (size before relaxing) + .text.rsa_rsassa_pkcs1_v15_encode + 0x000000004010f71c 0x152 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x15a (size before relaxing) + *fill* 0x000000004010f86e 0x2 + .text.mbedtls_rsa_import_raw + 0x000000004010f870 0x81 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x89 (size before relaxing) + 0x000000004010f870 mbedtls_rsa_import_raw + *fill* 0x000000004010f8f1 0x3 + .text.mbedtls_rsa_complete + 0x000000004010f8f4 0x1b1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x1c1 (size before relaxing) + 0x000000004010f8f4 mbedtls_rsa_complete + *fill* 0x000000004010faa5 0x3 + .text.mbedtls_rsa_export + 0x000000004010faa8 0xb4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xd0 (size before relaxing) + 0x000000004010faa8 mbedtls_rsa_export + .text.mbedtls_rsa_export_crt + 0x000000004010fb5c 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x8c (size before relaxing) + 0x000000004010fb5c mbedtls_rsa_export_crt + .text.mbedtls_rsa_init + 0x000000004010fbd0 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x000000004010fbd0 mbedtls_rsa_init + *fill* 0x000000004010fbee 0x2 + .text.mbedtls_rsa_check_pubkey + 0x000000004010fbf0 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x68 (size before relaxing) + 0x000000004010fbf0 mbedtls_rsa_check_pubkey + .text.mbedtls_rsa_check_privkey + 0x000000004010fc44 0x63 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x6b (size before relaxing) + 0x000000004010fc44 mbedtls_rsa_check_privkey + *fill* 0x000000004010fca7 0x1 + .text.mbedtls_rsa_check_pub_priv + 0x000000004010fca8 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x41 (size before relaxing) + 0x000000004010fca8 mbedtls_rsa_check_pub_priv + *fill* 0x000000004010fce1 0x3 + .literal.mbedtls_rsa_rsaes_oaep_encrypt + 0x000000004010fce4 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x38 (size before relaxing) + .literal.mbedtls_rsa_rsaes_pkcs1_v15_encrypt + 0x000000004010fcf4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_rsa_pkcs1_encrypt + 0x000000004010fcf4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_rsa_rsaes_oaep_decrypt + 0x000000004010fcf8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x48 (size before relaxing) + .literal.mbedtls_rsa_rsaes_pkcs1_v15_decrypt + 0x000000004010fcfc 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x4c (size before relaxing) + .literal.mbedtls_rsa_pkcs1_decrypt + 0x000000004010fd04 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_rsa_rsassa_pss_sign + 0x000000004010fd04 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x58 (size before relaxing) + .literal.mbedtls_rsa_rsassa_pkcs1_v15_sign + 0x000000004010fd04 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x30 (size before relaxing) + .literal.mbedtls_rsa_pkcs1_sign + 0x000000004010fd08 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_rsa_rsassa_pss_verify_ext + 0x000000004010fd08 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x50 (size before relaxing) + .literal.mbedtls_rsa_rsassa_pss_verify + 0x000000004010fd10 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_rsa_rsassa_pkcs1_v15_verify + 0x000000004010fd10 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_rsa_pkcs1_verify + 0x000000004010fd10 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_rsa_free + 0x000000004010fd10 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x34 (size before relaxing) + .literal.mbedtls_rsa_gen_key + 0x000000004010fd10 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x78 (size before relaxing) + .literal.mbedtls_rsa_deduce_primes + 0x000000004010fd14 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + 0x74 (size before relaxing) + .literal.mbedtls_rsa_deduce_private_exponent + 0x000000004010fd18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + 0x38 (size before relaxing) + .literal.mbedtls_rsa_validate_crt + 0x000000004010fd18 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + 0x48 (size before relaxing) + .literal.mbedtls_rsa_validate_params + 0x000000004010fd1c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + 0x68 (size before relaxing) + .literal.mbedtls_rsa_deduce_crt + 0x000000004010fd1c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_sha1_ret + 0x000000004010fd1c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_sha256_ret + 0x000000004010fd1c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_sha512_ret + 0x000000004010fd1c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_hardware_poll + 0x000000004010fd1c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha1_software_process + 0x000000004010fd1c 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .literal.mbedtls_sha1_init + 0x000000004010fd2c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha1_free + 0x000000004010fd2c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_sha1_clone + 0x000000004010fd2c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_sha1_starts_ret + 0x000000004010fd2c 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_internal_sha1_process + 0x000000004010fd40 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_sha1_update_ret + 0x000000004010fd40 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_sha1_finish_ret + 0x000000004010fd40 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_sha256_software_process + 0x000000004010fd44 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_sha256_init + 0x000000004010fd48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha256_free + 0x000000004010fd48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_sha256_clone + 0x000000004010fd48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_sha256_starts_ret + 0x000000004010fd48 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x44 (size before relaxing) + .literal.mbedtls_internal_sha256_process + 0x000000004010fd88 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_sha256_update_ret + 0x000000004010fd88 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_sha256_finish_ret + 0x000000004010fd88 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_sha512_software_process + 0x000000004010fd8c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .literal.mbedtls_sha512_init + 0x000000004010fd90 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha512_free + 0x000000004010fd90 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_sha512_clone + 0x000000004010fd90 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_sha512_starts_ret + 0x000000004010fd90 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x8c (size before relaxing) + .literal.mbedtls_internal_sha512_process + 0x000000004010fdd4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_sha512_update_ret + 0x000000004010fdd4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_sha512_finish_ret + 0x000000004010fdd4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x14 (size before relaxing) + .literal.modular_inverse + 0x000000004010fdd8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .literal.calculate_rinv + 0x000000004010fddc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x10 (size before relaxing) + .literal.mont 0x000000004010fddc 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x40 (size before relaxing) + .literal.esp_mpi_acquire_hardware + 0x000000004010fe0c 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x1c (size before relaxing) + .literal.esp_mpi_release_hardware + 0x000000004010fe1c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x14 (size before relaxing) + .literal.mpi_montgomery_exp_calc + 0x000000004010fe20 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x40 (size before relaxing) + .literal.mpi_mult_mpi_failover_mod_mult + 0x000000004010fe20 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x48 (size before relaxing) + .literal.esp_mpi_mul_mpi_mod + 0x000000004010fe28 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x60 (size before relaxing) + .literal.mbedtls_mpi_exp_mod + 0x000000004010fe28 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x30 (size before relaxing) + .literal.mbedtls_mpi_mul_mpi + 0x000000004010fe30 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x68 (size before relaxing) + .literal.mpi_mult_mpi_overlong + 0x000000004010fe34 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x18 (size before relaxing) + .literal.esp_aes_setkey_hardware + 0x000000004010fe34 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + .literal.esp_aes_block + 0x000000004010fe40 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x30 (size before relaxing) + .literal.esp_aes_acquire_hardware + 0x000000004010fe58 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0xc (size before relaxing) + .literal.esp_aes_release_hardware + 0x000000004010fe60 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0xc (size before relaxing) + .literal.esp_aes_init + 0x000000004010fe64 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_free + 0x000000004010fe64 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x4 (size before relaxing) + .literal.esp_aes_setkey + 0x000000004010fe64 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x4 (size before relaxing) + .literal.esp_internal_aes_encrypt + 0x000000004010fe64 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x10 (size before relaxing) + .literal.esp_internal_aes_decrypt + 0x000000004010fe64 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x10 (size before relaxing) + .literal.esp_aes_crypt_ecb + 0x000000004010fe64 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x10 (size before relaxing) + .literal.esp_aes_crypt_cbc + 0x000000004010fe64 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x20 (size before relaxing) + .literal.esp_aes_crypt_cfb128 + 0x000000004010fe64 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x14 (size before relaxing) + .literal.esp_aes_crypt_ctr + 0x000000004010fe64 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x10 (size before relaxing) + .literal.esp_aes_crypt_ofb + 0x000000004010fe64 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x10 (size before relaxing) + .literal.esp_aes_xts_init + 0x000000004010fe64 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x8 (size before relaxing) + .literal.esp_aes_xts_free + 0x000000004010fe64 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x8 (size before relaxing) + .literal.esp_aes_xts_setkey_enc + 0x000000004010fe64 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0xc (size before relaxing) + .literal.esp_aes_xts_setkey_dec + 0x000000004010fe64 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0xc (size before relaxing) + .literal.esp_aes_crypt_xts + 0x000000004010fe64 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x18 (size before relaxing) + .literal.sha_get_engine_state + 0x000000004010fe68 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x20 (size before relaxing) + .literal.esp_sha_lock_engine_common + 0x000000004010fe84 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x2c (size before relaxing) + .literal.esp_sha_lock_memory_block + 0x000000004010fe98 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x8 (size before relaxing) + .literal.esp_sha_unlock_memory_block + 0x000000004010fe9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x8 (size before relaxing) + .literal.esp_sha_try_lock_engine + 0x000000004010fe9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x4 (size before relaxing) + .literal.esp_sha_unlock_engine + 0x000000004010fe9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x1c (size before relaxing) + .literal.esp_sha_wait_idle + 0x000000004010fe9c 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x20 (size before relaxing) + .literal.esp_sha_read_digest_state + 0x000000004010feac 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x4c (size before relaxing) + .literal.esp_sha_block + 0x000000004010fec8 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x38 (size before relaxing) + .literal.mbedtls_asn1_get_tag + 0x000000004010fed8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_get_bool + 0x000000004010fed8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_get_int + 0x000000004010fed8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_get_mpi + 0x000000004010fed8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_asn1_get_bitstring + 0x000000004010fed8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_get_bitstring_null + 0x000000004010fed8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_get_sequence_of + 0x000000004010fed8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_asn1_get_alg + 0x000000004010fed8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_asn1_get_alg_null + 0x000000004010fed8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_free_named_data + 0x000000004010fed8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_asn1_free_named_data_list + 0x000000004010fed8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x8 (size before relaxing) + .literal.asn1_find_named_data + 0x000000004010fed8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_write_len + 0x000000004010fed8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .literal.mbedtls_asn1_write_raw_buffer + 0x000000004010fee0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_asn1_write_mpi + 0x000000004010fee0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_asn1_write_null + 0x000000004010fee0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_asn1_write_oid + 0x000000004010fee0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_asn1_write_algorithm_identifier + 0x000000004010fee0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_asn1_write_bool + 0x000000004010fee0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_asn1_write_int + 0x000000004010fee0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_asn1_write_tagged_string + 0x000000004010fee0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_asn1_write_bitstring + 0x000000004010fee0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_asn1_store_named_data + 0x000000004010fee0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x2c (size before relaxing) + .literal.get_pkcs_padding + 0x000000004010fee0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.get_one_and_zeros_padding + 0x000000004010fee8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x8 (size before relaxing) + .literal.get_zeros_and_len_padding + 0x000000004010fee8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x8 (size before relaxing) + .literal.get_zeros_padding + 0x000000004010fee8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x4 (size before relaxing) + .literal.get_no_padding + 0x000000004010fee8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_cipher_info_from_type + 0x000000004010fee8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .literal.mbedtls_cipher_info_from_values + 0x000000004010feec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_cipher_init + 0x000000004010feec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_cipher_free + 0x000000004010feec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_cipher_setkey + 0x000000004010feec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_cipher_set_iv + 0x000000004010feec 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_cipher_reset + 0x000000004010fef0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_cipher_update + 0x000000004010fef0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_cipher_finish + 0x000000004010fef8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_cipher_set_padding_mode + 0x000000004010fef8 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x30 (size before relaxing) + .literal.mbedtls_cipher_setup + 0x000000004010ff20 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_cipher_crypt + 0x000000004010ff24 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_cipher_auth_encrypt + 0x000000004010ff24 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_cipher_auth_decrypt + 0x000000004010ff24 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x10 (size before relaxing) + .literal.ccm_ctx_free + 0x000000004010ff28 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.ccm_ctx_alloc + 0x000000004010ff28 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.ccm_aes_setkey_wrap + 0x000000004010ff28 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.gcm_ctx_free + 0x000000004010ff28 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.gcm_ctx_alloc + 0x000000004010ff28 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.gcm_aes_setkey_wrap + 0x000000004010ff28 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.xts_aes_ctx_free + 0x000000004010ff28 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.xts_aes_ctx_alloc + 0x000000004010ff28 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.xts_aes_setkey_dec_wrap + 0x000000004010ff28 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.xts_aes_setkey_enc_wrap + 0x000000004010ff28 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_xts_wrap + 0x000000004010ff28 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.aes_ctx_free + 0x000000004010ff28 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.aes_ctx_alloc + 0x000000004010ff28 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x8 (size before relaxing) + .literal.aes_setkey_dec_wrap + 0x000000004010ff28 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_setkey_enc_wrap + 0x000000004010ff28 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_ctr_wrap + 0x000000004010ff28 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_ofb_wrap + 0x000000004010ff28 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_cfb128_wrap + 0x000000004010ff28 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_cbc_wrap + 0x000000004010ff28 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.aes_crypt_ecb_wrap + 0x000000004010ff28 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x4 (size before relaxing) + .literal.derive_mpi + 0x000000004010ff28 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x10 (size before relaxing) + .literal.ecdsa_sign_restartable + 0x000000004010ff28 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x6c (size before relaxing) + .literal.ecdsa_sign_det_restartable + 0x000000004010ff34 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x30 (size before relaxing) + .literal.ecdsa_verify_restartable + 0x000000004010ff38 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x68 (size before relaxing) + .literal.ecdsa_signature_to_asn1 + 0x000000004010ff3c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ecdsa_write_signature_restartable + 0x000000004010ff3c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_ecdsa_write_signature + 0x000000004010ff3c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdsa_read_signature_restartable + 0x000000004010ff3c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_ecdsa_read_signature + 0x000000004010ff44 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdsa_init + 0x000000004010ff44 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdsa_free + 0x000000004010ff44 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdsa_from_keypair + 0x000000004010ff44 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x10 (size before relaxing) + .literal.gcm_mult + 0x000000004010ff44 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .literal.gcm_gen_table + 0x000000004010ff48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_gcm_init + 0x000000004010ff48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_gcm_setkey + 0x000000004010ff48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_gcm_starts + 0x000000004010ff48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_gcm_update + 0x000000004010ff48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_gcm_finish + 0x000000004010ff48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_gcm_crypt_and_tag + 0x000000004010ff48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_gcm_auth_decrypt + 0x000000004010ff48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_gcm_free + 0x000000004010ff48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_hmac_drbg_init + 0x000000004010ff48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_hmac_drbg_update_ret + 0x000000004010ff48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x28 (size before relaxing) + .literal.mbedtls_hmac_drbg_seed_buf + 0x000000004010ff48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_hmac_drbg_reseed + 0x000000004010ff48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_hmac_drbg_random_with_add + 0x000000004010ff48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_hmac_drbg_random + 0x000000004010ff48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_hmac_drbg_free + 0x000000004010ff48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_md5_init + 0x000000004010ff48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_md5_free + 0x000000004010ff48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_md5_clone + 0x000000004010ff48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_md5_starts_ret + 0x000000004010ff48 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_internal_md5_process + 0x000000004010ff48 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .literal.mbedtls_md5_update_ret + 0x0000000040110048 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_md5_finish_ret + 0x0000000040110048 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_md5_ret + 0x0000000040110048 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x14 (size before relaxing) + .literal.oid_x520_attr_from_asn1 + 0x0000000040110048 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x8 (size before relaxing) + .literal.oid_x509_ext_from_asn1 + 0x000000004011004c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x8 (size before relaxing) + .literal.oid_sig_alg_from_asn1 + 0x0000000040110050 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x8 (size before relaxing) + .literal.oid_pk_alg_from_asn1 + 0x0000000040110054 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x8 (size before relaxing) + .literal.oid_grp_id_from_asn1 + 0x0000000040110058 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x8 (size before relaxing) + .literal.oid_cipher_alg_from_asn1 + 0x000000004011005c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x8 (size before relaxing) + .literal.oid_md_alg_from_asn1 + 0x0000000040110060 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x8 (size before relaxing) + .literal.oid_md_hmac_from_asn1 + 0x0000000040110064 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x8 (size before relaxing) + .literal.oid_pkcs12_pbe_alg_from_asn1 + 0x0000000040110068 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_oid_get_attr_short_name + 0x000000004011006c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_x509_ext_type + 0x000000004011006c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_sig_alg + 0x000000004011006c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_oid_by_sig_alg + 0x000000004011006c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_pk_alg + 0x000000004011006c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_oid_by_pk_alg + 0x000000004011006c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_ec_grp + 0x000000004011006c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_oid_by_ec_grp + 0x000000004011006c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_cipher_alg + 0x000000004011006c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_md_alg + 0x000000004011006c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_oid_by_md + 0x000000004011006c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_md_hmac + 0x000000004011006c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_oid_get_pkcs12_pbe_alg + 0x000000004011006c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x4 (size before relaxing) + .literal.pem_get_iv + 0x000000004011006c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x8 (size before relaxing) + .literal.pem_pbkdf1 + 0x0000000040110070 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x3c (size before relaxing) + .literal.pem_aes_decrypt + 0x0000000040110070 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_pem_read_buffer + 0x0000000040110070 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x90 (size before relaxing) + .literal.mbedtls_pem_free + 0x00000000401100a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_pem_write_buffer + 0x00000000401100a8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x3c (size before relaxing) + .literal.pkcs12_parse_pbe_params + 0x00000000401100a8 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0x14 (size before relaxing) + .literal.pkcs12_fill_buffer + 0x00000000401100b4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_pkcs12_pbe_sha1_rc4_128 + 0x00000000401100b4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .literal.mbedtls_pkcs12_derivation + 0x00000000401100b8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0x58 (size before relaxing) + .literal.pkcs12_pbe_derive_key_iv + 0x00000000401100bc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_pkcs12_pbe + 0x00000000401100bc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0x38 (size before relaxing) + .literal.mbedtls_base64_encode + 0x00000000401100c0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_base64_decode + 0x00000000401100c8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .literal.ccm_auth_crypt + 0x00000000401100cc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x40 (size before relaxing) + .literal.mbedtls_ccm_init + 0x00000000401100d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ccm_setkey + 0x00000000401100d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ccm_free + 0x00000000401100d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ccm_star_encrypt_and_tag + 0x00000000401100d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ccm_encrypt_and_tag + 0x00000000401100d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ccm_star_auth_decrypt + 0x00000000401100d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ccm_auth_decrypt + 0x00000000401100d0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x4 (size before relaxing) + .literal.x509_parse_int + 0x00000000401100d0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .literal.x509_date_is_valid + 0x00000000401100d4 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x10 (size before relaxing) + .literal.x509_parse_time + 0x00000000401100e0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x20 (size before relaxing) + .literal.x509_get_attr_type_value + 0x00000000401100e0 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x1c (size before relaxing) + .literal.x509_get_hash_alg + 0x00000000401100f0 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_x509_get_serial + 0x00000000401100fc 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_x509_get_alg_null + 0x0000000040110108 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_x509_get_alg + 0x0000000040110108 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_x509_get_rsassa_pss_params + 0x0000000040110108 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x40 (size before relaxing) + .literal.mbedtls_x509_get_name + 0x0000000040110114 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_x509_get_time + 0x0000000040110118 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_x509_get_sig + 0x0000000040110120 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_x509_get_sig_alg + 0x0000000040110128 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_x509_get_ext + 0x000000004011012c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_x509_dn_gets + 0x0000000040110130 0x18 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x30 (size before relaxing) + .literal.x509_get_uid + 0x0000000040110148 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8 (size before relaxing) + .literal.x509_string_cmp + 0x000000004011014c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8 (size before relaxing) + .literal.x509_name_cmp + 0x000000004011014c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8 (size before relaxing) + .literal.x509_crt_check_ee_locally_trusted + 0x000000004011014c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8 (size before relaxing) + .literal.x509_get_version + 0x000000004011014c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x10 (size before relaxing) + .literal.x509_get_dates + 0x0000000040110150 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x10 (size before relaxing) + .literal.x509_get_basic_constraints + 0x0000000040110154 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x14 (size before relaxing) + .literal.x509_get_key_usage + 0x0000000040110154 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8 (size before relaxing) + .literal.x509_get_ns_cert_type + 0x0000000040110158 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8 (size before relaxing) + .literal.x509_get_ext_key_usage + 0x0000000040110158 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8 (size before relaxing) + .literal.x509_get_subject_alt_name + 0x0000000040110158 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x20 (size before relaxing) + .literal.x509_get_crt_ext + 0x0000000040110168 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x44 (size before relaxing) + .literal.x509_profile_check_key + 0x0000000040110170 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8 (size before relaxing) + .literal.x509_check_wildcard + 0x0000000040110170 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8 (size before relaxing) + .literal.x509_crt_check_cn + 0x0000000040110170 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8 (size before relaxing) + .literal.x509_crt_verify_name + 0x0000000040110170 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x14 (size before relaxing) + .literal.x509_crt_check_signature + 0x0000000040110174 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_x509_crt_check_key_usage + 0x0000000040110174 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0xc (size before relaxing) + .literal.x509_crt_check_parent + 0x000000004011017c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8 (size before relaxing) + .literal.x509_crt_find_parent_in + 0x000000004011017c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x10 (size before relaxing) + .literal.x509_crt_find_parent + 0x000000004011017c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_x509_crt_check_extended_key_usage + 0x000000004011017c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_x509_crt_is_revoked + 0x0000000040110180 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8 (size before relaxing) + .literal.x509_crt_verifycrl + 0x0000000040110180 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x3c (size before relaxing) + .literal.x509_crt_verify_chain + 0x0000000040110188 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x34 (size before relaxing) + .literal.mbedtls_x509_crt_verify_restartable + 0x0000000040110194 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x30 (size before relaxing) + .literal.mbedtls_x509_crt_init + 0x0000000040110198 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_x509_crt_free + 0x0000000040110198 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x38 (size before relaxing) + .literal.x509_crt_parse_der_core + 0x0000000040110198 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0xbc (size before relaxing) + .literal.mbedtls_x509_crt_parse_der + 0x00000000401101a4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_x509_crt_parse + 0x00000000401101a4 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x38 (size before relaxing) + .literal.mbedtls_x509_crt_parse_file + 0x00000000401101b0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x10 (size before relaxing) + .literal.x509_csr_get_version + 0x00000000401101b0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_x509_csr_init + 0x00000000401101b0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_x509_csr_free + 0x00000000401101b0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_x509_csr_parse_der + 0x00000000401101b0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + 0x80 (size before relaxing) + .literal.mbedtls_x509_csr_parse + 0x00000000401101b4 0x10 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + 0x30 (size before relaxing) + .literal.mbedtls_x509_csr_parse_file + 0x00000000401101c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + 0x10 (size before relaxing) + .literal.x509_write_time + 0x00000000401101c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_x509write_crt_init + 0x00000000401101c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_x509write_crt_free + 0x00000000401101c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_x509write_crt_set_subject_name + 0x00000000401101c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_x509write_crt_set_issuer_name + 0x00000000401101c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_x509write_crt_set_serial + 0x00000000401101c4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_x509write_crt_set_validity + 0x00000000401101c4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_x509write_crt_set_extension + 0x00000000401101c8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_x509write_crt_set_basic_constraints + 0x00000000401101c8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_x509write_crt_set_subject_key_identifier + 0x00000000401101cc 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_x509write_crt_set_authority_key_identifier + 0x00000000401101d4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x28 (size before relaxing) + .literal.mbedtls_x509write_crt_set_key_usage + 0x00000000401101d8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_x509write_crt_set_ns_cert_type + 0x00000000401101dc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_x509write_crt_der + 0x00000000401101e0 0xc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x88 (size before relaxing) + .literal.mbedtls_x509write_crt_pem + 0x00000000401101ec 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x14 (size before relaxing) + .literal.x509_attr_descr_from_name + 0x00000000401101f4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + .literal.x509_write_name + 0x00000000401101fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + 0x18 (size before relaxing) + .literal.x509_write_extension + 0x00000000401101fc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_x509_string_to_names + 0x00000000401101fc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_x509_set_extension + 0x0000000040110200 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_x509_write_names + 0x0000000040110200 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_x509_write_sig + 0x0000000040110200 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_x509_write_extensions + 0x0000000040110200 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + 0x4 (size before relaxing) + .literal.esp_ota_get_running_partition + 0x0000000040110200 0x18 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x38 (size before relaxing) + .literal.os_get_time + 0x0000000040110218 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x4 (size before relaxing) + .literal.os_random + 0x0000000040110218 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .literal.os_get_random + 0x000000004011021c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_install_key + 0x000000004011021c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_get_key + 0x000000004011021c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_sendto_wrapper + 0x000000004011021c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_deauthenticate + 0x000000004011021c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_config_assoc_ie + 0x000000004011021c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x8 (size before relaxing) + .literal.wpa_neg_complete + 0x000000004011021c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_attach + 0x000000004011021c 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x24 (size before relaxing) + .literal.wpa_ap_get_wpa_ie + 0x0000000040110238 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_ap_rx_eapol + 0x0000000040110238 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_deattach + 0x0000000040110238 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa_parse_wpa_ie_wrapper + 0x0000000040110238 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x10 (size before relaxing) + .literal.wpa_config_profile + 0x0000000040110238 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x2c (size before relaxing) + .literal.wpa_config_bss + 0x0000000040110244 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x18 (size before relaxing) + .literal.wpa_sta_connect + 0x0000000040110244 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x18 (size before relaxing) + .literal.esp_supplicant_init + 0x000000004011024c 0x3c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x44 (size before relaxing) + .literal.esp_supplicant_deinit + 0x0000000040110288 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4 (size before relaxing) + .literal.wpa3_parse_sae_commit + 0x0000000040110288 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x10 (size before relaxing) + .literal.wpa3_parse_sae_confirm + 0x0000000040110290 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x18 (size before relaxing) + .literal.wpa3_parse_sae_msg + 0x0000000040110294 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x8 (size before relaxing) + .literal.wpa3_build_sae_commit + 0x0000000040110294 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x28 (size before relaxing) + .literal.wpa3_build_sae_confirm + 0x0000000040110294 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x10 (size before relaxing) + .literal.wpa3_build_sae_msg + 0x0000000040110294 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x8 (size before relaxing) + .literal.esp_wifi_register_wpa3_cb + 0x0000000040110294 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .literal.wpa_sm_pmksa_free_cb + 0x000000004011029c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpa_supplicant_clr_countermeasures + 0x000000004011029c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.cipher_type_map_public_to_supp + 0x00000000401102a4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .literal.wpa_eapol_key_send + 0x00000000401102a8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.wpa_sm_key_request + 0x00000000401102a8 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x2c (size before relaxing) + .literal.wpa_sm_rekey_ptk + 0x00000000401102b8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_supplicant_send_2_of_4 + 0x00000000401102b8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x1c (size before relaxing) + .literal.wpa_derive_ptk + 0x00000000401102b8 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.wpa_supplicant_pairwise_gtk + 0x00000000401102bc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x10 (size before relaxing) + .literal.wpa_report_ie_mismatch + 0x00000000401102bc 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.ieee80211w_set_keys + 0x00000000401102bc 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_supplicant_validate_ie + 0x00000000401102c0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x1c (size before relaxing) + .literal.wpa_supplicant_send_4_of_4 + 0x00000000401102c0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x1c (size before relaxing) + .literal.wpa_sm_set_seq + 0x00000000401102c4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_supplicant_process_1_of_2_rsn + 0x00000000401102c4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpa_supplicant_process_1_of_2_wpa + 0x00000000401102c4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x1c (size before relaxing) + .literal.wpa_supplicant_send_2_of_2 + 0x00000000401102c4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x18 (size before relaxing) + .literal.wpa_supplicant_verify_eapol_key_mic + 0x00000000401102c4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x28 (size before relaxing) + .literal.wpa_supplicant_decrypt_key_data + 0x00000000401102c4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpa_sm_set_state + 0x00000000401102c4 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.wpa_supplicant_key_neg_complete + 0x00000000401102c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_supplicant_process_3_of_4 + 0x00000000401102c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x28 (size before relaxing) + .literal.wpa_supplicant_process_1_of_2 + 0x00000000401102c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x1c (size before relaxing) + .literal.wpa_supplicant_stop_countermeasures + 0x00000000401102c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpa_sm_set_pmk_from_pmksa + 0x00000000401102c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_supplicant_get_pmk + 0x00000000401102c8 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x34 (size before relaxing) + .literal.wpa_supplicant_process_1_of_4 + 0x00000000401102d4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x2c (size before relaxing) + .literal.wpa_sm_rx_eapol + 0x00000000401102d4 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x28 (size before relaxing) + .literal.wpa_sm_init + 0x00000000401102dc 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x10 (size before relaxing) + .literal.wpa_sm_deinit + 0x00000000401102e0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_set_profile + 0x00000000401102e0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_set_pmk + 0x00000000401102e0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8 (size before relaxing) + .literal.wpa_set_passphrase + 0x00000000401102e0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x40 (size before relaxing) + .literal.set_assoc_ie + 0x00000000401102e0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_set_bss + 0x00000000401102e0 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4c (size before relaxing) + .literal.wpa_sm_set_key + 0x00000000401102ec 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc (size before relaxing) + .literal.wpa_supplicant_install_ptk + 0x00000000401102ec 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x10 (size before relaxing) + .literal.wpa_supplicant_install_gtk + 0x00000000401102f0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpa_supplicant_send_4_of_4_txcallback + 0x00000000401102f0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x14 (size before relaxing) + .literal.wpa_sm_get_key + 0x00000000401102f0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_supplicant_gtk_in_use + 0x00000000401102f0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x24 (size before relaxing) + .literal.wpa_supplicant_send_2_of_2_txcallback + 0x00000000401102f0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x10 (size before relaxing) + .literal.wpa_michael_mic_failure + 0x00000000401102f0 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x54 (size before relaxing) + .literal.eapol_txcb + 0x0000000040110310 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x1c (size before relaxing) + .literal.wpa_sta_in_4way_handshake + 0x0000000040110318 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4 (size before relaxing) + .literal.wpa_parse_generic + 0x0000000040110318 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .literal.wpa_gen_wpa_ie_rsn + 0x000000004011032c 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x14 (size before relaxing) + .literal.wpa_gen_wpa_ie_wpa + 0x0000000040110338 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x10 (size before relaxing) + .literal.wpa_parse_wpa_ie + 0x0000000040110340 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x8 (size before relaxing) + .literal.wpa_gen_wpa_ie + 0x0000000040110340 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x8 (size before relaxing) + .literal.wpa_supplicant_parse_ies + 0x0000000040110340 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x8 (size before relaxing) + .literal.hex2byte + 0x0000000040110340 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x8 (size before relaxing) + .literal.hexstr2bin + 0x0000000040110340 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x4 (size before relaxing) + .literal.wpa_get_ntp_timestamp + 0x0000000040110340 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x14 (size before relaxing) + .literal.wpa_config_parse_string + 0x000000004011034c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x10 (size before relaxing) + .literal.wpa_bin_clear_free + 0x000000004011034c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x4 (size before relaxing) + .literal.wpabuf_alloc + 0x000000004011034c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .literal.wpabuf_free + 0x0000000040110350 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x8 (size before relaxing) + .literal.wpa_auth_get_sm + 0x0000000040110350 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .literal.wpa_auth_add_sm + 0x0000000040110358 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_auth_del_sm + 0x0000000040110358 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_use_aes_cmac + 0x0000000040110358 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_receive_error_report + 0x0000000040110358 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_free_sta_sm + 0x0000000040110358 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.wpa_group_init_gmk_and_counter + 0x0000000040110358 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x18 (size before relaxing) + .literal.sm_WPA_PTK_AUTHENTICATION_Enter + 0x000000004011035c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_gmk_to_gtk + 0x000000004011035c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x14 (size before relaxing) + .literal.wpa_gtk_update + 0x000000004011035c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x20 (size before relaxing) + .literal.wpa_group_gtk_init + 0x0000000040110364 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_group_setkeys + 0x0000000040110364 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_group_config_group_keys + 0x0000000040110364 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.wpa_group_setkeysdone + 0x0000000040110368 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_group_sm_step + 0x0000000040110368 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x14 (size before relaxing) + .literal.wpa_group_init + 0x0000000040110368 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x18 (size before relaxing) + .literal.wpa_group_ensure_init + 0x0000000040110368 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.wpa_sta_disconnect + 0x0000000040110368 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.sm_WPA_PTK_AUTHENTICATION2_Enter + 0x0000000040110368 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.sm_WPA_PTK_DISCONNECT_Enter + 0x0000000040110368 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_rekey_gtk + 0x0000000040110368 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.wpa_derive_ptk + 0x000000004011036c 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.wpa_verify_key_mic + 0x0000000040110370 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x14 (size before relaxing) + .literal.wpa_replay_counter_valid + 0x0000000040110370 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_replay_counter_mark_invalid + 0x0000000040110370 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.sm_WPA_PTK_PTKINITDONE_Enter + 0x0000000040110370 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x20 (size before relaxing) + .literal.ieee80211w_kde_add + 0x0000000040110374 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.resend_eapol_handle + 0x0000000040110374 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.sm_WPA_PTK_INITPSK_Enter + 0x0000000040110378 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.sm_WPA_PTK_PTKCALCNEGOTIATING_Enter + 0x0000000040110378 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x24 (size before relaxing) + .literal.wpa_init + 0x0000000040110380 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x20 (size before relaxing) + .literal.wpa_auth_sta_init + 0x0000000040110380 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.wpa_auth_sta_deinit + 0x0000000040110380 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xc (size before relaxing) + .literal.__wpa_send_eapol + 0x0000000040110380 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x80 (size before relaxing) + .literal.wpa_send_eapol + 0x0000000040110380 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x20 (size before relaxing) + .literal.sm_WPA_PTK_PTKSTART_Enter + 0x0000000040110388 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.sm_WPA_PTK_PTKINITNEGOTIATING_Enter + 0x0000000040110388 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x24 (size before relaxing) + .literal.sm_WPA_PTK_GROUP_REKEYNEGOTIATING_Enter + 0x0000000040110388 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x20 (size before relaxing) + .literal.sm_WPA_PTK_GROUP_Step + 0x0000000040110388 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x1c (size before relaxing) + .literal.wpa_remove_ptk + 0x0000000040110388 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.sm_WPA_PTK_INITIALIZE_Enter + 0x0000000040110388 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.sm_WPA_PTK_Step + 0x0000000040110388 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x70 (size before relaxing) + .literal.wpa_sm_step + 0x000000004011038c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.wpa_send_eapol_timeout + 0x000000004011038c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_rekey_ptk + 0x000000004011038c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_auth_sta_associated + 0x000000004011038c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .literal.wpa_receive + 0x000000004011038c 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8c (size before relaxing) + .literal.hostap_eapol_resend_process + 0x0000000040110394 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x8 (size before relaxing) + .literal.wpa_ap_join + 0x0000000040110394 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x14 (size before relaxing) + .literal.wpa_ap_remove + 0x0000000040110394 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4 (size before relaxing) + .literal.wpa_parse_generic + 0x0000000040110394 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x14 (size before relaxing) + .literal.wpa_write_wpa_ie + 0x0000000040110394 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x8 (size before relaxing) + .literal.wpa_write_rsn_ie + 0x0000000040110394 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0xc (size before relaxing) + .literal.wpa_auth_gen_wpa_ie + 0x0000000040110394 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x14 (size before relaxing) + .literal.wpa_add_kde + 0x0000000040110394 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x8 (size before relaxing) + .literal.wpa_validate_wpa_ie + 0x0000000040110394 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x24 (size before relaxing) + .literal.wpa_parse_kde_ies + 0x0000000040110394 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x8 (size before relaxing) + .literal.sae_parse_commit_token + 0x0000000040110394 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x8 (size before relaxing) + .literal.sae_cn_confirm + 0x0000000040110394 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_cn_confirm_ffc + 0x0000000040110394 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.get_random_qr_qnr + 0x0000000040110394 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x18 (size before relaxing) + .literal.sae_pwd_seed_key + 0x0000000040110394 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x14 (size before relaxing) + .literal.get_rand_1_to_p_1 + 0x0000000040110394 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x18 (size before relaxing) + .literal.is_quadratic_residue_blind + 0x0000000040110394 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x24 (size before relaxing) + .literal.sae_test_pwd_seed_ecc + 0x0000000040110394 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x2c (size before relaxing) + .literal.sae_derive_pwe_ecc + 0x0000000040110398 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x38 (size before relaxing) + .literal.sae_test_pwd_seed_ffc + 0x0000000040110398 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x38 (size before relaxing) + .literal.sae_derive_pwe_ffc + 0x0000000040110398 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x14 (size before relaxing) + .literal.sae_derive_k_ffc + 0x0000000040110398 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1c (size before relaxing) + .literal.sae_get_rand + 0x0000000040110398 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x20 (size before relaxing) + .literal.sae_get_rand_and_mask + 0x0000000040110398 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_parse_commit_scalar + 0x0000000040110398 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x20 (size before relaxing) + .literal.sae_parse_commit_element_ffc + 0x0000000040110398 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x3c (size before relaxing) + .literal.sae_derive_commit_element_ecc + 0x0000000040110398 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_derive_commit_element_ffc + 0x0000000040110398 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_derive_commit + 0x0000000040110398 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x24 (size before relaxing) + .literal.sae_derive_k_ecc + 0x0000000040110398 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1c (size before relaxing) + .literal.sae_cn_confirm_ecc + 0x0000000040110398 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_derive_keys + 0x0000000040110398 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x30 (size before relaxing) + .literal.sae_parse_commit_element_ecc + 0x000000004011039c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x18 (size before relaxing) + .literal.sae_parse_commit_element + 0x000000004011039c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x8 (size before relaxing) + .literal.sae_parse_password_identifier + 0x000000004011039c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1c (size before relaxing) + .literal.bin_clear_free + 0x000000004011039c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.sae_clear_temp_data + 0x000000004011039c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x38 (size before relaxing) + .literal.sae_clear_data + 0x000000004011039c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_set_group + 0x000000004011039c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x30 (size before relaxing) + .literal.sae_prepare_commit + 0x000000004011039c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_process_commit + 0x000000004011039c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.sae_write_commit + 0x000000004011039c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x40 (size before relaxing) + .literal.sae_group_allowed + 0x000000004011039c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4 (size before relaxing) + .literal.sae_parse_commit + 0x000000004011039c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x24 (size before relaxing) + .literal.sae_write_confirm + 0x000000004011039c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1c (size before relaxing) + .literal.sae_check_confirm + 0x000000004011039c 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc (size before relaxing) + .literal.rsn_selector_to_bitfield + 0x000000004011039c 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x18 (size before relaxing) + .literal.rsn_key_mgmt_to_bitfield + 0x00000000401103ac 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x14 (size before relaxing) + .literal.wpa_selector_to_bitfield + 0x00000000401103b0 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x14 (size before relaxing) + .literal.wpa_key_mgmt_to_bitfield + 0x00000000401103c0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0xc (size before relaxing) + .literal.wpa_parse_wpa_ie_rsn + 0x00000000401103c0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0xc (size before relaxing) + .literal.wpa_parse_wpa_ie_wpa + 0x00000000401103c0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x10 (size before relaxing) + .literal.wpa_eapol_key_mic + 0x00000000401103c0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x10 (size before relaxing) + .literal.wpa_compare_rsn_ie + 0x00000000401103c0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x4 (size before relaxing) + .literal.wpa_pmk_to_ptk + 0x00000000401103c0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x30 (size before relaxing) + .literal.rsn_pmkid + 0x00000000401103c0 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x14 (size before relaxing) + .literal.wpa_cipher_to_suite + 0x00000000401103c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x2c (size before relaxing) + .literal.ecp_opp + 0x00000000401103c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0xc (size before relaxing) + .literal.crypto_bignum_init + 0x00000000401103c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x8 (size before relaxing) + .literal.crypto_bignum_init_set + 0x00000000401103c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0xc (size before relaxing) + .literal.crypto_bignum_deinit + 0x00000000401103c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x8 (size before relaxing) + .literal.crypto_bignum_to_bin + 0x00000000401103c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x10 (size before relaxing) + .literal.crypto_bignum_add + 0x00000000401103c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_mod + 0x00000000401103c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_exptmod + 0x00000000401103c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_inverse + 0x00000000401103c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_sub + 0x00000000401103c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_div + 0x00000000401103c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_mulmod + 0x00000000401103c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_cmp + 0x00000000401103c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_bits + 0x00000000401103c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_is_zero + 0x00000000401103c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_is_one + 0x00000000401103c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.crypto_bignum_legendre + 0x00000000401103c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x28 (size before relaxing) + .literal.crypto_ec_deinit + 0x00000000401103c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ec_init + 0x00000000401103c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x10 (size before relaxing) + .literal.crypto_ec_point_init + 0x00000000401103c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ec_prime_len + 0x00000000401103c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_prime_len_bits + 0x00000000401103c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_point_deinit + 0x00000000401103c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x8 (size before relaxing) + .literal.crypto_ec_point_to_bin + 0x00000000401103c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0xc (size before relaxing) + .literal.crypto_ec_point_from_bin + 0x00000000401103c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x20 (size before relaxing) + .literal.crypto_ec_point_add + 0x00000000401103c8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x10 (size before relaxing) + .literal.crypto_ec_point_mul + 0x00000000401103c8 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x1c (size before relaxing) + .literal.crypto_ec_point_invert + 0x00000000401103d0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_point_compute_y_sqr + 0x00000000401103d0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4c (size before relaxing) + .literal.crypto_ec_point_solve_y_coord + 0x00000000401103d0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x30 (size before relaxing) + .literal.crypto_ec_point_is_at_infinity + 0x00000000401103d0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.crypto_ec_point_is_on_curve + 0x00000000401103d0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x24 (size before relaxing) + .literal.crypto_ec_point_cmp + 0x00000000401103d0 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4 (size before relaxing) + .literal.dh_groups_get + 0x00000000401103d0 0x4 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .literal.hostap_init + 0x00000000401103d4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x60 (size before relaxing) + .literal.hostap_deinit + 0x00000000401103d4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x1c (size before relaxing) + .literal.wpa_sm_alloc_eapol + 0x00000000401103d4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0xc (size before relaxing) + .literal.wpa_sm_free_eapol + 0x00000000401103d4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x4 (size before relaxing) + .literal.wpa_sm_deauthenticate + 0x00000000401103d4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x4 (size before relaxing) + .literal._pmksa_cache_free_entry + 0x00000000401103d4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4 (size before relaxing) + .literal.pmksa_cache_free_entry + 0x00000000401103d4 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4 (size before relaxing) + .literal.pmksa_cache_set_expiration + 0x00000000401103d4 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x2c (size before relaxing) + .literal.pmksa_cache_expire + 0x00000000401103f8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x20 (size before relaxing) + .literal.pmksa_cache_flush + 0x00000000401103f8 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x8 (size before relaxing) + .literal.pmksa_cache_add + 0x00000000401103f8 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x58 (size before relaxing) + .literal.pmksa_cache_clone_entry + 0x0000000040110400 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4 (size before relaxing) + .literal.pmksa_cache_deinit + 0x0000000040110400 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x14 (size before relaxing) + .literal.pmksa_cache_get + 0x0000000040110400 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x8 (size before relaxing) + .literal.pmksa_cache_get_opportunistic + 0x0000000040110400 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x4 (size before relaxing) + .literal.pmksa_cache_set_current + 0x0000000040110400 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0xc (size before relaxing) + .literal.pmksa_cache_init + 0x0000000040110400 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x10 (size before relaxing) + .literal.hostapd_derive_psk + 0x0000000040110408 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0xc (size before relaxing) + .literal.hostapd_setup_wpa_psk + 0x0000000040110408 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x4 (size before relaxing) + .literal.hostapd_get_psk + 0x0000000040110408 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_rsa_public + 0x0000000040110408 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_rsa_private + 0x000000004011040c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xc4 (size before relaxing) + .text.mbedtls_rsa_public + 0x000000004011040c 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x82 (size before relaxing) + 0x000000004011040c mbedtls_rsa_public + *fill* 0x000000004011047e 0x2 + .text.mbedtls_rsa_private + 0x0000000040110480 0x264 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x2f4 (size before relaxing) + 0x0000000040110480 mbedtls_rsa_private + .text.mbedtls_rsa_rsaes_oaep_encrypt + 0x00000000401106e4 0x14c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x160 (size before relaxing) + 0x00000000401106e4 mbedtls_rsa_rsaes_oaep_encrypt + .text.mbedtls_rsa_rsaes_pkcs1_v15_encrypt + 0x0000000040110830 0xfd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000040110830 mbedtls_rsa_rsaes_pkcs1_v15_encrypt + *fill* 0x000000004011092d 0x3 + .text.mbedtls_rsa_pkcs1_encrypt + 0x0000000040110930 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000040110930 mbedtls_rsa_pkcs1_encrypt + .text.mbedtls_rsa_rsaes_oaep_decrypt + 0x000000004011097c 0x201 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x225 (size before relaxing) + 0x000000004011097c mbedtls_rsa_rsaes_oaep_decrypt + *fill* 0x0000000040110b7d 0x3 + .text.mbedtls_rsa_rsaes_pkcs1_v15_decrypt + 0x0000000040110b80 0x1b1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x1dd (size before relaxing) + 0x0000000040110b80 mbedtls_rsa_rsaes_pkcs1_v15_decrypt + *fill* 0x0000000040110d31 0x3 + .text.mbedtls_rsa_pkcs1_decrypt + 0x0000000040110d34 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000040110d34 mbedtls_rsa_pkcs1_decrypt + .text.mbedtls_rsa_rsassa_pss_sign + 0x0000000040110d88 0x1e4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x218 (size before relaxing) + 0x0000000040110d88 mbedtls_rsa_rsassa_pss_sign + .text.mbedtls_rsa_rsassa_pkcs1_v15_sign + 0x0000000040110f6c 0xc6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xda (size before relaxing) + 0x0000000040110f6c mbedtls_rsa_rsassa_pkcs1_v15_sign + *fill* 0x0000000040111032 0x2 + .text.mbedtls_rsa_pkcs1_sign + 0x0000000040111034 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000040111034 mbedtls_rsa_pkcs1_sign + *fill* 0x0000000040111081 0x3 + .text.mbedtls_rsa_rsassa_pss_verify_ext + 0x0000000040111084 0x222 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x246 (size before relaxing) + 0x0000000040111084 mbedtls_rsa_rsassa_pss_verify_ext + *fill* 0x00000000401112a6 0x2 + .text.mbedtls_rsa_rsassa_pss_verify + 0x00000000401112a8 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x00000000401112a8 mbedtls_rsa_rsassa_pss_verify + *fill* 0x00000000401112d6 0x2 + .text.mbedtls_rsa_rsassa_pkcs1_v15_verify + 0x00000000401112d8 0xbe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0xce (size before relaxing) + 0x00000000401112d8 mbedtls_rsa_rsassa_pkcs1_v15_verify + *fill* 0x0000000040111396 0x2 + .text.mbedtls_rsa_pkcs1_verify + 0x0000000040111398 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000040111398 mbedtls_rsa_pkcs1_verify + *fill* 0x00000000401113e5 0x3 + .text.mbedtls_rsa_free + 0x00000000401113e8 0x5e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x82 (size before relaxing) + 0x00000000401113e8 mbedtls_rsa_free + *fill* 0x0000000040111446 0x2 + .text.mbedtls_rsa_gen_key + 0x0000000040111448 0x1c6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x21a (size before relaxing) + 0x0000000040111448 mbedtls_rsa_gen_key + *fill* 0x000000004011160e 0x2 + .text.mbedtls_rsa_deduce_primes + 0x0000000040111610 0x1d4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + 0x224 (size before relaxing) + 0x0000000040111610 mbedtls_rsa_deduce_primes + .text.mbedtls_rsa_deduce_private_exponent + 0x00000000401117e4 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + 0xc8 (size before relaxing) + 0x00000000401117e4 mbedtls_rsa_deduce_private_exponent + .text.mbedtls_rsa_validate_crt + 0x0000000040111884 0x13a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + 0x16a (size before relaxing) + 0x0000000040111884 mbedtls_rsa_validate_crt + *fill* 0x00000000401119be 0x2 + .text.mbedtls_rsa_validate_params + 0x00000000401119c0 0x1dc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + 0x228 (size before relaxing) + 0x00000000401119c0 mbedtls_rsa_validate_params + .text.mbedtls_rsa_deduce_crt + 0x0000000040111b9c 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + 0x7a (size before relaxing) + 0x0000000040111b9c mbedtls_rsa_deduce_crt + *fill* 0x0000000040111c0a 0x2 + .text.mbedtls_sha1_ret + 0x0000000040111c0c 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + 0x40 (size before relaxing) + 0x0000000040111c0c mbedtls_sha1_ret + *fill* 0x0000000040111c3d 0x3 + .text.mbedtls_sha256_ret + 0x0000000040111c40 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + 0x42 (size before relaxing) + 0x0000000040111c40 mbedtls_sha256_ret + *fill* 0x0000000040111c73 0x1 + .text.mbedtls_sha512_ret + 0x0000000040111c74 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + 0x42 (size before relaxing) + 0x0000000040111c74 mbedtls_sha512_ret + *fill* 0x0000000040111ca7 0x1 + .text.mbedtls_hardware_poll + 0x0000000040111ca8 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + 0x0000000040111ca8 mbedtls_hardware_poll + *fill* 0x0000000040111cbb 0x1 + .text.mbedtls_sha1_software_process + 0x0000000040111cbc 0x1118 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .text.mbedtls_sha1_init + 0x0000000040112dd4 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x0000000040112dd4 mbedtls_sha1_init + *fill* 0x0000000040112de6 0x2 + .text.mbedtls_sha1_free + 0x0000000040112de8 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x22 (size before relaxing) + 0x0000000040112de8 mbedtls_sha1_free + *fill* 0x0000000040112e03 0x1 + .text.mbedtls_sha1_clone + 0x0000000040112e04 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x0000000040112e04 mbedtls_sha1_clone + *fill* 0x0000000040112e2b 0x1 + .text.mbedtls_sha1_starts_ret + 0x0000000040112e2c 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x0000000040112e2c mbedtls_sha1_starts_ret + *fill* 0x0000000040112e65 0x3 + .text.mbedtls_internal_sha1_process + 0x0000000040112e68 0x49 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x0000000040112e68 mbedtls_internal_sha1_process + *fill* 0x0000000040112eb1 0x3 + .text.mbedtls_sha1_update_ret + 0x0000000040112eb4 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x0000000040112eb4 mbedtls_sha1_update_ret + .text.mbedtls_sha1_finish_ret + 0x0000000040112f48 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x118 (size before relaxing) + 0x0000000040112f48 mbedtls_sha1_finish_ret + .text.mbedtls_sha256_software_process + 0x0000000040113050 0x9ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + *fill* 0x00000000401139fd 0x3 + .text.mbedtls_sha256_init + 0x0000000040113a00 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x0000000040113a00 mbedtls_sha256_init + *fill* 0x0000000040113a12 0x2 + .text.mbedtls_sha256_free + 0x0000000040113a14 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x22 (size before relaxing) + 0x0000000040113a14 mbedtls_sha256_free + *fill* 0x0000000040113a2f 0x1 + .text.mbedtls_sha256_clone + 0x0000000040113a30 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x0000000040113a30 mbedtls_sha256_clone + *fill* 0x0000000040113a57 0x1 + .text.mbedtls_sha256_starts_ret + 0x0000000040113a58 0x7a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x0000000040113a58 mbedtls_sha256_starts_ret + *fill* 0x0000000040113ad2 0x2 + .text.mbedtls_internal_sha256_process + 0x0000000040113ad4 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x0000000040113ad4 mbedtls_internal_sha256_process + *fill* 0x0000000040113b26 0x2 + .text.mbedtls_sha256_update_ret + 0x0000000040113b28 0x93 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x0000000040113b28 mbedtls_sha256_update_ret + *fill* 0x0000000040113bbb 0x1 + .text.mbedtls_sha256_finish_ret + 0x0000000040113bbc 0x155 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x165 (size before relaxing) + 0x0000000040113bbc mbedtls_sha256_finish_ret + *fill* 0x0000000040113d11 0x3 + .text.mbedtls_sha512_software_process + 0x0000000040113d14 0xe93 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + *fill* 0x0000000040114ba7 0x1 + .text.mbedtls_sha512_init + 0x0000000040114ba8 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x0000000040114ba8 mbedtls_sha512_init + *fill* 0x0000000040114bba 0x2 + .text.mbedtls_sha512_free + 0x0000000040114bbc 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x2a (size before relaxing) + 0x0000000040114bbc mbedtls_sha512_free + *fill* 0x0000000040114be3 0x1 + .text.mbedtls_sha512_clone + 0x0000000040114be4 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x0000000040114be4 mbedtls_sha512_clone + .text.mbedtls_sha512_starts_ret + 0x0000000040114c0c 0xde esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0xe1 (size before relaxing) + 0x0000000040114c0c mbedtls_sha512_starts_ret + *fill* 0x0000000040114cea 0x2 + .text.mbedtls_internal_sha512_process + 0x0000000040114cec 0x5a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x5e (size before relaxing) + 0x0000000040114cec mbedtls_internal_sha512_process + *fill* 0x0000000040114d46 0x2 + .text.mbedtls_sha512_update_ret + 0x0000000040114d48 0xbc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0xc0 (size before relaxing) + 0x0000000040114d48 mbedtls_sha512_update_ret + .text.mbedtls_sha512_finish_ret + 0x0000000040114e04 0x274 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x27c (size before relaxing) + 0x0000000040114e04 mbedtls_sha512_finish_ret + .text.modular_inverse + 0x0000000040115078 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .text.calculate_rinv + 0x00000000401150f4 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x36 (size before relaxing) + *fill* 0x000000004011511f 0x1 + .text.mont 0x0000000040115120 0x146 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x14e (size before relaxing) + *fill* 0x0000000040115266 0x2 + .text.esp_mpi_acquire_hardware + 0x0000000040115268 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x3a (size before relaxing) + 0x0000000040115268 esp_mpi_acquire_hardware + *fill* 0x000000004011529e 0x2 + .text.esp_mpi_release_hardware + 0x00000000401152a0 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x00000000401152a0 esp_mpi_release_hardware + *fill* 0x00000000401152cb 0x1 + .text.mpi_montgomery_exp_calc + 0x00000000401152cc 0xf0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x11c (size before relaxing) + .text.mpi_mult_mpi_failover_mod_mult + 0x00000000401153bc 0x176 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x17a (size before relaxing) + *fill* 0x0000000040115532 0x2 + .text.esp_mpi_mul_mpi_mod + 0x0000000040115534 0x1fd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x21c (size before relaxing) + 0x0000000040115534 esp_mpi_mul_mpi_mod + *fill* 0x0000000040115731 0x3 + .text.mbedtls_mpi_exp_mod + 0x0000000040115734 0x13c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x150 (size before relaxing) + 0x0000000040115734 mbedtls_mpi_exp_mod + .text.mbedtls_mpi_mul_mpi + 0x0000000040115870 0x1f3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x206 (size before relaxing) + 0x0000000040115870 mbedtls_mpi_mul_mpi + *fill* 0x0000000040115a63 0x1 + .text.mpi_mult_mpi_overlong + 0x0000000040115a64 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x72 (size before relaxing) + *fill* 0x0000000040115ac6 0x2 + .text.esp_aes_setkey_hardware + 0x0000000040115ac8 0x7c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + .text.esp_aes_block + 0x0000000040115b44 0xb2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0xb6 (size before relaxing) + *fill* 0x0000000040115bf6 0x2 + .text.esp_aes_acquire_hardware + 0x0000000040115bf8 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x16 (size before relaxing) + 0x0000000040115bf8 esp_aes_acquire_hardware + *fill* 0x0000000040115c0b 0x1 + .text.esp_aes_release_hardware + 0x0000000040115c0c 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x17 (size before relaxing) + 0x0000000040115c0c esp_aes_release_hardware + *fill* 0x0000000040115c1f 0x1 + .text.esp_aes_init + 0x0000000040115c20 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x0000000040115c20 esp_aes_init + *fill* 0x0000000040115c32 0x2 + .text.esp_aes_free + 0x0000000040115c34 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x0000000040115c34 esp_aes_free + *fill* 0x0000000040115c47 0x1 + .text.esp_aes_setkey + 0x0000000040115c48 0x45 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x0000000040115c48 esp_aes_setkey + *fill* 0x0000000040115c8d 0x3 + .text.esp_internal_aes_encrypt + 0x0000000040115c90 0x55 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x61 (size before relaxing) + 0x0000000040115c90 esp_internal_aes_encrypt + *fill* 0x0000000040115ce5 0x3 + .text.esp_internal_aes_decrypt + 0x0000000040115ce8 0x55 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x61 (size before relaxing) + 0x0000000040115ce8 esp_internal_aes_decrypt + *fill* 0x0000000040115d3d 0x3 + .text.esp_aes_crypt_ecb + 0x0000000040115d40 0x55 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x61 (size before relaxing) + 0x0000000040115d40 esp_aes_crypt_ecb + *fill* 0x0000000040115d95 0x3 + .text.esp_aes_crypt_cbc + 0x0000000040115d98 0xf2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0xfa (size before relaxing) + 0x0000000040115d98 esp_aes_crypt_cbc + *fill* 0x0000000040115e8a 0x2 + .text.esp_aes_crypt_cfb128 + 0x0000000040115e8c 0xd2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0xd6 (size before relaxing) + 0x0000000040115e8c esp_aes_crypt_cfb128 + *fill* 0x0000000040115f5e 0x2 + .text.esp_aes_crypt_ctr + 0x0000000040115f60 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0xbc (size before relaxing) + 0x0000000040115f60 esp_aes_crypt_ctr + .text.esp_aes_crypt_ofb + 0x0000000040116018 0xee esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0xf6 (size before relaxing) + 0x0000000040116018 esp_aes_crypt_ofb + *fill* 0x0000000040116106 0x2 + .text.esp_aes_xts_init + 0x0000000040116108 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x17 (size before relaxing) + 0x0000000040116108 esp_aes_xts_init + *fill* 0x0000000040116118 0x0 + .text.esp_aes_xts_free + 0x0000000040116118 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x17 (size before relaxing) + 0x0000000040116118 esp_aes_xts_free + *fill* 0x0000000040116128 0x0 + .text.esp_aes_xts_setkey_enc + 0x0000000040116128 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x36 (size before relaxing) + 0x0000000040116128 esp_aes_xts_setkey_enc + *fill* 0x0000000040116156 0x2 + .text.esp_aes_xts_setkey_dec + 0x0000000040116158 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x36 (size before relaxing) + 0x0000000040116158 esp_aes_xts_setkey_dec + *fill* 0x0000000040116186 0x2 + .text.esp_aes_crypt_xts + 0x0000000040116188 0x182 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x186 (size before relaxing) + 0x0000000040116188 esp_aes_crypt_xts + *fill* 0x000000004011630a 0x2 + .text.sha_get_engine_state + 0x000000004011630c 0x77 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + *fill* 0x0000000040116383 0x1 + .text.esp_sha_lock_engine_common + 0x0000000040116384 0x62 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x6e (size before relaxing) + *fill* 0x00000000401163e6 0x2 + .text.esp_sha_lock_memory_block + 0x00000000401163e8 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x00000000401163e8 esp_sha_lock_memory_block + *fill* 0x00000000401163f6 0x2 + .text.esp_sha_unlock_memory_block + 0x00000000401163f8 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x00000000401163f8 esp_sha_unlock_memory_block + *fill* 0x0000000040116406 0x2 + .text.esp_sha_try_lock_engine + 0x0000000040116408 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x0000000040116408 esp_sha_try_lock_engine + *fill* 0x0000000040116419 0x3 + .text.esp_sha_unlock_engine + 0x000000004011641c 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x4a (size before relaxing) + 0x000000004011641c esp_sha_unlock_engine + *fill* 0x000000004011645e 0x2 + .text.esp_sha_wait_idle + 0x0000000040116460 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x0000000040116460 esp_sha_wait_idle + *fill* 0x0000000040116495 0x3 + .text.esp_sha_read_digest_state + 0x0000000040116498 0xee esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0xfa (size before relaxing) + 0x0000000040116498 esp_sha_read_digest_state + *fill* 0x0000000040116586 0x2 + .text.esp_sha_block + 0x0000000040116588 0x9b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0xa7 (size before relaxing) + 0x0000000040116588 esp_sha_block + *fill* 0x0000000040116623 0x1 + .text.mbedtls_asn1_get_tag + 0x0000000040116624 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x0000000040116624 mbedtls_asn1_get_tag + *fill* 0x0000000040116659 0x3 + .text.mbedtls_asn1_get_bool + 0x000000004011665c 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x000000004011665c mbedtls_asn1_get_bool + .text.mbedtls_asn1_get_int + 0x0000000040116694 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x0000000040116694 mbedtls_asn1_get_int + .text.mbedtls_asn1_get_mpi + 0x00000000401166f4 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x2c (size before relaxing) + 0x00000000401166f4 mbedtls_asn1_get_mpi + .text.mbedtls_asn1_get_bitstring + 0x000000004011671c 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x000000004011671c mbedtls_asn1_get_bitstring + *fill* 0x000000004011676d 0x3 + .text.mbedtls_asn1_get_bitstring_null + 0x0000000040116770 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x30 (size before relaxing) + 0x0000000040116770 mbedtls_asn1_get_bitstring_null + .text.mbedtls_asn1_get_sequence_of + 0x000000004011679c 0x7e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x82 (size before relaxing) + 0x000000004011679c mbedtls_asn1_get_sequence_of + *fill* 0x000000004011681a 0x2 + .text.mbedtls_asn1_get_alg + 0x000000004011681c 0x89 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x91 (size before relaxing) + 0x000000004011681c mbedtls_asn1_get_alg + *fill* 0x00000000401168a5 0x3 + .text.mbedtls_asn1_get_alg_null + 0x00000000401168a8 0x45 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x00000000401168a8 mbedtls_asn1_get_alg_null + *fill* 0x00000000401168ed 0x3 + .text.mbedtls_asn1_free_named_data + 0x00000000401168f0 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x22 (size before relaxing) + 0x00000000401168f0 mbedtls_asn1_free_named_data + *fill* 0x000000004011690a 0x2 + .text.mbedtls_asn1_free_named_data_list + 0x000000004011690c 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x21 (size before relaxing) + 0x000000004011690c mbedtls_asn1_free_named_data_list + *fill* 0x0000000040116929 0x3 + .text.asn1_find_named_data + 0x000000004011692c 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + *fill* 0x000000004011694d 0x3 + .text.mbedtls_asn1_write_len + 0x0000000040116950 0x127 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x0000000040116950 mbedtls_asn1_write_len + *fill* 0x0000000040116a77 0x1 + .text.mbedtls_asn1_write_raw_buffer + 0x0000000040116a78 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x0000000040116a78 mbedtls_asn1_write_raw_buffer + *fill* 0x0000000040116aa9 0x3 + .text.mbedtls_asn1_write_mpi + 0x0000000040116aac 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x88 (size before relaxing) + 0x0000000040116aac mbedtls_asn1_write_mpi + .text.mbedtls_asn1_write_null + 0x0000000040116b2c 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x2a (size before relaxing) + 0x0000000040116b2c mbedtls_asn1_write_null + *fill* 0x0000000040116b52 0x2 + .text.mbedtls_asn1_write_oid + 0x0000000040116b54 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x3e (size before relaxing) + 0x0000000040116b54 mbedtls_asn1_write_oid + *fill* 0x0000000040116b8a 0x2 + .text.mbedtls_asn1_write_algorithm_identifier + 0x0000000040116b8c 0x45 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x51 (size before relaxing) + 0x0000000040116b8c mbedtls_asn1_write_algorithm_identifier + *fill* 0x0000000040116bd1 0x3 + .text.mbedtls_asn1_write_bool + 0x0000000040116bd4 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x4c (size before relaxing) + 0x0000000040116bd4 mbedtls_asn1_write_bool + .text.mbedtls_asn1_write_int + 0x0000000040116c18 0x6c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x70 (size before relaxing) + 0x0000000040116c18 mbedtls_asn1_write_int + .text.mbedtls_asn1_write_tagged_string + 0x0000000040116c84 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x41 (size before relaxing) + 0x0000000040116c84 mbedtls_asn1_write_tagged_string + *fill* 0x0000000040116cb9 0x3 + .text.mbedtls_asn1_write_bitstring + 0x0000000040116cbc 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x8c (size before relaxing) + 0x0000000040116cbc mbedtls_asn1_write_bitstring + .text.mbedtls_asn1_store_named_data + 0x0000000040116d40 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0xbc (size before relaxing) + 0x0000000040116d40 mbedtls_asn1_store_named_data + .text.get_pkcs_padding + 0x0000000040116de0 0x76 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x0000000040116e56 0x2 + .text.get_one_and_zeros_padding + 0x0000000040116e58 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x0000000040116ec6 0x2 + .text.get_zeros_and_len_padding + 0x0000000040116ec8 0x74 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.get_zeros_padding + 0x0000000040116f3c 0x56 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x0000000040116f92 0x2 + .text.get_no_padding + 0x0000000040116f94 0x29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x0000000040116fbd 0x3 + .text.mbedtls_cipher_info_from_type + 0x0000000040116fc0 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x0000000040116fc0 mbedtls_cipher_info_from_type + *fill* 0x0000000040116fd9 0x3 + .text.mbedtls_cipher_info_from_values + 0x0000000040116fdc 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x0000000040116fdc mbedtls_cipher_info_from_values + *fill* 0x0000000040117001 0x3 + .text.mbedtls_cipher_init + 0x0000000040117004 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x0000000040117004 mbedtls_cipher_init + *fill* 0x0000000040117016 0x2 + .text.mbedtls_cipher_free + 0x0000000040117018 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x1e (size before relaxing) + 0x0000000040117018 mbedtls_cipher_free + *fill* 0x0000000040117033 0x1 + .text.mbedtls_cipher_setkey + 0x0000000040117034 0x61 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x0000000040117034 mbedtls_cipher_setkey + *fill* 0x0000000040117095 0x3 + .text.mbedtls_cipher_set_iv + 0x0000000040117098 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x0000000040117098 mbedtls_cipher_set_iv + *fill* 0x00000000401170e2 0x2 + .text.mbedtls_cipher_reset + 0x00000000401170e4 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x00000000401170e4 mbedtls_cipher_reset + *fill* 0x00000000401170f9 0x3 + .text.mbedtls_cipher_update + 0x00000000401170fc 0x21c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x00000000401170fc mbedtls_cipher_update + .text.mbedtls_cipher_finish + 0x0000000040117318 0x124 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x0000000040117318 mbedtls_cipher_finish + .text.mbedtls_cipher_set_padding_mode + 0x000000004011743c 0x7d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x000000004011743c mbedtls_cipher_set_padding_mode + *fill* 0x00000000401174b9 0x3 + .text.mbedtls_cipher_setup + 0x00000000401174bc 0x39 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x00000000401174bc mbedtls_cipher_setup + *fill* 0x00000000401174f5 0x3 + .text.mbedtls_cipher_crypt + 0x00000000401174f8 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x4c (size before relaxing) + 0x00000000401174f8 mbedtls_cipher_crypt + .text.mbedtls_cipher_auth_encrypt + 0x0000000040117538 0x6d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x71 (size before relaxing) + 0x0000000040117538 mbedtls_cipher_auth_encrypt + *fill* 0x00000000401175a5 0x3 + .text.mbedtls_cipher_auth_decrypt + 0x00000000401175a8 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x76 (size before relaxing) + 0x00000000401175a8 mbedtls_cipher_auth_decrypt + *fill* 0x0000000040117616 0x2 + .text.ccm_ctx_free + 0x0000000040117618 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x000000004011762a 0x2 + .text.ccm_ctx_alloc + 0x000000004011762c 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x0000000040117642 0x2 + .text.ccm_aes_setkey_wrap + 0x0000000040117644 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x0000000040117659 0x3 + .text.gcm_ctx_free + 0x000000004011765c 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x000000004011766e 0x2 + .text.gcm_ctx_alloc + 0x0000000040117670 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x0000000040117686 0x2 + .text.gcm_aes_setkey_wrap + 0x0000000040117688 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x000000004011769d 0x3 + .text.xts_aes_ctx_free + 0x00000000401176a0 0x13 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x17 (size before relaxing) + *fill* 0x00000000401176b3 0x1 + .text.xts_aes_ctx_alloc + 0x00000000401176b4 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x1a (size before relaxing) + *fill* 0x00000000401176ca 0x2 + .text.xts_aes_setkey_dec_wrap + 0x00000000401176cc 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.xts_aes_setkey_enc_wrap + 0x00000000401176dc 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.aes_crypt_xts_wrap + 0x00000000401176ec 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x2a (size before relaxing) + *fill* 0x0000000040117712 0x2 + .text.aes_ctx_free + 0x0000000040117714 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x16 (size before relaxing) + *fill* 0x0000000040117726 0x2 + .text.aes_ctx_alloc + 0x0000000040117728 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x20 (size before relaxing) + .text.aes_setkey_dec_wrap + 0x0000000040117744 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.aes_setkey_enc_wrap + 0x0000000040117754 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x14 (size before relaxing) + .text.aes_crypt_ctr_wrap + 0x0000000040117764 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x0000000040117781 0x3 + .text.aes_crypt_ofb_wrap + 0x0000000040117784 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x000000004011779d 0x3 + .text.aes_crypt_cfb128_wrap + 0x00000000401177a0 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x00000000401177bd 0x3 + .text.aes_crypt_cbc_wrap + 0x00000000401177c0 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x00000000401177d9 0x3 + .text.aes_crypt_ecb_wrap + 0x00000000401177dc 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + *fill* 0x00000000401177f1 0x3 + .text.derive_mpi + 0x00000000401177f4 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x5e (size before relaxing) + *fill* 0x0000000040117842 0x2 + .text.ecdsa_sign_restartable + 0x0000000040117844 0x1b5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x205 (size before relaxing) + *fill* 0x00000000401179f9 0x3 + .text.ecdsa_sign_det_restartable + 0x00000000401179fc 0xba esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0xd6 (size before relaxing) + *fill* 0x0000000040117ab6 0x2 + .text.ecdsa_verify_restartable + 0x0000000040117ab8 0x134 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x17c (size before relaxing) + .text.ecdsa_signature_to_asn1 + 0x0000000040117bec 0x66 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x72 (size before relaxing) + *fill* 0x0000000040117c52 0x2 + .text.mbedtls_ecdsa_write_signature_restartable + 0x0000000040117c54 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x5c (size before relaxing) + 0x0000000040117c54 mbedtls_ecdsa_write_signature_restartable + *fill* 0x0000000040117c9e 0x2 + .text.mbedtls_ecdsa_write_signature + 0x0000000040117ca0 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x0000000040117ca0 mbedtls_ecdsa_write_signature + *fill* 0x0000000040117cc5 0x3 + .text.mbedtls_ecdsa_read_signature_restartable + 0x0000000040117cc8 0x96 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0xac (size before relaxing) + 0x0000000040117cc8 mbedtls_ecdsa_read_signature_restartable + *fill* 0x0000000040117d5e 0x2 + .text.mbedtls_ecdsa_read_signature + 0x0000000040117d60 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x0000000040117d60 mbedtls_ecdsa_read_signature + *fill* 0x0000000040117d79 0x3 + .text.mbedtls_ecdsa_init + 0x0000000040117d7c 0xa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0xe (size before relaxing) + 0x0000000040117d7c mbedtls_ecdsa_init + *fill* 0x0000000040117d86 0x2 + .text.mbedtls_ecdsa_free + 0x0000000040117d88 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0xf (size before relaxing) + 0x0000000040117d88 mbedtls_ecdsa_free + *fill* 0x0000000040117d94 0x0 + .text.mbedtls_ecdsa_from_keypair + 0x0000000040117d94 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0x3f (size before relaxing) + 0x0000000040117d94 mbedtls_ecdsa_from_keypair + *fill* 0x0000000040117dc8 0x0 + .text.gcm_mult + 0x0000000040117dc8 0x138 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .text.gcm_gen_table + 0x0000000040117f00 0x17c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .text.mbedtls_gcm_init + 0x000000004011807c 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x000000004011807c mbedtls_gcm_init + *fill* 0x000000004011808e 0x2 + .text.mbedtls_gcm_setkey + 0x0000000040118090 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x58 (size before relaxing) + 0x0000000040118090 mbedtls_gcm_setkey + .text.mbedtls_gcm_starts + 0x00000000401180d8 0x162 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x166 (size before relaxing) + 0x00000000401180d8 mbedtls_gcm_starts + *fill* 0x000000004011823a 0x2 + .text.mbedtls_gcm_update + 0x000000004011823c 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x10c (size before relaxing) + 0x000000004011823c mbedtls_gcm_update + .text.mbedtls_gcm_finish + 0x0000000040118344 0x105 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x0000000040118344 mbedtls_gcm_finish + *fill* 0x0000000040118449 0x3 + .text.mbedtls_gcm_crypt_and_tag + 0x000000004011844c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x38 (size before relaxing) + 0x000000004011844c mbedtls_gcm_crypt_and_tag + .text.mbedtls_gcm_auth_decrypt + 0x000000004011847c 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x000000004011847c mbedtls_gcm_auth_decrypt + .text.mbedtls_gcm_free + 0x00000000401184e0 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x1a (size before relaxing) + 0x00000000401184e0 mbedtls_gcm_free + *fill* 0x00000000401184f6 0x2 + .text.mbedtls_hmac_drbg_init + 0x00000000401184f8 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x00000000401184f8 mbedtls_hmac_drbg_init + *fill* 0x000000004011850a 0x2 + .text.mbedtls_hmac_drbg_update_ret + 0x000000004011850c 0xc8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0xe0 (size before relaxing) + 0x000000004011850c mbedtls_hmac_drbg_update_ret + .text.mbedtls_hmac_drbg_seed_buf + 0x00000000401185d4 0x3e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x4e (size before relaxing) + 0x00000000401185d4 mbedtls_hmac_drbg_seed_buf + *fill* 0x0000000040118612 0x2 + .text.mbedtls_hmac_drbg_reseed + 0x0000000040118614 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x8c (size before relaxing) + 0x0000000040118614 mbedtls_hmac_drbg_reseed + .text.mbedtls_hmac_drbg_random_with_add + 0x0000000040118698 0xcc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0xdc (size before relaxing) + 0x0000000040118698 mbedtls_hmac_drbg_random_with_add + .text.mbedtls_hmac_drbg_random + 0x0000000040118764 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x18 (size before relaxing) + 0x0000000040118764 mbedtls_hmac_drbg_random + .text.mbedtls_hmac_drbg_free + 0x0000000040118778 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0x1a (size before relaxing) + 0x0000000040118778 mbedtls_hmac_drbg_free + *fill* 0x000000004011878e 0x2 + .text.mbedtls_md5_init + 0x0000000040118790 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x0000000040118790 mbedtls_md5_init + *fill* 0x00000000401187a2 0x2 + .text.mbedtls_md5_free + 0x00000000401187a4 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x12 (size before relaxing) + 0x00000000401187a4 mbedtls_md5_free + *fill* 0x00000000401187b2 0x2 + .text.mbedtls_md5_clone + 0x00000000401187b4 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x00000000401187b4 mbedtls_md5_clone + *fill* 0x00000000401187c6 0x2 + .text.mbedtls_md5_starts_ret + 0x00000000401187c8 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x00000000401187c8 mbedtls_md5_starts_ret + *fill* 0x00000000401187e9 0x3 + .text.mbedtls_internal_md5_process + 0x00000000401187ec 0x8bf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x00000000401187ec mbedtls_internal_md5_process + *fill* 0x00000000401190ab 0x1 + .text.mbedtls_md5_update_ret + 0x00000000401190ac 0x94 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x00000000401190ac mbedtls_md5_update_ret + .text.mbedtls_md5_finish_ret + 0x0000000040119140 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x104 (size before relaxing) + 0x0000000040119140 mbedtls_md5_finish_ret + .text.mbedtls_md5_ret + 0x0000000040119240 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x40 (size before relaxing) + 0x0000000040119240 mbedtls_md5_ret + *fill* 0x0000000040119271 0x3 + .text.oid_x520_attr_from_asn1 + 0x0000000040119274 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x00000000401192a6 0x2 + .text.oid_x509_ext_from_asn1 + 0x00000000401192a8 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x00000000401192da 0x2 + .text.oid_sig_alg_from_asn1 + 0x00000000401192dc 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x000000004011930d 0x3 + .text.oid_pk_alg_from_asn1 + 0x0000000040119310 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x0000000040119342 0x2 + .text.oid_grp_id_from_asn1 + 0x0000000040119344 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x0000000040119376 0x2 + .text.oid_cipher_alg_from_asn1 + 0x0000000040119378 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x00000000401193aa 0x2 + .text.oid_md_alg_from_asn1 + 0x00000000401193ac 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x00000000401193de 0x2 + .text.oid_md_hmac_from_asn1 + 0x00000000401193e0 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x0000000040119412 0x2 + .text.oid_pkcs12_pbe_alg_from_asn1 + 0x0000000040119414 0x32 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + *fill* 0x0000000040119446 0x2 + .text.mbedtls_oid_get_attr_short_name + 0x0000000040119448 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x1d (size before relaxing) + 0x0000000040119448 mbedtls_oid_get_attr_short_name + *fill* 0x0000000040119461 0x3 + .text.mbedtls_oid_get_x509_ext_type + 0x0000000040119464 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x1c (size before relaxing) + 0x0000000040119464 mbedtls_oid_get_x509_ext_type + .text.mbedtls_oid_get_sig_alg + 0x000000004011947c 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x21 (size before relaxing) + 0x000000004011947c mbedtls_oid_get_sig_alg + *fill* 0x0000000040119499 0x3 + .text.mbedtls_oid_get_oid_by_sig_alg + 0x000000004011949c 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x000000004011949c mbedtls_oid_get_oid_by_sig_alg + *fill* 0x00000000401194c9 0x3 + .text.mbedtls_oid_get_pk_alg + 0x00000000401194cc 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x1c (size before relaxing) + 0x00000000401194cc mbedtls_oid_get_pk_alg + .text.mbedtls_oid_get_oid_by_pk_alg + 0x00000000401194e4 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x00000000401194e4 mbedtls_oid_get_oid_by_pk_alg + *fill* 0x000000004011950a 0x2 + .text.mbedtls_oid_get_ec_grp + 0x000000004011950c 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x1d (size before relaxing) + 0x000000004011950c mbedtls_oid_get_ec_grp + *fill* 0x0000000040119525 0x3 + .text.mbedtls_oid_get_oid_by_ec_grp + 0x0000000040119528 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x0000000040119528 mbedtls_oid_get_oid_by_ec_grp + *fill* 0x000000004011954e 0x2 + .text.mbedtls_oid_get_cipher_alg + 0x0000000040119550 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x1d (size before relaxing) + 0x0000000040119550 mbedtls_oid_get_cipher_alg + *fill* 0x0000000040119569 0x3 + .text.mbedtls_oid_get_md_alg + 0x000000004011956c 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x1d (size before relaxing) + 0x000000004011956c mbedtls_oid_get_md_alg + *fill* 0x0000000040119585 0x3 + .text.mbedtls_oid_get_oid_by_md + 0x0000000040119588 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x0000000040119588 mbedtls_oid_get_oid_by_md + *fill* 0x00000000401195ae 0x2 + .text.mbedtls_oid_get_md_hmac + 0x00000000401195b0 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x1d (size before relaxing) + 0x00000000401195b0 mbedtls_oid_get_md_hmac + *fill* 0x00000000401195c9 0x3 + .text.mbedtls_oid_get_pkcs12_pbe_alg + 0x00000000401195cc 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x21 (size before relaxing) + 0x00000000401195cc mbedtls_oid_get_pkcs12_pbe_alg + *fill* 0x00000000401195e9 0x3 + .text.pem_get_iv + 0x00000000401195ec 0x6d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + *fill* 0x0000000040119659 0x3 + .text.pem_pbkdf1 + 0x000000004011965c 0xcf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0xef (size before relaxing) + *fill* 0x000000004011972b 0x1 + .text.pem_aes_decrypt + 0x000000004011972c 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x61 (size before relaxing) + *fill* 0x0000000040119779 0x3 + .text.mbedtls_pem_read_buffer + 0x000000004011977c 0x2c9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x2e5 (size before relaxing) + 0x000000004011977c mbedtls_pem_read_buffer + *fill* 0x0000000040119a45 0x3 + .text.mbedtls_pem_free + 0x0000000040119a48 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x2c (size before relaxing) + 0x0000000040119a48 mbedtls_pem_free + .text.mbedtls_pem_write_buffer + 0x0000000040119a6c 0xfe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x106 (size before relaxing) + 0x0000000040119a6c mbedtls_pem_write_buffer + *fill* 0x0000000040119b6a 0x2 + .text.pkcs12_parse_pbe_params + 0x0000000040119b6c 0x63 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + *fill* 0x0000000040119bcf 0x1 + .text.pkcs12_fill_buffer + 0x0000000040119bd0 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + *fill* 0x0000000040119bf2 0x2 + .text.mbedtls_pkcs12_pbe_sha1_rc4_128 + 0x0000000040119bf4 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0x0000000040119bf4 mbedtls_pkcs12_pbe_sha1_rc4_128 + .text.mbedtls_pkcs12_derivation + 0x0000000040119bfc 0x237 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0x26b (size before relaxing) + 0x0000000040119bfc mbedtls_pkcs12_derivation + *fill* 0x0000000040119e33 0x1 + .text.pkcs12_pbe_derive_key_iv + 0x0000000040119e34 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0xbc (size before relaxing) + .text.mbedtls_pkcs12_pbe + 0x0000000040119eec 0xd2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0xfa (size before relaxing) + 0x0000000040119eec mbedtls_pkcs12_pbe + *fill* 0x0000000040119fbe 0x2 + .text.mbedtls_base64_encode + 0x0000000040119fc0 0x122 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + 0x0000000040119fc0 mbedtls_base64_encode + *fill* 0x000000004011a0e2 0x2 + .text.mbedtls_base64_decode + 0x000000004011a0e4 0x171 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + 0x000000004011a0e4 mbedtls_base64_decode + *fill* 0x000000004011a255 0x3 + .text.ccm_auth_crypt + 0x000000004011a258 0x3da esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x3e6 (size before relaxing) + *fill* 0x000000004011a632 0x2 + .text.mbedtls_ccm_init + 0x000000004011a634 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x000000004011a634 mbedtls_ccm_init + *fill* 0x000000004011a646 0x2 + .text.mbedtls_ccm_setkey + 0x000000004011a648 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x4c (size before relaxing) + 0x000000004011a648 mbedtls_ccm_setkey + .text.mbedtls_ccm_free + 0x000000004011a688 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x1a (size before relaxing) + 0x000000004011a688 mbedtls_ccm_free + *fill* 0x000000004011a69e 0x2 + .text.mbedtls_ccm_star_encrypt_and_tag + 0x000000004011a6a0 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x30 (size before relaxing) + 0x000000004011a6a0 mbedtls_ccm_star_encrypt_and_tag + .text.mbedtls_ccm_encrypt_and_tag + 0x000000004011a6cc 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x31 (size before relaxing) + 0x000000004011a6cc mbedtls_ccm_encrypt_and_tag + *fill* 0x000000004011a6f9 0x3 + .text.mbedtls_ccm_star_auth_decrypt + 0x000000004011a6fc 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x68 (size before relaxing) + 0x000000004011a6fc mbedtls_ccm_star_auth_decrypt + .text.mbedtls_ccm_auth_decrypt + 0x000000004011a760 0x2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x31 (size before relaxing) + 0x000000004011a760 mbedtls_ccm_auth_decrypt + *fill* 0x000000004011a78d 0x3 + .text.x509_parse_int + 0x000000004011a790 0x49 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + *fill* 0x000000004011a7d9 0x3 + .text.x509_date_is_valid + 0x000000004011a7dc 0xd9 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + *fill* 0x000000004011a8b5 0x3 + .text.x509_parse_time + 0x000000004011a8b8 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0xc8 (size before relaxing) + .text.x509_get_attr_type_value + 0x000000004011a968 0xd7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0xdb (size before relaxing) + *fill* 0x000000004011aa3f 0x1 + .text.x509_get_hash_alg + 0x000000004011aa40 0x8a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x8e (size before relaxing) + *fill* 0x000000004011aaca 0x2 + .text.mbedtls_x509_get_serial + 0x000000004011aacc 0x5f esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x000000004011aacc mbedtls_x509_get_serial + *fill* 0x000000004011ab2b 0x1 + .text.mbedtls_x509_get_alg_null + 0x000000004011ab2c 0x15 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x19 (size before relaxing) + 0x000000004011ab2c mbedtls_x509_get_alg_null + *fill* 0x000000004011ab41 0x3 + .text.mbedtls_x509_get_alg + 0x000000004011ab44 0x1a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x000000004011ab44 mbedtls_x509_get_alg + *fill* 0x000000004011ab5e 0x2 + .text.mbedtls_x509_get_rsassa_pss_params + 0x000000004011ab60 0x1be esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x1da (size before relaxing) + 0x000000004011ab60 mbedtls_x509_get_rsassa_pss_params + *fill* 0x000000004011ad1e 0x2 + .text.mbedtls_x509_get_name + 0x000000004011ad20 0x6d esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x71 (size before relaxing) + 0x000000004011ad20 mbedtls_x509_get_name + *fill* 0x000000004011ad8d 0x3 + .text.mbedtls_x509_get_time + 0x000000004011ad90 0x59 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x000000004011ad90 mbedtls_x509_get_time + *fill* 0x000000004011ade9 0x3 + .text.mbedtls_x509_get_sig + 0x000000004011adec 0x3c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x000000004011adec mbedtls_x509_get_sig + .text.mbedtls_x509_get_sig_alg + 0x000000004011ae28 0x87 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x8f (size before relaxing) + 0x000000004011ae28 mbedtls_x509_get_sig_alg + *fill* 0x000000004011aeaf 0x1 + .text.mbedtls_x509_get_ext + 0x000000004011aeb0 0x4c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x50 (size before relaxing) + 0x000000004011aeb0 mbedtls_x509_get_ext + .text.mbedtls_x509_dn_gets + 0x000000004011aefc 0x141 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x14d (size before relaxing) + 0x000000004011aefc mbedtls_x509_dn_gets + *fill* 0x000000004011b03d 0x3 + .text.x509_get_uid + 0x000000004011b040 0x44 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x48 (size before relaxing) + .text.x509_string_cmp + 0x000000004011b084 0x74 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x78 (size before relaxing) + .text.x509_name_cmp + 0x000000004011b0f8 0x8c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x90 (size before relaxing) + .text.x509_crt_check_ee_locally_trusted + 0x000000004011b184 0x38 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x3c (size before relaxing) + .text.x509_get_version + 0x000000004011b1bc 0x50 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_get_dates + 0x000000004011b20c 0x44 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x48 (size before relaxing) + .text.x509_get_basic_constraints + 0x000000004011b250 0x86 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8a (size before relaxing) + *fill* 0x000000004011b2d6 0x2 + .text.x509_get_key_usage + 0x000000004011b2d8 0x58 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_get_ns_cert_type + 0x000000004011b330 0x37 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + *fill* 0x000000004011b367 0x1 + .text.x509_get_ext_key_usage + 0x000000004011b368 0x24 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_get_subject_alt_name + 0x000000004011b38c 0xcc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_get_crt_ext + 0x000000004011b458 0x1c6 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x1ca (size before relaxing) + *fill* 0x000000004011b61e 0x2 + .text.x509_profile_check_key + 0x000000004011b620 0x84 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x88 (size before relaxing) + .text.x509_check_wildcard + 0x000000004011b6a4 0x70 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_check_cn + 0x000000004011b714 0x28 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_verify_name + 0x000000004011b73c 0x78 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_check_signature + 0x000000004011b7b4 0x60 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x70 (size before relaxing) + .text.mbedtls_x509_crt_check_key_usage + 0x000000004011b814 0x40 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x000000004011b814 mbedtls_x509_crt_check_key_usage + .text.x509_crt_check_parent + 0x000000004011b854 0x3d esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x41 (size before relaxing) + *fill* 0x000000004011b891 0x3 + .text.x509_crt_find_parent_in + 0x000000004011b894 0x9b esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0xa3 (size before relaxing) + *fill* 0x000000004011b92f 0x1 + .text.x509_crt_find_parent + 0x000000004011b930 0x46 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + *fill* 0x000000004011b976 0x2 + .text.mbedtls_x509_crt_check_extended_key_usage + 0x000000004011b978 0x4a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x000000004011b978 mbedtls_x509_crt_check_extended_key_usage + *fill* 0x000000004011b9c2 0x2 + .text.mbedtls_x509_crt_is_revoked + 0x000000004011b9c4 0x41 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x000000004011b9c4 mbedtls_x509_crt_is_revoked + *fill* 0x000000004011ba05 0x3 + .text.x509_crt_verifycrl + 0x000000004011ba08 0x119 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x129 (size before relaxing) + *fill* 0x000000004011bb21 0x3 + .text.x509_crt_verify_chain + 0x000000004011bb24 0x163 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x16b (size before relaxing) + *fill* 0x000000004011bc87 0x1 + .text.mbedtls_x509_crt_verify_restartable + 0x000000004011bc88 0xac esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0xc0 (size before relaxing) + 0x000000004011bc88 mbedtls_x509_crt_verify_restartable + .text.mbedtls_x509_crt_init + 0x000000004011bd34 0x12 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x000000004011bd34 mbedtls_x509_crt_init + *fill* 0x000000004011bd46 0x2 + .text.mbedtls_x509_crt_free + 0x000000004011bd48 0xb7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0xdb (size before relaxing) + 0x000000004011bd48 mbedtls_x509_crt_free + *fill* 0x000000004011bdff 0x1 + .text.x509_crt_parse_der_core + 0x000000004011be00 0x306 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x356 (size before relaxing) + *fill* 0x000000004011c106 0x2 + .text.mbedtls_x509_crt_parse_der + 0x000000004011c108 0x80 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x8c (size before relaxing) + 0x000000004011c108 mbedtls_x509_crt_parse_der + .text.mbedtls_x509_crt_parse + 0x000000004011c188 0xfc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x108 (size before relaxing) + 0x000000004011c188 mbedtls_x509_crt_parse + .text.mbedtls_x509_crt_parse_file + 0x000000004011c284 0x2b esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x37 (size before relaxing) + 0x000000004011c284 mbedtls_x509_crt_parse_file + *fill* 0x000000004011c2af 0x1 + .text.x509_csr_get_version + 0x000000004011c2b0 0x24 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + 0x28 (size before relaxing) + .text.mbedtls_x509_csr_init + 0x000000004011c2d4 0x12 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + 0x000000004011c2d4 mbedtls_x509_csr_init + *fill* 0x000000004011c2e6 0x2 + .text.mbedtls_x509_csr_free + 0x000000004011c2e8 0x47 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + 0x5a (size before relaxing) + 0x000000004011c2e8 mbedtls_x509_csr_free + *fill* 0x000000004011c32f 0x1 + .text.mbedtls_x509_csr_parse_der + 0x000000004011c330 0x1f2 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + 0x226 (size before relaxing) + 0x000000004011c330 mbedtls_x509_csr_parse_der + *fill* 0x000000004011c522 0x2 + .text.mbedtls_x509_csr_parse + 0x000000004011c524 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + 0xb8 (size before relaxing) + 0x000000004011c524 mbedtls_x509_csr_parse + .text.mbedtls_x509_csr_parse_file + 0x000000004011c5cc 0x2b esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + 0x37 (size before relaxing) + 0x000000004011c5cc mbedtls_x509_csr_parse_file + *fill* 0x000000004011c5f7 0x1 + .text.x509_write_time + 0x000000004011c5f8 0x81 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x95 (size before relaxing) + *fill* 0x000000004011c679 0x3 + .text.mbedtls_x509write_crt_init + 0x000000004011c67c 0x1a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x1e (size before relaxing) + 0x000000004011c67c mbedtls_x509write_crt_init + *fill* 0x000000004011c696 0x2 + .text.mbedtls_x509write_crt_free + 0x000000004011c698 0x23 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x33 (size before relaxing) + 0x000000004011c698 mbedtls_x509write_crt_free + *fill* 0x000000004011c6bb 0x1 + .text.mbedtls_x509write_crt_set_subject_name + 0x000000004011c6bc 0x12 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x000000004011c6bc mbedtls_x509write_crt_set_subject_name + *fill* 0x000000004011c6ce 0x2 + .text.mbedtls_x509write_crt_set_issuer_name + 0x000000004011c6d0 0x12 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x000000004011c6d0 mbedtls_x509write_crt_set_issuer_name + *fill* 0x000000004011c6e2 0x2 + .text.mbedtls_x509write_crt_set_serial + 0x000000004011c6e4 0x11 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x000000004011c6e4 mbedtls_x509write_crt_set_serial + *fill* 0x000000004011c6f5 0x3 + .text.mbedtls_x509write_crt_set_validity + 0x000000004011c6f8 0x55 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x000000004011c6f8 mbedtls_x509write_crt_set_validity + *fill* 0x000000004011c74d 0x3 + .text.mbedtls_x509write_crt_set_extension + 0x000000004011c750 0x1a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x000000004011c750 mbedtls_x509write_crt_set_extension + *fill* 0x000000004011c76a 0x2 + .text.mbedtls_x509write_crt_set_basic_constraints + 0x000000004011c76c 0x9c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0xa4 (size before relaxing) + 0x000000004011c76c mbedtls_x509write_crt_set_basic_constraints + .text.mbedtls_x509write_crt_set_subject_key_identifier + 0x000000004011c808 0x79 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x89 (size before relaxing) + 0x000000004011c808 mbedtls_x509write_crt_set_subject_key_identifier + *fill* 0x000000004011c881 0x3 + .text.mbedtls_x509write_crt_set_authority_key_identifier + 0x000000004011c884 0x9c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0xb4 (size before relaxing) + 0x000000004011c884 mbedtls_x509write_crt_set_authority_key_identifier + .text.mbedtls_x509write_crt_set_key_usage + 0x000000004011c920 0x54 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x60 (size before relaxing) + 0x000000004011c920 mbedtls_x509write_crt_set_key_usage + .text.mbedtls_x509write_crt_set_ns_cert_type + 0x000000004011c974 0x3d esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x45 (size before relaxing) + 0x000000004011c974 mbedtls_x509write_crt_set_ns_cert_type + *fill* 0x000000004011c9b1 0x3 + .text.mbedtls_x509write_crt_der + 0x000000004011c9b4 0x3e6 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x442 (size before relaxing) + 0x000000004011c9b4 mbedtls_x509write_crt_der + *fill* 0x000000004011cd9a 0x2 + .text.mbedtls_x509write_crt_pem + 0x000000004011cd9c 0x45 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x49 (size before relaxing) + 0x000000004011cd9c mbedtls_x509write_crt_pem + *fill* 0x000000004011cde1 0x3 + .text.x509_attr_descr_from_name + 0x000000004011cde4 0x2e esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + *fill* 0x000000004011ce12 0x2 + .text.x509_write_name + 0x000000004011ce14 0x65 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + 0x7d (size before relaxing) + *fill* 0x000000004011ce79 0x3 + .text.x509_write_extension + 0x000000004011ce7c 0x99 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + 0xb5 (size before relaxing) + *fill* 0x000000004011cf15 0x3 + .text.mbedtls_x509_string_to_names + 0x000000004011cf18 0xe5 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + 0xed (size before relaxing) + 0x000000004011cf18 mbedtls_x509_string_to_names + *fill* 0x000000004011cffd 0x3 + .text.mbedtls_x509_set_extension + 0x000000004011d000 0x31 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + 0x35 (size before relaxing) + 0x000000004011d000 mbedtls_x509_set_extension + *fill* 0x000000004011d031 0x3 + .text.mbedtls_x509_write_names + 0x000000004011d034 0x3e esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + 0x46 (size before relaxing) + 0x000000004011d034 mbedtls_x509_write_names + *fill* 0x000000004011d072 0x2 + .text.mbedtls_x509_write_sig + 0x000000004011d074 0x7c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + 0x84 (size before relaxing) + 0x000000004011d074 mbedtls_x509_write_sig + .text.mbedtls_x509_write_extensions + 0x000000004011d0f0 0x24 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + 0x000000004011d0f0 mbedtls_x509_write_extensions + .text.esp_ota_get_running_partition + 0x000000004011d114 0x7c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x8f (size before relaxing) + 0x000000004011d114 esp_ota_get_running_partition + *fill* 0x000000004011d190 0x0 + .text.os_get_time + 0x000000004011d190 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x000000004011d190 os_get_time + *fill* 0x000000004011d1a9 0x3 + .text.os_random + 0x000000004011d1ac 0xd esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x000000004011d1ac os_random + *fill* 0x000000004011d1b9 0x3 + .text.os_get_random + 0x000000004011d1bc 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x000000004011d1bc os_get_random + *fill* 0x000000004011d1cd 0x3 + .text.wpa_install_key + 0x000000004011d1d0 0x23 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x000000004011d1d0 wpa_install_key + *fill* 0x000000004011d1f3 0x1 + .text.wpa_get_key + 0x000000004011d1f4 0x1d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x000000004011d1f4 wpa_get_key + *fill* 0x000000004011d211 0x3 + .text.wpa_sendto_wrapper + 0x000000004011d214 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x000000004011d214 wpa_sendto_wrapper + *fill* 0x000000004011d226 0x2 + .text.wpa_deauthenticate + 0x000000004011d228 0xb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xe (size before relaxing) + 0x000000004011d228 wpa_deauthenticate + *fill* 0x000000004011d233 0x1 + .text.wpa_config_assoc_ie + 0x000000004011d234 0x2b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x000000004011d234 wpa_config_assoc_ie + *fill* 0x000000004011d25f 0x1 + .text.wpa_neg_complete + 0x000000004011d260 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xb (size before relaxing) + 0x000000004011d260 wpa_neg_complete + *fill* 0x000000004011d268 0x0 + .text.wpa_attach + 0x000000004011d268 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x3c (size before relaxing) + 0x000000004011d268 wpa_attach + .text.wpa_ap_get_wpa_ie + 0x000000004011d29c 0x31 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x000000004011d29c wpa_ap_get_wpa_ie + *fill* 0x000000004011d2cd 0x3 + .text.wpa_ap_rx_eapol + 0x000000004011d2d0 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x000000004011d2d0 wpa_ap_rx_eapol + *fill* 0x000000004011d302 0x2 + .text.wpa_deattach + 0x000000004011d304 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xd (size before relaxing) + 0x000000004011d304 wpa_deattach + *fill* 0x000000004011d30e 0x2 + .text.wpa_parse_wpa_ie_wrapper + 0x000000004011d310 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x42 (size before relaxing) + 0x000000004011d310 wpa_parse_wpa_ie_wrapper + *fill* 0x000000004011d346 0x2 + .text.wpa_config_profile + 0x000000004011d348 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x57 (size before relaxing) + 0x000000004011d348 wpa_config_profile + *fill* 0x000000004011d38c 0x0 + .text.wpa_config_bss + 0x000000004011d38c 0x35 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x49 (size before relaxing) + 0x000000004011d38c wpa_config_bss + *fill* 0x000000004011d3c1 0x3 + .text.wpa_sta_connect + 0x000000004011d3c4 0x1f esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x27 (size before relaxing) + 0x000000004011d3c4 wpa_sta_connect + *fill* 0x000000004011d3e3 0x1 + .text.esp_supplicant_init + 0x000000004011d3e4 0x6d esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x71 (size before relaxing) + 0x000000004011d3e4 esp_supplicant_init + *fill* 0x000000004011d451 0x3 + .text.esp_supplicant_deinit + 0x000000004011d454 0xa esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0xd (size before relaxing) + 0x000000004011d454 esp_supplicant_deinit + *fill* 0x000000004011d45e 0x2 + .text.wpa3_parse_sae_commit + 0x000000004011d460 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x42 (size before relaxing) + *fill* 0x000000004011d49a 0x2 + .text.wpa3_parse_sae_confirm + 0x000000004011d49c 0x45 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x4d (size before relaxing) + *fill* 0x000000004011d4e1 0x3 + .text.wpa3_parse_sae_msg + 0x000000004011d4e4 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .text.wpa3_build_sae_commit + 0x000000004011d510 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x94 (size before relaxing) + .text.wpa3_build_sae_confirm + 0x000000004011d590 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x42 (size before relaxing) + *fill* 0x000000004011d5ca 0x2 + .text.wpa3_build_sae_msg + 0x000000004011d5cc 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x32 (size before relaxing) + *fill* 0x000000004011d5fa 0x2 + .text.esp_wifi_register_wpa3_cb + 0x000000004011d5fc 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x000000004011d5fc esp_wifi_register_wpa3_cb + .text.wpa_sm_pmksa_free_cb + 0x000000004011d60c 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x5e (size before relaxing) + *fill* 0x000000004011d666 0x2 + .text.wpa_supplicant_clr_countermeasures + 0x000000004011d668 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x1a (size before relaxing) + 0x000000004011d668 wpa_supplicant_clr_countermeasures + *fill* 0x000000004011d67e 0x2 + .text.cipher_type_map_public_to_supp + 0x000000004011d680 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000004011d680 cipher_type_map_public_to_supp + .text.wpa_eapol_key_send + 0x000000004011d6b8 0xaf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xb3 (size before relaxing) + 0x000000004011d6b8 wpa_eapol_key_send + *fill* 0x000000004011d767 0x1 + .text.wpa_sm_key_request + 0x000000004011d768 0x108 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x10c (size before relaxing) + 0x000000004011d768 wpa_sm_key_request + .text.wpa_sm_rekey_ptk + 0x000000004011d870 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x12 (size before relaxing) + 0x000000004011d870 wpa_sm_rekey_ptk + *fill* 0x000000004011d87e 0x2 + .text.wpa_supplicant_send_2_of_4 + 0x000000004011d880 0xdc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xe0 (size before relaxing) + 0x000000004011d880 wpa_supplicant_send_2_of_4 + .text.wpa_derive_ptk + 0x000000004011d95c 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000004011d95c wpa_derive_ptk + .text.wpa_supplicant_pairwise_gtk + 0x000000004011d9a4 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x72 (size before relaxing) + 0x000000004011d9a4 wpa_supplicant_pairwise_gtk + *fill* 0x000000004011da0e 0x2 + .text.wpa_report_ie_mismatch + 0x000000004011da10 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000004011da10 wpa_report_ie_mismatch + *fill* 0x000000004011da1f 0x1 + .text.ieee80211w_set_keys + 0x000000004011da20 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000004011da20 ieee80211w_set_keys + *fill* 0x000000004011da6a 0x2 + .text.wpa_supplicant_validate_ie + 0x000000004011da6c 0xca esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xce (size before relaxing) + 0x000000004011da6c wpa_supplicant_validate_ie + *fill* 0x000000004011db36 0x2 + .text.wpa_supplicant_send_4_of_4 + 0x000000004011db38 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xec (size before relaxing) + 0x000000004011db38 wpa_supplicant_send_4_of_4 + .text.wpa_sm_set_seq + 0x000000004011dc20 0x33 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000004011dc20 wpa_sm_set_seq + *fill* 0x000000004011dc53 0x1 + .text.wpa_supplicant_process_1_of_2_rsn + 0x000000004011dc54 0x86 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x8e (size before relaxing) + 0x000000004011dc54 wpa_supplicant_process_1_of_2_rsn + *fill* 0x000000004011dcda 0x2 + .text.wpa_supplicant_process_1_of_2_wpa + 0x000000004011dcdc 0x113 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x11f (size before relaxing) + 0x000000004011dcdc wpa_supplicant_process_1_of_2_wpa + *fill* 0x000000004011ddef 0x1 + .text.wpa_supplicant_send_2_of_2 + 0x000000004011ddf0 0xc1 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xc5 (size before relaxing) + 0x000000004011ddf0 wpa_supplicant_send_2_of_2 + *fill* 0x000000004011deb1 0x3 + .text.wpa_supplicant_verify_eapol_key_mic + 0x000000004011deb4 0xce esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xd2 (size before relaxing) + 0x000000004011deb4 wpa_supplicant_verify_eapol_key_mic + *fill* 0x000000004011df82 0x2 + .text.wpa_supplicant_decrypt_key_data + 0x000000004011df84 0xb4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xbc (size before relaxing) + 0x000000004011df84 wpa_supplicant_decrypt_key_data + .text.wpa_sm_set_state + 0x000000004011e038 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000004011e038 wpa_sm_set_state + .text.wpa_supplicant_key_neg_complete + 0x000000004011e058 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x24 (size before relaxing) + 0x000000004011e058 wpa_supplicant_key_neg_complete + .text.wpa_supplicant_process_3_of_4 + 0x000000004011e078 0xec esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x108 (size before relaxing) + 0x000000004011e078 wpa_supplicant_process_3_of_4 + .text.wpa_supplicant_process_1_of_2 + 0x000000004011e164 0x83 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x96 (size before relaxing) + 0x000000004011e164 wpa_supplicant_process_1_of_2 + *fill* 0x000000004011e1e7 0x1 + .text.wpa_supplicant_stop_countermeasures + 0x000000004011e1e8 0x25 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x2c (size before relaxing) + 0x000000004011e1e8 wpa_supplicant_stop_countermeasures + *fill* 0x000000004011e20d 0x3 + .text.wpa_sm_set_pmk_from_pmksa + 0x000000004011e210 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000004011e210 wpa_sm_set_pmk_from_pmksa + .text.wpa_supplicant_get_pmk + 0x000000004011e23c 0x19e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x1a6 (size before relaxing) + *fill* 0x000000004011e3da 0x2 + .text.wpa_supplicant_process_1_of_4 + 0x000000004011e3dc 0xe4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x100 (size before relaxing) + 0x000000004011e3dc wpa_supplicant_process_1_of_4 + .text.wpa_sm_rx_eapol + 0x000000004011e4c0 0x214 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x21c (size before relaxing) + 0x000000004011e4c0 wpa_sm_rx_eapol + .text.wpa_sm_init + 0x000000004011e6d4 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x4e (size before relaxing) + 0x000000004011e6d4 wpa_sm_init + *fill* 0x000000004011e71e 0x2 + .text.wpa_sm_deinit + 0x000000004011e720 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x11 (size before relaxing) + 0x000000004011e720 wpa_sm_deinit + *fill* 0x000000004011e72e 0x2 + .text.wpa_set_profile + 0x000000004011e730 0x43 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000004011e730 wpa_set_profile + *fill* 0x000000004011e773 0x1 + .text.wpa_set_pmk + 0x000000004011e774 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000004011e774 wpa_set_pmk + .text.wpa_set_passphrase + 0x000000004011e78c 0x8c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xac (size before relaxing) + 0x000000004011e78c wpa_set_passphrase + .text.set_assoc_ie + 0x000000004011e818 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000004011e818 set_assoc_ie + *fill* 0x000000004011e84e 0x2 + .text.wpa_set_bss + 0x000000004011e850 0xcd esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xf1 (size before relaxing) + 0x000000004011e850 wpa_set_bss + *fill* 0x000000004011e91d 0x3 + .text.wpa_sm_set_key + 0x000000004011e920 0x79 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000004011e920 wpa_sm_set_key + *fill* 0x000000004011e999 0x3 + .text.wpa_supplicant_install_ptk + 0x000000004011e99c 0x7d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x85 (size before relaxing) + 0x000000004011e99c wpa_supplicant_install_ptk + *fill* 0x000000004011ea19 0x3 + .text.wpa_supplicant_install_gtk + 0x000000004011ea1c 0xa9 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xad (size before relaxing) + 0x000000004011ea1c wpa_supplicant_install_gtk + *fill* 0x000000004011eac5 0x3 + .text.wpa_supplicant_send_4_of_4_txcallback + 0x000000004011eac8 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x82 (size before relaxing) + 0x000000004011eac8 wpa_supplicant_send_4_of_4_txcallback + *fill* 0x000000004011eb3e 0x2 + .text.wpa_sm_get_key + 0x000000004011eb40 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000004011eb40 wpa_sm_get_key + .text.wpa_supplicant_gtk_in_use + 0x000000004011eb60 0x11a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x122 (size before relaxing) + 0x000000004011eb60 wpa_supplicant_gtk_in_use + *fill* 0x000000004011ec7a 0x2 + .text.wpa_supplicant_send_2_of_2_txcallback + 0x000000004011ec7c 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x62 (size before relaxing) + 0x000000004011ec7c wpa_supplicant_send_2_of_2_txcallback + *fill* 0x000000004011ecd6 0x2 + .text.wpa_michael_mic_failure + 0x000000004011ecd8 0xae esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0xce (size before relaxing) + 0x000000004011ecd8 wpa_michael_mic_failure + *fill* 0x000000004011ed86 0x2 + .text.eapol_txcb + 0x000000004011ed88 0x73 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x7a (size before relaxing) + 0x000000004011ed88 eapol_txcb + *fill* 0x000000004011edfb 0x1 + .text.wpa_sta_in_4way_handshake + 0x000000004011edfc 0x2f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x000000004011edfc wpa_sta_in_4way_handshake + *fill* 0x000000004011ee2b 0x1 + .text.wpa_parse_generic + 0x000000004011ee2c 0x136 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + *fill* 0x000000004011ef62 0x2 + .text.wpa_gen_wpa_ie_rsn + 0x000000004011ef64 0x248 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .text.wpa_gen_wpa_ie_wpa + 0x000000004011f1ac 0x172 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + *fill* 0x000000004011f31e 0x2 + .text.wpa_parse_wpa_ie + 0x000000004011f320 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x000000004011f320 wpa_parse_wpa_ie + *fill* 0x000000004011f34e 0x2 + .text.wpa_gen_wpa_ie + 0x000000004011f350 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x3c (size before relaxing) + 0x000000004011f350 wpa_gen_wpa_ie + *fill* 0x000000004011f389 0x3 + .text.wpa_supplicant_parse_ies + 0x000000004011f38c 0x7c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0x80 (size before relaxing) + 0x000000004011f38c wpa_supplicant_parse_ies + .text.hex2byte + 0x000000004011f408 0x2c esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x30 (size before relaxing) + 0x000000004011f408 hex2byte + .text.hexstr2bin + 0x000000004011f434 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x000000004011f434 hexstr2bin + .text.wpa_get_ntp_timestamp + 0x000000004011f45c 0x8d esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x91 (size before relaxing) + 0x000000004011f45c wpa_get_ntp_timestamp + *fill* 0x000000004011f4e9 0x3 + .text.wpa_config_parse_string + 0x000000004011f4ec 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x000000004011f4ec wpa_config_parse_string + .text.wpa_bin_clear_free + 0x000000004011f55c 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x000000004011f55c wpa_bin_clear_free + *fill* 0x000000004011f56b 0x1 + .text.wpabuf_alloc + 0x000000004011f56c 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x000000004011f56c wpabuf_alloc + *fill* 0x000000004011f581 0x3 + .text.wpabuf_free + 0x000000004011f584 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x000000004011f584 wpabuf_free + *fill* 0x000000004011f59b 0x1 + .text.wpa_auth_get_sm + 0x000000004011f59c 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000004011f5c2 0x2 + .text.wpa_auth_add_sm + 0x000000004011f5c4 0x41 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000004011f605 0x3 + .text.wpa_auth_del_sm + 0x000000004011f608 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000004011f63a 0x2 + .text.wpa_use_aes_cmac + 0x000000004011f63c 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000004011f651 0x3 + .text.wpa_receive_error_report + 0x000000004011f654 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x10 (size before relaxing) + .text.wpa_free_sta_sm + 0x000000004011f660 0x32 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x36 (size before relaxing) + *fill* 0x000000004011f692 0x2 + .text.wpa_group_init_gmk_and_counter + 0x000000004011f694 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x76 (size before relaxing) + *fill* 0x000000004011f6fe 0x2 + .text.sm_WPA_PTK_AUTHENTICATION_Enter + 0x000000004011f700 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000004011f736 0x2 + .text.wpa_gmk_to_gtk + 0x000000004011f738 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x54 (size before relaxing) + .text.wpa_gtk_update + 0x000000004011f788 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x9c (size before relaxing) + .text.wpa_group_gtk_init + 0x000000004011f818 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_group_setkeys + 0x000000004011f84c 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000004011f883 0x1 + .text.wpa_group_config_group_keys + 0x000000004011f884 0x4d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x55 (size before relaxing) + *fill* 0x000000004011f8d1 0x3 + .text.wpa_group_setkeysdone + 0x000000004011f8d4 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x24 (size before relaxing) + .text.wpa_group_sm_step + 0x000000004011f8f4 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.wpa_group_init + 0x000000004011f958 0x53 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x5b (size before relaxing) + *fill* 0x000000004011f9ab 0x1 + .text.wpa_group_ensure_init + 0x000000004011f9ac 0x2a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x32 (size before relaxing) + *fill* 0x000000004011f9d6 0x2 + .text.wpa_sta_disconnect + 0x000000004011f9d8 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000004011f9e7 0x1 + .text.sm_WPA_PTK_AUTHENTICATION2_Enter + 0x000000004011f9e8 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x4c (size before relaxing) + .text.sm_WPA_PTK_DISCONNECT_Enter + 0x000000004011fa2c 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000004011fa5a 0x2 + .text.wpa_rekey_gtk + 0x000000004011fa5c 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x3c (size before relaxing) + .text.wpa_derive_ptk + 0x000000004011fa94 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000004011fada 0x2 + .text.wpa_verify_key_mic + 0x000000004011fadc 0x74 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x78 (size before relaxing) + .text.wpa_replay_counter_valid + 0x000000004011fb50 0x35 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000004011fb85 0x3 + .text.wpa_replay_counter_mark_invalid + 0x000000004011fb88 0x31 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000004011fbb9 0x3 + .text.sm_WPA_PTK_PTKINITDONE_Enter + 0x000000004011fbbc 0x94 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xa7 (size before relaxing) + *fill* 0x000000004011fc50 0x0 + .text.ieee80211w_kde_add + 0x000000004011fc50 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x70 (size before relaxing) + .text.resend_eapol_handle + 0x000000004011fcb8 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x000000004011fcb8 resend_eapol_handle + .text.sm_WPA_PTK_INITPSK_Enter + 0x000000004011fcd0 0x4f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x53 (size before relaxing) + *fill* 0x000000004011fd1f 0x1 + .text.sm_WPA_PTK_PTKCALCNEGOTIATING_Enter + 0x000000004011fd20 0xd2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xda (size before relaxing) + *fill* 0x000000004011fdf2 0x2 + .text.wpa_init + 0x000000004011fdf4 0x6a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x6e (size before relaxing) + 0x000000004011fdf4 wpa_init + *fill* 0x000000004011fe5e 0x2 + .text.wpa_auth_sta_init + 0x000000004011fe60 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x000000004011fe60 wpa_auth_sta_init + .text.wpa_auth_sta_deinit + 0x000000004011fe90 0x3b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x3e (size before relaxing) + 0x000000004011fe90 wpa_auth_sta_deinit + *fill* 0x000000004011fecb 0x1 + .text.__wpa_send_eapol + 0x000000004011fecc 0x36f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x37b (size before relaxing) + 0x000000004011fecc __wpa_send_eapol + *fill* 0x000000004012023b 0x1 + .text.wpa_send_eapol + 0x000000004012023c 0xd7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xdb (size before relaxing) + *fill* 0x0000000040120313 0x1 + .text.sm_WPA_PTK_PTKSTART_Enter + 0x0000000040120314 0xb3 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x00000000401203c7 0x1 + .text.sm_WPA_PTK_PTKINITNEGOTIATING_Enter + 0x00000000401203c8 0x15e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x162 (size before relaxing) + *fill* 0x0000000040120526 0x2 + .text.sm_WPA_PTK_GROUP_REKEYNEGOTIATING_Enter + 0x0000000040120528 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xf8 (size before relaxing) + .text.sm_WPA_PTK_GROUP_Step + 0x0000000040120610 0xac esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xb0 (size before relaxing) + .text.wpa_remove_ptk + 0x00000000401206bc 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x3a (size before relaxing) + 0x00000000401206bc wpa_remove_ptk + *fill* 0x00000000401206f2 0x2 + .text.sm_WPA_PTK_INITIALIZE_Enter + 0x00000000401206f4 0x63 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x0000000040120757 0x1 + .text.sm_WPA_PTK_Step + 0x0000000040120758 0x1eb esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x207 (size before relaxing) + *fill* 0x0000000040120943 0x1 + .text.wpa_sm_step + 0x0000000040120944 0xa1 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0xa9 (size before relaxing) + *fill* 0x00000000401209e5 0x3 + .text.wpa_send_eapol_timeout + 0x00000000401209e8 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x00000000401209fe 0x2 + .text.wpa_rekey_ptk + 0x0000000040120a00 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x16 (size before relaxing) + *fill* 0x0000000040120a12 0x2 + .text.wpa_auth_sta_associated + 0x0000000040120a14 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x7c (size before relaxing) + 0x0000000040120a14 wpa_auth_sta_associated + .text.wpa_receive + 0x0000000040120a84 0x3df esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x407 (size before relaxing) + 0x0000000040120a84 wpa_receive + *fill* 0x0000000040120e63 0x1 + .text.hostap_eapol_resend_process + 0x0000000040120e64 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x30 (size before relaxing) + 0x0000000040120e64 hostap_eapol_resend_process + .text.wpa_ap_join + 0x0000000040120e8c 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x76 (size before relaxing) + 0x0000000040120e8c wpa_ap_join + *fill* 0x0000000040120efa 0x2 + .text.wpa_ap_remove + 0x0000000040120efc 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x0000000040120efc wpa_ap_remove + *fill* 0x0000000040120f12 0x2 + .text.wpa_parse_generic + 0x0000000040120f14 0x136 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + *fill* 0x000000004012104a 0x2 + .text.wpa_write_wpa_ie + 0x000000004012104c 0xc6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0xca (size before relaxing) + *fill* 0x0000000040121112 0x2 + .text.wpa_write_rsn_ie + 0x0000000040121114 0x18d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x191 (size before relaxing) + 0x0000000040121114 wpa_write_rsn_ie + *fill* 0x00000000401212a1 0x3 + .text.wpa_auth_gen_wpa_ie + 0x00000000401212a4 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x70 (size before relaxing) + 0x00000000401212a4 wpa_auth_gen_wpa_ie + .text.wpa_add_kde + 0x0000000040121310 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x0000000040121310 wpa_add_kde + .text.wpa_validate_wpa_ie + 0x0000000040121358 0x1c6 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x1d6 (size before relaxing) + 0x0000000040121358 wpa_validate_wpa_ie + *fill* 0x000000004012151e 0x2 + .text.wpa_parse_kde_ies + 0x0000000040121520 0x7c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x80 (size before relaxing) + 0x0000000040121520 wpa_parse_kde_ies + .text.sae_parse_commit_token + 0x000000004012159c 0x72 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x76 (size before relaxing) + *fill* 0x000000004012160e 0x2 + .text.sae_cn_confirm + 0x0000000040121610 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x74 (size before relaxing) + .text.sae_cn_confirm_ffc + 0x000000004012167c 0x64 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x6c (size before relaxing) + .text.get_random_qr_qnr + 0x00000000401216e0 0x9d esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xa5 (size before relaxing) + *fill* 0x000000004012177d 0x3 + .text.sae_pwd_seed_key + 0x0000000040121780 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .text.get_rand_1_to_p_1 + 0x00000000401217cc 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x70 (size before relaxing) + .text.is_quadratic_residue_blind + 0x000000004012182c 0xc4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xdc (size before relaxing) + .text.sae_test_pwd_seed_ecc + 0x00000000401218f0 0xc2 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xde (size before relaxing) + *fill* 0x00000000401219b2 0x2 + .text.sae_derive_pwe_ecc + 0x00000000401219b4 0x194 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x1ac (size before relaxing) + .text.sae_test_pwd_seed_ffc + 0x0000000040121b48 0x11d esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x139 (size before relaxing) + *fill* 0x0000000040121c65 0x3 + .text.sae_derive_pwe_ffc + 0x0000000040121c68 0xb1 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xb9 (size before relaxing) + *fill* 0x0000000040121d19 0x3 + .text.sae_derive_k_ffc + 0x0000000040121d1c 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x8a (size before relaxing) + *fill* 0x0000000040121d92 0x2 + .text.sae_get_rand + 0x0000000040121d94 0x98 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xac (size before relaxing) + .text.sae_get_rand_and_mask + 0x0000000040121e2c 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x31 (size before relaxing) + *fill* 0x0000000040121e55 0x3 + .text.sae_parse_commit_scalar + 0x0000000040121e58 0x8e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x9e (size before relaxing) + *fill* 0x0000000040121ee6 0x2 + .text.sae_parse_commit_element_ffc + 0x0000000040121ee8 0xfa esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x11e (size before relaxing) + *fill* 0x0000000040121fe2 0x2 + .text.sae_derive_commit_element_ecc + 0x0000000040121fe4 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x52 (size before relaxing) + *fill* 0x0000000040122032 0x2 + .text.sae_derive_commit_element_ffc + 0x0000000040122034 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x52 (size before relaxing) + *fill* 0x000000004012207e 0x2 + .text.sae_derive_commit + 0x0000000040122080 0xa8 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xc4 (size before relaxing) + .text.sae_derive_k_ecc + 0x0000000040122128 0x7e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x96 (size before relaxing) + *fill* 0x00000000401221a6 0x2 + .text.sae_cn_confirm_ecc + 0x00000000401221a8 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x78 (size before relaxing) + .text.sae_derive_keys + 0x0000000040122214 0xf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x104 (size before relaxing) + .text.sae_parse_commit_element_ecc + 0x0000000040122304 0x9e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xaa (size before relaxing) + *fill* 0x00000000401223a2 0x2 + .text.sae_parse_commit_element + 0x00000000401223a4 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x2d (size before relaxing) + *fill* 0x00000000401223cd 0x3 + .text.sae_parse_password_identifier + 0x00000000401223d0 0xb2 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xb6 (size before relaxing) + *fill* 0x0000000040122482 0x2 + .text.bin_clear_free + 0x0000000040122484 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x0000000040122484 bin_clear_free + *fill* 0x0000000040122493 0x1 + .text.sae_clear_temp_data + 0x0000000040122494 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xa0 (size before relaxing) + 0x0000000040122494 sae_clear_temp_data + .text.sae_clear_data + 0x000000004012250c 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x26 (size before relaxing) + 0x000000004012250c sae_clear_data + *fill* 0x000000004012252e 0x2 + .text.sae_set_group + 0x0000000040122530 0xb9 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xd5 (size before relaxing) + 0x0000000040122530 sae_set_group + *fill* 0x00000000401225e9 0x3 + .text.sae_prepare_commit + 0x00000000401225ec 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x58 (size before relaxing) + 0x00000000401225ec sae_prepare_commit + .text.sae_process_commit + 0x000000004012263c 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x4a (size before relaxing) + 0x000000004012263c sae_process_commit + *fill* 0x000000004012267e 0x2 + .text.sae_write_commit + 0x0000000040122680 0x11a esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x142 (size before relaxing) + 0x0000000040122680 sae_write_commit + *fill* 0x000000004012279a 0x2 + .text.sae_group_allowed + 0x000000004012279c 0x6d esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x000000004012279c sae_group_allowed + *fill* 0x0000000040122809 0x3 + .text.sae_parse_commit + 0x000000004012280c 0xb4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xcc (size before relaxing) + 0x000000004012280c sae_parse_commit + .text.sae_write_confirm + 0x00000000401228c0 0xa2 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0xb2 (size before relaxing) + 0x00000000401228c0 sae_write_confirm + *fill* 0x0000000040122962 0x2 + .text.sae_check_confirm + 0x0000000040122964 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x7a (size before relaxing) + 0x0000000040122964 sae_check_confirm + *fill* 0x00000000401229da 0x2 + .text.rsn_selector_to_bitfield + 0x00000000401229dc 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .text.rsn_key_mgmt_to_bitfield + 0x0000000040122a48 0x61 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + *fill* 0x0000000040122aa9 0x3 + .text.wpa_selector_to_bitfield + 0x0000000040122aac 0x61 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + *fill* 0x0000000040122b0d 0x3 + .text.wpa_key_mgmt_to_bitfield + 0x0000000040122b10 0x46 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + *fill* 0x0000000040122b56 0x2 + .text.wpa_parse_wpa_ie_rsn + 0x0000000040122b58 0x18d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x191 (size before relaxing) + 0x0000000040122b58 wpa_parse_wpa_ie_rsn + *fill* 0x0000000040122ce5 0x3 + .text.wpa_parse_wpa_ie_wpa + 0x0000000040122ce8 0x18a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x0000000040122ce8 wpa_parse_wpa_ie_wpa + *fill* 0x0000000040122e72 0x2 + .text.wpa_eapol_key_mic + 0x0000000040122e74 0x6c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x0000000040122e74 wpa_eapol_key_mic + .text.wpa_compare_rsn_ie + 0x0000000040122ee0 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x0000000040122ee0 wpa_compare_rsn_ie + *fill* 0x0000000040122f1e 0x2 + .text.wpa_pmk_to_ptk + 0x0000000040122f20 0xe4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x0000000040122f20 wpa_pmk_to_ptk + .text.rsn_pmkid + 0x0000000040123004 0x5b esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x63 (size before relaxing) + 0x0000000040123004 rsn_pmkid + *fill* 0x000000004012305f 0x1 + .text.wpa_cipher_to_suite + 0x0000000040123060 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x0000000040123060 wpa_cipher_to_suite + *fill* 0x00000000401230d6 0x2 + .text.ecp_opp 0x00000000401230d8 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x3a (size before relaxing) + *fill* 0x000000004012310e 0x2 + .text.crypto_bignum_init + 0x0000000040123110 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x20 (size before relaxing) + 0x0000000040123110 crypto_bignum_init + .text.crypto_bignum_init_set + 0x000000004012312c 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x32 (size before relaxing) + 0x000000004012312c crypto_bignum_init_set + *fill* 0x000000004012315a 0x2 + .text.crypto_bignum_deinit + 0x000000004012315c 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x16 (size before relaxing) + 0x000000004012315c crypto_bignum_deinit + *fill* 0x000000004012316e 0x2 + .text.crypto_bignum_to_bin + 0x0000000040123170 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4e (size before relaxing) + 0x0000000040123170 crypto_bignum_to_bin + *fill* 0x00000000401231ba 0x2 + .text.crypto_bignum_add + 0x00000000401231bc 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x18 (size before relaxing) + 0x00000000401231bc crypto_bignum_add + .text.crypto_bignum_mod + 0x00000000401231d0 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x18 (size before relaxing) + 0x00000000401231d0 crypto_bignum_mod + .text.crypto_bignum_exptmod + 0x00000000401231e4 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x1c (size before relaxing) + 0x00000000401231e4 crypto_bignum_exptmod + .text.crypto_bignum_inverse + 0x00000000401231fc 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x18 (size before relaxing) + 0x00000000401231fc crypto_bignum_inverse + .text.crypto_bignum_sub + 0x0000000040123210 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x18 (size before relaxing) + 0x0000000040123210 crypto_bignum_sub + .text.crypto_bignum_div + 0x0000000040123224 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x0000000040123224 crypto_bignum_div + *fill* 0x000000004012323d 0x3 + .text.crypto_bignum_mulmod + 0x0000000040123240 0x19 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x0000000040123240 crypto_bignum_mulmod + *fill* 0x0000000040123259 0x3 + .text.crypto_bignum_cmp + 0x000000004012325c 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004012325c crypto_bignum_cmp + *fill* 0x000000004012326d 0x3 + .text.crypto_bignum_bits + 0x0000000040123270 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x10 (size before relaxing) + 0x0000000040123270 crypto_bignum_bits + .text.crypto_bignum_is_zero + 0x000000004012327c 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004012327c crypto_bignum_is_zero + *fill* 0x0000000040123292 0x2 + .text.crypto_bignum_is_one + 0x0000000040123294 0x16 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x0000000040123294 crypto_bignum_is_one + *fill* 0x00000000401232aa 0x2 + .text.crypto_bignum_legendre + 0x00000000401232ac 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x94 (size before relaxing) + 0x00000000401232ac crypto_bignum_legendre + .text.crypto_ec_deinit + 0x0000000040123324 0x17 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x0000000040123324 crypto_ec_deinit + *fill* 0x000000004012333b 0x1 + .text.crypto_ec_init + 0x000000004012333c 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x3c (size before relaxing) + 0x000000004012333c crypto_ec_init + .text.crypto_ec_point_init + 0x0000000040123370 0x22 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x26 (size before relaxing) + 0x0000000040123370 crypto_ec_point_init + *fill* 0x0000000040123392 0x2 + .text.crypto_ec_prime_len + 0x0000000040123394 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x10 (size before relaxing) + 0x0000000040123394 crypto_ec_prime_len + .text.crypto_ec_prime_len_bits + 0x00000000401233a0 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x10 (size before relaxing) + 0x00000000401233a0 crypto_ec_prime_len_bits + .text.crypto_ec_point_deinit + 0x00000000401233ac 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x16 (size before relaxing) + 0x00000000401233ac crypto_ec_point_deinit + *fill* 0x00000000401233be 0x2 + .text.crypto_ec_point_to_bin + 0x00000000401233c0 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x4a (size before relaxing) + 0x00000000401233c0 crypto_ec_point_to_bin + *fill* 0x0000000040123402 0x2 + .text.crypto_ec_point_from_bin + 0x0000000040123404 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x66 (size before relaxing) + 0x0000000040123404 crypto_ec_point_from_bin + *fill* 0x000000004012345a 0x2 + .text.crypto_ec_point_add + 0x000000004012345c 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x3e (size before relaxing) + 0x000000004012345c crypto_ec_point_add + *fill* 0x0000000040123492 0x2 + .text.crypto_ec_point_mul + 0x0000000040123494 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x5a (size before relaxing) + 0x0000000040123494 crypto_ec_point_mul + *fill* 0x00000000401234de 0x2 + .text.crypto_ec_point_invert + 0x00000000401234e0 0x14 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x18 (size before relaxing) + 0x00000000401234e0 crypto_ec_point_invert + .text.crypto_ec_point_compute_y_sqr + 0x00000000401234f4 0xd2 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x106 (size before relaxing) + 0x00000000401234f4 crypto_ec_point_compute_y_sqr + *fill* 0x00000000401235c6 0x2 + .text.crypto_ec_point_solve_y_coord + 0x00000000401235c8 0xa6 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0xc6 (size before relaxing) + 0x00000000401235c8 crypto_ec_point_solve_y_coord + *fill* 0x000000004012366e 0x2 + .text.crypto_ec_point_is_at_infinity + 0x0000000040123670 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x10 (size before relaxing) + 0x0000000040123670 crypto_ec_point_is_at_infinity + .text.crypto_ec_point_is_on_curve + 0x000000004012367c 0x8d esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0xa1 (size before relaxing) + 0x000000004012367c crypto_ec_point_is_on_curve + *fill* 0x0000000040123709 0x3 + .text.crypto_ec_point_cmp + 0x000000004012370c 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004012370c crypto_ec_point_cmp + *fill* 0x000000004012371d 0x3 + .text.dh_groups_get + 0x0000000040123720 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + 0x0000000040123720 dh_groups_get + *fill* 0x0000000040123746 0x2 + .text.hostap_init + 0x0000000040123748 0x12c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x144 (size before relaxing) + 0x0000000040123748 hostap_init + .text.hostap_deinit + 0x0000000040123874 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x0000000040123874 hostap_deinit + .text.wpa_sm_alloc_eapol + 0x00000000401238cc 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x00000000401238cc wpa_sm_alloc_eapol + .text.wpa_sm_free_eapol + 0x0000000040123944 0xe esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x0000000040123944 wpa_sm_free_eapol + *fill* 0x0000000040123952 0x2 + .text.wpa_sm_deauthenticate + 0x0000000040123954 0x1b esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x1e (size before relaxing) + 0x0000000040123954 wpa_sm_deauthenticate + *fill* 0x000000004012396f 0x1 + .text._pmksa_cache_free_entry + 0x0000000040123970 0xf esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + *fill* 0x000000004012397f 0x1 + .text.pmksa_cache_free_entry + 0x0000000040123980 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + *fill* 0x000000004012399e 0x2 + .text.pmksa_cache_set_expiration + 0x00000000401239a0 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + *fill* 0x0000000040123a02 0x2 + .text.pmksa_cache_expire + 0x0000000040123a04 0x4f esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x52 (size before relaxing) + *fill* 0x0000000040123a53 0x1 + .text.pmksa_cache_flush + 0x0000000040123a54 0x56 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x0000000040123a54 pmksa_cache_flush + *fill* 0x0000000040123aaa 0x2 + .text.pmksa_cache_add + 0x0000000040123aac 0x1a0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x0000000040123aac pmksa_cache_add + .text.pmksa_cache_clone_entry + 0x0000000040123c4c 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x38 (size before relaxing) + .text.pmksa_cache_deinit + 0x0000000040123c80 0x3a esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x3e (size before relaxing) + 0x0000000040123c80 pmksa_cache_deinit + *fill* 0x0000000040123cba 0x2 + .text.pmksa_cache_get + 0x0000000040123cbc 0x39 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x0000000040123cbc pmksa_cache_get + *fill* 0x0000000040123cf5 0x3 + .text.pmksa_cache_get_opportunistic + 0x0000000040123cf8 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x0000000040123cf8 pmksa_cache_get_opportunistic + .text.pmksa_cache_set_current + 0x0000000040123d28 0x6e esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x72 (size before relaxing) + 0x0000000040123d28 pmksa_cache_set_current + *fill* 0x0000000040123d96 0x2 + .text.pmksa_cache_init + 0x0000000040123d98 0x36 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x3a (size before relaxing) + 0x0000000040123d98 pmksa_cache_init + *fill* 0x0000000040123dce 0x2 + .text.hostapd_derive_psk + 0x0000000040123dd0 0x2e esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + *fill* 0x0000000040123dfe 0x2 + .text.hostapd_setup_wpa_psk + 0x0000000040123e00 0x2d esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x0000000040123e00 hostapd_setup_wpa_psk + *fill* 0x0000000040123e2d 0x3 + .text.hostapd_get_psk + 0x0000000040123e30 0x3b esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x0000000040123e30 hostapd_get_psk + *fill* 0x0000000040123e6b 0x1 + .text.wifi_softap_get_config_local + 0x0000000040123e6c 0x150 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x178 (size before relaxing) + .text.wifi_station_get_config_local + 0x0000000040123fbc 0x130 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x14c (size before relaxing) + .text.wifi_api_unlock$part$2 + 0x00000000401240ec 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x1f (size before relaxing) + *fill* 0x0000000040124107 0x1 + .text.wifi_get_init_state + 0x0000000040124108 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004012410c wifi_get_init_state + *fill* 0x0000000040124116 0x2 + .text.wifi_is_stop_in_progress + 0x0000000040124118 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x000000004012411c wifi_is_stop_in_progress + *fill* 0x0000000040124127 0x1 + .text.wifi_api_lock + 0x0000000040124128 0x44 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x54 (size before relaxing) + 0x000000004012412c wifi_api_lock + .text.wifi_init_completed + 0x000000004012416c 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x58 (size before relaxing) + 0x000000004012416c wifi_init_completed + .text.wifi_api_unlock + 0x00000000401241a4 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x1d (size before relaxing) + 0x00000000401241a4 wifi_api_unlock + *fill* 0x00000000401241b6 0x2 + .text.wifi_softap_deauth + 0x00000000401241b8 0xa8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0xc0 (size before relaxing) + 0x00000000401241c0 wifi_softap_deauth + .text.wifi_check_chan_param + 0x0000000040124260 0x56 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x66 (size before relaxing) + 0x0000000040124260 wifi_check_chan_param + *fill* 0x00000000401242b6 0x2 + .text.wifi_deinit_in_caller_task + 0x00000000401242b8 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x42 (size before relaxing) + 0x00000000401242bc wifi_deinit_in_caller_task + *fill* 0x00000000401242e2 0x2 + .text.wifi_init_in_caller_task + 0x00000000401242e4 0x90 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0xbc (size before relaxing) + 0x00000000401242ec wifi_init_in_caller_task + .text.wifi_osi_funcs_register + 0x0000000040124374 0x5e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x76 (size before relaxing) + 0x0000000040124384 wifi_osi_funcs_register + *fill* 0x00000000401243d2 0x2 + .text.esp_wifi_init_internal + 0x00000000401243d4 0x130 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x1ac (size before relaxing) + 0x00000000401243e4 esp_wifi_init_internal + .text.esp_wifi_deinit_internal + 0x0000000040124504 0xf6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x16a (size before relaxing) + 0x000000004012450c esp_wifi_deinit_internal + *fill* 0x00000000401245fa 0x2 + .text.esp_wifi_set_mode + 0x00000000401245fc 0x34 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x48 (size before relaxing) + 0x00000000401245fc esp_wifi_set_mode + .text.esp_wifi_start + 0x0000000040124630 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x44 (size before relaxing) + 0x0000000040124630 esp_wifi_start + .text.esp_wifi_stop + 0x000000004012465c 0x1f7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x24f (size before relaxing) + 0x000000004012467c esp_wifi_stop + *fill* 0x0000000040124853 0x1 + .text.esp_wifi_connect + 0x0000000040124854 0x78 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x94 (size before relaxing) + 0x000000004012485c esp_wifi_connect + .text.esp_wifi_deauth_sta + 0x00000000401248cc 0x80 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0xa0 (size before relaxing) + 0x00000000401248d0 esp_wifi_deauth_sta + .text.esp_wifi_set_config + 0x000000004012494c 0xc6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0xe2 (size before relaxing) + 0x0000000040124958 esp_wifi_set_config + *fill* 0x0000000040124a12 0x2 + .text.esp_wifi_get_config + 0x0000000040124a14 0x8f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0xb6 (size before relaxing) + 0x0000000040124a18 esp_wifi_get_config + *fill* 0x0000000040124aa3 0x1 + .text.esp_wifi_get_channel + 0x0000000040124aa4 0xaa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0xc2 (size before relaxing) + 0x0000000040124aa8 esp_wifi_get_channel + *fill* 0x0000000040124b4e 0x2 + .text.esp_wifi_get_mac + 0x0000000040124b50 0x88 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0xa8 (size before relaxing) + 0x0000000040124b54 esp_wifi_get_mac + .text.esp_wifi_set_storage + 0x0000000040124bd8 0x48 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x5c (size before relaxing) + 0x0000000040124bd8 esp_wifi_set_storage + .text.esp_wifi_internal_reg_rxcb + 0x0000000040124c20 0x7a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x96 (size before relaxing) + 0x0000000040124c24 esp_wifi_internal_reg_rxcb + *fill* 0x0000000040124c9a 0x2 + .text.esp_wifi_internal_set_sta_ip + 0x0000000040124c9c 0x5f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x7b (size before relaxing) + 0x0000000040124ca0 esp_wifi_internal_set_sta_ip + *fill* 0x0000000040124cfb 0x1 + .text.wifi_set_event_handler + 0x0000000040124cfc 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x0000000040124d00 wifi_set_event_handler + .text.wifi_event_post + 0x0000000040124d0c 0x25 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x29 (size before relaxing) + 0x0000000040124d10 wifi_event_post + *fill* 0x0000000040124d31 0x3 + .text.wifi_mesh_event_post + 0x0000000040124d34 0x4e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x56 (size before relaxing) + 0x0000000040124d3c wifi_mesh_event_post + *fill* 0x0000000040124d82 0x2 + .text.esp_wifi_vnd_lora_enable + 0x0000000040124d84 0xd4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0xe8 (size before relaxing) + 0x0000000040124d84 esp_wifi_vnd_lora_enable + .text.esp_wifi_vnd_lora_disable + 0x0000000040124e58 0x4c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x58 (size before relaxing) + 0x0000000040124e58 esp_wifi_vnd_lora_disable + .text.esp_wifi_get_event_mask + 0x0000000040124ea4 0x53 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x67 (size before relaxing) + 0x0000000040124eac esp_wifi_get_event_mask + *fill* 0x0000000040124ef7 0x1 + .text.esp_wifi_ipc_internal + 0x0000000040124ef8 0x172 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x19e (size before relaxing) + 0x0000000040124f00 esp_wifi_ipc_internal + *fill* 0x000000004012506a 0x2 + .text.esp_mesh_map_deauth + 0x000000004012506c 0x80 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0xa4 (size before relaxing) + 0x0000000040125074 esp_mesh_map_deauth + .text.ieee80211_freedom_inside_cb + 0x00000000401250ec 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x3c (size before relaxing) + 0x00000000401250ec ieee80211_freedom_inside_cb + .text.ieee80211_freedom_init + 0x0000000040125124 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x2c (size before relaxing) + 0x0000000040125128 ieee80211_freedom_init + .text.ieee80211_user_ie_init + 0x0000000040125148 0x3d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x41 (size before relaxing) + 0x000000004012514c ieee80211_user_ie_init + *fill* 0x0000000040125185 0x3 + .text.ieee80211_ifattach + 0x0000000040125188 0x11e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x186 (size before relaxing) + 0x0000000040125188 ieee80211_ifattach + *fill* 0x00000000401252a6 0x2 + .text.ieee80211_ifdetach + 0x00000000401252a8 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x1b (size before relaxing) + 0x00000000401252a8 ieee80211_ifdetach + *fill* 0x00000000401252b7 0x1 + .text.wifi_create_softap + 0x00000000401252b8 0xf0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x118 (size before relaxing) + 0x00000000401252c0 wifi_create_softap + .text.wifi_destroy_softap + 0x00000000401253a8 0x66 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x82 (size before relaxing) + 0x00000000401253a8 wifi_destroy_softap + *fill* 0x000000004012540e 0x2 + .text.wifi_create_sta + 0x0000000040125410 0x104 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x144 (size before relaxing) + 0x0000000040125418 wifi_create_sta + .text.wifi_destroy_sta + 0x0000000040125514 0x6e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x96 (size before relaxing) + 0x0000000040125514 wifi_destroy_sta + *fill* 0x0000000040125582 0x2 + .text.wifi_mode_set + 0x0000000040125584 0x1e4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + 0x21f (size before relaxing) + 0x000000004012559c wifi_mode_set + *fill* 0x0000000040125768 0x0 + .text.ieee80211_crypto_encap + 0x0000000040125768 0x8d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0x95 (size before relaxing) + 0x0000000040125774 ieee80211_crypto_encap + *fill* 0x00000000401257f5 0x3 + .text.ieee80211_crypto_decap + 0x00000000401257f8 0x9d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0xb1 (size before relaxing) + 0x00000000401257f8 ieee80211_crypto_decap + *fill* 0x0000000040125895 0x3 + .text.ieee80211_crypto_aes_128_cmac_decrypt + 0x0000000040125898 0x19e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0x1be (size before relaxing) + 0x00000000401258b0 ieee80211_crypto_aes_128_cmac_decrypt + *fill* 0x0000000040125a36 0x2 + .text.ccmp_encap + 0x0000000040125a38 0xb6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + *fill* 0x0000000040125aee 0x2 + .text.ieee80211_ccmp_decrypt + 0x0000000040125af0 0x373 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x37f (size before relaxing) + 0x0000000040125b04 ieee80211_ccmp_decrypt + *fill* 0x0000000040125e63 0x1 + .text.ieee80211_ccmp_encrypt + 0x0000000040125e64 0x120 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + 0x130 (size before relaxing) + 0x0000000040125e6c ieee80211_ccmp_encrypt + .text.tkip_decap + 0x0000000040125f84 0xc9 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + 0xcd (size before relaxing) + *fill* 0x000000004012604d 0x3 + .text.tkip_encap + 0x0000000040126050 0xce /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + 0xd2 (size before relaxing) + *fill* 0x000000004012611e 0x2 + .text.wep_encap + 0x0000000040126120 0x7c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + .text.ieee80211_hostap_send_beacon + 0x000000004012619c 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x16 (size before relaxing) + *fill* 0x00000000401261aa 0x2 + .text.hostap_handle_timer + 0x00000000401261ac 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x16 (size before relaxing) + 0x00000000401261ac hostap_handle_timer + *fill* 0x00000000401261ba 0x2 + .text.ieee80211_hostapd_ps_txcb + 0x00000000401261bc 0x28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x30 (size before relaxing) + 0x00000000401261c0 ieee80211_hostapd_ps_txcb + .text.ieee80211_hostap_send_beacon_process + 0x00000000401261e4 0x3c6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x3f6 (size before relaxing) + 0x0000000040126224 ieee80211_hostap_send_beacon_process + *fill* 0x00000000401265aa 0x2 + .text.ieee80211_hostap_attach + 0x00000000401265ac 0x1fc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x258 (size before relaxing) + 0x00000000401265c8 ieee80211_hostap_attach + .text.hostap_handle_timer_process + 0x00000000401267a8 0x18b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x1d3 (size before relaxing) + 0x00000000401267c0 hostap_handle_timer_process + *fill* 0x0000000040126933 0x1 + .text.wifi_ap_reg_rxcb + 0x0000000040126934 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x0000000040126938 wifi_ap_reg_rxcb + *fill* 0x0000000040126942 0x2 + .text.hostap_input + 0x0000000040126944 0x16f6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x18a2 (size before relaxing) + 0x00000000401269a0 hostap_input + *fill* 0x000000004012803a 0x2 + .text.ap_rx_cb + 0x000000004012803c 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x22 (size before relaxing) + 0x000000004012803c ap_rx_cb + *fill* 0x0000000040128056 0x2 + .text.wifi_softap_start + 0x0000000040128058 0x3e3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x463 (size before relaxing) + 0x0000000040128090 wifi_softap_start + *fill* 0x000000004012843b 0x1 + .text.ieee80211_hostapd_beacon_txcb + 0x000000004012843c 0x7a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0xae (size before relaxing) + 0x000000004012843c ieee80211_hostapd_beacon_txcb + *fill* 0x00000000401284b6 0x2 + .text.wifi_softap_stop + 0x00000000401284b8 0x171 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + 0x1cd (size before relaxing) + 0x00000000401284b8 wifi_softap_stop + *fill* 0x0000000040128629 0x3 + .text.addba_response_txcb + 0x000000004012862c 0x227 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x23b (size before relaxing) + *fill* 0x0000000040128853 0x1 + .text.ieee80211_ampdu_timeout + 0x0000000040128854 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x16 (size before relaxing) + *fill* 0x0000000040128862 0x2 + .text.addba_timeout + 0x0000000040128864 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x16 (size before relaxing) + *fill* 0x0000000040128872 0x2 + .text.ieee80211_add_htinfo_body + 0x0000000040128874 0x18d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x19d (size before relaxing) + *fill* 0x0000000040128a01 0x3 + .text.unlikely.ieee80211_ampdu_start_age_timer$part$1 + 0x0000000040128a04 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x2e (size before relaxing) + *fill* 0x0000000040128a2e 0x2 + .text.ieee80211_add_htcap_body + 0x0000000040128a30 0x214 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x22c (size before relaxing) + .text.ht_recv_action_ba_addba_response + 0x0000000040128c44 0x170 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x180 (size before relaxing) + .text.ampdu_tx_stop + 0x0000000040128db4 0x8e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0xa2 (size before relaxing) + *fill* 0x0000000040128e42 0x2 + .text.ampdu_free_rx_ba_index$part$8 + 0x0000000040128e44 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x34 (size before relaxing) + .text.ampdu_rx_stop + 0x0000000040128e70 0x123 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x14b (size before relaxing) + *fill* 0x0000000040128f93 0x1 + .text.ht_recv_action_ba_delba + 0x0000000040128f94 0x57 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x76 (size before relaxing) + *fill* 0x0000000040128feb 0x1 + .text.ht_action_output + 0x0000000040128fec 0xe5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0xfd (size before relaxing) + *fill* 0x00000000401290d1 0x3 + .text.ht_send_action_ba_delba + 0x00000000401290d4 0x148 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x16c (size before relaxing) + .text.ht_send_action_ba_addba + 0x000000004012921c 0x1f0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x220 (size before relaxing) + .text.ieee80211_ht_attach + 0x000000004012940c 0x22a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x27e (size before relaxing) + 0x0000000040129450 ieee80211_ht_attach + *fill* 0x0000000040129636 0x2 + .text.ampdu_alloc_rx_ba_index + 0x0000000040129638 0x88 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x9c (size before relaxing) + 0x0000000040129638 ampdu_alloc_rx_ba_index + .text.ht_recv_action_ba_addba_request + 0x00000000401296c0 0x240 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x268 (size before relaxing) + .text.ieee80211_ht_deattach + 0x0000000040129900 0x44 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x54 (size before relaxing) + 0x0000000040129900 ieee80211_ht_deattach + .text.ieee80211_cal_tx_pps + 0x0000000040129944 0x4e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x5a (size before relaxing) + 0x0000000040129944 ieee80211_cal_tx_pps + *fill* 0x0000000040129992 0x2 + .text.ieee80211_ampdu_enable + 0x0000000040129994 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x2e (size before relaxing) + 0x0000000040129994 ieee80211_ampdu_enable + *fill* 0x00000000401299be 0x2 + .text.addba_timeout_process + 0x00000000401299c0 0x52 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x56 (size before relaxing) + 0x00000000401299c0 addba_timeout_process + *fill* 0x0000000040129a12 0x2 + .text.ieee80211_ampdu_request + 0x0000000040129a14 0x271 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x295 (size before relaxing) + 0x0000000040129a34 ieee80211_ampdu_request + *fill* 0x0000000040129c85 0x3 + .text.ieee80211_ampdu_age_all + 0x0000000040129c88 0x37c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x3b0 (size before relaxing) + 0x0000000040129c9c ieee80211_ampdu_age_all + .text.ieee80211_ampdu_deinit_age_timer + 0x000000004012a004 0x42 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x52 (size before relaxing) + 0x000000004012a004 ieee80211_ampdu_deinit_age_timer + *fill* 0x000000004012a046 0x2 + .text.ieee80211_recv_bar + 0x000000004012a048 0x87 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x9b (size before relaxing) + 0x000000004012a048 ieee80211_recv_bar + *fill* 0x000000004012a0cf 0x1 + .text.ieee80211_ht_node_cleanup + 0x000000004012a0d0 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x3c (size before relaxing) + 0x000000004012a0d0 ieee80211_ht_node_cleanup + .text.ieee80211_ht_node_init + 0x000000004012a0fc 0x7a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x92 (size before relaxing) + 0x000000004012a100 ieee80211_ht_node_init + *fill* 0x000000004012a176 0x2 + .text.ieee80211_parse_htcap + 0x000000004012a178 0x10a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x122 (size before relaxing) + 0x000000004012a180 ieee80211_parse_htcap + *fill* 0x000000004012a282 0x2 + .text.ieee80211_has_ht40_bss + 0x000000004012a284 0xb2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0xba (size before relaxing) + 0x000000004012a284 ieee80211_has_ht40_bss + *fill* 0x000000004012a336 0x2 + .text.ieee80211_update_channel + 0x000000004012a338 0x3da /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x422 (size before relaxing) + 0x000000004012a348 ieee80211_update_channel + *fill* 0x000000004012a712 0x2 + .text.ieee80211_ht_updatehtcap + 0x000000004012a714 0x2f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x3e (size before relaxing) + 0x000000004012a714 ieee80211_ht_updatehtcap + *fill* 0x000000004012a743 0x1 + .text.ieee80211_ht_updateparams + 0x000000004012a744 0x27c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x2b8 (size before relaxing) + 0x000000004012a75c ieee80211_ht_updateparams + .text.ieee80211_setup_htrates + 0x000000004012a9c0 0xd7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0xef (size before relaxing) + 0x000000004012a9c0 ieee80211_setup_htrates + *fill* 0x000000004012aa97 0x1 + .text.ieee80211_setup_basic_htrates + 0x000000004012aa98 0xbe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0xce (size before relaxing) + 0x000000004012aa9c ieee80211_setup_basic_htrates + *fill* 0x000000004012ab56 0x2 + .text.ieee80211_add_htcap + 0x000000004012ab58 0x55 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x69 (size before relaxing) + 0x000000004012ab5c ieee80211_add_htcap + *fill* 0x000000004012abad 0x3 + .text.ieee80211_add_htcap_vendor + 0x000000004012abb0 0x34 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x38 (size before relaxing) + 0x000000004012abb0 ieee80211_add_htcap_vendor + .text.ieee80211_add_htinfo + 0x000000004012abe4 0x55 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x69 (size before relaxing) + 0x000000004012abe8 ieee80211_add_htinfo + *fill* 0x000000004012ac39 0x3 + .text.ieee80211_add_htinfo_vendor + 0x000000004012ac3c 0x6a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x7e (size before relaxing) + 0x000000004012ac40 ieee80211_add_htinfo_vendor + *fill* 0x000000004012aca6 0x2 + .text.ieee80211_decap1 + 0x000000004012aca8 0x70 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x000000004012acac ieee80211_decap1 + .text.ieee80211_decap_amsdu + 0x000000004012ad18 0x107 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + 0x133 (size before relaxing) + 0x000000004012ad1c ieee80211_decap_amsdu + *fill* 0x000000004012ae1f 0x1 + .text.ieee80211_add_ie_vendor_esp_head + 0x000000004012ae20 0x34 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + 0x000000004012ae24 ieee80211_add_ie_vendor_esp_head + .text.ieee80211_add_ie_vendor_esp_manufacturer + 0x000000004012ae54 0x6f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + 0x77 (size before relaxing) + 0x000000004012ae54 ieee80211_add_ie_vendor_esp_manufacturer + *fill* 0x000000004012aec3 0x1 + .text.wpa_cipher + 0x000000004012aec4 0x82 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x8a (size before relaxing) + *fill* 0x000000004012af46 0x2 + .text.rsn_cipher + 0x000000004012af48 0xa0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .text.ieee80211_decap + 0x000000004012afe8 0x1a7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x1cf (size before relaxing) + 0x000000004012aff4 ieee80211_decap + *fill* 0x000000004012b18f 0x1 + .text.ieee80211_setup_phy_mode + 0x000000004012b190 0x108 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x10c (size before relaxing) + 0x000000004012b1a0 ieee80211_setup_phy_mode + .text.ieee80211_setup_rates + 0x000000004012b298 0x129 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x131 (size before relaxing) + 0x000000004012b298 ieee80211_setup_rates + *fill* 0x000000004012b3c1 0x3 + .text.ieee80211_set_max_rate + 0x000000004012b3c4 0x1ed /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x205 (size before relaxing) + 0x000000004012b3d0 ieee80211_set_max_rate + *fill* 0x000000004012b5b1 0x3 + .text.ieee80211_alloc_challenge + 0x000000004012b5b4 0x59 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x61 (size before relaxing) + 0x000000004012b5b8 ieee80211_alloc_challenge + *fill* 0x000000004012b60d 0x3 + .text.ieee80211_parse_beacon + 0x000000004012b610 0x6cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x717 (size before relaxing) + 0x000000004012b620 ieee80211_parse_beacon + *fill* 0x000000004012bcdb 0x1 + .text.ieee80211_parse_wpa + 0x000000004012bcdc 0x122 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x13a (size before relaxing) + 0x000000004012bcdc ieee80211_parse_wpa + *fill* 0x000000004012bdfe 0x2 + .text.ieee80211_better_rsn_pairwise_cipher + 0x000000004012be00 0xb3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0xb7 (size before relaxing) + 0x000000004012be04 ieee80211_better_rsn_pairwise_cipher + *fill* 0x000000004012beb3 0x1 + .text.ieee80211_parse_rsn + 0x000000004012beb4 0x9c2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0xa02 (size before relaxing) + 0x000000004012bf24 ieee80211_parse_rsn + *fill* 0x000000004012c876 0x2 + .text.ieee80211_is_ht_cipher + 0x000000004012c878 0x27 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x2b (size before relaxing) + 0x000000004012c878 ieee80211_is_ht_cipher + *fill* 0x000000004012c89f 0x1 + .text.ieee80211_parse_action + 0x000000004012c8a0 0xf4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x10c (size before relaxing) + 0x000000004012c8a0 ieee80211_parse_action + .text.wifi_get_bw_process + 0x000000004012c994 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x2e (size before relaxing) + 0x000000004012c994 wifi_get_bw_process + *fill* 0x000000004012c9be 0x2 + .text.wifi_set_vnd_ie_cb_process + 0x000000004012c9c0 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x20 (size before relaxing) + 0x000000004012c9c0 wifi_set_vnd_ie_cb_process + .text.wifi_set_event_mask + 0x000000004012c9dc 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x12 (size before relaxing) + 0x000000004012c9dc wifi_set_event_mask + *fill* 0x000000004012c9ea 0x2 + .text.wifi_wpa2_ent_enable_process + 0x000000004012c9ec 0x54 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x58 (size before relaxing) + 0x000000004012c9f8 wifi_wpa2_ent_enable_process + .text.wifi_wpa2_ent_disable_process + 0x000000004012ca40 0x48 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x58 (size before relaxing) + 0x000000004012ca40 wifi_wpa2_ent_disable_process + .text.wifi_set_wps_type_process + 0x000000004012ca88 0x47 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x4f (size before relaxing) + 0x000000004012ca90 wifi_set_wps_type_process + *fill* 0x000000004012cacf 0x1 + .text.wifi_set_wps_status_process + 0x000000004012cad0 0x43 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x4f (size before relaxing) + 0x000000004012cad4 wifi_set_wps_status_process + *fill* 0x000000004012cb13 0x1 + .text.wifi_set_wps_cb_process + 0x000000004012cb14 0x21 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x29 (size before relaxing) + 0x000000004012cb14 wifi_set_wps_cb_process + *fill* 0x000000004012cb35 0x3 + .text.wifi_ioctl_ht2040_get + 0x000000004012cb38 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x1a (size before relaxing) + 0x000000004012cb38 wifi_ioctl_ht2040_get + *fill* 0x000000004012cb4e 0x2 + .text.wifi_internal_ioctl_process + 0x000000004012cb50 0xbb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xc3 (size before relaxing) + 0x000000004012cb64 wifi_internal_ioctl_process + *fill* 0x000000004012cc0b 0x1 + .text.ieee80211_ioctl_process + 0x000000004012cc0c 0xf8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x100 (size before relaxing) + 0x000000004012cc18 ieee80211_ioctl_process + .text.wifi_restart_process + 0x000000004012cd04 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x35 (size before relaxing) + 0x000000004012cd04 wifi_restart_process + *fill* 0x000000004012cd2a 0x2 + .text.wifi_pmk_is_valid + 0x000000004012cd2c 0x25 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x2d (size before relaxing) + *fill* 0x000000004012cd51 0x3 + .text.wifi_set_ant_gpio + 0x000000004012cd54 0xd7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xe7 (size before relaxing) + 0x000000004012cd60 wifi_set_ant_gpio + *fill* 0x000000004012ce2b 0x1 + .text.wifi_set_auto_connect_process + 0x000000004012ce2c 0xd8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xf8 (size before relaxing) + 0x000000004012ce38 wifi_set_auto_connect_process + .text.wifi_scan_stop_process + 0x000000004012cf04 0x51 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x69 (size before relaxing) + 0x000000004012cf08 wifi_scan_stop_process + *fill* 0x000000004012cf55 0x3 + .text.wifi_scan_start_process + 0x000000004012cf58 0xfc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x120 (size before relaxing) + 0x000000004012cf68 wifi_scan_start_process + .text.wifi_set_vnd_ie_process + 0x000000004012d054 0x11c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x128 (size before relaxing) + 0x000000004012d054 wifi_set_vnd_ie_process + .text.wifi_get_ap_info_process + 0x000000004012d170 0x166 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x186 (size before relaxing) + 0x000000004012d17c wifi_get_ap_info_process + *fill* 0x000000004012d2d6 0x2 + .text.wifi_set_promis_filter_process + 0x000000004012d2d8 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x13 (size before relaxing) + 0x000000004012d2d8 wifi_set_promis_filter_process + *fill* 0x000000004012d2e7 0x1 + .text.wifi_set_promis_ctrl_filter_process + 0x000000004012d2e8 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x13 (size before relaxing) + 0x000000004012d2e8 wifi_set_promis_ctrl_filter_process + *fill* 0x000000004012d2f7 0x1 + .text.wifi_get_ap_list_process + 0x000000004012d2f8 0x38e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x3ce (size before relaxing) + 0x000000004012d308 wifi_get_ap_list_process + *fill* 0x000000004012d686 0x2 + .text.wifi_station_set_config_local_2 + 0x000000004012d688 0x638 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x6d4 (size before relaxing) + .text.wifi_set_config_process + 0x000000004012dcc0 0xa26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xb56 (size before relaxing) + 0x000000004012dce4 wifi_set_config_process + *fill* 0x000000004012e6e6 0x2 + .text.wifi_get_protocol_process + 0x000000004012e6e8 0x74 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x80 (size before relaxing) + 0x000000004012e6e8 wifi_get_protocol_process + .text.wifi_set_home_channel_process + 0x000000004012e75c 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x36 (size before relaxing) + 0x000000004012e75c wifi_set_home_channel_process + *fill* 0x000000004012e786 0x2 + .text.wifi_set_channel_process + 0x000000004012e788 0x112 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x136 (size before relaxing) + 0x000000004012e78c wifi_set_channel_process + *fill* 0x000000004012e89a 0x2 + .text.wifi_set_ps_process + 0x000000004012e89c 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x14 (size before relaxing) + 0x000000004012e89c wifi_set_ps_process + *fill* 0x000000004012e8a9 0x3 + .text.wifi_set_rxcb_process + 0x000000004012e8ac 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x2c (size before relaxing) + 0x000000004012e8ac wifi_set_rxcb_process + .text.wifi_set_max_tpw + 0x000000004012e8d0 0x29 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x39 (size before relaxing) + 0x000000004012e8d0 wifi_set_max_tpw + *fill* 0x000000004012e8f9 0x3 + .text.wifi_set_csi + 0x000000004012e8fc 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x1c (size before relaxing) + 0x000000004012e8fc wifi_set_csi + .text.wifi_csi_set_config + 0x000000004012e910 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x14 (size before relaxing) + 0x000000004012e910 wifi_csi_set_config + *fill* 0x000000004012e91d 0x3 + .text.wifi_set_fix_rate_process + 0x000000004012e920 0x8c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xa0 (size before relaxing) + 0x000000004012e928 wifi_set_fix_rate_process + .text.wifi_deauth_sta_process + 0x000000004012e9ac 0x110 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x14f (size before relaxing) + 0x000000004012e9b8 wifi_deauth_sta_process + *fill* 0x000000004012eabc 0x0 + .text.wifi_mesh_map_deauth_progress + 0x000000004012eabc 0xf2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x116 (size before relaxing) + 0x000000004012eac8 wifi_mesh_map_deauth_progress + *fill* 0x000000004012ebae 0x2 + .text.wifi_set_log_mod_process + 0x000000004012ebb0 0x8e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x92 (size before relaxing) + 0x000000004012ebb0 wifi_set_log_mod_process + *fill* 0x000000004012ec3e 0x2 + .text.wifi_get_sta_list_process + 0x000000004012ec40 0x16a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x192 (size before relaxing) + 0x000000004012ec48 wifi_get_sta_list_process + *fill* 0x000000004012edaa 0x2 + .text.wifi_get_channel_process + 0x000000004012edac 0xa0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xb0 (size before relaxing) + 0x000000004012edb8 wifi_get_channel_process + .text.wifi_get_country + 0x000000004012ee4c 0xae /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xc6 (size before relaxing) + 0x000000004012ee54 wifi_get_country + *fill* 0x000000004012eefa 0x2 + .text.wifi_ipc_process + 0x000000004012eefc 0x6c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x7c (size before relaxing) + 0x000000004012ef00 wifi_ipc_process + .text.wifi_ioctl_ht2040_set + 0x000000004012ef68 0x8c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xa4 (size before relaxing) + 0x000000004012ef70 wifi_ioctl_ht2040_set + .text._do_wifi_stop$part$26 + 0x000000004012eff4 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x40 (size before relaxing) + .text.ieee80211_set_appie$part$41 + 0x000000004012f024 0xc4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xd4 (size before relaxing) + .text.wifi_set_appie_process + 0x000000004012f0e8 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x26 (size before relaxing) + 0x000000004012f0e8 wifi_set_appie_process + *fill* 0x000000004012f106 0x2 + .text.current_task_is_wifi_task + 0x000000004012f108 0x23 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x27 (size before relaxing) + 0x000000004012f10c current_task_is_wifi_task + *fill* 0x000000004012f12b 0x1 + .text._do_wifi_start + 0x000000004012f12c 0x8e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xb6 (size before relaxing) + 0x000000004012f130 _do_wifi_start + *fill* 0x000000004012f1ba 0x2 + .text.wifi_set_mac_process + 0x000000004012f1bc 0x1da /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x24e (size before relaxing) + 0x000000004012f1c4 wifi_set_mac_process + *fill* 0x000000004012f396 0x2 + .text.ieee80211_set_phy_bw + 0x000000004012f398 0x178 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x19c (size before relaxing) + 0x000000004012f39c ieee80211_set_phy_bw + .text.ieee80211_set_phy_mode + 0x000000004012f510 0x157 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x1af (size before relaxing) + 0x000000004012f518 ieee80211_set_phy_mode + *fill* 0x000000004012f667 0x1 + .text.wifi_set_protocol_process + 0x000000004012f668 0xaa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xc2 (size before relaxing) + 0x000000004012f668 wifi_set_protocol_process + *fill* 0x000000004012f712 0x2 + .text.wifi_set_bw_process + 0x000000004012f714 0xc5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xdd (size before relaxing) + 0x000000004012f714 wifi_set_bw_process + *fill* 0x000000004012f7d9 0x3 + .text.wifi_station_save_ap_channel + 0x000000004012f7dc 0xfe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x126 (size before relaxing) + 0x000000004012f7e0 wifi_station_save_ap_channel + *fill* 0x000000004012f8da 0x2 + .text.ieee80211_sta_connect + 0x000000004012f8dc 0x176 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x1a6 (size before relaxing) + 0x000000004012f8f8 ieee80211_sta_connect + *fill* 0x000000004012fa52 0x2 + .text._do_wifi_connect + 0x000000004012fa54 0x63 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x82 (size before relaxing) + *fill* 0x000000004012fab7 0x1 + .text.wifi_connect_process + 0x000000004012fab8 0x90 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xaf (size before relaxing) + 0x000000004012fac0 wifi_connect_process + *fill* 0x000000004012fb48 0x0 + .text.ieee80211_sta_disconnect + 0x000000004012fb48 0x97 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xbf (size before relaxing) + 0x000000004012fb48 ieee80211_sta_disconnect + *fill* 0x000000004012fbdf 0x1 + .text._do_wifi_disconnect + 0x000000004012fbe0 0xfc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x12c (size before relaxing) + .text.wifi_disconnect_process + 0x000000004012fcdc 0xb2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xda (size before relaxing) + 0x000000004012fce0 wifi_disconnect_process + *fill* 0x000000004012fd8e 0x2 + .text.wifi_get_macaddr + 0x000000004012fd90 0x34 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x3c (size before relaxing) + 0x000000004012fd90 wifi_get_macaddr + .text.chip_enable + 0x000000004012fdc4 0x45 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x65 (size before relaxing) + 0x000000004012fdc4 chip_enable + *fill* 0x000000004012fe09 0x3 + .text.chip_disable + 0x000000004012fe0c 0x45 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x64 (size before relaxing) + 0x000000004012fe0c chip_disable + *fill* 0x000000004012fe51 0x3 + .text.wifi_reset_mac + 0x000000004012fe54 0xa4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xac (size before relaxing) + 0x000000004012fe70 wifi_reset_mac + .text.wifi_rf_phy_disable + 0x000000004012fef8 0x143 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x157 (size before relaxing) + 0x000000004012ff08 wifi_rf_phy_disable + *fill* 0x000000004013003b 0x1 + .text.wifi_txq_empty + 0x000000004013003c 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x34 (size before relaxing) + 0x000000004013003c wifi_txq_empty + .text.wifi_stop_sw_txq + 0x0000000040130060 0x46 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x6e (size before relaxing) + 0x0000000040130064 wifi_stop_sw_txq + *fill* 0x00000000401300a6 0x2 + .text.wifi_hw_stop + 0x00000000401300a8 0x82 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xce (size before relaxing) + 0x00000000401300ac wifi_hw_stop + *fill* 0x000000004013012a 0x2 + .text.wifi_stop_process + 0x000000004013012c 0xd0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x144 (size before relaxing) + 0x0000000040130130 wifi_stop_process + .text.wifi_menuconfig_init + 0x00000000401301fc 0x366 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x376 (size before relaxing) + 0x0000000040130230 wifi_menuconfig_init + *fill* 0x0000000040130562 0x2 + .text.wpa_crypto_funcs_init + 0x0000000040130564 0x4a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x5a (size before relaxing) + 0x000000004013056c wpa_crypto_funcs_init + *fill* 0x00000000401305ae 0x2 + .text.wifi_lmac_init + 0x00000000401305b0 0x12e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x15a (size before relaxing) + 0x00000000401305cc wifi_lmac_init + *fill* 0x00000000401306de 0x2 + .text.wifi_deinit + 0x00000000401306e0 0x56 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x76 (size before relaxing) + 0x00000000401306e8 wifi_deinit + *fill* 0x0000000040130736 0x2 + .text.wifi_init_process + 0x0000000040130738 0xda /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x142 (size before relaxing) + 0x0000000040130744 wifi_init_process + *fill* 0x0000000040130812 0x2 + .text.wifi_deinit_process + 0x0000000040130814 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x11 (size before relaxing) + 0x0000000040130814 wifi_deinit_process + *fill* 0x000000004013081e 0x2 + .text.wifi_set_chan_range + 0x0000000040130820 0xbf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x103 (size before relaxing) + 0x0000000040130828 wifi_set_chan_range + *fill* 0x00000000401308df 0x1 + .text.wifi_set_country + 0x00000000401308e0 0x1a2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x1be (size before relaxing) + 0x00000000401308ec wifi_set_country + *fill* 0x0000000040130a82 0x2 + .text.wifi_mac_restore + 0x0000000040130a84 0x36 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x4e (size before relaxing) + 0x0000000040130a84 wifi_mac_restore + *fill* 0x0000000040130aba 0x2 + .text.wifi_restore_process + 0x0000000040130abc 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x25 (size before relaxing) + 0x0000000040130abc wifi_restore_process + *fill* 0x0000000040130acd 0x3 + .text.wifi_ant_config_check + 0x0000000040130ad0 0x86 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x8e (size before relaxing) + 0x0000000040130ad8 wifi_ant_config_check + *fill* 0x0000000040130b56 0x2 + .text.wifi_ant_update + 0x0000000040130b58 0x8d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xa9 (size before relaxing) + 0x0000000040130b5c wifi_ant_update + *fill* 0x0000000040130be5 0x3 + .text.wifi_rf_phy_enable + 0x0000000040130be8 0x137 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x167 (size before relaxing) + 0x0000000040130be8 wifi_rf_phy_enable + *fill* 0x0000000040130d1f 0x1 + .text.wifi_hw_start + 0x0000000040130d20 0x70 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xb8 (size before relaxing) + 0x0000000040130d20 wifi_hw_start + .text.wifi_set_promis_process + 0x0000000040130d90 0x72 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x96 (size before relaxing) + 0x0000000040130d94 wifi_set_promis_process + *fill* 0x0000000040130e02 0x2 + .text.wifi_set_mode_process + 0x0000000040130e04 0x21e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x2f6 (size before relaxing) + 0x0000000040130e08 wifi_set_mode_process + *fill* 0x0000000040131022 0x2 + .text.wifi_start_process + 0x0000000040131024 0x112 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x16e (size before relaxing) + 0x0000000040131028 wifi_start_process + *fill* 0x0000000040131136 0x2 + .text.wifi_set_ant + 0x0000000040131138 0x37 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x4f (size before relaxing) + 0x0000000040131138 wifi_set_ant + *fill* 0x000000004013116f 0x1 + .text.wifi_wps_is_started + 0x0000000040131170 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040131174 wifi_wps_is_started + *fill* 0x000000004013117f 0x1 + .text.wifi_wpa2_is_started + 0x0000000040131180 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0xf (size before relaxing) + 0x0000000040131180 wifi_wpa2_is_started + *fill* 0x000000004013118b 0x1 + .text.ieee80211_ioctl_init + 0x000000004013118c 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x3c (size before relaxing) + 0x0000000040131194 ieee80211_ioctl_init + .text.ieee80211_ioctl_deinit + 0x00000000401311b0 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x12 (size before relaxing) + 0x00000000401311b0 ieee80211_ioctl_deinit + *fill* 0x00000000401311be 0x2 + .text.ieee80211_ioctl + 0x00000000401311c0 0x1df /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x22a (size before relaxing) + 0x00000000401311d4 ieee80211_ioctl + *fill* 0x000000004013139f 0x1 + .text.is_esp_mesh_assoc + 0x00000000401313a0 0x5b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + 0x00000000401313a4 is_esp_mesh_assoc + *fill* 0x00000000401313fb 0x1 + .text.wifi_nvs_commit$part$2 + 0x00000000401313fc 0x22 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x2a (size before relaxing) + *fill* 0x000000004013141e 0x2 + .text.wifi_nvs_cfg_item_init + 0x0000000040131420 0xcf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0xd7 (size before relaxing) + 0x0000000040131430 wifi_nvs_cfg_item_init + *fill* 0x00000000401314ef 0x1 + .text.wifi_nvs_cfg_init + 0x00000000401314f0 0x5c4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x6ec (size before relaxing) + 0x0000000040131618 wifi_nvs_cfg_init + .text.wifi_nvs_get + 0x0000000040131ab4 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0xe (size before relaxing) + 0x0000000040131ab4 wifi_nvs_get + *fill* 0x0000000040131abe 0x2 + .text.ieee80211_adjust_2nd_chan + 0x0000000040131ac0 0x46 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x56 (size before relaxing) + 0x0000000040131ac0 ieee80211_adjust_2nd_chan + *fill* 0x0000000040131b06 0x2 + .text.wifi_nvs_commit + 0x0000000040131b08 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x30 (size before relaxing) + 0x0000000040131b08 wifi_nvs_commit + .text.wifi_nvs_set + 0x0000000040131b28 0x237 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x25b (size before relaxing) + 0x0000000040131b40 wifi_nvs_set + *fill* 0x0000000040131d5f 0x1 + .text.wifi_set_default_ssid + 0x0000000040131d60 0x4a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x5e (size before relaxing) + 0x0000000040131d64 wifi_set_default_ssid + *fill* 0x0000000040131daa 0x2 + .text.wifi_nvs_validate_ap_password + 0x0000000040131dac 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x48 (size before relaxing) + 0x0000000040131dac wifi_nvs_validate_ap_password + .text.wifi_nvs_validate_sta_password + 0x0000000040131de4 0x3e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x4e (size before relaxing) + 0x0000000040131de4 wifi_nvs_validate_sta_password + *fill* 0x0000000040131e22 0x2 + .text.wifi_nvs_validate_ap_chan + 0x0000000040131e24 0x4b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x6b (size before relaxing) + 0x0000000040131e24 wifi_nvs_validate_ap_chan + *fill* 0x0000000040131e6f 0x1 + .text.wifi_nvs_load + 0x0000000040131e70 0x3ba /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x40a (size before relaxing) + *fill* 0x000000004013222a 0x2 + .text.wifi_nvs_restore + 0x000000004013222c 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x14 (size before relaxing) + 0x000000004013222c wifi_nvs_restore + .text.wifi_nvs_get_sta_listen_interval + 0x0000000040132238 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x11 (size before relaxing) + 0x0000000040132238 wifi_nvs_get_sta_listen_interval + *fill* 0x0000000040132245 0x3 + .text.wifi_nvs_deinit + 0x0000000040132248 0x47 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0x57 (size before relaxing) + 0x0000000040132248 wifi_nvs_deinit + *fill* 0x000000004013228f 0x1 + .text.wifi_nvs_init + 0x0000000040132290 0x9c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + 0xbc (size before relaxing) + 0x000000004013229c wifi_nvs_init + .text.ieee80211_classify + 0x000000004013232c 0xb2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0xba (size before relaxing) + *fill* 0x00000000401323de 0x2 + .text.ieee80211_add_wme_param$isra$2 + 0x00000000401323e0 0x8d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x91 (size before relaxing) + *fill* 0x000000004013246d 0x3 + .text.ieee80211_output_pending_eb$part$6 + 0x0000000040132470 0x62 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x6e (size before relaxing) + *fill* 0x00000000401324d2 0x2 + .text.ieee80211_vnd_ie_size$part$7 + 0x00000000401324d4 0x31 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x35 (size before relaxing) + *fill* 0x0000000040132505 0x3 + .text.ieee80211_vnd_ie_set$part$8 + 0x0000000040132508 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x40 (size before relaxing) + .text.ieee80211_set_hmac_stop + 0x0000000040132540 0x2f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x37 (size before relaxing) + 0x0000000040132544 ieee80211_set_hmac_stop + *fill* 0x000000004013256f 0x1 + .text.ieee80211_output + 0x0000000040132570 0x31b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x357 (size before relaxing) + 0x0000000040132588 ieee80211_output + *fill* 0x000000004013288b 0x1 + .text.esp_wifi_internal_tx + 0x000000004013288c 0x308 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x35c (size before relaxing) + 0x000000004013288c esp_wifi_internal_tx + .text.ieee80211_empty_txq + 0x0000000040132b94 0xc8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0xe0 (size before relaxing) + 0x0000000040132b94 ieee80211_empty_txq + .text.ieee80211_output_init + 0x0000000040132c5c 0x23 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x33 (size before relaxing) + 0x0000000040132c64 ieee80211_output_init + *fill* 0x0000000040132c7f 0x1 + .text.ieee80211_send_setup + 0x0000000040132c80 0x180 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x1ac (size before relaxing) + 0x0000000040132c88 ieee80211_send_setup + .text.ieee80211_mgmt_output + 0x0000000040132e00 0x179 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x1ad (size before relaxing) + 0x0000000040132e10 ieee80211_mgmt_output + *fill* 0x0000000040132f79 0x3 + .text.ieee80211_tx_mgt_cb + 0x0000000040132f7c 0x8c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x9c (size before relaxing) + 0x0000000040132f7c ieee80211_tx_mgt_cb + .text.ieee80211_send_nulldata + 0x0000000040133008 0x21e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x272 (size before relaxing) + 0x000000004013300c ieee80211_send_nulldata + *fill* 0x0000000040133226 0x2 + .text.ieee80211_add_xrates + 0x0000000040133228 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x30 (size before relaxing) + 0x0000000040133228 ieee80211_add_xrates + .text.ieee80211_vnd_lora_ie_set + 0x0000000040133254 0x27 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x2f (size before relaxing) + 0x0000000040133254 ieee80211_vnd_lora_ie_set + *fill* 0x000000004013327b 0x1 + .text.ieee80211_send_probereq + 0x000000004013327c 0x3d0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x458 (size before relaxing) + 0x0000000040133284 ieee80211_send_probereq + .text.ieee80211_getcapinfo + 0x000000004013364c 0xac /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0xc0 (size before relaxing) + 0x0000000040133650 ieee80211_getcapinfo + .text.ieee80211_send_mgmt + 0x00000000401336f8 0xb25 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0xc61 (size before relaxing) + 0x0000000040133720 ieee80211_send_mgmt + *fill* 0x000000004013421d 0x3 + .text.ieee80211_alloc_proberesp + 0x0000000040134220 0x3dc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x460 (size before relaxing) + 0x000000004013422c ieee80211_alloc_proberesp + .text.ieee80211_send_proberesp + 0x00000000401345fc 0x1e9 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x250 (size before relaxing) + 0x0000000040134600 ieee80211_send_proberesp + *fill* 0x00000000401347e5 0x3 + .text.ieee80211_alloc_deauth + 0x00000000401347e8 0x58 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x6c (size before relaxing) + 0x00000000401347e8 ieee80211_alloc_deauth + .text.ieee80211_send_deauth + 0x0000000040134840 0x206 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x266 (size before relaxing) + 0x0000000040134844 ieee80211_send_deauth + *fill* 0x0000000040134a46 0x2 + .text.ieee80211_beacon_alloc + 0x0000000040134a48 0x622 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x6f2 (size before relaxing) + 0x0000000040134a60 ieee80211_beacon_alloc + *fill* 0x000000004013506a 0x2 + .text.ieee80211_encap_null_data + 0x000000004013506c 0x232 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x286 (size before relaxing) + 0x0000000040135074 ieee80211_encap_null_data + *fill* 0x000000004013529e 0x2 + .text.ieee80211_pm_tx_null_process + 0x00000000401352a0 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + 0x32 (size before relaxing) + 0x00000000401352a0 ieee80211_pm_tx_null_process + *fill* 0x00000000401352c6 0x2 + .text.ieee80211_phy_deinit + 0x00000000401352c8 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + 0x11 (size before relaxing) + 0x00000000401352c8 ieee80211_phy_deinit + *fill* 0x00000000401352d2 0x2 + .text.ieee80211_phy_type_get + 0x00000000401352d4 0x67 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + 0x6b (size before relaxing) + 0x00000000401352d4 ieee80211_phy_type_get + *fill* 0x000000004013533b 0x1 + .text.ieee80211_phy_mode_show + 0x000000004013533c 0xbb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + 0xd7 (size before relaxing) + 0x0000000040135358 ieee80211_phy_mode_show + *fill* 0x00000000401353f7 0x1 + .text.ieee80211_setup_ratetable + 0x00000000401353f8 0x148 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + 0x15c (size before relaxing) + 0x0000000040135410 ieee80211_setup_ratetable + .text.ieee80211_phy_init + 0x0000000040135540 0xb6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + 0xfa (size before relaxing) + 0x0000000040135540 ieee80211_phy_init + *fill* 0x00000000401355f6 0x2 + .text.ieee80211_psq_init + 0x00000000401355f8 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x1a (size before relaxing) + 0x00000000401355f8 ieee80211_psq_init + *fill* 0x000000004013560e 0x2 + .text.ieee80211_gpsq_init + 0x0000000040135610 0x66 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x76 (size before relaxing) + 0x0000000040135618 ieee80211_gpsq_init + *fill* 0x0000000040135676 0x2 + .text.ieee80211_set_tim + 0x0000000040135678 0x90 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x98 (size before relaxing) + 0x0000000040135678 ieee80211_set_tim + .text.ieee80211_psq_drop_one_pkt + 0x0000000040135708 0x62 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x72 (size before relaxing) + 0x0000000040135708 ieee80211_psq_drop_one_pkt + *fill* 0x000000004013576a 0x2 + .text.ieee80211_psq_send_one_pkt + 0x000000004013576c 0x93 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0xa7 (size before relaxing) + 0x000000004013576c ieee80211_psq_send_one_pkt + *fill* 0x00000000401357ff 0x1 + .text.ieee80211_psq_is_buff_pkt + 0x0000000040135800 0x66 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x7a (size before relaxing) + 0x0000000040135800 ieee80211_psq_is_buff_pkt + *fill* 0x0000000040135866 0x2 + .text.ieee80211_pwrsave + 0x0000000040135868 0x79 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x91 (size before relaxing) + 0x0000000040135868 ieee80211_pwrsave + *fill* 0x00000000401358e1 0x3 + .text.pwrsave_flushq + 0x00000000401358e4 0xfe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x12a (size before relaxing) + 0x00000000401358e4 pwrsave_flushq + *fill* 0x00000000401359e2 0x2 + .text.ieee80211_node_pwrsave + 0x00000000401359e4 0x72 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x86 (size before relaxing) + 0x00000000401359e4 ieee80211_node_pwrsave + *fill* 0x0000000040135a56 0x2 + .text.ieee80211_pwrsave_node_cleanup + 0x0000000040135a58 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x48 (size before relaxing) + 0x0000000040135a58 ieee80211_pwrsave_node_cleanup + .text.ieee80211_pwrsave_txcb + 0x0000000040135a90 0x34 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + 0x3c (size before relaxing) + 0x0000000040135a90 ieee80211_pwrsave_txcb + .text.ieee80211_proto_attach + 0x0000000040135ac4 0x22 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x2a (size before relaxing) + 0x0000000040135ac8 ieee80211_proto_attach + *fill* 0x0000000040135ae6 0x2 + .text.ieee80211_wme_updateparams + 0x0000000040135ae8 0x3e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x4a (size before relaxing) + 0x0000000040135aec ieee80211_wme_updateparams + *fill* 0x0000000040135b26 0x2 + .text.ieee80211_mlme_connect_bss + 0x0000000040135b28 0x10a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x12e (size before relaxing) + 0x0000000040135b38 ieee80211_mlme_connect_bss + *fill* 0x0000000040135c32 0x2 + .text.ieee80211_regdomain_get_country$part$1 + 0x0000000040135c34 0x2e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x36 (size before relaxing) + *fill* 0x0000000040135c62 0x2 + .text.ieee80211_regdomain_max_tx_power + 0x0000000040135c64 0x46 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x4e (size before relaxing) + 0x0000000040135c6c ieee80211_regdomain_max_tx_power + *fill* 0x0000000040135caa 0x2 + .text.ieee80211_regdomain_update + 0x0000000040135cac 0xd9 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0xe5 (size before relaxing) + 0x0000000040135cb0 ieee80211_regdomain_update + *fill* 0x0000000040135d85 0x3 + .text.ieee80211_regdomain_update_in_scan + 0x0000000040135d88 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x16 (size before relaxing) + 0x0000000040135d88 ieee80211_regdomain_update_in_scan + *fill* 0x0000000040135d9a 0x2 + .text.ieee80211_regdomain_update_in_connect + 0x0000000040135d9c 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x18 (size before relaxing) + 0x0000000040135d9c ieee80211_regdomain_update_in_connect + .text.ieee80211_regdomain_get_country + 0x0000000040135db0 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x24 (size before relaxing) + 0x0000000040135db0 ieee80211_regdomain_get_country + .text.ieee80211_add_countryie + 0x0000000040135dc8 0xe6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x102 (size before relaxing) + 0x0000000040135dc8 ieee80211_add_countryie + *fill* 0x0000000040135eae 0x2 + .text.ieee80211_regdomain_max_chan + 0x0000000040135eb0 0x23 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x2f (size before relaxing) + 0x0000000040135eb0 ieee80211_regdomain_max_chan + *fill* 0x0000000040135ed3 0x1 + .text.ieee80211_regdomain_min_chan + 0x0000000040135ed4 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x25 (size before relaxing) + 0x0000000040135ed4 ieee80211_regdomain_min_chan + *fill* 0x0000000040135eea 0x2 + .text.ieee80211_regdomain_chan_in_range + 0x0000000040135eec 0x44 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x50 (size before relaxing) + 0x0000000040135eec ieee80211_regdomain_chan_in_range + .text.ieee80211_regdomain_is_active_scan + 0x0000000040135f30 0x49 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + 0x59 (size before relaxing) + 0x0000000040135f30 ieee80211_regdomain_is_active_scan + *fill* 0x0000000040135f79 0x3 + .text.ieee80211_rfid_locp_recv_reset + 0x0000000040135f7c 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + 0x11 (size before relaxing) + 0x0000000040135f7c ieee80211_rfid_locp_recv_reset + *fill* 0x0000000040135f89 0x3 + .text.ieee80211_rfid_locp_recv + 0x0000000040135f8c 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + 0x20 (size before relaxing) + 0x0000000040135f8c ieee80211_rfid_locp_recv + .text.scan_enter_oper_channel + 0x0000000040135fa8 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x16 (size before relaxing) + *fill* 0x0000000040135fb6 0x2 + .text.scan_inter_channel_timeout + 0x0000000040135fb8 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x16 (size before relaxing) + *fill* 0x0000000040135fc6 0x2 + .text.scan_op_start + 0x0000000040135fc8 0x2fc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x338 (size before relaxing) + .text.unlikely.scan_add_ssid_do + 0x00000000401362c4 0x297 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x2b3 (size before relaxing) + *fill* 0x000000004013655b 0x1 + .text.unlikely.scan_add_ssid + 0x000000004013655c 0x126 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x146 (size before relaxing) + *fill* 0x0000000040136682 0x2 + .text.scan_update_scan_history$part$0 + 0x0000000040136684 0x232 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x24e (size before relaxing) + *fill* 0x00000000401368b6 0x2 + .text.ieee80211_scan_attach + 0x00000000401368b8 0xe8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0xfc (size before relaxing) + 0x00000000401368d0 ieee80211_scan_attach + .text.ieee80211_scan_deattach + 0x00000000401369a0 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x2a (size before relaxing) + 0x00000000401369a0 ieee80211_scan_deattach + *fill* 0x00000000401369be 0x2 + .text.scan_get_apnum + 0x00000000401369c0 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0xf (size before relaxing) + 0x00000000401369c0 scan_get_apnum + *fill* 0x00000000401369cb 0x1 + .text.scan_freq_cal + 0x00000000401369cc 0xcf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0xd3 (size before relaxing) + 0x00000000401369d8 scan_freq_cal + *fill* 0x0000000040136a9b 0x1 + .text.scan_flush_all_tx_buf + 0x0000000040136a9c 0xb1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0xd4 (size before relaxing) + 0x0000000040136aa4 scan_flush_all_tx_buf + *fill* 0x0000000040136b4d 0x3 + .text.scan_cancel + 0x0000000040136b50 0x88 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0xac (size before relaxing) + 0x0000000040136b54 scan_cancel + .text.scan_add_bssid + 0x0000000040136bd8 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x27 (size before relaxing) + 0x0000000040136bd8 scan_add_bssid + *fill* 0x0000000040136bf7 0x1 + .text.scan_remove_bssid + 0x0000000040136bf8 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x14 (size before relaxing) + 0x0000000040136bf8 scan_remove_bssid + .text.scan_hidden_ssid + 0x0000000040136c08 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x12 (size before relaxing) + 0x0000000040136c08 scan_hidden_ssid + *fill* 0x0000000040136c16 0x2 + .text.scan_set_act_duration + 0x0000000040136c18 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x10 (size before relaxing) + 0x0000000040136c18 scan_set_act_duration + .text.scan_set_pas_duration + 0x0000000040136c24 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0xe (size before relaxing) + 0x0000000040136c24 scan_set_pas_duration + *fill* 0x0000000040136c2e 0x2 + .text.scan_add_probe_ssid + 0x0000000040136c30 0x62 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x6a (size before relaxing) + 0x0000000040136c30 scan_add_probe_ssid + *fill* 0x0000000040136c92 0x2 + .text.scan_remove_probe_ssid + 0x0000000040136c94 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x2a (size before relaxing) + 0x0000000040136c94 scan_remove_probe_ssid + *fill* 0x0000000040136cba 0x2 + .text.scan_prefer_chan + 0x0000000040136cbc 0x33e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x37e (size before relaxing) + 0x0000000040136cd8 scan_prefer_chan + *fill* 0x0000000040136ffa 0x2 + .text.scan_build_chan_list + 0x0000000040136ffc 0xe8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x100 (size before relaxing) + 0x0000000040137000 scan_build_chan_list + .text.scan_set_desChan + 0x00000000401370e4 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x14 (size before relaxing) + 0x00000000401370e4 scan_set_desChan + .text.scan_get_type + 0x00000000401370f4 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0xe (size before relaxing) + 0x00000000401370f4 scan_get_type + *fill* 0x00000000401370fe 0x2 + .text.scan_profile_check + 0x0000000040137100 0x33a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x37a (size before relaxing) + 0x0000000040137114 scan_profile_check + *fill* 0x000000004013743a 0x2 + .text.free_bss_info + 0x000000004013743c 0x35 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x3d (size before relaxing) + 0x000000004013743c free_bss_info + *fill* 0x0000000040137471 0x3 + .text.clear_bss_queue + 0x0000000040137474 0x5c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x78 (size before relaxing) + 0x0000000040137478 clear_bss_queue + .text.scan_done + 0x00000000401374d0 0x30e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x38e (size before relaxing) + *fill* 0x00000000401377de 0x2 + .text.scan_next_channel + 0x00000000401377e0 0x22e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x29a (size before relaxing) + *fill* 0x0000000040137a0e 0x2 + .text.scan_enter_oper_channel_process + 0x0000000040137a10 0x51 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x70 (size before relaxing) + 0x0000000040137a14 scan_enter_oper_channel_process + *fill* 0x0000000040137a61 0x3 + .text.scan_inter_channel_timeout_process + 0x0000000040137a64 0xba /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0xd9 (size before relaxing) + 0x0000000040137a6c scan_inter_channel_timeout_process + *fill* 0x0000000040137b1e 0x2 + .text.scan_op_end + 0x0000000040137b20 0x24c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x2a4 (size before relaxing) + .text.scan_start + 0x0000000040137d6c 0x1d8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x240 (size before relaxing) + 0x0000000040137d7c scan_start + .text.check_bss_queue + 0x0000000040137f44 0x28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0x30 (size before relaxing) + 0x0000000040137f44 check_bss_queue + .text.scan_parse_ht2040_coex + 0x0000000040137f6c 0xb5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0xc5 (size before relaxing) + 0x0000000040137f74 scan_parse_ht2040_coex + *fill* 0x0000000040138021 0x3 + .text.scan_parse_beacon + 0x0000000040138024 0x9c4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + 0xafc (size before relaxing) + 0x000000004013806c scan_parse_beacon + .text.sta_recv_sa_query_resp + 0x00000000401389e8 0x91 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x99 (size before relaxing) + *fill* 0x0000000040138a79 0x3 + .text.sta_assoc_comeback + 0x0000000040138a7c 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x16 (size before relaxing) + *fill* 0x0000000040138a8a 0x2 + .text.sta_try_sa_query + 0x0000000040138a8c 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x16 (size before relaxing) + *fill* 0x0000000040138a9a 0x2 + .text.sta_sa_query_timeout + 0x0000000040138a9c 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x16 (size before relaxing) + *fill* 0x0000000040138aaa 0x2 + .text.sta_recv_sa_query_req + 0x0000000040138aac 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x19 (size before relaxing) + *fill* 0x0000000040138ac1 0x3 + .text.sta_action_output + 0x0000000040138ac4 0xd9 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0xfd (size before relaxing) + *fill* 0x0000000040138b9d 0x3 + .text.sta_send_sa_query_resp + 0x0000000040138ba0 0xac /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0xc0 (size before relaxing) + .text.sta_send_sa_query_req + 0x0000000040138c4c 0xac /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0xc0 (size before relaxing) + .text.ieee80211_sta_new_state + 0x0000000040138cf8 0x11be /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x1362 (size before relaxing) + 0x0000000040138d58 ieee80211_sta_new_state + *fill* 0x0000000040139eb6 0x2 + .text.sta_rx_eapol + 0x0000000040139eb8 0x245 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x265 (size before relaxing) + 0x0000000040139ecc sta_rx_eapol + *fill* 0x000000004013a0fd 0x3 + .text.wifi_sta_reg_rxcb + 0x000000004013a100 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0xe (size before relaxing) + 0x000000004013a100 wifi_sta_reg_rxcb + *fill* 0x000000004013a10a 0x2 + .text.sta_michael_mic_failure + 0x000000004013a10c 0x44 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x50 (size before relaxing) + 0x000000004013a110 sta_michael_mic_failure + .text.ieee80211_parse_wmeparams + 0x000000004013a150 0xe4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x000000004013a154 ieee80211_parse_wmeparams + .text.sta_rx_csa + 0x000000004013a234 0x381 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x39d (size before relaxing) + 0x000000004013a258 sta_rx_csa + *fill* 0x000000004013a5b5 0x3 + .text.ieee80211_parse_obss_scan_param + 0x000000004013a5b8 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x2a (size before relaxing) + 0x000000004013a5b8 ieee80211_parse_obss_scan_param + *fill* 0x000000004013a5de 0x2 + .text.sta_retry_assoc + 0x000000004013a5e0 0x4a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x62 (size before relaxing) + 0x000000004013a5e0 sta_retry_assoc + *fill* 0x000000004013a62a 0x2 + .text.wifi_station_start + 0x000000004013a62c 0xb8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0xe0 (size before relaxing) + 0x000000004013a62c wifi_station_start + .text.wifi_station_stop + 0x000000004013a6e4 0xa2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0xca (size before relaxing) + 0x000000004013a6e4 wifi_station_stop + *fill* 0x000000004013a786 0x2 + .text.sta_sa_query_process_timeout + 0x000000004013a788 0xbf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0xd7 (size before relaxing) + 0x000000004013a794 sta_sa_query_process_timeout + *fill* 0x000000004013a847 0x1 + .text.sta_try_sa_query_process + 0x000000004013a848 0xb0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0xcc (size before relaxing) + 0x000000004013a854 sta_try_sa_query_process + .text.ieee80211_setup_pmf + 0x000000004013a8f8 0x3e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x5a (size before relaxing) + 0x000000004013a908 ieee80211_setup_pmf + *fill* 0x000000004013a936 0x2 + .text.sta_is_wpa3_enabled + 0x000000004013a938 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + 0x26 (size before relaxing) + 0x000000004013a938 sta_is_wpa3_enabled + *fill* 0x000000004013a956 0x2 + .text.ieee80211_set_key$part$0 + 0x000000004013a958 0x29 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x31 (size before relaxing) + *fill* 0x000000004013a981 0x3 + .text.esp_wifi_set_appie_internal$part$2 + 0x000000004013a984 0x34 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x40 (size before relaxing) + .text.esp_wifi_ap_get_prof_pmk_internal + 0x000000004013a9b8 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x13 (size before relaxing) + 0x000000004013a9b8 esp_wifi_ap_get_prof_pmk_internal + *fill* 0x000000004013a9c7 0x1 + .text.esp_wifi_sta_update_ap_info_internal + 0x000000004013a9c8 0x29 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x3d (size before relaxing) + 0x000000004013a9c8 esp_wifi_sta_update_ap_info_internal + *fill* 0x000000004013a9f1 0x3 + .text.esp_wifi_sta_get_ap_info_prof_pmk_internal + 0x000000004013a9f4 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x22 (size before relaxing) + 0x000000004013a9f4 esp_wifi_sta_get_ap_info_prof_pmk_internal + *fill* 0x000000004013aa12 0x2 + .text.esp_wifi_ap_get_prof_ap_ssid_internal + 0x000000004013aa14 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x13 (size before relaxing) + 0x000000004013aa14 esp_wifi_ap_get_prof_ap_ssid_internal + *fill* 0x000000004013aa23 0x1 + .text.esp_wifi_sta_get_prof_ssid_internal + 0x000000004013aa24 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x10 (size before relaxing) + 0x000000004013aa24 esp_wifi_sta_get_prof_ssid_internal + .text.esp_wifi_ap_get_prof_authmode_internal + 0x000000004013aa30 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x14 (size before relaxing) + 0x000000004013aa30 esp_wifi_ap_get_prof_authmode_internal + .text.esp_wifi_sta_get_prof_authmode_internal + 0x000000004013aa40 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x000000004013aa40 esp_wifi_sta_get_prof_authmode_internal + *fill* 0x000000004013aa4e 0x2 + .text.esp_wifi_sta_is_ap_notify_completed_rsne_internal + 0x000000004013aa50 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x19 (size before relaxing) + 0x000000004013aa50 esp_wifi_sta_is_ap_notify_completed_rsne_internal + *fill* 0x000000004013aa65 0x3 + .text.esp_wifi_ap_get_prof_password_internal + 0x000000004013aa68 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x13 (size before relaxing) + 0x000000004013aa68 esp_wifi_ap_get_prof_password_internal + *fill* 0x000000004013aa77 0x1 + .text.wifi_sta_get_prof_password + 0x000000004013aa78 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x11 (size before relaxing) + 0x000000004013aa78 wifi_sta_get_prof_password + *fill* 0x000000004013aa85 0x3 + .text.esp_wifi_sta_get_prof_password_internal + 0x000000004013aa88 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x11 (size before relaxing) + 0x000000004013aa88 esp_wifi_sta_get_prof_password_internal + *fill* 0x000000004013aa95 0x3 + .text.esp_wifi_sta_get_reset_param_internal + 0x000000004013aa98 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x000000004013aa98 esp_wifi_sta_get_reset_param_internal + *fill* 0x000000004013aaa6 0x2 + .text.esp_wifi_sta_set_reset_param_internal + 0x000000004013aaa8 0x13 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x17 (size before relaxing) + 0x000000004013aaa8 esp_wifi_sta_set_reset_param_internal + *fill* 0x000000004013aabb 0x1 + .text.esp_wifi_sta_prof_is_wpa_internal + 0x000000004013aabc 0x2b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x2f (size before relaxing) + 0x000000004013aabc esp_wifi_sta_prof_is_wpa_internal + *fill* 0x000000004013aae7 0x1 + .text.esp_wifi_sta_prof_is_wpa2_internal + 0x000000004013aae8 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x34 (size before relaxing) + 0x000000004013aae8 esp_wifi_sta_prof_is_wpa2_internal + .text.esp_wifi_sta_prof_is_wpa3_internal + 0x000000004013ab18 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x1c (size before relaxing) + 0x000000004013ab18 esp_wifi_sta_prof_is_wpa3_internal + .text.esp_wifi_sta_get_pairwise_cipher_internal + 0x000000004013ab30 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x000000004013ab30 esp_wifi_sta_get_pairwise_cipher_internal + *fill* 0x000000004013ab3e 0x2 + .text.esp_wifi_sta_get_group_cipher_internal + 0x000000004013ab40 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x12 (size before relaxing) + 0x000000004013ab40 esp_wifi_sta_get_group_cipher_internal + *fill* 0x000000004013ab4e 0x2 + .text.ieee80211_set_gtk + 0x000000004013ab50 0x5d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x65 (size before relaxing) + 0x000000004013ab5c ieee80211_set_gtk + *fill* 0x000000004013abad 0x3 + .text.esp_wifi_wpa_ptk_init_done_internal + 0x000000004013abb0 0x72 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x8e (size before relaxing) + 0x000000004013abb0 esp_wifi_wpa_ptk_init_done_internal + *fill* 0x000000004013ac22 0x2 + .text.esp_wifi_sta_is_running_internal + 0x000000004013ac24 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x20 (size before relaxing) + 0x000000004013ac24 esp_wifi_sta_is_running_internal + .text.esp_wifi_auth_done_internal + 0x000000004013ac40 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x11 (size before relaxing) + 0x000000004013ac40 esp_wifi_auth_done_internal + *fill* 0x000000004013ac4a 0x2 + .text.esp_wifi_unregister_wpa_cb_internal + 0x000000004013ac4c 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x27 (size before relaxing) + 0x000000004013ac4c esp_wifi_unregister_wpa_cb_internal + *fill* 0x000000004013ac6b 0x1 + .text.esp_wifi_register_wpa_cb_internal + 0x000000004013ac6c 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x27 (size before relaxing) + 0x000000004013ac6c esp_wifi_register_wpa_cb_internal + *fill* 0x000000004013ac8b 0x1 + .text.esp_wifi_get_hostap_private_internal + 0x000000004013ac8c 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x13 (size before relaxing) + 0x000000004013ac8c esp_wifi_get_hostap_private_internal + *fill* 0x000000004013ac9b 0x1 + .text.esp_wifi_deauthenticate_internal + 0x000000004013ac9c 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x3a (size before relaxing) + 0x000000004013ac9c esp_wifi_deauthenticate_internal + *fill* 0x000000004013acc6 0x2 + .text.wifi_set_rx_policy + 0x000000004013acc8 0x178 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x204 (size before relaxing) + 0x000000004013accc wifi_set_rx_policy + .text.esp_wifi_register_tx_cb_internal + 0x000000004013ae40 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x16 (size before relaxing) + 0x000000004013ae40 esp_wifi_register_tx_cb_internal + *fill* 0x000000004013ae52 0x2 + .text.esp_wifi_get_macaddr_internal + 0x000000004013ae54 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x1f (size before relaxing) + 0x000000004013ae54 esp_wifi_get_macaddr_internal + *fill* 0x000000004013ae6f 0x1 + .text.esp_wifi_ap_deauth_internal + 0x000000004013ae70 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x15 (size before relaxing) + 0x000000004013ae70 esp_wifi_ap_deauth_internal + *fill* 0x000000004013ae81 0x3 + .text.esp_wifi_set_ap_key_internal + 0x000000004013ae84 0x150 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x19c (size before relaxing) + 0x000000004013ae8c esp_wifi_set_ap_key_internal + .text.ppInstallKey + 0x000000004013afd4 0x198 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x1e4 (size before relaxing) + 0x000000004013afd4 ppInstallKey + .text.esp_wifi_set_sta_key_internal + 0x000000004013b16c 0x31 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x35 (size before relaxing) + 0x000000004013b16c esp_wifi_set_sta_key_internal + *fill* 0x000000004013b19d 0x3 + .text.esp_wifi_get_sta_key_internal + 0x000000004013b1a0 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x2e (size before relaxing) + 0x000000004013b1a0 esp_wifi_get_sta_key_internal + *fill* 0x000000004013b1ca 0x2 + .text.esp_wifi_set_appie_internal + 0x000000004013b1cc 0x22 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x32 (size before relaxing) + 0x000000004013b1cc esp_wifi_set_appie_internal + *fill* 0x000000004013b1ee 0x2 + .text.esp_wifi_sta_pmf_enabled + 0x000000004013b1f0 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0xf (size before relaxing) + 0x000000004013b1f0 esp_wifi_sta_pmf_enabled + *fill* 0x000000004013b1fb 0x1 + .text.esp_wifi_sta_get_mgmt_group_cipher + 0x000000004013b1fc 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x1c (size before relaxing) + 0x000000004013b1fc esp_wifi_sta_get_mgmt_group_cipher + .text.esp_wifi_set_igtk_internal + 0x000000004013b214 0x5e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x66 (size before relaxing) + 0x000000004013b21c esp_wifi_set_igtk_internal + *fill* 0x000000004013b272 0x2 + .text.ieee80211w_get_active_igtk_key_id + 0x000000004013b274 0x13 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x1b (size before relaxing) + 0x000000004013b274 ieee80211w_get_active_igtk_key_id + *fill* 0x000000004013b287 0x1 + .text.ieee80211w_get_igtk_from_keyidx + 0x000000004013b288 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + 0x2a (size before relaxing) + 0x000000004013b28c ieee80211w_get_igtk_from_keyidx + *fill* 0x000000004013b2ae 0x2 + .text.ieee80211_ampdu_age_handle + 0x000000004013b2b0 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x000000004013b2bf 0x1 + .text.ieee80211_addba + 0x000000004013b2c0 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13 (size before relaxing) + *fill* 0x000000004013b2cf 0x1 + .text.ieee80211_coexist + 0x000000004013b2d0 0x5a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x6a (size before relaxing) + *fill* 0x000000004013b32a 0x2 + .text.ieee80211_sta_retry_assoc + 0x000000004013b32c 0x4a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x62 (size before relaxing) + *fill* 0x000000004013b376 0x2 + .text.ieee80211_sta_sa_query_timeout + 0x000000004013b378 0x4a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x62 (size before relaxing) + *fill* 0x000000004013b3c2 0x2 + .text.ieee80211_sta_try_sa_query + 0x000000004013b3c4 0x4a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x62 (size before relaxing) + *fill* 0x000000004013b40e 0x2 + .text.ieee80211_assoc + 0x000000004013b410 0x4a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x62 (size before relaxing) + *fill* 0x000000004013b45a 0x2 + .text.ieee80211_hostap_handle + 0x000000004013b45c 0x56 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x6a (size before relaxing) + *fill* 0x000000004013b4b2 0x2 + .text.ieee80211_auth + 0x000000004013b4b4 0x4a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x62 (size before relaxing) + *fill* 0x000000004013b4fe 0x2 + .text.ieee80211_send_beacon + 0x000000004013b500 0x4c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x64 (size before relaxing) + .text.ieee80211_chm_dwell + 0x000000004013b54c 0x52 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x6a (size before relaxing) + *fill* 0x000000004013b59e 0x2 + .text.ieee80211_handshake + 0x000000004013b5a0 0x4a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x62 (size before relaxing) + *fill* 0x000000004013b5ea 0x2 + .text.ieee80211_beacon + 0x000000004013b5ec 0x8a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0xa2 (size before relaxing) + *fill* 0x000000004013b676 0x2 + .text.ieee80211_probe_send + 0x000000004013b678 0x86 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0xa2 (size before relaxing) + *fill* 0x000000004013b6fe 0x2 + .text.ieee80211_csa + 0x000000004013b700 0x4a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x62 (size before relaxing) + *fill* 0x000000004013b74a 0x2 + .text.ieee80211_scan_enter_op_chan + 0x000000004013b74c 0x52 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x6a (size before relaxing) + *fill* 0x000000004013b79e 0x2 + .text.ieee80211_scan_inter_chan + 0x000000004013b7a0 0x52 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x6a (size before relaxing) + *fill* 0x000000004013b7f2 0x2 + .text.ieee80211_timer_connect + 0x000000004013b7f4 0x4a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x62 (size before relaxing) + *fill* 0x000000004013b83e 0x2 + .text.ieee80211_timer_do_process + 0x000000004013b840 0xbe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0xc6 (size before relaxing) + 0x000000004013b84c ieee80211_timer_do_process + *fill* 0x000000004013b8fe 0x2 + .text.ieee80211_timer_process + 0x000000004013b900 0x10a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + 0x13a (size before relaxing) + 0x000000004013b910 ieee80211_timer_process + *fill* 0x000000004013ba0a 0x2 + .text.chm_end_op_timeout + 0x000000004013ba0c 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x16 (size before relaxing) + *fill* 0x000000004013ba1a 0x2 + .text.chm_mhz2num + 0x000000004013ba1c 0x68 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x000000004013ba34 chm_mhz2num + .text.chm_deinit + 0x000000004013ba84 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x2e (size before relaxing) + 0x000000004013ba84 chm_deinit + *fill* 0x000000004013baaa 0x2 + .text.chm_release_lock + 0x000000004013baac 0x19 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x1d (size before relaxing) + 0x000000004013baac chm_release_lock + *fill* 0x000000004013bac5 0x3 + .text.chm_end_op + 0x000000004013bac8 0x32 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x3a (size before relaxing) + 0x000000004013bac8 chm_end_op + *fill* 0x000000004013bafa 0x2 + .text.chm_end_op_timeout_process + 0x000000004013bafc 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x2e (size before relaxing) + 0x000000004013bafc chm_end_op_timeout_process + *fill* 0x000000004013bb1b 0x1 + .text.chm_cancel_op + 0x000000004013bb1c 0x42 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x52 (size before relaxing) + 0x000000004013bb1c chm_cancel_op + *fill* 0x000000004013bb5e 0x2 + .text.chm_acquire_lock + 0x000000004013bb60 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x38 (size before relaxing) + 0x000000004013bb60 chm_acquire_lock + .text.chm_get_current_channel + 0x000000004013bb90 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x11 (size before relaxing) + 0x000000004013bb90 chm_get_current_channel + *fill* 0x000000004013bb9d 0x3 + .text.chm_set_current_channel + 0x000000004013bba0 0x204 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x24c (size before relaxing) + 0x000000004013bbb8 chm_set_current_channel + .text.chm_change_channel + 0x000000004013bda4 0x192 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x1ae (size before relaxing) + *fill* 0x000000004013bf36 0x2 + .text.chm_start_op + 0x000000004013bf38 0x40 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x48 (size before relaxing) + 0x000000004013bf38 chm_start_op + .text.chm_return_home_channel + 0x000000004013bf78 0x80 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x98 (size before relaxing) + 0x000000004013bf7c chm_return_home_channel + .text.chm_get_home_channel + 0x000000004013bff8 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x11 (size before relaxing) + 0x000000004013bff8 chm_get_home_channel + *fill* 0x000000004013c005 0x3 + .text.chm_set_home_channel + 0x000000004013c008 0x8e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0xaa (size before relaxing) + 0x000000004013c008 chm_set_home_channel + *fill* 0x000000004013c096 0x2 + .text.chm_init + 0x000000004013c098 0x10e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x132 (size before relaxing) + 0x000000004013c09c chm_init + *fill* 0x000000004013c1a6 0x2 + .text.chm_get_chan_info + 0x000000004013c1a8 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + 0x28 (size before relaxing) + 0x000000004013c1a8 chm_get_chan_info + .text.cnx_cal_rc_util + 0x000000004013c1cc 0x57 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x5b (size before relaxing) + *fill* 0x000000004013c223 0x1 + .text.cnx_get_next_rc + 0x000000004013c224 0x46 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x52 (size before relaxing) + *fill* 0x000000004013c26a 0x2 + .text.cnx_traverse_rc_lis_done + 0x000000004013c26c 0x2f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x3f (size before relaxing) + *fill* 0x000000004013c29b 0x1 + .text.cnx_sta_connect_led_timer_cb + 0x000000004013c29c 0x73 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x7f (size before relaxing) + 0x000000004013c29c cnx_sta_connect_led_timer_cb + *fill* 0x000000004013c30f 0x1 + .text.cnx_connect_op + 0x000000004013c310 0x1d6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x24a (size before relaxing) + *fill* 0x000000004013c4e6 0x2 + .text.cnx_connect_to_bss + 0x000000004013c4e8 0x4dd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x531 (size before relaxing) + *fill* 0x000000004013c9c5 0x3 + .text.cnx_connect_timeout + 0x000000004013c9c8 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + 0x000000004013c9c8 cnx_connect_timeout + *fill* 0x000000004013c9d6 0x2 + .text.cnx_handshake_timeout + 0x000000004013c9d8 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + 0x000000004013c9d8 cnx_handshake_timeout + *fill* 0x000000004013c9e6 0x2 + .text.cnx_csa_fn + 0x000000004013c9e8 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x18 (size before relaxing) + 0x000000004013c9e8 cnx_csa_fn + .text.mgd_probe_send_timeout + 0x000000004013c9f8 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + *fill* 0x000000004013ca06 0x2 + .text.cnx_beacon_timeout + 0x000000004013ca08 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + *fill* 0x000000004013ca16 0x2 + .text.cnx_sta_pm + 0x000000004013ca18 0x2b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x36 (size before relaxing) + *fill* 0x000000004013ca43 0x1 + .text.send_ap_probe + 0x000000004013ca44 0xae /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xde (size before relaxing) + *fill* 0x000000004013caf2 0x2 + .text.cnx_probe_rc + 0x000000004013caf4 0x58 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x74 (size before relaxing) + .text.ieee80211_cnx_attach + 0x000000004013cb4c 0x3a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x4e (size before relaxing) + 0x000000004013cb54 ieee80211_cnx_attach + *fill* 0x000000004013cb86 0x2 + .text._cnx_start_connect_without_scan + 0x000000004013cb88 0x89 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xa9 (size before relaxing) + 0x000000004013cb8c _cnx_start_connect_without_scan + *fill* 0x000000004013cc11 0x3 + .text.cnx_can_do_obss_scan + 0x000000004013cc14 0x11a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x12e (size before relaxing) + 0x000000004013cc24 cnx_can_do_obss_scan + *fill* 0x000000004013cd2e 0x2 + .text.cnx_obss_scan + 0x000000004013cd30 0x104 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x148 (size before relaxing) + 0x000000004013cd40 cnx_obss_scan + .text.cnx_obss_scan_timeout + 0x000000004013ce34 0xfa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x121 (size before relaxing) + 0x000000004013ce38 cnx_obss_scan_timeout + *fill* 0x000000004013cf2e 0x2 + .text.cnx_sta_scan_cmd + 0x000000004013cf30 0x3c8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x47c (size before relaxing) + 0x000000004013cf60 cnx_sta_scan_cmd + .text.cnx_auth_timeout + 0x000000004013d2f8 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + 0x000000004013d2f8 cnx_auth_timeout + *fill* 0x000000004013d306 0x2 + .text.cnx_assoc_timeout + 0x000000004013d308 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + 0x000000004013d308 cnx_assoc_timeout + *fill* 0x000000004013d316 0x2 + .text.cnx_coexist_timeout + 0x000000004013d318 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x16 (size before relaxing) + 0x000000004013d318 cnx_coexist_timeout + *fill* 0x000000004013d326 0x2 + .text.cnx_coexist_timeout_process + 0x000000004013d328 0x44 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x5c (size before relaxing) + 0x000000004013d328 cnx_coexist_timeout_process + .text.wl_is_ap_no_lr + 0x000000004013d36c 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x000000004013d370 wl_is_ap_no_lr + *fill* 0x000000004013d37b 0x1 + .text.wl_clear_ap_no_lr + 0x000000004013d37c 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x14 (size before relaxing) + 0x000000004013d37c wl_clear_ap_no_lr + .text.cnx_csa_fn_process + 0x000000004013d38c 0x198 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x1e4 (size before relaxing) + 0x000000004013d3a4 cnx_csa_fn_process + .text.cnx_bss_init + 0x000000004013d524 0xa3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xaf (size before relaxing) + 0x000000004013d52c cnx_bss_init + *fill* 0x000000004013d5c7 0x1 + .text.cnx_check_bssid_in_blacklist + 0x000000004013d5c8 0x29 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x31 (size before relaxing) + 0x000000004013d5c8 cnx_check_bssid_in_blacklist + *fill* 0x000000004013d5f1 0x3 + .text.cnx_add_to_blacklist + 0x000000004013d5f4 0x130 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x14c (size before relaxing) + 0x000000004013d600 cnx_add_to_blacklist + .text.cnx_clear_blacklist + 0x000000004013d724 0xb7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xcb (size before relaxing) + 0x000000004013d728 cnx_clear_blacklist + *fill* 0x000000004013d7db 0x1 + .text.cnx_choose_rc + 0x000000004013d7dc 0x23b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x2a3 (size before relaxing) + *fill* 0x000000004013da17 0x1 + .text.cnx_rc_search + 0x000000004013da18 0x40 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x4c (size before relaxing) + 0x000000004013da18 cnx_rc_search + .text.cnx_add_rc + 0x000000004013da58 0xa5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xad (size before relaxing) + 0x000000004013da58 cnx_add_rc + *fill* 0x000000004013dafd 0x3 + .text.cnx_remove_all_rc + 0x000000004013db00 0x78 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x90 (size before relaxing) + 0x000000004013db04 cnx_remove_all_rc + .text.cnx_do_handoff + 0x000000004013db78 0x4f3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x567 (size before relaxing) + *fill* 0x000000004013e06b 0x1 + .text.cnx_connect_next_ap + 0x000000004013e06c 0x60 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x80 (size before relaxing) + 0x000000004013e070 cnx_connect_next_ap + .text.cnx_start_handoff_cb + 0x000000004013e0cc 0x63 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x7f (size before relaxing) + 0x000000004013e0d0 cnx_start_handoff_cb + *fill* 0x000000004013e12f 0x1 + .text.cnx_remove_rc + 0x000000004013e130 0xe6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x106 (size before relaxing) + 0x000000004013e134 cnx_remove_rc + *fill* 0x000000004013e216 0x2 + .text.cnx_sta_connect_cmd + 0x000000004013e218 0x28e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x356 (size before relaxing) + 0x000000004013e234 cnx_sta_connect_cmd + *fill* 0x000000004013e4a6 0x2 + .text.cnx_connect_timeout_process + 0x000000004013e4a8 0xf4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x124 (size before relaxing) + 0x000000004013e4b0 cnx_connect_timeout_process + .text.cnx_auth_timeout_process + 0x000000004013e59c 0x84 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xa8 (size before relaxing) + 0x000000004013e5a4 cnx_auth_timeout_process + .text.cnx_assoc_timeout_process + 0x000000004013e620 0x4e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x76 (size before relaxing) + 0x000000004013e624 cnx_assoc_timeout_process + *fill* 0x000000004013e66e 0x2 + .text.cnx_handshake_timeout_process + 0x000000004013e670 0x8a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xba (size before relaxing) + 0x000000004013e678 cnx_handshake_timeout_process + *fill* 0x000000004013e6fa 0x2 + .text.cnx_bss_alloc + 0x000000004013e6fc 0x372 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x3be (size before relaxing) + 0x000000004013e714 cnx_bss_alloc + *fill* 0x000000004013ea6e 0x2 + .text.cnx_remove_rc_except + 0x000000004013ea70 0x9e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xb6 (size before relaxing) + 0x000000004013ea74 cnx_remove_rc_except + *fill* 0x000000004013eb0e 0x2 + .text.cnx_rc_update_rssi + 0x000000004013eb10 0x86 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x8a (size before relaxing) + 0x000000004013eb10 cnx_rc_update_rssi + *fill* 0x000000004013eb96 0x2 + .text.cnx_rc_update_state_metric + 0x000000004013eb98 0x79 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x81 (size before relaxing) + 0x000000004013eb98 cnx_rc_update_state_metric + *fill* 0x000000004013ec11 0x3 + .text.cnx_probe_rc_tx_cb + 0x000000004013ec14 0x55 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x7c (size before relaxing) + *fill* 0x000000004013ec69 0x3 + .text.cnx_update_bss + 0x000000004013ec6c 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x2a (size before relaxing) + 0x000000004013ec6c cnx_update_bss + *fill* 0x000000004013ec8a 0x2 + .text.cnx_update_bss_more + 0x000000004013ec8c 0x372 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x402 (size before relaxing) + 0x000000004013eca0 cnx_update_bss_more + *fill* 0x000000004013effe 0x2 + .text.cnx_beacon_timeout_process + 0x000000004013f000 0x78 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x8c (size before relaxing) + 0x000000004013f008 cnx_beacon_timeout_process + .text.mgd_probe_send_timeout_process + 0x000000004013f078 0x188 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x1c0 (size before relaxing) + 0x000000004013f084 mgd_probe_send_timeout_process + .text.cnx_node_alloc + 0x000000004013f200 0xa6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xc2 (size before relaxing) + 0x000000004013f200 cnx_node_alloc + *fill* 0x000000004013f2a6 0x2 + .text.cnx_node_remove + 0x000000004013f2a8 0xe7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x10f (size before relaxing) + 0x000000004013f2a8 cnx_node_remove + *fill* 0x000000004013f38f 0x1 + .text.ic_set_sta + 0x000000004013f390 0xcc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0xe8 (size before relaxing) + 0x000000004013f390 ic_set_sta + .text.cnx_sta_leave + 0x000000004013f45c 0x231 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x29c (size before relaxing) + 0x000000004013f464 cnx_sta_leave + *fill* 0x000000004013f68d 0x3 + .text.cnx_sta_associated + 0x000000004013f690 0x1de /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x20a (size before relaxing) + 0x000000004013f6b0 cnx_sta_associated + *fill* 0x000000004013f86e 0x2 + .text.cnx_node_leave + 0x000000004013f870 0x208 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x244 (size before relaxing) + 0x000000004013f880 cnx_node_leave + .text.cnx_node_join + 0x000000004013fa78 0x362 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x3d6 (size before relaxing) + 0x000000004013faa4 cnx_node_join + *fill* 0x000000004013fdda 0x2 + .text.cnx_start_obss_scan + 0x000000004013fddc 0x161 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x181 (size before relaxing) + 0x000000004013fdf0 cnx_start_obss_scan + *fill* 0x000000004013ff3d 0x3 + .text.cnx_obss_scan_done_cb + 0x000000004013ff40 0x2cd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x319 (size before relaxing) + 0x000000004013ff54 cnx_obss_scan_done_cb + *fill* 0x000000004014020d 0x3 + .text.cnx_stop_obss_scan + 0x0000000040140210 0x2e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x36 (size before relaxing) + 0x0000000040140210 cnx_stop_obss_scan + *fill* 0x000000004014023e 0x2 + .text.cnx_auth_done + 0x0000000040140240 0x52c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x5b4 (size before relaxing) + 0x0000000040140264 cnx_auth_done + .text.ieee80211_send_action_register + 0x000000004014076c 0x68 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + 0x000000004014077c ieee80211_send_action_register + .text.ieee80211_send_action + 0x00000000401407d4 0x74 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + 0x84 (size before relaxing) + 0x00000000401407d8 ieee80211_send_action + .text.ieee80211_recv_action_register + 0x0000000040140848 0x66 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + 0x0000000040140858 ieee80211_recv_action_register + *fill* 0x00000000401408ae 0x2 + .text.ieee80211_recv_action + 0x00000000401408b0 0xc4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + 0xdc (size before relaxing) + 0x00000000401408c0 ieee80211_recv_action + .text.ieee80211_recv_action_vendor_spec + 0x0000000040140974 0x10e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + 0x116 (size before relaxing) + 0x0000000040140980 ieee80211_recv_action_vendor_spec + *fill* 0x0000000040140a82 0x2 + .text.ieee80211_action_vendor_spec_attach + 0x0000000040140a84 0x2d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + 0x35 (size before relaxing) + 0x0000000040140a88 ieee80211_action_vendor_spec_attach + *fill* 0x0000000040140ab1 0x3 + .text.ieee80211_getmgtframe + 0x0000000040140ab4 0x8a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + 0x92 (size before relaxing) + 0x0000000040140ac0 ieee80211_getmgtframe + *fill* 0x0000000040140b3e 0x2 + .text.ieee80211_getbcnframe + 0x0000000040140b40 0xae /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + 0xca (size before relaxing) + 0x0000000040140b48 ieee80211_getbcnframe + *fill* 0x0000000040140bee 0x2 + .text.esf_buf_free_static$part$4 + 0x0000000040140bf0 0x8b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x9b (size before relaxing) + *fill* 0x0000000040140c7b 0x1 + .text.esf_buf_setup + 0x0000000040140c7c 0x4b4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x4e4 (size before relaxing) + 0x0000000040140cbc esf_buf_setup + .text.esf_buf_setdown + 0x0000000040141130 0x17 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + 0x1b (size before relaxing) + 0x0000000040141130 esf_buf_setdown + *fill* 0x0000000040141147 0x1 + .text.ic_get_addr + 0x0000000040141148 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x000000004014114c ic_get_addr + *fill* 0x000000004014115d 0x3 + .text.ic_get_ptk_alg + 0x0000000040141160 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x18 (size before relaxing) + 0x0000000040141160 ic_get_ptk_alg + .text.ic_disable_crypto + 0x0000000040141174 0x23 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x2e (size before relaxing) + 0x0000000040141174 ic_disable_crypto + *fill* 0x0000000040141197 0x1 + .text.ic_set_vif + 0x0000000040141198 0x246 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x2aa (size before relaxing) + 0x00000000401411ac ic_set_vif + *fill* 0x00000000401413de 0x2 + .text.ic_set_key + 0x00000000401413e0 0x56 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x66 (size before relaxing) + 0x00000000401413e0 ic_set_key + *fill* 0x0000000040141436 0x2 + .text.ic_get_key + 0x0000000040141438 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x24 (size before relaxing) + 0x0000000040141438 ic_get_key + .text.ic_tx_pkt + 0x0000000040141454 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x15 (size before relaxing) + 0x0000000040141454 ic_tx_pkt + *fill* 0x0000000040141465 0x3 + .text.ic_ebuf_alloc + 0x0000000040141468 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x000000004014146c ic_ebuf_alloc + .text.ic_ebuf_recycle_tx + 0x0000000040141480 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x0000000040141480 ic_ebuf_recycle_tx + *fill* 0x000000004014148e 0x2 + .text.ic_ebuf_recycle_rx + 0x0000000040141490 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x0000000040141490 ic_ebuf_recycle_rx + *fill* 0x000000004014149a 0x2 + .text.esp_wifi_internal_free_rx_buffer + 0x000000004014149c 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x000000004014149c esp_wifi_internal_free_rx_buffer + *fill* 0x00000000401414a6 0x2 + .text.ic_register_tx_cb + 0x00000000401414a8 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x16 (size before relaxing) + 0x00000000401414a8 ic_register_tx_cb + *fill* 0x00000000401414ba 0x2 + .text.ic_register_rx_cb + 0x00000000401414bc 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x16 (size before relaxing) + 0x00000000401414bc ic_register_rx_cb + *fill* 0x00000000401414ce 0x2 + .text.ic_register_timer_post_cb + 0x00000000401414d0 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x00000000401414d0 ic_register_timer_post_cb + .text.ic_register_michael_mic_failure_cb + 0x00000000401414dc 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x00000000401414dc ic_register_michael_mic_failure_cb + .text.ic_set_promis_filter + 0x00000000401414e8 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x00000000401414e8 ic_set_promis_filter + .text.ic_set_promis_ctrl_filter + 0x00000000401414f4 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x00000000401414f4 ic_set_promis_ctrl_filter + .text.ic_register_config_cb + 0x0000000040141500 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x1a (size before relaxing) + 0x0000000040141500 ic_register_config_cb + *fill* 0x0000000040141516 0x2 + .text.ic_register_pm_tx_null_cb + 0x0000000040141518 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x1a (size before relaxing) + 0x0000000040141518 ic_register_pm_tx_null_cb + *fill* 0x000000004014152e 0x2 + .text.ic_register_net80211_tx_cb + 0x0000000040141530 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x18 (size before relaxing) + 0x0000000040141530 ic_register_net80211_tx_cb + *fill* 0x0000000040141541 0x3 + .text.ic_register_timer_cb + 0x0000000040141544 0x11 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x18 (size before relaxing) + 0x0000000040141544 ic_register_timer_cb + *fill* 0x0000000040141555 0x3 + .text.ic_get_next_tbtt + 0x0000000040141558 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x0000000040141558 ic_get_next_tbtt + *fill* 0x0000000040141562 0x2 + .text.ic_del_rx_ba + 0x0000000040141564 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x0000000040141564 ic_del_rx_ba + *fill* 0x000000004014156f 0x1 + .text.ic_reset_rx_ba + 0x0000000040141570 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x1b (size before relaxing) + 0x0000000040141570 ic_reset_rx_ba + *fill* 0x0000000040141584 0x0 + .text.ic_add_rx_ba + 0x0000000040141584 0x19 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x20 (size before relaxing) + 0x0000000040141584 ic_add_rx_ba + *fill* 0x000000004014159d 0x3 + .text.ic_reset_tbtt + 0x00000000401415a0 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0xf (size before relaxing) + 0x00000000401415a0 ic_reset_tbtt + *fill* 0x00000000401415a8 0x0 + .text.ic_del_key_all + 0x00000000401415a8 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x00000000401415a8 ic_del_key_all + *fill* 0x00000000401415b5 0x3 + .text.ic_del_key + 0x00000000401415b8 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x00000000401415b8 ic_del_key + *fill* 0x00000000401415c2 0x2 + .text.ic_set_ac_param + 0x00000000401415c4 0x17 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x1e (size before relaxing) + 0x00000000401415c4 ic_set_ac_param + *fill* 0x00000000401415db 0x1 + .text.ic_ampdu_op + 0x00000000401415dc 0x27 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x3a (size before relaxing) + 0x00000000401415dc ic_ampdu_op + *fill* 0x0000000040141603 0x1 + .text.ic_set_trc + 0x0000000040141604 0x108 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12c (size before relaxing) + 0x000000004014160c ic_set_trc + .text.ic_deinit + 0x000000004014170c 0x13 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x2f (size before relaxing) + 0x000000004014170c ic_deinit + *fill* 0x000000004014171f 0x1 + .text.ic_init 0x0000000040141720 0x31 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x54 (size before relaxing) + 0x0000000040141724 ic_init + *fill* 0x0000000040141751 0x3 + .text.ic_enable + 0x0000000040141754 0x3c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x48 (size before relaxing) + 0x000000004014175c ic_enable + .text.ic_disable + 0x0000000040141790 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x30 (size before relaxing) + 0x0000000040141790 ic_disable + .text.ic_enable_rx + 0x00000000401417b4 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x20 (size before relaxing) + 0x00000000401417b4 ic_enable_rx + .text.ic_disable_rx + 0x00000000401417cc 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x20 (size before relaxing) + 0x00000000401417cc ic_disable_rx + .text.ic_set_beacon_int + 0x00000000401417e4 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x00000000401417e4 ic_set_beacon_int + *fill* 0x00000000401417ee 0x2 + .text.ic_set_mac + 0x00000000401417f0 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x00000000401417f0 ic_set_mac + *fill* 0x00000000401417fd 0x3 + .text.ic_set_bssid + 0x0000000040141800 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x0000000040141800 ic_set_bssid + *fill* 0x000000004014180d 0x3 + .text.ic_set_current_channel + 0x0000000040141810 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x13 (size before relaxing) + 0x0000000040141810 ic_set_current_channel + *fill* 0x000000004014181c 0x0 + .text.ic_get_trc + 0x000000004014181c 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x17 (size before relaxing) + 0x000000004014181c ic_get_trc + *fill* 0x000000004014182c 0x0 + .text.ic_tx_is_idle + 0x000000004014182c 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x000000004014182c ic_tx_is_idle + *fill* 0x0000000040141839 0x3 + .text.ic_get_pp_hdl + 0x000000004014183c 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x000000004014183c ic_get_pp_hdl + *fill* 0x0000000040141846 0x2 + .text.ic_set_rx_policy_ubssid_check + 0x0000000040141848 0x4b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x000000004014184c ic_set_rx_policy_ubssid_check + *fill* 0x0000000040141893 0x1 + .text.ic_set_rx_policy + 0x0000000040141894 0xd3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0xe7 (size before relaxing) + 0x00000000401418a0 ic_set_rx_policy + *fill* 0x0000000040141967 0x1 + .text.ic_set_sta_auth_flag + 0x0000000040141968 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x0000000040141968 ic_set_sta_auth_flag + *fill* 0x0000000040141973 0x1 + .text.ic_set_opmode + 0x0000000040141974 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x12 (size before relaxing) + 0x0000000040141974 ic_set_opmode + *fill* 0x000000004014197f 0x1 + .text.ic_set_interface + 0x0000000040141980 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x0000000040141980 ic_set_interface + *fill* 0x000000004014198d 0x3 + .text.ic_trc_update_conn_phy_mode + 0x0000000040141990 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x13 (size before relaxing) + 0x0000000040141990 ic_trc_update_conn_phy_mode + *fill* 0x000000004014199f 0x1 + .text.ic_stop_hw_txq + 0x00000000401419a0 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x00000000401419a0 ic_stop_hw_txq + *fill* 0x00000000401419aa 0x2 + .text.ic_stop_sw_txq + 0x00000000401419ac 0x37 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x4a (size before relaxing) + 0x00000000401419b0 ic_stop_sw_txq + *fill* 0x00000000401419e3 0x1 + .text.ic_txq_empty + 0x00000000401419e4 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x00000000401419e4 ic_txq_empty + *fill* 0x00000000401419ee 0x2 + .text.ic_set_fix_rate + 0x00000000401419f0 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x18 (size before relaxing) + 0x00000000401419f0 ic_set_fix_rate + .text.ic_set_lmac_stop + 0x0000000040141a04 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x0000000040141a04 ic_set_lmac_stop + *fill* 0x0000000040141a11 0x3 + .text.ic_create_wifi_task + 0x0000000040141a14 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x0000000040141a14 ic_create_wifi_task + *fill* 0x0000000040141a1e 0x2 + .text.ic_delete_wifi_task + 0x0000000040141a20 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x0000000040141a20 ic_delete_wifi_task + *fill* 0x0000000040141a2a 0x2 + .text.ic_set_csi + 0x0000000040141a2c 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x14 (size before relaxing) + 0x0000000040141a2c ic_set_csi + *fill* 0x0000000040141a39 0x3 + .text.ic_mac_init + 0x0000000040141a3c 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x0000000040141a3c ic_mac_init + *fill* 0x0000000040141a46 0x2 + .text.ic_mac_deinit + 0x0000000040141a48 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x11 (size before relaxing) + 0x0000000040141a48 ic_mac_deinit + *fill* 0x0000000040141a52 0x2 + .text.ic_csi_set_config + 0x0000000040141a54 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + 0x32 (size before relaxing) + 0x0000000040141a54 ic_csi_set_config + *fill* 0x0000000040141a7a 0x2 + .text.unlikely.lmacClearWaitQueue + 0x0000000040141a7c 0x82 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x8a (size before relaxing) + *fill* 0x0000000040141afe 0x2 + .text.lmacSetTxFrame + 0x0000000040141b00 0x7af /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x7fb (size before relaxing) + *fill* 0x00000000401422af 0x1 + .text.unlikely.lmacEndRetryAMPDUFail$isra$2 + 0x00000000401422b0 0x73 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x8f (size before relaxing) + *fill* 0x0000000040142323 0x1 + .text.lmacDiscardMSDU + 0x0000000040142324 0x103 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x133 (size before relaxing) + *fill* 0x0000000040142427 0x1 + .text.lmacDiscardFrameExchangeSequence + 0x0000000040142428 0x10a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x136 (size before relaxing) + *fill* 0x0000000040142532 0x2 + .text.lmacIsIdle + 0x0000000040142534 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x1f (size before relaxing) + 0x0000000040142534 lmacIsIdle + *fill* 0x000000004014254f 0x1 + .text.lmacSetAcParam + 0x0000000040142550 0x6c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x78 (size before relaxing) + 0x0000000040142550 lmacSetAcParam + .text.lmacInit + 0x00000000401425bc 0x118 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x134 (size before relaxing) + 0x00000000401425c0 lmacInit + .text.lmacDiscardAgedMSDU + 0x00000000401426d4 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x32 (size before relaxing) + 0x00000000401426d4 lmacDiscardAgedMSDU + *fill* 0x00000000401426fa 0x2 + .text.unlikely.lmacRetryTxFrame + 0x00000000401426fc 0x160 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x1a8 (size before relaxing) + .text.unlikely.lmacEndTxopFrameExchangeSequence + 0x000000004014285c 0x70e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x7ae (size before relaxing) + *fill* 0x0000000040142f6a 0x2 + .text.unlikely.lmacProcessLongRetryFail + 0x0000000040142f6c 0x1f8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x230 (size before relaxing) + .text.lmacProcessShortRetryFail + 0x0000000040143164 0x264 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x2a8 (size before relaxing) + .text.lmacProcessCtsTimeout + 0x00000000401433c8 0x90 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0xb0 (size before relaxing) + 0x00000000401433cc lmacProcessCtsTimeout + .text.lmacProcessCollision + 0x0000000040143458 0x105 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x128 (size before relaxing) + 0x000000004014345c lmacProcessCollision + *fill* 0x000000004014355d 0x3 + .text.lmacProcessCollisions_task + 0x0000000040143560 0x56 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x62 (size before relaxing) + 0x0000000040143568 lmacProcessCollisions_task + *fill* 0x00000000401435b6 0x2 + .text.lmacProcessTxRtsError + 0x00000000401435b8 0xfb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x11f (size before relaxing) + 0x00000000401435c0 lmacProcessTxRtsError + *fill* 0x00000000401436b3 0x1 + .text.lmacProcessAckTimeout + 0x00000000401436b4 0x12a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x14e (size before relaxing) + 0x00000000401436b8 lmacProcessAckTimeout + *fill* 0x00000000401437de 0x2 + .text.lmacProcessTxError + 0x00000000401437e0 0xc1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0xf8 (size before relaxing) + 0x00000000401437e4 lmacProcessTxError + *fill* 0x00000000401438a1 0x3 + .text.lmacProcessTxSuccess + 0x00000000401438a4 0x11f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x143 (size before relaxing) + 0x00000000401438a8 lmacProcessTxSuccess + *fill* 0x00000000401439c3 0x1 + .text.lmacProcessTxComplete + 0x00000000401439c4 0x21b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x24f (size before relaxing) + 0x00000000401439e4 lmacProcessTxComplete + *fill* 0x0000000040143bdf 0x1 + .text.lmacRxDone + 0x0000000040143be0 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x20 (size before relaxing) + 0x0000000040143be4 lmacRxDone + .text.lmacDisableTransmit + 0x0000000040143bfc 0x10a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x132 (size before relaxing) + 0x0000000040143c04 lmacDisableTransmit + *fill* 0x0000000040143d06 0x2 + .text.lmacProcessTxTimeout + 0x0000000040143d08 0x66 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x76 (size before relaxing) + 0x0000000040143d08 lmacProcessTxTimeout + *fill* 0x0000000040143d6e 0x2 + .text.lmac_stop_hw_txq + 0x0000000040143d70 0xe8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + 0x104 (size before relaxing) + 0x0000000040143d7c lmac_stop_hw_txq + .text.pm_coex_schm_process + 0x0000000040143e58 0xf6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x116 (size before relaxing) + *fill* 0x0000000040143f4e 0x2 + .text.pm_coex_schm_process_restart + 0x0000000040143f50 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x3a (size before relaxing) + *fill* 0x0000000040143f7a 0x2 + .text.pm_coex_slice_wifi_timeout + 0x0000000040143f7c 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x0000000040143f8b 0x1 + .text.pm_coex_schm_timeout + 0x0000000040143f8c 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x0000000040143f9b 0x1 + .text.pm_noise_check_timeout + 0x0000000040143f9c 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x0000000040143fab 0x1 + .text.pm_sleep_delay_timeout + 0x0000000040143fac 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x0000000040143fbb 0x1 + .text.pm_active_timeout + 0x0000000040143fbc 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x0000000040143fcb 0x1 + .text.pm_dream_timeout + 0x0000000040143fcc 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x0000000040143fdb 0x1 + .text.pm_tbtt_timeout + 0x0000000040143fdc 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x13 (size before relaxing) + *fill* 0x0000000040143feb 0x1 + .text.pm_sleep$part$1 + 0x0000000040143fec 0xe0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xfc (size before relaxing) + .text.pm_is_open + 0x00000000401440cc 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xf (size before relaxing) + 0x00000000401440cc pm_is_open + *fill* 0x00000000401440d7 0x1 + .text.pm_is_on_channel + 0x00000000401440d8 0xb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xf (size before relaxing) + 0x00000000401440d8 pm_is_on_channel + *fill* 0x00000000401440e3 0x1 + .text.pm_allow_tx + 0x00000000401440e4 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x24 (size before relaxing) + 0x00000000401440e4 pm_allow_tx + .text.pm_allow_sleep + 0x0000000040144104 0x3a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x3e (size before relaxing) + 0x0000000040144104 pm_allow_sleep + *fill* 0x000000004014413e 0x2 + .text.pm_noise_check_disable + 0x0000000040144140 0x22 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x2a (size before relaxing) + 0x0000000040144144 pm_noise_check_disable + *fill* 0x0000000040144162 0x2 + .text.pm_noise_check_enable + 0x0000000040144164 0x32 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x3e (size before relaxing) + 0x0000000040144164 pm_noise_check_enable + *fill* 0x0000000040144196 0x2 + .text.pm_noise_check + 0x0000000040144198 0x44 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x54 (size before relaxing) + 0x000000004014419c pm_noise_check + .text.pm_noise_check_process + 0x00000000401441dc 0x2a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x3a (size before relaxing) + 0x00000000401441dc pm_noise_check_process + *fill* 0x0000000040144206 0x2 + .text.pm_register_pm_tx_null_cb + 0x0000000040144208 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x000000004014420c pm_register_pm_tx_null_cb + .text.pm_send_probe_start + 0x0000000040144218 0x3c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x44 (size before relaxing) + 0x0000000040144220 pm_send_probe_start + .text.pm_send_probe_stop + 0x0000000040144254 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x28 (size before relaxing) + 0x0000000040144258 pm_send_probe_stop + .text.pm_off_channel + 0x0000000040144278 0x54 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x68 (size before relaxing) + 0x0000000040144278 pm_off_channel + .text.pm_on_channel + 0x00000000401442cc 0x40 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x4c (size before relaxing) + 0x00000000401442cc pm_on_channel + .text.pm_wake_up + 0x000000004014430c 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x28 (size before relaxing) + 0x000000004014430c pm_wake_up + .text.pm_go_to_sleep + 0x000000004014432c 0x3a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x42 (size before relaxing) + 0x0000000040144330 pm_go_to_sleep + *fill* 0x0000000040144366 0x2 + .text.pm_go_to_wake + 0x0000000040144368 0x36 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x42 (size before relaxing) + 0x0000000040144368 pm_go_to_wake + *fill* 0x000000004014439e 0x2 + .text.pm_coex_schm_timeout_process + 0x00000000401443a0 0x34 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x54 (size before relaxing) + 0x00000000401443a0 pm_coex_schm_timeout_process + .text.pm_coex_slice_timeout_process + 0x00000000401443d4 0xc8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xe8 (size before relaxing) + 0x00000000401443dc pm_coex_slice_timeout_process + .text.pm_active_timeout_process + 0x000000004014449c 0x84 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xa7 (size before relaxing) + 0x000000004014449c pm_active_timeout_process + *fill* 0x0000000040144520 0x0 + .text.pm_sleep_delay_timeout_process + 0x0000000040144520 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x28 (size before relaxing) + 0x0000000040144520 pm_sleep_delay_timeout_process + .text.pm_tbtt_process + 0x000000004014453c 0x29a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x2da (size before relaxing) + 0x0000000040144550 pm_tbtt_process + *fill* 0x00000000401447d6 0x2 + .text.pm_rx_beacon_process + 0x00000000401447d8 0x2c9 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x301 (size before relaxing) + 0x00000000401447e0 pm_rx_beacon_process + *fill* 0x0000000040144aa1 0x3 + .text.pm_tx_data_process + 0x0000000040144aa4 0x1bb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x1df (size before relaxing) + 0x0000000040144aa4 pm_tx_data_process + *fill* 0x0000000040144c5f 0x1 + .text.pm_tx_data_done_process + 0x0000000040144c60 0x42 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x52 (size before relaxing) + 0x0000000040144c60 pm_tx_data_done_process + *fill* 0x0000000040144ca2 0x2 + .text.pm_tx_null_data_done_process + 0x0000000040144ca4 0x203 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x233 (size before relaxing) + 0x0000000040144ca4 pm_tx_null_data_done_process + *fill* 0x0000000040144ea7 0x1 + .text.pm_send_sleep_null_cb + 0x0000000040144ea8 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x16 (size before relaxing) + 0x0000000040144ea8 pm_send_sleep_null_cb + *fill* 0x0000000040144eba 0x2 + .text.pm_send_wake_null_cb + 0x0000000040144ebc 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x16 (size before relaxing) + 0x0000000040144ebc pm_send_wake_null_cb + *fill* 0x0000000040144ece 0x2 + .text.pm_on_coex_schm_process_restart + 0x0000000040144ed0 0x8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0xf (size before relaxing) + 0x0000000040144ed0 pm_on_coex_schm_process_restart + *fill* 0x0000000040144ed8 0x0 + .text.pm_on_beacon_rx + 0x0000000040144ed8 0x3aa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x3ee (size before relaxing) + 0x0000000040144ef4 pm_on_beacon_rx + *fill* 0x0000000040145282 0x2 + .text.pm_on_data_tx + 0x0000000040145284 0xd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x14 (size before relaxing) + 0x0000000040145284 pm_on_data_tx + *fill* 0x0000000040145291 0x3 + .text.pm_on_data_tx_done + 0x0000000040145294 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x15 (size before relaxing) + 0x0000000040145294 pm_on_data_tx_done + *fill* 0x00000000401452a2 0x2 + .text.pm_start + 0x00000000401452a4 0x29c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x308 (size before relaxing) + 0x00000000401452b0 pm_start + .text.pm_stop 0x0000000040145540 0x113 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x167 (size before relaxing) + 0x0000000040145544 pm_stop + *fill* 0x0000000040145653 0x1 + .text.pm_attach + 0x0000000040145654 0x118 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x15c (size before relaxing) + 0x0000000040145680 pm_attach + .text.pm_deattach + 0x000000004014576c 0x6a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x8e (size before relaxing) + 0x000000004014576c pm_deattach + *fill* 0x00000000401457d6 0x2 + .text.pm_set_sleep_type + 0x00000000401457d8 0xec /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x110 (size before relaxing) + 0x00000000401457e0 pm_set_sleep_type + .text.pp_delete_task_manually + 0x00000000401458c4 0x44 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x48 (size before relaxing) + .text.pp_register_net80211_tx_cb + 0x0000000040145908 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000004014590c pp_register_net80211_tx_cb + .text.pp_register_config_cb + 0x0000000040145918 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000004014591c pp_register_config_cb + .text.pp_register_timer_cb + 0x0000000040145928 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000004014592c pp_register_timer_cb + .text.pp_register_michael_mic_failure_cb + 0x0000000040145938 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x000000004014593c pp_register_michael_mic_failure_cb + .text.ppSetStop + 0x0000000040145948 0x2f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x37 (size before relaxing) + 0x000000004014594c ppSetStop + *fill* 0x0000000040145977 0x1 + .text.ppRegisterRxCallback + 0x0000000040145978 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x20 (size before relaxing) + 0x0000000040145978 ppRegisterRxCallback + .text.pp_register_tx_cb + 0x0000000040145994 0x2d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x31 (size before relaxing) + 0x0000000040145994 pp_register_tx_cb + *fill* 0x00000000401459c1 0x3 + .text.ppRegisterTxCallback + 0x00000000401459c4 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x16 (size before relaxing) + 0x00000000401459c4 ppRegisterTxCallback + *fill* 0x00000000401459d6 0x2 + .text.ppRecycleRxPkt + 0x00000000401459d8 0x7e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x86 (size before relaxing) + 0x00000000401459ec ppRecycleRxPkt + *fill* 0x0000000040145a56 0x2 + .text.ppSetInterface + 0x0000000040145a58 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x0000000040145a5c ppSetInterface + .text.ppClearRxFragment + 0x0000000040145a6c 0xaa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0xca (size before relaxing) + 0x0000000040145a74 ppClearRxFragment + *fill* 0x0000000040145b16 0x2 + .text.ppGetTxQFirstAvail_Locked + 0x0000000040145b18 0x4e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x5a (size before relaxing) + 0x0000000040145b18 ppGetTxQFirstAvail_Locked + *fill* 0x0000000040145b66 0x2 + .text.ppFetchTxQFirstAvail + 0x0000000040145b68 0x68 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x74 (size before relaxing) + 0x0000000040145b68 ppFetchTxQFirstAvail + .text.ppDequeueTxQ + 0x0000000040145bd0 0x47 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x4f (size before relaxing) + 0x0000000040145bd0 ppDequeueTxQ + *fill* 0x0000000040145c17 0x1 + .text.ppRollBackTxQ + 0x0000000040145c18 0x42 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x4a (size before relaxing) + 0x0000000040145c18 ppRollBackTxQ + *fill* 0x0000000040145c5a 0x2 + .text.ppFillAMPDUBar + 0x0000000040145c5c 0x11c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x13c (size before relaxing) + 0x0000000040145c60 ppFillAMPDUBar + .text.ppReSendBar + 0x0000000040145d78 0x136 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x15e (size before relaxing) + 0x0000000040145d7c ppReSendBar + *fill* 0x0000000040145eae 0x2 + .text.ppRecordBarRRC + 0x0000000040145eb0 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x20 (size before relaxing) + 0x0000000040145eb0 ppRecordBarRRC + .text.ppTxqUpdateBitmap + 0x0000000040145ecc 0x28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x2c (size before relaxing) + 0x0000000040145ecc ppTxqUpdateBitmap + .text.ppGetTxqInfo + 0x0000000040145ef4 0x33 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x3b (size before relaxing) + 0x0000000040145ef4 ppGetTxqInfo + *fill* 0x0000000040145f27 0x1 + .text.ppEnqueueTxDone + 0x0000000040145f28 0x8a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0xa6 (size before relaxing) + 0x0000000040145f2c ppEnqueueTxDone + *fill* 0x0000000040145fb2 0x2 + .text.ppDequeueTxDone_Locked + 0x0000000040145fb4 0x54 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x64 (size before relaxing) + 0x0000000040145fb4 ppDequeueTxDone_Locked + .text.ppProcTxDone + 0x0000000040146008 0x146 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x16e (size before relaxing) + 0x0000000040146014 ppProcTxDone + *fill* 0x000000004014614e 0x2 + .text.pp_create_task + 0x0000000040146150 0x28f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x2a7 (size before relaxing) + 0x000000004014617c pp_create_task + *fill* 0x00000000401463df 0x1 + .text.pp_deattach + 0x00000000401463e0 0x33 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x43 (size before relaxing) + 0x00000000401463e0 pp_deattach + *fill* 0x0000000040146413 0x1 + .text.ppGetTxframe + 0x0000000040146414 0x93 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x9b (size before relaxing) + 0x000000004014641c ppGetTxframe + *fill* 0x00000000401464a7 0x1 + .text.ppTxqEmpty + 0x00000000401464a8 0x50 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x54 (size before relaxing) + 0x00000000401464ac ppTxqEmpty + .text.pp_delete_task + 0x00000000401464f8 0x6f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x8a (size before relaxing) + 0x00000000401464fc pp_delete_task + *fill* 0x0000000040146567 0x1 + .text.ppMapWaitTxq + 0x0000000040146568 0x186 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x1a2 (size before relaxing) + 0x000000004014656c ppMapWaitTxq + *fill* 0x00000000401466ee 0x2 + .text.ppProcessWaitingQueue + 0x00000000401466f0 0x52 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x5e (size before relaxing) + 0x00000000401466f4 ppProcessWaitingQueue + *fill* 0x0000000040146742 0x2 + .text.ppCheckTxIdle + 0x0000000040146744 0xdc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0xf0 (size before relaxing) + 0x0000000040146744 ppCheckTxIdle + .text.ppSelectNextQueue + 0x0000000040146820 0xb2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0xbe (size before relaxing) + 0x0000000040146820 ppSelectNextQueue + *fill* 0x00000000401468d2 0x2 + .text.ppCalTxop + 0x00000000401468d4 0x8a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x9a (size before relaxing) + 0x00000000401468d4 ppCalTxop + *fill* 0x000000004014695e 0x2 + .text.ppPrepareBarFrame + 0x0000000040146960 0x118 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x138 (size before relaxing) + 0x0000000040146970 ppPrepareBarFrame + .text.pp_attach + 0x0000000040146a78 0x10f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x133 (size before relaxing) + 0x0000000040146a80 pp_attach + *fill* 0x0000000040146b87 0x1 + .text.ppDirectRecycleAmpdu + 0x0000000040146b88 0x58 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x64 (size before relaxing) + 0x0000000040146b88 ppDirectRecycleAmpdu + .text.ppClearTxq + 0x0000000040146be0 0x73 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x83 (size before relaxing) + 0x0000000040146be0 ppClearTxq + *fill* 0x0000000040146c53 0x1 + .text.pp_stop_sw_txq + 0x0000000040146c54 0x7f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x9e (size before relaxing) + 0x0000000040146c58 pp_stop_sw_txq + *fill* 0x0000000040146cd3 0x1 + .text.ppRecycleAmpdu + 0x0000000040146cd4 0xa6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0xbe (size before relaxing) + 0x0000000040146cd4 ppRecycleAmpdu + *fill* 0x0000000040146d7a 0x2 + .text.ppRegressAmpdu + 0x0000000040146d7c 0x173 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0x193 (size before relaxing) + 0x0000000040146d80 ppRegressAmpdu + *fill* 0x0000000040146eef 0x1 + .text.ppGetTaskHdl + 0x0000000040146ef0 0xa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + 0xe (size before relaxing) + 0x0000000040146ef0 ppGetTaskHdl + *fill* 0x0000000040146efa 0x2 + .text.dbg_cnt_eb_alloc + 0x0000000040146efc 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + 0x28 (size before relaxing) + 0x0000000040146efc dbg_cnt_eb_alloc + .text.dbg_cnt_eb_free + 0x0000000040146f20 0x24 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + 0x28 (size before relaxing) + 0x0000000040146f20 dbg_cnt_eb_free + .text.dbg_cnt_lmac_ps_reset + 0x0000000040146f44 0x55 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + 0x61 (size before relaxing) + 0x0000000040146f44 dbg_cnt_lmac_ps_reset + *fill* 0x0000000040146f99 0x3 + .text.dbg_lmac_init + 0x0000000040146f9c 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + 0x1a (size before relaxing) + 0x0000000040146fa0 dbg_lmac_init + *fill* 0x0000000040146fb2 0x2 + .text.pp_timer_sleep_delay + 0x0000000040146fb4 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x0000000040146fc3 0x1 + .text.pp_timer_coex_slice + 0x0000000040146fc4 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x0000000040146fd3 0x1 + .text.pp_timer_coex_schm + 0x0000000040146fd4 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x0000000040146fe3 0x1 + .text.pp_timer_active + 0x0000000040146fe4 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x0000000040146ff3 0x1 + .text.pp_timer_tbtt + 0x0000000040146ff4 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x0000000040147003 0x1 + .text.pp_timer_noise_check + 0x0000000040147004 0xf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x13 (size before relaxing) + *fill* 0x0000000040147013 0x1 + .text.pp_timer_do_process + 0x0000000040147014 0xbc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0xc0 (size before relaxing) + 0x0000000040147024 pp_timer_do_process + .text.pp_timer_register_post_cb + 0x00000000401470d0 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x00000000401470d4 pp_timer_register_post_cb + .text.pp_timer_process + 0x00000000401470e0 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + 0x20 (size before relaxing) + 0x00000000401470e0 pp_timer_process + .text.RC_GetAckTime + 0x00000000401470fc 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + 0x0000000040147100 RC_GetAckTime + *fill* 0x0000000040147117 0x1 + .text.RC_GetCtsTime + 0x0000000040147118 0x9a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + 0x9e (size before relaxing) + 0x0000000040147120 RC_GetCtsTime + *fill* 0x00000000401471b2 0x2 + .text.RC_GetBlockAckTime + 0x00000000401471b4 0x68 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + 0x70 (size before relaxing) + 0x00000000401471b4 RC_GetBlockAckTime + .text.rc11NRate2SchedIdx + 0x000000004014721c 0x3c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rc11GRate2SchedIdx + 0x0000000040147258 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rc11BRate2SchedIdx + 0x0000000040147274 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rssi_margin + 0x0000000040147290 0x19e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + *fill* 0x000000004014742e 0x2 + .text.rc_set_per_conn_fix_rate$part$4 + 0x0000000040147430 0x70 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .text.rcTxUpdatePer + 0x00000000401474a0 0xf3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0xfb (size before relaxing) + *fill* 0x0000000040147593 0x1 + .text.rcUpdateAMPDUParam + 0x0000000040147594 0x117 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x11b (size before relaxing) + 0x00000000401475a4 rcUpdateAMPDUParam + *fill* 0x00000000401476ab 0x1 + .text.rcGet11NHighestRateIdx + 0x00000000401476ac 0x98 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x9c (size before relaxing) + 0x00000000401476b4 rcGet11NHighestRateIdx + .text.rcGet11GHighestRateIdx + 0x0000000040147744 0x80 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x88 (size before relaxing) + 0x0000000040147748 rcGet11GHighestRateIdx + .text.rcGet11BHighestRateIdx + 0x00000000401477c4 0x5a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x62 (size before relaxing) + 0x00000000401477c8 rcGet11BHighestRateIdx + *fill* 0x000000004014781e 0x2 + .text.rcGetHighestRateIdx$part$8 + 0x0000000040147820 0x49 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x55 (size before relaxing) + *fill* 0x0000000040147869 0x3 + .text.rcUpdatePhyMode + 0x000000004014786c 0x560 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x578 (size before relaxing) + 0x00000000401478bc rcUpdatePhyMode + .text.trc_onAmpduOp + 0x0000000040147dcc 0x15e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x166 (size before relaxing) + 0x0000000040147dcc trc_onAmpduOp + *fill* 0x0000000040147f2a 0x2 + .text.rcGetAmpduSched + 0x0000000040147f2c 0xad /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0xb5 (size before relaxing) + 0x0000000040147f38 rcGetAmpduSched + *fill* 0x0000000040147fd9 0x3 + .text.rcGetRate + 0x0000000040147fdc 0xe3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0xf3 (size before relaxing) + 0x0000000040147fe0 rcGetRate + *fill* 0x00000000401480bf 0x1 + .text.rcReachRetryLimit + 0x00000000401480c0 0x119 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x12d (size before relaxing) + 0x00000000401480cc rcReachRetryLimit + *fill* 0x00000000401481d9 0x3 + .text.rcAttach + 0x00000000401481dc 0xdb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0xf3 (size before relaxing) + 0x00000000401481e4 rcAttach + *fill* 0x00000000401482b7 0x1 + .text.trc_onPPTxDone + 0x00000000401482b8 0xdf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0xef (size before relaxing) + 0x00000000401482b8 trc_onPPTxDone + *fill* 0x0000000040148397 0x1 + .text.rc_enable_trc + 0x0000000040148398 0x114 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x12c (size before relaxing) + 0x00000000401483a8 rc_enable_trc + .text.rc_disable_trc + 0x00000000401484ac 0x6f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x87 (size before relaxing) + 0x00000000401484b0 rc_disable_trc + *fill* 0x000000004014851b 0x1 + .text.rc_disable_trc_by_interface + 0x000000004014851c 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x26 (size before relaxing) + 0x000000004014851c rc_disable_trc_by_interface + *fill* 0x000000004014853a 0x2 + .text.rc_get_trc_by_index + 0x000000004014853c 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x43 (size before relaxing) + 0x0000000040148544 rc_get_trc_by_index + *fill* 0x0000000040148577 0x1 + .text.trc_init + 0x0000000040148578 0x51 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x65 (size before relaxing) + 0x0000000040148578 trc_init + *fill* 0x00000000401485c9 0x3 + .text.trc_update_conn_phy_mode + 0x00000000401485cc 0x6b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x87 (size before relaxing) + 0x00000000401485d0 trc_update_conn_phy_mode + *fill* 0x0000000040148637 0x1 + .text.trc_deinit + 0x0000000040148638 0xb3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0xb7 (size before relaxing) + 0x0000000040148640 trc_deinit + *fill* 0x00000000401486eb 0x1 + .text.rc_set_fix_rate + 0x00000000401486ec 0x64 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x84 (size before relaxing) + 0x00000000401486ec rc_set_fix_rate + .text.wdev_csi_hw_bug_check + 0x0000000040148750 0x90 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x94 (size before relaxing) + .text.wdev_csi_rx_process$part$3 + 0x00000000401487e0 0xca /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xee (size before relaxing) + *fill* 0x00000000401488aa 0x2 + .text.unlikely.wDev_SnifferRxData + 0x00000000401488ac 0x2d6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x312 (size before relaxing) + *fill* 0x0000000040148b82 0x2 + .text.wDev_SetCurChannel + 0x0000000040148b84 0x22 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x26 (size before relaxing) + 0x0000000040148b84 wDev_SetCurChannel + *fill* 0x0000000040148ba6 0x2 + .text.wDev_SetOpMode + 0x0000000040148ba8 0x12 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x0000000040148bac wDev_SetOpMode + *fill* 0x0000000040148bba 0x2 + .text.wDev_Set_Beacon_Int + 0x0000000040148bbc 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x0000000040148bc0 wDev_Set_Beacon_Int + *fill* 0x0000000040148bca 0x2 + .text.wDev_Reset_TBTT + 0x0000000040148bcc 0x90 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x94 (size before relaxing) + 0x0000000040148be4 wDev_Reset_TBTT + .text.wDev_Mesh_Enable_Tsf + 0x0000000040148c5c 0x1c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x20 (size before relaxing) + 0x0000000040148c60 wDev_Mesh_Enable_Tsf + .text.wDev_Mesh_Set_TBTT + 0x0000000040148c78 0x74 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x80 (size before relaxing) + 0x0000000040148c80 wDev_Mesh_Set_TBTT + .text.wDev_Get_Next_TBTT + 0x0000000040148cec 0x6d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x7d (size before relaxing) + 0x0000000040148cf0 wDev_Get_Next_TBTT + *fill* 0x0000000040148d59 0x3 + .text.wdev_pop_promis_misc_buf + 0x0000000040148d5c 0x75 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x79 (size before relaxing) + 0x0000000040148d60 wdev_pop_promis_misc_buf + *fill* 0x0000000040148dd1 0x3 + .text.wdev_process_misc_pkt + 0x0000000040148dd4 0xd0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xe8 (size before relaxing) + 0x0000000040148dd4 wdev_process_misc_pkt + .text.wdev_set_promis_misc_buf + 0x0000000040148ea4 0x80 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x90 (size before relaxing) + 0x0000000040148ea8 wdev_set_promis_misc_buf + .text.wdev_set_promis_ctrl_pkt + 0x0000000040148f24 0x65 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x69 (size before relaxing) + 0x0000000040148f30 wdev_set_promis_ctrl_pkt + *fill* 0x0000000040148f89 0x3 + .text.wdev_set_promis + 0x0000000040148f8c 0x250 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x278 (size before relaxing) + 0x0000000040148fa4 wdev_set_promis + .text.wdev_set_promis_filter + 0x00000000401491dc 0x76 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x82 (size before relaxing) + 0x00000000401491dc wdev_set_promis_filter + *fill* 0x0000000040149252 0x2 + .text.wdev_set_promis_ctrl_filter + 0x0000000040149254 0x46 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x4e (size before relaxing) + 0x0000000040149254 wdev_set_promis_ctrl_filter + *fill* 0x000000004014929a 0x2 + .text.wDev_Ant_Init + 0x000000004014929c 0x9e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xa2 (size before relaxing) + 0x00000000401492a0 wDev_Ant_Init + *fill* 0x000000004014933a 0x2 + .text.wDev_Rxbuf_Deinit + 0x000000004014933c 0x93 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xa3 (size before relaxing) + 0x0000000040149340 wDev_Rxbuf_Deinit + *fill* 0x00000000401493cf 0x1 + .text.wDev_disable_low_rate + 0x00000000401493d0 0x54 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x00000000401493dc wDev_disable_low_rate + .text.wDev_enable_low_rate + 0x0000000040149424 0x4c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x54 (size before relaxing) + 0x0000000040149428 wDev_enable_low_rate + .text.wDev_is_low_rate_enable + 0x0000000040149470 0x23 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x2f (size before relaxing) + 0x0000000040149470 wDev_is_low_rate_enable + *fill* 0x0000000040149493 0x1 + .text.wDev_Initialize + 0x0000000040149494 0x66e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x6ba (size before relaxing) + 0x0000000040149578 wDev_Initialize + *fill* 0x0000000040149b02 0x2 + .text.wDev_DeInitialize + 0x0000000040149b04 0x4d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x59 (size before relaxing) + 0x0000000040149b08 wDev_DeInitialize + *fill* 0x0000000040149b51 0x3 + .text.wDev_EnableTransmit + 0x0000000040149b54 0x84 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x98 (size before relaxing) + 0x0000000040149b58 wDev_EnableTransmit + .text.wDev_SetMacAddress + 0x0000000040149bd8 0x87 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x0000000040149be4 wDev_SetMacAddress + *fill* 0x0000000040149c5f 0x1 + .text.Tx_Copy2Queue + 0x0000000040149c60 0x7f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x9f (size before relaxing) + 0x0000000040149c64 Tx_Copy2Queue + *fill* 0x0000000040149cdf 0x1 + .text.wDev_SetBssid + 0x0000000040149ce0 0xae /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0xbe (size before relaxing) + 0x0000000040149cec wDev_SetBssid + *fill* 0x0000000040149d8e 0x2 + .text.wDev_ProcessCollision + 0x0000000040149d90 0x38 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x44 (size before relaxing) + 0x0000000040149d90 wDev_ProcessCollision + .text.wDev_SetFrameAckType + 0x0000000040149dc8 0x58 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x0000000040149dcc wDev_SetFrameAckType + .text.wDev_Get_KeyEntry + 0x0000000040149e20 0x8f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x93 (size before relaxing) + 0x0000000040149e2c wDev_Get_KeyEntry + *fill* 0x0000000040149eaf 0x1 + .text.wDev_remove_KeyEntry + 0x0000000040149eb0 0x102 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x112 (size before relaxing) + 0x0000000040149ed0 wDev_remove_KeyEntry + *fill* 0x0000000040149fb2 0x2 + .text.wDev_remove_KeyEntry_all_cnx + 0x0000000040149fb4 0x2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x37 (size before relaxing) + 0x0000000040149fb4 wDev_remove_KeyEntry_all_cnx + *fill* 0x0000000040149fe0 0x0 + .text.wDev_Insert_KeyEntry + 0x0000000040149fe0 0x12a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x152 (size before relaxing) + 0x0000000040149ff0 wDev_Insert_KeyEntry + *fill* 0x000000004014a10a 0x2 + .text.wDev_Crypto_Conf + 0x000000004014a10c 0x54 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x5c (size before relaxing) + 0x000000004014a118 wDev_Crypto_Conf + .text.wDev_Crypto_Disable + 0x000000004014a160 0x50 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x64 (size before relaxing) + 0x000000004014a160 wDev_Crypto_Disable + .text.wDev_AddRXBA + 0x000000004014a1b0 0xa0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004014a1c4 wDev_AddRXBA + .text.wDev_ResetRXBA + 0x000000004014a250 0x44 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x50 (size before relaxing) + 0x000000004014a250 wDev_ResetRXBA + .text.wDev_RemoveRXBA + 0x000000004014a294 0x18 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x1c (size before relaxing) + 0x000000004014a294 wDev_RemoveRXBA + .text.wDev_GetBAInfo + 0x000000004014a2ac 0x63 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x000000004014a2b8 wDev_GetBAInfo + *fill* 0x000000004014a30f 0x1 + .text.wdev_set_csi + 0x000000004014a310 0x45 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x51 (size before relaxing) + 0x000000004014a314 wdev_set_csi + *fill* 0x000000004014a355 0x3 + .text.wdev_mac_init + 0x000000004014a358 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x22 (size before relaxing) + 0x000000004014a35c wdev_mac_init + *fill* 0x000000004014a376 0x2 + .text.wdev_mac_deinit + 0x000000004014a378 0x3d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x41 (size before relaxing) + 0x000000004014a384 wdev_mac_deinit + *fill* 0x000000004014a3b5 0x3 + .text.phy_change_channel_nomac + 0x000000004014a3b8 0x10 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) + 0x17 (size before relaxing) + 0x000000004014a3b8 phy_change_channel_nomac + *fill* 0x000000004014a3c8 0x0 + .text.ram_pbus_force_mode + 0x000000004014a3c8 0xf3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x10b (size before relaxing) + 0x000000004014a3e8 ram_pbus_force_mode + *fill* 0x000000004014a4bb 0x1 + .text.rfpll_init + 0x000000004014a4bc 0xb4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000004014a4c0 rfpll_init + .text.ram_restart_cal + 0x000000004014a570 0x5e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x62 (size before relaxing) + 0x000000004014a570 ram_restart_cal + *fill* 0x000000004014a5ce 0x2 + .text.ram_wait_rfpll_cal_end + 0x000000004014a5d0 0x44 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x50 (size before relaxing) + 0x000000004014a5d4 ram_wait_rfpll_cal_end + .text.chip_v7_rxmax_ext_ana + 0x000000004014a614 0xfb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0xff (size before relaxing) + 0x000000004014a620 chip_v7_rxmax_ext_ana + *fill* 0x000000004014a70f 0x1 + .text.bb_bss_cbw40_ana + 0x000000004014a710 0xcb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0xcf (size before relaxing) + 0x000000004014a714 bb_bss_cbw40_ana + *fill* 0x000000004014a7db 0x1 + .text.chip_v7_ana_rx_cfg + 0x000000004014a7dc 0x102 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x106 (size before relaxing) + 0x000000004014a7e0 chip_v7_ana_rx_cfg + *fill* 0x000000004014a8de 0x2 + .text.get_rf_freq_cap + 0x000000004014a8e0 0xa3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0xaf (size before relaxing) + 0x000000004014a8e0 get_rf_freq_cap + *fill* 0x000000004014a983 0x1 + .text.correct_rfpll_offset + 0x000000004014a984 0x112 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x116 (size before relaxing) + 0x000000004014a99c correct_rfpll_offset + *fill* 0x000000004014aa96 0x2 + .text.wr_rf_freq_mem + 0x000000004014aa98 0x6a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x72 (size before relaxing) + 0x000000004014aa98 wr_rf_freq_mem + *fill* 0x000000004014ab02 0x2 + .text.get_rf_freq_init$part$1 + 0x000000004014ab04 0x10b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x12b (size before relaxing) + *fill* 0x000000004014ac0f 0x1 + .text.write_freq_mem_all + 0x000000004014ac10 0x96 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0xaa (size before relaxing) + 0x000000004014ac10 write_freq_mem_all + *fill* 0x000000004014aca6 0x2 + .text.bt_i2c_write_set + 0x000000004014aca8 0x703 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x70b (size before relaxing) + 0x000000004014ad14 bt_i2c_write_set + *fill* 0x000000004014b3ab 0x1 + .text.bt_i2c_set_wifi_data + 0x000000004014b3ac 0x12e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x000000004014b3c0 bt_i2c_set_wifi_data + *fill* 0x000000004014b4da 0x2 + .text.bt_get_i2c_data + 0x000000004014b4dc 0x426 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x42a (size before relaxing) + 0x000000004014b4e0 bt_get_i2c_data + *fill* 0x000000004014b902 0x2 + .text.write_wifi_chan_data + 0x000000004014b904 0xab /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0xb7 (size before relaxing) + 0x000000004014b90c write_wifi_chan_data + *fill* 0x000000004014b9af 0x1 + .text.set_chan_freq_hw_init + 0x000000004014b9b0 0x138 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x178 (size before relaxing) + 0x000000004014b9bc set_chan_freq_hw_init + .text.rf_init 0x000000004014bae8 0x180 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x1ac (size before relaxing) + 0x000000004014bb0c rf_init + .text.set_chan_freq_sw_start + 0x000000004014bc68 0x216 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x23e (size before relaxing) + 0x000000004014bc88 set_chan_freq_sw_start + *fill* 0x000000004014be7e 0x2 + .text.set_channel_rfpll_freq + 0x000000004014be80 0x7a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x92 (size before relaxing) + 0x000000004014be84 set_channel_rfpll_freq + *fill* 0x000000004014befa 0x2 + .text.chip_v7_set_chan_nomac + 0x000000004014befc 0xaf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0xe2 (size before relaxing) + 0x000000004014bf10 chip_v7_set_chan_nomac + *fill* 0x000000004014bfab 0x1 + .text.chip_v7_set_chan_offset + 0x000000004014bfac 0xc0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0xe0 (size before relaxing) + 0x000000004014bfc0 chip_v7_set_chan_offset + .text.chip_v7_set_chan_ana + 0x000000004014c06c 0x1f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x2f (size before relaxing) + 0x000000004014c06c chip_v7_set_chan_ana + *fill* 0x000000004014c08b 0x1 + .text.phy_set_wifi_mode_only + 0x000000004014c08c 0xe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x12 (size before relaxing) + 0x000000004014c08c phy_set_wifi_mode_only + *fill* 0x000000004014c09a 0x2 + .text.ram_set_pbus_mem + 0x000000004014c09c 0x291 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x2a1 (size before relaxing) + 0x000000004014c100 ram_set_pbus_mem + *fill* 0x000000004014c32d 0x3 + .text.ram_start_tx_tone + 0x000000004014c330 0x7c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x84 (size before relaxing) + 0x000000004014c334 ram_start_tx_tone + .text.ram_bb_tx_ht20_cen + 0x000000004014c3ac 0x21 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x29 (size before relaxing) + 0x000000004014c3ac ram_bb_tx_ht20_cen + *fill* 0x000000004014c3cd 0x3 + .text.ram_phy_get_noisefloor + 0x000000004014c3d0 0x43 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004014c3d8 ram_phy_get_noisefloor + *fill* 0x000000004014c413 0x1 + .text.ram_check_noise_floor + 0x000000004014c414 0x112 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x12a (size before relaxing) + 0x000000004014c41c ram_check_noise_floor + *fill* 0x000000004014c526 0x2 + .text.ram_set_noise_floor + 0x000000004014c528 0x50 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x54 (size before relaxing) + 0x000000004014c530 ram_set_noise_floor + .text.ram_gen_rx_gain_table + 0x000000004014c578 0x142 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x14a (size before relaxing) + 0x000000004014c584 ram_gen_rx_gain_table + *fill* 0x000000004014c6ba 0x2 + .text.ram_bb_bss_cbw40_dig + 0x000000004014c6bc 0x23 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x2b (size before relaxing) + 0x000000004014c6bc ram_bb_bss_cbw40_dig + *fill* 0x000000004014c6df 0x1 + .text.ram_cbw2040_cfg + 0x000000004014c6e0 0x64 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x70 (size before relaxing) + 0x000000004014c6e4 ram_cbw2040_cfg + .text.ram_bb_bss_bw_40_en + 0x000000004014c744 0x22 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x2a (size before relaxing) + 0x000000004014c744 ram_bb_bss_bw_40_en + *fill* 0x000000004014c766 0x2 + .text.bt_txdc_cal$part$3 + 0x000000004014c768 0xbd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0xc5 (size before relaxing) + *fill* 0x000000004014c825 0x3 + .text.bt_txiq_cal$part$4 + 0x000000004014c828 0xa6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0xc6 (size before relaxing) + *fill* 0x000000004014c8ce 0x2 + .text.ram_spur_coef_cfg + 0x000000004014c8d0 0x21f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x243 (size before relaxing) + 0x000000004014c8f0 ram_spur_coef_cfg + *fill* 0x000000004014caef 0x1 + .text.disable_wifi_agc + 0x000000004014caf0 0x82 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x86 (size before relaxing) + 0x000000004014cb08 disable_wifi_agc + *fill* 0x000000004014cb72 0x2 + .text.enable_wifi_agc + 0x000000004014cb74 0x75 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x8d (size before relaxing) + 0x000000004014cb78 enable_wifi_agc + *fill* 0x000000004014cbe9 0x3 + .text.set_rx_gain_cal_iq + 0x000000004014cbec 0x2ef /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x31b (size before relaxing) + 0x000000004014cc18 set_rx_gain_cal_iq + *fill* 0x000000004014cedb 0x1 + .text.set_rx_gain_cal_dc + 0x000000004014cedc 0x2f4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x314 (size before relaxing) + 0x000000004014ceec set_rx_gain_cal_dc + .text.wr_rx_gain_mem + 0x000000004014d1d0 0x165 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x17d (size before relaxing) + 0x000000004014d1d4 wr_rx_gain_mem + *fill* 0x000000004014d335 0x3 + .text.set_rx_gain_testchip_70 + 0x000000004014d338 0x24a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x282 (size before relaxing) + 0x000000004014d344 set_rx_gain_testchip_70 + *fill* 0x000000004014d582 0x2 + .text.bt_correct_bbgain + 0x000000004014d584 0xb0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0xb4 (size before relaxing) + 0x000000004014d584 bt_correct_bbgain + .text.bt_tx_gain_cal$part$2 + 0x000000004014d634 0x21c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x230 (size before relaxing) + .text.bt_index_to_bb + 0x000000004014d850 0x16 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x1a (size before relaxing) + 0x000000004014d850 bt_index_to_bb + *fill* 0x000000004014d866 0x2 + .text.wr_bt_tx_gain_mem + 0x000000004014d868 0xbd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0xc5 (size before relaxing) + 0x000000004014d870 wr_bt_tx_gain_mem + *fill* 0x000000004014d925 0x3 + .text.set_tx_gain_table_bt + 0x000000004014d928 0x32 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x56 (size before relaxing) + 0x000000004014d92c set_tx_gain_table_bt + *fill* 0x000000004014d95a 0x2 + .text.set_chanfreq_nomac + 0x000000004014d95c 0x27 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x2f (size before relaxing) + 0x000000004014d95c set_chanfreq_nomac + *fill* 0x000000004014d983 0x1 + .text.bb_bss_cbw40 + 0x000000004014d984 0xe3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0xfb (size before relaxing) + 0x000000004014d994 bb_bss_cbw40 + *fill* 0x000000004014da67 0x1 + .text.read_hw_noisefloor + 0x000000004014da68 0x13 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x17 (size before relaxing) + 0x000000004014da68 read_hw_noisefloor + *fill* 0x000000004014da7b 0x1 + .text.noise_check_loop + 0x000000004014da7c 0x173 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x18f (size before relaxing) + 0x000000004014da88 noise_check_loop + *fill* 0x000000004014dbef 0x1 + .text.noise_init + 0x000000004014dbf0 0x116 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x12e (size before relaxing) + 0x000000004014dbf8 noise_init + *fill* 0x000000004014dd06 0x2 + .text.chip_v7_set_chan_misc + 0x000000004014dd08 0x110 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x130 (size before relaxing) + 0x000000004014dd28 chip_v7_set_chan_misc + .text.set_rx_gain_table + 0x000000004014de18 0x1e3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x22f (size before relaxing) + 0x000000004014de38 set_rx_gain_table + *fill* 0x000000004014dffb 0x1 + .text.txiq_cal_init + 0x000000004014dffc 0xdc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0xf4 (size before relaxing) + 0x000000004014e000 txiq_cal_init + .text.opt_11b_resart + 0x000000004014e0d8 0xab /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0xc3 (size before relaxing) + 0x000000004014e0ec opt_11b_resart + *fill* 0x000000004014e183 0x1 + .text.phy_chan_filt_set + 0x000000004014e184 0xde /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0xf2 (size before relaxing) + 0x000000004014e198 phy_chan_filt_set + *fill* 0x000000004014e262 0x2 + .text.register_chipv7_phy_init_param + 0x000000004014e264 0x29e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x2ae (size before relaxing) + 0x000000004014e26c register_chipv7_phy_init_param + *fill* 0x000000004014e502 0x2 + .text.phy_get_romfunc_addr + 0x000000004014e504 0x29f /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x2a3 (size before relaxing) + 0x000000004014e5a0 phy_get_romfunc_addr + *fill* 0x000000004014e7a3 0x1 + .text.rf_cal_data_recovery + 0x000000004014e7a4 0xd7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0xe7 (size before relaxing) + 0x000000004014e7a4 rf_cal_data_recovery + *fill* 0x000000004014e87b 0x1 + .text.rf_cal_data_backup + 0x000000004014e87c 0x1a7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x1cb (size before relaxing) + 0x000000004014e884 rf_cal_data_backup + *fill* 0x000000004014ea23 0x1 + .text.phy_get_rf_cal_version + 0x000000004014ea24 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004014ea28 phy_get_rf_cal_version + .text.set_xpd_sar + 0x000000004014ea30 0x2e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x32 (size before relaxing) + 0x000000004014ea38 set_xpd_sar + *fill* 0x000000004014ea5e 0x2 + .text.phy_close_rf + 0x000000004014ea60 0x76 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x9e (size before relaxing) + 0x000000004014ea64 phy_close_rf + *fill* 0x000000004014ead6 0x2 + .text.phy_set_most_tpw + 0x000000004014ead8 0x4d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x55 (size before relaxing) + 0x000000004014eae8 phy_set_most_tpw + *fill* 0x000000004014eb25 0x3 + .text.phy_get_most_tpw + 0x000000004014eb28 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x2c (size before relaxing) + 0x000000004014eb28 phy_get_most_tpw + .text.phy_ant_init + 0x000000004014eb48 0xbb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0xcb (size before relaxing) + 0x000000004014eb60 phy_ant_init + *fill* 0x000000004014ec03 0x1 + .text.bb_init 0x000000004014ec04 0x5b6 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x6e2 (size before relaxing) + 0x000000004014ec80 bb_init + *fill* 0x000000004014f1ba 0x2 + .text.register_chipv7_phy + 0x000000004014f1bc 0x30a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x396 (size before relaxing) + 0x000000004014f1dc register_chipv7_phy + *fill* 0x000000004014f4c6 0x2 + .text.ant_dft_cfg + 0x000000004014f4c8 0x21 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x29 (size before relaxing) + 0x000000004014f4c8 ant_dft_cfg + *fill* 0x000000004014f4e9 0x3 + .text.ant_wifitx_cfg + 0x000000004014f4ec 0x46 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x4e (size before relaxing) + 0x000000004014f4f0 ant_wifitx_cfg + *fill* 0x000000004014f532 0x2 + .text.ant_wifirx_cfg + 0x000000004014f534 0xa4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0xb8 (size before relaxing) + 0x000000004014f538 ant_wifirx_cfg + .text.phy_chan_dump_cfg + 0x000000004014f5d8 0x99 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x000000004014f5dc phy_chan_dump_cfg + *fill* 0x000000004014f671 0x3 + .text.chan14_mic_cfg + 0x000000004014f674 0xea /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x10e (size before relaxing) + 0x000000004014f680 chan14_mic_cfg + *fill* 0x000000004014f75e 0x2 + .text.ram_index_to_txbbgain + 0x000000004014f760 0x1e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x000000004014f764 ram_index_to_txbbgain + *fill* 0x000000004014f77e 0x2 + .text.ram_txdc_cal_v70 + 0x000000004014f780 0x1b8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x1cc (size before relaxing) + 0x000000004014f790 ram_txdc_cal_v70 + .text.pwdet_sar2_init + 0x000000004014f938 0xfc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x114 (size before relaxing) + 0x000000004014f950 pwdet_sar2_init + .text.ram_en_pwdet + 0x000000004014fa34 0x86 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x96 (size before relaxing) + 0x000000004014fa40 ram_en_pwdet + *fill* 0x000000004014faba 0x2 + .text.txcal_debuge_mode + 0x000000004014fabc 0x53 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x5f (size before relaxing) + 0x000000004014fabc txcal_debuge_mode + *fill* 0x000000004014fb0f 0x1 + .text.ram_txcal_work_mode + 0x000000004014fb10 0x2e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x32 (size before relaxing) + 0x000000004014fb10 ram_txcal_work_mode + *fill* 0x000000004014fb3e 0x2 + .text.ram_get_fm_sar_dout + 0x000000004014fb40 0x9d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0xa9 (size before relaxing) + 0x000000004014fb40 ram_get_fm_sar_dout + *fill* 0x000000004014fbdd 0x3 + .text.ram_txiq_get_mis_pwr + 0x000000004014fbe0 0xd4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0xe8 (size before relaxing) + 0x000000004014fbf0 ram_txiq_get_mis_pwr + .text.ram_txiq_cover + 0x000000004014fcb4 0x197 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x19b (size before relaxing) + 0x000000004014fcb4 ram_txiq_cover + *fill* 0x000000004014fe4b 0x1 + .text.rfcal_txiq + 0x000000004014fe4c 0x1df /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x207 (size before relaxing) + 0x000000004014fe4c rfcal_txiq + *fill* 0x000000004015002b 0x1 + .text.ram_iq_est_enable + 0x000000004015002c 0xb2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0xbe (size before relaxing) + 0x0000000040150040 ram_iq_est_enable + *fill* 0x00000000401500de 0x2 + .text.ram_iq_est_disable + 0x00000000401500e0 0x2e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x36 (size before relaxing) + 0x00000000401500e0 ram_iq_est_disable + *fill* 0x000000004015010e 0x2 + .text.ram_dc_iq_est + 0x0000000040150110 0x6e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x7e (size before relaxing) + 0x0000000040150110 ram_dc_iq_est + *fill* 0x000000004015017e 0x2 + .text.ram_pbus_rx_dco_cal + 0x0000000040150180 0x2ff /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x323 (size before relaxing) + 0x0000000040150194 ram_pbus_rx_dco_cal + *fill* 0x000000004015047f 0x1 + .text.pbus_rx_dco_cal_1step + 0x0000000040150480 0x4a0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x4a8 (size before relaxing) + 0x0000000040150484 pbus_rx_dco_cal_1step + .text.rc_cal 0x0000000040150920 0x2cd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x2e5 (size before relaxing) + 0x0000000040150928 rc_cal + *fill* 0x0000000040150bed 0x3 + .text.tx_cap_init + 0x0000000040150bf0 0x154 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x17c (size before relaxing) + 0x0000000040150bf8 tx_cap_init + .text.ram_meas_tone_pwr_db + 0x0000000040150d44 0x55 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x5d (size before relaxing) + 0x0000000040150d44 ram_meas_tone_pwr_db + *fill* 0x0000000040150d99 0x3 + .text.ram_rfcal_pwrctrl + 0x0000000040150d9c 0x24e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x25a (size before relaxing) + 0x0000000040150da0 ram_rfcal_pwrctrl + *fill* 0x0000000040150fea 0x2 + .text.ram_tx_pwr_backoff + 0x0000000040150fec 0x20c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x224 (size before relaxing) + 0x0000000040150fec ram_tx_pwr_backoff + .text.cal_rf_ana_gain + 0x00000000401511f8 0xd3 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0xf3 (size before relaxing) + 0x0000000040151200 cal_rf_ana_gain + *fill* 0x00000000401512cb 0x1 + .text.tx_pwctrl_init_cal + 0x00000000401512cc 0x17a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x1b6 (size before relaxing) + 0x00000000401512d8 tx_pwctrl_init_cal + *fill* 0x0000000040151446 0x2 + .text.tx_pwctrl_init + 0x0000000040151448 0x9c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0xc8 (size before relaxing) + 0x000000004015144c tx_pwctrl_init + .text.bt_tx_pwctrl_init + 0x00000000401514e4 0x23b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x2ab (size before relaxing) + 0x00000000401514ec bt_tx_pwctrl_init + *fill* 0x000000004015171f 0x1 + .text.ram_phy_get_vdd33 + 0x0000000040151720 0x176 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x1b2 (size before relaxing) + 0x0000000040151720 ram_phy_get_vdd33 + *fill* 0x0000000040151896 0x2 + .text.txpwr_offset + 0x0000000040151898 0x90 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0xa4 (size before relaxing) + 0x00000000401518a4 txpwr_offset + .text.phy_set_bbfreq_init + 0x0000000040151928 0x42 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x46 (size before relaxing) + 0x0000000040151934 phy_set_bbfreq_init + *fill* 0x000000004015196a 0x2 + .text.ram_tx_pwctrl_bg_init + 0x000000004015196c 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x2a (size before relaxing) + 0x0000000040151970 ram_tx_pwctrl_bg_init + *fill* 0x0000000040151992 0x2 + .literal.net80211_printf + 0x0000000040151994 0x4 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + 0x8 (size before relaxing) + .literal.parse_url_char + 0x0000000040151998 0x8 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .literal.http_parse_host_char + 0x00000000401519a0 0x4 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .literal.http_parse_host + 0x00000000401519a4 0x18 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x20 (size before relaxing) + .literal.http_should_keep_alive + 0x00000000401519bc 0x0 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x4 (size before relaxing) + .literal.http_parser_execute + 0x00000000401519bc 0x180 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x2b4 (size before relaxing) + .literal.http_parser_init + 0x0000000040151b3c 0x0 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0xc (size before relaxing) + .literal.http_parser_settings_init + 0x0000000040151b3c 0x0 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x4 (size before relaxing) + .literal.http_parser_url_init + 0x0000000040151b3c 0x0 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x4 (size before relaxing) + .literal.http_parser_parse_url + 0x0000000040151b3c 0x14 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x28 (size before relaxing) + .literal.http_parser_pause + 0x0000000040151b50 0x10 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x20 (size before relaxing) + .literal.esp_tls_server_session_create + 0x0000000040151b60 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x4 (size before relaxing) + .literal.esp_tls_server_session_delete + 0x0000000040151b60 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x4 (size before relaxing) + .literal.esp_tls_get_bytes_avail + 0x0000000040151b60 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x4 (size before relaxing) + .literal.esp_mbedtls_read + 0x0000000040151b60 0x18 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x1c (size before relaxing) + .literal.esp_mbedtls_write + 0x0000000040151b78 0x8 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x20 (size before relaxing) + .literal.set_ca_cert + 0x0000000040151b80 0x14 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x34 (size before relaxing) + .literal.set_global_ca_store + 0x0000000040151b94 0xc esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x2c (size before relaxing) + .literal.set_pki_context + 0x0000000040151ba0 0x18 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x60 (size before relaxing) + .literal.esp_mbedtls_get_bytes_avail + 0x0000000040151bb8 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x14 (size before relaxing) + .literal.esp_mbedtls_cleanup + 0x0000000040151bbc 0x4 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x30 (size before relaxing) + .literal.set_server_config + 0x0000000040151bc0 0x1c esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x5c (size before relaxing) + .literal.set_client_config + 0x0000000040151bdc 0x30 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0xa4 (size before relaxing) + .literal.esp_create_mbedtls_handle + 0x0000000040151c0c 0x2c esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x90 (size before relaxing) + .literal.esp_mbedtls_server_session_create + 0x0000000040151c38 0x10 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x30 (size before relaxing) + .literal.esp_mbedtls_server_session_delete + 0x0000000040151c48 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x8 (size before relaxing) + .literal.low_level_init + 0x0000000040151c48 0x4 esp-idf/lwip/liblwip.a(wlanif.c.obj) + .literal.lwip_netif_wifi_free_rx_buffer + 0x0000000040151c4c 0x0 esp-idf/lwip/liblwip.a(wlanif.c.obj) + 0x8 (size before relaxing) + .literal.low_level_output + 0x0000000040151c4c 0x0 esp-idf/lwip/liblwip.a(wlanif.c.obj) + 0x18 (size before relaxing) + .literal.wlanif_input + 0x0000000040151c4c 0x0 esp-idf/lwip/liblwip.a(wlanif.c.obj) + 0x14 (size before relaxing) + .literal.wlanif_init + 0x0000000040151c4c 0x20 esp-idf/lwip/liblwip.a(wlanif.c.obj) + 0x2c (size before relaxing) + .literal.wlanif_init_sta + 0x0000000040151c6c 0x0 esp-idf/lwip/liblwip.a(wlanif.c.obj) + 0x4 (size before relaxing) + .literal.wlanif_init_ap + 0x0000000040151c6c 0x0 esp-idf/lwip/liblwip.a(wlanif.c.obj) + 0x4 (size before relaxing) + .literal.ethip6_output + 0x0000000040151c6c 0x4 esp-idf/lwip/liblwip.a(ethip6.c.obj) + 0x14 (size before relaxing) + .literal.ssl_mfl_code_to_length + 0x0000000040151c70 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x8 (size before relaxing) + .literal.ssl_check_hs_header + 0x0000000040151c70 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xc (size before relaxing) + .literal.ssl_dtls_replay_reset + 0x0000000040151c70 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x8 (size before relaxing) + .literal.ssl_cookie_write_dummy + 0x0000000040151c74 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.ssl_cookie_check_dummy + 0x0000000040151c78 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.ssl_reset_in_out_pointers + 0x0000000040151c78 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x8 (size before relaxing) + .literal.ssl_get_maximum_datagram_size + 0x0000000040151c78 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xc (size before relaxing) + .literal.ssl_get_remaining_space_in_datagram + 0x0000000040151c80 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x8 (size before relaxing) + .literal.ssl_swap_epochs + 0x0000000040151c84 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x10 (size before relaxing) + .literal.ssl_load_buffered_message + 0x0000000040151c84 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xc (size before relaxing) + .literal.ssl_check_dtls_clihlo_cookie + 0x0000000040151c84 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x18 (size before relaxing) + .literal.ssl_calc_finished_tls_sha256 + 0x0000000040151c94 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x1c (size before relaxing) + .literal.ssl_calc_verify_tls_sha256 + 0x0000000040151c9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x10 (size before relaxing) + .literal.tls_prf_generic + 0x0000000040151c9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x54 (size before relaxing) + .literal.tls_prf_sha256 + 0x0000000040151c9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.tls_prf_sha384 + 0x0000000040151c9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.tls1_prf + 0x0000000040151c9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x84 (size before relaxing) + .literal.ssl_calc_finished_tls_sha384 + 0x0000000040151c9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x1c (size before relaxing) + .literal.ssl_calc_verify_tls_sha384 + 0x0000000040151c9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x10 (size before relaxing) + .literal.ssl_calc_finished_tls + 0x0000000040151c9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x2c (size before relaxing) + .literal.ssl_calc_verify_tls + 0x0000000040151c9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x20 (size before relaxing) + .literal.ssl_bitmask_set + 0x0000000040151c9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.ssl_consume_current_message + 0x0000000040151c9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x8 (size before relaxing) + .literal.ssl_flight_free + 0x0000000040151c9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x8 (size before relaxing) + .literal.ssl_free_buffered_record + 0x0000000040151c9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.ssl_load_buffered_record + 0x0000000040151c9c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x14 (size before relaxing) + .literal.ssl_buffering_free_slot + 0x0000000040151ca0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x8 (size before relaxing) + .literal.ssl_buffering_free + 0x0000000040151ca0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x8 (size before relaxing) + .literal.ssl_buffer_make_space + 0x0000000040151ca0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xc (size before relaxing) + .literal.ssl_key_cert_free + 0x0000000040151ca0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.ssl_flight_append + 0x0000000040151ca0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x14 (size before relaxing) + .literal.ssl_buffer_future_record + 0x0000000040151ca4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xc (size before relaxing) + .literal.ssl_append_key_cert + 0x0000000040151ca4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x8 (size before relaxing) + .literal.ssl_hs_is_proper_fragment + 0x0000000040151ca4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xc (size before relaxing) + .literal.ssl_buffer_message + 0x0000000040151ca8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x40 (size before relaxing) + .literal.ssl_transform_init + 0x0000000040151ca8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x14 (size before relaxing) + .literal.ssl_update_checksum_md5sha1 + 0x0000000040151ca8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x8 (size before relaxing) + .literal.ssl_update_checksum_sha256 + 0x0000000040151ca8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.ssl_update_checksum_start + 0x0000000040151ca8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x10 (size before relaxing) + .literal.ssl_update_checksum_sha384 + 0x0000000040151ca8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ssl_derive_keys + 0x0000000040151ca8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x98 (size before relaxing) + .literal.mbedtls_ssl_psk_derive_premaster + 0x0000000040151cd8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_ssl_flush_output + 0x0000000040151cdc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ssl_recv_flight_completed + 0x0000000040151cdc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ssl_send_flight_completed + 0x0000000040151cdc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ssl_update_handshake_status + 0x0000000040151cdc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ssl_dtls_replay_update + 0x0000000040151cdc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ssl_optimize_checksum + 0x0000000040151cdc 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_reset_checksum + 0x0000000040151ce8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ssl_session_init + 0x0000000040151ce8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ssl_init + 0x0000000040151ce8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ssl_conf_own_cert + 0x0000000040151ce8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ssl_conf_dh_param_bin + 0x0000000040151ce8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ssl_set_hostname + 0x0000000040151ce8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_ssl_conf_alpn_protocols + 0x0000000040151ce8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ssl_get_record_expansion + 0x0000000040151ce8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ssl_get_max_frag_len + 0x0000000040151ce8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xc (size before relaxing) + .literal.ssl_get_remaining_payload_in_datagram + 0x0000000040151ce8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ssl_get_max_out_record_payload + 0x0000000040151cec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_ssl_handshake_step + 0x0000000040151cec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ssl_handshake + 0x0000000040151cec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ssl_transform_free + 0x0000000040151cec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ssl_handshake_free + 0x0000000040151cec 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x3c (size before relaxing) + .literal.ssl_handshake_wrapup_free_hs_transform + 0x0000000040151cf0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ssl_session_free + 0x0000000040151cf0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ssl_handshake_wrapup + 0x0000000040151cf0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ssl_free + 0x0000000040151cf0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x54 (size before relaxing) + .literal.mbedtls_ssl_config_init + 0x0000000040151cf0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ssl_config_defaults + 0x0000000040151cf0 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x54 (size before relaxing) + .literal.mbedtls_ssl_config_free + 0x0000000040151d18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_ssl_sig_from_pk + 0x0000000040151d18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x8 (size before relaxing) + .literal.ssl_handshake_params_init + 0x0000000040151d18 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x38 (size before relaxing) + .literal.ssl_handshake_init + 0x0000000040151d1c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x3c (size before relaxing) + .literal.ssl_session_reset_int + 0x0000000040151d1c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x34 (size before relaxing) + .literal.ssl_handle_possible_reconnect + 0x0000000040151d1c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ssl_setup + 0x0000000040151d20 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x24 (size before relaxing) + .literal.ssl_start_renegotiation + 0x0000000040151d20 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_ssl_md_alg_from_hash + 0x0000000040151d20 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_hash_from_md_alg + 0x0000000040151d24 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .literal.mbedtls_ssl_check_cert_usage + 0x0000000040151d28 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x1c (size before relaxing) + .literal.ssl_encrypt_buf + 0x0000000040151d34 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x60 (size before relaxing) + .literal.mbedtls_ssl_write_record + 0x0000000040151d34 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_ssl_flight_transmit + 0x0000000040151d38 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x30 (size before relaxing) + .literal.mbedtls_ssl_resend + 0x0000000040151d38 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ssl_prepare_handshake_record + 0x0000000040151d38 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_ssl_handle_message_type + 0x0000000040151d44 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_ssl_write_handshake_msg + 0x0000000040151d50 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x18 (size before relaxing) + .literal.ssl_write_hello_request + 0x0000000040151d50 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.ssl_resend_hello_request + 0x0000000040151d50 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ssl_fetch_input + 0x0000000040151d50 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x34 (size before relaxing) + .literal.mbedtls_ssl_renegotiate + 0x0000000040151d5c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x14 (size before relaxing) + .literal.ssl_check_ctr_renegotiate + 0x0000000040151d5c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ssl_write_certificate + 0x0000000040151d5c 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_ssl_write_change_cipher_spec + 0x0000000040151d68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ssl_write_finished + 0x0000000040151d68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x1c (size before relaxing) + .literal.mbedtls_ssl_send_alert_message + 0x0000000040151d68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x8 (size before relaxing) + .literal.ssl_parse_certificate_chain + 0x0000000040151d68 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x64 (size before relaxing) + .literal.ssl_write_real + 0x0000000040151d80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x14 (size before relaxing) + .literal.ssl_write_split + 0x0000000040151d80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ssl_write + 0x0000000040151d80 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x10 (size before relaxing) + .literal.ssl_decrypt_buf + 0x0000000040151d80 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x6c (size before relaxing) + .literal.ssl_prepare_record_content + 0x0000000040151d88 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x10 (size before relaxing) + .literal.ssl_parse_record_header + 0x0000000040151d88 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x24 (size before relaxing) + .literal.ssl_get_next_record + 0x0000000040151d88 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x38 (size before relaxing) + .literal.mbedtls_ssl_read_record + 0x0000000040151d8c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x30 (size before relaxing) + .literal.mbedtls_ssl_parse_certificate + 0x0000000040151d94 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x2c (size before relaxing) + .literal.mbedtls_ssl_parse_change_cipher_spec + 0x0000000040151d9c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_ssl_parse_finished + 0x0000000040151d9c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x20 (size before relaxing) + .literal.mbedtls_ssl_read + 0x0000000040151da0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x44 (size before relaxing) + .literal.mbedtls_ssl_set_calc_verify_md + 0x0000000040151da0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ssl_get_key_exchange_md_ssl_tls + 0x0000000040151da4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x34 (size before relaxing) + .literal.mbedtls_ssl_get_key_exchange_md_tls1_2 + 0x0000000040151da4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x28 (size before relaxing) + .literal.net_would_block + 0x0000000040151da4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_net_recv + 0x0000000040151da4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_net_send + 0x0000000040151da8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_ssl_ciphersuite_from_id + 0x0000000040151db0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .literal.mbedtls_ssl_list_ciphersuites + 0x0000000040151db4 0x10 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0x18 (size before relaxing) + .literal.mbedtls_ssl_get_ciphersuite_sig_pk_alg + 0x0000000040151dc4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .literal.ssl_parse_server_psk_hint + 0x0000000040151dc8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + .literal.ssl_write_renegotiation_ext + 0x0000000040151dcc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x4 (size before relaxing) + .literal.ssl_write_session_ticket_ext + 0x0000000040151dcc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x4 (size before relaxing) + .literal.ssl_generate_random + 0x0000000040151dcc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + .literal.ssl_write_hostname_ext + 0x0000000040151dd0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x8 (size before relaxing) + .literal.ssl_write_alpn_ext + 0x0000000040151dd0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0xc (size before relaxing) + .literal.ssl_write_signature_algorithms_ext + 0x0000000040151dd0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x8 (size before relaxing) + .literal.ssl_write_supported_elliptic_curves_ext + 0x0000000040151dd0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x8 (size before relaxing) + .literal.ssl_write_client_hello + 0x0000000040151dd0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x5c (size before relaxing) + .literal.ssl_parse_renegotiation_info + 0x0000000040151dd4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0xc (size before relaxing) + .literal.ssl_parse_max_fragment_length_ext + 0x0000000040151dd8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x8 (size before relaxing) + .literal.ssl_parse_truncated_hmac_ext + 0x0000000040151dd8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x8 (size before relaxing) + .literal.ssl_parse_encrypt_then_mac_ext + 0x0000000040151dd8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x8 (size before relaxing) + .literal.ssl_parse_extended_ms_ext + 0x0000000040151dd8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x8 (size before relaxing) + .literal.ssl_parse_session_ticket_ext + 0x0000000040151dd8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x8 (size before relaxing) + .literal.ssl_parse_supported_point_formats_ext + 0x0000000040151dd8 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0xc (size before relaxing) + .literal.ssl_parse_certificate_request + 0x0000000040151dd8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x20 (size before relaxing) + .literal.ssl_parse_alpn_ext + 0x0000000040151ddc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x20 (size before relaxing) + .literal.ssl_parse_hello_verify_request + 0x0000000040151ddc 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x2c (size before relaxing) + .literal.ssl_parse_server_hello + 0x0000000040151de0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0xa4 (size before relaxing) + .literal.ssl_parse_server_hello_done + 0x0000000040151de8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x14 (size before relaxing) + .literal.ssl_check_server_ecdh_params + 0x0000000040151dec 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0xc (size before relaxing) + .literal.ssl_get_ecdh_params_from_cert + 0x0000000040151dec 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x18 (size before relaxing) + .literal.ssl_parse_server_dh_params + 0x0000000040151df0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x8 (size before relaxing) + .literal.ssl_parse_server_ecdh_params + 0x0000000040151df0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0xc (size before relaxing) + .literal.ssl_parse_signature_algorithm + 0x0000000040151df0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x10 (size before relaxing) + .literal.ssl_parse_server_key_exchange + 0x0000000040151df0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x74 (size before relaxing) + .literal.ssl_write_encrypted_pms + 0x0000000040151df0 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x1c (size before relaxing) + .literal.ssl_write_client_key_exchange + 0x0000000040151df0 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x48 (size before relaxing) + .literal.ssl_write_certificate_verify + 0x0000000040151df4 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x18 (size before relaxing) + .literal.ssl_parse_new_session_ticket + 0x0000000040151df4 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x30 (size before relaxing) + .literal.mbedtls_ssl_handshake_client_step + 0x0000000040151df8 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x4c (size before relaxing) + .literal.ssl_write_renegotiation_ext + 0x0000000040151dfc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x8 (size before relaxing) + .literal.ssl_parse_servername_ext + 0x0000000040151dfc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x18 (size before relaxing) + .literal.ssl_parse_renegotiation_info + 0x0000000040151dfc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0xc (size before relaxing) + .literal.ssl_parse_supported_point_formats + 0x0000000040151dfc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x8 (size before relaxing) + .literal.ssl_parse_max_fragment_length_ext + 0x0000000040151dfc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x8 (size before relaxing) + .literal.ssl_parse_truncated_hmac_ext + 0x0000000040151dfc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x8 (size before relaxing) + .literal.ssl_parse_encrypt_then_mac_ext + 0x0000000040151dfc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x8 (size before relaxing) + .literal.ssl_parse_extended_ms_ext + 0x0000000040151dfc 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x8 (size before relaxing) + .literal.ssl_parse_client_psk_identity + 0x0000000040151dfc 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x14 (size before relaxing) + .literal.ssl_parse_signature_algorithms_ext + 0x0000000040151e08 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x1c (size before relaxing) + .literal.ssl_parse_supported_elliptic_curves + 0x0000000040151e08 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x20 (size before relaxing) + .literal.ssl_parse_session_ticket_ext + 0x0000000040151e08 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x18 (size before relaxing) + .literal.ssl_parse_alpn_ext + 0x0000000040151e08 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x20 (size before relaxing) + .literal.ssl_write_alpn_ext + 0x0000000040151e08 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x8 (size before relaxing) + .literal.ssl_pick_cert + 0x0000000040151e08 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x10 (size before relaxing) + .literal.ssl_ciphersuite_match + 0x0000000040151e08 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x1c (size before relaxing) + .literal.ssl_parse_client_hello + 0x0000000040151e08 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0xc0 (size before relaxing) + .literal.ssl_write_hello_verify_request + 0x0000000040151e10 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x14 (size before relaxing) + .literal.ssl_write_new_session_ticket + 0x0000000040151e10 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x4 (size before relaxing) + .literal.ssl_write_encrypt_then_mac_ext + 0x0000000040151e10 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x8 (size before relaxing) + .literal.ssl_write_server_hello + 0x0000000040151e10 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x50 (size before relaxing) + .literal.ssl_get_ecdh_params_from_cert + 0x0000000040151e10 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0xc (size before relaxing) + .literal.ssl_prepare_server_key_exchange + 0x0000000040151e10 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x44 (size before relaxing) + .literal.ssl_write_server_key_exchange + 0x0000000040151e10 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x14 (size before relaxing) + .literal.ssl_write_certificate_request + 0x0000000040151e18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x10 (size before relaxing) + .literal.ssl_write_server_hello_done + 0x0000000040151e18 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0xc (size before relaxing) + .literal.ssl_parse_client_dh_public + 0x0000000040151e18 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0xc (size before relaxing) + .literal.ssl_decrypt_encrypted_pms + 0x0000000040151e1c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x14 (size before relaxing) + .literal.ssl_parse_encrypted_pms + 0x0000000040151e1c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0xc (size before relaxing) + .literal.ssl_parse_client_key_exchange + 0x0000000040151e1c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x58 (size before relaxing) + .literal.ssl_parse_certificate_verify + 0x0000000040151e20 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x24 (size before relaxing) + .literal.mbedtls_ssl_handshake_server_step + 0x0000000040151e24 0x4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x50 (size before relaxing) + .literal.dhm_read_bignum + 0x0000000040151e28 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x8 (size before relaxing) + .literal.dhm_check_range + 0x0000000040151e2c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x24 (size before relaxing) + .literal.dhm_update_blinding + 0x0000000040151e2c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x40 (size before relaxing) + .literal.mbedtls_dhm_init + 0x0000000040151e2c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_dhm_read_params + 0x0000000040151e2c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_dhm_make_params + 0x0000000040151e2c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x3c (size before relaxing) + .literal.mbedtls_dhm_set_group + 0x0000000040151e30 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_dhm_read_public + 0x0000000040151e34 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_dhm_make_public + 0x0000000040151e34 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x28 (size before relaxing) + .literal.mbedtls_dhm_calc_secret + 0x0000000040151e38 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x34 (size before relaxing) + .literal.mbedtls_dhm_free + 0x0000000040151e38 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x2c (size before relaxing) + .literal.ecdh_gen_public_restartable + 0x0000000040151e38 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x8 (size before relaxing) + .literal.ecdh_compute_shared_restartable + 0x0000000040151e38 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x18 (size before relaxing) + .literal.ecdh_init_internal + 0x0000000040151e3c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x14 (size before relaxing) + .literal.ecdh_setup_internal + 0x0000000040151e3c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x8 (size before relaxing) + .literal.ecdh_free_internal + 0x0000000040151e40 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x14 (size before relaxing) + .literal.ecdh_read_params_internal + 0x0000000040151e40 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x4 (size before relaxing) + .literal.ecdh_read_public_internal + 0x0000000040151e40 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x8 (size before relaxing) + .literal.ecdh_get_params_internal + 0x0000000040151e40 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ecdh_gen_public + 0x0000000040151e40 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x4 (size before relaxing) + .literal.ecdh_make_params_internal + 0x0000000040151e40 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x10 (size before relaxing) + .literal.ecdh_make_public_internal + 0x0000000040151e40 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecdh_compute_shared + 0x0000000040151e40 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x4 (size before relaxing) + .literal.ecdh_calc_secret_internal + 0x0000000040151e40 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ecdh_init + 0x0000000040151e40 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ecdh_setup + 0x0000000040151e40 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdh_free + 0x0000000040151e40 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ecdh_make_params + 0x0000000040151e40 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdh_read_params + 0x0000000040151e40 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0xc (size before relaxing) + .literal.mbedtls_ecdh_get_params + 0x0000000040151e40 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_ecdh_make_public + 0x0000000040151e40 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdh_read_public + 0x0000000040151e40 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_ecdh_calc_secret + 0x0000000040151e40 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x4 (size before relaxing) + .literal._ZdlPv + 0x0000000040151e40 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + 0x4 (size before relaxing) + .literal._ZdaPv + 0x0000000040151e40 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + 0x4 (size before relaxing) + .literal._ZSt15get_new_handlerv + 0x0000000040151e40 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .literal._ZnwjRKSt9nothrow_t + 0x0000000040151e44 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + 0x14 (size before relaxing) + .literal._ZnajRKSt9nothrow_t + 0x0000000040151e4c 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + 0x4 (size before relaxing) + .literal._ZN10__cxxabiv120__si_class_type_infoD2Ev + 0x0000000040151e4c 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x8 (size before relaxing) + .literal._ZN10__cxxabiv120__si_class_type_infoD0Ev + 0x0000000040151e50 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x8 (size before relaxing) + .literal._ZNKSt9type_infoeqERKS_$isra$0 + 0x0000000040151e50 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .literal._ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcEiPKvPKNS_17__class_type_infoES2_ + 0x0000000040151e54 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x4 (size before relaxing) + .literal._ZNK10__cxxabiv120__si_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE + 0x0000000040151e54 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x8 (size before relaxing) + .literal._ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE + 0x0000000040151e54 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x4 (size before relaxing) + .literal._ZN10__cxxabiv111__terminateEPFvvE + 0x0000000040151e54 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + 0x18 (size before relaxing) + .literal._ZSt13get_terminatev + 0x0000000040151e58 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .literal._ZSt9terminatev + 0x0000000040151e5c 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + 0x8 (size before relaxing) + .literal._ZN10__cxxabiv112__unexpectedEPFvvE + 0x0000000040151e5c 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + 0x4 (size before relaxing) + .literal._ZSt14get_unexpectedv + 0x0000000040151e5c 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .literal._ZSt10unexpectedv + 0x0000000040151e60 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + 0x8 (size before relaxing) + .literal._ZL28read_encoded_value_with_basehjPKhPj + 0x0000000040151e60 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + 0x10 (size before relaxing) + .literal._ZL15get_ttype_entryP16lsda_header_infom + 0x0000000040151e64 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + 0x8 (size before relaxing) + .literal._ZL20check_exception_specP16lsda_header_infoPKSt9type_infoPvl + 0x0000000040151e64 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + 0xc (size before relaxing) + .literal._ZL21base_of_encoded_valuehP15_Unwind_Context + 0x0000000040151e64 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + 0x10 (size before relaxing) + .literal._ZL18read_encoded_valueP15_Unwind_ContexthPKhPj + 0x0000000040151e64 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + 0x8 (size before relaxing) + .literal._ZL17parse_lsda_headerP15_Unwind_ContextPKhP16lsda_header_info + 0x0000000040151e64 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + 0x10 (size before relaxing) + .literal.__gxx_personality_v0 + 0x0000000040151e64 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + 0x68 (size before relaxing) + .literal.__cxa_call_unexpected + 0x0000000040151e6c 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + 0x2c (size before relaxing) + .literal._ZdlPvj + 0x0000000040151e6c 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + 0x4 (size before relaxing) + .literal._ZL15eh_globals_dtorPv + 0x0000000040151e6c 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + 0x8 (size before relaxing) + .literal.__cxa_get_globals_fast + 0x0000000040151e6c 0xc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .literal.startup._GLOBAL__sub_I___cxa_get_globals_fast + 0x0000000040151e78 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + 0xc (size before relaxing) + .literal.exit._GLOBAL__sub_D___cxa_get_globals_fast + 0x0000000040151e80 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + 0x8 (size before relaxing) + .literal._ZN10__cxxabiv117__class_type_infoD2Ev + 0x0000000040151e84 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x8 (size before relaxing) + .literal._ZN10__cxxabiv117__class_type_infoD0Ev + 0x0000000040151e88 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x8 (size before relaxing) + .literal._ZNKSt9type_infoeqERKS_$isra$0 + 0x0000000040151e88 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x4 (size before relaxing) + .literal._ZNK10__cxxabiv117__class_type_info12__do_dyncastEiNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE + 0x0000000040151e88 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x8 (size before relaxing) + .literal._ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE + 0x0000000040151e88 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x4 (size before relaxing) + .literal._ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj + 0x0000000040151e88 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x4 (size before relaxing) + .literal 0x0000000040151e88 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfdi.o) + .literal 0x0000000040151e8c 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + 0x94 (size before relaxing) + .literal 0x0000000040151eac 0x34 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + 0xa8 (size before relaxing) + .literal 0x0000000040151ee0 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) + 0x14 (size before relaxing) + .literal 0x0000000040151ee8 0xc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + 0x18 (size before relaxing) + .literal 0x0000000040151ef4 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + 0x4 (size before relaxing) + .literal 0x0000000040151ef4 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + 0x24 (size before relaxing) + .literal 0x0000000040151f0c 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) + 0x28 (size before relaxing) + .literal 0x0000000040151f0c 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + 0x3c (size before relaxing) + .literal 0x0000000040151f10 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) + 0x28 (size before relaxing) + .literal 0x0000000040151f10 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + 0xc (size before relaxing) + .literal 0x0000000040151f10 0x24 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + 0x48 (size before relaxing) + .literal 0x0000000040151f34 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + 0xc (size before relaxing) + .literal 0x0000000040151f34 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + 0x28 (size before relaxing) + .literal 0x0000000040151f34 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + 0x34 (size before relaxing) + .literal 0x0000000040151f38 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + 0x40 (size before relaxing) + .literal 0x0000000040151f38 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + 0xc (size before relaxing) + .literal 0x0000000040151f38 0x1c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + 0x80 (size before relaxing) + .literal 0x0000000040151f54 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + 0xc (size before relaxing) + .literal 0x0000000040151f54 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + 0x30 (size before relaxing) + .literal 0x0000000040151f54 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + 0x38 (size before relaxing) + .literal 0x0000000040151f54 0x3c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + 0x104 (size before relaxing) + .literal 0x0000000040151f90 0x10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + 0x2c (size before relaxing) + .literal 0x0000000040151fa0 0xc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + 0x18 (size before relaxing) + .literal 0x0000000040151fac 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + 0x8 (size before relaxing) + .literal 0x0000000040151fac 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + 0x80 (size before relaxing) + .literal 0x0000000040151fc0 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + 0x14 (size before relaxing) + .literal 0x0000000040151fc0 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + 0x28 (size before relaxing) + .literal 0x0000000040151fc4 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + 0x14 (size before relaxing) + .literal 0x0000000040151fc4 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + 0x3c (size before relaxing) + .literal 0x0000000040151fc8 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + 0x38 (size before relaxing) + .literal 0x0000000040151fc8 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) + 0x18 (size before relaxing) + .literal 0x0000000040151fc8 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + 0x50 (size before relaxing) + .literal 0x0000000040151fcc 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + 0xc (size before relaxing) + .literal 0x0000000040151fcc 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + 0x1c (size before relaxing) + .literal 0x0000000040151fd0 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + 0x1c (size before relaxing) + .literal 0x0000000040151fd4 0xcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + 0x264 (size before relaxing) + .literal 0x00000000401520a0 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + 0x34 (size before relaxing) + .literal 0x00000000401520a8 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + 0x2c (size before relaxing) + .literal 0x00000000401520a8 0x58 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + 0x1a0 (size before relaxing) + .literal 0x0000000040152100 0x24 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + 0x15c (size before relaxing) + .literal 0x0000000040152124 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + 0x8 (size before relaxing) + .literal 0x0000000040152128 0x30 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + 0xb8 (size before relaxing) + .literal 0x0000000040152158 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + 0x1ec (size before relaxing) + .literal 0x0000000040152198 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + 0x14 (size before relaxing) + .literal 0x0000000040152198 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + 0x8 (size before relaxing) + .literal 0x0000000040152198 0x50 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + 0x218 (size before relaxing) + .literal 0x00000000401521e8 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + 0x4 (size before relaxing) + .literal 0x00000000401521e8 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + 0x48 (size before relaxing) + .literal 0x00000000401521e8 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + 0x4 (size before relaxing) + .literal 0x00000000401521e8 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) + 0x10 (size before relaxing) + .literal 0x00000000401521ec 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + 0x4 (size before relaxing) + .literal 0x00000000401521ec 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + 0x10 (size before relaxing) + .literal 0x00000000401521ec 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + 0x14 (size before relaxing) + .literal 0x00000000401521f0 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + 0x70 (size before relaxing) + .literal 0x0000000040152204 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + 0x20 (size before relaxing) + .literal 0x000000004015220c 0x4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + .literal 0x0000000040152210 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + 0x78 (size before relaxing) + .literal 0x0000000040152238 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + 0xe4 (size before relaxing) + .literal.lib_printf + 0x0000000040152240 0x8 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + 0x10 (size before relaxing) + .literal.heap_bubble_down + 0x0000000040152248 0x4 esp-idf/log/liblog.a(log.c.obj) + .literal.esp_log_level_set + 0x000000004015224c 0x30 esp-idf/log/liblog.a(log.c.obj) + 0x58 (size before relaxing) + .literal.handler_instances_add + 0x000000004015227c 0xc esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x24 (size before relaxing) + .literal.base_node_add_handler + 0x0000000040152288 0x4 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x24 (size before relaxing) + .literal.loop_node_add_handler + 0x000000004015228c 0x8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x28 (size before relaxing) + .literal.handler_instances_remove + 0x0000000040152294 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x10 (size before relaxing) + .literal.base_node_remove_handler + 0x0000000040152294 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0xc (size before relaxing) + .literal.loop_node_remove_handler + 0x0000000040152294 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x10 (size before relaxing) + .literal.esp_event_loop_create + 0x0000000040152294 0x34 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x68 (size before relaxing) + .literal.esp_event_loop_run + 0x00000000401522c8 0x1c esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x3c (size before relaxing) + .literal.esp_event_loop_run_task + 0x00000000401522e4 0x8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x18 (size before relaxing) + .literal.esp_event_handler_register_with_internal + 0x00000000401522ec 0x10 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x50 (size before relaxing) + .literal.esp_event_handler_register_with + 0x00000000401522fc 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x4 (size before relaxing) + .literal.esp_event_handler_unregister_with_internal + 0x00000000401522fc 0xc esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x3c (size before relaxing) + .literal.esp_event_handler_unregister_with + 0x0000000040152308 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x4 (size before relaxing) + .literal.esp_event_post_to + 0x0000000040152308 0x8 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x40 (size before relaxing) + .literal.esp_event_handler_register + 0x0000000040152310 0x4 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x8 (size before relaxing) + .literal.esp_event_handler_unregister + 0x0000000040152314 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x8 (size before relaxing) + .literal.esp_event_post + 0x0000000040152314 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x8 (size before relaxing) + .literal.esp_event_loop_create_default + 0x0000000040152314 0x4 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x10 (size before relaxing) + .literal.uart_hal_rxfifo_rst + 0x0000000040152318 0x28 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + 0x2c (size before relaxing) + .literal.uart_hal_tx_break + 0x0000000040152340 0x0 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.uart_hal_write_txfifo + 0x0000000040152340 0x14 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + 0x2c (size before relaxing) + .literal.uart_hal_read_rxfifo + 0x0000000040152354 0x4 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + 0x2c (size before relaxing) + .literal.phy_printf + 0x0000000040152358 0x4 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + 0x8 (size before relaxing) + .text.lib_printf + 0x000000004015235c 0x70 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .text.phy_printf + 0x00000000401523cc 0x2a esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + 0x00000000401523cc phy_printf + *fill* 0x00000000401523f6 0x2 + .text.net80211_printf + 0x00000000401523f8 0x2a esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + 0x00000000401523f8 net80211_printf + *fill* 0x0000000040152422 0x2 + .text.parse_url_char + 0x0000000040152424 0x34e esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + *fill* 0x0000000040152772 0x2 + .text.http_parse_host_char + 0x0000000040152774 0x314 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .text.http_parse_host + 0x0000000040152a88 0x104 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x108 (size before relaxing) + .text.http_should_keep_alive + 0x0000000040152b8c 0x35 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x0000000040152b8c http_should_keep_alive + *fill* 0x0000000040152bc1 0x3 + .text.http_parser_execute + 0x0000000040152bc4 0x2d38 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x2d5c (size before relaxing) + 0x0000000040152bc4 http_parser_execute + .text.http_parser_init + 0x00000000401558fc 0x46 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x00000000401558fc http_parser_init + *fill* 0x0000000040155942 0x2 + .text.http_parser_settings_init + 0x0000000040155944 0x12 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x0000000040155944 http_parser_settings_init + *fill* 0x0000000040155956 0x2 + .text.http_parser_url_init + 0x0000000040155958 0x12 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x0000000040155958 http_parser_url_init + *fill* 0x000000004015596a 0x2 + .text.http_parser_parse_url + 0x000000004015596c 0x111 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x000000004015596c http_parser_parse_url + *fill* 0x0000000040155a7d 0x3 + .text.http_parser_pause + 0x0000000040155a80 0x4b esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x4e (size before relaxing) + 0x0000000040155a80 http_parser_pause + *fill* 0x0000000040155acb 0x1 + .text.esp_tls_server_session_create + 0x0000000040155acc 0x10 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x14 (size before relaxing) + 0x0000000040155acc esp_tls_server_session_create + .text.esp_tls_server_session_delete + 0x0000000040155adc 0xa esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0xe (size before relaxing) + 0x0000000040155adc esp_tls_server_session_delete + *fill* 0x0000000040155ae6 0x2 + .text.esp_tls_get_bytes_avail + 0x0000000040155ae8 0xc esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x10 (size before relaxing) + 0x0000000040155ae8 esp_tls_get_bytes_avail + .text.esp_mbedtls_read + 0x0000000040155af4 0x66 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x6e (size before relaxing) + 0x0000000040155af4 esp_mbedtls_read + *fill* 0x0000000040155b5a 0x2 + .text.esp_mbedtls_write + 0x0000000040155b5c 0x89 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x8d (size before relaxing) + 0x0000000040155b5c esp_mbedtls_write + *fill* 0x0000000040155be5 0x3 + .text.set_ca_cert + 0x0000000040155be8 0x84 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x90 (size before relaxing) + .text.set_global_ca_store + 0x0000000040155c6c 0x5e esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x66 (size before relaxing) + *fill* 0x0000000040155cca 0x2 + .text.set_pki_context + 0x0000000040155ccc 0x122 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x13a (size before relaxing) + *fill* 0x0000000040155dee 0x2 + .text.esp_mbedtls_get_bytes_avail + 0x0000000040155df0 0x30 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x0000000040155df0 esp_mbedtls_get_bytes_avail + .text.esp_mbedtls_cleanup + 0x0000000040155e20 0x66 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x8a (size before relaxing) + 0x0000000040155e20 esp_mbedtls_cleanup + *fill* 0x0000000040155e86 0x2 + .text.set_server_config + 0x0000000040155e88 0x10c esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x118 (size before relaxing) + 0x0000000040155e88 set_server_config + .text.set_client_config + 0x0000000040155f94 0x21a esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x23e (size before relaxing) + 0x0000000040155f94 set_client_config + *fill* 0x00000000401561ae 0x2 + .text.esp_create_mbedtls_handle + 0x00000000401561b0 0x160 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x18b (size before relaxing) + 0x00000000401561b0 esp_create_mbedtls_handle + *fill* 0x0000000040156310 0x0 + .text.esp_mbedtls_server_session_create + 0x0000000040156310 0xd4 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0xd8 (size before relaxing) + 0x0000000040156310 esp_mbedtls_server_session_create + .text.esp_mbedtls_server_session_delete + 0x00000000401563e4 0x17 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x00000000401563e4 esp_mbedtls_server_session_delete + *fill* 0x00000000401563fb 0x1 + .text.low_level_init + 0x00000000401563fc 0x1b esp-idf/lwip/liblwip.a(wlanif.c.obj) + *fill* 0x0000000040156417 0x1 + .text.lwip_netif_wifi_free_rx_buffer + 0x0000000040156418 0x12 esp-idf/lwip/liblwip.a(wlanif.c.obj) + 0x16 (size before relaxing) + *fill* 0x000000004015642a 0x2 + .text.low_level_output + 0x000000004015642c 0x61 esp-idf/lwip/liblwip.a(wlanif.c.obj) + 0x71 (size before relaxing) + *fill* 0x000000004015648d 0x3 + .text.wlanif_input + 0x0000000040156490 0x5b esp-idf/lwip/liblwip.a(wlanif.c.obj) + 0x67 (size before relaxing) + 0x0000000040156490 wlanif_input + *fill* 0x00000000401564eb 0x1 + .text.wlanif_init + 0x00000000401564ec 0x4a esp-idf/lwip/liblwip.a(wlanif.c.obj) + 0x52 (size before relaxing) + 0x00000000401564ec wlanif_init + *fill* 0x0000000040156536 0x2 + .text.wlanif_init_sta + 0x0000000040156538 0x19 esp-idf/lwip/liblwip.a(wlanif.c.obj) + 0x1d (size before relaxing) + 0x0000000040156538 wlanif_init_sta + *fill* 0x0000000040156551 0x3 + .text.wlanif_init_ap + 0x0000000040156554 0x19 esp-idf/lwip/liblwip.a(wlanif.c.obj) + 0x1d (size before relaxing) + 0x0000000040156554 wlanif_init_ap + *fill* 0x000000004015656d 0x3 + .text.ethip6_output + 0x0000000040156570 0x7c esp-idf/lwip/liblwip.a(ethip6.c.obj) + 0x84 (size before relaxing) + 0x0000000040156570 ethip6_output + .text.ssl_mfl_code_to_length + 0x00000000401565ec 0x29 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x0000000040156615 0x3 + .text.ssl_check_hs_header + 0x0000000040156618 0x3d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x45 (size before relaxing) + *fill* 0x0000000040156655 0x3 + .text.ssl_dtls_replay_reset + 0x0000000040156658 0x17 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x000000004015666f 0x1 + .text.ssl_cookie_write_dummy + 0x0000000040156670 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_cookie_check_dummy + 0x0000000040156678 0x8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_reset_in_out_pointers + 0x0000000040156680 0x3e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x42 (size before relaxing) + *fill* 0x00000000401566be 0x2 + .text.ssl_get_maximum_datagram_size + 0x00000000401566c0 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x1c (size before relaxing) + .text.ssl_get_remaining_space_in_datagram + 0x00000000401566d8 0x19 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x1d (size before relaxing) + *fill* 0x00000000401566f1 0x3 + .text.ssl_swap_epochs + 0x00000000401566f4 0x52 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x5a (size before relaxing) + *fill* 0x0000000040156746 0x2 + .text.ssl_load_buffered_message + 0x0000000040156748 0xa9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x00000000401567f1 0x3 + .text.ssl_check_dtls_clihlo_cookie + 0x00000000401567f4 0x17d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x0000000040156971 0x3 + .text.ssl_calc_finished_tls_sha256 + 0x0000000040156974 0x66 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x72 (size before relaxing) + *fill* 0x00000000401569da 0x2 + .text.ssl_calc_verify_tls_sha256 + 0x00000000401569dc 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x30 (size before relaxing) + .text.tls_prf_generic + 0x0000000040156a00 0x150 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x188 (size before relaxing) + .text.tls_prf_sha256 + 0x0000000040156b50 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x20 (size before relaxing) + .text.tls_prf_sha384 + 0x0000000040156b6c 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x20 (size before relaxing) + .text.tls1_prf + 0x0000000040156b88 0x226 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x27a (size before relaxing) + *fill* 0x0000000040156dae 0x2 + .text.ssl_calc_finished_tls_sha384 + 0x0000000040156db0 0x66 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x72 (size before relaxing) + *fill* 0x0000000040156e16 0x2 + .text.ssl_calc_verify_tls_sha384 + 0x0000000040156e18 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x30 (size before relaxing) + .text.ssl_calc_finished_tls + 0x0000000040156e3c 0x86 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x9e (size before relaxing) + *fill* 0x0000000040156ec2 0x2 + .text.ssl_calc_verify_tls + 0x0000000040156ec4 0x47 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x5f (size before relaxing) + *fill* 0x0000000040156f0b 0x1 + .text.ssl_bitmask_set + 0x0000000040156f0c 0x98 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_consume_current_message + 0x0000000040156fa4 0x50 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_flight_free + 0x0000000040156ff4 0x1b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x1f (size before relaxing) + *fill* 0x000000004015700f 0x1 + .text.ssl_free_buffered_record + 0x0000000040157010 0x24 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x27 (size before relaxing) + *fill* 0x0000000040157034 0x0 + .text.ssl_load_buffered_record + 0x0000000040157034 0x7a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x7e (size before relaxing) + *fill* 0x00000000401570ae 0x2 + .text.ssl_buffering_free_slot + 0x00000000401570b0 0x7c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x80 (size before relaxing) + .text.ssl_buffering_free + 0x000000004015712c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x27 (size before relaxing) + *fill* 0x000000004015714c 0x0 + .text.ssl_buffer_make_space + 0x000000004015714c 0x4c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_key_cert_free + 0x0000000040157198 0x17 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x00000000401571af 0x1 + .text.ssl_flight_append + 0x00000000401571b0 0x69 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x71 (size before relaxing) + *fill* 0x0000000040157219 0x3 + .text.ssl_buffer_future_record + 0x000000004015721c 0x54 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x58 (size before relaxing) + .text.ssl_append_key_cert + 0x0000000040157270 0x39 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x00000000401572a9 0x3 + .text.ssl_hs_is_proper_fragment + 0x00000000401572ac 0x3f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x00000000401572eb 0x1 + .text.ssl_buffer_message + 0x00000000401572ec 0x23c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x250 (size before relaxing) + .text.ssl_transform_init + 0x0000000040157528 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x38 (size before relaxing) + .text.ssl_update_checksum_md5sha1 + 0x0000000040157554 0x23 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x27 (size before relaxing) + *fill* 0x0000000040157577 0x1 + .text.ssl_update_checksum_sha256 + 0x0000000040157578 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x000000004015758e 0x2 + .text.ssl_update_checksum_start + 0x0000000040157590 0x3e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x4a (size before relaxing) + *fill* 0x00000000401575ce 0x2 + .text.ssl_update_checksum_sha384 + 0x00000000401575d0 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x00000000401575e6 0x2 + .text.mbedtls_ssl_derive_keys + 0x00000000401575e8 0x40e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x446 (size before relaxing) + 0x00000000401575e8 mbedtls_ssl_derive_keys + *fill* 0x00000000401579f6 0x2 + .text.mbedtls_ssl_psk_derive_premaster + 0x00000000401579f8 0x12c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x130 (size before relaxing) + 0x00000000401579f8 mbedtls_ssl_psk_derive_premaster + .text.mbedtls_ssl_flush_output + 0x0000000040157b24 0x74 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040157b24 mbedtls_ssl_flush_output + .text.mbedtls_ssl_recv_flight_completed + 0x0000000040157b98 0x60 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x68 (size before relaxing) + 0x0000000040157b98 mbedtls_ssl_recv_flight_completed + .text.mbedtls_ssl_send_flight_completed + 0x0000000040157bf8 0x41 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x45 (size before relaxing) + 0x0000000040157bf8 mbedtls_ssl_send_flight_completed + *fill* 0x0000000040157c39 0x3 + .text.mbedtls_ssl_update_handshake_status + 0x0000000040157c3c 0x83 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040157c3c mbedtls_ssl_update_handshake_status + *fill* 0x0000000040157cbf 0x1 + .text.mbedtls_ssl_dtls_replay_update + 0x0000000040157cc0 0x108 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040157cc0 mbedtls_ssl_dtls_replay_update + .text.mbedtls_ssl_optimize_checksum + 0x0000000040157dc8 0x36 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040157dc8 mbedtls_ssl_optimize_checksum + *fill* 0x0000000040157dfe 0x2 + .text.mbedtls_ssl_reset_checksum + 0x0000000040157e00 0x32 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x3e (size before relaxing) + 0x0000000040157e00 mbedtls_ssl_reset_checksum + *fill* 0x0000000040157e32 0x2 + .text.mbedtls_ssl_session_init + 0x0000000040157e34 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040157e34 mbedtls_ssl_session_init + *fill* 0x0000000040157e46 0x2 + .text.mbedtls_ssl_init + 0x0000000040157e48 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040157e48 mbedtls_ssl_init + *fill* 0x0000000040157e5a 0x2 + .text.mbedtls_ssl_conf_own_cert + 0x0000000040157e5c 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040157e5c mbedtls_ssl_conf_own_cert + .text.mbedtls_ssl_conf_dh_param_bin + 0x0000000040157e70 0x38 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x40 (size before relaxing) + 0x0000000040157e70 mbedtls_ssl_conf_dh_param_bin + .text.mbedtls_ssl_set_hostname + 0x0000000040157ea8 0x76 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x7e (size before relaxing) + 0x0000000040157ea8 mbedtls_ssl_set_hostname + *fill* 0x0000000040157f1e 0x2 + .text.mbedtls_ssl_conf_alpn_protocols + 0x0000000040157f20 0x3d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040157f20 mbedtls_ssl_conf_alpn_protocols + *fill* 0x0000000040157f5d 0x3 + .text.mbedtls_ssl_get_record_expansion + 0x0000000040157f60 0x69 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040157f60 mbedtls_ssl_get_record_expansion + *fill* 0x0000000040157fc9 0x3 + .text.mbedtls_ssl_get_max_frag_len + 0x0000000040157fcc 0x34 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x3f (size before relaxing) + 0x0000000040157fcc mbedtls_ssl_get_max_frag_len + *fill* 0x0000000040158000 0x0 + .text.ssl_get_remaining_payload_in_datagram + 0x0000000040158000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x54 (size before relaxing) + .text.mbedtls_ssl_get_max_out_record_payload + 0x000000004015804c 0x3e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x46 (size before relaxing) + 0x000000004015804c mbedtls_ssl_get_max_out_record_payload + *fill* 0x000000004015808a 0x2 + .text.mbedtls_ssl_handshake_step + 0x000000004015808c 0x3c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x44 (size before relaxing) + 0x000000004015808c mbedtls_ssl_handshake_step + .text.mbedtls_ssl_handshake + 0x00000000401580c8 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401580c8 mbedtls_ssl_handshake + .text.mbedtls_ssl_transform_free + 0x00000000401580f8 0x2c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x38 (size before relaxing) + 0x00000000401580f8 mbedtls_ssl_transform_free + .text.mbedtls_ssl_handshake_free + 0x0000000040158124 0x7b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xaa (size before relaxing) + 0x0000000040158124 mbedtls_ssl_handshake_free + *fill* 0x000000004015819f 0x1 + .text.ssl_handshake_wrapup_free_hs_transform + 0x00000000401581a0 0x2e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x3a (size before relaxing) + *fill* 0x00000000401581ce 0x2 + .text.mbedtls_ssl_session_free + 0x00000000401581d0 0x28 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x2f (size before relaxing) + 0x00000000401581d0 mbedtls_ssl_session_free + *fill* 0x00000000401581f8 0x0 + .text.mbedtls_ssl_handshake_wrapup + 0x00000000401581f8 0x74 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x7c (size before relaxing) + 0x00000000401581f8 mbedtls_ssl_handshake_wrapup + .text.mbedtls_ssl_free + 0x000000004015826c 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xcb (size before relaxing) + 0x000000004015826c mbedtls_ssl_free + *fill* 0x0000000040158314 0x0 + .text.mbedtls_ssl_config_init + 0x0000000040158314 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040158314 mbedtls_ssl_config_init + *fill* 0x0000000040158326 0x2 + .text.mbedtls_ssl_config_defaults + 0x0000000040158328 0x12c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x138 (size before relaxing) + 0x0000000040158328 mbedtls_ssl_config_defaults + .text.mbedtls_ssl_config_free + 0x0000000040158454 0x56 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x6e (size before relaxing) + 0x0000000040158454 mbedtls_ssl_config_free + *fill* 0x00000000401584aa 0x2 + .text.mbedtls_ssl_sig_from_pk + 0x00000000401584ac 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x29 (size before relaxing) + 0x00000000401584ac mbedtls_ssl_sig_from_pk + *fill* 0x00000000401584d1 0x3 + .text.ssl_handshake_params_init + 0x00000000401584d4 0x77 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x9b (size before relaxing) + *fill* 0x000000004015854b 0x1 + .text.ssl_handshake_init + 0x000000004015854c 0xce esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xea (size before relaxing) + *fill* 0x000000004015861a 0x2 + .text.ssl_session_reset_int + 0x000000004015861c 0x135 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x149 (size before relaxing) + *fill* 0x0000000040158751 0x3 + .text.ssl_handle_possible_reconnect + 0x0000000040158754 0x60 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.mbedtls_ssl_setup + 0x00000000401587b4 0x7d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x8d (size before relaxing) + 0x00000000401587b4 mbedtls_ssl_setup + *fill* 0x0000000040158831 0x3 + .text.ssl_start_renegotiation + 0x0000000040158834 0x40 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x44 (size before relaxing) + .text.mbedtls_ssl_md_alg_from_hash + 0x0000000040158874 0x39 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040158874 mbedtls_ssl_md_alg_from_hash + *fill* 0x00000000401588ad 0x3 + .text.mbedtls_ssl_hash_from_md_alg + 0x00000000401588b0 0x39 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401588b0 mbedtls_ssl_hash_from_md_alg + *fill* 0x00000000401588e9 0x3 + .text.mbedtls_ssl_check_cert_usage + 0x00000000401588ec 0x72 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x00000000401588ec mbedtls_ssl_check_cert_usage + *fill* 0x000000004015895e 0x2 + .text.ssl_encrypt_buf + 0x0000000040158960 0x378 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x39c (size before relaxing) + .text.mbedtls_ssl_write_record + 0x0000000040158cd8 0x11c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x124 (size before relaxing) + 0x0000000040158cd8 mbedtls_ssl_write_record + .text.mbedtls_ssl_flight_transmit + 0x0000000040158df4 0x1ee esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x1fa (size before relaxing) + 0x0000000040158df4 mbedtls_ssl_flight_transmit + *fill* 0x0000000040158fe2 0x2 + .text.mbedtls_ssl_resend + 0x0000000040158fe4 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x10 (size before relaxing) + 0x0000000040158fe4 mbedtls_ssl_resend + .text.mbedtls_ssl_prepare_handshake_record + 0x0000000040158ff0 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xc8 (size before relaxing) + 0x0000000040158ff0 mbedtls_ssl_prepare_handshake_record + .text.mbedtls_ssl_handle_message_type + 0x00000000401590b0 0xdc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xe0 (size before relaxing) + 0x00000000401590b0 mbedtls_ssl_handle_message_type + .text.mbedtls_ssl_write_handshake_msg + 0x000000004015918c 0x161 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x165 (size before relaxing) + 0x000000004015918c mbedtls_ssl_write_handshake_msg + *fill* 0x00000000401592ed 0x3 + .text.ssl_write_hello_request + 0x00000000401592f0 0x21 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x0000000040159311 0x3 + .text.ssl_resend_hello_request + 0x0000000040159314 0x41 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x0000000040159355 0x3 + .text.mbedtls_ssl_fetch_input + 0x0000000040159358 0x1be esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x1ce (size before relaxing) + 0x0000000040159358 mbedtls_ssl_fetch_input + *fill* 0x0000000040159516 0x2 + .text.mbedtls_ssl_renegotiate + 0x0000000040159518 0x75 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x79 (size before relaxing) + 0x0000000040159518 mbedtls_ssl_renegotiate + *fill* 0x000000004015958d 0x3 + .text.ssl_check_ctr_renegotiate + 0x0000000040159590 0x81 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x0000000040159611 0x3 + .text.mbedtls_ssl_write_certificate + 0x0000000040159614 0x123 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040159614 mbedtls_ssl_write_certificate + *fill* 0x0000000040159737 0x1 + .text.mbedtls_ssl_write_change_cipher_spec + 0x0000000040159738 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040159738 mbedtls_ssl_write_change_cipher_spec + *fill* 0x000000004015975d 0x3 + .text.mbedtls_ssl_write_finished + 0x0000000040159760 0x13e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x142 (size before relaxing) + 0x0000000040159760 mbedtls_ssl_write_finished + *fill* 0x000000004015989e 0x2 + .text.mbedtls_ssl_send_alert_message + 0x00000000401598a0 0x3d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x41 (size before relaxing) + 0x00000000401598a0 mbedtls_ssl_send_alert_message + *fill* 0x00000000401598dd 0x3 + .text.ssl_parse_certificate_chain + 0x00000000401598e0 0x20e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x22e (size before relaxing) + *fill* 0x0000000040159aee 0x2 + .text.ssl_write_real + 0x0000000040159af0 0x5a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x5e (size before relaxing) + *fill* 0x0000000040159b4a 0x2 + .text.ssl_write_split + 0x0000000040159b4c 0x60 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x64 (size before relaxing) + .text.mbedtls_ssl_write + 0x0000000040159bac 0x3c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x44 (size before relaxing) + 0x0000000040159bac mbedtls_ssl_write + .text.ssl_decrypt_buf + 0x0000000040159be8 0x5dc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x60c (size before relaxing) + .text.ssl_prepare_record_content + 0x000000004015a1c4 0x3a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x3e (size before relaxing) + *fill* 0x000000004015a1fe 0x2 + .text.ssl_parse_record_header + 0x000000004015a200 0x161 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x169 (size before relaxing) + *fill* 0x000000004015a361 0x3 + .text.ssl_get_next_record + 0x000000004015a364 0x162 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x172 (size before relaxing) + *fill* 0x000000004015a4c6 0x2 + .text.mbedtls_ssl_read_record + 0x000000004015a4c8 0xa3 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xb7 (size before relaxing) + 0x000000004015a4c8 mbedtls_ssl_read_record + *fill* 0x000000004015a56b 0x1 + .text.mbedtls_ssl_parse_certificate + 0x000000004015a56c 0x20e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x21e (size before relaxing) + 0x000000004015a56c mbedtls_ssl_parse_certificate + *fill* 0x000000004015a77a 0x2 + .text.mbedtls_ssl_parse_change_cipher_spec + 0x000000004015a77c 0x88 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x94 (size before relaxing) + 0x000000004015a77c mbedtls_ssl_parse_change_cipher_spec + .text.mbedtls_ssl_parse_finished + 0x000000004015a804 0x112 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x11a (size before relaxing) + 0x000000004015a804 mbedtls_ssl_parse_finished + *fill* 0x000000004015a916 0x2 + .text.mbedtls_ssl_read + 0x000000004015a918 0x256 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x266 (size before relaxing) + 0x000000004015a918 mbedtls_ssl_read + *fill* 0x000000004015ab6e 0x2 + .text.mbedtls_ssl_set_calc_verify_md + 0x000000004015ab70 0x4d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004015ab70 mbedtls_ssl_set_calc_verify_md + *fill* 0x000000004015abbd 0x3 + .text.mbedtls_ssl_get_key_exchange_md_ssl_tls + 0x000000004015abc0 0x97 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0xbf (size before relaxing) + 0x000000004015abc0 mbedtls_ssl_get_key_exchange_md_ssl_tls + *fill* 0x000000004015ac57 0x1 + .text.mbedtls_ssl_get_key_exchange_md_tls1_2 + 0x000000004015ac58 0x6a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x86 (size before relaxing) + 0x000000004015ac58 mbedtls_ssl_get_key_exchange_md_tls1_2 + *fill* 0x000000004015acc2 0x2 + .text.net_would_block + 0x000000004015acc4 0x1d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + 0x21 (size before relaxing) + *fill* 0x000000004015ace1 0x3 + .text.mbedtls_net_recv + 0x000000004015ace4 0x60 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + 0x6c (size before relaxing) + 0x000000004015ace4 mbedtls_net_recv + .text.mbedtls_net_send + 0x000000004015ad44 0x60 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + 0x6c (size before relaxing) + 0x000000004015ad44 mbedtls_net_send + .text.mbedtls_ssl_ciphersuite_from_id + 0x000000004015ada4 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0x000000004015ada4 mbedtls_ssl_ciphersuite_from_id + *fill* 0x000000004015adbe 0x2 + .text.mbedtls_ssl_list_ciphersuites + 0x000000004015adc0 0x45 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0x49 (size before relaxing) + 0x000000004015adc0 mbedtls_ssl_list_ciphersuites + *fill* 0x000000004015ae05 0x3 + .text.mbedtls_ssl_get_ciphersuite_sig_pk_alg + 0x000000004015ae08 0x2a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0x000000004015ae08 mbedtls_ssl_get_ciphersuite_sig_pk_alg + *fill* 0x000000004015ae32 0x2 + .text.ssl_parse_server_psk_hint + 0x000000004015ae34 0x39 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + *fill* 0x000000004015ae6d 0x3 + .text.ssl_write_renegotiation_ext + 0x000000004015ae70 0x56 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + *fill* 0x000000004015aec6 0x2 + .text.ssl_write_session_ticket_ext + 0x000000004015aec8 0x58 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + .text.ssl_generate_random + 0x000000004015af20 0x4c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + .text.ssl_write_hostname_ext + 0x000000004015af6c 0x66 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + *fill* 0x000000004015afd2 0x2 + .text.ssl_write_alpn_ext + 0x000000004015afd4 0xa2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + *fill* 0x000000004015b076 0x2 + .text.ssl_write_signature_algorithms_ext + 0x000000004015b078 0x9e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0xa2 (size before relaxing) + *fill* 0x000000004015b116 0x2 + .text.ssl_write_supported_elliptic_curves_ext + 0x000000004015b118 0x93 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + *fill* 0x000000004015b1ab 0x1 + .text.ssl_write_client_hello + 0x000000004015b1ac 0x2bc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x2e8 (size before relaxing) + .text.ssl_parse_renegotiation_info + 0x000000004015b468 0xc4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0xc8 (size before relaxing) + .text.ssl_parse_max_fragment_length_ext + 0x000000004015b52c 0x2e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x32 (size before relaxing) + *fill* 0x000000004015b55a 0x2 + .text.ssl_parse_truncated_hmac_ext + 0x000000004015b55c 0x2b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + *fill* 0x000000004015b587 0x1 + .text.ssl_parse_encrypt_then_mac_ext + 0x000000004015b588 0x2f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + *fill* 0x000000004015b5b7 0x1 + .text.ssl_parse_extended_ms_ext + 0x000000004015b5b8 0x32 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + *fill* 0x000000004015b5ea 0x2 + .text.ssl_parse_session_ticket_ext + 0x000000004015b5ec 0x2e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + *fill* 0x000000004015b61a 0x2 + .text.ssl_parse_supported_point_formats_ext + 0x000000004015b61c 0x4d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + *fill* 0x000000004015b669 0x3 + .text.ssl_parse_certificate_request + 0x000000004015b66c 0x110 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x11c (size before relaxing) + .text.ssl_parse_alpn_ext + 0x000000004015b77c 0xac esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0xb4 (size before relaxing) + .text.ssl_parse_hello_verify_request + 0x000000004015b828 0xbe esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0xce (size before relaxing) + *fill* 0x000000004015b8e6 0x2 + .text.ssl_parse_server_hello + 0x000000004015b8e8 0x478 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x4ac (size before relaxing) + .text.ssl_parse_server_hello_done + 0x000000004015bd60 0x68 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x70 (size before relaxing) + .text.ssl_check_server_ecdh_params + 0x000000004015bdc8 0x2a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x2e (size before relaxing) + *fill* 0x000000004015bdf2 0x2 + .text.ssl_get_ecdh_params_from_cert + 0x000000004015bdf4 0x51 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x59 (size before relaxing) + *fill* 0x000000004015be45 0x3 + .text.ssl_parse_server_dh_params + 0x000000004015be48 0x29 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + *fill* 0x000000004015be71 0x3 + .text.ssl_parse_server_ecdh_params + 0x000000004015be74 0x27 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x2b (size before relaxing) + *fill* 0x000000004015be9b 0x1 + .text.ssl_parse_signature_algorithm + 0x000000004015be9c 0x61 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x69 (size before relaxing) + *fill* 0x000000004015befd 0x3 + .text.ssl_parse_server_key_exchange + 0x000000004015bf00 0x31c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x354 (size before relaxing) + .text.ssl_write_encrypted_pms + 0x000000004015c21c 0xd4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0xdc (size before relaxing) + .text.ssl_write_client_key_exchange + 0x000000004015c2f0 0x230 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x24c (size before relaxing) + .text.ssl_write_certificate_verify + 0x000000004015c520 0x1a0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x1a8 (size before relaxing) + .text.ssl_parse_new_session_ticket + 0x000000004015c6c0 0x111 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x125 (size before relaxing) + *fill* 0x000000004015c7d1 0x3 + .text.mbedtls_ssl_handshake_client_step + 0x000000004015c7d4 0x136 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x156 (size before relaxing) + 0x000000004015c7d4 mbedtls_ssl_handshake_client_step + *fill* 0x000000004015c90a 0x2 + .text.ssl_write_renegotiation_ext + 0x000000004015c90c 0x7e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + *fill* 0x000000004015c98a 0x2 + .text.ssl_parse_servername_ext + 0x000000004015c98c 0xb1 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0xb9 (size before relaxing) + *fill* 0x000000004015ca3d 0x3 + .text.ssl_parse_renegotiation_info + 0x000000004015ca40 0x84 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x88 (size before relaxing) + .text.ssl_parse_supported_point_formats + 0x000000004015cac4 0x40 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + .text.ssl_parse_max_fragment_length_ext + 0x000000004015cb04 0x27 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + *fill* 0x000000004015cb2b 0x1 + .text.ssl_parse_truncated_hmac_ext + 0x000000004015cb2c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + .text.ssl_parse_encrypt_then_mac_ext + 0x000000004015cb5c 0x36 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + *fill* 0x000000004015cb92 0x2 + .text.ssl_parse_extended_ms_ext + 0x000000004015cb94 0x3a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + *fill* 0x000000004015cbce 0x2 + .text.ssl_parse_client_psk_identity + 0x000000004015cbd0 0xf5 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0xf9 (size before relaxing) + *fill* 0x000000004015ccc5 0x3 + .text.ssl_parse_signature_algorithms_ext + 0x000000004015ccc8 0x73 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x83 (size before relaxing) + *fill* 0x000000004015cd3b 0x1 + .text.ssl_parse_supported_elliptic_curves + 0x000000004015cd3c 0xbe esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0xce (size before relaxing) + *fill* 0x000000004015cdfa 0x2 + .text.ssl_parse_session_ticket_ext + 0x000000004015cdfc 0x8c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x98 (size before relaxing) + .text.ssl_parse_alpn_ext + 0x000000004015ce88 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0xe4 (size before relaxing) + .text.ssl_write_alpn_ext + 0x000000004015cf68 0x63 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + *fill* 0x000000004015cfcb 0x1 + .text.ssl_pick_cert + 0x000000004015cfcc 0x8c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x98 (size before relaxing) + .text.ssl_ciphersuite_match + 0x000000004015d058 0xd8 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0xe0 (size before relaxing) + .text.ssl_parse_client_hello + 0x000000004015d130 0x780 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x79c (size before relaxing) + .text.ssl_write_hello_verify_request + 0x000000004015d8b0 0x8c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x94 (size before relaxing) + .text.ssl_write_new_session_ticket + 0x000000004015d93c 0x80 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + .text.ssl_write_encrypt_then_mac_ext + 0x000000004015d9bc 0x4a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x4e (size before relaxing) + *fill* 0x000000004015da06 0x2 + .text.ssl_write_server_hello + 0x000000004015da08 0x1fc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x218 (size before relaxing) + .text.ssl_get_ecdh_params_from_cert + 0x000000004015dc04 0x55 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + *fill* 0x000000004015dc59 0x3 + .text.ssl_prepare_server_key_exchange + 0x000000004015dc5c 0x25c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x27c (size before relaxing) + .text.ssl_write_server_key_exchange + 0x000000004015deb8 0xad esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + *fill* 0x000000004015df65 0x3 + .text.ssl_write_certificate_request + 0x000000004015df68 0x18c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x190 (size before relaxing) + .text.ssl_write_server_hello_done + 0x000000004015e0f4 0x42 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x4a (size before relaxing) + *fill* 0x000000004015e136 0x2 + .text.ssl_parse_client_dh_public + 0x000000004015e138 0x4d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + *fill* 0x000000004015e185 0x3 + .text.ssl_decrypt_encrypted_pms + 0x000000004015e188 0xb3 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0xb7 (size before relaxing) + *fill* 0x000000004015e23b 0x1 + .text.ssl_parse_encrypted_pms + 0x000000004015e23c 0xdc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0xe4 (size before relaxing) + .text.ssl_parse_client_key_exchange + 0x000000004015e318 0x1fd esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x229 (size before relaxing) + *fill* 0x000000004015e515 0x3 + .text.ssl_parse_certificate_verify + 0x000000004015e518 0x19c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x1a8 (size before relaxing) + .text.mbedtls_ssl_handshake_server_step + 0x000000004015e6b4 0x136 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x152 (size before relaxing) + 0x000000004015e6b4 mbedtls_ssl_handshake_server_step + *fill* 0x000000004015e7ea 0x2 + .text.dhm_read_bignum + 0x000000004015e7ec 0x49 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x4d (size before relaxing) + *fill* 0x000000004015e835 0x3 + .text.dhm_check_range + 0x000000004015e838 0x57 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x6f (size before relaxing) + *fill* 0x000000004015e88f 0x1 + .text.dhm_update_blinding + 0x000000004015e890 0xea esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x11a (size before relaxing) + *fill* 0x000000004015e97a 0x2 + .text.mbedtls_dhm_init + 0x000000004015e97c 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x000000004015e97c mbedtls_dhm_init + *fill* 0x000000004015e98e 0x2 + .text.mbedtls_dhm_read_params + 0x000000004015e990 0x46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x56 (size before relaxing) + 0x000000004015e990 mbedtls_dhm_read_params + *fill* 0x000000004015e9d6 0x2 + .text.mbedtls_dhm_make_params + 0x000000004015e9d8 0x10c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x130 (size before relaxing) + 0x000000004015e9d8 mbedtls_dhm_make_params + .text.mbedtls_dhm_set_group + 0x000000004015eae4 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x38 (size before relaxing) + 0x000000004015eae4 mbedtls_dhm_set_group + .text.mbedtls_dhm_read_public + 0x000000004015eb18 0x2e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x32 (size before relaxing) + 0x000000004015eb18 mbedtls_dhm_read_public + *fill* 0x000000004015eb46 0x2 + .text.mbedtls_dhm_make_public + 0x000000004015eb48 0xbc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0xcc (size before relaxing) + 0x000000004015eb48 mbedtls_dhm_make_public + .text.mbedtls_dhm_calc_secret + 0x000000004015ec04 0xc6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0xe6 (size before relaxing) + 0x000000004015ec04 mbedtls_dhm_calc_secret + *fill* 0x000000004015ecca 0x2 + .text.mbedtls_dhm_free + 0x000000004015eccc 0x4b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0x6e (size before relaxing) + 0x000000004015eccc mbedtls_dhm_free + *fill* 0x000000004015ed17 0x1 + .text.ecdh_gen_public_restartable + 0x000000004015ed18 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x2c (size before relaxing) + .text.ecdh_compute_shared_restartable + 0x000000004015ed40 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x53 (size before relaxing) + *fill* 0x000000004015ed84 0x0 + .text.ecdh_init_internal + 0x000000004015ed84 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x3a (size before relaxing) + *fill* 0x000000004015edae 0x2 + .text.ecdh_setup_internal + 0x000000004015edb0 0x16 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + *fill* 0x000000004015edc6 0x2 + .text.ecdh_free_internal + 0x000000004015edc8 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x3a (size before relaxing) + *fill* 0x000000004015edf2 0x2 + .text.ecdh_read_params_internal + 0x000000004015edf4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x1c (size before relaxing) + .text.ecdh_read_public_internal + 0x000000004015ee0c 0x24 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x28 (size before relaxing) + .text.ecdh_get_params_internal + 0x000000004015ee30 0x3a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x46 (size before relaxing) + *fill* 0x000000004015ee6a 0x2 + .text.mbedtls_ecdh_gen_public + 0x000000004015ee6c 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x000000004015ee6c mbedtls_ecdh_gen_public + *fill* 0x000000004015ee85 0x3 + .text.ecdh_make_params_internal + 0x000000004015ee88 0x54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x5c (size before relaxing) + .text.ecdh_make_public_internal + 0x000000004015eedc 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x40 (size before relaxing) + .text.mbedtls_ecdh_compute_shared + 0x000000004015ef14 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x000000004015ef14 mbedtls_ecdh_compute_shared + *fill* 0x000000004015ef31 0x3 + .text.ecdh_calc_secret_internal + 0x000000004015ef34 0x64 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x70 (size before relaxing) + .text.mbedtls_ecdh_init + 0x000000004015ef98 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x37 (size before relaxing) + 0x000000004015ef98 mbedtls_ecdh_init + *fill* 0x000000004015efbf 0x1 + .text.mbedtls_ecdh_setup + 0x000000004015efc0 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x000000004015efc0 mbedtls_ecdh_setup + *fill* 0x000000004015efd1 0x3 + .text.mbedtls_ecdh_free + 0x000000004015efd4 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x32 (size before relaxing) + 0x000000004015efd4 mbedtls_ecdh_free + *fill* 0x000000004015effa 0x2 + .text.mbedtls_ecdh_make_params + 0x000000004015effc 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x000000004015effc mbedtls_ecdh_make_params + .text.mbedtls_ecdh_read_params + 0x000000004015f01c 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x30 (size before relaxing) + 0x000000004015f01c mbedtls_ecdh_read_params + .text.mbedtls_ecdh_get_params + 0x000000004015f044 0x33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x3b (size before relaxing) + 0x000000004015f044 mbedtls_ecdh_get_params + *fill* 0x000000004015f077 0x1 + .text.mbedtls_ecdh_make_public + 0x000000004015f078 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x000000004015f078 mbedtls_ecdh_make_public + .text.mbedtls_ecdh_read_public + 0x000000004015f098 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x14 (size before relaxing) + 0x000000004015f098 mbedtls_ecdh_read_public + .text.mbedtls_ecdh_calc_secret + 0x000000004015f0a8 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0x000000004015f0a8 mbedtls_ecdh_calc_secret + *fill* 0x000000004015f0c5 0x3 + .text.coex_schm_status_change + 0x000000004015f0c8 0x5ab /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + *fill* 0x000000004015f673 0x1 + .text.coex_schm_status_bit_set + 0x000000004015f674 0x8e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x9a (size before relaxing) + 0x000000004015f678 coex_schm_status_bit_set + *fill* 0x000000004015f702 0x2 + .text.coex_schm_status_bit_clear + 0x000000004015f704 0x8a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x9a (size before relaxing) + 0x000000004015f704 coex_schm_status_bit_clear + *fill* 0x000000004015f78e 0x2 + .text.coex_schm_curr_phase_idx_set + 0x000000004015f790 0x6c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x74 (size before relaxing) + 0x000000004015f790 coex_schm_curr_phase_idx_set + .text.coex_schm_curr_phase_idx_get + 0x000000004015f7fc 0x35 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x3d (size before relaxing) + 0x000000004015f7fc coex_schm_curr_phase_idx_get + *fill* 0x000000004015f831 0x3 + .text.coex_schm_interval_get + 0x000000004015f834 0x35 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x3d (size before relaxing) + 0x000000004015f834 coex_schm_interval_get + *fill* 0x000000004015f869 0x3 + .text.coex_schm_interval_set + 0x000000004015f86c 0x37 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x3f (size before relaxing) + 0x000000004015f86c coex_schm_interval_set + *fill* 0x000000004015f8a3 0x1 + .text.coex_schm_curr_period_get + 0x000000004015f8a4 0x3e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x46 (size before relaxing) + 0x000000004015f8a4 coex_schm_curr_period_get + *fill* 0x000000004015f8e2 0x2 + .text.coex_schm_curr_phase_get + 0x000000004015f8e4 0x4c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x54 (size before relaxing) + 0x000000004015f8e4 coex_schm_curr_phase_get + .text.coex_wifi_channel_set + 0x000000004015f930 0x59 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + 0x61 (size before relaxing) + 0x000000004015f930 coex_wifi_channel_set + *fill* 0x000000004015f989 0x3 + .text.misc_nvs_deinit + 0x000000004015f98c 0x59 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + 0x61 (size before relaxing) + 0x000000004015f994 misc_nvs_deinit + *fill* 0x000000004015f9e5 0x3 + .text.nvs_log_init + 0x000000004015f9e8 0x1b2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + 0x1c2 (size before relaxing) + 0x000000004015fa0c nvs_log_init + *fill* 0x000000004015fb9a 0x2 + .text.misc_nvs_load + 0x000000004015fb9c 0xee /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + 0x10a (size before relaxing) + 0x000000004015fbb0 misc_nvs_load + *fill* 0x000000004015fc8a 0x2 + .text.misc_nvs_init + 0x000000004015fc8c 0x28 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + 0x3c (size before relaxing) + 0x000000004015fc8c misc_nvs_init + .text.misc_nvs_restore + 0x000000004015fcb4 0xc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + 0x14 (size before relaxing) + 0x000000004015fcb4 misc_nvs_restore + .text._ZdlPv 0x000000004015fcc0 0xe /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + 0x000000004015fcc0 _ZdlPv + *fill* 0x000000004015fcce 0x2 + .text._ZdaPv 0x000000004015fcd0 0xa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + 0xe (size before relaxing) + 0x000000004015fcd0 _ZdaPv + *fill* 0x000000004015fcda 0x2 + .text._ZSt15get_new_handlerv + 0x000000004015fcdc 0x10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + 0x000000004015fcdc _ZSt15get_new_handlerv + .text._ZnwjRKSt9nothrow_t + 0x000000004015fcec 0x3e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + 0x000000004015fcec _ZnwjRKSt9nothrow_t + *fill* 0x000000004015fd2a 0x2 + .text._ZnajRKSt9nothrow_t + 0x000000004015fd2c 0x11 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + 0x000000004015fd2c _ZnajRKSt9nothrow_t + *fill* 0x000000004015fd3d 0x3 + .text._ZN10__cxxabiv120__si_class_type_infoD2Ev + 0x000000004015fd40 0x12 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x000000004015fd40 _ZN10__cxxabiv120__si_class_type_infoD1Ev + 0x000000004015fd40 _ZN10__cxxabiv120__si_class_type_infoD2Ev + *fill* 0x000000004015fd52 0x2 + .text._ZN10__cxxabiv120__si_class_type_infoD0Ev + 0x000000004015fd54 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x18 (size before relaxing) + 0x000000004015fd54 _ZN10__cxxabiv120__si_class_type_infoD0Ev + .text._ZNKSt9type_infoeqERKS_$isra$0 + 0x000000004015fd68 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .text._ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcEiPKvPKNS_17__class_type_infoES2_ + 0x000000004015fd90 0x2c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x000000004015fd90 _ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcEiPKvPKNS_17__class_type_infoES2_ + .text._ZNK10__cxxabiv120__si_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE + 0x000000004015fdbc 0x8c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x000000004015fdbc _ZNK10__cxxabiv120__si_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE + .text._ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE + 0x000000004015fe48 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x000000004015fe48 _ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE + *fill* 0x000000004015fe6e 0x2 + .text._ZN10__cxxabiv111__terminateEPFvvE + 0x000000004015fe70 0x32 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + 0x000000004015fe70 _ZN10__cxxabiv111__terminateEPFvvE + *fill* 0x000000004015fea2 0x2 + .text._ZSt13get_terminatev + 0x000000004015fea4 0x10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + 0x000000004015fea4 _ZSt13get_terminatev + .text._ZSt9terminatev + 0x000000004015feb4 0x9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + 0xf (size before relaxing) + 0x000000004015feb4 _ZSt9terminatev + *fill* 0x000000004015febd 0x3 + .text._ZN10__cxxabiv112__unexpectedEPFvvE + 0x000000004015fec0 0x9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + 0xc (size before relaxing) + 0x000000004015fec0 _ZN10__cxxabiv112__unexpectedEPFvvE + *fill* 0x000000004015fec9 0x3 + .text._ZSt14get_unexpectedv + 0x000000004015fecc 0x10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + 0x000000004015fecc _ZSt14get_unexpectedv + .text._ZSt10unexpectedv + 0x000000004015fedc 0x9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + 0xf (size before relaxing) + 0x000000004015fedc _ZSt10unexpectedv + *fill* 0x000000004015fee5 0x3 + .text._ZL28read_encoded_value_with_basehjPKhPj + 0x000000004015fee8 0xdb /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + *fill* 0x000000004015ffc3 0x1 + .text._ZL15get_ttype_entryP16lsda_header_infom + 0x000000004015ffc4 0x4e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + *fill* 0x0000000040160012 0x2 + .text._ZL20check_exception_specP16lsda_header_infoPKSt9type_infoPvl + 0x0000000040160014 0x38 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + 0x40 (size before relaxing) + .text._ZL21base_of_encoded_valuehP15_Unwind_Context + 0x000000004016004c 0x58 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + 0x5c (size before relaxing) + .text._ZL18read_encoded_valueP15_Unwind_ContexthPKhPj + 0x00000000401600a4 0x1c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + 0x20 (size before relaxing) + .text._ZL17parse_lsda_headerP15_Unwind_ContextPKhP16lsda_header_info + 0x00000000401600c0 0x68 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + 0x6c (size before relaxing) + .text.__gxx_personality_v0 + 0x0000000040160128 0x2c8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + 0x0000000040160128 __gxx_personality_v0 + .text.__cxa_call_unexpected + 0x00000000401603f0 0x7d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + 0x00000000401603f0 __cxa_call_unexpected + *fill* 0x000000004016046d 0x3 + .text._ZdlPvj 0x0000000040160470 0xa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + 0xe (size before relaxing) + 0x0000000040160470 _ZdlPvj + *fill* 0x000000004016047a 0x2 + .text._ZL15eh_globals_dtorPv + 0x000000004016047c 0x23 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + *fill* 0x000000004016049f 0x1 + .text.__cxa_get_globals_fast + 0x00000000401604a0 0x1a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + 0x00000000401604a0 __cxa_get_globals_fast + *fill* 0x00000000401604ba 0x2 + .text.startup._GLOBAL__sub_I___cxa_get_globals_fast + 0x00000000401604bc 0x22 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + *fill* 0x00000000401604de 0x2 + .text.exit._GLOBAL__sub_D___cxa_get_globals_fast + 0x00000000401604e0 0x16 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + *fill* 0x00000000401604f6 0x2 + .text._ZN10__cxxabiv117__class_type_infoD2Ev + 0x00000000401604f8 0x12 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x00000000401604f8 _ZN10__cxxabiv117__class_type_infoD2Ev + 0x00000000401604f8 _ZN10__cxxabiv117__class_type_infoD1Ev + *fill* 0x000000004016050a 0x2 + .text._ZN10__cxxabiv117__class_type_infoD0Ev + 0x000000004016050c 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x18 (size before relaxing) + 0x000000004016050c _ZN10__cxxabiv117__class_type_infoD0Ev + .text._ZNKSt9type_infoeqERKS_$isra$0 + 0x0000000040160520 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .text._ZNK10__cxxabiv117__class_type_info12__do_dyncastEiNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE + 0x0000000040160548 0x36 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x0000000040160548 _ZNK10__cxxabiv117__class_type_info12__do_dyncastEiNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE + *fill* 0x000000004016057e 0x2 + .text._ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE + 0x0000000040160580 0x1d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x0000000040160580 _ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE + *fill* 0x000000004016059d 0x3 + .text._ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj + 0x00000000401605a0 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x24 (size before relaxing) + 0x00000000401605a0 _ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj + .text 0x00000000401605c0 0x75 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfdi.o) + 0x00000000401605c0 __fixunsdfdi + *fill* 0x0000000040160635 0x3 + .text 0x0000000040160638 0x85c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + 0x864 (size before relaxing) + 0x0000000040160aa8 _Unwind_GetGR + 0x0000000040160bc4 _Unwind_GetCFA + 0x0000000040160bcc _Unwind_SetGR + 0x0000000040160be8 _Unwind_GetIP + 0x0000000040160bf0 _Unwind_GetIPInfo + 0x0000000040160c00 _Unwind_SetIP + 0x0000000040160c08 _Unwind_GetLanguageSpecificData + 0x0000000040160c10 _Unwind_GetRegionStart + 0x0000000040160c18 _Unwind_FindEnclosingFunction + 0x0000000040160c2c _Unwind_GetDataRelBase + 0x0000000040160c34 _Unwind_GetTextRelBase + 0x0000000040160c3c _Unwind_RaiseException + 0x0000000040160cf0 _Unwind_ForcedUnwind + 0x0000000040160d54 _Unwind_Resume + 0x0000000040160dc0 _Unwind_Resume_or_Rethrow + 0x0000000040160e30 _Unwind_DeleteException + 0x0000000040160e40 _Unwind_Backtrace + .text 0x0000000040160e94 0xbe2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + 0x000000004016182c __register_frame_info_bases + 0x000000004016186c __register_frame_info + 0x000000004016187c __register_frame + 0x0000000040161898 __register_frame_info_table_bases + 0x00000000401618d0 __register_frame_info_table + 0x00000000401618e0 __register_frame_table + 0x00000000401618f8 __deregister_frame_info_bases + 0x000000004016198c __deregister_frame_info + 0x0000000040161998 __deregister_frame + 0x00000000401619ac _Unwind_Find_FDE + *fill* 0x0000000040161a76 0x2 + .text 0x0000000040161a78 0xa8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) + 0x0000000040161a78 _asprintf_r + 0x0000000040161ac4 asprintf + .text 0x0000000040161b20 0x3c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + 0x40 (size before relaxing) + 0x0000000040161b20 __assert_func + 0x0000000040161b4c __assert + .text 0x0000000040161b5c 0xd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + 0x0000000040161b5c __errno + *fill* 0x0000000040161b69 0x3 + .text 0x0000000040161b6c 0x78 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + 0x80 (size before relaxing) + 0x0000000040161b6c ferror + .text 0x0000000040161be4 0xa2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) + 0xa6 (size before relaxing) + 0x0000000040161be4 _fgetc_r + 0x0000000040161c74 fgetc + *fill* 0x0000000040161c86 0x2 + .text 0x0000000040161c88 0x13a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + 0x13e (size before relaxing) + 0x0000000040161c88 _fgets_r + 0x0000000040161dac fgets + *fill* 0x0000000040161dc2 0x2 + .text 0x0000000040161dc4 0x90 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) + 0x94 (size before relaxing) + 0x0000000040161dc4 fileno + .text 0x0000000040161e54 0x54 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + 0x5c (size before relaxing) + 0x0000000040161e54 _fiprintf_r + 0x0000000040161e78 fiprintf + .text 0x0000000040161ea8 0xe0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + 0xec (size before relaxing) + 0x0000000040161ea8 _fopen_r + 0x0000000040161f74 fopen + .text 0x0000000040161f88 0x54 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + 0x5c (size before relaxing) + 0x0000000040161f88 _fprintf_r + 0x0000000040161fac fprintf + .text 0x0000000040161fdc 0x90 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + 0x94 (size before relaxing) + 0x0000000040161fdc _fputc_r + 0x0000000040162058 fputc + .text 0x000000004016206c 0xcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + 0xd0 (size before relaxing) + 0x000000004016206c _fputs_r + 0x0000000040162124 fputs + .text 0x0000000040162138 0x140 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + 0x144 (size before relaxing) + 0x0000000040162138 _fread_r + 0x0000000040162260 fread + .text 0x0000000040162278 0x31 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + 0x0000000040162278 _fseek_r + 0x0000000040162290 fseek + *fill* 0x00000000401622a9 0x3 + .text 0x00000000401622ac 0x382 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + 0x386 (size before relaxing) + 0x00000000401622ac _fseeko_r + 0x0000000040162618 fseeko + *fill* 0x000000004016262e 0x2 + .text 0x0000000040162630 0x29 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + 0x0000000040162630 _ftell_r + 0x0000000040162644 ftell + *fill* 0x0000000040162659 0x3 + .text 0x000000004016265c 0x116 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + 0x11a (size before relaxing) + 0x000000004016265c _ftello_r + 0x0000000040162760 ftello + *fill* 0x0000000040162772 0x2 + .text 0x0000000040162774 0xf8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + 0xfc (size before relaxing) + 0x0000000040162774 _fwrite_r + 0x0000000040162854 fwrite + .text 0x000000004016286c 0x688 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + 0x6cc (size before relaxing) + 0x0000000040162e34 getopt + 0x0000000040162e5c getopt_long + 0x0000000040162e84 getopt_long_only + 0x0000000040162eac __getopt_r + 0x0000000040162ec4 __getopt_long_r + 0x0000000040162edc __getopt_long_only_r + .text 0x0000000040162ef4 0x80 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + 0x0000000040162ef4 _setlocale_r + 0x0000000040162f28 __locale_mb_cur_max + 0x0000000040162f40 __locale_ctype_ptr_l + 0x0000000040162f48 __locale_ctype_ptr + 0x0000000040162f60 setlocale + .text 0x0000000040162f74 0xeb /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + 0x0000000040162f74 __swhatbuf_r + *fill* 0x000000004016305f 0x1 + .text 0x0000000040163060 0x48 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + 0x0000000040163060 _mbtowc_r + 0x0000000040163084 __ascii_mbtowc + .text 0x00000000401630a8 0x338 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + 0x348 (size before relaxing) + 0x0000000040163390 _open_memstream_r + 0x00000000401633a4 _open_wmemstream_r + 0x00000000401633b8 open_memstream + 0x00000000401633cc open_wmemstream + .text 0x00000000401633e0 0x78 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + 0x00000000401633e0 _printf_r + 0x0000000040163418 printf + .text 0x0000000040163458 0xb4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + 0xb8 (size before relaxing) + 0x0000000040163458 _putc_r + 0x00000000401634f8 putc + .text 0x000000004016350c 0x4c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + 0x000000004016350c _putchar_r + 0x0000000040163530 putchar + .text 0x0000000040163558 0xe6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + 0xea (size before relaxing) + 0x0000000040163558 _puts_r + 0x000000004016362c puts + *fill* 0x000000004016363e 0x2 + .text 0x0000000040163640 0xfc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + 0x0000000040163640 cleanup_glue + 0x0000000040163658 _reclaim_reent + .text 0x000000004016373c 0x62 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) + 0x000000004016373c __srget_r + 0x000000004016378c __srget + *fill* 0x000000004016379e 0x2 + .text 0x00000000401637a0 0x1b3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + 0x1bb (size before relaxing) + 0x00000000401637a0 setvbuf + *fill* 0x0000000040163953 0x1 + .text 0x0000000040163954 0xd9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + 0x0000000040163954 _snprintf_r + 0x00000000401639bc snprintf + *fill* 0x0000000040163a2d 0x3 + .text 0x0000000040163a30 0x9f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + 0xa3 (size before relaxing) + 0x0000000040163a30 _sprintf_r + 0x0000000040163a78 sprintf + *fill* 0x0000000040163acf 0x1 + .text 0x0000000040163ad0 0xbe /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + 0xc2 (size before relaxing) + 0x0000000040163ad0 sscanf + 0x0000000040163b38 _sscanf_r + *fill* 0x0000000040163b8e 0x2 + .text 0x0000000040163b90 0xe9d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + 0xf05 (size before relaxing) + 0x0000000040163bd4 _strtod_l + 0x00000000401648bc _strtod_r + 0x00000000401648d4 strtod_l + 0x00000000401648ec strtod + 0x000000004016490c strtof_l + 0x000000004016499c strtof + *fill* 0x0000000040164a2d 0x3 + .text 0x0000000040164a30 0x202 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + 0x0000000040164bc8 _strtoll_r + 0x0000000040164bec strtoll_l + 0x0000000040164c08 strtoll + *fill* 0x0000000040164c32 0x2 + .text 0x0000000040164c34 0x1f2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + 0x1f6 (size before relaxing) + 0x0000000040164dbc _strtoull_r + 0x0000000040164de0 strtoull_l + 0x0000000040164dfc strtoull + *fill* 0x0000000040164e26 0x2 + .text 0x0000000040164e28 0x3366 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + 0x33aa (size before relaxing) + 0x00000000401652e8 _svfprintf_r + *fill* 0x000000004016818e 0x2 + .text 0x0000000040168190 0x2523 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + 0x2567 (size before relaxing) + 0x00000000401681d4 __ssvfscanf_r + *fill* 0x000000004016a6b3 0x1 + .text 0x000000004016a6b4 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + 0x000000004016a6b4 gettimeofday + .text 0x000000004016a6cc 0x26b9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + 0x26c5 (size before relaxing) + 0x000000004016ab8c __sprint_r + 0x000000004016abfc _vfiprintf_r + 0x000000004016ccc8 vfiprintf + *fill* 0x000000004016cd85 0x3 + .text 0x000000004016cd88 0x3559 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + 0x35a9 (size before relaxing) + 0x000000004016d248 _vfprintf_r + 0x0000000040170224 vfprintf + *fill* 0x00000000401702e1 0x3 + .text 0x00000000401702e4 0x62 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + 0x00000000401702e4 vprintf + 0x0000000040170318 _vprintf_r + *fill* 0x0000000040170346 0x2 + .text 0x0000000040170348 0x81 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + 0x0000000040170348 _vsnprintf_r + 0x00000000401703a0 vsnprintf + *fill* 0x00000000401703c9 0x3 + .text 0x00000000401703cc 0xd5c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + 0xdb4 (size before relaxing) + 0x00000000401704dc _dtoa_r + .text 0x0000000040171128 0x80 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + 0x0000000040171128 __sflags + .text 0x00000000401711a8 0x519 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + 0x535 (size before relaxing) + 0x0000000040171228 __hexdig_fun + 0x0000000040171264 __gethex + *fill* 0x00000000401716c1 0x3 + .text 0x00000000401716c4 0x173 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + 0x177 (size before relaxing) + 0x00000000401716f4 __match + 0x0000000040171724 __hexnan + *fill* 0x0000000040171837 0x1 + .text 0x0000000040171838 0x30 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) + 0x0000000040171838 _findenv + 0x0000000040171850 getenv + .text 0x0000000040171868 0x1c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + 0x20 (size before relaxing) + 0x0000000040171868 iswspace + .text 0x0000000040171884 0x3b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + 0x0000000040171884 __localeconv_l + 0x0000000040171890 _localeconv_r + 0x00000000401718a8 localeconv + *fill* 0x00000000401718bf 0x1 + .text 0x00000000401718c0 0x70 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + 0x00000000401718c0 _mbrtowc_r + 0x0000000040171918 mbrtowc + .text 0x0000000040171930 0x850 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + 0x0000000040171930 _Balloc + 0x00000000401719ac _Bfree + 0x00000000401719e0 __multadd + 0x0000000040171a54 __s2b + 0x0000000040171adc __hi0bits + 0x0000000040171b24 __lo0bits + 0x0000000040171b94 __i2b + 0x0000000040171ba8 __multiply + 0x0000000040171cb4 __pow5mult + 0x0000000040171d48 __lshift + 0x0000000040171de4 __mcmp + 0x0000000040171e1c __mdiff + 0x0000000040171ee0 __ulp + 0x0000000040171f28 __b2d + 0x0000000040171fcc __d2b + 0x000000004017206c __ratio + 0x00000000401720c0 _mprec_log10 + 0x00000000401720f8 __copybits + 0x0000000040172130 __any_on + .text 0x0000000040172180 0x5c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + 0x0000000040172180 frexp + .text 0x00000000401721dc 0x8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + 0x00000000401721dc nanf + .text 0x00000000401721e4 0x2573 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + 0x2577 (size before relaxing) + 0x00000000401726a4 __ssprint_r + 0x00000000401727b0 _svfiprintf_r + *fill* 0x0000000040174757 0x1 + .text 0x0000000040174758 0x214d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + 0x2169 (size before relaxing) + 0x000000004017479c _sungetc_r + 0x0000000040174818 __ssrefill_r + 0x0000000040174858 _sfread_r + 0x00000000401748c8 __ssvfiscanf_r + *fill* 0x00000000401768a5 0x3 + .text.mutexattr_check + 0x00000000401768a8 0x11 esp-idf/pthread/libpthread.a(pthread.c.obj) + *fill* 0x00000000401768b9 0x0 + *fill* 0x00000000401768b9 0x0 + *fill* 0x00000000401768b9 0x0 + *fill* 0x00000000401768b9 0x3 + .text.pthread_include_pthread_impl + 0x00000000401768bc 0x5 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x00000000401768bc pthread_include_pthread_impl + *fill* 0x00000000401768c1 0x3 + .text.find_value + 0x00000000401768c4 0x14 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + *fill* 0x00000000401768d8 0x0 + *fill* 0x00000000401768d8 0x0 + *fill* 0x00000000401768d8 0x0 + *fill* 0x00000000401768d8 0x0 + *fill* 0x00000000401768d8 0x0 + .text.pthread_include_pthread_local_storage_impl + 0x00000000401768d8 0x5 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x00000000401768d8 pthread_include_pthread_local_storage_impl + *fill* 0x00000000401768dd 0x0 + *fill* 0x00000000401768dd 0x0 + *fill* 0x00000000401768dd 0x0 + *fill* 0x00000000401768dd 0x0 + *fill* 0x00000000401768dd 0x0 + *fill* 0x00000000401768dd 0x0 + *fill* 0x00000000401768dd 0x0 + *fill* 0x00000000401768dd 0x0 + *fill* 0x00000000401768dd 0x0 + *fill* 0x00000000401768dd 0x0 + *fill* 0x00000000401768dd 0x0 + *fill* 0x00000000401768dd 0x0 + *fill* 0x00000000401768dd 0x0 + *fill* 0x00000000401768dd 0x0 + *fill* 0x00000000401768dd 0x0 + *fill* 0x00000000401768dd 0x0 + *fill* 0x00000000401768dd 0x0 + *fill* 0x00000000401768dd 0x3 + .text.esp_task_wdt_isr_user_handler + 0x00000000401768e0 0x5 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + 0x00000000401768e0 esp_task_wdt_isr_user_handler + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x0 + *fill* 0x00000000401768e5 0x3 + .text.vfs_include_syscalls_impl + 0x00000000401768e8 0x5 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000401768e8 vfs_include_syscalls_impl + *fill* 0x00000000401768ed 0x0 + *fill* 0x00000000401768ed 0x0 + *fill* 0x00000000401768ed 0x0 + *fill* 0x00000000401768ed 0x0 + *fill* 0x00000000401768ed 0x0 + *fill* 0x00000000401768ed 0x0 + *fill* 0x00000000401768ed 0x0 + *fill* 0x00000000401768ed 0x0 + *fill* 0x00000000401768ed 0x0 + *fill* 0x00000000401768ed 0x0 + *fill* 0x00000000401768ed 0x0 + *fill* 0x00000000401768ed 0x0 + *fill* 0x00000000401768ed 0x0 + *fill* 0x00000000401768ed 0x0 + *fill* 0x00000000401768ed 0x0 + *fill* 0x00000000401768ed 0x0 + *fill* 0x00000000401768ed 0x0 + *fill* 0x00000000401768ed 0x3 + .text.newlib_include_locks_impl + 0x00000000401768f0 0x5 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x00000000401768f0 newlib_include_locks_impl + *fill* 0x00000000401768f5 0x3 + .text.pthread_setcancelstate + 0x00000000401768f8 0x7 esp-idf/newlib/libnewlib.a(pthread.c.obj) + 0x00000000401768f8 pthread_setcancelstate + *fill* 0x00000000401768ff 0x1 + .text.newlib_include_pthread_impl + 0x0000000040176900 0x5 esp-idf/newlib/libnewlib.a(pthread.c.obj) + 0x0000000040176900 newlib_include_pthread_impl + *fill* 0x0000000040176905 0x0 + *fill* 0x0000000040176905 0x0 + *fill* 0x0000000040176905 0x3 + .text._system_r + 0x0000000040176908 0xb esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x0000000040176908 _system_r + *fill* 0x0000000040176913 0x0 + *fill* 0x0000000040176913 0x0 + *fill* 0x0000000040176913 0x1 + .text._getpid_r + 0x0000000040176914 0xb esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x0000000040176914 _getpid_r + *fill* 0x000000004017691f 0x1 + .text._kill_r 0x0000000040176920 0xb esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x0000000040176920 _kill_r + *fill* 0x000000004017692b 0x0 + *fill* 0x000000004017692b 0x1 + .text.newlib_include_syscalls_impl + 0x000000004017692c 0x5 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x000000004017692c newlib_include_syscalls_impl + *fill* 0x0000000040176931 0x0 + *fill* 0x0000000040176931 0x0 + *fill* 0x0000000040176931 0x0 + *fill* 0x0000000040176931 0x0 + *fill* 0x0000000040176931 0x0 + *fill* 0x0000000040176931 0x0 + *fill* 0x0000000040176931 0x0 + *fill* 0x0000000040176931 0x0 + *fill* 0x0000000040176931 0x0 + *fill* 0x0000000040176931 0x0 + *fill* 0x0000000040176931 0x3 + .text.__cxa_guard_dummy + 0x0000000040176934 0x5 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + 0x0000000040176934 __cxa_guard_dummy + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x0 + *fill* 0x0000000040176939 0x3 + .text.esp_netif_reset_ip_info + 0x000000004017693c 0x15 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + *fill* 0x0000000040176951 0x0 + *fill* 0x0000000040176951 0x0 + *fill* 0x0000000040176951 0x0 + *fill* 0x0000000040176951 0x0 + *fill* 0x0000000040176951 0x0 + *fill* 0x0000000040176951 0x0 + *fill* 0x0000000040176951 0x0 + *fill* 0x0000000040176951 0x0 + *fill* 0x0000000040176951 0x0 + *fill* 0x0000000040176951 0x0 + *fill* 0x0000000040176951 0x0 + *fill* 0x0000000040176951 0x3 + .text.esp_netif_get_io_driver + 0x0000000040176954 0x7 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000040176954 esp_netif_get_io_driver + *fill* 0x000000004017695b 0x1 + .text.esp_netif_get_handle_from_netif_impl + 0x000000004017695c 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x000000004017695c esp_netif_get_handle_from_netif_impl + *fill* 0x0000000040176964 0x0 + *fill* 0x0000000040176964 0x0 + *fill* 0x0000000040176964 0x0 + *fill* 0x0000000040176964 0x0 + *fill* 0x0000000040176964 0x0 + .text.esp_netif_free_rx_buffer + 0x0000000040176964 0xe esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000040176964 esp_netif_free_rx_buffer + *fill* 0x0000000040176972 0x2 + .text.esp_netif_transmit + 0x0000000040176974 0x12 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000040176974 esp_netif_transmit + *fill* 0x0000000040176986 0x2 + .text.esp_netif_receive + 0x0000000040176988 0x14 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000040176988 esp_netif_receive + *fill* 0x000000004017699c 0x0 + .text.esp_netif_dhcpc_get_status + 0x000000004017699c 0x2d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x000000004017699c esp_netif_dhcpc_get_status + *fill* 0x00000000401769c9 0x0 + *fill* 0x00000000401769c9 0x0 + *fill* 0x00000000401769c9 0x0 + *fill* 0x00000000401769c9 0x3 + .text.esp_netif_is_netif_up + 0x00000000401769cc 0x1c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000401769cc esp_netif_is_netif_up + *fill* 0x00000000401769e8 0x0 + *fill* 0x00000000401769e8 0x0 + *fill* 0x00000000401769e8 0x0 + *fill* 0x00000000401769e8 0x0 + *fill* 0x00000000401769e8 0x0 + *fill* 0x00000000401769e8 0x0 + *fill* 0x00000000401769e8 0x0 + *fill* 0x00000000401769e8 0x0 + .text.esp_netif_is_valid_static_ip + 0x00000000401769e8 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x00000000401769e8 esp_netif_is_valid_static_ip + *fill* 0x0000000040176a00 0x0 + .text.esp_netif_get_ifkey + 0x0000000040176a00 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000040176a00 esp_netif_get_ifkey + .text.esp_netif_get_desc + 0x0000000040176a08 0x8 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000040176a08 esp_netif_get_desc + .text.esp_netif_get_event_id + 0x0000000040176a10 0x1d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x0000000040176a10 esp_netif_get_event_id + *fill* 0x0000000040176a2d 0x0 + *fill* 0x0000000040176a2d 0x0 + *fill* 0x0000000040176a2d 0x0 + *fill* 0x0000000040176a2d 0x0 + *fill* 0x0000000040176a2d 0x0 + *fill* 0x0000000040176a2d 0x0 + *fill* 0x0000000040176a2d 0x0 + *fill* 0x0000000040176a2d 0x3 + .text.esp_event_send_noop + 0x0000000040176a30 0x7 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + 0x0000000040176a30 esp_event_send_noop + 0x0000000040176a30 esp_event_send_legacy + *fill* 0x0000000040176a37 0x0 + *fill* 0x0000000040176a37 0x0 + *fill* 0x0000000040176a37 0x0 + *fill* 0x0000000040176a37 0x0 + *fill* 0x0000000040176a37 0x0 + *fill* 0x0000000040176a37 0x1 + .text.rc4_skip + 0x0000000040176a38 0xb3 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + 0x0000000040176a38 rc4_skip + *fill* 0x0000000040176aeb 0x0 + *fill* 0x0000000040176aeb 0x0 + *fill* 0x0000000040176aeb 0x0 + *fill* 0x0000000040176aeb 0x0 + *fill* 0x0000000040176aeb 0x0 + *fill* 0x0000000040176aeb 0x0 + *fill* 0x0000000040176aeb 0x0 + *fill* 0x0000000040176aeb 0x0 + *fill* 0x0000000040176aeb 0x0 + *fill* 0x0000000040176aeb 0x1 + .text.gf_mulx 0x0000000040176aec 0x44 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + *fill* 0x0000000040176b30 0x0 + *fill* 0x0000000040176b30 0x0 + *fill* 0x0000000040176b30 0x0 + *fill* 0x0000000040176b30 0x0 + *fill* 0x0000000040176b30 0x0 + .text.xor_aes_block + 0x0000000040176b30 0x29 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + *fill* 0x0000000040176b59 0x0 + *fill* 0x0000000040176b59 0x0 + *fill* 0x0000000040176b59 0x0 + *fill* 0x0000000040176b59 0x0 + *fill* 0x0000000040176b59 0x0 + *fill* 0x0000000040176b59 0x0 + *fill* 0x0000000040176b59 0x0 + *fill* 0x0000000040176b59 0x0 + *fill* 0x0000000040176b59 0x0 + *fill* 0x0000000040176b59 0x0 + *fill* 0x0000000040176b59 0x3 + .text.esp_efuse_get_field_size + 0x0000000040176b5c 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x0000000040176b5c esp_efuse_get_field_size + .text.get_mask + 0x0000000040176b84 0x1e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x0000000040176ba2 0x2 + .text.get_reg_num + 0x0000000040176ba4 0x26 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x0000000040176bca 0x2 + .text.get_starting_bit_num_in_reg + 0x0000000040176bcc 0x1a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x0000000040176be6 0x2 + .text.get_count_bits_in_reg + 0x0000000040176be8 0x2e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + *fill* 0x0000000040176c16 0x0 + *fill* 0x0000000040176c16 0x0 + *fill* 0x0000000040176c16 0x2 + .text.esp_efuse_utility_get_number_of_items + 0x0000000040176c18 0x16 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x0000000040176c18 esp_efuse_utility_get_number_of_items + *fill* 0x0000000040176c2e 0x0 + *fill* 0x0000000040176c2e 0x0 + *fill* 0x0000000040176c2e 0x0 + *fill* 0x0000000040176c2e 0x0 + *fill* 0x0000000040176c2e 0x0 + *fill* 0x0000000040176c2e 0x0 + *fill* 0x0000000040176c2e 0x0 + *fill* 0x0000000040176c2e 0x0 + *fill* 0x0000000040176c2e 0x2 + .text.esp_flash_chip_driver_initialized + 0x0000000040176c30 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x0000000040176c30 esp_flash_chip_driver_initialized + *fill* 0x0000000040176c40 0x0 + *fill* 0x0000000040176c40 0x0 + *fill* 0x0000000040176c40 0x0 + *fill* 0x0000000040176c40 0x0 + *fill* 0x0000000040176c40 0x0 + *fill* 0x0000000040176c40 0x0 + *fill* 0x0000000040176c40 0x0 + *fill* 0x0000000040176c40 0x0 + *fill* 0x0000000040176c40 0x0 + *fill* 0x0000000040176c40 0x0 + *fill* 0x0000000040176c40 0x0 + *fill* 0x0000000040176c40 0x0 + *fill* 0x0000000040176c40 0x0 + *fill* 0x0000000040176c40 0x0 + *fill* 0x0000000040176c40 0x0 + *fill* 0x0000000040176c40 0x0 + *fill* 0x0000000040176c40 0x0 + *fill* 0x0000000040176c40 0x0 + *fill* 0x0000000040176c40 0x0 + *fill* 0x0000000040176c40 0x0 + *fill* 0x0000000040176c40 0x0 + *fill* 0x0000000040176c40 0x0 + *fill* 0x0000000040176c40 0x0 + *fill* 0x0000000040176c40 0x0 + *fill* 0x0000000040176c40 0x0 + *fill* 0x0000000040176c40 0x0 + .text._ZN3nvs9NVSHandle8set_itemIaEEiPKcT_ + 0x0000000040176c40 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040176c40 _ZN3nvs9NVSHandle8set_itemIaEEiPKcT_ + *fill* 0x0000000040176c5c 0x0 + .text._ZN3nvs9NVSHandle8set_itemIhEEiPKcT_ + 0x0000000040176c5c 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040176c5c _ZN3nvs9NVSHandle8set_itemIhEEiPKcT_ + *fill* 0x0000000040176c78 0x0 + .text._ZN3nvs9NVSHandle8set_itemIsEEiPKcT_ + 0x0000000040176c78 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040176c78 _ZN3nvs9NVSHandle8set_itemIsEEiPKcT_ + *fill* 0x0000000040176c94 0x0 + .text._ZN3nvs9NVSHandle8set_itemItEEiPKcT_ + 0x0000000040176c94 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040176c94 _ZN3nvs9NVSHandle8set_itemItEEiPKcT_ + *fill* 0x0000000040176cb0 0x0 + .text._ZN3nvs9NVSHandle8set_itemIiEEiPKcT_ + 0x0000000040176cb0 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040176cb0 _ZN3nvs9NVSHandle8set_itemIiEEiPKcT_ + *fill* 0x0000000040176cca 0x0 + *fill* 0x0000000040176cca 0x2 + .text._ZN3nvs9NVSHandle8set_itemIjEEiPKcT_ + 0x0000000040176ccc 0x1a esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040176ccc _ZN3nvs9NVSHandle8set_itemIjEEiPKcT_ + *fill* 0x0000000040176ce6 0x0 + *fill* 0x0000000040176ce6 0x2 + .text._ZN3nvs9NVSHandle8set_itemIxEEiPKcT_ + 0x0000000040176ce8 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040176ce8 _ZN3nvs9NVSHandle8set_itemIxEEiPKcT_ + *fill* 0x0000000040176d04 0x0 + *fill* 0x0000000040176d04 0x0 + .text._ZN3nvs9NVSHandle8set_itemIyEEiPKcT_ + 0x0000000040176d04 0x1c esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040176d04 _ZN3nvs9NVSHandle8set_itemIyEEiPKcT_ + *fill* 0x0000000040176d20 0x0 + *fill* 0x0000000040176d20 0x0 + .text._ZN3nvs9NVSHandle8get_itemIaEEiPKcRT_ + 0x0000000040176d20 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040176d20 _ZN3nvs9NVSHandle8get_itemIaEEiPKcRT_ + *fill* 0x0000000040176d38 0x0 + .text._ZN3nvs9NVSHandle8get_itemIhEEiPKcRT_ + 0x0000000040176d38 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040176d38 _ZN3nvs9NVSHandle8get_itemIhEEiPKcRT_ + *fill* 0x0000000040176d50 0x0 + .text._ZN3nvs9NVSHandle8get_itemIsEEiPKcRT_ + 0x0000000040176d50 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040176d50 _ZN3nvs9NVSHandle8get_itemIsEEiPKcRT_ + *fill* 0x0000000040176d68 0x0 + .text._ZN3nvs9NVSHandle8get_itemItEEiPKcRT_ + 0x0000000040176d68 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040176d68 _ZN3nvs9NVSHandle8get_itemItEEiPKcRT_ + *fill* 0x0000000040176d80 0x0 + .text._ZN3nvs9NVSHandle8get_itemIiEEiPKcRT_ + 0x0000000040176d80 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040176d80 _ZN3nvs9NVSHandle8get_itemIiEEiPKcRT_ + *fill* 0x0000000040176d98 0x0 + .text._ZN3nvs9NVSHandle8get_itemIjEEiPKcRT_ + 0x0000000040176d98 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040176d98 _ZN3nvs9NVSHandle8get_itemIjEEiPKcRT_ + *fill* 0x0000000040176db0 0x0 + .text._ZN3nvs9NVSHandle8get_itemIxEEiPKcRT_ + 0x0000000040176db0 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040176db0 _ZN3nvs9NVSHandle8get_itemIxEEiPKcRT_ + *fill* 0x0000000040176dc8 0x0 + .text._ZN3nvs9NVSHandle8get_itemIyEEiPKcRT_ + 0x0000000040176dc8 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x0000000040176dc8 _ZN3nvs9NVSHandle8get_itemIyEEiPKcRT_ + *fill* 0x0000000040176de0 0x0 + *fill* 0x0000000040176de0 0x0 + *fill* 0x0000000040176de0 0x0 + *fill* 0x0000000040176de0 0x0 + *fill* 0x0000000040176de0 0x0 + *fill* 0x0000000040176de0 0x0 + *fill* 0x0000000040176de0 0x0 + *fill* 0x0000000040176de0 0x0 + *fill* 0x0000000040176de0 0x0 + *fill* 0x0000000040176de0 0x0 + *fill* 0x0000000040176de0 0x0 + *fill* 0x0000000040176de0 0x0 + *fill* 0x0000000040176de0 0x0 + .text._ZN3nvs19NVSPartitionManagerD2Ev + 0x0000000040176de0 0x5 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x0000000040176de0 _ZN3nvs19NVSPartitionManagerD2Ev + 0x0000000040176de0 _ZN3nvs19NVSPartitionManagerD1Ev + *fill* 0x0000000040176de5 0x0 + *fill* 0x0000000040176de5 0x0 + *fill* 0x0000000040176de5 0x0 + *fill* 0x0000000040176de5 0x0 + *fill* 0x0000000040176de5 0x3 + .text._ZN3nvs8HashListC2Ev + 0x0000000040176de8 0xd esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x0000000040176de8 _ZN3nvs8HashListC2Ev + 0x0000000040176de8 _ZN3nvs8HashListC1Ev + *fill* 0x0000000040176df5 0x0 + *fill* 0x0000000040176df5 0x0 + *fill* 0x0000000040176df5 0x3 + .text._ZN3nvs8HashList13HashListBlockC2Ev + 0x0000000040176df8 0x22 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x0000000040176df8 _ZN3nvs8HashList13HashListBlockC1Ev + 0x0000000040176df8 _ZN3nvs8HashList13HashListBlockC2Ev + *fill* 0x0000000040176e1a 0x0 + *fill* 0x0000000040176e1a 0x0 + *fill* 0x0000000040176e1a 0x2 + .text._ZSt9__find_ifIPjN9__gnu_cxx5__ops10_Iter_predIZN3nvs4Page4loadEjEUljE_EEET_S8_S8_T0_St26random_access_iterator_tag + 0x0000000040176e1c 0x72 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x0 + *fill* 0x0000000040176e8e 0x2 + .text.esp_wifi_is_if_ready_when_started + 0x0000000040176e90 0x12 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x0000000040176e90 esp_wifi_is_if_ready_when_started + *fill* 0x0000000040176ea2 0x0 + *fill* 0x0000000040176ea2 0x2 + .text.task_get_max_priority_wrapper + 0x0000000040176ea4 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000040176eab 0x1 + .text.coex_status_get_wrapper + 0x0000000040176eac 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000040176eb3 0x1 + .text.coex_condition_set_wrapper + 0x0000000040176eb4 0x5 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000040176eb9 0x3 + .text.coex_wifi_request_wrapper + 0x0000000040176ebc 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000040176ec3 0x1 + .text.coex_wifi_release_wrapper + 0x0000000040176ec4 0x7 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + *fill* 0x0000000040176ecb 0x0 + *fill* 0x0000000040176ecb 0x0 + *fill* 0x0000000040176ecb 0x0 + *fill* 0x0000000040176ecb 0x0 + *fill* 0x0000000040176ecb 0x0 + *fill* 0x0000000040176ecb 0x0 + *fill* 0x0000000040176ecb 0x0 + *fill* 0x0000000040176ecb 0x0 + *fill* 0x0000000040176ecb 0x0 + *fill* 0x0000000040176ecb 0x0 + *fill* 0x0000000040176ecb 0x0 + *fill* 0x0000000040176ecb 0x0 + *fill* 0x0000000040176ecb 0x0 + *fill* 0x0000000040176ecb 0x0 + *fill* 0x0000000040176ecb 0x0 + *fill* 0x0000000040176ecb 0x0 + *fill* 0x0000000040176ecb 0x1 + .text.esp_phy_reduce_tx_power + 0x0000000040176ecc 0x1c esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + *fill* 0x0000000040176ee8 0x0 + *fill* 0x0000000040176ee8 0x0 + *fill* 0x0000000040176ee8 0x0 + *fill* 0x0000000040176ee8 0x0 + *fill* 0x0000000040176ee8 0x0 + *fill* 0x0000000040176ee8 0x0 + *fill* 0x0000000040176ee8 0x0 + .text.node_insert_to_list + 0x0000000040176ee8 0x3b esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x0000000040176f23 0x1 + .text.add_msg_type + 0x0000000040176f24 0x14 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .text.add_end 0x0000000040176f38 0xc esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + *fill* 0x0000000040176f44 0x0 + *fill* 0x0000000040176f44 0x0 + *fill* 0x0000000040176f44 0x0 + *fill* 0x0000000040176f44 0x0 + *fill* 0x0000000040176f44 0x0 + .text.node_remove_from_list + 0x0000000040176f44 0x35 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x0000000040176f44 node_remove_from_list + *fill* 0x0000000040176f79 0x0 + *fill* 0x0000000040176f79 0x0 + *fill* 0x0000000040176f79 0x0 + *fill* 0x0000000040176f79 0x0 + *fill* 0x0000000040176f79 0x0 + *fill* 0x0000000040176f79 0x0 + *fill* 0x0000000040176f79 0x0 + *fill* 0x0000000040176f79 0x0 + *fill* 0x0000000040176f79 0x0 + *fill* 0x0000000040176f79 0x0 + *fill* 0x0000000040176f79 0x0 + *fill* 0x0000000040176f79 0x0 + *fill* 0x0000000040176f79 0x0 + *fill* 0x0000000040176f79 0x0 + *fill* 0x0000000040176f79 0x0 + *fill* 0x0000000040176f79 0x0 + *fill* 0x0000000040176f79 0x3 + .text.lwip_htons + 0x0000000040176f7c 0x14 esp-idf/lwip/liblwip.a(def.c.obj) + 0x0000000040176f7c lwip_htons + *fill* 0x0000000040176f90 0x0 + *fill* 0x0000000040176f90 0x0 + *fill* 0x0000000040176f90 0x0 + *fill* 0x0000000040176f90 0x0 + *fill* 0x0000000040176f90 0x0 + *fill* 0x0000000040176f90 0x0 + *fill* 0x0000000040176f90 0x0 + .text.dns_init + 0x0000000040176f90 0x5 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x0000000040176f90 dns_init + *fill* 0x0000000040176f95 0x0 + *fill* 0x0000000040176f95 0x0 + *fill* 0x0000000040176f95 0x0 + *fill* 0x0000000040176f95 0x0 + *fill* 0x0000000040176f95 0x0 + *fill* 0x0000000040176f95 0x3 + .text.mem_init + 0x0000000040176f98 0x5 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x0000000040176f98 mem_init + *fill* 0x0000000040176f9d 0x3 + .text.mem_trim + 0x0000000040176fa0 0x5 esp-idf/lwip/liblwip.a(mem.c.obj) + 0x0000000040176fa0 mem_trim + *fill* 0x0000000040176fa5 0x0 + *fill* 0x0000000040176fa5 0x0 + *fill* 0x0000000040176fa5 0x0 + *fill* 0x0000000040176fa5 0x3 + .text.memp_init + 0x0000000040176fa8 0x14 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x0000000040176fa8 memp_init + *fill* 0x0000000040176fbc 0x0 + .text.netif_do_set_netmask + 0x0000000040176fbc 0x1e esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x0000000040176fda 0x2 + .text.netif_do_set_gw + 0x0000000040176fdc 0x1e esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x0000000040176ffa 0x2 + .text.netif_null_output_ip6 + 0x0000000040176ffc 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + .text.netif_null_output_ip4 + 0x0000000040177004 0x8 esp-idf/lwip/liblwip.a(netif.c.obj) + *fill* 0x000000004017700c 0x0 + *fill* 0x000000004017700c 0x0 + *fill* 0x000000004017700c 0x0 + *fill* 0x000000004017700c 0x0 + .text.netif_set_garp_flag + 0x000000004017700c 0x11 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x000000004017700c netif_set_garp_flag + *fill* 0x000000004017701d 0x0 + *fill* 0x000000004017701d 0x0 + *fill* 0x000000004017701d 0x0 + *fill* 0x000000004017701d 0x0 + *fill* 0x000000004017701d 0x0 + *fill* 0x000000004017701d 0x0 + *fill* 0x000000004017701d 0x0 + *fill* 0x000000004017701d 0x0 + *fill* 0x000000004017701d 0x3 + .text.pbuf_init_alloced_pbuf + 0x0000000040177020 0x23 esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x0000000040177043 0x1 + .text.pbuf_skip_const + 0x0000000040177044 0x1f esp-idf/lwip/liblwip.a(pbuf.c.obj) + *fill* 0x0000000040177063 0x0 + *fill* 0x0000000040177063 0x0 + *fill* 0x0000000040177063 0x0 + *fill* 0x0000000040177063 0x0 + *fill* 0x0000000040177063 0x0 + *fill* 0x0000000040177063 0x0 + *fill* 0x0000000040177063 0x0 + *fill* 0x0000000040177063 0x0 + *fill* 0x0000000040177063 0x1 + .text.pbuf_clen + 0x0000000040177064 0x16 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x0000000040177064 pbuf_clen + *fill* 0x000000004017707a 0x0 + *fill* 0x000000004017707a 0x0 + *fill* 0x000000004017707a 0x0 + *fill* 0x000000004017707a 0x0 + *fill* 0x000000004017707a 0x0 + *fill* 0x000000004017707a 0x0 + *fill* 0x000000004017707a 0x0 + *fill* 0x000000004017707a 0x0 + *fill* 0x000000004017707a 0x0 + *fill* 0x000000004017707a 0x0 + *fill* 0x000000004017707a 0x2 + .text.raw_bind_netif + 0x000000004017707c 0x17 esp-idf/lwip/liblwip.a(raw.c.obj) + 0x000000004017707c raw_bind_netif + *fill* 0x0000000040177093 0x1 + .text.raw_recv + 0x0000000040177094 0xa esp-idf/lwip/liblwip.a(raw.c.obj) + 0x0000000040177094 raw_recv + *fill* 0x000000004017709e 0x0 + *fill* 0x000000004017709e 0x0 + *fill* 0x000000004017709e 0x0 + *fill* 0x000000004017709e 0x0 + *fill* 0x000000004017709e 0x0 + *fill* 0x000000004017709e 0x0 + *fill* 0x000000004017709e 0x0 + *fill* 0x000000004017709e 0x0 + *fill* 0x000000004017709e 0x0 + *fill* 0x000000004017709e 0x0 + *fill* 0x000000004017709e 0x0 + *fill* 0x000000004017709e 0x0 + *fill* 0x000000004017709e 0x0 + *fill* 0x000000004017709e 0x0 + *fill* 0x000000004017709e 0x0 + *fill* 0x000000004017709e 0x2 + .text.tcp_bind_netif + 0x00000000401770a0 0x17 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000401770a0 tcp_bind_netif + *fill* 0x00000000401770b7 0x0 + *fill* 0x00000000401770b7 0x0 + *fill* 0x00000000401770b7 0x0 + *fill* 0x00000000401770b7 0x0 + *fill* 0x00000000401770b7 0x1 + .text.tcp_arg 0x00000000401770b8 0xa esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000401770b8 tcp_arg + *fill* 0x00000000401770c2 0x0 + *fill* 0x00000000401770c2 0x0 + *fill* 0x00000000401770c2 0x0 + *fill* 0x00000000401770c2 0x2 + .text.tcp_accept + 0x00000000401770c4 0xf esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x00000000401770c4 tcp_accept + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x0 + *fill* 0x00000000401770d3 0x1 + .text.udp_bind_netif + 0x00000000401770d4 0x17 esp-idf/lwip/liblwip.a(udp.c.obj) + 0x00000000401770d4 udp_bind_netif + *fill* 0x00000000401770eb 0x0 + *fill* 0x00000000401770eb 0x0 + *fill* 0x00000000401770eb 0x0 + *fill* 0x00000000401770eb 0x0 + *fill* 0x00000000401770eb 0x1 + .text.dhcp_set_state + 0x00000000401770ec 0x18 esp-idf/lwip/liblwip.a(dhcp.c.obj) + *fill* 0x0000000040177104 0x0 + *fill* 0x0000000040177104 0x0 + *fill* 0x0000000040177104 0x0 + *fill* 0x0000000040177104 0x0 + *fill* 0x0000000040177104 0x0 + *fill* 0x0000000040177104 0x0 + *fill* 0x0000000040177104 0x0 + *fill* 0x0000000040177104 0x0 + *fill* 0x0000000040177104 0x0 + *fill* 0x0000000040177104 0x0 + *fill* 0x0000000040177104 0x0 + *fill* 0x0000000040177104 0x0 + *fill* 0x0000000040177104 0x0 + *fill* 0x0000000040177104 0x0 + *fill* 0x0000000040177104 0x0 + *fill* 0x0000000040177104 0x0 + *fill* 0x0000000040177104 0x0 + *fill* 0x0000000040177104 0x0 + *fill* 0x0000000040177104 0x0 + *fill* 0x0000000040177104 0x0 + *fill* 0x0000000040177104 0x0 + *fill* 0x0000000040177104 0x0 + *fill* 0x0000000040177104 0x0 + .text.dhcp_supplied_address + 0x0000000040177104 0x42 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x0000000040177104 dhcp_supplied_address + *fill* 0x0000000040177146 0x0 + *fill* 0x0000000040177146 0x0 + *fill* 0x0000000040177146 0x0 + *fill* 0x0000000040177146 0x0 + *fill* 0x0000000040177146 0x0 + *fill* 0x0000000040177146 0x0 + *fill* 0x0000000040177146 0x0 + *fill* 0x0000000040177146 0x0 + *fill* 0x0000000040177146 0x0 + *fill* 0x0000000040177146 0x0 + *fill* 0x0000000040177146 0x0 + *fill* 0x0000000040177146 0x0 + *fill* 0x0000000040177146 0x0 + *fill* 0x0000000040177146 0x0 + *fill* 0x0000000040177146 0x0 + *fill* 0x0000000040177146 0x0 + *fill* 0x0000000040177146 0x0 + *fill* 0x0000000040177146 0x0 + *fill* 0x0000000040177146 0x0 + *fill* 0x0000000040177146 0x0 + *fill* 0x0000000040177146 0x0 + *fill* 0x0000000040177146 0x0 + *fill* 0x0000000040177146 0x2 + .text.igmp_remove_group + 0x0000000040177148 0x26 esp-idf/lwip/liblwip.a(igmp.c.obj) + *fill* 0x000000004017716e 0x0 + *fill* 0x000000004017716e 0x0 + *fill* 0x000000004017716e 0x0 + *fill* 0x000000004017716e 0x0 + *fill* 0x000000004017716e 0x0 + *fill* 0x000000004017716e 0x0 + *fill* 0x000000004017716e 0x0 + *fill* 0x000000004017716e 0x0 + *fill* 0x000000004017716e 0x2 + .text.igmp_lookfor_group + 0x0000000040177170 0x17 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x0000000040177170 igmp_lookfor_group + *fill* 0x0000000040177187 0x0 + *fill* 0x0000000040177187 0x0 + *fill* 0x0000000040177187 0x0 + *fill* 0x0000000040177187 0x0 + *fill* 0x0000000040177187 0x0 + *fill* 0x0000000040177187 0x0 + *fill* 0x0000000040177187 0x0 + *fill* 0x0000000040177187 0x0 + *fill* 0x0000000040177187 0x0 + *fill* 0x0000000040177187 0x0 + *fill* 0x0000000040177187 0x0 + *fill* 0x0000000040177187 0x0 + *fill* 0x0000000040177187 0x0 + *fill* 0x0000000040177187 0x0 + *fill* 0x0000000040177187 0x1 + .text.ip4_addr_isbroadcast_u32 + 0x0000000040177188 0x46 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x0000000040177188 ip4_addr_isbroadcast_u32 + *fill* 0x00000000401771ce 0x0 + *fill* 0x00000000401771ce 0x0 + *fill* 0x00000000401771ce 0x0 + *fill* 0x00000000401771ce 0x0 + *fill* 0x00000000401771ce 0x0 + *fill* 0x00000000401771ce 0x0 + *fill* 0x00000000401771ce 0x0 + *fill* 0x00000000401771ce 0x0 + *fill* 0x00000000401771ce 0x0 + *fill* 0x00000000401771ce 0x0 + *fill* 0x00000000401771ce 0x0 + *fill* 0x00000000401771ce 0x0 + *fill* 0x00000000401771ce 0x0 + *fill* 0x00000000401771ce 0x0 + *fill* 0x00000000401771ce 0x0 + *fill* 0x00000000401771ce 0x0 + *fill* 0x00000000401771ce 0x0 + *fill* 0x00000000401771ce 0x2 + .text.mld6_remove_group + 0x00000000401771d0 0x35 esp-idf/lwip/liblwip.a(mld6.c.obj) + *fill* 0x0000000040177205 0x0 + *fill* 0x0000000040177205 0x0 + *fill* 0x0000000040177205 0x0 + *fill* 0x0000000040177205 0x3 + .text.mld6_lookfor_group + 0x0000000040177208 0x35 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x0000000040177208 mld6_lookfor_group + *fill* 0x000000004017723d 0x0 + *fill* 0x000000004017723d 0x0 + *fill* 0x000000004017723d 0x0 + *fill* 0x000000004017723d 0x0 + *fill* 0x000000004017723d 0x0 + *fill* 0x000000004017723d 0x0 + *fill* 0x000000004017723d 0x0 + *fill* 0x000000004017723d 0x0 + *fill* 0x000000004017723d 0x0 + *fill* 0x000000004017723d 0x0 + *fill* 0x000000004017723d 0x0 + *fill* 0x000000004017723d 0x0 + *fill* 0x000000004017723d 0x0 + *fill* 0x000000004017723d 0x0 + *fill* 0x000000004017723d 0x0 + *fill* 0x000000004017723d 0x0 + *fill* 0x000000004017723d 0x0 + *fill* 0x000000004017723d 0x0 + *fill* 0x000000004017723d 0x0 + *fill* 0x000000004017723d 0x0 + *fill* 0x000000004017723d 0x0 + *fill* 0x000000004017723d 0x0 + *fill* 0x000000004017723d 0x0 + *fill* 0x000000004017723d 0x0 + *fill* 0x000000004017723d 0x0 + *fill* 0x000000004017723d 0x0 + *fill* 0x000000004017723d 0x0 + *fill* 0x000000004017723d 0x0 + *fill* 0x000000004017723d 0x0 + *fill* 0x000000004017723d 0x0 + *fill* 0x000000004017723d 0x0 + *fill* 0x000000004017723d 0x3 + .text.nd6_restart_netif + 0x0000000040177240 0xa esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x0000000040177240 nd6_restart_netif + *fill* 0x000000004017724a 0x0 + *fill* 0x000000004017724a 0x0 + *fill* 0x000000004017724a 0x0 + *fill* 0x000000004017724a 0x0 + *fill* 0x000000004017724a 0x0 + *fill* 0x000000004017724a 0x0 + *fill* 0x000000004017724a 0x0 + *fill* 0x000000004017724a 0x0 + *fill* 0x000000004017724a 0x0 + *fill* 0x000000004017724a 0x0 + *fill* 0x000000004017724a 0x0 + *fill* 0x000000004017724a 0x0 + *fill* 0x000000004017724a 0x0 + *fill* 0x000000004017724a 0x2 + .text.lwip_standard_chksum + 0x000000004017724c 0x69 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x000000004017724c lwip_standard_chksum + *fill* 0x00000000401772b5 0x0 + *fill* 0x00000000401772b5 0x0 + *fill* 0x00000000401772b5 0x0 + *fill* 0x00000000401772b5 0x0 + *fill* 0x00000000401772b5 0x0 + *fill* 0x00000000401772b5 0x0 + *fill* 0x00000000401772b5 0x0 + *fill* 0x00000000401772b5 0x3 + .text.lwip_poll_should_wake + 0x00000000401772b8 0x41 esp-idf/lwip/liblwip.a(sockets.c.obj) + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x0 + *fill* 0x00000000401772f9 0x3 + .text.heap_caps_match + 0x00000000401772fc 0x32 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x00000000401772fc heap_caps_match + *fill* 0x000000004017732e 0x0 + *fill* 0x000000004017732e 0x0 + *fill* 0x000000004017732e 0x0 + *fill* 0x000000004017732e 0x0 + *fill* 0x000000004017732e 0x0 + *fill* 0x000000004017732e 0x0 + *fill* 0x000000004017732e 0x0 + *fill* 0x000000004017732e 0x2 + .text.is_wifi_clk_peripheral + 0x0000000040177330 0x26 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + *fill* 0x0000000040177356 0x0 + *fill* 0x0000000040177356 0x0 + *fill* 0x0000000040177356 0x0 + *fill* 0x0000000040177356 0x0 + *fill* 0x0000000040177356 0x0 + *fill* 0x0000000040177356 0x0 + *fill* 0x0000000040177356 0x0 + *fill* 0x0000000040177356 0x0 + *fill* 0x0000000040177356 0x0 + *fill* 0x0000000040177356 0x0 + *fill* 0x0000000040177356 0x2 + .text.uart_find_pattern_from_last + 0x0000000040177358 0x24 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000004017737c 0x0 + *fill* 0x000000004017737c 0x0 + *fill* 0x000000004017737c 0x0 + *fill* 0x000000004017737c 0x0 + *fill* 0x000000004017737c 0x0 + *fill* 0x000000004017737c 0x0 + *fill* 0x000000004017737c 0x0 + *fill* 0x000000004017737c 0x0 + *fill* 0x000000004017737c 0x0 + *fill* 0x000000004017737c 0x0 + *fill* 0x000000004017737c 0x0 + *fill* 0x000000004017737c 0x0 + *fill* 0x000000004017737c 0x0 + *fill* 0x000000004017737c 0x0 + *fill* 0x000000004017737c 0x0 + *fill* 0x000000004017737c 0x0 + *fill* 0x000000004017737c 0x0 + *fill* 0x000000004017737c 0x0 + *fill* 0x000000004017737c 0x0 + *fill* 0x000000004017737c 0x0 + *fill* 0x000000004017737c 0x0 + *fill* 0x000000004017737c 0x0 + *fill* 0x000000004017737c 0x0 + *fill* 0x000000004017737c 0x0 + *fill* 0x000000004017737c 0x0 + *fill* 0x000000004017737c 0x0 + .text.esp_pm_impl_waiti + 0x000000004017737c 0x8 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + 0x000000004017737c esp_pm_impl_waiti + *fill* 0x0000000040177384 0x0 + *fill* 0x0000000040177384 0x0 + *fill* 0x0000000040177384 0x0 + *fill* 0x0000000040177384 0x0 + *fill* 0x0000000040177384 0x0 + *fill* 0x0000000040177384 0x0 + *fill* 0x0000000040177384 0x0 + *fill* 0x0000000040177384 0x0 + *fill* 0x0000000040177384 0x0 + *fill* 0x0000000040177384 0x0 + *fill* 0x0000000040177384 0x0 + *fill* 0x0000000040177384 0x0 + *fill* 0x0000000040177384 0x0 + *fill* 0x0000000040177384 0x0 + *fill* 0x0000000040177384 0x0 + *fill* 0x0000000040177384 0x0 + *fill* 0x0000000040177384 0x0 + *fill* 0x0000000040177384 0x0 + *fill* 0x0000000040177384 0x0 + *fill* 0x0000000040177384 0x0 + *fill* 0x0000000040177384 0x0 + *fill* 0x0000000040177384 0x0 + *fill* 0x0000000040177384 0x0 + *fill* 0x0000000040177384 0x0 + *fill* 0x0000000040177384 0x0 + *fill* 0x0000000040177384 0x0 + *fill* 0x0000000040177384 0x0 + *fill* 0x0000000040177384 0x0 + *fill* 0x0000000040177384 0x0 + .text.arg_end_resetfn + 0x0000000040177384 0x9 esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x000000004017738d 0x3 + .text.arg_int_resetfn + 0x0000000040177390 0x9 esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x0000000040177399 0x3 + .text.arg_int_checkfn + 0x000000004017739c 0x15 esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x00000000401773b1 0x3 + .text.arg_str_resetfn + 0x00000000401773b4 0x9 esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x00000000401773bd 0x3 + .text.arg_str_scanfn + 0x00000000401773c0 0x2c esp-idf/console/libconsole.a(argtable3.c.obj) + .text.arg_str_checkfn + 0x00000000401773ec 0x15 esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x0000000040177401 0x0 + *fill* 0x0000000040177401 0x3 + .text.arg_endindex + 0x0000000040177404 0x1b esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x000000004017741f 0x0 + *fill* 0x000000004017741f 0x1 + .text.arg_reset + 0x0000000040177420 0x21 esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x0000000040177441 0x3 + .text.arg_cat 0x0000000040177444 0x38 esp-idf/console/libconsole.a(argtable3.c.obj) + *fill* 0x000000004017747c 0x0 + *fill* 0x000000004017747c 0x0 + *fill* 0x000000004017747c 0x0 + *fill* 0x000000004017747c 0x0 + *fill* 0x000000004017747c 0x0 + *fill* 0x000000004017747c 0x0 + *fill* 0x000000004017747c 0x0 + .text.arg_print_errors + 0x000000004017747c 0x32 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x000000004017747c arg_print_errors + *fill* 0x00000000401774ae 0x0 + *fill* 0x00000000401774ae 0x0 + *fill* 0x00000000401774ae 0x0 + *fill* 0x00000000401774ae 0x0 + *fill* 0x00000000401774ae 0x0 + *fill* 0x00000000401774ae 0x0 + *fill* 0x00000000401774ae 0x0 + *fill* 0x00000000401774ae 0x0 + *fill* 0x00000000401774ae 0x0 + *fill* 0x00000000401774ae 0x2 + .text.abInit 0x00000000401774b0 0xb esp-idf/console/libconsole.a(linenoise.c.obj) + *fill* 0x00000000401774bb 0x0 + *fill* 0x00000000401774bb 0x0 + *fill* 0x00000000401774bb 0x0 + *fill* 0x00000000401774bb 0x0 + *fill* 0x00000000401774bb 0x0 + *fill* 0x00000000401774bb 0x0 + *fill* 0x00000000401774bb 0x0 + *fill* 0x00000000401774bb 0x0 + *fill* 0x00000000401774bb 0x0 + *fill* 0x00000000401774bb 0x0 + *fill* 0x00000000401774bb 0x0 + *fill* 0x00000000401774bb 0x0 + *fill* 0x00000000401774bb 0x0 + *fill* 0x00000000401774bb 0x0 + *fill* 0x00000000401774bb 0x0 + *fill* 0x00000000401774bb 0x0 + *fill* 0x00000000401774bb 0x0 + *fill* 0x00000000401774bb 0x0 + *fill* 0x00000000401774bb 0x0 + *fill* 0x00000000401774bb 0x0 + *fill* 0x00000000401774bb 0x0 + *fill* 0x00000000401774bb 0x0 + *fill* 0x00000000401774bb 0x0 + *fill* 0x00000000401774bb 0x0 + *fill* 0x00000000401774bb 0x0 + *fill* 0x00000000401774bb 0x0 + *fill* 0x00000000401774bb 0x0 + *fill* 0x00000000401774bb 0x0 + *fill* 0x00000000401774bb 0x0 + *fill* 0x00000000401774bb 0x1 + .text.httpd_send_all + 0x00000000401774bc 0x30 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + *fill* 0x00000000401774ec 0x0 + *fill* 0x00000000401774ec 0x0 + *fill* 0x00000000401774ec 0x0 + *fill* 0x00000000401774ec 0x0 + *fill* 0x00000000401774ec 0x0 + *fill* 0x00000000401774ec 0x0 + *fill* 0x00000000401774ec 0x0 + *fill* 0x00000000401774ec 0x0 + .text.httpd_resp_set_status + 0x00000000401774ec 0x2d esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x00000000401774ec httpd_resp_set_status + *fill* 0x0000000040177519 0x3 + .text.httpd_resp_set_type + 0x000000004017751c 0x2d esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x000000004017751c httpd_resp_set_type + *fill* 0x0000000040177549 0x0 + *fill* 0x0000000040177549 0x0 + *fill* 0x0000000040177549 0x0 + *fill* 0x0000000040177549 0x0 + *fill* 0x0000000040177549 0x0 + *fill* 0x0000000040177549 0x0 + *fill* 0x0000000040177549 0x0 + *fill* 0x0000000040177549 0x0 + *fill* 0x0000000040177549 0x3 + .text.httpd_is_sess_available + 0x000000004017754c 0x31 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x000000004017754c httpd_is_sess_available + *fill* 0x000000004017757d 0x3 + .text.httpd_sess_get + 0x0000000040177580 0x44 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x0000000040177580 httpd_sess_get + *fill* 0x00000000401775c4 0x0 + .text.httpd_sess_set_descriptors + 0x00000000401775c4 0x53 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x00000000401775c4 httpd_sess_set_descriptors + *fill* 0x0000000040177617 0x0 + *fill* 0x0000000040177617 0x0 + *fill* 0x0000000040177617 0x1 + .text.httpd_sess_init + 0x0000000040177618 0x32 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x0000000040177618 httpd_sess_init + *fill* 0x000000004017764a 0x0 + *fill* 0x000000004017764a 0x0 + *fill* 0x000000004017764a 0x2 + .text.httpd_sess_iterate + 0x000000004017764c 0x62 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x000000004017764c httpd_sess_iterate + *fill* 0x00000000401776ae 0x0 + *fill* 0x00000000401776ae 0x0 + *fill* 0x00000000401776ae 0x0 + *fill* 0x00000000401776ae 0x0 + *fill* 0x00000000401776ae 0x0 + *fill* 0x00000000401776ae 0x0 + *fill* 0x00000000401776ae 0x0 + *fill* 0x00000000401776ae 0x0 + *fill* 0x00000000401776ae 0x2 + .text.httpd_get_global_transport_ctx + 0x00000000401776b0 0x7 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x00000000401776b0 httpd_get_global_transport_ctx + *fill* 0x00000000401776b7 0x0 + *fill* 0x00000000401776b7 0x0 + *fill* 0x00000000401776b7 0x0 + *fill* 0x00000000401776b7 0x0 + *fill* 0x00000000401776b7 0x0 + *fill* 0x00000000401776b7 0x0 + *fill* 0x00000000401776b7 0x0 + *fill* 0x00000000401776b7 0x0 + *fill* 0x00000000401776b7 0x0 + *fill* 0x00000000401776b7 0x0 + *fill* 0x00000000401776b7 0x0 + *fill* 0x00000000401776b7 0x0 + *fill* 0x00000000401776b7 0x0 + *fill* 0x00000000401776b7 0x0 + *fill* 0x00000000401776b7 0x0 + *fill* 0x00000000401776b7 0x0 + *fill* 0x00000000401776b7 0x0 + *fill* 0x00000000401776b7 0x0 + *fill* 0x00000000401776b7 0x0 + *fill* 0x00000000401776b7 0x0 + *fill* 0x00000000401776b7 0x0 + *fill* 0x00000000401776b7 0x0 + *fill* 0x00000000401776b7 0x0 + *fill* 0x00000000401776b7 0x0 + *fill* 0x00000000401776b7 0x0 + *fill* 0x00000000401776b7 0x0 + *fill* 0x00000000401776b7 0x0 + *fill* 0x00000000401776b7 0x0 + *fill* 0x00000000401776b7 0x0 + *fill* 0x00000000401776b7 0x0 + *fill* 0x00000000401776b7 0x0 + *fill* 0x00000000401776b7 0x0 + *fill* 0x00000000401776b7 0x0 + *fill* 0x00000000401776b7 0x1 + .text.ff_wl_initialize + 0x00000000401776b8 0x7 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + 0x00000000401776b8 ff_wl_initialize + *fill* 0x00000000401776bf 0x1 + .text.ff_wl_status + 0x00000000401776c0 0x7 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + 0x00000000401776c0 ff_wl_status + *fill* 0x00000000401776c7 0x0 + *fill* 0x00000000401776c7 0x0 + *fill* 0x00000000401776c7 0x0 + *fill* 0x00000000401776c7 0x0 + *fill* 0x00000000401776c7 0x1 + .text.ld_word 0x00000000401776c8 0x11 esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x00000000401776d9 0x3 + .text.ld_dword + 0x00000000401776dc 0x23 esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x00000000401776ff 0x1 + .text.st_word 0x0000000040177700 0xe esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x000000004017770e 0x2 + .text.st_dword + 0x0000000040177710 0x1a esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x000000004017772a 0x2 + .text.mem_cpy 0x000000004017772c 0x16 esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x0000000040177742 0x2 + .text.mem_set 0x0000000040177744 0xf esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x0000000040177753 0x1 + .text.mem_cmp 0x0000000040177754 0x20 esp-idf/fatfs/libfatfs.a(ff.c.obj) + .text.chk_chr 0x0000000040177774 0x14 esp-idf/fatfs/libfatfs.a(ff.c.obj) + .text.dbc_1st 0x0000000040177788 0x7 esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x000000004017778f 0x1 + .text.dbc_2nd 0x0000000040177790 0x7 esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x0000000040177797 0x1 + .text.clst2sect + 0x0000000040177798 0x20 esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x00000000401777b8 0x0 + *fill* 0x00000000401777b8 0x0 + *fill* 0x00000000401777b8 0x0 + *fill* 0x00000000401777b8 0x0 + .text.get_ldnumber + 0x00000000401777b8 0x6c esp-idf/fatfs/libfatfs.a(ff.c.obj) + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + *fill* 0x0000000040177824 0x0 + .text._ZN12Flash_Access5flushEv + 0x0000000040177824 0x7 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0x0000000040177824 _ZN12Flash_Access5flushEv + *fill* 0x000000004017782b 0x1 + .text._ZN9Partition9chip_sizeEv + 0x000000004017782c 0x9 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0x000000004017782c _ZN9Partition9chip_sizeEv + *fill* 0x0000000040177835 0x0 + *fill* 0x0000000040177835 0x3 + .text._ZN9PartitionD2Ev + 0x0000000040177838 0x5 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0x0000000040177838 _ZN9PartitionD2Ev + 0x0000000040177838 _ZN9PartitionD1Ev + *fill* 0x000000004017783d 0x0 + *fill* 0x000000004017783d 0x0 + *fill* 0x000000004017783d 0x0 + *fill* 0x000000004017783d 0x0 + *fill* 0x000000004017783d 0x3 + .text._ZN8WL_Flash9chip_sizeEv + 0x0000000040177840 0x12 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x0000000040177840 _ZN8WL_Flash9chip_sizeEv + *fill* 0x0000000040177852 0x2 + .text._ZN8WL_Flash11sector_sizeEv + 0x0000000040177854 0x12 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x0000000040177854 _ZN8WL_Flash11sector_sizeEv + *fill* 0x0000000040177866 0x0 + *fill* 0x0000000040177866 0x0 + *fill* 0x0000000040177866 0x0 + *fill* 0x0000000040177866 0x0 + *fill* 0x0000000040177866 0x0 + *fill* 0x0000000040177866 0x0 + *fill* 0x0000000040177866 0x0 + *fill* 0x0000000040177866 0x0 + *fill* 0x0000000040177866 0x0 + *fill* 0x0000000040177866 0x2 + .text._ZN8WL_Flash8calcAddrEj + 0x0000000040177868 0x24 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0x0000000040177868 _ZN8WL_Flash8calcAddrEj + *fill* 0x000000004017788c 0x0 + .text.s_compare_reserved_regions + 0x000000004017788c 0xc esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + *fill* 0x0000000040177898 0x0 + *fill* 0x0000000040177898 0x0 + *fill* 0x0000000040177898 0x0 + *fill* 0x0000000040177898 0x0 + .text.uart_hal_set_stop_bits + 0x0000000040177898 0x5d esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x0000000040177898 uart_hal_set_stop_bits + *fill* 0x00000000401778f5 0x3 + .text.uart_hal_get_stop_bits + 0x00000000401778f8 0x2c esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x00000000401778f8 uart_hal_get_stop_bits + .text.uart_hal_set_data_bit_num + 0x0000000040177924 0x1f esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x0000000040177924 uart_hal_set_data_bit_num + *fill* 0x0000000040177943 0x1 + .text.uart_hal_get_data_bit_num + 0x0000000040177944 0x11 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x0000000040177944 uart_hal_get_data_bit_num + *fill* 0x0000000040177955 0x3 + .text.uart_hal_set_parity + 0x0000000040177958 0x36 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x0000000040177958 uart_hal_set_parity + *fill* 0x000000004017798e 0x2 + .text.uart_hal_get_parity + 0x0000000040177990 0x26 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x0000000040177990 uart_hal_get_parity + *fill* 0x00000000401779b6 0x0 + *fill* 0x00000000401779b6 0x2 + .text.uart_hal_get_sclk + 0x00000000401779b8 0x16 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x00000000401779b8 uart_hal_get_sclk + *fill* 0x00000000401779ce 0x0 + *fill* 0x00000000401779ce 0x2 + .text.uart_hal_set_rxfifo_full_thr + 0x00000000401779d0 0x1d esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x00000000401779d0 uart_hal_set_rxfifo_full_thr + *fill* 0x00000000401779ed 0x3 + .text.uart_hal_set_wakeup_thrd + 0x00000000401779f0 0x20 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x00000000401779f0 uart_hal_set_wakeup_thrd + *fill* 0x0000000040177a10 0x0 + *fill* 0x0000000040177a10 0x0 + *fill* 0x0000000040177a10 0x0 + *fill* 0x0000000040177a10 0x0 + *fill* 0x0000000040177a10 0x0 + *fill* 0x0000000040177a10 0x0 + *fill* 0x0000000040177a10 0x0 + *fill* 0x0000000040177a10 0x0 + *fill* 0x0000000040177a10 0x0 + *fill* 0x0000000040177a10 0x0 + *fill* 0x0000000040177a10 0x0 + *fill* 0x0000000040177a10 0x0 + .text.mpi_get_digit + 0x0000000040177a10 0x42 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + *fill* 0x0000000040177a52 0x2 + .text.mpi_sub_hlp + 0x0000000040177a54 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + *fill* 0x0000000040177aa4 0x0 + .text.mbedtls_mpi_init + 0x0000000040177aa4 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000040177aa4 mbedtls_mpi_init + *fill* 0x0000000040177ab3 0x0 + *fill* 0x0000000040177ab3 0x0 + *fill* 0x0000000040177ab3 0x0 + *fill* 0x0000000040177ab3 0x0 + *fill* 0x0000000040177ab3 0x0 + *fill* 0x0000000040177ab3 0x0 + *fill* 0x0000000040177ab3 0x1 + .text.mbedtls_mpi_get_bit + 0x0000000040177ab4 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000040177ab4 mbedtls_mpi_get_bit + *fill* 0x0000000040177adc 0x0 + .text.mbedtls_mpi_lsb + 0x0000000040177adc 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0x0000000040177adc mbedtls_mpi_lsb + *fill* 0x0000000040177b0d 0x0 + *fill* 0x0000000040177b0d 0x0 + *fill* 0x0000000040177b0d 0x0 + *fill* 0x0000000040177b0d 0x0 + *fill* 0x0000000040177b0d 0x0 + *fill* 0x0000000040177b0d 0x0 + *fill* 0x0000000040177b0d 0x0 + *fill* 0x0000000040177b0d 0x0 + *fill* 0x0000000040177b0d 0x0 + *fill* 0x0000000040177b0d 0x0 + *fill* 0x0000000040177b0d 0x0 + *fill* 0x0000000040177b0d 0x0 + *fill* 0x0000000040177b0d 0x0 + *fill* 0x0000000040177b0d 0x0 + *fill* 0x0000000040177b0d 0x0 + *fill* 0x0000000040177b0d 0x0 + *fill* 0x0000000040177b0d 0x0 + *fill* 0x0000000040177b0d 0x0 + *fill* 0x0000000040177b0d 0x0 + *fill* 0x0000000040177b0d 0x0 + *fill* 0x0000000040177b0d 0x0 + *fill* 0x0000000040177b0d 0x0 + *fill* 0x0000000040177b0d 0x0 + *fill* 0x0000000040177b0d 0x3 + .text.ecp_pick_window_size + 0x0000000040177b10 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + *fill* 0x0000000040177b38 0x0 + .text.mbedtls_entropy_add_source + 0x0000000040177b38 0x31 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0x0000000040177b38 mbedtls_entropy_add_source + *fill* 0x0000000040177b69 0x0 + *fill* 0x0000000040177b69 0x0 + *fill* 0x0000000040177b69 0x0 + *fill* 0x0000000040177b69 0x3 + .text.mbedtls_md_init + 0x0000000040177b6c 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x0000000040177b6c mbedtls_md_init + *fill* 0x0000000040177b97 0x0 + *fill* 0x0000000040177b97 0x0 + *fill* 0x0000000040177b97 0x0 + *fill* 0x0000000040177b97 0x0 + *fill* 0x0000000040177b97 0x0 + *fill* 0x0000000040177b97 0x0 + *fill* 0x0000000040177b97 0x0 + *fill* 0x0000000040177b97 0x0 + *fill* 0x0000000040177b97 0x1 + .text.mbedtls_md_get_size + 0x0000000040177b98 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x0000000040177b98 mbedtls_md_get_size + *fill* 0x0000000040177ba8 0x0 + *fill* 0x0000000040177ba8 0x0 + *fill* 0x0000000040177ba8 0x0 + *fill* 0x0000000040177ba8 0x0 + *fill* 0x0000000040177ba8 0x0 + *fill* 0x0000000040177ba8 0x0 + *fill* 0x0000000040177ba8 0x0 + *fill* 0x0000000040177ba8 0x0 + *fill* 0x0000000040177ba8 0x0 + *fill* 0x0000000040177ba8 0x0 + *fill* 0x0000000040177ba8 0x0 + *fill* 0x0000000040177ba8 0x0 + *fill* 0x0000000040177ba8 0x0 + *fill* 0x0000000040177ba8 0x0 + *fill* 0x0000000040177ba8 0x0 + *fill* 0x0000000040177ba8 0x0 + *fill* 0x0000000040177ba8 0x0 + *fill* 0x0000000040177ba8 0x0 + *fill* 0x0000000040177ba8 0x0 + *fill* 0x0000000040177ba8 0x0 + *fill* 0x0000000040177ba8 0x0 + *fill* 0x0000000040177ba8 0x0 + *fill* 0x0000000040177ba8 0x0 + *fill* 0x0000000040177ba8 0x0 + *fill* 0x0000000040177ba8 0x0 + *fill* 0x0000000040177ba8 0x0 + *fill* 0x0000000040177ba8 0x0 + *fill* 0x0000000040177ba8 0x0 + .text.mbedtls_pk_init + 0x0000000040177ba8 0xb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x0000000040177ba8 mbedtls_pk_init + *fill* 0x0000000040177bb3 0x0 + *fill* 0x0000000040177bb3 0x0 + *fill* 0x0000000040177bb3 0x1 + .text.mbedtls_pk_can_do + 0x0000000040177bb4 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x0000000040177bb4 mbedtls_pk_can_do + *fill* 0x0000000040177bd2 0x0 + *fill* 0x0000000040177bd2 0x0 + *fill* 0x0000000040177bd2 0x0 + *fill* 0x0000000040177bd2 0x0 + *fill* 0x0000000040177bd2 0x0 + *fill* 0x0000000040177bd2 0x0 + *fill* 0x0000000040177bd2 0x0 + *fill* 0x0000000040177bd2 0x2 + .text.mbedtls_pk_get_bitlen + 0x0000000040177bd4 0x1e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x0000000040177bd4 mbedtls_pk_get_bitlen + *fill* 0x0000000040177bf2 0x0 + *fill* 0x0000000040177bf2 0x2 + .text.mbedtls_pk_get_type + 0x0000000040177bf4 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0x0000000040177bf4 mbedtls_pk_get_type + .text.rsa_can_do + 0x0000000040177c0c 0x1f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x0000000040177c2b 0x0 + *fill* 0x0000000040177c2b 0x1 + .text.eckey_can_do + 0x0000000040177c2c 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x0000000040177c3b 0x1 + .text.eckey_get_bitlen + 0x0000000040177c3c 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x0000000040177c44 0x0 + .text.eckeydh_can_do + 0x0000000040177c44 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x0000000040177c53 0x1 + .text.ecdsa_can_do + 0x0000000040177c54 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + *fill* 0x0000000040177c65 0x0 + *fill* 0x0000000040177c65 0x0 + *fill* 0x0000000040177c65 0x0 + *fill* 0x0000000040177c65 0x0 + *fill* 0x0000000040177c65 0x0 + *fill* 0x0000000040177c65 0x0 + *fill* 0x0000000040177c65 0x0 + *fill* 0x0000000040177c65 0x0 + *fill* 0x0000000040177c65 0x0 + *fill* 0x0000000040177c65 0x0 + *fill* 0x0000000040177c65 0x0 + *fill* 0x0000000040177c65 0x0 + *fill* 0x0000000040177c65 0x0 + *fill* 0x0000000040177c65 0x0 + *fill* 0x0000000040177c65 0x0 + *fill* 0x0000000040177c65 0x0 + *fill* 0x0000000040177c65 0x0 + *fill* 0x0000000040177c65 0x0 + *fill* 0x0000000040177c65 0x0 + *fill* 0x0000000040177c65 0x0 + *fill* 0x0000000040177c65 0x0 + *fill* 0x0000000040177c65 0x0 + *fill* 0x0000000040177c65 0x0 + *fill* 0x0000000040177c65 0x0 + *fill* 0x0000000040177c65 0x0 + *fill* 0x0000000040177c65 0x0 + *fill* 0x0000000040177c65 0x0 + *fill* 0x0000000040177c65 0x0 + *fill* 0x0000000040177c65 0x0 + *fill* 0x0000000040177c65 0x0 + *fill* 0x0000000040177c65 0x0 + *fill* 0x0000000040177c65 0x0 + *fill* 0x0000000040177c65 0x0 + *fill* 0x0000000040177c65 0x0 + *fill* 0x0000000040177c65 0x0 + *fill* 0x0000000040177c65 0x3 + .text.all_or_nothing_int + 0x0000000040177c68 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + *fill* 0x0000000040177c76 0x2 + .text.size_greater_than + 0x0000000040177c78 0xb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + *fill* 0x0000000040177c83 0x0 + *fill* 0x0000000040177c83 0x0 + *fill* 0x0000000040177c83 0x0 + *fill* 0x0000000040177c83 0x0 + *fill* 0x0000000040177c83 0x1 + .text.mbedtls_rsa_set_padding + 0x0000000040177c84 0xb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000040177c84 mbedtls_rsa_set_padding + *fill* 0x0000000040177c8f 0x0 + *fill* 0x0000000040177c8f 0x1 + .text.mbedtls_rsa_get_len + 0x0000000040177c90 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x0000000040177c90 mbedtls_rsa_get_len + *fill* 0x0000000040177c97 0x0 + *fill* 0x0000000040177c97 0x0 + *fill* 0x0000000040177c97 0x0 + *fill* 0x0000000040177c97 0x0 + *fill* 0x0000000040177c97 0x0 + *fill* 0x0000000040177c97 0x0 + *fill* 0x0000000040177c97 0x0 + *fill* 0x0000000040177c97 0x0 + *fill* 0x0000000040177c97 0x0 + *fill* 0x0000000040177c97 0x0 + *fill* 0x0000000040177c97 0x0 + *fill* 0x0000000040177c97 0x0 + *fill* 0x0000000040177c97 0x0 + *fill* 0x0000000040177c97 0x0 + *fill* 0x0000000040177c97 0x0 + *fill* 0x0000000040177c97 0x0 + *fill* 0x0000000040177c97 0x0 + *fill* 0x0000000040177c97 0x0 + *fill* 0x0000000040177c97 0x0 + *fill* 0x0000000040177c97 0x1 + .text.mbedtls_zeroize + 0x0000000040177c98 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + *fill* 0x0000000040177cb1 0x0 + *fill* 0x0000000040177cb1 0x0 + *fill* 0x0000000040177cb1 0x0 + *fill* 0x0000000040177cb1 0x0 + *fill* 0x0000000040177cb1 0x0 + *fill* 0x0000000040177cb1 0x3 + .text.mbedtls_zeroize + 0x0000000040177cb4 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + *fill* 0x0000000040177ccd 0x0 + *fill* 0x0000000040177ccd 0x0 + *fill* 0x0000000040177ccd 0x0 + *fill* 0x0000000040177ccd 0x0 + *fill* 0x0000000040177ccd 0x0 + *fill* 0x0000000040177ccd 0x0 + *fill* 0x0000000040177ccd 0x0 + *fill* 0x0000000040177ccd 0x0 + *fill* 0x0000000040177ccd 0x3 + .text.mbedtls_zeroize + 0x0000000040177cd0 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + *fill* 0x0000000040177ce9 0x0 + *fill* 0x0000000040177ce9 0x0 + *fill* 0x0000000040177ce9 0x0 + *fill* 0x0000000040177ce9 0x0 + *fill* 0x0000000040177ce9 0x0 + *fill* 0x0000000040177ce9 0x3 + .text.mbedtls_mpi_msb + 0x0000000040177cec 0x49 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + *fill* 0x0000000040177d35 0x0 + *fill* 0x0000000040177d35 0x0 + *fill* 0x0000000040177d35 0x0 + *fill* 0x0000000040177d35 0x0 + *fill* 0x0000000040177d35 0x0 + *fill* 0x0000000040177d35 0x0 + *fill* 0x0000000040177d35 0x0 + *fill* 0x0000000040177d35 0x3 + .text.esp_aes_xts_decode_keys + 0x0000000040177d38 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + *fill* 0x0000000040177d5d 0x3 + .text.esp_gf128mul_x_ble + 0x0000000040177d60 0x10c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + *fill* 0x0000000040177e6c 0x0 + *fill* 0x0000000040177e6c 0x0 + *fill* 0x0000000040177e6c 0x0 + *fill* 0x0000000040177e6c 0x0 + *fill* 0x0000000040177e6c 0x0 + *fill* 0x0000000040177e6c 0x0 + *fill* 0x0000000040177e6c 0x0 + *fill* 0x0000000040177e6c 0x0 + *fill* 0x0000000040177e6c 0x0 + *fill* 0x0000000040177e6c 0x0 + *fill* 0x0000000040177e6c 0x0 + *fill* 0x0000000040177e6c 0x0 + *fill* 0x0000000040177e6c 0x0 + *fill* 0x0000000040177e6c 0x0 + *fill* 0x0000000040177e6c 0x0 + *fill* 0x0000000040177e6c 0x0 + *fill* 0x0000000040177e6c 0x0 + *fill* 0x0000000040177e6c 0x0 + *fill* 0x0000000040177e6c 0x0 + *fill* 0x0000000040177e6c 0x0 + *fill* 0x0000000040177e6c 0x0 + *fill* 0x0000000040177e6c 0x0 + *fill* 0x0000000040177e6c 0x0 + *fill* 0x0000000040177e6c 0x0 + *fill* 0x0000000040177e6c 0x0 + *fill* 0x0000000040177e6c 0x0 + .text.mbedtls_asn1_get_len + 0x0000000040177e6c 0xf9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x0000000040177e6c mbedtls_asn1_get_len + *fill* 0x0000000040177f65 0x0 + *fill* 0x0000000040177f65 0x0 + *fill* 0x0000000040177f65 0x0 + *fill* 0x0000000040177f65 0x0 + *fill* 0x0000000040177f65 0x0 + *fill* 0x0000000040177f65 0x0 + *fill* 0x0000000040177f65 0x0 + *fill* 0x0000000040177f65 0x0 + *fill* 0x0000000040177f65 0x0 + *fill* 0x0000000040177f65 0x3 + .text.mbedtls_asn1_write_tag + 0x0000000040177f68 0x21 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x0000000040177f68 mbedtls_asn1_write_tag + *fill* 0x0000000040177f89 0x0 + *fill* 0x0000000040177f89 0x0 + *fill* 0x0000000040177f89 0x0 + *fill* 0x0000000040177f89 0x0 + *fill* 0x0000000040177f89 0x0 + *fill* 0x0000000040177f89 0x3 + .text.add_pkcs_padding + 0x0000000040177f8c 0x1d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x0000000040177fa9 0x0 + *fill* 0x0000000040177fa9 0x3 + .text.add_one_and_zeros_padding + 0x0000000040177fac 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x0000000040177fd3 0x0 + *fill* 0x0000000040177fd3 0x1 + .text.add_zeros_and_len_padding + 0x0000000040177fd4 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .text.add_zeros_padding + 0x0000000040177ffc 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + *fill* 0x0000000040178010 0x0 + .text.mbedtls_pem_init + 0x0000000040178010 0x2b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x0000000040178010 mbedtls_pem_init + *fill* 0x000000004017803b 0x0 + *fill* 0x000000004017803b 0x0 + *fill* 0x000000004017803b 0x0 + *fill* 0x000000004017803b 0x0 + *fill* 0x000000004017803b 0x0 + *fill* 0x000000004017803b 0x0 + *fill* 0x000000004017803b 0x0 + *fill* 0x000000004017803b 0x0 + *fill* 0x000000004017803b 0x0 + *fill* 0x000000004017803b 0x0 + *fill* 0x000000004017803b 0x0 + *fill* 0x000000004017803b 0x0 + *fill* 0x000000004017803b 0x0 + *fill* 0x000000004017803b 0x0 + *fill* 0x000000004017803b 0x0 + *fill* 0x000000004017803b 0x0 + *fill* 0x000000004017803b 0x0 + *fill* 0x000000004017803b 0x0 + *fill* 0x000000004017803b 0x0 + *fill* 0x000000004017803b 0x0 + *fill* 0x000000004017803b 0x0 + *fill* 0x000000004017803b 0x0 + *fill* 0x000000004017803b 0x0 + *fill* 0x000000004017803b 0x0 + *fill* 0x000000004017803b 0x0 + *fill* 0x000000004017803b 0x1 + .text.mbedtls_x509_time_is_past + 0x000000004017803c 0x7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x000000004017803c mbedtls_x509_time_is_past + *fill* 0x0000000040178043 0x1 + .text.mbedtls_x509_time_is_future + 0x0000000040178044 0x7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x0000000040178044 mbedtls_x509_time_is_future + *fill* 0x000000004017804b 0x1 + .text.x509_profile_check_md_alg + 0x000000004017804c 0x1a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + *fill* 0x0000000040178066 0x2 + .text.x509_profile_check_pk_alg + 0x0000000040178068 0x1a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + *fill* 0x0000000040178082 0x2 + .text.x509_memcasecmp + 0x0000000040178084 0x58 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .text.x509_crt_verify_chain_reset + 0x00000000401780dc 0x23 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + *fill* 0x00000000401780ff 0x1 + .text.x509_crt_merge_flags_with_cb + 0x0000000040178100 0x3c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + *fill* 0x000000004017813c 0x0 + *fill* 0x000000004017813c 0x0 + *fill* 0x000000004017813c 0x0 + *fill* 0x000000004017813c 0x0 + *fill* 0x000000004017813c 0x0 + *fill* 0x000000004017813c 0x0 + *fill* 0x000000004017813c 0x0 + *fill* 0x000000004017813c 0x0 + *fill* 0x000000004017813c 0x0 + *fill* 0x000000004017813c 0x0 + *fill* 0x000000004017813c 0x0 + *fill* 0x000000004017813c 0x0 + *fill* 0x000000004017813c 0x0 + *fill* 0x000000004017813c 0x0 + *fill* 0x000000004017813c 0x0 + *fill* 0x000000004017813c 0x0 + *fill* 0x000000004017813c 0x0 + *fill* 0x000000004017813c 0x0 + .text.crt_get_unused_bits_for_named_bitstring + 0x000000004017813c 0x14 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + *fill* 0x0000000040178150 0x0 + *fill* 0x0000000040178150 0x0 + *fill* 0x0000000040178150 0x0 + .text.mbedtls_x509write_crt_set_version + 0x0000000040178150 0x7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x0000000040178150 mbedtls_x509write_crt_set_version + *fill* 0x0000000040178157 0x1 + .text.mbedtls_x509write_crt_set_md_alg + 0x0000000040178158 0x7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x0000000040178158 mbedtls_x509write_crt_set_md_alg + *fill* 0x000000004017815f 0x1 + .text.mbedtls_x509write_crt_set_subject_key + 0x0000000040178160 0x7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x0000000040178160 mbedtls_x509write_crt_set_subject_key + *fill* 0x0000000040178167 0x1 + .text.mbedtls_x509write_crt_set_issuer_key + 0x0000000040178168 0x7 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0x0000000040178168 mbedtls_x509write_crt_set_issuer_key + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x0 + *fill* 0x000000004017816f 0x1 + .text.cipher_type_map_supp_to_public + 0x0000000040178170 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040178170 cipher_type_map_supp_to_public + *fill* 0x00000000401781ba 0x0 + *fill* 0x00000000401781ba 0x0 + *fill* 0x00000000401781ba 0x2 + .text.wpa_supplicant_check_group_cipher + 0x00000000401781bc 0xdc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x00000000401781bc wpa_supplicant_check_group_cipher + .text.wpa_supplicant_gtk_tx_bit_workaround + 0x0000000040178298 0x11 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x0000000040178298 wpa_supplicant_gtk_tx_bit_workaround + *fill* 0x00000000401782a9 0x0 + *fill* 0x00000000401782a9 0x0 + *fill* 0x00000000401782a9 0x0 + *fill* 0x00000000401782a9 0x0 + *fill* 0x00000000401782a9 0x0 + *fill* 0x00000000401782a9 0x0 + *fill* 0x00000000401782a9 0x0 + *fill* 0x00000000401782a9 0x0 + *fill* 0x00000000401782a9 0x0 + *fill* 0x00000000401782a9 0x0 + *fill* 0x00000000401782a9 0x0 + *fill* 0x00000000401782a9 0x0 + *fill* 0x00000000401782a9 0x0 + *fill* 0x00000000401782a9 0x0 + *fill* 0x00000000401782a9 0x0 + *fill* 0x00000000401782a9 0x0 + *fill* 0x00000000401782a9 0x0 + *fill* 0x00000000401782a9 0x0 + *fill* 0x00000000401782a9 0x0 + *fill* 0x00000000401782a9 0x0 + *fill* 0x00000000401782a9 0x0 + *fill* 0x00000000401782a9 0x0 + *fill* 0x00000000401782a9 0x0 + *fill* 0x00000000401782a9 0x0 + *fill* 0x00000000401782a9 0x0 + *fill* 0x00000000401782a9 0x0 + *fill* 0x00000000401782a9 0x0 + *fill* 0x00000000401782a9 0x0 + *fill* 0x00000000401782a9 0x3 + .text.hex2num 0x00000000401782ac 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .text.inc_byte_array + 0x00000000401782e4 0x1e esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x00000000401782e4 inc_byte_array + *fill* 0x0000000040178302 0x0 + *fill* 0x0000000040178302 0x0 + *fill* 0x0000000040178302 0x0 + *fill* 0x0000000040178302 0x0 + *fill* 0x0000000040178302 0x2 + .text.wpabuf_put + 0x0000000040178304 0x13 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x0000000040178304 wpabuf_put + *fill* 0x0000000040178317 0x1 + .text.eloop_cancel_timeout + 0x0000000040178318 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + 0x0000000040178318 eloop_cancel_timeout + *fill* 0x000000004017831f 0x1 + .text.eloop_register_timeout + 0x0000000040178320 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + 0x0000000040178320 eloop_register_timeout + *fill* 0x0000000040178327 0x0 + *fill* 0x0000000040178327 0x0 + *fill* 0x0000000040178327 0x0 + *fill* 0x0000000040178327 0x0 + *fill* 0x0000000040178327 0x1 + .text.wpa_request_new_ptk + 0x0000000040178328 0x12 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000004017833a 0x2 + .text.sm_WPA_PTK_DISCONNECTED_Enter + 0x000000004017833c 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.sm_WPA_PTK_PTKCALCNEGOTIATING2_Enter + 0x0000000040178360 0x24 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.ieee80211w_kde_len + 0x0000000040178384 0x15 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x0000000040178399 0x3 + .text.sm_WPA_PTK_GROUP_IDLE_Enter + 0x000000004017839c 0x34 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .text.sm_WPA_PTK_GROUP_REKEYESTABLISHED_Enter + 0x00000000401783d0 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x000000004017840e 0x2 + .text.sm_WPA_PTK_GROUP_KEYERROR_Enter + 0x0000000040178410 0x37 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + *fill* 0x0000000040178447 0x0 + *fill* 0x0000000040178447 0x0 + *fill* 0x0000000040178447 0x0 + *fill* 0x0000000040178447 0x0 + *fill* 0x0000000040178447 0x0 + *fill* 0x0000000040178447 0x0 + *fill* 0x0000000040178447 0x0 + *fill* 0x0000000040178447 0x0 + *fill* 0x0000000040178447 0x0 + *fill* 0x0000000040178447 0x0 + *fill* 0x0000000040178447 0x0 + *fill* 0x0000000040178447 0x0 + *fill* 0x0000000040178447 0x0 + *fill* 0x0000000040178447 0x0 + *fill* 0x0000000040178447 0x0 + *fill* 0x0000000040178447 0x0 + *fill* 0x0000000040178447 0x0 + *fill* 0x0000000040178447 0x0 + *fill* 0x0000000040178447 0x0 + *fill* 0x0000000040178447 0x0 + *fill* 0x0000000040178447 0x0 + *fill* 0x0000000040178447 0x0 + *fill* 0x0000000040178447 0x0 + *fill* 0x0000000040178447 0x0 + *fill* 0x0000000040178447 0x0 + *fill* 0x0000000040178447 0x0 + *fill* 0x0000000040178447 0x0 + *fill* 0x0000000040178447 0x0 + *fill* 0x0000000040178447 0x0 + *fill* 0x0000000040178447 0x0 + *fill* 0x0000000040178447 0x0 + *fill* 0x0000000040178447 0x0 + *fill* 0x0000000040178447 0x0 + *fill* 0x0000000040178447 0x0 + *fill* 0x0000000040178447 0x1 + .text.buf_shift_right + 0x0000000040178448 0x3e esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x0000000040178486 0x2 + .text.sae_is_password_id_elem + 0x0000000040178488 0x42 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + *fill* 0x00000000401784ca 0x0 + *fill* 0x00000000401784ca 0x0 + *fill* 0x00000000401784ca 0x0 + *fill* 0x00000000401784ca 0x0 + *fill* 0x00000000401784ca 0x0 + *fill* 0x00000000401784ca 0x0 + *fill* 0x00000000401784ca 0x0 + *fill* 0x00000000401784ca 0x0 + *fill* 0x00000000401784ca 0x0 + *fill* 0x00000000401784ca 0x0 + *fill* 0x00000000401784ca 0x0 + *fill* 0x00000000401784ca 0x0 + *fill* 0x00000000401784ca 0x0 + *fill* 0x00000000401784ca 0x0 + *fill* 0x00000000401784ca 0x0 + *fill* 0x00000000401784ca 0x0 + *fill* 0x00000000401784ca 0x0 + *fill* 0x00000000401784ca 0x0 + *fill* 0x00000000401784ca 0x0 + *fill* 0x00000000401784ca 0x0 + *fill* 0x00000000401784ca 0x0 + *fill* 0x00000000401784ca 0x0 + *fill* 0x00000000401784ca 0x0 + *fill* 0x00000000401784ca 0x0 + *fill* 0x00000000401784ca 0x0 + *fill* 0x00000000401784ca 0x0 + *fill* 0x00000000401784ca 0x0 + *fill* 0x00000000401784ca 0x0 + *fill* 0x00000000401784ca 0x0 + *fill* 0x00000000401784ca 0x0 + *fill* 0x00000000401784ca 0x2 + .text.wpa_cipher_key_len + 0x00000000401784cc 0x3d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x00000000401784cc wpa_cipher_key_len + *fill* 0x0000000040178509 0x3 + .text.wpa_cipher_to_alg + 0x000000004017850c 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x000000004017850c wpa_cipher_to_alg + *fill* 0x0000000040178544 0x0 + .text.rsn_cipher_put_suites + 0x0000000040178544 0x7a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x0000000040178544 rsn_cipher_put_suites + *fill* 0x00000000401785be 0x2 + .text.wpa_cipher_put_suites + 0x00000000401785c0 0x5a esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x00000000401785c0 wpa_cipher_put_suites + *fill* 0x000000004017861a 0x0 + *fill* 0x000000004017861a 0x0 + *fill* 0x000000004017861a 0x0 + *fill* 0x000000004017861a 0x0 + *fill* 0x000000004017861a 0x0 + *fill* 0x000000004017861a 0x0 + *fill* 0x000000004017861a 0x0 + *fill* 0x000000004017861a 0x0 + *fill* 0x000000004017861a 0x0 + *fill* 0x000000004017861a 0x0 + *fill* 0x000000004017861a 0x0 + *fill* 0x000000004017861a 0x2 + .text.crypto_ec_get_prime + 0x000000004017861c 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x000000004017861c crypto_ec_get_prime + *fill* 0x0000000040178623 0x1 + .text.crypto_ec_get_order + 0x0000000040178624 0x8 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x0000000040178624 crypto_ec_get_order + *fill* 0x000000004017862c 0x0 + *fill* 0x000000004017862c 0x0 + *fill* 0x000000004017862c 0x0 + *fill* 0x000000004017862c 0x0 + *fill* 0x000000004017862c 0x0 + *fill* 0x000000004017862c 0x0 + *fill* 0x000000004017862c 0x0 + *fill* 0x000000004017862c 0x0 + *fill* 0x000000004017862c 0x0 + *fill* 0x000000004017862c 0x0 + *fill* 0x000000004017862c 0x0 + *fill* 0x000000004017862c 0x0 + .text.wpa_sm_mlme_setprotection + 0x000000004017862c 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x000000004017862c wpa_sm_mlme_setprotection + *fill* 0x0000000040178633 0x1 + .text.wpa_sm_get_beacon_ie + 0x0000000040178634 0x7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x0000000040178634 wpa_sm_get_beacon_ie + *fill* 0x000000004017863b 0x1 + .text.wpa_sm_disassociate + 0x000000004017863c 0x5 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0x000000004017863c wpa_sm_disassociate + *fill* 0x0000000040178641 0x0 + *fill* 0x0000000040178641 0x0 + *fill* 0x0000000040178641 0x0 + *fill* 0x0000000040178641 0x0 + *fill* 0x0000000040178641 0x0 + *fill* 0x0000000040178641 0x0 + *fill* 0x0000000040178641 0x0 + *fill* 0x0000000040178641 0x3 + .text.pmksa_cache_clear_current + 0x0000000040178644 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0x0000000040178644 pmksa_cache_clear_current + *fill* 0x0000000040178650 0x0 + *fill* 0x0000000040178650 0x0 + *fill* 0x0000000040178650 0x0 + *fill* 0x0000000040178650 0x0 + *fill* 0x0000000040178650 0x0 + *fill* 0x0000000040178650 0x0 + *fill* 0x0000000040178650 0x0 + *fill* 0x0000000040178650 0x0 + *fill* 0x0000000040178650 0x0 + .text.ieee80211_check_sleep + 0x0000000040178650 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x0000000040178650 ieee80211_check_sleep + *fill* 0x0000000040178657 0x0 + *fill* 0x0000000040178657 0x0 + *fill* 0x0000000040178657 0x0 + *fill* 0x0000000040178657 0x0 + *fill* 0x0000000040178657 0x0 + *fill* 0x0000000040178657 0x0 + *fill* 0x0000000040178657 0x0 + *fill* 0x0000000040178657 0x0 + *fill* 0x0000000040178657 0x0 + *fill* 0x0000000040178657 0x0 + *fill* 0x0000000040178657 0x0 + *fill* 0x0000000040178657 0x0 + *fill* 0x0000000040178657 0x0 + *fill* 0x0000000040178657 0x0 + *fill* 0x0000000040178657 0x0 + *fill* 0x0000000040178657 0x0 + *fill* 0x0000000040178657 0x0 + *fill* 0x0000000040178657 0x0 + *fill* 0x0000000040178657 0x0 + *fill* 0x0000000040178657 0x0 + *fill* 0x0000000040178657 0x1 + .text.ieee80211_crypto_attach + 0x0000000040178658 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + 0x0000000040178658 ieee80211_crypto_attach + *fill* 0x000000004017865d 0x0 + *fill* 0x000000004017865d 0x0 + *fill* 0x000000004017865d 0x0 + *fill* 0x000000004017865d 0x0 + *fill* 0x000000004017865d 0x3 + .text.ccmp_decap + 0x0000000040178660 0xbe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + *fill* 0x000000004017871e 0x0 + *fill* 0x000000004017871e 0x0 + *fill* 0x000000004017871e 0x0 + *fill* 0x000000004017871e 0x2 + .text.wep_decap + 0x0000000040178720 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x0 + *fill* 0x0000000040178746 0x2 + .text.ieee80211_is_support_rate + 0x0000000040178748 0x64 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x0000000040178748 ieee80211_is_support_rate + *fill* 0x00000000401787ac 0x0 + *fill* 0x00000000401787ac 0x0 + .text.ieee80211_is_lr_only + 0x00000000401787ac 0x14 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x00000000401787ac ieee80211_is_lr_only + .text.ieee80211_setup_lr_rates + 0x00000000401787c0 0x94 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x00000000401787c0 ieee80211_setup_lr_rates + *fill* 0x0000000040178854 0x0 + *fill* 0x0000000040178854 0x0 + *fill* 0x0000000040178854 0x0 + *fill* 0x0000000040178854 0x0 + *fill* 0x0000000040178854 0x0 + *fill* 0x0000000040178854 0x0 + .text.ieee80211_setup_rateset + 0x0000000040178854 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + 0x0000000040178854 ieee80211_setup_rateset + *fill* 0x000000004017885b 0x0 + *fill* 0x000000004017885b 0x0 + *fill* 0x000000004017885b 0x0 + *fill* 0x000000004017885b 0x0 + *fill* 0x000000004017885b 0x0 + *fill* 0x000000004017885b 0x0 + *fill* 0x000000004017885b 0x0 + *fill* 0x000000004017885b 0x0 + *fill* 0x000000004017885b 0x0 + *fill* 0x000000004017885b 0x0 + *fill* 0x000000004017885b 0x0 + *fill* 0x000000004017885b 0x0 + *fill* 0x000000004017885b 0x0 + *fill* 0x000000004017885b 0x0 + *fill* 0x000000004017885b 0x0 + *fill* 0x000000004017885b 0x0 + *fill* 0x000000004017885b 0x0 + *fill* 0x000000004017885b 0x0 + *fill* 0x000000004017885b 0x0 + *fill* 0x000000004017885b 0x0 + *fill* 0x000000004017885b 0x0 + *fill* 0x000000004017885b 0x0 + *fill* 0x000000004017885b 0x0 + *fill* 0x000000004017885b 0x0 + *fill* 0x000000004017885b 0x0 + *fill* 0x000000004017885b 0x0 + *fill* 0x000000004017885b 0x1 + .text.adc2_wifi_acquire + 0x000000004017885c 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x000000004017885c adc2_wifi_acquire + *fill* 0x0000000040178863 0x1 + .text.adc2_wifi_release + 0x0000000040178864 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x0000000040178864 adc2_wifi_release + *fill* 0x000000004017886b 0x1 + .text.wifi_station_get_reconnect_policy + 0x000000004017886c 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + 0x000000004017886c wifi_station_get_reconnect_policy + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x0 + *fill* 0x0000000040178873 0x1 + .text.ieee80211_set_shortslottime + 0x0000000040178874 0x1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x0000000040178874 ieee80211_set_shortslottime + *fill* 0x000000004017888f 0x0 + *fill* 0x000000004017888f 0x0 + *fill* 0x000000004017888f 0x1 + .text.ieee80211_find_ie + 0x0000000040178890 0x42 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + 0x0000000040178890 ieee80211_find_ie + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x0 + *fill* 0x00000000401788d2 0x2 + .text.cnx_rc_update_age + 0x00000000401788d4 0x15 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + 0x00000000401788d4 cnx_rc_update_age + *fill* 0x00000000401788e9 0x0 + *fill* 0x00000000401788e9 0x0 + *fill* 0x00000000401788e9 0x0 + *fill* 0x00000000401788e9 0x0 + *fill* 0x00000000401788e9 0x0 + *fill* 0x00000000401788e9 0x0 + *fill* 0x00000000401788e9 0x0 + *fill* 0x00000000401788e9 0x0 + *fill* 0x00000000401788e9 0x0 + *fill* 0x00000000401788e9 0x3 + .text.send_inval + 0x00000000401788ec 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + *fill* 0x00000000401788f3 0x1 + .text.recv_inval + 0x00000000401788f4 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x0 + *fill* 0x00000000401788fb 0x1 + .text.wifi_apb80m_request + 0x00000000401788fc 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x00000000401788fc wifi_apb80m_request + *fill* 0x0000000040178901 0x3 + .text.wifi_apb80m_release + 0x0000000040178904 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x0000000040178904 wifi_apb80m_release + *fill* 0x0000000040178909 0x0 + *fill* 0x0000000040178909 0x0 + *fill* 0x0000000040178909 0x0 + *fill* 0x0000000040178909 0x0 + *fill* 0x0000000040178909 0x0 + *fill* 0x0000000040178909 0x0 + *fill* 0x0000000040178909 0x0 + *fill* 0x0000000040178909 0x0 + *fill* 0x0000000040178909 0x0 + *fill* 0x0000000040178909 0x0 + *fill* 0x0000000040178909 0x0 + *fill* 0x0000000040178909 0x0 + *fill* 0x0000000040178909 0x0 + *fill* 0x0000000040178909 0x0 + *fill* 0x0000000040178909 0x0 + *fill* 0x0000000040178909 0x0 + *fill* 0x0000000040178909 0x0 + *fill* 0x0000000040178909 0x0 + *fill* 0x0000000040178909 0x0 + *fill* 0x0000000040178909 0x0 + *fill* 0x0000000040178909 0x0 + *fill* 0x0000000040178909 0x3 + .text.pm_force_scan_unlock + 0x000000004017890c 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + 0x000000004017890c pm_force_scan_unlock + *fill* 0x0000000040178911 0x3 + .text.fpm_allow_tx + 0x0000000040178914 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_for_bcn_only_mode.o) + 0x0000000040178914 fpm_allow_tx + *fill* 0x000000004017891b 0x1 + .text.fpm_do_wakeup + 0x000000004017891c 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_for_bcn_only_mode.o) + 0x000000004017891c fpm_do_wakeup + *fill* 0x0000000040178921 0x0 + *fill* 0x0000000040178921 0x0 + *fill* 0x0000000040178921 0x0 + *fill* 0x0000000040178921 0x0 + *fill* 0x0000000040178921 0x0 + *fill* 0x0000000040178921 0x0 + *fill* 0x0000000040178921 0x0 + *fill* 0x0000000040178921 0x0 + *fill* 0x0000000040178921 0x0 + *fill* 0x0000000040178921 0x0 + *fill* 0x0000000040178921 0x0 + *fill* 0x0000000040178921 0x0 + *fill* 0x0000000040178921 0x0 + *fill* 0x0000000040178921 0x0 + *fill* 0x0000000040178921 0x0 + *fill* 0x0000000040178921 0x0 + *fill* 0x0000000040178921 0x0 + *fill* 0x0000000040178921 0x0 + *fill* 0x0000000040178921 0x0 + *fill* 0x0000000040178921 0x0 + *fill* 0x0000000040178921 0x0 + *fill* 0x0000000040178921 0x0 + *fill* 0x0000000040178921 0x0 + *fill* 0x0000000040178921 0x0 + *fill* 0x0000000040178921 0x0 + *fill* 0x0000000040178921 0x0 + *fill* 0x0000000040178921 0x0 + *fill* 0x0000000040178921 0x0 + *fill* 0x0000000040178921 0x3 + .text.pp_timer_dream + 0x0000000040178924 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + *fill* 0x000000004017892b 0x0 + *fill* 0x000000004017892b 0x0 + *fill* 0x000000004017892b 0x0 + *fill* 0x000000004017892b 0x0 + *fill* 0x000000004017892b 0x0 + *fill* 0x000000004017892b 0x0 + *fill* 0x000000004017892b 0x1 + .text.RC_SetBasicRate + 0x000000004017892c 0x7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + 0x000000004017892c RC_SetBasicRate + *fill* 0x0000000040178933 0x0 + *fill* 0x0000000040178933 0x0 + *fill* 0x0000000040178933 0x1 + .text.rcLoRaRate2SchedIdx + 0x0000000040178934 0x1a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x0000000040178934 rcLoRaRate2SchedIdx + *fill* 0x000000004017894e 0x0 + *fill* 0x000000004017894e 0x0 + *fill* 0x000000004017894e 0x0 + *fill* 0x000000004017894e 0x0 + *fill* 0x000000004017894e 0x0 + *fill* 0x000000004017894e 0x2 + .text.rcUpdateRxDone + 0x0000000040178950 0x78 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + 0x0000000040178950 rcUpdateRxDone + *fill* 0x00000000401789c8 0x0 + *fill* 0x00000000401789c8 0x0 + *fill* 0x00000000401789c8 0x0 + *fill* 0x00000000401789c8 0x0 + *fill* 0x00000000401789c8 0x0 + *fill* 0x00000000401789c8 0x0 + *fill* 0x00000000401789c8 0x0 + *fill* 0x00000000401789c8 0x0 + *fill* 0x00000000401789c8 0x0 + *fill* 0x00000000401789c8 0x0 + *fill* 0x00000000401789c8 0x0 + *fill* 0x00000000401789c8 0x0 + *fill* 0x00000000401789c8 0x0 + *fill* 0x00000000401789c8 0x0 + *fill* 0x00000000401789c8 0x0 + *fill* 0x00000000401789c8 0x0 + .text.wDev_SetAuthed + 0x00000000401789c8 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + 0x00000000401789c8 wDev_SetAuthed + *fill* 0x00000000401789cd 0x0 + *fill* 0x00000000401789cd 0x0 + *fill* 0x00000000401789cd 0x0 + *fill* 0x00000000401789cd 0x0 + *fill* 0x00000000401789cd 0x0 + *fill* 0x00000000401789cd 0x0 + *fill* 0x00000000401789cd 0x0 + *fill* 0x00000000401789cd 0x0 + *fill* 0x00000000401789cd 0x0 + *fill* 0x00000000401789cd 0x0 + *fill* 0x00000000401789cd 0x0 + *fill* 0x00000000401789cd 0x0 + *fill* 0x00000000401789cd 0x0 + *fill* 0x00000000401789cd 0x0 + *fill* 0x00000000401789cd 0x0 + *fill* 0x00000000401789cd 0x0 + *fill* 0x00000000401789cd 0x0 + *fill* 0x00000000401789cd 0x0 + *fill* 0x00000000401789cd 0x0 + *fill* 0x00000000401789cd 0x0 + *fill* 0x00000000401789cd 0x0 + *fill* 0x00000000401789cd 0x0 + *fill* 0x00000000401789cd 0x0 + *fill* 0x00000000401789cd 0x0 + *fill* 0x00000000401789cd 0x3 + .text.ram_rfpll_reset + 0x00000000401789d0 0x5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x00000000401789d0 ram_rfpll_reset + *fill* 0x00000000401789d5 0x0 + *fill* 0x00000000401789d5 0x0 + *fill* 0x00000000401789d5 0x0 + *fill* 0x00000000401789d5 0x0 + *fill* 0x00000000401789d5 0x0 + *fill* 0x00000000401789d5 0x0 + *fill* 0x00000000401789d5 0x0 + *fill* 0x00000000401789d5 0x0 + *fill* 0x00000000401789d5 0x0 + *fill* 0x00000000401789d5 0x0 + *fill* 0x00000000401789d5 0x0 + *fill* 0x00000000401789d5 0x0 + *fill* 0x00000000401789d5 0x0 + *fill* 0x00000000401789d5 0x0 + *fill* 0x00000000401789d5 0x0 + *fill* 0x00000000401789d5 0x0 + *fill* 0x00000000401789d5 0x0 + *fill* 0x00000000401789d5 0x0 + *fill* 0x00000000401789d5 0x0 + *fill* 0x00000000401789d5 0x0 + *fill* 0x00000000401789d5 0x0 + *fill* 0x00000000401789d5 0x0 + *fill* 0x00000000401789d5 0x0 + *fill* 0x00000000401789d5 0x0 + *fill* 0x00000000401789d5 0x0 + *fill* 0x00000000401789d5 0x0 + *fill* 0x00000000401789d5 0x0 + *fill* 0x00000000401789d5 0x3 + .text.spur_cal$part$5 + 0x00000000401789d8 0x4a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + *fill* 0x0000000040178a22 0x0 + *fill* 0x0000000040178a22 0x0 + *fill* 0x0000000040178a22 0x0 + *fill* 0x0000000040178a22 0x0 + *fill* 0x0000000040178a22 0x0 + *fill* 0x0000000040178a22 0x0 + *fill* 0x0000000040178a22 0x0 + *fill* 0x0000000040178a22 0x2 + .text.get_bbgain_db + 0x0000000040178a24 0x26 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x0000000040178a24 get_bbgain_db + *fill* 0x0000000040178a4a 0x0 + *fill* 0x0000000040178a4a 0x0 + *fill* 0x0000000040178a4a 0x0 + *fill* 0x0000000040178a4a 0x0 + *fill* 0x0000000040178a4a 0x0 + *fill* 0x0000000040178a4a 0x0 + *fill* 0x0000000040178a4a 0x0 + *fill* 0x0000000040178a4a 0x0 + *fill* 0x0000000040178a4a 0x0 + *fill* 0x0000000040178a4a 0x0 + *fill* 0x0000000040178a4a 0x0 + *fill* 0x0000000040178a4a 0x0 + *fill* 0x0000000040178a4a 0x2 + .text.phy_byte_to_word + 0x0000000040178a4c 0x23 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x0000000040178a4c phy_byte_to_word + *fill* 0x0000000040178a6f 0x0 + *fill* 0x0000000040178a6f 0x0 + *fill* 0x0000000040178a6f 0x1 + .text.phy_rfcal_data_check + 0x0000000040178a70 0xc7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x0000000040178a70 phy_rfcal_data_check + *fill* 0x0000000040178b37 0x0 + *fill* 0x0000000040178b37 0x0 + *fill* 0x0000000040178b37 0x0 + *fill* 0x0000000040178b37 0x0 + *fill* 0x0000000040178b37 0x0 + *fill* 0x0000000040178b37 0x0 + *fill* 0x0000000040178b37 0x0 + *fill* 0x0000000040178b37 0x0 + *fill* 0x0000000040178b37 0x0 + *fill* 0x0000000040178b37 0x0 + *fill* 0x0000000040178b37 0x0 + *fill* 0x0000000040178b37 0x0 + *fill* 0x0000000040178b37 0x0 + *fill* 0x0000000040178b37 0x0 + *fill* 0x0000000040178b37 0x0 + *fill* 0x0000000040178b37 0x0 + *fill* 0x0000000040178b37 0x0 + *fill* 0x0000000040178b37 0x0 + *fill* 0x0000000040178b37 0x0 + *fill* 0x0000000040178b37 0x0 + *fill* 0x0000000040178b37 0x0 + *fill* 0x0000000040178b37 0x0 + *fill* 0x0000000040178b37 0x0 + *fill* 0x0000000040178b37 0x0 + *fill* 0x0000000040178b37 0x0 + *fill* 0x0000000040178b37 0x0 + *fill* 0x0000000040178b37 0x0 + *fill* 0x0000000040178b37 0x0 + *fill* 0x0000000040178b37 0x0 + *fill* 0x0000000040178b37 0x0 + *fill* 0x0000000040178b37 0x0 + *fill* 0x0000000040178b37 0x0 + *fill* 0x0000000040178b37 0x0 + *fill* 0x0000000040178b37 0x1 + .text.http_message_needs_eof + 0x0000000040178b38 0x72 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x0000000040178b38 http_message_needs_eof + *fill* 0x0000000040178baa 0x0 + *fill* 0x0000000040178baa 0x0 + *fill* 0x0000000040178baa 0x0 + *fill* 0x0000000040178baa 0x0 + *fill* 0x0000000040178baa 0x0 + *fill* 0x0000000040178baa 0x0 + *fill* 0x0000000040178baa 0x0 + *fill* 0x0000000040178baa 0x0 + *fill* 0x0000000040178baa 0x0 + *fill* 0x0000000040178baa 0x0 + *fill* 0x0000000040178baa 0x0 + *fill* 0x0000000040178baa 0x0 + *fill* 0x0000000040178baa 0x0 + *fill* 0x0000000040178baa 0x0 + *fill* 0x0000000040178baa 0x0 + *fill* 0x0000000040178baa 0x0 + *fill* 0x0000000040178baa 0x0 + *fill* 0x0000000040178baa 0x0 + *fill* 0x0000000040178baa 0x0 + *fill* 0x0000000040178baa 0x0 + *fill* 0x0000000040178baa 0x0 + *fill* 0x0000000040178baa 0x0 + *fill* 0x0000000040178baa 0x2 + .text.ssl_set_timer + 0x0000000040178bac 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x0000000040178bc2 0x2 + .text.ssl_check_timer + 0x0000000040178bc4 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_double_retransmit_timeout + 0x0000000040178be4 0x45 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x0000000040178c29 0x3 + .text.ssl_reset_retransmit_timeout + 0x0000000040178c2c 0xf esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x0000000040178c3b 0x0 + *fill* 0x0000000040178c3b 0x1 + .text.ssl_read_memory + 0x0000000040178c3c 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_get_hs_frag_len + 0x0000000040178c5c 0x1d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x0000000040178c79 0x3 + .text.ssl_get_hs_frag_off + 0x0000000040178c7c 0x1d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x0000000040178c99 0x3 + .text.ssl_bitmask_check + 0x0000000040178c9c 0x44 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_get_reassembly_buffer_size + 0x0000000040178ce0 0x1c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_get_hs_total_len + 0x0000000040178cfc 0x1d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x0000000040178d19 0x0 + *fill* 0x0000000040178d19 0x0 + *fill* 0x0000000040178d19 0x3 + .text.ssl_next_record_is_in_datagram + 0x0000000040178d1c 0x15 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x0000000040178d31 0x3 + .text.ssl_record_is_in_progress + 0x0000000040178d34 0xc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_update_out_pointers + 0x0000000040178d40 0x54 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .text.ssl_update_in_pointers + 0x0000000040178d94 0x54 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x0000000040178de8 0x0 + .text.ssl_get_current_mtu + 0x0000000040178de8 0x3e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + *fill* 0x0000000040178e26 0x0 + *fill* 0x0000000040178e26 0x0 + *fill* 0x0000000040178e26 0x0 + *fill* 0x0000000040178e26 0x0 + *fill* 0x0000000040178e26 0x0 + *fill* 0x0000000040178e26 0x0 + *fill* 0x0000000040178e26 0x0 + *fill* 0x0000000040178e26 0x0 + *fill* 0x0000000040178e26 0x0 + *fill* 0x0000000040178e26 0x0 + *fill* 0x0000000040178e26 0x0 + *fill* 0x0000000040178e26 0x0 + *fill* 0x0000000040178e26 0x0 + *fill* 0x0000000040178e26 0x0 + *fill* 0x0000000040178e26 0x0 + *fill* 0x0000000040178e26 0x0 + *fill* 0x0000000040178e26 0x0 + *fill* 0x0000000040178e26 0x0 + *fill* 0x0000000040178e26 0x0 + *fill* 0x0000000040178e26 0x0 + *fill* 0x0000000040178e26 0x0 + *fill* 0x0000000040178e26 0x0 + *fill* 0x0000000040178e26 0x0 + *fill* 0x0000000040178e26 0x0 + *fill* 0x0000000040178e26 0x2 + .text.mbedtls_ssl_dtls_replay_check + 0x0000000040178e28 0xaa esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040178e28 mbedtls_ssl_dtls_replay_check + *fill* 0x0000000040178ed2 0x0 + *fill* 0x0000000040178ed2 0x0 + *fill* 0x0000000040178ed2 0x0 + *fill* 0x0000000040178ed2 0x0 + *fill* 0x0000000040178ed2 0x2 + .text.mbedtls_ssl_conf_endpoint + 0x0000000040178ed4 0x16 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040178ed4 mbedtls_ssl_conf_endpoint + *fill* 0x0000000040178eea 0x2 + .text.mbedtls_ssl_conf_transport + 0x0000000040178eec 0x19 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040178eec mbedtls_ssl_conf_transport + *fill* 0x0000000040178f05 0x3 + .text.mbedtls_ssl_conf_authmode + 0x0000000040178f08 0x19 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040178f08 mbedtls_ssl_conf_authmode + *fill* 0x0000000040178f21 0x3 + .text.mbedtls_ssl_conf_rng + 0x0000000040178f24 0x9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040178f24 mbedtls_ssl_conf_rng + *fill* 0x0000000040178f2d 0x3 + .text.mbedtls_ssl_set_bio + 0x0000000040178f30 0xd esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040178f30 mbedtls_ssl_set_bio + *fill* 0x0000000040178f3d 0x3 + .text.mbedtls_ssl_conf_ca_chain + 0x0000000040178f40 0xb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040178f40 mbedtls_ssl_conf_ca_chain + *fill* 0x0000000040178f4b 0x0 + *fill* 0x0000000040178f4b 0x0 + *fill* 0x0000000040178f4b 0x1 + .text.mbedtls_ssl_get_bytes_avail + 0x0000000040178f4c 0x12 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040178f4c mbedtls_ssl_get_bytes_avail + *fill* 0x0000000040178f5e 0x0 + *fill* 0x0000000040178f5e 0x0 + *fill* 0x0000000040178f5e 0x0 + *fill* 0x0000000040178f5e 0x0 + *fill* 0x0000000040178f5e 0x0 + *fill* 0x0000000040178f5e 0x0 + *fill* 0x0000000040178f5e 0x0 + *fill* 0x0000000040178f5e 0x0 + *fill* 0x0000000040178f5e 0x0 + *fill* 0x0000000040178f5e 0x0 + *fill* 0x0000000040178f5e 0x2 + .text.mbedtls_ssl_sig_from_pk_alg + 0x0000000040178f60 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040178f60 mbedtls_ssl_sig_from_pk_alg + .text.mbedtls_ssl_pk_alg_from_sig + 0x0000000040178f80 0x1a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040178f80 mbedtls_ssl_pk_alg_from_sig + *fill* 0x0000000040178f9a 0x2 + .text.mbedtls_ssl_sig_hash_set_find + 0x0000000040178f9c 0x18 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040178f9c mbedtls_ssl_sig_hash_set_find + .text.mbedtls_ssl_sig_hash_set_add + 0x0000000040178fb4 0x1e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040178fb4 mbedtls_ssl_sig_hash_set_add + *fill* 0x0000000040178fd2 0x2 + .text.mbedtls_ssl_sig_hash_set_const_hash + 0x0000000040178fd4 0x9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040178fd4 mbedtls_ssl_sig_hash_set_const_hash + *fill* 0x0000000040178fdd 0x0 + *fill* 0x0000000040178fdd 0x0 + *fill* 0x0000000040178fdd 0x0 + *fill* 0x0000000040178fdd 0x0 + *fill* 0x0000000040178fdd 0x0 + *fill* 0x0000000040178fdd 0x0 + *fill* 0x0000000040178fdd 0x3 + .text.mbedtls_ssl_check_curve + 0x0000000040178fe0 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040178fe0 mbedtls_ssl_check_curve + *fill* 0x0000000040179005 0x3 + .text.mbedtls_ssl_check_sig_hash + 0x0000000040179008 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040179008 mbedtls_ssl_check_sig_hash + *fill* 0x000000004017902d 0x0 + *fill* 0x000000004017902d 0x3 + .text.mbedtls_ssl_write_version + 0x0000000040179030 0x2b esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x0000000040179030 mbedtls_ssl_write_version + *fill* 0x000000004017905b 0x0 + *fill* 0x000000004017905b 0x0 + *fill* 0x000000004017905b 0x0 + *fill* 0x000000004017905b 0x0 + *fill* 0x000000004017905b 0x0 + *fill* 0x000000004017905b 0x0 + *fill* 0x000000004017905b 0x0 + *fill* 0x000000004017905b 0x0 + *fill* 0x000000004017905b 0x0 + *fill* 0x000000004017905b 0x0 + *fill* 0x000000004017905b 0x0 + *fill* 0x000000004017905b 0x0 + *fill* 0x000000004017905b 0x0 + *fill* 0x000000004017905b 0x0 + *fill* 0x000000004017905b 0x1 + .text.mbedtls_ssl_read_version + 0x000000004017905c 0x32 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x000000004017905c mbedtls_ssl_read_version + *fill* 0x000000004017908e 0x0 + *fill* 0x000000004017908e 0x0 + *fill* 0x000000004017908e 0x0 + *fill* 0x000000004017908e 0x0 + *fill* 0x000000004017908e 0x0 + *fill* 0x000000004017908e 0x0 + *fill* 0x000000004017908e 0x0 + *fill* 0x000000004017908e 0x0 + *fill* 0x000000004017908e 0x0 + *fill* 0x000000004017908e 0x0 + *fill* 0x000000004017908e 0x2 + .text.ciphersuite_is_removed + 0x0000000040179090 0x1e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + *fill* 0x00000000401790ae 0x0 + *fill* 0x00000000401790ae 0x0 + *fill* 0x00000000401790ae 0x0 + *fill* 0x00000000401790ae 0x2 + .text.mbedtls_ssl_get_ciphersuite_sig_alg + 0x00000000401790b0 0x20 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0x00000000401790b0 mbedtls_ssl_get_ciphersuite_sig_alg + .text.mbedtls_ssl_ciphersuite_uses_ec + 0x00000000401790d0 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0x00000000401790d0 mbedtls_ssl_ciphersuite_uses_ec + *fill* 0x00000000401790f5 0x3 + .text.mbedtls_ssl_ciphersuite_uses_psk + 0x00000000401790f8 0x14 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0x00000000401790f8 mbedtls_ssl_ciphersuite_uses_psk + .text.ssl_write_supported_point_formats_ext + 0x000000004017910c 0x36 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + *fill* 0x0000000040179142 0x2 + .text.ssl_write_max_fragment_length_ext + 0x0000000040179144 0x42 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + *fill* 0x0000000040179186 0x2 + .text.ssl_write_truncated_hmac_ext + 0x0000000040179188 0x34 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + .text.ssl_write_encrypt_then_mac_ext + 0x00000000401791bc 0x3a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + *fill* 0x00000000401791f6 0x2 + .text.ssl_write_extended_ms_ext + 0x00000000401791f8 0x3a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + *fill* 0x0000000040179232 0x2 + .text.ssl_validate_ciphersuite + 0x0000000040179234 0x3c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + *fill* 0x0000000040179270 0x0 + *fill* 0x0000000040179270 0x0 + *fill* 0x0000000040179270 0x0 + *fill* 0x0000000040179270 0x0 + *fill* 0x0000000040179270 0x0 + *fill* 0x0000000040179270 0x0 + *fill* 0x0000000040179270 0x0 + *fill* 0x0000000040179270 0x0 + *fill* 0x0000000040179270 0x0 + *fill* 0x0000000040179270 0x0 + *fill* 0x0000000040179270 0x0 + *fill* 0x0000000040179270 0x0 + *fill* 0x0000000040179270 0x0 + *fill* 0x0000000040179270 0x0 + *fill* 0x0000000040179270 0x0 + *fill* 0x0000000040179270 0x0 + *fill* 0x0000000040179270 0x0 + *fill* 0x0000000040179270 0x0 + *fill* 0x0000000040179270 0x0 + *fill* 0x0000000040179270 0x0 + .text.ssl_check_key_curve + 0x0000000040179270 0x25 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + *fill* 0x0000000040179295 0x3 + .text.ssl_write_truncated_hmac_ext + 0x0000000040179298 0x27 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + *fill* 0x00000000401792bf 0x1 + .text.ssl_write_extended_ms_ext + 0x00000000401792c0 0x2e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + *fill* 0x00000000401792ee 0x2 + .text.ssl_write_session_ticket_ext + 0x00000000401792f0 0x2a esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + *fill* 0x000000004017931a 0x2 + .text.ssl_write_max_fragment_length_ext + 0x000000004017931c 0x2f esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + *fill* 0x000000004017934b 0x1 + .text.ssl_write_supported_point_formats_ext + 0x000000004017934c 0x35 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + *fill* 0x0000000040179381 0x0 + *fill* 0x0000000040179381 0x0 + *fill* 0x0000000040179381 0x0 + *fill* 0x0000000040179381 0x0 + *fill* 0x0000000040179381 0x0 + *fill* 0x0000000040179381 0x0 + *fill* 0x0000000040179381 0x0 + *fill* 0x0000000040179381 0x0 + *fill* 0x0000000040179381 0x0 + *fill* 0x0000000040179381 0x0 + *fill* 0x0000000040179381 0x0 + *fill* 0x0000000040179381 0x0 + *fill* 0x0000000040179381 0x0 + *fill* 0x0000000040179381 0x0 + *fill* 0x0000000040179381 0x0 + *fill* 0x0000000040179381 0x0 + *fill* 0x0000000040179381 0x0 + *fill* 0x0000000040179381 0x0 + *fill* 0x0000000040179381 0x0 + *fill* 0x0000000040179381 0x0 + *fill* 0x0000000040179381 0x0 + *fill* 0x0000000040179381 0x0 + *fill* 0x0000000040179381 0x0 + *fill* 0x0000000040179381 0x0 + *fill* 0x0000000040179381 0x0 + *fill* 0x0000000040179381 0x3 + .text.mbedtls_ecdh_grp_id + 0x0000000040179384 0x7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + *fill* 0x000000004017938b 0x0 + *fill* 0x000000004017938b 0x0 + *fill* 0x000000004017938b 0x0 + *fill* 0x000000004017938b 0x0 + *fill* 0x000000004017938b 0x0 + *fill* 0x000000004017938b 0x0 + *fill* 0x000000004017938b 0x0 + *fill* 0x000000004017938b 0x0 + *fill* 0x000000004017938b 0x0 + *fill* 0x000000004017938b 0x0 + *fill* 0x000000004017938b 0x0 + *fill* 0x000000004017938b 0x0 + *fill* 0x000000004017938b 0x0 + *fill* 0x000000004017938b 0x0 + *fill* 0x000000004017938b 0x0 + *fill* 0x000000004017938b 0x0 + *fill* 0x000000004017938b 0x0 + *fill* 0x000000004017938b 0x0 + *fill* 0x000000004017938b 0x0 + *fill* 0x000000004017938b 0x0 + *fill* 0x000000004017938b 0x0 + *fill* 0x000000004017938b 0x0 + *fill* 0x000000004017938b 0x0 + *fill* 0x000000004017938b 0x0 + *fill* 0x000000004017938b 0x0 + *fill* 0x000000004017938b 0x0 + *fill* 0x000000004017938b 0x0 + *fill* 0x000000004017938b 0x0 + *fill* 0x000000004017938b 0x0 + *fill* 0x000000004017938b 0x0 + *fill* 0x000000004017938b 0x0 + *fill* 0x000000004017938b 0x0 + *fill* 0x000000004017938b 0x1 + .text._ZL12read_uleb128PKhPm + 0x000000004017938c 0x25 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + *fill* 0x00000000401793b1 0x3 + .text._ZL12read_sleb128PKhPl + 0x00000000401793b4 0x3c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + .text._ZL16get_adjusted_ptrPKSt9type_infoS1_PPv + 0x00000000401793f0 0x34 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + *fill* 0x0000000040179424 0x0 + *fill* 0x0000000040179424 0x0 + *fill* 0x0000000040179424 0x0 + *fill* 0x0000000040179424 0x0 + *fill* 0x0000000040179424 0x0 + *fill* 0x0000000040179424 0x0 + *fill* 0x0000000040179424 0x0 + *fill* 0x0000000040179424 0x0 + .text._ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv + 0x0000000040179424 0x32 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x0000000040179424 _ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv + *fill* 0x0000000040179456 0x2 + .text._ZNK10__cxxabiv117__class_type_info20__do_find_public_srcEiPKvPKS0_S2_ + 0x0000000040179458 0x11 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x0000000040179458 _ZNK10__cxxabiv117__class_type_info20__do_find_public_srcEiPKvPKS0_S2_ + *fill* 0x0000000040179469 0x0 + *fill* 0x0000000040179469 0x0 + *fill* 0x0000000040179469 0x0 + *fill* 0x0000000040179469 0x3 + .text._ZNSt9type_infoD2Ev + 0x000000004017946c 0x5 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + 0x000000004017946c _ZNSt9type_infoD1Ev + 0x000000004017946c _ZNSt9type_infoD2Ev + *fill* 0x0000000040179471 0x3 + .text._ZNKSt9type_info14__is_pointer_pEv + 0x0000000040179474 0x7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + 0x0000000040179474 _ZNKSt9type_info14__is_pointer_pEv + 0x0000000040179474 _ZNKSt9type_info15__is_function_pEv + *fill* 0x000000004017947b 0x0 + *fill* 0x000000004017947b 0x0 + *fill* 0x000000004017947b 0x0 + *fill* 0x000000004017947b 0x0 + *fill* 0x000000004017947b 0x0 + *fill* 0x000000004017947b 0x0 + *fill* 0x000000004017947b 0x0 + *fill* 0x000000004017947b 0x0 + *fill* 0x000000004017947b 0x0 + *fill* 0x000000004017947b 0x0 + *fill* 0x000000004017947b 0x0 + *fill* 0x000000004017947b 0x0 + *fill* 0x000000004017947b 0x0 + *fill* 0x000000004017947b 0x0 + *fill* 0x000000004017947b 0x0 + *fill* 0x000000004017947b 0x0 + *fill* 0x000000004017947b 0x0 + *fill* 0x000000004017947b 0x0 + *fill* 0x000000004017947b 0x0 + *fill* 0x000000004017947b 0x0 + *fill* 0x000000004017947b 0x0 + *fill* 0x000000004017947b 0x0 + *fill* 0x000000004017947b 0x0 + *fill* 0x000000004017947b 0x0 + *fill* 0x000000004017947b 0x0 + *fill* 0x000000004017947b 0x0 + *fill* 0x000000004017947b 0x0 + *fill* 0x000000004017947b 0x0 + *fill* 0x000000004017947b 0x0 + *fill* 0x000000004017947b 0x0 + *liblog.a:log_freertos.*(.literal.esp_log_system_timestamp .text.esp_log_system_timestamp) + *liblog.a:log.*(.literal.heap_bubble_down .literal.esp_log_set_vprintf .literal.esp_log_level_set .text.heap_bubble_down .text.esp_log_set_vprintf .text.esp_log_level_set) + *fill* 0x000000004017947b 0x1 + .text.heap_bubble_down + 0x000000004017947c 0x5a esp-idf/log/liblog.a(log.c.obj) + *fill* 0x00000000401794d6 0x2 + .text.esp_log_level_set + 0x00000000401794d8 0x128 esp-idf/log/liblog.a(log.c.obj) + 0x12c (size before relaxing) + 0x00000000401794d8 esp_log_level_set + *fill* 0x0000000040179600 0x0 + *fill* 0x0000000040179600 0x0 + *libesp_event.a:esp_event.*(.literal.handler_instances_remove_all .literal.base_node_remove_all_handler .literal.loop_node_remove_all_handler .literal.handler_instances_add .literal.base_node_add_handler .literal.loop_node_add_handler .literal.handler_instances_remove .literal.base_node_remove_handler .literal.loop_node_remove_handler .literal.esp_event_loop_create .literal.esp_event_loop_run .literal.esp_event_loop_run_task .literal.esp_event_loop_delete .literal.esp_event_handler_register_with_internal .literal.esp_event_handler_register_with .literal.esp_event_handler_instance_register_with .literal.esp_event_handler_unregister_with_internal .literal.esp_event_handler_unregister_with .literal.esp_event_handler_instance_unregister_with .literal.esp_event_post_to .text.handler_execute .text.handler_instances_remove_all .text.base_node_remove_all_handler .text.loop_node_remove_all_handler .text.handler_instances_add .text.base_node_add_handler .text.loop_node_add_handler .text.handler_instances_remove .text.base_node_remove_handler .text.loop_node_remove_handler .text.esp_event_loop_create .text.esp_event_loop_run .text.esp_event_loop_run_task .text.esp_event_loop_delete .text.esp_event_handler_register_with_internal .text.esp_event_handler_register_with .text.esp_event_handler_instance_register_with .text.esp_event_handler_unregister_with_internal .text.esp_event_handler_unregister_with .text.esp_event_handler_instance_unregister_with .text.esp_event_post_to .text.esp_event_dump) + .text.handler_instances_add + 0x0000000040179600 0xa6 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x00000000401796a6 0x2 + .text.base_node_add_handler + 0x00000000401796a8 0xd2 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000004017977a 0x2 + .text.loop_node_add_handler + 0x000000004017977c 0xf7 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x0000000040179873 0x1 + .text.handler_instances_remove + 0x0000000040179874 0x85 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x00000000401798f9 0x3 + .text.base_node_remove_handler + 0x00000000401798fc 0x71 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000004017996d 0x3 + .text.loop_node_remove_handler + 0x0000000040179970 0x7b esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x00000000401799eb 0x1 + .text.esp_event_loop_create + 0x00000000401799ec 0x114 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x118 (size before relaxing) + 0x00000000401799ec esp_event_loop_create + .text.esp_event_loop_run + 0x0000000040179b00 0x13e esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x142 (size before relaxing) + 0x0000000040179b00 esp_event_loop_run + *fill* 0x0000000040179c3e 0x2 + .text.esp_event_loop_run_task + 0x0000000040179c40 0x34 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .text.esp_event_handler_register_with_internal + 0x0000000040179c74 0x138 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x13c (size before relaxing) + 0x0000000040179c74 esp_event_handler_register_with_internal + .text.esp_event_handler_register_with + 0x0000000040179dac 0x1d esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x0000000040179dac esp_event_handler_register_with + *fill* 0x0000000040179dc9 0x3 + .text.esp_event_handler_unregister_with_internal + 0x0000000040179dcc 0xda esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0xde (size before relaxing) + 0x0000000040179dcc esp_event_handler_unregister_with_internal + *fill* 0x0000000040179ea6 0x2 + .text.esp_event_handler_unregister_with + 0x0000000040179ea8 0x1d esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x0000000040179ea8 esp_event_handler_unregister_with + *fill* 0x0000000040179ec5 0x3 + .text.esp_event_post_to + 0x0000000040179ec8 0x122 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x126 (size before relaxing) + 0x0000000040179ec8 esp_event_post_to + *fill* 0x0000000040179fea 0x2 + .text.handler_execute + 0x0000000040179fec 0x32 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + *fill* 0x000000004017a01e 0x0 + *fill* 0x000000004017a01e 0x0 + *fill* 0x000000004017a01e 0x0 + *fill* 0x000000004017a01e 0x0 + *fill* 0x000000004017a01e 0x0 + *fill* 0x000000004017a01e 0x0 + *fill* 0x000000004017a01e 0x0 + *fill* 0x000000004017a01e 0x0 + *fill* 0x000000004017a01e 0x0 + *fill* 0x000000004017a01e 0x0 + *fill* 0x000000004017a01e 0x0 + *libesp_event.a:default_event_loop.*(.literal.esp_event_handler_register .literal.esp_event_handler_instance_register .literal.esp_event_handler_unregister .literal.esp_event_handler_instance_unregister .literal.esp_event_post .literal.esp_event_loop_create_default .literal.esp_event_loop_delete_default .literal.esp_event_send_to_default_loop .text.esp_event_handler_register .text.esp_event_handler_instance_register .text.esp_event_handler_unregister .text.esp_event_handler_instance_unregister .text.esp_event_post .text.esp_event_loop_create_default .text.esp_event_loop_delete_default .text.esp_event_send_to_default_loop) + *fill* 0x000000004017a01e 0x2 + .text.esp_event_handler_register + 0x000000004017a020 0x22 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x000000004017a020 esp_event_handler_register + *fill* 0x000000004017a042 0x2 + .text.esp_event_handler_unregister + 0x000000004017a044 0x21 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x000000004017a044 esp_event_handler_unregister + *fill* 0x000000004017a065 0x3 + .text.esp_event_post + 0x000000004017a068 0x25 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x000000004017a068 esp_event_post + *fill* 0x000000004017a08d 0x3 + .text.esp_event_loop_create_default + 0x000000004017a090 0x2a esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x2e (size before relaxing) + 0x000000004017a090 esp_event_loop_create_default + *fill* 0x000000004017a0ba 0x0 + *fill* 0x000000004017a0ba 0x0 + *fill* 0x000000004017a0ba 0x0 + *fill* 0x000000004017a0ba 0x0 + *libsoc.a:uart_hal_iram.*(.literal .literal.* .text .text.* .wifi0iram .wifi0iram.* .wifirxiram .wifirxiram.*) + *fill* 0x000000004017a0ba 0x2 + .text.uart_hal_rxfifo_rst + 0x000000004017a0bc 0x73 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + 0x000000004017a0bc uart_hal_rxfifo_rst + *fill* 0x000000004017a12f 0x1 + .text.uart_hal_tx_break + 0x000000004017a130 0x47 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + 0x000000004017a130 uart_hal_tx_break + *fill* 0x000000004017a177 0x1 + .text.uart_hal_write_txfifo + 0x000000004017a178 0x75 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + 0x78 (size before relaxing) + 0x000000004017a178 uart_hal_write_txfifo + *fill* 0x000000004017a1ed 0x3 + .text.uart_hal_read_rxfifo + 0x000000004017a1f0 0x64 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + 0x000000004017a1f0 uart_hal_read_rxfifo + *fill* 0x000000004017a254 0x0 + *fill* 0x000000004017a254 0x0 + *fill* 0x000000004017a254 0x0 + *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) + *(.irom0.text) + *(.fini.literal) + *(.fini) + .fini 0x000000004017a254 0x3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crti.o + 0x000000004017a254 _fini + *(.gnu.version) + 0x000000004017a257 _text_end = ABSOLUTE (.) + 0x000000004017a257 _etext = . + 0x0000000000000000 _flash_cache_start = ABSOLUTE (0x0) + +.iram0.text_end + 0x000000004009730d 0x3 + 0x0000000040097310 . = ALIGN (0x4) + *fill* 0x000000004009730d 0x3 + 0x0000000040097310 _iram_end = ABSOLUTE (.) + +.dram0.heap_start + 0x000000003ffb9590 0x0 + 0x000000003ffb9590 . = ALIGN (0x8) + 0x000000003ffb9590 _heap_start = ABSOLUTE (.) + 0x0000000000000001 ASSERT (((_iram_text_end - ORIGIN (iram0_0_seg)) <= LENGTH (iram0_0_seg)), IRAM0 segment data does not fit.) + 0x0000000000000001 ASSERT (((_heap_start - ORIGIN (dram0_0_seg)) <= LENGTH (dram0_0_seg)), DRAM segment data does not fit.) + 0x000000003ff40000 PROVIDE (UART0 = 0x3ff40000) + 0x000000003ff42000 PROVIDE (SPI1 = 0x3ff42000) + 0x000000003ff43000 PROVIDE (SPI0 = 0x3ff43000) + 0x000000003ff44000 PROVIDE (GPIO = 0x3ff44000) + [!provide] PROVIDE (SIGMADELTA = 0x3ff44f00) + 0x000000003ff48000 PROVIDE (RTCCNTL = 0x3ff48000) + 0x000000003ff48400 PROVIDE (RTCIO = 0x3ff48400) + 0x000000003ff48800 PROVIDE (SENS = 0x3ff48800) + [!provide] PROVIDE (HINF = 0x3ff4b000) + [!provide] PROVIDE (UHCI1 = 0x3ff4c000) + [!provide] PROVIDE (I2S0 = 0x3ff4f000) + 0x000000003ff50000 PROVIDE (UART1 = 0x3ff50000) + [!provide] PROVIDE (I2C0 = 0x3ff53000) + [!provide] PROVIDE (UHCI0 = 0x3ff54000) + [!provide] PROVIDE (HOST = 0x3ff55000) + [!provide] PROVIDE (RMT = 0x3ff56000) + [!provide] PROVIDE (RMTMEM = 0x3ff56800) + [!provide] PROVIDE (PCNT = 0x3ff57000) + [!provide] PROVIDE (SLC = 0x3ff58000) + [!provide] PROVIDE (LEDC = 0x3ff59000) + [!provide] PROVIDE (MCPWM0 = 0x3ff5e000) + 0x000000003ff5f000 PROVIDE (TIMERG0 = 0x3ff5f000) + 0x000000003ff60000 PROVIDE (TIMERG1 = 0x3ff60000) + 0x000000003ff64000 PROVIDE (SPI2 = 0x3ff64000) + 0x000000003ff65000 PROVIDE (SPI3 = 0x3ff65000) + [!provide] PROVIDE (SYSCON = 0x3ff66000) + [!provide] PROVIDE (I2C1 = 0x3ff67000) + [!provide] PROVIDE (SDMMC = 0x3ff68000) + [!provide] PROVIDE (EMAC_DMA = 0x3ff69000) + [!provide] PROVIDE (EMAC_EXT = 0x3ff69800) + [!provide] PROVIDE (EMAC_MAC = 0x3ff6a000) + [!provide] PROVIDE (CAN = 0x3ff6b000) + [!provide] PROVIDE (MCPWM1 = 0x3ff6c000) + [!provide] PROVIDE (I2S1 = 0x3ff6d000) + 0x000000003ff6e000 PROVIDE (UART2 = 0x3ff6e000) +OUTPUT(bakalarka.elf elf32-xtensa-le) + +.xtensa.info 0x0000000000000000 0x38 + .xtensa.info 0x0000000000000000 0x38 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crti.o + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .xtensa.info 0x0000000000000038 0x0 CMakeFiles/bakalarka.elf.dir/project_elf_src.c.obj + .xtensa.info 0x0000000000000038 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp32/libesp32.a(panic.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp32/libesp32.a(clk.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(timers.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/main/libmain.a(main.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/ca/libca.a(ca.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/ca/libca.a(gen_key.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wifi/libwifi.a(wifi.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/https_server/libhttps_server.a(cacert.pem.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/https_server/libhttps_server.a(prvtkey.pem.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/xtensa/libxtensa.a(debug_helpers_asm.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-cbc.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(def.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(dns.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(ip.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(mem.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(memp.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(netif.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(raw.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(tcp.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(udp.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(etharp.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(icmp.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(ip4.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(ip6.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(mld6.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(nd6.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(sockets.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(err.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/log/liblog.a(log.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp32/libesp32.a(hw_random.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp32/libesp32.a(reset_reason.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/console/libconsole.a(commands.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/console/libconsole.a(split_argv.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/console/libconsole.a(argtable3.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/console/libconsole.a(linenoise.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(select.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_internal-modexp.c.obj) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_for_bcn_only_mode.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(netdb.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(wlanif.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(ethernetif.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(touch_sensor_periph.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_netif/libesp_netif.a(esp_netif_sta_list.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_param.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_hw.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divsf3.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatdisf.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_muldf3.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdf3.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfdi.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfdi.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatsidf.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatdidf.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_extendsfdf2.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(lib2funcs.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(int_asm--set_intclear.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--restore_extra_nw.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--save_extra_nw.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setjmp.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strchr.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncasecmp.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncat.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strnlen.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysclose.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysread.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysstat.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-syswrite.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-time.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-timelocal.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-abs.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-div.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-labs.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sniprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_addsubdf3.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfsi.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfsi.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_truncdfsf2.o) + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + .xtensa.info 0x0000000000000038 0x0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtn.o + +.comment 0x0000000000000000 0xd9 + .comment 0x0000000000000000 0x25 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + 0x26 (size before relaxing) + .comment 0x0000000000000025 0x26 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/pthread/libpthread.a(pthread.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp32/libesp32.a(panic.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp32/libesp32.a(clk.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/freertos/libfreertos.a(port.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/freertos/libfreertos.a(queue.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/freertos/libfreertos.a(timers.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/freertos/libfreertos.a(list.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/vfs/libvfs.a(vfs.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/newlib/libnewlib.a(heap.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/newlib/libnewlib.a(locks.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/newlib/libnewlib.a(time.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .comment 0x0000000000000025 0x26 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .comment 0x0000000000000025 0x26 esp-idf/main/libmain.a(main.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/ca/libca.a(ca.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/ca/libca.a(gen_key.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wifi/libwifi.a(wifi.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .comment 0x0000000000000025 0x26 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .comment 0x0000000000000025 0x26 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .comment 0x0000000000000025 0x26 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .comment 0x0000000000000025 0x26 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .comment 0x0000000000000025 0x26 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .comment 0x0000000000000025 0x26 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .comment 0x0000000000000025 0x26 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .comment 0x0000000000000025 0x26 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(def.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(dns.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(init.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(ip.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(mem.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(memp.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(netif.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(raw.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(tcp.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(udp.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(etharp.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(icmp.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(igmp.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(ip4.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(ip6.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(mld6.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(nd6.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(sockets.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(err.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/log/liblog.a(log.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/log/liblog.a(log_freertos.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/heap/libheap.a(heap_caps.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/heap/libheap.a(multi_heap.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/driver/libdriver.a(gpio.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/driver/libdriver.a(uart.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp32/libesp32.a(hw_random.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp32/libesp32.a(reset_reason.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/console/libconsole.a(commands.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/console/libconsole.a(split_argv.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/console/libconsole.a(argtable3.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/console/libconsole.a(linenoise.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/fatfs/libfatfs.a(ff.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + .comment 0x0000000000000025 0x26 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + .comment 0x0000000000000025 0x26 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + .comment 0x0000000000000025 0x26 esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) + .comment 0x0000000000000025 0x26 esp-idf/newlib/libnewlib.a(select.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .comment 0x0000000000000025 0x3a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + 0x3b (size before relaxing) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_for_bcn_only_mode.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + .comment 0x000000000000005f 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + .comment 0x000000000000005f 0x3a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + 0x3b (size before relaxing) + .comment 0x0000000000000099 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) + .comment 0x0000000000000099 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .comment 0x0000000000000099 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .comment 0x0000000000000099 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .comment 0x0000000000000099 0x26 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .comment 0x0000000000000099 0x26 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .comment 0x0000000000000099 0x26 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .comment 0x0000000000000099 0x26 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .comment 0x0000000000000099 0x26 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .comment 0x0000000000000099 0x26 esp-idf/lwip/liblwip.a(wlanif.c.obj) + .comment 0x0000000000000099 0x26 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .comment 0x0000000000000099 0x26 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .comment 0x0000000000000099 0x26 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .comment 0x0000000000000099 0x26 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .comment 0x0000000000000099 0x26 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + .comment 0x0000000000000099 0x26 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + .comment 0x0000000000000099 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + .comment 0x0000000000000099 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .comment 0x0000000000000099 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_param.o) + .comment 0x0000000000000099 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + .comment 0x0000000000000099 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + .comment 0x0000000000000099 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + .comment 0x0000000000000099 0x3b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .comment 0x0000000000000099 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + .comment 0x0000000000000099 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + .comment 0x0000000000000099 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .comment 0x0000000000000099 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + .comment 0x0000000000000099 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + .comment 0x0000000000000099 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .comment 0x0000000000000099 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .comment 0x0000000000000099 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + .comment 0x0000000000000099 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + .comment 0x0000000000000099 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .comment 0x0000000000000099 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .comment 0x0000000000000099 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .comment 0x0000000000000099 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + .comment 0x0000000000000099 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + .comment 0x0000000000000099 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .comment 0x0000000000000099 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + .comment 0x0000000000000099 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .comment 0x0000000000000099 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + .comment 0x0000000000000099 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + .comment 0x0000000000000099 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + .comment 0x0000000000000099 0x40 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) + 0x41 (size before relaxing) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .comment 0x00000000000000d9 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + +.xt.prop._ZN3nvs9NVSHandle8set_itemIaEEiPKcT_ + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs9NVSHandle8set_itemIaEEiPKcT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZN3nvs9NVSHandle8set_itemIhEEiPKcT_ + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs9NVSHandle8set_itemIhEEiPKcT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZN3nvs9NVSHandle8set_itemIsEEiPKcT_ + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs9NVSHandle8set_itemIsEEiPKcT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZN3nvs9NVSHandle8set_itemItEEiPKcT_ + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs9NVSHandle8set_itemItEEiPKcT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZN3nvs9NVSHandle8set_itemIiEEiPKcT_ + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs9NVSHandle8set_itemIiEEiPKcT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZN3nvs9NVSHandle8set_itemIjEEiPKcT_ + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs9NVSHandle8set_itemIjEEiPKcT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZN3nvs9NVSHandle8set_itemIxEEiPKcT_ + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs9NVSHandle8set_itemIxEEiPKcT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZN3nvs9NVSHandle8set_itemIyEEiPKcT_ + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs9NVSHandle8set_itemIyEEiPKcT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZN3nvs9NVSHandle8get_itemIaEEiPKcRT_ + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs9NVSHandle8get_itemIaEEiPKcRT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZN3nvs9NVSHandle8get_itemIhEEiPKcRT_ + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs9NVSHandle8get_itemIhEEiPKcRT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZN3nvs9NVSHandle8get_itemIsEEiPKcRT_ + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs9NVSHandle8get_itemIsEEiPKcRT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZN3nvs9NVSHandle8get_itemItEEiPKcRT_ + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs9NVSHandle8get_itemItEEiPKcRT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZN3nvs9NVSHandle8get_itemIiEEiPKcRT_ + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs9NVSHandle8get_itemIiEEiPKcRT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZN3nvs9NVSHandle8get_itemIjEEiPKcRT_ + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs9NVSHandle8get_itemIjEEiPKcRT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZN3nvs9NVSHandle8get_itemIxEEiPKcRT_ + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs9NVSHandle8get_itemIxEEiPKcRT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.prop._ZN3nvs9NVSHandle8get_itemIyEEiPKcRT_ + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs9NVSHandle8get_itemIyEEiPKcRT_ + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + +.xt.lit._ZN3nvs19NVSPartitionManagerD5Ev + 0x0000000000000000 0x0 + .xt.lit._ZN3nvs19NVSPartitionManagerD5Ev + 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x8 (size before relaxing) + +.xt.prop._ZN3nvs19NVSPartitionManagerD5Ev + 0x0000000000000000 0x0 + .xt.prop._ZN3nvs19NVSPartitionManagerD5Ev + 0x0000000000000000 0x0 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0xc (size before relaxing) + +.xt.prop._ZN3nvs19NVSPartitionManagerD2Ev + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs19NVSPartitionManagerD2Ev + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + +.xt.prop._ZN3nvs19NVSPartitionManagerD0Ev + 0x0000000000000000 0x24 + .xt.prop._ZN3nvs19NVSPartitionManagerD0Ev + 0x0000000000000000 0x24 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + +.xt.prop._ZTVN3nvs19NVSPartitionManagerE + 0x0000000000000000 0xc + .xt.prop._ZTVN3nvs19NVSPartitionManagerE + 0x0000000000000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + +.xt.prop._ZTVN3nvs15NVSHandleSimpleE + 0x0000000000000000 0xc + .xt.prop._ZTVN3nvs15NVSHandleSimpleE + 0x0000000000000000 0xc esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + +.xt.prop._ZN12Flash_Access5flushEv + 0x0000000000000000 0x24 + .xt.prop._ZN12Flash_Access5flushEv + 0x0000000000000000 0x24 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + +.xt.prop._ZTV9Partition + 0x0000000000000000 0xc + .xt.prop._ZTV9Partition + 0x0000000000000000 0xc esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + +.xt.prop._ZTV8WL_Flash + 0x0000000000000000 0xc + .xt.prop._ZTV8WL_Flash + 0x0000000000000000 0xc esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + +.xt.prop._ZTISt9exception + 0x0000000000000000 0xc + .xt.prop._ZTISt9exception + 0x0000000000000000 0xc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + +.xt.prop._ZTISt9bad_alloc + 0x0000000000000000 0xc + .xt.prop._ZTISt9bad_alloc + 0x0000000000000000 0xc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + +.xt.prop._ZTVN10__cxxabiv120__si_class_type_infoE + 0x0000000000000000 0xc + .xt.prop._ZTVN10__cxxabiv120__si_class_type_infoE + 0x0000000000000000 0xc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + +.xt.prop._ZTVN10__cxxabiv117__class_type_infoE + 0x0000000000000000 0xc + .xt.prop._ZTVN10__cxxabiv117__class_type_infoE + 0x0000000000000000 0xc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + +.debug_frame 0x0000000000000000 0x1d73c + .debug_frame 0x0000000000000000 0x40 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .debug_frame 0x0000000000000040 0x3e8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_frame 0x0000000000000428 0xe8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_frame 0x0000000000000510 0xe8 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + .debug_frame 0x00000000000005f8 0x88 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .debug_frame 0x0000000000000680 0x100 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .debug_frame 0x0000000000000780 0x58 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + .debug_frame 0x00000000000007d8 0x238 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .debug_frame 0x0000000000000a10 0x280 esp-idf/esp32/libesp32.a(panic.c.obj) + .debug_frame 0x0000000000000c90 0x40 esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + .debug_frame 0x0000000000000cd0 0x118 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .debug_frame 0x0000000000000de8 0x40 esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + .debug_frame 0x0000000000000e28 0xd0 esp-idf/esp32/libesp32.a(clk.c.obj) + .debug_frame 0x0000000000000ef8 0x40 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + .debug_frame 0x0000000000000f38 0x40 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_frame 0x0000000000000f78 0x100 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .debug_frame 0x0000000000001078 0x88 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .debug_frame 0x0000000000001100 0x1f0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_frame 0x00000000000012f0 0x130 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_frame 0x0000000000001420 0x178 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_frame 0x0000000000001598 0x40 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_frame 0x00000000000015d8 0x58 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + .debug_frame 0x0000000000001630 0x358 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_frame 0x0000000000001988 0x6e8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_frame 0x0000000000002070 0x208 esp-idf/freertos/libfreertos.a(timers.c.obj) + .debug_frame 0x0000000000002278 0x88 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_frame 0x0000000000002300 0x4d8 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_frame 0x00000000000027d8 0x2b0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_frame 0x0000000000002a88 0x178 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_frame 0x0000000000002c00 0x148 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_frame 0x0000000000002d48 0x88 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_frame 0x0000000000002dd0 0x40 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_frame 0x0000000000002e10 0x40 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + .debug_frame 0x0000000000002e50 0x100 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_frame 0x0000000000002f50 0x250 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_frame 0x00000000000031a0 0x88 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_frame 0x0000000000003228 0xb8 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_frame 0x00000000000032e0 0x70 esp-idf/main/libmain.a(main.c.obj) + .debug_frame 0x0000000000003350 0x58 esp-idf/ca/libca.a(ca.c.obj) + .debug_frame 0x00000000000033a8 0xa0 esp-idf/ca/libca.a(gen_key.c.obj) + .debug_frame 0x0000000000003448 0x190 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .debug_frame 0x00000000000035d8 0x178 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + .debug_frame 0x0000000000003750 0x88 esp-idf/wifi/libwifi.a(wifi.c.obj) + .debug_frame 0x00000000000037d8 0xec esp-idf/https_server/libhttps_server.a(https_server.c.obj) + .debug_frame 0x00000000000038c4 0x28 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) + .debug_frame 0x00000000000038ec 0x40 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .debug_frame 0x000000000000392c 0x58 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .debug_frame 0x0000000000003984 0x70 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .debug_frame 0x00000000000039f4 0x2e0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .debug_frame 0x0000000000003cd4 0x58 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .debug_frame 0x0000000000003d2c 0xb8 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .debug_frame 0x0000000000003de4 0x130 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .debug_frame 0x0000000000003f14 0xe8 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_frame 0x0000000000003ffc 0x730 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_frame 0x000000000000472c 0xd0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + .debug_frame 0x00000000000047fc 0xe8 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_frame 0x00000000000048e4 0x238 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_frame 0x0000000000004b1c 0xa0 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + .debug_frame 0x0000000000004bbc 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .debug_frame 0x0000000000004c44 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + .debug_frame 0x0000000000004c84 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_frame 0x0000000000004cac 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + .debug_frame 0x0000000000004d34 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) + .debug_frame 0x0000000000004d5c 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + .debug_frame 0x0000000000004db4 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + .debug_frame 0x0000000000004e24 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + .debug_frame 0x0000000000004eac 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + .debug_frame 0x0000000000004f1c 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + .debug_frame 0x0000000000004f44 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + .debug_frame 0x0000000000004fcc 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_frame 0x0000000000004ff4 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_frame 0x000000000000501c 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_frame 0x00000000000050ec 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) + .debug_frame 0x0000000000005114 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_frame 0x00000000000051fc 0x70 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_frame 0x000000000000526c 0xb8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_frame 0x0000000000005324 0x130 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_frame 0x0000000000005454 0x1f0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_frame 0x0000000000005644 0x58 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_frame 0x000000000000569c 0x88 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_frame 0x0000000000005724 0x130 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_frame 0x0000000000005854 0x130 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_frame 0x0000000000005984 0x118 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_frame 0x0000000000005a9c 0x298 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_frame 0x0000000000005d34 0x88 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_frame 0x0000000000005dbc 0xd0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_frame 0x0000000000005e8c 0x70 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_frame 0x0000000000005efc 0x1c0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .debug_frame 0x00000000000060bc 0x280 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_frame 0x000000000000633c 0x58 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_frame 0x0000000000006394 0x58 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_frame 0x00000000000063ec 0x100 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_frame 0x00000000000064ec 0x148 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_frame 0x0000000000006634 0x730 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_frame 0x0000000000006d64 0x238 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_frame 0x0000000000006f9c 0x100 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_frame 0x000000000000709c 0xb8 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_frame 0x0000000000007154 0x2e0 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_frame 0x0000000000007434 0x70 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_frame 0x00000000000074a4 0x1c0 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_frame 0x0000000000007664 0x58 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_frame 0x00000000000076bc 0x40 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + .debug_frame 0x00000000000076fc 0x58 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_frame 0x0000000000007754 0x208 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_frame 0x000000000000795c 0x100 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_frame 0x0000000000007a5c 0x5b0 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_frame 0x000000000000800c 0x1f0 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .debug_frame 0x00000000000081fc 0x250 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_frame 0x000000000000844c 0x1a8 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_frame 0x00000000000085f4 0xa0 esp-idf/lwip/liblwip.a(def.c.obj) + .debug_frame 0x0000000000008694 0x220 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_frame 0x00000000000088b4 0x28 esp-idf/lwip/liblwip.a(init.c.obj) + .debug_frame 0x00000000000088dc 0x70 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_frame 0x000000000000894c 0x88 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_frame 0x00000000000089d4 0xd0 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_frame 0x0000000000008aa4 0x388 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_frame 0x0000000000008e2c 0x388 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_frame 0x00000000000091b4 0x160 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_frame 0x0000000000009314 0x538 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_frame 0x000000000000984c 0x118 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_frame 0x0000000000009964 0x250 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_frame 0x0000000000009bb4 0x100 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_frame 0x0000000000009cb4 0x1a8 esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_frame 0x0000000000009e5c 0x3b8 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_frame 0x000000000000a214 0x190 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_frame 0x000000000000a3a4 0x58 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_frame 0x000000000000a3fc 0x1d8 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_frame 0x000000000000a5d4 0x130 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_frame 0x000000000000a704 0xa0 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_frame 0x000000000000a7a4 0x28 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_frame 0x000000000000a7cc 0xe8 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_frame 0x000000000000a8b4 0xd0 esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_frame 0x000000000000a984 0x58 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_frame 0x000000000000a9dc 0x88 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_frame 0x000000000000aa64 0x160 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_frame 0x000000000000abc4 0x310 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_frame 0x000000000000aed4 0x40 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_frame 0x000000000000af14 0x2b0 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_frame 0x000000000000b1c4 0x118 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_frame 0x000000000000b2dc 0xa0 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_frame 0x000000000000b37c 0x6b8 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_frame 0x000000000000ba34 0x328 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_frame 0x000000000000bd5c 0x370 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_frame 0x000000000000c0cc 0x40 esp-idf/lwip/liblwip.a(err.c.obj) + .debug_frame 0x000000000000c10c 0xe8 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_frame 0x000000000000c1f4 0x70 esp-idf/log/liblog.a(log.c.obj) + .debug_frame 0x000000000000c264 0xa0 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_frame 0x000000000000c304 0x2b0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_frame 0x000000000000c5b4 0x88 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_frame 0x000000000000c63c 0x220 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_frame 0x000000000000c85c 0x388 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_frame 0x000000000000cbe4 0xd0 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .debug_frame 0x000000000000ccb4 0x1d8 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_frame 0x000000000000ce8c 0x70 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .debug_frame 0x000000000000cefc 0x610 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_frame 0x000000000000d50c 0x40 esp-idf/esp32/libesp32.a(hw_random.c.obj) + .debug_frame 0x000000000000d54c 0x130 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .debug_frame 0x000000000000d67c 0xa0 esp-idf/esp32/libesp32.a(reset_reason.c.obj) + .debug_frame 0x000000000000d71c 0x2b0 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .debug_frame 0x000000000000d9cc 0xa0 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + .debug_frame 0x000000000000da6c 0xa0 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .debug_frame 0x000000000000db0c 0xd0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_frame 0x000000000000dbdc 0x148 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_frame 0x000000000000dd24 0xe8 esp-idf/console/libconsole.a(commands.c.obj) + .debug_frame 0x000000000000de0c 0x28 esp-idf/console/libconsole.a(split_argv.c.obj) + .debug_frame 0x000000000000de34 0xa00 esp-idf/console/libconsole.a(argtable3.c.obj) + .debug_frame 0x000000000000e834 0x3d0 esp-idf/console/libconsole.a(linenoise.c.obj) + .debug_frame 0x000000000000ec04 0x220 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .debug_frame 0x000000000000ee24 0xd0 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .debug_frame 0x000000000000eef4 0x1f0 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .debug_frame 0x000000000000f0e4 0x148 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .debug_frame 0x000000000000f22c 0x250 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .debug_frame 0x000000000000f47c 0x70 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .debug_frame 0x000000000000f4ec 0xe8 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + .debug_frame 0x000000000000f5d4 0x70 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + .debug_frame 0x000000000000f644 0xd0 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + .debug_frame 0x000000000000f714 0xd0 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + .debug_frame 0x000000000000f7e4 0x568 esp-idf/fatfs/libfatfs.a(ff.c.obj) + .debug_frame 0x000000000000fd4c 0xa0 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + .debug_frame 0x000000000000fdec 0x328 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + .debug_frame 0x0000000000010114 0xd0 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + .debug_frame 0x00000000000101e4 0x100 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + .debug_frame 0x00000000000102e4 0x220 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + .debug_frame 0x0000000000010504 0x28 esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) + .debug_frame 0x000000000001052c 0x28 esp-idf/newlib/libnewlib.a(select.c.obj) + .debug_frame 0x0000000000010554 0x88 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .debug_frame 0x00000000000105dc 0x58 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .debug_frame 0x0000000000010634 0x268 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .debug_frame 0x000000000001089c 0x88 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .debug_frame 0x0000000000010924 0x58 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .debug_frame 0x000000000001097c 0x118 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .debug_frame 0x0000000000010a94 0x70 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + .debug_frame 0x0000000000010b04 0x88 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_frame 0x0000000000010b8c 0x418 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .debug_frame 0x0000000000010fa4 0x508 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_frame 0x00000000000114ac 0x1c0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_frame 0x000000000001166c 0x580 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_frame 0x0000000000011bec 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_frame 0x0000000000011d1c 0x178 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_frame 0x0000000000011e94 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) + .debug_frame 0x0000000000011ebc 0x220 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_frame 0x00000000000120dc 0x340 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + .debug_frame 0x000000000001241c 0x1c0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_frame 0x00000000000125dc 0x2f8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_frame 0x00000000000128d4 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_frame 0x0000000000012944 0x1c0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_frame 0x0000000000012b04 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_frame 0x0000000000012bd4 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_frame 0x0000000000012c5c 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_frame 0x0000000000012c84 0x3d0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_frame 0x0000000000013054 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + .debug_frame 0x00000000000130dc 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_frame 0x0000000000013134 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_frame 0x000000000001318c 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_frame 0x00000000000131e4 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_frame 0x000000000001320c 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_frame 0x000000000001324c 0x148 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_frame 0x0000000000013394 0x148 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_frame 0x00000000000134dc 0x148 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_frame 0x0000000000013624 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_frame 0x0000000000013754 0x220 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + .debug_frame 0x0000000000013974 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_frame 0x0000000000013a74 0x148 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_frame 0x0000000000013bbc 0x1a8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_frame 0x0000000000013d64 0x2c8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_frame 0x000000000001402c 0x1f0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_frame 0x000000000001421c 0x1a8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_frame 0x00000000000143c4 0x118 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .debug_frame 0x00000000000144dc 0x190 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_frame 0x000000000001466c 0x160 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_frame 0x00000000000147cc 0x280 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_frame 0x0000000000014a4c 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_frame 0x0000000000014b04 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_frame 0x0000000000014ba4 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_frame 0x0000000000014bfc 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_frame 0x0000000000014ce4 0x208 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_frame 0x0000000000014eec 0x460 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_frame 0x000000000001534c 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + .debug_frame 0x0000000000015404 0x1f0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + .debug_frame 0x00000000000155f4 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + .debug_frame 0x00000000000156c4 0x268 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_frame 0x000000000001592c 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_frame 0x0000000000015984 0x190 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_frame 0x0000000000015b14 0xb8 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_frame 0x0000000000015bcc 0x4f0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_frame 0x00000000000160bc 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_frame 0x000000000001615c 0x130 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_frame 0x000000000001628c 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_frame 0x000000000001638c 0x70 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_frame 0x00000000000163fc 0x5b0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_frame 0x00000000000169ac 0xd0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_frame 0x0000000000016a7c 0x3d0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_frame 0x0000000000016e4c 0x178 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_frame 0x0000000000016fc4 0x370 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_frame 0x0000000000017334 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_frame 0x000000000001738c 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_frame 0x00000000000173cc 0xa0 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_frame 0x000000000001746c 0x178 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_frame 0x00000000000175e4 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_frame 0x00000000000176e4 0x1c0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .debug_frame 0x00000000000178a4 0x58 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) + .debug_frame 0x00000000000178fc 0x4c0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .debug_frame 0x0000000000017dbc 0x958 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .debug_frame 0x0000000000018714 0x4a8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .debug_frame 0x0000000000018bbc 0x118 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .debug_frame 0x0000000000018cd4 0x3e8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_frame 0x00000000000190bc 0x190 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .debug_frame 0x000000000001924c 0x268 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .debug_frame 0x00000000000194b4 0x1d8 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .debug_frame 0x000000000001968c 0xb8 esp-idf/lwip/liblwip.a(wlanif.c.obj) + .debug_frame 0x0000000000019744 0x28 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_frame 0x000000000001976c 0x1288 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_frame 0x000000000001a9f4 0x148 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .debug_frame 0x000000000001ab3c 0x100 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_frame 0x000000000001ac3c 0x3a0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + .debug_frame 0x000000000001afdc 0x3d0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + .debug_frame 0x000000000001b3ac 0x178 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + .debug_frame 0x000000000001b524 0x238 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_frame 0x000000000001b75c 0x208 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .debug_frame 0x000000000001b964 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + .debug_frame 0x000000000001b98c 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + .debug_frame 0x000000000001b9b4 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .debug_frame 0x000000000001b9f4 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + .debug_frame 0x000000000001ba1c 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + .debug_frame 0x000000000001ba44 0xa0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .debug_frame 0x000000000001bae4 0xd0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .debug_frame 0x000000000001bbb4 0x118 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + .debug_frame 0x000000000001bccc 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + .debug_frame 0x000000000001bcf4 0x88 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .debug_frame 0x000000000001bd7c 0xd0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .debug_frame 0x000000000001be4c 0x88 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .debug_frame 0x000000000001bed4 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .debug_frame 0x000000000001befc 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + .debug_frame 0x000000000001bf24 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_frame 0x000000000001bf4c 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + .debug_frame 0x000000000001bf74 0x2c0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + .debug_frame 0x000000000001c234 0x280 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + .debug_frame 0x000000000001c4b4 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) + .debug_frame 0x000000000001c4f4 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + .debug_frame 0x000000000001c534 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .debug_frame 0x000000000001c55c 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + .debug_frame 0x000000000001c584 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) + .debug_frame 0x000000000001c5c4 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .debug_frame 0x000000000001c604 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) + .debug_frame 0x000000000001c62c 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + .debug_frame 0x000000000001c66c 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .debug_frame 0x000000000001c6ac 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + .debug_frame 0x000000000001c6ec 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + .debug_frame 0x000000000001c72c 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .debug_frame 0x000000000001c76c 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .debug_frame 0x000000000001c7ac 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .debug_frame 0x000000000001c7ec 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .debug_frame 0x000000000001c82c 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + .debug_frame 0x000000000001c86c 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + .debug_frame 0x000000000001c8ac 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + .debug_frame 0x000000000001c8ec 0x118 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + .debug_frame 0x000000000001ca04 0x88 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .debug_frame 0x000000000001ca8c 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .debug_frame 0x000000000001cacc 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .debug_frame 0x000000000001cb0c 0xd0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + .debug_frame 0x000000000001cbdc 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .debug_frame 0x000000000001cc1c 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .debug_frame 0x000000000001cc5c 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .debug_frame 0x000000000001cc9c 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .debug_frame 0x000000000001ccdc 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .debug_frame 0x000000000001cd1c 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) + .debug_frame 0x000000000001cd5c 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .debug_frame 0x000000000001cd84 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .debug_frame 0x000000000001cdc4 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + .debug_frame 0x000000000001ce04 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + .debug_frame 0x000000000001ce44 0xd0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .debug_frame 0x000000000001cf14 0x70 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .debug_frame 0x000000000001cf84 0x70 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .debug_frame 0x000000000001cff4 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .debug_frame 0x000000000001d034 0x44 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + .debug_frame 0x000000000001d078 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .debug_frame 0x000000000001d0a0 0x88 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .debug_frame 0x000000000001d128 0x70 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .debug_frame 0x000000000001d198 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .debug_frame 0x000000000001d1d8 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + .debug_frame 0x000000000001d218 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .debug_frame 0x000000000001d258 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .debug_frame 0x000000000001d280 0x58 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + .debug_frame 0x000000000001d2d8 0x58 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + .debug_frame 0x000000000001d330 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) + .debug_frame 0x000000000001d370 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .debug_frame 0x000000000001d398 0x58 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .debug_frame 0x000000000001d3f0 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .debug_frame 0x000000000001d430 0x1d8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .debug_frame 0x000000000001d608 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .debug_frame 0x000000000001d630 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + .debug_frame 0x000000000001d658 0x58 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .debug_frame 0x000000000001d6b0 0x8c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + +.debug_info 0x0000000000000000 0x3f7f13 + .debug_info 0x0000000000000000 0x10f7 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .debug_info 0x00000000000010f7 0x3200 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_info 0x00000000000042f7 0x1aba esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_info 0x0000000000005db1 0x87cb esp-idf/esp32/libesp32.a(cpu_start.c.obj) + .debug_info 0x000000000000e57c 0x64d0 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .debug_info 0x0000000000014a4c 0x57a5 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .debug_info 0x000000000001a1f1 0x26 esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) + .debug_info 0x000000000001a217 0x22b6 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + .debug_info 0x000000000001c4cd 0x2a53 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .debug_info 0x000000000001ef20 0x8d97 esp-idf/esp32/libesp32.a(panic.c.obj) + .debug_info 0x0000000000027cb7 0xaae2 esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + .debug_info 0x0000000000032799 0x301c esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .debug_info 0x00000000000357b5 0x1499 esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + .debug_info 0x0000000000036c4e 0xa197 esp-idf/esp32/libesp32.a(clk.c.obj) + .debug_info 0x0000000000040de5 0x4281 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + .debug_info 0x0000000000045066 0x54e3 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_info 0x000000000004a549 0x4609 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .debug_info 0x000000000004eb52 0x19df esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .debug_info 0x0000000000050531 0x2096 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_info 0x00000000000525c7 0x4a04 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_info 0x0000000000056fcb 0x22f1 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_info 0x00000000000592bc 0x26 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_info 0x00000000000592e2 0x26 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .debug_info 0x0000000000059308 0x11ef esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_info 0x000000000005a4f7 0x26 esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) + .debug_info 0x000000000005a51d 0x164e esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + .debug_info 0x000000000005bb6b 0x22 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .debug_info 0x000000000005bb8d 0x1276 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .debug_info 0x000000000005ce03 0x38b1 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_info 0x00000000000606b4 0x7a40 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_info 0x00000000000680f4 0x2786 esp-idf/freertos/libfreertos.a(timers.c.obj) + .debug_info 0x000000000006a87a 0x26 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .debug_info 0x000000000006a8a0 0x14b9 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_info 0x000000000006bd59 0x61f4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_info 0x0000000000071f4d 0x560d esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_info 0x000000000007755a 0xdda esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_info 0x0000000000078334 0x1a41 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_info 0x0000000000079d75 0xc4d esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_info 0x000000000007a9c2 0xafc esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_info 0x000000000007b4be 0x1b3c esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + .debug_info 0x000000000007cffa 0xcb6 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_info 0x000000000007dcb0 0x4c8d esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_info 0x000000000008293d 0x1684 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_info 0x0000000000083fc1 0x26df esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_info 0x00000000000866a0 0x590a esp-idf/main/libmain.a(main.c.obj) + .debug_info 0x000000000008bfaa 0x2e08 esp-idf/ca/libca.a(ca.c.obj) + .debug_info 0x000000000008edb2 0x2de8 esp-idf/ca/libca.a(gen_key.c.obj) + .debug_info 0x0000000000091b9a 0x37b9 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .debug_info 0x0000000000095353 0x7401 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + .debug_info 0x000000000009c754 0x5fed esp-idf/wifi/libwifi.a(wifi.c.obj) + .debug_info 0x00000000000a2741 0x61f8 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + .debug_info 0x00000000000a8939 0xa19 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) + .debug_info 0x00000000000a9352 0x1628 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .debug_info 0x00000000000aa97a 0x1f71 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .debug_info 0x00000000000ac8eb 0x3f44 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .debug_info 0x00000000000b082f 0x7b0f esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .debug_info 0x00000000000b833e 0x4be4 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .debug_info 0x00000000000bcf22 0x44af esp-idf/soc/libsoc.a(rtc_time.c.obj) + .debug_info 0x00000000000c13d1 0x3ba5 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .debug_info 0x00000000000c4f76 0x44d4 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_info 0x00000000000c944a 0x8d57 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_info 0x00000000000d21a1 0x4c51 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + .debug_info 0x00000000000d6df2 0x4d6d esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_info 0x00000000000dbb5f 0x6152 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_info 0x00000000000e1cb1 0x47da esp-idf/esp_event/libesp_event.a(event_send.c.obj) + .debug_info 0x00000000000e648b 0xf18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_info 0x00000000000e73a3 0xdf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .debug_info 0x00000000000e8193 0xc4a esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + .debug_info 0x00000000000e8ddd 0xaef esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_info 0x00000000000e98cc 0xf76 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + .debug_info 0x00000000000ea842 0xbc0 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) + .debug_info 0x00000000000eb402 0xe44 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + .debug_info 0x00000000000ec246 0xffa esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + .debug_info 0x00000000000ed240 0x1376 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + .debug_info 0x00000000000ee5b6 0x1223 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + .debug_info 0x00000000000ef7d9 0xb48 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + .debug_info 0x00000000000f0321 0xdad esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + .debug_info 0x00000000000f10ce 0xc2a esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_info 0x00000000000f1cf8 0xc66 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_info 0x00000000000f295e 0x1762 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_info 0x00000000000f40c0 0xbaa esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) + .debug_info 0x00000000000f4c6a 0x1535 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_info 0x00000000000f619f 0xfb9 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_info 0x00000000000f7158 0x1135 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_info 0x00000000000f828d 0x14e2 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_info 0x00000000000f976f 0x1bd7 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_info 0x00000000000fb346 0x10c2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_info 0x00000000000fc408 0xdbc esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_info 0x00000000000fd1c4 0x17ba esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_info 0x00000000000fe97e 0x3704 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_info 0x0000000000102082 0x1fc0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_info 0x0000000000104042 0x1ff2 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_info 0x0000000000106034 0x5077 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_info 0x000000000010b0ab 0x5010 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_info 0x00000000001100bb 0x1232 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_info 0x00000000001112ed 0x19d2 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_info 0x0000000000112cbf 0x23cd esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .debug_info 0x000000000011508c 0x113a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_info 0x00000000001161c6 0x21b6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_info 0x000000000011837c 0x12b7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_info 0x0000000000119633 0x12d1 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_info 0x000000000011a904 0x3c28 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_info 0x000000000011e52c 0x268b esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_info 0x0000000000120bb7 0xc81d esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_info 0x000000000012d3d4 0xc2ec esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_info 0x00000000001396c0 0x91ee esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_info 0x00000000001428ae 0x410e esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_info 0x00000000001469bc 0x8052 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_info 0x000000000014ea0e 0x792f esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_info 0x000000000015633d 0x752e esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_info 0x000000000015d86b 0x2ec0 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_info 0x000000000016072b 0x123d esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + .debug_info 0x0000000000161968 0x7f5d esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_info 0x00000000001698c5 0x620c esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_info 0x000000000016fad1 0x545f esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_info 0x0000000000174f30 0x6617 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_info 0x000000000017b547 0x9d71 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .debug_info 0x00000000001852b8 0x602e esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_info 0x000000000018b2e6 0x2b44 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_info 0x000000000018de2a 0x1691 esp-idf/lwip/liblwip.a(def.c.obj) + .debug_info 0x000000000018f4bb 0x34cc esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_info 0x0000000000192987 0x2558 esp-idf/lwip/liblwip.a(init.c.obj) + .debug_info 0x0000000000194edf 0x1ee2 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_info 0x0000000000196dc1 0x1669 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_info 0x000000000019842a 0x2cf5 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_info 0x000000000019b11f 0x41dd esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_info 0x000000000019f2fc 0x428d esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_info 0x00000000001a3589 0x281c esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_info 0x00000000001a5da5 0x4f35 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_info 0x00000000001aacda 0x3e2c esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_info 0x00000000001aeb06 0x49bb esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_info 0x00000000001b34c1 0x2ade esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_info 0x00000000001b5f9f 0x2f8e esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_info 0x00000000001b8f2d 0x4a73 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_info 0x00000000001bd9a0 0x33f9 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_info 0x00000000001c0d99 0x22c1 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_info 0x00000000001c305a 0x2aea esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_info 0x00000000001c5b44 0x322f esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_info 0x00000000001c8d73 0x1e52 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_info 0x00000000001cabc5 0x1f2d esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_info 0x00000000001ccaf2 0x26b3 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_info 0x00000000001cf1a5 0x348b esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_info 0x00000000001d2630 0x181d esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_info 0x00000000001d3e4d 0x29a5 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_info 0x00000000001d67f2 0x2847 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_info 0x00000000001d9039 0x4380 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_info 0x00000000001dd3b9 0x20e3 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_info 0x00000000001df49c 0x2694 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_info 0x00000000001e1b30 0x1dce esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_info 0x00000000001e38fe 0x2d9a esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_info 0x00000000001e6698 0x8fe8 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_info 0x00000000001ef680 0x4482 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_info 0x00000000001f3b02 0x562b esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_info 0x00000000001f912d 0x1405 esp-idf/lwip/liblwip.a(err.c.obj) + .debug_info 0x00000000001fa532 0x1ba1 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_info 0x00000000001fc0d3 0x11fa esp-idf/log/liblog.a(log.c.obj) + .debug_info 0x00000000001fd2cd 0x17c6 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_info 0x00000000001fea93 0x2aab esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_info 0x000000000020153e 0x1cab esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_info 0x00000000002031e9 0x4272 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_info 0x000000000020745b 0x8076 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_info 0x000000000020f4d1 0x1a0f esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .debug_info 0x0000000000210ee0 0x67ed esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_info 0x00000000002176cd 0x5955 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .debug_info 0x000000000021d022 0xa136 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_info 0x0000000000227158 0x134a esp-idf/esp32/libesp32.a(hw_random.c.obj) + .debug_info 0x00000000002284a2 0x694b esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .debug_info 0x000000000022eded 0x39f5 esp-idf/esp32/libesp32.a(reset_reason.c.obj) + .debug_info 0x00000000002327e2 0xb28b esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .debug_info 0x000000000023da6d 0x136d esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + .debug_info 0x000000000023edda 0x1438 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .debug_info 0x0000000000240212 0x18f0 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_info 0x0000000000241b02 0x2300 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_info 0x0000000000243e02 0x1362 esp-idf/console/libconsole.a(commands.c.obj) + .debug_info 0x0000000000245164 0xa92 esp-idf/console/libconsole.a(split_argv.c.obj) + .debug_info 0x0000000000245bf6 0x72c2 esp-idf/console/libconsole.a(argtable3.c.obj) + .debug_info 0x000000000024ceb8 0x2c07 esp-idf/console/libconsole.a(linenoise.c.obj) + .debug_info 0x000000000024fabf 0x37e0 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .debug_info 0x000000000025329f 0x2c6c esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .debug_info 0x0000000000255f0b 0x2eb9 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .debug_info 0x0000000000258dc4 0x3dbe esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .debug_info 0x000000000025cb82 0x3f2f esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .debug_info 0x0000000000260ab1 0x2039 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .debug_info 0x0000000000262aea 0x474c esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + .debug_info 0x0000000000267236 0x581d esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + .debug_info 0x000000000026ca53 0x194f esp-idf/fatfs/libfatfs.a(diskio.c.obj) + .debug_info 0x000000000026e3a2 0x2017 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + .debug_info 0x00000000002703b9 0x565d esp-idf/fatfs/libfatfs.a(ff.c.obj) + .debug_info 0x0000000000275a16 0x14ea esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + .debug_info 0x0000000000276f00 0x5348 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + .debug_info 0x000000000027c248 0x28ad esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + .debug_info 0x000000000027eaf5 0x1ff9 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + .debug_info 0x0000000000280aee 0x3f45 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + .debug_info 0x0000000000284a33 0x107 esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) + .debug_info 0x0000000000284b3a 0x1425 esp-idf/newlib/libnewlib.a(select.c.obj) + .debug_info 0x0000000000285f5f 0xefd esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .debug_info 0x0000000000286e5c 0x4ed1 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .debug_info 0x000000000028bd2d 0x321f esp-idf/soc/libsoc.a(uart_hal.c.obj) + .debug_info 0x000000000028ef4c 0x23c1 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .debug_info 0x000000000029130d 0x3a22 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .debug_info 0x0000000000294d2f 0x498e esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .debug_info 0x00000000002996bd 0x65e4 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + .debug_info 0x000000000029fca1 0xb6b esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + .debug_info 0x00000000002a080c 0x129e esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .debug_info 0x00000000002a1aaa 0x367a esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + .debug_info 0x00000000002a5124 0x1e00 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) + .debug_info 0x00000000002a6f24 0x4447 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_info 0x00000000002ab36b 0x3e3f esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .debug_info 0x00000000002af1aa 0x53fc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .debug_info 0x00000000002b45a6 0x782a esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .debug_info 0x00000000002bbdd0 0x48d8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_info 0x00000000002c06a8 0x1ef2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_info 0x00000000002c259a 0x68cf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_info 0x00000000002c8e69 0x5cc2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_info 0x00000000002ceb2b 0x1a8e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_info 0x00000000002d05b9 0x2734 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) + .debug_info 0x00000000002d2ced 0x17e3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_info 0x00000000002d44d0 0x1b2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + .debug_info 0x00000000002d5ffd 0x1a52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_info 0x00000000002d7a4f 0x22c3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_info 0x00000000002d9d12 0x1a46 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_info 0x00000000002db758 0x359c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_info 0x00000000002decf4 0x1c29 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_info 0x00000000002e091d 0xae8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_info 0x00000000002e1405 0x9d9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_info 0x00000000002e1dde 0x576b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_info 0x00000000002e7549 0x189d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + .debug_info 0x00000000002e8de6 0xebc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_info 0x00000000002e9ca2 0xf54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_info 0x00000000002eabf6 0xf54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_info 0x00000000002ebb4a 0x9a5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_info 0x00000000002ec4ef 0x9c9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_info 0x00000000002eceb8 0x1140 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_info 0x00000000002edff8 0x117d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_info 0x00000000002ef175 0x12fd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_info 0x00000000002f0472 0x36cd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_info 0x00000000002f3b3f 0x2861 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + .debug_info 0x00000000002f63a0 0x212d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_info 0x00000000002f84cd 0x128a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_info 0x00000000002f9757 0x173c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_info 0x00000000002fae93 0x2482 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_info 0x00000000002fd315 0x1e0e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_info 0x00000000002ff123 0x2632 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_info 0x0000000000301755 0x22ac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .debug_info 0x0000000000303a01 0x1ce3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_info 0x00000000003056e4 0x1251 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_info 0x0000000000306935 0x1bd8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_info 0x000000000030850d 0x18e8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_info 0x0000000000309df5 0x1a18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_info 0x000000000030b80d 0xdc9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_info 0x000000000030c5d6 0x1cce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_info 0x000000000030e2a4 0x2a49 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_info 0x0000000000310ced 0x4b3b esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_info 0x0000000000315828 0x1600 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + .debug_info 0x0000000000316e28 0x1ffc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + .debug_info 0x0000000000318e24 0x137a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + .debug_info 0x000000000031a19e 0x3863 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_info 0x000000000031da01 0xb04 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_info 0x000000000031e505 0x681f esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_info 0x0000000000324d24 0x5866 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_info 0x000000000032a58a 0x97c3 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_info 0x0000000000333d4d 0x1e64 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_info 0x0000000000335bb1 0x11ae esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_info 0x0000000000336d5f 0x154e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_info 0x00000000003382ad 0xd8d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_info 0x000000000033903a 0x9c99 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_info 0x0000000000342cd3 0x2049 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_info 0x0000000000344d1c 0x3fca esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_info 0x0000000000348ce6 0x1953 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_info 0x000000000034a639 0x2795 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_info 0x000000000034cdce 0xf11 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_info 0x000000000034dcdf 0x59ff esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_info 0x00000000003536de 0x1417 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_info 0x0000000000354af5 0x1f2c esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_info 0x0000000000356a21 0x5755 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_info 0x000000000035c176 0x1459 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .debug_info 0x000000000035d5cf 0x230 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) + .debug_info 0x000000000035d7ff 0x3b1b /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .debug_info 0x000000000036131a 0x5799 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .debug_info 0x0000000000366ab3 0x4212 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .debug_info 0x000000000036acc5 0xec6 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .debug_info 0x000000000036bb8b 0x4686 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_info 0x0000000000370211 0x2761 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .debug_info 0x0000000000372972 0x58b5 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .debug_info 0x0000000000378227 0x59a6 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .debug_info 0x000000000037dbcd 0x575f esp-idf/lwip/liblwip.a(wlanif.c.obj) + .debug_info 0x000000000038332c 0x1bf4 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_info 0x0000000000384f20 0xb66e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_info 0x000000000039058e 0x2e0d esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .debug_info 0x000000000039339b 0x10cc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_info 0x0000000000394467 0x5acc esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + .debug_info 0x0000000000399f33 0x6157 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + .debug_info 0x00000000003a008a 0x1fc6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + .debug_info 0x00000000003a2050 0x1d33 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_info 0x00000000003a3d83 0x181c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .debug_info 0x00000000003a559f 0x1151 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + .debug_info 0x00000000003a66f0 0x3ad /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + .debug_info 0x00000000003a6a9d 0x440 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .debug_info 0x00000000003a6edd 0x49f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + .debug_info 0x00000000003a737c 0x3dc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + .debug_info 0x00000000003a7758 0x8df /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .debug_info 0x00000000003a8037 0x146f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .debug_info 0x00000000003a94a6 0x286f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + .debug_info 0x00000000003abd15 0x3c0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + .debug_info 0x00000000003ac0d5 0x19c3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .debug_info 0x00000000003ada98 0x9cc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .debug_info 0x00000000003ae464 0x57d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .debug_info 0x00000000003ae9e1 0x11ec /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + .debug_info 0x00000000003afbcd 0x44f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + .debug_info 0x00000000003b001c 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfdi.o) + .debug_info 0x00000000003b0042 0x114b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .debug_info 0x00000000003b118d 0x11ac /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + .debug_info 0x00000000003b2339 0x10fd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_info 0x00000000003b3436 0x1175 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + .debug_info 0x00000000003b45ab 0x2700 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + .debug_info 0x00000000003b6cab 0x2f9e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + .debug_info 0x00000000003b9c49 0x26 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(lib2funcs.o) + .debug_info 0x00000000003b9c6f 0x5d /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) + .debug_info 0x00000000003b9ccc 0x78 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(int_asm--set_intclear.o) + .debug_info 0x00000000003b9d44 0x55 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) + .debug_info 0x00000000003b9d99 0x7a /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--restore_extra_nw.o) + .debug_info 0x00000000003b9e13 0x7a /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--save_extra_nw.o) + .debug_info 0x00000000003b9e8d 0xcdb /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) + .debug_info 0x00000000003bab68 0xa3e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + .debug_info 0x00000000003bb5a6 0x977 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .debug_info 0x00000000003bbf1d 0xc72 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + .debug_info 0x00000000003bcb8f 0xcec /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) + .debug_info 0x00000000003bd87b 0xe0d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .debug_info 0x00000000003be688 0xca8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) + .debug_info 0x00000000003bf330 0xa93 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + .debug_info 0x00000000003bfdc3 0xe40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .debug_info 0x00000000003c0c03 0xa9c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + .debug_info 0x00000000003c169f 0xd14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + .debug_info 0x00000000003c23b3 0xdcd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .debug_info 0x00000000003c3180 0xe12 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .debug_info 0x00000000003c3f92 0xce9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .debug_info 0x00000000003c4c7b 0x11f0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .debug_info 0x00000000003c5e6b 0xca5 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + .debug_info 0x00000000003c6b10 0xd28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + .debug_info 0x00000000003c7838 0xe28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + .debug_info 0x00000000003c8660 0x1623 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + .debug_info 0x00000000003c9c83 0x115a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .debug_info 0x00000000003caddd 0xf4b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .debug_info 0x00000000003cbd28 0x105f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .debug_info 0x00000000003ccd87 0x130c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + .debug_info 0x00000000003ce093 0xcd3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .debug_info 0x00000000003ced66 0xd8b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .debug_info 0x00000000003cfaf1 0xc39 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .debug_info 0x00000000003d072a 0xde8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .debug_info 0x00000000003d1512 0xb1e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .debug_info 0x00000000003d2030 0xc6f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) + .debug_info 0x00000000003d2c9f 0xdf7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .debug_info 0x00000000003d3a96 0xd51 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .debug_info 0x00000000003d47e7 0xcec /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + .debug_info 0x00000000003d54d3 0xd1b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + .debug_info 0x00000000003d61ee 0x1eb4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .debug_info 0x00000000003d80a2 0x1259 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .debug_info 0x00000000003d92fb 0x1253 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .debug_info 0x00000000003da54e 0x2c10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .debug_info 0x00000000003dd15e 0x29c2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + .debug_info 0x00000000003dfb20 0xa0f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .debug_info 0x00000000003e052f 0x285f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .debug_info 0x00000000003e2d8e 0x2f2f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .debug_info 0x00000000003e5cbd 0xca7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .debug_info 0x00000000003e6964 0xd10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + .debug_info 0x00000000003e7674 0x1a1b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .debug_info 0x00000000003e908f 0x9fd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .debug_info 0x00000000003e9a8c 0x173b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + .debug_info 0x00000000003eb1c7 0x121b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + .debug_info 0x00000000003ec3e2 0x9f7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) + .debug_info 0x00000000003ecdd9 0xed9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .debug_info 0x00000000003edcb2 0x1022 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .debug_info 0x00000000003eecd4 0x10c5 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .debug_info 0x00000000003efd99 0x1ff0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .debug_info 0x00000000003f1d89 0xa9d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .debug_info 0x00000000003f2826 0x995 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + .debug_info 0x00000000003f31bb 0x2567 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .debug_info 0x00000000003f5722 0x27f1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + +.debug_abbrev 0x0000000000000000 0x54644 + .debug_abbrev 0x0000000000000000 0x2a6 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .debug_abbrev 0x00000000000002a6 0x55e esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_abbrev 0x0000000000000804 0x31a esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_abbrev 0x0000000000000b1e 0x53e esp-idf/esp32/libesp32.a(cpu_start.c.obj) + .debug_abbrev 0x000000000000105c 0x3b9 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .debug_abbrev 0x0000000000001415 0x49a esp-idf/esp32/libesp32.a(dport_access.c.obj) + .debug_abbrev 0x00000000000018af 0x14 esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) + .debug_abbrev 0x00000000000018c3 0x321 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + .debug_abbrev 0x0000000000001be4 0x4af esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .debug_abbrev 0x0000000000002093 0x623 esp-idf/esp32/libesp32.a(panic.c.obj) + .debug_abbrev 0x00000000000026b6 0x469 esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + .debug_abbrev 0x0000000000002b1f 0x43b esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .debug_abbrev 0x0000000000002f5a 0x2a7 esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + .debug_abbrev 0x0000000000003201 0x4a7 esp-idf/esp32/libesp32.a(clk.c.obj) + .debug_abbrev 0x00000000000036a8 0x355 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + .debug_abbrev 0x00000000000039fd 0x36f esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_abbrev 0x0000000000003d6c 0x39c esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .debug_abbrev 0x0000000000004108 0x32b esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .debug_abbrev 0x0000000000004433 0x421 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_abbrev 0x0000000000004854 0x46d esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_abbrev 0x0000000000004cc1 0x4b5 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_abbrev 0x0000000000005176 0x14 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_abbrev 0x000000000000518a 0x14 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .debug_abbrev 0x000000000000519e 0x1ea esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_abbrev 0x0000000000005388 0x14 esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) + .debug_abbrev 0x000000000000539c 0x294 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + .debug_abbrev 0x0000000000005630 0x12 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .debug_abbrev 0x0000000000005642 0x18b esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .debug_abbrev 0x00000000000057cd 0x389 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_abbrev 0x0000000000005b56 0x49d esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_abbrev 0x0000000000005ff3 0x3d3 esp-idf/freertos/libfreertos.a(timers.c.obj) + .debug_abbrev 0x00000000000063c6 0x14 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .debug_abbrev 0x00000000000063da 0x209 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_abbrev 0x00000000000065e3 0x5d2 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_abbrev 0x0000000000006bb5 0x550 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_abbrev 0x0000000000007105 0x2a0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_abbrev 0x00000000000073a5 0x322 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_abbrev 0x00000000000076c7 0x296 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_abbrev 0x000000000000795d 0x249 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_abbrev 0x0000000000007ba6 0x233 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + .debug_abbrev 0x0000000000007dd9 0x2c8 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_abbrev 0x00000000000080a1 0x4eb esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_abbrev 0x000000000000858c 0x45f esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_abbrev 0x00000000000089eb 0x5ce esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_abbrev 0x0000000000008fb9 0x37f esp-idf/main/libmain.a(main.c.obj) + .debug_abbrev 0x0000000000009338 0x352 esp-idf/ca/libca.a(ca.c.obj) + .debug_abbrev 0x000000000000968a 0x3fe esp-idf/ca/libca.a(gen_key.c.obj) + .debug_abbrev 0x0000000000009a88 0x3d3 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .debug_abbrev 0x0000000000009e5b 0x436 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + .debug_abbrev 0x000000000000a291 0x3e8 esp-idf/wifi/libwifi.a(wifi.c.obj) + .debug_abbrev 0x000000000000a679 0x498 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + .debug_abbrev 0x000000000000ab11 0x248 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) + .debug_abbrev 0x000000000000ad59 0x2a5 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .debug_abbrev 0x000000000000affe 0x1cb esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .debug_abbrev 0x000000000000b1c9 0x2b7 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .debug_abbrev 0x000000000000b480 0x4b0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .debug_abbrev 0x000000000000b930 0x33f esp-idf/soc/libsoc.a(rtc_init.c.obj) + .debug_abbrev 0x000000000000bc6f 0x385 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .debug_abbrev 0x000000000000bff4 0x30c esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .debug_abbrev 0x000000000000c300 0x3ae esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_abbrev 0x000000000000c6ae 0x5cd esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_abbrev 0x000000000000cc7b 0x34c esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + .debug_abbrev 0x000000000000cfc7 0x356 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_abbrev 0x000000000000d31d 0x4ef esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_abbrev 0x000000000000d80c 0x375 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + .debug_abbrev 0x000000000000db81 0x195 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_abbrev 0x000000000000dd16 0x29d esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .debug_abbrev 0x000000000000dfb3 0x26c esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + .debug_abbrev 0x000000000000e21f 0x231 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_abbrev 0x000000000000e450 0x352 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + .debug_abbrev 0x000000000000e7a2 0x278 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) + .debug_abbrev 0x000000000000ea1a 0x280 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + .debug_abbrev 0x000000000000ec9a 0x2ed esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + .debug_abbrev 0x000000000000ef87 0x31f esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + .debug_abbrev 0x000000000000f2a6 0x2c1 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + .debug_abbrev 0x000000000000f567 0x225 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + .debug_abbrev 0x000000000000f78c 0x278 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + .debug_abbrev 0x000000000000fa04 0x264 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_abbrev 0x000000000000fc68 0x275 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_abbrev 0x000000000000fedd 0x3bd esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_abbrev 0x000000000001029a 0x27e esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) + .debug_abbrev 0x0000000000010518 0x2f1 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_abbrev 0x0000000000010809 0x2b8 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_abbrev 0x0000000000010ac1 0x350 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x0000000000010e11 0x2c7 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_abbrev 0x00000000000110d8 0x407 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x00000000000114df 0x1da esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_abbrev 0x00000000000116b9 0x24d esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_abbrev 0x0000000000011906 0x2c5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_abbrev 0x0000000000011bcb 0x418 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_abbrev 0x0000000000011fe3 0x3b1 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_abbrev 0x0000000000012394 0x48e esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_abbrev 0x0000000000012822 0x53a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_abbrev 0x0000000000012d5c 0x390 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_abbrev 0x00000000000130ec 0x2a6 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_abbrev 0x0000000000013392 0x2fb esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_abbrev 0x000000000001368d 0x439 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .debug_abbrev 0x0000000000013ac6 0x1b4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_abbrev 0x0000000000013c7a 0x42e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_abbrev 0x00000000000140a8 0x284 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_abbrev 0x000000000001432c 0x298 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_abbrev 0x00000000000145c4 0x392 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_abbrev 0x0000000000014956 0x477 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_abbrev 0x0000000000014dcd 0xe9e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_abbrev 0x0000000000015c6b 0xe40 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_abbrev 0x0000000000016aab 0xcbb esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_abbrev 0x0000000000017766 0x84b esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_abbrev 0x0000000000017fb1 0xbcb esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_abbrev 0x0000000000018b7c 0xca0 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_abbrev 0x000000000001981c 0xb50 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_abbrev 0x000000000001a36c 0x655 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_abbrev 0x000000000001a9c1 0x303 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + .debug_abbrev 0x000000000001acc4 0x394 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_abbrev 0x000000000001b058 0x51c esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_abbrev 0x000000000001b574 0x3e6 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_abbrev 0x000000000001b95a 0x582 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_abbrev 0x000000000001bedc 0x5a1 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .debug_abbrev 0x000000000001c47d 0x51e esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_abbrev 0x000000000001c99b 0x42b esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_abbrev 0x000000000001cdc6 0x27c esp-idf/lwip/liblwip.a(def.c.obj) + .debug_abbrev 0x000000000001d042 0x3bc esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_abbrev 0x000000000001d3fe 0x257 esp-idf/lwip/liblwip.a(init.c.obj) + .debug_abbrev 0x000000000001d655 0x2c5 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_abbrev 0x000000000001d91a 0x2de esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_abbrev 0x000000000001dbf8 0x3a5 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_abbrev 0x000000000001df9d 0x46d esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_abbrev 0x000000000001e40a 0x459 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_abbrev 0x000000000001e863 0x421 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_abbrev 0x000000000001ec84 0x47c esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_abbrev 0x000000000001f100 0x40b esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_abbrev 0x000000000001f50b 0x480 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_abbrev 0x000000000001f98b 0x3f1 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_abbrev 0x000000000001fd7c 0x40b esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_abbrev 0x0000000000020187 0x43f esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_abbrev 0x00000000000205c6 0x3ed esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_abbrev 0x00000000000209b3 0x3ae esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_abbrev 0x0000000000020d61 0x44c esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_abbrev 0x00000000000211ad 0x3fc esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_abbrev 0x00000000000215a9 0x365 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_abbrev 0x000000000002190e 0x2fd esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_abbrev 0x0000000000021c0b 0x35a esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_abbrev 0x0000000000021f65 0x3d2 esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_abbrev 0x0000000000022337 0x2d7 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_abbrev 0x000000000002260e 0x3bd esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_abbrev 0x00000000000229cb 0x407 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_abbrev 0x0000000000022dd2 0x45b esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_abbrev 0x000000000002322d 0x362 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_abbrev 0x000000000002358f 0x3b1 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_abbrev 0x0000000000023940 0x314 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_abbrev 0x0000000000023c54 0x33a esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_abbrev 0x0000000000023f8e 0x3f5 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_abbrev 0x0000000000024383 0x447 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_abbrev 0x00000000000247ca 0x4bf esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_abbrev 0x0000000000024c89 0x1db esp-idf/lwip/liblwip.a(err.c.obj) + .debug_abbrev 0x0000000000024e64 0x2c9 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_abbrev 0x000000000002512d 0x453 esp-idf/log/liblog.a(log.c.obj) + .debug_abbrev 0x0000000000025580 0x2e7 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_abbrev 0x0000000000025867 0x483 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_abbrev 0x0000000000025cea 0x3b8 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_abbrev 0x00000000000260a2 0x496 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_abbrev 0x0000000000026538 0x5a9 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_abbrev 0x0000000000026ae1 0x2e2 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .debug_abbrev 0x0000000000026dc3 0x3a6 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_abbrev 0x0000000000027169 0x346 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .debug_abbrev 0x00000000000274af 0x583 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_abbrev 0x0000000000027a32 0x258 esp-idf/esp32/libesp32.a(hw_random.c.obj) + .debug_abbrev 0x0000000000027c8a 0x49c esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .debug_abbrev 0x0000000000028126 0x386 esp-idf/esp32/libesp32.a(reset_reason.c.obj) + .debug_abbrev 0x00000000000284ac 0x5c4 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .debug_abbrev 0x0000000000028a70 0x2c2 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + .debug_abbrev 0x0000000000028d32 0x271 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .debug_abbrev 0x0000000000028fa3 0x2a8 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_abbrev 0x000000000002924b 0x3a8 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_abbrev 0x00000000000295f3 0x309 esp-idf/console/libconsole.a(commands.c.obj) + .debug_abbrev 0x00000000000298fc 0x1ff esp-idf/console/libconsole.a(split_argv.c.obj) + .debug_abbrev 0x0000000000029afb 0x421 esp-idf/console/libconsole.a(argtable3.c.obj) + .debug_abbrev 0x0000000000029f1c 0x43c esp-idf/console/libconsole.a(linenoise.c.obj) + .debug_abbrev 0x000000000002a358 0x4aa esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .debug_abbrev 0x000000000002a802 0x411 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .debug_abbrev 0x000000000002ac13 0x4f8 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .debug_abbrev 0x000000000002b10b 0x58e esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .debug_abbrev 0x000000000002b699 0x482 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .debug_abbrev 0x000000000002bb1b 0x330 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .debug_abbrev 0x000000000002be4b 0x409 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + .debug_abbrev 0x000000000002c254 0x3f2 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + .debug_abbrev 0x000000000002c646 0x2e6 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + .debug_abbrev 0x000000000002c92c 0x2d2 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + .debug_abbrev 0x000000000002cbfe 0x334 esp-idf/fatfs/libfatfs.a(ff.c.obj) + .debug_abbrev 0x000000000002cf32 0x22c esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + .debug_abbrev 0x000000000002d15e 0x4ed esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + .debug_abbrev 0x000000000002d64b 0x643 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + .debug_abbrev 0x000000000002dc8e 0x4d1 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + .debug_abbrev 0x000000000002e15f 0x6ea esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + .debug_abbrev 0x000000000002e849 0xd0 esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) + .debug_abbrev 0x000000000002e919 0x1e9 esp-idf/newlib/libnewlib.a(select.c.obj) + .debug_abbrev 0x000000000002eb02 0x33c esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .debug_abbrev 0x000000000002ee3e 0x344 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .debug_abbrev 0x000000000002f182 0x42f esp-idf/soc/libsoc.a(uart_hal.c.obj) + .debug_abbrev 0x000000000002f5b1 0x3ee esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .debug_abbrev 0x000000000002f99f 0x38e esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .debug_abbrev 0x000000000002fd2d 0x48d esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .debug_abbrev 0x00000000000301ba 0x36b esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + .debug_abbrev 0x0000000000030525 0x1a5 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + .debug_abbrev 0x00000000000306ca 0x1cd esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .debug_abbrev 0x0000000000030897 0x228 esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + .debug_abbrev 0x0000000000030abf 0x244 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) + .debug_abbrev 0x0000000000030d03 0x357 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_abbrev 0x000000000003105a 0x26f esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .debug_abbrev 0x00000000000312c9 0x2bc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .debug_abbrev 0x0000000000031585 0x507 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .debug_abbrev 0x0000000000031a8c 0x420 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_abbrev 0x0000000000031eac 0x3fc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_abbrev 0x00000000000322a8 0x3ef esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_abbrev 0x0000000000032697 0x3ec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_abbrev 0x0000000000032a83 0x3c5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_abbrev 0x0000000000032e48 0x23e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) + .debug_abbrev 0x0000000000033086 0x3df esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_abbrev 0x0000000000033465 0x30a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + .debug_abbrev 0x000000000003376f 0x46a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_abbrev 0x0000000000033bd9 0x3ce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_abbrev 0x0000000000033fa7 0x36a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_abbrev 0x0000000000034311 0x3f2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_abbrev 0x0000000000034703 0x3e7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_abbrev 0x0000000000034aea 0x288 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_abbrev 0x0000000000034d72 0x1cf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_abbrev 0x0000000000034f41 0x4c0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_abbrev 0x0000000000035401 0x31b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + .debug_abbrev 0x000000000003571c 0x29c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_abbrev 0x00000000000359b8 0x293 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_abbrev 0x0000000000035c4b 0x293 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_abbrev 0x0000000000035ede 0x1f5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_abbrev 0x00000000000360d3 0x211 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_abbrev 0x00000000000362e4 0x3a1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_abbrev 0x0000000000036685 0x3a3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_abbrev 0x0000000000036a28 0x439 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_abbrev 0x0000000000036e61 0x561 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_abbrev 0x00000000000373c2 0x484 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + .debug_abbrev 0x0000000000037846 0x44a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_abbrev 0x0000000000037c90 0x2ee esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_abbrev 0x0000000000037f7e 0x31b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_abbrev 0x0000000000038299 0x4b4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_abbrev 0x000000000003874d 0x351 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_abbrev 0x0000000000038a9e 0x380 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_abbrev 0x0000000000038e1e 0x41d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .debug_abbrev 0x000000000003923b 0x3fe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_abbrev 0x0000000000039639 0x343 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_abbrev 0x000000000003997c 0x34c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_abbrev 0x0000000000039cc8 0x3b6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_abbrev 0x000000000003a07e 0x33f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_abbrev 0x000000000003a3bd 0x253 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_abbrev 0x000000000003a610 0x39e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_abbrev 0x000000000003a9ae 0x3e4 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_abbrev 0x000000000003ad92 0x46d esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_abbrev 0x000000000003b1ff 0x370 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + .debug_abbrev 0x000000000003b56f 0x3ba esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + .debug_abbrev 0x000000000003b929 0x362 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + .debug_abbrev 0x000000000003bc8b 0x46f esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_abbrev 0x000000000003c0fa 0x227 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_abbrev 0x000000000003c321 0x3f1 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_abbrev 0x000000000003c712 0x427 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_abbrev 0x000000000003cb39 0x69d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_abbrev 0x000000000003d1d6 0x3df esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_abbrev 0x000000000003d5b5 0x3a6 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_abbrev 0x000000000003d95b 0x425 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_abbrev 0x000000000003dd80 0x298 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_abbrev 0x000000000003e018 0x6c0 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_abbrev 0x000000000003e6d8 0x457 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_abbrev 0x000000000003eb2f 0x528 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_abbrev 0x000000000003f057 0x3f4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_abbrev 0x000000000003f44b 0x3c9 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_abbrev 0x000000000003f814 0x2e0 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_abbrev 0x000000000003faf4 0x37a esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_abbrev 0x000000000003fe6e 0x2d4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_abbrev 0x0000000000040142 0x502 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_abbrev 0x0000000000040644 0x3e9 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_abbrev 0x0000000000040a2d 0x306 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .debug_abbrev 0x0000000000040d33 0xd4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) + .debug_abbrev 0x0000000000040e07 0x4f5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .debug_abbrev 0x00000000000412fc 0x531 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .debug_abbrev 0x000000000004182d 0x4ef /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .debug_abbrev 0x0000000000041d1c 0x2b4 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .debug_abbrev 0x0000000000041fd0 0x3cd esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_abbrev 0x000000000004239d 0x39d esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .debug_abbrev 0x000000000004273a 0x56a esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .debug_abbrev 0x0000000000042ca4 0x519 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .debug_abbrev 0x00000000000431bd 0x422 esp-idf/lwip/liblwip.a(wlanif.c.obj) + .debug_abbrev 0x00000000000435df 0x2a0 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_abbrev 0x000000000004387f 0x645 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_abbrev 0x0000000000043ec4 0x492 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .debug_abbrev 0x0000000000044356 0x289 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_abbrev 0x00000000000445df 0x551 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + .debug_abbrev 0x0000000000044b30 0x5a6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + .debug_abbrev 0x00000000000450d6 0x3d6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + .debug_abbrev 0x00000000000454ac 0x3bc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_abbrev 0x0000000000045868 0x2d4 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .debug_abbrev 0x0000000000045b3c 0x3e1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + .debug_abbrev 0x0000000000045f1d 0x268 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + .debug_abbrev 0x0000000000046185 0x2b7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .debug_abbrev 0x000000000004643c 0x2d8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + .debug_abbrev 0x0000000000046714 0x27e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + .debug_abbrev 0x0000000000046992 0x456 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .debug_abbrev 0x0000000000046de8 0x50e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .debug_abbrev 0x00000000000472f6 0x837 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + .debug_abbrev 0x0000000000047b2d 0x271 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + .debug_abbrev 0x0000000000047d9e 0x662 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .debug_abbrev 0x0000000000048400 0x479 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .debug_abbrev 0x0000000000048879 0x32b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .debug_abbrev 0x0000000000048ba4 0x405 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + .debug_abbrev 0x0000000000048fa9 0x291 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + .debug_abbrev 0x000000000004923a 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfdi.o) + .debug_abbrev 0x000000000004924e 0x28e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .debug_abbrev 0x00000000000494dc 0x29b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + .debug_abbrev 0x0000000000049777 0x27a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_abbrev 0x00000000000499f1 0x294 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + .debug_abbrev 0x0000000000049c85 0x643 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + .debug_abbrev 0x000000000004a2c8 0x650 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + .debug_abbrev 0x000000000004a918 0x14 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(lib2funcs.o) + .debug_abbrev 0x000000000004a92c 0x14 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) + .debug_abbrev 0x000000000004a940 0x14 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(int_asm--set_intclear.o) + .debug_abbrev 0x000000000004a954 0x43 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) + .debug_abbrev 0x000000000004a997 0x14 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--restore_extra_nw.o) + .debug_abbrev 0x000000000004a9ab 0x14 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--save_extra_nw.o) + .debug_abbrev 0x000000000004a9bf 0x2b9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) + .debug_abbrev 0x000000000004ac78 0x210 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + .debug_abbrev 0x000000000004ae88 0x1b8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .debug_abbrev 0x000000000004b040 0x25c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + .debug_abbrev 0x000000000004b29c 0x27a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) + .debug_abbrev 0x000000000004b516 0x2a4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .debug_abbrev 0x000000000004b7ba 0x261 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) + .debug_abbrev 0x000000000004ba1b 0x224 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + .debug_abbrev 0x000000000004bc3f 0x2bf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .debug_abbrev 0x000000000004befe 0x249 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + .debug_abbrev 0x000000000004c147 0x2b0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + .debug_abbrev 0x000000000004c3f7 0x29f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .debug_abbrev 0x000000000004c696 0x2ec /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .debug_abbrev 0x000000000004c982 0x28d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .debug_abbrev 0x000000000004cc0f 0x2eb /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .debug_abbrev 0x000000000004cefa 0x291 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + .debug_abbrev 0x000000000004d18b 0x27e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + .debug_abbrev 0x000000000004d409 0x2e1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + .debug_abbrev 0x000000000004d6ea 0x366 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + .debug_abbrev 0x000000000004da50 0x2c3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .debug_abbrev 0x000000000004dd13 0x305 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .debug_abbrev 0x000000000004e018 0x264 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .debug_abbrev 0x000000000004e27c 0x32e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + .debug_abbrev 0x000000000004e5aa 0x2a1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .debug_abbrev 0x000000000004e84b 0x2e2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .debug_abbrev 0x000000000004eb2d 0x266 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .debug_abbrev 0x000000000004ed93 0x2a4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .debug_abbrev 0x000000000004f037 0x24f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .debug_abbrev 0x000000000004f286 0x258 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) + .debug_abbrev 0x000000000004f4de 0x293 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .debug_abbrev 0x000000000004f771 0x2a0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .debug_abbrev 0x000000000004fa11 0x294 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + .debug_abbrev 0x000000000004fca5 0x2a1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + .debug_abbrev 0x000000000004ff46 0x442 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .debug_abbrev 0x0000000000050388 0x314 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .debug_abbrev 0x000000000005069c 0x31d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .debug_abbrev 0x00000000000509b9 0x462 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .debug_abbrev 0x0000000000050e1b 0x420 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + .debug_abbrev 0x000000000005123b 0x202 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .debug_abbrev 0x000000000005143d 0x480 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .debug_abbrev 0x00000000000518bd 0x4b8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .debug_abbrev 0x0000000000051d75 0x28b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .debug_abbrev 0x0000000000052000 0x287 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + .debug_abbrev 0x0000000000052287 0x31e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .debug_abbrev 0x00000000000525a5 0x1f8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .debug_abbrev 0x000000000005279d 0x379 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + .debug_abbrev 0x0000000000052b16 0x294 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + .debug_abbrev 0x0000000000052daa 0x213 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) + .debug_abbrev 0x0000000000052fbd 0x1c3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .debug_abbrev 0x0000000000053180 0x27a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .debug_abbrev 0x00000000000533fa 0x25b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .debug_abbrev 0x0000000000053655 0x38a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .debug_abbrev 0x00000000000539df 0x262 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .debug_abbrev 0x0000000000053c41 0x1cc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + .debug_abbrev 0x0000000000053e0d 0x3ff /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .debug_abbrev 0x000000000005420c 0x438 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + +.debug_loc 0x0000000000000000 0xe8287 + .debug_loc 0x0000000000000000 0x12c esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .debug_loc 0x000000000000012c 0x11b8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_loc 0x00000000000012e4 0x494 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_loc 0x0000000000001778 0x2f5 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + .debug_loc 0x0000000000001a6d 0x11c esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .debug_loc 0x0000000000001b89 0x223 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .debug_loc 0x0000000000001dac 0x1d5 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + .debug_loc 0x0000000000001f81 0x13e8 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .debug_loc 0x0000000000003369 0x8c0 esp-idf/esp32/libesp32.a(panic.c.obj) + .debug_loc 0x0000000000003c29 0x2ae esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + .debug_loc 0x0000000000003ed7 0x5eb esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .debug_loc 0x00000000000044c2 0xc7 esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + .debug_loc 0x0000000000004589 0x270 esp-idf/esp32/libesp32.a(clk.c.obj) + .debug_loc 0x00000000000047f9 0x37 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + .debug_loc 0x0000000000004830 0xc7 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_loc 0x00000000000048f7 0x343 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .debug_loc 0x0000000000004c3a 0x1d1 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .debug_loc 0x0000000000004e0b 0x725 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_loc 0x0000000000005530 0x34e esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_loc 0x000000000000587e 0x719 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_loc 0x0000000000005f97 0x1fe esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + .debug_loc 0x0000000000006195 0x169f esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_loc 0x0000000000007834 0x3492 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_loc 0x000000000000acc6 0x7cf esp-idf/freertos/libfreertos.a(timers.c.obj) + .debug_loc 0x000000000000b495 0xd0 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_loc 0x000000000000b565 0x4296 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_loc 0x000000000000f7fb 0x13bd esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_loc 0x0000000000010bb8 0x1c1 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_loc 0x0000000000010d79 0x276 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_loc 0x0000000000010fef 0x94 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_loc 0x0000000000011083 0x162 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_loc 0x00000000000111e5 0xce esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_loc 0x00000000000112b3 0x63e esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_loc 0x00000000000118f1 0x2e2 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_loc 0x0000000000011bd3 0x1e3 esp-idf/main/libmain.a(main.c.obj) + .debug_loc 0x0000000000011db6 0x728 esp-idf/ca/libca.a(ca.c.obj) + .debug_loc 0x00000000000124de 0x587 esp-idf/ca/libca.a(gen_key.c.obj) + .debug_loc 0x0000000000012a65 0xcfb esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .debug_loc 0x0000000000013760 0x516 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + .debug_loc 0x0000000000013c76 0x2af esp-idf/wifi/libwifi.a(wifi.c.obj) + .debug_loc 0x0000000000013f25 0x22b esp-idf/https_server/libhttps_server.a(https_server.c.obj) + .debug_loc 0x0000000000014150 0x9c esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) + .debug_loc 0x00000000000141ec 0x40d esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .debug_loc 0x00000000000145f9 0x4a esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .debug_loc 0x0000000000014643 0x15 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .debug_loc 0x0000000000014658 0xb52 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .debug_loc 0x00000000000151aa 0x275 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .debug_loc 0x000000000001541f 0x2aa esp-idf/soc/libsoc.a(rtc_time.c.obj) + .debug_loc 0x00000000000156c9 0x39d esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .debug_loc 0x0000000000015a66 0x34b esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_loc 0x0000000000015db1 0x2982 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_loc 0x0000000000018733 0xb9 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + .debug_loc 0x00000000000187ec 0x581 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_loc 0x0000000000018d6d 0x1851 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_loc 0x000000000001a5be 0x189 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + .debug_loc 0x000000000001a747 0x565 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .debug_loc 0x000000000001acac 0x1ce esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + .debug_loc 0x000000000001ae7a 0x215 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_loc 0x000000000001b08f 0x316 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + .debug_loc 0x000000000001b3a5 0x11a esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) + .debug_loc 0x000000000001b4bf 0x367 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + .debug_loc 0x000000000001b826 0x4b5 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + .debug_loc 0x000000000001bcdb 0x79a esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + .debug_loc 0x000000000001c475 0x648 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + .debug_loc 0x000000000001cabd 0x226 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + .debug_loc 0x000000000001cce3 0x402 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + .debug_loc 0x000000000001d0e5 0x157 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_loc 0x000000000001d23c 0x139 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_loc 0x000000000001d375 0xbf4 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_loc 0x000000000001df69 0xa4 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) + .debug_loc 0x000000000001e00d 0x6fe esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_loc 0x000000000001e70b 0x84 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_loc 0x000000000001e78f 0x40f esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_loc 0x000000000001eb9e 0x4fa esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_loc 0x000000000001f098 0xbdc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_loc 0x000000000001fc74 0x172 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_loc 0x000000000001fde6 0x1f4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_loc 0x000000000001ffda 0x2c4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_loc 0x000000000002029e 0x3f6 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_loc 0x0000000000020694 0x35b esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_loc 0x00000000000209ef 0x1028 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_loc 0x0000000000021a17 0x256 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_loc 0x0000000000021c6d 0x220 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_loc 0x0000000000021e8d 0x13d esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_loc 0x0000000000021fca 0xb72 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .debug_loc 0x0000000000022b3c 0xb39 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_loc 0x0000000000023675 0x133 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_loc 0x00000000000237a8 0x17c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_loc 0x0000000000023924 0x1d5 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_loc 0x0000000000023af9 0xd8b esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_loc 0x0000000000024884 0x1c53 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_loc 0x00000000000264d7 0x2e27 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_loc 0x00000000000292fe 0xbc8 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_loc 0x0000000000029ec6 0x6df esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_loc 0x000000000002a5a5 0x2c88 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_loc 0x000000000002d22d 0x148c esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_loc 0x000000000002e6b9 0x473 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_loc 0x000000000002eb2c 0x159 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_loc 0x000000000002ec85 0x4a esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + .debug_loc 0x000000000002eccf 0xa1 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_loc 0x000000000002ed70 0x5d1 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_loc 0x000000000002f341 0x307 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_loc 0x000000000002f648 0x64f esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_loc 0x000000000002fc97 0x835 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .debug_loc 0x00000000000304cc 0x15bb esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_loc 0x0000000000031a87 0x32e esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_loc 0x0000000000031db5 0x4e0 esp-idf/lwip/liblwip.a(def.c.obj) + .debug_loc 0x0000000000032295 0x199b esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_loc 0x0000000000033c30 0x16 esp-idf/lwip/liblwip.a(init.c.obj) + .debug_loc 0x0000000000033c46 0x18e esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_loc 0x0000000000033dd4 0x74 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_loc 0x0000000000033e48 0x173 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_loc 0x0000000000033fbb 0xc91 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_loc 0x0000000000034c4c 0x17c1 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_loc 0x000000000003640d 0x975 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_loc 0x0000000000036d82 0x194e esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_loc 0x00000000000386d0 0xae2 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_loc 0x00000000000391b2 0x16ba esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_loc 0x000000000003a86c 0x329 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_loc 0x000000000003ab95 0xefe esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_loc 0x000000000003ba93 0x1890 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_loc 0x000000000003d323 0x121b esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_loc 0x000000000003e53e 0x1c1 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_loc 0x000000000003e6ff 0x795 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_loc 0x000000000003ee94 0x8c0 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_loc 0x000000000003f754 0x63c esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_loc 0x000000000003fd90 0x2de esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_loc 0x000000000004006e 0x1a1 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_loc 0x000000000004020f 0x1034 esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_loc 0x0000000000041243 0x726 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_loc 0x0000000000041969 0x8c4 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_loc 0x000000000004222d 0x6e0 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_loc 0x000000000004290d 0x209b esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_loc 0x00000000000449a8 0x149 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_loc 0x0000000000044af1 0x710 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_loc 0x0000000000045201 0x8ae esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_loc 0x0000000000045aaf 0x6c esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_loc 0x0000000000045b1b 0x4e5f esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_loc 0x000000000004a97a 0x10b4 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_loc 0x000000000004ba2e 0x14e6 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_loc 0x000000000004cf14 0x4a esp-idf/lwip/liblwip.a(err.c.obj) + .debug_loc 0x000000000004cf5e 0x1fe esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_loc 0x000000000004d15c 0x47f esp-idf/log/liblog.a(log.c.obj) + .debug_loc 0x000000000004d5db 0xcf esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_loc 0x000000000004d6aa 0xd82 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_loc 0x000000000004e42c 0x6d9 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_loc 0x000000000004eb05 0x2896 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_loc 0x000000000005139b 0x1c10 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_loc 0x0000000000052fab 0x2d2 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .debug_loc 0x000000000005327d 0xbce esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_loc 0x0000000000053e4b 0x336 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .debug_loc 0x0000000000054181 0x2e20 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_loc 0x0000000000056fa1 0x10f esp-idf/esp32/libesp32.a(hw_random.c.obj) + .debug_loc 0x00000000000570b0 0x722 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .debug_loc 0x00000000000577d2 0xc8 esp-idf/esp32/libesp32.a(reset_reason.c.obj) + .debug_loc 0x000000000005789a 0x994 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .debug_loc 0x000000000005822e 0x368 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + .debug_loc 0x0000000000058596 0x122 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .debug_loc 0x00000000000586b8 0x10e esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_loc 0x00000000000587c6 0x7ed esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_loc 0x0000000000058fb3 0x40d esp-idf/console/libconsole.a(commands.c.obj) + .debug_loc 0x00000000000593c0 0x321 esp-idf/console/libconsole.a(split_argv.c.obj) + .debug_loc 0x00000000000596e1 0x5400 esp-idf/console/libconsole.a(argtable3.c.obj) + .debug_loc 0x000000000005eae1 0xd0d esp-idf/console/libconsole.a(linenoise.c.obj) + .debug_loc 0x000000000005f7ee 0x11ad esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .debug_loc 0x000000000006099b 0x97e esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .debug_loc 0x0000000000061319 0x927 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .debug_loc 0x0000000000061c40 0xc11 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .debug_loc 0x0000000000062851 0x151a esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .debug_loc 0x0000000000063d6b 0x24a esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .debug_loc 0x0000000000063fb5 0x2c3 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + .debug_loc 0x0000000000064278 0x5b8 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + .debug_loc 0x0000000000064830 0x1ff esp-idf/fatfs/libfatfs.a(diskio.c.obj) + .debug_loc 0x0000000000064a2f 0x2dd esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + .debug_loc 0x0000000000064d0c 0x46e3 esp-idf/fatfs/libfatfs.a(ff.c.obj) + .debug_loc 0x00000000000693ef 0x94 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + .debug_loc 0x0000000000069483 0x1f4a esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + .debug_loc 0x000000000006b3cd 0x4bb esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + .debug_loc 0x000000000006b888 0x1ab esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + .debug_loc 0x000000000006ba33 0x161c esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + .debug_loc 0x000000000006d04f 0x25 esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) + .debug_loc 0x000000000006d074 0x25 esp-idf/newlib/libnewlib.a(select.c.obj) + .debug_loc 0x000000000006d099 0x33b esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .debug_loc 0x000000000006d3d4 0x60b esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .debug_loc 0x000000000006d9df 0xcea esp-idf/soc/libsoc.a(uart_hal.c.obj) + .debug_loc 0x000000000006e6c9 0x390 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .debug_loc 0x000000000006ea59 0x2e7 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .debug_loc 0x000000000006ed40 0xd84 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .debug_loc 0x000000000006fac4 0xb3 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + .debug_loc 0x000000000006fb77 0x161 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_loc 0x000000000006fcd8 0xf3f esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .debug_loc 0x0000000000070c17 0x2d68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_loc 0x000000000007397f 0xa88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_loc 0x0000000000074407 0x2bb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_loc 0x0000000000076fbf 0x5ccc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_loc 0x000000000007cc8b 0x86f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_loc 0x000000000007d4fa 0xbc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) + .debug_loc 0x000000000007d5b6 0x910 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_loc 0x000000000007dec6 0x382 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + .debug_loc 0x000000000007e248 0x7f5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_loc 0x000000000007ea3d 0x7be esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_loc 0x000000000007f1fb 0x522 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_loc 0x000000000007f71d 0x136d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_loc 0x0000000000080a8a 0x650 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_loc 0x00000000000810da 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_loc 0x000000000008114a 0x3956 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_loc 0x0000000000084aa0 0x70f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + .debug_loc 0x00000000000851af 0x142 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_loc 0x00000000000852f1 0x239 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_loc 0x000000000008552a 0x239 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_loc 0x0000000000085763 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_loc 0x0000000000085788 0x25 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_loc 0x00000000000857ad 0x1e9c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_loc 0x0000000000087649 0x1639 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_loc 0x0000000000088c82 0xdcc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_loc 0x0000000000089a4e 0x1a51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_loc 0x000000000008b49f 0x1023 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + .debug_loc 0x000000000008c4c2 0x661 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_loc 0x000000000008cb23 0x692 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_loc 0x000000000008d1b5 0xc52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_loc 0x000000000008de07 0x14fa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_loc 0x000000000008f301 0x2e3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_loc 0x000000000008f5e4 0xc83 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_loc 0x0000000000090267 0xbcd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .debug_loc 0x0000000000090e34 0x7e0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_loc 0x0000000000091614 0xbba esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_loc 0x00000000000921ce 0xefb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_loc 0x00000000000930c9 0x939 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_loc 0x0000000000093a02 0x87c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_loc 0x000000000009427e 0x654 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_loc 0x00000000000948d2 0xa2d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_loc 0x00000000000952ff 0x1471 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_loc 0x0000000000096770 0x30eb esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_loc 0x000000000009985b 0x691 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + .debug_loc 0x0000000000099eec 0xad6 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + .debug_loc 0x000000000009a9c2 0x75f esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + .debug_loc 0x000000000009b121 0xfa0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_loc 0x000000000009c0c1 0x5f esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_loc 0x000000000009c120 0x269 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_loc 0x000000000009c389 0x369 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_loc 0x000000000009c6f2 0x2759 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_loc 0x000000000009ee4b 0xd93 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_loc 0x000000000009fbde 0xaed esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_loc 0x00000000000a06cb 0x75d esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_loc 0x00000000000a0e28 0x69c esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_loc 0x00000000000a14c4 0x1da3 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_loc 0x00000000000a3267 0xe9f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_loc 0x00000000000a4106 0x2322 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_loc 0x00000000000a6428 0x10fb esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_loc 0x00000000000a7523 0xb66 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_loc 0x00000000000a8089 0x298 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_loc 0x00000000000a8321 0xe7 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_loc 0x00000000000a8408 0x1c1 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_loc 0x00000000000a85c9 0x8db esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_loc 0x00000000000a8ea4 0x442 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_loc 0x00000000000a92e6 0x12e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .debug_loc 0x00000000000a9414 0x42 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) + .debug_loc 0x00000000000a9456 0x1404 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .debug_loc 0x00000000000aa85a 0x3854 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .debug_loc 0x00000000000ae0ae 0x2ee5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .debug_loc 0x00000000000b0f93 0x2a3 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .debug_loc 0x00000000000b1236 0x1bd8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_loc 0x00000000000b2e0e 0x3d2e esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .debug_loc 0x00000000000b6b3c 0xde6 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .debug_loc 0x00000000000b7922 0x1178 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .debug_loc 0x00000000000b8a9a 0x1e7 esp-idf/lwip/liblwip.a(wlanif.c.obj) + .debug_loc 0x00000000000b8c81 0x7c esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_loc 0x00000000000b8cfd 0x6735 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_loc 0x00000000000bf432 0xd42 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .debug_loc 0x00000000000c0174 0x3a2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_loc 0x00000000000c0516 0x2b8e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + .debug_loc 0x00000000000c30a4 0x32ce esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + .debug_loc 0x00000000000c6372 0xc68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + .debug_loc 0x00000000000c6fda 0x666 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_loc 0x00000000000c7640 0x610 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .debug_loc 0x00000000000c7c50 0x4f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .debug_loc 0x00000000000c7c9f 0x4c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + .debug_loc 0x00000000000c7ceb 0x25 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + .debug_loc 0x00000000000c7d10 0x1fc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .debug_loc 0x00000000000c7f0c 0x9e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .debug_loc 0x00000000000c7faa 0xe5a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + .debug_loc 0x00000000000c8e04 0x20a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .debug_loc 0x00000000000c900e 0x150 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .debug_loc 0x00000000000c915e 0xbe /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .debug_loc 0x00000000000c921c 0xac9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .debug_loc 0x00000000000c9ce5 0x7e1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + .debug_loc 0x00000000000ca4c6 0xa12 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_loc 0x00000000000caed8 0x94c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + .debug_loc 0x00000000000cb824 0x13a1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + .debug_loc 0x00000000000ccbc5 0x1809 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + .debug_loc 0x00000000000ce3ce 0x74 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) + .debug_loc 0x00000000000ce442 0x25 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + .debug_loc 0x00000000000ce467 0x4c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + .debug_loc 0x00000000000ce4b3 0xe0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) + .debug_loc 0x00000000000ce593 0x20c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .debug_loc 0x00000000000ce79f 0x68 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) + .debug_loc 0x00000000000ce807 0x74 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + .debug_loc 0x00000000000ce87b 0xea /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .debug_loc 0x00000000000ce965 0x74 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + .debug_loc 0x00000000000ce9d9 0xa6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + .debug_loc 0x00000000000cea7f 0xa6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .debug_loc 0x00000000000ceb25 0x1ef /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .debug_loc 0x00000000000ced14 0x9e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .debug_loc 0x00000000000cedb2 0x3af /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .debug_loc 0x00000000000cf161 0x9e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + .debug_loc 0x00000000000cf1ff 0xfa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + .debug_loc 0x00000000000cf2f9 0x10d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + .debug_loc 0x00000000000cf406 0x803 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + .debug_loc 0x00000000000cfc09 0xb1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .debug_loc 0x00000000000cfcba 0x1e0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .debug_loc 0x00000000000cfe9a 0xea /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .debug_loc 0x00000000000cff84 0x483 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + .debug_loc 0x00000000000d0407 0x89 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .debug_loc 0x00000000000d0490 0x161 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .debug_loc 0x00000000000d05f1 0x5f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .debug_loc 0x00000000000d0650 0xfe /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .debug_loc 0x00000000000d074e 0x44 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .debug_loc 0x00000000000d0792 0x91 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) + .debug_loc 0x00000000000d0823 0x214 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .debug_loc 0x00000000000d0a37 0x147 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .debug_loc 0x00000000000d0b7e 0xc5 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + .debug_loc 0x00000000000d0c43 0x99 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + .debug_loc 0x00000000000d0cdc 0x1470 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .debug_loc 0x00000000000d214c 0x49a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .debug_loc 0x00000000000d25e6 0x468 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .debug_loc 0x00000000000d2a4e 0x3e12 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .debug_loc 0x00000000000d6860 0x2315 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + .debug_loc 0x00000000000d8b75 0x25 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .debug_loc 0x00000000000d8b9a 0x270a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .debug_loc 0x00000000000db2a4 0x3ee7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .debug_loc 0x00000000000df18b 0x5f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .debug_loc 0x00000000000df1ea 0xbe /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + .debug_loc 0x00000000000df2a8 0x190a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .debug_loc 0x00000000000e0bb2 0x10c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .debug_loc 0x00000000000e0cbe 0xcee /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + .debug_loc 0x00000000000e19ac 0x50a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + .debug_loc 0x00000000000e1eb6 0x4a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) + .debug_loc 0x00000000000e1f00 0x25 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .debug_loc 0x00000000000e1f25 0xc9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .debug_loc 0x00000000000e1fee 0xef /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .debug_loc 0x00000000000e20dd 0x17ae /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .debug_loc 0x00000000000e388b 0xe2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .debug_loc 0x00000000000e396d 0x25 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + .debug_loc 0x00000000000e3992 0x288d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .debug_loc 0x00000000000e621f 0x2068 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + +.debug_aranges 0x0000000000000000 0xb4e8 + .debug_aranges + 0x0000000000000000 0x28 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .debug_aranges + 0x0000000000000028 0x160 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_aranges + 0x0000000000000188 0x60 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_aranges + 0x00000000000001e8 0x60 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + .debug_aranges + 0x0000000000000248 0x40 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .debug_aranges + 0x0000000000000288 0x68 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .debug_aranges + 0x00000000000002f0 0x20 esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) + .debug_aranges + 0x0000000000000310 0x30 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + .debug_aranges + 0x0000000000000340 0xd0 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .debug_aranges + 0x0000000000000410 0xe8 esp-idf/esp32/libesp32.a(panic.c.obj) + .debug_aranges + 0x00000000000004f8 0x28 esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + .debug_aranges + 0x0000000000000520 0x70 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .debug_aranges + 0x0000000000000590 0x28 esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + .debug_aranges + 0x00000000000005b8 0x58 esp-idf/esp32/libesp32.a(clk.c.obj) + .debug_aranges + 0x0000000000000610 0x28 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + .debug_aranges + 0x0000000000000638 0x28 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_aranges + 0x0000000000000660 0x68 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .debug_aranges + 0x00000000000006c8 0x40 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .debug_aranges + 0x0000000000000708 0xb8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_aranges + 0x00000000000007c0 0x78 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_aranges + 0x0000000000000838 0x90 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_aranges + 0x00000000000008c8 0x20 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_aranges + 0x00000000000008e8 0x20 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .debug_aranges + 0x0000000000000908 0x28 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_aranges + 0x0000000000000930 0x20 esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) + .debug_aranges + 0x0000000000000950 0x30 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + .debug_aranges + 0x0000000000000980 0x70 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .debug_aranges + 0x00000000000009f0 0x18 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .debug_aranges + 0x0000000000000a08 0x130 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_aranges + 0x0000000000000b38 0x260 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_aranges + 0x0000000000000d98 0xc0 esp-idf/freertos/libfreertos.a(timers.c.obj) + .debug_aranges + 0x0000000000000e58 0x20 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .debug_aranges + 0x0000000000000e78 0x40 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_aranges + 0x0000000000000eb8 0x1b0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_aranges + 0x0000000000001068 0xf8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_aranges + 0x0000000000001160 0x90 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_aranges + 0x00000000000011f0 0x80 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_aranges + 0x0000000000001270 0x40 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_aranges + 0x00000000000012b0 0x28 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_aranges + 0x00000000000012d8 0x28 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + .debug_aranges + 0x0000000000001300 0x68 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_aranges + 0x0000000000001368 0xd8 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_aranges + 0x0000000000001440 0x40 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_aranges + 0x0000000000001480 0x50 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_aranges + 0x00000000000014d0 0x38 esp-idf/main/libmain.a(main.c.obj) + .debug_aranges + 0x0000000000001508 0x30 esp-idf/ca/libca.a(ca.c.obj) + .debug_aranges + 0x0000000000001538 0x48 esp-idf/ca/libca.a(gen_key.c.obj) + .debug_aranges + 0x0000000000001580 0x98 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .debug_aranges + 0x0000000000001618 0x90 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + .debug_aranges + 0x00000000000016a8 0x40 esp-idf/wifi/libwifi.a(wifi.c.obj) + .debug_aranges + 0x00000000000016e8 0x60 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + .debug_aranges + 0x0000000000001748 0x20 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) + .debug_aranges + 0x0000000000001768 0x28 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .debug_aranges + 0x0000000000001790 0x30 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .debug_aranges + 0x00000000000017c0 0x38 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .debug_aranges + 0x00000000000017f8 0x108 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .debug_aranges + 0x0000000000001900 0x30 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .debug_aranges + 0x0000000000001930 0x50 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .debug_aranges + 0x0000000000001980 0x78 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .debug_aranges + 0x00000000000019f8 0x60 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_aranges + 0x0000000000001a58 0x278 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_aranges + 0x0000000000001cd0 0x58 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + .debug_aranges + 0x0000000000001d28 0x60 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_aranges + 0x0000000000001d88 0xd0 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_aranges + 0x0000000000001e58 0x48 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + .debug_aranges + 0x0000000000001ea0 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_aranges + 0x0000000000001eb8 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .debug_aranges + 0x0000000000001ef8 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + .debug_aranges + 0x0000000000001f20 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_aranges + 0x0000000000001f40 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + .debug_aranges + 0x0000000000001f80 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) + .debug_aranges + 0x0000000000001fa0 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + .debug_aranges + 0x0000000000001fd0 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + .debug_aranges + 0x0000000000002008 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + .debug_aranges + 0x0000000000002048 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + .debug_aranges + 0x0000000000002080 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + .debug_aranges + 0x00000000000020a0 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + .debug_aranges + 0x00000000000020e0 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_aranges + 0x0000000000002100 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_aranges + 0x0000000000002120 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_aranges + 0x0000000000002178 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) + .debug_aranges + 0x0000000000002198 0x60 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_aranges + 0x00000000000021f8 0x38 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_aranges + 0x0000000000002230 0x50 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_aranges + 0x0000000000002280 0x78 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_aranges + 0x00000000000022f8 0xb8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_aranges + 0x00000000000023b0 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_aranges + 0x00000000000023c8 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_aranges + 0x00000000000023f8 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_aranges + 0x0000000000002438 0x78 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_aranges + 0x00000000000024b0 0x78 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_aranges + 0x0000000000002528 0x70 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_aranges + 0x0000000000002598 0xf0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_aranges + 0x0000000000002688 0x40 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_aranges + 0x00000000000026c8 0x58 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_aranges + 0x0000000000002720 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_aranges + 0x0000000000002758 0xa8 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .debug_aranges + 0x0000000000002800 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_aranges + 0x0000000000002818 0xe8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_aranges + 0x0000000000002900 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_aranges + 0x0000000000002930 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_aranges + 0x0000000000002960 0x68 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_aranges + 0x00000000000029c8 0x80 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_aranges + 0x0000000000002a48 0x278 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_aranges + 0x0000000000002cc0 0xd0 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_aranges + 0x0000000000002d90 0x68 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_aranges + 0x0000000000002df8 0x50 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_aranges + 0x0000000000002e48 0x108 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_aranges + 0x0000000000002f50 0x38 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_aranges + 0x0000000000002f88 0xa8 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_aranges + 0x0000000000003030 0x30 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_aranges + 0x0000000000003060 0x28 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + .debug_aranges + 0x0000000000003088 0x30 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_aranges + 0x00000000000030b8 0xc0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_aranges + 0x0000000000003178 0x68 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_aranges + 0x00000000000031e0 0x1f8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_aranges + 0x00000000000033d8 0xb8 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .debug_aranges + 0x0000000000003490 0xd8 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_aranges + 0x0000000000003568 0xa0 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_aranges + 0x0000000000003608 0x48 esp-idf/lwip/liblwip.a(def.c.obj) + .debug_aranges + 0x0000000000003650 0xc8 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_aranges + 0x0000000000003718 0x20 esp-idf/lwip/liblwip.a(init.c.obj) + .debug_aranges + 0x0000000000003738 0x38 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_aranges + 0x0000000000003770 0x40 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_aranges + 0x00000000000037b0 0x58 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_aranges + 0x0000000000003808 0x140 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_aranges + 0x0000000000003948 0x140 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_aranges + 0x0000000000003a88 0x88 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_aranges + 0x0000000000003b10 0x1d0 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_aranges + 0x0000000000003ce0 0x70 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_aranges + 0x0000000000003d50 0xd8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_aranges + 0x0000000000003e28 0x68 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_aranges + 0x0000000000003e90 0xa0 esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_aranges + 0x0000000000003f30 0x150 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_aranges + 0x0000000000004080 0x98 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_aranges + 0x0000000000004118 0x30 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_aranges + 0x0000000000004148 0xb0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_aranges + 0x00000000000041f8 0x78 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_aranges + 0x0000000000004270 0x48 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_aranges + 0x00000000000042b8 0x20 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_aranges + 0x00000000000042d8 0x60 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_aranges + 0x0000000000004338 0x58 esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_aranges + 0x0000000000004390 0x30 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_aranges + 0x00000000000043c0 0x40 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_aranges + 0x0000000000004400 0x88 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_aranges + 0x0000000000004488 0x118 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_aranges + 0x00000000000045a0 0x28 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_aranges + 0x00000000000045c8 0xf8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_aranges + 0x00000000000046c0 0x70 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_aranges + 0x0000000000004730 0x48 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_aranges + 0x0000000000004778 0x250 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_aranges + 0x00000000000049c8 0x120 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_aranges + 0x0000000000004ae8 0x138 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_aranges + 0x0000000000004c20 0x28 esp-idf/lwip/liblwip.a(err.c.obj) + .debug_aranges + 0x0000000000004c48 0x60 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_aranges + 0x0000000000004ca8 0x38 esp-idf/log/liblog.a(log.c.obj) + .debug_aranges + 0x0000000000004ce0 0x48 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_aranges + 0x0000000000004d28 0xf8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_aranges + 0x0000000000004e20 0x40 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_aranges + 0x0000000000004e60 0xc8 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_aranges + 0x0000000000004f28 0x140 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_aranges + 0x0000000000005068 0x58 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .debug_aranges + 0x00000000000050c0 0xb0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_aranges + 0x0000000000005170 0x38 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .debug_aranges + 0x00000000000051a8 0x218 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_aranges + 0x00000000000053c0 0x28 esp-idf/esp32/libesp32.a(hw_random.c.obj) + .debug_aranges + 0x00000000000053e8 0x78 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .debug_aranges + 0x0000000000005460 0x48 esp-idf/esp32/libesp32.a(reset_reason.c.obj) + .debug_aranges + 0x00000000000054a8 0xf8 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .debug_aranges + 0x00000000000055a0 0x48 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + .debug_aranges + 0x00000000000055e8 0x48 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .debug_aranges + 0x0000000000005630 0x58 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_aranges + 0x0000000000005688 0x80 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_aranges + 0x0000000000005708 0x60 esp-idf/console/libconsole.a(commands.c.obj) + .debug_aranges + 0x0000000000005768 0x20 esp-idf/console/libconsole.a(split_argv.c.obj) + .debug_aranges + 0x0000000000005788 0x368 esp-idf/console/libconsole.a(argtable3.c.obj) + .debug_aranges + 0x0000000000005af0 0x158 esp-idf/console/libconsole.a(linenoise.c.obj) + .debug_aranges + 0x0000000000005c48 0xc8 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .debug_aranges + 0x0000000000005d10 0x58 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .debug_aranges + 0x0000000000005d68 0xb8 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .debug_aranges + 0x0000000000005e20 0x80 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .debug_aranges + 0x0000000000005ea0 0xd8 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .debug_aranges + 0x0000000000005f78 0x38 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .debug_aranges + 0x0000000000005fb0 0x60 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + .debug_aranges + 0x0000000000006010 0x38 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + .debug_aranges + 0x0000000000006048 0x58 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + .debug_aranges + 0x00000000000060a0 0x58 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + .debug_aranges + 0x00000000000060f8 0x1e0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + .debug_aranges + 0x00000000000062d8 0x48 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + .debug_aranges + 0x0000000000006320 0x120 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + .debug_aranges + 0x0000000000006440 0x58 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + .debug_aranges + 0x0000000000006498 0x68 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + .debug_aranges + 0x0000000000006500 0xc8 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + .debug_aranges + 0x00000000000065c8 0x20 esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) + .debug_aranges + 0x00000000000065e8 0x20 esp-idf/newlib/libnewlib.a(select.c.obj) + .debug_aranges + 0x0000000000006608 0x40 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .debug_aranges + 0x0000000000006648 0x30 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .debug_aranges + 0x0000000000006678 0xe0 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .debug_aranges + 0x0000000000006758 0x40 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .debug_aranges + 0x0000000000006798 0x30 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .debug_aranges + 0x00000000000067c8 0x70 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .debug_aranges + 0x0000000000006838 0x38 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + .debug_aranges + 0x0000000000006870 0x18 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + .debug_aranges + 0x0000000000006888 0x18 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .debug_aranges + 0x00000000000068a0 0x18 esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + .debug_aranges + 0x00000000000068b8 0x18 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) + .debug_aranges + 0x00000000000068d0 0x40 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_aranges + 0x0000000000006910 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .debug_aranges + 0x0000000000006928 0x18 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .debug_aranges + 0x0000000000006940 0x170 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .debug_aranges + 0x0000000000006ab0 0x1c0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_aranges + 0x0000000000006c70 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_aranges + 0x0000000000006d18 0x1e8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_aranges + 0x0000000000006f00 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_aranges + 0x0000000000006f78 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_aranges + 0x0000000000007008 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) + .debug_aranges + 0x0000000000007028 0xc8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_aranges + 0x00000000000070f0 0x128 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + .debug_aranges + 0x0000000000007218 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_aranges + 0x00000000000072c0 0x110 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_aranges + 0x00000000000073d0 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_aranges + 0x0000000000007408 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_aranges + 0x00000000000074b0 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_aranges + 0x0000000000007508 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_aranges + 0x0000000000007548 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_aranges + 0x0000000000007568 0x158 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_aranges + 0x00000000000076c0 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + .debug_aranges + 0x0000000000007700 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_aranges + 0x0000000000007730 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_aranges + 0x0000000000007760 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_aranges + 0x0000000000007790 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_aranges + 0x00000000000077b0 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_aranges + 0x00000000000077d8 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_aranges + 0x0000000000007858 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_aranges + 0x00000000000078d8 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_aranges + 0x0000000000007958 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_aranges + 0x00000000000079d0 0xc8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + .debug_aranges + 0x0000000000007a98 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_aranges + 0x0000000000007b00 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_aranges + 0x0000000000007b80 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_aranges + 0x0000000000007c20 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_aranges + 0x0000000000007d20 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_aranges + 0x0000000000007dd8 0xa0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_aranges + 0x0000000000007e78 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .debug_aranges + 0x0000000000007ee8 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_aranges + 0x0000000000007f80 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_aranges + 0x0000000000008008 0xe8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_aranges + 0x00000000000080f0 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_aranges + 0x0000000000008140 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_aranges + 0x0000000000008188 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_aranges + 0x00000000000081b8 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_aranges + 0x0000000000008218 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_aranges + 0x00000000000082d8 0x188 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_aranges + 0x0000000000008460 0x50 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + .debug_aranges + 0x00000000000084b0 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + .debug_aranges + 0x0000000000008568 0x58 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + .debug_aranges + 0x00000000000085c0 0xe0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_aranges + 0x00000000000086a0 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_aranges + 0x00000000000086d0 0x98 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_aranges + 0x0000000000008768 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_aranges + 0x00000000000087b8 0x1b8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_aranges + 0x0000000000008970 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_aranges + 0x00000000000089b8 0x78 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_aranges + 0x0000000000008a30 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_aranges + 0x0000000000008a98 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_aranges + 0x0000000000008ad0 0x1f8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_aranges + 0x0000000000008cc8 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_aranges + 0x0000000000008d20 0x158 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_aranges + 0x0000000000008e78 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_aranges + 0x0000000000008f08 0x138 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_aranges + 0x0000000000009040 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_aranges + 0x0000000000009070 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_aranges + 0x0000000000009098 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_aranges + 0x00000000000090e0 0x90 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_aranges + 0x0000000000009170 0x68 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_aranges + 0x00000000000091d8 0xa8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .debug_aranges + 0x0000000000009280 0x30 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) + .debug_aranges + 0x00000000000092b0 0x1a8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .debug_aranges + 0x0000000000009458 0x328 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .debug_aranges + 0x0000000000009780 0x1a0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .debug_aranges + 0x0000000000009920 0x70 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .debug_aranges + 0x0000000000009990 0x160 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_aranges + 0x0000000000009af0 0x98 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .debug_aranges + 0x0000000000009b88 0xe0 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .debug_aranges + 0x0000000000009c68 0xb0 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .debug_aranges + 0x0000000000009d18 0x50 esp-idf/lwip/liblwip.a(wlanif.c.obj) + .debug_aranges + 0x0000000000009d68 0x20 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_aranges + 0x0000000000009d88 0x640 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_aranges + 0x000000000000a3c8 0x80 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .debug_aranges + 0x000000000000a448 0x68 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_aranges + 0x000000000000a4b0 0x148 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + .debug_aranges + 0x000000000000a5f8 0x158 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + .debug_aranges + 0x000000000000a750 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + .debug_aranges + 0x000000000000a7e0 0xd0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_aranges + 0x000000000000a8b0 0xc0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .debug_aranges + 0x000000000000a970 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + .debug_aranges + 0x000000000000a990 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + .debug_aranges + 0x000000000000a9b0 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .debug_aranges + 0x000000000000a9d8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + .debug_aranges + 0x000000000000a9f8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + .debug_aranges + 0x000000000000aa18 0x48 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .debug_aranges + 0x000000000000aa60 0x58 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .debug_aranges + 0x000000000000aab8 0x70 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + .debug_aranges + 0x000000000000ab28 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + .debug_aranges + 0x000000000000ab48 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .debug_aranges + 0x000000000000ab88 0x58 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .debug_aranges + 0x000000000000abe0 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .debug_aranges + 0x000000000000ac20 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + .debug_aranges + 0x000000000000ac38 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + .debug_aranges + 0x000000000000ac50 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfdi.o) + .debug_aranges + 0x000000000000ac70 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .debug_aranges + 0x000000000000ac90 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + .debug_aranges + 0x000000000000acb0 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_aranges + 0x000000000000acd0 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + .debug_aranges + 0x000000000000acf0 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + .debug_aranges + 0x000000000000ad10 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + .debug_aranges + 0x000000000000ad30 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(lib2funcs.o) + .debug_aranges + 0x000000000000ad50 0x20 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) + .debug_aranges + 0x000000000000ad70 0x20 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(int_asm--set_intclear.o) + .debug_aranges + 0x000000000000ad90 0x18 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) + .debug_aranges + 0x000000000000ada8 0x20 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--restore_extra_nw.o) + .debug_aranges + 0x000000000000adc8 0x20 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--save_extra_nw.o) + .debug_aranges + 0x000000000000ade8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) + .debug_aranges + 0x000000000000ae08 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + .debug_aranges + 0x000000000000ae28 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .debug_aranges + 0x000000000000ae48 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + .debug_aranges + 0x000000000000ae68 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) + .debug_aranges + 0x000000000000ae88 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .debug_aranges + 0x000000000000aea8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) + .debug_aranges + 0x000000000000aec8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + .debug_aranges + 0x000000000000aee8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .debug_aranges + 0x000000000000af08 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + .debug_aranges + 0x000000000000af28 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + .debug_aranges + 0x000000000000af48 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .debug_aranges + 0x000000000000af68 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .debug_aranges + 0x000000000000af88 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .debug_aranges + 0x000000000000afa8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .debug_aranges + 0x000000000000afc8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + .debug_aranges + 0x000000000000afe8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + .debug_aranges + 0x000000000000b008 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + .debug_aranges + 0x000000000000b028 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + .debug_aranges + 0x000000000000b048 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .debug_aranges + 0x000000000000b068 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .debug_aranges + 0x000000000000b088 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .debug_aranges + 0x000000000000b0a8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + .debug_aranges + 0x000000000000b0c8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .debug_aranges + 0x000000000000b0e8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .debug_aranges + 0x000000000000b108 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .debug_aranges + 0x000000000000b128 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .debug_aranges + 0x000000000000b148 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .debug_aranges + 0x000000000000b168 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) + .debug_aranges + 0x000000000000b188 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .debug_aranges + 0x000000000000b1a8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .debug_aranges + 0x000000000000b1c8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + .debug_aranges + 0x000000000000b1e8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + .debug_aranges + 0x000000000000b208 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .debug_aranges + 0x000000000000b228 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .debug_aranges + 0x000000000000b248 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .debug_aranges + 0x000000000000b268 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .debug_aranges + 0x000000000000b288 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + .debug_aranges + 0x000000000000b2a8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .debug_aranges + 0x000000000000b2c8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .debug_aranges + 0x000000000000b2e8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .debug_aranges + 0x000000000000b308 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .debug_aranges + 0x000000000000b328 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + .debug_aranges + 0x000000000000b348 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .debug_aranges + 0x000000000000b368 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .debug_aranges + 0x000000000000b388 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + .debug_aranges + 0x000000000000b3a8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + .debug_aranges + 0x000000000000b3c8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) + .debug_aranges + 0x000000000000b3e8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .debug_aranges + 0x000000000000b408 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .debug_aranges + 0x000000000000b428 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .debug_aranges + 0x000000000000b448 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .debug_aranges + 0x000000000000b468 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .debug_aranges + 0x000000000000b488 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + .debug_aranges + 0x000000000000b4a8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .debug_aranges + 0x000000000000b4c8 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + +.debug_ranges 0x0000000000000000 0xca98 + .debug_ranges 0x0000000000000000 0x18 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .debug_ranges 0x0000000000000018 0x1a8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_ranges 0x00000000000001c0 0x50 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_ranges 0x0000000000000210 0x50 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + .debug_ranges 0x0000000000000260 0x30 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .debug_ranges 0x0000000000000290 0x58 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .debug_ranges 0x00000000000002e8 0x20 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + .debug_ranges 0x0000000000000308 0x138 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .debug_ranges 0x0000000000000440 0x130 esp-idf/esp32/libesp32.a(panic.c.obj) + .debug_ranges 0x0000000000000570 0x18 esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + .debug_ranges 0x0000000000000588 0x78 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .debug_ranges 0x0000000000000600 0x18 esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + .debug_ranges 0x0000000000000618 0x48 esp-idf/esp32/libesp32.a(clk.c.obj) + .debug_ranges 0x0000000000000660 0x18 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + .debug_ranges 0x0000000000000678 0x18 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_ranges 0x0000000000000690 0x70 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .debug_ranges 0x0000000000000700 0x30 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .debug_ranges 0x0000000000000730 0xa8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_ranges 0x00000000000007d8 0x68 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_ranges 0x0000000000000840 0x80 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_ranges 0x00000000000008c0 0x18 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_ranges 0x00000000000008d8 0x20 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + .debug_ranges 0x00000000000008f8 0x68 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .debug_ranges 0x0000000000000960 0x120 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_ranges 0x0000000000000a80 0x2f8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_ranges 0x0000000000000d78 0xc8 esp-idf/freertos/libfreertos.a(timers.c.obj) + .debug_ranges 0x0000000000000e40 0x30 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_ranges 0x0000000000000e70 0x230 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_ranges 0x00000000000010a0 0x1d0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_ranges 0x0000000000001270 0x80 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_ranges 0x00000000000012f0 0x70 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_ranges 0x0000000000001360 0x30 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_ranges 0x0000000000001390 0x48 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_ranges 0x00000000000013d8 0x18 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + .debug_ranges 0x00000000000013f0 0x58 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_ranges 0x0000000000001448 0xe0 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_ranges 0x0000000000001528 0x30 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_ranges 0x0000000000001558 0x40 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_ranges 0x0000000000001598 0x28 esp-idf/main/libmain.a(main.c.obj) + .debug_ranges 0x00000000000015c0 0x20 esp-idf/ca/libca.a(ca.c.obj) + .debug_ranges 0x00000000000015e0 0x50 esp-idf/ca/libca.a(gen_key.c.obj) + .debug_ranges 0x0000000000001630 0x88 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .debug_ranges 0x00000000000016b8 0x80 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + .debug_ranges 0x0000000000001738 0x30 esp-idf/wifi/libwifi.a(wifi.c.obj) + .debug_ranges 0x0000000000001768 0x50 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + .debug_ranges 0x00000000000017b8 0x10 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) + .debug_ranges 0x00000000000017c8 0x18 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .debug_ranges 0x00000000000017e0 0x20 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .debug_ranges 0x0000000000001800 0x28 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .debug_ranges 0x0000000000001828 0x110 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .debug_ranges 0x0000000000001938 0x20 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .debug_ranges 0x0000000000001958 0x40 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .debug_ranges 0x0000000000001998 0x68 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .debug_ranges 0x0000000000001a00 0x50 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_ranges 0x0000000000001a50 0x298 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_ranges 0x0000000000001ce8 0x48 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + .debug_ranges 0x0000000000001d30 0x50 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_ranges 0x0000000000001d80 0x120 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_ranges 0x0000000000001ea0 0x38 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + .debug_ranges 0x0000000000001ed8 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .debug_ranges 0x0000000000001f08 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + .debug_ranges 0x0000000000001f20 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_ranges 0x0000000000001f30 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + .debug_ranges 0x0000000000001f60 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) + .debug_ranges 0x0000000000001f70 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + .debug_ranges 0x0000000000001f90 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + .debug_ranges 0x0000000000001fb8 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + .debug_ranges 0x0000000000001fe8 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + .debug_ranges 0x0000000000002010 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + .debug_ranges 0x0000000000002020 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + .debug_ranges 0x0000000000002050 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_ranges 0x0000000000002060 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_ranges 0x0000000000002070 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_ranges 0x00000000000020b8 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) + .debug_ranges 0x00000000000020e0 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_ranges 0x0000000000002130 0x28 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_ranges 0x0000000000002158 0xe8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_ranges 0x0000000000002240 0x80 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_ranges 0x00000000000022c0 0xf0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_ranges 0x00000000000023b0 0x38 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_ranges 0x00000000000023e8 0x120 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_ranges 0x0000000000002508 0x80 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_ranges 0x0000000000002588 0x68 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_ranges 0x00000000000025f0 0x78 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_ranges 0x0000000000002668 0xf8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_ranges 0x0000000000002760 0x30 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_ranges 0x0000000000002790 0x48 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_ranges 0x00000000000027d8 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_ranges 0x0000000000002800 0xb8 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .debug_ranges 0x00000000000028b8 0xd8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_ranges 0x0000000000002990 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_ranges 0x00000000000029b0 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_ranges 0x00000000000029d0 0x58 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_ranges 0x0000000000002a28 0xf0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_ranges 0x0000000000002b18 0x280 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_ranges 0x0000000000002d98 0x560 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_ranges 0x00000000000032f8 0x58 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_ranges 0x0000000000003350 0x58 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_ranges 0x00000000000033a8 0x3c8 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_ranges 0x0000000000003770 0x148 esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_ranges 0x00000000000038b8 0x98 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_ranges 0x0000000000003950 0x20 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_ranges 0x0000000000003970 0x18 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + .debug_ranges 0x0000000000003988 0x20 esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_ranges 0x00000000000039a8 0xb0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_ranges 0x0000000000003a58 0x58 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_ranges 0x0000000000003ab0 0x1e8 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_ranges 0x0000000000003c98 0xa8 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .debug_ranges 0x0000000000003d40 0xc8 esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_ranges 0x0000000000003e08 0x90 esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_ranges 0x0000000000003e98 0x98 esp-idf/lwip/liblwip.a(def.c.obj) + .debug_ranges 0x0000000000003f30 0xe8 esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_ranges 0x0000000000004018 0x10 esp-idf/lwip/liblwip.a(init.c.obj) + .debug_ranges 0x0000000000004028 0x28 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_ranges 0x0000000000004050 0x30 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_ranges 0x0000000000004080 0x48 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_ranges 0x00000000000040c8 0x130 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_ranges 0x00000000000041f8 0x178 esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_ranges 0x0000000000004370 0x90 esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_ranges 0x0000000000004400 0x208 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_ranges 0x0000000000004608 0x60 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_ranges 0x0000000000004668 0xf8 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_ranges 0x0000000000004760 0x58 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_ranges 0x00000000000047b8 0x90 esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_ranges 0x0000000000004848 0x188 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_ranges 0x00000000000049d0 0xd0 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_ranges 0x0000000000004aa0 0x20 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_ranges 0x0000000000004ac0 0xa0 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_ranges 0x0000000000004b60 0xf8 esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_ranges 0x0000000000004c58 0x38 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_ranges 0x0000000000004c90 0x10 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_ranges 0x0000000000004ca0 0x50 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_ranges 0x0000000000004cf0 0x60 esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_ranges 0x0000000000004d50 0x20 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_ranges 0x0000000000004d70 0x30 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_ranges 0x0000000000004da0 0x90 esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_ranges 0x0000000000004e30 0x108 esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_ranges 0x0000000000004f38 0x18 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_ranges 0x0000000000004f50 0xe8 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_ranges 0x0000000000005038 0x60 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_ranges 0x0000000000005098 0x38 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_ranges 0x00000000000050d0 0x3a0 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_ranges 0x0000000000005470 0x170 esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_ranges 0x00000000000055e0 0x188 esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_ranges 0x0000000000005768 0x18 esp-idf/lwip/liblwip.a(err.c.obj) + .debug_ranges 0x0000000000005780 0x50 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_ranges 0x00000000000057d0 0x28 esp-idf/log/liblog.a(log.c.obj) + .debug_ranges 0x00000000000057f8 0x38 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_ranges 0x0000000000005830 0x208 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_ranges 0x0000000000005a38 0x90 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_ranges 0x0000000000005ac8 0x140 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_ranges 0x0000000000005c08 0x1e8 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_ranges 0x0000000000005df0 0x48 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .debug_ranges 0x0000000000005e38 0xe8 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_ranges 0x0000000000005f20 0x28 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .debug_ranges 0x0000000000005f48 0x208 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_ranges 0x0000000000006150 0x18 esp-idf/esp32/libesp32.a(hw_random.c.obj) + .debug_ranges 0x0000000000006168 0x68 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .debug_ranges 0x00000000000061d0 0x38 esp-idf/esp32/libesp32.a(reset_reason.c.obj) + .debug_ranges 0x0000000000006208 0x148 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .debug_ranges 0x0000000000006350 0x38 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + .debug_ranges 0x0000000000006388 0x50 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .debug_ranges 0x00000000000063d8 0x48 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_ranges 0x0000000000006420 0x88 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_ranges 0x00000000000064a8 0x50 esp-idf/console/libconsole.a(commands.c.obj) + .debug_ranges 0x00000000000064f8 0x28 esp-idf/console/libconsole.a(split_argv.c.obj) + .debug_ranges 0x0000000000006520 0x400 esp-idf/console/libconsole.a(argtable3.c.obj) + .debug_ranges 0x0000000000006920 0x178 esp-idf/console/libconsole.a(linenoise.c.obj) + .debug_ranges 0x0000000000006a98 0xe8 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .debug_ranges 0x0000000000006b80 0x60 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .debug_ranges 0x0000000000006be0 0xa8 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .debug_ranges 0x0000000000006c88 0xa0 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .debug_ranges 0x0000000000006d28 0x148 esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .debug_ranges 0x0000000000006e70 0x28 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .debug_ranges 0x0000000000006e98 0x68 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + .debug_ranges 0x0000000000006f00 0x48 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + .debug_ranges 0x0000000000006f48 0x48 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + .debug_ranges 0x0000000000006f90 0x48 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + .debug_ranges 0x0000000000006fd8 0x1d0 esp-idf/fatfs/libfatfs.a(ff.c.obj) + .debug_ranges 0x00000000000071a8 0x38 esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + .debug_ranges 0x00000000000071e0 0x110 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + .debug_ranges 0x00000000000072f0 0x48 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + .debug_ranges 0x0000000000007338 0x58 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + .debug_ranges 0x0000000000007390 0x148 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + .debug_ranges 0x00000000000074d8 0x10 esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) + .debug_ranges 0x00000000000074e8 0x10 esp-idf/newlib/libnewlib.a(select.c.obj) + .debug_ranges 0x00000000000074f8 0x58 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .debug_ranges 0x0000000000007550 0x20 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .debug_ranges 0x0000000000007570 0x120 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .debug_ranges 0x0000000000007690 0x30 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .debug_ranges 0x00000000000076c0 0x20 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .debug_ranges 0x00000000000076e0 0x60 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .debug_ranges 0x0000000000007740 0x28 esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + .debug_ranges 0x0000000000007768 0x30 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_ranges 0x0000000000007798 0x160 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .debug_ranges 0x00000000000078f8 0x1b0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_ranges 0x0000000000007aa8 0x98 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_ranges 0x0000000000007b40 0x1d8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_ranges 0x0000000000007d18 0x110 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_ranges 0x0000000000007e28 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_ranges 0x0000000000007ea8 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) + .debug_ranges 0x0000000000007eb8 0xb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_ranges 0x0000000000007f70 0x118 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + .debug_ranges 0x0000000000008088 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_ranges 0x0000000000008138 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_ranges 0x0000000000008238 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_ranges 0x0000000000008260 0xb0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_ranges 0x0000000000008310 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_ranges 0x0000000000008388 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_ranges 0x00000000000083b8 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_ranges 0x00000000000083c8 0x160 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_ranges 0x0000000000008528 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + .debug_ranges 0x0000000000008558 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_ranges 0x0000000000008578 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_ranges 0x0000000000008598 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_ranges 0x00000000000085b8 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_ranges 0x00000000000085c8 0x18 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_ranges 0x00000000000085e0 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_ranges 0x0000000000008650 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_ranges 0x00000000000086c0 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_ranges 0x0000000000008730 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_ranges 0x0000000000008798 0xd8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + .debug_ranges 0x0000000000008870 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_ranges 0x00000000000088f8 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_ranges 0x0000000000008968 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_ranges 0x0000000000008a10 0x108 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_ranges 0x0000000000008b18 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_ranges 0x0000000000008bc0 0x90 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_ranges 0x0000000000008c50 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .debug_ranges 0x0000000000008cc8 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_ranges 0x0000000000008d50 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_ranges 0x0000000000008dc8 0xd8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_ranges 0x0000000000008ea0 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_ranges 0x0000000000008ee0 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_ranges 0x0000000000008f18 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_ranges 0x0000000000008f38 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_ranges 0x0000000000008f88 0xe0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_ranges 0x0000000000009068 0x1a8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_ranges 0x0000000000009210 0x40 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + .debug_ranges 0x0000000000009250 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + .debug_ranges 0x00000000000092f8 0x60 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + .debug_ranges 0x0000000000009358 0x168 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_ranges 0x00000000000094c0 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_ranges 0x00000000000094e0 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_ranges 0x0000000000009568 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_ranges 0x00000000000095c0 0x248 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_ranges 0x0000000000009808 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_ranges 0x0000000000009840 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_ranges 0x00000000000098c0 0xe8 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_ranges 0x00000000000099a8 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_ranges 0x00000000000099d0 0x200 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_ranges 0x0000000000009bd0 0x48 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_ranges 0x0000000000009c18 0x190 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_ranges 0x0000000000009da8 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_ranges 0x0000000000009e28 0x128 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_ranges 0x0000000000009f50 0x20 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_ranges 0x0000000000009f70 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_ranges 0x0000000000009f88 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_ranges 0x0000000000009fc0 0x80 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_ranges 0x000000000000a040 0x58 esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_ranges 0x000000000000a098 0xf0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .debug_ranges 0x000000000000a188 0x20 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) + .debug_ranges 0x000000000000a1a8 0x1e0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .debug_ranges 0x000000000000a388 0x4a8 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .debug_ranges 0x000000000000a830 0x1f0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .debug_ranges 0x000000000000aa20 0x60 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .debug_ranges 0x000000000000aa80 0x180 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_ranges 0x000000000000ac00 0x140 esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .debug_ranges 0x000000000000ad40 0x100 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .debug_ranges 0x000000000000ae40 0xb8 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .debug_ranges 0x000000000000aef8 0x40 esp-idf/lwip/liblwip.a(wlanif.c.obj) + .debug_ranges 0x000000000000af38 0x10 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_ranges 0x000000000000af48 0x7f0 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_ranges 0x000000000000b738 0x88 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .debug_ranges 0x000000000000b7c0 0x58 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_ranges 0x000000000000b818 0x190 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + .debug_ranges 0x000000000000b9a8 0x190 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + .debug_ranges 0x000000000000bb38 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + .debug_ranges 0x000000000000bbb8 0xc0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_ranges 0x000000000000bc78 0xb0 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .debug_ranges 0x000000000000bd28 0x10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + .debug_ranges 0x000000000000bd38 0x10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + .debug_ranges 0x000000000000bd48 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .debug_ranges 0x000000000000bd60 0x28 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + .debug_ranges 0x000000000000bd88 0x10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + .debug_ranges 0x000000000000bd98 0x50 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .debug_ranges 0x000000000000bde8 0x48 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .debug_ranges 0x000000000000be30 0x138 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + .debug_ranges 0x000000000000bf68 0x10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + .debug_ranges 0x000000000000bf78 0x68 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .debug_ranges 0x000000000000bfe0 0x68 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .debug_ranges 0x000000000000c048 0x30 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .debug_ranges 0x000000000000c078 0xa0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .debug_ranges 0x000000000000c118 0x40 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + .debug_ranges 0x000000000000c158 0xa0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_ranges 0x000000000000c1f8 0x58 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + .debug_ranges 0x000000000000c250 0x100 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + .debug_ranges 0x000000000000c350 0x270 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + .debug_ranges 0x000000000000c5c0 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .debug_ranges 0x000000000000c5d8 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .debug_ranges 0x000000000000c5f0 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .debug_ranges 0x000000000000c608 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .debug_ranges 0x000000000000c628 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + .debug_ranges 0x000000000000c640 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + .debug_ranges 0x000000000000c660 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .debug_ranges 0x000000000000c678 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + .debug_ranges 0x000000000000c690 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .debug_ranges 0x000000000000c6a8 0x18 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .debug_ranges 0x000000000000c6c0 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .debug_ranges 0x000000000000c6e0 0x70 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .debug_ranges 0x000000000000c750 0xa0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + .debug_ranges 0x000000000000c7f0 0x88 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .debug_ranges 0x000000000000c878 0xb8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .debug_ranges 0x000000000000c930 0x20 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .debug_ranges 0x000000000000c950 0x48 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .debug_ranges 0x000000000000c998 0x48 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .debug_ranges 0x000000000000c9e0 0xb8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + +.debug_line 0x0000000000000000 0x20b772 + .debug_line 0x0000000000000000 0x59a esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .debug_line 0x000000000000059a 0x23fc esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_line 0x0000000000002996 0xbd4 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_line 0x000000000000356a 0x1640 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + .debug_line 0x0000000000004baa 0x8d3 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .debug_line 0x000000000000547d 0xc41 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .debug_line 0x00000000000060be 0x267 esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) + .debug_line 0x0000000000006325 0xae0 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + .debug_line 0x0000000000006e05 0x2531 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .debug_line 0x0000000000009336 0x1f93 esp-idf/esp32/libesp32.a(panic.c.obj) + .debug_line 0x000000000000b2c9 0xfef esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + .debug_line 0x000000000000c2b8 0x1863 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .debug_line 0x000000000000db1b 0x693 esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + .debug_line 0x000000000000e1ae 0xc52 esp-idf/esp32/libesp32.a(clk.c.obj) + .debug_line 0x000000000000ee00 0x6dc esp-idf/esp_common/libesp_common.a(brownout.c.obj) + .debug_line 0x000000000000f4dc 0x9ef esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_line 0x000000000000fecb 0xc1f esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .debug_line 0x0000000000010aea 0x881 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .debug_line 0x000000000001136b 0x14f5 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_line 0x0000000000012860 0x11c6 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_line 0x0000000000013a26 0x1043 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_line 0x0000000000014a69 0x43c esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_line 0x0000000000014ea5 0x365 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .debug_line 0x000000000001520a 0x482 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_line 0x000000000001568c 0xe4 esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) + .debug_line 0x0000000000015770 0x72d esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + .debug_line 0x0000000000015e9d 0xa04 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .debug_line 0x00000000000168a1 0x3bb esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .debug_line 0x0000000000016c5c 0x29be esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_line 0x000000000001961a 0x793a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_line 0x0000000000020f54 0x14c4 esp-idf/freertos/libfreertos.a(timers.c.obj) + .debug_line 0x0000000000022418 0xcc esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .debug_line 0x00000000000224e4 0x7f9 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_line 0x0000000000022cdd 0x5669 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_line 0x0000000000028346 0x2a89 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_line 0x000000000002adcf 0x582 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_line 0x000000000002b351 0xaeb esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_line 0x000000000002be3c 0x414 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_line 0x000000000002c250 0x600 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_line 0x000000000002c850 0x4e2 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + .debug_line 0x000000000002cd32 0x475 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_line 0x000000000002d1a7 0x1465 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_line 0x000000000002e60c 0x4c8 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_line 0x000000000002ead4 0xe06 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_line 0x000000000002f8da 0xf93 esp-idf/main/libmain.a(main.c.obj) + .debug_line 0x000000000003086d 0x1d25 esp-idf/ca/libca.a(ca.c.obj) + .debug_line 0x0000000000032592 0x129c esp-idf/ca/libca.a(gen_key.c.obj) + .debug_line 0x000000000003382e 0x2085 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + .debug_line 0x00000000000358b3 0x1679 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + .debug_line 0x0000000000036f2c 0xfb8 esp-idf/wifi/libwifi.a(wifi.c.obj) + .debug_line 0x0000000000037ee4 0x118a esp-idf/https_server/libhttps_server.a(https_server.c.obj) + .debug_line 0x000000000003906e 0x409 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) + .debug_line 0x0000000000039477 0x985 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .debug_line 0x0000000000039dfc 0x303 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .debug_line 0x000000000003a0ff 0x998 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .debug_line 0x000000000003aa97 0x2967 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .debug_line 0x000000000003d3fe 0x1897 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .debug_line 0x000000000003ec95 0xfc2 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .debug_line 0x000000000003fc57 0xe37 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .debug_line 0x0000000000040a8e 0xf2d esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + .debug_line 0x00000000000419bb 0x56e0 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + .debug_line 0x000000000004709b 0x9fd esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + .debug_line 0x0000000000047a98 0xcab esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + .debug_line 0x0000000000048743 0x2cc9 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + .debug_line 0x000000000004b40c 0xc26 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + .debug_line 0x000000000004c032 0x33e esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + .debug_line 0x000000000004c370 0xe52 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .debug_line 0x000000000004d1c2 0x606 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + .debug_line 0x000000000004d7c8 0x61c esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + .debug_line 0x000000000004dde4 0x105c esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + .debug_line 0x000000000004ee40 0x476 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) + .debug_line 0x000000000004f2b6 0x7d5 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + .debug_line 0x000000000004fa8b 0x947 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + .debug_line 0x00000000000503d2 0xfa2 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + .debug_line 0x0000000000051374 0xc06 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + .debug_line 0x0000000000051f7a 0xa25 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + .debug_line 0x000000000005299f 0x898 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + .debug_line 0x0000000000053237 0x60d esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + .debug_line 0x0000000000053844 0x5c5 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + .debug_line 0x0000000000053e09 0x12c6 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + .debug_line 0x00000000000550cf 0x4b7 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) + .debug_line 0x0000000000055586 0xcc2 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + .debug_line 0x0000000000056248 0x756 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_line 0x000000000005699e 0x1072 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_line 0x0000000000057a10 0xd68 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_line 0x0000000000058778 0x1523 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_line 0x0000000000059c9b 0x3b3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_line 0x000000000005a04e 0x693 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_line 0x000000000005a6e1 0x1283 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_line 0x000000000005b964 0xc1f esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_line 0x000000000005c583 0xeb0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_line 0x000000000005d433 0xb8c esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_line 0x000000000005dfbf 0x2757 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_line 0x0000000000060716 0xdad esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_line 0x00000000000614c3 0x723 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_line 0x0000000000061be6 0x6cb esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_line 0x00000000000622b1 0x1847 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .debug_line 0x0000000000063af8 0x3d0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_line 0x0000000000063ec8 0x1876 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_line 0x000000000006573e 0x4e0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_line 0x0000000000065c1e 0x53a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_line 0x0000000000066158 0xaa2 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_line 0x0000000000066bfa 0x1b51 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_line 0x000000000006874b 0x3363 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + .debug_line 0x000000000006baae 0x3acd esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + .debug_line 0x000000000006f57b 0x15b4 esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + .debug_line 0x0000000000070b2f 0x1044 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + .debug_line 0x0000000000071b73 0x44f4 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + .debug_line 0x0000000000076067 0x211b esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + .debug_line 0x0000000000078182 0x1077 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + .debug_line 0x00000000000791f9 0x88e esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + .debug_line 0x0000000000079a87 0x560 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + .debug_line 0x0000000000079fe7 0xb8c esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + .debug_line 0x000000000007ab73 0x1647 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + .debug_line 0x000000000007c1ba 0xc9e esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + .debug_line 0x000000000007ce58 0x18a2 esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + .debug_line 0x000000000007e6fa 0x231f esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + .debug_line 0x0000000000080a19 0x2bad esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + .debug_line 0x00000000000835c6 0x111d esp-idf/lwip/liblwip.a(tcpip.c.obj) + .debug_line 0x00000000000846e3 0x9de esp-idf/lwip/liblwip.a(def.c.obj) + .debug_line 0x00000000000850c1 0x2dbe esp-idf/lwip/liblwip.a(dns.c.obj) + .debug_line 0x0000000000087e7f 0x68c esp-idf/lwip/liblwip.a(init.c.obj) + .debug_line 0x000000000008850b 0x821 esp-idf/lwip/liblwip.a(ip.c.obj) + .debug_line 0x0000000000088d2c 0x657 esp-idf/lwip/liblwip.a(mem.c.obj) + .debug_line 0x0000000000089383 0x998 esp-idf/lwip/liblwip.a(memp.c.obj) + .debug_line 0x0000000000089d1b 0x2bd2 esp-idf/lwip/liblwip.a(netif.c.obj) + .debug_line 0x000000000008c8ed 0x292c esp-idf/lwip/liblwip.a(pbuf.c.obj) + .debug_line 0x000000000008f219 0x1f2e esp-idf/lwip/liblwip.a(raw.c.obj) + .debug_line 0x0000000000091147 0x5448 esp-idf/lwip/liblwip.a(tcp.c.obj) + .debug_line 0x000000000009658f 0x4421 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + .debug_line 0x000000000009a9b0 0x3586 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + .debug_line 0x000000000009df36 0xdb9 esp-idf/lwip/liblwip.a(timeouts.c.obj) + .debug_line 0x000000000009ecef 0x30dd esp-idf/lwip/liblwip.a(udp.c.obj) + .debug_line 0x00000000000a1dcc 0x43d7 esp-idf/lwip/liblwip.a(dhcp.c.obj) + .debug_line 0x00000000000a61a3 0x2012 esp-idf/lwip/liblwip.a(etharp.c.obj) + .debug_line 0x00000000000a81b5 0xc16 esp-idf/lwip/liblwip.a(icmp.c.obj) + .debug_line 0x00000000000a8dcb 0x1b41 esp-idf/lwip/liblwip.a(igmp.c.obj) + .debug_line 0x00000000000aa90c 0x191d esp-idf/lwip/liblwip.a(ip4.c.obj) + .debug_line 0x00000000000ac229 0xec4 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + .debug_line 0x00000000000ad0ed 0x8d3 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + .debug_line 0x00000000000ad9c0 0xb44 esp-idf/lwip/liblwip.a(icmp6.c.obj) + .debug_line 0x00000000000ae504 0x271f esp-idf/lwip/liblwip.a(ip6.c.obj) + .debug_line 0x00000000000b0c23 0x10cd esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + .debug_line 0x00000000000b1cf0 0x1a38 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + .debug_line 0x00000000000b3728 0x181a esp-idf/lwip/liblwip.a(mld6.c.obj) + .debug_line 0x00000000000b4f42 0x55fc esp-idf/lwip/liblwip.a(nd6.c.obj) + .debug_line 0x00000000000ba53e 0x984 esp-idf/lwip/liblwip.a(ethernet.c.obj) + .debug_line 0x00000000000baec2 0x13f2 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + .debug_line 0x00000000000bc2b4 0x119c esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + .debug_line 0x00000000000bd450 0x874 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + .debug_line 0x00000000000bdcc4 0x9b52 esp-idf/lwip/liblwip.a(sockets.c.obj) + .debug_line 0x00000000000c7816 0x2bee esp-idf/lwip/liblwip.a(api_lib.c.obj) + .debug_line 0x00000000000ca404 0x476c esp-idf/lwip/liblwip.a(api_msg.c.obj) + .debug_line 0x00000000000ceb70 0x53e esp-idf/lwip/liblwip.a(err.c.obj) + .debug_line 0x00000000000cf0ae 0xc24 esp-idf/lwip/liblwip.a(netbuf.c.obj) + .debug_line 0x00000000000cfcd2 0xa2b esp-idf/log/liblog.a(log.c.obj) + .debug_line 0x00000000000d06fd 0x914 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_line 0x00000000000d1011 0x1b7f esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_line 0x00000000000d2b90 0xf76 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_line 0x00000000000d3b06 0x343a esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_line 0x00000000000d6f40 0x37d0 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_line 0x00000000000da710 0xe58 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .debug_line 0x00000000000db568 0x209c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_line 0x00000000000dd604 0x986 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .debug_line 0x00000000000ddf8a 0x79d8 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_line 0x00000000000e5962 0x5ab esp-idf/esp32/libesp32.a(hw_random.c.obj) + .debug_line 0x00000000000e5f0d 0x137a esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .debug_line 0x00000000000e7287 0x6d4 esp-idf/esp32/libesp32.a(reset_reason.c.obj) + .debug_line 0x00000000000e795b 0x28a5 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + .debug_line 0x00000000000ea200 0xc72 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + .debug_line 0x00000000000eae72 0x76c esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .debug_line 0x00000000000eb5de 0x783 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + .debug_line 0x00000000000ebd61 0x12f4 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + .debug_line 0x00000000000ed055 0xd78 esp-idf/console/libconsole.a(commands.c.obj) + .debug_line 0x00000000000eddcd 0x55c esp-idf/console/libconsole.a(split_argv.c.obj) + .debug_line 0x00000000000ee329 0x9512 esp-idf/console/libconsole.a(argtable3.c.obj) + .debug_line 0x00000000000f783b 0x2ecc esp-idf/console/libconsole.a(linenoise.c.obj) + .debug_line 0x00000000000fa707 0x1d96 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + .debug_line 0x00000000000fc49d 0x1715 esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + .debug_line 0x00000000000fdbb2 0x196b esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + .debug_line 0x00000000000ff51d 0x1d85 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + .debug_line 0x00000000001012a2 0x2f9e esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + .debug_line 0x0000000000104240 0x7b5 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + .debug_line 0x00000000001049f5 0x108f esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + .debug_line 0x0000000000105a84 0x10f4 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + .debug_line 0x0000000000106b78 0x84b esp-idf/fatfs/libfatfs.a(diskio.c.obj) + .debug_line 0x00000000001073c3 0xae4 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + .debug_line 0x0000000000107ea7 0x8913 esp-idf/fatfs/libfatfs.a(ff.c.obj) + .debug_line 0x00000000001107ba 0x5fd esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + .debug_line 0x0000000000110db7 0x2cea esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + .debug_line 0x0000000000113aa1 0x1178 esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + .debug_line 0x0000000000114c19 0x8ed esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + .debug_line 0x0000000000115506 0x3f23 esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + .debug_line 0x0000000000119429 0xea esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) + .debug_line 0x0000000000119513 0x461 esp-idf/newlib/libnewlib.a(select.c.obj) + .debug_line 0x0000000000119974 0x939 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .debug_line 0x000000000011a2ad 0x12c7 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .debug_line 0x000000000011b574 0x15b5 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .debug_line 0x000000000011cb29 0x811 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .debug_line 0x000000000011d33a 0x7ef esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .debug_line 0x000000000011db29 0x178e esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .debug_line 0x000000000011f2b7 0x24fe esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + .debug_line 0x00000000001217b5 0x2df esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + .debug_line 0x0000000000121a94 0x330 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .debug_line 0x0000000000121dc4 0x34b esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + .debug_line 0x000000000012210f 0x341 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) + .debug_line 0x0000000000122450 0xa70 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + .debug_line 0x0000000000122ec0 0x6a5 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + .debug_line 0x0000000000123565 0x7db esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + .debug_line 0x0000000000123d40 0x3025 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + .debug_line 0x0000000000126d65 0x5b1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + .debug_line 0x000000000012c880 0x14cd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + .debug_line 0x000000000012dd4d 0x6237 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + .debug_line 0x0000000000133f84 0x7fdb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + .debug_line 0x000000000013bf5f 0x115f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + .debug_line 0x000000000013d0be 0x194d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) + .debug_line 0x000000000013ea0b 0x133c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + .debug_line 0x000000000013fd47 0xb50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + .debug_line 0x0000000000140897 0xfed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + .debug_line 0x0000000000141884 0xdc6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + .debug_line 0x000000000014264a 0xcce esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + .debug_line 0x0000000000143318 0x2b95 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + .debug_line 0x0000000000145ead 0x1199 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + .debug_line 0x0000000000147046 0x381 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + .debug_line 0x00000000001473c7 0x237 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + .debug_line 0x00000000001475fe 0x4e22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + .debug_line 0x000000000014c420 0xf40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + .debug_line 0x000000000014d360 0x628 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + .debug_line 0x000000000014d988 0x706 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + .debug_line 0x000000000014e08e 0x706 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + .debug_line 0x000000000014e794 0x286 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + .debug_line 0x000000000014ea1a 0x2a1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + .debug_line 0x000000000014ecbb 0x1957 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + .debug_line 0x0000000000150612 0x14ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_line 0x0000000000151abf 0x18e0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_line 0x000000000015339f 0x242b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + .debug_line 0x00000000001557ca 0x1d7d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + .debug_line 0x0000000000157547 0xf11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_line 0x0000000000158458 0x100c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + .debug_line 0x0000000000159464 0x1533 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + .debug_line 0x000000000015a997 0x266c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + .debug_line 0x000000000015d003 0x8e4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + .debug_line 0x000000000015d8e7 0x1353 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + .debug_line 0x000000000015ec3a 0x1cb6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + .debug_line 0x00000000001608f0 0x116c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + .debug_line 0x0000000000161a5c 0x152b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + .debug_line 0x0000000000162f87 0xf41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + .debug_line 0x0000000000163ec8 0x1273 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + .debug_line 0x000000000016513b 0xc35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + .debug_line 0x0000000000165d70 0xd63 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + .debug_line 0x0000000000166ad3 0x10a7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + .debug_line 0x0000000000167b7a 0x232b esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + .debug_line 0x0000000000169ea5 0x550a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + .debug_line 0x000000000016f3af 0xd7a esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + .debug_line 0x0000000000170129 0x162c esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + .debug_line 0x0000000000171755 0xdd0 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + .debug_line 0x0000000000172525 0x25ff esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_line 0x0000000000174b24 0x3d7 esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + .debug_line 0x0000000000174efb 0x1030 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + .debug_line 0x0000000000175f2b 0xe38 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + .debug_line 0x0000000000176d63 0x4f50 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + .debug_line 0x000000000017bcb3 0x1d0f esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + .debug_line 0x000000000017d9c2 0x11f9 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + .debug_line 0x000000000017ebbb 0xd89 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + .debug_line 0x000000000017f944 0x664 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + .debug_line 0x000000000017ffa8 0x5808 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + .debug_line 0x00000000001857b0 0x1f9e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + .debug_line 0x000000000018774e 0x3e67 esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + .debug_line 0x000000000018b5b5 0x1fb5 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + .debug_line 0x000000000018d56a 0x1581 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + .debug_line 0x000000000018eaeb 0x97d esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + .debug_line 0x000000000018f468 0xcfc esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + .debug_line 0x0000000000190164 0x73c esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + .debug_line 0x00000000001908a0 0x15ea esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + .debug_line 0x0000000000191e8a 0x10bf esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + .debug_line 0x0000000000192f49 0x822 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + .debug_line 0x000000000019376b 0xb1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) + .debug_line 0x000000000019381c 0x1b76 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + .debug_line 0x0000000000195392 0x317e /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + .debug_line 0x0000000000198510 0x2509 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + .debug_line 0x000000000019aa19 0x733 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + .debug_line 0x000000000019b14c 0x3f99 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_line 0x000000000019f0e5 0x5b6d esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + .debug_line 0x00000000001a4c52 0x208c esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + .debug_line 0x00000000001a6cde 0x2936 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + .debug_line 0x00000000001a9614 0xcd0 esp-idf/lwip/liblwip.a(wlanif.c.obj) + .debug_line 0x00000000001aa2e4 0x740 esp-idf/lwip/liblwip.a(ethip6.c.obj) + .debug_line 0x00000000001aaa24 0xf8b9 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + .debug_line 0x00000000001ba2dd 0x14d2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + .debug_line 0x00000000001bb7af 0x833 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + .debug_line 0x00000000001bbfe2 0x64d6 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + .debug_line 0x00000000001c24b8 0x6df1 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + .debug_line 0x00000000001c92a9 0x1694 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + .debug_line 0x00000000001ca93d 0xdd5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + .debug_line 0x00000000001cb712 0xdba /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + .debug_line 0x00000000001cc4cc 0x3a8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + .debug_line 0x00000000001cc874 0x277 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + .debug_line 0x00000000001ccaeb 0x2cc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + .debug_line 0x00000000001ccdb7 0x2fe /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + .debug_line 0x00000000001cd0b5 0x27f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + .debug_line 0x00000000001cd334 0x571 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + .debug_line 0x00000000001cd8a5 0x5c6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + .debug_line 0x00000000001cde6b 0x17d2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + .debug_line 0x00000000001cf63d 0x277 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + .debug_line 0x00000000001cf8b4 0x7ef /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + .debug_line 0x00000000001d00a3 0x5bf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + .debug_line 0x00000000001d0662 0x347 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + .debug_line 0x00000000001d09a9 0x3be /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + .debug_line 0x00000000001d0d67 0x2ee /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + .debug_line 0x00000000001d1055 0x182 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfdi.o) + .debug_line 0x00000000001d11d7 0xaf6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .debug_line 0x00000000001d1ccd 0xb63 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + .debug_line 0x00000000001d2830 0xa2b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_line 0x00000000001d325b 0xae0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + .debug_line 0x00000000001d3d3b 0x1eda /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + .debug_line 0x00000000001d5c15 0x2ad0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + .debug_line 0x00000000001d86e5 0x15c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(lib2funcs.o) + .debug_line 0x00000000001d8841 0x2ef /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) + .debug_line 0x00000000001d8b30 0x6a /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(int_asm--set_intclear.o) + .debug_line 0x00000000001d8b9a 0x50 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) + .debug_line 0x00000000001d8bea 0x66 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--restore_extra_nw.o) + .debug_line 0x00000000001d8c50 0x66 /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--save_extra_nw.o) + .debug_line 0x00000000001d8cb6 0x49f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) + .debug_line 0x00000000001d9155 0x2a2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + .debug_line 0x00000000001d93f7 0x203 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .debug_line 0x00000000001d95fa 0x3b5 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + .debug_line 0x00000000001d99af 0x3ec /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) + .debug_line 0x00000000001d9d9b 0x608 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + .debug_line 0x00000000001da3a3 0x3f8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) + .debug_line 0x00000000001da79b 0x31c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + .debug_line 0x00000000001daab7 0x4b8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .debug_line 0x00000000001daf6f 0x31b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + .debug_line 0x00000000001db28a 0x3d4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + .debug_line 0x00000000001db65e 0x483 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .debug_line 0x00000000001dbae1 0x5d4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + .debug_line 0x00000000001dc0b5 0x2ee /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .debug_line 0x00000000001dc3a3 0xcd8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .debug_line 0x00000000001dd07b 0x31a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + .debug_line 0x00000000001dd395 0x5a2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + .debug_line 0x00000000001dd937 0x4ce /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + .debug_line 0x00000000001dde05 0x1384 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + .debug_line 0x00000000001df189 0x455 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .debug_line 0x00000000001df5de 0x5c6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .debug_line 0x00000000001dfba4 0x3d1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .debug_line 0x00000000001dff75 0xca9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + .debug_line 0x00000000001e0c1e 0x3d7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .debug_line 0x00000000001e0ff5 0x42f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .debug_line 0x00000000001e1424 0x315 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .debug_line 0x00000000001e1739 0x500 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .debug_line 0x00000000001e1c39 0x4fc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .debug_line 0x00000000001e2135 0x38c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) + .debug_line 0x00000000001e24c1 0x765 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + .debug_line 0x00000000001e2c26 0x5d6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .debug_line 0x00000000001e31fc 0x43f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + .debug_line 0x00000000001e363b 0x4e0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + .debug_line 0x00000000001e3b1b 0x26db /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + .debug_line 0x00000000001e61f6 0x806 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .debug_line 0x00000000001e69fc 0x7d3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .debug_line 0x00000000001e71cf 0x5893 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .debug_line 0x00000000001eca62 0x4452 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + .debug_line 0x00000000001f0eb4 0x28a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .debug_line 0x00000000001f113e 0x4191 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .debug_line 0x00000000001f52cf 0x5c34 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .debug_line 0x00000000001faf03 0x346 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .debug_line 0x00000000001fb249 0x445 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + .debug_line 0x00000000001fb68e 0x2683 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .debug_line 0x00000000001fdd11 0x3c5 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .debug_line 0x00000000001fe0d6 0x13c9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + .debug_line 0x00000000001ff49f 0x89f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + .debug_line 0x00000000001ffd3e 0x299 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) + .debug_line 0x00000000001fffd7 0x30d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .debug_line 0x00000000002002e4 0x3b8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .debug_line 0x000000000020069c 0x410 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .debug_line 0x0000000000200aac 0x25cd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .debug_line 0x0000000000203079 0x4b1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .debug_line 0x000000000020352a 0x264 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + .debug_line 0x000000000020378e 0x3fde /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .debug_line 0x000000000020776c 0x4006 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + +.debug_str 0x0000000000000000 0x4f1ab + .debug_str 0x0000000000000000 0x754 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + 0xa2f (size before relaxing) + .debug_str 0x0000000000000754 0x15b2 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x1cdf (size before relaxing) + .debug_str 0x0000000000001d06 0x1ae esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x14e0 (size before relaxing) + .debug_str 0x0000000000001eb4 0x2ffb esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0x4a28 (size before relaxing) + .debug_str 0x0000000000004eaf 0x128 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + 0x3930 (size before relaxing) + .debug_str 0x0000000000004fd7 0x16de esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x3710 (size before relaxing) + .debug_str 0x00000000000066b5 0x53 esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) + 0x7b (size before relaxing) + .debug_str 0x0000000000006708 0x203 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + 0x1a41 (size before relaxing) + .debug_str 0x000000000000690b 0x490 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x17e9 (size before relaxing) + .debug_str 0x0000000000006d9b 0x731 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x486b (size before relaxing) + .debug_str 0x00000000000074cc 0xb4d esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + 0x6180 (size before relaxing) + .debug_str 0x0000000000008019 0x1b5 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + 0x1de6 (size before relaxing) + .debug_str 0x00000000000081ce 0x4d esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + 0x1262 (size before relaxing) + .debug_str 0x000000000000821b 0xde2 esp-idf/esp32/libesp32.a(clk.c.obj) + 0x5cef (size before relaxing) + .debug_str 0x0000000000008ffd 0xf1 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + 0x2bf6 (size before relaxing) + .debug_str 0x00000000000090ee 0x191 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + 0x3dfd (size before relaxing) + .debug_str 0x000000000000927f 0x1bc esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + 0x2c62 (size before relaxing) + .debug_str 0x000000000000943b 0x185 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + 0x1467 (size before relaxing) + .debug_str 0x00000000000095c0 0x308 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x1734 (size before relaxing) + .debug_str 0x00000000000098c8 0x18c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x30a1 (size before relaxing) + .debug_str 0x0000000000009a54 0x3ca esp-idf/freertos/libfreertos.a(port.c.obj) + 0x1860 (size before relaxing) + .debug_str 0x0000000000009e1e 0x3f esp-idf/freertos/libfreertos.a(portasm.S.obj) + 0x75 (size before relaxing) + .debug_str 0x0000000000009e5d 0x46 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + 0x7c (size before relaxing) + .debug_str 0x0000000000009ea3 0x51 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + 0x1143 (size before relaxing) + .debug_str 0x0000000000009ef4 0x47 esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) + 0x7d (size before relaxing) + .debug_str 0x0000000000009f3b 0xa1 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + 0x12c9 (size before relaxing) + .debug_str 0x0000000000009fdc 0x46 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x7c (size before relaxing) + .debug_str 0x000000000000a022 0x53 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + 0x11cd (size before relaxing) + .debug_str 0x000000000000a075 0x671 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1ab2 (size before relaxing) + .debug_str 0x000000000000a6e6 0xcc6 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2667 (size before relaxing) + .debug_str 0x000000000000b3ac 0x4c8 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x199e (size before relaxing) + .debug_str 0x000000000000b874 0x4e esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + 0x84 (size before relaxing) + .debug_str 0x000000000000b8c2 0x76 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x12ee (size before relaxing) + .debug_str 0x000000000000b938 0x805 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x1e3a (size before relaxing) + .debug_str 0x000000000000c13d 0x696 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x2c08 (size before relaxing) + .debug_str 0x000000000000c7d3 0x225 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x74a (size before relaxing) + .debug_str 0x000000000000c9f8 0x131 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x14a0 (size before relaxing) + .debug_str 0x000000000000cb29 0xe0 esp-idf/newlib/libnewlib.a(pthread.c.obj) + 0x730 (size before relaxing) + .debug_str 0x000000000000cc09 0x5a esp-idf/newlib/libnewlib.a(reent_init.c.obj) + 0x5e2 (size before relaxing) + .debug_str 0x000000000000cc63 0x179 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + 0x160c (size before relaxing) + .debug_str 0x000000000000cddc 0x63 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x6b0 (size before relaxing) + .debug_str 0x000000000000ce3f 0x2bb esp-idf/newlib/libnewlib.a(time.c.obj) + 0x2f71 (size before relaxing) + .debug_str 0x000000000000d0fa 0x812 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0xda3 (size before relaxing) + .debug_str 0x000000000000d90c 0x306 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + 0x1c74 (size before relaxing) + .debug_str 0x000000000000dc12 0x46c esp-idf/main/libmain.a(main.c.obj) + 0x3c6f (size before relaxing) + .debug_str 0x000000000000e07e 0xa93 esp-idf/ca/libca.a(ca.c.obj) + 0x1286 (size before relaxing) + .debug_str 0x000000000000eb11 0x3fc esp-idf/ca/libca.a(gen_key.c.obj) + 0x1bf7 (size before relaxing) + .debug_str 0x000000000000ef0d 0x423 esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + 0x1980 (size before relaxing) + .debug_str 0x000000000000f330 0x1005 esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + 0x41a8 (size before relaxing) + .debug_str 0x0000000000010335 0x7e7 esp-idf/wifi/libwifi.a(wifi.c.obj) + 0x43de (size before relaxing) + .debug_str 0x0000000000010b1c 0x5d5 esp-idf/https_server/libhttps_server.a(https_server.c.obj) + 0x476c (size before relaxing) + .debug_str 0x00000000000110f1 0x36 esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) + 0x576 (size before relaxing) + .debug_str 0x0000000000011127 0x72 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + 0x12b0 (size before relaxing) + .debug_str 0x0000000000011199 0x50 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + 0x14ba (size before relaxing) + .debug_str 0x00000000000111e9 0x3e esp-idf/soc/libsoc.a(cpu_util.c.obj) + 0x2944 (size before relaxing) + .debug_str 0x0000000000011227 0x473 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x4801 (size before relaxing) + .debug_str 0x000000000001169a 0xbe esp-idf/soc/libsoc.a(rtc_init.c.obj) + 0x2c23 (size before relaxing) + .debug_str 0x0000000000011758 0x12c esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0x2337 (size before relaxing) + .debug_str 0x0000000000011884 0xe4 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x2144 (size before relaxing) + .debug_str 0x0000000000011968 0x162 esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + 0x31eb (size before relaxing) + .debug_str 0x0000000000011aca 0x1efd esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + 0x5329 (size before relaxing) + .debug_str 0x00000000000139c7 0x14d esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + 0x38fe (size before relaxing) + .debug_str 0x0000000000013b14 0x960 esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + 0x3d8f (size before relaxing) + .debug_str 0x0000000000014474 0x555 esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + 0x393a (size before relaxing) + .debug_str 0x00000000000149c9 0xb5 esp-idf/esp_event/libesp_event.a(event_send.c.obj) + 0x3b40 (size before relaxing) + .debug_str 0x0000000000014a7e 0x4c esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + 0x950 (size before relaxing) + .debug_str 0x0000000000014aca 0x92 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + 0x65d (size before relaxing) + .debug_str 0x0000000000014b5c 0x55 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + 0x633 (size before relaxing) + .debug_str 0x0000000000014bb1 0x4a esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + 0x5e6 (size before relaxing) + .debug_str 0x0000000000014bfb 0x195 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + 0x795 (size before relaxing) + .debug_str 0x0000000000014d90 0x107 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) + 0x756 (size before relaxing) + .debug_str 0x0000000000014e97 0x50 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + 0x671 (size before relaxing) + .debug_str 0x0000000000014ee7 0x93 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + 0x6c9 (size before relaxing) + .debug_str 0x0000000000014f7a 0xb7 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + 0x67c (size before relaxing) + .debug_str 0x0000000000015031 0x62 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + 0x651 (size before relaxing) + .debug_str 0x0000000000015093 0x4e esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + 0x5fb (size before relaxing) + .debug_str 0x00000000000150e1 0x8d esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + 0x663 (size before relaxing) + .debug_str 0x000000000001516e 0x8e esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + 0x66c (size before relaxing) + .debug_str 0x00000000000151fc 0x63 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + 0x66f (size before relaxing) + .debug_str 0x000000000001525f 0x132 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + 0x748 (size before relaxing) + .debug_str 0x0000000000015391 0x14e esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) + 0x701 (size before relaxing) + .debug_str 0x00000000000154df 0xe4 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + 0x71f (size before relaxing) + .debug_str 0x00000000000155c3 0x5f3 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + 0xc44 (size before relaxing) + .debug_str 0x0000000000015bb6 0x234 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x96f (size before relaxing) + .debug_str 0x0000000000015dea 0x215 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0xd93 (size before relaxing) + .debug_str 0x0000000000015fff 0x2ea esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0xc31 (size before relaxing) + .debug_str 0x00000000000162e9 0x43 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + 0xc1e (size before relaxing) + .debug_str 0x000000000001632c 0x7c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0xb5c (size before relaxing) + .debug_str 0x00000000000163a8 0x1ae esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0xbad (size before relaxing) + .debug_str 0x0000000000016556 0x278 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x1fe4 (size before relaxing) + .debug_str 0x00000000000167ce 0x2de esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x1730 (size before relaxing) + .debug_str 0x0000000000016aac 0x2c1 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x1969 (size before relaxing) + .debug_str 0x0000000000016d6d 0x4ae esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x2a4b (size before relaxing) + .debug_str 0x000000000001721b 0x2b3 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x358e (size before relaxing) + .debug_str 0x00000000000174ce 0x13f esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xb86 (size before relaxing) + .debug_str 0x000000000001760d 0x48 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x1525 (size before relaxing) + .debug_str 0x0000000000017655 0x7fe esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x14cd (size before relaxing) + .debug_str 0x0000000000017e53 0x9e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + 0xa19 (size before relaxing) + .debug_str 0x0000000000017ef1 0x506 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0xfe9 (size before relaxing) + .debug_str 0x00000000000183f7 0xc3 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0xaea (size before relaxing) + .debug_str 0x00000000000184ba 0xa2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0xabb (size before relaxing) + .debug_str 0x000000000001855c 0x145 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x2623 (size before relaxing) + .debug_str 0x00000000000186a1 0x231 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x187b (size before relaxing) + .debug_str 0x00000000000188d2 0x642e esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + 0x9006 (size before relaxing) + .debug_str 0x000000000001ed00 0x2ca1 esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + 0x83bd (size before relaxing) + .debug_str 0x00000000000219a1 0x123a esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + 0x89a2 (size before relaxing) + .debug_str 0x0000000000022bdb 0x6c5 esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + 0x2809 (size before relaxing) + .debug_str 0x00000000000232a0 0x656 esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + 0x363f (size before relaxing) + .debug_str 0x00000000000238f6 0x70c esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + 0x548a (size before relaxing) + .debug_str 0x0000000000024002 0x453 esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + 0x7354 (size before relaxing) + .debug_str 0x0000000000024455 0x41 esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + 0x198b (size before relaxing) + .debug_str 0x0000000000024496 0x50 esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + 0x8ff (size before relaxing) + .debug_str 0x00000000000244e6 0x16d esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + 0x5434 (size before relaxing) + .debug_str 0x0000000000024653 0x4b0 esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + 0x42d3 (size before relaxing) + .debug_str 0x0000000000024b03 0x128 esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + 0x3c93 (size before relaxing) + .debug_str 0x0000000000024c2b 0x70b esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + 0x44ee (size before relaxing) + .debug_str 0x0000000000025336 0x6c4 esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + 0x6015 (size before relaxing) + .debug_str 0x00000000000259fa 0x47e esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + 0x4380 (size before relaxing) + .debug_str 0x0000000000025e78 0x351 esp-idf/lwip/liblwip.a(tcpip.c.obj) + 0x1ded (size before relaxing) + .debug_str 0x00000000000261c9 0x8c esp-idf/lwip/liblwip.a(def.c.obj) + 0x12ed (size before relaxing) + .debug_str 0x0000000000026255 0x3f4 esp-idf/lwip/liblwip.a(dns.c.obj) + 0x1f7b (size before relaxing) + .debug_str 0x0000000000026649 0x377 esp-idf/lwip/liblwip.a(init.c.obj) + 0x1c15 (size before relaxing) + .debug_str 0x00000000000269c0 0x94 esp-idf/lwip/liblwip.a(ip.c.obj) + 0x19ff (size before relaxing) + .debug_str 0x0000000000026a54 0x9a esp-idf/lwip/liblwip.a(mem.c.obj) + 0x131e (size before relaxing) + .debug_str 0x0000000000026aee 0x2e8 esp-idf/lwip/liblwip.a(memp.c.obj) + 0x2101 (size before relaxing) + .debug_str 0x0000000000026dd6 0x4b5 esp-idf/lwip/liblwip.a(netif.c.obj) + 0x2470 (size before relaxing) + .debug_str 0x000000000002728b 0x3d1 esp-idf/lwip/liblwip.a(pbuf.c.obj) + 0x233e (size before relaxing) + .debug_str 0x000000000002765c 0x22d esp-idf/lwip/liblwip.a(raw.c.obj) + 0x1d49 (size before relaxing) + .debug_str 0x0000000000027889 0x605 esp-idf/lwip/liblwip.a(tcp.c.obj) + 0x2523 (size before relaxing) + .debug_str 0x0000000000027e8e 0x261 esp-idf/lwip/liblwip.a(tcp_in.c.obj) + 0x21c1 (size before relaxing) + .debug_str 0x00000000000280ef 0x225 esp-idf/lwip/liblwip.a(tcp_out.c.obj) + 0x21c0 (size before relaxing) + .debug_str 0x0000000000028314 0x123 esp-idf/lwip/liblwip.a(timeouts.c.obj) + 0x1ed6 (size before relaxing) + .debug_str 0x0000000000028437 0x23d esp-idf/lwip/liblwip.a(udp.c.obj) + 0x1ed3 (size before relaxing) + .debug_str 0x0000000000028674 0x770 esp-idf/lwip/liblwip.a(dhcp.c.obj) + 0x24d2 (size before relaxing) + .debug_str 0x0000000000028de4 0x458 esp-idf/lwip/liblwip.a(etharp.c.obj) + 0x1fb3 (size before relaxing) + .debug_str 0x000000000002923c 0xbd esp-idf/lwip/liblwip.a(icmp.c.obj) + 0x198b (size before relaxing) + .debug_str 0x00000000000292f9 0x208 esp-idf/lwip/liblwip.a(igmp.c.obj) + 0x1cb2 (size before relaxing) + .debug_str 0x0000000000029501 0x147 esp-idf/lwip/liblwip.a(ip4.c.obj) + 0x2265 (size before relaxing) + .debug_str 0x0000000000029648 0x6c esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + 0x186e (size before relaxing) + .debug_str 0x00000000000296b4 0x73 esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + 0x1882 (size before relaxing) + .debug_str 0x0000000000029727 0x32d esp-idf/lwip/liblwip.a(icmp6.c.obj) + 0x1c24 (size before relaxing) + .debug_str 0x0000000000029a54 0x1cd esp-idf/lwip/liblwip.a(ip6.c.obj) + 0x2013 (size before relaxing) + .debug_str 0x0000000000029c21 0xe7 esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + 0x1458 (size before relaxing) + .debug_str 0x0000000000029d08 0x180 esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + 0x1cf7 (size before relaxing) + .debug_str 0x0000000000029e88 0x138 esp-idf/lwip/liblwip.a(mld6.c.obj) + 0x1e0a (size before relaxing) + .debug_str 0x0000000000029fc0 0x50b esp-idf/lwip/liblwip.a(nd6.c.obj) + 0x24d9 (size before relaxing) + .debug_str 0x000000000002a4cb 0x8b esp-idf/lwip/liblwip.a(ethernet.c.obj) + 0x1b53 (size before relaxing) + .debug_str 0x000000000002a556 0x1c5 esp-idf/lwip/liblwip.a(sys_arch.c.obj) + 0x197c (size before relaxing) + .debug_str 0x000000000002a71b 0x120 esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + 0x14f8 (size before relaxing) + .debug_str 0x000000000002a83b 0xd5 esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + 0x1c4e (size before relaxing) + .debug_str 0x000000000002a910 0xf8b esp-idf/lwip/liblwip.a(sockets.c.obj) + 0x3205 (size before relaxing) + .debug_str 0x000000000002b89b 0x1e8 esp-idf/lwip/liblwip.a(api_lib.c.obj) + 0x25aa (size before relaxing) + .debug_str 0x000000000002ba83 0x3bc esp-idf/lwip/liblwip.a(api_msg.c.obj) + 0x2956 (size before relaxing) + .debug_str 0x000000000002be3f 0x67 esp-idf/lwip/liblwip.a(err.c.obj) + 0x1271 (size before relaxing) + .debug_str 0x000000000002bea6 0x88 esp-idf/lwip/liblwip.a(netbuf.c.obj) + 0x1682 (size before relaxing) + .debug_str 0x000000000002bf2e 0x216 esp-idf/log/liblog.a(log.c.obj) + 0x8f6 (size before relaxing) + .debug_str 0x000000000002c144 0xd1 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x1470 (size before relaxing) + .debug_str 0x000000000002c215 0x4d3 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x185a (size before relaxing) + .debug_str 0x000000000002c6e8 0x128 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x1517 (size before relaxing) + .debug_str 0x000000000002c810 0x310 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x16fb (size before relaxing) + .debug_str 0x000000000002cb20 0x89f esp-idf/driver/libdriver.a(gpio.c.obj) + 0x3a5d (size before relaxing) + .debug_str 0x000000000002d3bf 0xba esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + 0x15e8 (size before relaxing) + .debug_str 0x000000000002d479 0x3e4 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x34e9 (size before relaxing) + .debug_str 0x000000000002d85d 0x301 esp-idf/driver/libdriver.a(rtc_module.c.obj) + 0x390c (size before relaxing) + .debug_str 0x000000000002db5e 0x100b esp-idf/driver/libdriver.a(uart.c.obj) + 0x36c5 (size before relaxing) + .debug_str 0x000000000002eb69 0x73 esp-idf/esp32/libesp32.a(hw_random.c.obj) + 0x11a6 (size before relaxing) + .debug_str 0x000000000002ebdc 0x403 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + 0x3e36 (size before relaxing) + .debug_str 0x000000000002efdf 0x9e esp-idf/esp32/libesp32.a(reset_reason.c.obj) + 0x2127 (size before relaxing) + .debug_str 0x000000000002f07d 0x7b9 esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + 0x6c8f (size before relaxing) + .debug_str 0x000000000002f836 0x144 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + 0xc03 (size before relaxing) + .debug_str 0x000000000002f97a 0x72 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + 0x12f1 (size before relaxing) + .debug_str 0x000000000002f9ec 0xf3 esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + 0x143a (size before relaxing) + .debug_str 0x000000000002fadf 0x292 esp-idf/freertos/libfreertos.a(event_groups.c.obj) + 0x1780 (size before relaxing) + .debug_str 0x000000000002fd71 0x171 esp-idf/console/libconsole.a(commands.c.obj) + 0x8e7 (size before relaxing) + .debug_str 0x000000000002fee2 0xc9 esp-idf/console/libconsole.a(split_argv.c.obj) + 0x644 (size before relaxing) + .debug_str 0x000000000002ffab 0x921 esp-idf/console/libconsole.a(argtable3.c.obj) + 0x12d9 (size before relaxing) + .debug_str 0x00000000000308cc 0x3dc esp-idf/console/libconsole.a(linenoise.c.obj) + 0xc5b (size before relaxing) + .debug_str 0x0000000000030ca8 0x582 esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + 0x2301 (size before relaxing) + .debug_str 0x000000000003122a 0x12c esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + 0x212e (size before relaxing) + .debug_str 0x0000000000031356 0x259 esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + 0x2259 (size before relaxing) + .debug_str 0x00000000000315af 0x264 esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + 0x25c8 (size before relaxing) + .debug_str 0x0000000000031813 0x49e esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + 0x25b8 (size before relaxing) + .debug_str 0x0000000000031cb1 0x71 esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + 0x176e (size before relaxing) + .debug_str 0x0000000000031d22 0x1915 esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + 0x3e8f (size before relaxing) + .debug_str 0x0000000000033637 0x3d0 esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + 0x3b8e (size before relaxing) + .debug_str 0x0000000000033a07 0x106 esp-idf/fatfs/libfatfs.a(diskio.c.obj) + 0x13ee (size before relaxing) + .debug_str 0x0000000000033b0d 0xc8 esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + 0x17da (size before relaxing) + .debug_str 0x0000000000033bd5 0x3e9 esp-idf/fatfs/libfatfs.a(ff.c.obj) + 0x1890 (size before relaxing) + .debug_str 0x0000000000033fbe 0x5c esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + 0x12d2 (size before relaxing) + .debug_str 0x000000000003401a 0x371 esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + 0x200c (size before relaxing) + .debug_str 0x000000000003438b 0x26a esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + 0x19c8 (size before relaxing) + .debug_str 0x00000000000345f5 0x1c7 esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + 0x1487 (size before relaxing) + .debug_str 0x00000000000347bc 0x46c esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + 0xff9 (size before relaxing) + .debug_str 0x0000000000034c28 0x3e esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) + 0x184 (size before relaxing) + .debug_str 0x0000000000034c66 0x35 esp-idf/newlib/libnewlib.a(select.c.obj) + 0x128c (size before relaxing) + .debug_str 0x0000000000034c9b 0x13c esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + 0x890 (size before relaxing) + .debug_str 0x0000000000034dd7 0x1a8 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + 0x248d (size before relaxing) + .debug_str 0x0000000000034f7f 0x3f5 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x1877 (size before relaxing) + .debug_str 0x0000000000035374 0x105 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + 0x109c (size before relaxing) + .debug_str 0x0000000000035479 0x146 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + 0x2519 (size before relaxing) + .debug_str 0x00000000000355bf 0x3d7 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x26ee (size before relaxing) + .debug_str 0x0000000000035996 0xae esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + 0x3bc1 (size before relaxing) + .debug_str 0x0000000000035a44 0x132 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + 0x778 (size before relaxing) + .debug_str 0x0000000000035b76 0x41 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + 0x855 (size before relaxing) + .debug_str 0x0000000000035bb7 0x43 esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + 0x1db3 (size before relaxing) + .debug_str 0x0000000000035bfa 0x41 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) + 0xf09 (size before relaxing) + .debug_str 0x0000000000035c3b 0x51 esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + 0x32b7 (size before relaxing) + .debug_str 0x0000000000035c8c 0x44 esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + 0x2fcd (size before relaxing) + .debug_str 0x0000000000035cd0 0xa3 esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + 0x3e83 (size before relaxing) + .debug_str 0x0000000000035d73 0x738 esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + 0x4a01 (size before relaxing) + .debug_str 0x00000000000364ab 0x55d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + 0xc58 (size before relaxing) + .debug_str 0x0000000000036a08 0x2aa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + 0xa50 (size before relaxing) + .debug_str 0x0000000000036cb2 0x62f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + 0x1193 (size before relaxing) + .debug_str 0x00000000000372e1 0x49b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + 0xd53 (size before relaxing) + .debug_str 0x000000000003777c 0x26f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + 0xa7d (size before relaxing) + .debug_str 0x00000000000379eb 0x4d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) + 0x6ae (size before relaxing) + .debug_str 0x0000000000037a38 0x29d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + 0x9f3 (size before relaxing) + .debug_str 0x0000000000037cd5 0x3d2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + 0xe54 (size before relaxing) + .debug_str 0x00000000000380a7 0x373 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + 0xc2a (size before relaxing) + .debug_str 0x000000000003841a 0x387 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + 0xf34 (size before relaxing) + .debug_str 0x00000000000387a1 0xc4f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + 0x14b8 (size before relaxing) + .debug_str 0x00000000000393f0 0x34f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + 0x181e (size before relaxing) + .debug_str 0x000000000003973f 0x1de esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + 0xb1f (size before relaxing) + .debug_str 0x000000000003991d 0xd9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + 0x67b (size before relaxing) + .debug_str 0x00000000000399f6 0x59 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + 0x5d1 (size before relaxing) + .debug_str 0x0000000000039a4f 0x518 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + 0x118d (size before relaxing) + .debug_str 0x0000000000039f67 0x5f esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + 0x7f7 (size before relaxing) + .debug_str 0x0000000000039fc6 0x95 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + 0x78a (size before relaxing) + .debug_str 0x000000000003a05b 0xab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + 0x7d0 (size before relaxing) + .debug_str 0x000000000003a106 0xab esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + 0x7d0 (size before relaxing) + .debug_str 0x000000000003a1b1 0x41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + 0x5bb (size before relaxing) + .debug_str 0x000000000003a1f2 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + 0x5d0 (size before relaxing) + .debug_str 0x000000000003a25a 0x154 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + 0x871 (size before relaxing) + .debug_str 0x000000000003a3ae 0xd3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x8a4 (size before relaxing) + .debug_str 0x000000000003a481 0xd4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + 0x8ba (size before relaxing) + .debug_str 0x000000000003a555 0x217 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + 0x18a4 (size before relaxing) + .debug_str 0x000000000003a76c 0x27e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + 0x18b3 (size before relaxing) + .debug_str 0x000000000003a9ea 0x1bb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x18fa (size before relaxing) + .debug_str 0x000000000003aba5 0x12b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + 0x7fe (size before relaxing) + .debug_str 0x000000000003acd0 0x196 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + 0x8b8 (size before relaxing) + .debug_str 0x000000000003ae66 0x61a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + 0x174d (size before relaxing) + .debug_str 0x000000000003b480 0x3c6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + 0x1794 (size before relaxing) + .debug_str 0x000000000003b846 0x22b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + 0xe89 (size before relaxing) + .debug_str 0x000000000003ba71 0xcc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + 0x13f3 (size before relaxing) + .debug_str 0x000000000003bb3d 0x1fa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + 0xafd (size before relaxing) + .debug_str 0x000000000003bd37 0xf3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + 0x7e5 (size before relaxing) + .debug_str 0x000000000003be2a 0x35e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + 0x152c (size before relaxing) + .debug_str 0x000000000003c188 0xd6 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + 0x1106 (size before relaxing) + .debug_str 0x000000000003c25e 0xf2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + 0x1431 (size before relaxing) + .debug_str 0x000000000003c350 0x9d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + 0x67c (size before relaxing) + .debug_str 0x000000000003c3ed 0xa7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + 0x1361 (size before relaxing) + .debug_str 0x000000000003c494 0x2bc esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + 0x1e41 (size before relaxing) + .debug_str 0x000000000003c750 0x697 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + 0x1959 (size before relaxing) + .debug_str 0x000000000003cde7 0xa5 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + 0xab9 (size before relaxing) + .debug_str 0x000000000003ce8c 0x18d esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + 0xf2a (size before relaxing) + .debug_str 0x000000000003d019 0xdb esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + 0x850 (size before relaxing) + .debug_str 0x000000000003d0f4 0x692 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x262f (size before relaxing) + .debug_str 0x000000000003d786 0x6f esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + 0x64f (size before relaxing) + .debug_str 0x000000000003d7f5 0x11d4 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + 0x4c73 (size before relaxing) + .debug_str 0x000000000003e9c9 0x351 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + 0x3eb4 (size before relaxing) + .debug_str 0x000000000003ed1a 0xf79 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + 0x50c0 (size before relaxing) + .debug_str 0x000000000003fc93 0xec esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + 0xcf1 (size before relaxing) + .debug_str 0x000000000003fd7f 0x101 esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + 0x766 (size before relaxing) + .debug_str 0x000000000003fe80 0x103 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + 0x763 (size before relaxing) + .debug_str 0x000000000003ff83 0xe1 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + 0x6b1 (size before relaxing) + .debug_str 0x0000000000040064 0xa1e esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + 0x544d (size before relaxing) + .debug_str 0x0000000000040a82 0x1be esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + 0x105b (size before relaxing) + .debug_str 0x0000000000040c40 0x73d esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + 0x10a7 (size before relaxing) + .debug_str 0x000000000004137d 0xee esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + 0x99b (size before relaxing) + .debug_str 0x000000000004146b 0x95 esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + 0x1081 (size before relaxing) + .debug_str 0x0000000000041500 0xd3 esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + 0x72d (size before relaxing) + .debug_str 0x00000000000415d3 0x102 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + 0x430d (size before relaxing) + .debug_str 0x00000000000416d5 0x76 esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + 0xc88 (size before relaxing) + .debug_str 0x000000000004174b 0x1c2 esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + 0xf3d (size before relaxing) + .debug_str 0x000000000004190d 0x13e esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + 0x3fed (size before relaxing) + .debug_str 0x0000000000041a4b 0x986 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + 0xabe (size before relaxing) + .debug_str 0x00000000000423d1 0x16d /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) + 0x252 (size before relaxing) + .debug_str 0x000000000004253e 0xbd7 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + 0x1768 (size before relaxing) + .debug_str 0x0000000000043115 0x10c9 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + 0x2357 (size before relaxing) + .debug_str 0x00000000000441de 0x915 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + 0x1b4c (size before relaxing) + .debug_str 0x0000000000044af3 0xb6 esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + 0x6d3 (size before relaxing) + .debug_str 0x0000000000044ba9 0x6d3 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x1be4 (size before relaxing) + .debug_str 0x000000000004527c 0xc3a esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + 0x169e (size before relaxing) + .debug_str 0x0000000000045eb6 0x5e3 esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + 0x42a8 (size before relaxing) + .debug_str 0x0000000000046499 0x328 esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + 0x4169 (size before relaxing) + .debug_str 0x00000000000467c1 0xbb esp-idf/lwip/liblwip.a(wlanif.c.obj) + 0x3de2 (size before relaxing) + .debug_str 0x000000000004687c 0x54 esp-idf/lwip/liblwip.a(ethip6.c.obj) + 0x17a3 (size before relaxing) + .debug_str 0x00000000000468d0 0x1f3c esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + 0x491d (size before relaxing) + .debug_str 0x000000000004880c 0x153 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + 0x1aec (size before relaxing) + .debug_str 0x000000000004895f 0x1a4 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + 0x13d7 (size before relaxing) + .debug_str 0x0000000000048b03 0x61e esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + 0x3270 (size before relaxing) + .debug_str 0x0000000000049121 0x575 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + 0x361e (size before relaxing) + .debug_str 0x0000000000049696 0x10c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + 0xa14 (size before relaxing) + .debug_str 0x00000000000497a2 0x1d9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + 0xc1f (size before relaxing) + .debug_str 0x000000000004997b 0x252 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + 0xb67 (size before relaxing) + .debug_str 0x0000000000049bcd 0x155 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + 0xb67 (size before relaxing) + .debug_str 0x0000000000049d22 0xdd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + 0x642 (size before relaxing) + .debug_str 0x0000000000049dff 0x152 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + 0x69a (size before relaxing) + .debug_str 0x0000000000049f51 0x11b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + 0x6c3 (size before relaxing) + .debug_str 0x000000000004a06c 0xe1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + 0x661 (size before relaxing) + .debug_str 0x000000000004a14d 0x6a7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + 0x831 (size before relaxing) + .debug_str 0x000000000004a7f4 0x2fa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + 0xe2c (size before relaxing) + .debug_str 0x000000000004aaee 0x8ae /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + 0x1613 (size before relaxing) + .debug_str 0x000000000004b39c 0xdd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + 0x637 (size before relaxing) + .debug_str 0x000000000004b479 0x2c1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + 0x11f0 (size before relaxing) + .debug_str 0x000000000004b73a 0x3e0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + 0x85f (size before relaxing) + .debug_str 0x000000000004bb1a 0x2b9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + 0x4cc (size before relaxing) + .debug_str 0x000000000004bdd3 0xed /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + 0xc91 (size before relaxing) + .debug_str 0x000000000004bec0 0xed /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + 0x755 (size before relaxing) + .debug_str 0x000000000004bfad 0xc5 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfdi.o) + 0xd3 (size before relaxing) + .debug_str 0x000000000004c072 0x1bd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + 0x758 (size before relaxing) + .debug_str 0x000000000004c22f 0x9 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + 0x758 (size before relaxing) + .debug_str 0x000000000004c238 0xa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + 0x759 (size before relaxing) + .debug_str 0x000000000004c242 0xa /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + 0x759 (size before relaxing) + .debug_str 0x000000000004c24c 0x43a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + 0xdf6 (size before relaxing) + .debug_str 0x000000000004c686 0x43b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + 0xc81 (size before relaxing) + .debug_str 0x000000000004cac1 0x5a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(lib2funcs.o) + 0xd2 (size before relaxing) + .debug_str 0x000000000004cb1b 0x4f /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) + 0x82 (size before relaxing) + .debug_str 0x000000000004cb6a 0x20a /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) + 0x777 (size before relaxing) + .debug_str 0x000000000004cd74 0xda /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + 0x5fe (size before relaxing) + .debug_str 0x000000000004ce4e 0xc3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + 0x5d0 (size before relaxing) + .debug_str 0x000000000004cf11 0x7d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + 0x789 (size before relaxing) + .debug_str 0x000000000004cf8e 0x69 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) + 0x79a (size before relaxing) + .debug_str 0x000000000004cff7 0x6b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + 0x7aa (size before relaxing) + .debug_str 0x000000000004d062 0x57 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) + 0x7a0 (size before relaxing) + .debug_str 0x000000000004d0b9 0x72 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + 0x61b (size before relaxing) + .debug_str 0x000000000004d12b 0xb3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + 0x80a (size before relaxing) + .debug_str 0x000000000004d1de 0x6f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + 0x617 (size before relaxing) + .debug_str 0x000000000004d24d 0x67 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + 0x79d (size before relaxing) + .debug_str 0x000000000004d2b4 0x97 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + 0x7e7 (size before relaxing) + .debug_str 0x000000000004d34b 0x5f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + 0x7ba (size before relaxing) + .debug_str 0x000000000004d3aa 0x67 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + 0x74b (size before relaxing) + .debug_str 0x000000000004d411 0x90 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + 0x953 (size before relaxing) + .debug_str 0x000000000004d4a1 0x69 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + 0x73d (size before relaxing) + .debug_str 0x000000000004d50a 0x5e /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + 0x7a3 (size before relaxing) + .debug_str 0x000000000004d568 0x61 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + 0x7e7 (size before relaxing) + .debug_str 0x000000000004d5c9 0x1c1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + 0x7d6 (size before relaxing) + .debug_str 0x000000000004d78a 0x2b1 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + 0x9b8 (size before relaxing) + .debug_str 0x000000000004da3b 0x7f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + 0x8a3 (size before relaxing) + .debug_str 0x000000000004daba 0x73 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + 0x961 (size before relaxing) + .debug_str 0x000000000004db2d 0xc7 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + 0x907 (size before relaxing) + .debug_str 0x000000000004dbf4 0x61 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + 0x76e (size before relaxing) + .debug_str 0x000000000004dc55 0x69 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + 0x7a6 (size before relaxing) + .debug_str 0x000000000004dcbe 0x63 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + 0x733 (size before relaxing) + .debug_str 0x000000000004dd21 0x5d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + 0x7e4 (size before relaxing) + .debug_str 0x000000000004dd7e 0xe0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + 0x5f4 (size before relaxing) + .debug_str 0x000000000004de5e 0x5d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) + 0x759 (size before relaxing) + .debug_str 0x000000000004debb 0x67 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + 0x7d0 (size before relaxing) + .debug_str 0x000000000004df22 0x65 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + 0x795 (size before relaxing) + .debug_str 0x000000000004df87 0x63 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + 0x76f (size before relaxing) + .debug_str 0x000000000004dfea 0x6f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + 0x774 (size before relaxing) + .debug_str 0x000000000004e059 0x300 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + 0xc56 (size before relaxing) + .debug_str 0x000000000004e359 0x82 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + 0x993 (size before relaxing) + .debug_str 0x000000000004e3db 0x72 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + 0x998 (size before relaxing) + .debug_str 0x000000000004e44d 0x2e8 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + 0xf03 (size before relaxing) + .debug_str 0x000000000004e735 0x194 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + 0xdc5 (size before relaxing) + .debug_str 0x000000000004e8c9 0xe0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + 0x63f (size before relaxing) + .debug_str 0x000000000004e9a9 0x36 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + 0xf33 (size before relaxing) + .debug_str 0x000000000004e9df 0xfdf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .debug_str 0x000000000004e9df 0x63 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + 0x777 (size before relaxing) + .debug_str 0x000000000004ea42 0x67 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + 0x798 (size before relaxing) + .debug_str 0x000000000004eaa9 0xf4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + 0xab7 (size before relaxing) + .debug_str 0x000000000004eb9d 0x5b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + 0x5ec (size before relaxing) + .debug_str 0x000000000004ebf8 0xf0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + 0xb8f (size before relaxing) + .debug_str 0x000000000004ece8 0x66 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + 0xa9a (size before relaxing) + .debug_str 0x000000000004ed4e 0x6c /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) + 0x5e5 (size before relaxing) + .debug_str 0x000000000004edba 0xc6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + 0x8e9 (size before relaxing) + .debug_str 0x000000000004ee80 0x6b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + 0x950 (size before relaxing) + .debug_str 0x000000000004eeeb 0x59 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + 0x955 (size before relaxing) + .debug_str 0x000000000004ef44 0x7f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + 0xa60 (size before relaxing) + .debug_str 0x000000000004efc3 0xf4 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + 0x666 (size before relaxing) + .debug_str 0x000000000004f0b7 0xc6 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + 0x61d (size before relaxing) + .debug_str 0x000000000004f17d 0x15 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + 0xe7a (size before relaxing) + .debug_str 0x000000000004f192 0x19 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + 0xd13 (size before relaxing) + +Cross Reference Table + +Symbol File +APRecvBcnStartTick /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ApFreqCalTimer /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +BT_init_rx_filters /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) +BT_tx_8m_enable /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) +BT_tx_if_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) +CONNECTED_BIT esp-idf/wifi/libwifi.a(wifi.c.obj) +Cache_Flush_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +Cache_Read_Disable_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) +Cache_Read_Enable_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +CanDoFreqCal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +CurFreeSigIdx /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +CurSigIdxToBeUse /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +DefFreqCalTimer /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +DefFreqCalTimerCB /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ESP_EFUSE_ABS_DONE_0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC2_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC2_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC_VREF_AND_SDIO_DREF esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_CPU_FREQ_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_CPU_FREQ_RATED esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_VER_DIS_APP_CPU esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_VER_DIS_BT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_VER_PKG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_CHIP_VER_REV1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_CHIP_VER_REV2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_CONSOLE_DEBUG_DISABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_DISABLE_DL_CACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DISABLE_DL_DECRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DISABLE_DL_ENCRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DISABLE_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ENCRYPT_CONFIG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ENCRYPT_FLASH_KEY esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FLASH_CRYPT_CNT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_MAC_CUSTOM esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) +ESP_EFUSE_MAC_CUSTOM_CRC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) +ESP_EFUSE_MAC_CUSTOM_VER esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) +ESP_EFUSE_MAC_FACTORY esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) +ESP_EFUSE_MAC_FACTORY_CRC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) +ESP_EFUSE_RD_DIS_BLK1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +ESP_EFUSE_RD_DIS_BLK2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +ESP_EFUSE_RD_DIS_BLK3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +ESP_EFUSE_SDIO_FORCE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SDIO_TIEH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SECURE_BOOT_KEY esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_BLK1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +ESP_EFUSE_WR_DIS_BLK2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +ESP_EFUSE_WR_DIS_BLK3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +ESP_EFUSE_WR_DIS_FLASH_CRYPT_CNT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_XPD_SDIO_REG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ETH_EVENT esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) +FATAL_EXCEPTION esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +FreqCalCntForScan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +GPIO esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +GPIO_HOLD_MASK esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +GPIO_PIN_MUX_REG esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +GetAccess /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +HighestFreqOffsetInOneChk /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +IP_EVENT esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/esp_event/libesp_event.a(event_send.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/https_server/libhttps_server.a(https_server.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) +LowestFreqOffsetInOneChk /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +MD5Final esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) +MD5Init esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) +MD5Update esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) +MESH_EVENT esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) +NETIF_PPP_STATUS esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) +NoiseTimerInterval /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +RC_GetAckRate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) +RC_GetAckTime /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +RC_GetBlockAckTime /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +RC_GetCtsTime /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +RC_GetRtsRate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) +RC_SetBasicRate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(rate_control.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +RFChannelSel /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) +RTCCNTL esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/soc/libsoc.a(brownout_hal.c.obj) +RTCIO esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) +RxNodeNum /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +SENS esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +SHA1Final esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) +SHA1Init esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) +SHA1Transform esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) +SHA1Update esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) +SPI0 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) +SPI1 esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +SPI2 esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) +SPI3 esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) +SigInMacISR /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +SigSpaceFree /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +SigSpaceMalloc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +TIMERG0 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +TIMERG1 esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) + esp-idf/esp32/libesp32.a(int_wdt.c.obj) +Td0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) +Td4s esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) +Te0 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) +TestStaFreqCalValInput /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +TmpSTAAPCloseAP /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +TotalUsedSigNum /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +TxNodeNum /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +Tx_Copy2Queue /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +UART0 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +UART1 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +UART2 esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +VolToPart esp-idf/fatfs/libfatfs.a(diskio.c.obj) + esp-idf/fatfs/libfatfs.a(ff.c.obj) +WIFI_EVENT esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/esp_event/libesp_event.a(event_send.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + esp-idf/https_server/libhttps_server.a(https_server.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) +WIFI_MESH_EVENT /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +Xthal_intlevel /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) + esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) +_Balloc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +_Bfree /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +_C_time_locale /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-timelocal.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) +_DebugExceptionVector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_DoubleExceptionVector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_ITM_deregisterTMCloneTable /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o +_ITM_registerTMCloneTable /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o +_KernelExceptionVector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_Level2Vector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_Level3Vector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_Level4Vector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_Level5Vector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_NMIExceptionVector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_PathLocale /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) +_Unwind_Backtrace /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) +_Unwind_DeleteException /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) +_Unwind_FindEnclosingFunction /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) +_Unwind_Find_FDE /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) +_Unwind_ForcedUnwind /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) +_Unwind_GetCFA /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) +_Unwind_GetDataRelBase /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) +_Unwind_GetGR /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) +_Unwind_GetIP /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) +_Unwind_GetIPInfo /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) +_Unwind_GetLanguageSpecificData /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) +_Unwind_GetRegionStart /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) +_Unwind_GetTextRelBase /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) +_Unwind_RaiseException /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) +_Unwind_Resume /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) +_Unwind_Resume_or_Rethrow /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) +_Unwind_SetGR /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) +_Unwind_SetIP /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) +_UserExceptionVector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_WindowOverflow12 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_WindowOverflow4 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_WindowOverflow8 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_WindowUnderflow12 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_WindowUnderflow4 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_WindowUnderflow8 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_ZN10__cxxabiv111__terminateEPFvvE /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) +_ZN10__cxxabiv112__unexpectedEPFvvE /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) +_ZN10__cxxabiv117__class_type_infoD0Ev /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) +_ZN10__cxxabiv117__class_type_infoD1Ev /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) +_ZN10__cxxabiv117__class_type_infoD2Ev /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) +_ZN10__cxxabiv119__terminate_handlerE /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) +_ZN10__cxxabiv120__si_class_type_infoD0Ev /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) +_ZN10__cxxabiv120__si_class_type_infoD1Ev /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) +_ZN10__cxxabiv120__si_class_type_infoD2Ev /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) +_ZN10__cxxabiv120__unexpected_handlerE /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) +_ZN12Flash_Access5flushEv esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) +_ZN14NVSHandleEntry17s_nvs_next_handleE esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs11PageManager12activatePageEv esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +_ZN3nvs11PageManager14requestNewPageEv esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs11PageManager4loadEjj esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs11PageManager9fillStatsER11nvs_stats_t esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs14nvs_flash_readEjPvj esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs15NVSHandleSimple10erase_itemEPKc esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimple10get_stringEPKcPcj esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimple10set_stringEPKcS2_ esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimple13get_item_sizeENS_8ItemTypeEPKcRj esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimple14get_typed_itemENS_8ItemTypeEPKcPvj esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimple14set_typed_itemENS_8ItemTypeEPKcPKvj esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimple20get_used_entry_countERj esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimple22calcEntriesInNamespaceERj esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimple6commitEv esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimple8get_blobEPKcPvj esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimple8set_blobEPKcPKvj esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimple9debugDumpEv esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimple9erase_allEv esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimple9fillStatsER11nvs_stats_t esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimple9findEntryEP21nvs_opaque_iterator_tPKc esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimple9nextEntryEP21nvs_opaque_iterator_t esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimpleD0Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimpleD1Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15NVSHandleSimpleD2Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs15nvs_flash_writeEjPKvj esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs19NVSPartitionManager11init_customEPKcjj esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs19NVSPartitionManager11open_handleEPKcS2_15nvs_open_mode_tPPNS_15NVSHandleSimpleE esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs19NVSPartitionManager12close_handleEPNS_15NVSHandleSimpleE esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs19NVSPartitionManager12get_instanceEv esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs19NVSPartitionManager14init_partitionEPKc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs19NVSPartitionManager16deinit_partitionEPKc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs19NVSPartitionManager17open_handles_sizeEv esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +_ZN3nvs19NVSPartitionManager24lookup_storage_from_nameEPKc esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs19NVSPartitionManager8instanceE esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +_ZN3nvs19NVSPartitionManagerD0Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +_ZN3nvs19NVSPartitionManagerD1Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +_ZN3nvs19NVSPartitionManagerD2Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +_ZN3nvs4Item14calculateCrc32EPKhj esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs4Lock10mSemaphoreE esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs4Page10initializeEv esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs4Page10setVersionEh esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs4Page10writeEntryERKNS_4ItemE esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs4Page11calcEntriesER11nvs_stats_t esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +_ZN3nvs4Page11markFreeingEv esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +_ZN3nvs4Page12setSeqNumberEj esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +_ZN3nvs4Page14alterPageStateENS0_9PageStateE esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs4Page14writeEntryDataEPKhj esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs4Page15alterEntryStateEjNS0_10EntryStateE esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs4Page15mLoadEntryTableEv esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs4Page15pageStateToNameENS0_9PageStateE esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs4Page17eraseEntryAndSpanEj esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs4Page20alterEntryRangeStateEjjNS0_10EntryStateE esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs4Page20updateFirstUsedEntryEjj esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs4Page4loadEj esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +_ZN3nvs4Page5eraseEv esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +_ZN3nvs4Page6Header14calculateCrc32Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs4Page7cmpItemEhNS_8ItemTypeEPKcPKvjhNS_9VerOffsetE esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs4Page8findItemEhNS_8ItemTypeEPKcRjRNS_4ItemEhNS_9VerOffsetE esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs4Page8findItemEhNS_8ItemTypeEPKchNS_9VerOffsetE esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs4Page8markFullEv esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs4Page8readItemEhNS_8ItemTypeEPKcPvjhNS_9VerOffsetE esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs4Page9copyItemsERS0_ esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +_ZN3nvs4Page9eraseItemEhNS_8ItemTypeEPKchNS_9VerOffsetE esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs4Page9writeItemEhNS_8ItemTypeEPKcPKvjh esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs7Storage13fillEntryInfoERNS_4ItemER16nvs_entry_info_t esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs7Storage14eraseNamespaceEh esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs7Storage15clearNamespacesEv esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs7Storage15getItemDataSizeEhNS_8ItemTypeEPKcRj esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs7Storage16cmpMultiPageBlobEhPKcPKvj esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs7Storage17readMultiPageBlobEhPKcPvj esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs7Storage18eraseMultiPageBlobEhPKcNS_9VerOffsetE esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs7Storage18writeMultiPageBlobEhPKcPKvjNS_9VerOffsetE esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs7Storage19populateBlobIndicesER14intrusive_listINS0_13BlobIndexNodeEE esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs7Storage20eraseOrphanDataBlobsER14intrusive_listINS0_13BlobIndexNodeEE esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs7Storage21createOrOpenNamespaceEPKcbRh esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +_ZN3nvs7Storage22calcEntriesInNamespaceEhRj esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs7Storage4initEjj esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +_ZN3nvs7Storage8findItemEhNS_8ItemTypeEPKcRPNS_4PageERNS_4ItemEhNS_9VerOffsetE esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs7Storage8readItemEhNS_8ItemTypeEPKcPvj esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs7Storage9debugDumpEv esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs7Storage9eraseItemEhNS_8ItemTypeEPKc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs7Storage9fillStatsER11nvs_stats_t esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs7Storage9findEntryEP21nvs_opaque_iterator_tPKc esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs7Storage9nextEntryEP21nvs_opaque_iterator_t esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs7Storage9writeItemEhNS_8ItemTypeEPKcPKvj esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) +_ZN3nvs7StorageD1Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +_ZN3nvs7StorageD2Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs8HashList13HashListBlockC1Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) +_ZN3nvs8HashList13HashListBlockC2Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) +_ZN3nvs8HashList4findEjRKNS_4ItemE esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs8HashList5clearEv esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs8HashList5eraseEjb esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs8HashList6insertERKNS_4ItemEj esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZN3nvs8HashListC1Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +_ZN3nvs8HashListC2Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) +_ZN3nvs8HashListD1Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZN3nvs8HashListD2Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) +_ZN3nvs9NVSHandle8get_itemIaEEiPKcRT_ esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs9NVSHandle8get_itemIhEEiPKcRT_ esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs9NVSHandle8get_itemIiEEiPKcRT_ esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs9NVSHandle8get_itemIjEEiPKcRT_ esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs9NVSHandle8get_itemIsEEiPKcRT_ esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs9NVSHandle8get_itemItEEiPKcRT_ esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs9NVSHandle8get_itemIxEEiPKcRT_ esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs9NVSHandle8get_itemIyEEiPKcRT_ esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs9NVSHandle8set_itemIaEEiPKcT_ esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs9NVSHandle8set_itemIhEEiPKcT_ esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs9NVSHandle8set_itemIiEEiPKcT_ esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs9NVSHandle8set_itemIjEEiPKcT_ esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs9NVSHandle8set_itemIsEEiPKcT_ esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs9NVSHandle8set_itemItEEiPKcT_ esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs9NVSHandle8set_itemIxEEiPKcT_ esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN3nvs9NVSHandle8set_itemIyEEiPKcT_ esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZN5crc328crc32_leEjPKhj esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) + esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) +_ZN8WL_Flash10fillOkBuffEi esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) +_ZN8WL_Flash10recoverPosEv esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) +_ZN8WL_Flash11erase_rangeEjj esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) +_ZN8WL_Flash11sector_sizeEv esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) +_ZN8WL_Flash11updateV1_V2Ev esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) +_ZN8WL_Flash12erase_sectorEj esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) +_ZN8WL_Flash12initSectionsEv esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) +_ZN8WL_Flash13updateVersionEv esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) +_ZN8WL_Flash4initEv esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) +_ZN8WL_Flash4readEjPvj esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) +_ZN8WL_Flash5flushEv esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) +_ZN8WL_Flash5writeEjPKvj esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) +_ZN8WL_Flash6configEP11WL_Config_sP12Flash_Access esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) +_ZN8WL_Flash7get_cfgEv esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) +_ZN8WL_Flash7get_drvEv esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) +_ZN8WL_Flash8calcAddrEj esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) +_ZN8WL_Flash8updateWLEv esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) +_ZN8WL_Flash9OkBuffSetEi esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) +_ZN8WL_Flash9chip_sizeEv esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) +_ZN8WL_FlashC1Ev esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) +_ZN8WL_FlashC2Ev esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) +_ZN8WL_FlashD0Ev esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) +_ZN8WL_FlashD1Ev esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) +_ZN8WL_FlashD2Ev esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) +_ZN9Partition11erase_rangeEjj esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) +_ZN9Partition11sector_sizeEv esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) +_ZN9Partition12erase_sectorEj esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) +_ZN9Partition4readEjPvj esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) +_ZN9Partition5writeEjPKvj esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) +_ZN9Partition9chip_sizeEv esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) +_ZN9PartitionC1EPK15esp_partition_t esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) +_ZN9PartitionC2EPK15esp_partition_t esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) +_ZN9PartitionD0Ev esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) +_ZN9PartitionD1Ev esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) +_ZN9PartitionD2Ev esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) +_ZNK10__cxxabiv117__class_type_info10__do_catchEPKSt9type_infoPPvj /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) +_ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PKvRNS0_15__upcast_resultE /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) +_ZNK10__cxxabiv117__class_type_info11__do_upcastEPKS0_PPv /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) +_ZNK10__cxxabiv117__class_type_info12__do_dyncastEiNS0_10__sub_kindEPKS0_PKvS3_S5_RNS0_16__dyncast_resultE /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) +_ZNK10__cxxabiv117__class_type_info20__do_find_public_srcEiPKvPKS0_S2_ /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) +_ZNK10__cxxabiv120__si_class_type_info11__do_upcastEPKNS_17__class_type_infoEPKvRNS1_15__upcast_resultE /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) +_ZNK10__cxxabiv120__si_class_type_info12__do_dyncastEiNS_17__class_type_info10__sub_kindEPKS1_PKvS4_S6_RNS1_16__dyncast_resultE /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) +_ZNK10__cxxabiv120__si_class_type_info20__do_find_public_srcEiPKvPKNS_17__class_type_infoES2_ /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) +_ZNK3nvs4Item14calculateCrc32Ev esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZNK3nvs4Item26calculateCrc32WithoutValueEv esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) +_ZNK3nvs4Page12getSeqNumberERj esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) +_ZNK3nvs4Page18getVarDataTailroomEv esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZNK3nvs4Page9debugDumpEv esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZNK3nvs4Page9readEntryEjRNS_4ItemE esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZNK3nvs7Storage7isValidEv esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZNKSt9type_info10__do_catchEPKS_PPvj /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) +_ZNKSt9type_info11__do_upcastEPKN10__cxxabiv117__class_type_infoEPPv /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) +_ZNKSt9type_info14__is_pointer_pEv /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) +_ZNKSt9type_info15__is_function_pEv /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) +_ZNSt9type_infoD0Ev /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) +_ZNSt9type_infoD1Ev /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) +_ZNSt9type_infoD2Ev /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) +_ZSt10unexpectedv /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) +_ZSt13get_terminatev /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) +_ZSt13set_terminatePFvvE /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) +_ZSt14get_unexpectedv /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) +_ZSt14set_unexpectedPFvvE /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) +_ZSt15get_new_handlerv /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) +_ZSt15set_new_handlerPFvvE /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) +_ZSt18uncaught_exceptionv esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +_ZSt7nothrow /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_handler.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZSt9terminatev /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_unex_handler.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) +_ZTISt9bad_alloc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) +_ZTISt9exception /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) +_ZTSSt9bad_alloc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) +_ZTSSt9exception /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) +_ZTV8WL_Flash esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) +_ZTV9Partition esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) +_ZTVN10__cxxabiv117__class_type_infoE /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) +_ZTVN10__cxxabiv120__si_class_type_infoE /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) +_ZTVN3nvs15NVSHandleSimpleE esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +_ZTVN3nvs19NVSPartitionManagerE esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) +_ZTVSt9type_info /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) +_ZdaPv /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) +_ZdlPv /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_opv.o) + esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +_ZdlPvj /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_ops.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) +_ZnajRKSt9nothrow_t /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +_ZnwjRKSt9nothrow_t /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opvnt.o) + esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +__DTOR_END__ /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o +__TMC_END__ /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o +__action_table /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) +__adddf3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_addsubdf3.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__any_on /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) +__ascii_mbtowc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) +__ascii_wctomb /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) +__assert /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) +__assert_func /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + esp-idf/lwip/liblwip.a(ethernetif.c.obj) + esp-idf/lwip/liblwip.a(wlanif.c.obj) + esp-idf/lwip/liblwip.a(netdb.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + esp-idf/fatfs/libfatfs.a(diskio.c.obj) + esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/esp32/libesp32.a(reset_reason.c.obj) + esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + esp-idf/esp32/libesp32.a(hw_random.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/log/liblog.a(log.c.obj) + esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_item_hash_list.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/soc/libsoc.a(rtc_time.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_common/libesp_common.a(ipc.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/esp32/libesp32.a(dport_access.c.obj) + esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +__b2d /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) +__bswapsi2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +__chclass /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) +__copybits /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__cxa_allocate_dependent_exception esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__cxa_allocate_exception esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__cxa_begin_catch esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) +__cxa_call_terminate esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) +__cxa_call_unexpected /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) +__cxa_end_catch esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) +__cxa_free_dependent_exception esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__cxa_free_exception esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__cxa_get_exception_ptr esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__cxa_get_globals /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) +__cxa_get_globals_fast /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) +__cxa_guard_abort esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) +__cxa_guard_acquire esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) +__cxa_guard_dummy esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) +__cxa_guard_release esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) +__cxa_rethrow esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) +__cxa_throw esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__cxx_fatal_exception esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__cxx_fatal_exception_bool esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__cxx_fatal_exception_int esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__cxx_fatal_exception_message esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__cxx_fatal_exception_message_va esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__d2b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__deregister_frame /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) +__deregister_frame_info /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o +__deregister_frame_info_bases /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) +__divdf3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdf3.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) +__divdi3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + esp-idf/newlib/libnewlib.a(time.c.obj) +__divsf3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divsf3.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +__dso_handle /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o +__env_lock /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) +__env_unlock /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) +__eqdf2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__errno /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) +__extendsfdf2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_extendsfdf2.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +__fixdfdi /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfdi.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) +__fixdfsi /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfsi.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__fixunsdfdi /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfdi.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) +__fixunsdfsi /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixunsdfsi.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__floatdidf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatdidf.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) +__floatdisf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatdisf.o) +__floatsidf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatsidf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) +__floatundidf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatdidf.o) +__floatundisf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatdisf.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +__floatunsidf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatsidf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__fp_lock_all /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +__fp_unlock_all /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +__fputwc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) +__gedf2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) +__gethex /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__getopt_long_only_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) +__getopt_long_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) +__getopt_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) +__getreent esp-idf/freertos/libfreertos.a(tasks.c.obj) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sniprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-time.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-syswrite.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysstat.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysread.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysclose.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) + esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/console/libconsole.a(argtable3.c.obj) + esp-idf/console/libconsole.a(commands.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) + esp-idf/ca/libca.a(ca.c.obj) + esp-idf/main/libmain.a(main.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/newlib/libnewlib.a(heap.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) +__gettzinfo /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) +__global_locale /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) +__gtdf2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__gxx_personality_v0 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) +__hexdig_fun /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) +__hexnan /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__hi0bits /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) +__i2b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__init_array_end esp-idf/esp32/libesp32.a(cpu_start.c.obj) +__init_array_start esp-idf/esp32/libesp32.a(cpu_start.c.obj) +__ledf2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__lo0bits /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) +__locale_ctype_ptr /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncasecmp.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) + esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/console/libconsole.a(argtable3.c.obj) + esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) +__locale_ctype_ptr_l /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) +__locale_mb_cur_max /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) +__localeconv_l /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__lshift /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__ltdf2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__match /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-hexnan.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__mcmp /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__mdiff /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__moddi3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + esp-idf/newlib/libnewlib.a(time.c.obj) +__month_lengths /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) +__mprec_bigtens /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__mprec_tens /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__mprec_tinytens /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) +__muldf3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_muldf3.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) +__multadd /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) +__multiply /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__nedf2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) +__packed__ /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +__popcountsi2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_popcountsi2.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +__pow5mult /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__ratio /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__register_frame /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) +__register_frame_info /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o +__register_frame_info_bases /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) +__register_frame_info_table /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) +__register_frame_info_table_bases /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) +__register_frame_table /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) +__s2b /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__sccl /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) +__sclose /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +__seofread /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) +__sf_fake_stderr /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) +__sf_fake_stdin /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) +__sf_fake_stdout /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) +__sflags /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) +__sflush_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) +__sfmoreglue /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +__sfp /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) +__sfp_lock_acquire /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) +__sfp_lock_release /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) +__sfvwrite_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) +__sinit /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) +__sinit_lock_acquire /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +__sinit_lock_release /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +__smakebuf_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) +__sprint_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) +__sread /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +__srefill_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) +__srget /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) +__srget_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rget.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) +__sseek /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +__ssprint_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) +__ssrefill_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) +__ssvfiscanf_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) +__ssvfscanf_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) +__state_table /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) +__subdf3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_addsubdf3.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__submore /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) +__swbuf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) +__swbuf_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) +__swhatbuf_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) +__swrite /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +__swsetup_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) +__time_load_locale /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-timelocal.o) +__truncdfsf2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_truncdfsf2.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__tz_lock /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) +__tz_unlock /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) +__tzcalc_limits /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) +__udivdi3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + esp-idf/soc/libsoc.a(rtc_time.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) +__ulp /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__umoddi3 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) +__unorddf2 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +__wpa_send_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +__xtensa_libgcc_window_spill /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(lib2funcs.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) +__xtensa_nonlocal_goto /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(lib2funcs.o) +__xtensa_sync_caches /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(lib2funcs.o) +_asprintf_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) +_atoi_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) +_binary_cacert_pem_end esp-idf/https_server/libhttps_server.a(cacert.pem.S.obj) + esp-idf/https_server/libhttps_server.a(https_server.c.obj) +_binary_cacert_pem_start esp-idf/https_server/libhttps_server.a(cacert.pem.S.obj) + esp-idf/https_server/libhttps_server.a(https_server.c.obj) +_binary_prvtkey_pem_end esp-idf/https_server/libhttps_server.a(prvtkey.pem.S.obj) + esp-idf/https_server/libhttps_server.a(https_server.c.obj) +_binary_prvtkey_pem_start esp-idf/https_server/libhttps_server.a(prvtkey.pem.S.obj) + esp-idf/https_server/libhttps_server.a(https_server.c.obj) +_bss_end esp-idf/esp32/libesp32.a(cpu_start.c.obj) +_bss_start esp-idf/esp32/libesp32.a(cpu_start.c.obj) +_calloc_r esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +_cleanup /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +_cleanup_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) +_close_r esp-idf/vfs/libvfs.a(vfs.c.obj) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysclose.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) +_cnx_start_connect_without_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +_ctype_ /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) +_data_start esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) +_daylight /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) +_do_wifi_start /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +_do_wifi_stop /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +_dtoa_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) +_esp_error_check_failed esp-idf/esp32/libesp32.a(panic.c.obj) + esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_pagemanager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/https_server/libhttps_server.a(https_server.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) + esp-idf/ca/libca.a(ca.c.obj) + esp-idf/main/libmain.a(main.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_common/libesp_common.a(brownout.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +_esp_error_check_failed_without_abort esp-idf/esp32/libesp32.a(panic.c.obj) +_esp_wifi_clear_default_wifi_handlers esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +_esp_wifi_set_default_wifi_handlers esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +_exit esp-idf/newlib/libnewlib.a(syscalls.c.obj) +_fclose_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +_fcntl_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) +_fflush_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) +_fgetc_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) +_fgets_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) +_findenv /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) +_findenv_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) +_fini /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crti.o +_fiprintf_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) +_fopen_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) +_fprintf_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) +_fputc_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) +_fputs_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) +_fputwc_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) +_fread_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) +_free_r esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +_frxt_dispatch esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +_frxt_int_enter esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_frxt_int_exit esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_frxt_setup_switch esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp32/libesp32.a(crosscore_int.c.obj) +_frxt_task_coproc_state esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) +_frxt_tick_timer_init esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +_frxt_timer_int esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_fseek_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) +_fseeko_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) +_fstat_r esp-idf/vfs/libvfs.a(vfs.c.obj) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) +_ftell_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) +_ftello_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) +_fwalk /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +_fwalk_reent /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) +_fwrite_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) +_g_esp_netif_inherent_ap_config esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +_g_esp_netif_inherent_eth_config esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +_g_esp_netif_inherent_ppp_config esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) +_g_esp_netif_inherent_sta_config esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +_g_esp_netif_netstack_default_eth esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +_g_esp_netif_netstack_default_ppp esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) +_g_esp_netif_netstack_default_wifi_ap esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +_g_esp_netif_netstack_default_wifi_sta esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +_g_esp_netif_soft_ap_ip esp-idf/esp_netif/libesp_netif.a(esp_netif_defaults.c.obj) +_getenv_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) +_getpid_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +_gettimeofday_r esp-idf/newlib/libnewlib.a(time.c.obj) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-time.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +_global_impure_ptr /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +_heap_start esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) +_init /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crti.o +_init_start esp-idf/esp32/libesp32.a(cpu_start.c.obj) +_iram_end esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) +_iram_start esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) +_isatty_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) +_kill_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +_link_r esp-idf/vfs/libvfs.a(vfs.c.obj) +_localeconv_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) +_lock_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) +_lock_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +_lock_close esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +_lock_close_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +_lock_init esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +_lock_init_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +_lock_release esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) +_lock_release_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +_lock_try_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +_lock_try_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +_lseek_r esp-idf/vfs/libvfs.a(vfs.c.obj) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) +_malloc_r esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +_mbrtowc_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) +_mbtowc_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) +_mesh_check_roots_gone /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_check_window_close_expire /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_check_window_open_expire /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_find_root_competitor /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +_mesh_remove_gone /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_reset_window_open_time /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_roots_num_reach_max /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_roots_process_announce /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_roots_process_conflict_table /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_roots_process_fixed /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_roots_process_gone /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_roots_process_stop /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_roots_process_yield /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_set_flag_roots_found /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_timer_process_announce /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_timer_process_conflict_root /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_timer_process_fixed /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_timer_process_gone /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mesh_timer_process_yield /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_mprec_log10 /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) +_open_memstream_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) +_open_r esp-idf/vfs/libvfs.a(vfs.c.obj) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) +_open_wmemstream_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) +_print_roots_count /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_printf_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) +_putc_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) +_putchar_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) +_puts_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) +_raise_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +_read_r esp-idf/vfs/libvfs.a(vfs.c.obj) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysread.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) +_realloc_r esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +_reclaim_reent /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +_rename_r esp-idf/vfs/libvfs.a(vfs.c.obj) +_rodata_start esp-idf/freertos/libfreertos.a(port.c.obj) +_rtc_bss_end esp-idf/esp32/libesp32.a(cpu_start.c.obj) +_rtc_bss_start esp-idf/esp32/libesp32.a(cpu_start.c.obj) +_sbrk_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +_setlocale_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) +_sfread_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) +_siscanf_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) +_sniprintf_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sniprintf.o) +_snprintf_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) +_sprintf_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) +_sscanf_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) +_start /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o +_stat_r esp-idf/vfs/libvfs.a(vfs.c.obj) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysstat.o) +_strdup_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) +_strerror_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) +_strndup_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) +_strtod_l /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +_strtod_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) +_strtol_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) +_strtoll_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) +_strtoul_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) +_strtoull_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) +_sungetc_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) +_svfiprintf_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sniprintf.o) +_svfprintf_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) +_system_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +_thread_local_end esp-idf/freertos/libfreertos.a(port.c.obj) +_thread_local_start esp-idf/freertos/libfreertos.a(port.c.obj) +_times_r esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +_timezone /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) +_tzname /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) +_tzset_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) +_tzset_unlocked /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) +_tzset_unlocked_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) +_ungetc_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) +_unlink_r esp-idf/vfs/libvfs.a(vfs.c.obj) +_user_strerror /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) +_vfiprintf_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) +_vfprintf_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) +_vprintf_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) +_vsnprintf_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) +_wcrtomb_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) +_wctomb_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) +_wifi_vnd_ext_mesh_roots_free /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_wifi_vnd_ext_mesh_roots_malloc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +_write_r esp-idf/vfs/libvfs.a(vfs.c.obj) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-syswrite.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) +_xt_alloca_exc esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_xt_context_restore esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) +_xt_context_save esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) +_xt_coproc_init esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +_xt_coproc_owner_sa esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) +_xt_coproc_release esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +_xt_coproc_restorecs esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_xt_coproc_sa_offset esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) +_xt_coproc_savecs esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +_xt_exception_table esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) +_xt_interrupt_table esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) +_xt_medint2_exit esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_xt_medint3_exit esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_xt_nmi esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) +_xt_panic esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) +_xt_tick_divisor esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +_xt_tick_divisor_init esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +_xt_user_exit esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +_xtos_set_intlevel esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp32/libesp32.a(dport_access.c.obj) +abort esp-idf/esp32/libesp32.a(panic.c.obj) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_term_handler.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_personality.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_terminate.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_common/libesp_common.a(ipc.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +abs /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-abs.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) +access esp-idf/vfs/libvfs.a(vfs.c.obj) +adaptive_test_en /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +adc1_amp_read /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) +adc1_amp_read_full /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) +adc1_pad_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) +adc1_read /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) +adc1_read_test /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) +adc2_pad_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) +adc2_read /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) +adc2_read_test /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) +adc2_wifi_acquire /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +adc2_wifi_release /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +adc_ana_conf_org /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +adc_pad_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) +adc_pad_int /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) +addba_timeout_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +adjtime esp-idf/newlib/libnewlib.a(time.c.obj) +aes_128_cbc_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-cbc.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +aes_128_cbc_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-cbc.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +aes_ccm_ad esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) +aes_ccm_ae esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) +aes_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +aes_decrypt_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +aes_decrypt_init esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +aes_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +aes_encrypt_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +aes_encrypt_init esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +aes_unwrap esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +aes_wrap esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +ampdu_alloc_rx_ba_index /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ampdu_free_rx_ba_index /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ant_btrx_cfg /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ant_bttx_cfg /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ant_dft_cfg /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ant_wifirx_cfg /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ant_wifitx_cfg /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ap_rx_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ap_rxcb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +app_main esp-idf/main/libmain.a(main.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +append_count /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +arg_date0 esp-idf/console/libconsole.a(argtable3.c.obj) +arg_date1 esp-idf/console/libconsole.a(argtable3.c.obj) +arg_daten esp-idf/console/libconsole.a(argtable3.c.obj) +arg_dbl0 esp-idf/console/libconsole.a(argtable3.c.obj) +arg_dbl1 esp-idf/console/libconsole.a(argtable3.c.obj) +arg_dbln esp-idf/console/libconsole.a(argtable3.c.obj) +arg_end esp-idf/console/libconsole.a(argtable3.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +arg_file0 esp-idf/console/libconsole.a(argtable3.c.obj) +arg_file1 esp-idf/console/libconsole.a(argtable3.c.obj) +arg_filen esp-idf/console/libconsole.a(argtable3.c.obj) +arg_free esp-idf/console/libconsole.a(argtable3.c.obj) +arg_freetable esp-idf/console/libconsole.a(argtable3.c.obj) +arg_int0 esp-idf/console/libconsole.a(argtable3.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) +arg_int1 esp-idf/console/libconsole.a(argtable3.c.obj) +arg_intn esp-idf/console/libconsole.a(argtable3.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) +arg_lit0 esp-idf/console/libconsole.a(argtable3.c.obj) +arg_lit1 esp-idf/console/libconsole.a(argtable3.c.obj) +arg_litn esp-idf/console/libconsole.a(argtable3.c.obj) +arg_nullcheck esp-idf/console/libconsole.a(argtable3.c.obj) +arg_parse esp-idf/console/libconsole.a(argtable3.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +arg_print_errors esp-idf/console/libconsole.a(argtable3.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +arg_print_formatted esp-idf/console/libconsole.a(argtable3.c.obj) + esp-idf/console/libconsole.a(commands.c.obj) +arg_print_glossary esp-idf/console/libconsole.a(argtable3.c.obj) + esp-idf/console/libconsole.a(commands.c.obj) +arg_print_glossary_gnu esp-idf/console/libconsole.a(argtable3.c.obj) +arg_print_option esp-idf/console/libconsole.a(argtable3.c.obj) +arg_print_syntax esp-idf/console/libconsole.a(argtable3.c.obj) + esp-idf/console/libconsole.a(commands.c.obj) +arg_print_syntaxv esp-idf/console/libconsole.a(argtable3.c.obj) +arg_rem esp-idf/console/libconsole.a(argtable3.c.obj) +arg_rex0 esp-idf/console/libconsole.a(argtable3.c.obj) +arg_rex1 esp-idf/console/libconsole.a(argtable3.c.obj) +arg_rexn esp-idf/console/libconsole.a(argtable3.c.obj) +arg_str0 esp-idf/console/libconsole.a(argtable3.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +arg_str1 esp-idf/console/libconsole.a(argtable3.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +arg_strn esp-idf/console/libconsole.a(argtable3.c.obj) +arg_strptime esp-idf/console/libconsole.a(argtable3.c.obj) +asprintf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-asprintf.o) + esp-idf/console/libconsole.a(commands.c.obj) +assoc_ie_buf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +atoi /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + esp-idf/lwip/liblwip.a(netdb.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) + esp-idf/ca/libca.a(ca.c.obj) + esp-idf/main/libmain.a(main.c.obj) +bb_bss_cbw40 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bb_bss_cbw40_ana /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +bb_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +bb_intr_handl /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +bb_wdt_get_status /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +bb_wdt_int_enable /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +bb_wdt_rst_enable /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +bb_wdt_timeout_clear /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +bin_clear_free esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +bootloader_clock_get_rated_freq_mhz esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) +bootloader_common_check_chip_validity esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_common_check_long_hold_gpio esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_erase_part_type_data esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_get_active_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_common_get_chip_revision esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_get_partition_description esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_get_reset_reason esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_get_sha256_of_partition esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +bootloader_common_label_search esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_ota_select_crc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_common_ota_select_invalid esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_common_ota_select_valid esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +bootloader_common_select_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +bootloader_common_vddsdio_configure esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_debug_buffer esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_enable_qio_mode esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +bootloader_fill_random esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +bootloader_flash_clock_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +bootloader_flash_cs_timing_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +bootloader_flash_dummy_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +bootloader_flash_erase_range esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_flash_erase_sector esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_flash_gpio_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +bootloader_flash_read esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_flash_update_id esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +bootloader_flash_write esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_load_image esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_load_image_no_verify esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_mmap esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_mmap_get_free_pages esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_munmap esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_random_disable esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_random_enable esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) +bootloader_read_flash_id esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_reset esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_sha256_data esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_sha256_finish esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_sha256_hex_to_str esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_sha256_start esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_utility_get_selected_boot_partition esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_utility_load_boot_image esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_utility_load_partition_table esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +brownout_hal_config esp-idf/soc/libsoc.a(brownout_hal.c.obj) + esp-idf/esp_common/libesp_common.a(brownout.c.obj) +brownout_hal_intr_clear esp-idf/soc/libsoc.a(brownout_hal.c.obj) + esp-idf/esp_common/libesp_common.a(brownout.c.obj) +brownout_hal_intr_enable esp-idf/soc/libsoc.a(brownout_hal.c.obj) + esp-idf/esp_common/libesp_common.a(brownout.c.obj) +bt_bb_init_cmplx /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) +bt_bb_init_cmplx_reg /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_hw.o) +bt_bb_to_index /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +bt_cmplx_hq_re /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) +bt_cmplx_hq_wr /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) +bt_cmplx_lq_re /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) +bt_cmplx_lq_wr /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) +bt_correct_bbgain /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +bt_dgmixer_fstep_250k /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) +bt_get_i2c_data /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bt_i2c_read_mem /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bt_i2c_read_set /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bt_i2c_set_wifi_data /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bt_i2c_write_set /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bt_index_to_bb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +bt_mode_wifibb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +bt_pwr_cap_sum /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bt_pwr_cap_sum_old /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bt_pwr_freq_old /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bt_pwr_track_num /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bt_rfoffset_en /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) +bt_rxfilt /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) +bt_track_pll_cap /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bt_track_tx_power /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bt_tx_gain_cal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +bt_tx_pwctrl_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +bt_txdc_cal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +bt_txfilt /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) +bt_txiq_cal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +bt_txpwr_backoff /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +bt_wifi_chan_data /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +btpwr_atten_offset /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +btpwr_backoff /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +btpwr_pll_track /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +btpwr_tsen_flag /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +btpwr_tsen_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +btpwr_tsen_old /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +btpwr_tsens_track /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +bzero /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + esp-idf/newlib/libnewlib.a(heap.c.obj) +cacert_pem esp-idf/https_server/libhttps_server.a(cacert.pem.S.obj) +cacert_pem_length esp-idf/https_server/libhttps_server.a(cacert.pem.S.obj) +cache_flash_mmu_set_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +cal_rf_ana_gain /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +call_start_cpu0 esp-idf/esp32/libesp32.a(cpu_start.c.obj) +call_user_start esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +calloc esp-idf/newlib/libnewlib.a(heap.c.obj) + esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/console/libconsole.a(argtable3.c.obj) + esp-idf/console/libconsole.a(commands.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +candidate_monitor_timer_start /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +candidate_monitor_timer_stop /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +cannel_scan_connect_state /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ccmp /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ccmp_256_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) +ccmp_256_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) +ccmp_decrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +ccmp_encrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +ccmp_encrypt_pv1 esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) +ccmp_get_pn esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) +cfg_sdio_volt /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) +cfree esp-idf/newlib/libnewlib.a(heap.c.obj) +chan14_mic_cfg /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +chan14_mic_en /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +chan14_mic_enable /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +chan14_mic_flag /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +chan14_mic_most_power /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +check_bss_queue /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +check_rfpll_write_i2c /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +chip7_phy_api_ctrl /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +chip7_phy_init_ctrl /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +chip7_sleep_params /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +chip_disable /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +chip_enable /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +chip_post_deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +chip_sleep_prot_dis /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +chip_sleep_prot_en /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +chip_v7_adc_wr_dly /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +chip_v7_ana_rx_cfg /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +chip_v7_rxmax_ext /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +chip_v7_rxmax_ext_ana /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +chip_v7_rxmax_ext_dig /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +chip_v7_set_chan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) +chip_v7_set_chan_ana /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +chip_v7_set_chan_misc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +chip_v7_set_chan_nomac /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +chip_v7_set_chan_offset /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +chm_acquire_lock /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +chm_cancel_op /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +chm_deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +chm_end_op /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) +chm_end_op_timeout_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +chm_get_chan_info /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +chm_get_current_channel /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +chm_get_home_channel /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +chm_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +chm_is_at_home_channel /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +chm_mhz2num /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) +chm_release_lock /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +chm_return_home_channel /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +chm_set_current_channel /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +chm_set_home_channel /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +chm_start_op /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cipher_map_net80211_to_public_cipher /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +cipher_type_map_public_to_supp esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +cipher_type_map_supp_to_public esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +cleanup_glue /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) +clear_bss_queue /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +clock_getres esp-idf/newlib/libnewlib.a(time.c.obj) +clock_gettime esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +clock_settime esp-idf/newlib/libnewlib.a(time.c.obj) +close /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysclose.o) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) +closedir esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +cnx_add_rc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_add_to_blacklist /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +cnx_assoc_timeout /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +cnx_assoc_timeout_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +cnx_auth_done /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +cnx_auth_timeout /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) +cnx_auth_timeout_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +cnx_beacon_timeout_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +cnx_bss_alloc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_bss_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_can_do_obss_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_check_bssid_in_blacklist /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_clear_blacklist /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +cnx_coexist_timeout /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +cnx_coexist_timeout_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +cnx_connect_next_ap /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +cnx_connect_timeout /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_connect_timeout_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +cnx_csa_fn /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +cnx_csa_fn_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +cnx_handshake_timeout /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_handshake_timeout_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +cnx_node_alloc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +cnx_node_is_existing /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +cnx_node_join /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +cnx_node_leave /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +cnx_node_remove /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_node_search /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +cnx_obss_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_obss_scan_done_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_obss_scan_timeout /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_rc_search /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_rc_update_age /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_rc_update_rssi /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +cnx_rc_update_state_metric /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_remove_all_rc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +cnx_remove_rc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_remove_rc_except /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_sta_associated /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +cnx_sta_connect_cmd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +cnx_sta_connect_led_timer_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_sta_leave /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +cnx_sta_scan_cmd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +cnx_start_handoff_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +cnx_start_obss_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +cnx_stop_obss_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +cnx_update_bss /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +cnx_update_bss_more /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +coex_arbit_clean_overtime /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) +coex_arbit_deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) +coex_arbit_delete /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) +coex_arbit_dump /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) +coex_arbit_first /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) +coex_arbit_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) +coex_arbit_insert /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) +coex_arbit_next /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) +coex_bb_reset_lock /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +coex_bb_reset_lock_wrapper esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +coex_bb_reset_unlock /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +coex_bb_reset_unlock_wrapper esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +coex_bb_rst_mux /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_hw.o) +coex_bt_high_prio /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) +coex_bt_release /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +coex_bt_release_wrapper esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +coex_bt_request /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +coex_bt_request_wrapper esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +coex_condition_check /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +coex_condition_get /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +coex_condition_set /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +coex_core_bb_reset_lock /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +coex_core_bb_reset_unlock /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +coex_core_deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +coex_core_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +coex_core_pause /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +coex_core_pre_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +coex_core_register_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +coex_core_release /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +coex_core_request /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +coex_core_resume /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +coex_core_status_get /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +coex_core_ts_end /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) +coex_core_ts_start /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) +coex_deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +coex_force_wifi_mode /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_hw.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) +coex_fwm_mux /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_hw.o) +coex_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +coex_is_in_isr_wrapper esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +coex_params /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_param.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +coex_pause /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +coex_pre_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +coex_preference_set /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +coex_register_bt_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +coex_register_bt_cb_wrapper esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +coex_register_wifi_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +coex_register_wifi_channel_change_callback /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_resume /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +coex_schm_all_default /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_a2dp_wifi_conn /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_a2dp_wifi_connecting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_a2dp_wifi_default /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_a2dp_wifi_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_default_wifi_conn /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_default_wifi_connecting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_default_wifi_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_idle_wifi_conn /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_idle_wifi_connecting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_idle_wifi_default /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_default_bt_idle_wifi_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_idle_bt_idle_wifi_default /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_conn /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_connecting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_a2dp_paused_wifi_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_a2dp_wifi_conn /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_a2dp_wifi_connecting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_a2dp_wifi_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_conn_wifi_conn /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_conn_wifi_connecting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_conn_wifi_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_default_wifi_conn /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_default_wifi_connecting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_default_wifi_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_iscan_wifi_conn /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_iscan_wifi_connecting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_iscan_wifi_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_sniff_wifi_conn /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_sniff_wifi_connecting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_bt_sniff_wifi_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_wifi_conn /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_wifi_connecting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_config_wifi_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_conn /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_connecting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_a2dp_paused_wifi_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_a2dp_wifi_conn /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_a2dp_wifi_connecting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_a2dp_wifi_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_conn_wifi_conn /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_conn_wifi_connecting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_conn_wifi_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_default_wifi_conn /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_default_wifi_connecting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_default_wifi_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_iscan_wifi_conn /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_iscan_wifi_connecting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_iscan_wifi_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_sniff_wifi_conn /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_sniff_wifi_connecting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_bt_sniff_wifi_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_wifi_conn /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_wifi_connecting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_standby_wifi_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_conn /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_connecting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_a2dp_paused_wifi_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_a2dp_wifi_conn /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_a2dp_wifi_connecting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_a2dp_wifi_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_conn_wifi_conn /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_conn_wifi_connecting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_conn_wifi_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_default_wifi_conn /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_default_wifi_connecting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_default_wifi_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_iscan_wifi_conn /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_iscan_wifi_connecting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_iscan_wifi_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_sniff_wifi_conn /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_sniff_wifi_connecting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_bt_sniff_wifi_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_wifi_conn /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_wifi_connecting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_ble_mesh_traffic_wifi_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_a2dp_paused_wifi_conn /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_a2dp_paused_wifi_connecting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_a2dp_paused_wifi_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_a2dp_wifi_conn /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_a2dp_wifi_connecting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_a2dp_wifi_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_conn_wifi_conn /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_conn_wifi_connecting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_conn_wifi_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_default_wifi_conn /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_default_wifi_connecting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_default_wifi_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_idle_wifi_conn /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_idle_wifi_connecting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_idle_wifi_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_iscan_wifi_conn /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_iscan_wifi_connecting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_iscan_wifi_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_sniff_wifi_conn /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_sniff_wifi_connecting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_bt_sniff_wifi_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_curr_period_get /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +coex_schm_curr_phase_get /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +coex_schm_curr_phase_idx_get /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +coex_schm_curr_phase_idx_set /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +coex_schm_deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_env /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_get_phase_by_idx /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) +coex_schm_interval_get /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +coex_schm_interval_set /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +coex_schm_register_btdm_callback /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_schm_status_bit_clear /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +coex_schm_status_bit_set /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +coex_schm_status_get /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_status_get /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +coex_time_diff /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) +coex_time_is_in_time /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) +coex_time_is_past /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) +coex_time_now /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_hw.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_time_now_ms /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) +coex_timer_deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) +coex_timer_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) +coex_timer_ts_end_alarm /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) +coex_timer_ts_end_disalarm /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) +coex_timer_ts_end_handler /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) +coex_timer_ts_start_alarm /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) +coex_timer_ts_start_disalarm /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) +coex_timer_ts_start_handler /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) +coex_ts_end_timer_dislarmed /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) +coex_ts_start_timer_dislarmed /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) +coex_unforce_wifi_mode /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_hw.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) +coex_version_get /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +coex_wifi_channel_get /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +coex_wifi_channel_set /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +coex_wifi_release /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +coex_wifi_request /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +coexist_printf esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +connect esp-idf/ca/libca.a(gen_key.c.obj) +connect_scan_flag /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +core_printf esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) +correct_rfpll_offset /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +crc32_le /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/wear_levelling/libwear_levelling.a(crc32.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_types.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +crypto_bignum_add esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_bits esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_cmp esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_div esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_exptmod esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_init esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_init_set esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_inverse esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_is_one esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_is_zero esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_legendre esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_mod esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_mulmod esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_sub esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_bignum_to_bin esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_get_order esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_get_prime esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_init esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_add esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_cmp esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_compute_y_sqr esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_from_bin esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_init esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_invert esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_is_at_infinity esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_is_on_curve esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_mul esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_solve_y_coord esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_point_to_bin esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_prime_len esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_ec_prime_len_bits esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +crypto_get_random esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +crypto_mod_exp esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_internal-modexp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) +cs_create_ctrl_sock esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +cs_free_ctrl_sock esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +cs_recv_from_ctrl_sock esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) +cs_send_to_ctrl_sock esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +current_task_is_wifi_task /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +dac_out /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) +dac_pad_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) +dbg_adjust_long_rate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_ampdu_set /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) +dbg_cnt_eb_alloc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +dbg_cnt_eb_free /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +dbg_cnt_hmac_beacon_show /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) +dbg_cnt_hmac_event_show /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) +dbg_cnt_hmac_malloc_free_show /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) +dbg_cnt_hmac_rxtx_show /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) +dbg_cnt_hmac_txq_show /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) +dbg_cnt_lmac_eb_show /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_cnt_lmac_event_show /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_cnt_lmac_hw_show /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_cnt_lmac_int_show /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_cnt_lmac_ps_reset /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +dbg_cnt_lmac_ps_show /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_cnt_lmac_q_show /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_cnt_lmac_rxtx_show /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_display_acs /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_ebuf_loc_show /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_enable_long_rate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_get_per_conn_trc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_get_trc_table /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_his_lmac_eb_show /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_his_lmac_event_show /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_his_lmac_int_show /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_his_lmac_rx_show /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_his_lmac_tx_show /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_lmac_get_acs /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_lmac_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +dbg_lmac_show /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_perf_path_set /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_perf_path_show /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_perf_throughput_cal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_printf esp-idf/console/libconsole.a(argtable3.c.obj) +dbg_trc_rate_show /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_trc_rate_show_value /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_trc_show_global /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_trc_show_sched /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_trc_show_sched_table /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_trc_show_schedule /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +dbg_wifi_ampdu_show /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) +dbg_wifi_ap_show /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) +dbg_wifi_bss_show /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) +dbg_wifi_chm_show /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) +dbg_wifi_com_show /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) +dbg_wifi_conn_show /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) +dbg_wifi_eap_show /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) +dbg_wifi_esta_show /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) +dbg_wifi_nvs_show /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) +dbg_wifi_sta_bcast_show /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) +dbg_wifi_sta_show /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) +decode esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) + esp-idf/https_server/libhttps_server.a(https_server.c.obj) +default_router_list esp-idf/lwip/liblwip.a(nd6.c.obj) +destination_cache esp-idf/lwip/liblwip.a(nd6.c.obj) +dev_random_entropy_poll esp-idf/ca/libca.a(gen_key.c.obj) +dh_derive_shared esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) +dh_groups_get esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +dh_init esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) +dhcp_arp_reply esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) +dhcp_cleanup esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcp_coarse_tmr esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) +dhcp_fine_tmr esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) +dhcp_inform esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcp_network_changed esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +dhcp_release esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcp_release_and_stop esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcp_renew esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcp_rx_options_given esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcp_rx_options_val esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcp_search_ip_on_mac esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_sta_list.c.obj) +dhcp_set_cb esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcp_set_struct esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcp_start esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcp_stop esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcp_supplied_address esp-idf/lwip/liblwip.a(dhcp.c.obj) +dhcps_coarse_tmr esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) +dhcps_dns_getserver esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcps_dns_setserver esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcps_option_info esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcps_pbuf_alloc esp-idf/lwip/liblwip.a(dhcpserver.c.obj) +dhcps_set_new_lease_cb esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcps_set_option_info esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcps_start esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dhcps_stop esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +disable_wifi_agc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) +discnx_reason_id2str /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +div /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-div.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) +dns_clear_servers esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dns_gethostbyname esp-idf/lwip/liblwip.a(dns.c.obj) +dns_gethostbyname_addrtype esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +dns_getserver esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dns_init esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) +dns_mquery_v4group esp-idf/lwip/liblwip.a(dns.c.obj) +dns_mquery_v6group esp-idf/lwip/liblwip.a(dns.c.obj) +dns_setserver esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +dns_tmr esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) +dpd_scale_set /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +dport_access_end esp-idf/esp32/libesp32.a(dport_access.c.obj) + esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) +dport_access_start esp-idf/esp32/libesp32.a(dport_access.c.obj) + esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) +dup_binstr esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +eTaskGetState esp-idf/freertos/libfreertos.a(tasks.c.obj) +eapol_sm_notify_eap_success esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +eapol_txcb esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +eloop_cancel_timeout esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +eloop_register_timeout esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +emul_timeout /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +enable_wifi_agc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) +environ /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +err_to_errno esp-idf/lwip/liblwip.a(err.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +esf_buf_alloc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +esf_buf_free_static /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +esf_buf_recycle /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +esf_buf_setdown /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +esf_buf_setup /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +esf_buf_setup_for_mesh /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +esp_aes_acquire_hardware esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) +esp_aes_crypt_cbc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-cbc.c.obj) +esp_aes_crypt_cfb128 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +esp_aes_crypt_cfb8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) +esp_aes_crypt_ctr esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +esp_aes_crypt_ecb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +esp_aes_crypt_ofb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +esp_aes_crypt_xts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +esp_aes_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-cbc.c.obj) +esp_aes_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-cbc.c.obj) +esp_aes_release_hardware esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) +esp_aes_setkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-cbc.c.obj) +esp_aes_xts_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +esp_aes_xts_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +esp_aes_xts_setkey_dec esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +esp_aes_xts_setkey_enc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +esp_app_desc esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) +esp_backtrace_get_next_frame esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +esp_backtrace_get_start esp-idf/xtensa/libxtensa.a(debug_helpers_asm.S.obj) + esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) +esp_backtrace_print esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) +esp_base_mac_addr_get esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) +esp_base_mac_addr_set esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) +esp_brownout_init esp-idf/esp_common/libesp_common.a(brownout.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_cache_err_get_cpuid esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +esp_cache_err_int_init esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_chip_info esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) +esp_clear_watchpoint esp-idf/esp32/libesp32.a(panic.c.obj) +esp_clk_apb_freq esp-idf/esp32/libesp32.a(clk.c.obj) + esp-idf/esp32/libesp32.a(hw_random.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_clk_cpu_freq esp-idf/esp32/libesp32.a(clk.c.obj) + esp-idf/esp32/libesp32.a(hw_random.c.obj) + esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) +esp_clk_init esp-idf/esp32/libesp32.a(clk.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_clk_rtc_time esp-idf/newlib/libnewlib.a(time.c.obj) +esp_clk_slowclk_cal_get esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_clk_slowclk_cal_set esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) +esp_clk_xtal_freq esp-idf/esp32/libesp32.a(clk.c.obj) +esp_coex_adapter_funcs_md5_check /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +esp_coex_adapter_register /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +esp_coex_status_bit_clear /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +esp_coex_status_bit_set /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +esp_console_cmd_register esp-idf/console/libconsole.a(commands.c.obj) + esp-idf/https_server/libhttps_server.a(https_server.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +esp_console_deinit esp-idf/console/libconsole.a(commands.c.obj) +esp_console_get_completion esp-idf/console/libconsole.a(commands.c.obj) + esp-idf/main/libmain.a(main.c.obj) +esp_console_get_hint esp-idf/console/libconsole.a(commands.c.obj) + esp-idf/main/libmain.a(main.c.obj) +esp_console_init esp-idf/console/libconsole.a(commands.c.obj) + esp-idf/main/libmain.a(main.c.obj) +esp_console_register_help_command esp-idf/console/libconsole.a(commands.c.obj) + esp-idf/main/libmain.a(main.c.obj) +esp_console_run esp-idf/console/libconsole.a(commands.c.obj) + esp-idf/main/libmain.a(main.c.obj) +esp_console_split_argv esp-idf/console/libconsole.a(split_argv.c.obj) + esp-idf/console/libconsole.a(commands.c.obj) +esp_cpu_in_ocd_debug_mode esp-idf/soc/libsoc.a(cpu_util.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +esp_cpu_reset esp-idf/soc/libsoc.a(cpu_util.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) +esp_cpu_stall esp-idf/soc/libsoc.a(cpu_util.c.obj) + esp-idf/esp_common/libesp_common.a(brownout.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +esp_cpu_unstall esp-idf/soc/libsoc.a(cpu_util.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_crc8 esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) +esp_create_mbedtls_handle esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_crosscore_int_init esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_crosscore_int_send_freq_switch esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + esp-idf/esp32/libesp32.a(pm_esp32.c.obj) +esp_crosscore_int_send_yield esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +esp_deep_sleep esp-idf/esp32/libesp32.a(sleep_modes.c.obj) +esp_deep_sleep_disable_rom_logging esp-idf/esp32/libesp32.a(sleep_modes.c.obj) +esp_deep_sleep_start esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) +esp_default_wake_deep_sleep esp-idf/esp32/libesp32.a(sleep_modes.c.obj) +esp_deregister_freertos_idle_hook esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) +esp_deregister_freertos_idle_hook_for_cpu esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) +esp_deregister_freertos_tick_hook esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) +esp_deregister_freertos_tick_hook_for_cpu esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) +esp_derive_local_mac esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) +esp_dport_access_int_abort esp-idf/esp32/libesp32.a(dport_access.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +esp_dport_access_int_init esp-idf/esp32/libesp32.a(dport_access.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_dport_access_int_pause esp-idf/esp32/libesp32.a(dport_access.c.obj) +esp_dport_access_int_resume esp-idf/esp32/libesp32.a(dport_access.c.obj) +esp_dport_access_read_buffer esp-idf/esp32/libesp32.a(dport_access.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +esp_dport_access_reg_read esp-idf/esp32/libesp32.a(dport_access.c.obj) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/soc/libsoc.a(rtc_init.c.obj) + esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) + esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_dport_access_sequence_reg_read esp-idf/esp32/libesp32.a(dport_access.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +esp_dport_access_stall_other_cpu_end esp-idf/esp32/libesp32.a(dport_access.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_dport_access_stall_other_cpu_start esp-idf/esp32/libesp32.a(dport_access.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_efuse_batch_write_begin esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_batch_write_cancel esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_batch_write_commit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_disable_basic_rom_console esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_get_chip_ver esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) +esp_efuse_get_coding_scheme esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_get_field_size esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_get_pkg_ver esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_mac_get_custom esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) +esp_efuse_mac_get_default esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) +esp_efuse_read_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_read_field_blob esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_read_field_cnt esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_read_reg esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_set_read_protect esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_set_write_protect esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_apply_34_encoding esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_utility_apply_new_coding_scheme esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_burn_efuses esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_clear_program_registers esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_count_once esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_debug_dump_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_erase_virt_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_fill_buff esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_get_number_of_items esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_process esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_read_reg esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_reset esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_update_virt_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_write_blob esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_write_cnt esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_write_reg esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_write_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_write_field_blob esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_write_field_cnt esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_write_random_key esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_write_reg esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_err_to_name esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + esp-idf/main/libmain.a(main.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +esp_err_to_name_r esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) +esp_eth_clear_default_handlers esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +esp_eth_decrease_reference esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) +esp_eth_del_netif_glue esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) +esp_eth_driver_install esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) +esp_eth_driver_uninstall esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) +esp_eth_increase_reference esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) +esp_eth_ioctl esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + esp-idf/lwip/liblwip.a(ethernetif.c.obj) +esp_eth_new_netif_glue esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +esp_eth_receive esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) +esp_eth_set_default_handlers esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +esp_eth_start esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) +esp_eth_stop esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) +esp_eth_transmit esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) +esp_eth_update_input_path esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) +esp_event_dump esp-idf/esp_event/libesp_event.a(esp_event.c.obj) +esp_event_handler_instance_register esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) +esp_event_handler_instance_register_with esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) +esp_event_handler_instance_unregister esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) +esp_event_handler_instance_unregister_with esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) +esp_event_handler_register esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/https_server/libhttps_server.a(https_server.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) +esp_event_handler_register_with esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) +esp_event_handler_register_with_internal esp-idf/esp_event/libesp_event.a(esp_event.c.obj) +esp_event_handler_unregister esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_event_handler_unregister_with esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) +esp_event_handler_unregister_with_internal esp-idf/esp_event/libesp_event.a(esp_event.c.obj) +esp_event_isr_post esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) +esp_event_isr_post_to esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) +esp_event_loop_create esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) +esp_event_loop_create_default esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + esp-idf/main/libmain.a(main.c.obj) +esp_event_loop_delete esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) +esp_event_loop_delete_default esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) +esp_event_loop_run esp-idf/esp_event/libesp_event.a(esp_event.c.obj) +esp_event_post esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_event/libesp_event.a(event_send.c.obj) +esp_event_post_to esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) +esp_event_send esp-idf/esp_event/libesp_event.a(event_send.c.obj) +esp_event_send_internal esp-idf/esp_event/libesp_event.a(event_send.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) +esp_event_send_legacy esp-idf/esp_event/libesp_event.a(event_send.c.obj) +esp_event_send_noop esp-idf/esp_event/libesp_event.a(event_send.c.obj) +esp_event_send_to_default_loop esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) +esp_fill_random esp-idf/esp32/libesp32.a(hw_random.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) +esp_flash_app_disable_os_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_app_disable_protect esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_app_init esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_flash_app_init_os_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_chip_driver_initialized esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_chip_gd esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_chip_generic esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_chip_issi esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_default_chip esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_erase_chip esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_erase_region esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +esp_flash_get_chip_write_protect esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_get_io_mode esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_get_protectable_regions esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_get_protected_region esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_get_size esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_init esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +esp_flash_init_default_chip esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_flash_init_os_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +esp_flash_noos_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +esp_flash_read esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +esp_flash_read_chip_id esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_read_encrypted esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_read_id esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_registered_chips esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_set_chip_write_protect esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +esp_flash_set_io_mode esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_set_protected_region esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_spi1_default_os_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +esp_flash_spi23_default_os_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +esp_flash_write esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +esp_flash_write_encrypted esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_get_deep_sleep_wake_stub esp-idf/esp32/libesp32.a(sleep_modes.c.obj) +esp_get_free_heap_size esp-idf/esp_common/libesp_common.a(system_api.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) +esp_get_idf_version esp-idf/esp_common/libesp_common.a(system_api.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) +esp_get_minimum_free_heap_size esp-idf/esp_common/libesp_common.a(system_api.c.obj) +esp_image_verify esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +esp_image_verify_bootloader esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +esp_image_verify_bootloader_data esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +esp_int_wdt_cpu_init esp-idf/esp32/libesp32.a(int_wdt.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_int_wdt_init esp-idf/esp32/libesp32.a(int_wdt.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_internal_aes_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) +esp_internal_aes_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) +esp_intr_alloc esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(rtc_module.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) + esp-idf/esp32/libesp32.a(crosscore_int.c.obj) +esp_intr_alloc_intrstatus esp-idf/esp32/libesp32.a(intr_alloc.c.obj) +esp_intr_disable esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_intr_enable esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_intr_free esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) +esp_intr_get_cpu esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +esp_intr_get_intno esp-idf/esp32/libesp32.a(intr_alloc.c.obj) +esp_intr_mark_shared esp-idf/esp32/libesp32.a(intr_alloc.c.obj) +esp_intr_noniram_disable esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +esp_intr_noniram_enable esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +esp_intr_reserve esp-idf/esp32/libesp32.a(intr_alloc.c.obj) +esp_intr_set_in_iram esp-idf/esp32/libesp32.a(intr_alloc.c.obj) +esp_ip4addr_aton esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_ip4addr_ntoa esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_ipc_call esp-idf/esp_common/libesp_common.a(ipc.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +esp_ipc_call_blocking esp-idf/esp_common/libesp_common.a(ipc.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) +esp_light_sleep_start esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) +esp_log_early_timestamp esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +esp_log_impl_lock esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/log/liblog.a(log.c.obj) +esp_log_impl_lock_timeout esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/log/liblog.a(log.c.obj) +esp_log_impl_unlock esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/log/liblog.a(log.c.obj) +esp_log_level_set esp-idf/log/liblog.a(log.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) +esp_log_set_vprintf esp-idf/log/liblog.a(log.c.obj) +esp_log_system_timestamp esp-idf/log/liblog.a(log_freertos.c.obj) +esp_log_timestamp esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/esp_event/libesp_event.a(event_send.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/soc/libsoc.a(rtc_time.c.obj) + esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/https_server/libhttps_server.a(https_server.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + esp-idf/main/libmain.a(main.c.obj) + esp-idf/newlib/libnewlib.a(pthread.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +esp_log_write esp-idf/log/liblog.a(log.c.obj) + esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/esp_event/libesp_event.a(event_send.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/https_server/libhttps_server.a(https_server.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + esp-idf/main/libmain.a(main.c.obj) + esp-idf/newlib/libnewlib.a(pthread.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +esp_mbedtls_cleanup esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +esp_mbedtls_conn_delete esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_mbedtls_free_global_ca_store esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_mbedtls_get_bytes_avail esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_mbedtls_get_global_ca_store esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_mbedtls_handshake esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_mbedtls_init_global_ca_store esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_mbedtls_mem_calloc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) +esp_mbedtls_mem_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) +esp_mbedtls_read esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_mbedtls_server_session_create esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_mbedtls_server_session_delete esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_mbedtls_set_global_ca_store esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_mbedtls_verify_certificate esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +esp_mbedtls_write esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_mesh_add_conflict_root /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_allow_root_conflicts /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_ap_enqueue /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_clear /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_clear_expire /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_clear_invalid /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) +esp_mesh_ap_list_find /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_find_expire /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_find_invalid /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_ap_list_update_invalid /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_appie /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_available_txupQ_num /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_best_effort_tx /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_channel_enable_jp /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_check_multi_redundant_ack /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_check_nonassociated_children /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_check_vnd_ie /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_clear_parent /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +esp_mesh_clear_parent_candidate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_combine_multi_redundant_ack /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_compute_my_votes /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_compute_votes /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_conn_deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_conn_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_connect /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_copy_mgmt_announce /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_create_context /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_create_mbox /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_debug_tsf_time /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +esp_mesh_decrypt_vnd_ie /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_delete_group_addr /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_delete_group_id /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_delete_sub_children /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_delivery_toDS /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_delivery_toSelf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_discard_context /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_disconnect /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_encrypt_vnd_ie /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_find_conflict_root /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_fix_root /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_flush_scan_result /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) +esp_mesh_flush_tcpip_queue /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_flush_txup_queue /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_flush_upstream_packets /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_force_txupQ_pending /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_forward_packet /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_free_context /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_free_mbox /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_get_announce_interval /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_ap_assoc_expire /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_get_ap_authmode /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_ap_connections /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_attempts /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_beacon_interval /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_capacity_num /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_child_idx /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_get_child_idx_lock /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_get_child_num /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_get_config /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_conflict_root_state /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_get_group_list /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_group_num /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_id /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_ie_crypto_key /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_layer /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_get_max_layer /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_optlen /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_get_parent_bssid /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_get_parent_candidate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_get_parent_monitor_config /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_get_passive_scan_time /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_root_addr /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_root_healing_delay /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_router /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_router_bssid /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_get_routing_table /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_get_routing_table_size /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_get_rssi_threshold /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_get_rssi_threshold_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_get_rx_pending /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_self_organized /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_get_storage /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_sub_capacity /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_get_subnet_nodes_list /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_subnet_nodes_num /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_switch_parent_paras /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_total_children_num /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_get_total_node_num /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_tsf_time /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +esp_mesh_get_tx_pending /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_get_type /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_vnd_ext_assoc_len /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_get_vnd_roots_len /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_get_vnd_ssid_len /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_get_vote_percentage /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_get_xon_qsize /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_ie_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) +esp_mesh_ie_monitor /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_ie_update_capacity /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_ie_update_rssi /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_insert_child /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_insert_group_addr /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_io_sem_signal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_io_sem_wait /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +esp_mesh_is_my_group /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_is_my_ie_encrypted /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_is_nwk_inited /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_is_nwk_running /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_is_root /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_is_root_conflicts_allowed /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_is_root_fixed /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_is_roots_found /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_is_rt_change_debug /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_is_same_router /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_is_scan_allowed /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_is_switch_parent /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_look_for_network /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_lookup_route /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_lookup_sub_route /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_map_change_beacon_interval /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_map_deauth /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_mesh_map_probe_response /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_map_reject_connection /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_map_stop_beacon /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_match_self /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_mcast_cover_node /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_monitor_nonassociated_children /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_monitor_parent_candidate_ie /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_monitor_parent_ie /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_monitor_vote_candidate_rssi /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_nvs_deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_nvs_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_nvs_operate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) +esp_mesh_nvs_set_assoc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_nvs_set_layer /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_nwk_redundant_route /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_nwk_task_deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_nwk_task_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_operation_rxseqno /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) +esp_mesh_pack_multi_routing_table /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_pack_rmv_announcement /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_parent_reselect /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_parent_select /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_parse_beacon /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_parse_conflict_assoc_ie /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_parse_conflict_roots_ie /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_parse_ext_assoc_ie /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_post_toDS_state /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_print_route_table /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_print_rxQ_waiting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_print_txQ_waiting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) +esp_mesh_process_bcast /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_process_mcast /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_process_options /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_process_redundant_subchildren /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_process_txupQ_pending /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_process_ucast /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_push_to_ack_state_queue /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_push_to_myself_queue /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_push_to_nwk_queue /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_push_to_rx_queue /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) +esp_mesh_push_to_tcpip_queue /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_push_to_tx_queue /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_push_to_wnd_queue /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_push_to_xmit_state_queue /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_quick_funcs /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +esp_mesh_quick_funcs_deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_quick_funcs_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_recv /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_recv_toDS /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_recv_xon /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) +esp_mesh_refresh_routing_table /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_remove_child /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_remove_children /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_remove_conflict_root /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_remove_nonassociated_children /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_revote_root /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_route_deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_route_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_rt_change_debug /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_rx_task_deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_rx_task_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_scan_done /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_scan_done_get_channel /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_scan_done_vote /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_scan_get_ap_ie_len /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_scan_get_ap_record /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_send /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_send_add_announcement /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_send_block_deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_send_block_event /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_send_block_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_send_block_start /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_send_event_internal esp-idf/esp_wifi/libesp_wifi.a(mesh_event.c.obj) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_send_mgmt /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_send_rmv_announcement /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_send_root_switch /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +esp_mesh_send_rtable_ack /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_send_rtable_request /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_send_sem_signal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_send_sem_wait /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_send_stop_vote /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_send_xon /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_set_6m_rate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +esp_mesh_set_announce_interval /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_ap_assoc_expire /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_mesh_set_ap_authmode /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_ap_connections /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_ap_password /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_attempts /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_beacon_interval /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_set_capacity_num /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_config /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_group_id /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_id /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_ie /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_set_ie_crypto_funcs /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_ie_crypto_funcs_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_ie_crypto_key /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_ie_crypto_key_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_max_layer /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_parent /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_parent_candidate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_set_parent_candidate_config /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_set_parent_monitor_config /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_set_passive_scan_time /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_root_healing_delay /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_router /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_router_bssid /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_set_rssi_threshold /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_set_rssi_threshold_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_set_self_organized /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_switch_parent_paras /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_type /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_vote_percentage /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_set_xon_qsize /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_sta_connect /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_sta_disassoc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_sta_disconnect /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_sta_monitor_rssi /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_start /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_stop /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) +esp_mesh_stop_parent_reconnection /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +esp_mesh_switch_channel /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_switch_channel_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +esp_mesh_tx_task_deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_tx_task_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_tx_tid_flush /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +esp_mesh_txupQ_pending /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_txupQ_pending_clear_xonseq /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_mesh_txupQ_pending_delete_child /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_txupQ_pending_get_cidx /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_txupQ_pending_get_xonseq /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_txupQ_pending_insert_child /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_mesh_update_conflict_root /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_mesh_waive_root /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_mesh_wifi_recv_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) +esp_modem_sleep_deregister esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_modem_sleep_enter esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_modem_sleep_exit esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_modem_sleep_register esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_mpi_acquire_hardware esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +esp_mpi_mul_mpi_mod esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +esp_mpi_release_hardware esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) +esp_netif_action_connected esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_action_disconnected esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_action_got_ip esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_action_start esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_action_stop esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_add_to_list esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_attach esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_attach_wifi_ap esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +esp_netif_attach_wifi_station esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +esp_netif_create_default_wifi_ap esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) +esp_netif_create_default_wifi_mesh_netifs esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_create_default_wifi_sta esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) +esp_netif_create_ip6_linklocal esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +esp_netif_create_wifi esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_deinit esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_destroy esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_destroy_ppp esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_dhcpc_get_status esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_dhcpc_option esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +esp_netif_dhcpc_start esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_dhcpc_stop esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_dhcps_get_status esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +esp_netif_dhcps_option esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +esp_netif_dhcps_start esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +esp_netif_dhcps_stop esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_down esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_free_rx_buffer esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(wlanif.c.obj) +esp_netif_get_desc esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_get_dns_info esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +esp_netif_get_event_id esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_get_flags esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_handle_from_ifkey esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_handle_from_netif_impl esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(ethernetif.c.obj) + esp-idf/lwip/liblwip.a(wlanif.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +esp_netif_get_hostname esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(ethernetif.c.obj) + esp-idf/lwip/liblwip.a(wlanif.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +esp_netif_get_ifkey esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) +esp_netif_get_io_driver esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(ethernetif.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_get_ip6_global esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +esp_netif_get_ip6_linklocal esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +esp_netif_get_ip_info esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) +esp_netif_get_mac esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_netif_impl esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +esp_netif_get_netif_impl_index esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +esp_netif_get_nr_of_ifs esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) +esp_netif_get_old_ip_info esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_get_route_prio esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_get_sta_list esp-idf/esp_netif/libesp_netif.a(esp_netif_sta_list.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +esp_netif_init esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + esp-idf/main/libmain.a(main.c.obj) +esp_netif_is_netif_listed esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_is_netif_up esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +esp_netif_is_valid_static_ip esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_list_lock esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_list_unlock esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_lwip_ppp_input esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) +esp_netif_new esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_new_ppp esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_next esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) +esp_netif_next_unsafe esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_ppp_set_auth esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) +esp_netif_ppp_set_default_netif esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_ppp_set_params esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) +esp_netif_receive esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_remove_from_list esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_set_dns_info esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +esp_netif_set_driver_config esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_set_hostname esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +esp_netif_set_ip4_addr esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_set_ip_info esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +esp_netif_set_mac esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_netif_set_old_ip_info esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_start esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_start_ppp esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_stop esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_netif_stop_ppp esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_ppp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +esp_netif_transmit esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/lwip/liblwip.a(ethernetif.c.obj) + esp-idf/lwip/liblwip.a(wlanif.c.obj) +esp_netif_up esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) +esp_ota_begin esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_check_rollback_is_possible esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_end esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_erase_last_boot_app_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_app_description esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_ota_get_app_elf_sha256 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_ota_get_boot_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_last_invalid_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_next_update_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_partition_description esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_running_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +esp_ota_get_state_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_mark_app_invalid_rollback_and_reboot esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_mark_app_valid_cancel_rollback esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_set_boot_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_write esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_check_identity esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +esp_partition_deregister_external esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +esp_partition_erase_range esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +esp_partition_find esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_find_first esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +esp_partition_get esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_get_sha256 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +esp_partition_iterator_release esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_main_flash_region_safe esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +esp_partition_mmap esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_next esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_read esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) + esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) +esp_partition_register_external esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +esp_partition_table_verify esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +esp_partition_verify esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_write esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/wear_levelling/libwear_levelling.a(Partition.cpp.obj) +esp_perip_clk_init esp-idf/esp32/libesp32.a(clk.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_phy_common_clock_disable esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_phy_common_clock_enable esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_phy_erase_cal_data_in_nvs esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) +esp_phy_get_init_data esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) +esp_phy_load_cal_and_init esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_phy_load_cal_data_from_nvs esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) +esp_phy_release_init_data esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) +esp_phy_rf_deinit esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_phy_rf_get_on_ts esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) +esp_phy_rf_init esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) +esp_phy_store_cal_data_to_nvs esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) +esp_pm_configure esp-idf/esp32/libesp32.a(pm_esp32.c.obj) +esp_pm_dump_locks esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) +esp_pm_impl_get_mode esp-idf/esp32/libesp32.a(pm_esp32.c.obj) +esp_pm_impl_idle_hook esp-idf/esp32/libesp32.a(pm_esp32.c.obj) +esp_pm_impl_init esp-idf/esp32/libesp32.a(pm_esp32.c.obj) +esp_pm_impl_isr_hook esp-idf/esp32/libesp32.a(pm_esp32.c.obj) +esp_pm_impl_switch_mode esp-idf/esp32/libesp32.a(pm_esp32.c.obj) +esp_pm_impl_waiti esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) +esp_pm_lock_acquire esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + esp-idf/esp32/libesp32.a(pm_esp32.c.obj) +esp_pm_lock_create esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + esp-idf/esp32/libesp32.a(pm_esp32.c.obj) +esp_pm_lock_delete esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) +esp_pm_lock_release esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + esp-idf/esp32/libesp32.a(pm_esp32.c.obj) +esp_pthread_get_cfg esp-idf/pthread/libpthread.a(pthread.c.obj) +esp_pthread_get_default_config esp-idf/pthread/libpthread.a(pthread.c.obj) +esp_pthread_init esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_pthread_set_cfg esp-idf/pthread/libpthread.a(pthread.c.obj) +esp_random esp-idf/esp32/libesp32.a(hw_random.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_read_mac esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +esp_reent_cleanup esp-idf/newlib/libnewlib.a(reent_init.c.obj) +esp_reent_init esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_register_freertos_idle_hook esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) +esp_register_freertos_idle_hook_for_cpu esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) +esp_register_freertos_tick_hook esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) +esp_register_freertos_tick_hook_for_cpu esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + esp-idf/esp32/libesp32.a(int_wdt.c.obj) +esp_register_shutdown_handler esp-idf/esp_common/libesp_common.a(system_api.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_reset_reason esp-idf/esp32/libesp32.a(reset_reason.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) +esp_reset_reason_get_hint esp-idf/esp32/libesp32.a(reset_reason.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +esp_reset_reason_set_hint esp-idf/esp32/libesp32.a(reset_reason.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) + esp-idf/esp_common/libesp_common.a(brownout.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) +esp_restart esp-idf/esp_common/libesp_common.a(system_api.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) +esp_restart_noos esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + esp-idf/esp_common/libesp_common.a(system_api.c.obj) + esp-idf/esp_common/libesp_common.a(brownout.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +esp_rom_spiflash_config_clk esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +esp_rom_spiflash_config_readmode esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +esp_rom_spiflash_erase_area esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_erase_block esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_erase_chip esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_erase_sector esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_lock esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_prepare_encrypted_data esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_read esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_read_status esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_read_statushigh esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_read_user_cmd esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_select_qio_pins esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +esp_rom_spiflash_unlock esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_wait_idle esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +esp_rom_spiflash_write esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_write_encrypted esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +esp_rom_spiflash_write_encrypted_disable esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_write_encrypted_enable esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_write_status esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_set_breakpoint_if_jtag esp-idf/esp32/libesp32.a(panic.c.obj) +esp_set_deep_sleep_wake_stub esp-idf/esp32/libesp32.a(sleep_modes.c.obj) +esp_set_time_from_rtc esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_set_watchpoint esp-idf/esp32/libesp32.a(panic.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +esp_setup_syscall_table esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_sha_block esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) +esp_sha_lock_engine esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +esp_sha_lock_memory_block esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +esp_sha_read_digest_state esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) +esp_sha_try_lock_engine esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) +esp_sha_unlock_engine esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) +esp_sha_unlock_memory_block esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +esp_sha_wait_idle esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +esp_sleep_disable_wakeup_source esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) +esp_sleep_enable_ext0_wakeup esp-idf/esp32/libesp32.a(sleep_modes.c.obj) +esp_sleep_enable_ext1_wakeup esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) +esp_sleep_enable_gpio_wakeup esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) +esp_sleep_enable_timer_wakeup esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) +esp_sleep_enable_touchpad_wakeup esp-idf/esp32/libesp32.a(sleep_modes.c.obj) +esp_sleep_enable_uart_wakeup esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) +esp_sleep_enable_ulp_wakeup esp-idf/esp32/libesp32.a(sleep_modes.c.obj) +esp_sleep_get_ext1_wakeup_status esp-idf/esp32/libesp32.a(sleep_modes.c.obj) +esp_sleep_get_touchpad_wakeup_status esp-idf/esp32/libesp32.a(sleep_modes.c.obj) +esp_sleep_get_wakeup_cause esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) +esp_sleep_pd_config esp-idf/esp32/libesp32.a(sleep_modes.c.obj) +esp_supplicant_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_supplicant_init esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_sync_counters_rtc_and_frc esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) +esp_task_wdt_add esp-idf/esp32/libesp32.a(task_wdt.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_task_wdt_deinit esp-idf/esp32/libesp32.a(task_wdt.c.obj) +esp_task_wdt_delete esp-idf/esp32/libesp32.a(task_wdt.c.obj) +esp_task_wdt_init esp-idf/esp32/libesp32.a(task_wdt.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_task_wdt_isr_user_handler esp-idf/esp32/libesp32.a(task_wdt.c.obj) +esp_task_wdt_reset esp-idf/esp32/libesp32.a(task_wdt.c.obj) +esp_task_wdt_status esp-idf/esp32/libesp32.a(task_wdt.c.obj) +esp_timer_create esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +esp_timer_deinit esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_delete esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +esp_timer_dump esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_get_next_alarm esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_get_time esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) +esp_timer_impl_advance esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_timer_impl_deinit esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_impl_get_alarm_reg esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_timer_impl_get_counter_reg esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_timer_impl_get_min_period_us esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_impl_get_time esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_impl_init esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_impl_lock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_timer_impl_set_alarm esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_impl_unlock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_timer_impl_update_apb_freq esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_timer_init esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_timer_private_advance esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) +esp_timer_private_lock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) +esp_timer_private_unlock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) +esp_timer_private_update_apb_freq esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp32/libesp32.a(pm_esp32.c.obj) +esp_timer_start_once esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +esp_timer_start_periodic esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +esp_timer_stop esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +esp_tls_conn_delete esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_tls_conn_http_new esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_tls_conn_http_new_async esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_tls_conn_new esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_tls_conn_new_async esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_tls_conn_new_sync esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_tls_free_global_ca_store esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_tls_get_and_clear_last_error esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_tls_get_bytes_avail esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) +esp_tls_get_conn_sockfd esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_tls_get_global_ca_store esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_tls_init esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_tls_init_global_ca_store esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_tls_server_session_create esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) +esp_tls_server_session_delete esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) +esp_tls_set_global_ca_store esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +esp_tx_state_out /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +esp_unregister_shutdown_handler esp-idf/esp_common/libesp_common.a(system_api.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_vApplicationIdleHook esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +esp_vApplicationTickHook esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +esp_vfs_close esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +esp_vfs_dev_uart_register esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_vfs_dev_uart_set_rx_line_endings esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/main/libmain.a(main.c.obj) +esp_vfs_dev_uart_set_tx_line_endings esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/main/libmain.a(main.c.obj) +esp_vfs_dev_uart_use_driver esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/main/libmain.a(main.c.obj) +esp_vfs_dev_uart_use_nonblocking esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +esp_vfs_fat_rawflash_mount esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) +esp_vfs_fat_rawflash_unmount esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) +esp_vfs_fat_register esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) +esp_vfs_fat_spiflash_mount esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + esp-idf/main/libmain.a(main.c.obj) +esp_vfs_fat_spiflash_unmount esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) +esp_vfs_fat_unregister_path esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) +esp_vfs_fstat esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +esp_vfs_link esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +esp_vfs_lseek esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +esp_vfs_lwip_sockets_register esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) +esp_vfs_open esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +esp_vfs_poll esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_pread esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_pwrite esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_read esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +esp_vfs_register esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +esp_vfs_register_fd esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_register_fd_range esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) +esp_vfs_register_with_id esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_rename esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +esp_vfs_select esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(select.c.obj) +esp_vfs_select_triggered esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +esp_vfs_select_triggered_isr esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +esp_vfs_stat esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +esp_vfs_unlink esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +esp_vfs_unregister esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) +esp_vfs_unregister_fd esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_utime esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_write esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +esp_wake_deep_sleep esp-idf/esp32/libesp32.a(sleep_modes.c.obj) +esp_wifi_80211_tx /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +esp_wifi_ap_deauth_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +esp_wifi_ap_get_prof_ap_ssid_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +esp_wifi_ap_get_prof_authmode_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +esp_wifi_ap_get_prof_password_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +esp_wifi_ap_get_prof_pmk_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +esp_wifi_ap_get_sta_list /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_auth_done_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_clear_default_wifi_driver_and_handlers esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_clear_fast_connect /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_connect /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + esp-idf/wifi/libwifi.a(wifi.c.obj) +esp_wifi_create_if_driver esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_deauth_sta /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +esp_wifi_deauthenticate_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_deinit esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_deinit_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_del_key_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_destroy_if_driver esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_disarm_sta_connection_timer_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_disconnect /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_enable_sta_privacy_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_get_ant /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_ant_gpio /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_appie_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_get_assoc_bssid_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_get_auto_connect /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_bandwidth /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_beacon_interval /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +esp_wifi_get_channel /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +esp_wifi_get_config /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_get_config_channel_local /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_country /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_event_mask /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +esp_wifi_get_hostap_private_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_get_if_mac esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_get_key_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_get_mac /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) +esp_wifi_get_macaddr_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_get_max_tx_power /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_mode /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_wifi_get_negotiated_bw_local /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_negotiated_channel_local /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_promiscuous /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_promiscuous_ctrl_filter /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_promiscuous_filter /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_protocol /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_ps /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_get_sta_key_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_get_user_init_flag_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_get_wps_status_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_get_wps_type_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_improve_contention_ability /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_init esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) +esp_wifi_init_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_internal_crypto_funcs_md5_check /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_esp_wifi_md5_check /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_free_rx_buffer /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) +esp_wifi_internal_get_config_channel /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_get_fix_rate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_get_log /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_get_mib /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +esp_wifi_internal_get_negotiated_bandwidth /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_get_negotiated_channel /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_get_rts /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +esp_wifi_internal_ioctl /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_osi_funcs_md5_check /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_reg_rxcb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) +esp_wifi_internal_set_autoack_rate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +esp_wifi_internal_set_baw /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +esp_wifi_internal_set_fix_rate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_set_log_level /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_set_log_mod /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_internal_set_msdu_lifetime /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +esp_wifi_internal_set_rate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +esp_wifi_internal_set_retry_counter /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +esp_wifi_internal_set_rts /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +esp_wifi_internal_set_sta_ip /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_internal_supplicant_header_md5_check /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_internal_tx /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) +esp_wifi_internal_tx_is_stop /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +esp_wifi_internal_update_mac_time /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +esp_wifi_internal_wifi_type_md5_check /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_ipc_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +esp_wifi_is_if_ready_when_started esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_mesh_reg_rxcb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) +esp_wifi_mesh_tx /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +esp_wifi_promiscuous_scan_start /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_register_if_rxcb esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_register_tx_cb_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_register_wpa2_cb_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_register_wpa3_cb esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_register_wpa_cb_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_restart /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_restore /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_scan_get_ap_num /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_scan_get_ap_records /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_scan_get_cur_ap_info /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_scan_get_cur_ap_record /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_scan_sort_ap_records /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_scan_sort_get_cur_ap_info /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_scan_sort_get_cur_ap_record /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_scan_start /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_scan_stop /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_set_ant /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_ant_gpio /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_ap_key_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +esp_wifi_set_appie_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_set_auto_connect /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_bandwidth /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_beacon_interval /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_set_channel /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_config /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + esp-idf/wifi/libwifi.a(wifi.c.obj) +esp_wifi_set_country /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) +esp_wifi_set_csi /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_csi_config /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_csi_rx_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_default_wifi_ap_handlers esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_set_default_wifi_sta_handlers esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +esp_wifi_set_event_mask /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_home_channel /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_igtk_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_set_key_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_set_mac /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_max_tx_power /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_mode /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + esp-idf/wifi/libwifi.a(wifi.c.obj) +esp_wifi_set_promiscuous /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_promiscuous_ctrl_filter /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_promiscuous_filter /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_promiscuous_rx_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_protocol /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_ps /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_wifi_set_sta_key_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_set_sta_rx_probe_req /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_storage /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/wifi/libwifi.a(wifi.c.obj) +esp_wifi_set_vendor_ie /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_vendor_ie_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_set_wpa2_ent_state_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_set_wps_cb_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_set_wps_start_flag_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_set_wps_status_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_set_wps_type_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_sta_get_ap_info /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_sta_get_ap_info_prof_pmk_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +esp_wifi_sta_get_group_cipher_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_sta_get_mgmt_group_cipher /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_sta_get_pairwise_cipher_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_sta_get_prof_authmode_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_sta_get_prof_password_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_sta_get_prof_pmk_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_sta_get_prof_ssid_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_sta_get_reset_param_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_sta_is_ap_notify_completed_rsne_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_sta_is_running_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_sta_pmf_enabled /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_sta_prof_is_wpa2_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_sta_prof_is_wpa3_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_sta_prof_is_wpa_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_sta_send_mgmt_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_sta_set_reset_param_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_sta_update_ap_info_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +esp_wifi_sta_wpa2_ent_disable_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_sta_wpa2_ent_enable_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_start /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/wifi/libwifi.a(wifi.c.obj) +esp_wifi_stop /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) +esp_wifi_unregister_wpa2_cb_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_unregister_wpa_cb_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +esp_wifi_unset_appie_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +esp_wifi_vnd_lora_disable /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) +esp_wifi_vnd_lora_enable /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) +esp_wifi_vnd_mesh_deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_wifi_vnd_mesh_get /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_vnd_mesh_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +esp_wifi_vnd_mesh_set /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_vnd_roots_get /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +esp_wifi_vnd_roots_set /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +esp_wifi_wpa_ptk_init_done_internal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +etharp_cleanup_netif esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +etharp_find_addr esp-idf/lwip/liblwip.a(etharp.c.obj) +etharp_get_entry esp-idf/lwip/liblwip.a(etharp.c.obj) +etharp_input esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) +etharp_output esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(ethernetif.c.obj) + esp-idf/lwip/liblwip.a(wlanif.c.obj) +etharp_query esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +etharp_request esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +etharp_tmr esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) +ethbroadcast esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) +ethernet_input esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +ethernet_output esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(ethip6.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) +ethernetif_init esp-idf/lwip/liblwip.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) +ethernetif_input esp-idf/lwip/liblwip.a(ethernetif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) +ethip6_output esp-idf/lwip/liblwip.a(ethip6.c.obj) + esp-idf/lwip/liblwip.a(ethernetif.c.obj) + esp-idf/lwip/liblwip.a(wlanif.c.obj) +ethzero esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) +ets_delay_us /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/soc/libsoc.a(rtc_time.c.obj) + esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +ets_efuse_get_spiconfig esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +ets_get_detected_xtal_freq esp-idf/esp32/libesp32.a(sleep_modes.c.obj) +ets_install_uart_printf esp-idf/esp32/libesp32.a(cpu_start.c.obj) +ets_isr_mask esp-idf/esp32/libesp32.a(intr_alloc.c.obj) +ets_isr_unmask esp-idf/esp32/libesp32.a(intr_alloc.c.obj) +ets_printf esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/soc/libsoc.a(rtc_time.c.obj) + esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_common/libesp_common.a(brownout.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +ets_set_appcpu_boot_addr esp-idf/esp32/libesp32.a(cpu_start.c.obj) +ets_timer_arm esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +ets_timer_arm_us esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +ets_timer_deinit esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +ets_timer_disarm esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +ets_timer_done esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +ets_timer_init esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +ets_timer_setfn esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +ets_update_cpu_frequency esp-idf/esp32/libesp32.a(clk.c.obj) + esp-idf/soc/libsoc.a(rtc_clk.c.obj) +ets_update_cpu_frequency_rom esp-idf/esp32/libesp32.a(sleep_modes.c.obj) +f_chmod esp-idf/fatfs/libfatfs.a(ff.c.obj) +f_close esp-idf/fatfs/libfatfs.a(ff.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) +f_closedir esp-idf/fatfs/libfatfs.a(ff.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) +f_fdisk esp-idf/fatfs/libfatfs.a(ff.c.obj) +f_getfree esp-idf/fatfs/libfatfs.a(ff.c.obj) +f_lseek esp-idf/fatfs/libfatfs.a(ff.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) +f_mkdir esp-idf/fatfs/libfatfs.a(ff.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) +f_mkfs esp-idf/fatfs/libfatfs.a(ff.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) +f_mount esp-idf/fatfs/libfatfs.a(ff.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) +f_open esp-idf/fatfs/libfatfs.a(ff.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) +f_opendir esp-idf/fatfs/libfatfs.a(ff.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) +f_read esp-idf/fatfs/libfatfs.a(ff.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) +f_readdir esp-idf/fatfs/libfatfs.a(ff.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) +f_rename esp-idf/fatfs/libfatfs.a(ff.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) +f_stat esp-idf/fatfs/libfatfs.a(ff.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) +f_sync esp-idf/fatfs/libfatfs.a(ff.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) +f_truncate esp-idf/fatfs/libfatfs.a(ff.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) +f_unlink esp-idf/fatfs/libfatfs.a(ff.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) +f_utime esp-idf/fatfs/libfatfs.a(ff.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) +f_write esp-idf/fatfs/libfatfs.a(ff.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) +fclose /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/console/libconsole.a(commands.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +fcntl esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/console/libconsole.a(linenoise.c.obj) +ferror /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) +ff_cre_syncobj esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + esp-idf/fatfs/libfatfs.a(ff.c.obj) +ff_del_syncobj esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + esp-idf/fatfs/libfatfs.a(ff.c.obj) +ff_disk_initialize esp-idf/fatfs/libfatfs.a(diskio.c.obj) + esp-idf/fatfs/libfatfs.a(ff.c.obj) +ff_disk_ioctl esp-idf/fatfs/libfatfs.a(diskio.c.obj) + esp-idf/fatfs/libfatfs.a(ff.c.obj) +ff_disk_read esp-idf/fatfs/libfatfs.a(diskio.c.obj) + esp-idf/fatfs/libfatfs.a(ff.c.obj) +ff_disk_status esp-idf/fatfs/libfatfs.a(diskio.c.obj) + esp-idf/fatfs/libfatfs.a(ff.c.obj) +ff_disk_write esp-idf/fatfs/libfatfs.a(diskio.c.obj) + esp-idf/fatfs/libfatfs.a(ff.c.obj) +ff_diskio_clear_pdrv_wl esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) +ff_diskio_get_drive esp-idf/fatfs/libfatfs.a(diskio.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) +ff_diskio_get_pdrv_raw esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) +ff_diskio_get_pdrv_wl esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) +ff_diskio_register esp-idf/fatfs/libfatfs.a(diskio.c.obj) + esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) +ff_diskio_register_raw_partition esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) +ff_diskio_register_wl_partition esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) +ff_memalloc esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) +ff_memfree esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) +ff_raw_handles esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) +ff_raw_initialize esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) +ff_raw_ioctl esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) +ff_raw_read esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) +ff_raw_status esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) +ff_raw_write esp-idf/fatfs/libfatfs.a(diskio_rawflash.c.obj) +ff_rel_grant esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + esp-idf/fatfs/libfatfs.a(ff.c.obj) +ff_req_grant esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + esp-idf/fatfs/libfatfs.a(ff.c.obj) +ff_wl_handles esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) +ff_wl_initialize esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) +ff_wl_ioctl esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) +ff_wl_read esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) +ff_wl_status esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) +ff_wl_write esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) +fflush /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) + esp-idf/ca/libca.a(ca.c.obj) + esp-idf/main/libmain.a(main.c.obj) +fgetc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) + esp-idf/console/libconsole.a(linenoise.c.obj) +fgets /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/console/libconsole.a(linenoise.c.obj) +fileno /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) + esp-idf/main/libmain.a(main.c.obj) +fiprintf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) +fopen /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) + esp-idf/ca/libca.a(ca.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +force_bt_mode /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) +force_wifi_mode /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_hw.o) +force_wifi_mode_on /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) +fpm_allow_tx /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_for_bcn_only_mode.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +fpm_close /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_for_bcn_only_mode.o) +fpm_do_sleep /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_for_bcn_only_mode.o) +fpm_do_wakeup /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_for_bcn_only_mode.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +fpm_is_open /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_for_bcn_only_mode.o) +fpm_open /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_for_bcn_only_mode.o) +fpm_rf_is_closed /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm_for_bcn_only_mode.o) +fprintf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fprintf.o) + esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/console/libconsole.a(argtable3.c.obj) +fputc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/console/libconsole.a(argtable3.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) +fputs /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/console/libconsole.a(argtable3.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +fputwc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) +fread /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) +free esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(del_op.o) + esp-idf/esp_eth/libesp_eth.a(esp_eth_netif_glue.c.obj) + esp-idf/lwip/liblwip.a(ethernetif.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + esp-idf/fatfs/libfatfs.a(diskio.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) + esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/console/libconsole.a(argtable3.c.obj) + esp-idf/console/libconsole.a(commands.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(rtc_module.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/log/liblog.a(log.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_netif.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +free_bss_info /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +freq_i2c_addr /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +frexp /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) +fseek /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +fseeko /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) +fsync esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/main/libmain.a(main.c.obj) +ftell /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftell.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +ftello /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) +fwrite /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/console/libconsole.a(argtable3.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +gScanStruct /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +gWpaSm esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +g_allowed_groups esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +g_beacon_eb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) +g_beacon_idx /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) +g_chm /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) +g_cnxMgr /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_cnx_probe_rc_list_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +g_coa_funcs_p /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_hw.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_core.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_scheme.o) +g_coex_adapter_funcs esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +g_coex_adapter_funcs_md5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +g_dbg_cnt_hmac /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +g_dbg_cnt_lmac /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) +g_dbg_cnt_lmac_interrupt /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +g_esp_wifi_md5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_flash_guard_default_ops esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +g_flash_guard_no_os_ops esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +g_ic /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_intr_lock_mux /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_is_mesh_started /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_is_root_fixed /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_is_standalone_sta /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_is_wifi_connected /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +g_is_wifi_connecting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_is_wifi_disconnecting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_log_level /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_log_mod /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_long_ampdu_retry /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +g_lwip_task esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +g_mesh_ann_interval /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_cfg_attemps /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_cfg_switch_parent /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_cfg_vote_percent /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_conn /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +g_mesh_current_parent /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +g_mesh_ext_cfg /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_ext_vote_state /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_mesh_ie /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_is_root /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +g_mesh_is_started /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +g_mesh_manual_nwk /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_max_layer /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_monitor_parent_beacon_count /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +g_mesh_nvs_settings /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_passive_scan_time /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_rmv_opt /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +g_mesh_root_conflicts_allowed /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_mesh_root_healing_delay /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_rt_capacity /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +g_mesh_self_map_addr /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_self_organized /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +g_mesh_self_sta_addr /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_stop_event_group /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_stop_reconnection /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +g_mesh_xon_cfg_qsize /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +g_misc_nvs /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +g_mpdu_retry_before_rts /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +g_noise_now /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +g_osi_funcs_p /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +g_phyFuns /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) +g_pp_timer_info /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +g_rom_flashchip esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +g_rom_spiflash_chip esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +g_rom_spiflash_dummy_len_plus esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +g_short_ampdu_retry /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +g_sniffer_mode /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +g_sta_connected_flag /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +g_ticks_per_us_app esp-idf/esp32/libesp32.a(clk.c.obj) +g_ticks_per_us_pro esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) +g_timer_info /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +g_wdev_csi_rx /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +g_wdev_csi_rx_ctx /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +g_wdev_last_desc_reset /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +g_wdev_rx_mblk_size /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +g_wifi_crypto_funcs_md5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_wifi_default_mesh_crypto_funcs esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +g_wifi_default_wpa_crypto_funcs esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) +g_wifi_event_mask /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +g_wifi_feature_caps esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) +g_wifi_global_lock /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_wifi_improve_contention_ability /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_wifi_mac_time_delta /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +g_wifi_menuconfig /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) +g_wifi_nvs /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_wifi_osi_funcs esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) +g_wifi_osi_funcs_md5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +g_wifi_supplicant_funcs_md5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +g_wifi_type_md5 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +garp_tmr esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) +get_bbgain_db /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +get_chan_pwr_index /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +get_fattime esp-idf/fatfs/libfatfs.a(diskio.c.obj) + esp-idf/fatfs/libfatfs.a(ff.c.obj) +get_i2c_read_mask /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +get_iav_key /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +get_phy_target_power /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +get_rate_fcc_index /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +get_rate_target_power /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +get_rf_freq_cap /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +get_rf_freq_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +get_target_power_offset /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +get_total_scan_time /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +get_vdd33 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) +getenv /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) +getopt /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) +getopt_long /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + esp-idf/console/libconsole.a(argtable3.c.obj) +getopt_long_only /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) +gettimeofday /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) +global_arg esp-idf/ca/libca.a(gen_key.c.obj) +gmtime_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) +gpio_config esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_deep_sleep_hold_dis esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_deep_sleep_hold_en esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_get_drive_capability esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_get_level esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_hal_intr_disable esp-idf/soc/libsoc.a(gpio_hal.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_hal_intr_enable_on_core esp-idf/soc/libsoc.a(gpio_hal.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_hold_dis esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_hold_en esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_input_get esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +gpio_input_get_high esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +gpio_install_isr_service esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_intr_disable esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_intr_enable esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_iomux_in esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +gpio_iomux_out esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +gpio_isr_handler_add esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_isr_handler_remove esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_isr_register esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_matrix_in esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +gpio_matrix_out esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +gpio_output_set /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +gpio_output_set_high /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + esp-idf/soc/libsoc.a(rtc_clk.c.obj) +gpio_pad_pullup esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +gpio_pad_select_gpio esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/soc/libsoc.a(rtc_clk.c.obj) +gpio_pulldown_dis esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_pulldown_en esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_pullup_dis esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_pullup_en esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_reset_pin esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) +gpio_set_direction esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) +gpio_set_drive_capability esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_set_intr_type esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_set_level esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +gpio_set_pull_mode esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +gpio_uninstall_isr_service esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_wakeup_disable esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_wakeup_enable esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) +h_errno esp-idf/lwip/liblwip.a(netdb.c.obj) +hall_sens_amp_read /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) +hall_sens_amp_read_full /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) +hall_sens_read /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) +hall_sens_read_full /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) +heap_caps_add_region esp-idf/heap/libheap.a(heap_caps_init.c.obj) +heap_caps_add_region_with_caps esp-idf/heap/libheap.a(heap_caps_init.c.obj) +heap_caps_aligned_alloc esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_aligned_calloc esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_aligned_free esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_calloc esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +heap_caps_calloc_prefer esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_check_integrity esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_check_integrity_addr esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_check_integrity_all esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_dump esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_dump_all esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_enable_nonos_stack_heaps esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +heap_caps_free esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_mem.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/newlib/libnewlib.a(heap.c.obj) +heap_caps_get_allocated_size esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_get_free_size esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_common/libesp_common.a(system_api.c.obj) +heap_caps_get_info esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_get_largest_free_block esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_get_minimum_free_size esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_common/libesp_common.a(system_api.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) +heap_caps_get_total_size esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_init esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +heap_caps_malloc esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) +heap_caps_malloc_default esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/newlib/libnewlib.a(heap.c.obj) +heap_caps_malloc_extmem_enable esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_malloc_prefer esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_match esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +heap_caps_print_heap_info esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_realloc esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +heap_caps_realloc_default esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/newlib/libnewlib.a(heap.c.obj) +heap_caps_realloc_prefer esp-idf/heap/libheap.a(heap_caps.c.obj) +hex2byte esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +hexstr2bin esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +hmac_md5 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +hmac_md5_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +hmac_sha1 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +hmac_sha1_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +hmac_sha256 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +hmac_sha256_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +hostap_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +hostap_eapol_resend_process esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +hostap_handle_timer /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +hostap_handle_timer_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +hostap_init esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +hostap_input /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +hostapd_config_defaults esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +hostapd_config_defaults_bss esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +hostapd_get_psk esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +hostapd_mac_comp esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +hostapd_mac_comp_empty esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +hostapd_maclist_found esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +hostapd_rate_found esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +hostapd_setup_wpa_psk esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +hostapd_wep_key_cmp esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) +http_body_is_final esp-idf/nghttp/libnghttp.a(http_parser.c.obj) +http_errno_description esp-idf/nghttp/libnghttp.a(http_parser.c.obj) +http_errno_name esp-idf/nghttp/libnghttp.a(http_parser.c.obj) +http_message_needs_eof esp-idf/nghttp/libnghttp.a(http_parser.c.obj) +http_method_str esp-idf/nghttp/libnghttp.a(http_parser.c.obj) +http_parser_execute esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) +http_parser_init esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) +http_parser_parse_url esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) +http_parser_pause esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) +http_parser_settings_init esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) +http_parser_url_init esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) +http_parser_version esp-idf/nghttp/libnghttp.a(http_parser.c.obj) +http_should_keep_alive esp-idf/nghttp/libnghttp.a(http_parser.c.obj) +httpd_default_recv esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) +httpd_default_send esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) +httpd_get_global_transport_ctx esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) +httpd_get_global_user_ctx esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +httpd_is_sess_available esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +httpd_query_key_value esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) +httpd_queue_work esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) +httpd_recv esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) +httpd_recv_with_opt esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) +httpd_register_err_handler esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) +httpd_register_uri_handler esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + esp-idf/https_server/libhttps_server.a(https_server.c.obj) +httpd_req_delete esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) +httpd_req_get_hdr_value_len esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) +httpd_req_get_hdr_value_str esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) +httpd_req_get_url_query_len esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) +httpd_req_get_url_query_str esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) +httpd_req_handle_err esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) +httpd_req_new esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) +httpd_req_recv esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + esp-idf/https_server/libhttps_server.a(https_server.c.obj) +httpd_req_to_sockfd esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) +httpd_resp_send esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/https_server/libhttps_server.a(https_server.c.obj) +httpd_resp_send_chunk esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/https_server/libhttps_server.a(https_server.c.obj) +httpd_resp_send_err esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) +httpd_resp_set_hdr esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) +httpd_resp_set_status esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) +httpd_resp_set_type esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/https_server/libhttps_server.a(https_server.c.obj) +httpd_send esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) +httpd_sess_close_lru esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +httpd_sess_delete esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +httpd_sess_delete_invalid esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +httpd_sess_free_ctx esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) +httpd_sess_get esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) +httpd_sess_get_ctx esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) +httpd_sess_get_transport_ctx esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) +httpd_sess_init esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +httpd_sess_iterate esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +httpd_sess_new esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +httpd_sess_pending esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +httpd_sess_process esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +httpd_sess_set_ctx esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) +httpd_sess_set_descriptors esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +httpd_sess_set_pending_override esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) +httpd_sess_set_recv_override esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) +httpd_sess_set_send_override esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) +httpd_sess_set_transport_ctx esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) +httpd_sess_trigger_close esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) +httpd_sess_update_lru_counter esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) +httpd_ssl_start esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + esp-idf/https_server/libhttps_server.a(https_server.c.obj) +httpd_ssl_stop esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + esp-idf/https_server/libhttps_server.a(https_server.c.obj) +httpd_start esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) +httpd_stop esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) +httpd_unrecv esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) +httpd_unregister_all_uri_handlers esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +httpd_unregister_uri esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) +httpd_unregister_uri_handler esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) +httpd_uri esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) +httpd_uri_match_wildcard esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) +httpd_validate_req_ptr esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) +ic_add_rx_ba /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ic_ampdu_op /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ic_bb_check_noise_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_create_wifi_task /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_csi_set_config /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_del_key /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ic_del_key_all /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_del_rx_ba /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ic_delete_wifi_task /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_disable /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_disable_crypto /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_disable_rx /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_disable_sniffer /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_ebuf_alloc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ic_ebuf_recycle_rx /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ic_ebuf_recycle_tx /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ic_enable /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_enable_rx /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_enable_sniffer /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_get_addr /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ic_get_fix_rate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_get_key /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ic_get_next_tbtt /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_get_pp_hdl /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_get_promis_ctrl_filter /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_get_promis_filter /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_get_ptk_alg /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ic_get_random /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +ic_get_rssi /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_get_trc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ic_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_is_pure_sta /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_mac_deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_mac_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_pp_post /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_register_config_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_register_csi_rx_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_register_michael_mic_failure_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ic_register_net80211_tx_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ic_register_pm_tx_null_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_register_promis_rx_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ic_register_rx_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ic_register_timer_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_register_timer_post_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_register_tx_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ic_reset_rx_ba /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ic_reset_tbtt /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_set_ac_param /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) +ic_set_beacon_int /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_set_bssid /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ic_set_csi /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_set_current_channel /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) +ic_set_fix_rate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_set_interface /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ic_set_key /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ic_set_lmac_stop /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_set_mac /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ic_set_opmode /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ic_set_promis_ctrl_filter /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_set_promis_filter /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_set_rx_policy /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ic_set_rx_policy_ubssid_check /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ic_set_sta /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) +ic_set_sta_auth_flag /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ic_set_trc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ic_set_vif /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_stop_hw_txq /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_stop_sw_txq /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ic_trc_set_per_pkt_rate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ic_trc_update_conn_phy_mode /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) +ic_tx_is_idle /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ic_tx_pkt /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ic_txq_empty /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +icmp6_dest_unreach esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) +icmp6_input esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) +icmp6_packet_too_big esp-idf/lwip/liblwip.a(icmp6.c.obj) +icmp6_param_problem esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) +icmp6_time_exceeded esp-idf/lwip/liblwip.a(icmp6.c.obj) +icmp6_time_exceeded_with_addrs esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) +icmp_dest_unreach esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) +icmp_input esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +ieee80211_action_vendor_spec_attach /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_add_action_vendor_spec_esp /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_add_countryie /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_dsparams /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_htcap /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_htcap_vendor /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_htinfo /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_htinfo_vendor /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_ie_esp_mesh_head /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_add_ie_vendor_esp_freq_annon /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) +ieee80211_add_ie_vendor_esp_head /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_add_ie_vendor_esp_manufacturer /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_ie_vendor_esp_mesh_group /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) +ieee80211_add_ie_vendor_esp_now /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_add_ie_vendor_esp_simple_pair /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) +ieee80211_add_ie_vendor_esp_ssid /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) +ieee80211_add_mesh_assoc_ie /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_add_mesh_ext_assoc_ie /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_add_mesh_roots_ie /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_add_mesh_ssid_ie /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_add_rates /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_add_xrates /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_adjust_2nd_chan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_align_eb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_alloc_action_vendor_spec /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_alloc_challenge /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_alloc_deauth /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_alloc_proberesp /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_ampdu_age_all /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +ieee80211_ampdu_deinit_age_timer /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_ampdu_enable /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_ampdu_reorder /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_ampdu_request /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_ampdu_stop /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ieee80211_beacon_alloc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_better_rsn_pairwise_cipher /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) +ieee80211_cal_tx_pps /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_ccmp_decrypt /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_ccmp_encrypt /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_check_sleep /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_cnx_attach /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_crypto_aes_128_cmac_decrypt /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_crypto_aes_128_cmac_encrypt /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) +ieee80211_crypto_attach /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_crypto_available /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) +ieee80211_crypto_decap /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_crypto_encap /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_crypto_setkey /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) +ieee80211_decap /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_decap1 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ieee80211_decap_amsdu /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_deliver_data /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) +ieee80211_empty_txq /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_encap_null_data /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_espnow_get_init_flag /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_espnow_set_init_flag /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_ethbroadcast /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_find_ie /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_freedom_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_freedom_inside_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_get_key /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_get_mac_addr_from_frame /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_get_ptk /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_get_sta_gtk_index /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_getbcnframe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_getcapinfo /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_getmgtframe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ieee80211_gpsq_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_has_ht40_bss /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ieee80211_hostap_attach /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_hostap_send_beacon_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +ieee80211_hostapd_beacon_txcb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_hostapd_data_txcb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +ieee80211_hostapd_ps_txcb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_ht_attach /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_ht_deattach /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_ht_node_cleanup /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ieee80211_ht_node_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_ht_updatehtcap /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_ht_updateparams /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_ifattach /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_ifdetach /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_init_mesh_assoc_ie /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +ieee80211_ioctl /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_ioctl_deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_ioctl_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_ioctl_mesh_funcs_register /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +ieee80211_ioctl_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_is_11b_rate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) +ieee80211_is_ht_cipher /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_is_lr_only /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_is_mesh_roots_announce /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_announce_used /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_fixed /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_gone /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_valid /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_yield /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_is_mesh_roots_yield_used /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_is_support_rate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) +ieee80211_iserp_rateset /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) +ieee80211_mesh_quick_deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_mesh_quick_get /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_mesh_quick_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_mesh_quick_set /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_mgmt_output /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ieee80211_mlme_connect_bss /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ieee80211_mt_key_clear_mask /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_mt_key_is_mask /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_mt_key_is_mask_zero /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_mt_key_set_mask /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_node_pwrsave /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_nvs_set_default_ssid /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +ieee80211_opcap /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_output /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_output_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_output_pending_eb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_output_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_parse_action /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_parse_beacon /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_parse_htcap /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ieee80211_parse_obss_scan_param /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ieee80211_parse_rsn /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ieee80211_parse_wmeparams /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ieee80211_parse_wpa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ieee80211_phy_2nd_chan_is_valid /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_phy_deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_phy_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_phy_mode_show /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ieee80211_phy_type_get /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ieee80211_pm_tx_null_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_proto_attach /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_psq_cleanup /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) +ieee80211_psq_drop_one_pkt /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) +ieee80211_psq_find_max_bss /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) +ieee80211_psq_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_psq_is_buff_pkt /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) +ieee80211_psq_send_one_pkt /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) +ieee80211_psq_take_head /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) +ieee80211_psq_take_tail /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) +ieee80211_pwrsave /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_pwrsave_node_cleanup /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ieee80211_pwrsave_txcb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_rate_ref_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_raw_frame_sanity_check /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_recv_action /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_recv_action_register /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ieee80211_recv_action_unregister /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) +ieee80211_recv_action_vendor_spec /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_recv_bar /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_regdomain_attach /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) +ieee80211_regdomain_chan_in_range /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ieee80211_regdomain_chan_num /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_regdomain_get_country /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_regdomain_is_active_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ieee80211_regdomain_max_chan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_regdomain_max_tx_power /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_regdomain_min_chan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_regdomain_policy /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_regdomain_update /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) +ieee80211_regdomain_update_in_connect /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ieee80211_regdomain_update_in_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ieee80211_rfid_locp_recv /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_rfid_locp_recv_close /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) +ieee80211_rfid_locp_recv_open /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) +ieee80211_rfid_locp_recv_reset /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_rsn_cipher_priority /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) +ieee80211_scan_attach /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_scan_deattach /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_send_action /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ieee80211_send_action_register /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +ieee80211_send_action_unregister /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) +ieee80211_send_action_vendor_spec /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_send_deauth /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_send_mgmt /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +ieee80211_send_nulldata /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_send_probereq /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ieee80211_send_proberesp /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_send_setup /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_set_appie /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_set_gtk /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_set_hmac_stop /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_set_key /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_set_max_rate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ieee80211_set_phy_2nd_chan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_set_phy_bw /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_set_phy_mode /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_set_shortslottime /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_set_sta_gtk_index /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +ieee80211_set_tim /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_set_user_sup_rate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) +ieee80211_setup_basic_htrates /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_setup_htrates /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_setup_lr_rates /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_setup_phy_mode /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_setup_pmf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_setup_rates /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_setup_rateset /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ieee80211_setup_ratetable /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) +ieee80211_setup_robust_mgmtframe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_sta_connect /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_sta_disconnect /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_sta_is_connected /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ieee80211_sta_new_state /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_sta_scan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_timer_do_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_timer_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_tx_mgt_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) +ieee80211_txq_empty /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_txq_enq /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +ieee80211_update_channel /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +ieee80211_user_ie_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +ieee80211_vnd_ie_set /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_vnd_ie_size /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_vnd_lora_ie_set /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_vnd_lora_ie_size /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ieee80211_vnd_mesh_fully_associated /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_vnd_mesh_quick_get /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_vnd_mesh_quick_set /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_vnd_mesh_roots_get /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_vnd_mesh_roots_set /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +ieee80211_vnd_mesh_update_beacon /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +ieee80211_wme_initparams /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) +ieee80211_wme_standard_ac_to_esp_ac /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211_wme_updateparams /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +ieee80211w_get_active_igtk_key_id /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) +ieee80211w_get_igtk_from_keyidx /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) +ieee80211w_set_keys esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +if_ctrl /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +igmp_init esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) +igmp_input esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +igmp_joingroup esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +igmp_joingroup_netif esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +igmp_leavegroup esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +igmp_leavegroup_netif esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +igmp_lookfor_group esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +igmp_report_groups esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +igmp_start esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +igmp_stop esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +igmp_tmr esp-idf/lwip/liblwip.a(igmp.c.obj) +in_blacklist_flag /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +inc_byte_array esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +inet_chksum esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) +inet_chksum_pbuf esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) +inet_chksum_pseudo esp-idf/lwip/liblwip.a(inet_chksum.c.obj) +inet_chksum_pseudo_partial esp-idf/lwip/liblwip.a(inet_chksum.c.obj) +int_wdt_app_cpu_ticked esp-idf/esp32/libesp32.a(int_wdt.c.obj) + esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) +interface_mask /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +intr_matrix_set /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/esp32/libesp32.a(int_wdt.c.obj) + esp-idf/esp32/libesp32.a(dport_access.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +io_cfg2str /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +ioctl esp-idf/vfs/libvfs.a(vfs.c.obj) +ip4_addr_isbroadcast_u32 esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +ip4_addr_netmask_valid esp-idf/lwip/liblwip.a(ip4_addr.c.obj) +ip4_frag esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +ip4_input esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(ip.c.obj) +ip4_netif_exist esp-idf/lwip/liblwip.a(ip4.c.obj) +ip4_output esp-idf/lwip/liblwip.a(ip4.c.obj) +ip4_output_if esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +ip4_output_if_opt esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) +ip4_output_if_opt_src esp-idf/lwip/liblwip.a(ip4.c.obj) +ip4_output_if_src esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) +ip4_route esp-idf/lwip/liblwip.a(ip4.c.obj) +ip4_route_src esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +ip4_route_src_hook esp-idf/lwip/liblwip.a(ip4.c.obj) +ip4_set_default_multicast_netif esp-idf/lwip/liblwip.a(ip4.c.obj) +ip4addr_aton esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(ip.c.obj) +ip4addr_ntoa esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/lwip/liblwip.a(ip.c.obj) +ip4addr_ntoa_r esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(ip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +ip6_addr_any esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) +ip6_chksum_pseudo esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +ip6_chksum_pseudo_partial esp-idf/lwip/liblwip.a(inet_chksum.c.obj) +ip6_frag esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) +ip6_input esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(ip.c.obj) +ip6_options_add_hbh_ra esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) +ip6_output esp-idf/lwip/liblwip.a(ip6.c.obj) +ip6_output_if esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +ip6_output_if_src esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) +ip6_reass esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) +ip6_reass_tmr esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) +ip6_route esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +ip6_select_source_address esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +ip6addr_aton esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(ip.c.obj) +ip6addr_ntoa esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(ip.c.obj) +ip6addr_ntoa_r esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(ip.c.obj) +ip_addr_any esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +ip_addr_any_type esp-idf/lwip/liblwip.a(ip.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) +ip_addr_broadcast esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) +ip_chksum_pseudo esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +ip_chksum_pseudo_partial esp-idf/lwip/liblwip.a(inet_chksum.c.obj) +ip_data esp-idf/lwip/liblwip.a(ip.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +ip_input esp-idf/lwip/liblwip.a(ip.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +ipaddr_addr esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +ipaddr_aton esp-idf/lwip/liblwip.a(ip.c.obj) + esp-idf/lwip/liblwip.a(netdb.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) +ipaddr_ntoa esp-idf/lwip/liblwip.a(ip.c.obj) +ipaddr_ntoa_r esp-idf/lwip/liblwip.a(ip.c.obj) +is_esp_mesh_assoc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +is_esp_mesh_ext_assoc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +is_lmac_idle /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +is_mesh_child /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +is_mesh_last_parent /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +is_my_ie_encrypted /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +is_self_mac_greater /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +iswspace /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) +labs /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-labs.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) +ld_include_panic_highint_hdl esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) +libcoexist_reversion_git /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +libcore_reversion_git /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) +libmesh_reversion_git /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +libnet80211_reversion_git /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +libnet80211_reversion_remote /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +libpp_reversion_git /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +linenoise esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/main/libmain.a(main.c.obj) +linenoiseAddCompletion esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/console/libconsole.a(commands.c.obj) +linenoiseClearScreen esp-idf/console/libconsole.a(linenoise.c.obj) +linenoiseEditBackspace esp-idf/console/libconsole.a(linenoise.c.obj) +linenoiseEditDelete esp-idf/console/libconsole.a(linenoise.c.obj) +linenoiseEditDeletePrevWord esp-idf/console/libconsole.a(linenoise.c.obj) +linenoiseEditHistoryNext esp-idf/console/libconsole.a(linenoise.c.obj) +linenoiseEditInsert esp-idf/console/libconsole.a(linenoise.c.obj) +linenoiseEditMoveEnd esp-idf/console/libconsole.a(linenoise.c.obj) +linenoiseEditMoveHome esp-idf/console/libconsole.a(linenoise.c.obj) +linenoiseEditMoveLeft esp-idf/console/libconsole.a(linenoise.c.obj) +linenoiseEditMoveRight esp-idf/console/libconsole.a(linenoise.c.obj) +linenoiseFree esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/main/libmain.a(main.c.obj) +linenoiseHistoryAdd esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/main/libmain.a(main.c.obj) +linenoiseHistoryFree esp-idf/console/libconsole.a(linenoise.c.obj) +linenoiseHistoryLoad esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/main/libmain.a(main.c.obj) +linenoiseHistorySave esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/main/libmain.a(main.c.obj) +linenoiseHistorySetMaxLen esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/main/libmain.a(main.c.obj) +linenoiseProbe esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/main/libmain.a(main.c.obj) +linenoiseSetCompletionCallback esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/main/libmain.a(main.c.obj) +linenoiseSetDumbMode esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/main/libmain.a(main.c.obj) +linenoiseSetFreeHintsCallback esp-idf/console/libconsole.a(linenoise.c.obj) +linenoiseSetHintsCallback esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/main/libmain.a(main.c.obj) +linenoiseSetMultiLine esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/main/libmain.a(main.c.obj) +lmacAdjustTimestamp /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacConfMib /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacDisableTransmit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacDiscardAgedMSDU /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacInit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +lmacIsIdle /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +lmacMSDUAged /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacPostTxComplete /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +lmacProcessAckTimeout /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessAllTxTimeout /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +lmacProcessCollision /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessCollisions /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +lmacProcessCollisions_task /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacProcessCtsTimeout /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessRxSucData /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +lmacProcessTxComplete /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacProcessTxError /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessTxRtsError /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessTxSuccess /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacProcessTxTimeout /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacProcessTxopStartData /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +lmacProcessTxopSuccess /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +lmacRecycleMPDU /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmacRxDone /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +lmacSetAcParam /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +lmacTxFrame /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +lmac_stop_hw_txq /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +localeconv /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) +localtime_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + esp-idf/fatfs/libfatfs.a(diskio.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) +longjmp /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setjmp.o) + esp-idf/console/libconsole.a(argtable3.c.obj) +lr_enable /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +lwip_accept esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +lwip_bind esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +lwip_close esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) +lwip_connect esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +lwip_cyclic_timers esp-idf/lwip/liblwip.a(timeouts.c.obj) +lwip_fcntl esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) +lwip_freeaddrinfo esp-idf/lwip/liblwip.a(netdb.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +lwip_getaddrinfo esp-idf/lwip/liblwip.a(netdb.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +lwip_gethostbyname esp-idf/lwip/liblwip.a(netdb.c.obj) +lwip_gethostbyname_r esp-idf/lwip/liblwip.a(netdb.c.obj) +lwip_getpeername esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_getsockname esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) +lwip_getsockopt esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +lwip_htonl esp-idf/lwip/liblwip.a(def.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(ip4_addr.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +lwip_htons esp-idf/lwip/liblwip.a(def.c.obj) + esp-idf/lwip/liblwip.a(netdb.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(inet_chksum.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) +lwip_inet_ntop esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_inet_pton esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_init esp-idf/lwip/liblwip.a(init.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +lwip_ioctl esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) +lwip_itoa esp-idf/lwip/liblwip.a(def.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +lwip_listen esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +lwip_netconn_do_accepted esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_bind esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_bind_if esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_close esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_connect esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_delconn esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_disconnect esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_getaddr esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_gethostbyname esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_join_leave_group esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_join_leave_group_netif esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_listen esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_newconn esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_recv esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_send esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_do_write esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_is_deallocated_msg esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_netconn_is_err_msg esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +lwip_num_cyclic_timers esp-idf/lwip/liblwip.a(timeouts.c.obj) +lwip_poll esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_read esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) +lwip_readv esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_recv esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) +lwip_recvfrom esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) +lwip_recvmsg esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_select esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) +lwip_send esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) +lwip_sendmsg esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_sendto esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) +lwip_setsockopt esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) +lwip_shutdown esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) +lwip_socket esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(ctrl_sock.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +lwip_socket_dbg_get_socket esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_socket_thread_cleanup esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_socket_thread_init esp-idf/lwip/liblwip.a(sockets.c.obj) +lwip_standard_chksum esp-idf/lwip/liblwip.a(inet_chksum.c.obj) +lwip_strerr esp-idf/lwip/liblwip.a(err.c.obj) +lwip_stricmp esp-idf/lwip/liblwip.a(def.c.obj) +lwip_strnicmp esp-idf/lwip/liblwip.a(def.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) +lwip_strnstr esp-idf/lwip/liblwip.a(def.c.obj) +lwip_write esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) +lwip_writev esp-idf/lwip/liblwip.a(sockets.c.obj) +main /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o +mallinfo esp-idf/newlib/libnewlib.a(heap.c.obj) +malloc esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(new_opnt.o) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + esp-idf/fatfs/libfatfs.a(diskio.c.obj) + esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/console/libconsole.a(argtable3.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(rtc_module.c.obj) + esp-idf/log/liblog.a(log.c.obj) + esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +malloc_stats esp-idf/newlib/libnewlib.a(heap.c.obj) +malloc_trim esp-idf/newlib/libnewlib.a(heap.c.obj) +malloc_usable_size esp-idf/newlib/libnewlib.a(heap.c.obj) +mallopt esp-idf/newlib/libnewlib.a(heap.c.obj) +map_assoc_expire /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +mbedtls_asn1_find_named_data esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) +mbedtls_asn1_free_named_data esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) +mbedtls_asn1_free_named_data_list esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) +mbedtls_asn1_get_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) +mbedtls_asn1_get_alg_null esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) +mbedtls_asn1_get_bitstring esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_asn1_get_bitstring_null esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_asn1_get_bool esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_asn1_get_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) +mbedtls_asn1_get_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_asn1_get_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_asn1_get_sequence_of esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_asn1_get_tag esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) +mbedtls_asn1_store_named_data esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) +mbedtls_asn1_write_algorithm_identifier esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_asn1_write_bitstring esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) +mbedtls_asn1_write_bool esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) +mbedtls_asn1_write_ia5_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_asn1_write_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_asn1_write_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_asn1_write_null esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_octet_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_oid esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_asn1_write_printable_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_asn1_write_raw_buffer esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) +mbedtls_asn1_write_tag esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_asn1_write_tagged_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) +mbedtls_asn1_write_utf8_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) +mbedtls_base64_decode esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) +mbedtls_base64_encode esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) +mbedtls_base64_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) +mbedtls_calloc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_ccm_auth_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_ccm_encrypt_and_tag esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_ccm_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +mbedtls_ccm_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +mbedtls_ccm_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) +mbedtls_ccm_setkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +mbedtls_ccm_star_auth_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) +mbedtls_ccm_star_encrypt_and_tag esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) +mbedtls_cipher_auth_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_cipher_auth_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_cipher_check_tag esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cipher_crypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) +mbedtls_cipher_definitions esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cipher_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) +mbedtls_cipher_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) +mbedtls_cipher_info_from_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cipher_info_from_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) +mbedtls_cipher_info_from_values esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) +mbedtls_cipher_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) +mbedtls_cipher_list esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cipher_reset esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) +mbedtls_cipher_set_iv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) +mbedtls_cipher_set_padding_mode esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_cipher_setkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) +mbedtls_cipher_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) +mbedtls_cipher_supported esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cipher_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) +mbedtls_cipher_update_ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_cipher_write_tag esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_ctr_drbg_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_ctr_drbg_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_ctr_drbg_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_ctr_drbg_random_with_add esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_reseed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_seed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_ctr_drbg_seed_entropy_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_set_entropy_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_set_prediction_resistance esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_set_reseed_interval esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_update_ret esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_update_seed_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_ctr_drbg_write_seed_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) +mbedtls_dhm_calc_secret esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_dhm_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_dhm_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_dhm_make_params esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) +mbedtls_dhm_make_public esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_dhm_parse_dhm esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) +mbedtls_dhm_parse_dhmfile esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) +mbedtls_dhm_read_params esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_dhm_read_public esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) +mbedtls_dhm_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) +mbedtls_dhm_set_group esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) +mbedtls_ecdh_calc_secret esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ecdh_compute_shared esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecdh_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ecdh_gen_public esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecdh_get_params esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_ecdh_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ecdh_make_params esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) +mbedtls_ecdh_make_public esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_ecdh_read_params esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_ecdh_read_public esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) +mbedtls_ecdh_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) +mbedtls_ecdsa_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_ecdsa_from_keypair esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_ecdsa_genkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecdsa_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_ecdsa_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_ecdsa_read_signature esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_ecdsa_read_signature_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecdsa_sign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecdsa_sign_det esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecdsa_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecdsa_write_signature esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_ecdsa_write_signature_det esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecdsa_write_signature_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_eckey_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_eckeydh_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_ecp_check_privkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_ecp_check_pub_priv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_ecp_check_pubkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_ecp_copy esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecp_curve_info_from_grp_id esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) +mbedtls_ecp_curve_info_from_name esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) +mbedtls_ecp_curve_info_from_tls_id esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) +mbedtls_ecp_curve_list esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) +mbedtls_ecp_gen_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) +mbedtls_ecp_gen_keypair esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecp_gen_keypair_base esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_gen_privkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecp_group_copy esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecp_group_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) +mbedtls_ecp_group_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_ecp_group_load esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_grp_id_list esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_ecp_is_zero esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecp_keypair_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_ecp_keypair_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_ecp_mul esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_ecp_mul_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecp_muladd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_ecp_muladd_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecp_point_cmp esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_ecp_point_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecp_point_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_ecp_point_read_binary esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_ecp_point_read_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_point_write_binary esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_ecp_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_set_zero esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_tls_read_group esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_ecp_tls_read_group_id esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_tls_read_point esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_tls_write_group esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_ecp_tls_write_point esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) +mbedtls_entropy_add_source esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) +mbedtls_entropy_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_entropy_func esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_entropy_gather esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_entropy_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_entropy_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_entropy_source_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_entropy_update_manual esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_entropy_update_seed_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_entropy_write_seed_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_gcm_auth_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_gcm_crypt_and_tag esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_gcm_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_gcm_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +mbedtls_gcm_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +mbedtls_gcm_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) +mbedtls_gcm_setkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher_wrap.c.obj) +mbedtls_gcm_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_gcm_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) +mbedtls_hardware_poll esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_hardware.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_hmac_drbg_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_hmac_drbg_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_hmac_drbg_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_hmac_drbg_random_with_add esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_reseed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_seed esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_seed_buf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) +mbedtls_hmac_drbg_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_set_entropy_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_set_prediction_resistance esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_set_reseed_interval esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_update_ret esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_update_seed_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_hmac_drbg_write_seed_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_internal_md5_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) +mbedtls_internal_sha1_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) +mbedtls_internal_sha256_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) +mbedtls_internal_sha512_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) +mbedtls_md esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_md5 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) +mbedtls_md5_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) +mbedtls_md5_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) +mbedtls_md5_finish_ret esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) +mbedtls_md5_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) +mbedtls_md5_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_md5_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) +mbedtls_md5_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) +mbedtls_md5_ret esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) +mbedtls_md5_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) +mbedtls_md5_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) +mbedtls_md5_starts_ret esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) +mbedtls_md5_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) +mbedtls_md5_update_ret esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) +mbedtls_md_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_md_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_md_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_md_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) +mbedtls_md_get_name esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_md_get_size esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_md_get_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_md_hmac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_md_hmac_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) +mbedtls_md_hmac_reset esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) +mbedtls_md_hmac_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) +mbedtls_md_hmac_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) +mbedtls_md_info_from_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_md_info_from_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) +mbedtls_md_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) +mbedtls_md_init_ctx esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_md_list esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_md_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_md_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) +mbedtls_md_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_md_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_add_abs esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) +mbedtls_mpi_add_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_add_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_bitlen esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_cmp_abs esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_cmp_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_cmp_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_copy esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_div_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) +mbedtls_mpi_div_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_exp_mod esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_internal-modexp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_fill_random esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_internal-modexp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_mpi_gcd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_gen_prime esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_get_bit esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_grow esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) +mbedtls_mpi_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_internal-modexp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_mpi_inv_mod esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_is_prime esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_is_prime_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) +mbedtls_mpi_lsb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) +mbedtls_mpi_lset esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_mod_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_mod_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_mul_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_mul_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_read_binary esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_internal-modexp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_read_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_read_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_mpi_safe_cond_assign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_safe_cond_swap esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_mpi_set_bit esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_shift_l esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_shift_r esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_shrink esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_size esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_sub_abs esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_sub_int esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_sub_mpi esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_swap esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_mpi_write_binary esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdh.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_internal-modexp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) +mbedtls_mpi_write_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) +mbedtls_mpi_write_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_net_accept esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) +mbedtls_net_bind esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) +mbedtls_net_connect esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) +mbedtls_net_free esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_net_init esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +mbedtls_net_recv esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_net_recv_timeout esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) +mbedtls_net_send esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_net_set_block esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) +mbedtls_net_set_nonblock esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) +mbedtls_net_usleep esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) +mbedtls_oid_get_attr_short_name esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_oid_get_cipher_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) +mbedtls_oid_get_ec_grp esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_oid_get_extended_key_usage esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_oid_get_md_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_oid_get_md_hmac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) +mbedtls_oid_get_numeric_string esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) +mbedtls_oid_get_oid_by_ec_grp esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_oid_get_oid_by_md esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_oid_get_oid_by_pk_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_oid_get_oid_by_sig_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) +mbedtls_oid_get_pk_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_oid_get_pkcs12_pbe_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_oid_get_sig_alg esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_oid_get_sig_alg_desc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_oid_get_x509_ext_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_pem_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_pem_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_pem_read_buffer esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_pem_write_buffer esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_pk_can_do esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_pk_check_pair esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_pk_debug esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) +mbedtls_pk_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_pk_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_pk_get_bitlen esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_pk_get_name esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_pk_get_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) +mbedtls_pk_info_from_type esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) +mbedtls_pk_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_pk_load_file esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_pk_parse_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_pk_parse_keyfile esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_pk_parse_public_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_pk_parse_public_keyfile esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_pk_parse_subpubkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_pk_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) +mbedtls_pk_setup_rsa_alt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_pk_sign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) +mbedtls_pk_sign_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_pk_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) +mbedtls_pk_verify_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_pk_verify_restartable esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_pk_write_key_der esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) +mbedtls_pk_write_key_pem esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) +mbedtls_pk_write_pubkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) +mbedtls_pk_write_pubkey_der esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) +mbedtls_pk_write_pubkey_pem esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) +mbedtls_pkcs12_derivation esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) +mbedtls_pkcs12_pbe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_pkcs12_pbe_sha1_rc4_128 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_pkcs5_pbes2 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_pkcs5_pbkdf2_hmac esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) +mbedtls_pkcs5_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) +mbedtls_platform_set_calloc_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) +mbedtls_platform_setup esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) +mbedtls_platform_teardown esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform.c.obj) +mbedtls_platform_zeroize esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) +mbedtls_rsa_alt_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_rsa_check_privkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_check_pub_priv esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_rsa_check_pubkey esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_rsa_complete esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_rsa_copy esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_deduce_crt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_deduce_primes esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_deduce_private_exponent esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_export esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) +mbedtls_rsa_export_crt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) +mbedtls_rsa_export_raw esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_rsa_gen_key esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) +mbedtls_rsa_get_len esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_rsa_import esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_import_raw esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) +mbedtls_rsa_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_rsa_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_rsa_pkcs1_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_rsa_pkcs1_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_rsa_pkcs1_sign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_rsa_pkcs1_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) +mbedtls_rsa_private esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_public esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsaes_oaep_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsaes_oaep_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsaes_pkcs1_v15_decrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsaes_pkcs1_v15_encrypt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsassa_pkcs1_v15_sign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsassa_pkcs1_v15_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsassa_pss_sign esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsassa_pss_verify esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_rsassa_pss_verify_ext esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk.c.obj) +mbedtls_rsa_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_set_padding esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_validate_crt esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_rsa_validate_params esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +mbedtls_sha1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) +mbedtls_sha1_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) +mbedtls_sha1_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) +mbedtls_sha1_finish_ret esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) +mbedtls_sha1_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) +mbedtls_sha1_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha1_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) +mbedtls_sha1_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) +mbedtls_sha1_ret esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) +mbedtls_sha1_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) +mbedtls_sha1_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) +mbedtls_sha1_starts_ret esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) +mbedtls_sha1_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) +mbedtls_sha1_update_ret esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) +mbedtls_sha224_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha256 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) +mbedtls_sha256_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) +mbedtls_sha256_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +mbedtls_sha256_finish_ret esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) +mbedtls_sha256_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) +mbedtls_sha256_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha256_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) +mbedtls_sha256_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +mbedtls_sha256_ret esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) +mbedtls_sha256_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) +mbedtls_sha256_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +mbedtls_sha256_starts_ret esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) +mbedtls_sha256_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +mbedtls_sha256_update_ret esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) +mbedtls_sha384_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha512 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) +mbedtls_sha512_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) +mbedtls_sha512_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) +mbedtls_sha512_finish_ret esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_sha512_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_sha512_info esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) +mbedtls_sha512_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_sha512_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) +mbedtls_sha512_ret esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_sha512_self_test esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) +mbedtls_sha512_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) +mbedtls_sha512_starts_ret esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_sha512_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) +mbedtls_sha512_update_ret esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) +mbedtls_ssl_check_cert_usage esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) +mbedtls_ssl_check_curve esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_ssl_check_pending esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_check_sig_hash esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_ssl_ciphersuite_from_id esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_ssl_ciphersuite_from_string esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) +mbedtls_ssl_ciphersuite_uses_ec esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_ssl_ciphersuite_uses_psk esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_ssl_close_notify esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_alpn_protocols esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_conf_authmode esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_conf_ca_chain esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_conf_cbc_record_splitting esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_cert_profile esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_cert_req_ca_list esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_ciphersuites esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_ciphersuites_for_version esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_curves esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_dbg esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_dh_param esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_dh_param_bin esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_dh_param_ctx esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_dhm_min_bitlen esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_dtls_anti_replay esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_dtls_badmac_limit esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_dtls_cookies esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) +mbedtls_ssl_conf_encrypt_then_mac esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_endpoint esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_export_keys_cb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_extended_master_secret esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_fallback esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_handshake_timeout esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_legacy_renegotiation esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_max_frag_len esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_max_version esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_min_version esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_own_cert esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_conf_psk esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_psk_cb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_read_timeout esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_renegotiation esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_renegotiation_enforced esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_renegotiation_period esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_rng esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_conf_session_cache esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_session_tickets esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_session_tickets_cb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_sig_hashes esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_sni esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_transport esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_truncated_hmac esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_conf_verify esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_config_defaults esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_config_free esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_config_init esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_derive_keys esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_ssl_dtls_replay_check esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) +mbedtls_ssl_dtls_replay_update esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) +mbedtls_ssl_fetch_input esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) +mbedtls_ssl_flight_transmit esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_ssl_flush_output esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_ssl_free esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_get_alpn_protocol esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_get_bytes_avail esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_get_ciphersuite esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_get_ciphersuite_id esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) +mbedtls_ssl_get_ciphersuite_name esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_get_ciphersuite_sig_alg esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) +mbedtls_ssl_get_ciphersuite_sig_pk_alg esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_ssl_get_key_exchange_md_ssl_tls esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_ssl_get_key_exchange_md_tls1_2 esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_ssl_get_max_frag_len esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_get_max_out_record_payload esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_get_peer_cert esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_get_record_expansion esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_get_session esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_get_verify_result esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_get_version esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_handle_message_type esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_handshake esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_handshake_client_step esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_handshake_free esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_handshake_server_step esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_handshake_step esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_handshake_wrapup esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_ssl_hash_from_md_alg esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_ssl_init esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_list_ciphersuites esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_md_alg_from_hash esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_ssl_optimize_checksum esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_ssl_parse_certificate esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_ssl_parse_change_cipher_spec esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_ssl_parse_finished esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_ssl_pk_alg_from_sig esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_ssl_prepare_handshake_record esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_psk_derive_premaster esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_ssl_read esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_read_record esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_ssl_read_version esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_ssl_recv_flight_completed esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_ssl_renegotiate esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_resend esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_reset_checksum esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_ssl_send_alert_message esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_ssl_send_fatal_handshake_failure esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_send_flight_completed esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_ssl_session_free esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) +mbedtls_ssl_session_init esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) +mbedtls_ssl_session_reset esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_set_bio esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_set_calc_verify_md esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) +mbedtls_ssl_set_client_transport_id esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) +mbedtls_ssl_set_datagram_packing esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_set_hostname esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_set_hs_authmode esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_set_hs_ca_chain esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_set_hs_own_cert esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_set_hs_psk esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_set_mtu esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_set_session esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_set_timer_cb esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_setup esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_sig_from_pk esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_ssl_sig_from_pk_alg esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) +mbedtls_ssl_sig_hash_set_add esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) +mbedtls_ssl_sig_hash_set_const_hash esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) +mbedtls_ssl_sig_hash_set_find esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) +mbedtls_ssl_transform_free esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_update_handshake_status esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) +mbedtls_ssl_write esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_ssl_write_certificate esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_ssl_write_change_cipher_spec esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_ssl_write_finished esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_ssl_write_handshake_msg esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_ssl_write_record esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_ssl_write_version esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) +mbedtls_strerror esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_test_ca_crt esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_test_ca_crt_ec esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_crt_ec_der esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_crt_ec_der_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_crt_ec_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_crt_ec_pem esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_crt_ec_pem_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_crt_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_test_ca_crt_rsa esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_crt_rsa_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_crt_rsa_sha1 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_crt_rsa_sha1_der esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_crt_rsa_sha1_der_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_crt_rsa_sha1_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_crt_rsa_sha1_pem esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_crt_rsa_sha1_pem_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_crt_rsa_sha256 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_crt_rsa_sha256_der esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_crt_rsa_sha256_der_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_crt_rsa_sha256_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_crt_rsa_sha256_pem esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_crt_rsa_sha256_pem_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_key esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_key_ec esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_key_ec_der esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_key_ec_der_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_key_ec_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_key_ec_pem esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_key_ec_pem_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_key_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_key_rsa esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_key_rsa_der esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_key_rsa_der_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_key_rsa_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_key_rsa_pem esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_key_rsa_pem_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_pwd esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_pwd_ec esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_pwd_ec_der_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_pwd_ec_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_pwd_ec_pem esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_pwd_ec_pem_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_pwd_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_pwd_rsa esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_pwd_rsa_der_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_pwd_rsa_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_pwd_rsa_pem esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_ca_pwd_rsa_pem_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cas esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cas_der esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cas_der_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cas_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cas_pem esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cas_pem_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_crt esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_test_cli_crt_ec esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_crt_ec_der esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_crt_ec_der_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_crt_ec_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_crt_ec_pem esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_crt_ec_pem_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_crt_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_test_cli_crt_rsa esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_crt_rsa_der esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_crt_rsa_der_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_crt_rsa_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_crt_rsa_pem esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_crt_rsa_pem_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_key esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_key_ec esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_key_ec_der esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_key_ec_der_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_key_ec_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_key_ec_pem esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_key_ec_pem_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_key_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_key_rsa esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_key_rsa_der esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_key_rsa_der_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_key_rsa_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_key_rsa_pem esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_key_rsa_pem_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_pwd esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_pwd_ec esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_pwd_ec_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_pwd_ec_pem esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_pwd_ec_pem_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_pwd_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_pwd_rsa esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_pwd_rsa_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_pwd_rsa_pem esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_cli_pwd_rsa_pem_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_crt esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_crt_ec esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_crt_ec_der esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_crt_ec_der_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_crt_ec_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_crt_ec_pem esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_crt_ec_pem_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_crt_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_crt_rsa esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_crt_rsa_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_crt_rsa_sha1 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_crt_rsa_sha1_der esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_crt_rsa_sha1_der_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_crt_rsa_sha1_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_crt_rsa_sha1_pem esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_crt_rsa_sha1_pem_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_crt_rsa_sha256 esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_crt_rsa_sha256_der esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_crt_rsa_sha256_der_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_crt_rsa_sha256_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_crt_rsa_sha256_pem esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_crt_rsa_sha256_pem_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_key esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_key_ec esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_key_ec_der esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_key_ec_der_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_key_ec_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_key_ec_pem esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_key_ec_pem_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_key_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_key_rsa esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_key_rsa_der esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_key_rsa_der_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_key_rsa_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_key_rsa_pem esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_key_rsa_pem_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_pwd esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_pwd_ec esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_pwd_ec_der_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_pwd_ec_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_pwd_ec_pem esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_pwd_ec_pem_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_pwd_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_pwd_rsa esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_pwd_rsa_der_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_pwd_rsa_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_pwd_rsa_pem esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_test_srv_pwd_rsa_pem_len esp-idf/mbedtls/mbedtls/library/libmbedx509.a(certs.c.obj) +mbedtls_x509_crt_check_extended_key_usage esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_x509_crt_check_key_usage esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_x509_crt_free esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_x509_crt_info esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_init esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_x509_crt_is_revoked esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_parse esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_x509_crt_parse_der esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_x509_crt_parse_file esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_x509_crt_parse_path esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_profile_default esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_x509_crt_profile_next esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_crt_profile_suiteb esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_x509_crt_verify esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_x509_crt_verify_info esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +mbedtls_x509_crt_verify_restartable esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) +mbedtls_x509_crt_verify_with_profile esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_csr_free esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_x509_csr_info esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) +mbedtls_x509_csr_init esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_x509_csr_parse esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) +mbedtls_x509_csr_parse_der esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) +mbedtls_x509_csr_parse_file esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_x509_dn_gets esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_x509_get_alg esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_alg_null esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_x509_get_ext esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_name esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_rsassa_pss_params esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_x509_get_serial esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_sig esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_sig_alg esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_get_time esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_key_size_helper esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_self_test esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) +mbedtls_x509_serial_gets esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_set_extension esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) +mbedtls_x509_sig_alg_gets esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_string_to_names esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) +mbedtls_x509_time_is_future esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_time_is_past esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +mbedtls_x509_write_extensions esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) +mbedtls_x509_write_names esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) +mbedtls_x509_write_sig esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) +mbedtls_x509write_crt_der esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) +mbedtls_x509write_crt_free esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_x509write_crt_init esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_x509write_crt_pem esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_x509write_crt_set_authority_key_identifier esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_x509write_crt_set_basic_constraints esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_x509write_crt_set_extension esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) +mbedtls_x509write_crt_set_issuer_key esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_x509write_crt_set_issuer_name esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_x509write_crt_set_key_usage esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_x509write_crt_set_md_alg esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_x509write_crt_set_ns_cert_type esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_x509write_crt_set_serial esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_x509write_crt_set_subject_key esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_x509write_crt_set_subject_key_identifier esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_x509write_crt_set_subject_name esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_x509write_crt_set_validity esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbedtls_x509write_crt_set_version esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +mbrtowc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) +md5_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +mem_calloc esp-idf/lwip/liblwip.a(mem.c.obj) +mem_free esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +mem_free_callback esp-idf/lwip/liblwip.a(tcpip.c.obj) +mem_init esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) +mem_malloc esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) +mem_trim esp-idf/lwip/liblwip.a(mem.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) +memalign esp-idf/newlib/libnewlib.a(heap.c.obj) +memalign_function_was_linked_but_unsupported_in_esp_idf esp-idf/newlib/libnewlib.a(heap.c.obj) +memchr /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + esp-idf/nghttp/libnghttp.a(http_parser.c.obj) +memcmp /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1parse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_handlers.c.obj) + esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +memcpy /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_sta_list.c.obj) + esp-idf/lwip/liblwip.a(ethip6.c.obj) + esp-idf/lwip/liblwip.a(netdb.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ap_config.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecdsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(asn1write.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa_internal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkwrite.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp_curves.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + esp-idf/fatfs/libfatfs.a(diskio.c.obj) + esp-idf/esp_https_server/libesp_https_server.a(https_server.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/console/libconsole.a(argtable3.c.obj) + esp-idf/console/libconsole.a(commands.c.obj) + esp-idf/esp_common/libesp_common.a(mac_addr.c.obj) + esp-idf/esp32/libesp32.a(hw_random.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6_addr.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_default.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(ccmp.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-unwrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-cbc.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + esp-idf/esp_event/libesp_event.a(event_send.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_event/libesp_event.a(default_event_loop.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/https_server/libhttps_server.a(https_server.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) + esp-idf/ca/libca.a(ca.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +memmove /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(def.c.obj) +memp_ARP_QUEUE esp-idf/lwip/liblwip.a(memp.c.obj) +memp_FRAG_PBUF esp-idf/lwip/liblwip.a(memp.c.obj) +memp_IGMP_GROUP esp-idf/lwip/liblwip.a(memp.c.obj) +memp_IP6_REASSDATA esp-idf/lwip/liblwip.a(memp.c.obj) +memp_MLD6_GROUP esp-idf/lwip/liblwip.a(memp.c.obj) +memp_ND6_QUEUE esp-idf/lwip/liblwip.a(memp.c.obj) +memp_NETBUF esp-idf/lwip/liblwip.a(memp.c.obj) +memp_NETCONN esp-idf/lwip/liblwip.a(memp.c.obj) +memp_NETDB esp-idf/lwip/liblwip.a(memp.c.obj) +memp_PBUF esp-idf/lwip/liblwip.a(memp.c.obj) +memp_PBUF_POOL esp-idf/lwip/liblwip.a(memp.c.obj) +memp_RAW_PCB esp-idf/lwip/liblwip.a(memp.c.obj) +memp_SYS_TIMEOUT esp-idf/lwip/liblwip.a(memp.c.obj) +memp_TCPIP_MSG_API esp-idf/lwip/liblwip.a(memp.c.obj) +memp_TCPIP_MSG_INPKT esp-idf/lwip/liblwip.a(memp.c.obj) +memp_TCP_PCB esp-idf/lwip/liblwip.a(memp.c.obj) +memp_TCP_PCB_LISTEN esp-idf/lwip/liblwip.a(memp.c.obj) +memp_TCP_SEG esp-idf/lwip/liblwip.a(memp.c.obj) +memp_UDP_PCB esp-idf/lwip/liblwip.a(memp.c.obj) +memp_free esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(netdb.c.obj) + esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +memp_free_pool esp-idf/lwip/liblwip.a(memp.c.obj) +memp_init esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) +memp_init_pool esp-idf/lwip/liblwip.a(memp.c.obj) +memp_malloc esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(netdb.c.obj) + esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +memp_malloc_pool esp-idf/lwip/liblwip.a(memp.c.obj) +memp_pools esp-idf/lwip/liblwip.a(memp.c.obj) +memset /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_arbit.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_sta_list.c.obj) + esp-idf/lwip/liblwip.a(netdb.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(esf_buf.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_mbedtls.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs12.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(platform_util.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pk_wrap.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/wear_levelling/libwear_levelling.a(WL_Flash.cpp.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_sess.c.obj) + esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/console/libconsole.a(argtable3.c.obj) + esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-ccm.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-wrap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(md5.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + esp-idf/https_server/libhttps_server.a(https_server.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) + esp-idf/ca/libca.a(ca.c.obj) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +memspi_host_erase_block esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_erase_chip esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_erase_sector esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_flush_cache esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +memspi_host_init_pointers esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +memspi_host_program_page esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_read esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_read_id_hs esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +memspi_host_read_status_hs esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +memspi_host_set_write_protect esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +mesh_add_invalid_rc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_add_option /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_adjust_passive_scan_time /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_bcn_change_timeout /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_bcn_change_timeout_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_bcn_change_timer_start /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_candidate_monitor_timeout /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_candidate_monitor_timeout_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_check_conflict_beacon /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_check_last_rcandidate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_check_rc_expire /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_clear_parent_candidate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mesh_coding_ie_key /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_conn_leave /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_conn_mutex /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +mesh_connect_to_candidate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_connect_to_router /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +mesh_create_task /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) +mesh_csa_set_bssid /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_deinit_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_disable_parent_switch_monitor /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_encrypt_ie_plain_key /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_find_root_competitor /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_flush_txQ /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_flush_upstream_packets /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_free /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_get_parent_candidate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mesh_get_parent_monitor_config /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mesh_get_rssi_threshold /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mesh_get_sub_ie /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_get_subnet_nodes_list /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_get_subnet_nodes_num /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_get_tx_pending /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_get_vnd_roots_len /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_ie_monitor_timeout /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_ie_monitor_timeout_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_ie_type2str /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_init_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_init_rcandidate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_ioctl_sem /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +mesh_is_ie_ignored /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_is_last_rc_existing /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_is_new_found_conflict_root /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_is_new_root_found /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_is_new_root_invalid /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_is_yield_root /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_look_for_network /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_malloc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_common.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_multi_recv_ack /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +mesh_multi_send_ack /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +mesh_mutex_lock /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_mutex_unlock /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_myself_mbox /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_node_process_cycle /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_node_process_disconnect /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_node_process_healing /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_add_conflict_roots /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_change_layer /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_check_conflict_roots /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_check_layer /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_check_no_parent_found /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) +mesh_nwk_delete_timers /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_find_conflict_roots /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_io_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_manual_networking /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_nwk_process_allow_switch /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_child_event /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_conflict_discnx /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_disconnected /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_ie_change /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_leaf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_look_for_network /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_no_parent /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_nvs_settings /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_reselect /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_rootless /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_scan_done /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_scan_request /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_vote_done /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_yield_roots_announce /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_process_yield_roots_monitor /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_remove_conflict_roots /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_task_deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_nwk_task_main /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_parent_check_root_conflict /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_parent_insert_candidate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_parent_select_done /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_parse_conflict_roots_ie /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_parse_option /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_post_parent_assoc_ie /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_post_parent_switch_candidate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_post_parent_weak_rssi /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_print_txQ_waiting /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_process_child_macconnected /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_process_mcast_cover_node /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +mesh_process_mgmt_announce /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +mesh_process_mgmt_root_switch /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +mesh_process_mgmt_root_waive /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +mesh_process_mgmt_routing_table /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +mesh_process_parent_organized /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) +mesh_process_root_candidate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_process_roots_ie /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_process_roots_ie_ttl /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_process_same_root_candidate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_recv /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_recv_add_option /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_recv_process_flag /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_register_timer_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_remove_myself_from_forwarding /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +mesh_root_connect_timeout /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_root_connect_timeout_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_root_connect_timer_start /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_root_process_connect /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_root_process_disconnect /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_root_process_roots_ie /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +mesh_route_announce_timeout /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_rt_change_timeout /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +mesh_rt_change_timeout_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_rt_change_timer_start /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +mesh_rx_task_deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) +mesh_rx_task_main /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_wifi.o) +mesh_rxcb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +mesh_scan_done_process_weak /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_select_is_better_parent /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_select_parent /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_select_parent_compute_rank /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_select_parent_limit_layer2_cap /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_select_parent_try_layer /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_select_parent_try_rssi /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_select_router /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_select_set_ignore /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_self_xonseq /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_send_block_deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_send_block_main /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_send_process_flag /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_send_roots_fixed /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_send_roots_gone /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_send_roots_stop /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_send_stop_vote /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_set_default_rssi_threshold /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_set_id /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +mesh_set_ie_crypto_config /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mesh_set_ie_crypto_funcs /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +mesh_set_ie_crypto_key /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +mesh_set_io_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_set_parent /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +mesh_set_parent_candidate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mesh_set_parent_monitor_config /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mesh_set_root_candidate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_set_root_candidate_ie /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_set_router /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_set_rssi_threshold /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mesh_set_self_organized /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_set_type /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_sta_crypto_config /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) +mesh_sta_set_config /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_sta_start /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_stop_recv /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_switch_channel /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_tcpip_mbox /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_timer_bcn_change /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_timer_candidate_monitor /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_timer_do_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_timer_info /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_timer_mie_monitor /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_timer_root_connect /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_timer_route_announce /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_timer_rt_change /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +mesh_tx_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_tx_task_deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_tx_task_main /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_tx_tid_stop /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_update_current_parent /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_update_ie_rssi /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_update_rcandidate_rssi /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_update_route_table /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +mesh_vote_root_candidate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_waive_root /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +mesh_wifi_event_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_wifi_event_deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +mesh_wifi_event_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) +mesh_xmit_state_mbox /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_sta.o) +mesh_xon /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_xon_deliver_packet /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_xon_flush_packets /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_xon_process_disconnected /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_xon_process_expired /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mesh_xon_task_main /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +mgd_probe_send_timeout_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +misc_nvs_deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +misc_nvs_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +misc_nvs_load /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) +misc_nvs_restore /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +mkdir esp-idf/vfs/libvfs.a(vfs.c.obj) +mktime /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mktime.o) + esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) +mld6_input esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) +mld6_joingroup esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) +mld6_joingroup_netif esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) +mld6_leavegroup esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +mld6_leavegroup_netif esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) +mld6_lookfor_group esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) +mld6_report_groups esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +mld6_stop esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +mld6_tmr esp-idf/lwip/liblwip.a(mld6.c.obj) +multi_heap_aligned_alloc esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_aligned_free esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_check esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_dump esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_free esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_free_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_free_size esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_free_size_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_allocated_size esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_get_allocated_size_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_block_address esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_block_address_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_block_owner esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_first_block esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_info esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_get_info_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_next_block esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_internal_lock esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_internal_unlock esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_is_free esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_malloc esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_malloc_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_minimum_free_size esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_minimum_free_size_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_realloc esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_realloc_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_register esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +multi_heap_register_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_set_lock esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +nanf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sf_nan.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +nd6_adjust_mld_membership esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +nd6_cleanup_netif esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +nd6_clear_destination_cache esp-idf/lwip/liblwip.a(nd6.c.obj) +nd6_find_route esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) +nd6_get_destination_mtu esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +nd6_get_next_hop_addr_or_queue esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(ethip6.c.obj) +nd6_input esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) +nd6_reachability_hint esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +nd6_restart_netif esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +nd6_set_cb esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +nd6_tmr esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) +neighbor_cache esp-idf/lwip/liblwip.a(nd6.c.obj) +net80211_printf esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +netbuf_alloc esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netbuf_chain esp-idf/lwip/liblwip.a(netbuf.c.obj) +netbuf_data esp-idf/lwip/liblwip.a(netbuf.c.obj) +netbuf_delete esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netbuf_first esp-idf/lwip/liblwip.a(netbuf.c.obj) +netbuf_free esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netbuf_new esp-idf/lwip/liblwip.a(netbuf.c.obj) +netbuf_next esp-idf/lwip/liblwip.a(netbuf.c.obj) +netbuf_ref esp-idf/lwip/liblwip.a(netbuf.c.obj) +netconn_aborted esp-idf/lwip/liblwip.a(api_msg.c.obj) +netconn_accept esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_alloc esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +netconn_bind esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_bind_if esp-idf/lwip/liblwip.a(api_lib.c.obj) +netconn_close esp-idf/lwip/liblwip.a(api_lib.c.obj) +netconn_closed esp-idf/lwip/liblwip.a(api_msg.c.obj) +netconn_connect esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_delete esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_deleted esp-idf/lwip/liblwip.a(api_msg.c.obj) +netconn_disconnect esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_err esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_free esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +netconn_getaddr esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_gethostbyname_addrtype esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(netdb.c.obj) +netconn_join_leave_group esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_join_leave_group_netif esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_listen_with_backlog esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_new_with_proto_and_callback esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_prepare_delete esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_recv esp-idf/lwip/liblwip.a(api_lib.c.obj) +netconn_recv_tcp_pbuf esp-idf/lwip/liblwip.a(api_lib.c.obj) +netconn_recv_tcp_pbuf_flags esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_recv_udp_raw_netbuf esp-idf/lwip/liblwip.a(api_lib.c.obj) +netconn_recv_udp_raw_netbuf_flags esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_reset esp-idf/lwip/liblwip.a(api_msg.c.obj) +netconn_send esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_sendto esp-idf/lwip/liblwip.a(api_lib.c.obj) +netconn_shutdown esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_tcp_recvd esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_thread_cleanup esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_thread_init esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_write_partly esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netconn_write_vectors_partly esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netif_add esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +netif_add_ip6_address esp-idf/lwip/liblwip.a(netif.c.obj) +netif_add_noaddr esp-idf/lwip/liblwip.a(netif.c.obj) +netif_create_ip6_linklocal_address esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +netif_default esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +netif_find esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +netif_get_by_index esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +netif_get_ip6_addr_match esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) +netif_index_to_name esp-idf/lwip/liblwip.a(netif.c.obj) +netif_init esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) +netif_input esp-idf/lwip/liblwip.a(netif.c.obj) +netif_ip6_addr_set esp-idf/lwip/liblwip.a(netif.c.obj) +netif_ip6_addr_set_parts esp-idf/lwip/liblwip.a(netif.c.obj) +netif_ip6_addr_set_state esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) +netif_list esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +netif_loop_output esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +netif_name_to_index esp-idf/lwip/liblwip.a(netif.c.obj) +netif_poll esp-idf/lwip/liblwip.a(netif.c.obj) +netif_remove esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +netif_set_addr esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +netif_set_default esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +netif_set_down esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +netif_set_garp_flag esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +netif_set_gw esp-idf/lwip/liblwip.a(netif.c.obj) +netif_set_ipaddr esp-idf/lwip/liblwip.a(netif.c.obj) +netif_set_link_down esp-idf/lwip/liblwip.a(netif.c.obj) +netif_set_link_up esp-idf/lwip/liblwip.a(netif.c.obj) +netif_set_netmask esp-idf/lwip/liblwip.a(netif.c.obj) +netif_set_up esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +newlib_include_heap_impl esp-idf/newlib/libnewlib.a(heap.c.obj) +newlib_include_locks_impl esp-idf/newlib/libnewlib.a(locks.c.obj) +newlib_include_pthread_impl esp-idf/newlib/libnewlib.a(pthread.c.obj) +newlib_include_syscalls_impl esp-idf/newlib/libnewlib.a(syscalls.c.obj) +node_remove_from_list esp-idf/lwip/liblwip.a(dhcpserver.c.obj) +noise_array /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +noise_check_loop /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +noise_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +noise_timeout_flag /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +nvs_close esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +nvs_commit esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +nvs_dump esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_entry_find esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +nvs_entry_info esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +nvs_entry_next esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +nvs_erase_all esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +nvs_erase_key esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +nvs_flash_deinit esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_deinit_partition esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_erase esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/main/libmain.a(main.c.obj) +nvs_flash_erase_partition esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_init esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/main/libmain.a(main.c.obj) +nvs_flash_init_custom esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_flash_init_partition esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_get_blob esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +nvs_get_i16 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +nvs_get_i32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +nvs_get_i64 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +nvs_get_i8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +nvs_get_stats esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_get_str esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +nvs_get_u16 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +nvs_get_u32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +nvs_get_u64 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +nvs_get_u8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +nvs_get_used_entry_count esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_log_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a(misc_nvs.o) +nvs_op2str /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_config.o) +nvs_open esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +nvs_open_from_partition esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_release_iterator esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) +nvs_set_blob esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +nvs_set_i16 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +nvs_set_i32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +nvs_set_i64 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +nvs_set_i8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +nvs_set_str esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +nvs_set_u16 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +nvs_set_u32 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +nvs_set_u64 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +nvs_set_u8 esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +nwk_event_id2str /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +omac1_aes_128 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +omac1_aes_128_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) +omac1_aes_256 esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) +omac1_aes_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-omac1.c.obj) +open_memstream /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + esp-idf/console/libconsole.a(commands.c.obj) +open_wmemstream /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) +opendir esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +opt esp-idf/ca/libca.a(gen_key.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +opt_11b_resart /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +opt_type2str /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +optarg /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + esp-idf/console/libconsole.a(argtable3.c.obj) +opterr /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + esp-idf/console/libconsole.a(argtable3.c.obj) +optind /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + esp-idf/console/libconsole.a(argtable3.c.obj) +optopt /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + esp-idf/console/libconsole.a(argtable3.c.obj) +optype2str /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_main.o) +os_get_random esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +os_get_time esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +os_random esp-idf/wpa_supplicant/libwpa_supplicant.a(os_xtensa.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +os_timer_arm esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +os_timer_arm_us esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +os_timer_disarm esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +os_timer_done esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +os_timer_setfn esp-idf/esp_timer/libesp_timer.a(ets_timer_legacy.c.obj) +pTxRx /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +panicHandler esp-idf/esp32/libesp32.a(panic.c.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) +pbkdf2_sha1 esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +pbuf_add_header esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +pbuf_add_header_force esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) +pbuf_alloc esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(ethernetif.c.obj) + esp-idf/lwip/liblwip.a(wlanif.c.obj) + esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) +pbuf_alloc_reference esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_alloced_custom esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_cat esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +pbuf_chain esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +pbuf_clen esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +pbuf_clone esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) +pbuf_coalesce esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_copy esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(ethernetif.c.obj) + esp-idf/lwip/liblwip.a(wlanif.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +pbuf_copy_partial esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) +pbuf_dechain esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_free esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(ethernetif.c.obj) + esp-idf/lwip/liblwip.a(wlanif.c.obj) + esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(icmp6.c.obj) + esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) +pbuf_free_callback esp-idf/lwip/liblwip.a(tcpip.c.obj) +pbuf_free_header esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +pbuf_free_ooseq_pending esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_get_at esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) +pbuf_get_contiguous esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_header esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_header_force esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) +pbuf_memcmp esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_memfind esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_put_at esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) +pbuf_realloc esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +pbuf_ref esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +pbuf_remove_header esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(ethernet.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(ip6_frag.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) + esp-idf/lwip/liblwip.a(icmp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(raw.c.obj) +pbuf_skip esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_strstr esp-idf/lwip/liblwip.a(pbuf.c.obj) +pbuf_take esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) +pbuf_take_at esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) +pbuf_try_get_at esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(nd6.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) +pbus_rx_dco_cal_1step /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +pcTaskGetTaskName esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pcTimerGetTimerName esp-idf/freertos/libfreertos.a(timers.c.obj) +pend_flag_periodic_cal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +periph_module_disable esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) +periph_module_enable esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_bignum.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) + esp-idf/esp32/libesp32.a(int_wdt.c.obj) +periph_module_reset esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) +phy_ant_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +phy_bt_pll_track /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_bt_pll_track_en /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_bt_power_track /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_bt_power_track_en /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_byte_to_word /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_chan_dump_cfg /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +phy_chan_filt_set /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +phy_chan_gain_table /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +phy_chan_pwr_index /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +phy_chan_target_power /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +phy_change_channel /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) +phy_change_channel_nomac /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) +phy_close_pa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +phy_close_rf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) +phy_dis_hw_set_freq /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) +phy_dis_pwdet_one /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_disable_low_rate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +phy_en_hw_set_freq /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) +phy_enable_low_rate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +phy_enter_critical esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_exit_critical esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_force_wifi_chan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) +phy_force_wifi_chan_en /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_freq_offset /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_freq_wifi_only /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +phy_get_adc_rand /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +phy_get_bb_freqoffset /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +phy_get_fetx_delay /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) +phy_get_most_tpw /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +phy_get_rf_cal_version /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) +phy_get_romfunc_addr /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +phy_get_romfuncs /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +phy_get_rx_freq /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +phy_get_tx_pwr /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +phy_get_tx_rate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +phy_get_txpwr_param /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +phy_in_most_power /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +phy_in_most_power_bk /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +phy_in_vdd33_offset /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +phy_init_flag /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_init_pwr_print /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +phy_meas_noise_floor /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +phy_printf esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_pwdet_always_en /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +phy_pwdet_onetime_en /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +phy_pwdet_onetime_flag /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +phy_rfcal_data_check /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +phy_rx11blr_cfg /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +phy_rx_gain_gen /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +phy_rx_sense_set /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +phy_rxbb_dc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +phy_rxrf_dc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +phy_set_bbfreq_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +phy_set_bt_dig_gain /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +phy_set_most_tpw /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +phy_set_most_tpw_disbg /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +phy_set_most_tpw_flag /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +phy_set_most_tpw_index /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +phy_set_wifi_mode_only /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) +phy_sw_set_chan_en /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_tx_power_out /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +phy_tx_pwr_error /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +phy_unforce_wifi_chan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) +phy_wifi_pll_track /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +phy_wifi_pll_track_en /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +pll_correct_dcap /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +pm_active_timeout_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_allow_sleep /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_allow_tx /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pm_attach /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_check_state /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_coex_schm_timeout_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_coex_slice_timeout_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_deattach /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_dream /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_force_scan_unlock /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_get_idle_wait_time /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_get_sleep_type /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +pm_go_to_sleep /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_go_to_wake /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_is_dream /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_is_on_channel /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pm_is_open /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +pm_is_sleeping /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_is_waked /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_noise_check /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_noise_check_disable /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_noise_check_enable /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_noise_check_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_off_channel /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +pm_on_beacon_rx /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pm_on_channel /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +pm_on_coex_schm_process_restart /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +pm_on_data_rx /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pm_on_data_tx /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pm_on_data_tx_done /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pm_register_pm_tx_null_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pm_rx_beacon_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_rx_data_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_scan_lock /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_scan_unlock /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_send_nullfunc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_send_probe_start /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +pm_send_probe_stop /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +pm_send_sleep_null_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_send_wake_null_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_set_sleep_type /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pm_sleep /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_sleep_delay_timeout_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_sleep_for /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pm_start /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +pm_stop /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +pm_tbtt_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) +pm_try_scan_unlock /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_tx_data_done_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_tx_data_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_tx_null_data_done_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pm_wake_up /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pmksa_cache_add esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +pmksa_cache_clear_current esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +pmksa_cache_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +pmksa_cache_flush esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) +pmksa_cache_get esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +pmksa_cache_get_current esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +pmksa_cache_get_opportunistic esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) +pmksa_cache_init esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +pmksa_cache_list esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) +pmksa_cache_set_current esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +port_IntStack esp-idf/freertos/libfreertos.a(portasm.S.obj) +port_IntStackTop esp-idf/freertos/libfreertos.a(portasm.S.obj) +port_interruptNesting esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +port_switch_flag esp-idf/freertos/libfreertos.a(portasm.S.obj) +port_uxCriticalNesting esp-idf/freertos/libfreertos.a(port.c.obj) +port_uxOldInterruptState esp-idf/freertos/libfreertos.a(port.c.obj) +port_xSchedulerRunning esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +ppAddTimCount /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppCalFrameTimes /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppCalTxAMPDULength /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppCalTxop /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppCheckTxIdle /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +ppClearRxFragment /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppClearTxq /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppDequeueRxq_Locked /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppDequeueTxDone_Locked /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppDequeueTxQ /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppDirectRecycleAmpdu /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppDisableQueue /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppDiscardMPDU /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppEnqueueRxq /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppEnqueueTxDone /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppFetchTxQFirstAvail /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppFillAMPDUBar /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppGetTaskHdl /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ppGetTxQFirstAvail_Locked /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppGetTxframe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppGetTxqInfo /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppInstallKey /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +ppMapTxQueue /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppMapWaitTxq /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppMessageInQ /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +ppPrepareBarFrame /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppProcTxDone /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppProcTxSecFrame /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppProcessAllTxQ /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppProcessRxPktHdr /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppProcessTxQ /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ppProcessWaitQ /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppProcessWaitingQueue /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +ppReSendBar /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppRecordBarRRC /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppRecycleAmpdu /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppRecycleRxPkt /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ppRegisterPromisRxCallback /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ppRegisterRxCallback /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ppRegisterTxCallback /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ppRegressAmpdu /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppResortTxAMPDU /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppRollBackTxQ /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppRxPkt /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppRxProtoProc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppSearchTxQueue /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppSearchTxframe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppSelectNextQueue /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppSetInterface /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ppSetStop /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ppTask /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppTxPkt /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) +ppTxProtoProc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +ppTxqEmpty /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +ppTxqUpdateBitmap /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +ppUnregisterTxCallback /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_allow_cut_sevt /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_attach /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_can_cut_evt /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_can_cut_sevt /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_create_task /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_deattach /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_delete_task /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_need_cut_rx /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_post /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +pp_printf esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) +pp_register_config_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_register_michael_mic_failure_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_register_net80211_tx_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_register_timer_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_register_tx_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +pp_set_cut_evt /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_set_cut_rx /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_sig_cnt /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +pp_stop_sw_txq /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_timer_do_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +pp_timer_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +pp_timer_register_post_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +pp_unregister_tx_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) +prefix_list esp-idf/lwip/liblwip.a(nd6.c.obj) +print_rc_info /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +print_roots_ie /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +print_sta_pmk /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +print_txupQ_pending /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +printf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/console/libconsole.a(argtable3.c.obj) + esp-idf/console/libconsole.a(commands.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/https_server/libhttps_server.a(https_server.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) + esp-idf/ca/libca.a(ca.c.obj) + esp-idf/main/libmain.a(main.c.obj) + esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +printf_decode esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +printf_encode esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +prvtkey_pem esp-idf/https_server/libhttps_server.a(prvtkey.pem.S.obj) +prvtkey_pem_length esp-idf/https_server/libhttps_server.a(prvtkey.pem.S.obj) +pthread_attr_destroy esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_attr_getdetachstate esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_attr_getstacksize esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_attr_init esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_attr_setdetachstate esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_attr_setstacksize esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_cancel esp-idf/pthread/libpthread.a(pthread.c.obj) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) +pthread_condattr_setclock esp-idf/newlib/libnewlib.a(pthread.c.obj) +pthread_create esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_detach esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_equal esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_exit esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_getspecific esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_include_pthread_impl esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_include_pthread_local_storage_impl esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) +pthread_internal_local_storage_destructor_callback esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_join esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_key_create esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_key_delete esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutex_destroy esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutex_init esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutex_lock esp-idf/pthread/libpthread.a(pthread.c.obj) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) +pthread_mutex_timedlock esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutex_trylock esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutex_unlock esp-idf/pthread/libpthread.a(pthread.c.obj) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) +pthread_mutexattr_destroy esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutexattr_gettype esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutexattr_init esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutexattr_settype esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_once esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_self esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_setcancelstate esp-idf/newlib/libnewlib.a(pthread.c.obj) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-open_memstream.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwrite.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ftello.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fread.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fileno.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgets.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fgetc.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ferror.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) +pthread_setspecific esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(eh_globals.o) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_sigmask esp-idf/newlib/libnewlib.a(pthread.c.obj) +putc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) +putchar /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/console/libconsole.a(commands.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +puts /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ccm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(base64.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(hmac_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(gcm.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha256.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha1.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkcs5.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(entropy.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ctr_drbg.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/console/libconsole.a(argtable3.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/lwip/liblwip.a(netbuf.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(ip4_frag.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/lwip/liblwip.a(etharp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/https_server/libhttps_server.a(https_server.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) + esp-idf/ca/libca.a(ca.c.obj) + esp-idf/main/libmain.a(main.c.obj) +pvTaskGetThreadLocalStoragePointer esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) +pvTaskIncrementMutexHeldCount esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +pvTimerGetTimerID esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) +pvalloc esp-idf/newlib/libnewlib.a(heap.c.obj) +pwdet_sar2_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +pwrdet_offset /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +pwrsave_flushq /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +pxCurrentTCB esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +pxPortInitialiseStack esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +pxTaskGetStackStart esp-idf/freertos/libfreertos.a(tasks.c.obj) +qsort /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) +raise esp-idf/newlib/libnewlib.a(syscalls.c.obj) +ram_bb_bss_bw_40_en /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_bb_bss_cbw40_dig /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_bb_tx_ht20_cen /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_cbw2040_cfg /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_check_noise_floor /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_chip_i2c_readReg /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_chip_i2c_writeReg /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_dc_iq_est /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_disable_agc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_en_pwdet /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_enable_agc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_gen_rx_gain_table /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_get_fm_sar_dout /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_index_to_txbbgain /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_iq_est_disable /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_iq_est_enable /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_meas_tone_pwr_db /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_pbus_force_mode /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_pbus_rx_dco_cal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_phy_get_noisefloor /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_phy_get_vdd33 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_read_sar_dout /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_restart_cal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_rfcal_pwrctrl /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_rfpll_reset /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_set_chan_cal_interp /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_set_noise_floor /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_set_pbus_mem /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_set_txcap_reg /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_spur_coef_cfg /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_start_tx_tone /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_tx_pwctrl_bg_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_tx_pwr_backoff /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +ram_txbbgain_to_index /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_txcal_work_mode /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_txdc_cal_v70 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_txiq_cover /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +ram_txiq_get_mis_pwr /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_wait_rfpll_cal_end /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +ram_write_gain_mem /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +rand /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(rsa.c.obj) +range_read_addr_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +range_write_addr_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +raw_bind esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +raw_bind_netif esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +raw_connect esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +raw_disconnect esp-idf/lwip/liblwip.a(raw.c.obj) +raw_input esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +raw_netif_ip_addr_changed esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +raw_new esp-idf/lwip/liblwip.a(raw.c.obj) +raw_new_ip_type esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +raw_recv esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +raw_remove esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +raw_send esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +raw_sendto esp-idf/lwip/liblwip.a(raw.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +raw_sendto_if_src esp-idf/lwip/liblwip.a(raw.c.obj) +rc4_skip esp-idf/wpa_supplicant/libwpa_supplicant.a(rc4.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +rcAttach /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +rcGet11BHighestRateIdx /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcGet11GHighestRateIdx /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcGet11NHighestRateIdx /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcGetAmpduSched /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +rcGetDefaultHigestRateIdx /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcGetHighestRateIdx /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcGetRate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +rcGetSched /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +rcLoRaRate2SchedIdx /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rcReachRetryLimit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +rcSetTxAmpduLimit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +rcUpdateAMPDUParam /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rcUpdatePhyMode /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rcUpdateRxDone /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +rcUpdateTxDone /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +rcUpdateTxDoneAmpdu2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +rc_cal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +rc_disable_trc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rc_disable_trc_by_interface /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rc_enable_trc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rc_get_fix_rate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rc_get_mask /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rc_get_sta_trc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rc_get_trc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rc_get_trc_by_index /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rc_get_trc_default /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rc_only_sta_trc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +rc_set_fix_rate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +rcons esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) +re_entry /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +reachable_time esp-idf/lwip/liblwip.a(nd6.c.obj) +read /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysread.o) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) +read_hw_noisefloor /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +readdir esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +readdir_r esp-idf/vfs/libvfs.a(vfs.c.obj) +realloc esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/console/libconsole.a(argtable3.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +reconnect_flag /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +reconnect_type2str /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) +refreshShowHints esp-idf/console/libconsole.a(linenoise.c.obj) +register_ca esp-idf/ca/libca.a(ca.c.obj) + esp-idf/main/libmain.a(main.c.obj) +register_chipv7_phy /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) +register_chipv7_phy_init_param /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +register_gen_key esp-idf/ca/libca.a(gen_key.c.obj) + esp-idf/main/libmain.a(main.c.obj) +register_ieee80211_action_vendor_get_key_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +register_ieee80211_action_vendor_spec_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +register_ieee80211_rfid_locp_recv_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) +register_nvs esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + esp-idf/main/libmain.a(main.c.obj) +register_server esp-idf/https_server/libhttps_server.a(https_server.c.obj) + esp-idf/main/libmain.a(main.c.obj) +register_system esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) + esp-idf/main/libmain.a(main.c.obj) +register_wifi esp-idf/wifi/libwifi.a(wifi.c.obj) + esp-idf/main/libmain.a(main.c.obj) +registered_heaps esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +reload_count /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +resend_eapol_handle esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +retrans_timer esp-idf/lwip/liblwip.a(nd6.c.obj) +rewinddir esp-idf/vfs/libvfs.a(vfs.c.obj) +rf_cal_data_backup /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +rf_cal_data_recovery /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +rf_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +rfcal_bb_atten_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +rfcal_txiq /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +rfpll_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +rfpll_offset_delta /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +rijndaelEncrypt esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) +rijndaelKeySetupEnc esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-enc.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(aes-internal-dec.c.obj) +rmdir esp-idf/vfs/libvfs.a(vfs.c.obj) +rom_i2c_readReg_Mask esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rom_i2c_writeReg esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rom_i2c_writeReg_Mask esp-idf/soc/libsoc.a(rtc_clk.c.obj) +roots_type2str /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) +roundup2 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) +route_announce_timeout_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_timer.o) +route_announce_timer_start /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +route_announce_timer_stop /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +routetype2str /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_route.o) +rsn_cipher_put_suites esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) +rsn_pmkid esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +rtc_apbbridge_sel /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) +rtc_clk_32k_bootstrap esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_32k_enable esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) +rtc_clk_32k_enable_external esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) +rtc_clk_32k_enabled esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_8m_enable esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) +rtc_clk_8m_enabled esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_8md256_enabled esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_apb_freq_get esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_apb_freq_update esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_apll_enable esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_bbpll_configure esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_cal esp-idf/soc/libsoc.a(rtc_time.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) +rtc_clk_cal_ratio esp-idf/soc/libsoc.a(rtc_time.c.obj) +rtc_clk_cpu_freq_get_config esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) +rtc_clk_cpu_freq_mhz_to_config esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) +rtc_clk_cpu_freq_set_config esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) +rtc_clk_cpu_freq_set_config_fast esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/esp32/libesp32.a(pm_esp32.c.obj) +rtc_clk_cpu_freq_set_xtal esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +rtc_clk_cpu_freq_to_config esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_cpu_freq_to_xtal esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_fast_freq_get esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_fast_freq_set esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) +rtc_clk_select_rtc_slow_clk esp-idf/esp32/libesp32.a(clk.c.obj) +rtc_clk_slow_freq_get esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_slow_freq_get_hz esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/soc/libsoc.a(rtc_wdt.c.obj) +rtc_clk_slow_freq_set esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) +rtc_clk_wait_for_slow_cycle esp-idf/soc/libsoc.a(rtc_time.c.obj) + esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_xtal_freq_get esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/soc/libsoc.a(rtc_time.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) +rtc_clk_xtal_freq_update esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_cmd_ext_wakeup /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) +rtc_cmd_wakeup_conf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) +rtc_get_reset_reason esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/esp32/libesp32.a(reset_reason.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +rtc_get_st /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) +rtc_get_xtal esp-idf/soc/libsoc.a(rtc_clk.c.obj) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +rtc_gpio_deinit esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_force_hold_dis_all esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +rtc_gpio_force_hold_en_all esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_get_drive_capability esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_get_level esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_hold_dis esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_hold_en esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_init esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +rtc_gpio_isolate esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) +rtc_gpio_pulldown_dis esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_pulldown_en esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_pullup_dis esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_pullup_en esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_set_direction esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +rtc_gpio_set_direction_in_sleep esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_set_drive_capability esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_set_level esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_wakeup_disable esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_wakeup_enable esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_init esp-idf/soc/libsoc.a(rtc_init.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) +rtc_init_clk /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) +rtc_init_full /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) +rtc_io_desc esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_io_num_map esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) +rtc_is_st_idle /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) +rtc_isr_deregister esp-idf/driver/libdriver.a(rtc_module.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +rtc_isr_register esp-idf/driver/libdriver.a(rtc_module.c.obj) + esp-idf/esp_common/libesp_common.a(brownout.c.obj) +rtc_pad_ext_wakeup /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) +rtc_pad_gpio_wakeup /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) +rtc_pads_funie /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) +rtc_pads_funsel /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) +rtc_pads_hold /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) +rtc_pads_muxsel /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) +rtc_pads_pd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) +rtc_pads_pu /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) +rtc_pads_slpie /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) +rtc_pads_slpoe /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) +rtc_pads_slpsel /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) +rtc_powerdown_rf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) +rtc_powerup_rf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) +rtc_printf esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) +rtc_sdreg_off /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) +rtc_sleep_init esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) +rtc_sleep_set_wakeup_time esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) +rtc_sleep_start esp-idf/soc/libsoc.a(rtc_sleep.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) +rtc_slp_prep /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) +rtc_slp_prep_lite_12M /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) +rtc_soc_clk_ck12m /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) +rtc_spinlock esp-idf/driver/libdriver.a(rtc_module.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_time_get esp-idf/soc/libsoc.a(rtc_time.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) +rtc_time_slowclk_to_us esp-idf/soc/libsoc.a(rtc_time.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) +rtc_time_us_to_slowclk esp-idf/soc/libsoc.a(rtc_time.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) +rtc_vddsdio_get_config esp-idf/soc/libsoc.a(rtc_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) +rtc_vddsdio_set_config esp-idf/soc/libsoc.a(rtc_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) +rtc_wdt_disable esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +rtc_wdt_enable esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +rtc_wdt_feed esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) +rtc_wdt_flashboot_mode_enable esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) +rtc_wdt_get_protect_status esp-idf/soc/libsoc.a(rtc_wdt.c.obj) +rtc_wdt_get_timeout esp-idf/soc/libsoc.a(rtc_wdt.c.obj) +rtc_wdt_is_on esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +rtc_wdt_protect_off esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +rtc_wdt_protect_on esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +rtc_wdt_set_length_of_reset_signal esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +rtc_wdt_set_stage esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +rtc_wdt_set_time esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +rtc_wifi_force_pd /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc.o) +rtcio_hal_isolate esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtcio_hal_set_direction esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtcio_hal_set_direction_in_sleep esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) +rw_coex_on /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) +rx11NRate2AMPDULimit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +rxmax_ext_level /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +s_coex_condition_dissatisfy /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) +s_cpu_freq_by_mode esp-idf/esp32/libesp32.a(pm_esp32.c.obj) +s_head esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) +s_ioctl_table /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +s_is_6m /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +s_keys esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) +s_map /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) +s_mesh_beacon_interval /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +s_mesh_running_channel /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +s_mesh_stop_mutex /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +s_microseconds_offset esp-idf/newlib/libnewlib.a(time.c.obj) +s_rtc_isr_handler_list_lock esp-idf/driver/libdriver.a(rtc_module.c.obj) +s_time_update_lock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +s_wifi_api_lock /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +s_wifi_mac_time_update_cb esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) +s_wifi_queue /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +s_wifi_task_hdl /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +sae_check_confirm esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_clear_data esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +sae_clear_temp_data esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +sae_group_allowed esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +sae_parse_commit esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_prepare_commit esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_process_commit esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_set_group esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_state_txt esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +sae_write_commit esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sae_write_confirm esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +sc_printf esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) +scan_add_bssid /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_add_probe_ssid /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_build_chan_list /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_cancel /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +scan_check_hidden /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scan_connect_state /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scan_enter_oper_channel_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +scan_fill_wps_scan_ie /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scan_flush_all_tx_buf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +scan_freq_cal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scan_get_apnum /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +scan_get_scan_id /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +scan_get_type /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_hidden_ssid /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_inter_channel_timeout_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +scan_parse_beacon /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +scan_parse_ht2040_coex /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scan_pm_channel_op_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scan_prefer_chan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_profile_check /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scan_remove_bssid /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_remove_probe_ssid /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_reset_cipher_and_akm /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scan_set_act_duration /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_set_desChan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_set_pas_duration /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_set_scan_id /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +scan_start /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +scan_status2str /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +scan_update_scan_history /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +scannum /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +sched_yield esp-idf/pthread/libpthread.a(pthread.c.obj) +seekdir esp-idf/vfs/libvfs.a(vfs.c.obj) +select esp-idf/newlib/libnewlib.a(select.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) +set_assoc_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +set_bt_chan_cal_interp /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +set_cca /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +set_chan_dig_gain /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +set_chan_freq_hw_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +set_chan_freq_sw_start /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +set_chanfreq /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) +set_chanfreq_nomac /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy.o) +set_channel_rfpll_freq /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +set_client_config esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +set_most_pwr_reg /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +set_most_tpw /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +set_rtc_memory_crc esp-idf/esp32/libesp32.a(sleep_modes.c.obj) +set_rx_gain_cal_dc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +set_rx_gain_cal_iq /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +set_rx_gain_table /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +set_rx_gain_testchip_70 /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +set_server_config esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) +set_tx_dig_gain /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +set_tx_gain_table /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +set_tx_gain_table_bt /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +set_xpd_sar /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +setjmp /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setjmp.o) + esp-idf/console/libconsole.a(argtable3.c.obj) +setlocale /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) +settimeofday esp-idf/newlib/libnewlib.a(time.c.obj) +setvbuf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-setvbuf.o) + esp-idf/main/libmain.a(main.c.obj) +sha1_prf esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +sha1_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-internal.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +sha256_prf esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(crypto_ops.c.obj) +sha256_prf_bits esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +sha256_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256-internal.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) +sigfillset esp-idf/newlib/libnewlib.a(pthread.c.obj) +siscanf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) +sleep esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) +sniprintf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sniprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) +snprintf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_csr.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(oid.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_common/libesp_common.a(ipc.c.obj) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) +soc_get_available_memory_region_max_count esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +soc_get_available_memory_regions esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +soc_memory_region_count esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +soc_memory_regions esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +soc_memory_type_count esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) +soc_memory_types esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +soc_reserved_memory_region_end esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) +soc_reserved_memory_region_start esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) +spi_bus_add_flash_device esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_bus_remove_flash_device esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_flash_cache2phys esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +spi_flash_cache_enabled esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +spi_flash_check_and_flush_cache esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_chip_gd_get_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_gd_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_gd_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_generic_config_host_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_chip_generic_detect_size esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_erase_block esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_erase_chip esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_erase_sector esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_get_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_chip_generic_get_write_protect esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_page_program esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_chip_generic_read esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_reset esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_chip_generic_set_write_protect esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_wait_idle esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_write esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_write_encrypted esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_issi_get_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_issi_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_issi_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_common_read_status_16b_rdsr_rdsr2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_common_read_status_8b_rdsr esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_common_read_status_8b_rdsr2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_common_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_common_write_status_16b_wrsr esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_common_write_status_8b_wrsr esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_common_write_status_8b_wrsr2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_disable_interrupts_caches_and_other_cpu esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_disable_interrupts_caches_and_other_cpu_no_os esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_enable_cache esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +spi_flash_enable_interrupts_caches_and_other_cpu esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_enable_interrupts_caches_no_os esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_erase_range esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_erase_sector esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +spi_flash_generic_wait_host_idle esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_get_chip_size esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) +spi_flash_guard_get esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_guard_set esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +spi_flash_hal_common_command esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_flash_hal_configure_host_io_mode esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_flash_hal_device_config esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_flash_hal_erase_block esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_flash_hal_erase_chip esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_flash_hal_erase_sector esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_flash_hal_host_idle esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_flash_hal_init esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_flash_hal_poll_cmd_done esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_flash_hal_program_page esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_flash_hal_read esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_flash_hal_set_write_protect esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_flash_hal_supports_direct_read esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_flash_hal_supports_direct_write esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_flash_init esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +spi_flash_init_lock esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_mmap esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_mmap_dump esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +spi_flash_mmap_get_free_pages esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +spi_flash_mmap_pages esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +spi_flash_munmap esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_op_block_func esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +spi_flash_op_lock esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_op_unlock esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_phys2cache esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +spi_flash_read esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +spi_flash_read_encrypted esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +spi_flash_write esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_ops.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) +spi_flash_write_encrypted esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +spi_periph_signal esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spicommon_bus_free_io_cfg esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_bus_initialize_io esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_bus_using_iomux esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spicommon_cs_free_io esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_cs_initialize esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_dma_chan_claim esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_dma_chan_free esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_dma_chan_in_use esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_dmaworkaround_idle esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_dmaworkaround_req_reset esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_dmaworkaround_reset_in_progress esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_dmaworkaround_transfer_active esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_irqdma_source_for_host esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_irqsource_for_host esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_periph_claim esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_periph_free esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_periph_in_use esp-idf/driver/libdriver.a(spi_common.c.obj) +sprintf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfscanf.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +spur_cal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +srand /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-rand.o) +sscanf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) +sta_con_timer /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +sta_csa_timer /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +sta_input /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +sta_is_wpa3_enabled /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) +sta_michael_mic_failure /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +sta_retry_assoc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +sta_rx_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +sta_rx_csa /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +sta_rx_eapol /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +sta_rxcb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) +sta_sa_query_process_timeout /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +sta_try_sa_query_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) +start_cpu0 esp-idf/esp32/libesp32.a(cpu_start.c.obj) +start_cpu0_default esp-idf/esp32/libesp32.a(cpu_start.c.obj) +start_cpu1 esp-idf/esp32/libesp32.a(cpu_start.c.obj) +start_cpu1_default esp-idf/esp32/libesp32.a(cpu_start.c.obj) +stat /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysstat.o) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) +strchr /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strchr.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/console/libconsole.a(argtable3.c.obj) + esp-idf/console/libconsole.a(commands.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) + esp-idf/ca/libca.a(ca.c.obj) +strcmp /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(tinfo.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(class_type_info.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a(si_class_type_info.o) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_ciphersuites.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(cipher.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(md.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(ecp.c.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/console/libconsole.a(argtable3.c.obj) + esp-idf/console/libconsole.a(commands.c.obj) + esp-idf/log/liblog.a(log.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) + esp-idf/ca/libca.a(ca.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +strcpy /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + esp-idf/ca/libca.a(gen_key.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +strcspn /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/console/libconsole.a(argtable3.c.obj) +strdup /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup.o) + esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +strerror /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) +strerror_l /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) +strerror_r /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) +strftime /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) + esp-idf/console/libconsole.a(argtable3.c.obj) +strftime_l /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) +strlcpy /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + esp-idf/fatfs/libfatfs.a(vfs_fat.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + esp-idf/console/libconsole.a(commands.c.obj) + esp-idf/log/liblog.a(log.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) +strlen /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strdup_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sscanf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getopt.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-fde.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(unwind-dw2-xtensa.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_tls.c.obj) + esp-idf/lwip/liblwip.a(netdb.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(error.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(bignum.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_txrx.c.obj) + esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/console/libconsole.a(argtable3.c.obj) + esp-idf/console/libconsole.a(commands.c.obj) + esp-idf/log/liblog.a(log.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(def.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_handle_simple.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha256.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sha1-pbkdf2.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/https_server/libhttps_server.a(url_decoder.c.obj) + esp-idf/https_server/libhttps_server.a(https_server.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) + esp-idf/ca/libca.a(ca.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +strncasecmp /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncasecmp.o) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) +strncat /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncat.o) + esp-idf/console/libconsole.a(argtable3.c.obj) +strncmp /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gdtoa-gethex.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_create.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_uri.c.obj) + esp-idf/console/libconsole.a(commands.c.obj) + esp-idf/lwip/liblwip.a(def.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) +strncpy /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + esp-idf/lwip/liblwip.a(netdb.c.obj) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509write_crt.c.obj) + esp-idf/console/libconsole.a(linenoise.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_page.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_partition_manager.cpp.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_storage.cpp.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +strndup /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strndup.o) + esp-idf/esp-tls/libesp-tls.a(esp_tls_mbedtls.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) +strnlen /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strnlen.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_network.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_io.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +strrchr /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strrchr.o) + esp-idf/console/libconsole.a(argtable3.c.obj) +strstr /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(dhm.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedx509.a(x509_crt.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pem.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(pkparse.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) +strtod /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) + esp-idf/console/libconsole.a(argtable3.c.obj) +strtod_l /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +strtof /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +strtof_l /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtod.o) +strtol /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-atoi.o) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/console/libconsole.a(argtable3.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +strtol_l /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) +strtoll /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +strtoll_l /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) +strtoul /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strftime.o) + esp-idf/nghttp/libnghttp.a(http_parser.c.obj) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +strtoul_l /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) +strtoull /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + esp-idf/cmd_nvs/libcmd_nvs.a(cmd_nvs.c.obj) +strtoull_l /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) +sw_scan_mode /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +sys_arch_mbox_fetch esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +sys_arch_mbox_tryfetch esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +sys_arch_protect esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(mem.c.obj) +sys_arch_sem_wait esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +sys_arch_unprotect esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/lwip/liblwip.a(memp.c.obj) + esp-idf/lwip/liblwip.a(mem.c.obj) +sys_check_timeouts esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +sys_delay_ms esp-idf/lwip/liblwip.a(sys_arch.c.obj) +sys_init esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) +sys_jiffies esp-idf/lwip/liblwip.a(sys_arch.c.obj) +sys_mbox_free esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +sys_mbox_new esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +sys_mbox_post esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +sys_mbox_set_owner esp-idf/lwip/liblwip.a(sys_arch.c.obj) +sys_mbox_trypost esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +sys_mbox_trypost_fromisr esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +sys_mutex_free esp-idf/lwip/liblwip.a(sys_arch.c.obj) +sys_mutex_lock esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +sys_mutex_new esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +sys_mutex_unlock esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +sys_now esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) +sys_restart_timeouts esp-idf/lwip/liblwip.a(timeouts.c.obj) +sys_sem_free esp-idf/lwip/liblwip.a(sys_arch.c.obj) +sys_sem_new esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +sys_sem_signal esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +sys_sem_signal_isr esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) +sys_thread_new esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +sys_thread_sem_deinit esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +sys_thread_sem_get esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) + esp-idf/lwip/liblwip.a(vfs_lwip.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +sys_thread_sem_init esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) +sys_timeout esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +sys_timeouts_init esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) +sys_timeouts_sleeptime esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(tcpip.c.obj) +sys_untimeout esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(mld6.c.obj) + esp-idf/lwip/liblwip.a(igmp.c.obj) +syscall_table_ptr_app esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +syscall_table_ptr_pro esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +system esp-idf/newlib/libnewlib.a(syscalls.c.obj) +system_get_current_time esp-idf/newlib/libnewlib.a(time.c.obj) +system_get_rtc_time esp-idf/newlib/libnewlib.a(time.c.obj) +system_get_time esp-idf/newlib/libnewlib.a(time.c.obj) +system_relative_time esp-idf/newlib/libnewlib.a(time.c.obj) +target_power_backoff /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +target_power_backoff_qdb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +taskYIELD_OTHER_CORE esp-idf/freertos/libfreertos.a(tasks.c.obj) +task_create esp-idf/ca/libca.a(gen_key.c.obj) +task_run esp-idf/ca/libca.a(gen_key.c.obj) +tcdrain esp-idf/vfs/libvfs.a(vfs.c.obj) +tcflow esp-idf/vfs/libvfs.a(vfs.c.obj) +tcflush esp-idf/vfs/libvfs.a(vfs.c.obj) +tcgetattr esp-idf/vfs/libvfs.a(vfs.c.obj) +tcgetsid esp-idf/vfs/libvfs.a(vfs.c.obj) +tcp_abandon esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_abort esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_accept esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_active_pcbs esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) +tcp_active_pcbs_changed esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_alloc esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_arg esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_backlog_accepted esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_backlog_delayed esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_bind esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_bind_netif esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +tcp_bound_pcbs esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_close esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_connect esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_debug_state_str esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_eff_send_mss_netif esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_enqueue_flags esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_err esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_fasttmr esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_free esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_free_ooseq esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) +tcp_init esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) +tcp_input esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +tcp_input_pcb esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_keepalive esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_listen_pcbs esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_listen_with_backlog esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_listen_with_backlog_and_err esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_netif_ip_addr_changed esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +tcp_new esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_new_ip_type esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_next_iss esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_output esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_pcb_lists esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_pcb_num_cal esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_pcb_purge esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_pcb_remove esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_poll esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_process_refused_data esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_recv esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_recv_null esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_recved esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_rexmit esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_rexmit_fast esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_rexmit_rto esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_rexmit_rto_commit esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_rexmit_rto_prepare esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_rst esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_seg_copy esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_seg_free esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_segs_free esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_send_empty_ack esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_send_fin esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_sent esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_setprio esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_shutdown esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_slowtmr esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_split_unsent_seg esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_tcp_get_tcp_addrinfo esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_ticks esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_timer_needed esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_tmr esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) +tcp_trigger_input_pcb_close esp-idf/lwip/liblwip.a(tcp_in.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_tw_pcbs esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(timeouts.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_txnow esp-idf/lwip/liblwip.a(tcp.c.obj) +tcp_update_rcv_ann_wnd esp-idf/lwip/liblwip.a(tcp.c.obj) + esp-idf/lwip/liblwip.a(tcp_in.c.obj) +tcp_write esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +tcp_zero_window_probe esp-idf/lwip/liblwip.a(tcp_out.c.obj) + esp-idf/lwip/liblwip.a(tcp.c.obj) +tcpip_adapter_ap_input esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_ap_start esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_clear_default_eth_handlers esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_clear_default_wifi_handlers esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +tcpip_adapter_compat_start_eth esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) +tcpip_adapter_create_ip6_linklocal esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_dhcpc_get_status esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_dhcpc_option esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_dhcpc_start esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_dhcpc_stop esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_dhcps_get_status esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_dhcps_option esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_dhcps_start esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_dhcps_stop esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_down esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_eth_input esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_eth_start esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_get_dns_info esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_get_esp_if esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_get_hostname esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_get_ip6_global esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_get_ip6_linklocal esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_get_ip_info esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_get_netif esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_get_netif_index esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_get_old_ip_info esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_get_sta_list esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_if_from_esp_netif esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_init esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_is_netif_up esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_set_default_eth_handlers esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_set_default_wifi_handlers esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(wifi_init.c.obj) +tcpip_adapter_set_dns_info esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_set_hostname esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_set_ip_info esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_set_old_ip_info esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_sta_input esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_sta_start esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_stop esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_adapter_up esp-idf/tcpip_adapter/libtcpip_adapter.a(tcpip_adapter_compat.c.obj) +tcpip_api_call esp-idf/lwip/liblwip.a(tcpip.c.obj) +tcpip_callback esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +tcpip_callbackmsg_delete esp-idf/lwip/liblwip.a(tcpip.c.obj) +tcpip_callbackmsg_new esp-idf/lwip/liblwip.a(tcpip.c.obj) +tcpip_callbackmsg_trycallback esp-idf/lwip/liblwip.a(tcpip.c.obj) +tcpip_callbackmsg_trycallback_fromisr esp-idf/lwip/liblwip.a(tcpip.c.obj) +tcpip_init esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +tcpip_inpkt esp-idf/lwip/liblwip.a(tcpip.c.obj) +tcpip_input esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +tcpip_send_msg_wait_sem esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(api_lib.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) +tcpip_try_callback esp-idf/lwip/liblwip.a(tcpip.c.obj) + esp-idf/lwip/liblwip.a(pbuf.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +tcsendbreak esp-idf/vfs/libvfs.a(vfs.c.obj) +tcsetattr esp-idf/vfs/libvfs.a(vfs.c.obj) +telldir esp-idf/vfs/libvfs.a(vfs.c.obj) +temprature_sens_read /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +time /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-time.o) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_srv.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(ssl_cli.c.obj) + esp-idf/fatfs/libfatfs.a(diskio.c.obj) +time_end /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +time_max /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +time_start /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +tkip /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +touch_hal_config esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) +touch_hal_deinit esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) +touch_hal_get_meas_mode esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_hal_get_voltage esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_hal_get_wakeup_status esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_hal_init esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) +touch_hal_set_meas_mode esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_hal_set_voltage esp-idf/soc/libsoc.a(touch_sensor_hal.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) +touch_pad_clear_status esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_fsm_start esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_fsm_stop esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_get_cnt_mode esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_get_fsm_mode esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_get_status esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_get_thresh esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_get_voltage esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_get_wakeup_status esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) +touch_pad_io_init esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_isr_deregister esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_set_cnt_mode esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_set_fsm_mode esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_set_thresh esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_set_voltage esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_pad_sw_start esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +touch_read /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) +touch_sensor_channel_io_map esp-idf/soc/soc/esp32/libsoc_esp32.a(touch_sensor_periph.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) +trc_NeedRTS /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +trc_deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +trc_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +trc_isAmpduOn /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +trc_isTxAmpduOperational /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +trc_modify_sched /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +trc_onAmpduOp /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +trc_onDisconnect /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +trc_onPPTxDone /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +trc_onScanDone /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +trc_onScanStart /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +trc_set_per_conn_rate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +trc_set_per_conn_rate_create_new_sched /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +trc_set_per_conn_rate_create_new_table /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +trc_set_per_conn_rate_fix /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +trc_set_per_conn_rate_limit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +trc_set_per_conn_rate_modify_global_table /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +trc_set_per_conn_rate_modify_new_sched /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +trc_set_per_conn_rate_modify_new_table /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +trc_set_per_pkt_rate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +trc_show_rate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +trc_tid_isTxAmpduOperational /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +trc_update_conn_phy_mode /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +trex_compile esp-idf/console/libconsole.a(argtable3.c.obj) +trex_free esp-idf/console/libconsole.a(argtable3.c.obj) +trex_getsubexp esp-idf/console/libconsole.a(argtable3.c.obj) +trex_getsubexpcount esp-idf/console/libconsole.a(argtable3.c.obj) +trex_match esp-idf/console/libconsole.a(argtable3.c.obj) +trex_search esp-idf/console/libconsole.a(argtable3.c.obj) +trex_searchrange esp-idf/console/libconsole.a(argtable3.c.obj) +truncate esp-idf/vfs/libvfs.a(vfs.c.obj) +tsens_read_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +tx_cap_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +tx_cont_cfg /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +tx_cont_dis /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +tx_cont_en /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +tx_msg_id2str /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +tx_pwctrl_background /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +tx_pwctrl_cal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +tx_pwctrl_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +tx_pwctrl_init_cal /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +tx_pwctrl_track_num /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +tx_rf_ana_gain /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +tx_state_id2str /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) +tx_wifi_err2str /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) +txcal_debuge_mode /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +txiq_cal_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +txopstart_index /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +txpwr_offset /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +txq_opr2str /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) +tzset /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) +uartAttach esp-idf/esp32/libesp32.a(cpu_start.c.obj) +uart_clear_intr_status esp-idf/driver/libdriver.a(uart.c.obj) +uart_disable_intr_mask esp-idf/driver/libdriver.a(uart.c.obj) +uart_disable_pattern_det_intr esp-idf/driver/libdriver.a(uart.c.obj) +uart_disable_rx_intr esp-idf/driver/libdriver.a(uart.c.obj) +uart_disable_tx_intr esp-idf/driver/libdriver.a(uart.c.obj) +uart_div_modify esp-idf/esp32/libesp32.a(cpu_start.c.obj) +uart_driver_delete esp-idf/driver/libdriver.a(uart.c.obj) +uart_driver_install esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/main/libmain.a(main.c.obj) +uart_enable_intr_mask esp-idf/driver/libdriver.a(uart.c.obj) +uart_enable_pattern_det_baud_intr esp-idf/driver/libdriver.a(uart.c.obj) +uart_enable_pattern_det_intr esp-idf/driver/libdriver.a(uart.c.obj) +uart_enable_rx_intr esp-idf/driver/libdriver.a(uart.c.obj) +uart_enable_tx_intr esp-idf/driver/libdriver.a(uart.c.obj) +uart_flush esp-idf/driver/libdriver.a(uart.c.obj) +uart_flush_input esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_get_baudrate esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_get_buffered_data_len esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_get_collision_flag esp-idf/driver/libdriver.a(uart.c.obj) +uart_get_hw_flow_ctrl esp-idf/driver/libdriver.a(uart.c.obj) +uart_get_parity esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_get_selectlock esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_get_stop_bits esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_get_wakeup_threshold esp-idf/driver/libdriver.a(uart.c.obj) +uart_get_word_length esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_hal_get_baudrate esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_get_data_bit_num esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_get_hw_flow_ctrl esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_get_parity esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_get_sclk esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_get_stop_bits esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_get_wakeup_thrd esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_init esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_inverse_signal esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_is_hw_rts_en esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_read_rxfifo esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_rxfifo_rst esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_at_cmd_char esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_baudrate esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_data_bit_num esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_dtr esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_hw_flow_ctrl esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_loop_back esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_mode esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_parity esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_rx_timeout esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_rxfifo_full_thr esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_stop_bits esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_sw_flow_ctrl esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_tx_idle_num esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_txfifo_empty_thr esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_wakeup_thrd esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_tx_break esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_txfifo_rst esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) +uart_hal_write_txfifo esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_intr_config esp-idf/driver/libdriver.a(uart.c.obj) +uart_is_driver_installed esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_isr_free esp-idf/driver/libdriver.a(uart.c.obj) +uart_isr_register esp-idf/driver/libdriver.a(uart.c.obj) +uart_param_config esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/main/libmain.a(main.c.obj) +uart_pattern_get_pos esp-idf/driver/libdriver.a(uart.c.obj) +uart_pattern_pop_pos esp-idf/driver/libdriver.a(uart.c.obj) +uart_pattern_queue_reset esp-idf/driver/libdriver.a(uart.c.obj) +uart_periph_signal esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_read_bytes esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_set_baudrate esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_set_dtr esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_hw_flow_ctrl esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_line_inverse esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_loop_back esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_mode esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_parity esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_set_pin esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_rts esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_rx_full_threshold esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_rx_timeout esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_select_notif_callback esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_set_stop_bits esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_set_sw_flow_ctrl esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_tx_empty_threshold esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_tx_idle_num esp-idf/driver/libdriver.a(uart.c.obj) +uart_set_wakeup_threshold esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) +uart_set_word_length esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_tx_chars esp-idf/driver/libdriver.a(uart.c.obj) +uart_tx_switch esp-idf/esp32/libesp32.a(cpu_start.c.obj) +uart_wait_idle /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +uart_wait_tx_done esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_wait_tx_idle_polling esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) +uart_write_bytes esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_write_bytes_with_break esp-idf/driver/libdriver.a(uart.c.obj) +ucQueueGetQueueType esp-idf/freertos/libfreertos.a(queue.c.obj) +udp_bind esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) +udp_bind_netif esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(sockets.c.obj) +udp_connect esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +udp_disconnect esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) +udp_init esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(init.c.obj) +udp_input esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(ip6.c.obj) + esp-idf/lwip/liblwip.a(ip4.c.obj) +udp_netif_ip_addr_changed esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(netif.c.obj) +udp_new esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) +udp_new_ip_type esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) +udp_pcbs esp-idf/lwip/liblwip.a(udp.c.obj) +udp_recv esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) +udp_remove esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) +udp_send esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) +udp_sendto esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(api_msg.c.obj) + esp-idf/lwip/liblwip.a(dns.c.obj) + esp-idf/lwip/liblwip.a(dhcpserver.c.obj) +udp_sendto_if esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +udp_sendto_if_src esp-idf/lwip/liblwip.a(udp.c.obj) + esp-idf/lwip/liblwip.a(dhcp.c.obj) +ulTaskNotifyTake esp-idf/freertos/libfreertos.a(tasks.c.obj) +unforce_wifi_mode /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(bt_bb.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a(coexist_hw.o) +ungetc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) +unregister_ieee80211_action_vendor_get_key_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +unregister_ieee80211_action_vendor_spec_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) +unregister_ieee80211_rfid_locp_recv_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) +usleep esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/console/libconsole.a(linenoise.c.obj) +uxEventGroupGetNumber esp-idf/freertos/libfreertos.a(event_groups.c.obj) +uxListRemove esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxQueueGetQueueNumber esp-idf/freertos/libfreertos.a(queue.c.obj) +uxQueueMessagesWaiting esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +uxQueueMessagesWaitingFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +uxQueueSpacesAvailable esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uxTaskGetNumberOfTasks esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) +uxTaskGetSnapshotAll esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxTaskGetStackHighWaterMark esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxTaskGetSystemState esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxTaskGetTaskNumber esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxTaskPriorityGet esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_common/libesp_common.a(ipc.c.obj) +uxTaskPriorityGetFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxTaskResetEventItemValue esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) +uxTopUsedPriority esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) +vApplicationStackOverflowHook esp-idf/esp32/libesp32.a(panic.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vEventGroupClearBitsCallback esp-idf/freertos/libfreertos.a(event_groups.c.obj) +vEventGroupDelete esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +vEventGroupSetBitsCallback esp-idf/freertos/libfreertos.a(event_groups.c.obj) +vListInitialise esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vListInitialiseItem esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vListInsert esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vListInsertEnd esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vPortAssertIfInISR esp-idf/freertos/libfreertos.a(port.c.obj) +vPortEndScheduler esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vPortEnterCritical esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(rtc_module.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/esp32/libesp32.a(dport_access.c.obj) + esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +vPortExitCritical esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/driver/libdriver.a(touch_sensor_common.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(aes.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp32/libesp32.a(sleep_modes.c.obj) + esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(rtc_module.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/esp32/libesp32.a(dport_access.c.obj) + esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +vPortReleaseTaskMPUSettings esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vPortSetStackWatchpoint esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vPortStoreTaskMPUSettings esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vPortYield esp-idf/freertos/libfreertos.a(portasm.S.obj) +vPortYieldFromInt esp-idf/freertos/libfreertos.a(portasm.S.obj) +vPortYieldOtherCore esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vQueueDelete esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +vQueueSetQueueNumber esp-idf/freertos/libfreertos.a(queue.c.obj) +vQueueWaitForMessageRestricted esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) +vRingbufferDelete esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +vRingbufferGetInfo esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +vRingbufferReturnItem esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +vRingbufferReturnItemFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +vTaskAllocateMPURegions esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskDelay esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +vTaskDelayUntil esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskDelete esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/https_server/libhttps_server.a(https_server.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp32/libesp32.a(dport_access.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +vTaskEndScheduler esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskList esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/cmd_system/libcmd_system.a(cmd_system.c.obj) +vTaskMissedYield esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskNotifyGiveFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskPlaceOnEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vTaskPlaceOnEventListRestricted esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vTaskPlaceOnUnorderedEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) +vTaskPriorityInherit esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vTaskPrioritySet esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_common/libesp_common.a(ipc.c.obj) +vTaskResume esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskSetTaskNumber esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskSetThreadLocalStoragePointer esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskSetThreadLocalStoragePointerAndDelCallback esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) +vTaskSetTimeOutState esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vTaskStartScheduler esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +vTaskSuspend esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +vTaskSuspendAll esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_common/libesp_common.a(system_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) +vTaskSwitchContext esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +vTimerSetTimerID esp-idf/freertos/libfreertos.a(timers.c.obj) +valloc esp-idf/newlib/libnewlib.a(heap.c.obj) +vdd33_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a(rtc_analog.o) +vfiprintf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) +vfprintf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + esp-idf/console/libconsole.a(argtable3.c.obj) +vfs_include_syscalls_impl esp-idf/vfs/libvfs.a(vfs.c.obj) +vote_done2str /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +vote_start2str /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +vprintf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + esp-idf/log/liblog.a(log.c.obj) +vsnprintf /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vsnprintf.o) + esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) +wDevCheckBlockError /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +wDevCtrl /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +wDev_AddRXBA /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_Ant_Init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_AppendRxAmpduLensBlocks /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_AppendRxBlocks /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +wDev_ClearBssid /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_Crypto_Conf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_Crypto_Disable /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_DeInitialize /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_DisableTransmit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +wDev_Disable_Beacon_Tsf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_EnableTransmit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +wDev_Enable_Beacon_Tsf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_FetchFirstDesc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_GetBAInfo /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +wDev_Get_KeyEntry /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_Get_Next_TBTT /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_Initialize /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_Insert_KeyEntry /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_Mesh_Enable_Tsf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +wDev_Mesh_Set_TBTT /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +wDev_ProcessCollision /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +wDev_ProcessFiq /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_ProcessTxop /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wDev_RemoveRXBA /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_ResetRXBA /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_Reset_TBTT /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_Rxbuf_Deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_Rxbuf_Init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_SetAuthed /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_SetBssid /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_SetCurChannel /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_SetFrameAckType /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(lmac.o) +wDev_SetMacAddress /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_SetOpMode /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_Set_Beacon_Int /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wDev_disable_low_rate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) +wDev_enable_low_rate /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) +wDev_is_low_rate_enable /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wDev_remove_KeyEntry /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wDev_remove_KeyEntry_all_cnx /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wcrtomb /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) +wdevProcessRxSucDataAll /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +wdev_get_promis_ctrl_filter /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wdev_get_promis_filter /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wdev_mac_deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wdev_mac_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wdev_pop_promis_misc_buf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_process_misc_pkt /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +wdev_push_promis_misc_buf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_rxbuf_cnt_set /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_set_csi /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wdev_set_csi_rx_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wdev_set_promis /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wdev_set_promis_ctrl_filter /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wdev_set_promis_ctrl_pkt /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_set_promis_filter /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) +wdev_set_promis_misc_buf /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wdev_set_promis_misc_pkt /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) +wep /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_wep.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ets.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_chm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_rfid.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_regdomain.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_proto.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_power.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_phy.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_input.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ie_vendor.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ht.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_debug.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_tkip.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_11g_rate_chg /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +wifi_ant_config_check /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_ant_to_ant_type /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_ant_update /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +wifi_ap_reg_rxcb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_apb80m_release /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_apb80m_request /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_api_lock /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_api_unlock /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_calloc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +wifi_check_chan_param /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_connect_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_create_queue esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +wifi_create_softap /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +wifi_create_sta /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +wifi_crypto_deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_crypto_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_csi_set_config /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_deauth_sta_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_deinit_in_caller_task /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_deinit_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_delete_queue esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +wifi_destroy_softap /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_destroy_sta /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_disconnect_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +wifi_event_id2str /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_utilities.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_parent.o) +wifi_event_post /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +wifi_get_ap_chan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_get_ap_info_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_get_ap_list_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_get_bw_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_get_channel_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_get_country /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_get_init_state /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_timer.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_get_macaddr /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_schedule.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_output.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_get_protocol_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_get_sta_list_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_get_user_ie /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_gpio_debug /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +wifi_hmac_deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_hmac_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_hw_start /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_hw_stop /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_init_completed /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_init_in_caller_task /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_init_key /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_init_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_internal_ioctl_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_ioctl_ht2040_get /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_ioctl_ht2040_set /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_ipc_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_is_stop_in_progress /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_lmac_deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_lmac_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_mac_restore /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_malloc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +wifi_menuconfig_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_mesh_assoc_expire_set_progress /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_mesh_event_post /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh_quick.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +wifi_mesh_ie_crypto_funcs_set_progress /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_mesh_ie_crypto_key_set_progress /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_mesh_ie_deinit_progress /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_mesh_ie_get_progress /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_mesh_ie_init_progress /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_mesh_ie_set_progress /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_mesh_is_roots_found_progress /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_mesh_map_deauth_progress /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_mesh_parent_candidate_clear_progress /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_mesh_parent_candidate_get_progress /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_mesh_parent_candidate_set_progress /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_mesh_parent_monitor_get_progress /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_mesh_parent_monitor_set_progress /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_mesh_root_conflicts_set_progress /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_mesh_roots_ie_get_progress /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_mesh_roots_ie_set_progress /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_mesh_router_bssid_get_progress /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_mesh_router_bssid_set_progress /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_mesh_rssi_threshold_get_progress /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_mesh_rssi_threshold_set_progress /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_mesh_set_beacon_interval_progress /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_mesh_sta_disassoc /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_mesh_sta_disassoc_progress /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_mesh_switch_channel_progress /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_mode_set /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_nvs_ap_restore /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_cfg_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_cfg_item_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_commit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +wifi_nvs_deinit /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_nvs_get /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_nvs_get_sta_listen_interval /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +wifi_nvs_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_nvs_restore /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_nvs_set /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +wifi_nvs_sta_restore /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_ap_chan /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_ap_num /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_ap_password /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_ap_ssid /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_country /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_sta_listen_interval /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_nvs_validate_sta_password /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) +wifi_osi_funcs_register /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_realloc esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) +wifi_recycle_rx_pkt /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211.o) +wifi_register_user_ie_manufacturer_recv_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_reset_mac /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_restart_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_restore_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_rf_phy_disable /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +wifi_rf_phy_enable /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pm.o) +wifi_rifs_mode_en /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +wifi_scan_start_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_scan_stop_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_ant /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_ant_gpio /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_appie_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_auto_connect_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_bw_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_chan_range /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_channel_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_config_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_country /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_csi /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_default_ssid /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_nvs.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) +wifi_set_event_handler /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_event_mask /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_fix_rate_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_gpio_debug_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp_debug.o) +wifi_set_home_channel_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_log_mod_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_mac_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_max_tpw /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_mode_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_phy_2nd_chan_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_promis_ctrl_filter_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_promis_filter_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_promis_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_protocol_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_ps_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_rx_policy /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_rxcb_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_user_ie /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_set_vnd_ie_cb_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_vnd_ie_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_wps_cb_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_wps_start_flag /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) +wifi_set_wps_status_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_set_wps_type_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_softap_cacl_mac /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_softap_deauth /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_softap_get_config /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_softap_get_station_num /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_softap_staconnected_event_policy /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +wifi_softap_start /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_softap_stop /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_softap_toomany_deny /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +wifi_sta_ap_change_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_sta_disconnect /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_sta_get_prof_password /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +wifi_sta_reg_rxcb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_sta_rx_probe_req /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(wdev.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(if_hwctrl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_action_vendor.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_supplicant.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_hostap.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) +wifi_sta_set_ap_num_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_start_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_station_ap_check /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_station_get_ap_info /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_station_get_config /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_station_get_config_default /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_station_get_current_ap_id /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_station_get_reconnect_policy /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_scan.o) +wifi_station_save_ap_channel /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +wifi_station_start /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_station_stop /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_stop_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_stop_sw_txq /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_track_pll_cap /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +wifi_txq_empty /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_unregister_user_ie_manufacturer_recv_cb /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_api.o) +wifi_wpa2_ent_disable_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_wpa2_ent_enable_process /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wifi_wpa2_is_started /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +wifi_wps_is_started /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +wl_clear_ap_no_lr /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_sta.o) +wl_erase_range esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) +wl_is_ap_no_lr /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(trc.o) +wl_mount esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) +wl_read esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) +wl_sector_size esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) +wl_size esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) +wl_unmount esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + esp-idf/fatfs/libfatfs.a(vfs_fat_spiflash.c.obj) +wl_write esp-idf/wear_levelling/libwear_levelling.a(wear_levelling.cpp.obj) + esp-idf/fatfs/libfatfs.a(diskio_wl.c.obj) +wlanif_init esp-idf/lwip/liblwip.a(wlanif.c.obj) +wlanif_init_ap esp-idf/lwip/liblwip.a(wlanif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) +wlanif_init_sta esp-idf/lwip/liblwip.a(wlanif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) +wlanif_input esp-idf/lwip/liblwip.a(wlanif.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip_defaults.c.obj) +wpa2_printf esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) +wpa_add_kde esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_ap_get_wpa_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_ap_join esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_ap_remove esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_ap_rx_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_attach esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_auth_for_each_sta esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_auth_gen_wpa_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_auth_sm_event esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_auth_sta_associated esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_auth_sta_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_auth_sta_init esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_auth_sta_no_wpa esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_auth_uses_mfp esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) +wpa_bin_clear_free esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) +wpa_cipher_key_len esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_cipher_put_suites esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) +wpa_cipher_to_alg esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_cipher_to_suite esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) +wpa_compare_rsn_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_config_assoc_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_config_bss esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_config_parse_string esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_config_profile esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_crypto_funcs /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a(mesh.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_crypto_ccmp.o) +wpa_crypto_funcs_init /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(ieee80211_ioctl.o) +wpa_deattach esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_deauthenticate esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_derive_ptk esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_eapol_key_dump esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_eapol_key_mic esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_eapol_key_send esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_gen_wpa_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_get_key esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_get_ntp_timestamp esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_init esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_hostap.c.obj) +wpa_install_key esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_is_hex esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +wpa_merge_byte_arrays esp-idf/wpa_supplicant/libwpa_supplicant.a(common.c.obj) +wpa_michael_mic_failure esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_neg_complete esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_parse_kde_ies esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_parse_wpa_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_parse_wpa_ie_rsn esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) +wpa_parse_wpa_ie_wpa esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) +wpa_parse_wpa_ie_wrapper esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_pmk_to_ptk esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_common.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_printf esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) +wpa_receive esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_remove_ptk esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_report_ie_mismatch esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sendto_wrapper esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_set_bss esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_set_passphrase esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_set_pmk esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +wpa_set_profile esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_sm_alloc_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_deauthenticate esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_deinit esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_sm_disassociate esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_free_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_get_beacon_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_get_key esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_init esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_sm_key_request esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_mlme_setprotection esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpas_glue.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_rekey_ptk esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_rx_eapol esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_sm_set_key esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_set_pmk esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_set_pmk_from_pmksa esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_set_seq esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_sm_set_state esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_snprintf_hex esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(pmksa_cache.c.obj) +wpa_snprintf_hex_uppercase esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_debug.c.obj) +wpa_sta_connect esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_sta_in_4way_handshake esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa_main.c.obj) +wpa_sta_is_cur_pmksa_set esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_check_group_cipher esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_clr_countermeasures esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_decrypt_key_data esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_gtk_in_use esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_gtk_tx_bit_workaround esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_install_gtk esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_install_ptk esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_key_neg_complete esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_pairwise_gtk esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_parse_ies esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_process_1_of_2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_process_1_of_2_rsn esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_process_1_of_2_wpa esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_process_1_of_4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_process_3_of_4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_send_2_of_2 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_send_2_of_2_txcallback esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_send_2_of_4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_send_4_of_4 esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_send_4_of_4_txcallback esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_stop_countermeasures esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_validate_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_supplicant_verify_eapol_key_mic esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa.c.obj) +wpa_validate_wpa_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth.c.obj) +wpa_write_rsn_ie esp-idf/wpa_supplicant/libwpa_supplicant.a(wpa_auth_ie.c.obj) +wpabuf_alloc esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +wpabuf_alloc_copy esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) +wpabuf_alloc_ext_data esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) +wpabuf_clear_free esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +wpabuf_concat esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) +wpabuf_dup esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) +wpabuf_free esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(esp_wpa3.c.obj) +wpabuf_printf esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) +wpabuf_put esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(dh_groups.c.obj) + esp-idf/wpa_supplicant/libwpa_supplicant.a(sae.c.obj) +wpabuf_resize esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) +wpabuf_zeropad esp-idf/wpa_supplicant/libwpa_supplicant.a(wpabuf.c.obj) +wps_printf esp-idf/esp_wifi/libesp_wifi.a(lib_printf.c.obj) +wr_bt_tx_atten /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +wr_bt_tx_gain_mem /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +wr_rf_freq_mem /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +wr_rx_gain_mem /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +write /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-syswrite.o) + esp-idf/mbedtls/mbedtls/library/libmbedtls.a(net_sockets.c.obj) +write_certificate esp-idf/ca/libca.a(ca.c.obj) +write_freq_mem_all /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +write_txrate_power_offset /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) + /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7.o) +write_wifi_chan_data /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_ana.o) +write_wifi_dig_gain /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a(phy_chip_v7_cal.o) +wrong_password_flag /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a(wl_cnx.o) +xEventGroupClearBits esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) +xEventGroupClearBitsFromISR esp-idf/freertos/libfreertos.a(event_groups.c.obj) +xEventGroupCreate esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) +xEventGroupGetBitsFromISR esp-idf/freertos/libfreertos.a(event_groups.c.obj) +xEventGroupSetBits esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) +xEventGroupSetBitsFromISR esp-idf/freertos/libfreertos.a(event_groups.c.obj) +xEventGroupSync esp-idf/freertos/libfreertos.a(event_groups.c.obj) +xEventGroupWaitBits esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/wifi/libwifi.a(wifi.c.obj) +xHandleServer esp-idf/https_server/libhttps_server.a(https_server.c.obj) +xPortGetTickRateHz esp-idf/freertos/libfreertos.a(port.c.obj) +xPortInIsrContext esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(phy_init.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) +xPortInterruptedFromISRContext esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +xPortStartScheduler esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +xPortSysTickHandler esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +xQueueAddToSet esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xQueueCreateCountingSemaphore esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +xQueueCreateMutex esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/esp_common/libesp_common.a(ipc.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xQueueCreateSet esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueGenericCreate esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/esp_common/libesp_common.a(ipc.c.obj) +xQueueGenericReceive esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_common/libesp_common.a(ipc.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xQueueGenericReset esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueGenericSend esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/fatfs/libfatfs.a(ffsystem.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/nvs_flash/libnvs_flash.a(nvs_api.cpp.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_objects.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/esp_common/libesp_common.a(ipc.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xQueueGenericSendFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) +xQueueGetMutexHolder esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xQueueGiveFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +xQueueGiveMutexRecursive esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xQueueIsQueueEmptyFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueIsQueueFullFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueuePeekFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueReceiveFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) +xQueueRemoveFromSet esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xQueueSelectFromSet esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueSelectFromSetFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueTakeMutexRecursive esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xRingbufferAddToQueueSetRead esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferCanRead esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferCreate esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +xRingbufferCreateNoSplit esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferGetCurFreeSize esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferGetMaxItemSize esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +xRingbufferPrintInfo esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferReceive esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +xRingbufferReceiveFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +xRingbufferReceiveSplit esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferReceiveSplitFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferReceiveUpTo esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferReceiveUpToFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferRemoveFromQueueSetRead esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferSend esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +xRingbufferSendAcquire esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferSendComplete esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferSendFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +xTaskCheckForTimeOut esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskCreatePinnedToCore esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/ca/libca.a(gen_key.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_common/libesp_common.a(ipc.c.obj) + esp-idf/esp32/libesp32.a(dport_access.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xTaskCreateRestricted esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskGetAffinity esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) +xTaskGetCurrentTaskHandle esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_parse.c.obj) + esp-idf/esp_http_server/libesp_http_server.a(httpd_main.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/esp_netif/libesp_netif.a(esp_netif_lwip.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_common/libesp_common.a(ipc.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xTaskGetCurrentTaskHandleForCPU esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +xTaskGetIdleTaskHandle esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskGetIdleTaskHandleForCPU esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +xTaskGetSchedulerState esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_common/libesp_common.a(ipc.c.obj) +xTaskGetTickCount esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp-tls/libesp-tls.a(esp_tls.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/lwip/liblwip.a(sys_arch.c.obj) + esp-idf/esp_event/libesp_event.a(esp_event.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) +xTaskGetTickCountFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) +xTaskIncrementTick esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +xTaskNotify esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xTaskNotifyFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskNotifyWait esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xTaskPriorityDisinherit esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskRemoveFromEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskRemoveFromUnorderedEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) +xTaskResumeAll esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) +xTaskResumeFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTimerCreate esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) +xTimerCreateTimerTask esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTimerGenericCommand esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/esp_eth/libesp_eth.a(esp_eth.c.obj) +xTimerGetExpiryTime esp-idf/freertos/libfreertos.a(timers.c.obj) +xTimerGetPeriod esp-idf/freertos/libfreertos.a(timers.c.obj) +xTimerIsTimerActive esp-idf/freertos/libfreertos.a(timers.c.obj) +xTimerMux esp-idf/freertos/libfreertos.a(timers.c.obj) +xTimerPendFunctionCall esp-idf/freertos/libfreertos.a(timers.c.obj) +xTimerPendFunctionCallFromISR esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(event_groups.c.obj) +xphyQueue /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a(pp.o) +xt_clock_freq esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) +xt_debugexception esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +xt_highint4 esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +xt_highint5 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +xt_ints_off esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/esp32/libesp32.a(int_wdt.c.obj) + esp-idf/esp32/libesp32.a(dport_access.c.obj) +xt_ints_on esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/esp32/libesp32.a(int_wdt.c.obj) + esp-idf/esp32/libesp32.a(dport_access.c.obj) +xt_nmi esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +xt_set_exception_handler esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) +xt_set_interrupt_handler esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + esp-idf/esp_wifi/libesp_wifi.a(esp_adapter.c.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) +xt_unhandled_exception esp-idf/esp32/libesp32.a(panic.c.obj) + esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) +xt_unhandled_interrupt esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) +xthal_restore_extra_nw /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--restore_extra_nw.o) + esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) +xthal_save_extra_nw /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--save_extra_nw.o) + esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) +xthal_set_intclear /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(int_asm--set_intclear.o) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) +xthal_spill_registers_into_stack_nw /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) +xthal_window_spill /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) + esp-idf/xtensa/libxtensa.a(debug_helpers_asm.S.obj) +xthal_window_spill_nw /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) + esp-idf/freertos/libfreertos.a(portasm.S.obj) diff --git a/build/bootloader-flash_args b/build/bootloader-flash_args new file mode 100644 index 0000000..31ab2e9 --- /dev/null +++ b/build/bootloader-flash_args @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 40m --flash_size 4MB +0x1000 bootloader/bootloader.bin diff --git a/build/bootloader-prefix/tmp/bootloader-cfgcmd.txt b/build/bootloader-prefix/tmp/bootloader-cfgcmd.txt new file mode 100644 index 0000000..65f9b43 --- /dev/null +++ b/build/bootloader-prefix/tmp/bootloader-cfgcmd.txt @@ -0,0 +1 @@ +cmd='/usr/bin/cmake;-DSDKCONFIG=/home/mithras/Documents/bakalarka/sdkconfig;-DIDF_PATH=/home/mithras/esp/esp-idf;-DIDF_TARGET=esp32;-DPYTHON_DEPS_CHECKED=1;-DPYTHON=/home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python;-DEXTRA_COMPONENT_DIRS=/home/mithras/esp/esp-idf/components/bootloader;-DLEGACY_INCLUDE_COMMON_HEADERS=;-GNinja;' diff --git a/build/bootloader-prefix/tmp/bootloader-cfgcmd.txt.in b/build/bootloader-prefix/tmp/bootloader-cfgcmd.txt.in new file mode 100644 index 0000000..b3f09ef --- /dev/null +++ b/build/bootloader-prefix/tmp/bootloader-cfgcmd.txt.in @@ -0,0 +1 @@ +cmd='@cmd@' diff --git a/build/bootloader/.bin_timestamp b/build/bootloader/.bin_timestamp new file mode 100644 index 0000000..ea91bbb --- /dev/null +++ b/build/bootloader/.bin_timestamp @@ -0,0 +1 @@ +af3f4e38b844bed1e1b37ceda9ffa101 /home/mithras/Documents/bakalarka/build/bootloader/bootloader.bin diff --git a/build/bootloader/.ninja_deps b/build/bootloader/.ninja_deps new file mode 100644 index 0000000..4f1c36c Binary files /dev/null and b/build/bootloader/.ninja_deps differ diff --git a/build/bootloader/.ninja_log b/build/bootloader/.ninja_log new file mode 100644 index 0000000..a4f83fb --- /dev/null +++ b/build/bootloader/.ninja_log @@ -0,0 +1,98 @@ +# ninja log v5 +1 111 1584721289 project_elf_src.c 4c9fd5165270a02a +111 224 1584721289 CMakeFiles/bootloader.elf.dir/project_elf_src.c.obj 39f2c4d183d9f94c +22 253 1584721289 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/lldesc.c.obj 42e3d81226d253a4 +12 379 1584721289 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/memory_layout_utils.c.obj d3c5ede6e6c27299 +37 455 1584721289 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rmt_hal.c.obj 81562121d4fb8150 +43 560 1584721290 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rtc_io_hal.c.obj 8898a12c67cd33fa +51 573 1584721290 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/dac_hal.c.obj a9f6c39a17230087 +224 669 1584721290 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/adc_hal.c.obj f48c1e166a2e5ff9 +253 846 1584721290 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal.c.obj 2b859dddff4d3d9f +669 853 1584721290 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/soc_include_legacy_warn.c.obj a048c55f35ee797b +456 862 1584721290 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal.c.obj 99f23d5e1b52ca97 +573 980 1584721290 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/touch_sensor_hal.c.obj 24f02975769053da +846 1048 1584721290 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/pcnt_hal.c.obj 932944a4d1329f67 +560 1071 1584721290 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal_iram.c.obj 4b73bd149c7cd7c8 +862 1123 1584721290 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sigmadelta_hal.c.obj 9a522f0be4dd86ee +379 1138 1584721290 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal_iram.c.obj 734a3835b3cf6628 +980 1245 1584721290 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/timer_hal.c.obj 112e1299c02e11f3 +1048 1255 1584721290 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal.c.obj 45d5062a3404d3b1 +1138 1361 1584721290 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal_iram.c.obj 3ba313cb854b7073 +1071 1449 1584721290 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal_iram.c.obj 3f12f9d6e619127 +1245 1490 1584721290 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/gpio_hal.c.obj a0d584cef520acc9 +1361 1732 1584721291 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal_iram.c.obj 28861ccb80887623 +853 1754 1584721291 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2s_hal.c.obj 23752131344e1500 +1123 1766 1584721291 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal.c.obj 77be850043e71b69 +1449 1937 1584721291 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal.c.obj 3fd764a3b977514d +1732 2080 1584721291 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/compare_set.c.obj c306442c10391e75 +1755 2089 1584721291 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/can_hal.c.obj 586f148eb0beb3b8 +1490 2111 1584721291 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal_iram.c.obj 518ceb6b757d2bae +1255 2119 1584721291 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal.c.obj 401a093051f100f0 +2080 2267 1584721291 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/brownout_hal.c.obj 8c40554611e8cf48 +2089 2494 1584721291 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/cpu_util.c.obj 917406aff40ca5af +2119 2749 1584721292 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk_init.c.obj e6016913e36d6ddb +2494 2785 1584721292 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_pm.c.obj d6006871ca7cae96 +2267 2807 1584721292 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_init.c.obj 69d85f7f3a5da155 +1766 2927 1584721292 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/mcpwm_hal.c.obj f12140b1d002c08a +2785 3250 1584721292 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_time.c.obj ec08a34b72b43988 +2111 3301 1584721292 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk.c.obj 14859c48f59abda8 +2807 3338 1584721292 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_wdt.c.obj 6f320ac5112d072e +2749 3361 1584721292 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_sleep.c.obj 16566f01f3195d7e +3250 3394 1584721292 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/soc_memory_layout.c.obj 3b4e6f523647b79a +1937 3448 1584721292 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sdio_slave_hal.c.obj 7e9268532abcfae9 +3394 3611 1584721293 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/gpio_periph.c.obj 36ef8dc73befd7d8 +3301 3622 1584721293 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/touch_sensor_hal.c.obj 24213a63c172023c +3338 3627 1584721293 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/adc_periph.c.obj 677c43cfb05268b6 +3361 3644 1584721293 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/dac_periph.c.obj 68c2864a17543c0c +3448 3686 1584721293 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_io_periph.c.obj 24950562e87a7da7 +3611 3712 1584721293 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_periph.c.obj 341011598e117e7b +3644 3739 1584721293 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/interrupts.c.obj c4b7c27093e4cb19 +3627 3807 1584721293 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdmmc_periph.c.obj befd0f7ac453e6b9 +3686 3873 1584721293 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/spi_periph.c.obj 8fab98c12dc6e1cc +3712 3894 1584721293 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/ledc_periph.c.obj 7911e14d5520a5b7 +3807 3919 1584721293 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2c_periph.c.obj 662fd3584c684d3b +3622 3933 1584721293 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdio_slave_periph.c.obj 808de98b692dc899 +3739 3968 1584721293 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2s_periph.c.obj 74f3efe5b6a5fd5e +3873 4038 1584721293 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/uart_periph.c.obj e69c64ca1a755812 +3894 4121 1584721293 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/touch_sensor_periph.c.obj b1af8f36f7824178 +3968 4177 1584721293 esp-idf/log/CMakeFiles/__idf_log.dir/log_noos.c.obj 768afe5d5c7937af +3919 4290 1584721293 esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj 4baefb36b582ee85 +3934 4360 1584721293 esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj 4dd4488d06e527ea +2927 4437 1584721293 esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/sdio_slave_hal.c.obj 68d93774c493d6c5 +4177 4446 1584721293 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj c066160c8c5bc4e7 +4360 4551 1584721294 esp-idf/log/liblog.a 3c0f1be6faeb5037 +4290 4588 1584721294 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_api.c.obj a13548688a81f026 +4551 4685 1584721294 esp-idf/soc/soc/esp32/libsoc_esp32.a 5535786e5680a71 +4437 4825 1584721294 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_fields.c.obj 15290b95c219900e +4685 4828 1584721294 esp-idf/soc/libsoc.a 1570b58e380cf730 +4446 4909 1584721294 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_utility.c.obj 9048a75f29b34891 +4121 4942 1584721294 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32/spi_flash_rom_patch.c.obj f38c73437017eb3f +4589 4994 1584721294 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj c43194974e29b4b2 +4825 5176 1584721294 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj 7858373c3da35667 +4909 5466 1584721294 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock.c.obj 6b0dd43a50bc87a3 +4828 5475 1584721294 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj f235884acab48ea5 +4994 5524 1584721294 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash.c.obj 6f345af67cfa1dd1 +4942 5758 1584721295 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj 16d13c8b378bab1 +5176 5778 1584721295 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj c01c0f5dd202d512 +5524 5867 1584721295 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj 2cbd6f45bf171db9 +5867 6134 1584721295 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse_esp32.c.obj 736d206ef8002f9e +5778 6273 1584721295 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash_config_esp32.c.obj 92ec694ceec1fd80 +5475 6304 1584721295 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj 512d67f2eba22aaa +5758 6323 1584721295 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_qio_mode.c.obj 259a7ce5be468a98 +4038 6392 1584721295 esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/micro-ecc/uECC.c.obj be714a60aa45b932 +6134 6432 1584721295 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj 585b0ddb213dbf3f +6392 6542 1584721296 esp-idf/micro-ecc/libmicro-ecc.a 17c637439710cf25 +6304 6643 1584721296 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_sha.c.obj 12699e613499e44b +6273 6725 1584721296 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj e3c598253458ab34 +5468 6794 1584721296 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj e2ca1680d816129b +6432 6800 1584721296 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/secure_boot_signatures.c.obj 8f21778471c0be6 +6323 7019 1584721296 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/flash_encrypt.c.obj 49cf861170b4d05b +6725 7077 1584721296 esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj e5f8113653675df9 +6542 7167 1584721296 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/secure_boot.c.obj 70cf295a874ba7ea +6643 7331 1584721296 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_esp32.c.obj 2fcd32e9793fbb88 +7331 7431 1584721296 esp-idf/bootloader_support/libbootloader_support.a f8e76f8d77921e80 +7431 7536 1584721297 esp-idf/efuse/libefuse.a 8b73fc3e19818359 +7536 7618 1584721297 esp-idf/spi_flash/libspi_flash.a d0e2a18fd79e1fab +7618 7669 1584721297 esp-idf/main/libmain.a 540777458a2e8b0a +7669 7856 1584721297 bootloader.elf 559c852b4006a53b +7856 8808 1584721298 .bin_timestamp cbf29532614689a2 diff --git a/build/bootloader/CMakeCache.txt b/build/bootloader/CMakeCache.txt new file mode 100644 index 0000000..3f5070e --- /dev/null +++ b/build/bootloader/CMakeCache.txt @@ -0,0 +1,412 @@ +# This is the CMakeCache file. +# For build in directory: /home/mithras/Documents/bakalarka/build/bootloader +# It was generated by CMake: /usr/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_AR:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_AR:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_RANLIB:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib + +//Flags used by the assembler during all build types. +CMAKE_ASM_FLAGS:STRING= + +//Flags used by the assembler during debug builds. +CMAKE_ASM_FLAGS_DEBUG:STRING=-g + +//Flags used by the assembler during release minsize builds. +CMAKE_ASM_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the assembler during release builds. +CMAKE_ASM_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the assembler during Release with Debug Info builds. +CMAKE_ASM_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Choose the type of build, options are: None(CMAKE_CXX_FLAGS or +// CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel. +CMAKE_BUILD_TYPE:STRING= + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib + +//C++ Compiler Base Flags +CMAKE_CXX_FLAGS:STRING=-mlongcalls -Wno-frame-address + +//Flags used by the compiler during debug builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the compiler during release builds for minimum +// size. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the compiler during release builds with debug info. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_AR:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib + +//C Compiler Base Flags +CMAKE_C_FLAGS:STRING=-mlongcalls -Wno-frame-address + +//Flags used by the compiler during debug builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the compiler during release builds for minimum +// size. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the compiler during release builds with debug info. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Flags used by the linker. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//Path to a program. +CMAKE_LINKER:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ld + +//Program used to build from build.ninja files. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/ninja + +//Flags used by the linker during the creation of modules. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-nm + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-objcopy + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-objdump + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=bootloader + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib + +//Flags used by the linker during the creation of dll's. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-strip + +//The CMake toolchain file +CMAKE_TOOLCHAIN_FILE:FILEPATH=/home/mithras/esp/esp-idf/tools/cmake/toolchain-esp32.cmake + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//No help, variable specified on the command line. +EXTRA_COMPONENT_DIRS:UNINITIALIZED=/home/mithras/esp/esp-idf/components/bootloader + +//Git command line client +GIT_EXECUTABLE:FILEPATH=/usr/bin/git + +//No help, variable specified on the command line. +IDF_PATH:UNINITIALIZED=/home/mithras/esp/esp-idf + +//IDF Build Target +IDF_TARGET:STRING=esp32 + +//No help, variable specified on the command line. +LEGACY_INCLUDE_COMMON_HEADERS:UNINITIALIZED= + +//No help, variable specified on the command line. +PYTHON:UNINITIALIZED=/home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python + +//No help, variable specified on the command line. +PYTHON_DEPS_CHECKED:UNINITIALIZED=1 + +//No help, variable specified on the command line. +SDKCONFIG:UNINITIALIZED=/home/mithras/Documents/bakalarka/sdkconfig + +//Dependencies for the target +__idf_bootloader_support_LIB_DEPENDS:STATIC=general;__idf_log; + +//Dependencies for the target +__idf_efuse_LIB_DEPENDS:STATIC=general;__idf_log; + +//Dependencies for target +__idf_log_LIB_DEPENDS:STATIC= + +//Dependencies for the target +__idf_main_LIB_DEPENDS:STATIC=general;__idf_log; + +//Dependencies for the target +__idf_micro-ecc_LIB_DEPENDS:STATIC=general;__idf_log; + +//Dependencies for the target +__idf_soc_LIB_DEPENDS:STATIC=general;__idf_log;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_xtensa;general;soc_esp32; + +//Dependencies for the target +__idf_spi_flash_LIB_DEPENDS:STATIC=general;__idf_log; + +//Value Computed by CMake +bootloader_BINARY_DIR:STATIC=/home/mithras/Documents/bakalarka/build/bootloader + +//Value Computed by CMake +bootloader_SOURCE_DIR:STATIC=/home/mithras/esp/esp-idf/components/bootloader/subproject + +//Value Computed by CMake +esp-idf_BINARY_DIR:STATIC=/home/mithras/Documents/bakalarka/build/bootloader/esp-idf + +//Value Computed by CMake +esp-idf_SOURCE_DIR:STATIC=/home/mithras/esp/esp-idf + +//Dependencies for the target +soc_esp32_LIB_DEPENDS:STATIC=general;__idf_log;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_xtensa; + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_COMPILER_AR +CMAKE_ASM_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_COMPILER_RANLIB +CMAKE_ASM_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +CMAKE_ASM_COMPILER_WORKS:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS +CMAKE_ASM_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_DEBUG +CMAKE_ASM_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_MINSIZEREL +CMAKE_ASM_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELEASE +CMAKE_ASM_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELWITHDEBINFO +CMAKE_ASM_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/home/mithras/Documents/bakalarka/build/bootloader +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=10 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=2 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/usr/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Ninja +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/home/mithras/esp/esp-idf/components/bootloader/subproject +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=19 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.10 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Details about finding Git +FIND_PACKAGE_MESSAGE_DETAILS_Git:INTERNAL=[/usr/bin/git][v2.17.1()] +//ADVANCED property for variable: GIT_EXECUTABLE +GIT_EXECUTABLE-ADVANCED:INTERNAL=1 + diff --git a/build/bootloader/CMakeFiles/3.10.2/CMakeASMCompiler.cmake b/build/bootloader/CMakeFiles/3.10.2/CMakeASMCompiler.cmake new file mode 100644 index 0000000..f322ee9 --- /dev/null +++ b/build/bootloader/CMakeFiles/3.10.2/CMakeASMCompiler.cmake @@ -0,0 +1,17 @@ +set(CMAKE_ASM_COMPILER "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc") +set(CMAKE_ASM_COMPILER_ARG1 "") +set(CMAKE_AR "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar") +set(CMAKE_ASM_COMPILER_AR "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar") +set(CMAKE_RANLIB "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib") +set(CMAKE_ASM_COMPILER_RANLIB "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib") +set(CMAKE_LINKER "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ld") +set(CMAKE_ASM_COMPILER_LOADED 1) +set(CMAKE_ASM_COMPILER_ID "GNU") +set(CMAKE_ASM_COMPILER_VERSION "") +set(CMAKE_ASM_COMPILER_ENV_VAR "ASM") + + +set(CMAKE_ASM_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_ASM_LINKER_PREFERENCE 0) + + diff --git a/build/bootloader/CMakeFiles/3.10.2/CMakeCCompiler.cmake b/build/bootloader/CMakeFiles/3.10.2/CMakeCCompiler.cmake new file mode 100644 index 0000000..7d75728 --- /dev/null +++ b/build/bootloader/CMakeFiles/3.10.2/CMakeCCompiler.cmake @@ -0,0 +1,73 @@ +set(CMAKE_C_COMPILER "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "8.2.0") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") + +set(CMAKE_C_PLATFORM_ID "") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_SIMULATE_VERSION "") + + + +set(CMAKE_AR "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar") +set(CMAKE_C_COMPILER_AR "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar") +set(CMAKE_RANLIB "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib") +set(CMAKE_C_COMPILER_RANLIB "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib") +set(CMAKE_LINKER "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ld") +set(CMAKE_COMPILER_IS_GNUCC 1) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) +set(CMAKE_COMPILER_IS_MINGW ) +set(CMAKE_COMPILER_IS_CYGWIN ) +if(CMAKE_COMPILER_IS_CYGWIN) + set(CYGWIN 1) + set(UNIX 1) +endif() + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +if(CMAKE_COMPILER_IS_MINGW) + set(MINGW 1) +endif() +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "4") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_LIBRARY_ARCHITECTURE "") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;c;nosys;c;gcc") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/build/bootloader/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake b/build/bootloader/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..1221343 --- /dev/null +++ b/build/bootloader/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake @@ -0,0 +1,75 @@ +set(CMAKE_CXX_COMPILER "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "8.2.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") + +set(CMAKE_CXX_PLATFORM_ID "") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + +set(CMAKE_AR "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar") +set(CMAKE_CXX_COMPILER_AR "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar") +set(CMAKE_RANLIB "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib") +set(CMAKE_LINKER "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ld") +set(CMAKE_COMPILER_IS_GNUCXX 1) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) +set(CMAKE_COMPILER_IS_MINGW ) +set(CMAKE_COMPILER_IS_CYGWIN ) +if(CMAKE_COMPILER_IS_CYGWIN) + set(CYGWIN 1) + set(UNIX 1) +endif() + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +if(CMAKE_COMPILER_IS_MINGW) + set(MINGW 1) +endif() +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;mm;CPP) +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "4") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc;c;nosys;c;gcc") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/build/bootloader/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin b/build/bootloader/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 0000000..e18b038 Binary files /dev/null and b/build/bootloader/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_C.bin differ diff --git a/build/bootloader/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin b/build/bootloader/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin new file mode 100755 index 0000000..345cbf7 Binary files /dev/null and b/build/bootloader/CMakeFiles/3.10.2/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/build/bootloader/CMakeFiles/3.10.2/CMakeSystem.cmake b/build/bootloader/CMakeFiles/3.10.2/CMakeSystem.cmake new file mode 100644 index 0000000..0773d3c --- /dev/null +++ b/build/bootloader/CMakeFiles/3.10.2/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-4.15.0-91-generic") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "4.15.0-91-generic") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + +include("/home/mithras/esp/esp-idf/tools/cmake/toolchain-esp32.cmake") + +set(CMAKE_SYSTEM "Generic") +set(CMAKE_SYSTEM_NAME "Generic") +set(CMAKE_SYSTEM_VERSION "") +set(CMAKE_SYSTEM_PROCESSOR "") + +set(CMAKE_CROSSCOMPILING "TRUE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/build/bootloader/CMakeFiles/3.10.2/CompilerIdC/CMakeCCompilerId.c b/build/bootloader/CMakeFiles/3.10.2/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..722faa8 --- /dev/null +++ b/build/bootloader/CMakeFiles/3.10.2/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,598 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif + /* __INTEL_COMPILER = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version) +# define COMPILER_ID "Fujitsu" + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__ARMCC_VERSION) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + +#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" +# if defined(_SGI_COMPILER_VERSION) + /* _SGI_COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) +# else + /* _COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__sgi) +# define COMPILER_ID "MIPSpro" + +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXE) || defined(__CRAYXC) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number components. */ +#ifdef COMPILER_VERSION_MAJOR +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + + +#if !defined(__STDC__) +# if defined(_MSC_VER) && !defined(__clang__) +# define C_DIALECT "90" +# else +# define C_DIALECT +# endif +#elif __STDC_VERSION__ >= 201000L +# define C_DIALECT "11" +#elif __STDC_VERSION__ >= 199901L +# define C_DIALECT "99" +#else +# define C_DIALECT "90" +#endif +const char* info_language_dialect_default = + "INFO" ":" "dialect_default[" C_DIALECT "]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXE) || defined(__CRAYXC) + require += info_cray[argc]; +#endif + require += info_language_dialect_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/build/bootloader/CMakeFiles/3.10.2/CompilerIdC/a.out b/build/bootloader/CMakeFiles/3.10.2/CompilerIdC/a.out new file mode 100755 index 0000000..272a5f1 Binary files /dev/null and b/build/bootloader/CMakeFiles/3.10.2/CompilerIdC/a.out differ diff --git a/build/bootloader/CMakeFiles/3.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp b/build/bootloader/CMakeFiles/3.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..2d66298 --- /dev/null +++ b/build/bootloader/CMakeFiles/3.10.2/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,576 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__COMO__) +# define COMPILER_ID "Comeau" + /* __COMO_VERSION__ = VRR */ +# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) +# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) + +#elif defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif + /* __INTEL_COMPILER = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version) +# define COMPILER_ID "Fujitsu" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__ARMCC_VERSION) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" +# if defined(_SGI_COMPILER_VERSION) + /* _SGI_COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) +# else + /* _COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__sgi) +# define COMPILER_ID "MIPSpro" + +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXE) || defined(__CRAYXC) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number components. */ +#ifdef COMPILER_VERSION_MAJOR +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + + +#if defined(_MSC_VER) && defined(_MSVC_LANG) +#define CXX_STD _MSVC_LANG +#else +#define CXX_STD __cplusplus +#endif + +const char* info_language_dialect_default = "INFO" ":" "dialect_default[" +#if CXX_STD > 201402L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "11" +#else + "98" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXE) || defined(__CRAYXC) + require += info_cray[argc]; +#endif + require += info_language_dialect_default[argc]; + (void)argv; + return require; +} diff --git a/build/bootloader/CMakeFiles/3.10.2/CompilerIdCXX/a.out b/build/bootloader/CMakeFiles/3.10.2/CompilerIdCXX/a.out new file mode 100755 index 0000000..ecc1b67 Binary files /dev/null and b/build/bootloader/CMakeFiles/3.10.2/CompilerIdCXX/a.out differ diff --git a/build/bootloader/CMakeFiles/CMakeOutput.log b/build/bootloader/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000..625d60d --- /dev/null +++ b/build/bootloader/CMakeFiles/CMakeOutput.log @@ -0,0 +1,506 @@ +The target system is: Generic - - +The host system is: Linux - 4.15.0-91-generic - x86_64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc +Build flags: -mlongcalls;-Wno-frame-address +Id flags: + +The output was: +0 + + +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + +The C compiler identification is GNU, found in "/home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/3.10.2/CompilerIdC/a.out" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++ +Build flags: -mlongcalls;-Wno-frame-address +Id flags: + +The output was: +0 + + +Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + +The CXX compiler identification is GNU, found in "/home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/3.10.2/CompilerIdCXX/a.out" + +Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)": +xtensa-esp32-elf-gcc (crosstool-NG esp-2019r2) 8.2.0 +Copyright (C) 2018 Free Software Foundation, Inc. +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +Determining if the C compiler works passed with the following output: +Change Dir: /home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/ninja" "cmTC_abd54" +[1/2] Building C object CMakeFiles/cmTC_abd54.dir/testCCompiler.c.obj +[2/2] Linking C executable cmTC_abd54 + + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/ninja" "cmTC_e89cb" +[1/2] Building C object CMakeFiles/cmTC_e89cb.dir/CMakeCCompilerABI.c.obj +[2/2] Linking C executable cmTC_e89cb +Using built-in specs. +COLLECT_GCC=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc +COLLECT_LTO_WRAPPER=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper +Target: xtensa-esp32-elf +Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2019r2' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes +Thread model: posix +gcc version 8.2.0 (crosstool-NG esp-2019r2) +COMPILER_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/bin/ +LIBRARY_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/ +COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_e89cb' + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2 -plugin /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so -plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccKRL6G8.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_e89cb /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0 -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib CMakeFiles/cmTC_e89cb.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o +COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_e89cb' + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(xtensa-esp32-elf-ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:"/usr/bin/ninja" "cmTC_e89cb"] + ignore line: [[1/2] Building C object CMakeFiles/cmTC_e89cb.dir/CMakeCCompilerABI.c.obj] + ignore line: [[2/2] Linking C executable cmTC_e89cb] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc] + ignore line: [COLLECT_LTO_WRAPPER=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper] + ignore line: [Target: xtensa-esp32-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2019r2' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes] + ignore line: [Thread model: posix] + ignore line: [gcc version 8.2.0 (crosstool-NG esp-2019r2) ] + ignore line: [COMPILER_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/bin/] + ignore line: [LIBRARY_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_e89cb'] + link line: [ /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2 -plugin /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so -plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/ccKRL6G8.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_e89cb /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0 -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib CMakeFiles/cmTC_e89cb.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o] + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccKRL6G8.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lnosys] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-o] ==> ignore + arg [cmTC_e89cb] ==> ignore + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o] ==> ignore + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o] ==> ignore + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o] ==> ignore + arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0] + arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc] + arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib] + arg [CMakeFiles/cmTC_e89cb.dir/CMakeCCompilerABI.c.obj] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lnosys] ==> lib [nosys] + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o] ==> ignore + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o] ==> ignore + collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0] + collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc] + collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib] + implicit libs: [gcc;c;nosys;c;gcc] + implicit dirs: [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib] + implicit fwks: [] + + + + +Detecting C [-std=c11] compiler features compiled with the following output: +Change Dir: /home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/ninja" "cmTC_184a7" +[1/2] Building C object CMakeFiles/cmTC_184a7.dir/feature_tests.c.obj +[2/2] Linking C executable cmTC_184a7 + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:1c_restrict + Feature record: C_FEATURE:1c_static_assert + Feature record: C_FEATURE:1c_variadic_macros + + +Detecting C [-std=c99] compiler features compiled with the following output: +Change Dir: /home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/ninja" "cmTC_c40dd" +[1/2] Building C object CMakeFiles/cmTC_c40dd.dir/feature_tests.c.obj +[2/2] Linking C executable cmTC_c40dd + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:1c_restrict + Feature record: C_FEATURE:0c_static_assert + Feature record: C_FEATURE:1c_variadic_macros + + +Detecting C [-std=c90] compiler features compiled with the following output: +Change Dir: /home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/ninja" "cmTC_93957" +[1/2] Building C object CMakeFiles/cmTC_93957.dir/feature_tests.c.obj +[2/2] Linking C executable cmTC_93957 + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:0c_restrict + Feature record: C_FEATURE:0c_static_assert + Feature record: C_FEATURE:0c_variadic_macros +Determining if the CXX compiler works passed with the following output: +Change Dir: /home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/ninja" "cmTC_aa771" +[1/2] Building CXX object CMakeFiles/cmTC_aa771.dir/testCXXCompiler.cxx.obj +[2/2] Linking CXX executable cmTC_aa771 + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: /home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/ninja" "cmTC_0cd2f" +[1/2] Building CXX object CMakeFiles/cmTC_0cd2f.dir/CMakeCXXCompilerABI.cpp.obj +[2/2] Linking CXX executable cmTC_0cd2f +Using built-in specs. +COLLECT_GCC=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++ +COLLECT_LTO_WRAPPER=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper +Target: xtensa-esp32-elf +Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2019r2' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes +Thread model: posix +gcc version 8.2.0 (crosstool-NG esp-2019r2) +COMPILER_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/bin/ +LIBRARY_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/ +COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_0cd2f' + /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2 -plugin /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so -plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/cc2eThsr.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_0cd2f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0 -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib CMakeFiles/cmTC_0cd2f.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o +COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_0cd2f' + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(xtensa-esp32-elf-ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:"/usr/bin/ninja" "cmTC_0cd2f"] + ignore line: [[1/2] Building CXX object CMakeFiles/cmTC_0cd2f.dir/CMakeCXXCompilerABI.cpp.obj] + ignore line: [[2/2] Linking CXX executable cmTC_0cd2f] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++] + ignore line: [COLLECT_LTO_WRAPPER=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper] + ignore line: [Target: xtensa-esp32-elf] + ignore line: [Configured with: /builds/idf/crosstool-NG/.build/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-2019r2' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --with-gmp=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpfr=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-mpc=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --with-isl=/builds/idf/crosstool-NG/.build/xtensa-esp32-elf/buildtools --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes] + ignore line: [Thread model: posix] + ignore line: [gcc version 8.2.0 (crosstool-NG esp-2019r2) ] + ignore line: [COMPILER_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/bin/] + ignore line: [LIBRARY_PATH=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/:/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_0cd2f'] + link line: [ /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2 -plugin /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so -plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper -plugin-opt=-fresolution=/tmp/cc2eThsr.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_0cd2f /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0 -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc -L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib CMakeFiles/cmTC_0cd2f.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o] + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/8.2.0/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/cc2eThsr.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lnosys] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-o] ==> ignore + arg [cmTC_0cd2f] ==> ignore + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/crt0.o] ==> ignore + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crti.o] ==> ignore + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtbegin.o] ==> ignore + arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0] + arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc] + arg [-L/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib] ==> dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib] + arg [CMakeFiles/cmTC_0cd2f.dir/CMakeCXXCompilerABI.cpp.obj] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lnosys] ==> lib [nosys] + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtend.o] ==> ignore + arg [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/crtn.o] ==> ignore + collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0] + collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc] + collapse library dir [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib] ==> [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib] + implicit libs: [stdc++;m;gcc;c;nosys;c;gcc] + implicit dirs: [/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc;/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib] + implicit fwks: [] + + + + +Detecting CXX [-std=c++1z] compiler features compiled with the following output: +Change Dir: /home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/ninja" "cmTC_2e680" +[1/2] Building CXX object CMakeFiles/cmTC_2e680.dir/feature_tests.cxx.obj +[2/2] Linking CXX executable cmTC_2e680 + + + Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:1cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:1cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:1cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:1cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:1cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:1cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:1cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:1cxx_relaxed_constexpr + Feature record: CXX_FEATURE:1cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:1cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++14] compiler features compiled with the following output: +Change Dir: /home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/ninja" "cmTC_6ed5b" +[1/2] Building CXX object CMakeFiles/cmTC_6ed5b.dir/feature_tests.cxx.obj +[2/2] Linking CXX executable cmTC_6ed5b + + + Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:1cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:1cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:1cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:1cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:1cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:1cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:1cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:1cxx_relaxed_constexpr + Feature record: CXX_FEATURE:1cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:1cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++11] compiler features compiled with the following output: +Change Dir: /home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/ninja" "cmTC_18c8c" +[1/2] Building CXX object CMakeFiles/cmTC_18c8c.dir/feature_tests.cxx.obj +[2/2] Linking CXX executable cmTC_18c8c + + + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:0cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:0cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:0cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:0cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:0cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:0cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:0cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:0cxx_relaxed_constexpr + Feature record: CXX_FEATURE:0cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:0cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++98] compiler features compiled with the following output: +Change Dir: /home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/ninja" "cmTC_68ccf" +[1/2] Building CXX object CMakeFiles/cmTC_68ccf.dir/feature_tests.cxx.obj +[2/2] Linking CXX executable cmTC_68ccf + + + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:0cxx_alias_templates + Feature record: CXX_FEATURE:0cxx_alignas + Feature record: CXX_FEATURE:0cxx_alignof + Feature record: CXX_FEATURE:0cxx_attributes + Feature record: CXX_FEATURE:0cxx_attribute_deprecated + Feature record: CXX_FEATURE:0cxx_auto_type + Feature record: CXX_FEATURE:0cxx_binary_literals + Feature record: CXX_FEATURE:0cxx_constexpr + Feature record: CXX_FEATURE:0cxx_contextual_conversions + Feature record: CXX_FEATURE:0cxx_decltype + Feature record: CXX_FEATURE:0cxx_decltype_auto + Feature record: CXX_FEATURE:0cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:0cxx_default_function_template_args + Feature record: CXX_FEATURE:0cxx_defaulted_functions + Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:0cxx_delegating_constructors + Feature record: CXX_FEATURE:0cxx_deleted_functions + Feature record: CXX_FEATURE:0cxx_digit_separators + Feature record: CXX_FEATURE:0cxx_enum_forward_declarations + Feature record: CXX_FEATURE:0cxx_explicit_conversions + Feature record: CXX_FEATURE:0cxx_extended_friend_declarations + Feature record: CXX_FEATURE:0cxx_extern_templates + Feature record: CXX_FEATURE:0cxx_final + Feature record: CXX_FEATURE:0cxx_func_identifier + Feature record: CXX_FEATURE:0cxx_generalized_initializers + Feature record: CXX_FEATURE:0cxx_generic_lambdas + Feature record: CXX_FEATURE:0cxx_inheriting_constructors + Feature record: CXX_FEATURE:0cxx_inline_namespaces + Feature record: CXX_FEATURE:0cxx_lambdas + Feature record: CXX_FEATURE:0cxx_lambda_init_captures + Feature record: CXX_FEATURE:0cxx_local_type_template_args + Feature record: CXX_FEATURE:0cxx_long_long_type + Feature record: CXX_FEATURE:0cxx_noexcept + Feature record: CXX_FEATURE:0cxx_nonstatic_member_init + Feature record: CXX_FEATURE:0cxx_nullptr + Feature record: CXX_FEATURE:0cxx_override + Feature record: CXX_FEATURE:0cxx_range_for + Feature record: CXX_FEATURE:0cxx_raw_string_literals + Feature record: CXX_FEATURE:0cxx_reference_qualified_functions + Feature record: CXX_FEATURE:0cxx_relaxed_constexpr + Feature record: CXX_FEATURE:0cxx_return_type_deduction + Feature record: CXX_FEATURE:0cxx_right_angle_brackets + Feature record: CXX_FEATURE:0cxx_rvalue_references + Feature record: CXX_FEATURE:0cxx_sizeof_member + Feature record: CXX_FEATURE:0cxx_static_assert + Feature record: CXX_FEATURE:0cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:0cxx_thread_local + Feature record: CXX_FEATURE:0cxx_trailing_return_types + Feature record: CXX_FEATURE:0cxx_unicode_literals + Feature record: CXX_FEATURE:0cxx_uniform_initialization + Feature record: CXX_FEATURE:0cxx_unrestricted_unions + Feature record: CXX_FEATURE:0cxx_user_literals + Feature record: CXX_FEATURE:0cxx_variable_templates + Feature record: CXX_FEATURE:0cxx_variadic_macros + Feature record: CXX_FEATURE:0cxx_variadic_templates diff --git a/build/bootloader/CMakeFiles/TargetDirectories.txt b/build/bootloader/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..d6bd0fb --- /dev/null +++ b/build/bootloader/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,61 @@ +/home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/size-components.dir +/home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/size.dir +/home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/bootloader.elf.dir +/home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/_project_elf_src.dir +/home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/confserver.dir +/home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/menuconfig.dir +/home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/gen_project_binary.dir +/home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/erase_flash.dir +/home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/size-files.dir +/home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/app.dir +/home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/monitor.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esp32/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esp32/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc/src/esp32/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc/src/esp32/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc/soc/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc/soc/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/xtensa/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/xtensa/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esp_common/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esp_common/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esp_rom/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esp_rom/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/log/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/log/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/partition_table/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/partition_table/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/bootloader/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/bootloader/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/micro-ecc/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/micro-ecc/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/spi_flash/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/spi_flash/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_common_table.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_custom_table.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/efuse/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/efuse/CMakeFiles/show_efuse_table.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_test_table.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/efuse/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/bootloader_support/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/bootloader_support/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esptool_py/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esptool_py/CMakeFiles/edit_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/main/CMakeFiles/rebuild_cache.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir +/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/main/CMakeFiles/edit_cache.dir diff --git a/build/bootloader/CMakeFiles/bootloader.elf.dir/project_elf_src.c.obj b/build/bootloader/CMakeFiles/bootloader.elf.dir/project_elf_src.c.obj new file mode 100644 index 0000000..aaa8e2b Binary files /dev/null and b/build/bootloader/CMakeFiles/bootloader.elf.dir/project_elf_src.c.obj differ diff --git a/build/bootloader/CMakeFiles/cmake.check_cache b/build/bootloader/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/build/bootloader/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/build/bootloader/CMakeFiles/feature_tests.bin b/build/bootloader/CMakeFiles/feature_tests.bin new file mode 100755 index 0000000..80b41d1 Binary files /dev/null and b/build/bootloader/CMakeFiles/feature_tests.bin differ diff --git a/build/bootloader/CMakeFiles/feature_tests.c b/build/bootloader/CMakeFiles/feature_tests.c new file mode 100644 index 0000000..83e86dd --- /dev/null +++ b/build/bootloader/CMakeFiles/feature_tests.c @@ -0,0 +1,34 @@ + + const char features[] = {"\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 +"1" +#else +"0" +#endif +"c_function_prototypes\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L +"1" +#else +"0" +#endif +"c_restrict\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201000L +"1" +#else +"0" +#endif +"c_static_assert\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L +"1" +#else +"0" +#endif +"c_variadic_macros\n" + +}; + +int main(int argc, char** argv) { (void)argv; return features[argc]; } diff --git a/build/bootloader/CMakeFiles/feature_tests.cxx b/build/bootloader/CMakeFiles/feature_tests.cxx new file mode 100644 index 0000000..b93418c --- /dev/null +++ b/build/bootloader/CMakeFiles/feature_tests.cxx @@ -0,0 +1,405 @@ + + const char features[] = {"\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_aggregate_default_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alias_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alignas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alignof\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_attributes\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_attribute_deprecated\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_auto_type\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_binary_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_constexpr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_contextual_conversions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_decltype\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_decltype_auto\n" +"CXX_FEATURE:" +#if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40801) && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_decltype_incomplete_return_types\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_default_function_template_args\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_defaulted_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_defaulted_move_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_delegating_constructors\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_deleted_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_digit_separators\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_enum_forward_declarations\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_explicit_conversions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_extended_friend_declarations\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_extern_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_final\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_func_identifier\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_generalized_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_generic_lambdas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_inheriting_constructors\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_inline_namespaces\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_lambdas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_lambda_init_captures\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_local_type_template_args\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_long_long_type\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_noexcept\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_nonstatic_member_init\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_nullptr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_override\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_range_for\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_raw_string_literals\n" +"CXX_FEATURE:" +#if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40801) && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_reference_qualified_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_relaxed_constexpr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_return_type_deduction\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_right_angle_brackets\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_rvalue_references\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_sizeof_member\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_static_assert\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_strong_enums\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && __cplusplus +"1" +#else +"0" +#endif +"cxx_template_template_parameters\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_thread_local\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_trailing_return_types\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_unicode_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_uniform_initialization\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_unrestricted_unions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_user_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_variable_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_variadic_macros\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_variadic_templates\n" + +}; + +int main(int argc, char** argv) { (void)argv; return features[argc]; } diff --git a/build/bootloader/CMakeFiles/git-data/HEAD b/build/bootloader/CMakeFiles/git-data/HEAD new file mode 100644 index 0000000..cb089cd --- /dev/null +++ b/build/bootloader/CMakeFiles/git-data/HEAD @@ -0,0 +1 @@ +ref: refs/heads/master diff --git a/build/bootloader/CMakeFiles/git-data/grabRef.cmake b/build/bootloader/CMakeFiles/git-data/grabRef.cmake new file mode 100644 index 0000000..1cf33a5 --- /dev/null +++ b/build/bootloader/CMakeFiles/git-data/grabRef.cmake @@ -0,0 +1,50 @@ +# +# Internal file for GetGitRevisionDescription.cmake +# +# Requires CMake 2.6 or newer (uses the 'function' command) +# +# Original Author: +# 2009-2010 Ryan Pavlik +# http://academic.cleardefinition.com +# Iowa State University HCI Graduate Program/VRAC +# +# Copyright Iowa State University 2009-2010. +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http://www.boost.org/LICENSE_1_0.txt) + +set(HEAD_HASH) + +file(READ "/home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024) + +string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS) +set(GIT_DIR "/home/mithras/esp/esp-idf/.git") +# handle git-worktree +if(EXISTS "${GIT_DIR}/commondir") + file(READ "${GIT_DIR}/commondir" GIT_DIR_NEW LIMIT 1024) + string(STRIP "${GIT_DIR_NEW}" GIT_DIR_NEW) + if(NOT IS_ABSOLUTE "${GIT_DIR_NEW}") + get_filename_component(GIT_DIR_NEW ${GIT_DIR}/${GIT_DIR_NEW} ABSOLUTE) + endif() + if(EXISTS "${GIT_DIR_NEW}") + set(GIT_DIR "${GIT_DIR_NEW}") + endif() +endif() +if(HEAD_CONTENTS MATCHES "ref") + # named branch + string(REPLACE "ref: " "" HEAD_REF "${HEAD_CONTENTS}") + if(EXISTS "${GIT_DIR}/${HEAD_REF}") + configure_file("${GIT_DIR}/${HEAD_REF}" "/home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY) + elseif(EXISTS "${GIT_DIR}/logs/${HEAD_REF}") + configure_file("${GIT_DIR}/logs/${HEAD_REF}" "/home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY) + set(HEAD_HASH "${HEAD_REF}") + endif() +else() + # detached HEAD + configure_file("${GIT_DIR}/HEAD" "/home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY) +endif() + +if(NOT HEAD_HASH) + file(READ "/home/mithras/Documents/bakalarka/build/bootloader/CMakeFiles/git-data/head-ref" HEAD_HASH LIMIT 1024) + string(STRIP "${HEAD_HASH}" HEAD_HASH) +endif() diff --git a/build/bootloader/CMakeFiles/git-data/head-ref b/build/bootloader/CMakeFiles/git-data/head-ref new file mode 100644 index 0000000..09fc5bb --- /dev/null +++ b/build/bootloader/CMakeFiles/git-data/head-ref @@ -0,0 +1 @@ +132cc67c03364f5f032aa65c6b88f1f1bf7ecbee diff --git a/build/bootloader/build.ninja b/build/bootloader/build.ninja new file mode 100644 index 0000000..a3dbf98 --- /dev/null +++ b/build/bootloader/build.ninja @@ -0,0 +1,1721 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.10 + +# This file contains all the build statements describing the +# compilation DAG. + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# +# Which is the root file. +# ============================================================================= + +# ============================================================================= +# Project: bootloader +# Configuration: +# ============================================================================= + +############################################# +# Minimal version of Ninja required by this file + +ninja_required_version = 1.5 + +# ============================================================================= +# Include auxiliary files. + + +############################################# +# Include rules file. + +include rules.ninja + + +############################################# +# Utility command for rebuild_cache + +build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader && /usr/bin/cmake -H/home/mithras/esp/esp-idf/components/bootloader/subproject -B/home/mithras/Documents/bakalarka/build/bootloader + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build rebuild_cache: phony CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for edit_cache + +build CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build edit_cache: phony CMakeFiles/edit_cache.util + +############################################# +# Utility command for size-components + +build size-components: phony CMakeFiles/size-components bootloader.elf + +############################################# +# Utility command for size + +build size: phony CMakeFiles/size bootloader.elf +# ============================================================================= +# Object build statements for EXECUTABLE target bootloader.elf + + +############################################# +# Order-only phony target for bootloader.elf + +build cmake_object_order_depends_target_bootloader.elf: phony || _project_elf_src cmake_object_order_depends_target___idf_main cmake_object_order_depends_target___idf_micro-ecc cmake_object_order_depends_target___idf_soc cmake_object_order_depends_target___idf_spi_flash project_elf_src.c +build CMakeFiles/bootloader.elf.dir/project_elf_src.c.obj: C_COMPILER__bootloader.2eelf project_elf_src.c || cmake_object_order_depends_target_bootloader.elf + DEP_FILE = CMakeFiles/bootloader.elf.dir/project_elf_src.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address + INCLUDES = -I/home/mithras/esp/esp-idf/components/esp32/include -Iconfig -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader + OBJECT_DIR = CMakeFiles/bootloader.elf.dir + OBJECT_FILE_DIR = CMakeFiles/bootloader.elf.dir + TARGET_COMPILE_PDB = CMakeFiles/bootloader.elf.dir/ + TARGET_PDB = bootloader.elf.pdb + +# ============================================================================= +# Link build statements for EXECUTABLE target bootloader.elf + + +############################################# +# Link the executable bootloader.elf + +build bootloader.elf: C_EXECUTABLE_LINKER__bootloader.2eelf CMakeFiles/bootloader.elf.dir/project_elf_src.c.obj | esp-idf/soc/libsoc.a esp-idf/log/liblog.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/spi_flash/libspi_flash.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/main/libmain.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/efuse/libefuse.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/log/liblog.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/soc/libsoc.a esp-idf/log/liblog.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/soc/libsoc.a /home/mithras/esp/esp-idf/components/esp32/ld/esp32.peripherals.ld /home/mithras/esp/esp-idf/components/esp_rom/esp32/ld/esp32.rom.ld /home/mithras/esp/esp-idf/components/esp_rom/esp32/ld/esp32.rom.newlib-funcs.ld /home/mithras/esp/esp-idf/components/esp_rom/esp32/ld/esp32.rom.libgcc.ld /home/mithras/esp/esp-idf/components/bootloader/subproject/main/ld/esp32/bootloader.ld /home/mithras/esp/esp-idf/components/bootloader/subproject/main/ld/esp32/bootloader.rom.ld || _project_elf_src esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a + FLAGS = -mlongcalls -Wno-frame-address + LINK_LIBRARIES = esp-idf/soc/libsoc.a esp-idf/log/liblog.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/spi_flash/libspi_flash.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/main/libmain.a -Wl,--cref -Wl,--Map=/home/mithras/Documents/bakalarka/build/bootloader/bootloader.map -fno-rtti -fno-lto esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/efuse/libefuse.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/log/liblog.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/soc/libsoc.a esp-idf/log/liblog.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/soc/libsoc.a -L /home/mithras/esp/esp-idf/components/esp_rom/esp32/ld -T esp32.rom.ld -T esp32.rom.newlib-funcs.ld -T esp32.rom.libgcc.ld -Wl,--gc-sections -L /home/mithras/esp/esp-idf/components/esp32/ld -T esp32.peripherals.ld -L /home/mithras/esp/esp-idf/components/bootloader/subproject/main/ld/esp32 -T bootloader.ld -T bootloader.rom.ld + OBJECT_DIR = CMakeFiles/bootloader.elf.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = CMakeFiles/bootloader.elf.dir/ + TARGET_FILE = bootloader.elf + TARGET_PDB = bootloader.elf.pdb + +############################################# +# Utility command for _project_elf_src + +build _project_elf_src: phony CMakeFiles/_project_elf_src project_elf_src.c + +############################################# +# Utility command for confserver + +build confserver: phony CMakeFiles/confserver + +############################################# +# Utility command for menuconfig + +build menuconfig: phony CMakeFiles/menuconfig + +############################################# +# Utility command for gen_project_binary + +build gen_project_binary: phony CMakeFiles/gen_project_binary .bin_timestamp bootloader.elf + +############################################# +# Utility command for erase_flash + +build erase_flash: phony CMakeFiles/erase_flash + +############################################# +# Utility command for size-files + +build size-files: phony CMakeFiles/size-files bootloader.elf + +############################################# +# Utility command for app + +build app: phony CMakeFiles/app gen_project_binary + +############################################# +# Utility command for monitor + +build monitor: phony CMakeFiles/monitor + +############################################# +# Custom command for CMakeFiles/size-components + +build CMakeFiles/size-components: CUSTOM_COMMAND bootloader.elf || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader && /home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/tools/idf_size.py --archives /home/mithras/Documents/bakalarka/build/bootloader/bootloader.map + +############################################# +# Custom command for CMakeFiles/size + +build CMakeFiles/size: CUSTOM_COMMAND bootloader.elf || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader && /home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/tools/idf_size.py /home/mithras/Documents/bakalarka/build/bootloader/bootloader.map + +############################################# +# Custom command for project_elf_src.c + +build project_elf_src.c: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader && /usr/bin/cmake -E touch /home/mithras/Documents/bakalarka/build/bootloader/project_elf_src.c + DESC = Generating project_elf_src.c + restat = 1 + +############################################# +# Phony custom command for CMakeFiles/_project_elf_src + +build CMakeFiles/_project_elf_src: phony project_elf_src.c + +############################################# +# Custom command for CMakeFiles/confserver + +build CMakeFiles/confserver: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader && /home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --env-file /home/mithras/Documents/bakalarka/build/bootloader/config.env && /home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/tools/kconfig_new/confserver.py --env-file /home/mithras/Documents/bakalarka/build/bootloader/config.env --kconfig /home/mithras/esp/esp-idf/Kconfig --sdkconfig-rename /home/mithras/esp/esp-idf/sdkconfig.rename --config /home/mithras/Documents/bakalarka/sdkconfig + pool = console + +############################################# +# Custom command for CMakeFiles/menuconfig + +build CMakeFiles/menuconfig: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader && /home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --env-file /home/mithras/Documents/bakalarka/build/bootloader/config.env && /home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/tools/kconfig_new/confgen.py --kconfig /home/mithras/esp/esp-idf/Kconfig --sdkconfig-rename /home/mithras/esp/esp-idf/sdkconfig.rename --config /home/mithras/Documents/bakalarka/sdkconfig --env-file /home/mithras/Documents/bakalarka/build/bootloader/config.env --env IDF_TARGET=esp32 --dont-write-deprecated --output config /home/mithras/Documents/bakalarka/sdkconfig && /home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/tools/check_term.py && /usr/bin/cmake -E env COMPONENT_KCONFIGS_SOURCE_FILE=/home/mithras/Documents/bakalarka/build/bootloader/kconfigs.in COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE=/home/mithras/Documents/bakalarka/build/bootloader/kconfigs_projbuild.in IDF_CMAKE=y KCONFIG_CONFIG=/home/mithras/Documents/bakalarka/sdkconfig IDF_TARGET=esp32 /home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/tools/kconfig_new/menuconfig.py /home/mithras/esp/esp-idf/Kconfig && /home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/tools/kconfig_new/confgen.py --kconfig /home/mithras/esp/esp-idf/Kconfig --sdkconfig-rename /home/mithras/esp/esp-idf/sdkconfig.rename --config /home/mithras/Documents/bakalarka/sdkconfig --env-file /home/mithras/Documents/bakalarka/build/bootloader/config.env --env IDF_TARGET=esp32 --output config /home/mithras/Documents/bakalarka/sdkconfig + pool = console + +############################################# +# Phony custom command for CMakeFiles/gen_project_binary + +build CMakeFiles/gen_project_binary: phony .bin_timestamp || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a + +############################################# +# Custom command for .bin_timestamp + +build .bin_timestamp: CUSTOM_COMMAND bootloader.elf || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader && /home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/components/esptool_py/esptool/esptool.py --chip esp32 elf2image --flash_mode dio --flash_freq 40m --flash_size 4MB -o /home/mithras/Documents/bakalarka/build/bootloader/bootloader.bin bootloader.elf && /usr/bin/cmake -E echo "Generated /home/mithras/Documents/bakalarka/build/bootloader/bootloader.bin" && /usr/bin/cmake -E md5sum /home/mithras/Documents/bakalarka/build/bootloader/bootloader.bin > /home/mithras/Documents/bakalarka/build/bootloader/.bin_timestamp + DESC = Generating binary image from built executable + restat = 1 + +############################################# +# Custom command for CMakeFiles/erase_flash + +build CMakeFiles/erase_flash: CUSTOM_COMMAND + COMMAND = cd /home/mithras/esp/esp-idf/components/esptool_py && /usr/bin/cmake -D IDF_PATH="/home/mithras/esp/esp-idf" -D ESPTOOLPY="/home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/components/esptool_py/esptool/esptool.py --chip esp32" -D ESPTOOL_ARGS="erase_flash" -P run_esptool.cmake + pool = console + +############################################# +# Custom command for CMakeFiles/size-files + +build CMakeFiles/size-files: CUSTOM_COMMAND bootloader.elf || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader && /home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/tools/idf_size.py --files /home/mithras/Documents/bakalarka/build/bootloader/bootloader.map + +############################################# +# Phony custom command for CMakeFiles/app + +build CMakeFiles/app: phony || _project_elf_src bootloader.elf esp-idf/bootloader_support/libbootloader_support.a esp-idf/efuse/libefuse.a esp-idf/log/liblog.a esp-idf/main/libmain.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a gen_project_binary + +############################################# +# Custom command for CMakeFiles/monitor + +build CMakeFiles/monitor: CUSTOM_COMMAND + COMMAND = cd /home/mithras/esp/esp-idf/components/esptool_py && /usr/bin/cmake -D IDF_PATH="/home/mithras/esp/esp-idf" -D IDF_MONITOR="/home/mithras/esp/esp-idf/tools/idf_monitor.py" -D ELF_FILE="bootloader.elf" -D WORKING_DIRECTORY="/home/mithras/Documents/bakalarka/build/bootloader" -P run_idf_monitor.cmake + pool = console +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/components/bootloader/subproject/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf && /usr/bin/cmake -H/home/mithras/esp/esp-idf/components/bootloader/subproject -B/home/mithras/Documents/bakalarka/build/bootloader + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/rebuild_cache: phony esp-idf/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for edit_cache + +build esp-idf/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/edit_cache: phony esp-idf/CMakeFiles/edit_cache.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp32/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esp32 && /usr/bin/cmake -H/home/mithras/esp/esp-idf/components/bootloader/subproject -B/home/mithras/Documents/bakalarka/build/bootloader + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/esp32/rebuild_cache: phony esp-idf/esp32/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for edit_cache + +build esp-idf/esp32/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esp32 && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/esp32/edit_cache: phony esp-idf/esp32/CMakeFiles/edit_cache.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/soc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc && /usr/bin/cmake -H/home/mithras/esp/esp-idf/components/bootloader/subproject -B/home/mithras/Documents/bakalarka/build/bootloader + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/soc/rebuild_cache: phony esp-idf/soc/CMakeFiles/rebuild_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_soc + + +############################################# +# Order-only phony target for __idf_soc + +build cmake_object_order_depends_target___idf_soc: phony || cmake_object_order_depends_target_soc_esp32 +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/memory_layout_utils.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/memory_layout_utils.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/memory_layout_utils.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/lldesc.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/lldesc.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/lldesc.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rmt_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/rmt_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rmt_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rtc_io_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/rtc_io_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rtc_io_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/dac_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/dac_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/dac_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/adc_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/adc_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/adc_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/spi_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal_iram.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/spi_hal_iram.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal_iram.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/spi_slave_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal_iram.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/spi_slave_hal_iram.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal_iram.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/touch_sensor_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/touch_sensor_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/touch_sensor_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/soc_include_legacy_warn.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/soc_include_legacy_warn.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/soc_include_legacy_warn.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/pcnt_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/pcnt_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/pcnt_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2s_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/i2s_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2s_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sigmadelta_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/sigmadelta_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sigmadelta_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/timer_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/timer_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/timer_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/ledc_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal_iram.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/ledc_hal_iram.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal_iram.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/i2c_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal_iram.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/i2c_hal_iram.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal_iram.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/gpio_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/gpio_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/gpio_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/uart_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal_iram.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/uart_hal_iram.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal_iram.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/spi_flash_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal_iram.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/spi_flash_hal_iram.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal_iram.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/compare_set.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/compare_set.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/compare_set.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/can_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/can_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/can_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/mcpwm_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/mcpwm_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/mcpwm_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sdio_slave_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/sdio_slave_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sdio_slave_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/brownout_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/esp32/brownout_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/brownout_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/cpu_util.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/esp32/cpu_util.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/cpu_util.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_clk.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk_init.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_clk_init.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk_init.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_init.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_init.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_init.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_pm.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_pm.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_pm.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_sleep.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_sleep.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_sleep.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_time.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_time.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_time.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_wdt.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_wdt.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_wdt.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/sdio_slave_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/esp32/sdio_slave_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/sdio_slave_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/soc_memory_layout.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/esp32/soc_memory_layout.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/soc_memory_layout.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/touch_sensor_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/esp32/touch_sensor_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/touch_sensor_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_soc + + +############################################# +# Link the static library esp-idf/soc/libsoc.a + +build esp-idf/soc/libsoc.a: C_STATIC_LIBRARY_LINKER____idf_soc esp-idf/soc/CMakeFiles/__idf_soc.dir/src/memory_layout_utils.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/lldesc.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rmt_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rtc_io_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/dac_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/adc_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal_iram.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal_iram.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/touch_sensor_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/soc_include_legacy_warn.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/pcnt_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2s_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sigmadelta_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/timer_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal_iram.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal_iram.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/gpio_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal_iram.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal_iram.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/compare_set.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/can_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/mcpwm_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sdio_slave_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/brownout_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/cpu_util.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk_init.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_init.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_pm.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_sleep.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_time.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_wdt.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/sdio_slave_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/soc_memory_layout.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/touch_sensor_hal.c.obj || esp-idf/soc/soc/esp32/libsoc_esp32.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_FILE = esp-idf/soc/libsoc.a + TARGET_PDB = esp-idf/soc/libsoc.pdb + +############################################# +# Utility command for edit_cache + +build esp-idf/soc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/soc/edit_cache: phony esp-idf/soc/CMakeFiles/edit_cache.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/components/soc/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/soc/src/esp32/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc/src/esp32 && /usr/bin/cmake -H/home/mithras/esp/esp-idf/components/bootloader/subproject -B/home/mithras/Documents/bakalarka/build/bootloader + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/soc/src/esp32/rebuild_cache: phony esp-idf/soc/src/esp32/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for edit_cache + +build esp-idf/soc/src/esp32/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc/src/esp32 && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/soc/src/esp32/edit_cache: phony esp-idf/soc/src/esp32/CMakeFiles/edit_cache.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/components/soc/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/soc/soc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc/soc && /usr/bin/cmake -H/home/mithras/esp/esp-idf/components/bootloader/subproject -B/home/mithras/Documents/bakalarka/build/bootloader + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/soc/soc/rebuild_cache: phony esp-idf/soc/soc/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for edit_cache + +build esp-idf/soc/soc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc/soc && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/soc/soc/edit_cache: phony esp-idf/soc/soc/CMakeFiles/edit_cache.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/components/soc/soc/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/soc/soc/esp32/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc/soc/esp32 && /usr/bin/cmake -H/home/mithras/esp/esp-idf/components/bootloader/subproject -B/home/mithras/Documents/bakalarka/build/bootloader + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/soc/soc/esp32/rebuild_cache: phony esp-idf/soc/soc/esp32/CMakeFiles/rebuild_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target soc_esp32 + + +############################################# +# Order-only phony target for soc_esp32 + +build cmake_object_order_depends_target_soc_esp32: phony || cmake_object_order_depends_target___idf_log +build esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/adc_periph.c.obj: C_COMPILER__soc_esp32 /home/mithras/esp/esp-idf/components/soc/soc/esp32/adc_periph.c || cmake_object_order_depends_target_soc_esp32 + DEP_FILE = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/adc_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include + OBJECT_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + OBJECT_FILE_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + TARGET_COMPILE_PDB = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/soc_esp32.pdb + TARGET_PDB = esp-idf/soc/soc/esp32/libsoc_esp32.pdb +build esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/dac_periph.c.obj: C_COMPILER__soc_esp32 /home/mithras/esp/esp-idf/components/soc/soc/esp32/dac_periph.c || cmake_object_order_depends_target_soc_esp32 + DEP_FILE = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/dac_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include + OBJECT_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + OBJECT_FILE_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + TARGET_COMPILE_PDB = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/soc_esp32.pdb + TARGET_PDB = esp-idf/soc/soc/esp32/libsoc_esp32.pdb +build esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/gpio_periph.c.obj: C_COMPILER__soc_esp32 /home/mithras/esp/esp-idf/components/soc/soc/esp32/gpio_periph.c || cmake_object_order_depends_target_soc_esp32 + DEP_FILE = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/gpio_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include + OBJECT_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + OBJECT_FILE_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + TARGET_COMPILE_PDB = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/soc_esp32.pdb + TARGET_PDB = esp-idf/soc/soc/esp32/libsoc_esp32.pdb +build esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_io_periph.c.obj: C_COMPILER__soc_esp32 /home/mithras/esp/esp-idf/components/soc/soc/esp32/rtc_io_periph.c || cmake_object_order_depends_target_soc_esp32 + DEP_FILE = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_io_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include + OBJECT_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + OBJECT_FILE_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + TARGET_COMPILE_PDB = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/soc_esp32.pdb + TARGET_PDB = esp-idf/soc/soc/esp32/libsoc_esp32.pdb +build esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_periph.c.obj: C_COMPILER__soc_esp32 /home/mithras/esp/esp-idf/components/soc/soc/esp32/rtc_periph.c || cmake_object_order_depends_target_soc_esp32 + DEP_FILE = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include + OBJECT_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + OBJECT_FILE_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + TARGET_COMPILE_PDB = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/soc_esp32.pdb + TARGET_PDB = esp-idf/soc/soc/esp32/libsoc_esp32.pdb +build esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdio_slave_periph.c.obj: C_COMPILER__soc_esp32 /home/mithras/esp/esp-idf/components/soc/soc/esp32/sdio_slave_periph.c || cmake_object_order_depends_target_soc_esp32 + DEP_FILE = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdio_slave_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include + OBJECT_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + OBJECT_FILE_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + TARGET_COMPILE_PDB = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/soc_esp32.pdb + TARGET_PDB = esp-idf/soc/soc/esp32/libsoc_esp32.pdb +build esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdmmc_periph.c.obj: C_COMPILER__soc_esp32 /home/mithras/esp/esp-idf/components/soc/soc/esp32/sdmmc_periph.c || cmake_object_order_depends_target_soc_esp32 + DEP_FILE = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdmmc_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include + OBJECT_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + OBJECT_FILE_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + TARGET_COMPILE_PDB = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/soc_esp32.pdb + TARGET_PDB = esp-idf/soc/soc/esp32/libsoc_esp32.pdb +build esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/interrupts.c.obj: C_COMPILER__soc_esp32 /home/mithras/esp/esp-idf/components/soc/soc/esp32/interrupts.c || cmake_object_order_depends_target_soc_esp32 + DEP_FILE = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/interrupts.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include + OBJECT_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + OBJECT_FILE_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + TARGET_COMPILE_PDB = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/soc_esp32.pdb + TARGET_PDB = esp-idf/soc/soc/esp32/libsoc_esp32.pdb +build esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/spi_periph.c.obj: C_COMPILER__soc_esp32 /home/mithras/esp/esp-idf/components/soc/soc/esp32/spi_periph.c || cmake_object_order_depends_target_soc_esp32 + DEP_FILE = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/spi_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include + OBJECT_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + OBJECT_FILE_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + TARGET_COMPILE_PDB = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/soc_esp32.pdb + TARGET_PDB = esp-idf/soc/soc/esp32/libsoc_esp32.pdb +build esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/ledc_periph.c.obj: C_COMPILER__soc_esp32 /home/mithras/esp/esp-idf/components/soc/soc/esp32/ledc_periph.c || cmake_object_order_depends_target_soc_esp32 + DEP_FILE = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/ledc_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include + OBJECT_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + OBJECT_FILE_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + TARGET_COMPILE_PDB = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/soc_esp32.pdb + TARGET_PDB = esp-idf/soc/soc/esp32/libsoc_esp32.pdb +build esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2s_periph.c.obj: C_COMPILER__soc_esp32 /home/mithras/esp/esp-idf/components/soc/soc/esp32/i2s_periph.c || cmake_object_order_depends_target_soc_esp32 + DEP_FILE = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2s_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include + OBJECT_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + OBJECT_FILE_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + TARGET_COMPILE_PDB = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/soc_esp32.pdb + TARGET_PDB = esp-idf/soc/soc/esp32/libsoc_esp32.pdb +build esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2c_periph.c.obj: C_COMPILER__soc_esp32 /home/mithras/esp/esp-idf/components/soc/soc/esp32/i2c_periph.c || cmake_object_order_depends_target_soc_esp32 + DEP_FILE = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2c_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include + OBJECT_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + OBJECT_FILE_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + TARGET_COMPILE_PDB = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/soc_esp32.pdb + TARGET_PDB = esp-idf/soc/soc/esp32/libsoc_esp32.pdb +build esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/uart_periph.c.obj: C_COMPILER__soc_esp32 /home/mithras/esp/esp-idf/components/soc/soc/esp32/uart_periph.c || cmake_object_order_depends_target_soc_esp32 + DEP_FILE = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/uart_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include + OBJECT_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + OBJECT_FILE_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + TARGET_COMPILE_PDB = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/soc_esp32.pdb + TARGET_PDB = esp-idf/soc/soc/esp32/libsoc_esp32.pdb +build esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/touch_sensor_periph.c.obj: C_COMPILER__soc_esp32 /home/mithras/esp/esp-idf/components/soc/soc/esp32/touch_sensor_periph.c || cmake_object_order_depends_target_soc_esp32 + DEP_FILE = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/touch_sensor_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include + OBJECT_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + OBJECT_FILE_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + TARGET_COMPILE_PDB = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/soc_esp32.pdb + TARGET_PDB = esp-idf/soc/soc/esp32/libsoc_esp32.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target soc_esp32 + + +############################################# +# Link the static library esp-idf/soc/soc/esp32/libsoc_esp32.a + +build esp-idf/soc/soc/esp32/libsoc_esp32.a: C_STATIC_LIBRARY_LINKER__soc_esp32 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/adc_periph.c.obj esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/dac_periph.c.obj esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/gpio_periph.c.obj esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_io_periph.c.obj esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_periph.c.obj esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdio_slave_periph.c.obj esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdmmc_periph.c.obj esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/interrupts.c.obj esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/spi_periph.c.obj esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/ledc_periph.c.obj esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2s_periph.c.obj esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2c_periph.c.obj esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/uart_periph.c.obj esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/touch_sensor_periph.c.obj || esp-idf/log/liblog.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/soc_esp32.pdb + TARGET_FILE = esp-idf/soc/soc/esp32/libsoc_esp32.a + TARGET_PDB = esp-idf/soc/soc/esp32/libsoc_esp32.pdb + +############################################# +# Utility command for edit_cache + +build esp-idf/soc/soc/esp32/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc/soc/esp32 && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/soc/soc/esp32/edit_cache: phony esp-idf/soc/soc/esp32/CMakeFiles/edit_cache.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/xtensa/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/xtensa && /usr/bin/cmake -H/home/mithras/esp/esp-idf/components/bootloader/subproject -B/home/mithras/Documents/bakalarka/build/bootloader + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/xtensa/rebuild_cache: phony esp-idf/xtensa/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for edit_cache + +build esp-idf/xtensa/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/xtensa && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/xtensa/edit_cache: phony esp-idf/xtensa/CMakeFiles/edit_cache.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_common/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esp_common && /usr/bin/cmake -H/home/mithras/esp/esp-idf/components/bootloader/subproject -B/home/mithras/Documents/bakalarka/build/bootloader + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/esp_common/rebuild_cache: phony esp-idf/esp_common/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esp_common && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/esp_common/edit_cache: phony esp-idf/esp_common/CMakeFiles/edit_cache.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_rom/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esp_rom && /usr/bin/cmake -H/home/mithras/esp/esp-idf/components/bootloader/subproject -B/home/mithras/Documents/bakalarka/build/bootloader + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/esp_rom/rebuild_cache: phony esp-idf/esp_rom/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_rom/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esp_rom && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/esp_rom/edit_cache: phony esp-idf/esp_rom/CMakeFiles/edit_cache.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/log/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/log && /usr/bin/cmake -H/home/mithras/esp/esp-idf/components/bootloader/subproject -B/home/mithras/Documents/bakalarka/build/bootloader + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/log/rebuild_cache: phony esp-idf/log/CMakeFiles/rebuild_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_log + + +############################################# +# Order-only phony target for __idf_log + +build cmake_object_order_depends_target___idf_log: phony +build esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj: C_COMPILER____idf_log /home/mithras/esp/esp-idf/components/log/log.c || cmake_object_order_depends_target___idf_log + DEP_FILE = esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/log/CMakeFiles/__idf_log.dir + OBJECT_FILE_DIR = esp-idf/log/CMakeFiles/__idf_log.dir + TARGET_COMPILE_PDB = esp-idf/log/CMakeFiles/__idf_log.dir/__idf_log.pdb + TARGET_PDB = esp-idf/log/liblog.pdb +build esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj: C_COMPILER____idf_log /home/mithras/esp/esp-idf/components/log/log_buffers.c || cmake_object_order_depends_target___idf_log + DEP_FILE = esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/log/CMakeFiles/__idf_log.dir + OBJECT_FILE_DIR = esp-idf/log/CMakeFiles/__idf_log.dir + TARGET_COMPILE_PDB = esp-idf/log/CMakeFiles/__idf_log.dir/__idf_log.pdb + TARGET_PDB = esp-idf/log/liblog.pdb +build esp-idf/log/CMakeFiles/__idf_log.dir/log_noos.c.obj: C_COMPILER____idf_log /home/mithras/esp/esp-idf/components/log/log_noos.c || cmake_object_order_depends_target___idf_log + DEP_FILE = esp-idf/log/CMakeFiles/__idf_log.dir/log_noos.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/log/CMakeFiles/__idf_log.dir + OBJECT_FILE_DIR = esp-idf/log/CMakeFiles/__idf_log.dir + TARGET_COMPILE_PDB = esp-idf/log/CMakeFiles/__idf_log.dir/__idf_log.pdb + TARGET_PDB = esp-idf/log/liblog.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_log + + +############################################# +# Link the static library esp-idf/log/liblog.a + +build esp-idf/log/liblog.a: C_STATIC_LIBRARY_LINKER____idf_log esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/log_noos.c.obj + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/log/CMakeFiles/__idf_log.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/log/CMakeFiles/__idf_log.dir/__idf_log.pdb + TARGET_FILE = esp-idf/log/liblog.a + TARGET_PDB = esp-idf/log/liblog.pdb + +############################################# +# Utility command for edit_cache + +build esp-idf/log/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/log && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/log/edit_cache: phony esp-idf/log/CMakeFiles/edit_cache.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/partition_table/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/partition_table && /usr/bin/cmake -H/home/mithras/esp/esp-idf/components/bootloader/subproject -B/home/mithras/Documents/bakalarka/build/bootloader + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/partition_table/rebuild_cache: phony esp-idf/partition_table/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for edit_cache + +build esp-idf/partition_table/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/partition_table && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/partition_table/edit_cache: phony esp-idf/partition_table/CMakeFiles/edit_cache.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/bootloader/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/bootloader && /usr/bin/cmake -H/home/mithras/esp/esp-idf/components/bootloader/subproject -B/home/mithras/Documents/bakalarka/build/bootloader + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/bootloader/rebuild_cache: phony esp-idf/bootloader/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for edit_cache + +build esp-idf/bootloader/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/bootloader && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/bootloader/edit_cache: phony esp-idf/bootloader/CMakeFiles/edit_cache.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/micro-ecc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/micro-ecc && /usr/bin/cmake -H/home/mithras/esp/esp-idf/components/bootloader/subproject -B/home/mithras/Documents/bakalarka/build/bootloader + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/micro-ecc/rebuild_cache: phony esp-idf/micro-ecc/CMakeFiles/rebuild_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_micro-ecc + + +############################################# +# Order-only phony target for __idf_micro-ecc + +build cmake_object_order_depends_target___idf_micro-ecc: phony || cmake_object_order_depends_target___idf_soc +build esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/micro-ecc/uECC.c.obj: C_COMPILER____idf_micro-ecc /home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/uECC.c || cmake_object_order_depends_target___idf_micro-ecc + DEP_FILE = esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/micro-ecc/uECC.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include + OBJECT_DIR = esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir + OBJECT_FILE_DIR = esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/micro-ecc + TARGET_COMPILE_PDB = esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/__idf_micro-ecc.pdb + TARGET_PDB = esp-idf/micro-ecc/libmicro-ecc.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_micro-ecc + + +############################################# +# Link the static library esp-idf/micro-ecc/libmicro-ecc.a + +build esp-idf/micro-ecc/libmicro-ecc.a: C_STATIC_LIBRARY_LINKER____idf_micro-ecc esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/micro-ecc/uECC.c.obj || esp-idf/soc/libsoc.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/__idf_micro-ecc.pdb + TARGET_FILE = esp-idf/micro-ecc/libmicro-ecc.a + TARGET_PDB = esp-idf/micro-ecc/libmicro-ecc.pdb + +############################################# +# Utility command for edit_cache + +build esp-idf/micro-ecc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/micro-ecc && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/micro-ecc/edit_cache: phony esp-idf/micro-ecc/CMakeFiles/edit_cache.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/spi_flash/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/spi_flash && /usr/bin/cmake -H/home/mithras/esp/esp-idf/components/bootloader/subproject -B/home/mithras/Documents/bakalarka/build/bootloader + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/spi_flash/rebuild_cache: phony esp-idf/spi_flash/CMakeFiles/rebuild_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_spi_flash + + +############################################# +# Order-only phony target for __idf_spi_flash + +build cmake_object_order_depends_target___idf_spi_flash: phony || cmake_object_order_depends_target___idf_efuse +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32/spi_flash_rom_patch.c.obj: C_COMPILER____idf_spi_flash /home/mithras/esp/esp-idf/components/spi_flash/esp32/spi_flash_rom_patch.c || cmake_object_order_depends_target___idf_spi_flash + DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32/spi_flash_rom_patch.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/private_include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32 + TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb + TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_spi_flash + + +############################################# +# Link the static library esp-idf/spi_flash/libspi_flash.a + +build esp-idf/spi_flash/libspi_flash.a: C_STATIC_LIBRARY_LINKER____idf_spi_flash esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32/spi_flash_rom_patch.c.obj || esp-idf/efuse/libefuse.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb + TARGET_FILE = esp-idf/spi_flash/libspi_flash.a + TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb + +############################################# +# Utility command for edit_cache + +build esp-idf/spi_flash/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/spi_flash && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/spi_flash/edit_cache: phony esp-idf/spi_flash/CMakeFiles/edit_cache.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for efuse_common_table + +build esp-idf/efuse/efuse_common_table: phony esp-idf/efuse/CMakeFiles/efuse_common_table +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_efuse + + +############################################# +# Order-only phony target for __idf_efuse + +build cmake_object_order_depends_target___idf_efuse: phony || cmake_object_order_depends_target___idf_bootloader_support +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj: C_COMPILER____idf_efuse /home/mithras/esp/esp-idf/components/efuse/esp32/esp_efuse_table.c || cmake_object_order_depends_target___idf_efuse + DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/private_include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32 + TARGET_COMPILE_PDB = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/__idf_efuse.pdb + TARGET_PDB = esp-idf/efuse/libefuse.pdb +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_api.c.obj: C_COMPILER____idf_efuse /home/mithras/esp/esp-idf/components/efuse/src/esp32/esp_efuse_api.c || cmake_object_order_depends_target___idf_efuse + DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_api.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/private_include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/__idf_efuse.pdb + TARGET_PDB = esp-idf/efuse/libefuse.pdb +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse /home/mithras/esp/esp-idf/components/efuse/src/esp32/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse + DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_fields.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/private_include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/__idf_efuse.pdb + TARGET_PDB = esp-idf/efuse/libefuse.pdb +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse /home/mithras/esp/esp-idf/components/efuse/src/esp32/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse + DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_utility.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/private_include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/__idf_efuse.pdb + TARGET_PDB = esp-idf/efuse/libefuse.pdb +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj: C_COMPILER____idf_efuse /home/mithras/esp/esp-idf/components/efuse/src/esp_efuse_api.c || cmake_object_order_depends_target___idf_efuse + DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/private_include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src + TARGET_COMPILE_PDB = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/__idf_efuse.pdb + TARGET_PDB = esp-idf/efuse/libefuse.pdb +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse /home/mithras/esp/esp-idf/components/efuse/src/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse + DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/private_include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src + TARGET_COMPILE_PDB = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/__idf_efuse.pdb + TARGET_PDB = esp-idf/efuse/libefuse.pdb +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse /home/mithras/esp/esp-idf/components/efuse/src/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse + DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/private_include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src + TARGET_COMPILE_PDB = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/__idf_efuse.pdb + TARGET_PDB = esp-idf/efuse/libefuse.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_efuse + + +############################################# +# Link the static library esp-idf/efuse/libefuse.a + +build esp-idf/efuse/libefuse.a: C_STATIC_LIBRARY_LINKER____idf_efuse esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_api.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_fields.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_utility.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj || esp-idf/bootloader_support/libbootloader_support.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/__idf_efuse.pdb + TARGET_FILE = esp-idf/efuse/libefuse.a + TARGET_PDB = esp-idf/efuse/libefuse.pdb + +############################################# +# Utility command for efuse_custom_table + +build esp-idf/efuse/efuse_custom_table: phony + +############################################# +# Utility command for rebuild_cache + +build esp-idf/efuse/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/efuse && /usr/bin/cmake -H/home/mithras/esp/esp-idf/components/bootloader/subproject -B/home/mithras/Documents/bakalarka/build/bootloader + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/efuse/rebuild_cache: phony esp-idf/efuse/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for show_efuse_table + +build esp-idf/efuse/show_efuse_table: phony esp-idf/efuse/CMakeFiles/show_efuse_table + +############################################# +# Utility command for efuse_test_table + +build esp-idf/efuse/efuse_test_table: phony esp-idf/efuse/CMakeFiles/efuse_test_table + +############################################# +# Utility command for edit_cache + +build esp-idf/efuse/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/efuse && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/efuse/edit_cache: phony esp-idf/efuse/CMakeFiles/edit_cache.util + +############################################# +# Custom command for esp-idf/efuse/CMakeFiles/efuse_common_table + +build esp-idf/efuse/CMakeFiles/efuse_common_table: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/efuse && /home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/components/efuse/efuse_table_gen.py /home/mithras/esp/esp-idf/components/efuse/esp32/esp_efuse_table.csv -t esp32 --max_blk_len 192 + +############################################# +# Custom command for esp-idf/efuse/CMakeFiles/show_efuse_table + +build esp-idf/efuse/CMakeFiles/show_efuse_table: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/efuse && /home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/components/efuse/efuse_table_gen.py /home/mithras/esp/esp-idf/components/efuse/esp32/esp_efuse_table.csv -t esp32 --max_blk_len 192 --info + +############################################# +# Custom command for esp-idf/efuse/CMakeFiles/efuse_test_table + +build esp-idf/efuse/CMakeFiles/efuse_test_table: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/efuse && /home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/components/efuse/efuse_table_gen.py /home/mithras/esp/esp-idf/components/efuse/test/esp_efuse_test_table.csv -t esp32 --max_blk_len 192 +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/bootloader_support/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/bootloader_support && /usr/bin/cmake -H/home/mithras/esp/esp-idf/components/bootloader/subproject -B/home/mithras/Documents/bakalarka/build/bootloader + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/bootloader_support/rebuild_cache: phony esp-idf/bootloader_support/CMakeFiles/rebuild_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_bootloader_support + + +############################################# +# Order-only phony target for __idf_bootloader_support + +build cmake_object_order_depends_target___idf_bootloader_support: phony || cmake_object_order_depends_target___idf_micro-ecc cmake_object_order_depends_target___idf_soc +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock.c.obj: C_COMPILER____idf_bootloader_support /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_clock.c || cmake_object_order_depends_target___idf_bootloader_support + DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include + OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src + TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb + TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj: C_COMPILER____idf_bootloader_support /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_common.c || cmake_object_order_depends_target___idf_bootloader_support + DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include + OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src + TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb + TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash.c.obj: C_COMPILER____idf_bootloader_support /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_flash.c || cmake_object_order_depends_target___idf_bootloader_support + DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include + OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src + TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb + TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj: C_COMPILER____idf_bootloader_support /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_random.c || cmake_object_order_depends_target___idf_bootloader_support + DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include + OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src + TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb + TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj: C_COMPILER____idf_bootloader_support /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_utility.c || cmake_object_order_depends_target___idf_bootloader_support + DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include + OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src + TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb + TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj: C_COMPILER____idf_bootloader_support /home/mithras/esp/esp-idf/components/bootloader_support/src/esp_image_format.c || cmake_object_order_depends_target___idf_bootloader_support + DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include + OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src + TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb + TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj: C_COMPILER____idf_bootloader_support /home/mithras/esp/esp-idf/components/bootloader_support/src/flash_partitions.c || cmake_object_order_depends_target___idf_bootloader_support + DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include + OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src + TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb + TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_qio_mode.c.obj: C_COMPILER____idf_bootloader_support /home/mithras/esp/esp-idf/components/bootloader_support/src/flash_qio_mode.c || cmake_object_order_depends_target___idf_bootloader_support + DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_qio_mode.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include + OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src + TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb + TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash_config_esp32.c.obj: C_COMPILER____idf_bootloader_support /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_flash_config_esp32.c || cmake_object_order_depends_target___idf_bootloader_support + DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash_config_esp32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include + OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src + TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb + TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse_esp32.c.obj: C_COMPILER____idf_bootloader_support /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_efuse_esp32.c || cmake_object_order_depends_target___idf_bootloader_support + DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse_esp32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include + OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src + TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb + TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj: C_COMPILER____idf_bootloader_support /home/mithras/esp/esp-idf/components/bootloader_support/src/flash_encrypt.c || cmake_object_order_depends_target___idf_bootloader_support + DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include + OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src + TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb + TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj: C_COMPILER____idf_bootloader_support /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_init.c || cmake_object_order_depends_target___idf_bootloader_support + DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include + OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src + TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb + TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_sha.c.obj: C_COMPILER____idf_bootloader_support /home/mithras/esp/esp-idf/components/bootloader_support/src/esp32/bootloader_sha.c || cmake_object_order_depends_target___idf_bootloader_support + DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_sha.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include + OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb + TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/flash_encrypt.c.obj: C_COMPILER____idf_bootloader_support /home/mithras/esp/esp-idf/components/bootloader_support/src/esp32/flash_encrypt.c || cmake_object_order_depends_target___idf_bootloader_support + DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/flash_encrypt.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include + OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb + TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/secure_boot_signatures.c.obj: C_COMPILER____idf_bootloader_support /home/mithras/esp/esp-idf/components/bootloader_support/src/esp32/secure_boot_signatures.c || cmake_object_order_depends_target___idf_bootloader_support + DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/secure_boot_signatures.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include + OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb + TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/secure_boot.c.obj: C_COMPILER____idf_bootloader_support /home/mithras/esp/esp-idf/components/bootloader_support/src/esp32/secure_boot.c || cmake_object_order_depends_target___idf_bootloader_support + DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/secure_boot.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include + OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb + TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_esp32.c.obj: C_COMPILER____idf_bootloader_support /home/mithras/esp/esp-idf/components/bootloader_support/src/esp32/bootloader_esp32.c || cmake_object_order_depends_target___idf_bootloader_support + DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_esp32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include + OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb + TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_bootloader_support + + +############################################# +# Link the static library esp-idf/bootloader_support/libbootloader_support.a + +build esp-idf/bootloader_support/libbootloader_support.a: C_STATIC_LIBRARY_LINKER____idf_bootloader_support esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_qio_mode.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash_config_esp32.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse_esp32.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_sha.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/flash_encrypt.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/secure_boot_signatures.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/secure_boot.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_esp32.c.obj || esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb + TARGET_FILE = esp-idf/bootloader_support/libbootloader_support.a + TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb + +############################################# +# Utility command for edit_cache + +build esp-idf/bootloader_support/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/bootloader_support && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/bootloader_support/edit_cache: phony esp-idf/bootloader_support/CMakeFiles/edit_cache.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esptool_py/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esptool_py && /usr/bin/cmake -H/home/mithras/esp/esp-idf/components/bootloader/subproject -B/home/mithras/Documents/bakalarka/build/bootloader + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/esptool_py/rebuild_cache: phony esp-idf/esptool_py/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for edit_cache + +build esp-idf/esptool_py/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esptool_py && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/esptool_py/edit_cache: phony esp-idf/esptool_py/CMakeFiles/edit_cache.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for rebuild_cache + +build esp-idf/main/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/main && /usr/bin/cmake -H/home/mithras/esp/esp-idf/components/bootloader/subproject -B/home/mithras/Documents/bakalarka/build/bootloader + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/main/rebuild_cache: phony esp-idf/main/CMakeFiles/rebuild_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_main + + +############################################# +# Order-only phony target for __idf_main + +build cmake_object_order_depends_target___idf_main: phony || cmake_object_order_depends_target___idf_micro-ecc cmake_object_order_depends_target___idf_soc cmake_object_order_depends_target___idf_spi_flash +build esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj: C_COMPILER____idf_main /home/mithras/esp/esp-idf/components/bootloader/subproject/main/bootloader_start.c || cmake_object_order_depends_target___idf_main + DEP_FILE = esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include + OBJECT_DIR = esp-idf/main/CMakeFiles/__idf_main.dir + OBJECT_FILE_DIR = esp-idf/main/CMakeFiles/__idf_main.dir + TARGET_COMPILE_PDB = esp-idf/main/CMakeFiles/__idf_main.dir/__idf_main.pdb + TARGET_PDB = esp-idf/main/libmain.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_main + + +############################################# +# Link the static library esp-idf/main/libmain.a + +build esp-idf/main/libmain.a: C_STATIC_LIBRARY_LINKER____idf_main esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj || esp-idf/micro-ecc/libmicro-ecc.a esp-idf/soc/libsoc.a esp-idf/spi_flash/libspi_flash.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/main/CMakeFiles/__idf_main.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/main/CMakeFiles/__idf_main.dir/__idf_main.pdb + TARGET_FILE = esp-idf/main/libmain.a + TARGET_PDB = esp-idf/main/libmain.pdb + +############################################# +# Utility command for edit_cache + +build esp-idf/main/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/main && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/main/edit_cache: phony esp-idf/main/CMakeFiles/edit_cache.util +# ============================================================================= +# Target aliases. + +build __idf_bootloader_support: phony esp-idf/bootloader_support/libbootloader_support.a +build __idf_efuse: phony esp-idf/efuse/libefuse.a +build __idf_log: phony esp-idf/log/liblog.a +build __idf_main: phony esp-idf/main/libmain.a +build __idf_micro-ecc: phony esp-idf/micro-ecc/libmicro-ecc.a +build __idf_soc: phony esp-idf/soc/libsoc.a +build __idf_spi_flash: phony esp-idf/spi_flash/libspi_flash.a +build efuse_common_table: phony esp-idf/efuse/efuse_common_table +build efuse_custom_table: phony esp-idf/efuse/efuse_custom_table +build efuse_test_table: phony esp-idf/efuse/efuse_test_table +build libbootloader_support.a: phony esp-idf/bootloader_support/libbootloader_support.a +build libefuse.a: phony esp-idf/efuse/libefuse.a +build liblog.a: phony esp-idf/log/liblog.a +build libmain.a: phony esp-idf/main/libmain.a +build libmicro-ecc.a: phony esp-idf/micro-ecc/libmicro-ecc.a +build libsoc.a: phony esp-idf/soc/libsoc.a +build libsoc_esp32.a: phony esp-idf/soc/soc/esp32/libsoc_esp32.a +build libspi_flash.a: phony esp-idf/spi_flash/libspi_flash.a +build show_efuse_table: phony esp-idf/efuse/show_efuse_table +build soc_esp32: phony esp-idf/soc/soc/esp32/libsoc_esp32.a +# ============================================================================= +# Folder targets. + +# ============================================================================= +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/bootloader/esp-idf + +build esp-idf/all: phony esp-idf/esp32/all esp-idf/soc/all esp-idf/xtensa/all esp-idf/esp_common/all esp-idf/esp_rom/all esp-idf/log/all esp-idf/partition_table/all esp-idf/bootloader/all esp-idf/micro-ecc/all esp-idf/spi_flash/all esp-idf/efuse/all esp-idf/bootloader_support/all esp-idf/esptool_py/all esp-idf/main/all +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/bootloader + +build esp-idf/bootloader/all: phony +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/bootloader_support + +build esp-idf/bootloader_support/all: phony __idf_bootloader_support +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/efuse + +build esp-idf/efuse/all: phony __idf_efuse +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esp32 + +build esp-idf/esp32/all: phony +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esp_common + +build esp-idf/esp_common/all: phony +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esp_rom + +build esp-idf/esp_rom/all: phony +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esptool_py + +build esp-idf/esptool_py/all: phony +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/log + +build esp-idf/log/all: phony __idf_log +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/main + +build esp-idf/main/all: phony __idf_main +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/micro-ecc + +build esp-idf/micro-ecc/all: phony __idf_micro-ecc +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/partition_table + +build esp-idf/partition_table/all: phony +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc + +build esp-idf/soc/all: phony __idf_soc esp-idf/soc/src/esp32/all esp-idf/soc/soc/all +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc/soc + +build esp-idf/soc/soc/all: phony esp-idf/soc/soc/esp32/all +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc/soc/esp32 + +build esp-idf/soc/soc/esp32/all: phony soc_esp32 +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc/src/esp32 + +build esp-idf/soc/src/esp32/all: phony +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/spi_flash + +build esp-idf/spi_flash/all: phony __idf_spi_flash +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/bootloader/esp-idf/xtensa + +build esp-idf/xtensa/all: phony +# ============================================================================= +# Built-in targets + + +############################################# +# The main all target. + +build all: phony bootloader.elf app esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/log/liblog.a esp-idf/micro-ecc/libmicro-ecc.a esp-idf/spi_flash/libspi_flash.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/main/libmain.a + +############################################# +# Make the all target the default. + +default all + +############################################# +# Re-run CMake if any of its inputs changed. + +build build.ninja: RERUN_CMAKE | /home/mithras/Documents/bakalarka/sdkconfig /home/mithras/esp/esp-idf/.git/HEAD /home/mithras/esp/esp-idf/.git/modules/components/asio/asio/HEAD /home/mithras/esp/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD /home/mithras/esp/esp-idf/.git/modules/components/bt/controller/lib/HEAD /home/mithras/esp/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD /home/mithras/esp/esp-idf/.git/modules/components/cbor/tinycbor/HEAD /home/mithras/esp/esp-idf/.git/modules/components/coap/libcoap/HEAD /home/mithras/esp/esp-idf/.git/modules/components/esp_wifi/lib/HEAD /home/mithras/esp/esp-idf/.git/modules/components/esptool_py/esptool/HEAD /home/mithras/esp/esp-idf/.git/modules/components/expat/expat/HEAD /home/mithras/esp/esp-idf/.git/modules/components/json/cJSON/HEAD /home/mithras/esp/esp-idf/.git/modules/components/libsodium/libsodium/HEAD /home/mithras/esp/esp-idf/.git/modules/components/lwip/lwip/HEAD /home/mithras/esp/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD /home/mithras/esp/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD /home/mithras/esp/esp-idf/.git/modules/components/nghttp/nghttp2/HEAD /home/mithras/esp/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD /home/mithras/esp/esp-idf/.git/modules/components/spiffs/spiffs/HEAD /home/mithras/esp/esp-idf/.git/modules/components/unity/unity/HEAD /home/mithras/esp/esp-idf/.git/modules/examples/build_system/cmake/import_lib/main/lib/tinyxml2/HEAD /home/mithras/esp/esp-idf/.git/refs/heads/master /home/mithras/esp/esp-idf/CMakeLists.txt /home/mithras/esp/esp-idf/components/asio/asio/.git /home/mithras/esp/esp-idf/components/bootloader/CMakeLists.txt /home/mithras/esp/esp-idf/components/bootloader/project_include.cmake /home/mithras/esp/esp-idf/components/bootloader/subproject/CMakeLists.txt /home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/CMakeLists.txt /home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git /home/mithras/esp/esp-idf/components/bootloader/subproject/main/CMakeLists.txt /home/mithras/esp/esp-idf/components/bootloader_support/CMakeLists.txt /home/mithras/esp/esp-idf/components/bt/controller/lib/.git /home/mithras/esp/esp-idf/components/bt/host/nimble/nimble/.git /home/mithras/esp/esp-idf/components/cbor/tinycbor/.git /home/mithras/esp/esp-idf/components/coap/libcoap/.git /home/mithras/esp/esp-idf/components/efuse/CMakeLists.txt /home/mithras/esp/esp-idf/components/efuse/esp32/sources.cmake /home/mithras/esp/esp-idf/components/esp32/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp32/project_include.cmake /home/mithras/esp/esp-idf/components/esp_common/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_rom/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_wifi/lib/.git /home/mithras/esp/esp-idf/components/esptool_py/CMakeLists.txt /home/mithras/esp/esp-idf/components/esptool_py/esptool/.git /home/mithras/esp/esp-idf/components/esptool_py/project_include.cmake /home/mithras/esp/esp-idf/components/expat/expat/.git /home/mithras/esp/esp-idf/components/json/cJSON/.git /home/mithras/esp/esp-idf/components/libsodium/libsodium/.git /home/mithras/esp/esp-idf/components/log/CMakeLists.txt /home/mithras/esp/esp-idf/components/lwip/lwip/.git /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/.git /home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/.git /home/mithras/esp/esp-idf/components/nghttp/nghttp2/.git /home/mithras/esp/esp-idf/components/partition_table/CMakeLists.txt /home/mithras/esp/esp-idf/components/partition_table/project_include.cmake /home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c/.git /home/mithras/esp/esp-idf/components/soc/CMakeLists.txt /home/mithras/esp/esp-idf/components/soc/soc/CMakeLists.txt /home/mithras/esp/esp-idf/components/soc/soc/esp32/CMakeLists.txt /home/mithras/esp/esp-idf/components/soc/src/esp32/CMakeLists.txt /home/mithras/esp/esp-idf/components/spi_flash/CMakeLists.txt /home/mithras/esp/esp-idf/components/spiffs/spiffs/.git /home/mithras/esp/esp-idf/components/unity/unity/.git /home/mithras/esp/esp-idf/components/xtensa/CMakeLists.txt /home/mithras/esp/esp-idf/examples/build_system/cmake/import_lib/main/lib/tinyxml2/.git /home/mithras/esp/esp-idf/tools/cmake/build.cmake /home/mithras/esp/esp-idf/tools/cmake/component.cmake /home/mithras/esp/esp-idf/tools/cmake/crosstool_version_check.cmake /home/mithras/esp/esp-idf/tools/cmake/git_submodules.cmake /home/mithras/esp/esp-idf/tools/cmake/idf.cmake /home/mithras/esp/esp-idf/tools/cmake/kconfig.cmake /home/mithras/esp/esp-idf/tools/cmake/ldgen.cmake /home/mithras/esp/esp-idf/tools/cmake/project.cmake /home/mithras/esp/esp-idf/tools/cmake/project_description.json.in /home/mithras/esp/esp-idf/tools/cmake/targets.cmake /home/mithras/esp/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake /home/mithras/esp/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in /home/mithras/esp/esp-idf/tools/cmake/toolchain-esp32.cmake /home/mithras/esp/esp-idf/tools/cmake/utilities.cmake /home/mithras/esp/esp-idf/tools/cmake/version.cmake /home/mithras/esp/esp-idf/tools/kconfig_new/confgen.py /home/mithras/esp/esp-idf/tools/kconfig_new/config.env.in /home/mithras/esp/esp-idf/tools/kconfig_new/kconfiglib.py /usr/share/cmake-3.10/Modules/CMakeASMCompiler.cmake.in /usr/share/cmake-3.10/Modules/CMakeASMInformation.cmake /usr/share/cmake-3.10/Modules/CMakeCCompiler.cmake.in /usr/share/cmake-3.10/Modules/CMakeCCompilerABI.c /usr/share/cmake-3.10/Modules/CMakeCInformation.cmake /usr/share/cmake-3.10/Modules/CMakeCXXCompiler.cmake.in /usr/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp /usr/share/cmake-3.10/Modules/CMakeCXXInformation.cmake /usr/share/cmake-3.10/Modules/CMakeCommonLanguageInclude.cmake /usr/share/cmake-3.10/Modules/CMakeCompilerIdDetection.cmake /usr/share/cmake-3.10/Modules/CMakeDetermineASMCompiler.cmake /usr/share/cmake-3.10/Modules/CMakeDetermineCCompiler.cmake /usr/share/cmake-3.10/Modules/CMakeDetermineCXXCompiler.cmake /usr/share/cmake-3.10/Modules/CMakeDetermineCompileFeatures.cmake /usr/share/cmake-3.10/Modules/CMakeDetermineCompiler.cmake /usr/share/cmake-3.10/Modules/CMakeDetermineCompilerABI.cmake /usr/share/cmake-3.10/Modules/CMakeDetermineCompilerId.cmake /usr/share/cmake-3.10/Modules/CMakeDetermineSystem.cmake /usr/share/cmake-3.10/Modules/CMakeFindBinUtils.cmake /usr/share/cmake-3.10/Modules/CMakeGenericSystem.cmake /usr/share/cmake-3.10/Modules/CMakeLanguageInformation.cmake /usr/share/cmake-3.10/Modules/CMakeNinjaFindMake.cmake /usr/share/cmake-3.10/Modules/CMakeParseImplicitLinkInfo.cmake /usr/share/cmake-3.10/Modules/CMakeSystem.cmake.in /usr/share/cmake-3.10/Modules/CMakeSystemSpecificInformation.cmake /usr/share/cmake-3.10/Modules/CMakeSystemSpecificInitialize.cmake /usr/share/cmake-3.10/Modules/CMakeTestASMCompiler.cmake /usr/share/cmake-3.10/Modules/CMakeTestCCompiler.cmake /usr/share/cmake-3.10/Modules/CMakeTestCXXCompiler.cmake /usr/share/cmake-3.10/Modules/CMakeTestCompilerCommon.cmake /usr/share/cmake-3.10/Modules/Compiler/ADSP-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/ARMCC-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/AppleClang-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Borland-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/CMakeCommonCompilerMacros.cmake /usr/share/cmake-3.10/Modules/Compiler/Clang-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /usr/share/cmake-3.10/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Cray-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/GHS-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-ASM.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-C-FeatureTests.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-C.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-CXX-FeatureTests.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-CXX.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-FindBinUtils.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU.cmake /usr/share/cmake-3.10/Modules/Compiler/HP-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/IAR-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /usr/share/cmake-3.10/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /usr/share/cmake-3.10/Modules/Compiler/Intel-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/MIPSpro-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/MSVC-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/PGI-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/PathScale-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/SCO-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/TI-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Watcom-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/XL-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/zOS-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/ExternalProject.cmake /usr/share/cmake-3.10/Modules/FindGit.cmake /usr/share/cmake-3.10/Modules/FindPackageHandleStandardArgs.cmake /usr/share/cmake-3.10/Modules/FindPackageMessage.cmake /usr/share/cmake-3.10/Modules/Internal/FeatureTesting.cmake /usr/share/cmake-3.10/Modules/Platform/Generic.cmake CMakeCache.txt CMakeFiles/3.10.2/CMakeASMCompiler.cmake CMakeFiles/3.10.2/CMakeCCompiler.cmake CMakeFiles/3.10.2/CMakeCXXCompiler.cmake CMakeFiles/3.10.2/CMakeSystem.cmake CMakeFiles/feature_tests.c CMakeFiles/feature_tests.cxx CMakeFiles/git-data/grabRef.cmake config/sdkconfig.cmake config/sdkconfig.h + pool = console + +############################################# +# A missing CMake input file is not an error. + +build /home/mithras/Documents/bakalarka/sdkconfig /home/mithras/esp/esp-idf/.git/HEAD /home/mithras/esp/esp-idf/.git/modules/components/asio/asio/HEAD /home/mithras/esp/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD /home/mithras/esp/esp-idf/.git/modules/components/bt/controller/lib/HEAD /home/mithras/esp/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD /home/mithras/esp/esp-idf/.git/modules/components/cbor/tinycbor/HEAD /home/mithras/esp/esp-idf/.git/modules/components/coap/libcoap/HEAD /home/mithras/esp/esp-idf/.git/modules/components/esp_wifi/lib/HEAD /home/mithras/esp/esp-idf/.git/modules/components/esptool_py/esptool/HEAD /home/mithras/esp/esp-idf/.git/modules/components/expat/expat/HEAD /home/mithras/esp/esp-idf/.git/modules/components/json/cJSON/HEAD /home/mithras/esp/esp-idf/.git/modules/components/libsodium/libsodium/HEAD /home/mithras/esp/esp-idf/.git/modules/components/lwip/lwip/HEAD /home/mithras/esp/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD /home/mithras/esp/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD /home/mithras/esp/esp-idf/.git/modules/components/nghttp/nghttp2/HEAD /home/mithras/esp/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD /home/mithras/esp/esp-idf/.git/modules/components/spiffs/spiffs/HEAD /home/mithras/esp/esp-idf/.git/modules/components/unity/unity/HEAD /home/mithras/esp/esp-idf/.git/modules/examples/build_system/cmake/import_lib/main/lib/tinyxml2/HEAD /home/mithras/esp/esp-idf/.git/refs/heads/master /home/mithras/esp/esp-idf/CMakeLists.txt /home/mithras/esp/esp-idf/components/asio/asio/.git /home/mithras/esp/esp-idf/components/bootloader/CMakeLists.txt /home/mithras/esp/esp-idf/components/bootloader/project_include.cmake /home/mithras/esp/esp-idf/components/bootloader/subproject/CMakeLists.txt /home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/CMakeLists.txt /home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git /home/mithras/esp/esp-idf/components/bootloader/subproject/main/CMakeLists.txt /home/mithras/esp/esp-idf/components/bootloader_support/CMakeLists.txt /home/mithras/esp/esp-idf/components/bt/controller/lib/.git /home/mithras/esp/esp-idf/components/bt/host/nimble/nimble/.git /home/mithras/esp/esp-idf/components/cbor/tinycbor/.git /home/mithras/esp/esp-idf/components/coap/libcoap/.git /home/mithras/esp/esp-idf/components/efuse/CMakeLists.txt /home/mithras/esp/esp-idf/components/efuse/esp32/sources.cmake /home/mithras/esp/esp-idf/components/esp32/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp32/project_include.cmake /home/mithras/esp/esp-idf/components/esp_common/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_rom/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_wifi/lib/.git /home/mithras/esp/esp-idf/components/esptool_py/CMakeLists.txt /home/mithras/esp/esp-idf/components/esptool_py/esptool/.git /home/mithras/esp/esp-idf/components/esptool_py/project_include.cmake /home/mithras/esp/esp-idf/components/expat/expat/.git /home/mithras/esp/esp-idf/components/json/cJSON/.git /home/mithras/esp/esp-idf/components/libsodium/libsodium/.git /home/mithras/esp/esp-idf/components/log/CMakeLists.txt /home/mithras/esp/esp-idf/components/lwip/lwip/.git /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/.git /home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/.git /home/mithras/esp/esp-idf/components/nghttp/nghttp2/.git /home/mithras/esp/esp-idf/components/partition_table/CMakeLists.txt /home/mithras/esp/esp-idf/components/partition_table/project_include.cmake /home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c/.git /home/mithras/esp/esp-idf/components/soc/CMakeLists.txt /home/mithras/esp/esp-idf/components/soc/soc/CMakeLists.txt /home/mithras/esp/esp-idf/components/soc/soc/esp32/CMakeLists.txt /home/mithras/esp/esp-idf/components/soc/src/esp32/CMakeLists.txt /home/mithras/esp/esp-idf/components/spi_flash/CMakeLists.txt /home/mithras/esp/esp-idf/components/spiffs/spiffs/.git /home/mithras/esp/esp-idf/components/unity/unity/.git /home/mithras/esp/esp-idf/components/xtensa/CMakeLists.txt /home/mithras/esp/esp-idf/examples/build_system/cmake/import_lib/main/lib/tinyxml2/.git /home/mithras/esp/esp-idf/tools/cmake/build.cmake /home/mithras/esp/esp-idf/tools/cmake/component.cmake /home/mithras/esp/esp-idf/tools/cmake/crosstool_version_check.cmake /home/mithras/esp/esp-idf/tools/cmake/git_submodules.cmake /home/mithras/esp/esp-idf/tools/cmake/idf.cmake /home/mithras/esp/esp-idf/tools/cmake/kconfig.cmake /home/mithras/esp/esp-idf/tools/cmake/ldgen.cmake /home/mithras/esp/esp-idf/tools/cmake/project.cmake /home/mithras/esp/esp-idf/tools/cmake/project_description.json.in /home/mithras/esp/esp-idf/tools/cmake/targets.cmake /home/mithras/esp/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake /home/mithras/esp/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in /home/mithras/esp/esp-idf/tools/cmake/toolchain-esp32.cmake /home/mithras/esp/esp-idf/tools/cmake/utilities.cmake /home/mithras/esp/esp-idf/tools/cmake/version.cmake /home/mithras/esp/esp-idf/tools/kconfig_new/confgen.py /home/mithras/esp/esp-idf/tools/kconfig_new/config.env.in /home/mithras/esp/esp-idf/tools/kconfig_new/kconfiglib.py /usr/share/cmake-3.10/Modules/CMakeASMCompiler.cmake.in /usr/share/cmake-3.10/Modules/CMakeASMInformation.cmake /usr/share/cmake-3.10/Modules/CMakeCCompiler.cmake.in /usr/share/cmake-3.10/Modules/CMakeCCompilerABI.c /usr/share/cmake-3.10/Modules/CMakeCInformation.cmake /usr/share/cmake-3.10/Modules/CMakeCXXCompiler.cmake.in /usr/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp /usr/share/cmake-3.10/Modules/CMakeCXXInformation.cmake /usr/share/cmake-3.10/Modules/CMakeCommonLanguageInclude.cmake /usr/share/cmake-3.10/Modules/CMakeCompilerIdDetection.cmake /usr/share/cmake-3.10/Modules/CMakeDetermineASMCompiler.cmake /usr/share/cmake-3.10/Modules/CMakeDetermineCCompiler.cmake /usr/share/cmake-3.10/Modules/CMakeDetermineCXXCompiler.cmake /usr/share/cmake-3.10/Modules/CMakeDetermineCompileFeatures.cmake /usr/share/cmake-3.10/Modules/CMakeDetermineCompiler.cmake /usr/share/cmake-3.10/Modules/CMakeDetermineCompilerABI.cmake /usr/share/cmake-3.10/Modules/CMakeDetermineCompilerId.cmake /usr/share/cmake-3.10/Modules/CMakeDetermineSystem.cmake /usr/share/cmake-3.10/Modules/CMakeFindBinUtils.cmake /usr/share/cmake-3.10/Modules/CMakeGenericSystem.cmake /usr/share/cmake-3.10/Modules/CMakeLanguageInformation.cmake /usr/share/cmake-3.10/Modules/CMakeNinjaFindMake.cmake /usr/share/cmake-3.10/Modules/CMakeParseImplicitLinkInfo.cmake /usr/share/cmake-3.10/Modules/CMakeSystem.cmake.in /usr/share/cmake-3.10/Modules/CMakeSystemSpecificInformation.cmake /usr/share/cmake-3.10/Modules/CMakeSystemSpecificInitialize.cmake /usr/share/cmake-3.10/Modules/CMakeTestASMCompiler.cmake /usr/share/cmake-3.10/Modules/CMakeTestCCompiler.cmake /usr/share/cmake-3.10/Modules/CMakeTestCXXCompiler.cmake /usr/share/cmake-3.10/Modules/CMakeTestCompilerCommon.cmake /usr/share/cmake-3.10/Modules/Compiler/ADSP-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/ARMCC-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/AppleClang-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Borland-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/CMakeCommonCompilerMacros.cmake /usr/share/cmake-3.10/Modules/Compiler/Clang-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /usr/share/cmake-3.10/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Cray-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/GHS-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-ASM.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-C-FeatureTests.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-C.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-CXX-FeatureTests.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-CXX.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-FindBinUtils.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU.cmake /usr/share/cmake-3.10/Modules/Compiler/HP-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/IAR-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /usr/share/cmake-3.10/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /usr/share/cmake-3.10/Modules/Compiler/Intel-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/MIPSpro-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/MSVC-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/PGI-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/PathScale-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/SCO-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/TI-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Watcom-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/XL-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/zOS-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/ExternalProject.cmake /usr/share/cmake-3.10/Modules/FindGit.cmake /usr/share/cmake-3.10/Modules/FindPackageHandleStandardArgs.cmake /usr/share/cmake-3.10/Modules/FindPackageMessage.cmake /usr/share/cmake-3.10/Modules/Internal/FeatureTesting.cmake /usr/share/cmake-3.10/Modules/Platform/Generic.cmake CMakeCache.txt CMakeFiles/3.10.2/CMakeASMCompiler.cmake CMakeFiles/3.10.2/CMakeCCompiler.cmake CMakeFiles/3.10.2/CMakeCXXCompiler.cmake CMakeFiles/3.10.2/CMakeSystem.cmake CMakeFiles/feature_tests.c CMakeFiles/feature_tests.cxx CMakeFiles/git-data/grabRef.cmake config/sdkconfig.cmake config/sdkconfig.h: phony + +############################################# +# Clean all the built files. + +build clean: CLEAN + +############################################# +# Print all primary targets available. + +build help: HELP diff --git a/build/bootloader/cmake_install.cmake b/build/bootloader/cmake_install.cmake new file mode 100644 index 0000000..8301a56 --- /dev/null +++ b/build/bootloader/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/bootloader/subproject + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/cmake_install.cmake") + +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "/home/mithras/Documents/bakalarka/build/bootloader/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/build/bootloader/compile_commands.json b/build/bootloader/compile_commands.json new file mode 100644 index 0000000..98c9580 --- /dev/null +++ b/build/bootloader/compile_commands.json @@ -0,0 +1,517 @@ +[ +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -I/home/mithras/esp/esp-idf/components/esp32/include -Iconfig -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -mlongcalls -Wno-frame-address -o CMakeFiles/bootloader.elf.dir/project_elf_src.c.obj -c /home/mithras/Documents/bakalarka/build/bootloader/project_elf_src.c", + "file": "/home/mithras/Documents/bakalarka/build/bootloader/project_elf_src.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/memory_layout_utils.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/memory_layout_utils.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/memory_layout_utils.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/lldesc.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/lldesc.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/lldesc.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rmt_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/rmt_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/rmt_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rtc_io_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/rtc_io_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/rtc_io_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/dac_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/dac_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/dac_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/adc_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/adc_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/adc_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/spi_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/spi_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal_iram.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/spi_hal_iram.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/spi_hal_iram.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/spi_slave_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/spi_slave_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal_iram.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/spi_slave_hal_iram.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/spi_slave_hal_iram.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/touch_sensor_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/touch_sensor_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/touch_sensor_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/soc_include_legacy_warn.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/soc_include_legacy_warn.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/soc_include_legacy_warn.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/pcnt_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/pcnt_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/pcnt_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2s_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/i2s_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/i2s_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sigmadelta_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/sigmadelta_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/sigmadelta_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/timer_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/timer_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/timer_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/ledc_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/ledc_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal_iram.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/ledc_hal_iram.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/ledc_hal_iram.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/i2c_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/i2c_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal_iram.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/i2c_hal_iram.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/i2c_hal_iram.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/gpio_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/gpio_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/gpio_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/uart_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/uart_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal_iram.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/uart_hal_iram.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/uart_hal_iram.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/spi_flash_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/spi_flash_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal_iram.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/spi_flash_hal_iram.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/spi_flash_hal_iram.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/compare_set.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/compare_set.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/compare_set.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/can_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/can_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/can_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/mcpwm_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/mcpwm_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/mcpwm_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sdio_slave_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/sdio_slave_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/sdio_slave_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/brownout_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/brownout_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/brownout_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/cpu_util.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/cpu_util.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/cpu_util.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_clk.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_clk.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk_init.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_clk_init.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_clk_init.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_init.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_init.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_init.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_pm.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_pm.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_pm.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_sleep.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_sleep.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_sleep.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_time.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_time.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_time.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_wdt.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_wdt.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_wdt.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/sdio_slave_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/sdio_slave_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/sdio_slave_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/soc_memory_layout.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/soc_memory_layout.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/soc_memory_layout.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/touch_sensor_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/touch_sensor_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/touch_sensor_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/adc_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/adc_periph.c", + "file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/adc_periph.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/dac_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/dac_periph.c", + "file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/dac_periph.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/gpio_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/gpio_periph.c", + "file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/gpio_periph.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_io_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/rtc_io_periph.c", + "file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/rtc_io_periph.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/rtc_periph.c", + "file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/rtc_periph.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdio_slave_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/sdio_slave_periph.c", + "file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/sdio_slave_periph.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdmmc_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/sdmmc_periph.c", + "file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/sdmmc_periph.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/interrupts.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/interrupts.c", + "file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/interrupts.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/spi_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/spi_periph.c", + "file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/spi_periph.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/ledc_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/ledc_periph.c", + "file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/ledc_periph.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2s_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/i2s_periph.c", + "file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/i2s_periph.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2c_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/i2c_periph.c", + "file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/i2c_periph.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/uart_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/uart_periph.c", + "file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/uart_periph.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/touch_sensor_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/touch_sensor_periph.c", + "file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/touch_sensor_periph.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj -c /home/mithras/esp/esp-idf/components/log/log.c", + "file": "/home/mithras/esp/esp-idf/components/log/log.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj -c /home/mithras/esp/esp-idf/components/log/log_buffers.c", + "file": "/home/mithras/esp/esp-idf/components/log/log_buffers.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/log/CMakeFiles/__idf_log.dir/log_noos.c.obj -c /home/mithras/esp/esp-idf/components/log/log_noos.c", + "file": "/home/mithras/esp/esp-idf/components/log/log_noos.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/micro-ecc/uECC.c.obj -c /home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/uECC.c", + "file": "/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/uECC.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/private_include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32/spi_flash_rom_patch.c.obj -c /home/mithras/esp/esp-idf/components/spi_flash/esp32/spi_flash_rom_patch.c", + "file": "/home/mithras/esp/esp-idf/components/spi_flash/esp32/spi_flash_rom_patch.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/private_include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj -c /home/mithras/esp/esp-idf/components/efuse/esp32/esp_efuse_table.c", + "file": "/home/mithras/esp/esp-idf/components/efuse/esp32/esp_efuse_table.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/private_include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_api.c.obj -c /home/mithras/esp/esp-idf/components/efuse/src/esp32/esp_efuse_api.c", + "file": "/home/mithras/esp/esp-idf/components/efuse/src/esp32/esp_efuse_api.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/private_include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_fields.c.obj -c /home/mithras/esp/esp-idf/components/efuse/src/esp32/esp_efuse_fields.c", + "file": "/home/mithras/esp/esp-idf/components/efuse/src/esp32/esp_efuse_fields.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/private_include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_utility.c.obj -c /home/mithras/esp/esp-idf/components/efuse/src/esp32/esp_efuse_utility.c", + "file": "/home/mithras/esp/esp-idf/components/efuse/src/esp32/esp_efuse_utility.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/private_include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj -c /home/mithras/esp/esp-idf/components/efuse/src/esp_efuse_api.c", + "file": "/home/mithras/esp/esp-idf/components/efuse/src/esp_efuse_api.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/private_include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj -c /home/mithras/esp/esp-idf/components/efuse/src/esp_efuse_fields.c", + "file": "/home/mithras/esp/esp-idf/components/efuse/src/esp_efuse_fields.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/private_include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj -c /home/mithras/esp/esp-idf/components/efuse/src/esp_efuse_utility.c", + "file": "/home/mithras/esp/esp-idf/components/efuse/src/esp_efuse_utility.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_clock.c", + "file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_clock.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_common.c", + "file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_common.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_flash.c", + "file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_flash.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_random.c", + "file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_random.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_utility.c", + "file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_utility.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/esp_image_format.c", + "file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/esp_image_format.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/flash_partitions.c", + "file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/flash_partitions.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_qio_mode.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/flash_qio_mode.c", + "file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/flash_qio_mode.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash_config_esp32.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_flash_config_esp32.c", + "file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_flash_config_esp32.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse_esp32.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_efuse_esp32.c", + "file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_efuse_esp32.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/flash_encrypt.c", + "file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/flash_encrypt.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_init.c", + "file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_init.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_sha.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/esp32/bootloader_sha.c", + "file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/esp32/bootloader_sha.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/flash_encrypt.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/esp32/flash_encrypt.c", + "file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/esp32/flash_encrypt.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/secure_boot_signatures.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/esp32/secure_boot_signatures.c", + "file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/esp32/secure_boot_signatures.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/secure_boot.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/esp32/secure_boot.c", + "file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/esp32/secure_boot.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_esp32.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/esp32/bootloader_esp32.c", + "file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/esp32/bootloader_esp32.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build/bootloader", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -fno-stack-protector -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DBOOTLOADER_BUILD=1 -o esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj -c /home/mithras/esp/esp-idf/components/bootloader/subproject/main/bootloader_start.c", + "file": "/home/mithras/esp/esp-idf/components/bootloader/subproject/main/bootloader_start.c" +} +] \ No newline at end of file diff --git a/build/bootloader/config.env b/build/bootloader/config.env new file mode 100644 index 0000000..b15be78 --- /dev/null +++ b/build/bootloader/config.env @@ -0,0 +1,10 @@ +{ + "COMPONENT_KCONFIGS": "/home/mithras/esp/esp-idf/components/efuse/Kconfig /home/mithras/esp/esp-idf/components/esp32/Kconfig /home/mithras/esp/esp-idf/components/esp_common/Kconfig /home/mithras/esp/esp-idf/components/log/Kconfig /home/mithras/esp/esp-idf/components/spi_flash/Kconfig", + "COMPONENT_KCONFIGS_PROJBUILD": "/home/mithras/esp/esp-idf/components/bootloader/Kconfig.projbuild /home/mithras/esp/esp-idf/components/esptool_py/Kconfig.projbuild /home/mithras/esp/esp-idf/components/partition_table/Kconfig.projbuild", + "COMPONENT_SDKCONFIG_RENAMES": "/home/mithras/esp/esp-idf/components/bootloader/sdkconfig.rename /home/mithras/esp/esp-idf/components/esp32/sdkconfig.rename /home/mithras/esp/esp-idf/components/esp_common/sdkconfig.rename /home/mithras/esp/esp-idf/components/esptool_py/sdkconfig.rename /home/mithras/esp/esp-idf/components/spi_flash/sdkconfig.rename", + "IDF_CMAKE": "y", + "IDF_TARGET": "esp32", + "IDF_PATH": "/home/mithras/esp/esp-idf", + "COMPONENT_KCONFIGS_SOURCE_FILE": "/home/mithras/Documents/bakalarka/build/bootloader/kconfigs.in", + "COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE": "/home/mithras/Documents/bakalarka/build/bootloader/kconfigs_projbuild.in" +} diff --git a/build/bootloader/config/kconfig_menus.json b/build/bootloader/config/kconfig_menus.json new file mode 100644 index 0000000..c318850 --- /dev/null +++ b/build/bootloader/config/kconfig_menus.json @@ -0,0 +1,3488 @@ +[ + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_CMAKE", + "name": "IDF_CMAKE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_ENV_FPGA", + "name": "IDF_ENV_FPGA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET", + "name": "IDF_TARGET", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32", + "name": "IDF_TARGET_ESP32", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32S2", + "name": "IDF_TARGET_ESP32S2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_FIRMWARE_CHIP_ID", + "name": "IDF_FIRMWARE_CHIP_ID", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "The prefix/path that is used to call the toolchain. The default setting assumes\na crosstool-ng gcc setup that is in your PATH.", + "id": "SDK_TOOLPREFIX", + "name": "SDK_TOOLPREFIX", + "range": null, + "title": "Compiler toolchain path/prefix", + "type": "string" + }, + { + "children": [], + "depends_on": "!IDF_CMAKE", + "help": "The executable name/path that is used to run python. On some systems Python 2.x\nmay need to be invoked as python2.\n\n(Note: This option is used with the legacy GNU Make build system only.)", + "id": "SDK_PYTHON", + "name": "SDK_PYTHON", + "range": null, + "title": "Python 2 interpreter", + "type": "string" + }, + { + "children": [], + "depends_on": "!IDF_CMAKE", + "help": "Adds --warn-undefined-variables to MAKEFLAGS. This causes make to\nprint a warning any time an undefined variable is referenced.\n\nThis option helps find places where a variable reference is misspelled\nor otherwise missing, but it can be unwanted if you have Makefiles which\ndepend on undefined variables expanding to an empty string.\n\n(Note: this option is used with the legacy GNU Make build system only.)", + "id": "SDK_MAKE_WARN_UNDEFINED_VARIABLES", + "name": "SDK_MAKE_WARN_UNDEFINED_VARIABLES", + "range": null, + "title": "'make' warns on undefined variables", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option in case you have a custom toolchain which supports time_t wide 64-bits.\nThis option checks time_t is 64-bits and disables ROM time functions\nto use the time functions from the toolchain instead.\nThis option allows resolving the Y2K38 problem.\nSee \"Setup Linux Toolchain from Scratch\" to build\na custom toolchain which supports 64-bits time_t.\n\nNote: ESP-IDF does not currently come with any pre-compiled toolchain\nthat supports 64-bit wide time_t.\nThis will change in a future major release,\nbut currently 64-bit time_t requires a custom built toolchain.", + "id": "SDK_TOOLCHAIN_SUPPORTS_TIME_WIDE_64_BITS", + "name": "SDK_TOOLCHAIN_SUPPORTS_TIME_WIDE_64_BITS", + "range": null, + "title": "Toolchain supports time_t wide 64-bits", + "type": "bool" + } + ], + "depends_on": null, + "id": "sdk-tool-configuration", + "title": "SDK tool configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "APP_BUILD_TYPE_APP_2NDBOOT", + "name": "APP_BUILD_TYPE_APP_2NDBOOT", + "range": null, + "title": "Default (binary application + 2nd stage bootloader)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "APP_BUILD_TYPE_ELF_RAM", + "name": "APP_BUILD_TYPE_ELF_RAM", + "range": null, + "title": "ELF file, loadable into RAM (EXPERIMENTAL))", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select the way the application is built.\n\nBy default, the application is built as a binary file in a format compatible with\nthe ESP32 bootloader. In addition to this application, 2nd stage bootloader is\nalso built. Application and bootloader binaries can be written into flash and\nloaded/executed from there.\n\nAnother option, useful for only very small and limited applications, is to only link\nthe .elf file of the application, such that it can be loaded directly into RAM over\nJTAG. Note that since IRAM and DRAM sizes are very limited, it is not possible to\nbuild any complex application this way. However for kinds of testing and debugging,\nthis option may provide faster iterations, since the application does not need to be\nwritten into flash.\nNote that at the moment, ESP-IDF does not contain all the startup code required to\ninitialize the CPUs and ROM memory (data/bss). Therefore it is necessary to execute\na bit of ROM code prior to executing the application. A gdbinit file may look as follows:\n\n # Connect to a running instance of OpenOCD\n target remote :3333\n # Reset and halt the target\n mon reset halt\n # Run to a specific point in ROM code,\n # where most of initialization is complete.\n thb *0x40007901\n c\n # Load the application into RAM\n load\n # Run till app_main\n tb app_main\n c\n\nExecute this gdbinit file as follows:\n\n xtensa-esp32-elf-gdb build/app-name.elf -x gdbinit\n\nRecommended sdkconfig.defaults for building loadable ELF files is as follows.\nCONFIG_APP_BUILD_TYPE_ELF_RAM is required, other options help reduce application\nmemory footprint.\n\n CONFIG_APP_BUILD_TYPE_ELF_RAM=y\n CONFIG_VFS_SUPPORT_TERMIOS=\n CONFIG_NEWLIB_NANO_FORMAT=y\n CONFIG_ESP32_PANIC_PRINT_HALT=y\n CONFIG_ESP32_DEBUG_STUBS_ENABLE=\n CONFIG_ESP_ERR_TO_NAME_LOOKUP=", + "id": "build-type-application-build-type", + "name": "APP_BUILD_TYPE", + "title": "Application build type", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "APP_BUILD_GENERATE_BINARIES", + "name": "APP_BUILD_GENERATE_BINARIES", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "APP_BUILD_BOOTLOADER", + "name": "APP_BUILD_BOOTLOADER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "APP_BUILD_USE_FLASH_SECTIONS", + "name": "APP_BUILD_USE_FLASH_SECTIONS", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "build-type", + "title": "Build type", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_NONE", + "name": "BOOTLOADER_LOG_LEVEL_NONE", + "range": null, + "title": "No output", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_ERROR", + "name": "BOOTLOADER_LOG_LEVEL_ERROR", + "range": null, + "title": "Error", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_WARN", + "name": "BOOTLOADER_LOG_LEVEL_WARN", + "range": null, + "title": "Warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_INFO", + "name": "BOOTLOADER_LOG_LEVEL_INFO", + "range": null, + "title": "Info", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_DEBUG", + "name": "BOOTLOADER_LOG_LEVEL_DEBUG", + "range": null, + "title": "Debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_VERBOSE", + "name": "BOOTLOADER_LOG_LEVEL_VERBOSE", + "range": null, + "title": "Verbose", + "type": "bool" + } + ], + "depends_on": null, + "help": "Specify how much output to see in bootloader logs.", + "id": "bootloader-config-bootloader-log-verbosity", + "name": "BOOTLOADER_LOG_LEVEL", + "title": "Bootloader log verbosity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "BOOTLOADER_LOG_LEVEL", + "name": "BOOTLOADER_LOG_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "ESPTOOLPY_FLASHMODE_QIO || ESPTOOLPY_FLASHMODE_QOUT", + "help": "This value is ignored unless flash mode is set to QIO or QOUT *and* the SPI flash pins have been\noverriden by setting the eFuses SPI_PAD_CONFIG_xxx.\n\nWhen this is the case, the eFuse config only defines 3 of the 4 Quad I/O data pins. The WP pin (aka ESP32\npin \"SD_DATA_3\" or SPI flash pin \"IO2\") is not specified in eFuse. That pin number is compiled into the\nbootloader instead.\n\nThe default value (GPIO 7) is correct for WP pin on ESP32-D2WD integrated flash.", + "id": "BOOTLOADER_SPI_WP_PIN", + "name": "BOOTLOADER_SPI_WP_PIN", + "range": null, + "title": "SPI Flash WP Pin when customising pins via eFuse (read help)", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "!ESPTOOLPY_FLASHFREQ_80M && ", + "help": null, + "id": "BOOTLOADER_VDDSDIO_BOOST_1_8V", + "name": "BOOTLOADER_VDDSDIO_BOOST_1_8V", + "range": null, + "title": "1.8V", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_VDDSDIO_BOOST_1_9V", + "name": "BOOTLOADER_VDDSDIO_BOOST_1_9V", + "range": null, + "title": "1.9V", + "type": "bool" + } + ], + "depends_on": null, + "help": "If this option is enabled, and VDDSDIO LDO is set to 1.8V (using eFuse\nor MTDI bootstrapping pin), bootloader will change LDO settings to\noutput 1.9V instead. This helps prevent flash chip from browning out\nduring flash programming operations.\n\nThis option has no effect if VDDSDIO is set to 3.3V, or if the internal\nVDDSDIO regulator is disabled via eFuse.", + "id": "bootloader-config-vddsdio-ldo-voltage", + "name": "BOOTLOADER_VDDSDIO_BOOST", + "title": "VDDSDIO LDO voltage", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_FACTORY_RESET", + "help": "The selected GPIO will be configured as an input with internal pull-up enabled.\nTo trigger a factory reset, this GPIO must be pulled low on reset.\nNote that GPIO34-39 do not have an internal pullup and an external one must be provided.", + "id": "BOOTLOADER_NUM_PIN_FACTORY_RESET", + "name": "BOOTLOADER_NUM_PIN_FACTORY_RESET", + "range": null, + "title": "Number of the GPIO input for factory reset", + "type": "int" + }, + { + "children": [], + "depends_on": "BOOTLOADER_FACTORY_RESET", + "help": "The device will boot from \"factory\" partition (or OTA slot 0 if no factory partition is present) after a\nfactory reset.", + "id": "BOOTLOADER_OTA_DATA_ERASE", + "name": "BOOTLOADER_OTA_DATA_ERASE", + "range": null, + "title": "Clear OTA data on factory reset (select factory partition)", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_FACTORY_RESET", + "help": "Allows customers to select which data partitions will be erased while factory reset.\n\nSpecify the names of partitions as a comma-delimited with optional spaces for readability. (Like this:\n\"nvs, phy_init, ...\")\nMake sure that the name specified in the partition table and here are the same.\nPartitions of type \"app\" cannot be specified here.", + "id": "BOOTLOADER_DATA_FACTORY_RESET", + "name": "BOOTLOADER_DATA_FACTORY_RESET", + "range": null, + "title": "Comma-separated names of partitions to clear on factory reset", + "type": "string" + } + ], + "depends_on": null, + "help": "Allows to reset the device to factory settings:\n- clear one or more data partitions;\n- boot from \"factory\" partition.\nThe factory reset will occur if there is a GPIO input pulled low while device starts up.\nSee settings below.", + "id": "BOOTLOADER_FACTORY_RESET", + "name": "BOOTLOADER_FACTORY_RESET", + "range": null, + "title": "GPIO triggers factory reset", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_APP_TEST", + "help": "The selected GPIO will be configured as an input with internal pull-up enabled.\nTo trigger a test app, this GPIO must be pulled low on reset.\nAfter the GPIO input is deactivated and the device reboots, the old application will boot.\n(factory or OTA[x]).\nNote that GPIO34-39 do not have an internal pullup and an external one must be provided.", + "id": "BOOTLOADER_NUM_PIN_APP_TEST", + "name": "BOOTLOADER_NUM_PIN_APP_TEST", + "range": null, + "title": "Number of the GPIO input to boot TEST partition", + "type": "int" + } + ], + "depends_on": null, + "help": "Allows to run the test app from \"TEST\" partition.\nA boot from \"test\" partition will occur if there is a GPIO input pulled low while device starts up.\nSee settings below.", + "id": "BOOTLOADER_APP_TEST", + "name": "BOOTLOADER_APP_TEST", + "range": null, + "title": "GPIO triggers boot from test app partition", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_FACTORY_RESET || BOOTLOADER_APP_TEST", + "help": "The GPIO must be held low continuously for this period of time after reset\nbefore a factory reset or test partition boot (as applicable) is performed.", + "id": "BOOTLOADER_HOLD_TIME_GPIO", + "name": "BOOTLOADER_HOLD_TIME_GPIO", + "range": null, + "title": "Hold time of GPIO for reset/test mode (seconds)", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_WDT_ENABLE", + "help": "If it is set, the client must itself reset or disable rtc_wdt in their code (app_main()).\nOtherwise rtc_wdt will be disabled before calling app_main function.\nUse function rtc_wdt_feed() for resetting counter of rtc_wdt.\nUse function rtc_wdt_disable() for disabling rtc_wdt.", + "id": "BOOTLOADER_WDT_DISABLE_IN_USER_CODE", + "name": "BOOTLOADER_WDT_DISABLE_IN_USER_CODE", + "range": null, + "title": "Allows RTC watchdog disable in user code", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_WDT_ENABLE", + "help": "Verify that this parameter is correct and more then the execution time.\nPay attention to options such as reset to factory, trigger test partition and encryption on boot\n- these options can increase the execution time.\nNote: RTC_WDT will reset while encryption operations will be performed.", + "id": "BOOTLOADER_WDT_TIME_MS", + "name": "BOOTLOADER_WDT_TIME_MS", + "range": [ + 0, + 120000 + ], + "title": "Timeout for RTC watchdog (ms)", + "type": "int" + } + ], + "depends_on": null, + "help": "Tracks the execution time of startup code.\nIf the execution time is exceeded, the RTC_WDT will restart system.\nIt is also useful to prevent a lock up in start code caused by an unstable power source.\nNOTE: Tracks the execution time starts from the bootloader code - re-set timeout, while selecting the\nsource for slow_clk - and ends calling app_main.\nRe-set timeout is needed due to WDT uses a SLOW_CLK clock source. After changing a frequency slow_clk a\ntime of WDT needs to re-set for new frequency.\nslow_clk depends on ESP32_RTC_CLK_SRC (INTERNAL_RC or EXTERNAL_CRYSTAL).", + "id": "BOOTLOADER_WDT_ENABLE", + "name": "BOOTLOADER_WDT_ENABLE", + "range": null, + "title": "Use RTC watchdog in start code", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", + "help": "The secure version is the sequence number stored in the header of each firmware.\nThe security version is set in the bootloader, version is recorded in the eFuse field\nas the number of set ones. The allocated number of bits in the efuse field\nfor storing the security version is limited (see BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD option).\n\nBootloader: When bootloader selects an app to boot, an app is selected that has\na security version greater or equal that recorded in eFuse field.\nThe app is booted with a higher (or equal) secure version.\n\nThe security version is worth increasing if in previous versions there is\na significant vulnerability and their use is not acceptable.\n\nYour partition table should has a scheme with ota_0 + ota_1 (without factory).", + "id": "BOOTLOADER_APP_SECURE_VERSION", + "name": "BOOTLOADER_APP_SECURE_VERSION", + "range": null, + "title": "eFuse secure version of app", + "type": "int" + }, + { + "children": [], + "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", + "help": "The size of the efuse secure version field.\nIts length is limited to 32 bits for ESP32 and 16 bits for ESP32-S2.\nThis determines how many times the security version can be increased.", + "id": "BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD", + "name": "BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD", + "range": null, + "title": "Size of the efuse secure version field", + "type": "int" + }, + { + "children": [], + "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", + "help": "This option allow emulate read/write operations with efuse secure version.\nIt allow to test anti-rollback implemention without permanent write eFuse bits.\nIn partition table should be exist this partition `emul_efuse, data, 5, , 0x2000`.", + "id": "BOOTLOADER_EFUSE_SECURE_VERSION_EMULATE", + "name": "BOOTLOADER_EFUSE_SECURE_VERSION_EMULATE", + "range": null, + "title": "Emulate operations with efuse secure version(only test)", + "type": "bool" + } + ], + "depends_on": "BOOTLOADER_APP_ROLLBACK_ENABLE", + "help": "This option prevents rollback to previous firmware/application image with lower security version.", + "id": "BOOTLOADER_APP_ANTI_ROLLBACK", + "name": "BOOTLOADER_APP_ANTI_ROLLBACK", + "range": null, + "title": "Enable app anti-rollback support", + "type": "bool" + } + ], + "depends_on": null, + "help": "After updating the app, the bootloader runs a new app with the \"ESP_OTA_IMG_PENDING_VERIFY\" state set.\nThis state prevents the re-run of this app. After the first boot of the new app in the user code, the\nfunction should be called to confirm the operability of the app or vice versa about its non-operability.\nIf the app is working, then it is marked as valid. Otherwise, it is marked as not valid and rolls back to\nthe previous working app. A reboot is performed, and the app is booted before the software update.\nNote: If during the first boot a new app the power goes out or the WDT works, then roll back will happen.\nRollback is possible only between the apps with the same security versions.", + "id": "BOOTLOADER_APP_ROLLBACK_ENABLE", + "name": "BOOTLOADER_APP_ROLLBACK_ENABLE", + "range": null, + "title": "Enable app rollback support", + "type": "bool" + }, + { + "children": [], + "depends_on": "(SECURE_BOOT_ENABLED && SECURE_BOOT_INSECURE) || !SECURE_BOOT_ENABLED", + "help": "This option disables the normal validation of an image coming out of\ndeep sleep (checksums, SHA256, and signature). This is a trade-off\nbetween wakeup performance from deep sleep, and image integrity checks.\n\nOnly enable this if you know what you are doing. It should not be used\nin conjunction with using deep_sleep() entry and changing the active OTA\npartition as this would skip the validation upon first load of the new\nOTA partition.", + "id": "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP", + "name": "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP", + "range": null, + "title": "Skip image validation when exiting deep sleep", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Reserve RTC FAST memory for Skip image validation. This option in bytes.\nThis option reserves an area in the RTC FAST memory (access only PRO_CPU).\nUsed to save the addresses of the selected application.\nWhen a wakeup occurs (from Deep sleep), the bootloader retrieves it and\nloads the application without validation.", + "id": "BOOTLOADER_RESERVE_RTC_SIZE", + "name": "BOOTLOADER_RESERVE_RTC_SIZE", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_CUSTOM_RESERVE_RTC", + "help": "This option reserves in RTC FAST memory the area for custom purposes.\nIf you want to create your own bootloader and save more information\nin this area of memory, you can increase it. It must be a multiple of 4 bytes.\nThis area (rtc_retain_mem_t) is reserved and has access from the bootloader and an application.", + "id": "BOOTLOADER_CUSTOM_RESERVE_RTC_SIZE", + "name": "BOOTLOADER_CUSTOM_RESERVE_RTC_SIZE", + "range": null, + "title": "Size in bytes for custom purposes", + "type": "hex" + } + ], + "depends_on": null, + "help": "This option allows the customer to place data in the RTC FAST memory,\nthis area remains valid when rebooted, except for power loss.\nThis memory is located at a fixed address and is available\nfor both the bootloader and the application.\n(The application and bootoloader must be compiled with the same option).\nThe RTC FAST memory has access only through PRO_CPU.", + "id": "BOOTLOADER_CUSTOM_RESERVE_RTC", + "name": "BOOTLOADER_CUSTOM_RESERVE_RTC", + "range": null, + "title": "Reserve RTC FAST memory for custom purposes", + "type": "bool" + } + ], + "depends_on": null, + "id": "bootloader-config", + "title": "Bootloader config", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SECURE_BOOT_ENABLED || SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT", + "help": null, + "id": "SECURE_SIGNED_ON_BOOT", + "name": "SECURE_SIGNED_ON_BOOT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_ENABLED || SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", + "help": null, + "id": "SECURE_SIGNED_ON_UPDATE", + "name": "SECURE_SIGNED_ON_UPDATE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_SIGNED_ON_BOOT || SECURE_SIGNED_ON_UPDATE", + "help": null, + "id": "SECURE_SIGNED_APPS", + "name": "SECURE_SIGNED_APPS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", + "help": "If this option is set, the bootloader will be compiled with code to verify that an app is signed before\nbooting it.\n\nIf hardware secure boot is enabled, this option is always enabled and cannot be disabled.\nIf hardware secure boot is not enabled, this option doesn't add significant security by itself so most\nusers will want to leave it disabled.", + "id": "SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT", + "name": "SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT", + "range": null, + "title": "Bootloader verifies app signatures", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", + "help": "If this option is set, any OTA updated apps will have the signature verified before being considered valid.\n\nWhen enabled, the signature is automatically checked whenever the esp_ota_ops.h APIs are used for OTA\nupdates, or esp_image_format.h APIs are used to verify apps.\n\nIf hardware secure boot is enabled, this option is always enabled and cannot be disabled.\nIf hardware secure boot is not enabled, this option still adds significant security against network-based\nattackers by preventing spoofing of OTA updates.", + "id": "SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", + "name": "SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", + "range": null, + "title": "Verify app signature on update", + "type": "bool" + } + ], + "depends_on": "!SECURE_BOOT_ENABLED", + "help": "Require apps to be signed to verify their integrity.\n\nThis option uses the same app signature scheme as hardware secure boot, but unlike hardware secure boot it\ndoes not prevent the bootloader from being physically updated. This means that the device can be secured\nagainst remote network access, but not physical access. Compared to using hardware Secure Boot this option\nis much simpler to implement.", + "id": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", + "name": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", + "range": null, + "title": "Require signed app images", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "On first boot, the bootloader will generate a key which is not readable externally or by software. A\ndigest is generated from the bootloader image itself. This digest will be verified on each subsequent\nboot.\n\nEnabling this option means that the bootloader cannot be changed after the first time it is booted.", + "id": "SECURE_BOOTLOADER_ONE_TIME_FLASH", + "name": "SECURE_BOOTLOADER_ONE_TIME_FLASH", + "range": null, + "title": "One-time flash", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Generate a reusable secure bootloader key, derived (via SHA-256) from the secure boot signing key.\n\nThis allows the secure bootloader to be re-flashed by anyone with access to the secure boot signing\nkey.\n\nThis option is less secure than one-time flash, because a leak of the digest key from one device\nallows reflashing of any device that uses it.", + "id": "SECURE_BOOTLOADER_REFLASHABLE", + "name": "SECURE_BOOTLOADER_REFLASHABLE", + "range": null, + "title": "Reflashable", + "type": "bool" + } + ], + "depends_on": "SECURE_BOOT_ENABLED", + "help": null, + "id": "security-features-enable-hardware-secure-boot-in-bootloader-read-docs-first--secure-bootloader-mode", + "name": "SECURE_BOOTLOADER_MODE", + "title": "Secure bootloader mode", + "type": "choice" + } + ], + "depends_on": null, + "help": "Build a bootloader which enables secure boot on first boot.\n\nOnce enabled, secure boot will not boot a modified bootloader. The bootloader will only load a partition\ntable or boot an app if the data has a verified digital signature. There are implications for reflashing\nupdated apps once secure boot is enabled.\n\nWhen enabling secure boot, JTAG and ROM BASIC Interpreter are permanently disabled by default.\n\nRefer to https://docs.espressif.com/projects/esp-idf/en/latest/security/secure-boot.html before enabling.", + "id": "SECURE_BOOT_ENABLED", + "name": "SECURE_BOOT_ENABLED", + "range": null, + "title": "Enable hardware secure boot in bootloader (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "SECURE_BOOT_BUILD_SIGNED_BINARIES", + "help": "Path to the key file used to sign app images.\n\nKey file is an ECDSA private key (NIST256p curve) in PEM format.\n\nPath is evaluated relative to the project directory.\n\nYou can generate a new signing key by running the following command:\nespsecure.py generate_signing_key secure_boot_signing_key.pem\n\nSee https://docs.espressif.com/projects/esp-idf/en/latest/security/secure-boot.html for details.", + "id": "SECURE_BOOT_SIGNING_KEY", + "name": "SECURE_BOOT_SIGNING_KEY", + "range": null, + "title": "Secure boot private signing key", + "type": "string" + } + ], + "depends_on": "SECURE_SIGNED_APPS", + "help": "Once secure boot or signed app requirement is enabled, app images are required to be signed.\n\nIf enabled (default), these binary files are signed as part of the build process. The file named in\n\"Secure boot private signing key\" will be used to sign the image.\n\nIf disabled, unsigned app/partition data will be built. They must be signed manually using espsecure.py\n(for example, on a remote signing server.)", + "id": "SECURE_BOOT_BUILD_SIGNED_BINARIES", + "name": "SECURE_BOOT_BUILD_SIGNED_BINARIES", + "range": null, + "title": "Sign binaries during build", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_SIGNED_APPS && !SECURE_BOOT_BUILD_SIGNED_BINARIES", + "help": "Path to a public key file used to verify signed images. This key is compiled into the bootloader and/or\napp, to verify app images.\n\nKey file is in raw binary format, and can be extracted from a\nPEM formatted private key using the espsecure.py\nextract_public_key command.\n\nRefer to https://docs.espressif.com/projects/esp-idf/en/latest/security/secure-boot.html before enabling.", + "id": "SECURE_BOOT_VERIFICATION_KEY", + "name": "SECURE_BOOT_VERIFICATION_KEY", + "range": null, + "title": "Secure boot public signature verification key", + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_BOOTLOADER_KEY_ENCODING_256BIT", + "name": "SECURE_BOOTLOADER_KEY_ENCODING_256BIT", + "range": null, + "title": "No encoding (256 bit key)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_BOOTLOADER_KEY_ENCODING_192BIT", + "name": "SECURE_BOOTLOADER_KEY_ENCODING_192BIT", + "range": null, + "title": "3/4 encoding (192 bit key)", + "type": "bool" + } + ], + "depends_on": "SECURE_BOOTLOADER_REFLASHABLE", + "help": "In reflashable secure bootloader mode, a hardware key is derived from the signing key (with SHA-256) and\ncan be written to eFuse with espefuse.py.\n\nNormally this is a 256-bit key, but if 3/4 Coding Scheme is used on the device then the eFuse key is\ntruncated to 192 bits.\n\nThis configuration item doesn't change any firmware code, it only changes the size of key binary which is\ngenerated at build time.", + "id": "security-features-hardware-key-encoding", + "name": "SECURE_BOOTLOADER_KEY_ENCODING", + "title": "Hardware Key Encoding", + "type": "choice" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_ENABLED", + "help": "You can disable some of the default protections offered by secure boot, in order to enable testing or a\ncustom combination of security features.\n\nOnly enable these options if you are very sure.\n\nRefer to https://docs.espressif.com/projects/esp-idf/en/latest/security/secure-boot.html before enabling.", + "id": "SECURE_BOOT_INSECURE", + "name": "SECURE_BOOT_INSECURE", + "range": null, + "title": "Allow potentially insecure options", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_AES128", + "name": "SECURE_FLASH_ENCRYPTION_AES128", + "range": null, + "title": "AES-128 (256-bit key)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_AES256", + "name": "SECURE_FLASH_ENCRYPTION_AES256", + "range": null, + "title": "AES-256 (512-bit key)", + "type": "bool" + } + ], + "depends_on": "IDF_TARGET_ESP32S2 && SECURE_FLASH_ENC_ENABLED", + "help": "Size of generated AES-XTS key.\n\nAES-128 uses a 256-bit key (32 bytes) which occupies one Efuse key block.\nAES-256 uses a 512-bit key (64 bytes) which occupies two Efuse key blocks.\n\nThis setting is ignored if either type of key is already burned to Efuse before the first boot.\nIn this case, the pre-burned key is used and no new key is generated.", + "id": "security-features-enable-flash-encryption-on-boot-read-docs-first--size-of-generated-aes-xts-key", + "name": "SECURE_FLASH_ENCRYPTION_KEYSIZE", + "title": "Size of generated AES-XTS key", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "name": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "range": null, + "title": "Development(NOT SECURE)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_MODE_RELEASE", + "name": "SECURE_FLASH_ENCRYPTION_MODE_RELEASE", + "range": null, + "title": "Release", + "type": "bool" + } + ], + "depends_on": "SECURE_FLASH_ENC_ENABLED", + "help": "By default Development mode is enabled which allows UART bootloader to perform flash encryption operations\n\nSelect Release mode only for production or manufacturing. Once enabled you can not reflash using UART\nbootloader\n\nRefer to https://docs.espressif.com/projects/esp-idf/en/latest/security/secure-boot.html and\nhttps://docs.espressif.com/projects/esp-idf/en/latest/security/flash-encryption.html for details.", + "id": "security-features-enable-flash-encryption-on-boot-read-docs-first--enable-usage-mode", + "name": "SECURE_FLASH_ENCRYPTION_MODE", + "title": "Enable usage mode", + "type": "choice" + } + ], + "depends_on": null, + "help": "If this option is set, flash contents will be encrypted by the bootloader on first boot.\n\nNote: After first boot, the system will be permanently encrypted. Re-flashing an encrypted\nsystem is complicated and not always possible.\n\nRead https://docs.espressif.com/projects/esp-idf/en/latest/security/flash-encryption.html\nbefore enabling.", + "id": "SECURE_FLASH_ENC_ENABLED", + "name": "SECURE_FLASH_ENC_ENABLED", + "range": null, + "title": "Enable flash encryption on boot (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "SECURE_BOOT_INSECURE || SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "help": "By default, the BASIC ROM Console starts on reset if no valid bootloader is\nread from the flash.\n\nWhen either flash encryption or secure boot are enabled, the default is to\ndisable this BASIC fallback mode permanently via eFuse.\n\nIf this option is set, this eFuse is not burned and the BASIC ROM Console may\nremain accessible. Only set this option in testing environments.", + "id": "SECURE_BOOT_ALLOW_ROM_BASIC", + "name": "SECURE_BOOT_ALLOW_ROM_BASIC", + "range": null, + "title": "Leave ROM BASIC Interpreter available on reset", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_INSECURE || SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "help": "If not set (default), the bootloader will permanently disable JTAG (across entire chip) on first boot\nwhen either secure boot or flash encryption is enabled.\n\nSetting this option leaves JTAG on for debugging, which negates all protections of flash encryption\nand some of the protections of secure boot.\n\nOnly set this option in testing environments.", + "id": "SECURE_BOOT_ALLOW_JTAG", + "name": "SECURE_BOOT_ALLOW_JTAG", + "range": null, + "title": "Allow JTAG Debugging", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_INSECURE", + "help": "If not set (default), app partition size must be a multiple of 64KB. App images are padded to 64KB\nlength, and the bootloader checks any trailing bytes after the signature (before the next 64KB\nboundary) have not been written. This is because flash cache maps entire 64KB pages into the address\nspace. This prevents an attacker from appending unverified data after the app image in the flash,\ncausing it to be mapped into the address space.\n\nSetting this option allows the app partition length to be unaligned, and disables padding of the app\nimage to this length. It is generally not recommended to set this option, unless you have a legacy\npartitioning scheme which doesn't support 64KB aligned partition lengths.", + "id": "SECURE_BOOT_ALLOW_SHORT_APP_PARTITION", + "name": "SECURE_BOOT_ALLOW_SHORT_APP_PARTITION", + "range": null, + "title": "Allow app partition length not 64KB aligned", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "help": "If not set (default), the bootloader will permanently disable UART bootloader encryption access on\nfirst boot. If set, the UART bootloader will still be able to access hardware encryption.\n\nIt is recommended to only set this option in testing environments.", + "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC", + "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC", + "range": null, + "title": "Leave UART bootloader encryption enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "help": "If not set (default), the bootloader will permanently disable UART bootloader decryption access on\nfirst boot. If set, the UART bootloader will still be able to access hardware decryption.\n\nOnly set this option in testing environments. Setting this option allows complete bypass of flash\nencryption.", + "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_DEC", + "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_DEC", + "range": null, + "title": "Leave UART bootloader decryption enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "help": "If not set (default), the bootloader will permanently disable UART bootloader flash cache access on\nfirst boot. If set, the UART bootloader will still be able to access the flash cache.\n\nOnly set this option in testing environments.", + "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE", + "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE", + "range": null, + "title": "Leave UART bootloader flash cache enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "help": "If not set (default), and flash encryption is not yet enabled in eFuses, the 2nd stage bootloader\nwill enable flash encryption: generate the flash encryption key and program eFuses.\nIf this option is set, and flash encryption is not yet enabled, the bootloader will error out and\nreboot.\nIf flash encryption is enabled in eFuses, this option does not change the bootloader behavior.\n\nOnly use this option in testing environments, to avoid accidentally enabling flash encryption on\nthe wrong device. The device needs to have flash encryption already enabled using espefuse.py.", + "id": "SECURE_FLASH_REQUIRE_ALREADY_ENABLED", + "name": "SECURE_FLASH_REQUIRE_ALREADY_ENABLED", + "range": null, + "title": "Require flash encryption to be already enabled", + "type": "bool" + } + ], + "depends_on": null, + "id": "security-features-potentially-insecure-options", + "title": "Potentially insecure options", + "type": "menu" + } + ], + "depends_on": null, + "id": "security-features", + "title": "Security features", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!IDF_CMAKE", + "help": "The serial port that's connected to the ESP chip. This can be overridden by setting the ESPPORT\nenvironment variable.\n\nThis value is ignored when using the CMake-based build system or idf.py.", + "id": "ESPTOOLPY_PORT", + "name": "ESPTOOLPY_PORT", + "range": null, + "title": "Default serial port", + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_BAUD_115200B", + "name": "ESPTOOLPY_BAUD_115200B", + "range": null, + "title": "115200 baud", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_BAUD_230400B", + "name": "ESPTOOLPY_BAUD_230400B", + "range": null, + "title": "230400 baud", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_BAUD_921600B", + "name": "ESPTOOLPY_BAUD_921600B", + "range": null, + "title": "921600 baud", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_BAUD_2MB", + "name": "ESPTOOLPY_BAUD_2MB", + "range": null, + "title": "2Mbaud", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_BAUD_OTHER", + "name": "ESPTOOLPY_BAUD_OTHER", + "range": null, + "title": "Other baud rate", + "type": "bool" + } + ], + "depends_on": "!IDF_CMAKE", + "help": "Default baud rate to use while communicating with the ESP chip. Can be overridden by\nsetting the ESPBAUD variable.\n\nThis value is ignored when using the CMake-based build system or idf.py.", + "id": "serial-flasher-config-default-baud-rate", + "name": "ESPTOOLPY_BAUD", + "title": "Default baud rate", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESPTOOLPY_BAUD_OTHER_VAL", + "name": "ESPTOOLPY_BAUD_OTHER_VAL", + "range": null, + "title": "Other baud rate value", + "type": "int" + }, + { + "children": [], + "depends_on": "!IDF_CMAKE", + "help": null, + "id": "ESPTOOLPY_BAUD", + "name": "ESPTOOLPY_BAUD", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "!IDF_CMAKE", + "help": "The flasher tool can send data compressed using zlib, letting the ROM on the ESP chip\ndecompress it on the fly before flashing it. For most payloads, this should result in a\nspeed increase.", + "id": "ESPTOOLPY_COMPRESSED", + "name": "ESPTOOLPY_COMPRESSED", + "range": null, + "title": "Use compressed upload", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHMODE_QIO", + "name": "ESPTOOLPY_FLASHMODE_QIO", + "range": null, + "title": "QIO", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHMODE_QOUT", + "name": "ESPTOOLPY_FLASHMODE_QOUT", + "range": null, + "title": "QOUT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHMODE_DIO", + "name": "ESPTOOLPY_FLASHMODE_DIO", + "range": null, + "title": "DIO", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHMODE_DOUT", + "name": "ESPTOOLPY_FLASHMODE_DOUT", + "range": null, + "title": "DOUT", + "type": "bool" + } + ], + "depends_on": null, + "help": "Mode the flash chip is flashed in, as well as the default mode for the\nbinary to run in.", + "id": "serial-flasher-config-flash-spi-mode", + "name": "ESPTOOLPY_FLASHMODE", + "title": "Flash SPI mode", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESPTOOLPY_FLASHMODE", + "name": "ESPTOOLPY_FLASHMODE", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_80M", + "name": "ESPTOOLPY_FLASHFREQ_80M", + "range": null, + "title": "80 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_40M", + "name": "ESPTOOLPY_FLASHFREQ_40M", + "range": null, + "title": "40 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_26M", + "name": "ESPTOOLPY_FLASHFREQ_26M", + "range": null, + "title": "26 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_20M", + "name": "ESPTOOLPY_FLASHFREQ_20M", + "range": null, + "title": "20 MHz", + "type": "bool" + } + ], + "depends_on": null, + "help": "The SPI flash frequency to be used.", + "id": "serial-flasher-config-flash-spi-speed", + "name": "ESPTOOLPY_FLASHFREQ", + "title": "Flash SPI speed", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESPTOOLPY_FLASHFREQ", + "name": "ESPTOOLPY_FLASHFREQ", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_1MB", + "name": "ESPTOOLPY_FLASHSIZE_1MB", + "range": null, + "title": "1 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_2MB", + "name": "ESPTOOLPY_FLASHSIZE_2MB", + "range": null, + "title": "2 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_4MB", + "name": "ESPTOOLPY_FLASHSIZE_4MB", + "range": null, + "title": "4 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_8MB", + "name": "ESPTOOLPY_FLASHSIZE_8MB", + "range": null, + "title": "8 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_16MB", + "name": "ESPTOOLPY_FLASHSIZE_16MB", + "range": null, + "title": "16 MB", + "type": "bool" + } + ], + "depends_on": null, + "help": "SPI flash size, in megabytes", + "id": "serial-flasher-config-flash-size", + "name": "ESPTOOLPY_FLASHSIZE", + "title": "Flash size", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESPTOOLPY_FLASHSIZE", + "name": "ESPTOOLPY_FLASHSIZE", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": "If this option is set, flashing the project will automatically detect\nthe flash size of the target chip and update the bootloader image\nbefore it is flashed.", + "id": "ESPTOOLPY_FLASHSIZE_DETECT", + "name": "ESPTOOLPY_FLASHSIZE_DETECT", + "range": null, + "title": "Detect flash size when flashing bootloader", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_BEFORE_RESET", + "name": "ESPTOOLPY_BEFORE_RESET", + "range": null, + "title": "Reset to bootloader", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_BEFORE_NORESET", + "name": "ESPTOOLPY_BEFORE_NORESET", + "range": null, + "title": "No reset", + "type": "bool" + } + ], + "depends_on": null, + "help": "Configure whether esptool.py should reset the ESP32 before flashing.\n\nAutomatic resetting depends on the RTS & DTR signals being\nwired from the serial port to the ESP32. Most USB development\nboards do this internally.", + "id": "serial-flasher-config-before-flashing", + "name": "ESPTOOLPY_BEFORE", + "title": "Before flashing", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESPTOOLPY_BEFORE", + "name": "ESPTOOLPY_BEFORE", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_AFTER_RESET", + "name": "ESPTOOLPY_AFTER_RESET", + "range": null, + "title": "Reset after flashing", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_AFTER_NORESET", + "name": "ESPTOOLPY_AFTER_NORESET", + "range": null, + "title": "Stay in bootloader", + "type": "bool" + } + ], + "depends_on": null, + "help": "Configure whether esptool.py should reset the ESP32 after flashing.\n\nAutomatic resetting depends on the RTS & DTR signals being\nwired from the serial port to the ESP32. Most USB development\nboards do this internally.", + "id": "serial-flasher-config-after-flashing", + "name": "ESPTOOLPY_AFTER", + "title": "After flashing", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESPTOOLPY_AFTER", + "name": "ESPTOOLPY_AFTER", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_MONITOR_BAUD_9600B", + "name": "ESPTOOLPY_MONITOR_BAUD_9600B", + "range": null, + "title": "9600 bps", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_MONITOR_BAUD_57600B", + "name": "ESPTOOLPY_MONITOR_BAUD_57600B", + "range": null, + "title": "57600 bps", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_MONITOR_BAUD_115200B", + "name": "ESPTOOLPY_MONITOR_BAUD_115200B", + "range": null, + "title": "115200 bps", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_MONITOR_BAUD_230400B", + "name": "ESPTOOLPY_MONITOR_BAUD_230400B", + "range": null, + "title": "230400 bps", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_MONITOR_BAUD_921600B", + "name": "ESPTOOLPY_MONITOR_BAUD_921600B", + "range": null, + "title": "921600 bps", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_MONITOR_BAUD_2MB", + "name": "ESPTOOLPY_MONITOR_BAUD_2MB", + "range": null, + "title": "2 Mbps", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_MONITOR_BAUD_OTHER", + "name": "ESPTOOLPY_MONITOR_BAUD_OTHER", + "range": null, + "title": "Custom baud rate", + "type": "bool" + } + ], + "depends_on": null, + "help": "Baud rate to use when running 'idf.py monitor' or 'make monitor'\nto view serial output from a running chip.\n\nCan override by setting the MONITORBAUD environment variable.", + "id": "serial-flasher-config--idf-py-monitor-baud-rate", + "name": "ESPTOOLPY_MONITOR_BAUD", + "title": "'idf.py monitor' baud rate", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESPTOOLPY_MONITOR_BAUD_OTHER_VAL", + "name": "ESPTOOLPY_MONITOR_BAUD_OTHER_VAL", + "range": null, + "title": "Custom baud rate value", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESPTOOLPY_MONITOR_BAUD", + "name": "ESPTOOLPY_MONITOR_BAUD", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": null, + "id": "serial-flasher-config", + "title": "Serial flasher config", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "PARTITION_TABLE_SINGLE_APP", + "name": "PARTITION_TABLE_SINGLE_APP", + "range": null, + "title": "Single factory app, no OTA", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "PARTITION_TABLE_TWO_OTA", + "name": "PARTITION_TABLE_TWO_OTA", + "range": null, + "title": "Factory app, two OTA definitions", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "PARTITION_TABLE_CUSTOM", + "name": "PARTITION_TABLE_CUSTOM", + "range": null, + "title": "Custom partition table CSV", + "type": "bool" + } + ], + "depends_on": null, + "help": "The partition table to flash to the ESP32. The partition table\ndetermines where apps, data and other resources are expected to\nbe found.\n\nThe predefined partition table CSV descriptions can be found\nin the components/partition_table directory. Otherwise it's\npossible to create a new custom partition CSV for your application.", + "id": "partition-table-partition-table", + "name": "PARTITION_TABLE_TYPE", + "title": "Partition Table", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "Name of the custom partition CSV filename. This path is evaluated\nrelative to the project root directory.", + "id": "PARTITION_TABLE_CUSTOM_FILENAME", + "name": "PARTITION_TABLE_CUSTOM_FILENAME", + "range": null, + "title": "Custom partition CSV file", + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "PARTITION_TABLE_FILENAME", + "name": "PARTITION_TABLE_FILENAME", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": "The address of partition table (by default 0x8000).\nAllows you to move the partition table, it gives more space for the bootloader.\nNote that the bootloader and app will both need to be compiled with the same PARTITION_TABLE_OFFSET value.\n\nThis number should be a multiple of 0x1000.\n\nNote that partition offsets in the partition table CSV file may need to be changed if this value is set to\na higher value. To have each partition offset adapt to the configured partition table offset, leave all\npartition offsets blank in the CSV file.", + "id": "PARTITION_TABLE_OFFSET", + "name": "PARTITION_TABLE_OFFSET", + "range": null, + "title": "Offset of partition table", + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": "Generate an MD5 checksum for the partition table for protecting the\nintegrity of the table. The generation should be turned off for legacy\nbootloaders which cannot recognize the MD5 checksum in the partition\ntable.", + "id": "PARTITION_TABLE_MD5", + "name": "PARTITION_TABLE_MD5", + "range": null, + "title": "Generate an MD5 checksum for the partition table", + "type": "bool" + } + ], + "depends_on": null, + "id": "partition-table", + "title": "Partition Table", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_OPTIMIZATION_DEFAULT", + "name": "COMPILER_OPTIMIZATION_DEFAULT", + "range": null, + "title": "Debug (-Og)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_OPTIMIZATION_SIZE", + "name": "COMPILER_OPTIMIZATION_SIZE", + "range": null, + "title": "Optimize for size (-Os)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_OPTIMIZATION_PERF", + "name": "COMPILER_OPTIMIZATION_PERF", + "range": null, + "title": "Optimize for performance (-O2)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_OPTIMIZATION_NONE", + "name": "COMPILER_OPTIMIZATION_NONE", + "range": null, + "title": "Debug without optimization (-O0)", + "type": "bool" + } + ], + "depends_on": null, + "help": "This option sets compiler optimization level (gcc -O argument).\n\n- The \"Default\" setting will add the -0g flag to CFLAGS.\n- The \"Size\" setting will add the -0s flag to CFLAGS.\n- The \"Performance\" setting will add the -O2 flag to CFLAGS.\n- The \"None\" setting will add the -O0 flag to CFLAGS.\n\nThe \"Size\" setting cause the compiled code to be smaller and faster, but\nmay lead to difficulties of correlating code addresses to source file\nlines when debugging.\n\nThe \"Performance\" setting causes the compiled code to be larger and faster,\nbut will be easier to correlated code addresses to source file lines.\n\n\"None\" with -O0 produces compiled code without optimization.\n\nNote that custom optimization levels may be unsupported.", + "id": "compiler-options-optimization-level", + "name": "COMPILER_OPTIMIZATION", + "title": "Optimization Level", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Enable assertions. Assertion content and line number will be printed on failure.", + "id": "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE", + "name": "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE", + "range": null, + "title": "Enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Enable silent assertions. Failed assertions will abort(), user needs to\nuse the aborting address to find the line number with the failed assertion.", + "id": "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT", + "name": "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT", + "range": null, + "title": "Silent (saves code size)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "If assertions are disabled, -DNDEBUG is added to CPPFLAGS.", + "id": "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE", + "name": "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE", + "range": null, + "title": "Disabled (sets -DNDEBUG)", + "type": "bool" + } + ], + "depends_on": null, + "help": "Assertions can be:\n\n- Enabled. Failure will print verbose assertion details. This is the default.\n\n- Set to \"silent\" to save code size (failed assertions will abort() but user\n needs to use the aborting address to find the line number with the failed assertion.)\n\n- Disabled entirely (not recommended for most configurations.) -DNDEBUG is added\n to CPPFLAGS in this case.", + "id": "compiler-options-assertion-level", + "name": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL", + "title": "Assertion level", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "COMPILER_CXX_EXCEPTIONS", + "help": "Size (in bytes) of the emergency memory pool for C++ exceptions. This pool will be used to allocate\nmemory for thrown exceptions when there is not enough memory on the heap.", + "id": "COMPILER_CXX_EXCEPTIONS_EMG_POOL_SIZE", + "name": "COMPILER_CXX_EXCEPTIONS_EMG_POOL_SIZE", + "range": null, + "title": "Emergency Pool Size", + "type": "int" + } + ], + "depends_on": null, + "help": "Enabling this option compiles all IDF C++ files with exception support enabled.\n\nDisabling this option disables C++ exception support in all compiled files, and any libstdc++ code\nwhich throws an exception will abort instead.\n\nEnabling this option currently adds an additional ~500 bytes of heap overhead\nwhen an exception is thrown in user code for the first time.", + "id": "COMPILER_CXX_EXCEPTIONS", + "is_menuconfig": true, + "name": "COMPILER_CXX_EXCEPTIONS", + "range": null, + "title": "Enable C++ exceptions", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option compiles all C++ files with RTTI support enabled.\nThis increases binary size (typically by tens of kB) but allows using\ndynamic_cast conversion and typeid operator.", + "id": "COMPILER_CXX_RTTI", + "name": "COMPILER_CXX_RTTI", + "range": null, + "title": "Enable C++ run-time type info (RTTI)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_STACK_CHECK_MODE_NONE", + "name": "COMPILER_STACK_CHECK_MODE_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_STACK_CHECK_MODE_NORM", + "name": "COMPILER_STACK_CHECK_MODE_NORM", + "range": null, + "title": "Normal", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_STACK_CHECK_MODE_STRONG", + "name": "COMPILER_STACK_CHECK_MODE_STRONG", + "range": null, + "title": "Strong", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_STACK_CHECK_MODE_ALL", + "name": "COMPILER_STACK_CHECK_MODE_ALL", + "range": null, + "title": "Overall", + "type": "bool" + } + ], + "depends_on": null, + "help": "Stack smashing protection mode. Emit extra code to check for buffer overflows, such as stack\nsmashing attacks. This is done by adding a guard variable to functions with vulnerable objects.\nThe guards are initialized when a function is entered and then checked when the function exits.\nIf a guard check fails, program is halted. Protection has the following modes:\n\n- In NORMAL mode (GCC flag: -fstack-protector) only functions that call alloca, and functions with\n buffers larger than 8 bytes are protected.\n\n- STRONG mode (GCC flag: -fstack-protector-strong) is like NORMAL, but includes additional functions\n to be protected -- those that have local array definitions, or have references to local frame\n addresses.\n\n- In OVERALL mode (GCC flag: -fstack-protector-all) all functions are protected.\n\nModes have the following impact on code performance and coverage:\n\n- performance: NORMAL > STRONG > OVERALL\n\n- coverage: NORMAL < STRONG < OVERALL", + "id": "compiler-options-stack-smashing-protection-mode", + "name": "COMPILER_STACK_CHECK_MODE", + "title": "Stack smashing protection mode", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "Stack smashing protection.", + "id": "COMPILER_STACK_CHECK", + "name": "COMPILER_STACK_CHECK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Adds -Wwrite-strings flag for the C/C++ compilers.\n\nFor C, this gives string constants the type ``const char[]`` so that\ncopying the address of one into a non-const ``char *`` pointer\nproduces a warning. This warning helps to find at compile time code\nthat tries to write into a string constant.\n\nFor C++, this warns about the deprecated conversion from string\nliterals to ``char *``.", + "id": "COMPILER_WARN_WRITE_STRINGS", + "name": "COMPILER_WARN_WRITE_STRINGS", + "range": null, + "title": "Enable -Wwrite-strings warning flag", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option if using GCC 6 or newer, and wanting to disable warnings which don't appear with\nGCC 5.", + "id": "COMPILER_DISABLE_GCC8_WARNINGS", + "name": "COMPILER_DISABLE_GCC8_WARNINGS", + "range": null, + "title": "Disable new warnings introduced in GCC 6 - 8", + "type": "bool" + } + ], + "depends_on": null, + "id": "compiler-options", + "title": "Compiler options", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "EFUSE_CUSTOM_TABLE", + "help": "Name of the custom eFuse CSV filename. This path is evaluated\nrelative to the project root directory.", + "id": "EFUSE_CUSTOM_TABLE_FILENAME", + "name": "EFUSE_CUSTOM_TABLE_FILENAME", + "range": null, + "title": "Custom eFuse CSV file", + "type": "string" + } + ], + "depends_on": null, + "help": "Allows to generate a structure for eFuse from the CSV file.", + "id": "EFUSE_CUSTOM_TABLE", + "name": "EFUSE_CUSTOM_TABLE", + "range": null, + "title": "Use custom eFuse table", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "All read and writes operations are redirected to RAM instead of eFuse registers.\nIf this option is set, all permanent changes (via eFuse) are disabled.\nLog output will state changes which would be applied, but they will not be.", + "id": "EFUSE_VIRTUAL", + "name": "EFUSE_VIRTUAL", + "range": null, + "title": "Simulate eFuse operations in RAM", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "EFUSE_CODE_SCHEME_COMPAT_NONE", + "name": "EFUSE_CODE_SCHEME_COMPAT_NONE", + "range": null, + "title": "None Only", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "EFUSE_CODE_SCHEME_COMPAT_3_4", + "name": "EFUSE_CODE_SCHEME_COMPAT_3_4", + "range": null, + "title": "3/4 and None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "EFUSE_CODE_SCHEME_COMPAT_REPEAT", + "name": "EFUSE_CODE_SCHEME_COMPAT_REPEAT", + "range": null, + "title": "Repeat, 3/4 and None (common table does not support it)", + "type": "bool" + } + ], + "depends_on": "IDF_TARGET_ESP32", + "help": "Selector eFuse code scheme.", + "id": "component-config-efuse-bit-manager-coding-scheme-compatibility", + "name": "EFUSE_CODE_SCHEME_SELECTOR", + "title": "Coding Scheme Compatibility", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "EFUSE_MAX_BLK_LEN", + "name": "EFUSE_MAX_BLK_LEN", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-efuse-bit-manager", + "title": "eFuse Bit Manager", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_REV_MIN_0", + "name": "ESP32_REV_MIN_0", + "range": null, + "title": "Rev 0", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_REV_MIN_1", + "name": "ESP32_REV_MIN_1", + "range": null, + "title": "Rev 1", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_REV_MIN_2", + "name": "ESP32_REV_MIN_2", + "range": null, + "title": "Rev 2", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_REV_MIN_3", + "name": "ESP32_REV_MIN_3", + "range": null, + "title": "Rev 3", + "type": "bool" + } + ], + "depends_on": null, + "help": "Minimum revision that ESP-IDF would support.\nESP-IDF performs different strategy on different esp32 revision.", + "id": "component-config-esp32-specific-minimum-supported-esp32-revision", + "name": "ESP32_REV_MIN", + "title": "Minimum Supported ESP32 Revision", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_REV_MIN", + "name": "ESP32_REV_MIN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_DPORT_WORKAROUND", + "name": "ESP32_DPORT_WORKAROUND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_DEFAULT_CPU_FREQ_80", + "name": "ESP32_DEFAULT_CPU_FREQ_80", + "range": null, + "title": "80 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_DEFAULT_CPU_FREQ_160", + "name": "ESP32_DEFAULT_CPU_FREQ_160", + "range": null, + "title": "160 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_DEFAULT_CPU_FREQ_240", + "name": "ESP32_DEFAULT_CPU_FREQ_240", + "range": null, + "title": "240 MHz", + "type": "bool" + } + ], + "depends_on": null, + "help": "CPU frequency to be set on application startup.", + "id": "component-config-esp32-specific-cpu-frequency", + "name": "ESP32_DEFAULT_CPU_FREQ_MHZ", + "title": "CPU frequency", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_DEFAULT_CPU_FREQ_MHZ", + "name": "ESP32_DEFAULT_CPU_FREQ_MHZ", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_TYPE_AUTO", + "name": "SPIRAM_TYPE_AUTO", + "range": null, + "title": "Auto-detect", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_TYPE_ESPPSRAM32", + "name": "SPIRAM_TYPE_ESPPSRAM32", + "range": null, + "title": "ESP-PSRAM32 or IS25WP032", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_TYPE_ESPPSRAM64", + "name": "SPIRAM_TYPE_ESPPSRAM64", + "range": null, + "title": "ESP-PSRAM64 or LY68L6400", + "type": "bool" + } + ], + "depends_on": "ESP32_SPIRAM_SUPPORT", + "help": null, + "id": "component-config-esp32-specific-support-for-external-spi-connected-ram-spi-ram-config-type-of-spi-ram-chip-in-use", + "name": "SPIRAM_TYPE", + "title": "Type of SPI RAM chip in use", + "type": "choice" + }, + { + "children": [], + "depends_on": "ESP32_SPIRAM_SUPPORT", + "help": null, + "id": "SPIRAM_SIZE", + "name": "SPIRAM_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_SPEED_40M", + "name": "SPIRAM_SPEED_40M", + "range": null, + "title": "40MHz clock speed", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESPTOOLPY_FLASHFREQ_80M && ", + "help": null, + "id": "SPIRAM_SPEED_80M", + "name": "SPIRAM_SPEED_80M", + "range": null, + "title": "80MHz clock speed", + "type": "bool" + } + ], + "depends_on": "ESP32_SPIRAM_SUPPORT", + "help": "Select the speed for the SPI RAM chip.\nIf SPI RAM is enabled, we only support three combinations of SPI speed mode we supported now:\n\n1. Flash SPI running at 40Mhz and RAM SPI running at 40Mhz\n2. Flash SPI running at 80Mhz and RAM SPI running at 40Mhz\n3. Flash SPI running at 80Mhz and RAM SPI running at 80Mhz\n\nNote: If the third mode(80Mhz+80Mhz) is enabled for SPI RAM of type 32MBit, one of the HSPI/VSPI host\nwill be occupied by the system. Which SPI host to use can be selected by the config item\nSPIRAM_OCCUPY_SPI_HOST. Application code should never touch HSPI/VSPI hardware in this case. The\noption to select 80MHz will only be visible if the flash SPI speed is also 80MHz.\n(ESPTOOLPY_FLASHFREQ_80M is true)", + "id": "component-config-esp32-specific-support-for-external-spi-connected-ram-spi-ram-config-set-ram-clock-speed", + "name": "SPIRAM_SPEED", + "title": "Set RAM clock speed", + "type": "choice" + }, + { + "children": [], + "depends_on": "ESP32_SPIRAM_SUPPORT", + "help": null, + "id": "SPIRAM", + "name": "SPIRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPIRAM_BOOT_INIT && !SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY && ESP32_SPIRAM_SUPPORT", + "help": "Normally, if psram initialization is enabled during compile time but not found at runtime, it\nis seen as an error making the CPU panic. If this is enabled, booting will complete\nbut no PSRAM will be available.", + "id": "SPIRAM_IGNORE_NOTFOUND", + "name": "SPIRAM_IGNORE_NOTFOUND", + "range": null, + "title": "Ignore PSRAM when not found", + "type": "bool" + } + ], + "depends_on": "ESP32_SPIRAM_SUPPORT", + "help": "If this is enabled, the SPI RAM will be enabled during initial boot. Unless you\nhave specific requirements, you'll want to leave this enabled so memory allocated\nduring boot-up can also be placed in SPI RAM.", + "id": "SPIRAM_BOOT_INIT", + "name": "SPIRAM_BOOT_INIT", + "range": null, + "title": "Initialize SPI RAM during startup", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_USE_MEMMAP", + "name": "SPIRAM_USE_MEMMAP", + "range": null, + "title": "Integrate RAM into memory map", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_USE_CAPS_ALLOC", + "name": "SPIRAM_USE_CAPS_ALLOC", + "range": null, + "title": "Make RAM allocatable using heap_caps_malloc(..., MALLOC_CAP_SPIRAM)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_USE_MALLOC", + "name": "SPIRAM_USE_MALLOC", + "range": null, + "title": "Make RAM allocatable using malloc() as well", + "type": "bool" + } + ], + "depends_on": "ESP32_SPIRAM_SUPPORT", + "help": "The SPI RAM can be accessed in multiple methods: by just having it available as an unmanaged\nmemory region in the CPU's memory map, by integrating it in the heap as 'special' memory\nneeding heap_caps_malloc to allocate, or by fully integrating it making malloc() also able to\nreturn SPI RAM pointers.", + "id": "component-config-esp32-specific-support-for-external-spi-connected-ram-spi-ram-config-spi-ram-access-method", + "name": "SPIRAM_USE", + "title": "SPI RAM access method", + "type": "choice" + }, + { + "children": [], + "depends_on": "SPIRAM_BOOT_INIT && ESP32_SPIRAM_SUPPORT", + "help": "Runs a rudimentary memory test on initialization. Aborts when memory test fails. Disable this for\nslightly faster startup.", + "id": "SPIRAM_MEMTEST", + "name": "SPIRAM_MEMTEST", + "range": null, + "title": "Run memory test on SPI RAM initialization", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_USE_MALLOC && ESP32_SPIRAM_SUPPORT", + "help": "If malloc() is capable of also allocating SPI-connected ram, its allocation strategy will prefer to\nallocate chunks less than this size in internal memory, while allocations larger than this will be\ndone from external RAM. If allocation from the preferred region fails, an attempt is made to allocate\nfrom the non-preferred region instead, so malloc() will not suddenly fail when either internal or\nexternal memory is full.", + "id": "SPIRAM_MALLOC_ALWAYSINTERNAL", + "name": "SPIRAM_MALLOC_ALWAYSINTERNAL", + "range": null, + "title": "Maximum malloc() size, in bytes, to always put in internal memory", + "type": "int" + }, + { + "children": [], + "depends_on": "(SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && ESP32_SPIRAM_SUPPORT", + "help": "Try to allocate memories of WiFi and LWIP in SPIRAM firstly. If failed, try to allocate internal\nmemory then.", + "id": "SPIRAM_TRY_ALLOCATE_WIFI_LWIP", + "name": "SPIRAM_TRY_ALLOCATE_WIFI_LWIP", + "range": null, + "title": "Try to allocate memories of WiFi and LWIP in SPIRAM firstly. If failed, allocate internal memory", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_USE_MALLOC && ESP32_SPIRAM_SUPPORT", + "help": "Because the external/internal RAM allocation strategy is not always perfect, it sometimes may happen\nthat the internal memory is entirely filled up. This causes allocations that are specifically done in\ninternal memory, for example the stack for new tasks or memory to service DMA or have memory that's\nalso available when SPI cache is down, to fail. This option reserves a pool specifically for requests\nlike that; the memory in this pool is not given out when a normal malloc() is called.\n\nSet this to 0 to disable this feature.\n\nNote that because FreeRTOS stacks are forced to internal memory, they will also use this memory pool;\nbe sure to keep this in mind when adjusting this value.\n\nNote also that the DMA reserved pool may not be one single contiguous memory region, depending on the\nconfigured size and the static memory usage of the app.", + "id": "SPIRAM_MALLOC_RESERVE_INTERNAL", + "name": "SPIRAM_MALLOC_RESERVE_INTERNAL", + "range": null, + "title": "Reserve this amount of bytes for data that specifically needs to be in DMA or internal memory", + "type": "int" + }, + { + "children": [], + "depends_on": "SPIRAM && ESP32_SPIRAM_SUPPORT", + "help": "If enabled the option,and add EXT_RAM_ATTR defined your variable,then your variable will be placed in\nPSRAM instead of internal memory, and placed most of variables of lwip,net802.11,pp,bluedroid library\nto external memory defaultly.", + "id": "SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY", + "name": "SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY", + "range": null, + "title": "Allow .bss segment placed in external memory", + "type": "bool" + }, + { + "children": [], + "depends_on": "(SPIRAM_USE_MEMMAP || SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && ESP32_REV_MIN < 3 && ESP32_SPIRAM_SUPPORT", + "help": "Revision 1 of the ESP32 has a bug that can cause a write to PSRAM not to take place in some situations\nwhen the cache line needs to be fetched from external RAM and an interrupt occurs. This enables a\nfix in the compiler (-mfix-esp32-psram-cache-issue) that makes sure the specific code that is\nvulnerable to this will not be emitted.\n\nThis will also not use any bits of newlib that are located in ROM, opting for a version that is\ncompiled with the workaround and located in flash instead.\n\nThe workaround is not required for ESP32 revision 3 and above.", + "id": "SPIRAM_CACHE_WORKAROUND", + "name": "SPIRAM_CACHE_WORKAROUND", + "range": null, + "title": "Enable workaround for bug in SPI RAM cache for Rev1 ESP32s", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPIRAM_BANKSWITCH_ENABLE && ESP32_SPIRAM_SUPPORT", + "help": "Select the amount of banks reserved for bank switching. Note that the amount of RAM allocatable with\nmalloc/esp_heap_alloc_caps will decrease by 32K for each page reserved here.\n\nNote that this reservation is only actually done if your program actually uses the himem API. Without\nany himem calls, the reservation is not done and the original amount of memory will be available\nto malloc/esp_heap_alloc_caps.", + "id": "SPIRAM_BANKSWITCH_RESERVE", + "name": "SPIRAM_BANKSWITCH_RESERVE", + "range": null, + "title": "Amount of 32K pages to reserve for bank switching", + "type": "int" + } + ], + "depends_on": "(SPIRAM_USE_MEMMAP || SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && ESP32_SPIRAM_SUPPORT", + "help": "The ESP32 only supports 4MiB of external RAM in its address space. The hardware does support larger\nmemories, but these have to be bank-switched in and out of this address space. Enabling this allows you\nto reserve some MMU pages for this, which allows the use of the esp_himem api to manage these banks.\n\n#Note that this is limited to 62 banks, as esp_spiram_writeback_cache needs some kind of mapping of\n#some banks below that mark to work. We cannot at this moment guarantee this to exist when himem is\n#enabled.", + "id": "SPIRAM_BANKSWITCH_ENABLE", + "name": "SPIRAM_BANKSWITCH_ENABLE", + "range": null, + "title": "Enable bank switching for >4MiB external RAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_USE_MALLOC && ESP32_SPIRAM_SUPPORT", + "help": "Because some bits of the ESP32 code environment cannot be recompiled with the cache workaround,\nnormally tasks cannot be safely run with their stack residing in external memory; for this reason\nxTaskCreate and friends always allocate stack in internal memory and xTaskCreateStatic will check if\nthe memory passed to it is in internal memory. If you have a task that needs a large amount of stack\nand does not call on ROM code in any way (no direct calls, but also no Bluetooth/WiFi), you can try to\ndisable this and use xTaskCreateStatic to create the tasks stack in external memory.", + "id": "SPIRAM_ALLOW_STACK_EXTERNAL_MEMORY", + "name": "SPIRAM_ALLOW_STACK_EXTERNAL_MEMORY", + "range": null, + "title": "Allow external memory as an argument to xTaskCreateStatic", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_OCCUPY_HSPI_HOST", + "name": "SPIRAM_OCCUPY_HSPI_HOST", + "range": null, + "title": "HSPI host (SPI2)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_OCCUPY_VSPI_HOST", + "name": "SPIRAM_OCCUPY_VSPI_HOST", + "range": null, + "title": "VSPI host (SPI3)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_OCCUPY_NO_HOST", + "name": "SPIRAM_OCCUPY_NO_HOST", + "range": null, + "title": "Will not try to use any host, will abort if not able to use the PSRAM", + "type": "bool" + } + ], + "depends_on": "SPIRAM_SPEED_80M && ESP32_SPIRAM_SUPPORT", + "help": "When both flash and PSRAM is working under 80MHz, and the PSRAM is of type 32MBit, one of the HSPI/VSPI\nhost will be used to output the clock. Select which one to use here.", + "id": "component-config-esp32-specific-support-for-external-spi-connected-ram-spi-ram-config-spi-host-to-use-for-32mbit-psram", + "name": "SPIRAM_OCCUPY_SPI_HOST", + "title": "SPI host to use for 32MBit PSRAM", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP32_SPIRAM_SUPPORT && ESP32_SPIRAM_SUPPORT", + "help": "The PSRAM CLOCK IO can be any unused GPIO, user can config it based on hardware design. If user use\n1.8V flash and 1.8V psram, this value can only be one of 6, 7, 8, 9, 10, 11, 16, 17.", + "id": "D0WD_PSRAM_CLK_IO", + "name": "D0WD_PSRAM_CLK_IO", + "range": null, + "title": "PSRAM CLK IO number", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP32_SPIRAM_SUPPORT && ESP32_SPIRAM_SUPPORT", + "help": "The PSRAM CS IO can be any unused GPIO, user can config it based on hardware design. If user use\n1.8V flash and 1.8V psram, this value can only be one of 6, 7, 8, 9, 10, 11, 16, 17.", + "id": "D0WD_PSRAM_CS_IO", + "name": "D0WD_PSRAM_CS_IO", + "range": null, + "title": "PSRAM CS IO number", + "type": "int" + } + ], + "depends_on": "ESP32_SPIRAM_SUPPORT", + "id": "component-config-esp32-specific-support-for-external-spi-connected-ram-spi-ram-config-psram-clock-and-cs-io-for-esp32-dowd", + "title": "PSRAM clock and cs IO for ESP32-DOWD", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP32_SPIRAM_SUPPORT && ESP32_SPIRAM_SUPPORT", + "help": "User can config it based on hardware design. For ESP32-D2WD chip, the psram can only be 1.8V psram,\nso this value can only be one of 6, 7, 8, 9, 10, 11, 16, 17.", + "id": "D2WD_PSRAM_CLK_IO", + "name": "D2WD_PSRAM_CLK_IO", + "range": null, + "title": "PSRAM CLK IO number", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP32_SPIRAM_SUPPORT && ESP32_SPIRAM_SUPPORT", + "help": "User can config it based on hardware design. For ESP32-D2WD chip, the psram can only be 1.8V psram,\nso this value can only be one of 6, 7, 8, 9, 10, 11, 16, 17.", + "id": "D2WD_PSRAM_CS_IO", + "name": "D2WD_PSRAM_CS_IO", + "range": null, + "title": "PSRAM CS IO number", + "type": "int" + } + ], + "depends_on": "ESP32_SPIRAM_SUPPORT", + "id": "component-config-esp32-specific-support-for-external-spi-connected-ram-spi-ram-config-psram-clock-and-cs-io-for-esp32-d2wd", + "title": "PSRAM clock and cs IO for ESP32-D2WD", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP32_SPIRAM_SUPPORT && ESP32_SPIRAM_SUPPORT", + "help": "The PSRAM CS IO can be any unused GPIO, user can config it based on hardware design.\n\nFor ESP32-PICO chip, the psram share clock with flash, so user do not need to configure the clock\nIO.\nFor the reference hardware design, please refer to\nhttps://www.espressif.com/sites/default/files/documentation/esp32-pico-d4_datasheet_en.pdf", + "id": "PICO_PSRAM_CS_IO", + "name": "PICO_PSRAM_CS_IO", + "range": null, + "title": "PSRAM CS IO number", + "type": "int" + } + ], + "depends_on": "ESP32_SPIRAM_SUPPORT", + "id": "component-config-esp32-specific-support-for-external-spi-connected-ram-spi-ram-config-psram-clock-and-cs-io-for-esp32-pico", + "title": "PSRAM clock and cs IO for ESP32-PICO", + "type": "menu" + }, + { + "children": [], + "depends_on": "(ESPTOOLPY_FLASHMODE_DIO || ESPTOOLPY_FLASHMODE_DOUT) && ESP32_SPIRAM_SUPPORT", + "help": "This value is ignored unless flash mode is set to DIO or DOUT and the SPI flash pins have been\noverriden by setting the eFuses SPI_PAD_CONFIG_xxx.\n\nWhen this is the case, the eFuse config only defines 3 of the 4 Quad I/O data pins. The WP pin (aka\nESP32 pin \"SD_DATA_3\" or SPI flash pin \"IO2\") is not specified in eFuse. And the psram only has QPI\nmode, the WP pin is necessary, so we need to configure this value here.\n\nWhen flash mode is set to QIO or QOUT, the PSRAM WP pin will be set as the value configured in\nbootloader.\n\nFor ESP32-PICO chip, the default value of this config should be 7.", + "id": "SPIRAM_SPIWP_SD3_PIN", + "name": "SPIRAM_SPIWP_SD3_PIN", + "range": null, + "title": "SPI PSRAM WP(SD3) Pin when customising pins via eFuse (read help)", + "type": "int" + } + ], + "depends_on": "ESP32_SPIRAM_SUPPORT", + "id": "component-config-esp32-specific-support-for-external-spi-connected-ram-spi-ram-config", + "title": "SPI RAM config", + "type": "menu" + } + ], + "depends_on": null, + "help": "This enables support for an external SPI RAM chip, connected in parallel with the\nmain SPI flash chip.", + "id": "ESP32_SPIRAM_SUPPORT", + "name": "ESP32_SPIRAM_SUPPORT", + "range": null, + "title": "Support for external, SPI-connected RAM", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_MEMMAP_TRACEMEM", + "name": "ESP32_MEMMAP_TRACEMEM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_MEMMAP_TRACEMEM_TWOBANKS", + "name": "ESP32_MEMMAP_TRACEMEM_TWOBANKS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP32_TRAX && !FREERTOS_UNICORE", + "help": "The ESP32 contains a feature which allows you to trace the execution path the processor\nhas taken through the program. This is stored in a chunk of 32K (16K for single-processor)\nof memory that can't be used for general purposes anymore. Disable this if you do not know\nwhat this is.\n\n# Memory to reverse for trace, used in linker script", + "id": "ESP32_TRAX_TWOBANKS", + "name": "ESP32_TRAX_TWOBANKS", + "range": null, + "title": "Reserve memory for tracing both pro as well as app cpu execution", + "type": "bool" + } + ], + "depends_on": null, + "help": "The ESP32 contains a feature which allows you to trace the execution path the processor\nhas taken through the program. This is stored in a chunk of 32K (16K for single-processor)\nof memory that can't be used for general purposes anymore. Disable this if you do not know\nwhat this is.", + "id": "ESP32_TRAX", + "name": "ESP32_TRAX", + "range": null, + "title": "Use TRAX tracing feature", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_TRACEMEM_RESERVE_DRAM", + "name": "ESP32_TRACEMEM_RESERVE_DRAM", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_UNIVERSAL_MAC_ADDRESSES_TWO", + "name": "ESP32_UNIVERSAL_MAC_ADDRESSES_TWO", + "range": null, + "title": "Two", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR", + "name": "ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR", + "range": null, + "title": "Four", + "type": "bool" + } + ], + "depends_on": null, + "help": "Configure the number of universally administered (by IEEE) MAC addresses.\nDuring initialization, MAC addresses for each network interface are generated or derived from a\nsingle base MAC address.\nIf the number of universal MAC addresses is four, all four interfaces (WiFi station, WiFi softap,\nBluetooth and Ethernet) receive a universally administered MAC address. These are generated\nsequentially by adding 0, 1, 2 and 3 (respectively) to the final octet of the base MAC address.\nIf the number of universal MAC addresses is two, only two interfaces (WiFi station and Bluetooth)\nreceive a universally administered MAC address. These are generated sequentially by adding 0\nand 1 (respectively) to the base MAC address. The remaining two interfaces (WiFi softap and Ethernet)\nreceive local MAC addresses. These are derived from the universal WiFi station and Bluetooth MAC\naddresses, respectively.\nWhen using the default (Espressif-assigned) base MAC address, either setting can be used. When using\na custom universal MAC address range, the correct setting will depend on the allocation of MAC\naddresses in this range (either 2 or 4 per device.)", + "id": "component-config-esp32-specific-number-of-universally-administered-by-ieee-mac-address", + "name": "ESP32_UNIVERSAL_MAC_ADDRESSES", + "title": "Number of universally administered (by IEEE) MAC address", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_UNIVERSAL_MAC_ADDRESSES", + "name": "ESP32_UNIVERSAL_MAC_ADDRESSES", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Bytes of memory to reserve for ULP coprocessor firmware & data.\n\nData is reserved at the beginning of RTC slow memory.", + "id": "ESP32_ULP_COPROC_RESERVE_MEM", + "name": "ESP32_ULP_COPROC_RESERVE_MEM", + "range": [ + 0, + 0 + ], + "title": "RTC slow memory reserved for coprocessor", + "type": "int" + } + ], + "depends_on": null, + "help": "Set to 'y' if you plan to load a firmware for the coprocessor.\n\nIf this option is enabled, further coprocessor configuration will appear in the Components menu.", + "id": "ESP32_ULP_COPROC_ENABLED", + "name": "ESP32_ULP_COPROC_ENABLED", + "range": null, + "title": "Enable Ultra Low Power (ULP) Coprocessor", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Outputs the relevant registers over the serial port and halt the\nprocessor. Needs a manual reset to restart.", + "id": "ESP32_PANIC_PRINT_HALT", + "name": "ESP32_PANIC_PRINT_HALT", + "range": null, + "title": "Print registers and halt", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Outputs the relevant registers over the serial port and immediately\nreset the processor.", + "id": "ESP32_PANIC_PRINT_REBOOT", + "name": "ESP32_PANIC_PRINT_REBOOT", + "range": null, + "title": "Print registers and reboot", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Just resets the processor without outputting anything", + "id": "ESP32_PANIC_SILENT_REBOOT", + "name": "ESP32_PANIC_SILENT_REBOOT", + "range": null, + "title": "Silent reboot", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Invoke gdbstub on the serial port, allowing for gdb to attach to it to do a postmortem\nof the crash.", + "id": "ESP32_PANIC_GDBSTUB", + "name": "ESP32_PANIC_GDBSTUB", + "range": null, + "title": "Invoke GDBStub", + "type": "bool" + } + ], + "depends_on": null, + "help": "If FreeRTOS detects unexpected behaviour or an unhandled exception, the panic handler is\ninvoked. Configure the panic handlers action here.", + "id": "component-config-esp32-specific-panic-handler-behaviour", + "name": "ESP32_PANIC", + "title": "Panic handler behaviour", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "The FreeRTOS panic and unhandled exception handers can detect a JTAG OCD debugger and\ninstead of panicking, have the debugger stop on the offending instruction.", + "id": "ESP32_DEBUG_OCDAWARE", + "name": "ESP32_DEBUG_OCDAWARE", + "range": null, + "title": "Make exception and panic handlers JTAG/OCD aware", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_BROWNOUT_DET_LVL_SEL_0", + "name": "ESP32_BROWNOUT_DET_LVL_SEL_0", + "range": null, + "title": "2.43V +/- 0.05", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_BROWNOUT_DET_LVL_SEL_1", + "name": "ESP32_BROWNOUT_DET_LVL_SEL_1", + "range": null, + "title": "2.48V +/- 0.05", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_BROWNOUT_DET_LVL_SEL_2", + "name": "ESP32_BROWNOUT_DET_LVL_SEL_2", + "range": null, + "title": "2.58V +/- 0.05", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_BROWNOUT_DET_LVL_SEL_3", + "name": "ESP32_BROWNOUT_DET_LVL_SEL_3", + "range": null, + "title": "2.62V +/- 0.05", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_BROWNOUT_DET_LVL_SEL_4", + "name": "ESP32_BROWNOUT_DET_LVL_SEL_4", + "range": null, + "title": "2.67V +/- 0.05", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_BROWNOUT_DET_LVL_SEL_5", + "name": "ESP32_BROWNOUT_DET_LVL_SEL_5", + "range": null, + "title": "2.70V +/- 0.05", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_BROWNOUT_DET_LVL_SEL_6", + "name": "ESP32_BROWNOUT_DET_LVL_SEL_6", + "range": null, + "title": "2.77V +/- 0.05", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_BROWNOUT_DET_LVL_SEL_7", + "name": "ESP32_BROWNOUT_DET_LVL_SEL_7", + "range": null, + "title": "2.80V +/- 0.05", + "type": "bool" + } + ], + "depends_on": "ESP32_BROWNOUT_DET", + "help": "The brownout detector will reset the chip when the supply voltage is approximately\nbelow this level. Note that there may be some variation of brownout voltage level\nbetween each ESP32 chip.\n\n#The voltage levels here are estimates, more work needs to be done to figure out the exact voltages\n#of the brownout threshold levels.", + "id": "component-config-esp32-specific-hardware-brownout-detect-reset-brownout-voltage-level", + "name": "ESP32_BROWNOUT_DET_LVL_SEL", + "title": "Brownout voltage level", + "type": "choice" + } + ], + "depends_on": null, + "help": "The ESP32 has a built-in brownout detector which can detect if the voltage is lower than\na specific value. If this happens, it will reset the chip in order to prevent unintended\nbehaviour.", + "id": "ESP32_BROWNOUT_DET", + "name": "ESP32_BROWNOUT_DET", + "range": null, + "title": "Hardware brownout detect & reset", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_BROWNOUT_DET_LVL", + "name": "ESP32_BROWNOUT_DET_LVL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "ESP32_BROWNOUT_DET", + "help": "When brownout reset occurs, reduce PHY TX power to keep the code running\n\n# Note about the use of \"FRC1\" name: currently FRC1 timer is not used for\n# high resolution timekeeping anymore. Instead the esp_timer API is used.\n# FRC1 name in the option name is kept for compatibility.", + "id": "ESP32_REDUCE_PHY_TX_POWER", + "name": "ESP32_REDUCE_PHY_TX_POWER", + "range": null, + "title": "Reduce PHY TX power when brownout reset", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_TIME_SYSCALL_USE_RTC_FRC1", + "name": "ESP32_TIME_SYSCALL_USE_RTC_FRC1", + "range": null, + "title": "RTC and high-resolution timer", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_TIME_SYSCALL_USE_RTC", + "name": "ESP32_TIME_SYSCALL_USE_RTC", + "range": null, + "title": "RTC", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_TIME_SYSCALL_USE_FRC1", + "name": "ESP32_TIME_SYSCALL_USE_FRC1", + "range": null, + "title": "High-resolution timer", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_TIME_SYSCALL_USE_NONE", + "name": "ESP32_TIME_SYSCALL_USE_NONE", + "range": null, + "title": "None", + "type": "bool" + } + ], + "depends_on": null, + "help": "This setting defines which hardware timers are used to\nimplement 'gettimeofday' and 'time' functions in C library.\n\n- If both high-resolution and RTC timers are used, timekeeping will\n continue in deep sleep. Time will be reported at 1 microsecond\n resolution. This is the default, and the recommended option.\n- If only high-resolution timer is used, gettimeofday will\n provide time at microsecond resolution.\n Time will not be preserved when going into deep sleep mode.\n- If only RTC timer is used, timekeeping will continue in\n deep sleep, but time will be measured at 6.(6) microsecond\n resolution. Also the gettimeofday function itself may take\n longer to run.\n- If no timers are used, gettimeofday and time functions\n return -1 and set errno to ENOSYS.\n- When RTC is used for timekeeping, two RTC_STORE registers are\n used to keep time in deep sleep mode.", + "id": "component-config-esp32-specific-timers-used-for-gettimeofday-function", + "name": "ESP32_TIME_SYSCALL", + "title": "Timers used for gettimeofday function", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_RTC_CLK_SRC_INT_RC", + "name": "ESP32_RTC_CLK_SRC_INT_RC", + "range": null, + "title": "Internal 150kHz RC oscillator", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_RTC_CLK_SRC_EXT_CRYS", + "name": "ESP32_RTC_CLK_SRC_EXT_CRYS", + "range": null, + "title": "External 32kHz crystal", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_RTC_CLK_SRC_EXT_OSC", + "name": "ESP32_RTC_CLK_SRC_EXT_OSC", + "range": null, + "title": "External 32kHz oscillator at 32K_XP pin", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_RTC_CLK_SRC_INT_8MD256", + "name": "ESP32_RTC_CLK_SRC_INT_8MD256", + "range": null, + "title": "Internal 8.5MHz oscillator, divided by 256 (~33kHz)", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose which clock is used as RTC clock source.\n\n- \"Internal 150kHz oscillator\" option provides lowest deep sleep current\n consumption, and does not require extra external components. However\n frequency stability with respect to temperature is poor, so time may\n drift in deep/light sleep modes.\n- \"External 32kHz crystal\" provides better frequency stability, at the\n expense of slightly higher (1uA) deep sleep current consumption.\n- \"External 32kHz oscillator\" allows using 32kHz clock generated by an\n external circuit. In this case, external clock signal must be connected\n to 32K_XP pin. Amplitude should be <1.2V in case of sine wave signal,\n and <1V in case of square wave signal. Common mode voltage should be\n 0.1 < Vcm < 0.5Vamp, where Vamp is the signal amplitude.\n Additionally, 1nF capacitor must be connected between 32K_XN pin and\n ground. 32K_XN pin can not be used as a GPIO in this case.\n- \"Internal 8.5MHz oscillator divided by 256\" option results in higher\n deep sleep current (by 5uA) but has better frequency stability than\n the internal 150kHz oscillator. It does not require external components.", + "id": "component-config-esp32-specific-rtc-clock-source", + "name": "ESP32_RTC_CLK_SRC", + "title": "RTC clock source", + "type": "choice" + }, + { + "children": [], + "depends_on": "ESP32_RTC_CLK_SRC_EXT_CRYS", + "help": "Choose which additional current is used for rtc external crystal.\n\n- With some 32kHz crystal configurations, the X32N and X32P pins may not\n have enough drive strength to keep the crystal oscillating during deep sleep.\n If this option is enabled, additional current from touchpad 9 is provided\n internally to drive the 32kHz crystal. If this option is enabled, deep sleep current\n is slightly higher (4-5uA) and the touchpad and ULP wakeup sources are not available.", + "id": "ESP32_RTC_EXT_CRYST_ADDIT_CURRENT", + "name": "ESP32_RTC_EXT_CRYST_ADDIT_CURRENT", + "range": null, + "title": "Additional current for external 32kHz crystal", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "When the startup code initializes RTC_SLOW_CLK, it can perform\ncalibration by comparing the RTC_SLOW_CLK frequency with main XTAL\nfrequency. This option sets the number of RTC_SLOW_CLK cycles measured\nby the calibration routine. Higher numbers increase calibration\nprecision, which may be important for applications which spend a lot of\ntime in deep sleep. Lower numbers reduce startup time.\n\nWhen this option is set to 0, clock calibration will not be performed at\nstartup, and approximate clock frequencies will be assumed:\n\n- 150000 Hz if internal RC oscillator is used as clock source. For this use value 1024.\n- 32768 Hz if the 32k crystal oscillator is used. For this use value 3000 or more.\n In case more value will help improve the definition of the launch of the crystal.\n If the crystal could not start, it will be switched to internal RC.", + "id": "ESP32_RTC_CLK_CAL_CYCLES", + "name": "ESP32_RTC_CLK_CAL_CYCLES", + "range": [ + 0, + 32766 + ], + "title": "Number of cycles for RTC_SLOW_CLK calibration", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP32_RTC_CLK_SRC_EXT_CRYS", + "help": "To reduce the startup time of an external RTC crystal,\nwe bootstrap it with a 32kHz square wave for a fixed number of cycles.\nSetting 0 will disable bootstrapping (if disabled, the crystal may take\nlonger to start up or fail to oscillate under some conditions).\n\nIf this value is too high, a faulty crystal may initially start and then fail.\nIf this value is too low, an otherwise good crystal may not start.\n\nTo accurately determine if the crystal has started,\nset a larger \"Number of cycles for RTC_SLOW_CLK calibration\" (about 3000).", + "id": "ESP32_RTC_XTAL_BOOTSTRAP_CYCLES", + "name": "ESP32_RTC_XTAL_BOOTSTRAP_CYCLES", + "range": null, + "title": "Bootstrap cycles for external 32kHz crystal", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "When ESP32 exits deep sleep, the CPU and the flash chip are powered on\nat the same time. CPU will run deep sleep stub first, and then\nproceed to load code from flash. Some flash chips need sufficient\ntime to pass between power on and first read operation. By default,\nwithout any extra delay, this time is approximately 900us, although\nsome flash chip types need more than that.\n\nBy default extra delay is set to 2000us. When optimizing startup time\nfor applications which require it, this value may be reduced.\n\nIf you are seeing \"flash read err, 1000\" message printed to the\nconsole after deep sleep reset, try increasing this value.", + "id": "ESP32_DEEP_SLEEP_WAKEUP_DELAY", + "name": "ESP32_DEEP_SLEEP_WAKEUP_DELAY", + "range": [ + 0, + 5000 + ], + "title": "Extra delay in deep sleep wake stub (in us)", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_XTAL_FREQ_40", + "name": "ESP32_XTAL_FREQ_40", + "range": null, + "title": "40 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_XTAL_FREQ_26", + "name": "ESP32_XTAL_FREQ_26", + "range": null, + "title": "26 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_XTAL_FREQ_AUTO", + "name": "ESP32_XTAL_FREQ_AUTO", + "range": null, + "title": "Autodetect", + "type": "bool" + } + ], + "depends_on": null, + "help": "ESP32 currently supports the following XTAL frequencies:\n\n- 26 MHz\n- 40 MHz\n\nStartup code can automatically estimate XTAL frequency. This feature\nuses the internal 8MHz oscillator as a reference. Because the internal\noscillator frequency is temperature dependent, it is not recommended\nto use automatic XTAL frequency detection in applications which need\nto work at high ambient temperatures and use high-temperature\nqualified chips and modules.", + "id": "component-config-esp32-specific-main-xtal-frequency", + "name": "ESP32_XTAL_FREQ_SEL", + "title": "Main XTAL frequency", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_XTAL_FREQ", + "name": "ESP32_XTAL_FREQ", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "If set, the first time the app boots it will disable the BASIC ROM Console\npermanently (by burning an eFuse).\n\nOtherwise, the BASIC ROM Console starts on reset if no valid bootloader is\nread from the flash.\n\n(Enabling secure boot also disables the BASIC ROM Console by default.)", + "id": "ESP32_DISABLE_BASIC_ROM_CONSOLE", + "name": "ESP32_DISABLE_BASIC_ROM_CONSOLE", + "range": null, + "title": "Permanently disable BASIC ROM Console", + "type": "bool" + }, + { + "children": [], + "depends_on": "!BT_ENABLED", + "help": "If enabled, this disables the linking of binary libraries in the application build. Note\nthat after enabling this Wi-Fi/Bluetooth will not work.", + "id": "ESP32_NO_BLOBS", + "name": "ESP32_NO_BLOBS", + "range": null, + "title": "No Binary Blobs", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Bootloaders before IDF v2.1 did less initialisation of the\nsystem clock. This setting needs to be enabled to build an app\nwhich can be booted by these older bootloaders.\n\nIf this setting is enabled, the app can be booted by any bootloader\nfrom IDF v1.0 up to the current version.\n\nIf this setting is disabled, the app can only be booted by bootloaders\nfrom IDF v2.1 or newer.\n\nEnabling this setting adds approximately 1KB to the app's IRAM usage.", + "id": "ESP32_COMPATIBLE_PRE_V2_1_BOOTLOADERS", + "name": "ESP32_COMPATIBLE_PRE_V2_1_BOOTLOADERS", + "range": null, + "title": "App compatible with bootloaders before IDF v2.1", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_APP_INIT_CLK", + "name": "ESP32_APP_INIT_CLK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_UNICORE", + "help": "This option allows to place .rtc_data and .rtc_rodata sections into\nRTC fast memory segment to free the slow memory region for ULP programs.\nThis option depends on the CONFIG_FREERTOS_UNICORE option because RTC fast memory\ncan be accessed only by PRO_CPU core.", + "id": "ESP32_RTCDATA_IN_FAST_MEM", + "name": "ESP32_RTCDATA_IN_FAST_MEM", + "range": null, + "title": "Place RTC_DATA_ATTR and RTC_RODATA_ATTR variables into RTC fast memory segment", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP32_USE_FIXED_STATIC_RAM_SIZE", + "help": "RAM size dedicated for static variables (.data & .bss sections).\nPlease note that the actual length will be reduced by BT_RESERVE_DRAM if Bluetooth\ncontroller is enabled.", + "id": "ESP32_FIXED_STATIC_RAM_SIZE", + "name": "ESP32_FIXED_STATIC_RAM_SIZE", + "range": null, + "title": "Fixed Static RAM size", + "type": "hex" + } + ], + "depends_on": null, + "help": "If this option is disabled, the DRAM part of the heap starts right after the .bss section,\nwithin the dram0_0 region. As a result, adding or removing some static variables\nwill change the available heap size.\n\nIf this option is enabled, the DRAM part of the heap starts right after the dram0_0 region,\nwhere its length is set with ESP32_FIXED_STATIC_RAM_SIZE", + "id": "ESP32_USE_FIXED_STATIC_RAM_SIZE", + "name": "ESP32_USE_FIXED_STATIC_RAM_SIZE", + "range": null, + "title": "Use fixed static RAM size", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "To prevent interrupting DPORT workarounds,\nneed to disable interrupt with a maximum used level in the system.", + "id": "ESP32_DPORT_DIS_INTERRUPT_LVL", + "name": "ESP32_DPORT_DIS_INTERRUPT_LVL", + "range": null, + "title": "Disable the interrupt level for the DPORT workarounds", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-esp32-specific", + "title": "ESP32-specific", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "PM_ENABLE", + "help": "If enabled, startup code configures dynamic frequency scaling.\nMax CPU frequency is set to CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ setting,\nmin frequency is set to XTAL frequency.\nIf disabled, DFS will not be active until the application\nconfigures it using esp_pm_configure function.", + "id": "PM_DFS_INIT_AUTO", + "name": "PM_DFS_INIT_AUTO", + "range": null, + "title": "Enable dynamic frequency scaling (DFS) at startup", + "type": "bool" + }, + { + "children": [], + "depends_on": "PM_ENABLE && ESP_TIMER_IMPL_FRC2 && (ESP32_TIME_SYSCALL_USE_RTC || ESP32_TIME_SYSCALL_USE_RTC_FRC1)", + "help": "When APB clock frequency changes, high-resolution timer (esp_timer)\nscale and base value need to be adjusted. Each adjustment may cause\nsmall error, and over time such small errors may cause time drift.\nIf this option is enabled, RTC timer will be used as a reference to\ncompensate for the drift.\nIt is recommended that this option is only used if 32k XTAL is selected\nas RTC clock source.", + "id": "PM_USE_RTC_TIMER_REF", + "name": "PM_USE_RTC_TIMER_REF", + "range": null, + "title": "Use RTC timer to prevent time drift (EXPERIMENTAL)", + "type": "bool" + }, + { + "children": [], + "depends_on": "PM_ENABLE", + "help": "If enabled, esp_pm_* functions will keep track of the amount of time\neach of the power management locks has been held, and esp_pm_dump_locks\nfunction will print this information.\nThis feature can be used to analyze which locks are preventing the chip\nfrom going into a lower power state, and see what time the chip spends\nin each power saving mode. This feature does incur some run-time\noverhead, so should typically be disabled in production builds.", + "id": "PM_PROFILING", + "name": "PM_PROFILING", + "range": null, + "title": "Enable profiling counters for PM locks", + "type": "bool" + }, + { + "children": [], + "depends_on": "PM_ENABLE", + "help": "If enabled, some GPIOs will be used to signal events such as RTOS ticks,\nfrequency switching, entry/exit from idle state. Refer to pm_trace.c\nfile for the list of GPIOs.\nThis feature is intended to be used when analyzing/debugging behavior\nof power management implementation, and should be kept disabled in\napplications.", + "id": "PM_TRACE", + "name": "PM_TRACE", + "range": null, + "title": "Enable debug tracing of PM using GPIOs", + "type": "bool" + } + ], + "depends_on": null, + "help": "If enabled, application is compiled with support for power management.\nThis option has run-time overhead (increased interrupt latency,\nlonger time to enter idle state), and it also reduces accuracy of\nRTOS ticks and timers used for timekeeping.\nEnable this option if application uses power management APIs.", + "id": "PM_ENABLE", + "name": "PM_ENABLE", + "range": null, + "title": "Support for power management", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-power-management", + "title": "Power Management", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Functions esp_err_to_name() and esp_err_to_name_r() return string representations of error codes from a\npre-generated lookup table. This option can be used to turn off the use of the look-up table in order to\nsave memory but this comes at the price of sacrificing distinguishable (meaningful) output string\nrepresentations.", + "id": "ESP_ERR_TO_NAME_LOOKUP", + "name": "ESP_ERR_TO_NAME_LOOKUP", + "range": null, + "title": "Enable lookup of error code strings", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Config system event queue size in different application.", + "id": "ESP_SYSTEM_EVENT_QUEUE_SIZE", + "name": "ESP_SYSTEM_EVENT_QUEUE_SIZE", + "range": null, + "title": "System event queue size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Config system event task stack size in different application.", + "id": "ESP_SYSTEM_EVENT_TASK_STACK_SIZE", + "name": "ESP_SYSTEM_EVENT_TASK_STACK_SIZE", + "range": null, + "title": "Event loop task stack size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the \"main task\" stack size. This is the stack of the task\nwhich calls app_main(). If app_main() returns then this task is deleted\nand its stack memory is freed.", + "id": "ESP_MAIN_TASK_STACK_SIZE", + "name": "ESP_MAIN_TASK_STACK_SIZE", + "range": null, + "title": "Main task stack size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the IPC tasks stack size. One IPC task runs on each core\n(in dual core mode), and allows for cross-core function calls.\n\nSee IPC documentation for more details.\n\nThe default stack size should be enough for most common use cases.\nIt can be shrunk if you are sure that you do not use any custom\nIPC functionality.", + "id": "ESP_IPC_TASK_STACK_SIZE", + "name": "ESP_IPC_TASK_STACK_SIZE", + "range": [ + 512, + 65536 + ], + "title": "Inter-Processor Call (IPC) task stack size", + "type": "int" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE", + "help": "If this option is not enabled then the IPC task will keep behavior\nsame as prior to that of ESP-IDF v4.0, and hence IPC task will run\nat (configMAX_PRIORITIES - 1) priority.", + "id": "ESP_IPC_USES_CALLERS_PRIORITY", + "name": "ESP_IPC_USES_CALLERS_PRIORITY", + "range": null, + "title": "IPC runs at caller's priority", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Minimal value of size, in bytes, accepted to execute a expression\nwith shared stack.", + "id": "ESP_MINIMAL_SHARED_STACK_SIZE", + "name": "ESP_MINIMAL_SHARED_STACK_SIZE", + "range": null, + "title": "Minimal allowed size for shared stack", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CONSOLE_UART_DEFAULT", + "name": "ESP_CONSOLE_UART_DEFAULT", + "range": null, + "title": "Default: UART0, TX=GPIO1, RX=GPIO3", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CONSOLE_UART_CUSTOM", + "name": "ESP_CONSOLE_UART_CUSTOM", + "range": null, + "title": "Custom", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CONSOLE_UART_NONE", + "name": "ESP_CONSOLE_UART_NONE", + "range": null, + "title": "None", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select whether to use UART for console output (through stdout and stderr).\n\n- Default is to use UART0 on pins GPIO1(TX) and GPIO3(RX).\n- If \"Custom\" is selected, UART0 or UART1 can be chosen,\n and any pins can be selected.\n- If \"None\" is selected, there will be no console output on any UART, except\n for initial output from ROM bootloader. This output can be further suppressed by\n bootstrapping GPIO13 pin to low logic level.", + "id": "component-config-common-esp-related-uart-for-console-output", + "name": "ESP_CONSOLE_UART", + "title": "UART for console output", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CONSOLE_UART_CUSTOM_NUM_0", + "name": "ESP_CONSOLE_UART_CUSTOM_NUM_0", + "range": null, + "title": "UART0", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CONSOLE_UART_CUSTOM_NUM_1", + "name": "ESP_CONSOLE_UART_CUSTOM_NUM_1", + "range": null, + "title": "UART1", + "type": "bool" + } + ], + "depends_on": "ESP_CONSOLE_UART_CUSTOM", + "help": "Due of a ROM bug, UART2 is not supported for console output\nvia ets_printf.", + "id": "component-config-common-esp-related-uart-peripheral-to-use-for-console-output-0-1-", + "name": "ESP_CONSOLE_UART_NUM", + "title": "UART peripheral to use for console output (0-1)", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_CONSOLE_UART_NUM", + "name": "ESP_CONSOLE_UART_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_UART_CUSTOM", + "help": null, + "id": "ESP_CONSOLE_UART_TX_GPIO", + "name": "ESP_CONSOLE_UART_TX_GPIO", + "range": null, + "title": "UART TX on GPIO#", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_UART_CUSTOM", + "help": null, + "id": "ESP_CONSOLE_UART_RX_GPIO", + "name": "ESP_CONSOLE_UART_RX_GPIO", + "range": null, + "title": "UART RX on GPIO#", + "type": "int" + }, + { + "children": [], + "depends_on": "!ESP_CONSOLE_UART_NONE", + "help": null, + "id": "ESP_CONSOLE_UART_BAUDRATE", + "name": "ESP_CONSOLE_UART_BAUDRATE", + "range": [ + 1200, + 4000000 + ], + "title": "UART console baud rate", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_INT_WDT", + "help": "The timeout of the watchdog, in miliseconds. Make this higher than the FreeRTOS tick rate.", + "id": "ESP_INT_WDT_TIMEOUT_MS", + "name": "ESP_INT_WDT_TIMEOUT_MS", + "range": [ + 10, + 10000 + ], + "title": "Interrupt watchdog timeout (ms)", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_INT_WDT && !FREERTOS_UNICORE", + "help": "Also detect if interrupts on CPU 1 are disabled for too long.", + "id": "ESP_INT_WDT_CHECK_CPU1", + "name": "ESP_INT_WDT_CHECK_CPU1", + "range": null, + "title": "Also watch CPU1 tick interrupt", + "type": "bool" + } + ], + "depends_on": null, + "help": "This watchdog timer can detect if the FreeRTOS tick interrupt has not been called for a certain time,\neither because a task turned off interrupts and did not turn them on for a long time, or because an\ninterrupt handler did not return. It will try to invoke the panic handler first and failing that\nreset the SoC.", + "id": "ESP_INT_WDT", + "name": "ESP_INT_WDT", + "range": null, + "title": "Interrupt watchdog", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_TASK_WDT", + "help": "If this option is enabled, the Task Watchdog Timer will be configured to\ntrigger the panic handler when it times out. This can also be configured\nat run time (see Task Watchdog Timer API Reference)", + "id": "ESP_TASK_WDT_PANIC", + "name": "ESP_TASK_WDT_PANIC", + "range": null, + "title": "Invoke panic handler on Task Watchdog timeout", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_TASK_WDT", + "help": "Timeout period configuration for the Task Watchdog Timer in seconds.\nThis is also configurable at run time (see Task Watchdog Timer API Reference)", + "id": "ESP_TASK_WDT_TIMEOUT_S", + "name": "ESP_TASK_WDT_TIMEOUT_S", + "range": [ + 1, + 60 + ], + "title": "Task Watchdog timeout period (seconds)", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_TASK_WDT", + "help": "If this option is enabled, the Task Watchdog Timer will watch the CPU0\nIdle Task. Having the Task Watchdog watch the Idle Task allows for detection\nof CPU starvation as the Idle Task not being called is usually a symptom of\nCPU starvation. Starvation of the Idle Task is detrimental as FreeRTOS household\ntasks depend on the Idle Task getting some runtime every now and then.", + "id": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0", + "name": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0", + "range": null, + "title": "Watch CPU0 Idle Task", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_TASK_WDT && !FREERTOS_UNICORE", + "help": "If this option is enabled, the Task Wtachdog Timer will wach the CPU1\nIdle Task.", + "id": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1", + "name": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1", + "range": null, + "title": "Watch CPU1 Idle Task", + "type": "bool" + } + ], + "depends_on": null, + "help": "The Task Watchdog Timer can be used to make sure individual tasks are still\nrunning. Enabling this option will cause the Task Watchdog Timer to be\ninitialized automatically at startup. The Task Watchdog timer can be\ninitialized after startup as well (see Task Watchdog Timer API Reference)", + "id": "ESP_TASK_WDT", + "name": "ESP_TASK_WDT", + "range": null, + "title": "Initialize Task Watchdog Timer on startup", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "help": "If this option is disabled (default), the panic handler code is placed in flash not IRAM.\nThis means that if ESP-IDF crashes while flash cache is disabled, the panic handler will\nautomatically re-enable flash cache before running GDB Stub or Core Dump. This adds some minor\nrisk, if the flash cache status is also corrupted during the crash.\n\nIf this option is enabled, the panic handler code is placed in IRAM. This allows the panic\nhandler to run without needing to re-enable cache first. This may be necessary to debug some\ncomplex issues with crashes while flash cache is disabled (for example, when writing to\nSPI flash.)", + "id": "ESP_PANIC_HANDLER_IRAM", + "name": "ESP_PANIC_HANDLER_IRAM", + "range": null, + "title": "Place panic handler code in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP32_TRAX && !ESP32S2_TRAX", + "help": "Debug stubs are used by OpenOCD to execute pre-compiled onboard code\nwhich does some useful debugging stuff, e.g. GCOV data dump.", + "id": "ESP_DEBUG_STUBS_ENABLE", + "name": "ESP_DEBUG_STUBS_ENABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_WIFI_STA", + "name": "ESP_MAC_ADDR_UNIVERSE_WIFI_STA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_WIFI_AP", + "name": "ESP_MAC_ADDR_UNIVERSE_WIFI_AP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_BT", + "name": "ESP_MAC_ADDR_UNIVERSE_BT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_ETH", + "name": "ESP_MAC_ADDR_UNIVERSE_ETH", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-common-esp-related", + "title": "Common ESP-related", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_NONE", + "name": "LOG_DEFAULT_LEVEL_NONE", + "range": null, + "title": "No output", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_ERROR", + "name": "LOG_DEFAULT_LEVEL_ERROR", + "range": null, + "title": "Error", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_WARN", + "name": "LOG_DEFAULT_LEVEL_WARN", + "range": null, + "title": "Warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_INFO", + "name": "LOG_DEFAULT_LEVEL_INFO", + "range": null, + "title": "Info", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_DEBUG", + "name": "LOG_DEFAULT_LEVEL_DEBUG", + "range": null, + "title": "Debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_VERBOSE", + "name": "LOG_DEFAULT_LEVEL_VERBOSE", + "range": null, + "title": "Verbose", + "type": "bool" + } + ], + "depends_on": null, + "help": "Specify how much output to see in logs by default.\nYou can set lower verbosity level at runtime using\nesp_log_level_set function.\n\nNote that this setting limits which log statements\nare compiled into the program. So setting this to, say,\n\"Warning\" would mean that changing log level to \"Debug\"\nat runtime will not be possible.", + "id": "component-config-log-output-default-log-verbosity", + "name": "LOG_DEFAULT_LEVEL", + "title": "Default log verbosity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LOG_DEFAULT_LEVEL", + "name": "LOG_DEFAULT_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Enable ANSI terminal color codes in bootloader output.\n\nIn order to view these, your terminal program must support ANSI color codes.", + "id": "LOG_COLORS", + "name": "LOG_COLORS", + "range": null, + "title": "Use ANSI terminal colors in log output", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_TIMESTAMP_SOURCE_RTOS", + "name": "LOG_TIMESTAMP_SOURCE_RTOS", + "range": null, + "title": "Milliseconds Since Boot", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_TIMESTAMP_SOURCE_SYSTEM", + "name": "LOG_TIMESTAMP_SOURCE_SYSTEM", + "range": null, + "title": "System Time", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose what sort of timestamp is displayed in the log output:\n\n- Milliseconds since boot is calulated from the RTOS tick count multiplied\n by the tick period. This time will reset after a software reboot.\n e.g. (90000)\n\n- System time is taken from POSIX time functions which use the ESP32's\n RTC and FRC1 timers to maintain an accurate time. The system time is\n initialized to 0 on startup, it can be set with an SNTP sync, or with\n POSIX time functions. This time will not reset after a software reboot.\n e.g. (00:01:30.000)\n\n- NOTE: Currently this will not get used in logging from binary blobs\n (i.e WiFi & Bluetooth libraries), these will always print\n milliseconds since boot.", + "id": "component-config-log-output-log-timestamps", + "name": "LOG_TIMESTAMP_SOURCE", + "title": "Log Timestamps", + "type": "choice" + } + ], + "depends_on": null, + "id": "component-config-log-output", + "title": "Log output", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SPI_FLASH_VERIFY_WRITE", + "help": "If this option is enabled, if SPI flash write verification fails then a log error line\nwill be written with the address, expected & actual values. This can be useful when\ndebugging hardware SPI flash problems.", + "id": "SPI_FLASH_LOG_FAILED_WRITE", + "name": "SPI_FLASH_LOG_FAILED_WRITE", + "range": null, + "title": "Log errors if verification fails", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPI_FLASH_VERIFY_WRITE", + "help": "If this option is enabled, any SPI flash write which tries to set zero bits in the flash to\nones will log a warning. Such writes will not result in the requested data appearing identically\nin flash once written, as SPI NOR flash can only set bits to one when an entire sector is erased.\nAfter erasing, individual bits can only be written from one to zero.\n\nNote that some software (such as SPIFFS) which is aware of SPI NOR flash may write one bits as an\noptimisation, relying on the data in flash becoming a bitwise AND of the new data and any existing data.\nSuch software will log spurious warnings if this option is enabled.", + "id": "SPI_FLASH_WARN_SETTING_ZERO_TO_ONE", + "name": "SPI_FLASH_WARN_SETTING_ZERO_TO_ONE", + "range": null, + "title": "Log warning if writing zero bits to ones", + "type": "bool" + } + ], + "depends_on": null, + "help": "If this option is enabled, any time SPI flash is written then the data will be read\nback and verified. This can catch hardware problems with SPI flash, or flash which\nwas not erased before verification.", + "id": "SPI_FLASH_VERIFY_WRITE", + "name": "SPI_FLASH_VERIFY_WRITE", + "range": null, + "title": "Verify SPI flash writes", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This option enables the following APIs:\n\n- spi_flash_reset_counters\n- spi_flash_dump_counters\n- spi_flash_get_counters\n\nThese APIs may be used to collect performance data for spi_flash APIs\nand to help understand behaviour of libraries which use SPI flash.", + "id": "SPI_FLASH_ENABLE_COUNTERS", + "name": "SPI_FLASH_ENABLE_COUNTERS", + "range": null, + "title": "Enable operation counters", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this flag to use patched versions of SPI flash ROM driver functions.\nThis option is needed to write to flash on ESP32-D2WD, and any configuration\nwhere external SPI flash is connected to non-default pins.", + "id": "SPI_FLASH_ROM_DRIVER_PATCH", + "name": "SPI_FLASH_ROM_DRIVER_PATCH", + "range": null, + "title": "Enable SPI flash ROM driver patched functions", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_DANGEROUS_WRITE_ABORTS", + "name": "SPI_FLASH_DANGEROUS_WRITE_ABORTS", + "range": null, + "title": "Aborts", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_DANGEROUS_WRITE_FAILS", + "name": "SPI_FLASH_DANGEROUS_WRITE_FAILS", + "range": null, + "title": "Fails", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_DANGEROUS_WRITE_ALLOWED", + "name": "SPI_FLASH_DANGEROUS_WRITE_ALLOWED", + "range": null, + "title": "Allowed", + "type": "bool" + } + ], + "depends_on": null, + "help": "SPI flash APIs can optionally abort or return a failure code\nif erasing or writing addresses that fall at the beginning\nof flash (covering the bootloader and partition table) or that\noverlap the app partition that contains the running app.\n\nIt is not recommended to ever write to these regions from an IDF app,\nand this check prevents logic errors or corrupted firmware memory from\ndamaging these regions.\n\nNote that this feature *does not* check calls to the esp_rom_xxx SPI flash\nROM functions. These functions should not be called directly from IDF\napplications.", + "id": "component-config-spi-flash-driver-writing-to-dangerous-flash-regions", + "name": "SPI_FLASH_DANGEROUS_WRITE", + "title": "Writing to dangerous flash regions", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "The implementation of SPI flash has been greatly changed in IDF v4.0.\nEnable this option to use the legacy implementation.", + "id": "SPI_FLASH_USE_LEGACY_IMPL", + "name": "SPI_FLASH_USE_LEGACY_IMPL", + "range": null, + "title": "Use the legacy implementation before IDF v4.0", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enable this to support auto detection of ISSI chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", + "id": "SPI_FLASH_SUPPORT_ISSI_CHIP", + "name": "SPI_FLASH_SUPPORT_ISSI_CHIP", + "range": null, + "title": "ISSI", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this to support auto detection of GD (GigaDevice) chips if chip vendor not\ndirectly given by ``chip_drv`` member of the chip struct. If you are using Wrover\nmodules, please don't disable this, otherwise your flash may not work in 4-bit\nmode.\n\nThis adds support for variant chips, however will extend detecting time and image\nsize. Note that the default chip driver supports the GD chips with product ID\n60H.", + "id": "SPI_FLASH_SUPPORT_GD_CHIP", + "name": "SPI_FLASH_SUPPORT_GD_CHIP", + "range": null, + "title": "GigaDevice", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-spi-flash-driver-auto-detect-flash-chips", + "title": "Auto-detect flash chips", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-spi-flash-driver", + "title": "SPI Flash driver", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config", + "title": "Component config", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Soc, esp32, and driver components, the most common\ncomponents. Some header of these components are included\nimplicitly by headers of other components before IDF v4.0.\nIt's not required for high-level components, but still\nincluded through long header chain everywhere.\n\nThis is harmful to the modularity. So it's changed in IDF\nv4.0.\n\nYou can still include these headers in a legacy way until it\nis totally deprecated by enable this option.", + "id": "LEGACY_INCLUDE_COMMON_HEADERS", + "name": "LEGACY_INCLUDE_COMMON_HEADERS", + "range": null, + "title": "Include headers across components as before IDF v4.0", + "type": "bool" + } + ], + "depends_on": null, + "id": "compatibility-options", + "title": "Compatibility options", + "type": "menu" + } +] \ No newline at end of file diff --git a/build/bootloader/config/sdkconfig.cmake b/build/bootloader/config/sdkconfig.cmake new file mode 100644 index 0000000..14fe347 --- /dev/null +++ b/build/bootloader/config/sdkconfig.cmake @@ -0,0 +1,278 @@ +# +# Automatically generated file. DO NOT EDIT. +# Espressif IoT Development Framework (ESP-IDF) Configuration cmake include file +# +set(CONFIG_IDF_CMAKE "y") +set(CONFIG_IDF_TARGET "esp32") +set(CONFIG_IDF_TARGET_ESP32 "y") +set(CONFIG_IDF_FIRMWARE_CHIP_ID "0x0000") +set(CONFIG_SDK_TOOLPREFIX "xtensa-esp32-elf-") +set(CONFIG_SDK_TOOLCHAIN_SUPPORTS_TIME_WIDE_64_BITS "") +set(CONFIG_APP_BUILD_TYPE_APP_2NDBOOT "y") +set(CONFIG_APP_BUILD_TYPE_ELF_RAM "") +set(CONFIG_APP_BUILD_GENERATE_BINARIES "y") +set(CONFIG_APP_BUILD_BOOTLOADER "y") +set(CONFIG_APP_BUILD_USE_FLASH_SECTIONS "y") +set(CONFIG_BOOTLOADER_LOG_LEVEL_NONE "") +set(CONFIG_BOOTLOADER_LOG_LEVEL_ERROR "") +set(CONFIG_BOOTLOADER_LOG_LEVEL_WARN "y") +set(CONFIG_BOOTLOADER_LOG_LEVEL_INFO "") +set(CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG "") +set(CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE "") +set(CONFIG_BOOTLOADER_LOG_LEVEL "2") +set(CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_8V "") +set(CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V "y") +set(CONFIG_BOOTLOADER_FACTORY_RESET "") +set(CONFIG_BOOTLOADER_APP_TEST "") +set(CONFIG_BOOTLOADER_WDT_ENABLE "y") +set(CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE "") +set(CONFIG_BOOTLOADER_WDT_TIME_MS "9000") +set(CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE "") +set(CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP "") +set(CONFIG_BOOTLOADER_RESERVE_RTC_SIZE "0") +set(CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC "") +set(CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT "") +set(CONFIG_SECURE_BOOT_ENABLED "") +set(CONFIG_SECURE_FLASH_ENC_ENABLED "") +set(CONFIG_ESPTOOLPY_BAUD_OTHER_VAL "115200") +set(CONFIG_ESPTOOLPY_FLASHMODE_QIO "") +set(CONFIG_ESPTOOLPY_FLASHMODE_QOUT "") +set(CONFIG_ESPTOOLPY_FLASHMODE_DIO "y") +set(CONFIG_ESPTOOLPY_FLASHMODE_DOUT "") +set(CONFIG_ESPTOOLPY_FLASHMODE "dio") +set(CONFIG_ESPTOOLPY_FLASHFREQ_80M "") +set(CONFIG_ESPTOOLPY_FLASHFREQ_40M "y") +set(CONFIG_ESPTOOLPY_FLASHFREQ_26M "") +set(CONFIG_ESPTOOLPY_FLASHFREQ_20M "") +set(CONFIG_ESPTOOLPY_FLASHFREQ "40m") +set(CONFIG_ESPTOOLPY_FLASHSIZE_1MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_2MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_4MB "y") +set(CONFIG_ESPTOOLPY_FLASHSIZE_8MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_16MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE "4MB") +set(CONFIG_ESPTOOLPY_FLASHSIZE_DETECT "y") +set(CONFIG_ESPTOOLPY_BEFORE_RESET "y") +set(CONFIG_ESPTOOLPY_BEFORE_NORESET "") +set(CONFIG_ESPTOOLPY_BEFORE "default_reset") +set(CONFIG_ESPTOOLPY_AFTER_RESET "y") +set(CONFIG_ESPTOOLPY_AFTER_NORESET "") +set(CONFIG_ESPTOOLPY_AFTER "hard_reset") +set(CONFIG_ESPTOOLPY_MONITOR_BAUD_9600B "") +set(CONFIG_ESPTOOLPY_MONITOR_BAUD_57600B "") +set(CONFIG_ESPTOOLPY_MONITOR_BAUD_115200B "y") +set(CONFIG_ESPTOOLPY_MONITOR_BAUD_230400B "") +set(CONFIG_ESPTOOLPY_MONITOR_BAUD_921600B "") +set(CONFIG_ESPTOOLPY_MONITOR_BAUD_2MB "") +set(CONFIG_ESPTOOLPY_MONITOR_BAUD_OTHER "") +set(CONFIG_ESPTOOLPY_MONITOR_BAUD_OTHER_VAL "115200") +set(CONFIG_ESPTOOLPY_MONITOR_BAUD "115200") +set(CONFIG_PARTITION_TABLE_SINGLE_APP "") +set(CONFIG_PARTITION_TABLE_TWO_OTA "") +set(CONFIG_PARTITION_TABLE_CUSTOM "y") +set(CONFIG_PARTITION_TABLE_CUSTOM_FILENAME "partitions_example.csv") +set(CONFIG_PARTITION_TABLE_FILENAME "partitions_example.csv") +set(CONFIG_PARTITION_TABLE_OFFSET "0x8000") +set(CONFIG_PARTITION_TABLE_MD5 "y") +set(CONFIG_COMPILER_OPTIMIZATION_DEFAULT "y") +set(CONFIG_COMPILER_OPTIMIZATION_SIZE "") +set(CONFIG_COMPILER_OPTIMIZATION_PERF "") +set(CONFIG_COMPILER_OPTIMIZATION_NONE "") +set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE "y") +set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT "") +set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE "") +set(CONFIG_COMPILER_CXX_EXCEPTIONS "") +set(CONFIG_COMPILER_CXX_RTTI "") +set(CONFIG_COMPILER_STACK_CHECK_MODE_NONE "y") +set(CONFIG_COMPILER_STACK_CHECK_MODE_NORM "") +set(CONFIG_COMPILER_STACK_CHECK_MODE_STRONG "") +set(CONFIG_COMPILER_STACK_CHECK_MODE_ALL "") +set(CONFIG_COMPILER_WARN_WRITE_STRINGS "") +set(CONFIG_COMPILER_DISABLE_GCC8_WARNINGS "") +set(CONFIG_EFUSE_CUSTOM_TABLE "") +set(CONFIG_EFUSE_VIRTUAL "") +set(CONFIG_EFUSE_CODE_SCHEME_COMPAT_NONE "") +set(CONFIG_EFUSE_CODE_SCHEME_COMPAT_3_4 "y") +set(CONFIG_EFUSE_CODE_SCHEME_COMPAT_REPEAT "") +set(CONFIG_EFUSE_MAX_BLK_LEN "192") +set(CONFIG_ESP32_REV_MIN_0 "y") +set(CONFIG_ESP32_REV_MIN_1 "") +set(CONFIG_ESP32_REV_MIN_2 "") +set(CONFIG_ESP32_REV_MIN_3 "") +set(CONFIG_ESP32_REV_MIN "0") +set(CONFIG_ESP32_DPORT_WORKAROUND "y") +set(CONFIG_ESP32_DEFAULT_CPU_FREQ_80 "") +set(CONFIG_ESP32_DEFAULT_CPU_FREQ_160 "y") +set(CONFIG_ESP32_DEFAULT_CPU_FREQ_240 "") +set(CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ "160") +set(CONFIG_ESP32_SPIRAM_SUPPORT "") +set(CONFIG_ESP32_TRAX "") +set(CONFIG_ESP32_TRACEMEM_RESERVE_DRAM "0x0") +set(CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_TWO "") +set(CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR "y") +set(CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES "4") +set(CONFIG_ESP32_ULP_COPROC_ENABLED "") +set(CONFIG_ESP32_ULP_COPROC_RESERVE_MEM "0") +set(CONFIG_ESP32_PANIC_PRINT_HALT "") +set(CONFIG_ESP32_PANIC_PRINT_REBOOT "y") +set(CONFIG_ESP32_PANIC_SILENT_REBOOT "") +set(CONFIG_ESP32_PANIC_GDBSTUB "") +set(CONFIG_ESP32_DEBUG_OCDAWARE "y") +set(CONFIG_ESP32_BROWNOUT_DET "y") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_0 "y") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_1 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_2 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_3 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_4 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_5 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_6 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_7 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL "0") +set(CONFIG_ESP32_REDUCE_PHY_TX_POWER "y") +set(CONFIG_ESP32_TIME_SYSCALL_USE_RTC_FRC1 "y") +set(CONFIG_ESP32_TIME_SYSCALL_USE_RTC "") +set(CONFIG_ESP32_TIME_SYSCALL_USE_FRC1 "") +set(CONFIG_ESP32_TIME_SYSCALL_USE_NONE "") +set(CONFIG_ESP32_RTC_CLK_SRC_INT_RC "y") +set(CONFIG_ESP32_RTC_CLK_SRC_EXT_CRYS "") +set(CONFIG_ESP32_RTC_CLK_SRC_EXT_OSC "") +set(CONFIG_ESP32_RTC_CLK_SRC_INT_8MD256 "") +set(CONFIG_ESP32_RTC_CLK_CAL_CYCLES "1024") +set(CONFIG_ESP32_DEEP_SLEEP_WAKEUP_DELAY "2000") +set(CONFIG_ESP32_XTAL_FREQ_40 "y") +set(CONFIG_ESP32_XTAL_FREQ_26 "") +set(CONFIG_ESP32_XTAL_FREQ_AUTO "") +set(CONFIG_ESP32_XTAL_FREQ "40") +set(CONFIG_ESP32_DISABLE_BASIC_ROM_CONSOLE "") +set(CONFIG_ESP32_NO_BLOBS "") +set(CONFIG_ESP32_COMPATIBLE_PRE_V2_1_BOOTLOADERS "") +set(CONFIG_ESP32_USE_FIXED_STATIC_RAM_SIZE "") +set(CONFIG_ESP32_DPORT_DIS_INTERRUPT_LVL "5") +set(CONFIG_PM_ENABLE "") +set(CONFIG_ESP_ERR_TO_NAME_LOOKUP "y") +set(CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE "32") +set(CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE "2304") +set(CONFIG_ESP_MAIN_TASK_STACK_SIZE "7168") +set(CONFIG_ESP_IPC_TASK_STACK_SIZE "1024") +set(CONFIG_ESP_IPC_USES_CALLERS_PRIORITY "y") +set(CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE "2048") +set(CONFIG_ESP_CONSOLE_UART_DEFAULT "y") +set(CONFIG_ESP_CONSOLE_UART_CUSTOM "") +set(CONFIG_ESP_CONSOLE_UART_NONE "") +set(CONFIG_ESP_CONSOLE_UART_NUM "0") +set(CONFIG_ESP_CONSOLE_UART_BAUDRATE "115200") +set(CONFIG_ESP_INT_WDT "y") +set(CONFIG_ESP_INT_WDT_TIMEOUT_MS "300") +set(CONFIG_ESP_INT_WDT_CHECK_CPU1 "y") +set(CONFIG_ESP_TASK_WDT "y") +set(CONFIG_ESP_TASK_WDT_PANIC "") +set(CONFIG_ESP_TASK_WDT_TIMEOUT_S "5") +set(CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0 "y") +set(CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1 "y") +set(CONFIG_ESP_PANIC_HANDLER_IRAM "") +set(CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA "y") +set(CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP "y") +set(CONFIG_ESP_MAC_ADDR_UNIVERSE_BT "y") +set(CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH "y") +set(CONFIG_LOG_DEFAULT_LEVEL_NONE "") +set(CONFIG_LOG_DEFAULT_LEVEL_ERROR "") +set(CONFIG_LOG_DEFAULT_LEVEL_WARN "") +set(CONFIG_LOG_DEFAULT_LEVEL_INFO "y") +set(CONFIG_LOG_DEFAULT_LEVEL_DEBUG "") +set(CONFIG_LOG_DEFAULT_LEVEL_VERBOSE "") +set(CONFIG_LOG_DEFAULT_LEVEL "3") +set(CONFIG_LOG_COLORS "y") +set(CONFIG_LOG_TIMESTAMP_SOURCE_RTOS "y") +set(CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM "") +set(CONFIG_SPI_FLASH_VERIFY_WRITE "") +set(CONFIG_SPI_FLASH_ENABLE_COUNTERS "") +set(CONFIG_SPI_FLASH_ROM_DRIVER_PATCH "y") +set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS "y") +set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS "") +set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED "") +set(CONFIG_SPI_FLASH_USE_LEGACY_IMPL "") +set(CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP "y") +set(CONFIG_SPI_FLASH_SUPPORT_GD_CHIP "y") +set(CONFIG_LEGACY_INCLUDE_COMMON_HEADERS "") +set(CONFIGS_LIST CONFIG_IDF_CMAKE;CONFIG_IDF_TARGET;CONFIG_IDF_TARGET_ESP32;CONFIG_IDF_FIRMWARE_CHIP_ID;CONFIG_SDK_TOOLPREFIX;CONFIG_TOOLPREFIX;CONFIG_SDK_TOOLCHAIN_SUPPORTS_TIME_WIDE_64_BITS;CONFIG_APP_BUILD_TYPE_APP_2NDBOOT;CONFIG_APP_BUILD_TYPE_ELF_RAM;CONFIG_APP_BUILD_GENERATE_BINARIES;CONFIG_APP_BUILD_BOOTLOADER;CONFIG_APP_BUILD_USE_FLASH_SECTIONS;CONFIG_BOOTLOADER_LOG_LEVEL_NONE;CONFIG_LOG_BOOTLOADER_LEVEL_NONE;CONFIG_BOOTLOADER_LOG_LEVEL_ERROR;CONFIG_LOG_BOOTLOADER_LEVEL_ERROR;CONFIG_BOOTLOADER_LOG_LEVEL_WARN;CONFIG_LOG_BOOTLOADER_LEVEL_WARN;CONFIG_BOOTLOADER_LOG_LEVEL_INFO;CONFIG_LOG_BOOTLOADER_LEVEL_INFO;CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG;CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG;CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE;CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE;CONFIG_BOOTLOADER_LOG_LEVEL;CONFIG_LOG_BOOTLOADER_LEVEL;CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_8V;CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V;CONFIG_BOOTLOADER_FACTORY_RESET;CONFIG_BOOTLOADER_APP_TEST;CONFIG_BOOTLOADER_WDT_ENABLE;CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE;CONFIG_BOOTLOADER_WDT_TIME_MS;CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE;CONFIG_APP_ROLLBACK_ENABLE;CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP;CONFIG_BOOTLOADER_RESERVE_RTC_SIZE;CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC;CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT;CONFIG_SECURE_BOOT_ENABLED;CONFIG_SECURE_FLASH_ENC_ENABLED;CONFIG_FLASH_ENCRYPTION_ENABLED;CONFIG_ESPTOOLPY_BAUD_OTHER_VAL;CONFIG_ESPTOOLPY_FLASHMODE_QIO;CONFIG_FLASHMODE_QIO;CONFIG_ESPTOOLPY_FLASHMODE_QOUT;CONFIG_FLASHMODE_QOUT;CONFIG_ESPTOOLPY_FLASHMODE_DIO;CONFIG_FLASHMODE_DIO;CONFIG_ESPTOOLPY_FLASHMODE_DOUT;CONFIG_FLASHMODE_DOUT;CONFIG_ESPTOOLPY_FLASHMODE;CONFIG_ESPTOOLPY_FLASHFREQ_80M;CONFIG_ESPTOOLPY_FLASHFREQ_40M;CONFIG_ESPTOOLPY_FLASHFREQ_26M;CONFIG_ESPTOOLPY_FLASHFREQ_20M;CONFIG_ESPTOOLPY_FLASHFREQ;CONFIG_ESPTOOLPY_FLASHSIZE_1MB;CONFIG_ESPTOOLPY_FLASHSIZE_2MB;CONFIG_ESPTOOLPY_FLASHSIZE_4MB;CONFIG_ESPTOOLPY_FLASHSIZE_8MB;CONFIG_ESPTOOLPY_FLASHSIZE_16MB;CONFIG_ESPTOOLPY_FLASHSIZE;CONFIG_ESPTOOLPY_FLASHSIZE_DETECT;CONFIG_ESPTOOLPY_BEFORE_RESET;CONFIG_ESPTOOLPY_BEFORE_NORESET;CONFIG_ESPTOOLPY_BEFORE;CONFIG_ESPTOOLPY_AFTER_RESET;CONFIG_ESPTOOLPY_AFTER_NORESET;CONFIG_ESPTOOLPY_AFTER;CONFIG_ESPTOOLPY_MONITOR_BAUD_9600B;CONFIG_MONITOR_BAUD_9600B;CONFIG_ESPTOOLPY_MONITOR_BAUD_57600B;CONFIG_MONITOR_BAUD_57600B;CONFIG_ESPTOOLPY_MONITOR_BAUD_115200B;CONFIG_MONITOR_BAUD_115200B;CONFIG_ESPTOOLPY_MONITOR_BAUD_230400B;CONFIG_MONITOR_BAUD_230400B;CONFIG_ESPTOOLPY_MONITOR_BAUD_921600B;CONFIG_MONITOR_BAUD_921600B;CONFIG_ESPTOOLPY_MONITOR_BAUD_2MB;CONFIG_MONITOR_BAUD_2MB;CONFIG_ESPTOOLPY_MONITOR_BAUD_OTHER;CONFIG_MONITOR_BAUD_OTHER;CONFIG_ESPTOOLPY_MONITOR_BAUD_OTHER_VAL;CONFIG_MONITOR_BAUD_OTHER_VAL;CONFIG_ESPTOOLPY_MONITOR_BAUD;CONFIG_MONITOR_BAUD;CONFIG_PARTITION_TABLE_SINGLE_APP;CONFIG_PARTITION_TABLE_TWO_OTA;CONFIG_PARTITION_TABLE_CUSTOM;CONFIG_PARTITION_TABLE_CUSTOM_FILENAME;CONFIG_PARTITION_TABLE_FILENAME;CONFIG_PARTITION_TABLE_OFFSET;CONFIG_PARTITION_TABLE_MD5;CONFIG_COMPILER_OPTIMIZATION_DEFAULT;CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG;CONFIG_COMPILER_OPTIMIZATION_SIZE;CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE;CONFIG_COMPILER_OPTIMIZATION_PERF;CONFIG_COMPILER_OPTIMIZATION_NONE;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE;CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT;CONFIG_OPTIMIZATION_ASSERTIONS_SILENT;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE;CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED;CONFIG_COMPILER_CXX_EXCEPTIONS;CONFIG_CXX_EXCEPTIONS;CONFIG_COMPILER_CXX_RTTI;CONFIG_COMPILER_STACK_CHECK_MODE_NONE;CONFIG_STACK_CHECK_NONE;CONFIG_COMPILER_STACK_CHECK_MODE_NORM;CONFIG_STACK_CHECK_NORM;CONFIG_COMPILER_STACK_CHECK_MODE_STRONG;CONFIG_STACK_CHECK_STRONG;CONFIG_COMPILER_STACK_CHECK_MODE_ALL;CONFIG_STACK_CHECK_ALL;CONFIG_COMPILER_WARN_WRITE_STRINGS;CONFIG_WARN_WRITE_STRINGS;CONFIG_COMPILER_DISABLE_GCC8_WARNINGS;CONFIG_DISABLE_GCC8_WARNINGS;CONFIG_EFUSE_CUSTOM_TABLE;CONFIG_EFUSE_VIRTUAL;CONFIG_EFUSE_CODE_SCHEME_COMPAT_NONE;CONFIG_EFUSE_CODE_SCHEME_COMPAT_3_4;CONFIG_EFUSE_CODE_SCHEME_COMPAT_REPEAT;CONFIG_EFUSE_MAX_BLK_LEN;CONFIG_ESP32_REV_MIN_0;CONFIG_ESP32_REV_MIN_1;CONFIG_ESP32_REV_MIN_2;CONFIG_ESP32_REV_MIN_3;CONFIG_ESP32_REV_MIN;CONFIG_ESP32_DPORT_WORKAROUND;CONFIG_ESP32_DEFAULT_CPU_FREQ_80;CONFIG_ESP32_DEFAULT_CPU_FREQ_160;CONFIG_ESP32_DEFAULT_CPU_FREQ_240;CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP32_SPIRAM_SUPPORT;CONFIG_SPIRAM_SUPPORT;CONFIG_ESP32_TRAX;CONFIG_ESP32_TRACEMEM_RESERVE_DRAM;CONFIG_TRACEMEM_RESERVE_DRAM;CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_TWO;CONFIG_TWO_UNIVERSAL_MAC_ADDRESS;CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR;CONFIG_FOUR_UNIVERSAL_MAC_ADDRESS;CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES;CONFIG_NUMBER_OF_UNIVERSAL_MAC_ADDRESS;CONFIG_ESP32_ULP_COPROC_ENABLED;CONFIG_ULP_COPROC_ENABLED;CONFIG_ESP32_ULP_COPROC_RESERVE_MEM;CONFIG_ULP_COPROC_RESERVE_MEM;CONFIG_ESP32_PANIC_PRINT_HALT;CONFIG_ESP32_PANIC_PRINT_REBOOT;CONFIG_ESP32_PANIC_SILENT_REBOOT;CONFIG_ESP32_PANIC_GDBSTUB;CONFIG_ESP32_DEBUG_OCDAWARE;CONFIG_ESP32_BROWNOUT_DET;CONFIG_BROWNOUT_DET;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_0;CONFIG_BROWNOUT_DET_LVL_SEL_0;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_1;CONFIG_BROWNOUT_DET_LVL_SEL_1;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_2;CONFIG_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_3;CONFIG_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_4;CONFIG_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_5;CONFIG_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_6;CONFIG_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_7;CONFIG_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP32_BROWNOUT_DET_LVL;CONFIG_BROWNOUT_DET_LVL;CONFIG_ESP32_REDUCE_PHY_TX_POWER;CONFIG_REDUCE_PHY_TX_POWER;CONFIG_ESP32_TIME_SYSCALL_USE_RTC_FRC1;CONFIG_ESP32_TIME_SYSCALL_USE_RTC;CONFIG_ESP32_TIME_SYSCALL_USE_FRC1;CONFIG_ESP32_TIME_SYSCALL_USE_NONE;CONFIG_ESP32_RTC_CLK_SRC_INT_RC;CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_RC;CONFIG_ESP32_RTC_CLK_SRC_EXT_CRYS;CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_CRYSTAL;CONFIG_ESP32_RTC_CLK_SRC_EXT_OSC;CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_OSC;CONFIG_ESP32_RTC_CLK_SRC_INT_8MD256;CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_8MD256;CONFIG_ESP32_RTC_CLK_CAL_CYCLES;CONFIG_ESP32_DEEP_SLEEP_WAKEUP_DELAY;CONFIG_ESP32_XTAL_FREQ_40;CONFIG_ESP32_XTAL_FREQ_26;CONFIG_ESP32_XTAL_FREQ_AUTO;CONFIG_ESP32_XTAL_FREQ;CONFIG_ESP32_DISABLE_BASIC_ROM_CONSOLE;CONFIG_DISABLE_BASIC_ROM_CONSOLE;CONFIG_ESP32_NO_BLOBS;CONFIG_NO_BLOBS;CONFIG_ESP32_COMPATIBLE_PRE_V2_1_BOOTLOADERS;CONFIG_COMPATIBLE_PRE_V2_1_BOOTLOADERS;CONFIG_ESP32_USE_FIXED_STATIC_RAM_SIZE;CONFIG_ESP32_DPORT_DIS_INTERRUPT_LVL;CONFIG_PM_ENABLE;CONFIG_ESP_ERR_TO_NAME_LOOKUP;CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE;CONFIG_SYSTEM_EVENT_QUEUE_SIZE;CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE;CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE;CONFIG_ESP_MAIN_TASK_STACK_SIZE;CONFIG_MAIN_TASK_STACK_SIZE;CONFIG_ESP_IPC_TASK_STACK_SIZE;CONFIG_IPC_TASK_STACK_SIZE;CONFIG_ESP_IPC_USES_CALLERS_PRIORITY;CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE;CONFIG_ESP_CONSOLE_UART_DEFAULT;CONFIG_CONSOLE_UART_DEFAULT;CONFIG_ESP_CONSOLE_UART_CUSTOM;CONFIG_CONSOLE_UART_CUSTOM;CONFIG_ESP_CONSOLE_UART_NONE;CONFIG_CONSOLE_UART_NONE;CONFIG_ESP_CONSOLE_UART_NUM;CONFIG_CONSOLE_UART_NUM;CONFIG_ESP_CONSOLE_UART_BAUDRATE;CONFIG_CONSOLE_UART_BAUDRATE;CONFIG_ESP_INT_WDT;CONFIG_INT_WDT;CONFIG_ESP_INT_WDT_TIMEOUT_MS;CONFIG_INT_WDT_TIMEOUT_MS;CONFIG_ESP_INT_WDT_CHECK_CPU1;CONFIG_INT_WDT_CHECK_CPU1;CONFIG_ESP_TASK_WDT;CONFIG_TASK_WDT;CONFIG_ESP_TASK_WDT_PANIC;CONFIG_TASK_WDT_PANIC;CONFIG_ESP_TASK_WDT_TIMEOUT_S;CONFIG_TASK_WDT_TIMEOUT_S;CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0;CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0;CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1;CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1;CONFIG_ESP_PANIC_HANDLER_IRAM;CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA;CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP;CONFIG_ESP_MAC_ADDR_UNIVERSE_BT;CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH;CONFIG_LOG_DEFAULT_LEVEL_NONE;CONFIG_LOG_DEFAULT_LEVEL_ERROR;CONFIG_LOG_DEFAULT_LEVEL_WARN;CONFIG_LOG_DEFAULT_LEVEL_INFO;CONFIG_LOG_DEFAULT_LEVEL_DEBUG;CONFIG_LOG_DEFAULT_LEVEL_VERBOSE;CONFIG_LOG_DEFAULT_LEVEL;CONFIG_LOG_COLORS;CONFIG_LOG_TIMESTAMP_SOURCE_RTOS;CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM;CONFIG_SPI_FLASH_VERIFY_WRITE;CONFIG_SPI_FLASH_ENABLE_COUNTERS;CONFIG_SPI_FLASH_ROM_DRIVER_PATCH;CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS;CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS;CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED;CONFIG_SPI_FLASH_USE_LEGACY_IMPL;CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP;CONFIG_SPI_FLASH_SUPPORT_GD_CHIP;CONFIG_LEGACY_INCLUDE_COMMON_HEADERS) +# List of deprecated options for backward compatibility +set(CONFIG_TOOLPREFIX "xtensa-esp32-elf-") +set(CONFIG_LOG_BOOTLOADER_LEVEL_NONE "") +set(CONFIG_LOG_BOOTLOADER_LEVEL_ERROR "") +set(CONFIG_LOG_BOOTLOADER_LEVEL_WARN "y") +set(CONFIG_LOG_BOOTLOADER_LEVEL_INFO "") +set(CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG "") +set(CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE "") +set(CONFIG_LOG_BOOTLOADER_LEVEL "2") +set(CONFIG_APP_ROLLBACK_ENABLE "") +set(CONFIG_FLASH_ENCRYPTION_ENABLED "") +set(CONFIG_FLASHMODE_QIO "") +set(CONFIG_FLASHMODE_QOUT "") +set(CONFIG_FLASHMODE_DIO "y") +set(CONFIG_FLASHMODE_DOUT "") +set(CONFIG_MONITOR_BAUD_9600B "") +set(CONFIG_MONITOR_BAUD_57600B "") +set(CONFIG_MONITOR_BAUD_115200B "y") +set(CONFIG_MONITOR_BAUD_230400B "") +set(CONFIG_MONITOR_BAUD_921600B "") +set(CONFIG_MONITOR_BAUD_2MB "") +set(CONFIG_MONITOR_BAUD_OTHER "") +set(CONFIG_MONITOR_BAUD_OTHER_VAL "115200") +set(CONFIG_MONITOR_BAUD "115200") +set(CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG "y") +set(CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE "") +set(CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED "y") +set(CONFIG_OPTIMIZATION_ASSERTIONS_SILENT "") +set(CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED "") +set(CONFIG_CXX_EXCEPTIONS "") +set(CONFIG_STACK_CHECK_NONE "y") +set(CONFIG_STACK_CHECK_NORM "") +set(CONFIG_STACK_CHECK_STRONG "") +set(CONFIG_STACK_CHECK_ALL "") +set(CONFIG_WARN_WRITE_STRINGS "") +set(CONFIG_DISABLE_GCC8_WARNINGS "") +set(CONFIG_SPIRAM_SUPPORT "") +set(CONFIG_TRACEMEM_RESERVE_DRAM "0x0") +set(CONFIG_TWO_UNIVERSAL_MAC_ADDRESS "") +set(CONFIG_FOUR_UNIVERSAL_MAC_ADDRESS "y") +set(CONFIG_NUMBER_OF_UNIVERSAL_MAC_ADDRESS "4") +set(CONFIG_ULP_COPROC_ENABLED "") +set(CONFIG_ULP_COPROC_RESERVE_MEM "0") +set(CONFIG_BROWNOUT_DET "y") +set(CONFIG_BROWNOUT_DET_LVL_SEL_0 "y") +set(CONFIG_BROWNOUT_DET_LVL_SEL_1 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_2 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_3 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_4 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_5 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_6 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_7 "") +set(CONFIG_BROWNOUT_DET_LVL "0") +set(CONFIG_REDUCE_PHY_TX_POWER "y") +set(CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_RC "y") +set(CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_CRYSTAL "") +set(CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_OSC "") +set(CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_8MD256 "") +set(CONFIG_DISABLE_BASIC_ROM_CONSOLE "") +set(CONFIG_NO_BLOBS "") +set(CONFIG_COMPATIBLE_PRE_V2_1_BOOTLOADERS "") +set(CONFIG_SYSTEM_EVENT_QUEUE_SIZE "32") +set(CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE "2304") +set(CONFIG_MAIN_TASK_STACK_SIZE "7168") +set(CONFIG_IPC_TASK_STACK_SIZE "1024") +set(CONFIG_CONSOLE_UART_DEFAULT "y") +set(CONFIG_CONSOLE_UART_CUSTOM "") +set(CONFIG_CONSOLE_UART_NONE "") +set(CONFIG_CONSOLE_UART_NUM "0") +set(CONFIG_CONSOLE_UART_BAUDRATE "115200") +set(CONFIG_INT_WDT "y") +set(CONFIG_INT_WDT_TIMEOUT_MS "300") +set(CONFIG_INT_WDT_CHECK_CPU1 "y") +set(CONFIG_TASK_WDT "y") +set(CONFIG_TASK_WDT_PANIC "") +set(CONFIG_TASK_WDT_TIMEOUT_S "5") +set(CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0 "y") +set(CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1 "y") +set(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS "y") +set(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS "") +set(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED "") diff --git a/build/bootloader/config/sdkconfig.h b/build/bootloader/config/sdkconfig.h new file mode 100644 index 0000000..1da1853 --- /dev/null +++ b/build/bootloader/config/sdkconfig.h @@ -0,0 +1,125 @@ +/* + * Automatically generated file. DO NOT EDIT. + * Espressif IoT Development Framework (ESP-IDF) Configuration Header + */ +#pragma once +#define CONFIG_IDF_CMAKE 1 +#define CONFIG_IDF_TARGET "esp32" +#define CONFIG_IDF_TARGET_ESP32 1 +#define CONFIG_IDF_FIRMWARE_CHIP_ID 0x0000 +#define CONFIG_SDK_TOOLPREFIX "xtensa-esp32-elf-" +#define CONFIG_APP_BUILD_TYPE_APP_2NDBOOT 1 +#define CONFIG_APP_BUILD_GENERATE_BINARIES 1 +#define CONFIG_APP_BUILD_BOOTLOADER 1 +#define CONFIG_APP_BUILD_USE_FLASH_SECTIONS 1 +#define CONFIG_BOOTLOADER_LOG_LEVEL_WARN 1 +#define CONFIG_BOOTLOADER_LOG_LEVEL 2 +#define CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V 1 +#define CONFIG_BOOTLOADER_WDT_ENABLE 1 +#define CONFIG_BOOTLOADER_WDT_TIME_MS 9000 +#define CONFIG_BOOTLOADER_RESERVE_RTC_SIZE 0x0 +#define CONFIG_ESPTOOLPY_BAUD_OTHER_VAL 115200 +#define CONFIG_ESPTOOLPY_FLASHMODE_DIO 1 +#define CONFIG_ESPTOOLPY_FLASHMODE "dio" +#define CONFIG_ESPTOOLPY_FLASHFREQ_40M 1 +#define CONFIG_ESPTOOLPY_FLASHFREQ "40m" +#define CONFIG_ESPTOOLPY_FLASHSIZE_4MB 1 +#define CONFIG_ESPTOOLPY_FLASHSIZE "4MB" +#define CONFIG_ESPTOOLPY_FLASHSIZE_DETECT 1 +#define CONFIG_ESPTOOLPY_BEFORE_RESET 1 +#define CONFIG_ESPTOOLPY_BEFORE "default_reset" +#define CONFIG_ESPTOOLPY_AFTER_RESET 1 +#define CONFIG_ESPTOOLPY_AFTER "hard_reset" +#define CONFIG_ESPTOOLPY_MONITOR_BAUD_115200B 1 +#define CONFIG_ESPTOOLPY_MONITOR_BAUD_OTHER_VAL 115200 +#define CONFIG_ESPTOOLPY_MONITOR_BAUD 115200 +#define CONFIG_PARTITION_TABLE_CUSTOM 1 +#define CONFIG_PARTITION_TABLE_CUSTOM_FILENAME "partitions_example.csv" +#define CONFIG_PARTITION_TABLE_FILENAME "partitions_example.csv" +#define CONFIG_PARTITION_TABLE_OFFSET 0x8000 +#define CONFIG_PARTITION_TABLE_MD5 1 +#define CONFIG_COMPILER_OPTIMIZATION_DEFAULT 1 +#define CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE 1 +#define CONFIG_COMPILER_STACK_CHECK_MODE_NONE 1 +#define CONFIG_EFUSE_CODE_SCHEME_COMPAT_3_4 1 +#define CONFIG_EFUSE_MAX_BLK_LEN 192 +#define CONFIG_ESP32_REV_MIN_0 1 +#define CONFIG_ESP32_REV_MIN 0 +#define CONFIG_ESP32_DPORT_WORKAROUND 1 +#define CONFIG_ESP32_DEFAULT_CPU_FREQ_160 1 +#define CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ 160 +#define CONFIG_ESP32_TRACEMEM_RESERVE_DRAM 0x0 +#define CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR 1 +#define CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES 4 +#define CONFIG_ESP32_ULP_COPROC_RESERVE_MEM 0 +#define CONFIG_ESP32_PANIC_PRINT_REBOOT 1 +#define CONFIG_ESP32_DEBUG_OCDAWARE 1 +#define CONFIG_ESP32_BROWNOUT_DET 1 +#define CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_0 1 +#define CONFIG_ESP32_BROWNOUT_DET_LVL 0 +#define CONFIG_ESP32_REDUCE_PHY_TX_POWER 1 +#define CONFIG_ESP32_TIME_SYSCALL_USE_RTC_FRC1 1 +#define CONFIG_ESP32_RTC_CLK_SRC_INT_RC 1 +#define CONFIG_ESP32_RTC_CLK_CAL_CYCLES 1024 +#define CONFIG_ESP32_DEEP_SLEEP_WAKEUP_DELAY 2000 +#define CONFIG_ESP32_XTAL_FREQ_40 1 +#define CONFIG_ESP32_XTAL_FREQ 40 +#define CONFIG_ESP32_DPORT_DIS_INTERRUPT_LVL 5 +#define CONFIG_ESP_ERR_TO_NAME_LOOKUP 1 +#define CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE 32 +#define CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE 2304 +#define CONFIG_ESP_MAIN_TASK_STACK_SIZE 7168 +#define CONFIG_ESP_IPC_TASK_STACK_SIZE 1024 +#define CONFIG_ESP_IPC_USES_CALLERS_PRIORITY 1 +#define CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE 2048 +#define CONFIG_ESP_CONSOLE_UART_DEFAULT 1 +#define CONFIG_ESP_CONSOLE_UART_NUM 0 +#define CONFIG_ESP_CONSOLE_UART_BAUDRATE 115200 +#define CONFIG_ESP_INT_WDT 1 +#define CONFIG_ESP_INT_WDT_TIMEOUT_MS 300 +#define CONFIG_ESP_INT_WDT_CHECK_CPU1 1 +#define CONFIG_ESP_TASK_WDT 1 +#define CONFIG_ESP_TASK_WDT_TIMEOUT_S 5 +#define CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0 1 +#define CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1 1 +#define CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA 1 +#define CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP 1 +#define CONFIG_ESP_MAC_ADDR_UNIVERSE_BT 1 +#define CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH 1 +#define CONFIG_LOG_DEFAULT_LEVEL_INFO 1 +#define CONFIG_LOG_DEFAULT_LEVEL 3 +#define CONFIG_LOG_COLORS 1 +#define CONFIG_LOG_TIMESTAMP_SOURCE_RTOS 1 +#define CONFIG_SPI_FLASH_ROM_DRIVER_PATCH 1 +#define CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS 1 +#define CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP 1 +#define CONFIG_SPI_FLASH_SUPPORT_GD_CHIP 1 + +/* List of deprecated options */ +#define CONFIG_BROWNOUT_DET CONFIG_ESP32_BROWNOUT_DET +#define CONFIG_BROWNOUT_DET_LVL_SEL_0 CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_0 +#define CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG CONFIG_COMPILER_OPTIMIZATION_DEFAULT +#define CONFIG_CONSOLE_UART_BAUDRATE CONFIG_ESP_CONSOLE_UART_BAUDRATE +#define CONFIG_CONSOLE_UART_DEFAULT CONFIG_ESP_CONSOLE_UART_DEFAULT +#define CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_RC CONFIG_ESP32_RTC_CLK_SRC_INT_RC +#define CONFIG_FLASHMODE_DIO CONFIG_ESPTOOLPY_FLASHMODE_DIO +#define CONFIG_FOUR_UNIVERSAL_MAC_ADDRESS CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR +#define CONFIG_INT_WDT CONFIG_ESP_INT_WDT +#define CONFIG_INT_WDT_CHECK_CPU1 CONFIG_ESP_INT_WDT_CHECK_CPU1 +#define CONFIG_INT_WDT_TIMEOUT_MS CONFIG_ESP_INT_WDT_TIMEOUT_MS +#define CONFIG_IPC_TASK_STACK_SIZE CONFIG_ESP_IPC_TASK_STACK_SIZE +#define CONFIG_LOG_BOOTLOADER_LEVEL_WARN CONFIG_BOOTLOADER_LOG_LEVEL_WARN +#define CONFIG_MAIN_TASK_STACK_SIZE CONFIG_ESP_MAIN_TASK_STACK_SIZE +#define CONFIG_MONITOR_BAUD_115200B CONFIG_ESPTOOLPY_MONITOR_BAUD_115200B +#define CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE +#define CONFIG_OPTIMIZATION_LEVEL_DEBUG CONFIG_COMPILER_OPTIMIZATION_DEFAULT +#define CONFIG_REDUCE_PHY_TX_POWER CONFIG_ESP32_REDUCE_PHY_TX_POWER +#define CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS +#define CONFIG_STACK_CHECK_NONE CONFIG_COMPILER_STACK_CHECK_MODE_NONE +#define CONFIG_SYSTEM_EVENT_QUEUE_SIZE CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE +#define CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE +#define CONFIG_TASK_WDT CONFIG_ESP_TASK_WDT +#define CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0 CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0 +#define CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1 CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1 +#define CONFIG_TASK_WDT_TIMEOUT_S CONFIG_ESP_TASK_WDT_TIMEOUT_S +#define CONFIG_TOOLPREFIX CONFIG_SDK_TOOLPREFIX diff --git a/build/bootloader/config/sdkconfig.json b/build/bootloader/config/sdkconfig.json new file mode 100644 index 0000000..220785f --- /dev/null +++ b/build/bootloader/config/sdkconfig.json @@ -0,0 +1,194 @@ +{ + "APP_BUILD_BOOTLOADER": true, + "APP_BUILD_GENERATE_BINARIES": true, + "APP_BUILD_TYPE_APP_2NDBOOT": true, + "APP_BUILD_TYPE_ELF_RAM": false, + "APP_BUILD_USE_FLASH_SECTIONS": true, + "BOOTLOADER_APP_ROLLBACK_ENABLE": false, + "BOOTLOADER_APP_TEST": false, + "BOOTLOADER_CUSTOM_RESERVE_RTC": false, + "BOOTLOADER_FACTORY_RESET": false, + "BOOTLOADER_LOG_LEVEL": 2, + "BOOTLOADER_LOG_LEVEL_DEBUG": false, + "BOOTLOADER_LOG_LEVEL_ERROR": false, + "BOOTLOADER_LOG_LEVEL_INFO": false, + "BOOTLOADER_LOG_LEVEL_NONE": false, + "BOOTLOADER_LOG_LEVEL_VERBOSE": false, + "BOOTLOADER_LOG_LEVEL_WARN": true, + "BOOTLOADER_RESERVE_RTC_SIZE": 0, + "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP": false, + "BOOTLOADER_VDDSDIO_BOOST_1_8V": false, + "BOOTLOADER_VDDSDIO_BOOST_1_9V": true, + "BOOTLOADER_WDT_DISABLE_IN_USER_CODE": false, + "BOOTLOADER_WDT_ENABLE": true, + "BOOTLOADER_WDT_TIME_MS": 9000, + "COMPILER_CXX_EXCEPTIONS": false, + "COMPILER_CXX_RTTI": false, + "COMPILER_DISABLE_GCC8_WARNINGS": false, + "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE": false, + "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE": true, + "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT": false, + "COMPILER_OPTIMIZATION_DEFAULT": true, + "COMPILER_OPTIMIZATION_NONE": false, + "COMPILER_OPTIMIZATION_PERF": false, + "COMPILER_OPTIMIZATION_SIZE": false, + "COMPILER_STACK_CHECK_MODE_ALL": false, + "COMPILER_STACK_CHECK_MODE_NONE": true, + "COMPILER_STACK_CHECK_MODE_NORM": false, + "COMPILER_STACK_CHECK_MODE_STRONG": false, + "COMPILER_WARN_WRITE_STRINGS": false, + "EFUSE_CODE_SCHEME_COMPAT_3_4": true, + "EFUSE_CODE_SCHEME_COMPAT_NONE": false, + "EFUSE_CODE_SCHEME_COMPAT_REPEAT": false, + "EFUSE_CUSTOM_TABLE": false, + "EFUSE_MAX_BLK_LEN": 192, + "EFUSE_VIRTUAL": false, + "ESP32_BROWNOUT_DET": true, + "ESP32_BROWNOUT_DET_LVL": 0, + "ESP32_BROWNOUT_DET_LVL_SEL_0": true, + "ESP32_BROWNOUT_DET_LVL_SEL_1": false, + "ESP32_BROWNOUT_DET_LVL_SEL_2": false, + "ESP32_BROWNOUT_DET_LVL_SEL_3": false, + "ESP32_BROWNOUT_DET_LVL_SEL_4": false, + "ESP32_BROWNOUT_DET_LVL_SEL_5": false, + "ESP32_BROWNOUT_DET_LVL_SEL_6": false, + "ESP32_BROWNOUT_DET_LVL_SEL_7": false, + "ESP32_COMPATIBLE_PRE_V2_1_BOOTLOADERS": false, + "ESP32_DEBUG_OCDAWARE": true, + "ESP32_DEEP_SLEEP_WAKEUP_DELAY": 2000, + "ESP32_DEFAULT_CPU_FREQ_160": true, + "ESP32_DEFAULT_CPU_FREQ_240": false, + "ESP32_DEFAULT_CPU_FREQ_80": false, + "ESP32_DEFAULT_CPU_FREQ_MHZ": 160, + "ESP32_DISABLE_BASIC_ROM_CONSOLE": false, + "ESP32_DPORT_DIS_INTERRUPT_LVL": 5, + "ESP32_DPORT_WORKAROUND": true, + "ESP32_NO_BLOBS": false, + "ESP32_PANIC_GDBSTUB": false, + "ESP32_PANIC_PRINT_HALT": false, + "ESP32_PANIC_PRINT_REBOOT": true, + "ESP32_PANIC_SILENT_REBOOT": false, + "ESP32_REDUCE_PHY_TX_POWER": true, + "ESP32_REV_MIN": 0, + "ESP32_REV_MIN_0": true, + "ESP32_REV_MIN_1": false, + "ESP32_REV_MIN_2": false, + "ESP32_REV_MIN_3": false, + "ESP32_RTC_CLK_CAL_CYCLES": 1024, + "ESP32_RTC_CLK_SRC_EXT_CRYS": false, + "ESP32_RTC_CLK_SRC_EXT_OSC": false, + "ESP32_RTC_CLK_SRC_INT_8MD256": false, + "ESP32_RTC_CLK_SRC_INT_RC": true, + "ESP32_SPIRAM_SUPPORT": false, + "ESP32_TIME_SYSCALL_USE_FRC1": false, + "ESP32_TIME_SYSCALL_USE_NONE": false, + "ESP32_TIME_SYSCALL_USE_RTC": false, + "ESP32_TIME_SYSCALL_USE_RTC_FRC1": true, + "ESP32_TRACEMEM_RESERVE_DRAM": 0, + "ESP32_TRAX": false, + "ESP32_ULP_COPROC_ENABLED": false, + "ESP32_ULP_COPROC_RESERVE_MEM": 0, + "ESP32_UNIVERSAL_MAC_ADDRESSES": 4, + "ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR": true, + "ESP32_UNIVERSAL_MAC_ADDRESSES_TWO": false, + "ESP32_USE_FIXED_STATIC_RAM_SIZE": false, + "ESP32_XTAL_FREQ": 40, + "ESP32_XTAL_FREQ_26": false, + "ESP32_XTAL_FREQ_40": true, + "ESP32_XTAL_FREQ_AUTO": false, + "ESPTOOLPY_AFTER": "hard_reset", + "ESPTOOLPY_AFTER_NORESET": false, + "ESPTOOLPY_AFTER_RESET": true, + "ESPTOOLPY_BAUD_OTHER_VAL": 115200, + "ESPTOOLPY_BEFORE": "default_reset", + "ESPTOOLPY_BEFORE_NORESET": false, + "ESPTOOLPY_BEFORE_RESET": true, + "ESPTOOLPY_FLASHFREQ": "40m", + "ESPTOOLPY_FLASHFREQ_20M": false, + "ESPTOOLPY_FLASHFREQ_26M": false, + "ESPTOOLPY_FLASHFREQ_40M": true, + "ESPTOOLPY_FLASHFREQ_80M": false, + "ESPTOOLPY_FLASHMODE": "dio", + "ESPTOOLPY_FLASHMODE_DIO": true, + "ESPTOOLPY_FLASHMODE_DOUT": false, + "ESPTOOLPY_FLASHMODE_QIO": false, + "ESPTOOLPY_FLASHMODE_QOUT": false, + "ESPTOOLPY_FLASHSIZE": "4MB", + "ESPTOOLPY_FLASHSIZE_16MB": false, + "ESPTOOLPY_FLASHSIZE_1MB": false, + "ESPTOOLPY_FLASHSIZE_2MB": false, + "ESPTOOLPY_FLASHSIZE_4MB": true, + "ESPTOOLPY_FLASHSIZE_8MB": false, + "ESPTOOLPY_FLASHSIZE_DETECT": true, + "ESPTOOLPY_MONITOR_BAUD": 115200, + "ESPTOOLPY_MONITOR_BAUD_115200B": true, + "ESPTOOLPY_MONITOR_BAUD_230400B": false, + "ESPTOOLPY_MONITOR_BAUD_2MB": false, + "ESPTOOLPY_MONITOR_BAUD_57600B": false, + "ESPTOOLPY_MONITOR_BAUD_921600B": false, + "ESPTOOLPY_MONITOR_BAUD_9600B": false, + "ESPTOOLPY_MONITOR_BAUD_OTHER": false, + "ESPTOOLPY_MONITOR_BAUD_OTHER_VAL": 115200, + "ESP_CONSOLE_UART_BAUDRATE": 115200, + "ESP_CONSOLE_UART_CUSTOM": false, + "ESP_CONSOLE_UART_DEFAULT": true, + "ESP_CONSOLE_UART_NONE": false, + "ESP_CONSOLE_UART_NUM": 0, + "ESP_ERR_TO_NAME_LOOKUP": true, + "ESP_INT_WDT": true, + "ESP_INT_WDT_CHECK_CPU1": true, + "ESP_INT_WDT_TIMEOUT_MS": 300, + "ESP_IPC_TASK_STACK_SIZE": 1024, + "ESP_IPC_USES_CALLERS_PRIORITY": true, + "ESP_MAC_ADDR_UNIVERSE_BT": true, + "ESP_MAC_ADDR_UNIVERSE_ETH": true, + "ESP_MAC_ADDR_UNIVERSE_WIFI_AP": true, + "ESP_MAC_ADDR_UNIVERSE_WIFI_STA": true, + "ESP_MAIN_TASK_STACK_SIZE": 7168, + "ESP_MINIMAL_SHARED_STACK_SIZE": 2048, + "ESP_PANIC_HANDLER_IRAM": false, + "ESP_SYSTEM_EVENT_QUEUE_SIZE": 32, + "ESP_SYSTEM_EVENT_TASK_STACK_SIZE": 2304, + "ESP_TASK_WDT": true, + "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0": true, + "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1": true, + "ESP_TASK_WDT_PANIC": false, + "ESP_TASK_WDT_TIMEOUT_S": 5, + "IDF_CMAKE": true, + "IDF_FIRMWARE_CHIP_ID": 0, + "IDF_TARGET": "esp32", + "IDF_TARGET_ESP32": true, + "LEGACY_INCLUDE_COMMON_HEADERS": false, + "LOG_COLORS": true, + "LOG_DEFAULT_LEVEL": 3, + "LOG_DEFAULT_LEVEL_DEBUG": false, + "LOG_DEFAULT_LEVEL_ERROR": false, + "LOG_DEFAULT_LEVEL_INFO": true, + "LOG_DEFAULT_LEVEL_NONE": false, + "LOG_DEFAULT_LEVEL_VERBOSE": false, + "LOG_DEFAULT_LEVEL_WARN": false, + "LOG_TIMESTAMP_SOURCE_RTOS": true, + "LOG_TIMESTAMP_SOURCE_SYSTEM": false, + "PARTITION_TABLE_CUSTOM": true, + "PARTITION_TABLE_CUSTOM_FILENAME": "partitions_example.csv", + "PARTITION_TABLE_FILENAME": "partitions_example.csv", + "PARTITION_TABLE_MD5": true, + "PARTITION_TABLE_OFFSET": 32768, + "PARTITION_TABLE_SINGLE_APP": false, + "PARTITION_TABLE_TWO_OTA": false, + "PM_ENABLE": false, + "SDK_TOOLCHAIN_SUPPORTS_TIME_WIDE_64_BITS": false, + "SDK_TOOLPREFIX": "xtensa-esp32-elf-", + "SECURE_BOOT_ENABLED": false, + "SECURE_FLASH_ENC_ENABLED": false, + "SECURE_SIGNED_APPS_NO_SECURE_BOOT": false, + "SPI_FLASH_DANGEROUS_WRITE_ABORTS": true, + "SPI_FLASH_DANGEROUS_WRITE_ALLOWED": false, + "SPI_FLASH_DANGEROUS_WRITE_FAILS": false, + "SPI_FLASH_ENABLE_COUNTERS": false, + "SPI_FLASH_ROM_DRIVER_PATCH": true, + "SPI_FLASH_SUPPORT_GD_CHIP": true, + "SPI_FLASH_SUPPORT_ISSI_CHIP": true, + "SPI_FLASH_USE_LEGACY_IMPL": false, + "SPI_FLASH_VERIFY_WRITE": false +} \ No newline at end of file diff --git a/build/bootloader/esp-idf/bootloader/cmake_install.cmake b/build/bootloader/esp-idf/bootloader/cmake_install.cmake new file mode 100644 index 0000000..e5e2d06 --- /dev/null +++ b/build/bootloader/esp-idf/bootloader/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/bootloader + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock.c.obj new file mode 100644 index 0000000..0fe7e44 Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj new file mode 100644 index 0000000..adf820b Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse_esp32.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse_esp32.c.obj new file mode 100644 index 0000000..b012e11 Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse_esp32.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash.c.obj new file mode 100644 index 0000000..6cb8342 Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash_config_esp32.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash_config_esp32.c.obj new file mode 100644 index 0000000..967debb Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash_config_esp32.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj new file mode 100644 index 0000000..eda867a Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj new file mode 100644 index 0000000..ae5a832 Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj new file mode 100644 index 0000000..240946c Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_esp32.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_esp32.c.obj new file mode 100644 index 0000000..f0cd969 Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_esp32.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_sha.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_sha.c.obj new file mode 100644 index 0000000..32b4b93 Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_sha.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/flash_encrypt.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/flash_encrypt.c.obj new file mode 100644 index 0000000..efe6543 Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/flash_encrypt.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/secure_boot.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/secure_boot.c.obj new file mode 100644 index 0000000..667c08a Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/secure_boot.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/secure_boot_signatures.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/secure_boot_signatures.c.obj new file mode 100644 index 0000000..7be7ab3 Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/secure_boot_signatures.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj new file mode 100644 index 0000000..f8322d4 Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj new file mode 100644 index 0000000..6ee53db Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj new file mode 100644 index 0000000..af9872b Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_qio_mode.c.obj b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_qio_mode.c.obj new file mode 100644 index 0000000..670640f Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_qio_mode.c.obj differ diff --git a/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake b/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake new file mode 100644 index 0000000..4ff5417 --- /dev/null +++ b/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/bootloader_support + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/bootloader/esp-idf/bootloader_support/libbootloader_support.a b/build/bootloader/esp-idf/bootloader_support/libbootloader_support.a new file mode 100644 index 0000000..965d6ae Binary files /dev/null and b/build/bootloader/esp-idf/bootloader_support/libbootloader_support.a differ diff --git a/build/bootloader/esp-idf/cmake_install.cmake b/build/bootloader/esp-idf/cmake_install.cmake new file mode 100644 index 0000000..4f1ca7c --- /dev/null +++ b/build/bootloader/esp-idf/cmake_install.cmake @@ -0,0 +1,53 @@ +# Install script for directory: /home/mithras/esp/esp-idf + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esp32/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/xtensa/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esp_common/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esp_rom/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/log/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/partition_table/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/bootloader/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/spi_flash/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/efuse/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/esptool_py/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/main/cmake_install.cmake") + +endif() + diff --git a/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj new file mode 100644 index 0000000..a90b522 Binary files /dev/null and b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj differ diff --git a/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_api.c.obj b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_api.c.obj new file mode 100644 index 0000000..e099c6d Binary files /dev/null and b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_api.c.obj differ diff --git a/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_fields.c.obj b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_fields.c.obj new file mode 100644 index 0000000..d441908 Binary files /dev/null and b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_fields.c.obj differ diff --git a/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_utility.c.obj b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_utility.c.obj new file mode 100644 index 0000000..b027530 Binary files /dev/null and b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_utility.c.obj differ diff --git a/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj new file mode 100644 index 0000000..e61f63e Binary files /dev/null and b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj differ diff --git a/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj new file mode 100644 index 0000000..26ff3c5 Binary files /dev/null and b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj differ diff --git a/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj new file mode 100644 index 0000000..b0f5c5b Binary files /dev/null and b/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj differ diff --git a/build/bootloader/esp-idf/efuse/cmake_install.cmake b/build/bootloader/esp-idf/efuse/cmake_install.cmake new file mode 100644 index 0000000..052f86a --- /dev/null +++ b/build/bootloader/esp-idf/efuse/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/efuse + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/bootloader/esp-idf/efuse/libefuse.a b/build/bootloader/esp-idf/efuse/libefuse.a new file mode 100644 index 0000000..0aed98f Binary files /dev/null and b/build/bootloader/esp-idf/efuse/libefuse.a differ diff --git a/build/bootloader/esp-idf/esp32/cmake_install.cmake b/build/bootloader/esp-idf/esp32/cmake_install.cmake new file mode 100644 index 0000000..30a70bd --- /dev/null +++ b/build/bootloader/esp-idf/esp32/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/esp32 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/bootloader/esp-idf/esp_common/cmake_install.cmake b/build/bootloader/esp-idf/esp_common/cmake_install.cmake new file mode 100644 index 0000000..0e9434d --- /dev/null +++ b/build/bootloader/esp-idf/esp_common/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/esp_common + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/bootloader/esp-idf/esp_rom/cmake_install.cmake b/build/bootloader/esp-idf/esp_rom/cmake_install.cmake new file mode 100644 index 0000000..1dea5e5 --- /dev/null +++ b/build/bootloader/esp-idf/esp_rom/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/esp_rom + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/bootloader/esp-idf/esptool_py/cmake_install.cmake b/build/bootloader/esp-idf/esptool_py/cmake_install.cmake new file mode 100644 index 0000000..88005d7 --- /dev/null +++ b/build/bootloader/esp-idf/esptool_py/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/esptool_py + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj b/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj new file mode 100644 index 0000000..b5c9f56 Binary files /dev/null and b/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj differ diff --git a/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj b/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj new file mode 100644 index 0000000..3afcf73 Binary files /dev/null and b/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj differ diff --git a/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/log_noos.c.obj b/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/log_noos.c.obj new file mode 100644 index 0000000..920d544 Binary files /dev/null and b/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/log_noos.c.obj differ diff --git a/build/bootloader/esp-idf/log/cmake_install.cmake b/build/bootloader/esp-idf/log/cmake_install.cmake new file mode 100644 index 0000000..573a3bf --- /dev/null +++ b/build/bootloader/esp-idf/log/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/log + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/bootloader/esp-idf/log/liblog.a b/build/bootloader/esp-idf/log/liblog.a new file mode 100644 index 0000000..9692294 Binary files /dev/null and b/build/bootloader/esp-idf/log/liblog.a differ diff --git a/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj b/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj new file mode 100644 index 0000000..c5d95c8 Binary files /dev/null and b/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj differ diff --git a/build/bootloader/esp-idf/main/cmake_install.cmake b/build/bootloader/esp-idf/main/cmake_install.cmake new file mode 100644 index 0000000..092c3e1 --- /dev/null +++ b/build/bootloader/esp-idf/main/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/bootloader/subproject/main + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/bootloader/esp-idf/main/libmain.a b/build/bootloader/esp-idf/main/libmain.a new file mode 100644 index 0000000..c2b233a Binary files /dev/null and b/build/bootloader/esp-idf/main/libmain.a differ diff --git a/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/micro-ecc/uECC.c.obj b/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/micro-ecc/uECC.c.obj new file mode 100644 index 0000000..da63469 Binary files /dev/null and b/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/micro-ecc/uECC.c.obj differ diff --git a/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake b/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake new file mode 100644 index 0000000..c7410eb --- /dev/null +++ b/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/bootloader/esp-idf/micro-ecc/libmicro-ecc.a b/build/bootloader/esp-idf/micro-ecc/libmicro-ecc.a new file mode 100644 index 0000000..a554d33 Binary files /dev/null and b/build/bootloader/esp-idf/micro-ecc/libmicro-ecc.a differ diff --git a/build/bootloader/esp-idf/partition_table/cmake_install.cmake b/build/bootloader/esp-idf/partition_table/cmake_install.cmake new file mode 100644 index 0000000..4a54419 --- /dev/null +++ b/build/bootloader/esp-idf/partition_table/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/partition_table + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/compare_set.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/compare_set.c.obj new file mode 100644 index 0000000..d021c9b Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/compare_set.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/brownout_hal.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/brownout_hal.c.obj new file mode 100644 index 0000000..8c8927d Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/brownout_hal.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/cpu_util.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/cpu_util.c.obj new file mode 100644 index 0000000..cad37c2 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/cpu_util.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk.c.obj new file mode 100644 index 0000000..db3c02a Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk_init.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk_init.c.obj new file mode 100644 index 0000000..448c802 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk_init.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_init.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_init.c.obj new file mode 100644 index 0000000..aa6616d Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_init.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_pm.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_pm.c.obj new file mode 100644 index 0000000..8b63624 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_pm.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_sleep.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_sleep.c.obj new file mode 100644 index 0000000..a1863e0 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_sleep.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_time.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_time.c.obj new file mode 100644 index 0000000..a53e058 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_time.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_wdt.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_wdt.c.obj new file mode 100644 index 0000000..db18295 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_wdt.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/sdio_slave_hal.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/sdio_slave_hal.c.obj new file mode 100644 index 0000000..ebdae6c Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/sdio_slave_hal.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/soc_memory_layout.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/soc_memory_layout.c.obj new file mode 100644 index 0000000..fb9ea90 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/soc_memory_layout.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/touch_sensor_hal.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/touch_sensor_hal.c.obj new file mode 100644 index 0000000..909305d Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/touch_sensor_hal.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/adc_hal.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/adc_hal.c.obj new file mode 100644 index 0000000..e8c735e Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/adc_hal.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/can_hal.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/can_hal.c.obj new file mode 100644 index 0000000..626ffd4 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/can_hal.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/dac_hal.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/dac_hal.c.obj new file mode 100644 index 0000000..0a38649 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/dac_hal.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/gpio_hal.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/gpio_hal.c.obj new file mode 100644 index 0000000..d0faf10 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/gpio_hal.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal.c.obj new file mode 100644 index 0000000..a022290 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal_iram.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal_iram.c.obj new file mode 100644 index 0000000..3013e43 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal_iram.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2s_hal.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2s_hal.c.obj new file mode 100644 index 0000000..cd3eaa7 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2s_hal.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal.c.obj new file mode 100644 index 0000000..a0f00d2 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal_iram.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal_iram.c.obj new file mode 100644 index 0000000..3032c17 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal_iram.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/mcpwm_hal.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/mcpwm_hal.c.obj new file mode 100644 index 0000000..e414b13 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/mcpwm_hal.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/pcnt_hal.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/pcnt_hal.c.obj new file mode 100644 index 0000000..da0b1d2 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/pcnt_hal.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rmt_hal.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rmt_hal.c.obj new file mode 100644 index 0000000..20833db Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rmt_hal.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rtc_io_hal.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rtc_io_hal.c.obj new file mode 100644 index 0000000..4348190 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rtc_io_hal.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sdio_slave_hal.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sdio_slave_hal.c.obj new file mode 100644 index 0000000..d0a10b3 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sdio_slave_hal.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sigmadelta_hal.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sigmadelta_hal.c.obj new file mode 100644 index 0000000..e8b1372 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sigmadelta_hal.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal.c.obj new file mode 100644 index 0000000..a4c9e5e Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal_iram.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal_iram.c.obj new file mode 100644 index 0000000..67869fa Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal_iram.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal.c.obj new file mode 100644 index 0000000..1548591 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal_iram.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal_iram.c.obj new file mode 100644 index 0000000..2d32fd7 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal_iram.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal.c.obj new file mode 100644 index 0000000..892f5e8 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal_iram.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal_iram.c.obj new file mode 100644 index 0000000..9d46f77 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal_iram.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/timer_hal.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/timer_hal.c.obj new file mode 100644 index 0000000..52ee4e0 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/timer_hal.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/touch_sensor_hal.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/touch_sensor_hal.c.obj new file mode 100644 index 0000000..c2c1994 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/touch_sensor_hal.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal.c.obj new file mode 100644 index 0000000..5740f21 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal_iram.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal_iram.c.obj new file mode 100644 index 0000000..95bc5d3 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal_iram.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/lldesc.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/lldesc.c.obj new file mode 100644 index 0000000..e1fa906 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/lldesc.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/memory_layout_utils.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/memory_layout_utils.c.obj new file mode 100644 index 0000000..75bff4d Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/memory_layout_utils.c.obj differ diff --git a/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/soc_include_legacy_warn.c.obj b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/soc_include_legacy_warn.c.obj new file mode 100644 index 0000000..5692ab2 Binary files /dev/null and b/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/soc_include_legacy_warn.c.obj differ diff --git a/build/bootloader/esp-idf/soc/cmake_install.cmake b/build/bootloader/esp-idf/soc/cmake_install.cmake new file mode 100644 index 0000000..dc55948 --- /dev/null +++ b/build/bootloader/esp-idf/soc/cmake_install.cmake @@ -0,0 +1,41 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/soc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc/src/esp32/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc/soc/cmake_install.cmake") + +endif() + diff --git a/build/bootloader/esp-idf/soc/libsoc.a b/build/bootloader/esp-idf/soc/libsoc.a new file mode 100644 index 0000000..e3d18ba Binary files /dev/null and b/build/bootloader/esp-idf/soc/libsoc.a differ diff --git a/build/bootloader/esp-idf/soc/soc/cmake_install.cmake b/build/bootloader/esp-idf/soc/soc/cmake_install.cmake new file mode 100644 index 0000000..ecc5068 --- /dev/null +++ b/build/bootloader/esp-idf/soc/soc/cmake_install.cmake @@ -0,0 +1,40 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/soc/soc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("/home/mithras/Documents/bakalarka/build/bootloader/esp-idf/soc/soc/esp32/cmake_install.cmake") + +endif() + diff --git a/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/adc_periph.c.obj b/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/adc_periph.c.obj new file mode 100644 index 0000000..8bed474 Binary files /dev/null and b/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/adc_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/dac_periph.c.obj b/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/dac_periph.c.obj new file mode 100644 index 0000000..56e0b81 Binary files /dev/null and b/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/dac_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/gpio_periph.c.obj b/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/gpio_periph.c.obj new file mode 100644 index 0000000..c3d7732 Binary files /dev/null and b/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/gpio_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2c_periph.c.obj b/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2c_periph.c.obj new file mode 100644 index 0000000..b821ea7 Binary files /dev/null and b/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2c_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2s_periph.c.obj b/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2s_periph.c.obj new file mode 100644 index 0000000..9aff2cd Binary files /dev/null and b/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2s_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/interrupts.c.obj b/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/interrupts.c.obj new file mode 100644 index 0000000..bd282c5 Binary files /dev/null and b/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/interrupts.c.obj differ diff --git a/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/ledc_periph.c.obj b/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/ledc_periph.c.obj new file mode 100644 index 0000000..30bae87 Binary files /dev/null and b/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/ledc_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_io_periph.c.obj b/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_io_periph.c.obj new file mode 100644 index 0000000..574d1c6 Binary files /dev/null and b/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_io_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_periph.c.obj b/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_periph.c.obj new file mode 100644 index 0000000..711d177 Binary files /dev/null and b/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdio_slave_periph.c.obj b/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdio_slave_periph.c.obj new file mode 100644 index 0000000..49a5cf4 Binary files /dev/null and b/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdio_slave_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdmmc_periph.c.obj b/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdmmc_periph.c.obj new file mode 100644 index 0000000..0e86b5b Binary files /dev/null and b/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdmmc_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/spi_periph.c.obj b/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/spi_periph.c.obj new file mode 100644 index 0000000..7d1b6ad Binary files /dev/null and b/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/spi_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/touch_sensor_periph.c.obj b/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/touch_sensor_periph.c.obj new file mode 100644 index 0000000..2475796 Binary files /dev/null and b/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/touch_sensor_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/uart_periph.c.obj b/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/uart_periph.c.obj new file mode 100644 index 0000000..bd56d68 Binary files /dev/null and b/build/bootloader/esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/uart_periph.c.obj differ diff --git a/build/bootloader/esp-idf/soc/soc/esp32/cmake_install.cmake b/build/bootloader/esp-idf/soc/soc/esp32/cmake_install.cmake new file mode 100644 index 0000000..ee0ab0f --- /dev/null +++ b/build/bootloader/esp-idf/soc/soc/esp32/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/soc/soc/esp32 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/bootloader/esp-idf/soc/soc/esp32/libsoc_esp32.a b/build/bootloader/esp-idf/soc/soc/esp32/libsoc_esp32.a new file mode 100644 index 0000000..ed42c96 Binary files /dev/null and b/build/bootloader/esp-idf/soc/soc/esp32/libsoc_esp32.a differ diff --git a/build/bootloader/esp-idf/soc/src/esp32/cmake_install.cmake b/build/bootloader/esp-idf/soc/src/esp32/cmake_install.cmake new file mode 100644 index 0000000..5de88a6 --- /dev/null +++ b/build/bootloader/esp-idf/soc/src/esp32/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/soc/src/esp32 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/bootloader/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32/spi_flash_rom_patch.c.obj b/build/bootloader/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32/spi_flash_rom_patch.c.obj new file mode 100644 index 0000000..8ceeb01 Binary files /dev/null and b/build/bootloader/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32/spi_flash_rom_patch.c.obj differ diff --git a/build/bootloader/esp-idf/spi_flash/cmake_install.cmake b/build/bootloader/esp-idf/spi_flash/cmake_install.cmake new file mode 100644 index 0000000..7ac42f1 --- /dev/null +++ b/build/bootloader/esp-idf/spi_flash/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/spi_flash + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/bootloader/esp-idf/spi_flash/libspi_flash.a b/build/bootloader/esp-idf/spi_flash/libspi_flash.a new file mode 100644 index 0000000..1035667 Binary files /dev/null and b/build/bootloader/esp-idf/spi_flash/libspi_flash.a differ diff --git a/build/bootloader/esp-idf/xtensa/cmake_install.cmake b/build/bootloader/esp-idf/xtensa/cmake_install.cmake new file mode 100644 index 0000000..50e21ae --- /dev/null +++ b/build/bootloader/esp-idf/xtensa/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/xtensa + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/bootloader/kconfigs.in b/build/bootloader/kconfigs.in new file mode 100644 index 0000000..ffc9888 --- /dev/null +++ b/build/bootloader/kconfigs.in @@ -0,0 +1,5 @@ +source "/home/mithras/esp/esp-idf/components/efuse/Kconfig" +source "/home/mithras/esp/esp-idf/components/esp32/Kconfig" +source "/home/mithras/esp/esp-idf/components/esp_common/Kconfig" +source "/home/mithras/esp/esp-idf/components/log/Kconfig" +source "/home/mithras/esp/esp-idf/components/spi_flash/Kconfig" \ No newline at end of file diff --git a/build/bootloader/kconfigs_projbuild.in b/build/bootloader/kconfigs_projbuild.in new file mode 100644 index 0000000..3fcd202 --- /dev/null +++ b/build/bootloader/kconfigs_projbuild.in @@ -0,0 +1,3 @@ +source "/home/mithras/esp/esp-idf/components/bootloader/Kconfig.projbuild" +source "/home/mithras/esp/esp-idf/components/esptool_py/Kconfig.projbuild" +source "/home/mithras/esp/esp-idf/components/partition_table/Kconfig.projbuild" \ No newline at end of file diff --git a/build/bootloader/project_description.json b/build/bootloader/project_description.json new file mode 100644 index 0000000..91622cd --- /dev/null +++ b/build/bootloader/project_description.json @@ -0,0 +1,20 @@ +{ + "project_name": "bootloader", + "project_path": "/home/mithras/esp/esp-idf/components/bootloader/subproject", + "build_dir": "/home/mithras/Documents/bakalarka/build/bootloader", + "config_file": "/home/mithras/Documents/bakalarka/sdkconfig", + "config_defaults": "", + "app_elf": "bootloader.elf", + "app_bin": "bootloader.bin", + "git_revision": "v4.2-dev-414-g132cc67c0-dirty", + "target": "esp32", + "phy_data_partition": "", + "monitor_baud" : "115200", + "monitor_toolprefix": "xtensa-esp32-elf-", + "config_environment" : { + "COMPONENT_KCONFIGS" : "/home/mithras/esp/esp-idf/components/efuse/Kconfig;/home/mithras/esp/esp-idf/components/esp32/Kconfig;/home/mithras/esp/esp-idf/components/esp_common/Kconfig;/home/mithras/esp/esp-idf/components/log/Kconfig;/home/mithras/esp/esp-idf/components/spi_flash/Kconfig", + "COMPONENT_KCONFIGS_PROJBUILD" : "/home/mithras/esp/esp-idf/components/bootloader/Kconfig.projbuild;/home/mithras/esp/esp-idf/components/esptool_py/Kconfig.projbuild;/home/mithras/esp/esp-idf/components/partition_table/Kconfig.projbuild" + }, + "build_components" : [ "bootloader", "bootloader_support", "efuse", "esp32", "esp_common", "esp_rom", "esptool_py", "log", "main", "micro-ecc", "partition_table", "soc", "spi_flash", "xtensa", "" ], + "build_component_paths" : [ "/home/mithras/esp/esp-idf/components/bootloader", "/home/mithras/esp/esp-idf/components/bootloader_support", "/home/mithras/esp/esp-idf/components/efuse", "/home/mithras/esp/esp-idf/components/esp32", "/home/mithras/esp/esp-idf/components/esp_common", "/home/mithras/esp/esp-idf/components/esp_rom", "/home/mithras/esp/esp-idf/components/esptool_py", "/home/mithras/esp/esp-idf/components/log", "/home/mithras/esp/esp-idf/components/bootloader/subproject/main", "/home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc", "/home/mithras/esp/esp-idf/components/partition_table", "/home/mithras/esp/esp-idf/components/soc", "/home/mithras/esp/esp-idf/components/spi_flash", "/home/mithras/esp/esp-idf/components/xtensa", "" ] +} diff --git a/build/bootloader/project_elf_src.c b/build/bootloader/project_elf_src.c new file mode 100644 index 0000000..e69de29 diff --git a/build/bootloader/rules.ninja b/build/bootloader/rules.ninja new file mode 100644 index 0000000..3b148b0 --- /dev/null +++ b/build/bootloader/rules.ninja @@ -0,0 +1,216 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.10 + +# This file contains all the rules used to get the outputs files +# built from the input files. +# It is included in the main 'build.ninja'. + +# ============================================================================= +# Project: bootloader +# Configuration: +# ============================================================================= +# ============================================================================= + +############################################# +# Rule for running custom commands. + +rule CUSTOM_COMMAND + command = $COMMAND + description = $DESC + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__bootloader.2eelf + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C executable. + +rule C_EXECUTABLE_LINKER__bootloader.2eelf + command = $PRE_LINK && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $FLAGS $LINK_FLAGS $in -o $TARGET_FILE $LINK_PATH $LINK_LIBRARIES && $POST_BUILD + description = Linking C executable $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_soc + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_soc + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__soc_esp32 + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER__soc_esp32 + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_log + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_log + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_micro-ecc + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_micro-ecc + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_spi_flash + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_spi_flash + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_efuse + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_efuse + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_bootloader_support + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_bootloader_support + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_main + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking C static library. + +rule C_STATIC_LIBRARY_LINKER____idf_main + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking C static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for re-running cmake. + +rule RERUN_CMAKE + command = /usr/bin/cmake -H/home/mithras/esp/esp-idf/components/bootloader/subproject -B/home/mithras/Documents/bakalarka/build/bootloader + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = /usr/bin/ninja -t clean + description = Cleaning all built files... + + +############################################# +# Rule for printing all primary targets available. + +rule HELP + command = /usr/bin/ninja -t targets + description = All primary targets available: + diff --git a/build/build.ninja b/build/build.ninja new file mode 100644 index 0000000..f41fc48 --- /dev/null +++ b/build/build.ninja @@ -0,0 +1,16996 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.10 + +# This file contains all the build statements describing the +# compilation DAG. + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# +# Which is the root file. +# ============================================================================= + +# ============================================================================= +# Project: bakalarka +# Configuration: +# ============================================================================= + +############################################# +# Minimal version of Ninja required by this file + +ninja_required_version = 1.5 + +# ============================================================================= +# Include auxiliary files. + + +############################################# +# Include rules file. + +include rules.ninja + + +############################################# +# Utility command for install/local + +build CMakeFiles/install/local.util: CUSTOM_COMMAND all + COMMAND = cd /home/mithras/Documents/bakalarka/build && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build install/local: phony CMakeFiles/install/local.util + +############################################# +# Utility command for gen_project_binary + +build gen_project_binary: phony CMakeFiles/gen_project_binary .bin_timestamp bakalarka.elf +# ============================================================================= +# Object build statements for EXECUTABLE target bakalarka.elf + + +############################################# +# Order-only phony target for bakalarka.elf + +build cmake_object_order_depends_target_bakalarka.elf: phony || _project_elf_src cmake_object_order_depends_target___idf_asio cmake_object_order_depends_target___idf_ca cmake_object_order_depends_target___idf_cbor cmake_object_order_depends_target___idf_cmd_nvs cmake_object_order_depends_target___idf_cmd_system cmake_object_order_depends_target___idf_coap cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_esp_adc_cal cmake_object_order_depends_target___idf_esp_gdbstub cmake_object_order_depends_target___idf_esp_https_ota cmake_object_order_depends_target___idf_esp_https_server cmake_object_order_depends_target___idf_esp_local_ctrl cmake_object_order_depends_target___idf_esp_serial_slave_link cmake_object_order_depends_target___idf_esp_websocket_client cmake_object_order_depends_target___idf_expat cmake_object_order_depends_target___idf_fatfs cmake_object_order_depends_target___idf_files cmake_object_order_depends_target___idf_freemodbus cmake_object_order_depends_target___idf_https_server cmake_object_order_depends_target___idf_jsmn cmake_object_order_depends_target___idf_json cmake_object_order_depends_target___idf_libsodium cmake_object_order_depends_target___idf_lv_examples cmake_object_order_depends_target___idf_lvgl cmake_object_order_depends_target___idf_lvgl_esp32_drivers cmake_object_order_depends_target___idf_lvgl_tft cmake_object_order_depends_target___idf_lvgl_touch cmake_object_order_depends_target___idf_main cmake_object_order_depends_target___idf_mdns cmake_object_order_depends_target___idf_mqtt cmake_object_order_depends_target___idf_openssl cmake_object_order_depends_target___idf_protobuf-c cmake_object_order_depends_target___idf_protocomm cmake_object_order_depends_target___idf_sdmmc cmake_object_order_depends_target___idf_spiffs cmake_object_order_depends_target___idf_unity cmake_object_order_depends_target___idf_wear_levelling cmake_object_order_depends_target___idf_wifi cmake_object_order_depends_target___idf_wifi_provisioning cmake_object_order_depends_target___idf_xtensa esp-idf/esp32/__ldgen_output_esp32.project.ld project_elf_src.c +build CMakeFiles/bakalarka.elf.dir/project_elf_src.c.obj: C_COMPILER__bakalarka.2eelf project_elf_src.c || cmake_object_order_depends_target_bakalarka.elf + DEFINES = -DHAVE_CONFIG_H -DLV_CONF_INCLUDE_SIMPLE=1 -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUNITY_INCLUDE_CONFIG_H -DWITH_POSIX + DEP_FILE = CMakeFiles/bakalarka.elf.dir/project_elf_src.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address + INCLUDES = -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include -I/home/mithras/esp/esp-idf/components/asio/asio/asio/include -I/home/mithras/esp/esp-idf/components/asio/port/include -I/home/mithras/esp/esp-idf/components/cbor/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/esp_adc_cal/include -I/home/mithras/esp/esp-idf/components/esp_gdbstub/include -I/home/mithras/esp/esp-idf/components/tcp_transport/include -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/esp_https_ota/include -I/home/mithras/esp/esp-idf/components/esp_https_server/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/include -I/home/mithras/esp/esp-idf/components/sdmmc/include -I/home/mithras/esp/esp-idf/components/esp_serial_slave_link/include -I/home/mithras/esp/esp-idf/components/esp_websocket_client/include -I/home/mithras/esp/esp-idf/components/expat/expat/expat/lib -I/home/mithras/esp/esp-idf/components/expat/port/include -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/fatfs/diskio -I/home/mithras/esp/esp-idf/components/fatfs/vfs -I/home/mithras/esp/esp-idf/components/fatfs/src -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/idf_test/include -I/home/mithras/esp/esp-idf/components/jsmn/include -I/home/mithras/esp/esp-idf/components/json/cJSON -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/include -I/home/mithras/esp/esp-idf/components/openssl/include -I/home/mithras/esp/esp-idf/components/spiffs/include -I/home/mithras/esp/esp-idf/components/ulp/include -I/home/mithras/esp/esp-idf/components/unity/include -I/home/mithras/esp/esp-idf/components/unity/unity/src -I/home/mithras/esp/esp-idf/components/wifi_provisioning/include -I../main -I../components/ca -I../components/cmd_nvs -I../components/cmd_system -I../components/files -I../components/wifi -I../components/https_server -I../components/lvgl -I../components/lvgl/lvgl -I../components/lv_examples -I../components/lvgl_esp32_drivers -I../components/lvgl_esp32_drivers/lvgl_tft -I../components/lvgl_esp32_drivers/lvgl_touch + OBJECT_DIR = CMakeFiles/bakalarka.elf.dir + OBJECT_FILE_DIR = CMakeFiles/bakalarka.elf.dir + TARGET_COMPILE_PDB = CMakeFiles/bakalarka.elf.dir/ + TARGET_PDB = bakalarka.elf.pdb + +# ============================================================================= +# Link build statements for EXECUTABLE target bakalarka.elf + + +############################################# +# Link the executable bakalarka.elf + +build bakalarka.elf: CXX_EXECUTABLE_LINKER__bakalarka.2eelf CMakeFiles/bakalarka.elf.dir/project_elf_src.c.obj | esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_event/libesp_event.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/lwip/liblwip.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/esp32/libesp32.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/freertos/libfreertos.a esp-idf/vfs/libvfs.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/app_trace/libapp_trace.a esp-idf/asio/libasio.a esp-idf/cbor/libcbor.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/mdns/libmdns.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/expat/libexpat.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/fatfs/libfatfs.a esp-idf/freemodbus/libfreemodbus.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/mqtt/libmqtt.a esp-idf/openssl/libopenssl.a esp-idf/spiffs/libspiffs.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/main/libmain.a esp-idf/ca/libca.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/files/libfiles.a esp-idf/wifi/libwifi.a esp-idf/https_server/libhttps_server.a esp-idf/lvgl/liblvgl.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.a esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_event/libesp_event.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/lwip/liblwip.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/esp32/libesp32.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/freertos/libfreertos.a esp-idf/vfs/libvfs.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/app_trace/libapp_trace.a esp-idf/asio/libasio.a esp-idf/cbor/libcbor.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/mdns/libmdns.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/expat/libexpat.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/fatfs/libfatfs.a esp-idf/sdmmc/libsdmmc.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/freemodbus/libfreemodbus.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/mqtt/libmqtt.a esp-idf/openssl/libopenssl.a esp-idf/spiffs/libspiffs.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/protocomm/libprotocomm.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/mdns/libmdns.a esp-idf/json/libjson.a esp-idf/spiffs/libspiffs.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/wifi/libwifi.a esp-idf/console/libconsole.a esp-idf/lvgl/liblvgl.a esp-idf/cxx/libcxx.a esp-idf/newlib/libnewlib.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/soc/libsoc.a esp-idf/esp_common/libesp_common.a esp-idf/esp32/libesp32.a esp-idf/xtensa/libxtensa.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/esp_event/libesp_event.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_timer/libesp_timer.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/efuse/libefuse.a esp-idf/app_update/libapp_update.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a esp-idf/vfs/libvfs.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/app_trace/libapp_trace.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/ulp/libulp.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/cxx/libcxx.a esp-idf/newlib/libnewlib.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/soc/libsoc.a esp-idf/esp_common/libesp_common.a esp-idf/esp32/libesp32.a esp-idf/xtensa/libxtensa.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/esp_event/libesp_event.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_timer/libesp_timer.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/efuse/libefuse.a esp-idf/app_update/libapp_update.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a esp-idf/vfs/libvfs.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/app_trace/libapp_trace.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/ulp/libulp.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/cxx/libcxx.a esp-idf/newlib/libnewlib.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/soc/libsoc.a esp-idf/esp_common/libesp_common.a esp-idf/esp32/libesp32.a esp-idf/xtensa/libxtensa.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/esp_event/libesp_event.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_timer/libesp_timer.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/efuse/libefuse.a esp-idf/app_update/libapp_update.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a esp-idf/vfs/libvfs.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/app_trace/libapp_trace.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/ulp/libulp.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/cxx/libcxx.a esp-idf/newlib/libnewlib.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/soc/libsoc.a esp-idf/esp_common/libesp_common.a esp-idf/esp32/libesp32.a esp-idf/xtensa/libxtensa.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/esp_event/libesp_event.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_timer/libesp_timer.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/efuse/libefuse.a esp-idf/app_update/libapp_update.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a esp-idf/vfs/libvfs.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/app_trace/libapp_trace.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/ulp/libulp.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/pthread/libpthread.a esp-idf/newlib/libnewlib.a /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a esp-idf/app_trace/libapp_trace.a esp-idf/app_trace/libapp_trace.a /home/mithras/esp/esp-idf/components/esp_rom/esp32/ld/esp32.rom.newlib-funcs-time.ld /home/mithras/esp/esp-idf/components/esp_rom/esp32/ld/esp32.rom.ld /home/mithras/esp/esp-idf/components/esp_rom/esp32/ld/esp32.rom.libgcc.ld /home/mithras/esp/esp-idf/components/esp_rom/esp32/ld/esp32.rom.newlib-data.ld /home/mithras/esp/esp-idf/components/esp_rom/esp32/ld/esp32.rom.syscalls.ld /home/mithras/esp/esp-idf/components/esp_rom/esp32/ld/esp32.rom.newlib-funcs.ld esp-idf/esp32/esp32_out.ld esp-idf/esp32/ld/esp32.project.ld /home/mithras/esp/esp-idf/components/esp32/ld/esp32.peripherals.ld || _project_elf_src esp-idf/asio/libasio.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/esp32/__ldgen_output_esp32.project.ld esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl/liblvgl.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.a esp-idf/main/libmain.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/openssl/libopenssl.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/sdmmc/libsdmmc.a esp-idf/spiffs/libspiffs.a esp-idf/unity/libunity.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/xtensa/libxtensa.a + FLAGS = -mlongcalls -Wno-frame-address + LINK_LIBRARIES = esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_event/libesp_event.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/lwip/liblwip.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/esp32/libesp32.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/freertos/libfreertos.a esp-idf/vfs/libvfs.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/app_trace/libapp_trace.a esp-idf/asio/libasio.a esp-idf/cbor/libcbor.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/mdns/libmdns.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/expat/libexpat.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/fatfs/libfatfs.a esp-idf/freemodbus/libfreemodbus.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/mqtt/libmqtt.a esp-idf/openssl/libopenssl.a esp-idf/spiffs/libspiffs.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/main/libmain.a esp-idf/ca/libca.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/files/libfiles.a esp-idf/wifi/libwifi.a esp-idf/https_server/libhttps_server.a esp-idf/lvgl/liblvgl.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.a -Wl,--cref -Wl,--Map=/home/mithras/Documents/bakalarka/build/bakalarka.map -fno-rtti -fno-lto esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_event/libesp_event.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/lwip/liblwip.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/esp32/libesp32.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/freertos/libfreertos.a esp-idf/vfs/libvfs.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/app_trace/libapp_trace.a esp-idf/asio/libasio.a esp-idf/cbor/libcbor.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/mdns/libmdns.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/expat/libexpat.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/fatfs/libfatfs.a esp-idf/sdmmc/libsdmmc.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/freemodbus/libfreemodbus.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/mqtt/libmqtt.a esp-idf/openssl/libopenssl.a esp-idf/spiffs/libspiffs.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/protocomm/libprotocomm.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/mdns/libmdns.a esp-idf/json/libjson.a esp-idf/spiffs/libspiffs.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/wifi/libwifi.a esp-idf/console/libconsole.a esp-idf/lvgl/liblvgl.a esp-idf/cxx/libcxx.a esp-idf/newlib/libnewlib.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/soc/libsoc.a esp-idf/esp_common/libesp_common.a esp-idf/esp32/libesp32.a esp-idf/xtensa/libxtensa.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/esp_event/libesp_event.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_timer/libesp_timer.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/efuse/libefuse.a esp-idf/app_update/libapp_update.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a esp-idf/vfs/libvfs.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/app_trace/libapp_trace.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/ulp/libulp.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/cxx/libcxx.a esp-idf/newlib/libnewlib.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/soc/libsoc.a esp-idf/esp_common/libesp_common.a esp-idf/esp32/libesp32.a esp-idf/xtensa/libxtensa.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/esp_event/libesp_event.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_timer/libesp_timer.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/efuse/libefuse.a esp-idf/app_update/libapp_update.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a esp-idf/vfs/libvfs.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/app_trace/libapp_trace.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/ulp/libulp.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/cxx/libcxx.a esp-idf/newlib/libnewlib.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/soc/libsoc.a esp-idf/esp_common/libesp_common.a esp-idf/esp32/libesp32.a esp-idf/xtensa/libxtensa.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/esp_event/libesp_event.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_timer/libesp_timer.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/efuse/libefuse.a esp-idf/app_update/libapp_update.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a esp-idf/vfs/libvfs.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/app_trace/libapp_trace.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/ulp/libulp.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/cxx/libcxx.a esp-idf/newlib/libnewlib.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/soc/libsoc.a esp-idf/esp_common/libesp_common.a esp-idf/esp32/libesp32.a esp-idf/xtensa/libxtensa.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/esp_event/libesp_event.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_timer/libesp_timer.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/spi_flash/libspi_flash.a esp-idf/efuse/libefuse.a esp-idf/app_update/libapp_update.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/nvs_flash/libnvs_flash.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a esp-idf/vfs/libvfs.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/app_trace/libapp_trace.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/ulp/libulp.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/tcp_transport/libtcp_transport.a -u __cxa_guard_dummy -lstdc++ esp-idf/pthread/libpthread.a -u __cxx_fatal_exception -lm esp-idf/newlib/libnewlib.a -u newlib_include_locks_impl -u newlib_include_heap_impl -u newlib_include_syscalls_impl -u newlib_include_pthread_impl -Wl,--undefined=uxTopUsedPriority -L /home/mithras/esp/esp-idf/components/esp_rom/esp32/ld -T esp32.rom.newlib-funcs-time.ld -T esp32.rom.ld -T esp32.rom.libgcc.ld -T esp32.rom.newlib-data.ld -T esp32.rom.syscalls.ld -T esp32.rom.newlib-funcs.ld -Wl,--gc-sections -L /home/mithras/Documents/bakalarka/build/esp-idf/esp32 -T esp32_out.ld -u app_main -L /home/mithras/Documents/bakalarka/build/esp-idf/esp32/ld -T esp32.project.ld -L /home/mithras/esp/esp-idf/components/esp32/ld -T esp32.peripherals.ld -lgcc -u call_user_start_cpu0 -u ld_include_panic_highint_hdl /home/mithras/esp/esp-idf/components/xtensa/esp32/libhal.a -u esp_app_desc -u vfs_include_syscalls_impl -L /home/mithras/esp/esp-idf/components/esp_wifi/lib/esp32 esp-idf/app_trace/libapp_trace.a -lgcov esp-idf/app_trace/libapp_trace.a -lgcov -lc -u pthread_include_pthread_impl -u pthread_include_pthread_cond_impl -u pthread_include_pthread_local_storage_impl + OBJECT_DIR = CMakeFiles/bakalarka.elf.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = CMakeFiles/bakalarka.elf.dir/ + TARGET_FILE = bakalarka.elf + TARGET_PDB = bakalarka.elf.pdb + +############################################# +# Utility command for menuconfig + +build menuconfig: phony CMakeFiles/menuconfig + +############################################# +# Utility command for install + +build CMakeFiles/install.util: CUSTOM_COMMAND all + COMMAND = cd /home/mithras/Documents/bakalarka/build && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build install: phony CMakeFiles/install.util + +############################################# +# Utility command for app + +build app: phony CMakeFiles/app gen_project_binary + +############################################# +# Utility command for erase_flash + +build erase_flash: phony CMakeFiles/erase_flash + +############################################# +# Utility command for bootloader + +build bootloader: phony CMakeFiles/bootloader CMakeFiles/bootloader-complete bootloader-prefix/src/bootloader-stamp/bootloader-done bootloader-prefix/src/bootloader-stamp/bootloader-install bootloader-prefix/src/bootloader-stamp/bootloader-mkdir bootloader-prefix/src/bootloader-stamp/bootloader-download bootloader-prefix/src/bootloader-stamp/bootloader-update bootloader-prefix/src/bootloader-stamp/bootloader-patch bootloader-prefix/src/bootloader-stamp/bootloader-configure bootloader-prefix/src/bootloader-stamp/bootloader-build bootloader/bootloader.elf bootloader/bootloader.bin bootloader/bootloader.map esp-idf/partition_table/partition_table + +############################################# +# Utility command for flash + +build flash: phony CMakeFiles/flash app bootloader esp-idf/partition_table/partition_table + +############################################# +# Utility command for confserver + +build confserver: phony CMakeFiles/confserver + +############################################# +# Utility command for monitor + +build monitor: phony CMakeFiles/monitor + +############################################# +# Utility command for install/strip + +build CMakeFiles/install/strip.util: CUSTOM_COMMAND all + COMMAND = cd /home/mithras/Documents/bakalarka/build && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build install/strip: phony CMakeFiles/install/strip.util + +############################################# +# Utility command for _project_elf_src + +build _project_elf_src: phony CMakeFiles/_project_elf_src project_elf_src.c + +############################################# +# Utility command for size + +build size: phony CMakeFiles/size bakalarka.elf + +############################################# +# Utility command for size-components + +build size-components: phony CMakeFiles/size-components bakalarka.elf + +############################################# +# Utility command for list_install_components + +build list_install_components: phony + +############################################# +# Utility command for size-files + +build size-files: phony CMakeFiles/size-files bakalarka.elf + +############################################# +# Utility command for edit_cache + +build CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build edit_cache: phony CMakeFiles/edit_cache.util + +############################################# +# Utility command for rebuild_cache + +build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build rebuild_cache: phony CMakeFiles/rebuild_cache.util + +############################################# +# Phony custom command for CMakeFiles/gen_project_binary + +build CMakeFiles/gen_project_binary: phony .bin_timestamp || _project_elf_src bakalarka.elf esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/asio/libasio.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp32/__ldgen_output_esp32.project.ld esp-idf/esp32/esp32_linker_script esp-idf/esp32/libesp32.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/log/liblog.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl/liblvgl.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nghttp/libnghttp.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openssl/libopenssl.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a + +############################################# +# Custom command for .bin_timestamp + +build .bin_timestamp: CUSTOM_COMMAND bakalarka.elf || _project_elf_src bakalarka.elf esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/asio/libasio.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp32/__ldgen_output_esp32.project.ld esp-idf/esp32/esp32_linker_script esp-idf/esp32/libesp32.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/log/liblog.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl/liblvgl.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nghttp/libnghttp.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openssl/libopenssl.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a + COMMAND = cd /home/mithras/Documents/bakalarka/build && /home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/components/esptool_py/esptool/esptool.py --chip esp32 elf2image --flash_mode dio --flash_freq 40m --flash_size 4MB --elf-sha256-offset 0xb0 -o /home/mithras/Documents/bakalarka/build/bakalarka.bin bakalarka.elf && /usr/bin/cmake -E echo "Generated /home/mithras/Documents/bakalarka/build/bakalarka.bin" && /usr/bin/cmake -E md5sum /home/mithras/Documents/bakalarka/build/bakalarka.bin > /home/mithras/Documents/bakalarka/build/.bin_timestamp + DESC = Generating binary image from built executable + restat = 1 + +############################################# +# Custom command for project_elf_src.c + +build project_elf_src.c: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build && /usr/bin/cmake -E touch /home/mithras/Documents/bakalarka/build/project_elf_src.c + DESC = Generating project_elf_src.c + restat = 1 + +############################################# +# Custom command for CMakeFiles/menuconfig + +build CMakeFiles/menuconfig: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build && /home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --env-file /home/mithras/Documents/bakalarka/build/config.env && /home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/tools/kconfig_new/confgen.py --kconfig /home/mithras/esp/esp-idf/Kconfig --sdkconfig-rename /home/mithras/esp/esp-idf/sdkconfig.rename --config /home/mithras/Documents/bakalarka/sdkconfig --defaults /home/mithras/Documents/bakalarka/sdkconfig.defaults --env-file /home/mithras/Documents/bakalarka/build/config.env --env IDF_TARGET=esp32 --dont-write-deprecated --output config /home/mithras/Documents/bakalarka/sdkconfig && /home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/tools/check_term.py && /usr/bin/cmake -E env COMPONENT_KCONFIGS_SOURCE_FILE=/home/mithras/Documents/bakalarka/build/kconfigs.in COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE=/home/mithras/Documents/bakalarka/build/kconfigs_projbuild.in IDF_CMAKE=y KCONFIG_CONFIG=/home/mithras/Documents/bakalarka/sdkconfig IDF_TARGET=esp32 /home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/tools/kconfig_new/menuconfig.py /home/mithras/esp/esp-idf/Kconfig && /home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/tools/kconfig_new/confgen.py --kconfig /home/mithras/esp/esp-idf/Kconfig --sdkconfig-rename /home/mithras/esp/esp-idf/sdkconfig.rename --config /home/mithras/Documents/bakalarka/sdkconfig --defaults /home/mithras/Documents/bakalarka/sdkconfig.defaults --env-file /home/mithras/Documents/bakalarka/build/config.env --env IDF_TARGET=esp32 --output config /home/mithras/Documents/bakalarka/sdkconfig + pool = console + +############################################# +# Phony custom command for CMakeFiles/app + +build CMakeFiles/app: phony || _project_elf_src bakalarka.elf esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/asio/libasio.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp32/__ldgen_output_esp32.project.ld esp-idf/esp32/esp32_linker_script esp-idf/esp32/libesp32.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/log/liblog.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl/liblvgl.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nghttp/libnghttp.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openssl/libopenssl.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_project_binary + +############################################# +# Custom command for CMakeFiles/erase_flash + +build CMakeFiles/erase_flash: CUSTOM_COMMAND + COMMAND = cd /home/mithras/esp/esp-idf/components/esptool_py && /usr/bin/cmake -D IDF_PATH="/home/mithras/esp/esp-idf" -D ESPTOOLPY="/home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/components/esptool_py/esptool/esptool.py --chip esp32" -D ESPTOOL_ARGS="erase_flash" -P run_esptool.cmake + pool = console + +############################################# +# Phony custom command for CMakeFiles/bootloader + +build CMakeFiles/bootloader: phony CMakeFiles/bootloader-complete || esp-idf/partition_table/partition_table + +############################################# +# Custom command for CMakeFiles/bootloader-complete + +build CMakeFiles/bootloader-complete bootloader-prefix/src/bootloader-stamp/bootloader-done: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-install bootloader-prefix/src/bootloader-stamp/bootloader-mkdir bootloader-prefix/src/bootloader-stamp/bootloader-download bootloader-prefix/src/bootloader-stamp/bootloader-update bootloader-prefix/src/bootloader-stamp/bootloader-patch bootloader-prefix/src/bootloader-stamp/bootloader-configure bootloader-prefix/src/bootloader-stamp/bootloader-build bootloader-prefix/src/bootloader-stamp/bootloader-install || esp-idf/partition_table/partition_table + COMMAND = cd /home/mithras/Documents/bakalarka/build && /usr/bin/cmake -E make_directory /home/mithras/Documents/bakalarka/build/CMakeFiles && /usr/bin/cmake -E touch /home/mithras/Documents/bakalarka/build/CMakeFiles/bootloader-complete && /usr/bin/cmake -E touch /home/mithras/Documents/bakalarka/build/bootloader-prefix/src/bootloader-stamp/bootloader-done + DESC = Completed 'bootloader' + restat = 1 + +############################################# +# Custom command for bootloader-prefix/src/bootloader-stamp/bootloader-install + +build bootloader-prefix/src/bootloader-stamp/bootloader-install: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-build || esp-idf/partition_table/partition_table + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader && /usr/bin/cmake -E echo_append && /usr/bin/cmake -E touch /home/mithras/Documents/bakalarka/build/bootloader-prefix/src/bootloader-stamp/bootloader-install + DESC = No install step for 'bootloader' + restat = 1 + +############################################# +# Custom command for bootloader-prefix/src/bootloader-stamp/bootloader-mkdir + +build bootloader-prefix/src/bootloader-stamp/bootloader-mkdir: CUSTOM_COMMAND || esp-idf/partition_table/partition_table + COMMAND = cd /home/mithras/Documents/bakalarka/build && /usr/bin/cmake -E make_directory /home/mithras/esp/esp-idf/components/bootloader/subproject && /usr/bin/cmake -E make_directory /home/mithras/Documents/bakalarka/build/bootloader && /usr/bin/cmake -E make_directory /home/mithras/Documents/bakalarka/build/bootloader-prefix && /usr/bin/cmake -E make_directory /home/mithras/Documents/bakalarka/build/bootloader-prefix/tmp && /usr/bin/cmake -E make_directory /home/mithras/Documents/bakalarka/build/bootloader-prefix/src/bootloader-stamp && /usr/bin/cmake -E make_directory /home/mithras/Documents/bakalarka/build/bootloader-prefix/src && /usr/bin/cmake -E touch /home/mithras/Documents/bakalarka/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir + DESC = Creating directories for 'bootloader' + restat = 1 + +############################################# +# Custom command for bootloader-prefix/src/bootloader-stamp/bootloader-download + +build bootloader-prefix/src/bootloader-stamp/bootloader-download: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-mkdir || esp-idf/partition_table/partition_table + COMMAND = cd /home/mithras/Documents/bakalarka/build && /usr/bin/cmake -E echo_append && /usr/bin/cmake -E touch /home/mithras/Documents/bakalarka/build/bootloader-prefix/src/bootloader-stamp/bootloader-download + DESC = No download step for 'bootloader' + restat = 1 + +############################################# +# Custom command for bootloader-prefix/src/bootloader-stamp/bootloader-update + +build bootloader-prefix/src/bootloader-stamp/bootloader-update: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-download || esp-idf/partition_table/partition_table + COMMAND = cd /home/mithras/Documents/bakalarka/build && /usr/bin/cmake -E echo_append && /usr/bin/cmake -E touch /home/mithras/Documents/bakalarka/build/bootloader-prefix/src/bootloader-stamp/bootloader-update + DESC = No update step for 'bootloader' + restat = 1 + +############################################# +# Custom command for bootloader-prefix/src/bootloader-stamp/bootloader-patch + +build bootloader-prefix/src/bootloader-stamp/bootloader-patch: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-download || esp-idf/partition_table/partition_table + COMMAND = cd /home/mithras/Documents/bakalarka/build && /usr/bin/cmake -E echo_append && /usr/bin/cmake -E touch /home/mithras/Documents/bakalarka/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch + DESC = No patch step for 'bootloader' + restat = 1 + +############################################# +# Custom command for bootloader-prefix/src/bootloader-stamp/bootloader-configure + +build bootloader-prefix/src/bootloader-stamp/bootloader-configure: CUSTOM_COMMAND bootloader-prefix/tmp/bootloader-cfgcmd.txt bootloader-prefix/src/bootloader-stamp/bootloader-update bootloader-prefix/src/bootloader-stamp/bootloader-patch || esp-idf/partition_table/partition_table + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader && /usr/bin/cmake -DSDKCONFIG=/home/mithras/Documents/bakalarka/sdkconfig -DIDF_PATH=/home/mithras/esp/esp-idf -DIDF_TARGET=esp32 -DPYTHON_DEPS_CHECKED=1 -DPYTHON=/home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python -DEXTRA_COMPONENT_DIRS=/home/mithras/esp/esp-idf/components/bootloader -DLEGACY_INCLUDE_COMMON_HEADERS= -GNinja /home/mithras/esp/esp-idf/components/bootloader/subproject && /usr/bin/cmake -E touch /home/mithras/Documents/bakalarka/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure + DESC = Performing configure step for 'bootloader' + restat = 1 + +############################################# +# Custom command for bootloader-prefix/src/bootloader-stamp/bootloader-build + +build bootloader-prefix/src/bootloader-stamp/bootloader-build bootloader/bootloader.elf bootloader/bootloader.bin bootloader/bootloader.map: CUSTOM_COMMAND bootloader-prefix/src/bootloader-stamp/bootloader-configure || esp-idf/partition_table/partition_table + COMMAND = cd /home/mithras/Documents/bakalarka/build/bootloader && /usr/bin/cmake --build . + DESC = Performing build step for 'bootloader' + restat = 1 + +############################################# +# Custom command for CMakeFiles/flash + +build CMakeFiles/flash: CUSTOM_COMMAND || _project_elf_src app bakalarka.elf bootloader esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/asio/libasio.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp32/__ldgen_output_esp32.project.ld esp-idf/esp32/esp32_linker_script esp-idf/esp32/libesp32.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/log/liblog.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl/liblvgl.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nghttp/libnghttp.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openssl/libopenssl.a esp-idf/partition_table/partition_table esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_project_binary + COMMAND = cd /home/mithras/esp/esp-idf/components/esptool_py && /usr/bin/cmake -D IDF_PATH="/home/mithras/esp/esp-idf" -D ESPTOOLPY="/home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/components/esptool_py/esptool/esptool.py --chip esp32" -D ESPTOOL_ARGS="--before=default_reset --after=hard_reset write_flash @flash_args" -D WORKING_DIRECTORY="/home/mithras/Documents/bakalarka/build" -P /home/mithras/esp/esp-idf/components/esptool_py/run_esptool.cmake + pool = console + +############################################# +# Custom command for CMakeFiles/confserver + +build CMakeFiles/confserver: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build && /home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/tools/kconfig_new/prepare_kconfig_files.py --env-file /home/mithras/Documents/bakalarka/build/config.env && /home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/tools/kconfig_new/confserver.py --env-file /home/mithras/Documents/bakalarka/build/config.env --kconfig /home/mithras/esp/esp-idf/Kconfig --sdkconfig-rename /home/mithras/esp/esp-idf/sdkconfig.rename --config /home/mithras/Documents/bakalarka/sdkconfig + pool = console + +############################################# +# Custom command for CMakeFiles/monitor + +build CMakeFiles/monitor: CUSTOM_COMMAND + COMMAND = cd /home/mithras/esp/esp-idf/components/esptool_py && /usr/bin/cmake -D IDF_PATH="/home/mithras/esp/esp-idf" -D IDF_MONITOR="/home/mithras/esp/esp-idf/tools/idf_monitor.py" -D ELF_FILE="bakalarka.elf" -D WORKING_DIRECTORY="/home/mithras/Documents/bakalarka/build" -P run_idf_monitor.cmake + pool = console + +############################################# +# Phony custom command for CMakeFiles/_project_elf_src + +build CMakeFiles/_project_elf_src: phony project_elf_src.c + +############################################# +# Custom command for CMakeFiles/size + +build CMakeFiles/size: CUSTOM_COMMAND bakalarka.elf || _project_elf_src bakalarka.elf esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/asio/libasio.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp32/__ldgen_output_esp32.project.ld esp-idf/esp32/esp32_linker_script esp-idf/esp32/libesp32.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/log/liblog.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl/liblvgl.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nghttp/libnghttp.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openssl/libopenssl.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a + COMMAND = cd /home/mithras/Documents/bakalarka/build && /home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/tools/idf_size.py /home/mithras/Documents/bakalarka/build/bakalarka.map + +############################################# +# Custom command for CMakeFiles/size-components + +build CMakeFiles/size-components: CUSTOM_COMMAND bakalarka.elf || _project_elf_src bakalarka.elf esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/asio/libasio.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp32/__ldgen_output_esp32.project.ld esp-idf/esp32/esp32_linker_script esp-idf/esp32/libesp32.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/log/liblog.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl/liblvgl.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nghttp/libnghttp.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openssl/libopenssl.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a + COMMAND = cd /home/mithras/Documents/bakalarka/build && /home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/tools/idf_size.py --archives /home/mithras/Documents/bakalarka/build/bakalarka.map + +############################################# +# Custom command for CMakeFiles/size-files + +build CMakeFiles/size-files: CUSTOM_COMMAND bakalarka.elf || _project_elf_src bakalarka.elf esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/asio/libasio.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp32/__ldgen_output_esp32.project.ld esp-idf/esp32/esp32_linker_script esp-idf/esp32/libesp32.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/log/liblog.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl/liblvgl.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nghttp/libnghttp.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openssl/libopenssl.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a + COMMAND = cd /home/mithras/Documents/bakalarka/build && /home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/tools/idf_size.py --files /home/mithras/Documents/bakalarka/build/bakalarka.map +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/Documents/bakalarka/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/install/strip: phony esp-idf/CMakeFiles/install/strip.util + +############################################# +# Utility command for install + +build esp-idf/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/install: phony esp-idf/CMakeFiles/install.util + +############################################# +# Utility command for install/local + +build esp-idf/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/install/local: phony esp-idf/CMakeFiles/install/local.util + +############################################# +# Utility command for list_install_components + +build esp-idf/list_install_components: phony + +############################################# +# Utility command for edit_cache + +build esp-idf/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/edit_cache: phony esp-idf/CMakeFiles/edit_cache.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/rebuild_cache: phony esp-idf/CMakeFiles/rebuild_cache.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/xtensa/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/xtensa/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/xtensa && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/xtensa/install/strip: phony esp-idf/xtensa/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/xtensa/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/xtensa && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/xtensa/edit_cache: phony esp-idf/xtensa/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_xtensa + + +############################################# +# Order-only phony target for __idf_xtensa + +build cmake_object_order_depends_target___idf_xtensa: phony || cmake_object_order_depends_target___idf_soc +build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/debug_helpers.c.obj: C_COMPILER____idf_xtensa /home/mithras/esp/esp-idf/components/xtensa/debug_helpers.c || cmake_object_order_depends_target___idf_xtensa + DEP_FILE = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/debug_helpers.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir + TARGET_COMPILE_PDB = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/__idf_xtensa.pdb + TARGET_PDB = esp-idf/xtensa/libxtensa.pdb +build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/debug_helpers_asm.S.obj: ASM_COMPILER____idf_xtensa /home/mithras/esp/esp-idf/components/xtensa/debug_helpers_asm.S || cmake_object_order_depends_target___idf_xtensa + DEP_FILE = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/debug_helpers_asm.S.obj.d + FLAGS = -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir + TARGET_COMPILE_PDB = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/__idf_xtensa.pdb + TARGET_PDB = esp-idf/xtensa/libxtensa.pdb +build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/expression_with_stack_xtensa_asm.S.obj: ASM_COMPILER____idf_xtensa /home/mithras/esp/esp-idf/components/xtensa/expression_with_stack_xtensa_asm.S || cmake_object_order_depends_target___idf_xtensa + DEP_FILE = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/expression_with_stack_xtensa_asm.S.obj.d + FLAGS = -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir + TARGET_COMPILE_PDB = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/__idf_xtensa.pdb + TARGET_PDB = esp-idf/xtensa/libxtensa.pdb +build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/expression_with_stack_xtensa.c.obj: C_COMPILER____idf_xtensa /home/mithras/esp/esp-idf/components/xtensa/expression_with_stack_xtensa.c || cmake_object_order_depends_target___idf_xtensa + DEP_FILE = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/expression_with_stack_xtensa.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir + TARGET_COMPILE_PDB = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/__idf_xtensa.pdb + TARGET_PDB = esp-idf/xtensa/libxtensa.pdb +build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj: C_COMPILER____idf_xtensa /home/mithras/esp/esp-idf/components/xtensa/eri.c || cmake_object_order_depends_target___idf_xtensa + DEP_FILE = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir + TARGET_COMPILE_PDB = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/__idf_xtensa.pdb + TARGET_PDB = esp-idf/xtensa/libxtensa.pdb +build esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/trax.c.obj: C_COMPILER____idf_xtensa /home/mithras/esp/esp-idf/components/xtensa/trax.c || cmake_object_order_depends_target___idf_xtensa + DEP_FILE = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/trax.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir + OBJECT_FILE_DIR = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir + TARGET_COMPILE_PDB = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/__idf_xtensa.pdb + TARGET_PDB = esp-idf/xtensa/libxtensa.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_xtensa + + +############################################# +# Link the static library esp-idf/xtensa/libxtensa.a + +build esp-idf/xtensa/libxtensa.a: CXX_STATIC_LIBRARY_LINKER____idf_xtensa esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/debug_helpers.c.obj esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/debug_helpers_asm.S.obj esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/expression_with_stack_xtensa_asm.S.obj esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/expression_with_stack_xtensa.c.obj esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/trax.c.obj || esp-idf/soc/libsoc.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/__idf_xtensa.pdb + TARGET_FILE = esp-idf/xtensa/libxtensa.a + TARGET_PDB = esp-idf/xtensa/libxtensa.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/xtensa/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/xtensa && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/xtensa/rebuild_cache: phony esp-idf/xtensa/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/xtensa/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/xtensa/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/xtensa/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/xtensa && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/xtensa/install/local: phony esp-idf/xtensa/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/xtensa/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/xtensa/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/xtensa && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/xtensa/install: phony esp-idf/xtensa/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_rom/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_rom/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_rom && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/esp_rom/install/strip: phony esp-idf/esp_rom/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_rom/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_rom && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/esp_rom/edit_cache: phony esp-idf/esp_rom/CMakeFiles/edit_cache.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_rom/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_rom && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/esp_rom/rebuild_cache: phony esp-idf/esp_rom/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_rom/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/esp_rom/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_rom/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_rom && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/esp_rom/install/local: phony esp-idf/esp_rom/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/esp_rom/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_rom/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_rom && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/esp_rom/install: phony esp-idf/esp_rom/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/soc/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/soc/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/soc && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/soc/install/strip: phony esp-idf/soc/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/soc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/soc && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/soc/edit_cache: phony esp-idf/soc/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_soc + + +############################################# +# Order-only phony target for __idf_soc + +build cmake_object_order_depends_target___idf_soc: phony || cmake_object_order_depends_target_soc_esp32 +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/memory_layout_utils.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/memory_layout_utils.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/memory_layout_utils.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/lldesc.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/lldesc.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/lldesc.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rmt_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/rmt_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rmt_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rtc_io_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/rtc_io_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rtc_io_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/dac_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/dac_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/dac_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/adc_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/adc_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/adc_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/spi_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal_iram.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/spi_hal_iram.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal_iram.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/spi_slave_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal_iram.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/spi_slave_hal_iram.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal_iram.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/touch_sensor_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/touch_sensor_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/touch_sensor_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/soc_include_legacy_warn.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/soc_include_legacy_warn.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/soc_include_legacy_warn.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/pcnt_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/pcnt_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/pcnt_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2s_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/i2s_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2s_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sigmadelta_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/sigmadelta_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sigmadelta_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/timer_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/timer_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/timer_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/ledc_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal_iram.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/ledc_hal_iram.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal_iram.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/i2c_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal_iram.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/i2c_hal_iram.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal_iram.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/gpio_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/gpio_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/gpio_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/uart_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal_iram.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/uart_hal_iram.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal_iram.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/spi_flash_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal_iram.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/spi_flash_hal_iram.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal_iram.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/compare_set.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/compare_set.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/compare_set.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/can_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/can_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/can_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/mcpwm_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/mcpwm_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/mcpwm_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sdio_slave_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/hal/sdio_slave_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sdio_slave_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/brownout_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/esp32/brownout_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/brownout_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/cpu_util.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/esp32/cpu_util.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/cpu_util.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_clk.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk_init.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_clk_init.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk_init.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_init.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_init.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_init.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_pm.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_pm.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_pm.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_sleep.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_sleep.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_sleep.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_time.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_time.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_time.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_wdt.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_wdt.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_wdt.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/sdio_slave_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/esp32/sdio_slave_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/sdio_slave_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/soc_memory_layout.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/esp32/soc_memory_layout.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/soc_memory_layout.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/touch_sensor_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/esp32/touch_sensor_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/touch_sensor_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb +build esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/emac_hal.c.obj: C_COMPILER____idf_soc /home/mithras/esp/esp-idf/components/soc/src/esp32/emac_hal.c || cmake_object_order_depends_target___idf_soc + DEP_FILE = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/emac_hal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + OBJECT_FILE_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_PDB = esp-idf/soc/libsoc.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_soc + + +############################################# +# Link the static library esp-idf/soc/libsoc.a + +build esp-idf/soc/libsoc.a: CXX_STATIC_LIBRARY_LINKER____idf_soc esp-idf/soc/CMakeFiles/__idf_soc.dir/src/memory_layout_utils.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/lldesc.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rmt_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rtc_io_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/dac_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/adc_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal_iram.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal_iram.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/touch_sensor_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/soc_include_legacy_warn.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/pcnt_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2s_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sigmadelta_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/timer_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal_iram.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal_iram.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/gpio_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal_iram.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal_iram.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/compare_set.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/can_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/mcpwm_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sdio_slave_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/brownout_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/cpu_util.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk_init.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_init.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_pm.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_sleep.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_time.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_wdt.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/sdio_slave_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/soc_memory_layout.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/touch_sensor_hal.c.obj esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/emac_hal.c.obj || esp-idf/soc/soc/esp32/libsoc_esp32.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/soc/CMakeFiles/__idf_soc.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/soc/CMakeFiles/__idf_soc.dir/__idf_soc.pdb + TARGET_FILE = esp-idf/soc/libsoc.a + TARGET_PDB = esp-idf/soc/libsoc.pdb + +############################################# +# Utility command for list_install_components + +build esp-idf/soc/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/soc/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/soc/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/soc && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/soc/install/local: phony esp-idf/soc/CMakeFiles/install/local.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/soc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/soc && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/soc/rebuild_cache: phony esp-idf/soc/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for install + +build esp-idf/soc/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/soc/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/soc && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/soc/install: phony esp-idf/soc/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/components/soc/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/soc/src/esp32/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/soc/src/esp32/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/soc/src/esp32 && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/soc/src/esp32/install/strip: phony esp-idf/soc/src/esp32/CMakeFiles/install/strip.util + +############################################# +# Utility command for install + +build esp-idf/soc/src/esp32/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/soc/src/esp32/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/soc/src/esp32 && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/soc/src/esp32/install: phony esp-idf/soc/src/esp32/CMakeFiles/install.util + +############################################# +# Utility command for install/local + +build esp-idf/soc/src/esp32/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/soc/src/esp32/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/soc/src/esp32 && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/soc/src/esp32/install/local: phony esp-idf/soc/src/esp32/CMakeFiles/install/local.util + +############################################# +# Utility command for list_install_components + +build esp-idf/soc/src/esp32/list_install_components: phony + +############################################# +# Utility command for edit_cache + +build esp-idf/soc/src/esp32/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/soc/src/esp32 && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/soc/src/esp32/edit_cache: phony esp-idf/soc/src/esp32/CMakeFiles/edit_cache.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/soc/src/esp32/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/soc/src/esp32 && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/soc/src/esp32/rebuild_cache: phony esp-idf/soc/src/esp32/CMakeFiles/rebuild_cache.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/components/soc/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/soc/soc/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/soc/soc/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/soc/soc && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/soc/soc/install/strip: phony esp-idf/soc/soc/CMakeFiles/install/strip.util + +############################################# +# Utility command for install + +build esp-idf/soc/soc/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/soc/soc/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/soc/soc && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/soc/soc/install: phony esp-idf/soc/soc/CMakeFiles/install.util + +############################################# +# Utility command for install/local + +build esp-idf/soc/soc/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/soc/soc/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/soc/soc && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/soc/soc/install/local: phony esp-idf/soc/soc/CMakeFiles/install/local.util + +############################################# +# Utility command for list_install_components + +build esp-idf/soc/soc/list_install_components: phony + +############################################# +# Utility command for edit_cache + +build esp-idf/soc/soc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/soc/soc && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/soc/soc/edit_cache: phony esp-idf/soc/soc/CMakeFiles/edit_cache.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/soc/soc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/soc/soc && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/soc/soc/rebuild_cache: phony esp-idf/soc/soc/CMakeFiles/rebuild_cache.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/components/soc/soc/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/soc/soc/esp32/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/soc/soc/esp32/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/soc/soc/esp32 && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/soc/soc/esp32/install/strip: phony esp-idf/soc/soc/esp32/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/soc/soc/esp32/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/soc/soc/esp32 && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/soc/soc/esp32/edit_cache: phony esp-idf/soc/soc/esp32/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target soc_esp32 + + +############################################# +# Order-only phony target for soc_esp32 + +build cmake_object_order_depends_target_soc_esp32: phony || cmake_object_order_depends_target___idf_esp_eth +build esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/adc_periph.c.obj: C_COMPILER__soc_esp32 /home/mithras/esp/esp-idf/components/soc/soc/esp32/adc_periph.c || cmake_object_order_depends_target_soc_esp32 + DEP_FILE = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/adc_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + OBJECT_FILE_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + TARGET_COMPILE_PDB = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/soc_esp32.pdb + TARGET_PDB = esp-idf/soc/soc/esp32/libsoc_esp32.pdb +build esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/dac_periph.c.obj: C_COMPILER__soc_esp32 /home/mithras/esp/esp-idf/components/soc/soc/esp32/dac_periph.c || cmake_object_order_depends_target_soc_esp32 + DEP_FILE = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/dac_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + OBJECT_FILE_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + TARGET_COMPILE_PDB = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/soc_esp32.pdb + TARGET_PDB = esp-idf/soc/soc/esp32/libsoc_esp32.pdb +build esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/gpio_periph.c.obj: C_COMPILER__soc_esp32 /home/mithras/esp/esp-idf/components/soc/soc/esp32/gpio_periph.c || cmake_object_order_depends_target_soc_esp32 + DEP_FILE = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/gpio_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + OBJECT_FILE_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + TARGET_COMPILE_PDB = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/soc_esp32.pdb + TARGET_PDB = esp-idf/soc/soc/esp32/libsoc_esp32.pdb +build esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_io_periph.c.obj: C_COMPILER__soc_esp32 /home/mithras/esp/esp-idf/components/soc/soc/esp32/rtc_io_periph.c || cmake_object_order_depends_target_soc_esp32 + DEP_FILE = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_io_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + OBJECT_FILE_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + TARGET_COMPILE_PDB = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/soc_esp32.pdb + TARGET_PDB = esp-idf/soc/soc/esp32/libsoc_esp32.pdb +build esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_periph.c.obj: C_COMPILER__soc_esp32 /home/mithras/esp/esp-idf/components/soc/soc/esp32/rtc_periph.c || cmake_object_order_depends_target_soc_esp32 + DEP_FILE = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + OBJECT_FILE_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + TARGET_COMPILE_PDB = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/soc_esp32.pdb + TARGET_PDB = esp-idf/soc/soc/esp32/libsoc_esp32.pdb +build esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdio_slave_periph.c.obj: C_COMPILER__soc_esp32 /home/mithras/esp/esp-idf/components/soc/soc/esp32/sdio_slave_periph.c || cmake_object_order_depends_target_soc_esp32 + DEP_FILE = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdio_slave_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + OBJECT_FILE_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + TARGET_COMPILE_PDB = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/soc_esp32.pdb + TARGET_PDB = esp-idf/soc/soc/esp32/libsoc_esp32.pdb +build esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdmmc_periph.c.obj: C_COMPILER__soc_esp32 /home/mithras/esp/esp-idf/components/soc/soc/esp32/sdmmc_periph.c || cmake_object_order_depends_target_soc_esp32 + DEP_FILE = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdmmc_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + OBJECT_FILE_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + TARGET_COMPILE_PDB = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/soc_esp32.pdb + TARGET_PDB = esp-idf/soc/soc/esp32/libsoc_esp32.pdb +build esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/interrupts.c.obj: C_COMPILER__soc_esp32 /home/mithras/esp/esp-idf/components/soc/soc/esp32/interrupts.c || cmake_object_order_depends_target_soc_esp32 + DEP_FILE = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/interrupts.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + OBJECT_FILE_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + TARGET_COMPILE_PDB = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/soc_esp32.pdb + TARGET_PDB = esp-idf/soc/soc/esp32/libsoc_esp32.pdb +build esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/spi_periph.c.obj: C_COMPILER__soc_esp32 /home/mithras/esp/esp-idf/components/soc/soc/esp32/spi_periph.c || cmake_object_order_depends_target_soc_esp32 + DEP_FILE = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/spi_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + OBJECT_FILE_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + TARGET_COMPILE_PDB = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/soc_esp32.pdb + TARGET_PDB = esp-idf/soc/soc/esp32/libsoc_esp32.pdb +build esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/ledc_periph.c.obj: C_COMPILER__soc_esp32 /home/mithras/esp/esp-idf/components/soc/soc/esp32/ledc_periph.c || cmake_object_order_depends_target_soc_esp32 + DEP_FILE = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/ledc_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + OBJECT_FILE_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + TARGET_COMPILE_PDB = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/soc_esp32.pdb + TARGET_PDB = esp-idf/soc/soc/esp32/libsoc_esp32.pdb +build esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2s_periph.c.obj: C_COMPILER__soc_esp32 /home/mithras/esp/esp-idf/components/soc/soc/esp32/i2s_periph.c || cmake_object_order_depends_target_soc_esp32 + DEP_FILE = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2s_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + OBJECT_FILE_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + TARGET_COMPILE_PDB = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/soc_esp32.pdb + TARGET_PDB = esp-idf/soc/soc/esp32/libsoc_esp32.pdb +build esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2c_periph.c.obj: C_COMPILER__soc_esp32 /home/mithras/esp/esp-idf/components/soc/soc/esp32/i2c_periph.c || cmake_object_order_depends_target_soc_esp32 + DEP_FILE = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2c_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + OBJECT_FILE_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + TARGET_COMPILE_PDB = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/soc_esp32.pdb + TARGET_PDB = esp-idf/soc/soc/esp32/libsoc_esp32.pdb +build esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/uart_periph.c.obj: C_COMPILER__soc_esp32 /home/mithras/esp/esp-idf/components/soc/soc/esp32/uart_periph.c || cmake_object_order_depends_target_soc_esp32 + DEP_FILE = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/uart_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + OBJECT_FILE_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + TARGET_COMPILE_PDB = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/soc_esp32.pdb + TARGET_PDB = esp-idf/soc/soc/esp32/libsoc_esp32.pdb +build esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/touch_sensor_periph.c.obj: C_COMPILER__soc_esp32 /home/mithras/esp/esp-idf/components/soc/soc/esp32/touch_sensor_periph.c || cmake_object_order_depends_target_soc_esp32 + DEP_FILE = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/touch_sensor_periph.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + OBJECT_FILE_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + TARGET_COMPILE_PDB = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/soc_esp32.pdb + TARGET_PDB = esp-idf/soc/soc/esp32/libsoc_esp32.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target soc_esp32 + + +############################################# +# Link the static library esp-idf/soc/soc/esp32/libsoc_esp32.a + +build esp-idf/soc/soc/esp32/libsoc_esp32.a: CXX_STATIC_LIBRARY_LINKER__soc_esp32 esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/adc_periph.c.obj esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/dac_periph.c.obj esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/gpio_periph.c.obj esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_io_periph.c.obj esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_periph.c.obj esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdio_slave_periph.c.obj esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdmmc_periph.c.obj esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/interrupts.c.obj esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/spi_periph.c.obj esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/ledc_periph.c.obj esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2s_periph.c.obj esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2c_periph.c.obj esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/uart_periph.c.obj esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/touch_sensor_periph.c.obj || esp-idf/esp_eth/libesp_eth.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/soc_esp32.pdb + TARGET_FILE = esp-idf/soc/soc/esp32/libsoc_esp32.a + TARGET_PDB = esp-idf/soc/soc/esp32/libsoc_esp32.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/soc/soc/esp32/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/soc/soc/esp32 && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/soc/soc/esp32/rebuild_cache: phony esp-idf/soc/soc/esp32/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/soc/soc/esp32/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/soc/soc/esp32/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/soc/soc/esp32/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/soc/soc/esp32 && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/soc/soc/esp32/install/local: phony esp-idf/soc/soc/esp32/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/soc/soc/esp32/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/soc/soc/esp32/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/soc/soc/esp32 && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/soc/soc/esp32/install: phony esp-idf/soc/soc/esp32/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_eth/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_eth/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_eth && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/esp_eth/install/strip: phony esp-idf/esp_eth/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_eth/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_eth && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/esp_eth/edit_cache: phony esp-idf/esp_eth/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_eth + + +############################################# +# Order-only phony target for __idf_esp_eth + +build cmake_object_order_depends_target___idf_esp_eth: phony || cmake_object_order_depends_target___idf_tcpip_adapter +build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj: C_COMPILER____idf_esp_eth /home/mithras/esp/esp-idf/components/esp_eth/src/esp_eth.c || cmake_object_order_depends_target___idf_esp_eth + DEP_FILE = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -std=gnu11 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir + OBJECT_FILE_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/__idf_esp_eth.pdb + TARGET_PDB = esp-idf/esp_eth/libesp_eth.pdb +build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy.c.obj: C_COMPILER____idf_esp_eth /home/mithras/esp/esp-idf/components/esp_eth/src/esp_eth_phy.c || cmake_object_order_depends_target___idf_esp_eth + DEP_FILE = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir + OBJECT_FILE_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/__idf_esp_eth.pdb + TARGET_PDB = esp-idf/esp_eth/libesp_eth.pdb +build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj: C_COMPILER____idf_esp_eth /home/mithras/esp/esp-idf/components/esp_eth/src/esp_eth_netif_glue.c || cmake_object_order_depends_target___idf_esp_eth + DEP_FILE = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir + OBJECT_FILE_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/__idf_esp_eth.pdb + TARGET_PDB = esp-idf/esp_eth/libesp_eth.pdb +build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_mac_esp32.c.obj: C_COMPILER____idf_esp_eth /home/mithras/esp/esp-idf/components/esp_eth/src/esp_eth_mac_esp32.c || cmake_object_order_depends_target___idf_esp_eth + DEP_FILE = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_mac_esp32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir + OBJECT_FILE_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/__idf_esp_eth.pdb + TARGET_PDB = esp-idf/esp_eth/libesp_eth.pdb +build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_dp83848.c.obj: C_COMPILER____idf_esp_eth /home/mithras/esp/esp-idf/components/esp_eth/src/esp_eth_phy_dp83848.c || cmake_object_order_depends_target___idf_esp_eth + DEP_FILE = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_dp83848.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir + OBJECT_FILE_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/__idf_esp_eth.pdb + TARGET_PDB = esp-idf/esp_eth/libesp_eth.pdb +build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ip101.c.obj: C_COMPILER____idf_esp_eth /home/mithras/esp/esp-idf/components/esp_eth/src/esp_eth_phy_ip101.c || cmake_object_order_depends_target___idf_esp_eth + DEP_FILE = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ip101.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir + OBJECT_FILE_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/__idf_esp_eth.pdb + TARGET_PDB = esp-idf/esp_eth/libesp_eth.pdb +build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_lan8720.c.obj: C_COMPILER____idf_esp_eth /home/mithras/esp/esp-idf/components/esp_eth/src/esp_eth_phy_lan8720.c || cmake_object_order_depends_target___idf_esp_eth + DEP_FILE = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_lan8720.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir + OBJECT_FILE_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/__idf_esp_eth.pdb + TARGET_PDB = esp-idf/esp_eth/libesp_eth.pdb +build esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_rtl8201.c.obj: C_COMPILER____idf_esp_eth /home/mithras/esp/esp-idf/components/esp_eth/src/esp_eth_phy_rtl8201.c || cmake_object_order_depends_target___idf_esp_eth + DEP_FILE = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_rtl8201.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir + OBJECT_FILE_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/__idf_esp_eth.pdb + TARGET_PDB = esp-idf/esp_eth/libesp_eth.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_eth + + +############################################# +# Link the static library esp-idf/esp_eth/libesp_eth.a + +build esp-idf/esp_eth/libesp_eth.a: CXX_STATIC_LIBRARY_LINKER____idf_esp_eth esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy.c.obj esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_mac_esp32.c.obj esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_dp83848.c.obj esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ip101.c.obj esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_lan8720.c.obj esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_rtl8201.c.obj || esp-idf/tcpip_adapter/libtcpip_adapter.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/__idf_esp_eth.pdb + TARGET_FILE = esp-idf/esp_eth/libesp_eth.a + TARGET_PDB = esp-idf/esp_eth/libesp_eth.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_eth/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_eth && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/esp_eth/rebuild_cache: phony esp-idf/esp_eth/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_eth/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/esp_eth/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_eth/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_eth && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/esp_eth/install/local: phony esp-idf/esp_eth/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/esp_eth/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_eth/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_eth && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/esp_eth/install: phony esp-idf/esp_eth/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/tcpip_adapter/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/tcpip_adapter/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/tcpip_adapter && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/tcpip_adapter/install/strip: phony esp-idf/tcpip_adapter/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/tcpip_adapter/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/tcpip_adapter && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/tcpip_adapter/edit_cache: phony esp-idf/tcpip_adapter/CMakeFiles/edit_cache.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/tcpip_adapter/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/tcpip_adapter && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/tcpip_adapter/rebuild_cache: phony esp-idf/tcpip_adapter/CMakeFiles/rebuild_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_tcpip_adapter + + +############################################# +# Order-only phony target for __idf_tcpip_adapter + +build cmake_object_order_depends_target___idf_tcpip_adapter: phony || cmake_object_order_depends_target___idf_esp_netif +build esp-idf/tcpip_adapter/CMakeFiles/__idf_tcpip_adapter.dir/tcpip_adapter_compat.c.obj: C_COMPILER____idf_tcpip_adapter /home/mithras/esp/esp-idf/components/tcpip_adapter/tcpip_adapter_compat.c || cmake_object_order_depends_target___idf_tcpip_adapter + DEP_FILE = esp-idf/tcpip_adapter/CMakeFiles/__idf_tcpip_adapter.dir/tcpip_adapter_compat.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/tcpip_adapter/CMakeFiles/__idf_tcpip_adapter.dir + OBJECT_FILE_DIR = esp-idf/tcpip_adapter/CMakeFiles/__idf_tcpip_adapter.dir + TARGET_COMPILE_PDB = esp-idf/tcpip_adapter/CMakeFiles/__idf_tcpip_adapter.dir/__idf_tcpip_adapter.pdb + TARGET_PDB = esp-idf/tcpip_adapter/libtcpip_adapter.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_tcpip_adapter + + +############################################# +# Link the static library esp-idf/tcpip_adapter/libtcpip_adapter.a + +build esp-idf/tcpip_adapter/libtcpip_adapter.a: CXX_STATIC_LIBRARY_LINKER____idf_tcpip_adapter esp-idf/tcpip_adapter/CMakeFiles/__idf_tcpip_adapter.dir/tcpip_adapter_compat.c.obj || esp-idf/esp_netif/libesp_netif.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/tcpip_adapter/CMakeFiles/__idf_tcpip_adapter.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/tcpip_adapter/CMakeFiles/__idf_tcpip_adapter.dir/__idf_tcpip_adapter.pdb + TARGET_FILE = esp-idf/tcpip_adapter/libtcpip_adapter.a + TARGET_PDB = esp-idf/tcpip_adapter/libtcpip_adapter.pdb + +############################################# +# Utility command for list_install_components + +build esp-idf/tcpip_adapter/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/tcpip_adapter/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/tcpip_adapter/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/tcpip_adapter && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/tcpip_adapter/install/local: phony esp-idf/tcpip_adapter/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/tcpip_adapter/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/tcpip_adapter/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/tcpip_adapter && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/tcpip_adapter/install: phony esp-idf/tcpip_adapter/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_netif/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_netif/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_netif && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/esp_netif/install/strip: phony esp-idf/esp_netif/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_netif/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_netif && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/esp_netif/edit_cache: phony esp-idf/esp_netif/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_netif + + +############################################# +# Order-only phony target for __idf_esp_netif + +build cmake_object_order_depends_target___idf_esp_netif: phony || cmake_object_order_depends_target___idf_esp_event +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj: C_COMPILER____idf_esp_netif /home/mithras/esp/esp-idf/components/esp_netif/esp_netif_handlers.c || cmake_object_order_depends_target___idf_esp_netif + DEP_FILE = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_netif/lwip -I/home/mithras/esp/esp-idf/components/esp_netif/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir + OBJECT_FILE_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir + TARGET_COMPILE_PDB = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/__idf_esp_netif.pdb + TARGET_PDB = esp-idf/esp_netif/libesp_netif.pdb +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj: C_COMPILER____idf_esp_netif /home/mithras/esp/esp-idf/components/esp_netif/esp_netif_objects.c || cmake_object_order_depends_target___idf_esp_netif + DEP_FILE = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_netif/lwip -I/home/mithras/esp/esp-idf/components/esp_netif/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir + OBJECT_FILE_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir + TARGET_COMPILE_PDB = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/__idf_esp_netif.pdb + TARGET_PDB = esp-idf/esp_netif/libesp_netif.pdb +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj: C_COMPILER____idf_esp_netif /home/mithras/esp/esp-idf/components/esp_netif/esp_netif_defaults.c || cmake_object_order_depends_target___idf_esp_netif + DEP_FILE = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_netif/lwip -I/home/mithras/esp/esp-idf/components/esp_netif/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir + OBJECT_FILE_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir + TARGET_COMPILE_PDB = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/__idf_esp_netif.pdb + TARGET_PDB = esp-idf/esp_netif/libesp_netif.pdb +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj: C_COMPILER____idf_esp_netif /home/mithras/esp/esp-idf/components/esp_netif/lwip/esp_netif_lwip.c || cmake_object_order_depends_target___idf_esp_netif + DEP_FILE = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_netif/lwip -I/home/mithras/esp/esp-idf/components/esp_netif/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir + OBJECT_FILE_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip + TARGET_COMPILE_PDB = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/__idf_esp_netif.pdb + TARGET_PDB = esp-idf/esp_netif/libesp_netif.pdb +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_ppp.c.obj: C_COMPILER____idf_esp_netif /home/mithras/esp/esp-idf/components/esp_netif/lwip/esp_netif_lwip_ppp.c || cmake_object_order_depends_target___idf_esp_netif + DEP_FILE = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_ppp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_netif/lwip -I/home/mithras/esp/esp-idf/components/esp_netif/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir + OBJECT_FILE_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip + TARGET_COMPILE_PDB = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/__idf_esp_netif.pdb + TARGET_PDB = esp-idf/esp_netif/libesp_netif.pdb +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/loopback/esp_netif_loopback.c.obj: C_COMPILER____idf_esp_netif /home/mithras/esp/esp-idf/components/esp_netif/loopback/esp_netif_loopback.c || cmake_object_order_depends_target___idf_esp_netif + DEP_FILE = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/loopback/esp_netif_loopback.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_netif/lwip -I/home/mithras/esp/esp-idf/components/esp_netif/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir + OBJECT_FILE_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/loopback + TARGET_COMPILE_PDB = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/__idf_esp_netif.pdb + TARGET_PDB = esp-idf/esp_netif/libesp_netif.pdb +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj: C_COMPILER____idf_esp_netif /home/mithras/esp/esp-idf/components/esp_netif/lwip/esp_netif_lwip_defaults.c || cmake_object_order_depends_target___idf_esp_netif + DEP_FILE = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_netif/lwip -I/home/mithras/esp/esp-idf/components/esp_netif/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir + OBJECT_FILE_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip + TARGET_COMPILE_PDB = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/__idf_esp_netif.pdb + TARGET_PDB = esp-idf/esp_netif/libesp_netif.pdb +build esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sta_list.c.obj: C_COMPILER____idf_esp_netif /home/mithras/esp/esp-idf/components/esp_netif/lwip/esp_netif_sta_list.c || cmake_object_order_depends_target___idf_esp_netif + DEP_FILE = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sta_list.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_netif/lwip -I/home/mithras/esp/esp-idf/components/esp_netif/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir + OBJECT_FILE_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip + TARGET_COMPILE_PDB = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/__idf_esp_netif.pdb + TARGET_PDB = esp-idf/esp_netif/libesp_netif.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_netif + + +############################################# +# Link the static library esp-idf/esp_netif/libesp_netif.a + +build esp-idf/esp_netif/libesp_netif.a: CXX_STATIC_LIBRARY_LINKER____idf_esp_netif esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_ppp.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/loopback/esp_netif_loopback.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sta_list.c.obj || esp-idf/esp_event/libesp_event.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/__idf_esp_netif.pdb + TARGET_FILE = esp-idf/esp_netif/libesp_netif.a + TARGET_PDB = esp-idf/esp_netif/libesp_netif.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_netif/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_netif && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/esp_netif/rebuild_cache: phony esp-idf/esp_netif/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_netif/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/esp_netif/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_netif/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_netif && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/esp_netif/install/local: phony esp-idf/esp_netif/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/esp_netif/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_netif/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_netif && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/esp_netif/install: phony esp-idf/esp_netif/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_event/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_event/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_event && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/esp_event/install/strip: phony esp-idf/esp_event/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_event/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_event && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/esp_event/edit_cache: phony esp-idf/esp_event/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_event + + +############################################# +# Order-only phony target for __idf_esp_event + +build cmake_object_order_depends_target___idf_esp_event: phony || cmake_object_order_depends_target_mbedx509 +build esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj: C_COMPILER____idf_esp_event /home/mithras/esp/esp-idf/components/esp_event/default_event_loop.c || cmake_object_order_depends_target___idf_esp_event + DEP_FILE = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_event/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir + OBJECT_FILE_DIR = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir + TARGET_COMPILE_PDB = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/__idf_esp_event.pdb + TARGET_PDB = esp-idf/esp_event/libesp_event.pdb +build esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj: C_COMPILER____idf_esp_event /home/mithras/esp/esp-idf/components/esp_event/esp_event.c || cmake_object_order_depends_target___idf_esp_event + DEP_FILE = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_event/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir + OBJECT_FILE_DIR = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir + TARGET_COMPILE_PDB = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/__idf_esp_event.pdb + TARGET_PDB = esp-idf/esp_event/libesp_event.pdb +build esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj: C_COMPILER____idf_esp_event /home/mithras/esp/esp-idf/components/esp_event/esp_event_private.c || cmake_object_order_depends_target___idf_esp_event + DEP_FILE = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_event/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir + OBJECT_FILE_DIR = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir + TARGET_COMPILE_PDB = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/__idf_esp_event.pdb + TARGET_PDB = esp-idf/esp_event/libesp_event.pdb +build esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/event_loop_legacy.c.obj: C_COMPILER____idf_esp_event /home/mithras/esp/esp-idf/components/esp_event/event_loop_legacy.c || cmake_object_order_depends_target___idf_esp_event + DEP_FILE = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/event_loop_legacy.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_event/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir + OBJECT_FILE_DIR = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir + TARGET_COMPILE_PDB = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/__idf_esp_event.pdb + TARGET_PDB = esp-idf/esp_event/libesp_event.pdb +build esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/event_send.c.obj: C_COMPILER____idf_esp_event /home/mithras/esp/esp-idf/components/esp_event/event_send.c || cmake_object_order_depends_target___idf_esp_event + DEP_FILE = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/event_send.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_event/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir + OBJECT_FILE_DIR = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir + TARGET_COMPILE_PDB = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/__idf_esp_event.pdb + TARGET_PDB = esp-idf/esp_event/libesp_event.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_event + + +############################################# +# Link the static library esp-idf/esp_event/libesp_event.a + +build esp-idf/esp_event/libesp_event.a: CXX_STATIC_LIBRARY_LINKER____idf_esp_event esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/event_loop_legacy.c.obj esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/event_send.c.obj || esp-idf/mbedtls/mbedtls/library/libmbedx509.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/__idf_esp_event.pdb + TARGET_FILE = esp-idf/esp_event/libesp_event.a + TARGET_PDB = esp-idf/esp_event/libesp_event.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_event/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_event && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/esp_event/rebuild_cache: phony esp-idf/esp_event/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_event/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/esp_event/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_event/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_event && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/esp_event/install/local: phony esp-idf/esp_event/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/esp_event/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_event/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_event && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/esp_event/install: phony esp-idf/esp_event/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/mbedtls && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/mbedtls/install/strip: phony esp-idf/mbedtls/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/mbedtls && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/mbedtls/edit_cache: phony esp-idf/mbedtls/CMakeFiles/edit_cache.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/mbedtls && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/mbedtls/rebuild_cache: phony esp-idf/mbedtls/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/mbedtls && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/mbedtls/install/local: phony esp-idf/mbedtls/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/mbedtls/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/mbedtls && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/mbedtls/install: phony esp-idf/mbedtls/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/components/mbedtls/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/mbedtls/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/mbedtls/mbedtls/install/strip: phony esp-idf/mbedtls/mbedtls/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/mbedtls/mbedtls/edit_cache: phony esp-idf/mbedtls/mbedtls/CMakeFiles/edit_cache.util + +############################################# +# Utility command for apidoc + +build esp-idf/mbedtls/mbedtls/apidoc: phony esp-idf/mbedtls/mbedtls/CMakeFiles/apidoc + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/mbedtls/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/mbedtls/mbedtls/rebuild_cache: phony esp-idf/mbedtls/mbedtls/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/mbedtls/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/mbedtls/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/mbedtls/mbedtls/install/local: phony esp-idf/mbedtls/mbedtls/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/mbedtls/mbedtls/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/mbedtls/mbedtls/install: phony esp-idf/mbedtls/mbedtls/CMakeFiles/install.util + +############################################# +# Custom command for esp-idf/mbedtls/mbedtls/CMakeFiles/apidoc + +build esp-idf/mbedtls/mbedtls/CMakeFiles/apidoc: CUSTOM_COMMAND + COMMAND = cd /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/doxygen && doxygen mbedtls.doxyfile +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/library/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/library && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/mbedtls/mbedtls/library/install/strip: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/strip.util + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/library/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/library && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/mbedtls/mbedtls/library/install/local: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/local.util + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/mbedtls/library/list_install_components: phony + +############################################# +# Utility command for install + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/library/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/library && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/mbedtls/mbedtls/library/install: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/install.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target mbedx509 + + +############################################# +# Order-only phony target for mbedx509 + +build cmake_object_order_depends_target_mbedx509: phony || cmake_object_order_depends_target_mbedcrypto +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/certs.c.obj: C_COMPILER__mbedx509 /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/certs.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/certs.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/mbedx509.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedx509.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs11.c.obj: C_COMPILER__mbedx509 /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/pkcs11.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs11.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/mbedx509.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedx509.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj: C_COMPILER__mbedx509 /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/x509.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/mbedx509.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedx509.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj: C_COMPILER__mbedx509 /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/x509_create.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/mbedx509.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedx509.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj: C_COMPILER__mbedx509 /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/x509_crl.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/mbedx509.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedx509.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj: C_COMPILER__mbedx509 /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/x509_crt.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/mbedx509.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedx509.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj: C_COMPILER__mbedx509 /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/x509_csr.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/mbedx509.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedx509.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj: C_COMPILER__mbedx509 /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/x509write_crt.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/mbedx509.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedx509.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj: C_COMPILER__mbedx509 /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/x509write_csr.c || cmake_object_order_depends_target_mbedx509 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/mbedx509.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedx509.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target mbedx509 + + +############################################# +# Link the static library esp-idf/mbedtls/mbedtls/library/libmbedx509.a + +build esp-idf/mbedtls/mbedtls/library/libmbedx509.a: CXX_STATIC_LIBRARY_LINKER__mbedx509 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/certs.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs11.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj || esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/mbedx509.pdb + TARGET_FILE = esp-idf/mbedtls/mbedtls/library/libmbedx509.a + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedx509.pdb + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/library && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/mbedtls/mbedtls/library/edit_cache: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target mbedcrypto + + +############################################# +# Order-only phony target for mbedcrypto + +build cmake_object_order_depends_target_mbedcrypto: phony || cmake_object_order_depends_target_mbedtls +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/aes.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/aesni.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/arc4.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/arc4.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/arc4.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/aria.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/asn1parse.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/asn1write.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/base64.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/bignum.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/blowfish.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/blowfish.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/blowfish.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/camellia.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ccm.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/chacha20.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/chachapoly.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/cipher.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/cipher_wrap.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/cmac.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ctr_drbg.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/des.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/dhm.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ecdh.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ecdsa.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ecjpake.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ecp.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ecp_curves.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/entropy.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/entropy_poll.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/error.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/gcm.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/havege.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/havege.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/havege.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/hkdf.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/hmac_drbg.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/md.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md2.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/md2.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md2.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md4.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/md4.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md4.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/md5.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md_wrap.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/md_wrap.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md_wrap.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/memory_buffer_alloc.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/nist_kw.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/oid.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/padlock.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/pem.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/pk.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/pk_wrap.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/pkcs12.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/pkcs5.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/pkparse.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/pkwrite.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/platform.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/platform_util.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/poly1305.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ripemd160.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/rsa.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_internal.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/rsa_internal.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_internal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/sha1.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/sha256.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/sha512.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/threading.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/timing.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/version.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/version_features.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/xtea.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/xtea.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/xtea.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_hardware.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/port/esp_hardware.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_hardware.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_mem.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/port/esp_mem.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_mem.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_sha.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/port/esp_sha.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_sha.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_sha1.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/port/esp_sha1.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_sha1.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_sha256.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/port/esp_sha256.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_sha256.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_sha512.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/port/esp_sha512.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_sha512.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_timing.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/port/esp_timing.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_timing.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/esp_bignum.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/port/esp32/esp_bignum.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/esp_bignum.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32 + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/aes.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/port/esp32/aes.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/aes.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32 + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/sha.c.obj: C_COMPILER__mbedcrypto /home/mithras/esp/esp-idf/components/mbedtls/port/esp32/sha.c || cmake_object_order_depends_target_mbedcrypto + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/sha.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32 + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target mbedcrypto + + +############################################# +# Link the static library esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a + +build esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a: CXX_STATIC_LIBRARY_LINKER__mbedcrypto esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/arc4.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/blowfish.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/havege.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md2.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md4.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md_wrap.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_internal.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/xtea.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_hardware.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_mem.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_sha.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_sha1.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_sha256.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_sha512.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_timing.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/esp_bignum.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/aes.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/sha.c.obj || esp-idf/mbedtls/mbedtls/library/libmbedtls.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/mbedcrypto.pdb + TARGET_FILE = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedcrypto.pdb +# ============================================================================= +# Object build statements for STATIC_LIBRARY target mbedtls + + +############################################# +# Order-only phony target for mbedtls + +build cmake_object_order_depends_target_mbedtls: phony || cmake_object_order_depends_target___idf_wpa_supplicant +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj: C_COMPILER__mbedtls /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/debug.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mbedtls.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedtls.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj: C_COMPILER__mbedtls /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ssl_cache.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mbedtls.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedtls.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj: C_COMPILER__mbedtls /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ssl_ciphersuites.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mbedtls.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedtls.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cli.c.obj: C_COMPILER__mbedtls /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ssl_cli.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cli.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mbedtls.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedtls.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj: C_COMPILER__mbedtls /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ssl_cookie.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mbedtls.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedtls.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_srv.c.obj: C_COMPILER__mbedtls /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ssl_srv.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_srv.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mbedtls.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedtls.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj: C_COMPILER__mbedtls /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ssl_ticket.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mbedtls.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedtls.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj: C_COMPILER__mbedtls /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ssl_tls.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mbedtls.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedtls.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/__/__/port/mbedtls_debug.c.obj: C_COMPILER__mbedtls /home/mithras/esp/esp-idf/components/mbedtls/port/mbedtls_debug.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/__/__/port/mbedtls_debug.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/__/__/port + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mbedtls.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedtls.pdb +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/__/__/port/net_sockets.c.obj: C_COMPILER__mbedtls /home/mithras/esp/esp-idf/components/mbedtls/port/net_sockets.c || cmake_object_order_depends_target_mbedtls + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/__/__/port/net_sockets.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir + OBJECT_FILE_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/__/__/port + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mbedtls.pdb + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedtls.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target mbedtls + + +############################################# +# Link the static library esp-idf/mbedtls/mbedtls/library/libmbedtls.a + +build esp-idf/mbedtls/mbedtls/library/libmbedtls.a: CXX_STATIC_LIBRARY_LINKER__mbedtls esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cli.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_srv.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/__/__/port/mbedtls_debug.c.obj esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/__/__/port/net_sockets.c.obj || esp-idf/wpa_supplicant/libwpa_supplicant.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mbedtls.pdb + TARGET_FILE = esp-idf/mbedtls/mbedtls/library/libmbedtls.a + TARGET_PDB = esp-idf/mbedtls/mbedtls/library/libmbedtls.pdb + +############################################# +# Utility command for lib + +build esp-idf/mbedtls/mbedtls/library/lib: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib esp-idf/xtensa/libxtensa.a + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/library && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/mbedtls/mbedtls/library/rebuild_cache: phony esp-idf/mbedtls/mbedtls/library/CMakeFiles/rebuild_cache.util + +############################################# +# Phony custom command for esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib + +build esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib: phony esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a || esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp32/esp32_linker_script esp-idf/esp32/libesp32.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/nghttp/libnghttp.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/perfmon/libperfmon.a esp-idf/pthread/libpthread.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/ulp/libulp.a esp-idf/vfs/libvfs.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/include/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/include && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/mbedtls/mbedtls/include/install/strip: phony esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/strip.util + +############################################# +# Utility command for install + +build esp-idf/mbedtls/mbedtls/include/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/include/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/include && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/mbedtls/mbedtls/include/install: phony esp-idf/mbedtls/mbedtls/include/CMakeFiles/install.util + +############################################# +# Utility command for install/local + +build esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mbedtls/mbedtls/include/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/include && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/mbedtls/mbedtls/include/install/local: phony esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/local.util + +############################################# +# Utility command for list_install_components + +build esp-idf/mbedtls/mbedtls/include/list_install_components: phony + +############################################# +# Utility command for edit_cache + +build esp-idf/mbedtls/mbedtls/include/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/include && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/mbedtls/mbedtls/include/edit_cache: phony esp-idf/mbedtls/mbedtls/include/CMakeFiles/edit_cache.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mbedtls/mbedtls/include/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/include && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/mbedtls/mbedtls/include/rebuild_cache: phony esp-idf/mbedtls/mbedtls/include/CMakeFiles/rebuild_cache.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/wpa_supplicant/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/wpa_supplicant/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/wpa_supplicant && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/wpa_supplicant/install/strip: phony esp-idf/wpa_supplicant/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/wpa_supplicant/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/wpa_supplicant && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/wpa_supplicant/edit_cache: phony esp-idf/wpa_supplicant/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_wpa_supplicant + + +############################################# +# Order-only phony target for __idf_wpa_supplicant + +build cmake_object_order_depends_target___idf_wpa_supplicant: phony || cmake_object_order_depends_target___idf_efuse +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/port/os_xtensa.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/ap/ap_config.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/ap/ieee802_1x.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/ap/wpa_auth.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/ap/wpa_auth_ie.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/common/sae.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/common/wpa_common.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-cbc.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/aes-cbc.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-cbc.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/aes-ccm.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal-dec.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/aes-internal-dec.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal-dec.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal-enc.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/aes-internal-enc.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal-enc.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/aes-internal.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-omac1.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/aes-omac1.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-omac1.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/aes-unwrap.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/aes-wrap.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/bignum.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/bignum.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/bignum.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/ccmp.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_mbedtls.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/crypto_mbedtls.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_mbedtls.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/crypto_ops.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-cipher.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/crypto_internal-cipher.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-cipher.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-modexp.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/crypto_internal-modexp.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-modexp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-rsa.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/crypto_internal-rsa.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-rsa.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/crypto_internal.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/des-internal.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/dh_group5.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/dh_groups.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/md4-internal.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md5-internal.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/md5-internal.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md5-internal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md5.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/md5.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md5.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/ms_funcs.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/rc4.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-internal.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/sha1-internal.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-internal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-pbkdf2.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/sha1-pbkdf2.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-pbkdf2.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/sha1.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-internal.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/sha256-internal.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-internal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/sha256.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/eap_peer/chap.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/eap_peer/eap.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/eap_peer/eap_common.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/eap_peer/eap_mschapv2.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/eap_peer/eap_peap.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/eap_peer/eap_peap_common.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/eap_peer/eap_tls.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/eap_peer/eap_tls_common.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/eap_peer/eap_ttls.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/eap_peer/mschapv2.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_hostap.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/esp_supplicant/esp_hostap.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_hostap.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa2.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/esp_supplicant/esp_wpa2.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa2.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa_main.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/esp_supplicant/esp_wpa_main.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa_main.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpas_glue.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/esp_supplicant/esp_wpas_glue.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpas_glue.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wps.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/esp_supplicant/esp_wps.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wps.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa3.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/esp_supplicant/esp_wpa3.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa3.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/rsn_supp/pmksa_cache.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/rsn_supp/wpa.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/rsn_supp/wpa_ie.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/asn1.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/asn1.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/asn1.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/bignum.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/bignum.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/bignum.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs1.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/pkcs1.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs1.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs5.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/pkcs5.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs5.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs8.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/pkcs8.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs8.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/rsa.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/rsa.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/rsa.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tls_internal.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/tls_internal.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tls_internal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/tlsv1_client.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client_read.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/tlsv1_client_read.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client_read.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client_write.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/tlsv1_client_write.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client_write.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_common.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/tlsv1_common.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_common.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_cred.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/tlsv1_cred.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_cred.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_record.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/tlsv1_record.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_record.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/tlsv1_server.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server_read.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/tlsv1_server_read.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server_read.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server_write.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/tlsv1_server_write.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server_write.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/x509v3.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/x509v3.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/x509v3.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/utils/base64.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/utils/common.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/utils/ext_password.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/utils/uuid.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/utils/wpabuf.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/utils/wpa_debug.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/wps/wps.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/wps/wps_attr_build.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/wps/wps_attr_parse.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/wps/wps_attr_process.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/wps/wps_common.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/wps/wps_dev_attr.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/wps/wps_enrollee.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_registrar.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/wps/wps_registrar.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_registrar.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb +build esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_validate.c.obj: C_COMPILER____idf_wpa_supplicant /home/mithras/esp/esp-idf/components/wpa_supplicant/src/wps/wps_validate.c || cmake_object_order_depends_target___idf_wpa_supplicant + DEFINES = -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ + DEP_FILE = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_validate.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-strict-aliasing + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + OBJECT_FILE_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_wpa_supplicant + + +############################################# +# Link the static library esp-idf/wpa_supplicant/libwpa_supplicant.a + +build esp-idf/wpa_supplicant/libwpa_supplicant.a: CXX_STATIC_LIBRARY_LINKER____idf_wpa_supplicant esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-cbc.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal-dec.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal-enc.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-omac1.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/bignum.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_mbedtls.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-cipher.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-modexp.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-rsa.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md5-internal.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md5.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-internal.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-pbkdf2.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-internal.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_hostap.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa2.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa_main.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpas_glue.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wps.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa3.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/asn1.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/bignum.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs1.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs5.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs8.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/rsa.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tls_internal.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client_read.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client_write.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_cred.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_record.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server_read.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server_write.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/x509v3.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_registrar.c.obj esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_validate.c.obj || esp-idf/efuse/libefuse.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/__idf_wpa_supplicant.pdb + TARGET_FILE = esp-idf/wpa_supplicant/libwpa_supplicant.a + TARGET_PDB = esp-idf/wpa_supplicant/libwpa_supplicant.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/wpa_supplicant/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/wpa_supplicant && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/wpa_supplicant/rebuild_cache: phony esp-idf/wpa_supplicant/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/wpa_supplicant/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/wpa_supplicant/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/wpa_supplicant/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/wpa_supplicant && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/wpa_supplicant/install/local: phony esp-idf/wpa_supplicant/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/wpa_supplicant/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/wpa_supplicant/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/wpa_supplicant && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/wpa_supplicant/install: phony esp-idf/wpa_supplicant/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/local + +build esp-idf/efuse/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/efuse/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/efuse && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/efuse/install/local: phony esp-idf/efuse/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/efuse/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/efuse/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/efuse && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/efuse/install: phony esp-idf/efuse/CMakeFiles/install.util + +############################################# +# Utility command for install/strip + +build esp-idf/efuse/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/efuse/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/efuse && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/efuse/install/strip: phony esp-idf/efuse/CMakeFiles/install/strip.util + +############################################# +# Utility command for efuse_common_table + +build esp-idf/efuse/efuse_common_table: phony esp-idf/efuse/CMakeFiles/efuse_common_table +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_efuse + + +############################################# +# Order-only phony target for __idf_efuse + +build cmake_object_order_depends_target___idf_efuse: phony || cmake_object_order_depends_target___idf_bootloader_support +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj: C_COMPILER____idf_efuse /home/mithras/esp/esp-idf/components/efuse/esp32/esp_efuse_table.c || cmake_object_order_depends_target___idf_efuse + DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32 + TARGET_COMPILE_PDB = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/__idf_efuse.pdb + TARGET_PDB = esp-idf/efuse/libefuse.pdb +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_api.c.obj: C_COMPILER____idf_efuse /home/mithras/esp/esp-idf/components/efuse/src/esp32/esp_efuse_api.c || cmake_object_order_depends_target___idf_efuse + DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_api.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/__idf_efuse.pdb + TARGET_PDB = esp-idf/efuse/libefuse.pdb +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse /home/mithras/esp/esp-idf/components/efuse/src/esp32/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse + DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_fields.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/__idf_efuse.pdb + TARGET_PDB = esp-idf/efuse/libefuse.pdb +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse /home/mithras/esp/esp-idf/components/efuse/src/esp32/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse + DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_utility.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32 + TARGET_COMPILE_PDB = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/__idf_efuse.pdb + TARGET_PDB = esp-idf/efuse/libefuse.pdb +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj: C_COMPILER____idf_efuse /home/mithras/esp/esp-idf/components/efuse/src/esp_efuse_api.c || cmake_object_order_depends_target___idf_efuse + DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src + TARGET_COMPILE_PDB = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/__idf_efuse.pdb + TARGET_PDB = esp-idf/efuse/libefuse.pdb +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj: C_COMPILER____idf_efuse /home/mithras/esp/esp-idf/components/efuse/src/esp_efuse_fields.c || cmake_object_order_depends_target___idf_efuse + DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src + TARGET_COMPILE_PDB = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/__idf_efuse.pdb + TARGET_PDB = esp-idf/efuse/libefuse.pdb +build esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj: C_COMPILER____idf_efuse /home/mithras/esp/esp-idf/components/efuse/src/esp_efuse_utility.c || cmake_object_order_depends_target___idf_efuse + DEP_FILE = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir + OBJECT_FILE_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src + TARGET_COMPILE_PDB = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/__idf_efuse.pdb + TARGET_PDB = esp-idf/efuse/libefuse.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_efuse + + +############################################# +# Link the static library esp-idf/efuse/libefuse.a + +build esp-idf/efuse/libefuse.a: CXX_STATIC_LIBRARY_LINKER____idf_efuse esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_api.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_fields.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_utility.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj || esp-idf/bootloader_support/libbootloader_support.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/efuse/CMakeFiles/__idf_efuse.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/efuse/CMakeFiles/__idf_efuse.dir/__idf_efuse.pdb + TARGET_FILE = esp-idf/efuse/libefuse.a + TARGET_PDB = esp-idf/efuse/libefuse.pdb + +############################################# +# Utility command for list_install_components + +build esp-idf/efuse/list_install_components: phony + +############################################# +# Utility command for efuse_custom_table + +build esp-idf/efuse/efuse_custom_table: phony + +############################################# +# Utility command for rebuild_cache + +build esp-idf/efuse/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/efuse && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/efuse/rebuild_cache: phony esp-idf/efuse/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for show_efuse_table + +build esp-idf/efuse/show_efuse_table: phony esp-idf/efuse/CMakeFiles/show_efuse_table + +############################################# +# Utility command for efuse_test_table + +build esp-idf/efuse/efuse_test_table: phony esp-idf/efuse/CMakeFiles/efuse_test_table + +############################################# +# Utility command for edit_cache + +build esp-idf/efuse/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/efuse && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/efuse/edit_cache: phony esp-idf/efuse/CMakeFiles/edit_cache.util + +############################################# +# Custom command for esp-idf/efuse/CMakeFiles/efuse_common_table + +build esp-idf/efuse/CMakeFiles/efuse_common_table: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/efuse && /home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/components/efuse/efuse_table_gen.py /home/mithras/esp/esp-idf/components/efuse/esp32/esp_efuse_table.csv -t esp32 --max_blk_len 192 + +############################################# +# Custom command for esp-idf/efuse/CMakeFiles/show_efuse_table + +build esp-idf/efuse/CMakeFiles/show_efuse_table: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/efuse && /home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/components/efuse/efuse_table_gen.py /home/mithras/esp/esp-idf/components/efuse/esp32/esp_efuse_table.csv -t esp32 --max_blk_len 192 --info + +############################################# +# Custom command for esp-idf/efuse/CMakeFiles/efuse_test_table + +build esp-idf/efuse/CMakeFiles/efuse_test_table: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/efuse && /home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/components/efuse/efuse_table_gen.py /home/mithras/esp/esp-idf/components/efuse/test/esp_efuse_test_table.csv -t esp32 --max_blk_len 192 +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/bootloader_support/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/bootloader_support/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/bootloader_support && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/bootloader_support/install/strip: phony esp-idf/bootloader_support/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/bootloader_support/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/bootloader_support && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/bootloader_support/edit_cache: phony esp-idf/bootloader_support/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_bootloader_support + + +############################################# +# Order-only phony target for __idf_bootloader_support + +build cmake_object_order_depends_target___idf_bootloader_support: phony || cmake_object_order_depends_target___idf_app_update +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock.c.obj: C_COMPILER____idf_bootloader_support /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_clock.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src + TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb + TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj: C_COMPILER____idf_bootloader_support /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_common.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src + TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb + TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash.c.obj: C_COMPILER____idf_bootloader_support /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_flash.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src + TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb + TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj: C_COMPILER____idf_bootloader_support /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_random.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src + TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb + TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj: C_COMPILER____idf_bootloader_support /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_utility.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src + TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb + TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj: C_COMPILER____idf_bootloader_support /home/mithras/esp/esp-idf/components/bootloader_support/src/esp_image_format.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src + TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb + TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj: C_COMPILER____idf_bootloader_support /home/mithras/esp/esp-idf/components/bootloader_support/src/flash_partitions.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src + TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb + TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_qio_mode.c.obj: C_COMPILER____idf_bootloader_support /home/mithras/esp/esp-idf/components/bootloader_support/src/flash_qio_mode.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_qio_mode.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src + TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb + TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash_config_esp32.c.obj: C_COMPILER____idf_bootloader_support /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_flash_config_esp32.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash_config_esp32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src + TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb + TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse_esp32.c.obj: C_COMPILER____idf_bootloader_support /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_efuse_esp32.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse_esp32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src + TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb + TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj: C_COMPILER____idf_bootloader_support /home/mithras/esp/esp-idf/components/bootloader_support/src/flash_encrypt.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src + TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb + TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj: C_COMPILER____idf_bootloader_support /home/mithras/esp/esp-idf/components/bootloader_support/src/idf/bootloader_sha.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf + TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb + TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb +build esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/secure_boot_signatures.c.obj: C_COMPILER____idf_bootloader_support /home/mithras/esp/esp-idf/components/bootloader_support/src/idf/secure_boot_signatures.c || cmake_object_order_depends_target___idf_bootloader_support + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/secure_boot_signatures.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir + OBJECT_FILE_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf + TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb + TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_bootloader_support + + +############################################# +# Link the static library esp-idf/bootloader_support/libbootloader_support.a + +build esp-idf/bootloader_support/libbootloader_support.a: CXX_STATIC_LIBRARY_LINKER____idf_bootloader_support esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_qio_mode.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash_config_esp32.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse_esp32.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/secure_boot_signatures.c.obj || esp-idf/app_update/libapp_update.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/__idf_bootloader_support.pdb + TARGET_FILE = esp-idf/bootloader_support/libbootloader_support.a + TARGET_PDB = esp-idf/bootloader_support/libbootloader_support.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/bootloader_support/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/bootloader_support && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/bootloader_support/rebuild_cache: phony esp-idf/bootloader_support/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/bootloader_support/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/bootloader_support/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/bootloader_support/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/bootloader_support && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/bootloader_support/install/local: phony esp-idf/bootloader_support/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/bootloader_support/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/bootloader_support/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/bootloader_support && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/bootloader_support/install: phony esp-idf/bootloader_support/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/local + +build esp-idf/partition_table/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/partition_table/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/partition_table && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/partition_table/install/local: phony esp-idf/partition_table/CMakeFiles/install/local.util + +############################################# +# Utility command for install/strip + +build esp-idf/partition_table/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/partition_table/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/partition_table && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/partition_table/install/strip: phony esp-idf/partition_table/CMakeFiles/install/strip.util + +############################################# +# Utility command for partition_table + +build esp-idf/partition_table/partition_table: phony esp-idf/partition_table/CMakeFiles/partition_table partition_table/partition-table.bin + +############################################# +# Utility command for install + +build esp-idf/partition_table/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/partition_table/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/partition_table && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/partition_table/install: phony esp-idf/partition_table/CMakeFiles/install.util + +############################################# +# Utility command for partition_table-flash + +build esp-idf/partition_table/partition_table-flash: phony esp-idf/partition_table/CMakeFiles/partition_table-flash + +############################################# +# Utility command for list_install_components + +build esp-idf/partition_table/list_install_components: phony + +############################################# +# Utility command for edit_cache + +build esp-idf/partition_table/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/partition_table && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/partition_table/edit_cache: phony esp-idf/partition_table/CMakeFiles/edit_cache.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/partition_table/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/partition_table && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/partition_table/rebuild_cache: phony esp-idf/partition_table/CMakeFiles/rebuild_cache.util + +############################################# +# Phony custom command for esp-idf/partition_table/CMakeFiles/partition_table + +build esp-idf/partition_table/CMakeFiles/partition_table: phony partition_table/partition-table.bin + +############################################# +# Custom command for partition_table/partition-table.bin + +build partition_table/partition-table.bin: CUSTOM_COMMAND ../partitions_example.csv /home/mithras/esp/esp-idf/components/partition_table/gen_esp32part.py + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/partition_table && /home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/components/partition_table/gen_esp32part.py -q --offset 0x8000 --flash-size 4MB /home/mithras/Documents/bakalarka/partitions_example.csv /home/mithras/Documents/bakalarka/build/partition_table/partition-table.bin + DESC = Generating ../../partition_table/partition-table.bin + restat = 1 + +############################################# +# Custom command for esp-idf/partition_table/CMakeFiles/partition_table-flash + +build esp-idf/partition_table/CMakeFiles/partition_table-flash: CUSTOM_COMMAND + COMMAND = cd /home/mithras/esp/esp-idf/components/partition_table && /usr/bin/cmake -D IDF_PATH="/home/mithras/esp/esp-idf" -D ESPTOOLPY="/home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/components/esptool_py/esptool/esptool.py --chip esp32" -D ESPTOOL_ARGS="--before=default_reset --after=hard_reset write_flash @partition_table-flash_args" -D WORKING_DIRECTORY="/home/mithras/Documents/bakalarka/build" -P /home/mithras/esp/esp-idf/components/esptool_py/run_esptool.cmake + pool = console +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/app_update/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/app_update/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/app_update && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/app_update/install/strip: phony esp-idf/app_update/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/app_update/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/app_update && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/app_update/edit_cache: phony esp-idf/app_update/CMakeFiles/edit_cache.util + +############################################# +# Utility command for install + +build esp-idf/app_update/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/app_update/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/app_update && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/app_update/install: phony esp-idf/app_update/CMakeFiles/install.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/app_update/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/app_update && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/app_update/rebuild_cache: phony esp-idf/app_update/CMakeFiles/rebuild_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_app_update + + +############################################# +# Order-only phony target for __idf_app_update + +build cmake_object_order_depends_target___idf_app_update: phony || cmake_object_order_depends_target___idf_spi_flash +build esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj: C_COMPILER____idf_app_update /home/mithras/esp/esp-idf/components/app_update/esp_ota_ops.c || cmake_object_order_depends_target___idf_app_update + DEP_FILE = esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include + OBJECT_DIR = esp-idf/app_update/CMakeFiles/__idf_app_update.dir + OBJECT_FILE_DIR = esp-idf/app_update/CMakeFiles/__idf_app_update.dir + TARGET_COMPILE_PDB = esp-idf/app_update/CMakeFiles/__idf_app_update.dir/__idf_app_update.pdb + TARGET_PDB = esp-idf/app_update/libapp_update.pdb +build esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_app_desc.c.obj: C_COMPILER____idf_app_update /home/mithras/esp/esp-idf/components/app_update/esp_app_desc.c || cmake_object_order_depends_target___idf_app_update + DEFINES = -D PROJECT_NAME=\"bakalarka\" -DPROJECT_VER=\"0.1.0.1\" + DEP_FILE = esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_app_desc.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include + OBJECT_DIR = esp-idf/app_update/CMakeFiles/__idf_app_update.dir + OBJECT_FILE_DIR = esp-idf/app_update/CMakeFiles/__idf_app_update.dir + TARGET_COMPILE_PDB = esp-idf/app_update/CMakeFiles/__idf_app_update.dir/__idf_app_update.pdb + TARGET_PDB = esp-idf/app_update/libapp_update.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_app_update + + +############################################# +# Link the static library esp-idf/app_update/libapp_update.a + +build esp-idf/app_update/libapp_update.a: CXX_STATIC_LIBRARY_LINKER____idf_app_update esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_app_desc.c.obj || esp-idf/spi_flash/libspi_flash.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/app_update/CMakeFiles/__idf_app_update.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/app_update/CMakeFiles/__idf_app_update.dir/__idf_app_update.pdb + TARGET_FILE = esp-idf/app_update/libapp_update.a + TARGET_PDB = esp-idf/app_update/libapp_update.pdb + +############################################# +# Utility command for list_install_components + +build esp-idf/app_update/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/app_update/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/app_update/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/app_update && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/app_update/install/local: phony esp-idf/app_update/CMakeFiles/install/local.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/spi_flash/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/spi_flash/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/spi_flash && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/spi_flash/install/strip: phony esp-idf/spi_flash/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/spi_flash/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/spi_flash && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/spi_flash/edit_cache: phony esp-idf/spi_flash/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_spi_flash + + +############################################# +# Order-only phony target for __idf_spi_flash + +build cmake_object_order_depends_target___idf_spi_flash: phony || cmake_object_order_depends_target___idf_nvs_flash +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/partition.c.obj: C_COMPILER____idf_spi_flash /home/mithras/esp/esp-idf/components/spi_flash/partition.c || cmake_object_order_depends_target___idf_spi_flash + DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/partition.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include + OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb + TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32/spi_flash_rom_patch.c.obj: C_COMPILER____idf_spi_flash /home/mithras/esp/esp-idf/components/spi_flash/esp32/spi_flash_rom_patch.c || cmake_object_order_depends_target___idf_spi_flash + DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32/spi_flash_rom_patch.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include + OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32 + TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb + TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj: C_COMPILER____idf_spi_flash /home/mithras/esp/esp-idf/components/spi_flash/spi_flash_chip_drivers.c || cmake_object_order_depends_target___idf_spi_flash + DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include + OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb + TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj: C_COMPILER____idf_spi_flash /home/mithras/esp/esp-idf/components/spi_flash/spi_flash_chip_generic.c || cmake_object_order_depends_target___idf_spi_flash + DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include + OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb + TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj: C_COMPILER____idf_spi_flash /home/mithras/esp/esp-idf/components/spi_flash/spi_flash_chip_issi.c || cmake_object_order_depends_target___idf_spi_flash + DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include + OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb + TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj: C_COMPILER____idf_spi_flash /home/mithras/esp/esp-idf/components/spi_flash/spi_flash_chip_gd.c || cmake_object_order_depends_target___idf_spi_flash + DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include + OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb + TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj: C_COMPILER____idf_spi_flash /home/mithras/esp/esp-idf/components/spi_flash/memspi_host_driver.c || cmake_object_order_depends_target___idf_spi_flash + DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include + OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb + TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj: C_COMPILER____idf_spi_flash /home/mithras/esp/esp-idf/components/spi_flash/cache_utils.c || cmake_object_order_depends_target___idf_spi_flash + DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include + OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb + TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj: C_COMPILER____idf_spi_flash /home/mithras/esp/esp-idf/components/spi_flash/flash_mmap.c || cmake_object_order_depends_target___idf_spi_flash + DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include + OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb + TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj: C_COMPILER____idf_spi_flash /home/mithras/esp/esp-idf/components/spi_flash/flash_ops.c || cmake_object_order_depends_target___idf_spi_flash + DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include + OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb + TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj: C_COMPILER____idf_spi_flash /home/mithras/esp/esp-idf/components/spi_flash/esp_flash_api.c || cmake_object_order_depends_target___idf_spi_flash + DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include + OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb + TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj: C_COMPILER____idf_spi_flash /home/mithras/esp/esp-idf/components/spi_flash/esp_flash_spi_init.c || cmake_object_order_depends_target___idf_spi_flash + DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include + OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb + TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj: C_COMPILER____idf_spi_flash /home/mithras/esp/esp-idf/components/spi_flash/spi_flash_os_func_app.c || cmake_object_order_depends_target___idf_spi_flash + DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include + OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb + TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb +build esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj: C_COMPILER____idf_spi_flash /home/mithras/esp/esp-idf/components/spi_flash/spi_flash_os_func_noos.c || cmake_object_order_depends_target___idf_spi_flash + DEP_FILE = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include + OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir + OBJECT_FILE_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir + TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb + TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_spi_flash + + +############################################# +# Link the static library esp-idf/spi_flash/libspi_flash.a + +build esp-idf/spi_flash/libspi_flash.a: CXX_STATIC_LIBRARY_LINKER____idf_spi_flash esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/partition.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32/spi_flash_rom_patch.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj || esp-idf/nvs_flash/libnvs_flash.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/__idf_spi_flash.pdb + TARGET_FILE = esp-idf/spi_flash/libspi_flash.a + TARGET_PDB = esp-idf/spi_flash/libspi_flash.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/spi_flash/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/spi_flash && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/spi_flash/rebuild_cache: phony esp-idf/spi_flash/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/spi_flash/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/spi_flash/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/spi_flash/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/spi_flash && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/spi_flash/install/local: phony esp-idf/spi_flash/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/spi_flash/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/spi_flash/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/spi_flash && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/spi_flash/install: phony esp-idf/spi_flash/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/nvs_flash/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/nvs_flash/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/nvs_flash && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/nvs_flash/install/strip: phony esp-idf/nvs_flash/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/nvs_flash/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/nvs_flash && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/nvs_flash/edit_cache: phony esp-idf/nvs_flash/CMakeFiles/edit_cache.util + +############################################# +# Utility command for install + +build esp-idf/nvs_flash/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/nvs_flash/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/nvs_flash && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/nvs_flash/install: phony esp-idf/nvs_flash/CMakeFiles/install.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_nvs_flash + + +############################################# +# Order-only phony target for __idf_nvs_flash + +build cmake_object_order_depends_target___idf_nvs_flash: phony || cmake_object_order_depends_target___idf_esp_wifi +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj: CXX_COMPILER____idf_nvs_flash /home/mithras/esp/esp-idf/components/nvs_flash/src/nvs_api.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src + TARGET_COMPILE_PDB = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/__idf_nvs_flash.pdb + TARGET_PDB = esp-idf/nvs_flash/libnvs_flash.pdb +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj: CXX_COMPILER____idf_nvs_flash /home/mithras/esp/esp-idf/components/nvs_flash/src/nvs_cxx_api.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src + TARGET_COMPILE_PDB = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/__idf_nvs_flash.pdb + TARGET_PDB = esp-idf/nvs_flash/libnvs_flash.pdb +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj: CXX_COMPILER____idf_nvs_flash /home/mithras/esp/esp-idf/components/nvs_flash/src/nvs_item_hash_list.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src + TARGET_COMPILE_PDB = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/__idf_nvs_flash.pdb + TARGET_PDB = esp-idf/nvs_flash/libnvs_flash.pdb +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_ops.cpp.obj: CXX_COMPILER____idf_nvs_flash /home/mithras/esp/esp-idf/components/nvs_flash/src/nvs_ops.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_ops.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src + TARGET_COMPILE_PDB = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/__idf_nvs_flash.pdb + TARGET_PDB = esp-idf/nvs_flash/libnvs_flash.pdb +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj: CXX_COMPILER____idf_nvs_flash /home/mithras/esp/esp-idf/components/nvs_flash/src/nvs_page.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src + TARGET_COMPILE_PDB = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/__idf_nvs_flash.pdb + TARGET_PDB = esp-idf/nvs_flash/libnvs_flash.pdb +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj: CXX_COMPILER____idf_nvs_flash /home/mithras/esp/esp-idf/components/nvs_flash/src/nvs_pagemanager.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src + TARGET_COMPILE_PDB = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/__idf_nvs_flash.pdb + TARGET_PDB = esp-idf/nvs_flash/libnvs_flash.pdb +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj: CXX_COMPILER____idf_nvs_flash /home/mithras/esp/esp-idf/components/nvs_flash/src/nvs_storage.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src + TARGET_COMPILE_PDB = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/__idf_nvs_flash.pdb + TARGET_PDB = esp-idf/nvs_flash/libnvs_flash.pdb +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj: CXX_COMPILER____idf_nvs_flash /home/mithras/esp/esp-idf/components/nvs_flash/src/nvs_handle_simple.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src + TARGET_COMPILE_PDB = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/__idf_nvs_flash.pdb + TARGET_PDB = esp-idf/nvs_flash/libnvs_flash.pdb +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj: CXX_COMPILER____idf_nvs_flash /home/mithras/esp/esp-idf/components/nvs_flash/src/nvs_handle_locked.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src + TARGET_COMPILE_PDB = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/__idf_nvs_flash.pdb + TARGET_PDB = esp-idf/nvs_flash/libnvs_flash.pdb +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj: CXX_COMPILER____idf_nvs_flash /home/mithras/esp/esp-idf/components/nvs_flash/src/nvs_partition_manager.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src + TARGET_COMPILE_PDB = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/__idf_nvs_flash.pdb + TARGET_PDB = esp-idf/nvs_flash/libnvs_flash.pdb +build esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj: CXX_COMPILER____idf_nvs_flash /home/mithras/esp/esp-idf/components/nvs_flash/src/nvs_types.cpp || cmake_object_order_depends_target___idf_nvs_flash + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir + OBJECT_FILE_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src + TARGET_COMPILE_PDB = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/__idf_nvs_flash.pdb + TARGET_PDB = esp-idf/nvs_flash/libnvs_flash.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_nvs_flash + + +############################################# +# Link the static library esp-idf/nvs_flash/libnvs_flash.a + +build esp-idf/nvs_flash/libnvs_flash.a: CXX_STATIC_LIBRARY_LINKER____idf_nvs_flash esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_ops.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj || esp-idf/esp_wifi/libesp_wifi.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/__idf_nvs_flash.pdb + TARGET_FILE = esp-idf/nvs_flash/libnvs_flash.a + TARGET_PDB = esp-idf/nvs_flash/libnvs_flash.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/nvs_flash/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/nvs_flash && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/nvs_flash/rebuild_cache: phony esp-idf/nvs_flash/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/nvs_flash/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/nvs_flash/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/nvs_flash/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/nvs_flash && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/nvs_flash/install/local: phony esp-idf/nvs_flash/CMakeFiles/install/local.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_wifi/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_wifi/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_wifi && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/esp_wifi/install/strip: phony esp-idf/esp_wifi/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_wifi/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_wifi && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/esp_wifi/edit_cache: phony esp-idf/esp_wifi/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_wifi + + +############################################# +# Order-only phony target for __idf_esp_wifi + +build cmake_object_order_depends_target___idf_esp_wifi: phony || cmake_object_order_depends_target___idf_lwip +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/coexist.c.obj: C_COMPILER____idf_esp_wifi /home/mithras/esp/esp-idf/components/esp_wifi/src/coexist.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/coexist.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir + OBJECT_FILE_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/__idf_esp_wifi.pdb + TARGET_PDB = esp-idf/esp_wifi/libesp_wifi.pdb +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj: C_COMPILER____idf_esp_wifi /home/mithras/esp/esp-idf/components/esp_wifi/src/lib_printf.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir + OBJECT_FILE_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/__idf_esp_wifi.pdb + TARGET_PDB = esp-idf/esp_wifi/libesp_wifi.pdb +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj: C_COMPILER____idf_esp_wifi /home/mithras/esp/esp-idf/components/esp_wifi/src/mesh_event.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir + OBJECT_FILE_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/__idf_esp_wifi.pdb + TARGET_PDB = esp-idf/esp_wifi/libesp_wifi.pdb +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/phy_init.c.obj: C_COMPILER____idf_esp_wifi /home/mithras/esp/esp-idf/components/esp_wifi/src/phy_init.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/phy_init.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir + OBJECT_FILE_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/__idf_esp_wifi.pdb + TARGET_PDB = esp-idf/esp_wifi/libesp_wifi.pdb +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj: C_COMPILER____idf_esp_wifi /home/mithras/esp/esp-idf/components/esp_wifi/src/smartconfig.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir + OBJECT_FILE_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/__idf_esp_wifi.pdb + TARGET_PDB = esp-idf/esp_wifi/libesp_wifi.pdb +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj: C_COMPILER____idf_esp_wifi /home/mithras/esp/esp-idf/components/esp_wifi/src/smartconfig_ack.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir + OBJECT_FILE_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/__idf_esp_wifi.pdb + TARGET_PDB = esp-idf/esp_wifi/libesp_wifi.pdb +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj: C_COMPILER____idf_esp_wifi /home/mithras/esp/esp-idf/components/esp_wifi/src/wifi_init.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir + OBJECT_FILE_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/__idf_esp_wifi.pdb + TARGET_PDB = esp-idf/esp_wifi/libesp_wifi.pdb +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj: C_COMPILER____idf_esp_wifi /home/mithras/esp/esp-idf/components/esp_wifi/src/wifi_default.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir + OBJECT_FILE_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/__idf_esp_wifi.pdb + TARGET_PDB = esp-idf/esp_wifi/libesp_wifi.pdb +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj: C_COMPILER____idf_esp_wifi /home/mithras/esp/esp-idf/components/esp_wifi/src/wifi_netif.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir + OBJECT_FILE_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/__idf_esp_wifi.pdb + TARGET_PDB = esp-idf/esp_wifi/libesp_wifi.pdb +build esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32/esp_adapter.c.obj: C_COMPILER____idf_esp_wifi /home/mithras/esp/esp-idf/components/esp_wifi/esp32/esp_adapter.c || cmake_object_order_depends_target___idf_esp_wifi + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32/esp_adapter.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir + OBJECT_FILE_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32 + TARGET_COMPILE_PDB = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/__idf_esp_wifi.pdb + TARGET_PDB = esp-idf/esp_wifi/libesp_wifi.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_wifi + + +############################################# +# Link the static library esp-idf/esp_wifi/libesp_wifi.a + +build esp-idf/esp_wifi/libesp_wifi.a: CXX_STATIC_LIBRARY_LINKER____idf_esp_wifi esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/coexist.c.obj esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/phy_init.c.obj esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32/esp_adapter.c.obj || esp-idf/lwip/liblwip.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/__idf_esp_wifi.pdb + TARGET_FILE = esp-idf/esp_wifi/libesp_wifi.a + TARGET_PDB = esp-idf/esp_wifi/libesp_wifi.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_wifi/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_wifi && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/esp_wifi/rebuild_cache: phony esp-idf/esp_wifi/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_wifi/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/esp_wifi/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_wifi/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_wifi && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/esp_wifi/install/local: phony esp-idf/esp_wifi/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/esp_wifi/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_wifi/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_wifi && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/esp_wifi/install: phony esp-idf/esp_wifi/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/lwip/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/lwip/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/lwip && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/lwip/install/strip: phony esp-idf/lwip/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/lwip/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/lwip && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/lwip/edit_cache: phony esp-idf/lwip/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_lwip + + +############################################# +# Order-only phony target for __idf_lwip + +build cmake_object_order_depends_target___idf_lwip: phony || cmake_object_order_depends_target___idf_log +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/apps/dhcpserver/dhcpserver.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/apps/ping/esp_ping.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/apps/ping/ping.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/apps/ping/ping_sock.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/apps/sntp/sntp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/api/api_lib.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/api/api_msg.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/api/err.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/api/if_api.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/api/netbuf.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/api/netdb.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/api/netifapi.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/api/sockets.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/api/tcpip.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/apps/sntp/sntp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/apps/netbiosns/netbiosns.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/def.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/dns.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/inet_chksum.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/init.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ip.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/mem.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/memp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/netif.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/pbuf.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/raw.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/stats.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/sys.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/tcp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address -Wno-type-limits + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/tcp_in.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/tcp_out.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/timeouts.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/udp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv4/autoip.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4 + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv4/dhcp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4 + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv4/etharp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4 + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv4/icmp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4 + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv4/igmp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4 + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv4/ip4.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4 + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_addr.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4 + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_frag.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4 + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv6/dhcp6.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6 + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv6/ethip6.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6 + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv6/icmp6.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6 + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv6/inet6.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6 + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv6/ip6.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6 + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv6/ip6_addr.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6 + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv6/ip6_frag.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6 + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv6/mld6.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6 + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv6/nd6.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6 + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ethernet.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/lowpan6.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/lowpan6.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/lowpan6.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/slipif.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/auth.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/ccp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/chap-md5.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/chap-new.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/chap_ms.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/demand.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/eap.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/ecp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/eui64.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/fsm.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/ipcp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/ipv6cp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/lcp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/magic.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/mppe.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/multilink.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/ppp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address -Wno-uninitialized + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/pppapi.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/pppcrypt.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/pppoe.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/pppol2tp.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/pppos.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address -Wno-implicit-fallthrough + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/upap.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/utils.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/vj.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/vfs_lwip.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/port/esp32/vfs_lwip.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/vfs_lwip.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32 + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/debug/lwip_debug.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/port/esp32/debug/lwip_debug.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/debug/lwip_debug.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/debug + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/freertos/sys_arch.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/port/esp32/freertos/sys_arch.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/freertos/sys_arch.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/freertos + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/dhcp_state.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/port/esp32/netif/dhcp_state.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/dhcp_state.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/wlanif.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/port/esp32/netif/wlanif.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/wlanif.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb +build esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/ethernetif.c.obj: C_COMPILER____idf_lwip /home/mithras/esp/esp-idf/components/lwip/port/esp32/netif/ethernetif.c || cmake_object_order_depends_target___idf_lwip + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/ethernetif.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-address + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + OBJECT_FILE_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_PDB = esp-idf/lwip/liblwip.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_lwip + + +############################################# +# Link the static library esp-idf/lwip/liblwip.a + +build esp-idf/lwip/liblwip.a: CXX_STATIC_LIBRARY_LINKER____idf_lwip esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/lowpan6.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/vfs_lwip.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/debug/lwip_debug.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/freertos/sys_arch.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/dhcp_state.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/wlanif.c.obj esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/ethernetif.c.obj || esp-idf/log/liblog.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/lwip/CMakeFiles/__idf_lwip.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/lwip/CMakeFiles/__idf_lwip.dir/__idf_lwip.pdb + TARGET_FILE = esp-idf/lwip/liblwip.a + TARGET_PDB = esp-idf/lwip/liblwip.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/lwip/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/lwip && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/lwip/rebuild_cache: phony esp-idf/lwip/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/lwip/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/lwip/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/lwip/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/lwip && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/lwip/install/local: phony esp-idf/lwip/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/lwip/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/lwip/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/lwip && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/lwip/install: phony esp-idf/lwip/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/log/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/log/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/log && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/log/install/strip: phony esp-idf/log/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/log/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/log && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/log/edit_cache: phony esp-idf/log/CMakeFiles/edit_cache.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/log/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/log && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/log/rebuild_cache: phony esp-idf/log/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/log/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/log/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/log/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/log && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/log/install/local: phony esp-idf/log/CMakeFiles/install/local.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_log + + +############################################# +# Order-only phony target for __idf_log + +build cmake_object_order_depends_target___idf_log: phony || cmake_object_order_depends_target___idf_heap +build esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj: C_COMPILER____idf_log /home/mithras/esp/esp-idf/components/log/log.c || cmake_object_order_depends_target___idf_log + DEP_FILE = esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/log/CMakeFiles/__idf_log.dir + OBJECT_FILE_DIR = esp-idf/log/CMakeFiles/__idf_log.dir + TARGET_COMPILE_PDB = esp-idf/log/CMakeFiles/__idf_log.dir/__idf_log.pdb + TARGET_PDB = esp-idf/log/liblog.pdb +build esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj: C_COMPILER____idf_log /home/mithras/esp/esp-idf/components/log/log_buffers.c || cmake_object_order_depends_target___idf_log + DEP_FILE = esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/log/CMakeFiles/__idf_log.dir + OBJECT_FILE_DIR = esp-idf/log/CMakeFiles/__idf_log.dir + TARGET_COMPILE_PDB = esp-idf/log/CMakeFiles/__idf_log.dir/__idf_log.pdb + TARGET_PDB = esp-idf/log/liblog.pdb +build esp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.c.obj: C_COMPILER____idf_log /home/mithras/esp/esp-idf/components/log/log_freertos.c || cmake_object_order_depends_target___idf_log + DEP_FILE = esp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/log/CMakeFiles/__idf_log.dir + OBJECT_FILE_DIR = esp-idf/log/CMakeFiles/__idf_log.dir + TARGET_COMPILE_PDB = esp-idf/log/CMakeFiles/__idf_log.dir/__idf_log.pdb + TARGET_PDB = esp-idf/log/liblog.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_log + + +############################################# +# Link the static library esp-idf/log/liblog.a + +build esp-idf/log/liblog.a: CXX_STATIC_LIBRARY_LINKER____idf_log esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj esp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.c.obj || esp-idf/heap/libheap.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/log/CMakeFiles/__idf_log.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/log/CMakeFiles/__idf_log.dir/__idf_log.pdb + TARGET_FILE = esp-idf/log/liblog.a + TARGET_PDB = esp-idf/log/liblog.pdb + +############################################# +# Utility command for install + +build esp-idf/log/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/log/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/log && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/log/install: phony esp-idf/log/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/heap/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/heap/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/heap && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/heap/install/strip: phony esp-idf/heap/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/heap/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/heap && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/heap/edit_cache: phony esp-idf/heap/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_heap + + +############################################# +# Order-only phony target for __idf_heap + +build cmake_object_order_depends_target___idf_heap: phony || cmake_object_order_depends_target___idf_esp_ringbuf +build esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj: C_COMPILER____idf_heap /home/mithras/esp/esp-idf/components/heap/heap_caps.c || cmake_object_order_depends_target___idf_heap + DEP_FILE = esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DMULTI_HEAP_FREERTOS + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/heap/CMakeFiles/__idf_heap.dir + OBJECT_FILE_DIR = esp-idf/heap/CMakeFiles/__idf_heap.dir + TARGET_COMPILE_PDB = esp-idf/heap/CMakeFiles/__idf_heap.dir/__idf_heap.pdb + TARGET_PDB = esp-idf/heap/libheap.pdb +build esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj: C_COMPILER____idf_heap /home/mithras/esp/esp-idf/components/heap/heap_caps_init.c || cmake_object_order_depends_target___idf_heap + DEP_FILE = esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DMULTI_HEAP_FREERTOS + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/heap/CMakeFiles/__idf_heap.dir + OBJECT_FILE_DIR = esp-idf/heap/CMakeFiles/__idf_heap.dir + TARGET_COMPILE_PDB = esp-idf/heap/CMakeFiles/__idf_heap.dir/__idf_heap.pdb + TARGET_PDB = esp-idf/heap/libheap.pdb +build esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj: C_COMPILER____idf_heap /home/mithras/esp/esp-idf/components/heap/multi_heap.c || cmake_object_order_depends_target___idf_heap + DEP_FILE = esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DMULTI_HEAP_FREERTOS + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/heap/CMakeFiles/__idf_heap.dir + OBJECT_FILE_DIR = esp-idf/heap/CMakeFiles/__idf_heap.dir + TARGET_COMPILE_PDB = esp-idf/heap/CMakeFiles/__idf_heap.dir/__idf_heap.pdb + TARGET_PDB = esp-idf/heap/libheap.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_heap + + +############################################# +# Link the static library esp-idf/heap/libheap.a + +build esp-idf/heap/libheap.a: CXX_STATIC_LIBRARY_LINKER____idf_heap esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj || esp-idf/esp_ringbuf/libesp_ringbuf.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/heap/CMakeFiles/__idf_heap.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/heap/CMakeFiles/__idf_heap.dir/__idf_heap.pdb + TARGET_FILE = esp-idf/heap/libheap.a + TARGET_PDB = esp-idf/heap/libheap.pdb + +############################################# +# Utility command for install + +build esp-idf/heap/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/heap/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/heap && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/heap/install: phony esp-idf/heap/CMakeFiles/install.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/heap/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/heap && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/heap/rebuild_cache: phony esp-idf/heap/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/heap/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/heap/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/heap/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/heap && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/heap/install/local: phony esp-idf/heap/CMakeFiles/install/local.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_ringbuf/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_ringbuf/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_ringbuf && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/esp_ringbuf/install/strip: phony esp-idf/esp_ringbuf/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_ringbuf/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_ringbuf && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/esp_ringbuf/edit_cache: phony esp-idf/esp_ringbuf/CMakeFiles/edit_cache.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_ringbuf/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_ringbuf && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/esp_ringbuf/rebuild_cache: phony esp-idf/esp_ringbuf/CMakeFiles/rebuild_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_ringbuf + + +############################################# +# Order-only phony target for __idf_esp_ringbuf + +build cmake_object_order_depends_target___idf_esp_ringbuf: phony || cmake_object_order_depends_target___idf_driver +build esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj: C_COMPILER____idf_esp_ringbuf /home/mithras/esp/esp-idf/components/esp_ringbuf/ringbuf.c || cmake_object_order_depends_target___idf_esp_ringbuf + DEP_FILE = esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir + OBJECT_FILE_DIR = esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir + TARGET_COMPILE_PDB = esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/__idf_esp_ringbuf.pdb + TARGET_PDB = esp-idf/esp_ringbuf/libesp_ringbuf.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_ringbuf + + +############################################# +# Link the static library esp-idf/esp_ringbuf/libesp_ringbuf.a + +build esp-idf/esp_ringbuf/libesp_ringbuf.a: CXX_STATIC_LIBRARY_LINKER____idf_esp_ringbuf esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj || esp-idf/driver/libdriver.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/__idf_esp_ringbuf.pdb + TARGET_FILE = esp-idf/esp_ringbuf/libesp_ringbuf.a + TARGET_PDB = esp-idf/esp_ringbuf/libesp_ringbuf.pdb + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_ringbuf/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/esp_ringbuf/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_ringbuf/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_ringbuf && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/esp_ringbuf/install/local: phony esp-idf/esp_ringbuf/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/esp_ringbuf/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_ringbuf/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_ringbuf && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/esp_ringbuf/install: phony esp-idf/esp_ringbuf/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/driver/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/driver/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/driver && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/driver/install/strip: phony esp-idf/driver/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/driver/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/driver && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/driver/edit_cache: phony esp-idf/driver/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_driver + + +############################################# +# Order-only phony target for __idf_driver + +build cmake_object_order_depends_target___idf_driver: phony || cmake_object_order_depends_target___idf_pthread +build esp-idf/driver/CMakeFiles/__idf_driver.dir/adc.c.obj: C_COMPILER____idf_driver /home/mithras/esp/esp-idf/components/driver/adc.c || cmake_object_order_depends_target___idf_driver + DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/adc.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb + TARGET_PDB = esp-idf/driver/libdriver.pdb +build esp-idf/driver/CMakeFiles/__idf_driver.dir/can.c.obj: C_COMPILER____idf_driver /home/mithras/esp/esp-idf/components/driver/can.c || cmake_object_order_depends_target___idf_driver + DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/can.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb + TARGET_PDB = esp-idf/driver/libdriver.pdb +build esp-idf/driver/CMakeFiles/__idf_driver.dir/dac.c.obj: C_COMPILER____idf_driver /home/mithras/esp/esp-idf/components/driver/dac.c || cmake_object_order_depends_target___idf_driver + DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/dac.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb + TARGET_PDB = esp-idf/driver/libdriver.pdb +build esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio.c.obj: C_COMPILER____idf_driver /home/mithras/esp/esp-idf/components/driver/gpio.c || cmake_object_order_depends_target___idf_driver + DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb + TARGET_PDB = esp-idf/driver/libdriver.pdb +build esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c.c.obj: C_COMPILER____idf_driver /home/mithras/esp/esp-idf/components/driver/i2c.c || cmake_object_order_depends_target___idf_driver + DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb + TARGET_PDB = esp-idf/driver/libdriver.pdb +build esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s.c.obj: C_COMPILER____idf_driver /home/mithras/esp/esp-idf/components/driver/i2s.c || cmake_object_order_depends_target___idf_driver + DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb + TARGET_PDB = esp-idf/driver/libdriver.pdb +build esp-idf/driver/CMakeFiles/__idf_driver.dir/ledc.c.obj: C_COMPILER____idf_driver /home/mithras/esp/esp-idf/components/driver/ledc.c || cmake_object_order_depends_target___idf_driver + DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/ledc.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb + TARGET_PDB = esp-idf/driver/libdriver.pdb +build esp-idf/driver/CMakeFiles/__idf_driver.dir/pcnt.c.obj: C_COMPILER____idf_driver /home/mithras/esp/esp-idf/components/driver/pcnt.c || cmake_object_order_depends_target___idf_driver + DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/pcnt.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb + TARGET_PDB = esp-idf/driver/libdriver.pdb +build esp-idf/driver/CMakeFiles/__idf_driver.dir/periph_ctrl.c.obj: C_COMPILER____idf_driver /home/mithras/esp/esp-idf/components/driver/periph_ctrl.c || cmake_object_order_depends_target___idf_driver + DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/periph_ctrl.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb + TARGET_PDB = esp-idf/driver/libdriver.pdb +build esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt.c.obj: C_COMPILER____idf_driver /home/mithras/esp/esp-idf/components/driver/rmt.c || cmake_object_order_depends_target___idf_driver + DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb + TARGET_PDB = esp-idf/driver/libdriver.pdb +build esp-idf/driver/CMakeFiles/__idf_driver.dir/rtc_io.c.obj: C_COMPILER____idf_driver /home/mithras/esp/esp-idf/components/driver/rtc_io.c || cmake_object_order_depends_target___idf_driver + DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/rtc_io.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb + TARGET_PDB = esp-idf/driver/libdriver.pdb +build esp-idf/driver/CMakeFiles/__idf_driver.dir/rtc_module.c.obj: C_COMPILER____idf_driver /home/mithras/esp/esp-idf/components/driver/rtc_module.c || cmake_object_order_depends_target___idf_driver + DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/rtc_module.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb + TARGET_PDB = esp-idf/driver/libdriver.pdb +build esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_crc.c.obj: C_COMPILER____idf_driver /home/mithras/esp/esp-idf/components/driver/sdspi_crc.c || cmake_object_order_depends_target___idf_driver + DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_crc.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb + TARGET_PDB = esp-idf/driver/libdriver.pdb +build esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_host.c.obj: C_COMPILER____idf_driver /home/mithras/esp/esp-idf/components/driver/sdspi_host.c || cmake_object_order_depends_target___idf_driver + DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_host.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb + TARGET_PDB = esp-idf/driver/libdriver.pdb +build esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_transaction.c.obj: C_COMPILER____idf_driver /home/mithras/esp/esp-idf/components/driver/sdspi_transaction.c || cmake_object_order_depends_target___idf_driver + DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_transaction.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb + TARGET_PDB = esp-idf/driver/libdriver.pdb +build esp-idf/driver/CMakeFiles/__idf_driver.dir/sigmadelta.c.obj: C_COMPILER____idf_driver /home/mithras/esp/esp-idf/components/driver/sigmadelta.c || cmake_object_order_depends_target___idf_driver + DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/sigmadelta.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb + TARGET_PDB = esp-idf/driver/libdriver.pdb +build esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_common.c.obj: C_COMPILER____idf_driver /home/mithras/esp/esp-idf/components/driver/spi_common.c || cmake_object_order_depends_target___idf_driver + DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_common.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb + TARGET_PDB = esp-idf/driver/libdriver.pdb +build esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_master.c.obj: C_COMPILER____idf_driver /home/mithras/esp/esp-idf/components/driver/spi_master.c || cmake_object_order_depends_target___idf_driver + DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_master.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -std=gnu11 + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb + TARGET_PDB = esp-idf/driver/libdriver.pdb +build esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_slave.c.obj: C_COMPILER____idf_driver /home/mithras/esp/esp-idf/components/driver/spi_slave.c || cmake_object_order_depends_target___idf_driver + DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_slave.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb + TARGET_PDB = esp-idf/driver/libdriver.pdb +build esp-idf/driver/CMakeFiles/__idf_driver.dir/timer.c.obj: C_COMPILER____idf_driver /home/mithras/esp/esp-idf/components/driver/timer.c || cmake_object_order_depends_target___idf_driver + DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/timer.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb + TARGET_PDB = esp-idf/driver/libdriver.pdb +build esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor_common.c.obj: C_COMPILER____idf_driver /home/mithras/esp/esp-idf/components/driver/touch_sensor_common.c || cmake_object_order_depends_target___idf_driver + DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor_common.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb + TARGET_PDB = esp-idf/driver/libdriver.pdb +build esp-idf/driver/CMakeFiles/__idf_driver.dir/uart.c.obj: C_COMPILER____idf_driver /home/mithras/esp/esp-idf/components/driver/uart.c || cmake_object_order_depends_target___idf_driver + DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/uart.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb + TARGET_PDB = esp-idf/driver/libdriver.pdb +build esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm.c.obj: C_COMPILER____idf_driver /home/mithras/esp/esp-idf/components/driver/mcpwm.c || cmake_object_order_depends_target___idf_driver + DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb + TARGET_PDB = esp-idf/driver/libdriver.pdb +build esp-idf/driver/CMakeFiles/__idf_driver.dir/sdio_slave.c.obj: C_COMPILER____idf_driver /home/mithras/esp/esp-idf/components/driver/sdio_slave.c || cmake_object_order_depends_target___idf_driver + DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/sdio_slave.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb + TARGET_PDB = esp-idf/driver/libdriver.pdb +build esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_host.c.obj: C_COMPILER____idf_driver /home/mithras/esp/esp-idf/components/driver/sdmmc_host.c || cmake_object_order_depends_target___idf_driver + DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_host.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb + TARGET_PDB = esp-idf/driver/libdriver.pdb +build esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_transaction.c.obj: C_COMPILER____idf_driver /home/mithras/esp/esp-idf/components/driver/sdmmc_transaction.c || cmake_object_order_depends_target___idf_driver + DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_transaction.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb + TARGET_PDB = esp-idf/driver/libdriver.pdb +build esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32/touch_sensor.c.obj: C_COMPILER____idf_driver /home/mithras/esp/esp-idf/components/driver/esp32/touch_sensor.c || cmake_object_order_depends_target___idf_driver + DEP_FILE = esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32/touch_sensor.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + OBJECT_FILE_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32 + TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb + TARGET_PDB = esp-idf/driver/libdriver.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_driver + + +############################################# +# Link the static library esp-idf/driver/libdriver.a + +build esp-idf/driver/libdriver.a: CXX_STATIC_LIBRARY_LINKER____idf_driver esp-idf/driver/CMakeFiles/__idf_driver.dir/adc.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/can.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/dac.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/ledc.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/pcnt.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/periph_ctrl.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/rtc_io.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/rtc_module.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_crc.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_host.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_transaction.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/sigmadelta.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_common.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_master.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_slave.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/timer.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor_common.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/uart.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/sdio_slave.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_host.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_transaction.c.obj esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32/touch_sensor.c.obj || esp-idf/pthread/libpthread.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/driver/CMakeFiles/__idf_driver.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/driver/CMakeFiles/__idf_driver.dir/__idf_driver.pdb + TARGET_FILE = esp-idf/driver/libdriver.a + TARGET_PDB = esp-idf/driver/libdriver.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/driver/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/driver && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/driver/rebuild_cache: phony esp-idf/driver/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/driver/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/driver/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/driver/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/driver && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/driver/install/local: phony esp-idf/driver/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/driver/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/driver/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/driver && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/driver/install: phony esp-idf/driver/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/pthread/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/pthread/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/pthread && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/pthread/install/strip: phony esp-idf/pthread/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/pthread/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/pthread && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/pthread/edit_cache: phony esp-idf/pthread/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_pthread + + +############################################# +# Order-only phony target for __idf_pthread + +build cmake_object_order_depends_target___idf_pthread: phony || cmake_object_order_depends_target___idf_espcoredump +build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj: C_COMPILER____idf_pthread /home/mithras/esp/esp-idf/components/pthread/pthread.c || cmake_object_order_depends_target___idf_pthread + DEP_FILE = esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/pthread/CMakeFiles/__idf_pthread.dir + OBJECT_FILE_DIR = esp-idf/pthread/CMakeFiles/__idf_pthread.dir + TARGET_COMPILE_PDB = esp-idf/pthread/CMakeFiles/__idf_pthread.dir/__idf_pthread.pdb + TARGET_PDB = esp-idf/pthread/libpthread.pdb +build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj: C_COMPILER____idf_pthread /home/mithras/esp/esp-idf/components/pthread/pthread_cond_var.c || cmake_object_order_depends_target___idf_pthread + DEP_FILE = esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/pthread/CMakeFiles/__idf_pthread.dir + OBJECT_FILE_DIR = esp-idf/pthread/CMakeFiles/__idf_pthread.dir + TARGET_COMPILE_PDB = esp-idf/pthread/CMakeFiles/__idf_pthread.dir/__idf_pthread.pdb + TARGET_PDB = esp-idf/pthread/libpthread.pdb +build esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj: C_COMPILER____idf_pthread /home/mithras/esp/esp-idf/components/pthread/pthread_local_storage.c || cmake_object_order_depends_target___idf_pthread + DEP_FILE = esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/pthread/CMakeFiles/__idf_pthread.dir + OBJECT_FILE_DIR = esp-idf/pthread/CMakeFiles/__idf_pthread.dir + TARGET_COMPILE_PDB = esp-idf/pthread/CMakeFiles/__idf_pthread.dir/__idf_pthread.pdb + TARGET_PDB = esp-idf/pthread/libpthread.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_pthread + + +############################################# +# Link the static library esp-idf/pthread/libpthread.a + +build esp-idf/pthread/libpthread.a: CXX_STATIC_LIBRARY_LINKER____idf_pthread esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj || esp-idf/espcoredump/libespcoredump.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/pthread/CMakeFiles/__idf_pthread.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/pthread/CMakeFiles/__idf_pthread.dir/__idf_pthread.pdb + TARGET_FILE = esp-idf/pthread/libpthread.a + TARGET_PDB = esp-idf/pthread/libpthread.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/pthread/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/pthread && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/pthread/rebuild_cache: phony esp-idf/pthread/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/pthread/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/pthread/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/pthread/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/pthread && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/pthread/install/local: phony esp-idf/pthread/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/pthread/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/pthread/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/pthread && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/pthread/install: phony esp-idf/pthread/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/espcoredump/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/espcoredump/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/espcoredump && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/espcoredump/install/strip: phony esp-idf/espcoredump/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/espcoredump/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/espcoredump && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/espcoredump/edit_cache: phony esp-idf/espcoredump/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_espcoredump + + +############################################# +# Order-only phony target for __idf_espcoredump + +build cmake_object_order_depends_target___idf_espcoredump: phony || cmake_object_order_depends_target___idf_perfmon +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj: C_COMPILER____idf_espcoredump /home/mithras/esp/esp-idf/components/espcoredump/src/core_dump_common.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/espcoredump/include_core_dump -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src + TARGET_COMPILE_PDB = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/__idf_espcoredump.pdb + TARGET_PDB = esp-idf/espcoredump/libespcoredump.pdb +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj: C_COMPILER____idf_espcoredump /home/mithras/esp/esp-idf/components/espcoredump/src/core_dump_flash.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/espcoredump/include_core_dump -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src + TARGET_COMPILE_PDB = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/__idf_espcoredump.pdb + TARGET_PDB = esp-idf/espcoredump/libespcoredump.pdb +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_port.c.obj: C_COMPILER____idf_espcoredump /home/mithras/esp/esp-idf/components/espcoredump/src/core_dump_port.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_port.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/espcoredump/include_core_dump -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src + TARGET_COMPILE_PDB = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/__idf_espcoredump.pdb + TARGET_PDB = esp-idf/espcoredump/libespcoredump.pdb +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj: C_COMPILER____idf_espcoredump /home/mithras/esp/esp-idf/components/espcoredump/src/core_dump_uart.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/espcoredump/include_core_dump -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src + TARGET_COMPILE_PDB = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/__idf_espcoredump.pdb + TARGET_PDB = esp-idf/espcoredump/libespcoredump.pdb +build esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj: C_COMPILER____idf_espcoredump /home/mithras/esp/esp-idf/components/espcoredump/src/core_dump_elf.c || cmake_object_order_depends_target___idf_espcoredump + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/espcoredump/include_core_dump -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir + OBJECT_FILE_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src + TARGET_COMPILE_PDB = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/__idf_espcoredump.pdb + TARGET_PDB = esp-idf/espcoredump/libespcoredump.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_espcoredump + + +############################################# +# Link the static library esp-idf/espcoredump/libespcoredump.a + +build esp-idf/espcoredump/libespcoredump.a: CXX_STATIC_LIBRARY_LINKER____idf_espcoredump esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_port.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj || esp-idf/perfmon/libperfmon.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/__idf_espcoredump.pdb + TARGET_FILE = esp-idf/espcoredump/libespcoredump.a + TARGET_PDB = esp-idf/espcoredump/libespcoredump.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/espcoredump/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/espcoredump && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/espcoredump/rebuild_cache: phony esp-idf/espcoredump/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/espcoredump/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/espcoredump/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/espcoredump/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/espcoredump && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/espcoredump/install/local: phony esp-idf/espcoredump/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/espcoredump/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/espcoredump/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/espcoredump && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/espcoredump/install: phony esp-idf/espcoredump/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/perfmon/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/perfmon/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/perfmon && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/perfmon/install/strip: phony esp-idf/perfmon/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/perfmon/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/perfmon && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/perfmon/edit_cache: phony esp-idf/perfmon/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_perfmon + + +############################################# +# Order-only phony target for __idf_perfmon + +build cmake_object_order_depends_target___idf_perfmon: phony || cmake_object_order_depends_target___idf_esp32 +build esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj: C_COMPILER____idf_perfmon /home/mithras/esp/esp-idf/components/perfmon/xtensa_perfmon_access.c || cmake_object_order_depends_target___idf_perfmon + DEP_FILE = esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/perfmon/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir + OBJECT_FILE_DIR = esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir + TARGET_COMPILE_PDB = esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/__idf_perfmon.pdb + TARGET_PDB = esp-idf/perfmon/libperfmon.pdb +build esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj: C_COMPILER____idf_perfmon /home/mithras/esp/esp-idf/components/perfmon/xtensa_perfmon_apis.c || cmake_object_order_depends_target___idf_perfmon + DEP_FILE = esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/perfmon/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir + OBJECT_FILE_DIR = esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir + TARGET_COMPILE_PDB = esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/__idf_perfmon.pdb + TARGET_PDB = esp-idf/perfmon/libperfmon.pdb +build esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj: C_COMPILER____idf_perfmon /home/mithras/esp/esp-idf/components/perfmon/xtensa_perfmon_masks.c || cmake_object_order_depends_target___idf_perfmon + DEP_FILE = esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/perfmon/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir + OBJECT_FILE_DIR = esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir + TARGET_COMPILE_PDB = esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/__idf_perfmon.pdb + TARGET_PDB = esp-idf/perfmon/libperfmon.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_perfmon + + +############################################# +# Link the static library esp-idf/perfmon/libperfmon.a + +build esp-idf/perfmon/libperfmon.a: CXX_STATIC_LIBRARY_LINKER____idf_perfmon esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj || esp-idf/esp32/libesp32.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/__idf_perfmon.pdb + TARGET_FILE = esp-idf/perfmon/libperfmon.a + TARGET_PDB = esp-idf/perfmon/libperfmon.pdb + +############################################# +# Utility command for install + +build esp-idf/perfmon/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/perfmon/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/perfmon && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/perfmon/install: phony esp-idf/perfmon/CMakeFiles/install.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/perfmon/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/perfmon && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/perfmon/rebuild_cache: phony esp-idf/perfmon/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/perfmon/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/perfmon/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/perfmon/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/perfmon && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/perfmon/install/local: phony esp-idf/perfmon/CMakeFiles/install/local.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/esp32/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp32/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp32 && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/esp32/install/strip: phony esp-idf/esp32/CMakeFiles/install/strip.util + +############################################# +# Utility command for install/local + +build esp-idf/esp32/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp32/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp32 && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/esp32/install/local: phony esp-idf/esp32/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/esp32/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp32/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp32 && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/esp32/install: phony esp-idf/esp32/CMakeFiles/install.util + +############################################# +# Utility command for esp32_linker_script + +build esp-idf/esp32/esp32_linker_script: phony esp-idf/esp32/CMakeFiles/esp32_linker_script esp-idf/esp32/esp32_out.ld + +############################################# +# Utility command for edit_cache + +build esp-idf/esp32/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp32 && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/esp32/edit_cache: phony esp-idf/esp32/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp32 + + +############################################# +# Order-only phony target for __idf_esp32 + +build cmake_object_order_depends_target___idf_esp32: phony || cmake_object_order_depends_target___idf_esp_common +build esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cache_err_int.c.obj: C_COMPILER____idf_esp32 /home/mithras/esp/esp-idf/components/esp32/cache_err_int.c || cmake_object_order_depends_target___idf_esp32 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cache_err_int.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include + OBJECT_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + OBJECT_FILE_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + TARGET_COMPILE_PDB = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/__idf_esp32.pdb + TARGET_PDB = esp-idf/esp32/libesp32.pdb +build esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cache_sram_mmu.c.obj: C_COMPILER____idf_esp32 /home/mithras/esp/esp-idf/components/esp32/cache_sram_mmu.c || cmake_object_order_depends_target___idf_esp32 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cache_sram_mmu.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include + OBJECT_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + OBJECT_FILE_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + TARGET_COMPILE_PDB = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/__idf_esp32.pdb + TARGET_PDB = esp-idf/esp32/libesp32.pdb +build esp-idf/esp32/CMakeFiles/__idf_esp32.dir/clk.c.obj: C_COMPILER____idf_esp32 /home/mithras/esp/esp-idf/components/esp32/clk.c || cmake_object_order_depends_target___idf_esp32 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/clk.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include + OBJECT_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + OBJECT_FILE_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + TARGET_COMPILE_PDB = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/__idf_esp32.pdb + TARGET_PDB = esp-idf/esp32/libesp32.pdb +build esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cpu_start.c.obj: C_COMPILER____idf_esp32 /home/mithras/esp/esp-idf/components/esp32/cpu_start.c || cmake_object_order_depends_target___idf_esp32 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cpu_start.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -fno-stack-protector + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include + OBJECT_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + OBJECT_FILE_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + TARGET_COMPILE_PDB = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/__idf_esp32.pdb + TARGET_PDB = esp-idf/esp32/libesp32.pdb +build esp-idf/esp32/CMakeFiles/__idf_esp32.dir/crosscore_int.c.obj: C_COMPILER____idf_esp32 /home/mithras/esp/esp-idf/components/esp32/crosscore_int.c || cmake_object_order_depends_target___idf_esp32 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/crosscore_int.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include + OBJECT_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + OBJECT_FILE_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + TARGET_COMPILE_PDB = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/__idf_esp32.pdb + TARGET_PDB = esp-idf/esp32/libesp32.pdb +build esp-idf/esp32/CMakeFiles/__idf_esp32.dir/dport_access.c.obj: C_COMPILER____idf_esp32 /home/mithras/esp/esp-idf/components/esp32/dport_access.c || cmake_object_order_depends_target___idf_esp32 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/dport_access.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include + OBJECT_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + OBJECT_FILE_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + TARGET_COMPILE_PDB = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/__idf_esp32.pdb + TARGET_PDB = esp-idf/esp32/libesp32.pdb +build esp-idf/esp32/CMakeFiles/__idf_esp32.dir/dport_panic_highint_hdl.S.obj: ASM_COMPILER____idf_esp32 /home/mithras/esp/esp-idf/components/esp32/dport_panic_highint_hdl.S || cmake_object_order_depends_target___idf_esp32 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/dport_panic_highint_hdl.S.obj.d + FLAGS = -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include + OBJECT_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + OBJECT_FILE_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + TARGET_COMPILE_PDB = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/__idf_esp32.pdb + TARGET_PDB = esp-idf/esp32/libesp32.pdb +build esp-idf/esp32/CMakeFiles/__idf_esp32.dir/esp_himem.c.obj: C_COMPILER____idf_esp32 /home/mithras/esp/esp-idf/components/esp32/esp_himem.c || cmake_object_order_depends_target___idf_esp32 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/esp_himem.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include + OBJECT_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + OBJECT_FILE_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + TARGET_COMPILE_PDB = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/__idf_esp32.pdb + TARGET_PDB = esp-idf/esp32/libesp32.pdb +build esp-idf/esp32/CMakeFiles/__idf_esp32.dir/hw_random.c.obj: C_COMPILER____idf_esp32 /home/mithras/esp/esp-idf/components/esp32/hw_random.c || cmake_object_order_depends_target___idf_esp32 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/hw_random.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include + OBJECT_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + OBJECT_FILE_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + TARGET_COMPILE_PDB = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/__idf_esp32.pdb + TARGET_PDB = esp-idf/esp32/libesp32.pdb +build esp-idf/esp32/CMakeFiles/__idf_esp32.dir/int_wdt.c.obj: C_COMPILER____idf_esp32 /home/mithras/esp/esp-idf/components/esp32/int_wdt.c || cmake_object_order_depends_target___idf_esp32 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/int_wdt.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include + OBJECT_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + OBJECT_FILE_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + TARGET_COMPILE_PDB = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/__idf_esp32.pdb + TARGET_PDB = esp-idf/esp32/libesp32.pdb +build esp-idf/esp32/CMakeFiles/__idf_esp32.dir/intr_alloc.c.obj: C_COMPILER____idf_esp32 /home/mithras/esp/esp-idf/components/esp32/intr_alloc.c || cmake_object_order_depends_target___idf_esp32 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/intr_alloc.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include + OBJECT_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + OBJECT_FILE_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + TARGET_COMPILE_PDB = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/__idf_esp32.pdb + TARGET_PDB = esp-idf/esp32/libesp32.pdb +build esp-idf/esp32/CMakeFiles/__idf_esp32.dir/panic.c.obj: C_COMPILER____idf_esp32 /home/mithras/esp/esp-idf/components/esp32/panic.c || cmake_object_order_depends_target___idf_esp32 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/panic.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include + OBJECT_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + OBJECT_FILE_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + TARGET_COMPILE_PDB = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/__idf_esp32.pdb + TARGET_PDB = esp-idf/esp32/libesp32.pdb +build esp-idf/esp32/CMakeFiles/__idf_esp32.dir/pm_esp32.c.obj: C_COMPILER____idf_esp32 /home/mithras/esp/esp-idf/components/esp32/pm_esp32.c || cmake_object_order_depends_target___idf_esp32 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/pm_esp32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include + OBJECT_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + OBJECT_FILE_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + TARGET_COMPILE_PDB = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/__idf_esp32.pdb + TARGET_PDB = esp-idf/esp32/libesp32.pdb +build esp-idf/esp32/CMakeFiles/__idf_esp32.dir/pm_trace.c.obj: C_COMPILER____idf_esp32 /home/mithras/esp/esp-idf/components/esp32/pm_trace.c || cmake_object_order_depends_target___idf_esp32 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/pm_trace.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include + OBJECT_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + OBJECT_FILE_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + TARGET_COMPILE_PDB = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/__idf_esp32.pdb + TARGET_PDB = esp-idf/esp32/libesp32.pdb +build esp-idf/esp32/CMakeFiles/__idf_esp32.dir/reset_reason.c.obj: C_COMPILER____idf_esp32 /home/mithras/esp/esp-idf/components/esp32/reset_reason.c || cmake_object_order_depends_target___idf_esp32 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/reset_reason.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include + OBJECT_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + OBJECT_FILE_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + TARGET_COMPILE_PDB = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/__idf_esp32.pdb + TARGET_PDB = esp-idf/esp32/libesp32.pdb +build esp-idf/esp32/CMakeFiles/__idf_esp32.dir/sleep_modes.c.obj: C_COMPILER____idf_esp32 /home/mithras/esp/esp-idf/components/esp32/sleep_modes.c || cmake_object_order_depends_target___idf_esp32 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/sleep_modes.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include + OBJECT_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + OBJECT_FILE_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + TARGET_COMPILE_PDB = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/__idf_esp32.pdb + TARGET_PDB = esp-idf/esp32/libesp32.pdb +build esp-idf/esp32/CMakeFiles/__idf_esp32.dir/spiram.c.obj: C_COMPILER____idf_esp32 /home/mithras/esp/esp-idf/components/esp32/spiram.c || cmake_object_order_depends_target___idf_esp32 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/spiram.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include + OBJECT_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + OBJECT_FILE_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + TARGET_COMPILE_PDB = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/__idf_esp32.pdb + TARGET_PDB = esp-idf/esp32/libesp32.pdb +build esp-idf/esp32/CMakeFiles/__idf_esp32.dir/spiram_psram.c.obj: C_COMPILER____idf_esp32 /home/mithras/esp/esp-idf/components/esp32/spiram_psram.c || cmake_object_order_depends_target___idf_esp32 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/spiram_psram.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include + OBJECT_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + OBJECT_FILE_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + TARGET_COMPILE_PDB = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/__idf_esp32.pdb + TARGET_PDB = esp-idf/esp32/libesp32.pdb +build esp-idf/esp32/CMakeFiles/__idf_esp32.dir/system_api_esp32.c.obj: C_COMPILER____idf_esp32 /home/mithras/esp/esp-idf/components/esp32/system_api_esp32.c || cmake_object_order_depends_target___idf_esp32 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/system_api_esp32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include + OBJECT_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + OBJECT_FILE_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + TARGET_COMPILE_PDB = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/__idf_esp32.pdb + TARGET_PDB = esp-idf/esp32/libesp32.pdb +build esp-idf/esp32/CMakeFiles/__idf_esp32.dir/task_wdt.c.obj: C_COMPILER____idf_esp32 /home/mithras/esp/esp-idf/components/esp32/task_wdt.c || cmake_object_order_depends_target___idf_esp32 + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/task_wdt.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include + OBJECT_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + OBJECT_FILE_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + TARGET_COMPILE_PDB = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/__idf_esp32.pdb + TARGET_PDB = esp-idf/esp32/libesp32.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp32 + + +############################################# +# Link the static library esp-idf/esp32/libesp32.a + +build esp-idf/esp32/libesp32.a: CXX_STATIC_LIBRARY_LINKER____idf_esp32 esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cache_err_int.c.obj esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cache_sram_mmu.c.obj esp-idf/esp32/CMakeFiles/__idf_esp32.dir/clk.c.obj esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cpu_start.c.obj esp-idf/esp32/CMakeFiles/__idf_esp32.dir/crosscore_int.c.obj esp-idf/esp32/CMakeFiles/__idf_esp32.dir/dport_access.c.obj esp-idf/esp32/CMakeFiles/__idf_esp32.dir/dport_panic_highint_hdl.S.obj esp-idf/esp32/CMakeFiles/__idf_esp32.dir/esp_himem.c.obj esp-idf/esp32/CMakeFiles/__idf_esp32.dir/hw_random.c.obj esp-idf/esp32/CMakeFiles/__idf_esp32.dir/int_wdt.c.obj esp-idf/esp32/CMakeFiles/__idf_esp32.dir/intr_alloc.c.obj esp-idf/esp32/CMakeFiles/__idf_esp32.dir/panic.c.obj esp-idf/esp32/CMakeFiles/__idf_esp32.dir/pm_esp32.c.obj esp-idf/esp32/CMakeFiles/__idf_esp32.dir/pm_trace.c.obj esp-idf/esp32/CMakeFiles/__idf_esp32.dir/reset_reason.c.obj esp-idf/esp32/CMakeFiles/__idf_esp32.dir/sleep_modes.c.obj esp-idf/esp32/CMakeFiles/__idf_esp32.dir/spiram.c.obj esp-idf/esp32/CMakeFiles/__idf_esp32.dir/spiram_psram.c.obj esp-idf/esp32/CMakeFiles/__idf_esp32.dir/system_api_esp32.c.obj esp-idf/esp32/CMakeFiles/__idf_esp32.dir/task_wdt.c.obj || esp-idf/esp_common/libesp_common.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/esp32/CMakeFiles/__idf_esp32.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/esp32/CMakeFiles/__idf_esp32.dir/__idf_esp32.pdb + TARGET_FILE = esp-idf/esp32/libesp32.a + TARGET_PDB = esp-idf/esp32/libesp32.pdb + +############################################# +# Utility command for list_install_components + +build esp-idf/esp32/list_install_components: phony + +############################################# +# Utility command for __ldgen_output_esp32.project.ld + +build esp-idf/esp32/__ldgen_output_esp32.project.ld: phony esp-idf/esp32/CMakeFiles/__ldgen_output_esp32.project.ld esp-idf/esp32/ld/esp32.project.ld esp-idf/asio/libasio.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl/liblvgl.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.a esp-idf/main/libmain.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/openssl/libopenssl.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/sdmmc/libsdmmc.a esp-idf/spiffs/libspiffs.a esp-idf/unity/libunity.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/xtensa/libxtensa.a + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp32/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp32 && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/esp32/rebuild_cache: phony esp-idf/esp32/CMakeFiles/rebuild_cache.util + +############################################# +# Phony custom command for esp-idf/esp32/CMakeFiles/esp32_linker_script + +build esp-idf/esp32/CMakeFiles/esp32_linker_script: phony esp-idf/esp32/esp32_out.ld + +############################################# +# Custom command for esp-idf/esp32/esp32_out.ld + +build esp-idf/esp32/esp32_out.ld: CUSTOM_COMMAND config/sdkconfig.h + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp32 && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -C -P -x c -E -o esp32_out.ld -I /home/mithras/Documents/bakalarka/build/config /home/mithras/esp/esp-idf/components/esp32/ld/esp32.ld + DESC = Generating linker script... + restat = 1 + +############################################# +# Phony custom command for esp-idf/esp32/CMakeFiles/__ldgen_output_esp32.project.ld + +build esp-idf/esp32/CMakeFiles/__ldgen_output_esp32.project.ld: phony esp-idf/esp32/ld/esp32.project.ld || esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/asio/libasio.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp32/esp32_linker_script esp-idf/esp32/libesp32.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/log/liblog.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl/liblvgl.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nghttp/libnghttp.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openssl/libopenssl.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a + +############################################# +# Custom command for esp-idf/esp32/ld/esp32.project.ld + +build esp-idf/esp32/ld/esp32.project.ld: CUSTOM_COMMAND /home/mithras/esp/esp-idf/components/esp32/ld/esp32.project.ld.in /home/mithras/esp/esp-idf/components/xtensa/linker.lf /home/mithras/esp/esp-idf/components/soc/linker.lf /home/mithras/esp/esp-idf/components/esp_event/linker.lf /home/mithras/esp/esp-idf/components/spi_flash/linker.lf /home/mithras/esp/esp-idf/components/esp_wifi/linker.lf /home/mithras/esp/esp-idf/components/lwip/linker.lf /home/mithras/esp/esp-idf/components/log/linker.lf /home/mithras/esp/esp-idf/components/heap/linker.lf /home/mithras/esp/esp-idf/components/esp_ringbuf/linker.lf /home/mithras/esp/esp-idf/components/espcoredump/linker.lf /home/mithras/esp/esp-idf/components/esp32/linker.lf /home/mithras/esp/esp-idf/components/esp32/ld/esp32_fragments.lf /home/mithras/esp/esp-idf/components/freertos/linker.lf /home/mithras/esp/esp-idf/components/newlib/newlib.lf /home/mithras/esp/esp-idf/components/app_trace/linker.lf /home/mithras/esp/esp-idf/components/esp_gdbstub/linker.lf esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_event/libesp_event.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/lwip/liblwip.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/esp32/libesp32.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/freertos/libfreertos.a esp-idf/vfs/libvfs.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/app_trace/libapp_trace.a esp-idf/asio/libasio.a esp-idf/cbor/libcbor.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/mdns/libmdns.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/expat/libexpat.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/fatfs/libfatfs.a esp-idf/freemodbus/libfreemodbus.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/mqtt/libmqtt.a esp-idf/openssl/libopenssl.a esp-idf/spiffs/libspiffs.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/main/libmain.a esp-idf/ca/libca.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/files/libfiles.a esp-idf/wifi/libwifi.a esp-idf/https_server/libhttps_server.a esp-idf/lvgl/liblvgl.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.a ../sdkconfig || esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/asio/libasio.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp32/esp32_linker_script esp-idf/esp32/libesp32.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/log/liblog.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl/liblvgl.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nghttp/libnghttp.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openssl/libopenssl.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp32 && /home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/tools/ldgen/ldgen.py --config /home/mithras/Documents/bakalarka/sdkconfig --fragments /home/mithras/esp/esp-idf/components/xtensa/linker.lf /home/mithras/esp/esp-idf/components/soc/linker.lf /home/mithras/esp/esp-idf/components/esp_event/linker.lf /home/mithras/esp/esp-idf/components/spi_flash/linker.lf /home/mithras/esp/esp-idf/components/esp_wifi/linker.lf /home/mithras/esp/esp-idf/components/lwip/linker.lf /home/mithras/esp/esp-idf/components/log/linker.lf /home/mithras/esp/esp-idf/components/heap/linker.lf /home/mithras/esp/esp-idf/components/esp_ringbuf/linker.lf /home/mithras/esp/esp-idf/components/espcoredump/linker.lf /home/mithras/esp/esp-idf/components/esp32/linker.lf /home/mithras/esp/esp-idf/components/esp32/ld/esp32_fragments.lf /home/mithras/esp/esp-idf/components/freertos/linker.lf /home/mithras/esp/esp-idf/components/newlib/newlib.lf /home/mithras/esp/esp-idf/components/app_trace/linker.lf /home/mithras/esp/esp-idf/components/esp_gdbstub/linker.lf --input /home/mithras/esp/esp-idf/components/esp32/ld/esp32.project.ld.in --output /home/mithras/Documents/bakalarka/build/esp-idf/esp32/ld/esp32.project.ld --kconfig /home/mithras/esp/esp-idf/Kconfig --env-file /home/mithras/Documents/bakalarka/build/config.env --libraries-file /home/mithras/Documents/bakalarka/build/ldgen_libraries --objdump /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-objdump + DESC = Generating ld/esp32.project.ld + restat = 1 +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_common/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_common/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_common && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/esp_common/install/strip: phony esp-idf/esp_common/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_common/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_common && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/esp_common/edit_cache: phony esp-idf/esp_common/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_common + + +############################################# +# Order-only phony target for __idf_esp_common + +build cmake_object_order_depends_target___idf_esp_common: phony || cmake_object_order_depends_target___idf_esp_timer +build esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/brownout.c.obj: C_COMPILER____idf_esp_common /home/mithras/esp/esp-idf/components/esp_common/src/brownout.c || cmake_object_order_depends_target___idf_esp_common + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/brownout.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/ulp/include -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant + OBJECT_DIR = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir + OBJECT_FILE_DIR = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/__idf_esp_common.pdb + TARGET_PDB = esp-idf/esp_common/libesp_common.pdb +build esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/dbg_stubs.c.obj: C_COMPILER____idf_esp_common /home/mithras/esp/esp-idf/components/esp_common/src/dbg_stubs.c || cmake_object_order_depends_target___idf_esp_common + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/dbg_stubs.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/ulp/include -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant + OBJECT_DIR = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir + OBJECT_FILE_DIR = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/__idf_esp_common.pdb + TARGET_PDB = esp-idf/esp_common/libesp_common.pdb +build esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj: C_COMPILER____idf_esp_common /home/mithras/esp/esp-idf/components/esp_common/src/esp_err_to_name.c || cmake_object_order_depends_target___idf_esp_common + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/ulp/include -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant + OBJECT_DIR = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir + OBJECT_FILE_DIR = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/__idf_esp_common.pdb + TARGET_PDB = esp-idf/esp_common/libesp_common.pdb +build esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/freertos_hooks.c.obj: C_COMPILER____idf_esp_common /home/mithras/esp/esp-idf/components/esp_common/src/freertos_hooks.c || cmake_object_order_depends_target___idf_esp_common + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/freertos_hooks.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/ulp/include -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant + OBJECT_DIR = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir + OBJECT_FILE_DIR = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/__idf_esp_common.pdb + TARGET_PDB = esp-idf/esp_common/libesp_common.pdb +build esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/mac_addr.c.obj: C_COMPILER____idf_esp_common /home/mithras/esp/esp-idf/components/esp_common/src/mac_addr.c || cmake_object_order_depends_target___idf_esp_common + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/mac_addr.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/ulp/include -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant + OBJECT_DIR = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir + OBJECT_FILE_DIR = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/__idf_esp_common.pdb + TARGET_PDB = esp-idf/esp_common/libesp_common.pdb +build esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/pm_locks.c.obj: C_COMPILER____idf_esp_common /home/mithras/esp/esp-idf/components/esp_common/src/pm_locks.c || cmake_object_order_depends_target___idf_esp_common + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/pm_locks.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/ulp/include -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant + OBJECT_DIR = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir + OBJECT_FILE_DIR = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/__idf_esp_common.pdb + TARGET_PDB = esp-idf/esp_common/libesp_common.pdb +build esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/stack_check.c.obj: C_COMPILER____idf_esp_common /home/mithras/esp/esp-idf/components/esp_common/src/stack_check.c || cmake_object_order_depends_target___idf_esp_common + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/stack_check.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -fno-stack-protector + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/ulp/include -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant + OBJECT_DIR = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir + OBJECT_FILE_DIR = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/__idf_esp_common.pdb + TARGET_PDB = esp-idf/esp_common/libesp_common.pdb +build esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/system_api.c.obj: C_COMPILER____idf_esp_common /home/mithras/esp/esp-idf/components/esp_common/src/system_api.c || cmake_object_order_depends_target___idf_esp_common + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/system_api.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/ulp/include -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant + OBJECT_DIR = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir + OBJECT_FILE_DIR = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/__idf_esp_common.pdb + TARGET_PDB = esp-idf/esp_common/libesp_common.pdb +build esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/ipc.c.obj: C_COMPILER____idf_esp_common /home/mithras/esp/esp-idf/components/esp_common/src/ipc.c || cmake_object_order_depends_target___idf_esp_common + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/ipc.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/ulp/include -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant + OBJECT_DIR = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir + OBJECT_FILE_DIR = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/__idf_esp_common.pdb + TARGET_PDB = esp-idf/esp_common/libesp_common.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_common + + +############################################# +# Link the static library esp-idf/esp_common/libesp_common.a + +build esp-idf/esp_common/libesp_common.a: CXX_STATIC_LIBRARY_LINKER____idf_esp_common esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/brownout.c.obj esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/dbg_stubs.c.obj esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/freertos_hooks.c.obj esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/mac_addr.c.obj esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/pm_locks.c.obj esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/stack_check.c.obj esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/system_api.c.obj esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/ipc.c.obj || esp-idf/esp_timer/libesp_timer.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/__idf_esp_common.pdb + TARGET_FILE = esp-idf/esp_common/libesp_common.a + TARGET_PDB = esp-idf/esp_common/libesp_common.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_common/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_common && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/esp_common/rebuild_cache: phony esp-idf/esp_common/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_common/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/esp_common/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_common/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_common && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/esp_common/install/local: phony esp-idf/esp_common/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/esp_common/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_common/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_common && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/esp_common/install: phony esp-idf/esp_common/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_timer/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_timer/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_timer && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/esp_timer/install/strip: phony esp-idf/esp_timer/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_timer/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_timer && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/esp_timer/edit_cache: phony esp-idf/esp_timer/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_timer + + +############################################# +# Order-only phony target for __idf_esp_timer + +build cmake_object_order_depends_target___idf_esp_timer: phony || cmake_object_order_depends_target___idf_freertos +build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj: C_COMPILER____idf_esp_timer /home/mithras/esp/esp-idf/components/esp_timer/src/esp_timer.c || cmake_object_order_depends_target___idf_esp_timer + DEP_FILE = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/esp_timer/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir + OBJECT_FILE_DIR = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/__idf_esp_timer.pdb + TARGET_PDB = esp-idf/esp_timer/libesp_timer.pdb +build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj: C_COMPILER____idf_esp_timer /home/mithras/esp/esp-idf/components/esp_timer/src/ets_timer_legacy.c || cmake_object_order_depends_target___idf_esp_timer + DEP_FILE = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/esp_timer/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir + OBJECT_FILE_DIR = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/__idf_esp_timer.pdb + TARGET_PDB = esp-idf/esp_timer/libesp_timer.pdb +build esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_lac.c.obj: C_COMPILER____idf_esp_timer /home/mithras/esp/esp-idf/components/esp_timer/src/esp_timer_impl_lac.c || cmake_object_order_depends_target___idf_esp_timer + DEP_FILE = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_lac.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/esp_timer/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir + OBJECT_FILE_DIR = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/__idf_esp_timer.pdb + TARGET_PDB = esp-idf/esp_timer/libesp_timer.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_timer + + +############################################# +# Link the static library esp-idf/esp_timer/libesp_timer.a + +build esp-idf/esp_timer/libesp_timer.a: CXX_STATIC_LIBRARY_LINKER____idf_esp_timer esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_lac.c.obj || esp-idf/freertos/libfreertos.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/__idf_esp_timer.pdb + TARGET_FILE = esp-idf/esp_timer/libesp_timer.a + TARGET_PDB = esp-idf/esp_timer/libesp_timer.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_timer/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_timer && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/esp_timer/rebuild_cache: phony esp-idf/esp_timer/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_timer/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/esp_timer/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_timer/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_timer && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/esp_timer/install/local: phony esp-idf/esp_timer/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/esp_timer/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_timer/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_timer && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/esp_timer/install: phony esp-idf/esp_timer/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/freertos/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/freertos/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/freertos && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/freertos/install/strip: phony esp-idf/freertos/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/freertos/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/freertos && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/freertos/edit_cache: phony esp-idf/freertos/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_freertos + + +############################################# +# Order-only phony target for __idf_freertos + +build cmake_object_order_depends_target___idf_freertos: phony || cmake_object_order_depends_target___idf_vfs +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/port.c.obj: C_COMPILER____idf_freertos /home/mithras/esp/esp-idf/components/freertos/xtensa/port.c || cmake_object_order_depends_target___idf_freertos + DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/port.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/freertos/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa -I/home/mithras/esp/esp-idf/components/freertos -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa + TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb + TARGET_PDB = esp-idf/freertos/libfreertos.pdb +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/portasm.S.obj: ASM_COMPILER____idf_freertos /home/mithras/esp/esp-idf/components/freertos/xtensa/portasm.S || cmake_object_order_depends_target___idf_freertos + DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/portasm.S.obj.d + FLAGS = -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/freertos/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa -I/home/mithras/esp/esp-idf/components/freertos -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa + TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb + TARGET_PDB = esp-idf/freertos/libfreertos.pdb +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_context.S.obj: ASM_COMPILER____idf_freertos /home/mithras/esp/esp-idf/components/freertos/xtensa/xtensa_context.S || cmake_object_order_depends_target___idf_freertos + DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_context.S.obj.d + FLAGS = -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/freertos/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa -I/home/mithras/esp/esp-idf/components/freertos -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa + TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb + TARGET_PDB = esp-idf/freertos/libfreertos.pdb +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_init.c.obj: C_COMPILER____idf_freertos /home/mithras/esp/esp-idf/components/freertos/xtensa/xtensa_init.c || cmake_object_order_depends_target___idf_freertos + DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_init.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/freertos/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa -I/home/mithras/esp/esp-idf/components/freertos -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa + TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb + TARGET_PDB = esp-idf/freertos/libfreertos.pdb +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_intr_asm.S.obj: ASM_COMPILER____idf_freertos /home/mithras/esp/esp-idf/components/freertos/xtensa/xtensa_intr_asm.S || cmake_object_order_depends_target___idf_freertos + DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_intr_asm.S.obj.d + FLAGS = -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/freertos/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa -I/home/mithras/esp/esp-idf/components/freertos -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa + TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb + TARGET_PDB = esp-idf/freertos/libfreertos.pdb +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_intr.c.obj: C_COMPILER____idf_freertos /home/mithras/esp/esp-idf/components/freertos/xtensa/xtensa_intr.c || cmake_object_order_depends_target___idf_freertos + DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_intr.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/freertos/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa -I/home/mithras/esp/esp-idf/components/freertos -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa + TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb + TARGET_PDB = esp-idf/freertos/libfreertos.pdb +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_overlay_os_hook.c.obj: C_COMPILER____idf_freertos /home/mithras/esp/esp-idf/components/freertos/xtensa/xtensa_overlay_os_hook.c || cmake_object_order_depends_target___idf_freertos + DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_overlay_os_hook.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/freertos/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa -I/home/mithras/esp/esp-idf/components/freertos -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa + TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb + TARGET_PDB = esp-idf/freertos/libfreertos.pdb +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_vector_defaults.S.obj: ASM_COMPILER____idf_freertos /home/mithras/esp/esp-idf/components/freertos/xtensa/xtensa_vector_defaults.S || cmake_object_order_depends_target___idf_freertos + DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_vector_defaults.S.obj.d + FLAGS = -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/freertos/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa -I/home/mithras/esp/esp-idf/components/freertos -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa + TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb + TARGET_PDB = esp-idf/freertos/libfreertos.pdb +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_vectors.S.obj: ASM_COMPILER____idf_freertos /home/mithras/esp/esp-idf/components/freertos/xtensa/xtensa_vectors.S || cmake_object_order_depends_target___idf_freertos + DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_vectors.S.obj.d + FLAGS = -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/freertos/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa -I/home/mithras/esp/esp-idf/components/freertos -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa + TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb + TARGET_PDB = esp-idf/freertos/libfreertos.pdb +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/croutine.c.obj: C_COMPILER____idf_freertos /home/mithras/esp/esp-idf/components/freertos/croutine.c || cmake_object_order_depends_target___idf_freertos + DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/croutine.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/freertos/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa -I/home/mithras/esp/esp-idf/components/freertos -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir + TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb + TARGET_PDB = esp-idf/freertos/libfreertos.pdb +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/event_groups.c.obj: C_COMPILER____idf_freertos /home/mithras/esp/esp-idf/components/freertos/event_groups.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -D_ESP_FREERTOS_INTERNAL + DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/event_groups.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/freertos/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa -I/home/mithras/esp/esp-idf/components/freertos -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir + TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb + TARGET_PDB = esp-idf/freertos/libfreertos.pdb +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-openocd.c.obj: C_COMPILER____idf_freertos /home/mithras/esp/esp-idf/components/freertos/FreeRTOS-openocd.c || cmake_object_order_depends_target___idf_freertos + DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-openocd.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/freertos/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa -I/home/mithras/esp/esp-idf/components/freertos -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir + TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb + TARGET_PDB = esp-idf/freertos/libfreertos.pdb +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/list.c.obj: C_COMPILER____idf_freertos /home/mithras/esp/esp-idf/components/freertos/list.c || cmake_object_order_depends_target___idf_freertos + DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/list.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/freertos/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa -I/home/mithras/esp/esp-idf/components/freertos -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir + TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb + TARGET_PDB = esp-idf/freertos/libfreertos.pdb +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/queue.c.obj: C_COMPILER____idf_freertos /home/mithras/esp/esp-idf/components/freertos/queue.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -D_ESP_FREERTOS_INTERNAL + DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/queue.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/freertos/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa -I/home/mithras/esp/esp-idf/components/freertos -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir + TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb + TARGET_PDB = esp-idf/freertos/libfreertos.pdb +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/tasks.c.obj: C_COMPILER____idf_freertos /home/mithras/esp/esp-idf/components/freertos/tasks.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -D_ESP_FREERTOS_INTERNAL + DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/tasks.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/freertos/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa -I/home/mithras/esp/esp-idf/components/freertos -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir + TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb + TARGET_PDB = esp-idf/freertos/libfreertos.pdb +build esp-idf/freertos/CMakeFiles/__idf_freertos.dir/timers.c.obj: C_COMPILER____idf_freertos /home/mithras/esp/esp-idf/components/freertos/timers.c || cmake_object_order_depends_target___idf_freertos + DEFINES = -D_ESP_FREERTOS_INTERNAL + DEP_FILE = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/timers.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/freertos/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa -I/home/mithras/esp/esp-idf/components/freertos -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir + OBJECT_FILE_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir + TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb + TARGET_PDB = esp-idf/freertos/libfreertos.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_freertos + + +############################################# +# Link the static library esp-idf/freertos/libfreertos.a + +build esp-idf/freertos/libfreertos.a: CXX_STATIC_LIBRARY_LINKER____idf_freertos esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/port.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/portasm.S.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_context.S.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_init.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_intr_asm.S.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_intr.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_overlay_os_hook.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_vector_defaults.S.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_vectors.S.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/croutine.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/event_groups.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-openocd.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/list.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/queue.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/tasks.c.obj esp-idf/freertos/CMakeFiles/__idf_freertos.dir/timers.c.obj || esp-idf/vfs/libvfs.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/freertos/CMakeFiles/__idf_freertos.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/freertos/CMakeFiles/__idf_freertos.dir/__idf_freertos.pdb + TARGET_FILE = esp-idf/freertos/libfreertos.a + TARGET_PDB = esp-idf/freertos/libfreertos.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/freertos/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/freertos && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/freertos/rebuild_cache: phony esp-idf/freertos/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/freertos/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/freertos/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/freertos/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/freertos && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/freertos/install/local: phony esp-idf/freertos/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/freertos/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/freertos/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/freertos && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/freertos/install: phony esp-idf/freertos/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/vfs/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/vfs/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/vfs && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/vfs/install/strip: phony esp-idf/vfs/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/vfs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/vfs && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/vfs/edit_cache: phony esp-idf/vfs/CMakeFiles/edit_cache.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/vfs/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/vfs && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/vfs/rebuild_cache: phony esp-idf/vfs/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/vfs/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/vfs/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/vfs/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/vfs && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/vfs/install/local: phony esp-idf/vfs/CMakeFiles/install/local.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_vfs + + +############################################# +# Order-only phony target for __idf_vfs + +build cmake_object_order_depends_target___idf_vfs: phony || cmake_object_order_depends_target___idf_newlib +build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj: C_COMPILER____idf_vfs /home/mithras/esp/esp-idf/components/vfs/vfs.c || cmake_object_order_depends_target___idf_vfs + DEP_FILE = esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/vfs/CMakeFiles/__idf_vfs.dir + OBJECT_FILE_DIR = esp-idf/vfs/CMakeFiles/__idf_vfs.dir + TARGET_COMPILE_PDB = esp-idf/vfs/CMakeFiles/__idf_vfs.dir/__idf_vfs.pdb + TARGET_PDB = esp-idf/vfs/libvfs.pdb +build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_uart.c.obj: C_COMPILER____idf_vfs /home/mithras/esp/esp-idf/components/vfs/vfs_uart.c || cmake_object_order_depends_target___idf_vfs + DEP_FILE = esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_uart.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/vfs/CMakeFiles/__idf_vfs.dir + OBJECT_FILE_DIR = esp-idf/vfs/CMakeFiles/__idf_vfs.dir + TARGET_COMPILE_PDB = esp-idf/vfs/CMakeFiles/__idf_vfs.dir/__idf_vfs.pdb + TARGET_PDB = esp-idf/vfs/libvfs.pdb +build esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj: C_COMPILER____idf_vfs /home/mithras/esp/esp-idf/components/vfs/vfs_semihost.c || cmake_object_order_depends_target___idf_vfs + DEP_FILE = esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/vfs/CMakeFiles/__idf_vfs.dir + OBJECT_FILE_DIR = esp-idf/vfs/CMakeFiles/__idf_vfs.dir + TARGET_COMPILE_PDB = esp-idf/vfs/CMakeFiles/__idf_vfs.dir/__idf_vfs.pdb + TARGET_PDB = esp-idf/vfs/libvfs.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_vfs + + +############################################# +# Link the static library esp-idf/vfs/libvfs.a + +build esp-idf/vfs/libvfs.a: CXX_STATIC_LIBRARY_LINKER____idf_vfs esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_uart.c.obj esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj || esp-idf/newlib/libnewlib.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/vfs/CMakeFiles/__idf_vfs.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/vfs/CMakeFiles/__idf_vfs.dir/__idf_vfs.pdb + TARGET_FILE = esp-idf/vfs/libvfs.a + TARGET_PDB = esp-idf/vfs/libvfs.pdb + +############################################# +# Utility command for install + +build esp-idf/vfs/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/vfs/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/vfs && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/vfs/install: phony esp-idf/vfs/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/newlib/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/newlib/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/newlib && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/newlib/install/strip: phony esp-idf/newlib/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/newlib/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/newlib && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/newlib/edit_cache: phony esp-idf/newlib/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_newlib + + +############################################# +# Order-only phony target for __idf_newlib + +build cmake_object_order_depends_target___idf_newlib: phony || cmake_object_order_depends_target___idf_cxx +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj: C_COMPILER____idf_newlib /home/mithras/esp/esp-idf/components/newlib/heap.c || cmake_object_order_depends_target___idf_newlib + DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -fno-builtin + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir + TARGET_COMPILE_PDB = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/__idf_newlib.pdb + TARGET_PDB = esp-idf/newlib/libnewlib.pdb +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj: C_COMPILER____idf_newlib /home/mithras/esp/esp-idf/components/newlib/locks.c || cmake_object_order_depends_target___idf_newlib + DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir + TARGET_COMPILE_PDB = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/__idf_newlib.pdb + TARGET_PDB = esp-idf/newlib/libnewlib.pdb +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj: C_COMPILER____idf_newlib /home/mithras/esp/esp-idf/components/newlib/poll.c || cmake_object_order_depends_target___idf_newlib + DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir + TARGET_COMPILE_PDB = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/__idf_newlib.pdb + TARGET_PDB = esp-idf/newlib/libnewlib.pdb +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pread.c.obj: C_COMPILER____idf_newlib /home/mithras/esp/esp-idf/components/newlib/pread.c || cmake_object_order_depends_target___idf_newlib + DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pread.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir + TARGET_COMPILE_PDB = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/__idf_newlib.pdb + TARGET_PDB = esp-idf/newlib/libnewlib.pdb +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pwrite.c.obj: C_COMPILER____idf_newlib /home/mithras/esp/esp-idf/components/newlib/pwrite.c || cmake_object_order_depends_target___idf_newlib + DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pwrite.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir + TARGET_COMPILE_PDB = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/__idf_newlib.pdb + TARGET_PDB = esp-idf/newlib/libnewlib.pdb +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj: C_COMPILER____idf_newlib /home/mithras/esp/esp-idf/components/newlib/pthread.c || cmake_object_order_depends_target___idf_newlib + DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir + TARGET_COMPILE_PDB = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/__idf_newlib.pdb + TARGET_PDB = esp-idf/newlib/libnewlib.pdb +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj: C_COMPILER____idf_newlib /home/mithras/esp/esp-idf/components/newlib/random.c || cmake_object_order_depends_target___idf_newlib + DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir + TARGET_COMPILE_PDB = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/__idf_newlib.pdb + TARGET_PDB = esp-idf/newlib/libnewlib.pdb +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj: C_COMPILER____idf_newlib /home/mithras/esp/esp-idf/components/newlib/reent_init.c || cmake_object_order_depends_target___idf_newlib + DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir + TARGET_COMPILE_PDB = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/__idf_newlib.pdb + TARGET_PDB = esp-idf/newlib/libnewlib.pdb +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/select.c.obj: C_COMPILER____idf_newlib /home/mithras/esp/esp-idf/components/newlib/select.c || cmake_object_order_depends_target___idf_newlib + DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/select.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir + TARGET_COMPILE_PDB = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/__idf_newlib.pdb + TARGET_PDB = esp-idf/newlib/libnewlib.pdb +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscall_table.c.obj: C_COMPILER____idf_newlib /home/mithras/esp/esp-idf/components/newlib/syscall_table.c || cmake_object_order_depends_target___idf_newlib + DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscall_table.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir + TARGET_COMPILE_PDB = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/__idf_newlib.pdb + TARGET_PDB = esp-idf/newlib/libnewlib.pdb +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj: C_COMPILER____idf_newlib /home/mithras/esp/esp-idf/components/newlib/syscalls.c || cmake_object_order_depends_target___idf_newlib + DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir + TARGET_COMPILE_PDB = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/__idf_newlib.pdb + TARGET_PDB = esp-idf/newlib/libnewlib.pdb +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj: C_COMPILER____idf_newlib /home/mithras/esp/esp-idf/components/newlib/termios.c || cmake_object_order_depends_target___idf_newlib + DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir + TARGET_COMPILE_PDB = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/__idf_newlib.pdb + TARGET_PDB = esp-idf/newlib/libnewlib.pdb +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj: C_COMPILER____idf_newlib /home/mithras/esp/esp-idf/components/newlib/time.c || cmake_object_order_depends_target___idf_newlib + DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir + TARGET_COMPILE_PDB = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/__idf_newlib.pdb + TARGET_PDB = esp-idf/newlib/libnewlib.pdb +build esp-idf/newlib/CMakeFiles/__idf_newlib.dir/utime.c.obj: C_COMPILER____idf_newlib /home/mithras/esp/esp-idf/components/newlib/utime.c || cmake_object_order_depends_target___idf_newlib + DEP_FILE = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/utime.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir + OBJECT_FILE_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir + TARGET_COMPILE_PDB = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/__idf_newlib.pdb + TARGET_PDB = esp-idf/newlib/libnewlib.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_newlib + + +############################################# +# Link the static library esp-idf/newlib/libnewlib.a + +build esp-idf/newlib/libnewlib.a: CXX_STATIC_LIBRARY_LINKER____idf_newlib esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pread.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pwrite.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/select.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscall_table.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj esp-idf/newlib/CMakeFiles/__idf_newlib.dir/utime.c.obj || esp-idf/cxx/libcxx.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/newlib/CMakeFiles/__idf_newlib.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/newlib/CMakeFiles/__idf_newlib.dir/__idf_newlib.pdb + TARGET_FILE = esp-idf/newlib/libnewlib.a + TARGET_PDB = esp-idf/newlib/libnewlib.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/newlib/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/newlib && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/newlib/rebuild_cache: phony esp-idf/newlib/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/newlib/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/newlib/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/newlib/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/newlib && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/newlib/install/local: phony esp-idf/newlib/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/newlib/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/newlib/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/newlib && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/newlib/install: phony esp-idf/newlib/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/cxx/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/cxx/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/cxx && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/cxx/install/strip: phony esp-idf/cxx/CMakeFiles/install/strip.util + +############################################# +# Utility command for install/local + +build esp-idf/cxx/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/cxx/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/cxx && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/cxx/install/local: phony esp-idf/cxx/CMakeFiles/install/local.util + +############################################# +# Utility command for list_install_components + +build esp-idf/cxx/list_install_components: phony +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_cxx + + +############################################# +# Order-only phony target for __idf_cxx + +build cmake_object_order_depends_target___idf_cxx: phony || cmake_object_order_depends_target___idf_app_trace +build esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj: CXX_COMPILER____idf_cxx /home/mithras/esp/esp-idf/components/cxx/cxx_exception_stubs.cpp || cmake_object_order_depends_target___idf_cxx + DEP_FILE = esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/pthread/include + OBJECT_DIR = esp-idf/cxx/CMakeFiles/__idf_cxx.dir + OBJECT_FILE_DIR = esp-idf/cxx/CMakeFiles/__idf_cxx.dir + TARGET_COMPILE_PDB = esp-idf/cxx/CMakeFiles/__idf_cxx.dir/__idf_cxx.pdb + TARGET_PDB = esp-idf/cxx/libcxx.pdb +build esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj: CXX_COMPILER____idf_cxx /home/mithras/esp/esp-idf/components/cxx/cxx_guards.cpp || cmake_object_order_depends_target___idf_cxx + DEP_FILE = esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/pthread/include + OBJECT_DIR = esp-idf/cxx/CMakeFiles/__idf_cxx.dir + OBJECT_FILE_DIR = esp-idf/cxx/CMakeFiles/__idf_cxx.dir + TARGET_COMPILE_PDB = esp-idf/cxx/CMakeFiles/__idf_cxx.dir/__idf_cxx.pdb + TARGET_PDB = esp-idf/cxx/libcxx.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_cxx + + +############################################# +# Link the static library esp-idf/cxx/libcxx.a + +build esp-idf/cxx/libcxx.a: CXX_STATIC_LIBRARY_LINKER____idf_cxx esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj || esp-idf/app_trace/libapp_trace.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/cxx/CMakeFiles/__idf_cxx.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/cxx/CMakeFiles/__idf_cxx.dir/__idf_cxx.pdb + TARGET_FILE = esp-idf/cxx/libcxx.a + TARGET_PDB = esp-idf/cxx/libcxx.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/cxx/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/cxx && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/cxx/rebuild_cache: phony esp-idf/cxx/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for edit_cache + +build esp-idf/cxx/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/cxx && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/cxx/edit_cache: phony esp-idf/cxx/CMakeFiles/edit_cache.util + +############################################# +# Utility command for install + +build esp-idf/cxx/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/cxx/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/cxx && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/cxx/install: phony esp-idf/cxx/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/app_trace/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/app_trace/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/app_trace && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/app_trace/install/strip: phony esp-idf/app_trace/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/app_trace/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/app_trace && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/app_trace/edit_cache: phony esp-idf/app_trace/CMakeFiles/edit_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/app_trace/list_install_components: phony +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_app_trace + + +############################################# +# Order-only phony target for __idf_app_trace + +build cmake_object_order_depends_target___idf_app_trace: phony || cmake_object_order_depends_target___idf_nghttp +build esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj: C_COMPILER____idf_app_trace /home/mithras/esp/esp-idf/components/app_trace/app_trace.c || cmake_object_order_depends_target___idf_app_trace + DEP_FILE = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -fno-profile-arcs -fno-test-coverage + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include + OBJECT_DIR = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir + OBJECT_FILE_DIR = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir + TARGET_COMPILE_PDB = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/__idf_app_trace.pdb + TARGET_PDB = esp-idf/app_trace/libapp_trace.pdb +build esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj: C_COMPILER____idf_app_trace /home/mithras/esp/esp-idf/components/app_trace/app_trace_util.c || cmake_object_order_depends_target___idf_app_trace + DEP_FILE = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -fno-profile-arcs -fno-test-coverage + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include + OBJECT_DIR = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir + OBJECT_FILE_DIR = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir + TARGET_COMPILE_PDB = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/__idf_app_trace.pdb + TARGET_PDB = esp-idf/app_trace/libapp_trace.pdb +build esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj: C_COMPILER____idf_app_trace /home/mithras/esp/esp-idf/components/app_trace/host_file_io.c || cmake_object_order_depends_target___idf_app_trace + DEP_FILE = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -fno-profile-arcs -fno-test-coverage + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include + OBJECT_DIR = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir + OBJECT_FILE_DIR = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir + TARGET_COMPILE_PDB = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/__idf_app_trace.pdb + TARGET_PDB = esp-idf/app_trace/libapp_trace.pdb +build esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/gcov/gcov_rtio.c.obj: C_COMPILER____idf_app_trace /home/mithras/esp/esp-idf/components/app_trace/gcov/gcov_rtio.c || cmake_object_order_depends_target___idf_app_trace + DEP_FILE = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/gcov/gcov_rtio.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -fno-profile-arcs -fno-test-coverage + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include + OBJECT_DIR = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir + OBJECT_FILE_DIR = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/gcov + TARGET_COMPILE_PDB = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/__idf_app_trace.pdb + TARGET_PDB = esp-idf/app_trace/libapp_trace.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_app_trace + + +############################################# +# Link the static library esp-idf/app_trace/libapp_trace.a + +build esp-idf/app_trace/libapp_trace.a: CXX_STATIC_LIBRARY_LINKER____idf_app_trace esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/gcov/gcov_rtio.c.obj || esp-idf/nghttp/libnghttp.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/__idf_app_trace.pdb + TARGET_FILE = esp-idf/app_trace/libapp_trace.a + TARGET_PDB = esp-idf/app_trace/libapp_trace.pdb + +############################################# +# Utility command for install/local + +build esp-idf/app_trace/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/app_trace/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/app_trace && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/app_trace/install/local: phony esp-idf/app_trace/CMakeFiles/install/local.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/app_trace/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/app_trace && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/app_trace/rebuild_cache: phony esp-idf/app_trace/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for install + +build esp-idf/app_trace/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/app_trace/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/app_trace && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/app_trace/install: phony esp-idf/app_trace/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/asio/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/asio/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/asio && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/asio/install/strip: phony esp-idf/asio/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/asio/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/asio && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/asio/edit_cache: phony esp-idf/asio/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_asio + + +############################################# +# Order-only phony target for __idf_asio + +build cmake_object_order_depends_target___idf_asio: phony || cmake_object_order_depends_target___idf_xtensa +build esp-idf/asio/CMakeFiles/__idf_asio.dir/asio/asio/src/asio.cpp.obj: CXX_COMPILER____idf_asio /home/mithras/esp/esp-idf/components/asio/asio/asio/src/asio.cpp || cmake_object_order_depends_target___idf_asio + DEP_FILE = esp-idf/asio/CMakeFiles/__idf_asio.dir/asio/asio/src/asio.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/asio/asio/asio/include -I/home/mithras/esp/esp-idf/components/asio/port/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/asio/CMakeFiles/__idf_asio.dir + OBJECT_FILE_DIR = esp-idf/asio/CMakeFiles/__idf_asio.dir/asio/asio/src + TARGET_COMPILE_PDB = esp-idf/asio/CMakeFiles/__idf_asio.dir/__idf_asio.pdb + TARGET_PDB = esp-idf/asio/libasio.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_asio + + +############################################# +# Link the static library esp-idf/asio/libasio.a + +build esp-idf/asio/libasio.a: CXX_STATIC_LIBRARY_LINKER____idf_asio esp-idf/asio/CMakeFiles/__idf_asio.dir/asio/asio/src/asio.cpp.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/asio/CMakeFiles/__idf_asio.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/asio/CMakeFiles/__idf_asio.dir/__idf_asio.pdb + TARGET_FILE = esp-idf/asio/libasio.a + TARGET_PDB = esp-idf/asio/libasio.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/asio/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/asio && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/asio/rebuild_cache: phony esp-idf/asio/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/asio/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/asio/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/asio/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/asio && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/asio/install/local: phony esp-idf/asio/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/asio/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/asio/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/asio && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/asio/install: phony esp-idf/asio/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/bootloader/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/bootloader/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/bootloader && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/bootloader/install/strip: phony esp-idf/bootloader/CMakeFiles/install/strip.util + +############################################# +# Utility command for install/local + +build esp-idf/bootloader/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/bootloader/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/bootloader && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/bootloader/install/local: phony esp-idf/bootloader/CMakeFiles/install/local.util + +############################################# +# Utility command for bootloader-flash + +build esp-idf/bootloader/bootloader-flash: phony esp-idf/bootloader/CMakeFiles/bootloader-flash bootloader + +############################################# +# Utility command for install + +build esp-idf/bootloader/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/bootloader/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/bootloader && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/bootloader/install: phony esp-idf/bootloader/CMakeFiles/install.util + +############################################# +# Utility command for edit_cache + +build esp-idf/bootloader/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/bootloader && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/bootloader/edit_cache: phony esp-idf/bootloader/CMakeFiles/edit_cache.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/bootloader/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/bootloader && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/bootloader/rebuild_cache: phony esp-idf/bootloader/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/bootloader/list_install_components: phony + +############################################# +# Custom command for esp-idf/bootloader/CMakeFiles/bootloader-flash + +build esp-idf/bootloader/CMakeFiles/bootloader-flash: CUSTOM_COMMAND || bootloader esp-idf/partition_table/partition_table + COMMAND = cd /home/mithras/esp/esp-idf/components/bootloader && /usr/bin/cmake -D IDF_PATH="/home/mithras/esp/esp-idf" -D ESPTOOLPY="/home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/components/esptool_py/esptool/esptool.py --chip esp32" -D ESPTOOL_ARGS="--before=default_reset --after=hard_reset write_flash @bootloader-flash_args" -D WORKING_DIRECTORY="/home/mithras/Documents/bakalarka/build" -P /home/mithras/esp/esp-idf/components/esptool_py/run_esptool.cmake + pool = console +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/bt/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/bt/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/bt && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/bt/install/strip: phony esp-idf/bt/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/bt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/bt && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/bt/edit_cache: phony esp-idf/bt/CMakeFiles/edit_cache.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/bt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/bt && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/bt/rebuild_cache: phony esp-idf/bt/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/bt/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/bt/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/bt/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/bt && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/bt/install/local: phony esp-idf/bt/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/bt/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/bt/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/bt && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/bt/install: phony esp-idf/bt/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/cbor/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/cbor && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/cbor/edit_cache: phony esp-idf/cbor/CMakeFiles/edit_cache.util + +############################################# +# Utility command for install/strip + +build esp-idf/cbor/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/cbor/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/cbor && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/cbor/install/strip: phony esp-idf/cbor/CMakeFiles/install/strip.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_cbor + + +############################################# +# Order-only phony target for __idf_cbor + +build cmake_object_order_depends_target___idf_cbor: phony || cmake_object_order_depends_target___idf_xtensa +build esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborencoder_close_container_checked.c.obj: C_COMPILER____idf_cbor /home/mithras/esp/esp-idf/components/cbor/tinycbor/src/cborencoder_close_container_checked.c || cmake_object_order_depends_target___idf_cbor + DEFINES = -D__GLIBC__ + DEP_FILE = esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborencoder_close_container_checked.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-discarded-qualifiers -Wno-maybe-uninitialized + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/cbor/port/include -I/home/mithras/esp/esp-idf/components/cbor/tinycbor/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/cbor/CMakeFiles/__idf_cbor.dir + OBJECT_FILE_DIR = esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src + TARGET_COMPILE_PDB = esp-idf/cbor/CMakeFiles/__idf_cbor.dir/__idf_cbor.pdb + TARGET_PDB = esp-idf/cbor/libcbor.pdb +build esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborencoder.c.obj: C_COMPILER____idf_cbor /home/mithras/esp/esp-idf/components/cbor/tinycbor/src/cborencoder.c || cmake_object_order_depends_target___idf_cbor + DEFINES = -D__GLIBC__ + DEP_FILE = esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborencoder.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-discarded-qualifiers -Wno-maybe-uninitialized + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/cbor/port/include -I/home/mithras/esp/esp-idf/components/cbor/tinycbor/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/cbor/CMakeFiles/__idf_cbor.dir + OBJECT_FILE_DIR = esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src + TARGET_COMPILE_PDB = esp-idf/cbor/CMakeFiles/__idf_cbor.dir/__idf_cbor.pdb + TARGET_PDB = esp-idf/cbor/libcbor.pdb +build esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborerrorstrings.c.obj: C_COMPILER____idf_cbor /home/mithras/esp/esp-idf/components/cbor/tinycbor/src/cborerrorstrings.c || cmake_object_order_depends_target___idf_cbor + DEFINES = -D__GLIBC__ + DEP_FILE = esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborerrorstrings.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-discarded-qualifiers -Wno-maybe-uninitialized + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/cbor/port/include -I/home/mithras/esp/esp-idf/components/cbor/tinycbor/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/cbor/CMakeFiles/__idf_cbor.dir + OBJECT_FILE_DIR = esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src + TARGET_COMPILE_PDB = esp-idf/cbor/CMakeFiles/__idf_cbor.dir/__idf_cbor.pdb + TARGET_PDB = esp-idf/cbor/libcbor.pdb +build esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborparser_dup_string.c.obj: C_COMPILER____idf_cbor /home/mithras/esp/esp-idf/components/cbor/tinycbor/src/cborparser_dup_string.c || cmake_object_order_depends_target___idf_cbor + DEFINES = -D__GLIBC__ + DEP_FILE = esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborparser_dup_string.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-discarded-qualifiers -Wno-maybe-uninitialized + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/cbor/port/include -I/home/mithras/esp/esp-idf/components/cbor/tinycbor/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/cbor/CMakeFiles/__idf_cbor.dir + OBJECT_FILE_DIR = esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src + TARGET_COMPILE_PDB = esp-idf/cbor/CMakeFiles/__idf_cbor.dir/__idf_cbor.pdb + TARGET_PDB = esp-idf/cbor/libcbor.pdb +build esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborparser.c.obj: C_COMPILER____idf_cbor /home/mithras/esp/esp-idf/components/cbor/tinycbor/src/cborparser.c || cmake_object_order_depends_target___idf_cbor + DEFINES = -D__GLIBC__ + DEP_FILE = esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborparser.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-discarded-qualifiers -Wno-maybe-uninitialized + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/cbor/port/include -I/home/mithras/esp/esp-idf/components/cbor/tinycbor/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/cbor/CMakeFiles/__idf_cbor.dir + OBJECT_FILE_DIR = esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src + TARGET_COMPILE_PDB = esp-idf/cbor/CMakeFiles/__idf_cbor.dir/__idf_cbor.pdb + TARGET_PDB = esp-idf/cbor/libcbor.pdb +build esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborpretty_stdio.c.obj: C_COMPILER____idf_cbor /home/mithras/esp/esp-idf/components/cbor/tinycbor/src/cborpretty_stdio.c || cmake_object_order_depends_target___idf_cbor + DEFINES = -D__GLIBC__ + DEP_FILE = esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborpretty_stdio.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-discarded-qualifiers -Wno-maybe-uninitialized + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/cbor/port/include -I/home/mithras/esp/esp-idf/components/cbor/tinycbor/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/cbor/CMakeFiles/__idf_cbor.dir + OBJECT_FILE_DIR = esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src + TARGET_COMPILE_PDB = esp-idf/cbor/CMakeFiles/__idf_cbor.dir/__idf_cbor.pdb + TARGET_PDB = esp-idf/cbor/libcbor.pdb +build esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborpretty.c.obj: C_COMPILER____idf_cbor /home/mithras/esp/esp-idf/components/cbor/tinycbor/src/cborpretty.c || cmake_object_order_depends_target___idf_cbor + DEFINES = -D__GLIBC__ + DEP_FILE = esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborpretty.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-discarded-qualifiers -Wno-maybe-uninitialized + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/cbor/port/include -I/home/mithras/esp/esp-idf/components/cbor/tinycbor/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/cbor/CMakeFiles/__idf_cbor.dir + OBJECT_FILE_DIR = esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src + TARGET_COMPILE_PDB = esp-idf/cbor/CMakeFiles/__idf_cbor.dir/__idf_cbor.pdb + TARGET_PDB = esp-idf/cbor/libcbor.pdb +build esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cbortojson.c.obj: C_COMPILER____idf_cbor /home/mithras/esp/esp-idf/components/cbor/tinycbor/src/cbortojson.c || cmake_object_order_depends_target___idf_cbor + DEFINES = -D__GLIBC__ + DEP_FILE = esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cbortojson.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-discarded-qualifiers -Wno-maybe-uninitialized + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/cbor/port/include -I/home/mithras/esp/esp-idf/components/cbor/tinycbor/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/cbor/CMakeFiles/__idf_cbor.dir + OBJECT_FILE_DIR = esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src + TARGET_COMPILE_PDB = esp-idf/cbor/CMakeFiles/__idf_cbor.dir/__idf_cbor.pdb + TARGET_PDB = esp-idf/cbor/libcbor.pdb +build esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborvalidation.c.obj: C_COMPILER____idf_cbor /home/mithras/esp/esp-idf/components/cbor/tinycbor/src/cborvalidation.c || cmake_object_order_depends_target___idf_cbor + DEFINES = -D__GLIBC__ + DEP_FILE = esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborvalidation.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-discarded-qualifiers -Wno-maybe-uninitialized + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/cbor/port/include -I/home/mithras/esp/esp-idf/components/cbor/tinycbor/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/cbor/CMakeFiles/__idf_cbor.dir + OBJECT_FILE_DIR = esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src + TARGET_COMPILE_PDB = esp-idf/cbor/CMakeFiles/__idf_cbor.dir/__idf_cbor.pdb + TARGET_PDB = esp-idf/cbor/libcbor.pdb +build esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/open_memstream.c.obj: C_COMPILER____idf_cbor /home/mithras/esp/esp-idf/components/cbor/tinycbor/src/open_memstream.c || cmake_object_order_depends_target___idf_cbor + DEFINES = -D__GLIBC__ + DEP_FILE = esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/open_memstream.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-discarded-qualifiers -Wno-maybe-uninitialized + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/cbor/port/include -I/home/mithras/esp/esp-idf/components/cbor/tinycbor/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/cbor/CMakeFiles/__idf_cbor.dir + OBJECT_FILE_DIR = esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src + TARGET_COMPILE_PDB = esp-idf/cbor/CMakeFiles/__idf_cbor.dir/__idf_cbor.pdb + TARGET_PDB = esp-idf/cbor/libcbor.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_cbor + + +############################################# +# Link the static library esp-idf/cbor/libcbor.a + +build esp-idf/cbor/libcbor.a: CXX_STATIC_LIBRARY_LINKER____idf_cbor esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborencoder_close_container_checked.c.obj esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborencoder.c.obj esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborerrorstrings.c.obj esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborparser_dup_string.c.obj esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborparser.c.obj esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborpretty_stdio.c.obj esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborpretty.c.obj esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cbortojson.c.obj esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborvalidation.c.obj esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/open_memstream.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/cbor/CMakeFiles/__idf_cbor.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/cbor/CMakeFiles/__idf_cbor.dir/__idf_cbor.pdb + TARGET_FILE = esp-idf/cbor/libcbor.a + TARGET_PDB = esp-idf/cbor/libcbor.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/cbor/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/cbor && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/cbor/rebuild_cache: phony esp-idf/cbor/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/cbor/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/cbor/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/cbor/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/cbor && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/cbor/install/local: phony esp-idf/cbor/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/cbor/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/cbor/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/cbor && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/cbor/install: phony esp-idf/cbor/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/coap/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/coap && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/coap/edit_cache: phony esp-idf/coap/CMakeFiles/edit_cache.util + +############################################# +# Utility command for install/strip + +build esp-idf/coap/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/coap/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/coap && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/coap/install/strip: phony esp-idf/coap/CMakeFiles/install/strip.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_coap + + +############################################# +# Order-only phony target for __idf_coap + +build cmake_object_order_depends_target___idf_coap: phony || cmake_object_order_depends_target___idf_xtensa +build esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/address.c.obj: C_COMPILER____idf_coap /home/mithras/esp/esp-idf/components/coap/libcoap/src/address.c || cmake_object_order_depends_target___idf_coap + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DWITH_POSIX + DEP_FILE = esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/address.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir + OBJECT_FILE_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src + TARGET_COMPILE_PDB = esp-idf/coap/CMakeFiles/__idf_coap.dir/__idf_coap.pdb + TARGET_PDB = esp-idf/coap/libcoap.pdb +build esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/async.c.obj: C_COMPILER____idf_coap /home/mithras/esp/esp-idf/components/coap/libcoap/src/async.c || cmake_object_order_depends_target___idf_coap + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DWITH_POSIX + DEP_FILE = esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/async.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir + OBJECT_FILE_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src + TARGET_COMPILE_PDB = esp-idf/coap/CMakeFiles/__idf_coap.dir/__idf_coap.pdb + TARGET_PDB = esp-idf/coap/libcoap.pdb +build esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/block.c.obj: C_COMPILER____idf_coap /home/mithras/esp/esp-idf/components/coap/libcoap/src/block.c || cmake_object_order_depends_target___idf_coap + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DWITH_POSIX + DEP_FILE = esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/block.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir + OBJECT_FILE_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src + TARGET_COMPILE_PDB = esp-idf/coap/CMakeFiles/__idf_coap.dir/__idf_coap.pdb + TARGET_PDB = esp-idf/coap/libcoap.pdb +build esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_event.c.obj: C_COMPILER____idf_coap /home/mithras/esp/esp-idf/components/coap/libcoap/src/coap_event.c || cmake_object_order_depends_target___idf_coap + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DWITH_POSIX + DEP_FILE = esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_event.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir + OBJECT_FILE_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src + TARGET_COMPILE_PDB = esp-idf/coap/CMakeFiles/__idf_coap.dir/__idf_coap.pdb + TARGET_PDB = esp-idf/coap/libcoap.pdb +build esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_hashkey.c.obj: C_COMPILER____idf_coap /home/mithras/esp/esp-idf/components/coap/libcoap/src/coap_hashkey.c || cmake_object_order_depends_target___idf_coap + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DWITH_POSIX + DEP_FILE = esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_hashkey.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir + OBJECT_FILE_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src + TARGET_COMPILE_PDB = esp-idf/coap/CMakeFiles/__idf_coap.dir/__idf_coap.pdb + TARGET_PDB = esp-idf/coap/libcoap.pdb +build esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_session.c.obj: C_COMPILER____idf_coap /home/mithras/esp/esp-idf/components/coap/libcoap/src/coap_session.c || cmake_object_order_depends_target___idf_coap + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DWITH_POSIX + DEP_FILE = esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_session.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir + OBJECT_FILE_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src + TARGET_COMPILE_PDB = esp-idf/coap/CMakeFiles/__idf_coap.dir/__idf_coap.pdb + TARGET_PDB = esp-idf/coap/libcoap.pdb +build esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_time.c.obj: C_COMPILER____idf_coap /home/mithras/esp/esp-idf/components/coap/libcoap/src/coap_time.c || cmake_object_order_depends_target___idf_coap + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DWITH_POSIX + DEP_FILE = esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_time.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir + OBJECT_FILE_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src + TARGET_COMPILE_PDB = esp-idf/coap/CMakeFiles/__idf_coap.dir/__idf_coap.pdb + TARGET_PDB = esp-idf/coap/libcoap.pdb +build esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_debug.c.obj: C_COMPILER____idf_coap /home/mithras/esp/esp-idf/components/coap/port/coap_debug.c || cmake_object_order_depends_target___idf_coap + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DWITH_POSIX + DEP_FILE = esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_debug.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-format-truncation + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir + OBJECT_FILE_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir/port + TARGET_COMPILE_PDB = esp-idf/coap/CMakeFiles/__idf_coap.dir/__idf_coap.pdb + TARGET_PDB = esp-idf/coap/libcoap.pdb +build esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/encode.c.obj: C_COMPILER____idf_coap /home/mithras/esp/esp-idf/components/coap/libcoap/src/encode.c || cmake_object_order_depends_target___idf_coap + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DWITH_POSIX + DEP_FILE = esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/encode.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir + OBJECT_FILE_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src + TARGET_COMPILE_PDB = esp-idf/coap/CMakeFiles/__idf_coap.dir/__idf_coap.pdb + TARGET_PDB = esp-idf/coap/libcoap.pdb +build esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/mem.c.obj: C_COMPILER____idf_coap /home/mithras/esp/esp-idf/components/coap/libcoap/src/mem.c || cmake_object_order_depends_target___idf_coap + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DWITH_POSIX + DEP_FILE = esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/mem.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir + OBJECT_FILE_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src + TARGET_COMPILE_PDB = esp-idf/coap/CMakeFiles/__idf_coap.dir/__idf_coap.pdb + TARGET_PDB = esp-idf/coap/libcoap.pdb +build esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/net.c.obj: C_COMPILER____idf_coap /home/mithras/esp/esp-idf/components/coap/libcoap/src/net.c || cmake_object_order_depends_target___idf_coap + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DWITH_POSIX + DEP_FILE = esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/net.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir + OBJECT_FILE_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src + TARGET_COMPILE_PDB = esp-idf/coap/CMakeFiles/__idf_coap.dir/__idf_coap.pdb + TARGET_PDB = esp-idf/coap/libcoap.pdb +build esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/option.c.obj: C_COMPILER____idf_coap /home/mithras/esp/esp-idf/components/coap/libcoap/src/option.c || cmake_object_order_depends_target___idf_coap + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DWITH_POSIX + DEP_FILE = esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/option.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir + OBJECT_FILE_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src + TARGET_COMPILE_PDB = esp-idf/coap/CMakeFiles/__idf_coap.dir/__idf_coap.pdb + TARGET_PDB = esp-idf/coap/libcoap.pdb +build esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/pdu.c.obj: C_COMPILER____idf_coap /home/mithras/esp/esp-idf/components/coap/libcoap/src/pdu.c || cmake_object_order_depends_target___idf_coap + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DWITH_POSIX + DEP_FILE = esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/pdu.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir + OBJECT_FILE_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src + TARGET_COMPILE_PDB = esp-idf/coap/CMakeFiles/__idf_coap.dir/__idf_coap.pdb + TARGET_PDB = esp-idf/coap/libcoap.pdb +build esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/resource.c.obj: C_COMPILER____idf_coap /home/mithras/esp/esp-idf/components/coap/libcoap/src/resource.c || cmake_object_order_depends_target___idf_coap + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DWITH_POSIX + DEP_FILE = esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/resource.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir + OBJECT_FILE_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src + TARGET_COMPILE_PDB = esp-idf/coap/CMakeFiles/__idf_coap.dir/__idf_coap.pdb + TARGET_PDB = esp-idf/coap/libcoap.pdb +build esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/str.c.obj: C_COMPILER____idf_coap /home/mithras/esp/esp-idf/components/coap/libcoap/src/str.c || cmake_object_order_depends_target___idf_coap + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DWITH_POSIX + DEP_FILE = esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/str.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir + OBJECT_FILE_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src + TARGET_COMPILE_PDB = esp-idf/coap/CMakeFiles/__idf_coap.dir/__idf_coap.pdb + TARGET_PDB = esp-idf/coap/libcoap.pdb +build esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/subscribe.c.obj: C_COMPILER____idf_coap /home/mithras/esp/esp-idf/components/coap/libcoap/src/subscribe.c || cmake_object_order_depends_target___idf_coap + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DWITH_POSIX + DEP_FILE = esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/subscribe.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir + OBJECT_FILE_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src + TARGET_COMPILE_PDB = esp-idf/coap/CMakeFiles/__idf_coap.dir/__idf_coap.pdb + TARGET_PDB = esp-idf/coap/libcoap.pdb +build esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/uri.c.obj: C_COMPILER____idf_coap /home/mithras/esp/esp-idf/components/coap/libcoap/src/uri.c || cmake_object_order_depends_target___idf_coap + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DWITH_POSIX + DEP_FILE = esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/uri.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir + OBJECT_FILE_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src + TARGET_COMPILE_PDB = esp-idf/coap/CMakeFiles/__idf_coap.dir/__idf_coap.pdb + TARGET_PDB = esp-idf/coap/libcoap.pdb +build esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_io.c.obj: C_COMPILER____idf_coap /home/mithras/esp/esp-idf/components/coap/libcoap/src/coap_io.c || cmake_object_order_depends_target___idf_coap + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DWITH_POSIX + DEP_FILE = esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_io.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir + OBJECT_FILE_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src + TARGET_COMPILE_PDB = esp-idf/coap/CMakeFiles/__idf_coap.dir/__idf_coap.pdb + TARGET_PDB = esp-idf/coap/libcoap.pdb +build esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_notls.c.obj: C_COMPILER____idf_coap /home/mithras/esp/esp-idf/components/coap/port/coap_notls.c || cmake_object_order_depends_target___idf_coap + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DWITH_POSIX + DEP_FILE = esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_notls.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir + OBJECT_FILE_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir/port + TARGET_COMPILE_PDB = esp-idf/coap/CMakeFiles/__idf_coap.dir/__idf_coap.pdb + TARGET_PDB = esp-idf/coap/libcoap.pdb +build esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_mbedtls.c.obj: C_COMPILER____idf_coap /home/mithras/esp/esp-idf/components/coap/port/coap_mbedtls.c || cmake_object_order_depends_target___idf_coap + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DWITH_POSIX + DEP_FILE = esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_mbedtls.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir + OBJECT_FILE_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir/port + TARGET_COMPILE_PDB = esp-idf/coap/CMakeFiles/__idf_coap.dir/__idf_coap.pdb + TARGET_PDB = esp-idf/coap/libcoap.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_coap + + +############################################# +# Link the static library esp-idf/coap/libcoap.a + +build esp-idf/coap/libcoap.a: CXX_STATIC_LIBRARY_LINKER____idf_coap esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/address.c.obj esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/async.c.obj esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/block.c.obj esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_event.c.obj esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_hashkey.c.obj esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_session.c.obj esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_time.c.obj esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_debug.c.obj esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/encode.c.obj esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/mem.c.obj esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/net.c.obj esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/option.c.obj esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/pdu.c.obj esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/resource.c.obj esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/str.c.obj esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/subscribe.c.obj esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/uri.c.obj esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_io.c.obj esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_notls.c.obj esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_mbedtls.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/coap/CMakeFiles/__idf_coap.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/coap/CMakeFiles/__idf_coap.dir/__idf_coap.pdb + TARGET_FILE = esp-idf/coap/libcoap.a + TARGET_PDB = esp-idf/coap/libcoap.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/coap/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/coap && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/coap/rebuild_cache: phony esp-idf/coap/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/coap/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/coap/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/coap/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/coap && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/coap/install/local: phony esp-idf/coap/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/coap/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/coap/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/coap && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/coap/install: phony esp-idf/coap/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/console/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/console/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/console && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/console/install/strip: phony esp-idf/console/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/console/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/console && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/console/edit_cache: phony esp-idf/console/CMakeFiles/edit_cache.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/console/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/console && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/console/rebuild_cache: phony esp-idf/console/CMakeFiles/rebuild_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_console + + +############################################# +# Order-only phony target for __idf_console + +build cmake_object_order_depends_target___idf_console: phony || cmake_object_order_depends_target___idf_xtensa +build esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj: C_COMPILER____idf_console /home/mithras/esp/esp-idf/components/console/commands.c || cmake_object_order_depends_target___idf_console + DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir + OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir + TARGET_COMPILE_PDB = esp-idf/console/CMakeFiles/__idf_console.dir/__idf_console.pdb + TARGET_PDB = esp-idf/console/libconsole.pdb +build esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl.c.obj: C_COMPILER____idf_console /home/mithras/esp/esp-idf/components/console/esp_console_repl.c || cmake_object_order_depends_target___idf_console + DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir + OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir + TARGET_COMPILE_PDB = esp-idf/console/CMakeFiles/__idf_console.dir/__idf_console.pdb + TARGET_PDB = esp-idf/console/libconsole.pdb +build esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj: C_COMPILER____idf_console /home/mithras/esp/esp-idf/components/console/split_argv.c || cmake_object_order_depends_target___idf_console + DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir + OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir + TARGET_COMPILE_PDB = esp-idf/console/CMakeFiles/__idf_console.dir/__idf_console.pdb + TARGET_PDB = esp-idf/console/libconsole.pdb +build esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj: C_COMPILER____idf_console /home/mithras/esp/esp-idf/components/console/argtable3/argtable3.c || cmake_object_order_depends_target___idf_console + DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir + OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir/argtable3 + TARGET_COMPILE_PDB = esp-idf/console/CMakeFiles/__idf_console.dir/__idf_console.pdb + TARGET_PDB = esp-idf/console/libconsole.pdb +build esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj: C_COMPILER____idf_console /home/mithras/esp/esp-idf/components/console/linenoise/linenoise.c || cmake_object_order_depends_target___idf_console + DEP_FILE = esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir + OBJECT_FILE_DIR = esp-idf/console/CMakeFiles/__idf_console.dir/linenoise + TARGET_COMPILE_PDB = esp-idf/console/CMakeFiles/__idf_console.dir/__idf_console.pdb + TARGET_PDB = esp-idf/console/libconsole.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_console + + +############################################# +# Link the static library esp-idf/console/libconsole.a + +build esp-idf/console/libconsole.a: CXX_STATIC_LIBRARY_LINKER____idf_console esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/console/CMakeFiles/__idf_console.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/console/CMakeFiles/__idf_console.dir/__idf_console.pdb + TARGET_FILE = esp-idf/console/libconsole.a + TARGET_PDB = esp-idf/console/libconsole.pdb + +############################################# +# Utility command for list_install_components + +build esp-idf/console/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/console/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/console/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/console && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/console/install/local: phony esp-idf/console/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/console/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/console/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/console && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/console/install: phony esp-idf/console/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/nghttp/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/nghttp/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/nghttp && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/nghttp/install/strip: phony esp-idf/nghttp/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/nghttp/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/nghttp && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/nghttp/edit_cache: phony esp-idf/nghttp/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_nghttp + + +############################################# +# Order-only phony target for __idf_nghttp + +build cmake_object_order_depends_target___idf_nghttp: phony || cmake_object_order_depends_target___idf_esp-tls +build esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_buf.c.obj: C_COMPILER____idf_nghttp /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_buf.c || cmake_object_order_depends_target___idf_nghttp + DEFINES = -DHAVE_CONFIG_H + DEP_FILE = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_buf.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir + OBJECT_FILE_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib + TARGET_COMPILE_PDB = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/__idf_nghttp.pdb + TARGET_PDB = esp-idf/nghttp/libnghttp.pdb +build esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_callbacks.c.obj: C_COMPILER____idf_nghttp /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_callbacks.c || cmake_object_order_depends_target___idf_nghttp + DEFINES = -DHAVE_CONFIG_H + DEP_FILE = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_callbacks.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir + OBJECT_FILE_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib + TARGET_COMPILE_PDB = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/__idf_nghttp.pdb + TARGET_PDB = esp-idf/nghttp/libnghttp.pdb +build esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_debug.c.obj: C_COMPILER____idf_nghttp /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_debug.c || cmake_object_order_depends_target___idf_nghttp + DEFINES = -DHAVE_CONFIG_H + DEP_FILE = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_debug.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir + OBJECT_FILE_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib + TARGET_COMPILE_PDB = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/__idf_nghttp.pdb + TARGET_PDB = esp-idf/nghttp/libnghttp.pdb +build esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_frame.c.obj: C_COMPILER____idf_nghttp /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_frame.c || cmake_object_order_depends_target___idf_nghttp + DEFINES = -DHAVE_CONFIG_H + DEP_FILE = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_frame.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir + OBJECT_FILE_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib + TARGET_COMPILE_PDB = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/__idf_nghttp.pdb + TARGET_PDB = esp-idf/nghttp/libnghttp.pdb +build esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_hd.c.obj: C_COMPILER____idf_nghttp /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_hd.c || cmake_object_order_depends_target___idf_nghttp + DEFINES = -DHAVE_CONFIG_H + DEP_FILE = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_hd.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir + OBJECT_FILE_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib + TARGET_COMPILE_PDB = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/__idf_nghttp.pdb + TARGET_PDB = esp-idf/nghttp/libnghttp.pdb +build esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_hd_huffman.c.obj: C_COMPILER____idf_nghttp /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_hd_huffman.c || cmake_object_order_depends_target___idf_nghttp + DEFINES = -DHAVE_CONFIG_H + DEP_FILE = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_hd_huffman.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir + OBJECT_FILE_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib + TARGET_COMPILE_PDB = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/__idf_nghttp.pdb + TARGET_PDB = esp-idf/nghttp/libnghttp.pdb +build esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_hd_huffman_data.c.obj: C_COMPILER____idf_nghttp /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_hd_huffman_data.c || cmake_object_order_depends_target___idf_nghttp + DEFINES = -DHAVE_CONFIG_H + DEP_FILE = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_hd_huffman_data.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir + OBJECT_FILE_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib + TARGET_COMPILE_PDB = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/__idf_nghttp.pdb + TARGET_PDB = esp-idf/nghttp/libnghttp.pdb +build esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_helper.c.obj: C_COMPILER____idf_nghttp /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_helper.c || cmake_object_order_depends_target___idf_nghttp + DEFINES = -DHAVE_CONFIG_H + DEP_FILE = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_helper.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir + OBJECT_FILE_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib + TARGET_COMPILE_PDB = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/__idf_nghttp.pdb + TARGET_PDB = esp-idf/nghttp/libnghttp.pdb +build esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_http.c.obj: C_COMPILER____idf_nghttp /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_http.c || cmake_object_order_depends_target___idf_nghttp + DEFINES = -DHAVE_CONFIG_H + DEP_FILE = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_http.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir + OBJECT_FILE_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib + TARGET_COMPILE_PDB = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/__idf_nghttp.pdb + TARGET_PDB = esp-idf/nghttp/libnghttp.pdb +build esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_map.c.obj: C_COMPILER____idf_nghttp /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_map.c || cmake_object_order_depends_target___idf_nghttp + DEFINES = -DHAVE_CONFIG_H + DEP_FILE = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_map.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir + OBJECT_FILE_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib + TARGET_COMPILE_PDB = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/__idf_nghttp.pdb + TARGET_PDB = esp-idf/nghttp/libnghttp.pdb +build esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_mem.c.obj: C_COMPILER____idf_nghttp /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_mem.c || cmake_object_order_depends_target___idf_nghttp + DEFINES = -DHAVE_CONFIG_H + DEP_FILE = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_mem.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir + OBJECT_FILE_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib + TARGET_COMPILE_PDB = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/__idf_nghttp.pdb + TARGET_PDB = esp-idf/nghttp/libnghttp.pdb +build esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_npn.c.obj: C_COMPILER____idf_nghttp /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_npn.c || cmake_object_order_depends_target___idf_nghttp + DEFINES = -DHAVE_CONFIG_H + DEP_FILE = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_npn.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir + OBJECT_FILE_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib + TARGET_COMPILE_PDB = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/__idf_nghttp.pdb + TARGET_PDB = esp-idf/nghttp/libnghttp.pdb +build esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_option.c.obj: C_COMPILER____idf_nghttp /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_option.c || cmake_object_order_depends_target___idf_nghttp + DEFINES = -DHAVE_CONFIG_H + DEP_FILE = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_option.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir + OBJECT_FILE_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib + TARGET_COMPILE_PDB = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/__idf_nghttp.pdb + TARGET_PDB = esp-idf/nghttp/libnghttp.pdb +build esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_outbound_item.c.obj: C_COMPILER____idf_nghttp /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_outbound_item.c || cmake_object_order_depends_target___idf_nghttp + DEFINES = -DHAVE_CONFIG_H + DEP_FILE = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_outbound_item.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir + OBJECT_FILE_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib + TARGET_COMPILE_PDB = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/__idf_nghttp.pdb + TARGET_PDB = esp-idf/nghttp/libnghttp.pdb +build esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_pq.c.obj: C_COMPILER____idf_nghttp /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_pq.c || cmake_object_order_depends_target___idf_nghttp + DEFINES = -DHAVE_CONFIG_H + DEP_FILE = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_pq.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir + OBJECT_FILE_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib + TARGET_COMPILE_PDB = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/__idf_nghttp.pdb + TARGET_PDB = esp-idf/nghttp/libnghttp.pdb +build esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_priority_spec.c.obj: C_COMPILER____idf_nghttp /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_priority_spec.c || cmake_object_order_depends_target___idf_nghttp + DEFINES = -DHAVE_CONFIG_H + DEP_FILE = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_priority_spec.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir + OBJECT_FILE_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib + TARGET_COMPILE_PDB = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/__idf_nghttp.pdb + TARGET_PDB = esp-idf/nghttp/libnghttp.pdb +build esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_queue.c.obj: C_COMPILER____idf_nghttp /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_queue.c || cmake_object_order_depends_target___idf_nghttp + DEFINES = -DHAVE_CONFIG_H + DEP_FILE = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_queue.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir + OBJECT_FILE_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib + TARGET_COMPILE_PDB = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/__idf_nghttp.pdb + TARGET_PDB = esp-idf/nghttp/libnghttp.pdb +build esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_rcbuf.c.obj: C_COMPILER____idf_nghttp /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_rcbuf.c || cmake_object_order_depends_target___idf_nghttp + DEFINES = -DHAVE_CONFIG_H + DEP_FILE = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_rcbuf.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir + OBJECT_FILE_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib + TARGET_COMPILE_PDB = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/__idf_nghttp.pdb + TARGET_PDB = esp-idf/nghttp/libnghttp.pdb +build esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_session.c.obj: C_COMPILER____idf_nghttp /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_session.c || cmake_object_order_depends_target___idf_nghttp + DEFINES = -DHAVE_CONFIG_H + DEP_FILE = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_session.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir + OBJECT_FILE_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib + TARGET_COMPILE_PDB = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/__idf_nghttp.pdb + TARGET_PDB = esp-idf/nghttp/libnghttp.pdb +build esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_stream.c.obj: C_COMPILER____idf_nghttp /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_stream.c || cmake_object_order_depends_target___idf_nghttp + DEFINES = -DHAVE_CONFIG_H + DEP_FILE = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_stream.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir + OBJECT_FILE_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib + TARGET_COMPILE_PDB = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/__idf_nghttp.pdb + TARGET_PDB = esp-idf/nghttp/libnghttp.pdb +build esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_submit.c.obj: C_COMPILER____idf_nghttp /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_submit.c || cmake_object_order_depends_target___idf_nghttp + DEFINES = -DHAVE_CONFIG_H + DEP_FILE = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_submit.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir + OBJECT_FILE_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib + TARGET_COMPILE_PDB = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/__idf_nghttp.pdb + TARGET_PDB = esp-idf/nghttp/libnghttp.pdb +build esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_version.c.obj: C_COMPILER____idf_nghttp /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_version.c || cmake_object_order_depends_target___idf_nghttp + DEFINES = -DHAVE_CONFIG_H + DEP_FILE = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_version.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir + OBJECT_FILE_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib + TARGET_COMPILE_PDB = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/__idf_nghttp.pdb + TARGET_PDB = esp-idf/nghttp/libnghttp.pdb +build esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/port/http_parser.c.obj: C_COMPILER____idf_nghttp /home/mithras/esp/esp-idf/components/nghttp/port/http_parser.c || cmake_object_order_depends_target___idf_nghttp + DEFINES = -DHAVE_CONFIG_H + DEP_FILE = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/port/http_parser.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir + OBJECT_FILE_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/port + TARGET_COMPILE_PDB = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/__idf_nghttp.pdb + TARGET_PDB = esp-idf/nghttp/libnghttp.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_nghttp + + +############################################# +# Link the static library esp-idf/nghttp/libnghttp.a + +build esp-idf/nghttp/libnghttp.a: CXX_STATIC_LIBRARY_LINKER____idf_nghttp esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_buf.c.obj esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_callbacks.c.obj esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_debug.c.obj esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_frame.c.obj esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_hd.c.obj esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_hd_huffman.c.obj esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_hd_huffman_data.c.obj esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_helper.c.obj esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_http.c.obj esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_map.c.obj esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_mem.c.obj esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_npn.c.obj esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_option.c.obj esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_outbound_item.c.obj esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_pq.c.obj esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_priority_spec.c.obj esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_queue.c.obj esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_rcbuf.c.obj esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_session.c.obj esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_stream.c.obj esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_submit.c.obj esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_version.c.obj esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/port/http_parser.c.obj || esp-idf/esp-tls/libesp-tls.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/__idf_nghttp.pdb + TARGET_FILE = esp-idf/nghttp/libnghttp.a + TARGET_PDB = esp-idf/nghttp/libnghttp.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/nghttp/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/nghttp && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/nghttp/rebuild_cache: phony esp-idf/nghttp/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/nghttp/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/nghttp/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/nghttp/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/nghttp && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/nghttp/install/local: phony esp-idf/nghttp/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/nghttp/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/nghttp/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/nghttp && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/nghttp/install: phony esp-idf/nghttp/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/esp-tls/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp-tls/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp-tls && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/esp-tls/install/strip: phony esp-idf/esp-tls/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/esp-tls/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp-tls && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/esp-tls/edit_cache: phony esp-idf/esp-tls/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp-tls + + +############################################# +# Order-only phony target for __idf_esp-tls + +build cmake_object_order_depends_target___idf_esp-tls: phony || cmake_object_order_depends_target___idf_tcp_transport +build esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj: C_COMPILER____idf_esp-tls /home/mithras/esp/esp-idf/components/esp-tls/esp_tls.c || cmake_object_order_depends_target___idf_esp-tls + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/esp-tls/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes + OBJECT_DIR = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir + OBJECT_FILE_DIR = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir + TARGET_COMPILE_PDB = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/__idf_esp-tls.pdb + TARGET_PDB = esp-idf/esp-tls/libesp-tls.pdb +build esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj: C_COMPILER____idf_esp-tls /home/mithras/esp/esp-idf/components/esp-tls/esp_tls_mbedtls.c || cmake_object_order_depends_target___idf_esp-tls + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/esp-tls/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes + OBJECT_DIR = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir + OBJECT_FILE_DIR = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir + TARGET_COMPILE_PDB = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/__idf_esp-tls.pdb + TARGET_PDB = esp-idf/esp-tls/libesp-tls.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp-tls + + +############################################# +# Link the static library esp-idf/esp-tls/libesp-tls.a + +build esp-idf/esp-tls/libesp-tls.a: CXX_STATIC_LIBRARY_LINKER____idf_esp-tls esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj || esp-idf/tcp_transport/libtcp_transport.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/__idf_esp-tls.pdb + TARGET_FILE = esp-idf/esp-tls/libesp-tls.a + TARGET_PDB = esp-idf/esp-tls/libesp-tls.pdb + +############################################# +# Utility command for list_install_components + +build esp-idf/esp-tls/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/esp-tls/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp-tls/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp-tls && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/esp-tls/install/local: phony esp-idf/esp-tls/CMakeFiles/install/local.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp-tls/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp-tls && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/esp-tls/rebuild_cache: phony esp-idf/esp-tls/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for install + +build esp-idf/esp-tls/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp-tls/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp-tls && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/esp-tls/install: phony esp-idf/esp-tls/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_adc_cal/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_adc_cal/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_adc_cal && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/esp_adc_cal/install/strip: phony esp-idf/esp_adc_cal/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_adc_cal/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_adc_cal && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/esp_adc_cal/edit_cache: phony esp-idf/esp_adc_cal/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_adc_cal + + +############################################# +# Order-only phony target for __idf_esp_adc_cal + +build cmake_object_order_depends_target___idf_esp_adc_cal: phony || cmake_object_order_depends_target___idf_xtensa +build esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir/esp_adc_cal.c.obj: C_COMPILER____idf_esp_adc_cal /home/mithras/esp/esp-idf/components/esp_adc_cal/esp_adc_cal.c || cmake_object_order_depends_target___idf_esp_adc_cal + DEP_FILE = esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir/esp_adc_cal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_adc_cal/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir + OBJECT_FILE_DIR = esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir + TARGET_COMPILE_PDB = esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir/__idf_esp_adc_cal.pdb + TARGET_PDB = esp-idf/esp_adc_cal/libesp_adc_cal.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_adc_cal + + +############################################# +# Link the static library esp-idf/esp_adc_cal/libesp_adc_cal.a + +build esp-idf/esp_adc_cal/libesp_adc_cal.a: CXX_STATIC_LIBRARY_LINKER____idf_esp_adc_cal esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir/esp_adc_cal.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir/__idf_esp_adc_cal.pdb + TARGET_FILE = esp-idf/esp_adc_cal/libesp_adc_cal.a + TARGET_PDB = esp-idf/esp_adc_cal/libesp_adc_cal.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_adc_cal/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_adc_cal && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/esp_adc_cal/rebuild_cache: phony esp-idf/esp_adc_cal/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_adc_cal/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/esp_adc_cal/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_adc_cal/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_adc_cal && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/esp_adc_cal/install/local: phony esp-idf/esp_adc_cal/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/esp_adc_cal/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_adc_cal/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_adc_cal && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/esp_adc_cal/install: phony esp-idf/esp_adc_cal/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_gdbstub/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_gdbstub && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/esp_gdbstub/edit_cache: phony esp-idf/esp_gdbstub/CMakeFiles/edit_cache.util + +############################################# +# Utility command for install/strip + +build esp-idf/esp_gdbstub/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_gdbstub/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_gdbstub && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/esp_gdbstub/install/strip: phony esp-idf/esp_gdbstub/CMakeFiles/install/strip.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_gdbstub + + +############################################# +# Order-only phony target for __idf_esp_gdbstub + +build cmake_object_order_depends_target___idf_esp_gdbstub: phony || cmake_object_order_depends_target___idf_xtensa +build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj: C_COMPILER____idf_esp_gdbstub /home/mithras/esp/esp-idf/components/esp_gdbstub/src/gdbstub.c || cmake_object_order_depends_target___idf_esp_gdbstub + DEP_FILE = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_gdbstub/include -I/home/mithras/esp/esp-idf/components/esp_gdbstub/private_include -I/home/mithras/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/mithras/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir + OBJECT_FILE_DIR = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/__idf_esp_gdbstub.pdb + TARGET_PDB = esp-idf/esp_gdbstub/libesp_gdbstub.pdb +build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj: C_COMPILER____idf_esp_gdbstub /home/mithras/esp/esp-idf/components/esp_gdbstub/src/packet.c || cmake_object_order_depends_target___idf_esp_gdbstub + DEP_FILE = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_gdbstub/include -I/home/mithras/esp/esp-idf/components/esp_gdbstub/private_include -I/home/mithras/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/mithras/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir + OBJECT_FILE_DIR = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/__idf_esp_gdbstub.pdb + TARGET_PDB = esp-idf/esp_gdbstub/libesp_gdbstub.pdb +build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/esp32/gdbstub_esp32.c.obj: C_COMPILER____idf_esp_gdbstub /home/mithras/esp/esp-idf/components/esp_gdbstub/esp32/gdbstub_esp32.c || cmake_object_order_depends_target___idf_esp_gdbstub + DEP_FILE = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/esp32/gdbstub_esp32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_gdbstub/include -I/home/mithras/esp/esp-idf/components/esp_gdbstub/private_include -I/home/mithras/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/mithras/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir + OBJECT_FILE_DIR = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/esp32 + TARGET_COMPILE_PDB = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/__idf_esp_gdbstub.pdb + TARGET_PDB = esp-idf/esp_gdbstub/libesp_gdbstub.pdb +build esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub_xtensa.c.obj: C_COMPILER____idf_esp_gdbstub /home/mithras/esp/esp-idf/components/esp_gdbstub/xtensa/gdbstub_xtensa.c || cmake_object_order_depends_target___idf_esp_gdbstub + DEP_FILE = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub_xtensa.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_gdbstub/include -I/home/mithras/esp/esp-idf/components/esp_gdbstub/private_include -I/home/mithras/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/mithras/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir + OBJECT_FILE_DIR = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa + TARGET_COMPILE_PDB = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/__idf_esp_gdbstub.pdb + TARGET_PDB = esp-idf/esp_gdbstub/libesp_gdbstub.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_gdbstub + + +############################################# +# Link the static library esp-idf/esp_gdbstub/libesp_gdbstub.a + +build esp-idf/esp_gdbstub/libesp_gdbstub.a: CXX_STATIC_LIBRARY_LINKER____idf_esp_gdbstub esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/esp32/gdbstub_esp32.c.obj esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub_xtensa.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/__idf_esp_gdbstub.pdb + TARGET_FILE = esp-idf/esp_gdbstub/libesp_gdbstub.a + TARGET_PDB = esp-idf/esp_gdbstub/libesp_gdbstub.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_gdbstub/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_gdbstub && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/esp_gdbstub/rebuild_cache: phony esp-idf/esp_gdbstub/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_gdbstub/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/esp_gdbstub/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_gdbstub/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_gdbstub && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/esp_gdbstub/install/local: phony esp-idf/esp_gdbstub/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/esp_gdbstub/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_gdbstub/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_gdbstub && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/esp_gdbstub/install: phony esp-idf/esp_gdbstub/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/tcp_transport/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/tcp_transport/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/tcp_transport && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/tcp_transport/install/strip: phony esp-idf/tcp_transport/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/tcp_transport/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/tcp_transport && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/tcp_transport/edit_cache: phony esp-idf/tcp_transport/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_tcp_transport + + +############################################# +# Order-only phony target for __idf_tcp_transport + +build cmake_object_order_depends_target___idf_tcp_transport: phony || cmake_object_order_depends_target___idf_esp_http_client +build esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj: C_COMPILER____idf_tcp_transport /home/mithras/esp/esp-idf/components/tcp_transport/transport.c || cmake_object_order_depends_target___idf_tcp_transport + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/tcp_transport/include -I/home/mithras/esp/esp-idf/components/tcp_transport/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir + OBJECT_FILE_DIR = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir + TARGET_COMPILE_PDB = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/__idf_tcp_transport.pdb + TARGET_PDB = esp-idf/tcp_transport/libtcp_transport.pdb +build esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj: C_COMPILER____idf_tcp_transport /home/mithras/esp/esp-idf/components/tcp_transport/transport_ssl.c || cmake_object_order_depends_target___idf_tcp_transport + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/tcp_transport/include -I/home/mithras/esp/esp-idf/components/tcp_transport/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir + OBJECT_FILE_DIR = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir + TARGET_COMPILE_PDB = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/__idf_tcp_transport.pdb + TARGET_PDB = esp-idf/tcp_transport/libtcp_transport.pdb +build esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_tcp.c.obj: C_COMPILER____idf_tcp_transport /home/mithras/esp/esp-idf/components/tcp_transport/transport_tcp.c || cmake_object_order_depends_target___idf_tcp_transport + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_tcp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/tcp_transport/include -I/home/mithras/esp/esp-idf/components/tcp_transport/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir + OBJECT_FILE_DIR = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir + TARGET_COMPILE_PDB = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/__idf_tcp_transport.pdb + TARGET_PDB = esp-idf/tcp_transport/libtcp_transport.pdb +build esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj: C_COMPILER____idf_tcp_transport /home/mithras/esp/esp-idf/components/tcp_transport/transport_ws.c || cmake_object_order_depends_target___idf_tcp_transport + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/tcp_transport/include -I/home/mithras/esp/esp-idf/components/tcp_transport/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir + OBJECT_FILE_DIR = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir + TARGET_COMPILE_PDB = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/__idf_tcp_transport.pdb + TARGET_PDB = esp-idf/tcp_transport/libtcp_transport.pdb +build esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_utils.c.obj: C_COMPILER____idf_tcp_transport /home/mithras/esp/esp-idf/components/tcp_transport/transport_utils.c || cmake_object_order_depends_target___idf_tcp_transport + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_utils.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/tcp_transport/include -I/home/mithras/esp/esp-idf/components/tcp_transport/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir + OBJECT_FILE_DIR = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir + TARGET_COMPILE_PDB = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/__idf_tcp_transport.pdb + TARGET_PDB = esp-idf/tcp_transport/libtcp_transport.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_tcp_transport + + +############################################# +# Link the static library esp-idf/tcp_transport/libtcp_transport.a + +build esp-idf/tcp_transport/libtcp_transport.a: CXX_STATIC_LIBRARY_LINKER____idf_tcp_transport esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_tcp.c.obj esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_utils.c.obj || esp-idf/esp_http_client/libesp_http_client.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/__idf_tcp_transport.pdb + TARGET_FILE = esp-idf/tcp_transport/libtcp_transport.a + TARGET_PDB = esp-idf/tcp_transport/libtcp_transport.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/tcp_transport/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/tcp_transport && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/tcp_transport/rebuild_cache: phony esp-idf/tcp_transport/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/tcp_transport/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/tcp_transport/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/tcp_transport/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/tcp_transport && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/tcp_transport/install/local: phony esp-idf/tcp_transport/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/tcp_transport/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/tcp_transport/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/tcp_transport && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/tcp_transport/install: phony esp-idf/tcp_transport/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_http_client/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_http_client/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_http_client && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/esp_http_client/install/strip: phony esp-idf/esp_http_client/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_http_client/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_http_client && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/esp_http_client/edit_cache: phony esp-idf/esp_http_client/CMakeFiles/edit_cache.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_http_client/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_http_client && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/esp_http_client/rebuild_cache: phony esp-idf/esp_http_client/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_http_client/list_install_components: phony +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_http_client + + +############################################# +# Order-only phony target for __idf_esp_http_client + +build cmake_object_order_depends_target___idf_esp_http_client: phony || cmake_object_order_depends_target___idf_esp_http_server +build esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj: C_COMPILER____idf_esp_http_client /home/mithras/esp/esp-idf/components/esp_http_client/esp_http_client.c || cmake_object_order_depends_target___idf_esp_http_client + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/esp_http_client/lib/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/tcp_transport/include + OBJECT_DIR = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir + OBJECT_FILE_DIR = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir + TARGET_COMPILE_PDB = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/__idf_esp_http_client.pdb + TARGET_PDB = esp-idf/esp_http_client/libesp_http_client.pdb +build esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj: C_COMPILER____idf_esp_http_client /home/mithras/esp/esp-idf/components/esp_http_client/lib/http_auth.c || cmake_object_order_depends_target___idf_esp_http_client + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/esp_http_client/lib/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/tcp_transport/include + OBJECT_DIR = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir + OBJECT_FILE_DIR = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib + TARGET_COMPILE_PDB = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/__idf_esp_http_client.pdb + TARGET_PDB = esp-idf/esp_http_client/libesp_http_client.pdb +build esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj: C_COMPILER____idf_esp_http_client /home/mithras/esp/esp-idf/components/esp_http_client/lib/http_header.c || cmake_object_order_depends_target___idf_esp_http_client + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/esp_http_client/lib/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/tcp_transport/include + OBJECT_DIR = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir + OBJECT_FILE_DIR = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib + TARGET_COMPILE_PDB = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/__idf_esp_http_client.pdb + TARGET_PDB = esp-idf/esp_http_client/libesp_http_client.pdb +build esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj: C_COMPILER____idf_esp_http_client /home/mithras/esp/esp-idf/components/esp_http_client/lib/http_utils.c || cmake_object_order_depends_target___idf_esp_http_client + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/esp_http_client/lib/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/tcp_transport/include + OBJECT_DIR = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir + OBJECT_FILE_DIR = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib + TARGET_COMPILE_PDB = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/__idf_esp_http_client.pdb + TARGET_PDB = esp-idf/esp_http_client/libesp_http_client.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_http_client + + +############################################# +# Link the static library esp-idf/esp_http_client/libesp_http_client.a + +build esp-idf/esp_http_client/libesp_http_client.a: CXX_STATIC_LIBRARY_LINKER____idf_esp_http_client esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj || esp-idf/esp_http_server/libesp_http_server.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/__idf_esp_http_client.pdb + TARGET_FILE = esp-idf/esp_http_client/libesp_http_client.a + TARGET_PDB = esp-idf/esp_http_client/libesp_http_client.pdb + +############################################# +# Utility command for install/local + +build esp-idf/esp_http_client/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_http_client/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_http_client && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/esp_http_client/install/local: phony esp-idf/esp_http_client/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/esp_http_client/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_http_client/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_http_client && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/esp_http_client/install: phony esp-idf/esp_http_client/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_http_server/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_http_server/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_http_server && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/esp_http_server/install/strip: phony esp-idf/esp_http_server/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_http_server/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_http_server && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/esp_http_server/edit_cache: phony esp-idf/esp_http_server/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_http_server + + +############################################# +# Order-only phony target for __idf_esp_http_server + +build cmake_object_order_depends_target___idf_esp_http_server: phony || cmake_object_order_depends_target___idf_ulp +build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj: C_COMPILER____idf_esp_http_server /home/mithras/esp/esp-idf/components/esp_http_server/src/httpd_main.c || cmake_object_order_depends_target___idf_esp_http_server + DEFINES = -DHAVE_CONFIG_H + DEP_FILE = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/esp_http_server/src/port/esp32 -I/home/mithras/esp/esp-idf/components/esp_http_server/src/util -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes + OBJECT_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir + OBJECT_FILE_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/__idf_esp_http_server.pdb + TARGET_PDB = esp-idf/esp_http_server/libesp_http_server.pdb +build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj: C_COMPILER____idf_esp_http_server /home/mithras/esp/esp-idf/components/esp_http_server/src/httpd_parse.c || cmake_object_order_depends_target___idf_esp_http_server + DEFINES = -DHAVE_CONFIG_H + DEP_FILE = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/esp_http_server/src/port/esp32 -I/home/mithras/esp/esp-idf/components/esp_http_server/src/util -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes + OBJECT_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir + OBJECT_FILE_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/__idf_esp_http_server.pdb + TARGET_PDB = esp-idf/esp_http_server/libesp_http_server.pdb +build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj: C_COMPILER____idf_esp_http_server /home/mithras/esp/esp-idf/components/esp_http_server/src/httpd_sess.c || cmake_object_order_depends_target___idf_esp_http_server + DEFINES = -DHAVE_CONFIG_H + DEP_FILE = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/esp_http_server/src/port/esp32 -I/home/mithras/esp/esp-idf/components/esp_http_server/src/util -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes + OBJECT_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir + OBJECT_FILE_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/__idf_esp_http_server.pdb + TARGET_PDB = esp-idf/esp_http_server/libesp_http_server.pdb +build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj: C_COMPILER____idf_esp_http_server /home/mithras/esp/esp-idf/components/esp_http_server/src/httpd_txrx.c || cmake_object_order_depends_target___idf_esp_http_server + DEFINES = -DHAVE_CONFIG_H + DEP_FILE = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/esp_http_server/src/port/esp32 -I/home/mithras/esp/esp-idf/components/esp_http_server/src/util -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes + OBJECT_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir + OBJECT_FILE_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/__idf_esp_http_server.pdb + TARGET_PDB = esp-idf/esp_http_server/libesp_http_server.pdb +build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj: C_COMPILER____idf_esp_http_server /home/mithras/esp/esp-idf/components/esp_http_server/src/httpd_uri.c || cmake_object_order_depends_target___idf_esp_http_server + DEFINES = -DHAVE_CONFIG_H + DEP_FILE = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/esp_http_server/src/port/esp32 -I/home/mithras/esp/esp-idf/components/esp_http_server/src/util -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes + OBJECT_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir + OBJECT_FILE_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/__idf_esp_http_server.pdb + TARGET_PDB = esp-idf/esp_http_server/libesp_http_server.pdb +build esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj: C_COMPILER____idf_esp_http_server /home/mithras/esp/esp-idf/components/esp_http_server/src/util/ctrl_sock.c || cmake_object_order_depends_target___idf_esp_http_server + DEFINES = -DHAVE_CONFIG_H + DEP_FILE = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/esp_http_server/src/port/esp32 -I/home/mithras/esp/esp-idf/components/esp_http_server/src/util -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes + OBJECT_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir + OBJECT_FILE_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util + TARGET_COMPILE_PDB = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/__idf_esp_http_server.pdb + TARGET_PDB = esp-idf/esp_http_server/libesp_http_server.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_http_server + + +############################################# +# Link the static library esp-idf/esp_http_server/libesp_http_server.a + +build esp-idf/esp_http_server/libesp_http_server.a: CXX_STATIC_LIBRARY_LINKER____idf_esp_http_server esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj || esp-idf/ulp/libulp.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/__idf_esp_http_server.pdb + TARGET_FILE = esp-idf/esp_http_server/libesp_http_server.a + TARGET_PDB = esp-idf/esp_http_server/libesp_http_server.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_http_server/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_http_server && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/esp_http_server/rebuild_cache: phony esp-idf/esp_http_server/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_http_server/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/esp_http_server/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_http_server/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_http_server && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/esp_http_server/install/local: phony esp-idf/esp_http_server/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/esp_http_server/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_http_server/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_http_server && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/esp_http_server/install: phony esp-idf/esp_http_server/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_https_ota/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_https_ota/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_https_ota && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/esp_https_ota/install/strip: phony esp-idf/esp_https_ota/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_https_ota/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_https_ota && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/esp_https_ota/edit_cache: phony esp-idf/esp_https_ota/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_https_ota + + +############################################# +# Order-only phony target for __idf_esp_https_ota + +build cmake_object_order_depends_target___idf_esp_https_ota: phony || cmake_object_order_depends_target___idf_xtensa +build esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj: C_COMPILER____idf_esp_https_ota /home/mithras/esp/esp-idf/components/esp_https_ota/src/esp_https_ota.c || cmake_object_order_depends_target___idf_esp_https_ota + DEFINES = -DHAVE_CONFIG_H + DEP_FILE = esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_https_ota/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir + OBJECT_FILE_DIR = esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/__idf_esp_https_ota.pdb + TARGET_PDB = esp-idf/esp_https_ota/libesp_https_ota.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_https_ota + + +############################################# +# Link the static library esp-idf/esp_https_ota/libesp_https_ota.a + +build esp-idf/esp_https_ota/libesp_https_ota.a: CXX_STATIC_LIBRARY_LINKER____idf_esp_https_ota esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/__idf_esp_https_ota.pdb + TARGET_FILE = esp-idf/esp_https_ota/libesp_https_ota.a + TARGET_PDB = esp-idf/esp_https_ota/libesp_https_ota.pdb + +############################################# +# Utility command for install + +build esp-idf/esp_https_ota/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_https_ota/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_https_ota && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/esp_https_ota/install: phony esp-idf/esp_https_ota/CMakeFiles/install.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_https_ota/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_https_ota && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/esp_https_ota/rebuild_cache: phony esp-idf/esp_https_ota/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_https_ota/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/esp_https_ota/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_https_ota/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_https_ota && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/esp_https_ota/install/local: phony esp-idf/esp_https_ota/CMakeFiles/install/local.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_https_server/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_https_server && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/esp_https_server/edit_cache: phony esp-idf/esp_https_server/CMakeFiles/edit_cache.util + +############################################# +# Utility command for install/strip + +build esp-idf/esp_https_server/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_https_server/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_https_server && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/esp_https_server/install/strip: phony esp-idf/esp_https_server/CMakeFiles/install/strip.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_https_server + + +############################################# +# Order-only phony target for __idf_esp_https_server + +build cmake_object_order_depends_target___idf_esp_https_server: phony || cmake_object_order_depends_target___idf_xtensa +build esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj: C_COMPILER____idf_esp_https_server /home/mithras/esp/esp-idf/components/esp_https_server/src/https_server.c || cmake_object_order_depends_target___idf_esp_https_server + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_https_server/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir + OBJECT_FILE_DIR = esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/__idf_esp_https_server.pdb + TARGET_PDB = esp-idf/esp_https_server/libesp_https_server.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_https_server + + +############################################# +# Link the static library esp-idf/esp_https_server/libesp_https_server.a + +build esp-idf/esp_https_server/libesp_https_server.a: CXX_STATIC_LIBRARY_LINKER____idf_esp_https_server esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/__idf_esp_https_server.pdb + TARGET_FILE = esp-idf/esp_https_server/libesp_https_server.a + TARGET_PDB = esp-idf/esp_https_server/libesp_https_server.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_https_server/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_https_server && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/esp_https_server/rebuild_cache: phony esp-idf/esp_https_server/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_https_server/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/esp_https_server/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_https_server/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_https_server && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/esp_https_server/install/local: phony esp-idf/esp_https_server/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/esp_https_server/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_https_server/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_https_server && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/esp_https_server/install: phony esp-idf/esp_https_server/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/protobuf-c/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/protobuf-c/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/protobuf-c && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/protobuf-c/install/strip: phony esp-idf/protobuf-c/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/protobuf-c/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/protobuf-c && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/protobuf-c/edit_cache: phony esp-idf/protobuf-c/CMakeFiles/edit_cache.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/protobuf-c/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/protobuf-c && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/protobuf-c/rebuild_cache: phony esp-idf/protobuf-c/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/protobuf-c/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/protobuf-c/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/protobuf-c/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/protobuf-c && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/protobuf-c/install/local: phony esp-idf/protobuf-c/CMakeFiles/install/local.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_protobuf-c + + +############################################# +# Order-only phony target for __idf_protobuf-c + +build cmake_object_order_depends_target___idf_protobuf-c: phony || cmake_object_order_depends_target___idf_xtensa +build esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj: C_COMPILER____idf_protobuf-c /home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c/protobuf-c/protobuf-c.c || cmake_object_order_depends_target___idf_protobuf-c + DEP_FILE = esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir + OBJECT_FILE_DIR = esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c + TARGET_COMPILE_PDB = esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/__idf_protobuf-c.pdb + TARGET_PDB = esp-idf/protobuf-c/libprotobuf-c.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_protobuf-c + + +############################################# +# Link the static library esp-idf/protobuf-c/libprotobuf-c.a + +build esp-idf/protobuf-c/libprotobuf-c.a: CXX_STATIC_LIBRARY_LINKER____idf_protobuf-c esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/__idf_protobuf-c.pdb + TARGET_FILE = esp-idf/protobuf-c/libprotobuf-c.a + TARGET_PDB = esp-idf/protobuf-c/libprotobuf-c.pdb + +############################################# +# Utility command for install + +build esp-idf/protobuf-c/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/protobuf-c/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/protobuf-c && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/protobuf-c/install: phony esp-idf/protobuf-c/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/protocomm/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/protocomm/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/protocomm && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/protocomm/install/strip: phony esp-idf/protocomm/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/protocomm/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/protocomm && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/protocomm/edit_cache: phony esp-idf/protocomm/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_protocomm + + +############################################# +# Order-only phony target for __idf_protocomm + +build cmake_object_order_depends_target___idf_protocomm: phony || cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_protobuf-c cmake_object_order_depends_target___idf_xtensa +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj: C_COMPILER____idf_protocomm /home/mithras/esp/esp-idf/components/protocomm/src/common/protocomm.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/src/common -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes + OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common + TARGET_COMPILE_PDB = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/__idf_protocomm.pdb + TARGET_PDB = esp-idf/protocomm/libprotocomm.pdb +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj: C_COMPILER____idf_protocomm /home/mithras/esp/esp-idf/components/protocomm/src/security/security0.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/src/common -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes + OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security + TARGET_COMPILE_PDB = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/__idf_protocomm.pdb + TARGET_PDB = esp-idf/protocomm/libprotocomm.pdb +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj: C_COMPILER____idf_protocomm /home/mithras/esp/esp-idf/components/protocomm/src/security/security1.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/src/common -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes + OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security + TARGET_COMPILE_PDB = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/__idf_protocomm.pdb + TARGET_PDB = esp-idf/protocomm/libprotocomm.pdb +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj: C_COMPILER____idf_protocomm /home/mithras/esp/esp-idf/components/protocomm/proto-c/constants.pb-c.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/src/common -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes + OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c + TARGET_COMPILE_PDB = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/__idf_protocomm.pdb + TARGET_PDB = esp-idf/protocomm/libprotocomm.pdb +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj: C_COMPILER____idf_protocomm /home/mithras/esp/esp-idf/components/protocomm/proto-c/sec0.pb-c.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/src/common -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes + OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c + TARGET_COMPILE_PDB = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/__idf_protocomm.pdb + TARGET_PDB = esp-idf/protocomm/libprotocomm.pdb +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj: C_COMPILER____idf_protocomm /home/mithras/esp/esp-idf/components/protocomm/proto-c/sec1.pb-c.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/src/common -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes + OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c + TARGET_COMPILE_PDB = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/__idf_protocomm.pdb + TARGET_PDB = esp-idf/protocomm/libprotocomm.pdb +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj: C_COMPILER____idf_protocomm /home/mithras/esp/esp-idf/components/protocomm/proto-c/session.pb-c.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/src/common -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes + OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c + TARGET_COMPILE_PDB = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/__idf_protocomm.pdb + TARGET_PDB = esp-idf/protocomm/libprotocomm.pdb +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj: C_COMPILER____idf_protocomm /home/mithras/esp/esp-idf/components/protocomm/src/transports/protocomm_console.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/src/common -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes + OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports + TARGET_COMPILE_PDB = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/__idf_protocomm.pdb + TARGET_PDB = esp-idf/protocomm/libprotocomm.pdb +build esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj: C_COMPILER____idf_protocomm /home/mithras/esp/esp-idf/components/protocomm/src/transports/protocomm_httpd.c || cmake_object_order_depends_target___idf_protocomm + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/src/common -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes + OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir + OBJECT_FILE_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports + TARGET_COMPILE_PDB = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/__idf_protocomm.pdb + TARGET_PDB = esp-idf/protocomm/libprotocomm.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_protocomm + + +############################################# +# Link the static library esp-idf/protocomm/libprotocomm.a + +build esp-idf/protocomm/libprotocomm.a: CXX_STATIC_LIBRARY_LINKER____idf_protocomm esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj || esp-idf/console/libconsole.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/__idf_protocomm.pdb + TARGET_FILE = esp-idf/protocomm/libprotocomm.a + TARGET_PDB = esp-idf/protocomm/libprotocomm.pdb + +############################################# +# Utility command for list_install_components + +build esp-idf/protocomm/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/protocomm/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/protocomm/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/protocomm && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/protocomm/install/local: phony esp-idf/protocomm/CMakeFiles/install/local.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/protocomm/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/protocomm && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/protocomm/rebuild_cache: phony esp-idf/protocomm/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for install + +build esp-idf/protocomm/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/protocomm/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/protocomm && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/protocomm/install: phony esp-idf/protocomm/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/mdns/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/mdns && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/mdns/edit_cache: phony esp-idf/mdns/CMakeFiles/edit_cache.util + +############################################# +# Utility command for install/strip + +build esp-idf/mdns/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mdns/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/mdns && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/mdns/install/strip: phony esp-idf/mdns/CMakeFiles/install/strip.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_mdns + + +############################################# +# Order-only phony target for __idf_mdns + +build cmake_object_order_depends_target___idf_mdns: phony || cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_xtensa +build esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns.c.obj: C_COMPILER____idf_mdns /home/mithras/esp/esp-idf/components/mdns/mdns.c || cmake_object_order_depends_target___idf_mdns + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/mdns/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/console + OBJECT_DIR = esp-idf/mdns/CMakeFiles/__idf_mdns.dir + OBJECT_FILE_DIR = esp-idf/mdns/CMakeFiles/__idf_mdns.dir + TARGET_COMPILE_PDB = esp-idf/mdns/CMakeFiles/__idf_mdns.dir/__idf_mdns.pdb + TARGET_PDB = esp-idf/mdns/libmdns.pdb +build esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_console.c.obj: C_COMPILER____idf_mdns /home/mithras/esp/esp-idf/components/mdns/mdns_console.c || cmake_object_order_depends_target___idf_mdns + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_console.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/mdns/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/console + OBJECT_DIR = esp-idf/mdns/CMakeFiles/__idf_mdns.dir + OBJECT_FILE_DIR = esp-idf/mdns/CMakeFiles/__idf_mdns.dir + TARGET_COMPILE_PDB = esp-idf/mdns/CMakeFiles/__idf_mdns.dir/__idf_mdns.pdb + TARGET_PDB = esp-idf/mdns/libmdns.pdb +build esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_networking.c.obj: C_COMPILER____idf_mdns /home/mithras/esp/esp-idf/components/mdns/mdns_networking.c || cmake_object_order_depends_target___idf_mdns + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_networking.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/mdns/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/console + OBJECT_DIR = esp-idf/mdns/CMakeFiles/__idf_mdns.dir + OBJECT_FILE_DIR = esp-idf/mdns/CMakeFiles/__idf_mdns.dir + TARGET_COMPILE_PDB = esp-idf/mdns/CMakeFiles/__idf_mdns.dir/__idf_mdns.pdb + TARGET_PDB = esp-idf/mdns/libmdns.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_mdns + + +############################################# +# Link the static library esp-idf/mdns/libmdns.a + +build esp-idf/mdns/libmdns.a: CXX_STATIC_LIBRARY_LINKER____idf_mdns esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns.c.obj esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_console.c.obj esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_networking.c.obj || esp-idf/console/libconsole.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/mdns/CMakeFiles/__idf_mdns.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/mdns/CMakeFiles/__idf_mdns.dir/__idf_mdns.pdb + TARGET_FILE = esp-idf/mdns/libmdns.a + TARGET_PDB = esp-idf/mdns/libmdns.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mdns/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/mdns && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/mdns/rebuild_cache: phony esp-idf/mdns/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/mdns/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/mdns/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mdns/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/mdns && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/mdns/install/local: phony esp-idf/mdns/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/mdns/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mdns/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/mdns && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/mdns/install: phony esp-idf/mdns/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_local_ctrl/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_local_ctrl/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_local_ctrl && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/esp_local_ctrl/install/strip: phony esp-idf/esp_local_ctrl/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_local_ctrl/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_local_ctrl && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/esp_local_ctrl/edit_cache: phony esp-idf/esp_local_ctrl/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_local_ctrl + + +############################################# +# Order-only phony target for __idf_esp_local_ctrl + +build cmake_object_order_depends_target___idf_esp_local_ctrl: phony || cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_esp_https_server cmake_object_order_depends_target___idf_mdns cmake_object_order_depends_target___idf_protobuf-c cmake_object_order_depends_target___idf_protocomm cmake_object_order_depends_target___idf_xtensa +build esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj: C_COMPILER____idf_esp_local_ctrl /home/mithras/esp/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl.c || cmake_object_order_depends_target___idf_esp_local_ctrl + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/include -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/proto-c -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/src -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/esp_https_server/include -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/console + OBJECT_DIR = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir + OBJECT_FILE_DIR = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/__idf_esp_local_ctrl.pdb + TARGET_PDB = esp-idf/esp_local_ctrl/libesp_local_ctrl.pdb +build esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj: C_COMPILER____idf_esp_local_ctrl /home/mithras/esp/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl_handler.c || cmake_object_order_depends_target___idf_esp_local_ctrl + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/include -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/proto-c -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/src -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/esp_https_server/include -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/console + OBJECT_DIR = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir + OBJECT_FILE_DIR = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/__idf_esp_local_ctrl.pdb + TARGET_PDB = esp-idf/esp_local_ctrl/libesp_local_ctrl.pdb +build esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj: C_COMPILER____idf_esp_local_ctrl /home/mithras/esp/esp-idf/components/esp_local_ctrl/proto-c/esp_local_ctrl.pb-c.c || cmake_object_order_depends_target___idf_esp_local_ctrl + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/include -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/proto-c -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/src -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/esp_https_server/include -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/console + OBJECT_DIR = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir + OBJECT_FILE_DIR = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c + TARGET_COMPILE_PDB = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/__idf_esp_local_ctrl.pdb + TARGET_PDB = esp-idf/esp_local_ctrl/libesp_local_ctrl.pdb +build esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj: C_COMPILER____idf_esp_local_ctrl /home/mithras/esp/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl_transport_httpd.c || cmake_object_order_depends_target___idf_esp_local_ctrl + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/include -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/proto-c -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/src -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/esp_https_server/include -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/console + OBJECT_DIR = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir + OBJECT_FILE_DIR = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src + TARGET_COMPILE_PDB = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/__idf_esp_local_ctrl.pdb + TARGET_PDB = esp-idf/esp_local_ctrl/libesp_local_ctrl.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_local_ctrl + + +############################################# +# Link the static library esp-idf/esp_local_ctrl/libesp_local_ctrl.a + +build esp-idf/esp_local_ctrl/libesp_local_ctrl.a: CXX_STATIC_LIBRARY_LINKER____idf_esp_local_ctrl esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj || esp-idf/console/libconsole.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/mdns/libmdns.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/__idf_esp_local_ctrl.pdb + TARGET_FILE = esp-idf/esp_local_ctrl/libesp_local_ctrl.a + TARGET_PDB = esp-idf/esp_local_ctrl/libesp_local_ctrl.pdb + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_local_ctrl/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/esp_local_ctrl/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_local_ctrl/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_local_ctrl && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/esp_local_ctrl/install/local: phony esp-idf/esp_local_ctrl/CMakeFiles/install/local.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_local_ctrl/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_local_ctrl && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/esp_local_ctrl/rebuild_cache: phony esp-idf/esp_local_ctrl/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for install + +build esp-idf/esp_local_ctrl/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_local_ctrl/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_local_ctrl && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/esp_local_ctrl/install: phony esp-idf/esp_local_ctrl/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/sdmmc/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/sdmmc/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/sdmmc && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/sdmmc/install/strip: phony esp-idf/sdmmc/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/sdmmc/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/sdmmc && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/sdmmc/edit_cache: phony esp-idf/sdmmc/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_sdmmc + + +############################################# +# Order-only phony target for __idf_sdmmc + +build cmake_object_order_depends_target___idf_sdmmc: phony || cmake_object_order_depends_target___idf_xtensa +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj: C_COMPILER____idf_sdmmc /home/mithras/esp/esp-idf/components/sdmmc/sdmmc_cmd.c || cmake_object_order_depends_target___idf_sdmmc + DEP_FILE = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/sdmmc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir + TARGET_COMPILE_PDB = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/__idf_sdmmc.pdb + TARGET_PDB = esp-idf/sdmmc/libsdmmc.pdb +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj: C_COMPILER____idf_sdmmc /home/mithras/esp/esp-idf/components/sdmmc/sdmmc_common.c || cmake_object_order_depends_target___idf_sdmmc + DEP_FILE = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/sdmmc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir + TARGET_COMPILE_PDB = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/__idf_sdmmc.pdb + TARGET_PDB = esp-idf/sdmmc/libsdmmc.pdb +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj: C_COMPILER____idf_sdmmc /home/mithras/esp/esp-idf/components/sdmmc/sdmmc_init.c || cmake_object_order_depends_target___idf_sdmmc + DEP_FILE = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/sdmmc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir + TARGET_COMPILE_PDB = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/__idf_sdmmc.pdb + TARGET_PDB = esp-idf/sdmmc/libsdmmc.pdb +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj: C_COMPILER____idf_sdmmc /home/mithras/esp/esp-idf/components/sdmmc/sdmmc_io.c || cmake_object_order_depends_target___idf_sdmmc + DEP_FILE = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/sdmmc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir + TARGET_COMPILE_PDB = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/__idf_sdmmc.pdb + TARGET_PDB = esp-idf/sdmmc/libsdmmc.pdb +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj: C_COMPILER____idf_sdmmc /home/mithras/esp/esp-idf/components/sdmmc/sdmmc_mmc.c || cmake_object_order_depends_target___idf_sdmmc + DEP_FILE = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/sdmmc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir + TARGET_COMPILE_PDB = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/__idf_sdmmc.pdb + TARGET_PDB = esp-idf/sdmmc/libsdmmc.pdb +build esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj: C_COMPILER____idf_sdmmc /home/mithras/esp/esp-idf/components/sdmmc/sdmmc_sd.c || cmake_object_order_depends_target___idf_sdmmc + DEP_FILE = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/sdmmc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir + OBJECT_FILE_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir + TARGET_COMPILE_PDB = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/__idf_sdmmc.pdb + TARGET_PDB = esp-idf/sdmmc/libsdmmc.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_sdmmc + + +############################################# +# Link the static library esp-idf/sdmmc/libsdmmc.a + +build esp-idf/sdmmc/libsdmmc.a: CXX_STATIC_LIBRARY_LINKER____idf_sdmmc esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/__idf_sdmmc.pdb + TARGET_FILE = esp-idf/sdmmc/libsdmmc.a + TARGET_PDB = esp-idf/sdmmc/libsdmmc.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/sdmmc/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/sdmmc && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/sdmmc/rebuild_cache: phony esp-idf/sdmmc/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/sdmmc/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/sdmmc/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/sdmmc/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/sdmmc && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/sdmmc/install/local: phony esp-idf/sdmmc/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/sdmmc/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/sdmmc/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/sdmmc && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/sdmmc/install: phony esp-idf/sdmmc/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_serial_slave_link/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_serial_slave_link && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/esp_serial_slave_link/edit_cache: phony esp-idf/esp_serial_slave_link/CMakeFiles/edit_cache.util + +############################################# +# Utility command for install/strip + +build esp-idf/esp_serial_slave_link/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_serial_slave_link/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_serial_slave_link && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/esp_serial_slave_link/install/strip: phony esp-idf/esp_serial_slave_link/CMakeFiles/install/strip.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_serial_slave_link + + +############################################# +# Order-only phony target for __idf_esp_serial_slave_link + +build cmake_object_order_depends_target___idf_esp_serial_slave_link: phony || cmake_object_order_depends_target___idf_sdmmc cmake_object_order_depends_target___idf_xtensa +build esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl.c.obj: C_COMPILER____idf_esp_serial_slave_link /home/mithras/esp/esp-idf/components/esp_serial_slave_link/essl.c || cmake_object_order_depends_target___idf_esp_serial_slave_link + DEP_FILE = esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_serial_slave_link/include -I/home/mithras/esp/esp-idf/components/esp_serial_slave_link -I/home/mithras/esp/esp-idf/components/esp_serial_slave_link/include/esp_serial_slave_link -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/sdmmc/include + OBJECT_DIR = esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir + OBJECT_FILE_DIR = esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir + TARGET_COMPILE_PDB = esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/__idf_esp_serial_slave_link.pdb + TARGET_PDB = esp-idf/esp_serial_slave_link/libesp_serial_slave_link.pdb +build esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl_sdio.c.obj: C_COMPILER____idf_esp_serial_slave_link /home/mithras/esp/esp-idf/components/esp_serial_slave_link/essl_sdio.c || cmake_object_order_depends_target___idf_esp_serial_slave_link + DEP_FILE = esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl_sdio.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_serial_slave_link/include -I/home/mithras/esp/esp-idf/components/esp_serial_slave_link -I/home/mithras/esp/esp-idf/components/esp_serial_slave_link/include/esp_serial_slave_link -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/sdmmc/include + OBJECT_DIR = esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir + OBJECT_FILE_DIR = esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir + TARGET_COMPILE_PDB = esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/__idf_esp_serial_slave_link.pdb + TARGET_PDB = esp-idf/esp_serial_slave_link/libesp_serial_slave_link.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_serial_slave_link + + +############################################# +# Link the static library esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a + +build esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a: CXX_STATIC_LIBRARY_LINKER____idf_esp_serial_slave_link esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl.c.obj esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl_sdio.c.obj || esp-idf/sdmmc/libsdmmc.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/__idf_esp_serial_slave_link.pdb + TARGET_FILE = esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a + TARGET_PDB = esp-idf/esp_serial_slave_link/libesp_serial_slave_link.pdb + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_serial_slave_link/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/esp_serial_slave_link/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_serial_slave_link/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_serial_slave_link && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/esp_serial_slave_link/install/local: phony esp-idf/esp_serial_slave_link/CMakeFiles/install/local.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_serial_slave_link/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_serial_slave_link && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/esp_serial_slave_link/rebuild_cache: phony esp-idf/esp_serial_slave_link/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for install + +build esp-idf/esp_serial_slave_link/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_serial_slave_link/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_serial_slave_link && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/esp_serial_slave_link/install: phony esp-idf/esp_serial_slave_link/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/esp_websocket_client/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esp_websocket_client/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_websocket_client && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/esp_websocket_client/install/strip: phony esp-idf/esp_websocket_client/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/esp_websocket_client/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_websocket_client && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/esp_websocket_client/edit_cache: phony esp-idf/esp_websocket_client/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_esp_websocket_client + + +############################################# +# Order-only phony target for __idf_esp_websocket_client + +build cmake_object_order_depends_target___idf_esp_websocket_client: phony || cmake_object_order_depends_target___idf_xtensa +build esp-idf/esp_websocket_client/CMakeFiles/__idf_esp_websocket_client.dir/esp_websocket_client.c.obj: C_COMPILER____idf_esp_websocket_client /home/mithras/esp/esp-idf/components/esp_websocket_client/esp_websocket_client.c || cmake_object_order_depends_target___idf_esp_websocket_client + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/esp_websocket_client/CMakeFiles/__idf_esp_websocket_client.dir/esp_websocket_client.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/esp_websocket_client/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/tcp_transport/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes + OBJECT_DIR = esp-idf/esp_websocket_client/CMakeFiles/__idf_esp_websocket_client.dir + OBJECT_FILE_DIR = esp-idf/esp_websocket_client/CMakeFiles/__idf_esp_websocket_client.dir + TARGET_COMPILE_PDB = esp-idf/esp_websocket_client/CMakeFiles/__idf_esp_websocket_client.dir/__idf_esp_websocket_client.pdb + TARGET_PDB = esp-idf/esp_websocket_client/libesp_websocket_client.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_esp_websocket_client + + +############################################# +# Link the static library esp-idf/esp_websocket_client/libesp_websocket_client.a + +build esp-idf/esp_websocket_client/libesp_websocket_client.a: CXX_STATIC_LIBRARY_LINKER____idf_esp_websocket_client esp-idf/esp_websocket_client/CMakeFiles/__idf_esp_websocket_client.dir/esp_websocket_client.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/esp_websocket_client/CMakeFiles/__idf_esp_websocket_client.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/esp_websocket_client/CMakeFiles/__idf_esp_websocket_client.dir/__idf_esp_websocket_client.pdb + TARGET_FILE = esp-idf/esp_websocket_client/libesp_websocket_client.a + TARGET_PDB = esp-idf/esp_websocket_client/libesp_websocket_client.pdb + +############################################# +# Utility command for install + +build esp-idf/esp_websocket_client/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esp_websocket_client/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_websocket_client && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/esp_websocket_client/install: phony esp-idf/esp_websocket_client/CMakeFiles/install.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esp_websocket_client/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_websocket_client && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/esp_websocket_client/rebuild_cache: phony esp-idf/esp_websocket_client/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/esp_websocket_client/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/esp_websocket_client/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esp_websocket_client/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esp_websocket_client && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/esp_websocket_client/install/local: phony esp-idf/esp_websocket_client/CMakeFiles/install/local.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/esptool_py/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/esptool_py/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esptool_py && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/esptool_py/install/strip: phony esp-idf/esptool_py/CMakeFiles/install/strip.util + +############################################# +# Utility command for install/local + +build esp-idf/esptool_py/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/esptool_py/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esptool_py && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/esptool_py/install/local: phony esp-idf/esptool_py/CMakeFiles/install/local.util + +############################################# +# Utility command for app-flash + +build esp-idf/esptool_py/app-flash: phony esp-idf/esptool_py/CMakeFiles/app-flash app + +############################################# +# Utility command for edit_cache + +build esp-idf/esptool_py/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esptool_py && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/esptool_py/edit_cache: phony esp-idf/esptool_py/CMakeFiles/edit_cache.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/esptool_py/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esptool_py && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/esptool_py/rebuild_cache: phony esp-idf/esptool_py/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/esptool_py/list_install_components: phony + +############################################# +# Utility command for install + +build esp-idf/esptool_py/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/esptool_py/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/esptool_py && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/esptool_py/install: phony esp-idf/esptool_py/CMakeFiles/install.util + +############################################# +# Custom command for esp-idf/esptool_py/CMakeFiles/app-flash + +build esp-idf/esptool_py/CMakeFiles/app-flash: CUSTOM_COMMAND || _project_elf_src app bakalarka.elf esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/asio/libasio.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp32/__ldgen_output_esp32.project.ld esp-idf/esp32/esp32_linker_script esp-idf/esp32/libesp32.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/log/liblog.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl/liblvgl.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.a esp-idf/lwip/liblwip.a esp-idf/main/libmain.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/newlib/libnewlib.a esp-idf/nghttp/libnghttp.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/openssl/libopenssl.a esp-idf/perfmon/libperfmon.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/pthread/libpthread.a esp-idf/sdmmc/libsdmmc.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a esp-idf/spiffs/libspiffs.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/vfs/libvfs.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a gen_project_binary + COMMAND = cd /home/mithras/esp/esp-idf/components/esptool_py && /usr/bin/cmake -D IDF_PATH="/home/mithras/esp/esp-idf" -D ESPTOOLPY="/home/mithras/.espressif/python_env/idf4.2_py2.7_env/bin/python /home/mithras/esp/esp-idf/components/esptool_py/esptool/esptool.py --chip esp32" -D ESPTOOL_ARGS="--before=default_reset --after=hard_reset write_flash @app-flash_args" -D WORKING_DIRECTORY="/home/mithras/Documents/bakalarka/build" -P /home/mithras/esp/esp-idf/components/esptool_py/run_esptool.cmake + pool = console +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/expat/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/expat/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/expat && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/expat/install/strip: phony esp-idf/expat/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/expat/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/expat && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/expat/edit_cache: phony esp-idf/expat/CMakeFiles/edit_cache.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/expat/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/expat && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/expat/rebuild_cache: phony esp-idf/expat/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/expat/list_install_components: phony +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_expat + + +############################################# +# Order-only phony target for __idf_expat + +build cmake_object_order_depends_target___idf_expat: phony || cmake_object_order_depends_target___idf_xtensa +build esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmlparse.c.obj: C_COMPILER____idf_expat /home/mithras/esp/esp-idf/components/expat/expat/expat/lib/xmlparse.c || cmake_object_order_depends_target___idf_expat + DEFINES = -DHAVE_EXPAT_CONFIG_H -DHAVE_GETRANDOM + DEP_FILE = esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmlparse.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-implicit-fallthrough + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/expat/expat/expat/lib -I/home/mithras/esp/esp-idf/components/expat/port/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/expat/CMakeFiles/__idf_expat.dir + OBJECT_FILE_DIR = esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib + TARGET_COMPILE_PDB = esp-idf/expat/CMakeFiles/__idf_expat.dir/__idf_expat.pdb + TARGET_PDB = esp-idf/expat/libexpat.pdb +build esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmlrole.c.obj: C_COMPILER____idf_expat /home/mithras/esp/esp-idf/components/expat/expat/expat/lib/xmlrole.c || cmake_object_order_depends_target___idf_expat + DEFINES = -DHAVE_EXPAT_CONFIG_H -DHAVE_GETRANDOM + DEP_FILE = esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmlrole.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-implicit-fallthrough + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/expat/expat/expat/lib -I/home/mithras/esp/esp-idf/components/expat/port/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/expat/CMakeFiles/__idf_expat.dir + OBJECT_FILE_DIR = esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib + TARGET_COMPILE_PDB = esp-idf/expat/CMakeFiles/__idf_expat.dir/__idf_expat.pdb + TARGET_PDB = esp-idf/expat/libexpat.pdb +build esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmltok.c.obj: C_COMPILER____idf_expat /home/mithras/esp/esp-idf/components/expat/expat/expat/lib/xmltok.c || cmake_object_order_depends_target___idf_expat + DEFINES = -DHAVE_EXPAT_CONFIG_H -DHAVE_GETRANDOM + DEP_FILE = esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmltok.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-implicit-fallthrough + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/expat/expat/expat/lib -I/home/mithras/esp/esp-idf/components/expat/port/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/expat/CMakeFiles/__idf_expat.dir + OBJECT_FILE_DIR = esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib + TARGET_COMPILE_PDB = esp-idf/expat/CMakeFiles/__idf_expat.dir/__idf_expat.pdb + TARGET_PDB = esp-idf/expat/libexpat.pdb +build esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmltok_impl.c.obj: C_COMPILER____idf_expat /home/mithras/esp/esp-idf/components/expat/expat/expat/lib/xmltok_impl.c || cmake_object_order_depends_target___idf_expat + DEFINES = -DHAVE_EXPAT_CONFIG_H -DHAVE_GETRANDOM + DEP_FILE = esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmltok_impl.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-implicit-fallthrough + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/expat/expat/expat/lib -I/home/mithras/esp/esp-idf/components/expat/port/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/expat/CMakeFiles/__idf_expat.dir + OBJECT_FILE_DIR = esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib + TARGET_COMPILE_PDB = esp-idf/expat/CMakeFiles/__idf_expat.dir/__idf_expat.pdb + TARGET_PDB = esp-idf/expat/libexpat.pdb +build esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmltok_ns.c.obj: C_COMPILER____idf_expat /home/mithras/esp/esp-idf/components/expat/expat/expat/lib/xmltok_ns.c || cmake_object_order_depends_target___idf_expat + DEFINES = -DHAVE_EXPAT_CONFIG_H -DHAVE_GETRANDOM + DEP_FILE = esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmltok_ns.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-implicit-fallthrough + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/expat/expat/expat/lib -I/home/mithras/esp/esp-idf/components/expat/port/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/expat/CMakeFiles/__idf_expat.dir + OBJECT_FILE_DIR = esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib + TARGET_COMPILE_PDB = esp-idf/expat/CMakeFiles/__idf_expat.dir/__idf_expat.pdb + TARGET_PDB = esp-idf/expat/libexpat.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_expat + + +############################################# +# Link the static library esp-idf/expat/libexpat.a + +build esp-idf/expat/libexpat.a: CXX_STATIC_LIBRARY_LINKER____idf_expat esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmlparse.c.obj esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmlrole.c.obj esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmltok.c.obj esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmltok_impl.c.obj esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmltok_ns.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/expat/CMakeFiles/__idf_expat.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/expat/CMakeFiles/__idf_expat.dir/__idf_expat.pdb + TARGET_FILE = esp-idf/expat/libexpat.a + TARGET_PDB = esp-idf/expat/libexpat.pdb + +############################################# +# Utility command for install/local + +build esp-idf/expat/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/expat/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/expat && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/expat/install/local: phony esp-idf/expat/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/expat/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/expat/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/expat && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/expat/install: phony esp-idf/expat/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/wear_levelling/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/wear_levelling/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/wear_levelling && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/wear_levelling/install/strip: phony esp-idf/wear_levelling/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/wear_levelling/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/wear_levelling && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/wear_levelling/edit_cache: phony esp-idf/wear_levelling/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_wear_levelling + + +############################################# +# Order-only phony target for __idf_wear_levelling + +build cmake_object_order_depends_target___idf_wear_levelling: phony || cmake_object_order_depends_target___idf_xtensa +build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj: CXX_COMPILER____idf_wear_levelling /home/mithras/esp/esp-idf/components/wear_levelling/Partition.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEP_FILE = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/wear_levelling/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir + OBJECT_FILE_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir + TARGET_COMPILE_PDB = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/__idf_wear_levelling.pdb + TARGET_PDB = esp-idf/wear_levelling/libwear_levelling.pdb +build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj: CXX_COMPILER____idf_wear_levelling /home/mithras/esp/esp-idf/components/wear_levelling/SPI_Flash.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEP_FILE = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/wear_levelling/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir + OBJECT_FILE_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir + TARGET_COMPILE_PDB = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/__idf_wear_levelling.pdb + TARGET_PDB = esp-idf/wear_levelling/libwear_levelling.pdb +build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj: CXX_COMPILER____idf_wear_levelling /home/mithras/esp/esp-idf/components/wear_levelling/WL_Ext_Perf.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEP_FILE = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/wear_levelling/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir + OBJECT_FILE_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir + TARGET_COMPILE_PDB = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/__idf_wear_levelling.pdb + TARGET_PDB = esp-idf/wear_levelling/libwear_levelling.pdb +build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj: CXX_COMPILER____idf_wear_levelling /home/mithras/esp/esp-idf/components/wear_levelling/WL_Ext_Safe.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEP_FILE = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/wear_levelling/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir + OBJECT_FILE_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir + TARGET_COMPILE_PDB = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/__idf_wear_levelling.pdb + TARGET_PDB = esp-idf/wear_levelling/libwear_levelling.pdb +build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj: CXX_COMPILER____idf_wear_levelling /home/mithras/esp/esp-idf/components/wear_levelling/WL_Flash.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEP_FILE = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/wear_levelling/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir + OBJECT_FILE_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir + TARGET_COMPILE_PDB = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/__idf_wear_levelling.pdb + TARGET_PDB = esp-idf/wear_levelling/libwear_levelling.pdb +build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj: CXX_COMPILER____idf_wear_levelling /home/mithras/esp/esp-idf/components/wear_levelling/crc32.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEP_FILE = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/wear_levelling/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir + OBJECT_FILE_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir + TARGET_COMPILE_PDB = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/__idf_wear_levelling.pdb + TARGET_PDB = esp-idf/wear_levelling/libwear_levelling.pdb +build esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj: CXX_COMPILER____idf_wear_levelling /home/mithras/esp/esp-idf/components/wear_levelling/wear_levelling.cpp || cmake_object_order_depends_target___idf_wear_levelling + DEP_FILE = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/wear_levelling/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir + OBJECT_FILE_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir + TARGET_COMPILE_PDB = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/__idf_wear_levelling.pdb + TARGET_PDB = esp-idf/wear_levelling/libwear_levelling.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_wear_levelling + + +############################################# +# Link the static library esp-idf/wear_levelling/libwear_levelling.a + +build esp-idf/wear_levelling/libwear_levelling.a: CXX_STATIC_LIBRARY_LINKER____idf_wear_levelling esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/__idf_wear_levelling.pdb + TARGET_FILE = esp-idf/wear_levelling/libwear_levelling.a + TARGET_PDB = esp-idf/wear_levelling/libwear_levelling.pdb + +############################################# +# Utility command for install + +build esp-idf/wear_levelling/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/wear_levelling/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/wear_levelling && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/wear_levelling/install: phony esp-idf/wear_levelling/CMakeFiles/install.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/wear_levelling/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/wear_levelling && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/wear_levelling/rebuild_cache: phony esp-idf/wear_levelling/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/wear_levelling/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/wear_levelling/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/wear_levelling/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/wear_levelling && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/wear_levelling/install/local: phony esp-idf/wear_levelling/CMakeFiles/install/local.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/fatfs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/fatfs && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/fatfs/edit_cache: phony esp-idf/fatfs/CMakeFiles/edit_cache.util + +############################################# +# Utility command for install/strip + +build esp-idf/fatfs/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/fatfs/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/fatfs && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/fatfs/install/strip: phony esp-idf/fatfs/CMakeFiles/install/strip.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_fatfs + + +############################################# +# Order-only phony target for __idf_fatfs + +build cmake_object_order_depends_target___idf_fatfs: phony || cmake_object_order_depends_target___idf_sdmmc cmake_object_order_depends_target___idf_wear_levelling cmake_object_order_depends_target___idf_xtensa +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj: C_COMPILER____idf_fatfs /home/mithras/esp/esp-idf/components/fatfs/diskio/diskio.c || cmake_object_order_depends_target___idf_fatfs + DEP_FILE = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/fatfs/diskio -I/home/mithras/esp/esp-idf/components/fatfs/vfs -I/home/mithras/esp/esp-idf/components/fatfs/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/sdmmc/include + OBJECT_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio + TARGET_COMPILE_PDB = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/__idf_fatfs.pdb + TARGET_PDB = esp-idf/fatfs/libfatfs.pdb +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj: C_COMPILER____idf_fatfs /home/mithras/esp/esp-idf/components/fatfs/diskio/diskio_rawflash.c || cmake_object_order_depends_target___idf_fatfs + DEP_FILE = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/fatfs/diskio -I/home/mithras/esp/esp-idf/components/fatfs/vfs -I/home/mithras/esp/esp-idf/components/fatfs/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/sdmmc/include + OBJECT_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio + TARGET_COMPILE_PDB = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/__idf_fatfs.pdb + TARGET_PDB = esp-idf/fatfs/libfatfs.pdb +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj: C_COMPILER____idf_fatfs /home/mithras/esp/esp-idf/components/fatfs/diskio/diskio_sdmmc.c || cmake_object_order_depends_target___idf_fatfs + DEP_FILE = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/fatfs/diskio -I/home/mithras/esp/esp-idf/components/fatfs/vfs -I/home/mithras/esp/esp-idf/components/fatfs/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/sdmmc/include + OBJECT_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio + TARGET_COMPILE_PDB = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/__idf_fatfs.pdb + TARGET_PDB = esp-idf/fatfs/libfatfs.pdb +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj: C_COMPILER____idf_fatfs /home/mithras/esp/esp-idf/components/fatfs/diskio/diskio_wl.c || cmake_object_order_depends_target___idf_fatfs + DEP_FILE = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/fatfs/diskio -I/home/mithras/esp/esp-idf/components/fatfs/vfs -I/home/mithras/esp/esp-idf/components/fatfs/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/sdmmc/include + OBJECT_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio + TARGET_COMPILE_PDB = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/__idf_fatfs.pdb + TARGET_PDB = esp-idf/fatfs/libfatfs.pdb +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj: C_COMPILER____idf_fatfs /home/mithras/esp/esp-idf/components/fatfs/src/ff.c || cmake_object_order_depends_target___idf_fatfs + DEP_FILE = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/fatfs/diskio -I/home/mithras/esp/esp-idf/components/fatfs/vfs -I/home/mithras/esp/esp-idf/components/fatfs/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/sdmmc/include + OBJECT_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src + TARGET_COMPILE_PDB = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/__idf_fatfs.pdb + TARGET_PDB = esp-idf/fatfs/libfatfs.pdb +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj: C_COMPILER____idf_fatfs /home/mithras/esp/esp-idf/components/fatfs/port/freertos/ffsystem.c || cmake_object_order_depends_target___idf_fatfs + DEP_FILE = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/fatfs/diskio -I/home/mithras/esp/esp-idf/components/fatfs/vfs -I/home/mithras/esp/esp-idf/components/fatfs/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/sdmmc/include + OBJECT_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos + TARGET_COMPILE_PDB = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/__idf_fatfs.pdb + TARGET_PDB = esp-idf/fatfs/libfatfs.pdb +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj: C_COMPILER____idf_fatfs /home/mithras/esp/esp-idf/components/fatfs/src/ffunicode.c || cmake_object_order_depends_target___idf_fatfs + DEP_FILE = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/fatfs/diskio -I/home/mithras/esp/esp-idf/components/fatfs/vfs -I/home/mithras/esp/esp-idf/components/fatfs/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/sdmmc/include + OBJECT_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src + TARGET_COMPILE_PDB = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/__idf_fatfs.pdb + TARGET_PDB = esp-idf/fatfs/libfatfs.pdb +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj: C_COMPILER____idf_fatfs /home/mithras/esp/esp-idf/components/fatfs/vfs/vfs_fat.c || cmake_object_order_depends_target___idf_fatfs + DEP_FILE = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/fatfs/diskio -I/home/mithras/esp/esp-idf/components/fatfs/vfs -I/home/mithras/esp/esp-idf/components/fatfs/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/sdmmc/include + OBJECT_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs + TARGET_COMPILE_PDB = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/__idf_fatfs.pdb + TARGET_PDB = esp-idf/fatfs/libfatfs.pdb +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj: C_COMPILER____idf_fatfs /home/mithras/esp/esp-idf/components/fatfs/vfs/vfs_fat_sdmmc.c || cmake_object_order_depends_target___idf_fatfs + DEP_FILE = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/fatfs/diskio -I/home/mithras/esp/esp-idf/components/fatfs/vfs -I/home/mithras/esp/esp-idf/components/fatfs/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/sdmmc/include + OBJECT_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs + TARGET_COMPILE_PDB = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/__idf_fatfs.pdb + TARGET_PDB = esp-idf/fatfs/libfatfs.pdb +build esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj: C_COMPILER____idf_fatfs /home/mithras/esp/esp-idf/components/fatfs/vfs/vfs_fat_spiflash.c || cmake_object_order_depends_target___idf_fatfs + DEP_FILE = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/fatfs/diskio -I/home/mithras/esp/esp-idf/components/fatfs/vfs -I/home/mithras/esp/esp-idf/components/fatfs/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/sdmmc/include + OBJECT_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir + OBJECT_FILE_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs + TARGET_COMPILE_PDB = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/__idf_fatfs.pdb + TARGET_PDB = esp-idf/fatfs/libfatfs.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_fatfs + + +############################################# +# Link the static library esp-idf/fatfs/libfatfs.a + +build esp-idf/fatfs/libfatfs.a: CXX_STATIC_LIBRARY_LINKER____idf_fatfs esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj || esp-idf/sdmmc/libsdmmc.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/__idf_fatfs.pdb + TARGET_FILE = esp-idf/fatfs/libfatfs.a + TARGET_PDB = esp-idf/fatfs/libfatfs.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/fatfs/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/fatfs && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/fatfs/rebuild_cache: phony esp-idf/fatfs/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/fatfs/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/fatfs/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/fatfs/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/fatfs && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/fatfs/install/local: phony esp-idf/fatfs/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/fatfs/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/fatfs/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/fatfs && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/fatfs/install: phony esp-idf/fatfs/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/freemodbus/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/freemodbus/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/freemodbus && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/freemodbus/install/strip: phony esp-idf/freemodbus/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/freemodbus/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/freemodbus && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/freemodbus/edit_cache: phony esp-idf/freemodbus/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_freemodbus + + +############################################# +# Order-only phony target for __idf_freemodbus + +build cmake_object_order_depends_target___idf_freemodbus: phony || cmake_object_order_depends_target___idf_xtensa +build esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/common/esp_modbus_master.c.obj: C_COMPILER____idf_freemodbus /home/mithras/esp/esp-idf/components/freemodbus/common/esp_modbus_master.c || cmake_object_order_depends_target___idf_freemodbus + DEP_FILE = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/common/esp_modbus_master.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir + OBJECT_FILE_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/common + TARGET_COMPILE_PDB = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/__idf_freemodbus.pdb + TARGET_PDB = esp-idf/freemodbus/libfreemodbus.pdb +build esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/common/esp_modbus_slave.c.obj: C_COMPILER____idf_freemodbus /home/mithras/esp/esp-idf/components/freemodbus/common/esp_modbus_slave.c || cmake_object_order_depends_target___idf_freemodbus + DEP_FILE = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/common/esp_modbus_slave.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir + OBJECT_FILE_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/common + TARGET_COMPILE_PDB = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/__idf_freemodbus.pdb + TARGET_PDB = esp-idf/freemodbus/libfreemodbus.pdb +build esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/mb.c.obj: C_COMPILER____idf_freemodbus /home/mithras/esp/esp-idf/components/freemodbus/modbus/mb.c || cmake_object_order_depends_target___idf_freemodbus + DEP_FILE = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/mb.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir + OBJECT_FILE_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus + TARGET_COMPILE_PDB = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/__idf_freemodbus.pdb + TARGET_PDB = esp-idf/freemodbus/libfreemodbus.pdb +build esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/mb_m.c.obj: C_COMPILER____idf_freemodbus /home/mithras/esp/esp-idf/components/freemodbus/modbus/mb_m.c || cmake_object_order_depends_target___idf_freemodbus + DEP_FILE = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/mb_m.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir + OBJECT_FILE_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus + TARGET_COMPILE_PDB = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/__idf_freemodbus.pdb + TARGET_PDB = esp-idf/freemodbus/libfreemodbus.pdb +build esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/ascii/mbascii.c.obj: C_COMPILER____idf_freemodbus /home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii/mbascii.c || cmake_object_order_depends_target___idf_freemodbus + DEP_FILE = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/ascii/mbascii.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir + OBJECT_FILE_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/ascii + TARGET_COMPILE_PDB = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/__idf_freemodbus.pdb + TARGET_PDB = esp-idf/freemodbus/libfreemodbus.pdb +build esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/ascii/mbascii_m.c.obj: C_COMPILER____idf_freemodbus /home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii/mbascii_m.c || cmake_object_order_depends_target___idf_freemodbus + DEP_FILE = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/ascii/mbascii_m.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir + OBJECT_FILE_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/ascii + TARGET_COMPILE_PDB = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/__idf_freemodbus.pdb + TARGET_PDB = esp-idf/freemodbus/libfreemodbus.pdb +build esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbrtu_m.c.obj: C_COMPILER____idf_freemodbus /home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu/mbrtu_m.c || cmake_object_order_depends_target___idf_freemodbus + DEP_FILE = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbrtu_m.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir + OBJECT_FILE_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu + TARGET_COMPILE_PDB = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/__idf_freemodbus.pdb + TARGET_PDB = esp-idf/freemodbus/libfreemodbus.pdb +build esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbrtu.c.obj: C_COMPILER____idf_freemodbus /home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu/mbrtu.c || cmake_object_order_depends_target___idf_freemodbus + DEP_FILE = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbrtu.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir + OBJECT_FILE_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu + TARGET_COMPILE_PDB = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/__idf_freemodbus.pdb + TARGET_PDB = esp-idf/freemodbus/libfreemodbus.pdb +build esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbcrc.c.obj: C_COMPILER____idf_freemodbus /home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu/mbcrc.c || cmake_object_order_depends_target___idf_freemodbus + DEP_FILE = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbcrc.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir + OBJECT_FILE_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu + TARGET_COMPILE_PDB = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/__idf_freemodbus.pdb + TARGET_PDB = esp-idf/freemodbus/libfreemodbus.pdb +build esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/tcp/mbtcp.c.obj: C_COMPILER____idf_freemodbus /home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp/mbtcp.c || cmake_object_order_depends_target___idf_freemodbus + DEP_FILE = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/tcp/mbtcp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir + OBJECT_FILE_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/tcp + TARGET_COMPILE_PDB = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/__idf_freemodbus.pdb + TARGET_PDB = esp-idf/freemodbus/libfreemodbus.pdb +build esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/port.c.obj: C_COMPILER____idf_freemodbus /home/mithras/esp/esp-idf/components/freemodbus/port/port.c || cmake_object_order_depends_target___idf_freemodbus + DEP_FILE = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/port.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir + OBJECT_FILE_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port + TARGET_COMPILE_PDB = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/__idf_freemodbus.pdb + TARGET_PDB = esp-idf/freemodbus/libfreemodbus.pdb +build esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portevent.c.obj: C_COMPILER____idf_freemodbus /home/mithras/esp/esp-idf/components/freemodbus/port/portevent.c || cmake_object_order_depends_target___idf_freemodbus + DEP_FILE = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portevent.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir + OBJECT_FILE_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port + TARGET_COMPILE_PDB = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/__idf_freemodbus.pdb + TARGET_PDB = esp-idf/freemodbus/libfreemodbus.pdb +build esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portevent_m.c.obj: C_COMPILER____idf_freemodbus /home/mithras/esp/esp-idf/components/freemodbus/port/portevent_m.c || cmake_object_order_depends_target___idf_freemodbus + DEP_FILE = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portevent_m.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir + OBJECT_FILE_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port + TARGET_COMPILE_PDB = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/__idf_freemodbus.pdb + TARGET_PDB = esp-idf/freemodbus/libfreemodbus.pdb +build esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portother.c.obj: C_COMPILER____idf_freemodbus /home/mithras/esp/esp-idf/components/freemodbus/port/portother.c || cmake_object_order_depends_target___idf_freemodbus + DEP_FILE = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portother.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir + OBJECT_FILE_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port + TARGET_COMPILE_PDB = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/__idf_freemodbus.pdb + TARGET_PDB = esp-idf/freemodbus/libfreemodbus.pdb +build esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portother_m.c.obj: C_COMPILER____idf_freemodbus /home/mithras/esp/esp-idf/components/freemodbus/port/portother_m.c || cmake_object_order_depends_target___idf_freemodbus + DEP_FILE = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portother_m.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir + OBJECT_FILE_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port + TARGET_COMPILE_PDB = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/__idf_freemodbus.pdb + TARGET_PDB = esp-idf/freemodbus/libfreemodbus.pdb +build esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portserial.c.obj: C_COMPILER____idf_freemodbus /home/mithras/esp/esp-idf/components/freemodbus/port/portserial.c || cmake_object_order_depends_target___idf_freemodbus + DEP_FILE = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portserial.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir + OBJECT_FILE_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port + TARGET_COMPILE_PDB = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/__idf_freemodbus.pdb + TARGET_PDB = esp-idf/freemodbus/libfreemodbus.pdb +build esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portserial_m.c.obj: C_COMPILER____idf_freemodbus /home/mithras/esp/esp-idf/components/freemodbus/port/portserial_m.c || cmake_object_order_depends_target___idf_freemodbus + DEP_FILE = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portserial_m.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir + OBJECT_FILE_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port + TARGET_COMPILE_PDB = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/__idf_freemodbus.pdb + TARGET_PDB = esp-idf/freemodbus/libfreemodbus.pdb +build esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/porttimer.c.obj: C_COMPILER____idf_freemodbus /home/mithras/esp/esp-idf/components/freemodbus/port/porttimer.c || cmake_object_order_depends_target___idf_freemodbus + DEP_FILE = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/porttimer.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir + OBJECT_FILE_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port + TARGET_COMPILE_PDB = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/__idf_freemodbus.pdb + TARGET_PDB = esp-idf/freemodbus/libfreemodbus.pdb +build esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/porttimer_m.c.obj: C_COMPILER____idf_freemodbus /home/mithras/esp/esp-idf/components/freemodbus/port/porttimer_m.c || cmake_object_order_depends_target___idf_freemodbus + DEP_FILE = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/porttimer_m.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir + OBJECT_FILE_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port + TARGET_COMPILE_PDB = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/__idf_freemodbus.pdb + TARGET_PDB = esp-idf/freemodbus/libfreemodbus.pdb +build esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfunccoils.c.obj: C_COMPILER____idf_freemodbus /home/mithras/esp/esp-idf/components/freemodbus/modbus/functions/mbfunccoils.c || cmake_object_order_depends_target___idf_freemodbus + DEP_FILE = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfunccoils.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir + OBJECT_FILE_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions + TARGET_COMPILE_PDB = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/__idf_freemodbus.pdb + TARGET_PDB = esp-idf/freemodbus/libfreemodbus.pdb +build esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfunccoils_m.c.obj: C_COMPILER____idf_freemodbus /home/mithras/esp/esp-idf/components/freemodbus/modbus/functions/mbfunccoils_m.c || cmake_object_order_depends_target___idf_freemodbus + DEP_FILE = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfunccoils_m.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir + OBJECT_FILE_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions + TARGET_COMPILE_PDB = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/__idf_freemodbus.pdb + TARGET_PDB = esp-idf/freemodbus/libfreemodbus.pdb +build esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncdiag.c.obj: C_COMPILER____idf_freemodbus /home/mithras/esp/esp-idf/components/freemodbus/modbus/functions/mbfuncdiag.c || cmake_object_order_depends_target___idf_freemodbus + DEP_FILE = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncdiag.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir + OBJECT_FILE_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions + TARGET_COMPILE_PDB = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/__idf_freemodbus.pdb + TARGET_PDB = esp-idf/freemodbus/libfreemodbus.pdb +build esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncdisc.c.obj: C_COMPILER____idf_freemodbus /home/mithras/esp/esp-idf/components/freemodbus/modbus/functions/mbfuncdisc.c || cmake_object_order_depends_target___idf_freemodbus + DEP_FILE = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncdisc.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir + OBJECT_FILE_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions + TARGET_COMPILE_PDB = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/__idf_freemodbus.pdb + TARGET_PDB = esp-idf/freemodbus/libfreemodbus.pdb +build esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncdisc_m.c.obj: C_COMPILER____idf_freemodbus /home/mithras/esp/esp-idf/components/freemodbus/modbus/functions/mbfuncdisc_m.c || cmake_object_order_depends_target___idf_freemodbus + DEP_FILE = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncdisc_m.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir + OBJECT_FILE_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions + TARGET_COMPILE_PDB = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/__idf_freemodbus.pdb + TARGET_PDB = esp-idf/freemodbus/libfreemodbus.pdb +build esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncholding.c.obj: C_COMPILER____idf_freemodbus /home/mithras/esp/esp-idf/components/freemodbus/modbus/functions/mbfuncholding.c || cmake_object_order_depends_target___idf_freemodbus + DEP_FILE = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncholding.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir + OBJECT_FILE_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions + TARGET_COMPILE_PDB = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/__idf_freemodbus.pdb + TARGET_PDB = esp-idf/freemodbus/libfreemodbus.pdb +build esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncholding_m.c.obj: C_COMPILER____idf_freemodbus /home/mithras/esp/esp-idf/components/freemodbus/modbus/functions/mbfuncholding_m.c || cmake_object_order_depends_target___idf_freemodbus + DEP_FILE = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncholding_m.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir + OBJECT_FILE_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions + TARGET_COMPILE_PDB = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/__idf_freemodbus.pdb + TARGET_PDB = esp-idf/freemodbus/libfreemodbus.pdb +build esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncinput.c.obj: C_COMPILER____idf_freemodbus /home/mithras/esp/esp-idf/components/freemodbus/modbus/functions/mbfuncinput.c || cmake_object_order_depends_target___idf_freemodbus + DEP_FILE = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncinput.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir + OBJECT_FILE_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions + TARGET_COMPILE_PDB = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/__idf_freemodbus.pdb + TARGET_PDB = esp-idf/freemodbus/libfreemodbus.pdb +build esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncinput_m.c.obj: C_COMPILER____idf_freemodbus /home/mithras/esp/esp-idf/components/freemodbus/modbus/functions/mbfuncinput_m.c || cmake_object_order_depends_target___idf_freemodbus + DEP_FILE = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncinput_m.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir + OBJECT_FILE_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions + TARGET_COMPILE_PDB = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/__idf_freemodbus.pdb + TARGET_PDB = esp-idf/freemodbus/libfreemodbus.pdb +build esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncother.c.obj: C_COMPILER____idf_freemodbus /home/mithras/esp/esp-idf/components/freemodbus/modbus/functions/mbfuncother.c || cmake_object_order_depends_target___idf_freemodbus + DEP_FILE = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncother.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir + OBJECT_FILE_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions + TARGET_COMPILE_PDB = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/__idf_freemodbus.pdb + TARGET_PDB = esp-idf/freemodbus/libfreemodbus.pdb +build esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbutils.c.obj: C_COMPILER____idf_freemodbus /home/mithras/esp/esp-idf/components/freemodbus/modbus/functions/mbutils.c || cmake_object_order_depends_target___idf_freemodbus + DEP_FILE = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbutils.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir + OBJECT_FILE_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions + TARGET_COMPILE_PDB = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/__idf_freemodbus.pdb + TARGET_PDB = esp-idf/freemodbus/libfreemodbus.pdb +build esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/serial_slave/modbus_controller/mbc_serial_slave.c.obj: C_COMPILER____idf_freemodbus /home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller/mbc_serial_slave.c || cmake_object_order_depends_target___idf_freemodbus + DEP_FILE = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/serial_slave/modbus_controller/mbc_serial_slave.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir + OBJECT_FILE_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/serial_slave/modbus_controller + TARGET_COMPILE_PDB = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/__idf_freemodbus.pdb + TARGET_PDB = esp-idf/freemodbus/libfreemodbus.pdb +build esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/serial_master/modbus_controller/mbc_serial_master.c.obj: C_COMPILER____idf_freemodbus /home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller/mbc_serial_master.c || cmake_object_order_depends_target___idf_freemodbus + DEP_FILE = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/serial_master/modbus_controller/mbc_serial_master.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir + OBJECT_FILE_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/serial_master/modbus_controller + TARGET_COMPILE_PDB = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/__idf_freemodbus.pdb + TARGET_PDB = esp-idf/freemodbus/libfreemodbus.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_freemodbus + + +############################################# +# Link the static library esp-idf/freemodbus/libfreemodbus.a + +build esp-idf/freemodbus/libfreemodbus.a: CXX_STATIC_LIBRARY_LINKER____idf_freemodbus esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/common/esp_modbus_master.c.obj esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/common/esp_modbus_slave.c.obj esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/mb.c.obj esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/mb_m.c.obj esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/ascii/mbascii.c.obj esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/ascii/mbascii_m.c.obj esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbrtu_m.c.obj esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbrtu.c.obj esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbcrc.c.obj esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/tcp/mbtcp.c.obj esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/port.c.obj esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portevent.c.obj esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portevent_m.c.obj esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portother.c.obj esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portother_m.c.obj esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portserial.c.obj esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portserial_m.c.obj esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/porttimer.c.obj esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/porttimer_m.c.obj esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfunccoils.c.obj esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfunccoils_m.c.obj esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncdiag.c.obj esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncdisc.c.obj esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncdisc_m.c.obj esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncholding.c.obj esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncholding_m.c.obj esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncinput.c.obj esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncinput_m.c.obj esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncother.c.obj esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbutils.c.obj esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/serial_slave/modbus_controller/mbc_serial_slave.c.obj esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/serial_master/modbus_controller/mbc_serial_master.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/__idf_freemodbus.pdb + TARGET_FILE = esp-idf/freemodbus/libfreemodbus.a + TARGET_PDB = esp-idf/freemodbus/libfreemodbus.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/freemodbus/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/freemodbus && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/freemodbus/rebuild_cache: phony esp-idf/freemodbus/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/freemodbus/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/freemodbus/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/freemodbus/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/freemodbus && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/freemodbus/install/local: phony esp-idf/freemodbus/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/freemodbus/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/freemodbus/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/freemodbus && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/freemodbus/install: phony esp-idf/freemodbus/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/idf_test/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/idf_test/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/idf_test && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/idf_test/install/strip: phony esp-idf/idf_test/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/idf_test/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/idf_test && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/idf_test/edit_cache: phony esp-idf/idf_test/CMakeFiles/edit_cache.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/idf_test/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/idf_test && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/idf_test/rebuild_cache: phony esp-idf/idf_test/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/idf_test/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/idf_test/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/idf_test/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/idf_test && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/idf_test/install/local: phony esp-idf/idf_test/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/idf_test/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/idf_test/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/idf_test && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/idf_test/install: phony esp-idf/idf_test/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/jsmn/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/jsmn/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/jsmn && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/jsmn/install/strip: phony esp-idf/jsmn/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/jsmn/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/jsmn && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/jsmn/edit_cache: phony esp-idf/jsmn/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_jsmn + + +############################################# +# Order-only phony target for __idf_jsmn + +build cmake_object_order_depends_target___idf_jsmn: phony || cmake_object_order_depends_target___idf_xtensa +build esp-idf/jsmn/CMakeFiles/__idf_jsmn.dir/src/jsmn.c.obj: C_COMPILER____idf_jsmn /home/mithras/esp/esp-idf/components/jsmn/src/jsmn.c || cmake_object_order_depends_target___idf_jsmn + DEP_FILE = esp-idf/jsmn/CMakeFiles/__idf_jsmn.dir/src/jsmn.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/jsmn/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/jsmn/CMakeFiles/__idf_jsmn.dir + OBJECT_FILE_DIR = esp-idf/jsmn/CMakeFiles/__idf_jsmn.dir/src + TARGET_COMPILE_PDB = esp-idf/jsmn/CMakeFiles/__idf_jsmn.dir/__idf_jsmn.pdb + TARGET_PDB = esp-idf/jsmn/libjsmn.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_jsmn + + +############################################# +# Link the static library esp-idf/jsmn/libjsmn.a + +build esp-idf/jsmn/libjsmn.a: CXX_STATIC_LIBRARY_LINKER____idf_jsmn esp-idf/jsmn/CMakeFiles/__idf_jsmn.dir/src/jsmn.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/jsmn/CMakeFiles/__idf_jsmn.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/jsmn/CMakeFiles/__idf_jsmn.dir/__idf_jsmn.pdb + TARGET_FILE = esp-idf/jsmn/libjsmn.a + TARGET_PDB = esp-idf/jsmn/libjsmn.pdb + +############################################# +# Utility command for install + +build esp-idf/jsmn/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/jsmn/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/jsmn && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/jsmn/install: phony esp-idf/jsmn/CMakeFiles/install.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/jsmn/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/jsmn && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/jsmn/rebuild_cache: phony esp-idf/jsmn/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/jsmn/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/jsmn/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/jsmn/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/jsmn && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/jsmn/install/local: phony esp-idf/jsmn/CMakeFiles/install/local.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/json/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/json/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/json && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/json/install/strip: phony esp-idf/json/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/json/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/json && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/json/edit_cache: phony esp-idf/json/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_json + + +############################################# +# Order-only phony target for __idf_json + +build cmake_object_order_depends_target___idf_json: phony || cmake_object_order_depends_target___idf_xtensa +build esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj: C_COMPILER____idf_json /home/mithras/esp/esp-idf/components/json/cJSON/cJSON.c || cmake_object_order_depends_target___idf_json + DEP_FILE = esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/json/cJSON -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/json/CMakeFiles/__idf_json.dir + OBJECT_FILE_DIR = esp-idf/json/CMakeFiles/__idf_json.dir/cJSON + TARGET_COMPILE_PDB = esp-idf/json/CMakeFiles/__idf_json.dir/__idf_json.pdb + TARGET_PDB = esp-idf/json/libjson.pdb +build esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj: C_COMPILER____idf_json /home/mithras/esp/esp-idf/components/json/cJSON/cJSON_Utils.c || cmake_object_order_depends_target___idf_json + DEP_FILE = esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/json/cJSON -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/json/CMakeFiles/__idf_json.dir + OBJECT_FILE_DIR = esp-idf/json/CMakeFiles/__idf_json.dir/cJSON + TARGET_COMPILE_PDB = esp-idf/json/CMakeFiles/__idf_json.dir/__idf_json.pdb + TARGET_PDB = esp-idf/json/libjson.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_json + + +############################################# +# Link the static library esp-idf/json/libjson.a + +build esp-idf/json/libjson.a: CXX_STATIC_LIBRARY_LINKER____idf_json esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/json/CMakeFiles/__idf_json.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/json/CMakeFiles/__idf_json.dir/__idf_json.pdb + TARGET_FILE = esp-idf/json/libjson.a + TARGET_PDB = esp-idf/json/libjson.pdb + +############################################# +# Utility command for list_install_components + +build esp-idf/json/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/json/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/json/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/json && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/json/install/local: phony esp-idf/json/CMakeFiles/install/local.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/json/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/json && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/json/rebuild_cache: phony esp-idf/json/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for install + +build esp-idf/json/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/json/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/json && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/json/install: phony esp-idf/json/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/libsodium/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/libsodium/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/libsodium && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/libsodium/install/strip: phony esp-idf/libsodium/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/libsodium/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/libsodium && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/libsodium/edit_cache: phony esp-idf/libsodium/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_libsodium + + +############################################# +# Order-only phony target for __idf_libsodium + +build cmake_object_order_depends_target___idf_libsodium: phony || cmake_object_order_depends_target___idf_xtensa +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_aead/chacha20poly1305/sodium + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_aead/xchacha20poly1305/sodium + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/crypto_auth.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_auth/crypto_auth.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/crypto_auth.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/hmacsha256/auth_hmacsha256.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_auth/hmacsha256/auth_hmacsha256.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/hmacsha256/auth_hmacsha256.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/hmacsha256 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/hmacsha512/auth_hmacsha512.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_auth/hmacsha512/auth_hmacsha512.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/hmacsha512/auth_hmacsha512.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/hmacsha512 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/hmacsha512256/auth_hmacsha512256.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_auth/hmacsha512256/auth_hmacsha512256.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/hmacsha512256/auth_hmacsha512256.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/hmacsha512256 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/crypto_box.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_box/crypto_box.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/crypto_box.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/crypto_box_easy.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_box/crypto_box_easy.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/crypto_box_easy.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/crypto_box_seal.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_box/crypto_box_seal.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/crypto_box_seal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/curve25519xchacha20poly1305 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/box_curve25519xsalsa20poly1305.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/box_curve25519xsalsa20poly1305.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/box_curve25519xsalsa20poly1305.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/curve25519/ref10/curve25519_ref10.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_core/curve25519/ref10/curve25519_ref10.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/curve25519/ref10/curve25519_ref10.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/curve25519/ref10 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/hchacha20/core_hchacha20.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_core/hchacha20/core_hchacha20.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/hchacha20/core_hchacha20.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/hchacha20 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/hsalsa20/core_hsalsa20.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_core/hsalsa20/core_hsalsa20.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/hsalsa20/core_hsalsa20.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/hsalsa20 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/hsalsa20/ref2/core_hsalsa20_ref2.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_core/hsalsa20/ref2/core_hsalsa20_ref2.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/hsalsa20/ref2/core_hsalsa20_ref2.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/hsalsa20/ref2 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/salsa/ref/core_salsa_ref.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_core/salsa/ref/core_salsa_ref.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/salsa/ref/core_salsa_ref.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/salsa/ref + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/crypto_generichash.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_generichash/crypto_generichash.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/crypto_generichash.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/generichash_blake2.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_generichash/blake2b/generichash_blake2.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/generichash_blake2.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-avx2.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-avx2.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-avx2.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-ref.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-ref.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-ref.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-sse41.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-sse41.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-sse41.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-ssse3.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-ssse3.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-ssse3.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-ref.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-ref.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-ref.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/generichash_blake2b.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_generichash/blake2b/ref/generichash_blake2b.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/generichash_blake2b.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/crypto_hash.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_hash/crypto_hash.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/crypto_hash.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha256/hash_sha256.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_hash/sha256/hash_sha256.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha256/hash_sha256.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha256 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha256/cp/hash_sha256_cp.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_hash/sha256/cp/hash_sha256_cp.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha256/cp/hash_sha256_cp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha256/cp + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha512/hash_sha512.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_hash/sha512/hash_sha512.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha512/hash_sha512.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha512 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha512/cp/hash_sha512_cp.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_hash/sha512/cp/hash_sha512_cp.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha512/cp/hash_sha512_cp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha512/cp + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_kdf/crypto_kdf.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_kdf/crypto_kdf.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_kdf/crypto_kdf.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_kdf + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_kdf/blake2b/kdf_blake2b.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_kdf/blake2b/kdf_blake2b.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_kdf/blake2b/kdf_blake2b.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_kdf/blake2b + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_kx/crypto_kx.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_kx/crypto_kx.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_kx/crypto_kx.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_kx + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/crypto_onetimeauth.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_onetimeauth/crypto_onetimeauth.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/crypto_onetimeauth.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/poly1305 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/crypto_pwhash.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/crypto_pwhash.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/crypto_pwhash.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-type-limits + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-encoding.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-encoding.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-encoding.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-ref.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-ref.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-ref.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-unknown-pragmas + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-ssse3.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-ssse3.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-ssse3.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/argon2/argon2.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/blake2b-long.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/argon2/blake2b-long.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/blake2b-long.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/pwhash_argon2i.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/argon2/pwhash_argon2i.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/pwhash_argon2i.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-type-limits + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pwhash_scryptsalsa208sha256.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pwhash_scryptsalsa208sha256.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pwhash_scryptsalsa208sha256.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-type-limits + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/nosse + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sse + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/crypto_scalarmult.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/crypto_scalarmult.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/crypto_scalarmult.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/x25519_ref10.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/x25519_ref10.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/x25519_ref10.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/consts.S.obj: ASM_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/consts.S || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/consts.S.obj.d + FLAGS = -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_invert.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_invert.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_invert.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_mul.S.obj: ASM_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_mul.S || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_mul.S.obj.d + FLAGS = -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_nsquare.S.obj: ASM_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_nsquare.S || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_nsquare.S.obj.d + FLAGS = -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_pack.S.obj: ASM_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_pack.S || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_pack.S.obj.d + FLAGS = -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder.S.obj: ASM_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder.S || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder.S.obj.d + FLAGS = -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder_base.S.obj: ASM_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder_base.S || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder_base.S.obj.d + FLAGS = -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/sandy2x.S.obj: ASM_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/sandy2x.S || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/sandy2x.S.obj.d + FLAGS = -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox_easy.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox_easy.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox_easy.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/xchacha20poly1305 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/xsalsa20poly1305/secretbox_xsalsa20poly1305.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_secretbox/xsalsa20poly1305/secretbox_xsalsa20poly1305.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/xsalsa20poly1305/secretbox_xsalsa20poly1305.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/xsalsa20poly1305 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/crypto_shorthash.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_shorthash/crypto_shorthash.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/crypto_shorthash.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/shorthash_siphash24.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_shorthash/siphash24/shorthash_siphash24.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/shorthash_siphash24.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/shorthash_siphashx24.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_shorthash/siphash24/shorthash_siphashx24.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/shorthash_siphashx24.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphash24_ref.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphash24_ref.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphash24_ref.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-implicit-fallthrough + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/ref + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphashx24_ref.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphashx24_ref.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphashx24_ref.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-implicit-fallthrough + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/ref + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/crypto_sign.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_sign/crypto_sign.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/crypto_sign.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/sign_ed25519.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_sign/ed25519/sign_ed25519.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/sign_ed25519.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/keypair.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_sign/ed25519/ref10/keypair.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/keypair.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/obsolete.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_sign/ed25519/ref10/obsolete.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/obsolete.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/open.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_sign/ed25519/ref10/open.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/open.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/sign.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_sign/ed25519/ref10/sign.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/sign.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/crypto_stream.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/crypto_stream.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/crypto_stream.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/stream_aes128ctr.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/aes128ctr/stream_aes128ctr.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/stream_aes128ctr.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/afternm_aes128ctr.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/afternm_aes128ctr.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/afternm_aes128ctr.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/beforenm_aes128ctr.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/beforenm_aes128ctr.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/beforenm_aes128ctr.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/consts_aes128ctr.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/consts_aes128ctr.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/consts_aes128ctr.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/int128_aes128ctr.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/int128_aes128ctr.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/int128_aes128ctr.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/stream_aes128ctr_nacl.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/stream_aes128ctr_nacl.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/stream_aes128ctr_nacl.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/xor_afternm_aes128ctr.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/xor_afternm_aes128ctr.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/xor_afternm_aes128ctr.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/stream_chacha20.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/chacha20/stream_chacha20.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/stream_chacha20.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau/chacha20_dolbeau-avx2.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau/chacha20_dolbeau-avx2.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau/chacha20_dolbeau-avx2.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau/chacha20_dolbeau-ssse3.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau/chacha20_dolbeau-ssse3.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau/chacha20_dolbeau-ssse3.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/ref/chacha20_ref.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/chacha20/ref/chacha20_ref.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/ref/chacha20_ref.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/ref + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/stream_salsa20.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa20/stream_salsa20.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/stream_salsa20.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/ref/salsa20_ref.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa20/ref/salsa20_ref.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/ref/salsa20_ref.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/ref + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6/salsa20_xmm6-asm.S.obj: ASM_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa20/xmm6/salsa20_xmm6-asm.S || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6/salsa20_xmm6-asm.S.obj.d + FLAGS = -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6/salsa20_xmm6.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa20/xmm6/salsa20_xmm6.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6/salsa20_xmm6.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/salsa20_xmm6int-avx2.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/salsa20_xmm6int-avx2.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/salsa20_xmm6int-avx2.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/salsa20_xmm6int-sse2.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/salsa20_xmm6int-sse2.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/salsa20_xmm6int-sse2.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa2012/stream_salsa2012.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa2012/stream_salsa2012.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa2012/stream_salsa2012.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa2012 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa2012/ref/stream_salsa2012_ref.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa2012/ref/stream_salsa2012_ref.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa2012/ref/stream_salsa2012_ref.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa2012/ref + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa208/stream_salsa208.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa208/stream_salsa208.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa208/stream_salsa208.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa208 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa208/ref/stream_salsa208_ref.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa208/ref/stream_salsa208_ref.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa208/ref/stream_salsa208_ref.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa208/ref + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/xchacha20/stream_xchacha20.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/xchacha20/stream_xchacha20.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/xchacha20/stream_xchacha20.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/xchacha20 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/xsalsa20/stream_xsalsa20.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/xsalsa20/stream_xsalsa20.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/xsalsa20/stream_xsalsa20.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/xsalsa20 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_verify/sodium/verify.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_verify/sodium/verify.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_verify/sodium/verify.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_verify/sodium + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/randombytes.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/randombytes/randombytes.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/randombytes.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -DRANDOMBYTES_DEFAULT_IMPLEMENTATION + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/nativeclient/randombytes_nativeclient.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/randombytes/nativeclient/randombytes_nativeclient.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/nativeclient/randombytes_nativeclient.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/nativeclient + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/salsa20/randombytes_salsa20_random.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/randombytes/salsa20/randombytes_salsa20_random.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/salsa20/randombytes_salsa20_random.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/salsa20 + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/sysrandom + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/core.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/sodium/core.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/core.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/runtime.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/sodium/runtime.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/runtime.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/utils.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/sodium/utils.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/utils.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-unused-variable + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/version.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/sodium/version.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/version.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb +build esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/port/randombytes_esp32.c.obj: C_COMPILER____idf_libsodium /home/mithras/esp/esp-idf/components/libsodium/port/randombytes_esp32.c || cmake_object_order_depends_target___idf_libsodium + DEFINES = -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS + DEP_FILE = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/port/randombytes_esp32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + OBJECT_FILE_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/port + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_libsodium + + +############################################# +# Link the static library esp-idf/libsodium/liblibsodium.a + +build esp-idf/libsodium/liblibsodium.a: CXX_STATIC_LIBRARY_LINKER____idf_libsodium esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/crypto_auth.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/hmacsha256/auth_hmacsha256.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/hmacsha512/auth_hmacsha512.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/hmacsha512256/auth_hmacsha512256.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/crypto_box.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/crypto_box_easy.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/crypto_box_seal.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/box_curve25519xsalsa20poly1305.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/curve25519/ref10/curve25519_ref10.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/hchacha20/core_hchacha20.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/hsalsa20/core_hsalsa20.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/hsalsa20/ref2/core_hsalsa20_ref2.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/salsa/ref/core_salsa_ref.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/crypto_generichash.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/generichash_blake2.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-avx2.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-ref.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-sse41.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-ssse3.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-ref.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/generichash_blake2b.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/crypto_hash.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha256/hash_sha256.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha256/cp/hash_sha256_cp.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha512/hash_sha512.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha512/cp/hash_sha512_cp.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_kdf/crypto_kdf.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_kdf/blake2b/kdf_blake2b.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_kx/crypto_kx.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/crypto_onetimeauth.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/crypto_pwhash.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-encoding.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-ref.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-ssse3.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/blake2b-long.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/pwhash_argon2i.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pwhash_scryptsalsa208sha256.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/crypto_scalarmult.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/x25519_ref10.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/consts.S.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_invert.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_mul.S.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_nsquare.S.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_pack.S.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder.S.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder_base.S.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/sandy2x.S.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox_easy.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/xsalsa20poly1305/secretbox_xsalsa20poly1305.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/crypto_shorthash.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/shorthash_siphash24.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/shorthash_siphashx24.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphash24_ref.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphashx24_ref.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/crypto_sign.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/sign_ed25519.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/keypair.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/obsolete.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/open.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/sign.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/crypto_stream.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/stream_aes128ctr.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/afternm_aes128ctr.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/beforenm_aes128ctr.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/consts_aes128ctr.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/int128_aes128ctr.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/stream_aes128ctr_nacl.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/xor_afternm_aes128ctr.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/stream_chacha20.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau/chacha20_dolbeau-avx2.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau/chacha20_dolbeau-ssse3.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/ref/chacha20_ref.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/stream_salsa20.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/ref/salsa20_ref.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6/salsa20_xmm6-asm.S.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6/salsa20_xmm6.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/salsa20_xmm6int-avx2.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/salsa20_xmm6int-sse2.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa2012/stream_salsa2012.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa2012/ref/stream_salsa2012_ref.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa208/stream_salsa208.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa208/ref/stream_salsa208_ref.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/xchacha20/stream_xchacha20.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/xsalsa20/stream_xsalsa20.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_verify/sodium/verify.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/randombytes.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/nativeclient/randombytes_nativeclient.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/salsa20/randombytes_salsa20_random.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/core.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/runtime.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/utils.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/version.c.obj esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/port/randombytes_esp32.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/__idf_libsodium.pdb + TARGET_FILE = esp-idf/libsodium/liblibsodium.a + TARGET_PDB = esp-idf/libsodium/liblibsodium.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/libsodium/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/libsodium && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/libsodium/rebuild_cache: phony esp-idf/libsodium/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/libsodium/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/libsodium/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/libsodium/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/libsodium && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/libsodium/install/local: phony esp-idf/libsodium/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/libsodium/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/libsodium/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/libsodium && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/libsodium/install: phony esp-idf/libsodium/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/mqtt/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/mqtt/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/mqtt && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/mqtt/install/strip: phony esp-idf/mqtt/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/mqtt/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/mqtt && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/mqtt/edit_cache: phony esp-idf/mqtt/CMakeFiles/edit_cache.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/mqtt/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/mqtt && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/mqtt/rebuild_cache: phony esp-idf/mqtt/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/mqtt/list_install_components: phony +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_mqtt + + +############################################# +# Order-only phony target for __idf_mqtt + +build cmake_object_order_depends_target___idf_mqtt: phony || cmake_object_order_depends_target___idf_xtensa +build esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj: C_COMPILER____idf_mqtt /home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/mqtt_client.c || cmake_object_order_depends_target___idf_mqtt + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/include -I/home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/lib/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/tcp_transport/include -I/home/mithras/esp/esp-idf/components/esp-tls + OBJECT_DIR = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir + OBJECT_FILE_DIR = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt + TARGET_COMPILE_PDB = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/__idf_mqtt.pdb + TARGET_PDB = esp-idf/mqtt/libmqtt.pdb +build esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj: C_COMPILER____idf_mqtt /home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/lib/mqtt_msg.c || cmake_object_order_depends_target___idf_mqtt + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/include -I/home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/lib/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/tcp_transport/include -I/home/mithras/esp/esp-idf/components/esp-tls + OBJECT_DIR = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir + OBJECT_FILE_DIR = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib + TARGET_COMPILE_PDB = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/__idf_mqtt.pdb + TARGET_PDB = esp-idf/mqtt/libmqtt.pdb +build esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj: C_COMPILER____idf_mqtt /home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/lib/mqtt_outbox.c || cmake_object_order_depends_target___idf_mqtt + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/include -I/home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/lib/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/tcp_transport/include -I/home/mithras/esp/esp-idf/components/esp-tls + OBJECT_DIR = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir + OBJECT_FILE_DIR = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib + TARGET_COMPILE_PDB = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/__idf_mqtt.pdb + TARGET_PDB = esp-idf/mqtt/libmqtt.pdb +build esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj: C_COMPILER____idf_mqtt /home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/lib/platform_esp32_idf.c || cmake_object_order_depends_target___idf_mqtt + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/include -I/home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/lib/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/tcp_transport/include -I/home/mithras/esp/esp-idf/components/esp-tls + OBJECT_DIR = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir + OBJECT_FILE_DIR = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib + TARGET_COMPILE_PDB = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/__idf_mqtt.pdb + TARGET_PDB = esp-idf/mqtt/libmqtt.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_mqtt + + +############################################# +# Link the static library esp-idf/mqtt/libmqtt.a + +build esp-idf/mqtt/libmqtt.a: CXX_STATIC_LIBRARY_LINKER____idf_mqtt esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/__idf_mqtt.pdb + TARGET_FILE = esp-idf/mqtt/libmqtt.a + TARGET_PDB = esp-idf/mqtt/libmqtt.pdb + +############################################# +# Utility command for install/local + +build esp-idf/mqtt/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/mqtt/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/mqtt && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/mqtt/install/local: phony esp-idf/mqtt/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/mqtt/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/mqtt/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/mqtt && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/mqtt/install: phony esp-idf/mqtt/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/openssl/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/openssl/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/openssl && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/openssl/install/strip: phony esp-idf/openssl/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/openssl/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/openssl && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/openssl/edit_cache: phony esp-idf/openssl/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_openssl + + +############################################# +# Order-only phony target for __idf_openssl + +build cmake_object_order_depends_target___idf_openssl: phony || cmake_object_order_depends_target___idf_xtensa +build esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_cert.c.obj: C_COMPILER____idf_openssl /home/mithras/esp/esp-idf/components/openssl/library/ssl_cert.c || cmake_object_order_depends_target___idf_openssl + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_cert.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/openssl/include -I/home/mithras/esp/esp-idf/components/openssl/include/internal -I/home/mithras/esp/esp-idf/components/openssl/include/platform -I/home/mithras/esp/esp-idf/components/openssl/include/openssl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/openssl/CMakeFiles/__idf_openssl.dir + OBJECT_FILE_DIR = esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library + TARGET_COMPILE_PDB = esp-idf/openssl/CMakeFiles/__idf_openssl.dir/__idf_openssl.pdb + TARGET_PDB = esp-idf/openssl/libopenssl.pdb +build esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_lib.c.obj: C_COMPILER____idf_openssl /home/mithras/esp/esp-idf/components/openssl/library/ssl_lib.c || cmake_object_order_depends_target___idf_openssl + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_lib.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/openssl/include -I/home/mithras/esp/esp-idf/components/openssl/include/internal -I/home/mithras/esp/esp-idf/components/openssl/include/platform -I/home/mithras/esp/esp-idf/components/openssl/include/openssl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/openssl/CMakeFiles/__idf_openssl.dir + OBJECT_FILE_DIR = esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library + TARGET_COMPILE_PDB = esp-idf/openssl/CMakeFiles/__idf_openssl.dir/__idf_openssl.pdb + TARGET_PDB = esp-idf/openssl/libopenssl.pdb +build esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_methods.c.obj: C_COMPILER____idf_openssl /home/mithras/esp/esp-idf/components/openssl/library/ssl_methods.c || cmake_object_order_depends_target___idf_openssl + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_methods.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/openssl/include -I/home/mithras/esp/esp-idf/components/openssl/include/internal -I/home/mithras/esp/esp-idf/components/openssl/include/platform -I/home/mithras/esp/esp-idf/components/openssl/include/openssl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/openssl/CMakeFiles/__idf_openssl.dir + OBJECT_FILE_DIR = esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library + TARGET_COMPILE_PDB = esp-idf/openssl/CMakeFiles/__idf_openssl.dir/__idf_openssl.pdb + TARGET_PDB = esp-idf/openssl/libopenssl.pdb +build esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_pkey.c.obj: C_COMPILER____idf_openssl /home/mithras/esp/esp-idf/components/openssl/library/ssl_pkey.c || cmake_object_order_depends_target___idf_openssl + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_pkey.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/openssl/include -I/home/mithras/esp/esp-idf/components/openssl/include/internal -I/home/mithras/esp/esp-idf/components/openssl/include/platform -I/home/mithras/esp/esp-idf/components/openssl/include/openssl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/openssl/CMakeFiles/__idf_openssl.dir + OBJECT_FILE_DIR = esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library + TARGET_COMPILE_PDB = esp-idf/openssl/CMakeFiles/__idf_openssl.dir/__idf_openssl.pdb + TARGET_PDB = esp-idf/openssl/libopenssl.pdb +build esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_stack.c.obj: C_COMPILER____idf_openssl /home/mithras/esp/esp-idf/components/openssl/library/ssl_stack.c || cmake_object_order_depends_target___idf_openssl + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_stack.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/openssl/include -I/home/mithras/esp/esp-idf/components/openssl/include/internal -I/home/mithras/esp/esp-idf/components/openssl/include/platform -I/home/mithras/esp/esp-idf/components/openssl/include/openssl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/openssl/CMakeFiles/__idf_openssl.dir + OBJECT_FILE_DIR = esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library + TARGET_COMPILE_PDB = esp-idf/openssl/CMakeFiles/__idf_openssl.dir/__idf_openssl.pdb + TARGET_PDB = esp-idf/openssl/libopenssl.pdb +build esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_x509.c.obj: C_COMPILER____idf_openssl /home/mithras/esp/esp-idf/components/openssl/library/ssl_x509.c || cmake_object_order_depends_target___idf_openssl + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_x509.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/openssl/include -I/home/mithras/esp/esp-idf/components/openssl/include/internal -I/home/mithras/esp/esp-idf/components/openssl/include/platform -I/home/mithras/esp/esp-idf/components/openssl/include/openssl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/openssl/CMakeFiles/__idf_openssl.dir + OBJECT_FILE_DIR = esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library + TARGET_COMPILE_PDB = esp-idf/openssl/CMakeFiles/__idf_openssl.dir/__idf_openssl.pdb + TARGET_PDB = esp-idf/openssl/libopenssl.pdb +build esp-idf/openssl/CMakeFiles/__idf_openssl.dir/platform/ssl_pm.c.obj: C_COMPILER____idf_openssl /home/mithras/esp/esp-idf/components/openssl/platform/ssl_pm.c || cmake_object_order_depends_target___idf_openssl + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/openssl/CMakeFiles/__idf_openssl.dir/platform/ssl_pm.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/openssl/include -I/home/mithras/esp/esp-idf/components/openssl/include/internal -I/home/mithras/esp/esp-idf/components/openssl/include/platform -I/home/mithras/esp/esp-idf/components/openssl/include/openssl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/openssl/CMakeFiles/__idf_openssl.dir + OBJECT_FILE_DIR = esp-idf/openssl/CMakeFiles/__idf_openssl.dir/platform + TARGET_COMPILE_PDB = esp-idf/openssl/CMakeFiles/__idf_openssl.dir/__idf_openssl.pdb + TARGET_PDB = esp-idf/openssl/libopenssl.pdb +build esp-idf/openssl/CMakeFiles/__idf_openssl.dir/platform/ssl_port.c.obj: C_COMPILER____idf_openssl /home/mithras/esp/esp-idf/components/openssl/platform/ssl_port.c || cmake_object_order_depends_target___idf_openssl + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/openssl/CMakeFiles/__idf_openssl.dir/platform/ssl_port.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/openssl/include -I/home/mithras/esp/esp-idf/components/openssl/include/internal -I/home/mithras/esp/esp-idf/components/openssl/include/platform -I/home/mithras/esp/esp-idf/components/openssl/include/openssl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/openssl/CMakeFiles/__idf_openssl.dir + OBJECT_FILE_DIR = esp-idf/openssl/CMakeFiles/__idf_openssl.dir/platform + TARGET_COMPILE_PDB = esp-idf/openssl/CMakeFiles/__idf_openssl.dir/__idf_openssl.pdb + TARGET_PDB = esp-idf/openssl/libopenssl.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_openssl + + +############################################# +# Link the static library esp-idf/openssl/libopenssl.a + +build esp-idf/openssl/libopenssl.a: CXX_STATIC_LIBRARY_LINKER____idf_openssl esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_cert.c.obj esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_lib.c.obj esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_methods.c.obj esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_pkey.c.obj esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_stack.c.obj esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_x509.c.obj esp-idf/openssl/CMakeFiles/__idf_openssl.dir/platform/ssl_pm.c.obj esp-idf/openssl/CMakeFiles/__idf_openssl.dir/platform/ssl_port.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/openssl/CMakeFiles/__idf_openssl.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/openssl/CMakeFiles/__idf_openssl.dir/__idf_openssl.pdb + TARGET_FILE = esp-idf/openssl/libopenssl.a + TARGET_PDB = esp-idf/openssl/libopenssl.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/openssl/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/openssl && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/openssl/rebuild_cache: phony esp-idf/openssl/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/openssl/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/openssl/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/openssl/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/openssl && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/openssl/install/local: phony esp-idf/openssl/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/openssl/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/openssl/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/openssl && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/openssl/install: phony esp-idf/openssl/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/spiffs/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/spiffs/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/spiffs && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/spiffs/install/strip: phony esp-idf/spiffs/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/spiffs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/spiffs && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/spiffs/edit_cache: phony esp-idf/spiffs/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_spiffs + + +############################################# +# Order-only phony target for __idf_spiffs + +build cmake_object_order_depends_target___idf_spiffs: phony || cmake_object_order_depends_target___idf_xtensa +build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj: C_COMPILER____idf_spiffs /home/mithras/esp/esp-idf/components/spiffs/esp_spiffs.c || cmake_object_order_depends_target___idf_spiffs + DEP_FILE = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/spiffs/include -I/home/mithras/esp/esp-idf/components/spiffs -I/home/mithras/esp/esp-idf/components/spiffs/spiffs/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include + OBJECT_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir + OBJECT_FILE_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir + TARGET_COMPILE_PDB = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/__idf_spiffs.pdb + TARGET_PDB = esp-idf/spiffs/libspiffs.pdb +build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj: C_COMPILER____idf_spiffs /home/mithras/esp/esp-idf/components/spiffs/spiffs_api.c || cmake_object_order_depends_target___idf_spiffs + DEP_FILE = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/spiffs/include -I/home/mithras/esp/esp-idf/components/spiffs -I/home/mithras/esp/esp-idf/components/spiffs/spiffs/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include + OBJECT_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir + OBJECT_FILE_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir + TARGET_COMPILE_PDB = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/__idf_spiffs.pdb + TARGET_PDB = esp-idf/spiffs/libspiffs.pdb +build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj: C_COMPILER____idf_spiffs /home/mithras/esp/esp-idf/components/spiffs/spiffs/src/spiffs_cache.c || cmake_object_order_depends_target___idf_spiffs + DEP_FILE = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/spiffs/include -I/home/mithras/esp/esp-idf/components/spiffs -I/home/mithras/esp/esp-idf/components/spiffs/spiffs/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include + OBJECT_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir + OBJECT_FILE_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src + TARGET_COMPILE_PDB = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/__idf_spiffs.pdb + TARGET_PDB = esp-idf/spiffs/libspiffs.pdb +build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj: C_COMPILER____idf_spiffs /home/mithras/esp/esp-idf/components/spiffs/spiffs/src/spiffs_check.c || cmake_object_order_depends_target___idf_spiffs + DEP_FILE = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/spiffs/include -I/home/mithras/esp/esp-idf/components/spiffs -I/home/mithras/esp/esp-idf/components/spiffs/spiffs/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include + OBJECT_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir + OBJECT_FILE_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src + TARGET_COMPILE_PDB = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/__idf_spiffs.pdb + TARGET_PDB = esp-idf/spiffs/libspiffs.pdb +build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj: C_COMPILER____idf_spiffs /home/mithras/esp/esp-idf/components/spiffs/spiffs/src/spiffs_gc.c || cmake_object_order_depends_target___idf_spiffs + DEP_FILE = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/spiffs/include -I/home/mithras/esp/esp-idf/components/spiffs -I/home/mithras/esp/esp-idf/components/spiffs/spiffs/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include + OBJECT_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir + OBJECT_FILE_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src + TARGET_COMPILE_PDB = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/__idf_spiffs.pdb + TARGET_PDB = esp-idf/spiffs/libspiffs.pdb +build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj: C_COMPILER____idf_spiffs /home/mithras/esp/esp-idf/components/spiffs/spiffs/src/spiffs_hydrogen.c || cmake_object_order_depends_target___idf_spiffs + DEP_FILE = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/spiffs/include -I/home/mithras/esp/esp-idf/components/spiffs -I/home/mithras/esp/esp-idf/components/spiffs/spiffs/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include + OBJECT_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir + OBJECT_FILE_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src + TARGET_COMPILE_PDB = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/__idf_spiffs.pdb + TARGET_PDB = esp-idf/spiffs/libspiffs.pdb +build esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj: C_COMPILER____idf_spiffs /home/mithras/esp/esp-idf/components/spiffs/spiffs/src/spiffs_nucleus.c || cmake_object_order_depends_target___idf_spiffs + DEP_FILE = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-stringop-truncation + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/spiffs/include -I/home/mithras/esp/esp-idf/components/spiffs -I/home/mithras/esp/esp-idf/components/spiffs/spiffs/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include + OBJECT_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir + OBJECT_FILE_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src + TARGET_COMPILE_PDB = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/__idf_spiffs.pdb + TARGET_PDB = esp-idf/spiffs/libspiffs.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_spiffs + + +############################################# +# Link the static library esp-idf/spiffs/libspiffs.a + +build esp-idf/spiffs/libspiffs.a: CXX_STATIC_LIBRARY_LINKER____idf_spiffs esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/__idf_spiffs.pdb + TARGET_FILE = esp-idf/spiffs/libspiffs.a + TARGET_PDB = esp-idf/spiffs/libspiffs.pdb + +############################################# +# Utility command for install + +build esp-idf/spiffs/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/spiffs/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/spiffs && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/spiffs/install: phony esp-idf/spiffs/CMakeFiles/install.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/spiffs/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/spiffs && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/spiffs/rebuild_cache: phony esp-idf/spiffs/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/spiffs/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/spiffs/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/spiffs/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/spiffs && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/spiffs/install/local: phony esp-idf/spiffs/CMakeFiles/install/local.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/ulp/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/ulp/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/ulp && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/ulp/install/strip: phony esp-idf/ulp/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/ulp/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/ulp && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/ulp/edit_cache: phony esp-idf/ulp/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_ulp + + +############################################# +# Order-only phony target for __idf_ulp + +build cmake_object_order_depends_target___idf_ulp: phony || esp-idf/esp32/esp32_linker_script +build esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp.c.obj: C_COMPILER____idf_ulp /home/mithras/esp/esp-idf/components/ulp/ulp.c || cmake_object_order_depends_target___idf_ulp + DEP_FILE = esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/ulp/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/ulp/CMakeFiles/__idf_ulp.dir + OBJECT_FILE_DIR = esp-idf/ulp/CMakeFiles/__idf_ulp.dir + TARGET_COMPILE_PDB = esp-idf/ulp/CMakeFiles/__idf_ulp.dir/__idf_ulp.pdb + TARGET_PDB = esp-idf/ulp/libulp.pdb +build esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp_macro.c.obj: C_COMPILER____idf_ulp /home/mithras/esp/esp-idf/components/ulp/ulp_macro.c || cmake_object_order_depends_target___idf_ulp + DEP_FILE = esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp_macro.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/ulp/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/ulp/CMakeFiles/__idf_ulp.dir + OBJECT_FILE_DIR = esp-idf/ulp/CMakeFiles/__idf_ulp.dir + TARGET_COMPILE_PDB = esp-idf/ulp/CMakeFiles/__idf_ulp.dir/__idf_ulp.pdb + TARGET_PDB = esp-idf/ulp/libulp.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_ulp + + +############################################# +# Link the static library esp-idf/ulp/libulp.a + +build esp-idf/ulp/libulp.a: CXX_STATIC_LIBRARY_LINKER____idf_ulp esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp.c.obj esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp_macro.c.obj || esp-idf/esp32/esp32_linker_script + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/ulp/CMakeFiles/__idf_ulp.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/ulp/CMakeFiles/__idf_ulp.dir/__idf_ulp.pdb + TARGET_FILE = esp-idf/ulp/libulp.a + TARGET_PDB = esp-idf/ulp/libulp.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/ulp/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/ulp && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/ulp/rebuild_cache: phony esp-idf/ulp/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/ulp/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/ulp/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/ulp/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/ulp && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/ulp/install/local: phony esp-idf/ulp/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/ulp/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/ulp/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/ulp && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/ulp/install: phony esp-idf/ulp/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/unity/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/unity/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/unity && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/unity/install/strip: phony esp-idf/unity/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/unity/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/unity && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/unity/edit_cache: phony esp-idf/unity/CMakeFiles/edit_cache.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/unity/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/unity && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/unity/rebuild_cache: phony esp-idf/unity/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/unity/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/unity/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/unity/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/unity && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/unity/install/local: phony esp-idf/unity/CMakeFiles/install/local.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_unity + + +############################################# +# Order-only phony target for __idf_unity + +build cmake_object_order_depends_target___idf_unity: phony || cmake_object_order_depends_target___idf_xtensa +build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj: C_COMPILER____idf_unity /home/mithras/esp/esp-idf/components/unity/unity/src/unity.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DUNITY_INCLUDE_CONFIG_H + DEP_FILE = esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-unused-const-variable + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/unity/include -I/home/mithras/esp/esp-idf/components/unity/unity/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir + OBJECT_FILE_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src + TARGET_COMPILE_PDB = esp-idf/unity/CMakeFiles/__idf_unity.dir/__idf_unity.pdb + TARGET_PDB = esp-idf/unity/libunity.pdb +build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj: C_COMPILER____idf_unity /home/mithras/esp/esp-idf/components/unity/unity_port_esp32.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DUNITY_INCLUDE_CONFIG_H + DEP_FILE = esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-unused-const-variable + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/unity/include -I/home/mithras/esp/esp-idf/components/unity/unity/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir + OBJECT_FILE_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir + TARGET_COMPILE_PDB = esp-idf/unity/CMakeFiles/__idf_unity.dir/__idf_unity.pdb + TARGET_PDB = esp-idf/unity/libunity.pdb +build esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj: C_COMPILER____idf_unity /home/mithras/esp/esp-idf/components/unity/unity_runner.c || cmake_object_order_depends_target___idf_unity + DEFINES = -DUNITY_INCLUDE_CONFIG_H + DEP_FILE = esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-unused-const-variable + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/unity/include -I/home/mithras/esp/esp-idf/components/unity/unity/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir + OBJECT_FILE_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir + TARGET_COMPILE_PDB = esp-idf/unity/CMakeFiles/__idf_unity.dir/__idf_unity.pdb + TARGET_PDB = esp-idf/unity/libunity.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_unity + + +############################################# +# Link the static library esp-idf/unity/libunity.a + +build esp-idf/unity/libunity.a: CXX_STATIC_LIBRARY_LINKER____idf_unity esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/unity/CMakeFiles/__idf_unity.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/unity/CMakeFiles/__idf_unity.dir/__idf_unity.pdb + TARGET_FILE = esp-idf/unity/libunity.a + TARGET_PDB = esp-idf/unity/libunity.pdb + +############################################# +# Utility command for install + +build esp-idf/unity/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/unity/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/unity && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/unity/install: phony esp-idf/unity/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/wifi_provisioning/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/wifi_provisioning/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/wifi_provisioning && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/wifi_provisioning/install/strip: phony esp-idf/wifi_provisioning/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/wifi_provisioning/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/wifi_provisioning && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/wifi_provisioning/edit_cache: phony esp-idf/wifi_provisioning/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_wifi_provisioning + + +############################################# +# Order-only phony target for __idf_wifi_provisioning + +build cmake_object_order_depends_target___idf_wifi_provisioning: phony || cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_json cmake_object_order_depends_target___idf_mdns cmake_object_order_depends_target___idf_protobuf-c cmake_object_order_depends_target___idf_protocomm cmake_object_order_depends_target___idf_xtensa +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj: C_COMPILER____idf_wifi_provisioning /home/mithras/esp/esp-idf/components/wifi_provisioning/src/wifi_config.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wifi_provisioning/include -I/home/mithras/esp/esp-idf/components/wifi_provisioning/src -I/home/mithras/esp/esp-idf/components/wifi_provisioning/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/json/cJSON + OBJECT_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir + OBJECT_FILE_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src + TARGET_COMPILE_PDB = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/__idf_wifi_provisioning.pdb + TARGET_PDB = esp-idf/wifi_provisioning/libwifi_provisioning.pdb +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj: C_COMPILER____idf_wifi_provisioning /home/mithras/esp/esp-idf/components/wifi_provisioning/src/wifi_scan.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wifi_provisioning/include -I/home/mithras/esp/esp-idf/components/wifi_provisioning/src -I/home/mithras/esp/esp-idf/components/wifi_provisioning/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/json/cJSON + OBJECT_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir + OBJECT_FILE_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src + TARGET_COMPILE_PDB = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/__idf_wifi_provisioning.pdb + TARGET_PDB = esp-idf/wifi_provisioning/libwifi_provisioning.pdb +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj: C_COMPILER____idf_wifi_provisioning /home/mithras/esp/esp-idf/components/wifi_provisioning/src/manager.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wifi_provisioning/include -I/home/mithras/esp/esp-idf/components/wifi_provisioning/src -I/home/mithras/esp/esp-idf/components/wifi_provisioning/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/json/cJSON + OBJECT_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir + OBJECT_FILE_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src + TARGET_COMPILE_PDB = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/__idf_wifi_provisioning.pdb + TARGET_PDB = esp-idf/wifi_provisioning/libwifi_provisioning.pdb +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj: C_COMPILER____idf_wifi_provisioning /home/mithras/esp/esp-idf/components/wifi_provisioning/src/handlers.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-stringop-truncation + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wifi_provisioning/include -I/home/mithras/esp/esp-idf/components/wifi_provisioning/src -I/home/mithras/esp/esp-idf/components/wifi_provisioning/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/json/cJSON + OBJECT_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir + OBJECT_FILE_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src + TARGET_COMPILE_PDB = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/__idf_wifi_provisioning.pdb + TARGET_PDB = esp-idf/wifi_provisioning/libwifi_provisioning.pdb +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj: C_COMPILER____idf_wifi_provisioning /home/mithras/esp/esp-idf/components/wifi_provisioning/src/scheme_softap.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM -Wno-stringop-truncation + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wifi_provisioning/include -I/home/mithras/esp/esp-idf/components/wifi_provisioning/src -I/home/mithras/esp/esp-idf/components/wifi_provisioning/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/json/cJSON + OBJECT_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir + OBJECT_FILE_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src + TARGET_COMPILE_PDB = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/__idf_wifi_provisioning.pdb + TARGET_PDB = esp-idf/wifi_provisioning/libwifi_provisioning.pdb +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj: C_COMPILER____idf_wifi_provisioning /home/mithras/esp/esp-idf/components/wifi_provisioning/src/scheme_console.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wifi_provisioning/include -I/home/mithras/esp/esp-idf/components/wifi_provisioning/src -I/home/mithras/esp/esp-idf/components/wifi_provisioning/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/json/cJSON + OBJECT_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir + OBJECT_FILE_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src + TARGET_COMPILE_PDB = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/__idf_wifi_provisioning.pdb + TARGET_PDB = esp-idf/wifi_provisioning/libwifi_provisioning.pdb +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj: C_COMPILER____idf_wifi_provisioning /home/mithras/esp/esp-idf/components/wifi_provisioning/proto-c/wifi_config.pb-c.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wifi_provisioning/include -I/home/mithras/esp/esp-idf/components/wifi_provisioning/src -I/home/mithras/esp/esp-idf/components/wifi_provisioning/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/json/cJSON + OBJECT_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir + OBJECT_FILE_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c + TARGET_COMPILE_PDB = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/__idf_wifi_provisioning.pdb + TARGET_PDB = esp-idf/wifi_provisioning/libwifi_provisioning.pdb +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj: C_COMPILER____idf_wifi_provisioning /home/mithras/esp/esp-idf/components/wifi_provisioning/proto-c/wifi_scan.pb-c.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wifi_provisioning/include -I/home/mithras/esp/esp-idf/components/wifi_provisioning/src -I/home/mithras/esp/esp-idf/components/wifi_provisioning/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/json/cJSON + OBJECT_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir + OBJECT_FILE_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c + TARGET_COMPILE_PDB = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/__idf_wifi_provisioning.pdb + TARGET_PDB = esp-idf/wifi_provisioning/libwifi_provisioning.pdb +build esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj: C_COMPILER____idf_wifi_provisioning /home/mithras/esp/esp-idf/components/wifi_provisioning/proto-c/wifi_constants.pb-c.c || cmake_object_order_depends_target___idf_wifi_provisioning + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I/home/mithras/esp/esp-idf/components/wifi_provisioning/include -I/home/mithras/esp/esp-idf/components/wifi_provisioning/src -I/home/mithras/esp/esp-idf/components/wifi_provisioning/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/json/cJSON + OBJECT_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir + OBJECT_FILE_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c + TARGET_COMPILE_PDB = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/__idf_wifi_provisioning.pdb + TARGET_PDB = esp-idf/wifi_provisioning/libwifi_provisioning.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_wifi_provisioning + + +############################################# +# Link the static library esp-idf/wifi_provisioning/libwifi_provisioning.a + +build esp-idf/wifi_provisioning/libwifi_provisioning.a: CXX_STATIC_LIBRARY_LINKER____idf_wifi_provisioning esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj || esp-idf/console/libconsole.a esp-idf/json/libjson.a esp-idf/mdns/libmdns.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/__idf_wifi_provisioning.pdb + TARGET_FILE = esp-idf/wifi_provisioning/libwifi_provisioning.a + TARGET_PDB = esp-idf/wifi_provisioning/libwifi_provisioning.pdb + +############################################# +# Utility command for install + +build esp-idf/wifi_provisioning/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/wifi_provisioning/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/wifi_provisioning && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/wifi_provisioning/install: phony esp-idf/wifi_provisioning/CMakeFiles/install.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/wifi_provisioning/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/wifi_provisioning && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/wifi_provisioning/rebuild_cache: phony esp-idf/wifi_provisioning/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/wifi_provisioning/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/wifi_provisioning/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/wifi_provisioning/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/wifi_provisioning && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/wifi_provisioning/install/local: phony esp-idf/wifi_provisioning/CMakeFiles/install/local.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build esp-idf/main/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/main && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/main/edit_cache: phony esp-idf/main/CMakeFiles/edit_cache.util + +############################################# +# Utility command for install/strip + +build esp-idf/main/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/main/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/main && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/main/install/strip: phony esp-idf/main/CMakeFiles/install/strip.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_main + + +############################################# +# Order-only phony target for __idf_main + +build cmake_object_order_depends_target___idf_main: phony || cmake_object_order_depends_target___idf_asio cmake_object_order_depends_target___idf_ca cmake_object_order_depends_target___idf_cbor cmake_object_order_depends_target___idf_cmd_nvs cmake_object_order_depends_target___idf_cmd_system cmake_object_order_depends_target___idf_coap cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_esp_adc_cal cmake_object_order_depends_target___idf_esp_gdbstub cmake_object_order_depends_target___idf_esp_https_ota cmake_object_order_depends_target___idf_esp_https_server cmake_object_order_depends_target___idf_esp_local_ctrl cmake_object_order_depends_target___idf_esp_serial_slave_link cmake_object_order_depends_target___idf_esp_websocket_client cmake_object_order_depends_target___idf_expat cmake_object_order_depends_target___idf_fatfs cmake_object_order_depends_target___idf_files cmake_object_order_depends_target___idf_freemodbus cmake_object_order_depends_target___idf_https_server cmake_object_order_depends_target___idf_jsmn cmake_object_order_depends_target___idf_json cmake_object_order_depends_target___idf_libsodium cmake_object_order_depends_target___idf_lv_examples cmake_object_order_depends_target___idf_lvgl cmake_object_order_depends_target___idf_lvgl_esp32_drivers cmake_object_order_depends_target___idf_lvgl_tft cmake_object_order_depends_target___idf_lvgl_touch cmake_object_order_depends_target___idf_mdns cmake_object_order_depends_target___idf_mqtt cmake_object_order_depends_target___idf_openssl cmake_object_order_depends_target___idf_protobuf-c cmake_object_order_depends_target___idf_protocomm cmake_object_order_depends_target___idf_sdmmc cmake_object_order_depends_target___idf_spiffs cmake_object_order_depends_target___idf_unity cmake_object_order_depends_target___idf_wear_levelling cmake_object_order_depends_target___idf_wifi cmake_object_order_depends_target___idf_wifi_provisioning cmake_object_order_depends_target___idf_xtensa +build esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj: C_COMPILER____idf_main ../main/main.c || cmake_object_order_depends_target___idf_main + DEFINES = -DHAVE_CONFIG_H -DLV_CONF_INCLUDE_SIMPLE=1 -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" -DUNITY_INCLUDE_CONFIG_H -DWITH_POSIX + DEP_FILE = esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../main -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include -I/home/mithras/esp/esp-idf/components/asio/asio/asio/include -I/home/mithras/esp/esp-idf/components/asio/port/include -I/home/mithras/esp/esp-idf/components/cbor/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/esp_adc_cal/include -I/home/mithras/esp/esp-idf/components/esp_gdbstub/include -I/home/mithras/esp/esp-idf/components/tcp_transport/include -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/esp_https_ota/include -I/home/mithras/esp/esp-idf/components/esp_https_server/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/include -I/home/mithras/esp/esp-idf/components/sdmmc/include -I/home/mithras/esp/esp-idf/components/esp_serial_slave_link/include -I/home/mithras/esp/esp-idf/components/esp_websocket_client/include -I/home/mithras/esp/esp-idf/components/expat/expat/expat/lib -I/home/mithras/esp/esp-idf/components/expat/port/include -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/fatfs/diskio -I/home/mithras/esp/esp-idf/components/fatfs/vfs -I/home/mithras/esp/esp-idf/components/fatfs/src -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/idf_test/include -I/home/mithras/esp/esp-idf/components/jsmn/include -I/home/mithras/esp/esp-idf/components/json/cJSON -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/include -I/home/mithras/esp/esp-idf/components/openssl/include -I/home/mithras/esp/esp-idf/components/spiffs/include -I/home/mithras/esp/esp-idf/components/ulp/include -I/home/mithras/esp/esp-idf/components/unity/include -I/home/mithras/esp/esp-idf/components/unity/unity/src -I/home/mithras/esp/esp-idf/components/wifi_provisioning/include -I../components/ca -I../components/cmd_nvs -I../components/cmd_system -I../components/files -I../components/wifi -I../components/https_server -I../components/lvgl -I../components/lvgl/lvgl -I../components/lv_examples -I../components/lvgl_esp32_drivers -I../components/lvgl_esp32_drivers/lvgl_tft -I../components/lvgl_esp32_drivers/lvgl_touch + OBJECT_DIR = esp-idf/main/CMakeFiles/__idf_main.dir + OBJECT_FILE_DIR = esp-idf/main/CMakeFiles/__idf_main.dir + TARGET_COMPILE_PDB = esp-idf/main/CMakeFiles/__idf_main.dir/__idf_main.pdb + TARGET_PDB = esp-idf/main/libmain.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_main + + +############################################# +# Link the static library esp-idf/main/libmain.a + +build esp-idf/main/libmain.a: CXX_STATIC_LIBRARY_LINKER____idf_main esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj || esp-idf/asio/libasio.a esp-idf/ca/libca.a esp-idf/cbor/libcbor.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/expat/libexpat.a esp-idf/fatfs/libfatfs.a esp-idf/files/libfiles.a esp-idf/freemodbus/libfreemodbus.a esp-idf/https_server/libhttps_server.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl/liblvgl.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.a esp-idf/mdns/libmdns.a esp-idf/mqtt/libmqtt.a esp-idf/openssl/libopenssl.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/sdmmc/libsdmmc.a esp-idf/spiffs/libspiffs.a esp-idf/unity/libunity.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/wifi/libwifi.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/main/CMakeFiles/__idf_main.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/main/CMakeFiles/__idf_main.dir/__idf_main.pdb + TARGET_FILE = esp-idf/main/libmain.a + TARGET_PDB = esp-idf/main/libmain.pdb + +############################################# +# Utility command for list_install_components + +build esp-idf/main/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/main/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/main/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/main && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/main/install/local: phony esp-idf/main/CMakeFiles/install/local.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/main/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/main && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/main/rebuild_cache: phony esp-idf/main/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for install + +build esp-idf/main/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/main/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/main && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/main/install: phony esp-idf/main/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/ca/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/ca/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/ca && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/ca/install/strip: phony esp-idf/ca/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/ca/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/ca && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/ca/edit_cache: phony esp-idf/ca/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_ca + + +############################################# +# Order-only phony target for __idf_ca + +build cmake_object_order_depends_target___idf_ca: phony || cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_xtensa +build esp-idf/ca/CMakeFiles/__idf_ca.dir/ca.c.obj: C_COMPILER____idf_ca ../components/ca/ca.c || cmake_object_order_depends_target___idf_ca + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/ca/CMakeFiles/__idf_ca.dir/ca.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/ca -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/ca/CMakeFiles/__idf_ca.dir + OBJECT_FILE_DIR = esp-idf/ca/CMakeFiles/__idf_ca.dir + TARGET_COMPILE_PDB = esp-idf/ca/CMakeFiles/__idf_ca.dir/__idf_ca.pdb + TARGET_PDB = esp-idf/ca/libca.pdb +build esp-idf/ca/CMakeFiles/__idf_ca.dir/gen_key.c.obj: C_COMPILER____idf_ca ../components/ca/gen_key.c || cmake_object_order_depends_target___idf_ca + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/ca/CMakeFiles/__idf_ca.dir/gen_key.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/ca -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/ca/CMakeFiles/__idf_ca.dir + OBJECT_FILE_DIR = esp-idf/ca/CMakeFiles/__idf_ca.dir + TARGET_COMPILE_PDB = esp-idf/ca/CMakeFiles/__idf_ca.dir/__idf_ca.pdb + TARGET_PDB = esp-idf/ca/libca.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_ca + + +############################################# +# Link the static library esp-idf/ca/libca.a + +build esp-idf/ca/libca.a: CXX_STATIC_LIBRARY_LINKER____idf_ca esp-idf/ca/CMakeFiles/__idf_ca.dir/ca.c.obj esp-idf/ca/CMakeFiles/__idf_ca.dir/gen_key.c.obj || esp-idf/console/libconsole.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/ca/CMakeFiles/__idf_ca.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/ca/CMakeFiles/__idf_ca.dir/__idf_ca.pdb + TARGET_FILE = esp-idf/ca/libca.a + TARGET_PDB = esp-idf/ca/libca.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/ca/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/ca && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/ca/rebuild_cache: phony esp-idf/ca/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/ca/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/ca/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/ca/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/ca && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/ca/install/local: phony esp-idf/ca/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/ca/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/ca/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/ca && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/ca/install: phony esp-idf/ca/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/cmd_nvs/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/cmd_nvs/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/cmd_nvs && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/cmd_nvs/install/strip: phony esp-idf/cmd_nvs/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/cmd_nvs/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/cmd_nvs && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/cmd_nvs/edit_cache: phony esp-idf/cmd_nvs/CMakeFiles/edit_cache.util + +############################################# +# Utility command for install + +build esp-idf/cmd_nvs/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/cmd_nvs/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/cmd_nvs && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/cmd_nvs/install: phony esp-idf/cmd_nvs/CMakeFiles/install.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_cmd_nvs + + +############################################# +# Order-only phony target for __idf_cmd_nvs + +build cmake_object_order_depends_target___idf_cmd_nvs: phony || cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_xtensa +build esp-idf/cmd_nvs/CMakeFiles/__idf_cmd_nvs.dir/cmd_nvs.c.obj: C_COMPILER____idf_cmd_nvs ../components/cmd_nvs/cmd_nvs.c || cmake_object_order_depends_target___idf_cmd_nvs + DEFINES = -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/cmd_nvs/CMakeFiles/__idf_cmd_nvs.dir/cmd_nvs.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/cmd_nvs -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + OBJECT_DIR = esp-idf/cmd_nvs/CMakeFiles/__idf_cmd_nvs.dir + OBJECT_FILE_DIR = esp-idf/cmd_nvs/CMakeFiles/__idf_cmd_nvs.dir + TARGET_COMPILE_PDB = esp-idf/cmd_nvs/CMakeFiles/__idf_cmd_nvs.dir/__idf_cmd_nvs.pdb + TARGET_PDB = esp-idf/cmd_nvs/libcmd_nvs.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_cmd_nvs + + +############################################# +# Link the static library esp-idf/cmd_nvs/libcmd_nvs.a + +build esp-idf/cmd_nvs/libcmd_nvs.a: CXX_STATIC_LIBRARY_LINKER____idf_cmd_nvs esp-idf/cmd_nvs/CMakeFiles/__idf_cmd_nvs.dir/cmd_nvs.c.obj || esp-idf/console/libconsole.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/cmd_nvs/CMakeFiles/__idf_cmd_nvs.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/cmd_nvs/CMakeFiles/__idf_cmd_nvs.dir/__idf_cmd_nvs.pdb + TARGET_FILE = esp-idf/cmd_nvs/libcmd_nvs.a + TARGET_PDB = esp-idf/cmd_nvs/libcmd_nvs.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/cmd_nvs/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/cmd_nvs && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/cmd_nvs/rebuild_cache: phony esp-idf/cmd_nvs/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/cmd_nvs/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/cmd_nvs/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/cmd_nvs/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/cmd_nvs && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/cmd_nvs/install/local: phony esp-idf/cmd_nvs/CMakeFiles/install/local.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/cmd_system/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/cmd_system/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/cmd_system && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/cmd_system/install/strip: phony esp-idf/cmd_system/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/cmd_system/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/cmd_system && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/cmd_system/edit_cache: phony esp-idf/cmd_system/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_cmd_system + + +############################################# +# Order-only phony target for __idf_cmd_system + +build cmake_object_order_depends_target___idf_cmd_system: phony || cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_xtensa +build esp-idf/cmd_system/CMakeFiles/__idf_cmd_system.dir/cmd_system.c.obj: C_COMPILER____idf_cmd_system ../components/cmd_system/cmd_system.c || cmake_object_order_depends_target___idf_cmd_system + DEP_FILE = esp-idf/cmd_system/CMakeFiles/__idf_cmd_system.dir/cmd_system.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/cmd_system -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf/cmd_system/CMakeFiles/__idf_cmd_system.dir + OBJECT_FILE_DIR = esp-idf/cmd_system/CMakeFiles/__idf_cmd_system.dir + TARGET_COMPILE_PDB = esp-idf/cmd_system/CMakeFiles/__idf_cmd_system.dir/__idf_cmd_system.pdb + TARGET_PDB = esp-idf/cmd_system/libcmd_system.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_cmd_system + + +############################################# +# Link the static library esp-idf/cmd_system/libcmd_system.a + +build esp-idf/cmd_system/libcmd_system.a: CXX_STATIC_LIBRARY_LINKER____idf_cmd_system esp-idf/cmd_system/CMakeFiles/__idf_cmd_system.dir/cmd_system.c.obj || esp-idf/console/libconsole.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/cmd_system/CMakeFiles/__idf_cmd_system.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/cmd_system/CMakeFiles/__idf_cmd_system.dir/__idf_cmd_system.pdb + TARGET_FILE = esp-idf/cmd_system/libcmd_system.a + TARGET_PDB = esp-idf/cmd_system/libcmd_system.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/cmd_system/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/cmd_system && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/cmd_system/rebuild_cache: phony esp-idf/cmd_system/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/cmd_system/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/cmd_system/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/cmd_system/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/cmd_system && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/cmd_system/install/local: phony esp-idf/cmd_system/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/cmd_system/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/cmd_system/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/cmd_system && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/cmd_system/install: phony esp-idf/cmd_system/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/files/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/files/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/files && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/files/install/strip: phony esp-idf/files/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/files/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/files && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/files/edit_cache: phony esp-idf/files/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_files + + +############################################# +# Order-only phony target for __idf_files + +build cmake_object_order_depends_target___idf_files: phony || cmake_object_order_depends_target___idf_spiffs cmake_object_order_depends_target___idf_xtensa +build esp-idf/files/CMakeFiles/__idf_files.dir/file.c.obj: C_COMPILER____idf_files ../components/files/file.c || cmake_object_order_depends_target___idf_files + DEP_FILE = esp-idf/files/CMakeFiles/__idf_files.dir/file.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/files -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spiffs/include -I/home/mithras/esp/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf/files/CMakeFiles/__idf_files.dir + OBJECT_FILE_DIR = esp-idf/files/CMakeFiles/__idf_files.dir + TARGET_COMPILE_PDB = esp-idf/files/CMakeFiles/__idf_files.dir/__idf_files.pdb + TARGET_PDB = esp-idf/files/libfiles.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_files + + +############################################# +# Link the static library esp-idf/files/libfiles.a + +build esp-idf/files/libfiles.a: CXX_STATIC_LIBRARY_LINKER____idf_files esp-idf/files/CMakeFiles/__idf_files.dir/file.c.obj || esp-idf/spiffs/libspiffs.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/files/CMakeFiles/__idf_files.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/files/CMakeFiles/__idf_files.dir/__idf_files.pdb + TARGET_FILE = esp-idf/files/libfiles.a + TARGET_PDB = esp-idf/files/libfiles.pdb + +############################################# +# Utility command for install + +build esp-idf/files/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/files/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/files && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/files/install: phony esp-idf/files/CMakeFiles/install.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/files/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/files && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/files/rebuild_cache: phony esp-idf/files/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/files/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/files/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/files/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/files && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/files/install/local: phony esp-idf/files/CMakeFiles/install/local.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/wifi/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/wifi/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/wifi && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/wifi/install/strip: phony esp-idf/wifi/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/wifi/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/wifi && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/wifi/edit_cache: phony esp-idf/wifi/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_wifi + + +############################################# +# Order-only phony target for __idf_wifi + +build cmake_object_order_depends_target___idf_wifi: phony || cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_xtensa +build esp-idf/wifi/CMakeFiles/__idf_wifi.dir/wifi.c.obj: C_COMPILER____idf_wifi ../components/wifi/wifi.c || cmake_object_order_depends_target___idf_wifi + DEP_FILE = esp-idf/wifi/CMakeFiles/__idf_wifi.dir/wifi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/wifi -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/spi_flash/include + OBJECT_DIR = esp-idf/wifi/CMakeFiles/__idf_wifi.dir + OBJECT_FILE_DIR = esp-idf/wifi/CMakeFiles/__idf_wifi.dir + TARGET_COMPILE_PDB = esp-idf/wifi/CMakeFiles/__idf_wifi.dir/__idf_wifi.pdb + TARGET_PDB = esp-idf/wifi/libwifi.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_wifi + + +############################################# +# Link the static library esp-idf/wifi/libwifi.a + +build esp-idf/wifi/libwifi.a: CXX_STATIC_LIBRARY_LINKER____idf_wifi esp-idf/wifi/CMakeFiles/__idf_wifi.dir/wifi.c.obj || esp-idf/console/libconsole.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/wifi/CMakeFiles/__idf_wifi.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/wifi/CMakeFiles/__idf_wifi.dir/__idf_wifi.pdb + TARGET_FILE = esp-idf/wifi/libwifi.a + TARGET_PDB = esp-idf/wifi/libwifi.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/wifi/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/wifi && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/wifi/rebuild_cache: phony esp-idf/wifi/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/wifi/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/wifi/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/wifi/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/wifi && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/wifi/install/local: phony esp-idf/wifi/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/wifi/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/wifi/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/wifi && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/wifi/install: phony esp-idf/wifi/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/https_server/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/https_server/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/https_server && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/https_server/install/strip: phony esp-idf/https_server/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/https_server/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/https_server && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/https_server/edit_cache: phony esp-idf/https_server/CMakeFiles/edit_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/https_server/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/https_server/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/https_server/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/https_server && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/https_server/install/local: phony esp-idf/https_server/CMakeFiles/install/local.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_https_server + + +############################################# +# Order-only phony target for __idf_https_server + +build cmake_object_order_depends_target___idf_https_server: phony || cacert.pem.S cmake_object_order_depends_target___idf_console cmake_object_order_depends_target___idf_esp_https_server cmake_object_order_depends_target___idf_wifi cmake_object_order_depends_target___idf_xtensa prvtkey.pem.S +build esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj: C_COMPILER____idf_https_server ../components/https_server/https_server.c || cmake_object_order_depends_target___idf_https_server + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/https_server -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I../components/wifi -I/home/mithras/esp/esp-idf/components/esp_https_server/include -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp-tls + OBJECT_DIR = esp-idf/https_server/CMakeFiles/__idf_https_server.dir + OBJECT_FILE_DIR = esp-idf/https_server/CMakeFiles/__idf_https_server.dir + TARGET_COMPILE_PDB = esp-idf/https_server/CMakeFiles/__idf_https_server.dir/__idf_https_server.pdb + TARGET_PDB = esp-idf/https_server/libhttps_server.pdb +build esp-idf/https_server/CMakeFiles/__idf_https_server.dir/url_decoder.c.obj: C_COMPILER____idf_https_server ../components/https_server/url_decoder.c || cmake_object_order_depends_target___idf_https_server + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/https_server/CMakeFiles/__idf_https_server.dir/url_decoder.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/https_server -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I../components/wifi -I/home/mithras/esp/esp-idf/components/esp_https_server/include -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp-tls + OBJECT_DIR = esp-idf/https_server/CMakeFiles/__idf_https_server.dir + OBJECT_FILE_DIR = esp-idf/https_server/CMakeFiles/__idf_https_server.dir + TARGET_COMPILE_PDB = esp-idf/https_server/CMakeFiles/__idf_https_server.dir/__idf_https_server.pdb + TARGET_PDB = esp-idf/https_server/libhttps_server.pdb +build esp-idf/https_server/CMakeFiles/__idf_https_server.dir/__/__/cacert.pem.S.obj: ASM_COMPILER____idf_https_server cacert.pem.S || cmake_object_order_depends_target___idf_https_server + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/https_server/CMakeFiles/__idf_https_server.dir/__/__/cacert.pem.S.obj.d + FLAGS = -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/https_server -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I../components/wifi -I/home/mithras/esp/esp-idf/components/esp_https_server/include -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp-tls + OBJECT_DIR = esp-idf/https_server/CMakeFiles/__idf_https_server.dir + OBJECT_FILE_DIR = esp-idf/https_server/CMakeFiles/__idf_https_server.dir/__/__ + TARGET_COMPILE_PDB = esp-idf/https_server/CMakeFiles/__idf_https_server.dir/__idf_https_server.pdb + TARGET_PDB = esp-idf/https_server/libhttps_server.pdb +build esp-idf/https_server/CMakeFiles/__idf_https_server.dir/__/__/prvtkey.pem.S.obj: ASM_COMPILER____idf_https_server prvtkey.pem.S || cmake_object_order_depends_target___idf_https_server + DEFINES = -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\"mbedtls/esp_config.h\" + DEP_FILE = esp-idf/https_server/CMakeFiles/__idf_https_server.dir/__/__/prvtkey.pem.S.obj.d + FLAGS = -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/https_server -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I../components/wifi -I/home/mithras/esp/esp-idf/components/esp_https_server/include -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp-tls + OBJECT_DIR = esp-idf/https_server/CMakeFiles/__idf_https_server.dir + OBJECT_FILE_DIR = esp-idf/https_server/CMakeFiles/__idf_https_server.dir/__/__ + TARGET_COMPILE_PDB = esp-idf/https_server/CMakeFiles/__idf_https_server.dir/__idf_https_server.pdb + TARGET_PDB = esp-idf/https_server/libhttps_server.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_https_server + + +############################################# +# Link the static library esp-idf/https_server/libhttps_server.a + +build esp-idf/https_server/libhttps_server.a: CXX_STATIC_LIBRARY_LINKER____idf_https_server esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj esp-idf/https_server/CMakeFiles/__idf_https_server.dir/url_decoder.c.obj esp-idf/https_server/CMakeFiles/__idf_https_server.dir/__/__/cacert.pem.S.obj esp-idf/https_server/CMakeFiles/__idf_https_server.dir/__/__/prvtkey.pem.S.obj || esp-idf/console/libconsole.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/wifi/libwifi.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/https_server/CMakeFiles/__idf_https_server.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/https_server/CMakeFiles/__idf_https_server.dir/__idf_https_server.pdb + TARGET_FILE = esp-idf/https_server/libhttps_server.a + TARGET_PDB = esp-idf/https_server/libhttps_server.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/https_server/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/https_server && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/https_server/rebuild_cache: phony esp-idf/https_server/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for install + +build esp-idf/https_server/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/https_server/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/https_server && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/https_server/install: phony esp-idf/https_server/CMakeFiles/install.util + +############################################# +# Custom command for cacert.pem.S + +build cacert.pem.S: CUSTOM_COMMAND /home/mithras/esp/esp-idf/tools/cmake/scripts/data_file_embed_asm.cmake ../components/https_server/certs/cacert.pem || esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp32/esp32_linker_script esp-idf/esp32/libesp32.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/nghttp/libnghttp.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/perfmon/libperfmon.a esp-idf/pthread/libpthread.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/ulp/libulp.a esp-idf/vfs/libvfs.a esp-idf/wifi/libwifi.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a + COMMAND = cd /home/mithras/Documents/bakalarka/build && /usr/bin/cmake -D DATA_FILE=/home/mithras/Documents/bakalarka/components/https_server/certs/cacert.pem -D SOURCE_FILE=/home/mithras/Documents/bakalarka/build/cacert.pem.S -D FILE_TYPE=TEXT -P /home/mithras/esp/esp-idf/tools/cmake/scripts/data_file_embed_asm.cmake + DESC = Generating ../../cacert.pem.S + restat = 1 + +############################################# +# Custom command for prvtkey.pem.S + +build prvtkey.pem.S: CUSTOM_COMMAND /home/mithras/esp/esp-idf/tools/cmake/scripts/data_file_embed_asm.cmake ../components/https_server/certs/prvtkey.pem || esp-idf/app_trace/libapp_trace.a esp-idf/app_update/libapp_update.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/console/libconsole.a esp-idf/cxx/libcxx.a esp-idf/driver/libdriver.a esp-idf/efuse/libefuse.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp32/esp32_linker_script esp-idf/esp32/libesp32.a esp-idf/esp_common/libesp_common.a esp-idf/esp_eth/libesp_eth.a esp-idf/esp_event/libesp_event.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/esp_timer/libesp_timer.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/espcoredump/libespcoredump.a esp-idf/freertos/libfreertos.a esp-idf/heap/libheap.a esp-idf/log/liblog.a esp-idf/lwip/liblwip.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/newlib/libnewlib.a esp-idf/nghttp/libnghttp.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/perfmon/libperfmon.a esp-idf/pthread/libpthread.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/spi_flash/libspi_flash.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/ulp/libulp.a esp-idf/vfs/libvfs.a esp-idf/wifi/libwifi.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/xtensa/libxtensa.a + COMMAND = cd /home/mithras/Documents/bakalarka/build && /usr/bin/cmake -D DATA_FILE=/home/mithras/Documents/bakalarka/components/https_server/certs/prvtkey.pem -D SOURCE_FILE=/home/mithras/Documents/bakalarka/build/prvtkey.pem.S -D FILE_TYPE=TEXT -P /home/mithras/esp/esp-idf/tools/cmake/scripts/data_file_embed_asm.cmake + DESC = Generating ../../prvtkey.pem.S + restat = 1 +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/lvgl/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/lvgl/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/lvgl && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/lvgl/install/strip: phony esp-idf/lvgl/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/lvgl/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/lvgl && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/lvgl/edit_cache: phony esp-idf/lvgl/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_lvgl + + +############################################# +# Order-only phony target for __idf_lvgl + +build cmake_object_order_depends_target___idf_lvgl: phony || cmake_object_order_depends_target___idf_xtensa +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_debug.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_core/lv_debug.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_debug.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_disp.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_core/lv_disp.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_disp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_group.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_core/lv_group.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_group.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_indev.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_core/lv_indev.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_indev.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_obj.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_core/lv_obj.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_obj.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_refr.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_core/lv_refr.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_refr.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_style.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_core/lv_style.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_style.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_draw/lv_draw.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_arc.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_draw/lv_draw_arc.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_arc.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_basic.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_draw/lv_draw_basic.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_basic.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_img.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_draw/lv_draw_img.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_img.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_label.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_draw/lv_draw_label.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_label.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_line.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_draw/lv_draw_line.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_line.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_rect.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_draw/lv_draw_rect.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_rect.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_triangle.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_draw/lv_draw_triangle.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_triangle.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_img_cache.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_draw/lv_img_cache.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_img_cache.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_img_decoder.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_draw/lv_img_decoder.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_img_decoder.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_font/lv_font.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_fmt_txt.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_font/lv_font_fmt_txt.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_fmt_txt.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_12.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_font/lv_font_roboto_12.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_12.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_12_subpx.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_font/lv_font_roboto_12_subpx.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_12_subpx.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_16.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_font/lv_font_roboto_16.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_16.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_22.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_font/lv_font_roboto_22.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_22.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_28.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_font/lv_font_roboto_28.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_28.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_28_compressed.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_font/lv_font_roboto_28_compressed.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_28_compressed.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_unscii_8.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_font/lv_font_unscii_8.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_unscii_8.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_disp.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_hal/lv_hal_disp.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_disp.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_indev.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_hal/lv_hal_indev.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_indev.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_tick.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_hal/lv_hal_tick.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_tick.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_anim.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_misc/lv_anim.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_anim.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_area.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_misc/lv_area.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_area.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_async.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_misc/lv_async.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_async.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_bidi.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_misc/lv_bidi.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_bidi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_circ.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_misc/lv_circ.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_circ.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_color.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_misc/lv_color.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_color.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_fs.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_misc/lv_fs.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_fs.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_gc.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_misc/lv_gc.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_gc.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_ll.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_misc/lv_ll.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_ll.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_log.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_misc/lv_log.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_log.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_math.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_misc/lv_math.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_math.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_mem.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_misc/lv_mem.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_mem.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_printf.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_misc/lv_printf.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_printf.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_task.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_misc/lv_task.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_task.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_templ.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_misc/lv_templ.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_templ.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_txt.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_misc/lv_txt.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_txt.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_utils.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_misc/lv_utils.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_utils.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_arc.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_objx/lv_arc.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_arc.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_bar.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_objx/lv_bar.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_bar.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_btn.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_objx/lv_btn.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_btn.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_btnm.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_objx/lv_btnm.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_btnm.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_calendar.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_objx/lv_calendar.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_calendar.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_canvas.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_objx/lv_canvas.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_canvas.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cb.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_objx/lv_cb.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cb.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_chart.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_objx/lv_chart.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_chart.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cont.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_objx/lv_cont.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cont.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cpicker.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_objx/lv_cpicker.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cpicker.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_ddlist.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_objx/lv_ddlist.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_ddlist.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_gauge.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_objx/lv_gauge.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_gauge.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_img.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_objx/lv_img.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_img.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_imgbtn.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_objx/lv_imgbtn.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_imgbtn.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_kb.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_objx/lv_kb.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_kb.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_label.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_objx/lv_label.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_label.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_led.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_objx/lv_led.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_led.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_line.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_objx/lv_line.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_line.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_list.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_objx/lv_list.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_list.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_lmeter.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_objx/lv_lmeter.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_lmeter.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_mbox.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_objx/lv_mbox.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_mbox.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_objx_templ.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_objx/lv_objx_templ.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_objx_templ.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_page.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_objx/lv_page.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_page.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_preload.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_objx/lv_preload.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_preload.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_roller.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_objx/lv_roller.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_roller.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_slider.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_objx/lv_slider.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_slider.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_spinbox.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_objx/lv_spinbox.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_spinbox.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_sw.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_objx/lv_sw.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_sw.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_ta.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_objx/lv_ta.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_ta.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_table.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_objx/lv_table.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_table.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_tabview.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_objx/lv_tabview.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_tabview.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_tileview.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_objx/lv_tileview.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_tileview.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_win.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_objx/lv_win.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_win.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_themes/lv_theme.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_alien.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_themes/lv_theme_alien.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_alien.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_default.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_themes/lv_theme_default.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_default.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_material.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_themes/lv_theme_material.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_material.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_mono.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_themes/lv_theme_mono.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_mono.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_nemo.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_themes/lv_theme_nemo.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_nemo.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_night.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_themes/lv_theme_night.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_night.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_templ.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_themes/lv_theme_templ.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_templ.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb +build esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_zen.c.obj: C_COMPILER____idf_lvgl ../components/lvgl/lvgl/src/lv_themes/lv_theme_zen.c || cmake_object_order_depends_target___idf_lvgl + DEP_FILE = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_zen.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + OBJECT_FILE_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_lvgl + + +############################################# +# Link the static library esp-idf/lvgl/liblvgl.a + +build esp-idf/lvgl/liblvgl.a: CXX_STATIC_LIBRARY_LINKER____idf_lvgl esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_debug.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_disp.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_group.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_indev.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_obj.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_refr.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_style.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_arc.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_basic.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_img.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_label.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_line.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_rect.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_triangle.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_img_cache.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_img_decoder.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_fmt_txt.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_12.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_12_subpx.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_16.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_22.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_28.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_28_compressed.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_unscii_8.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_disp.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_indev.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_tick.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_anim.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_area.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_async.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_bidi.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_circ.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_color.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_fs.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_gc.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_ll.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_log.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_math.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_mem.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_printf.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_task.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_templ.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_txt.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_utils.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_arc.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_bar.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_btn.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_btnm.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_calendar.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_canvas.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cb.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_chart.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cont.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cpicker.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_ddlist.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_gauge.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_img.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_imgbtn.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_kb.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_label.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_led.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_line.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_list.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_lmeter.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_mbox.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_objx_templ.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_page.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_preload.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_roller.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_slider.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_spinbox.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_sw.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_ta.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_table.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_tabview.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_tileview.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_win.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_alien.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_default.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_material.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_mono.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_nemo.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_night.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_templ.c.obj esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_zen.c.obj || esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/__idf_lvgl.pdb + TARGET_FILE = esp-idf/lvgl/liblvgl.a + TARGET_PDB = esp-idf/lvgl/liblvgl.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/lvgl/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/lvgl && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/lvgl/rebuild_cache: phony esp-idf/lvgl/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/lvgl/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/lvgl/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/lvgl/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/lvgl && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/lvgl/install/local: phony esp-idf/lvgl/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/lvgl/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/lvgl/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/lvgl && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/lvgl/install: phony esp-idf/lvgl/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/lv_examples/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/lv_examples/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/lv_examples && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/lv_examples/install/strip: phony esp-idf/lv_examples/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/lv_examples/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/lv_examples && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/lv_examples/edit_cache: phony esp-idf/lv_examples/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_lv_examples + + +############################################# +# Order-only phony target for __idf_lv_examples + +build cmake_object_order_depends_target___idf_lv_examples: phony || cmake_object_order_depends_target___idf_lvgl cmake_object_order_depends_target___idf_xtensa +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_apps/benchmark/benchmark.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark_bg.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_apps/benchmark/benchmark_bg.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark_bg.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/demo.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_apps/demo/demo.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/demo.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/img_bubble_pattern.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_apps/demo/img_bubble_pattern.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/img_bubble_pattern.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/sysmon/sysmon.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_apps/sysmon/sysmon.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/sysmon/sysmon.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/sysmon + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/terminal/terminal.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_apps/terminal/terminal.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/terminal/terminal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/terminal + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/tpcal/tpcal.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_apps/tpcal/tpcal.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/tpcal/tpcal.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/tpcal + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_group/lv_test_group.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_group/lv_test_group.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_group/lv_test_group.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_group + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_misc/lv_test_task.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_misc/lv_test_task.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_misc/lv_test_task.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_misc + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_obj/lv_test_obj.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_obj/lv_test_obj.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_obj/lv_test_obj.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_obj + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_arc + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_bar + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btn + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btnm + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_canvas + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cb + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_chart + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cont + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker/lv_test_cpicker.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker/lv_test_cpicker.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker/lv_test_cpicker.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_gauge + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img/img_flower_icon.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_img/img_flower_icon.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img/img_flower_icon.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_1.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_1.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_1.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_2.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_2.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_2.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_3.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_3.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_3.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_4.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_4.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_4.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_kb + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_label + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_led + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_line + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_list + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_mbox + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_page + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_preload + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_roller + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_slider + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_sw + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ta + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_table + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tabview + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tileview + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_win + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_stress/lv_test_stress.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_stress/lv_test_stress.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_stress/lv_test_stress.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_stress + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/10_keyboard + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/1_hello_world + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/2_objects + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/3_styles + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/4_themes + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_alpha.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/apple_icon_alpha.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_alpha.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_chroma.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/apple_icon_chroma.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_chroma.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/flower_icon_alpha.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tutorial/6_images/flower_icon_alpha.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/flower_icon_alpha.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/lv_tutorial_images.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tutorial/6_images/lv_tutorial_images.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/lv_tutorial_images.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/red_flower.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tutorial/6_images/red_flower.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/red_flower.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/red_rose_16.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tutorial/6_images/red_rose_16.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/red_rose_16.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts/arial_20.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tutorial/7_fonts/arial_20.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts/arial_20.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/8_animations + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb +build esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.c.obj: C_COMPILER____idf_lv_examples ../components/lv_examples/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.c || cmake_object_order_depends_target___idf_lv_examples + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + OBJECT_FILE_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/9_responsive + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_lv_examples + + +############################################# +# Link the static library esp-idf/lv_examples/liblv_examples.a + +build esp-idf/lv_examples/liblv_examples.a: CXX_STATIC_LIBRARY_LINKER____idf_lv_examples esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark_bg.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/demo.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/img_bubble_pattern.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/sysmon/sysmon.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/terminal/terminal.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/tpcal/tpcal.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_group/lv_test_group.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_misc/lv_test_task.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_obj/lv_test_obj.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker/lv_test_cpicker.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img/img_flower_icon.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_1.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_2.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_3.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_4.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_stress/lv_test_stress.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_alpha.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_chroma.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/flower_icon_alpha.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/lv_tutorial_images.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/red_flower.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/red_rose_16.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts/arial_20.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.c.obj esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.c.obj || esp-idf/lvgl/liblvgl.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/__idf_lv_examples.pdb + TARGET_FILE = esp-idf/lv_examples/liblv_examples.a + TARGET_PDB = esp-idf/lv_examples/liblv_examples.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/lv_examples/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/lv_examples && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/lv_examples/rebuild_cache: phony esp-idf/lv_examples/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/lv_examples/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/lv_examples/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/lv_examples/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/lv_examples && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/lv_examples/install/local: phony esp-idf/lv_examples/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/lv_examples/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/lv_examples/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/lv_examples && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/lv_examples/install: phony esp-idf/lv_examples/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/lvgl_esp32_drivers/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/lvgl_esp32_drivers/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/lvgl_esp32_drivers && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/lvgl_esp32_drivers/install/strip: phony esp-idf/lvgl_esp32_drivers/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/lvgl_esp32_drivers/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/lvgl_esp32_drivers && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/lvgl_esp32_drivers/edit_cache: phony esp-idf/lvgl_esp32_drivers/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_lvgl_esp32_drivers + + +############################################# +# Order-only phony target for __idf_lvgl_esp32_drivers + +build cmake_object_order_depends_target___idf_lvgl_esp32_drivers: phony || cmake_object_order_depends_target___idf_lvgl cmake_object_order_depends_target___idf_xtensa +build esp-idf/lvgl_esp32_drivers/CMakeFiles/__idf_lvgl_esp32_drivers.dir/lvgl_driver.c.obj: C_COMPILER____idf_lvgl_esp32_drivers ../components/lvgl_esp32_drivers/lvgl_driver.c || cmake_object_order_depends_target___idf_lvgl_esp32_drivers + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lvgl_esp32_drivers/CMakeFiles/__idf_lvgl_esp32_drivers.dir/lvgl_driver.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl_esp32_drivers -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lvgl_esp32_drivers/CMakeFiles/__idf_lvgl_esp32_drivers.dir + OBJECT_FILE_DIR = esp-idf/lvgl_esp32_drivers/CMakeFiles/__idf_lvgl_esp32_drivers.dir + TARGET_COMPILE_PDB = esp-idf/lvgl_esp32_drivers/CMakeFiles/__idf_lvgl_esp32_drivers.dir/__idf_lvgl_esp32_drivers.pdb + TARGET_PDB = esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_lvgl_esp32_drivers + + +############################################# +# Link the static library esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a + +build esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a: CXX_STATIC_LIBRARY_LINKER____idf_lvgl_esp32_drivers esp-idf/lvgl_esp32_drivers/CMakeFiles/__idf_lvgl_esp32_drivers.dir/lvgl_driver.c.obj || esp-idf/lvgl/liblvgl.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/lvgl_esp32_drivers/CMakeFiles/__idf_lvgl_esp32_drivers.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/lvgl_esp32_drivers/CMakeFiles/__idf_lvgl_esp32_drivers.dir/__idf_lvgl_esp32_drivers.pdb + TARGET_FILE = esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a + TARGET_PDB = esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/lvgl_esp32_drivers/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/lvgl_esp32_drivers && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/lvgl_esp32_drivers/rebuild_cache: phony esp-idf/lvgl_esp32_drivers/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/lvgl_esp32_drivers/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/lvgl_esp32_drivers/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/lvgl_esp32_drivers/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/lvgl_esp32_drivers && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/lvgl_esp32_drivers/install/local: phony esp-idf/lvgl_esp32_drivers/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/lvgl_esp32_drivers/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/lvgl_esp32_drivers/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/lvgl_esp32_drivers && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/lvgl_esp32_drivers/install: phony esp-idf/lvgl_esp32_drivers/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/lvgl_tft/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/lvgl_tft/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/lvgl_tft && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/lvgl_tft/install/strip: phony esp-idf/lvgl_tft/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/lvgl_tft/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/lvgl_tft && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/lvgl_tft/edit_cache: phony esp-idf/lvgl_tft/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_lvgl_tft + + +############################################# +# Order-only phony target for __idf_lvgl_tft + +build cmake_object_order_depends_target___idf_lvgl_tft: phony || cmake_object_order_depends_target___idf_lvgl cmake_object_order_depends_target___idf_xtensa +build esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/disp_driver.c.obj: C_COMPILER____idf_lvgl_tft ../components/lvgl_esp32_drivers/lvgl_tft/disp_driver.c || cmake_object_order_depends_target___idf_lvgl_tft + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/disp_driver.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl_esp32_drivers/lvgl_tft -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir + OBJECT_FILE_DIR = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir + TARGET_COMPILE_PDB = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/__idf_lvgl_tft.pdb + TARGET_PDB = esp-idf/lvgl_tft/liblvgl_tft.pdb +build esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/disp_spi.c.obj: C_COMPILER____idf_lvgl_tft ../components/lvgl_esp32_drivers/lvgl_tft/disp_spi.c || cmake_object_order_depends_target___idf_lvgl_tft + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/disp_spi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl_esp32_drivers/lvgl_tft -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir + OBJECT_FILE_DIR = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir + TARGET_COMPILE_PDB = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/__idf_lvgl_tft.pdb + TARGET_PDB = esp-idf/lvgl_tft/liblvgl_tft.pdb +build esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/hx8357.c.obj: C_COMPILER____idf_lvgl_tft ../components/lvgl_esp32_drivers/lvgl_tft/hx8357.c || cmake_object_order_depends_target___idf_lvgl_tft + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/hx8357.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl_esp32_drivers/lvgl_tft -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir + OBJECT_FILE_DIR = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir + TARGET_COMPILE_PDB = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/__idf_lvgl_tft.pdb + TARGET_PDB = esp-idf/lvgl_tft/liblvgl_tft.pdb +build esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/ili9341.c.obj: C_COMPILER____idf_lvgl_tft ../components/lvgl_esp32_drivers/lvgl_tft/ili9341.c || cmake_object_order_depends_target___idf_lvgl_tft + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/ili9341.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl_esp32_drivers/lvgl_tft -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir + OBJECT_FILE_DIR = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir + TARGET_COMPILE_PDB = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/__idf_lvgl_tft.pdb + TARGET_PDB = esp-idf/lvgl_tft/liblvgl_tft.pdb +build esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/ili9488.c.obj: C_COMPILER____idf_lvgl_tft ../components/lvgl_esp32_drivers/lvgl_tft/ili9488.c || cmake_object_order_depends_target___idf_lvgl_tft + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/ili9488.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl_esp32_drivers/lvgl_tft -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir + OBJECT_FILE_DIR = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir + TARGET_COMPILE_PDB = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/__idf_lvgl_tft.pdb + TARGET_PDB = esp-idf/lvgl_tft/liblvgl_tft.pdb +build esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/st7789.c.obj: C_COMPILER____idf_lvgl_tft ../components/lvgl_esp32_drivers/lvgl_tft/st7789.c || cmake_object_order_depends_target___idf_lvgl_tft + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/st7789.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl_esp32_drivers/lvgl_tft -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir + OBJECT_FILE_DIR = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir + TARGET_COMPILE_PDB = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/__idf_lvgl_tft.pdb + TARGET_PDB = esp-idf/lvgl_tft/liblvgl_tft.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_lvgl_tft + + +############################################# +# Link the static library esp-idf/lvgl_tft/liblvgl_tft.a + +build esp-idf/lvgl_tft/liblvgl_tft.a: CXX_STATIC_LIBRARY_LINKER____idf_lvgl_tft esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/disp_driver.c.obj esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/disp_spi.c.obj esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/hx8357.c.obj esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/ili9341.c.obj esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/ili9488.c.obj esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/st7789.c.obj || esp-idf/lvgl/liblvgl.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/__idf_lvgl_tft.pdb + TARGET_FILE = esp-idf/lvgl_tft/liblvgl_tft.a + TARGET_PDB = esp-idf/lvgl_tft/liblvgl_tft.pdb + +############################################# +# Utility command for rebuild_cache + +build esp-idf/lvgl_tft/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/lvgl_tft && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/lvgl_tft/rebuild_cache: phony esp-idf/lvgl_tft/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/lvgl_tft/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/lvgl_tft/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/lvgl_tft/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/lvgl_tft && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/lvgl_tft/install/local: phony esp-idf/lvgl_tft/CMakeFiles/install/local.util + +############################################# +# Utility command for install + +build esp-idf/lvgl_tft/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/lvgl_tft/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/lvgl_tft && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/lvgl_tft/install: phony esp-idf/lvgl_tft/CMakeFiles/install.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# /home/mithras/esp/esp-idf/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for install/strip + +build esp-idf/lvgl_touch/CMakeFiles/install/strip.util: CUSTOM_COMMAND esp-idf/lvgl_touch/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/lvgl_touch && /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake + DESC = Installing the project stripped... + pool = console + restat = 1 +build esp-idf/lvgl_touch/install/strip: phony esp-idf/lvgl_touch/CMakeFiles/install/strip.util + +############################################# +# Utility command for edit_cache + +build esp-idf/lvgl_touch/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/lvgl_touch && /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. + DESC = No interactive CMake dialog available... + restat = 1 +build esp-idf/lvgl_touch/edit_cache: phony esp-idf/lvgl_touch/CMakeFiles/edit_cache.util +# ============================================================================= +# Object build statements for STATIC_LIBRARY target __idf_lvgl_touch + + +############################################# +# Order-only phony target for __idf_lvgl_touch + +build cmake_object_order_depends_target___idf_lvgl_touch: phony || cmake_object_order_depends_target___idf_lvgl cmake_object_order_depends_target___idf_xtensa +build esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/ft6x36.c.obj: C_COMPILER____idf_lvgl_touch ../components/lvgl_esp32_drivers/lvgl_touch/ft6x36.c || cmake_object_order_depends_target___idf_lvgl_touch + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/ft6x36.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl_esp32_drivers/lvgl_touch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir + OBJECT_FILE_DIR = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir + TARGET_COMPILE_PDB = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/__idf_lvgl_touch.pdb + TARGET_PDB = esp-idf/lvgl_touch/liblvgl_touch.pdb +build esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/stmpe610.c.obj: C_COMPILER____idf_lvgl_touch ../components/lvgl_esp32_drivers/lvgl_touch/stmpe610.c || cmake_object_order_depends_target___idf_lvgl_touch + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/stmpe610.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl_esp32_drivers/lvgl_touch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir + OBJECT_FILE_DIR = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir + TARGET_COMPILE_PDB = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/__idf_lvgl_touch.pdb + TARGET_PDB = esp-idf/lvgl_touch/liblvgl_touch.pdb +build esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/touch_driver.c.obj: C_COMPILER____idf_lvgl_touch ../components/lvgl_esp32_drivers/lvgl_touch/touch_driver.c || cmake_object_order_depends_target___idf_lvgl_touch + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/touch_driver.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl_esp32_drivers/lvgl_touch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir + OBJECT_FILE_DIR = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir + TARGET_COMPILE_PDB = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/__idf_lvgl_touch.pdb + TARGET_PDB = esp-idf/lvgl_touch/liblvgl_touch.pdb +build esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/tp_i2c.c.obj: C_COMPILER____idf_lvgl_touch ../components/lvgl_esp32_drivers/lvgl_touch/tp_i2c.c || cmake_object_order_depends_target___idf_lvgl_touch + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/tp_i2c.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl_esp32_drivers/lvgl_touch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir + OBJECT_FILE_DIR = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir + TARGET_COMPILE_PDB = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/__idf_lvgl_touch.pdb + TARGET_PDB = esp-idf/lvgl_touch/liblvgl_touch.pdb +build esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/tp_spi.c.obj: C_COMPILER____idf_lvgl_touch ../components/lvgl_esp32_drivers/lvgl_touch/tp_spi.c || cmake_object_order_depends_target___idf_lvgl_touch + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/tp_spi.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl_esp32_drivers/lvgl_touch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir + OBJECT_FILE_DIR = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir + TARGET_COMPILE_PDB = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/__idf_lvgl_touch.pdb + TARGET_PDB = esp-idf/lvgl_touch/liblvgl_touch.pdb +build esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/xpt2046.c.obj: C_COMPILER____idf_lvgl_touch ../components/lvgl_esp32_drivers/lvgl_touch/xpt2046.c || cmake_object_order_depends_target___idf_lvgl_touch + DEFINES = -DLV_CONF_INCLUDE_SIMPLE=1 + DEP_FILE = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/xpt2046.c.obj.d + FLAGS = -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\"v4.2-dev-414-g132cc67c0-dirty\" -DESP_PLATFORM + INCLUDES = -Iconfig -I../components/lvgl_esp32_drivers/lvgl_touch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl + OBJECT_DIR = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir + OBJECT_FILE_DIR = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir + TARGET_COMPILE_PDB = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/__idf_lvgl_touch.pdb + TARGET_PDB = esp-idf/lvgl_touch/liblvgl_touch.pdb + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target __idf_lvgl_touch + + +############################################# +# Link the static library esp-idf/lvgl_touch/liblvgl_touch.a + +build esp-idf/lvgl_touch/liblvgl_touch.a: CXX_STATIC_LIBRARY_LINKER____idf_lvgl_touch esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/ft6x36.c.obj esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/stmpe610.c.obj esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/touch_driver.c.obj esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/tp_i2c.c.obj esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/tp_spi.c.obj esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/xpt2046.c.obj || esp-idf/lvgl/liblvgl.a esp-idf/xtensa/libxtensa.a + LANGUAGE_COMPILE_FLAGS = -mlongcalls -Wno-frame-address + OBJECT_DIR = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir + POST_BUILD = : + PRE_LINK = : + TARGET_COMPILE_PDB = esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/__idf_lvgl_touch.pdb + TARGET_FILE = esp-idf/lvgl_touch/liblvgl_touch.a + TARGET_PDB = esp-idf/lvgl_touch/liblvgl_touch.pdb + +############################################# +# Utility command for install + +build esp-idf/lvgl_touch/CMakeFiles/install.util: CUSTOM_COMMAND esp-idf/lvgl_touch/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/lvgl_touch && /usr/bin/cmake -P cmake_install.cmake + DESC = Install the project... + pool = console + restat = 1 +build esp-idf/lvgl_touch/install: phony esp-idf/lvgl_touch/CMakeFiles/install.util + +############################################# +# Utility command for rebuild_cache + +build esp-idf/lvgl_touch/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/lvgl_touch && /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 +build esp-idf/lvgl_touch/rebuild_cache: phony esp-idf/lvgl_touch/CMakeFiles/rebuild_cache.util + +############################################# +# Utility command for list_install_components + +build esp-idf/lvgl_touch/list_install_components: phony + +############################################# +# Utility command for install/local + +build esp-idf/lvgl_touch/CMakeFiles/install/local.util: CUSTOM_COMMAND esp-idf/lvgl_touch/all + COMMAND = cd /home/mithras/Documents/bakalarka/build/esp-idf/lvgl_touch && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + DESC = Installing only the local directory... + pool = console + restat = 1 +build esp-idf/lvgl_touch/install/local: phony esp-idf/lvgl_touch/CMakeFiles/install/local.util +# ============================================================================= +# Target aliases. + +build __idf_app_trace: phony esp-idf/app_trace/libapp_trace.a +build __idf_app_update: phony esp-idf/app_update/libapp_update.a +build __idf_asio: phony esp-idf/asio/libasio.a +build __idf_bootloader_support: phony esp-idf/bootloader_support/libbootloader_support.a +build __idf_ca: phony esp-idf/ca/libca.a +build __idf_cbor: phony esp-idf/cbor/libcbor.a +build __idf_cmd_nvs: phony esp-idf/cmd_nvs/libcmd_nvs.a +build __idf_cmd_system: phony esp-idf/cmd_system/libcmd_system.a +build __idf_coap: phony esp-idf/coap/libcoap.a +build __idf_console: phony esp-idf/console/libconsole.a +build __idf_cxx: phony esp-idf/cxx/libcxx.a +build __idf_driver: phony esp-idf/driver/libdriver.a +build __idf_efuse: phony esp-idf/efuse/libefuse.a +build __idf_esp-tls: phony esp-idf/esp-tls/libesp-tls.a +build __idf_esp32: phony esp-idf/esp32/libesp32.a +build __idf_esp_adc_cal: phony esp-idf/esp_adc_cal/libesp_adc_cal.a +build __idf_esp_common: phony esp-idf/esp_common/libesp_common.a +build __idf_esp_eth: phony esp-idf/esp_eth/libesp_eth.a +build __idf_esp_event: phony esp-idf/esp_event/libesp_event.a +build __idf_esp_gdbstub: phony esp-idf/esp_gdbstub/libesp_gdbstub.a +build __idf_esp_http_client: phony esp-idf/esp_http_client/libesp_http_client.a +build __idf_esp_http_server: phony esp-idf/esp_http_server/libesp_http_server.a +build __idf_esp_https_ota: phony esp-idf/esp_https_ota/libesp_https_ota.a +build __idf_esp_https_server: phony esp-idf/esp_https_server/libesp_https_server.a +build __idf_esp_local_ctrl: phony esp-idf/esp_local_ctrl/libesp_local_ctrl.a +build __idf_esp_netif: phony esp-idf/esp_netif/libesp_netif.a +build __idf_esp_ringbuf: phony esp-idf/esp_ringbuf/libesp_ringbuf.a +build __idf_esp_serial_slave_link: phony esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a +build __idf_esp_timer: phony esp-idf/esp_timer/libesp_timer.a +build __idf_esp_websocket_client: phony esp-idf/esp_websocket_client/libesp_websocket_client.a +build __idf_esp_wifi: phony esp-idf/esp_wifi/libesp_wifi.a +build __idf_espcoredump: phony esp-idf/espcoredump/libespcoredump.a +build __idf_expat: phony esp-idf/expat/libexpat.a +build __idf_fatfs: phony esp-idf/fatfs/libfatfs.a +build __idf_files: phony esp-idf/files/libfiles.a +build __idf_freemodbus: phony esp-idf/freemodbus/libfreemodbus.a +build __idf_freertos: phony esp-idf/freertos/libfreertos.a +build __idf_heap: phony esp-idf/heap/libheap.a +build __idf_https_server: phony esp-idf/https_server/libhttps_server.a +build __idf_jsmn: phony esp-idf/jsmn/libjsmn.a +build __idf_json: phony esp-idf/json/libjson.a +build __idf_libsodium: phony esp-idf/libsodium/liblibsodium.a +build __idf_log: phony esp-idf/log/liblog.a +build __idf_lv_examples: phony esp-idf/lv_examples/liblv_examples.a +build __idf_lvgl: phony esp-idf/lvgl/liblvgl.a +build __idf_lvgl_esp32_drivers: phony esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a +build __idf_lvgl_tft: phony esp-idf/lvgl_tft/liblvgl_tft.a +build __idf_lvgl_touch: phony esp-idf/lvgl_touch/liblvgl_touch.a +build __idf_lwip: phony esp-idf/lwip/liblwip.a +build __idf_main: phony esp-idf/main/libmain.a +build __idf_mdns: phony esp-idf/mdns/libmdns.a +build __idf_mqtt: phony esp-idf/mqtt/libmqtt.a +build __idf_newlib: phony esp-idf/newlib/libnewlib.a +build __idf_nghttp: phony esp-idf/nghttp/libnghttp.a +build __idf_nvs_flash: phony esp-idf/nvs_flash/libnvs_flash.a +build __idf_openssl: phony esp-idf/openssl/libopenssl.a +build __idf_perfmon: phony esp-idf/perfmon/libperfmon.a +build __idf_protobuf-c: phony esp-idf/protobuf-c/libprotobuf-c.a +build __idf_protocomm: phony esp-idf/protocomm/libprotocomm.a +build __idf_pthread: phony esp-idf/pthread/libpthread.a +build __idf_sdmmc: phony esp-idf/sdmmc/libsdmmc.a +build __idf_soc: phony esp-idf/soc/libsoc.a +build __idf_spi_flash: phony esp-idf/spi_flash/libspi_flash.a +build __idf_spiffs: phony esp-idf/spiffs/libspiffs.a +build __idf_tcp_transport: phony esp-idf/tcp_transport/libtcp_transport.a +build __idf_tcpip_adapter: phony esp-idf/tcpip_adapter/libtcpip_adapter.a +build __idf_ulp: phony esp-idf/ulp/libulp.a +build __idf_unity: phony esp-idf/unity/libunity.a +build __idf_vfs: phony esp-idf/vfs/libvfs.a +build __idf_wear_levelling: phony esp-idf/wear_levelling/libwear_levelling.a +build __idf_wifi: phony esp-idf/wifi/libwifi.a +build __idf_wifi_provisioning: phony esp-idf/wifi_provisioning/libwifi_provisioning.a +build __idf_wpa_supplicant: phony esp-idf/wpa_supplicant/libwpa_supplicant.a +build __idf_xtensa: phony esp-idf/xtensa/libxtensa.a +build __ldgen_output_esp32.project.ld: phony esp-idf/esp32/__ldgen_output_esp32.project.ld +build apidoc: phony esp-idf/mbedtls/mbedtls/apidoc +build app-flash: phony esp-idf/esptool_py/app-flash +build bootloader-flash: phony esp-idf/bootloader/bootloader-flash +build efuse_common_table: phony esp-idf/efuse/efuse_common_table +build efuse_custom_table: phony esp-idf/efuse/efuse_custom_table +build efuse_test_table: phony esp-idf/efuse/efuse_test_table +build esp32_linker_script: phony esp-idf/esp32/esp32_linker_script +build lib: phony esp-idf/mbedtls/mbedtls/library/lib +build libapp_trace.a: phony esp-idf/app_trace/libapp_trace.a +build libapp_update.a: phony esp-idf/app_update/libapp_update.a +build libasio.a: phony esp-idf/asio/libasio.a +build libbootloader_support.a: phony esp-idf/bootloader_support/libbootloader_support.a +build libca.a: phony esp-idf/ca/libca.a +build libcbor.a: phony esp-idf/cbor/libcbor.a +build libcmd_nvs.a: phony esp-idf/cmd_nvs/libcmd_nvs.a +build libcmd_system.a: phony esp-idf/cmd_system/libcmd_system.a +build libcoap.a: phony esp-idf/coap/libcoap.a +build libconsole.a: phony esp-idf/console/libconsole.a +build libcxx.a: phony esp-idf/cxx/libcxx.a +build libdriver.a: phony esp-idf/driver/libdriver.a +build libefuse.a: phony esp-idf/efuse/libefuse.a +build libesp-tls.a: phony esp-idf/esp-tls/libesp-tls.a +build libesp32.a: phony esp-idf/esp32/libesp32.a +build libesp_adc_cal.a: phony esp-idf/esp_adc_cal/libesp_adc_cal.a +build libesp_common.a: phony esp-idf/esp_common/libesp_common.a +build libesp_eth.a: phony esp-idf/esp_eth/libesp_eth.a +build libesp_event.a: phony esp-idf/esp_event/libesp_event.a +build libesp_gdbstub.a: phony esp-idf/esp_gdbstub/libesp_gdbstub.a +build libesp_http_client.a: phony esp-idf/esp_http_client/libesp_http_client.a +build libesp_http_server.a: phony esp-idf/esp_http_server/libesp_http_server.a +build libesp_https_ota.a: phony esp-idf/esp_https_ota/libesp_https_ota.a +build libesp_https_server.a: phony esp-idf/esp_https_server/libesp_https_server.a +build libesp_local_ctrl.a: phony esp-idf/esp_local_ctrl/libesp_local_ctrl.a +build libesp_netif.a: phony esp-idf/esp_netif/libesp_netif.a +build libesp_ringbuf.a: phony esp-idf/esp_ringbuf/libesp_ringbuf.a +build libesp_serial_slave_link.a: phony esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a +build libesp_timer.a: phony esp-idf/esp_timer/libesp_timer.a +build libesp_websocket_client.a: phony esp-idf/esp_websocket_client/libesp_websocket_client.a +build libesp_wifi.a: phony esp-idf/esp_wifi/libesp_wifi.a +build libespcoredump.a: phony esp-idf/espcoredump/libespcoredump.a +build libexpat.a: phony esp-idf/expat/libexpat.a +build libfatfs.a: phony esp-idf/fatfs/libfatfs.a +build libfiles.a: phony esp-idf/files/libfiles.a +build libfreemodbus.a: phony esp-idf/freemodbus/libfreemodbus.a +build libfreertos.a: phony esp-idf/freertos/libfreertos.a +build libheap.a: phony esp-idf/heap/libheap.a +build libhttps_server.a: phony esp-idf/https_server/libhttps_server.a +build libjsmn.a: phony esp-idf/jsmn/libjsmn.a +build libjson.a: phony esp-idf/json/libjson.a +build liblibsodium.a: phony esp-idf/libsodium/liblibsodium.a +build liblog.a: phony esp-idf/log/liblog.a +build liblv_examples.a: phony esp-idf/lv_examples/liblv_examples.a +build liblvgl.a: phony esp-idf/lvgl/liblvgl.a +build liblvgl_esp32_drivers.a: phony esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a +build liblvgl_tft.a: phony esp-idf/lvgl_tft/liblvgl_tft.a +build liblvgl_touch.a: phony esp-idf/lvgl_touch/liblvgl_touch.a +build liblwip.a: phony esp-idf/lwip/liblwip.a +build libmain.a: phony esp-idf/main/libmain.a +build libmbedcrypto.a: phony esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +build libmbedtls.a: phony esp-idf/mbedtls/mbedtls/library/libmbedtls.a +build libmbedx509.a: phony esp-idf/mbedtls/mbedtls/library/libmbedx509.a +build libmdns.a: phony esp-idf/mdns/libmdns.a +build libmqtt.a: phony esp-idf/mqtt/libmqtt.a +build libnewlib.a: phony esp-idf/newlib/libnewlib.a +build libnghttp.a: phony esp-idf/nghttp/libnghttp.a +build libnvs_flash.a: phony esp-idf/nvs_flash/libnvs_flash.a +build libopenssl.a: phony esp-idf/openssl/libopenssl.a +build libperfmon.a: phony esp-idf/perfmon/libperfmon.a +build libprotobuf-c.a: phony esp-idf/protobuf-c/libprotobuf-c.a +build libprotocomm.a: phony esp-idf/protocomm/libprotocomm.a +build libpthread.a: phony esp-idf/pthread/libpthread.a +build libsdmmc.a: phony esp-idf/sdmmc/libsdmmc.a +build libsoc.a: phony esp-idf/soc/libsoc.a +build libsoc_esp32.a: phony esp-idf/soc/soc/esp32/libsoc_esp32.a +build libspi_flash.a: phony esp-idf/spi_flash/libspi_flash.a +build libspiffs.a: phony esp-idf/spiffs/libspiffs.a +build libtcp_transport.a: phony esp-idf/tcp_transport/libtcp_transport.a +build libtcpip_adapter.a: phony esp-idf/tcpip_adapter/libtcpip_adapter.a +build libulp.a: phony esp-idf/ulp/libulp.a +build libunity.a: phony esp-idf/unity/libunity.a +build libvfs.a: phony esp-idf/vfs/libvfs.a +build libwear_levelling.a: phony esp-idf/wear_levelling/libwear_levelling.a +build libwifi.a: phony esp-idf/wifi/libwifi.a +build libwifi_provisioning.a: phony esp-idf/wifi_provisioning/libwifi_provisioning.a +build libwpa_supplicant.a: phony esp-idf/wpa_supplicant/libwpa_supplicant.a +build libxtensa.a: phony esp-idf/xtensa/libxtensa.a +build mbedcrypto: phony esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +build mbedtls: phony esp-idf/mbedtls/mbedtls/library/libmbedtls.a +build mbedx509: phony esp-idf/mbedtls/mbedtls/library/libmbedx509.a +build partition_table: phony esp-idf/partition_table/partition_table +build partition_table-flash: phony esp-idf/partition_table/partition_table-flash +build show_efuse_table: phony esp-idf/efuse/show_efuse_table +build soc_esp32: phony esp-idf/soc/soc/esp32/libsoc_esp32.a +# ============================================================================= +# Folder targets. + +# ============================================================================= +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf + +build esp-idf/all: phony esp-idf/xtensa/all esp-idf/esp_rom/all esp-idf/soc/all esp-idf/esp_eth/all esp-idf/tcpip_adapter/all esp-idf/esp_netif/all esp-idf/esp_event/all esp-idf/mbedtls/all esp-idf/wpa_supplicant/all esp-idf/efuse/all esp-idf/bootloader_support/all esp-idf/partition_table/all esp-idf/app_update/all esp-idf/spi_flash/all esp-idf/nvs_flash/all esp-idf/esp_wifi/all esp-idf/lwip/all esp-idf/log/all esp-idf/heap/all esp-idf/esp_ringbuf/all esp-idf/driver/all esp-idf/pthread/all esp-idf/espcoredump/all esp-idf/perfmon/all esp-idf/esp32/all esp-idf/esp_common/all esp-idf/esp_timer/all esp-idf/freertos/all esp-idf/vfs/all esp-idf/newlib/all esp-idf/cxx/all esp-idf/app_trace/all esp-idf/asio/all esp-idf/bootloader/all esp-idf/bt/all esp-idf/cbor/all esp-idf/coap/all esp-idf/console/all esp-idf/nghttp/all esp-idf/esp-tls/all esp-idf/esp_adc_cal/all esp-idf/esp_gdbstub/all esp-idf/tcp_transport/all esp-idf/esp_http_client/all esp-idf/esp_http_server/all esp-idf/esp_https_ota/all esp-idf/esp_https_server/all esp-idf/protobuf-c/all esp-idf/protocomm/all esp-idf/mdns/all esp-idf/esp_local_ctrl/all esp-idf/sdmmc/all esp-idf/esp_serial_slave_link/all esp-idf/esp_websocket_client/all esp-idf/esptool_py/all esp-idf/expat/all esp-idf/wear_levelling/all esp-idf/fatfs/all esp-idf/freemodbus/all esp-idf/idf_test/all esp-idf/jsmn/all esp-idf/json/all esp-idf/libsodium/all esp-idf/mqtt/all esp-idf/openssl/all esp-idf/spiffs/all esp-idf/ulp/all esp-idf/unity/all esp-idf/wifi_provisioning/all esp-idf/main/all esp-idf/ca/all esp-idf/cmd_nvs/all esp-idf/cmd_system/all esp-idf/files/all esp-idf/wifi/all esp-idf/https_server/all esp-idf/lvgl/all esp-idf/lv_examples/all esp-idf/lvgl_esp32_drivers/all esp-idf/lvgl_tft/all esp-idf/lvgl_touch/all +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/app_trace + +build esp-idf/app_trace/all: phony __idf_app_trace +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/app_update + +build esp-idf/app_update/all: phony __idf_app_update +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/asio + +build esp-idf/asio/all: phony __idf_asio +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/bootloader + +build esp-idf/bootloader/all: phony +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/bootloader_support + +build esp-idf/bootloader_support/all: phony __idf_bootloader_support +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/bt + +build esp-idf/bt/all: phony +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/ca + +build esp-idf/ca/all: phony __idf_ca +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/cbor + +build esp-idf/cbor/all: phony __idf_cbor +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/cmd_nvs + +build esp-idf/cmd_nvs/all: phony __idf_cmd_nvs +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/cmd_system + +build esp-idf/cmd_system/all: phony __idf_cmd_system +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/coap + +build esp-idf/coap/all: phony __idf_coap +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/console + +build esp-idf/console/all: phony __idf_console +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/cxx + +build esp-idf/cxx/all: phony __idf_cxx +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/driver + +build esp-idf/driver/all: phony __idf_driver +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/efuse + +build esp-idf/efuse/all: phony __idf_efuse +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/esp-tls + +build esp-idf/esp-tls/all: phony __idf_esp-tls +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/esp32 + +build esp-idf/esp32/all: phony __idf_esp32 +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/esp_adc_cal + +build esp-idf/esp_adc_cal/all: phony __idf_esp_adc_cal +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/esp_common + +build esp-idf/esp_common/all: phony __idf_esp_common +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/esp_eth + +build esp-idf/esp_eth/all: phony __idf_esp_eth +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/esp_event + +build esp-idf/esp_event/all: phony __idf_esp_event +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/esp_gdbstub + +build esp-idf/esp_gdbstub/all: phony __idf_esp_gdbstub +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/esp_http_client + +build esp-idf/esp_http_client/all: phony __idf_esp_http_client +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/esp_http_server + +build esp-idf/esp_http_server/all: phony __idf_esp_http_server +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/esp_https_ota + +build esp-idf/esp_https_ota/all: phony __idf_esp_https_ota +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/esp_https_server + +build esp-idf/esp_https_server/all: phony __idf_esp_https_server +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/esp_local_ctrl + +build esp-idf/esp_local_ctrl/all: phony __idf_esp_local_ctrl +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/esp_netif + +build esp-idf/esp_netif/all: phony __idf_esp_netif +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/esp_ringbuf + +build esp-idf/esp_ringbuf/all: phony __idf_esp_ringbuf +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/esp_rom + +build esp-idf/esp_rom/all: phony +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/esp_serial_slave_link + +build esp-idf/esp_serial_slave_link/all: phony __idf_esp_serial_slave_link +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/esp_timer + +build esp-idf/esp_timer/all: phony __idf_esp_timer +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/esp_websocket_client + +build esp-idf/esp_websocket_client/all: phony __idf_esp_websocket_client +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/esp_wifi + +build esp-idf/esp_wifi/all: phony __idf_esp_wifi +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/espcoredump + +build esp-idf/espcoredump/all: phony __idf_espcoredump +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/esptool_py + +build esp-idf/esptool_py/all: phony +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/expat + +build esp-idf/expat/all: phony __idf_expat +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/fatfs + +build esp-idf/fatfs/all: phony __idf_fatfs +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/files + +build esp-idf/files/all: phony __idf_files +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/freemodbus + +build esp-idf/freemodbus/all: phony __idf_freemodbus +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/freertos + +build esp-idf/freertos/all: phony __idf_freertos +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/heap + +build esp-idf/heap/all: phony __idf_heap +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/https_server + +build esp-idf/https_server/all: phony __idf_https_server +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/idf_test + +build esp-idf/idf_test/all: phony +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/jsmn + +build esp-idf/jsmn/all: phony __idf_jsmn +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/json + +build esp-idf/json/all: phony __idf_json +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/libsodium + +build esp-idf/libsodium/all: phony __idf_libsodium +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/log + +build esp-idf/log/all: phony __idf_log +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/lv_examples + +build esp-idf/lv_examples/all: phony __idf_lv_examples +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/lvgl + +build esp-idf/lvgl/all: phony __idf_lvgl +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/lvgl_esp32_drivers + +build esp-idf/lvgl_esp32_drivers/all: phony __idf_lvgl_esp32_drivers +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/lvgl_tft + +build esp-idf/lvgl_tft/all: phony __idf_lvgl_tft +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/lvgl_touch + +build esp-idf/lvgl_touch/all: phony __idf_lvgl_touch +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/lwip + +build esp-idf/lwip/all: phony __idf_lwip +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/main + +build esp-idf/main/all: phony __idf_main +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/mbedtls + +build esp-idf/mbedtls/all: phony esp-idf/mbedtls/mbedtls/all +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls + +build esp-idf/mbedtls/mbedtls/all: phony esp-idf/mbedtls/mbedtls/library/all esp-idf/mbedtls/mbedtls/include/all +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/include + +build esp-idf/mbedtls/mbedtls/include/all: phony +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/library + +build esp-idf/mbedtls/mbedtls/library/all: phony mbedx509 mbedcrypto mbedtls +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/mdns + +build esp-idf/mdns/all: phony __idf_mdns +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/mqtt + +build esp-idf/mqtt/all: phony __idf_mqtt +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/newlib + +build esp-idf/newlib/all: phony __idf_newlib +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/nghttp + +build esp-idf/nghttp/all: phony __idf_nghttp +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/nvs_flash + +build esp-idf/nvs_flash/all: phony __idf_nvs_flash +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/openssl + +build esp-idf/openssl/all: phony __idf_openssl +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/partition_table + +build esp-idf/partition_table/all: phony partition_table +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/perfmon + +build esp-idf/perfmon/all: phony __idf_perfmon +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/protobuf-c + +build esp-idf/protobuf-c/all: phony __idf_protobuf-c +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/protocomm + +build esp-idf/protocomm/all: phony __idf_protocomm +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/pthread + +build esp-idf/pthread/all: phony __idf_pthread +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/sdmmc + +build esp-idf/sdmmc/all: phony __idf_sdmmc +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/soc + +build esp-idf/soc/all: phony __idf_soc esp-idf/soc/src/esp32/all esp-idf/soc/soc/all +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/soc/soc + +build esp-idf/soc/soc/all: phony esp-idf/soc/soc/esp32/all +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/soc/soc/esp32 + +build esp-idf/soc/soc/esp32/all: phony soc_esp32 +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/soc/src/esp32 + +build esp-idf/soc/src/esp32/all: phony +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/spi_flash + +build esp-idf/spi_flash/all: phony __idf_spi_flash +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/spiffs + +build esp-idf/spiffs/all: phony __idf_spiffs +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/tcp_transport + +build esp-idf/tcp_transport/all: phony __idf_tcp_transport +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/tcpip_adapter + +build esp-idf/tcpip_adapter/all: phony __idf_tcpip_adapter +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/ulp + +build esp-idf/ulp/all: phony __idf_ulp +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/unity + +build esp-idf/unity/all: phony __idf_unity +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/vfs + +build esp-idf/vfs/all: phony __idf_vfs +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/wear_levelling + +build esp-idf/wear_levelling/all: phony __idf_wear_levelling +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/wifi + +build esp-idf/wifi/all: phony __idf_wifi +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/wifi_provisioning + +build esp-idf/wifi_provisioning/all: phony __idf_wifi_provisioning +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/wpa_supplicant + +build esp-idf/wpa_supplicant/all: phony __idf_wpa_supplicant +# ============================================================================= + +############################################# +# Folder: /home/mithras/Documents/bakalarka/build/esp-idf/xtensa + +build esp-idf/xtensa/all: phony __idf_xtensa +# ============================================================================= +# Built-in targets + + +############################################# +# The main all target. + +build all: phony bakalarka.elf app bootloader esp-idf/xtensa/libxtensa.a esp-idf/soc/libsoc.a esp-idf/soc/soc/esp32/libsoc_esp32.a esp-idf/esp_eth/libesp_eth.a esp-idf/tcpip_adapter/libtcpip_adapter.a esp-idf/esp_netif/libesp_netif.a esp-idf/esp_event/libesp_event.a esp-idf/mbedtls/mbedtls/library/libmbedx509.a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a esp-idf/mbedtls/mbedtls/library/libmbedtls.a esp-idf/wpa_supplicant/libwpa_supplicant.a esp-idf/efuse/libefuse.a esp-idf/bootloader_support/libbootloader_support.a esp-idf/partition_table/partition_table esp-idf/app_update/libapp_update.a esp-idf/spi_flash/libspi_flash.a esp-idf/nvs_flash/libnvs_flash.a esp-idf/esp_wifi/libesp_wifi.a esp-idf/lwip/liblwip.a esp-idf/log/liblog.a esp-idf/heap/libheap.a esp-idf/esp_ringbuf/libesp_ringbuf.a esp-idf/driver/libdriver.a esp-idf/pthread/libpthread.a esp-idf/espcoredump/libespcoredump.a esp-idf/perfmon/libperfmon.a esp-idf/esp32/libesp32.a esp-idf/esp_common/libesp_common.a esp-idf/esp_timer/libesp_timer.a esp-idf/freertos/libfreertos.a esp-idf/vfs/libvfs.a esp-idf/newlib/libnewlib.a esp-idf/cxx/libcxx.a esp-idf/app_trace/libapp_trace.a esp-idf/asio/libasio.a esp-idf/cbor/libcbor.a esp-idf/coap/libcoap.a esp-idf/console/libconsole.a esp-idf/nghttp/libnghttp.a esp-idf/esp-tls/libesp-tls.a esp-idf/esp_adc_cal/libesp_adc_cal.a esp-idf/esp_gdbstub/libesp_gdbstub.a esp-idf/tcp_transport/libtcp_transport.a esp-idf/esp_http_client/libesp_http_client.a esp-idf/esp_http_server/libesp_http_server.a esp-idf/esp_https_ota/libesp_https_ota.a esp-idf/esp_https_server/libesp_https_server.a esp-idf/protobuf-c/libprotobuf-c.a esp-idf/protocomm/libprotocomm.a esp-idf/mdns/libmdns.a esp-idf/esp_local_ctrl/libesp_local_ctrl.a esp-idf/sdmmc/libsdmmc.a esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a esp-idf/esp_websocket_client/libesp_websocket_client.a esp-idf/expat/libexpat.a esp-idf/wear_levelling/libwear_levelling.a esp-idf/fatfs/libfatfs.a esp-idf/freemodbus/libfreemodbus.a esp-idf/jsmn/libjsmn.a esp-idf/json/libjson.a esp-idf/libsodium/liblibsodium.a esp-idf/mqtt/libmqtt.a esp-idf/openssl/libopenssl.a esp-idf/spiffs/libspiffs.a esp-idf/ulp/libulp.a esp-idf/unity/libunity.a esp-idf/wifi_provisioning/libwifi_provisioning.a esp-idf/main/libmain.a esp-idf/ca/libca.a esp-idf/cmd_nvs/libcmd_nvs.a esp-idf/cmd_system/libcmd_system.a esp-idf/files/libfiles.a esp-idf/wifi/libwifi.a esp-idf/https_server/libhttps_server.a esp-idf/lvgl/liblvgl.a esp-idf/lv_examples/liblv_examples.a esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a esp-idf/lvgl_tft/liblvgl_tft.a esp-idf/lvgl_touch/liblvgl_touch.a + +############################################# +# Make the all target the default. + +default all + +############################################# +# Re-run CMake if any of its inputs changed. + +build build.ninja: RERUN_CMAKE | ../CMakeLists.txt ../components/ca/CMakeLists.txt ../components/cmd_nvs/CMakeLists.txt ../components/cmd_system/CMakeLists.txt ../components/files/CMakeLists.txt ../components/https_server/CMakeLists.txt ../components/lv_examples/CMakeLists.txt ../components/lvgl/CMakeLists.txt ../components/lvgl_esp32_drivers/CMakeLists.txt ../components/lvgl_esp32_drivers/lvgl_tft/CMakeLists.txt ../components/lvgl_esp32_drivers/lvgl_touch/CMakeLists.txt ../components/wifi/CMakeLists.txt ../main/CMakeLists.txt ../partitions_example.csv ../sdkconfig /home/mithras/esp/esp-idf/.git/HEAD /home/mithras/esp/esp-idf/.git/modules/components/asio/asio/HEAD /home/mithras/esp/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD /home/mithras/esp/esp-idf/.git/modules/components/bt/controller/lib/HEAD /home/mithras/esp/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD /home/mithras/esp/esp-idf/.git/modules/components/cbor/tinycbor/HEAD /home/mithras/esp/esp-idf/.git/modules/components/coap/libcoap/HEAD /home/mithras/esp/esp-idf/.git/modules/components/esp_wifi/lib/HEAD /home/mithras/esp/esp-idf/.git/modules/components/esptool_py/esptool/HEAD /home/mithras/esp/esp-idf/.git/modules/components/expat/expat/HEAD /home/mithras/esp/esp-idf/.git/modules/components/json/cJSON/HEAD /home/mithras/esp/esp-idf/.git/modules/components/libsodium/libsodium/HEAD /home/mithras/esp/esp-idf/.git/modules/components/lwip/lwip/HEAD /home/mithras/esp/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD /home/mithras/esp/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD /home/mithras/esp/esp-idf/.git/modules/components/nghttp/nghttp2/HEAD /home/mithras/esp/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD /home/mithras/esp/esp-idf/.git/modules/components/spiffs/spiffs/HEAD /home/mithras/esp/esp-idf/.git/modules/components/unity/unity/HEAD /home/mithras/esp/esp-idf/.git/modules/examples/build_system/cmake/import_lib/main/lib/tinyxml2/HEAD /home/mithras/esp/esp-idf/.git/refs/heads/master /home/mithras/esp/esp-idf/CMakeLists.txt /home/mithras/esp/esp-idf/components/app_trace/CMakeLists.txt /home/mithras/esp/esp-idf/components/app_trace/project_include.cmake /home/mithras/esp/esp-idf/components/app_update/CMakeLists.txt /home/mithras/esp/esp-idf/components/asio/CMakeLists.txt /home/mithras/esp/esp-idf/components/asio/asio/.git /home/mithras/esp/esp-idf/components/bootloader/CMakeLists.txt /home/mithras/esp/esp-idf/components/bootloader/project_include.cmake /home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git /home/mithras/esp/esp-idf/components/bootloader_support/CMakeLists.txt /home/mithras/esp/esp-idf/components/bt/CMakeLists.txt /home/mithras/esp/esp-idf/components/bt/controller/lib/.git /home/mithras/esp/esp-idf/components/bt/host/nimble/nimble/.git /home/mithras/esp/esp-idf/components/cbor/CMakeLists.txt /home/mithras/esp/esp-idf/components/cbor/tinycbor/.git /home/mithras/esp/esp-idf/components/coap/CMakeLists.txt /home/mithras/esp/esp-idf/components/coap/libcoap/.git /home/mithras/esp/esp-idf/components/console/CMakeLists.txt /home/mithras/esp/esp-idf/components/cxx/CMakeLists.txt /home/mithras/esp/esp-idf/components/driver/CMakeLists.txt /home/mithras/esp/esp-idf/components/efuse/CMakeLists.txt /home/mithras/esp/esp-idf/components/efuse/esp32/sources.cmake /home/mithras/esp/esp-idf/components/esp-tls/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp32/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp32/project_include.cmake /home/mithras/esp/esp-idf/components/esp_adc_cal/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_common/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_eth/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_event/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_gdbstub/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_http_client/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_http_server/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_https_ota/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_https_server/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_local_ctrl/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_netif/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_ringbuf/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_rom/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_serial_slave_link/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_timer/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_websocket_client/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_wifi/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_wifi/lib/.git /home/mithras/esp/esp-idf/components/espcoredump/CMakeLists.txt /home/mithras/esp/esp-idf/components/esptool_py/CMakeLists.txt /home/mithras/esp/esp-idf/components/esptool_py/esptool/.git /home/mithras/esp/esp-idf/components/esptool_py/project_include.cmake /home/mithras/esp/esp-idf/components/expat/CMakeLists.txt /home/mithras/esp/esp-idf/components/expat/expat/.git /home/mithras/esp/esp-idf/components/fatfs/CMakeLists.txt /home/mithras/esp/esp-idf/components/freemodbus/CMakeLists.txt /home/mithras/esp/esp-idf/components/freertos/CMakeLists.txt /home/mithras/esp/esp-idf/components/heap/CMakeLists.txt /home/mithras/esp/esp-idf/components/idf_test/CMakeLists.txt /home/mithras/esp/esp-idf/components/jsmn/CMakeLists.txt /home/mithras/esp/esp-idf/components/json/CMakeLists.txt /home/mithras/esp/esp-idf/components/json/cJSON/.git /home/mithras/esp/esp-idf/components/libsodium/CMakeLists.txt /home/mithras/esp/esp-idf/components/libsodium/libsodium/.git /home/mithras/esp/esp-idf/components/log/CMakeLists.txt /home/mithras/esp/esp-idf/components/lwip/CMakeLists.txt /home/mithras/esp/esp-idf/components/lwip/lwip/.git /home/mithras/esp/esp-idf/components/mbedtls/CMakeLists.txt /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/.git /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/CMakeLists.txt /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/CMakeLists.txt /home/mithras/esp/esp-idf/components/mdns/CMakeLists.txt /home/mithras/esp/esp-idf/components/mqtt/CMakeLists.txt /home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/.git /home/mithras/esp/esp-idf/components/newlib/CMakeLists.txt /home/mithras/esp/esp-idf/components/newlib/project_include.cmake /home/mithras/esp/esp-idf/components/nghttp/CMakeLists.txt /home/mithras/esp/esp-idf/components/nghttp/nghttp2/.git /home/mithras/esp/esp-idf/components/nvs_flash/CMakeLists.txt /home/mithras/esp/esp-idf/components/openssl/CMakeLists.txt /home/mithras/esp/esp-idf/components/partition_table/CMakeLists.txt /home/mithras/esp/esp-idf/components/partition_table/project_include.cmake /home/mithras/esp/esp-idf/components/perfmon/CMakeLists.txt /home/mithras/esp/esp-idf/components/protobuf-c/CMakeLists.txt /home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c/.git /home/mithras/esp/esp-idf/components/protocomm/CMakeLists.txt /home/mithras/esp/esp-idf/components/pthread/CMakeLists.txt /home/mithras/esp/esp-idf/components/sdmmc/CMakeLists.txt /home/mithras/esp/esp-idf/components/soc/CMakeLists.txt /home/mithras/esp/esp-idf/components/soc/soc/CMakeLists.txt /home/mithras/esp/esp-idf/components/soc/soc/esp32/CMakeLists.txt /home/mithras/esp/esp-idf/components/soc/src/esp32/CMakeLists.txt /home/mithras/esp/esp-idf/components/spi_flash/CMakeLists.txt /home/mithras/esp/esp-idf/components/spiffs/CMakeLists.txt /home/mithras/esp/esp-idf/components/spiffs/project_include.cmake /home/mithras/esp/esp-idf/components/spiffs/spiffs/.git /home/mithras/esp/esp-idf/components/tcp_transport/CMakeLists.txt /home/mithras/esp/esp-idf/components/tcpip_adapter/CMakeLists.txt /home/mithras/esp/esp-idf/components/ulp/CMakeLists.txt /home/mithras/esp/esp-idf/components/ulp/project_include.cmake /home/mithras/esp/esp-idf/components/unity/CMakeLists.txt /home/mithras/esp/esp-idf/components/unity/unity/.git /home/mithras/esp/esp-idf/components/vfs/CMakeLists.txt /home/mithras/esp/esp-idf/components/wear_levelling/CMakeLists.txt /home/mithras/esp/esp-idf/components/wifi_provisioning/CMakeLists.txt /home/mithras/esp/esp-idf/components/wpa_supplicant/CMakeLists.txt /home/mithras/esp/esp-idf/components/xtensa/CMakeLists.txt /home/mithras/esp/esp-idf/examples/build_system/cmake/import_lib/main/lib/tinyxml2/.git /home/mithras/esp/esp-idf/tools/cmake/build.cmake /home/mithras/esp/esp-idf/tools/cmake/component.cmake /home/mithras/esp/esp-idf/tools/cmake/crosstool_version_check.cmake /home/mithras/esp/esp-idf/tools/cmake/git_submodules.cmake /home/mithras/esp/esp-idf/tools/cmake/idf.cmake /home/mithras/esp/esp-idf/tools/cmake/kconfig.cmake /home/mithras/esp/esp-idf/tools/cmake/ldgen.cmake /home/mithras/esp/esp-idf/tools/cmake/project.cmake /home/mithras/esp/esp-idf/tools/cmake/project_description.json.in /home/mithras/esp/esp-idf/tools/cmake/targets.cmake /home/mithras/esp/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake /home/mithras/esp/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in /home/mithras/esp/esp-idf/tools/cmake/toolchain-esp32.cmake /home/mithras/esp/esp-idf/tools/cmake/utilities.cmake /home/mithras/esp/esp-idf/tools/cmake/version.cmake /home/mithras/esp/esp-idf/tools/kconfig_new/confgen.py /home/mithras/esp/esp-idf/tools/kconfig_new/config.env.in /home/mithras/esp/esp-idf/tools/kconfig_new/kconfiglib.py /usr/share/cmake-3.10/Modules/CMakeASMCompiler.cmake.in /usr/share/cmake-3.10/Modules/CMakeASMInformation.cmake /usr/share/cmake-3.10/Modules/CMakeCCompiler.cmake.in /usr/share/cmake-3.10/Modules/CMakeCCompilerABI.c /usr/share/cmake-3.10/Modules/CMakeCInformation.cmake /usr/share/cmake-3.10/Modules/CMakeCXXCompiler.cmake.in /usr/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp /usr/share/cmake-3.10/Modules/CMakeCXXInformation.cmake /usr/share/cmake-3.10/Modules/CMakeCommonLanguageInclude.cmake /usr/share/cmake-3.10/Modules/CMakeCompilerIdDetection.cmake /usr/share/cmake-3.10/Modules/CMakeDetermineASMCompiler.cmake /usr/share/cmake-3.10/Modules/CMakeDetermineCCompiler.cmake /usr/share/cmake-3.10/Modules/CMakeDetermineCXXCompiler.cmake /usr/share/cmake-3.10/Modules/CMakeDetermineCompileFeatures.cmake /usr/share/cmake-3.10/Modules/CMakeDetermineCompiler.cmake /usr/share/cmake-3.10/Modules/CMakeDetermineCompilerABI.cmake /usr/share/cmake-3.10/Modules/CMakeDetermineCompilerId.cmake /usr/share/cmake-3.10/Modules/CMakeDetermineSystem.cmake /usr/share/cmake-3.10/Modules/CMakeFindBinUtils.cmake /usr/share/cmake-3.10/Modules/CMakeGenericSystem.cmake /usr/share/cmake-3.10/Modules/CMakeLanguageInformation.cmake /usr/share/cmake-3.10/Modules/CMakeNinjaFindMake.cmake /usr/share/cmake-3.10/Modules/CMakeParseImplicitLinkInfo.cmake /usr/share/cmake-3.10/Modules/CMakeSystem.cmake.in /usr/share/cmake-3.10/Modules/CMakeSystemSpecificInformation.cmake /usr/share/cmake-3.10/Modules/CMakeSystemSpecificInitialize.cmake /usr/share/cmake-3.10/Modules/CMakeTestASMCompiler.cmake /usr/share/cmake-3.10/Modules/CMakeTestCCompiler.cmake /usr/share/cmake-3.10/Modules/CMakeTestCXXCompiler.cmake /usr/share/cmake-3.10/Modules/CMakeTestCompilerCommon.cmake /usr/share/cmake-3.10/Modules/Compiler/ADSP-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/ARMCC-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/AppleClang-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Borland-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/CMakeCommonCompilerMacros.cmake /usr/share/cmake-3.10/Modules/Compiler/Clang-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /usr/share/cmake-3.10/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Cray-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/GHS-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-ASM.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-C-FeatureTests.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-C.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-CXX-FeatureTests.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-CXX.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-FindBinUtils.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU.cmake /usr/share/cmake-3.10/Modules/Compiler/HP-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/IAR-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /usr/share/cmake-3.10/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /usr/share/cmake-3.10/Modules/Compiler/Intel-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/MIPSpro-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/MSVC-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/PGI-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/PathScale-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/SCO-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/TI-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Watcom-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/XL-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/zOS-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/ExternalProject.cmake /usr/share/cmake-3.10/Modules/FindCygwin.cmake /usr/share/cmake-3.10/Modules/FindGit.cmake /usr/share/cmake-3.10/Modules/FindPackageHandleStandardArgs.cmake /usr/share/cmake-3.10/Modules/FindPackageMessage.cmake /usr/share/cmake-3.10/Modules/FindPerl.cmake /usr/share/cmake-3.10/Modules/FindPythonInterp.cmake /usr/share/cmake-3.10/Modules/Internal/FeatureTesting.cmake /usr/share/cmake-3.10/Modules/Platform/Generic.cmake CMakeCache.txt CMakeFiles/3.10.2/CMakeASMCompiler.cmake CMakeFiles/3.10.2/CMakeCCompiler.cmake CMakeFiles/3.10.2/CMakeCXXCompiler.cmake CMakeFiles/3.10.2/CMakeSystem.cmake CMakeFiles/feature_tests.c CMakeFiles/feature_tests.cxx CMakeFiles/git-data/grabRef.cmake app-flash_args bootloader-flash_args bootloader-prefix/tmp/bootloader-cfgcmd.txt.in config/sdkconfig.cmake config/sdkconfig.h esp-idf/bootloader/bootloader-flash_args.in esp-idf/esptool_py/app-flash_args.in esp-idf/esptool_py/flasher_args.json.in esp-idf/partition_table/partition_table-flash_args.in flash_args flash_args.in ldgen_libraries.in + pool = console + +############################################# +# A missing CMake input file is not an error. + +build ../CMakeLists.txt ../components/ca/CMakeLists.txt ../components/cmd_nvs/CMakeLists.txt ../components/cmd_system/CMakeLists.txt ../components/files/CMakeLists.txt ../components/https_server/CMakeLists.txt ../components/lv_examples/CMakeLists.txt ../components/lvgl/CMakeLists.txt ../components/lvgl_esp32_drivers/CMakeLists.txt ../components/lvgl_esp32_drivers/lvgl_tft/CMakeLists.txt ../components/lvgl_esp32_drivers/lvgl_touch/CMakeLists.txt ../components/wifi/CMakeLists.txt ../main/CMakeLists.txt ../partitions_example.csv ../sdkconfig /home/mithras/esp/esp-idf/.git/HEAD /home/mithras/esp/esp-idf/.git/modules/components/asio/asio/HEAD /home/mithras/esp/esp-idf/.git/modules/components/bootloader/subproject/components/micro-ecc/micro-ecc/HEAD /home/mithras/esp/esp-idf/.git/modules/components/bt/controller/lib/HEAD /home/mithras/esp/esp-idf/.git/modules/components/bt/host/nimble/nimble/HEAD /home/mithras/esp/esp-idf/.git/modules/components/cbor/tinycbor/HEAD /home/mithras/esp/esp-idf/.git/modules/components/coap/libcoap/HEAD /home/mithras/esp/esp-idf/.git/modules/components/esp_wifi/lib/HEAD /home/mithras/esp/esp-idf/.git/modules/components/esptool_py/esptool/HEAD /home/mithras/esp/esp-idf/.git/modules/components/expat/expat/HEAD /home/mithras/esp/esp-idf/.git/modules/components/json/cJSON/HEAD /home/mithras/esp/esp-idf/.git/modules/components/libsodium/libsodium/HEAD /home/mithras/esp/esp-idf/.git/modules/components/lwip/lwip/HEAD /home/mithras/esp/esp-idf/.git/modules/components/mbedtls/mbedtls/HEAD /home/mithras/esp/esp-idf/.git/modules/components/mqtt/esp-mqtt/HEAD /home/mithras/esp/esp-idf/.git/modules/components/nghttp/nghttp2/HEAD /home/mithras/esp/esp-idf/.git/modules/components/protobuf-c/protobuf-c/HEAD /home/mithras/esp/esp-idf/.git/modules/components/spiffs/spiffs/HEAD /home/mithras/esp/esp-idf/.git/modules/components/unity/unity/HEAD /home/mithras/esp/esp-idf/.git/modules/examples/build_system/cmake/import_lib/main/lib/tinyxml2/HEAD /home/mithras/esp/esp-idf/.git/refs/heads/master /home/mithras/esp/esp-idf/CMakeLists.txt /home/mithras/esp/esp-idf/components/app_trace/CMakeLists.txt /home/mithras/esp/esp-idf/components/app_trace/project_include.cmake /home/mithras/esp/esp-idf/components/app_update/CMakeLists.txt /home/mithras/esp/esp-idf/components/asio/CMakeLists.txt /home/mithras/esp/esp-idf/components/asio/asio/.git /home/mithras/esp/esp-idf/components/bootloader/CMakeLists.txt /home/mithras/esp/esp-idf/components/bootloader/project_include.cmake /home/mithras/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc/.git /home/mithras/esp/esp-idf/components/bootloader_support/CMakeLists.txt /home/mithras/esp/esp-idf/components/bt/CMakeLists.txt /home/mithras/esp/esp-idf/components/bt/controller/lib/.git /home/mithras/esp/esp-idf/components/bt/host/nimble/nimble/.git /home/mithras/esp/esp-idf/components/cbor/CMakeLists.txt /home/mithras/esp/esp-idf/components/cbor/tinycbor/.git /home/mithras/esp/esp-idf/components/coap/CMakeLists.txt /home/mithras/esp/esp-idf/components/coap/libcoap/.git /home/mithras/esp/esp-idf/components/console/CMakeLists.txt /home/mithras/esp/esp-idf/components/cxx/CMakeLists.txt /home/mithras/esp/esp-idf/components/driver/CMakeLists.txt /home/mithras/esp/esp-idf/components/efuse/CMakeLists.txt /home/mithras/esp/esp-idf/components/efuse/esp32/sources.cmake /home/mithras/esp/esp-idf/components/esp-tls/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp32/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp32/project_include.cmake /home/mithras/esp/esp-idf/components/esp_adc_cal/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_common/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_eth/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_event/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_gdbstub/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_http_client/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_http_server/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_https_ota/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_https_server/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_local_ctrl/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_netif/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_ringbuf/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_rom/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_serial_slave_link/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_timer/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_websocket_client/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_wifi/CMakeLists.txt /home/mithras/esp/esp-idf/components/esp_wifi/lib/.git /home/mithras/esp/esp-idf/components/espcoredump/CMakeLists.txt /home/mithras/esp/esp-idf/components/esptool_py/CMakeLists.txt /home/mithras/esp/esp-idf/components/esptool_py/esptool/.git /home/mithras/esp/esp-idf/components/esptool_py/project_include.cmake /home/mithras/esp/esp-idf/components/expat/CMakeLists.txt /home/mithras/esp/esp-idf/components/expat/expat/.git /home/mithras/esp/esp-idf/components/fatfs/CMakeLists.txt /home/mithras/esp/esp-idf/components/freemodbus/CMakeLists.txt /home/mithras/esp/esp-idf/components/freertos/CMakeLists.txt /home/mithras/esp/esp-idf/components/heap/CMakeLists.txt /home/mithras/esp/esp-idf/components/idf_test/CMakeLists.txt /home/mithras/esp/esp-idf/components/jsmn/CMakeLists.txt /home/mithras/esp/esp-idf/components/json/CMakeLists.txt /home/mithras/esp/esp-idf/components/json/cJSON/.git /home/mithras/esp/esp-idf/components/libsodium/CMakeLists.txt /home/mithras/esp/esp-idf/components/libsodium/libsodium/.git /home/mithras/esp/esp-idf/components/log/CMakeLists.txt /home/mithras/esp/esp-idf/components/lwip/CMakeLists.txt /home/mithras/esp/esp-idf/components/lwip/lwip/.git /home/mithras/esp/esp-idf/components/mbedtls/CMakeLists.txt /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/.git /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/CMakeLists.txt /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/CMakeLists.txt /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/CMakeLists.txt /home/mithras/esp/esp-idf/components/mdns/CMakeLists.txt /home/mithras/esp/esp-idf/components/mqtt/CMakeLists.txt /home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/.git /home/mithras/esp/esp-idf/components/newlib/CMakeLists.txt /home/mithras/esp/esp-idf/components/newlib/project_include.cmake /home/mithras/esp/esp-idf/components/nghttp/CMakeLists.txt /home/mithras/esp/esp-idf/components/nghttp/nghttp2/.git /home/mithras/esp/esp-idf/components/nvs_flash/CMakeLists.txt /home/mithras/esp/esp-idf/components/openssl/CMakeLists.txt /home/mithras/esp/esp-idf/components/partition_table/CMakeLists.txt /home/mithras/esp/esp-idf/components/partition_table/project_include.cmake /home/mithras/esp/esp-idf/components/perfmon/CMakeLists.txt /home/mithras/esp/esp-idf/components/protobuf-c/CMakeLists.txt /home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c/.git /home/mithras/esp/esp-idf/components/protocomm/CMakeLists.txt /home/mithras/esp/esp-idf/components/pthread/CMakeLists.txt /home/mithras/esp/esp-idf/components/sdmmc/CMakeLists.txt /home/mithras/esp/esp-idf/components/soc/CMakeLists.txt /home/mithras/esp/esp-idf/components/soc/soc/CMakeLists.txt /home/mithras/esp/esp-idf/components/soc/soc/esp32/CMakeLists.txt /home/mithras/esp/esp-idf/components/soc/src/esp32/CMakeLists.txt /home/mithras/esp/esp-idf/components/spi_flash/CMakeLists.txt /home/mithras/esp/esp-idf/components/spiffs/CMakeLists.txt /home/mithras/esp/esp-idf/components/spiffs/project_include.cmake /home/mithras/esp/esp-idf/components/spiffs/spiffs/.git /home/mithras/esp/esp-idf/components/tcp_transport/CMakeLists.txt /home/mithras/esp/esp-idf/components/tcpip_adapter/CMakeLists.txt /home/mithras/esp/esp-idf/components/ulp/CMakeLists.txt /home/mithras/esp/esp-idf/components/ulp/project_include.cmake /home/mithras/esp/esp-idf/components/unity/CMakeLists.txt /home/mithras/esp/esp-idf/components/unity/unity/.git /home/mithras/esp/esp-idf/components/vfs/CMakeLists.txt /home/mithras/esp/esp-idf/components/wear_levelling/CMakeLists.txt /home/mithras/esp/esp-idf/components/wifi_provisioning/CMakeLists.txt /home/mithras/esp/esp-idf/components/wpa_supplicant/CMakeLists.txt /home/mithras/esp/esp-idf/components/xtensa/CMakeLists.txt /home/mithras/esp/esp-idf/examples/build_system/cmake/import_lib/main/lib/tinyxml2/.git /home/mithras/esp/esp-idf/tools/cmake/build.cmake /home/mithras/esp/esp-idf/tools/cmake/component.cmake /home/mithras/esp/esp-idf/tools/cmake/crosstool_version_check.cmake /home/mithras/esp/esp-idf/tools/cmake/git_submodules.cmake /home/mithras/esp/esp-idf/tools/cmake/idf.cmake /home/mithras/esp/esp-idf/tools/cmake/kconfig.cmake /home/mithras/esp/esp-idf/tools/cmake/ldgen.cmake /home/mithras/esp/esp-idf/tools/cmake/project.cmake /home/mithras/esp/esp-idf/tools/cmake/project_description.json.in /home/mithras/esp/esp-idf/tools/cmake/targets.cmake /home/mithras/esp/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake /home/mithras/esp/esp-idf/tools/cmake/third_party/GetGitRevisionDescription.cmake.in /home/mithras/esp/esp-idf/tools/cmake/toolchain-esp32.cmake /home/mithras/esp/esp-idf/tools/cmake/utilities.cmake /home/mithras/esp/esp-idf/tools/cmake/version.cmake /home/mithras/esp/esp-idf/tools/kconfig_new/confgen.py /home/mithras/esp/esp-idf/tools/kconfig_new/config.env.in /home/mithras/esp/esp-idf/tools/kconfig_new/kconfiglib.py /usr/share/cmake-3.10/Modules/CMakeASMCompiler.cmake.in /usr/share/cmake-3.10/Modules/CMakeASMInformation.cmake /usr/share/cmake-3.10/Modules/CMakeCCompiler.cmake.in /usr/share/cmake-3.10/Modules/CMakeCCompilerABI.c /usr/share/cmake-3.10/Modules/CMakeCInformation.cmake /usr/share/cmake-3.10/Modules/CMakeCXXCompiler.cmake.in /usr/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp /usr/share/cmake-3.10/Modules/CMakeCXXInformation.cmake /usr/share/cmake-3.10/Modules/CMakeCommonLanguageInclude.cmake /usr/share/cmake-3.10/Modules/CMakeCompilerIdDetection.cmake /usr/share/cmake-3.10/Modules/CMakeDetermineASMCompiler.cmake /usr/share/cmake-3.10/Modules/CMakeDetermineCCompiler.cmake /usr/share/cmake-3.10/Modules/CMakeDetermineCXXCompiler.cmake /usr/share/cmake-3.10/Modules/CMakeDetermineCompileFeatures.cmake /usr/share/cmake-3.10/Modules/CMakeDetermineCompiler.cmake /usr/share/cmake-3.10/Modules/CMakeDetermineCompilerABI.cmake /usr/share/cmake-3.10/Modules/CMakeDetermineCompilerId.cmake /usr/share/cmake-3.10/Modules/CMakeDetermineSystem.cmake /usr/share/cmake-3.10/Modules/CMakeFindBinUtils.cmake /usr/share/cmake-3.10/Modules/CMakeGenericSystem.cmake /usr/share/cmake-3.10/Modules/CMakeLanguageInformation.cmake /usr/share/cmake-3.10/Modules/CMakeNinjaFindMake.cmake /usr/share/cmake-3.10/Modules/CMakeParseImplicitLinkInfo.cmake /usr/share/cmake-3.10/Modules/CMakeSystem.cmake.in /usr/share/cmake-3.10/Modules/CMakeSystemSpecificInformation.cmake /usr/share/cmake-3.10/Modules/CMakeSystemSpecificInitialize.cmake /usr/share/cmake-3.10/Modules/CMakeTestASMCompiler.cmake /usr/share/cmake-3.10/Modules/CMakeTestCCompiler.cmake /usr/share/cmake-3.10/Modules/CMakeTestCXXCompiler.cmake /usr/share/cmake-3.10/Modules/CMakeTestCompilerCommon.cmake /usr/share/cmake-3.10/Modules/Compiler/ADSP-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/ARMCC-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/AppleClang-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Borland-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/CMakeCommonCompilerMacros.cmake /usr/share/cmake-3.10/Modules/Compiler/Clang-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /usr/share/cmake-3.10/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Cray-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/GHS-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-ASM.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-C-FeatureTests.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-C.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-CXX-FeatureTests.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-CXX.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU-FindBinUtils.cmake /usr/share/cmake-3.10/Modules/Compiler/GNU.cmake /usr/share/cmake-3.10/Modules/Compiler/HP-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/IAR-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /usr/share/cmake-3.10/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /usr/share/cmake-3.10/Modules/Compiler/Intel-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/MIPSpro-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/MSVC-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/PGI-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/PathScale-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/SCO-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/TI-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/Watcom-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/XL-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/zOS-C-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /usr/share/cmake-3.10/Modules/ExternalProject.cmake /usr/share/cmake-3.10/Modules/FindCygwin.cmake /usr/share/cmake-3.10/Modules/FindGit.cmake /usr/share/cmake-3.10/Modules/FindPackageHandleStandardArgs.cmake /usr/share/cmake-3.10/Modules/FindPackageMessage.cmake /usr/share/cmake-3.10/Modules/FindPerl.cmake /usr/share/cmake-3.10/Modules/FindPythonInterp.cmake /usr/share/cmake-3.10/Modules/Internal/FeatureTesting.cmake /usr/share/cmake-3.10/Modules/Platform/Generic.cmake CMakeCache.txt CMakeFiles/3.10.2/CMakeASMCompiler.cmake CMakeFiles/3.10.2/CMakeCCompiler.cmake CMakeFiles/3.10.2/CMakeCXXCompiler.cmake CMakeFiles/3.10.2/CMakeSystem.cmake CMakeFiles/feature_tests.c CMakeFiles/feature_tests.cxx CMakeFiles/git-data/grabRef.cmake app-flash_args bootloader-flash_args bootloader-prefix/tmp/bootloader-cfgcmd.txt.in config/sdkconfig.cmake config/sdkconfig.h esp-idf/bootloader/bootloader-flash_args.in esp-idf/esptool_py/app-flash_args.in esp-idf/esptool_py/flasher_args.json.in esp-idf/partition_table/partition_table-flash_args.in flash_args flash_args.in ldgen_libraries.in: phony + +############################################# +# Clean all the built files. + +build clean: CLEAN + +############################################# +# Print all primary targets available. + +build help: HELP diff --git a/build/cmake_install.cmake b/build/cmake_install.cmake new file mode 100644 index 0000000..585e84e --- /dev/null +++ b/build/cmake_install.cmake @@ -0,0 +1,50 @@ +# Install script for directory: /home/mithras/Documents/bakalarka + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("/home/mithras/Documents/bakalarka/build/esp-idf/cmake_install.cmake") + +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "/home/mithras/Documents/bakalarka/build/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/build/compile_commands.json b/build/compile_commands.json new file mode 100644 index 0000000..aab5e8f --- /dev/null +++ b/build/compile_commands.json @@ -0,0 +1,6043 @@ +[ +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DLV_CONF_INCLUDE_SIMPLE=1 -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUNITY_INCLUDE_CONFIG_H -DWITH_POSIX -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include -I/home/mithras/esp/esp-idf/components/asio/asio/asio/include -I/home/mithras/esp/esp-idf/components/asio/port/include -I/home/mithras/esp/esp-idf/components/cbor/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/esp_adc_cal/include -I/home/mithras/esp/esp-idf/components/esp_gdbstub/include -I/home/mithras/esp/esp-idf/components/tcp_transport/include -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/esp_https_ota/include -I/home/mithras/esp/esp-idf/components/esp_https_server/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/include -I/home/mithras/esp/esp-idf/components/sdmmc/include -I/home/mithras/esp/esp-idf/components/esp_serial_slave_link/include -I/home/mithras/esp/esp-idf/components/esp_websocket_client/include -I/home/mithras/esp/esp-idf/components/expat/expat/expat/lib -I/home/mithras/esp/esp-idf/components/expat/port/include -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/fatfs/diskio -I/home/mithras/esp/esp-idf/components/fatfs/vfs -I/home/mithras/esp/esp-idf/components/fatfs/src -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/idf_test/include -I/home/mithras/esp/esp-idf/components/jsmn/include -I/home/mithras/esp/esp-idf/components/json/cJSON -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/include -I/home/mithras/esp/esp-idf/components/openssl/include -I/home/mithras/esp/esp-idf/components/spiffs/include -I/home/mithras/esp/esp-idf/components/ulp/include -I/home/mithras/esp/esp-idf/components/unity/include -I/home/mithras/esp/esp-idf/components/unity/unity/src -I/home/mithras/esp/esp-idf/components/wifi_provisioning/include -I../main -I../components/ca -I../components/cmd_nvs -I../components/cmd_system -I../components/files -I../components/wifi -I../components/https_server -I../components/lvgl -I../components/lvgl/lvgl -I../components/lv_examples -I../components/lvgl_esp32_drivers -I../components/lvgl_esp32_drivers/lvgl_tft -I../components/lvgl_esp32_drivers/lvgl_touch -mlongcalls -Wno-frame-address -o CMakeFiles/bakalarka.elf.dir/project_elf_src.c.obj -c /home/mithras/Documents/bakalarka/build/project_elf_src.c", + "file": "/home/mithras/Documents/bakalarka/build/project_elf_src.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/debug_helpers.c.obj -c /home/mithras/esp/esp-idf/components/xtensa/debug_helpers.c", + "file": "/home/mithras/esp/esp-idf/components/xtensa/debug_helpers.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/debug_helpers_asm.S.obj -c /home/mithras/esp/esp-idf/components/xtensa/debug_helpers_asm.S", + "file": "/home/mithras/esp/esp-idf/components/xtensa/debug_helpers_asm.S" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/expression_with_stack_xtensa_asm.S.obj -c /home/mithras/esp/esp-idf/components/xtensa/expression_with_stack_xtensa_asm.S", + "file": "/home/mithras/esp/esp-idf/components/xtensa/expression_with_stack_xtensa_asm.S" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/expression_with_stack_xtensa.c.obj -c /home/mithras/esp/esp-idf/components/xtensa/expression_with_stack_xtensa.c", + "file": "/home/mithras/esp/esp-idf/components/xtensa/expression_with_stack_xtensa.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj -c /home/mithras/esp/esp-idf/components/xtensa/eri.c", + "file": "/home/mithras/esp/esp-idf/components/xtensa/eri.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/trax.c.obj -c /home/mithras/esp/esp-idf/components/xtensa/trax.c", + "file": "/home/mithras/esp/esp-idf/components/xtensa/trax.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/memory_layout_utils.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/memory_layout_utils.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/memory_layout_utils.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/lldesc.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/lldesc.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/lldesc.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rmt_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/rmt_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/rmt_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/rtc_io_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/rtc_io_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/rtc_io_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/dac_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/dac_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/dac_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/adc_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/adc_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/adc_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/spi_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/spi_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal_iram.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/spi_hal_iram.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/spi_hal_iram.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/spi_slave_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/spi_slave_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal_iram.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/spi_slave_hal_iram.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/spi_slave_hal_iram.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/touch_sensor_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/touch_sensor_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/touch_sensor_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/soc_include_legacy_warn.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/soc_include_legacy_warn.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/soc_include_legacy_warn.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/pcnt_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/pcnt_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/pcnt_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2s_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/i2s_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/i2s_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sigmadelta_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/sigmadelta_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/sigmadelta_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/timer_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/timer_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/timer_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/ledc_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/ledc_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/ledc_hal_iram.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/ledc_hal_iram.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/ledc_hal_iram.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/i2c_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/i2c_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/i2c_hal_iram.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/i2c_hal_iram.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/i2c_hal_iram.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/gpio_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/gpio_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/gpio_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/uart_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/uart_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/uart_hal_iram.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/uart_hal_iram.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/uart_hal_iram.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/spi_flash_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/spi_flash_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal_iram.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/spi_flash_hal_iram.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/spi_flash_hal_iram.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/compare_set.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/compare_set.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/compare_set.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/can_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/can_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/can_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/mcpwm_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/mcpwm_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/mcpwm_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/sdio_slave_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/hal/sdio_slave_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/hal/sdio_slave_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/brownout_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/brownout_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/brownout_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/cpu_util.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/cpu_util.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/cpu_util.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_clk.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_clk.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_clk_init.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_clk_init.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_clk_init.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_init.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_init.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_init.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_pm.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_pm.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_pm.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_sleep.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_sleep.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_sleep.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_time.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_time.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_time.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/rtc_wdt.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_wdt.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/rtc_wdt.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/sdio_slave_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/sdio_slave_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/sdio_slave_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/soc_memory_layout.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/soc_memory_layout.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/soc_memory_layout.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/touch_sensor_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/touch_sensor_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/touch_sensor_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/../hal -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/CMakeFiles/__idf_soc.dir/src/esp32/emac_hal.c.obj -c /home/mithras/esp/esp-idf/components/soc/src/esp32/emac_hal.c", + "file": "/home/mithras/esp/esp-idf/components/soc/src/esp32/emac_hal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/adc_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/adc_periph.c", + "file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/adc_periph.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/dac_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/dac_periph.c", + "file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/dac_periph.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/gpio_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/gpio_periph.c", + "file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/gpio_periph.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_io_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/rtc_io_periph.c", + "file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/rtc_io_periph.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/rtc_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/rtc_periph.c", + "file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/rtc_periph.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdio_slave_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/sdio_slave_periph.c", + "file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/sdio_slave_periph.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/sdmmc_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/sdmmc_periph.c", + "file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/sdmmc_periph.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/interrupts.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/interrupts.c", + "file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/interrupts.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/spi_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/spi_periph.c", + "file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/spi_periph.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/ledc_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/ledc_periph.c", + "file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/ledc_periph.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2s_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/i2s_periph.c", + "file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/i2s_periph.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/i2c_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/i2c_periph.c", + "file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/i2c_periph.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/uart_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/uart_periph.c", + "file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/uart_periph.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/soc/soc/esp32/CMakeFiles/soc_esp32.dir/touch_sensor_periph.c.obj -c /home/mithras/esp/esp-idf/components/soc/soc/esp32/touch_sensor_periph.c", + "file": "/home/mithras/esp/esp-idf/components/soc/soc/esp32/touch_sensor_periph.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -std=gnu11 -o esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj -c /home/mithras/esp/esp-idf/components/esp_eth/src/esp_eth.c", + "file": "/home/mithras/esp/esp-idf/components/esp_eth/src/esp_eth.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy.c.obj -c /home/mithras/esp/esp-idf/components/esp_eth/src/esp_eth_phy.c", + "file": "/home/mithras/esp/esp-idf/components/esp_eth/src/esp_eth_phy.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj -c /home/mithras/esp/esp-idf/components/esp_eth/src/esp_eth_netif_glue.c", + "file": "/home/mithras/esp/esp-idf/components/esp_eth/src/esp_eth_netif_glue.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_mac_esp32.c.obj -c /home/mithras/esp/esp-idf/components/esp_eth/src/esp_eth_mac_esp32.c", + "file": "/home/mithras/esp/esp-idf/components/esp_eth/src/esp_eth_mac_esp32.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_dp83848.c.obj -c /home/mithras/esp/esp-idf/components/esp_eth/src/esp_eth_phy_dp83848.c", + "file": "/home/mithras/esp/esp-idf/components/esp_eth/src/esp_eth_phy_dp83848.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ip101.c.obj -c /home/mithras/esp/esp-idf/components/esp_eth/src/esp_eth_phy_ip101.c", + "file": "/home/mithras/esp/esp-idf/components/esp_eth/src/esp_eth_phy_ip101.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_lan8720.c.obj -c /home/mithras/esp/esp-idf/components/esp_eth/src/esp_eth_phy_lan8720.c", + "file": "/home/mithras/esp/esp-idf/components/esp_eth/src/esp_eth_phy_lan8720.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_rtl8201.c.obj -c /home/mithras/esp/esp-idf/components/esp_eth/src/esp_eth_phy_rtl8201.c", + "file": "/home/mithras/esp/esp-idf/components/esp_eth/src/esp_eth_phy_rtl8201.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/tcpip_adapter/CMakeFiles/__idf_tcpip_adapter.dir/tcpip_adapter_compat.c.obj -c /home/mithras/esp/esp-idf/components/tcpip_adapter/tcpip_adapter_compat.c", + "file": "/home/mithras/esp/esp-idf/components/tcpip_adapter/tcpip_adapter_compat.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_netif/lwip -I/home/mithras/esp/esp-idf/components/esp_netif/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj -c /home/mithras/esp/esp-idf/components/esp_netif/esp_netif_handlers.c", + "file": "/home/mithras/esp/esp-idf/components/esp_netif/esp_netif_handlers.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_netif/lwip -I/home/mithras/esp/esp-idf/components/esp_netif/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj -c /home/mithras/esp/esp-idf/components/esp_netif/esp_netif_objects.c", + "file": "/home/mithras/esp/esp-idf/components/esp_netif/esp_netif_objects.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_netif/lwip -I/home/mithras/esp/esp-idf/components/esp_netif/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj -c /home/mithras/esp/esp-idf/components/esp_netif/esp_netif_defaults.c", + "file": "/home/mithras/esp/esp-idf/components/esp_netif/esp_netif_defaults.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_netif/lwip -I/home/mithras/esp/esp-idf/components/esp_netif/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj -c /home/mithras/esp/esp-idf/components/esp_netif/lwip/esp_netif_lwip.c", + "file": "/home/mithras/esp/esp-idf/components/esp_netif/lwip/esp_netif_lwip.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_netif/lwip -I/home/mithras/esp/esp-idf/components/esp_netif/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_ppp.c.obj -c /home/mithras/esp/esp-idf/components/esp_netif/lwip/esp_netif_lwip_ppp.c", + "file": "/home/mithras/esp/esp-idf/components/esp_netif/lwip/esp_netif_lwip_ppp.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_netif/lwip -I/home/mithras/esp/esp-idf/components/esp_netif/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/loopback/esp_netif_loopback.c.obj -c /home/mithras/esp/esp-idf/components/esp_netif/loopback/esp_netif_loopback.c", + "file": "/home/mithras/esp/esp-idf/components/esp_netif/loopback/esp_netif_loopback.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_netif/lwip -I/home/mithras/esp/esp-idf/components/esp_netif/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj -c /home/mithras/esp/esp-idf/components/esp_netif/lwip/esp_netif_lwip_defaults.c", + "file": "/home/mithras/esp/esp-idf/components/esp_netif/lwip/esp_netif_lwip_defaults.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_netif/lwip -I/home/mithras/esp/esp-idf/components/esp_netif/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sta_list.c.obj -c /home/mithras/esp/esp-idf/components/esp_netif/lwip/esp_netif_sta_list.c", + "file": "/home/mithras/esp/esp-idf/components/esp_netif/lwip/esp_netif_sta_list.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_event/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj -c /home/mithras/esp/esp-idf/components/esp_event/default_event_loop.c", + "file": "/home/mithras/esp/esp-idf/components/esp_event/default_event_loop.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_event/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj -c /home/mithras/esp/esp-idf/components/esp_event/esp_event.c", + "file": "/home/mithras/esp/esp-idf/components/esp_event/esp_event.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_event/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj -c /home/mithras/esp/esp-idf/components/esp_event/esp_event_private.c", + "file": "/home/mithras/esp/esp-idf/components/esp_event/esp_event_private.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_event/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/event_loop_legacy.c.obj -c /home/mithras/esp/esp-idf/components/esp_event/event_loop_legacy.c", + "file": "/home/mithras/esp/esp-idf/components/esp_event/event_loop_legacy.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_event/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/event_send.c.obj -c /home/mithras/esp/esp-idf/components/esp_event/event_send.c", + "file": "/home/mithras/esp/esp-idf/components/esp_event/event_send.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/certs.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/certs.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/certs.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs11.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/pkcs11.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/pkcs11.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/x509.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/x509.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/x509_create.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/x509_create.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/x509_crl.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/x509_crl.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/x509_crt.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/x509_crt.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/x509_csr.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/x509_csr.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/x509write_crt.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/x509write_crt.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/x509write_csr.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/x509write_csr.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/aes.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/aes.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/aesni.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/aesni.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/arc4.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/arc4.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/arc4.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/aria.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/aria.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/asn1parse.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/asn1parse.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/asn1write.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/asn1write.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/base64.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/base64.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/bignum.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/bignum.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/blowfish.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/blowfish.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/blowfish.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/camellia.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/camellia.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ccm.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ccm.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/chacha20.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/chacha20.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/chachapoly.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/chachapoly.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/cipher.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/cipher.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/cipher_wrap.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/cipher_wrap.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/cmac.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/cmac.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ctr_drbg.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ctr_drbg.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/des.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/des.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/dhm.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/dhm.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ecdh.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ecdh.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ecdsa.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ecdsa.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ecjpake.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ecjpake.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ecp.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ecp.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ecp_curves.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ecp_curves.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/entropy.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/entropy.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/entropy_poll.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/entropy_poll.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/error.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/error.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/gcm.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/gcm.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/havege.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/havege.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/havege.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/hkdf.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/hkdf.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/hmac_drbg.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/hmac_drbg.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/md.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/md.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md2.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/md2.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/md2.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md4.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/md4.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/md4.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/md5.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/md5.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md_wrap.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/md_wrap.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/md_wrap.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/memory_buffer_alloc.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/memory_buffer_alloc.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/nist_kw.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/nist_kw.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/oid.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/oid.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/padlock.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/padlock.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/pem.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/pem.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/pk.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/pk.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/pk_wrap.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/pk_wrap.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/pkcs12.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/pkcs12.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/pkcs5.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/pkcs5.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/pkparse.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/pkparse.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/pkwrite.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/pkwrite.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/platform.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/platform.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/platform_util.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/platform_util.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/poly1305.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/poly1305.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ripemd160.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ripemd160.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/rsa.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/rsa.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_internal.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/rsa_internal.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/rsa_internal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/sha1.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/sha1.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/sha256.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/sha256.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/sha512.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/sha512.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/threading.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/threading.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/timing.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/timing.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/version.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/version.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/version_features.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/version_features.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/xtea.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/xtea.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/xtea.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_hardware.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/port/esp_hardware.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/port/esp_hardware.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_mem.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/port/esp_mem.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/port/esp_mem.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_sha.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/port/esp_sha.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/port/esp_sha.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_sha1.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/port/esp_sha1.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/port/esp_sha1.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_sha256.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/port/esp_sha256.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/port/esp_sha256.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_sha512.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/port/esp_sha512.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/port/esp_sha512.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp_timing.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/port/esp_timing.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/port/esp_timing.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/esp_bignum.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/port/esp32/esp_bignum.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/port/esp32/esp_bignum.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/aes.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/port/esp32/aes.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/port/esp32/aes.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/__/__/port/esp32/sha.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/port/esp32/sha.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/port/esp32/sha.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/debug.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/debug.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ssl_cache.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ssl_cache.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ssl_ciphersuites.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ssl_ciphersuites.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cli.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ssl_cli.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ssl_cli.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ssl_cookie.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ssl_cookie.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_srv.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ssl_srv.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ssl_srv.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ssl_ticket.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ssl_ticket.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ssl_tls.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library/ssl_tls.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/__/__/port/mbedtls_debug.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/port/mbedtls_debug.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/port/mbedtls_debug.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -Wall -Wextra -W -Wdeclaration-after-statement -Wwrite-strings -Wlogical-op -Wshadow -Wmissing-declarations -Wmissing-prototypes -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/__/__/port/net_sockets.c.obj -c /home/mithras/esp/esp-idf/components/mbedtls/port/net_sockets.c", + "file": "/home/mithras/esp/esp-idf/components/mbedtls/port/net_sockets.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/port/os_xtensa.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/port/os_xtensa.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/ap/ap_config.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/ap/ap_config.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/ap/ieee802_1x.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/ap/ieee802_1x.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/ap/wpa_auth.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/ap/wpa_auth.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/ap/wpa_auth_ie.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/ap/wpa_auth_ie.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/common/sae.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/common/sae.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/common/wpa_common.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/common/wpa_common.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-cbc.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/aes-cbc.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/aes-cbc.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/aes-ccm.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/aes-ccm.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal-dec.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/aes-internal-dec.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/aes-internal-dec.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal-enc.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/aes-internal-enc.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/aes-internal-enc.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-internal.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/aes-internal.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/aes-internal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-omac1.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/aes-omac1.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/aes-omac1.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/aes-unwrap.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/aes-unwrap.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/aes-wrap.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/aes-wrap.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/bignum.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/bignum.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/bignum.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/ccmp.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/ccmp.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_mbedtls.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/crypto_mbedtls.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/crypto_mbedtls.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/crypto_ops.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/crypto_ops.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-cipher.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/crypto_internal-cipher.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/crypto_internal-cipher.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-modexp.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/crypto_internal-modexp.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/crypto_internal-modexp.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal-rsa.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/crypto_internal-rsa.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/crypto_internal-rsa.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_internal.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/crypto_internal.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/crypto_internal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/des-internal.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/des-internal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/dh_group5.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/dh_group5.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/dh_groups.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/dh_groups.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/md4-internal.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/md4-internal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md5-internal.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/md5-internal.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/md5-internal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md5.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/md5.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/md5.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/ms_funcs.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/ms_funcs.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/rc4.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/rc4.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-internal.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/sha1-internal.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/sha1-internal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-pbkdf2.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/sha1-pbkdf2.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/sha1-pbkdf2.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/sha1.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/sha1.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-internal.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/sha256-internal.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/sha256-internal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/sha256.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/crypto/sha256.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/eap_peer/chap.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/eap_peer/chap.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/eap_peer/eap.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/eap_peer/eap.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/eap_peer/eap_common.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/eap_peer/eap_common.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/eap_peer/eap_mschapv2.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/eap_peer/eap_mschapv2.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/eap_peer/eap_peap.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/eap_peer/eap_peap.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/eap_peer/eap_peap_common.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/eap_peer/eap_peap_common.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/eap_peer/eap_tls.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/eap_peer/eap_tls.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/eap_peer/eap_tls_common.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/eap_peer/eap_tls_common.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/eap_peer/eap_ttls.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/eap_peer/eap_ttls.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/eap_peer/mschapv2.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/eap_peer/mschapv2.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_hostap.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/esp_supplicant/esp_hostap.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/esp_supplicant/esp_hostap.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa2.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/esp_supplicant/esp_wpa2.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/esp_supplicant/esp_wpa2.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa_main.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/esp_supplicant/esp_wpa_main.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/esp_supplicant/esp_wpa_main.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpas_glue.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/esp_supplicant/esp_wpas_glue.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/esp_supplicant/esp_wpas_glue.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wps.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/esp_supplicant/esp_wps.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/esp_supplicant/esp_wps.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/esp_supplicant/esp_wpa3.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/esp_supplicant/esp_wpa3.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/esp_supplicant/esp_wpa3.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/rsn_supp/pmksa_cache.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/rsn_supp/pmksa_cache.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/rsn_supp/wpa.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/rsn_supp/wpa.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/rsn_supp/wpa_ie.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/rsn_supp/wpa_ie.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/asn1.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/asn1.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/asn1.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/bignum.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/bignum.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/bignum.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs1.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/pkcs1.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/pkcs1.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs5.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/pkcs5.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/pkcs5.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/pkcs8.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/pkcs8.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/pkcs8.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/rsa.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/rsa.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/rsa.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tls_internal.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/tls_internal.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/tls_internal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/tlsv1_client.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/tlsv1_client.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client_read.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/tlsv1_client_read.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/tlsv1_client_read.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_client_write.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/tlsv1_client_write.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/tlsv1_client_write.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_common.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/tlsv1_common.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/tlsv1_common.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_cred.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/tlsv1_cred.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/tlsv1_cred.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_record.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/tlsv1_record.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/tlsv1_record.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/tlsv1_server.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/tlsv1_server.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server_read.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/tlsv1_server_read.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/tlsv1_server_read.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/tlsv1_server_write.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/tlsv1_server_write.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/tlsv1_server_write.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/tls/x509v3.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/x509v3.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/tls/x509v3.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/utils/base64.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/utils/base64.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/utils/common.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/utils/common.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/utils/ext_password.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/utils/ext_password.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/utils/uuid.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/utils/uuid.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/utils/wpabuf.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/utils/wpabuf.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/utils/wpa_debug.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/utils/wpa_debug.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/wps/wps.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/wps/wps.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/wps/wps_attr_build.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/wps/wps_attr_build.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/wps/wps_attr_parse.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/wps/wps_attr_parse.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/wps/wps_attr_process.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/wps/wps_attr_process.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/wps/wps_common.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/wps/wps_common.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/wps/wps_dev_attr.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/wps/wps_dev_attr.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/wps/wps_enrollee.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/wps/wps_enrollee.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_registrar.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/wps/wps_registrar.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/wps/wps_registrar.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIG_ECC -DCONFIG_IEEE80211W -DCONFIG_WPA3_SAE -DCONFIG_WPS2 -DCONFIG_WPS_PIN -DEAP_MSCHAPv2 -DEAP_PEAP -DEAP_PEER_METHOD -DEAP_TLS -DEAP_TTLS -DESP32_WORKAROUND -DESPRESSIF_USE -DESP_SUPPLICANT -DIEEE8021X_EAPOL -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUSE_WPA2_TASK -DUSE_WPS_TASK -D__ets__ -Iconfig -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/wpa_supplicant/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-strict-aliasing -o esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_validate.c.obj -c /home/mithras/esp/esp-idf/components/wpa_supplicant/src/wps/wps_validate.c", + "file": "/home/mithras/esp/esp-idf/components/wpa_supplicant/src/wps/wps_validate.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj -c /home/mithras/esp/esp-idf/components/efuse/esp32/esp_efuse_table.c", + "file": "/home/mithras/esp/esp-idf/components/efuse/esp32/esp_efuse_table.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_api.c.obj -c /home/mithras/esp/esp-idf/components/efuse/src/esp32/esp_efuse_api.c", + "file": "/home/mithras/esp/esp-idf/components/efuse/src/esp32/esp_efuse_api.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_fields.c.obj -c /home/mithras/esp/esp-idf/components/efuse/src/esp32/esp_efuse_fields.c", + "file": "/home/mithras/esp/esp-idf/components/efuse/src/esp32/esp_efuse_fields.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp32/esp_efuse_utility.c.obj -c /home/mithras/esp/esp-idf/components/efuse/src/esp32/esp_efuse_utility.c", + "file": "/home/mithras/esp/esp-idf/components/efuse/src/esp32/esp_efuse_utility.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj -c /home/mithras/esp/esp-idf/components/efuse/src/esp_efuse_api.c", + "file": "/home/mithras/esp/esp-idf/components/efuse/src/esp_efuse_api.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj -c /home/mithras/esp/esp-idf/components/efuse/src/esp_efuse_fields.c", + "file": "/home/mithras/esp/esp-idf/components/efuse/src/esp_efuse_fields.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj -c /home/mithras/esp/esp-idf/components/efuse/src/esp_efuse_utility.c", + "file": "/home/mithras/esp/esp-idf/components/efuse/src/esp_efuse_utility.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_clock.c", + "file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_clock.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_common.c", + "file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_common.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_flash.c", + "file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_flash.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_random.c", + "file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_random.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_utility.c", + "file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_utility.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/esp_image_format.c", + "file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/esp_image_format.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/flash_partitions.c", + "file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/flash_partitions.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_qio_mode.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/flash_qio_mode.c", + "file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/flash_qio_mode.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash_config_esp32.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_flash_config_esp32.c", + "file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_flash_config_esp32.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse_esp32.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_efuse_esp32.c", + "file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/bootloader_efuse_esp32.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/flash_encrypt.c", + "file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/flash_encrypt.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/idf/bootloader_sha.c", + "file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/idf/bootloader_sha.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include_bootloader -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/secure_boot_signatures.c.obj -c /home/mithras/esp/esp-idf/components/bootloader_support/src/idf/secure_boot_signatures.c", + "file": "/home/mithras/esp/esp-idf/components/bootloader_support/src/idf/secure_boot_signatures.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj -c /home/mithras/esp/esp-idf/components/app_update/esp_ota_ops.c", + "file": "/home/mithras/esp/esp-idf/components/app_update/esp_ota_ops.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -D PROJECT_NAME=\\\"bakalarka\\\" -DPROJECT_VER=\\\"0.1.0.1\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_app_desc.c.obj -c /home/mithras/esp/esp-idf/components/app_update/esp_app_desc.c", + "file": "/home/mithras/esp/esp-idf/components/app_update/esp_app_desc.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/partition.c.obj -c /home/mithras/esp/esp-idf/components/spi_flash/partition.c", + "file": "/home/mithras/esp/esp-idf/components/spi_flash/partition.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp32/spi_flash_rom_patch.c.obj -c /home/mithras/esp/esp-idf/components/spi_flash/esp32/spi_flash_rom_patch.c", + "file": "/home/mithras/esp/esp-idf/components/spi_flash/esp32/spi_flash_rom_patch.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj -c /home/mithras/esp/esp-idf/components/spi_flash/spi_flash_chip_drivers.c", + "file": "/home/mithras/esp/esp-idf/components/spi_flash/spi_flash_chip_drivers.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj -c /home/mithras/esp/esp-idf/components/spi_flash/spi_flash_chip_generic.c", + "file": "/home/mithras/esp/esp-idf/components/spi_flash/spi_flash_chip_generic.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj -c /home/mithras/esp/esp-idf/components/spi_flash/spi_flash_chip_issi.c", + "file": "/home/mithras/esp/esp-idf/components/spi_flash/spi_flash_chip_issi.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj -c /home/mithras/esp/esp-idf/components/spi_flash/spi_flash_chip_gd.c", + "file": "/home/mithras/esp/esp-idf/components/spi_flash/spi_flash_chip_gd.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj -c /home/mithras/esp/esp-idf/components/spi_flash/memspi_host_driver.c", + "file": "/home/mithras/esp/esp-idf/components/spi_flash/memspi_host_driver.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj -c /home/mithras/esp/esp-idf/components/spi_flash/cache_utils.c", + "file": "/home/mithras/esp/esp-idf/components/spi_flash/cache_utils.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj -c /home/mithras/esp/esp-idf/components/spi_flash/flash_mmap.c", + "file": "/home/mithras/esp/esp-idf/components/spi_flash/flash_mmap.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj -c /home/mithras/esp/esp-idf/components/spi_flash/flash_ops.c", + "file": "/home/mithras/esp/esp-idf/components/spi_flash/flash_ops.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj -c /home/mithras/esp/esp-idf/components/spi_flash/esp_flash_api.c", + "file": "/home/mithras/esp/esp-idf/components/spi_flash/esp_flash_api.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj -c /home/mithras/esp/esp-idf/components/spi_flash/esp_flash_spi_init.c", + "file": "/home/mithras/esp/esp-idf/components/spi_flash/esp_flash_spi_init.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj -c /home/mithras/esp/esp-idf/components/spi_flash/spi_flash_os_func_app.c", + "file": "/home/mithras/esp/esp-idf/components/spi_flash/spi_flash_os_func_app.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -fno-inline-functions -fno-inline-small-functions -fno-inline-functions-called-once -o esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj -c /home/mithras/esp/esp-idf/components/spi_flash/spi_flash_os_func_noos.c", + "file": "/home/mithras/esp/esp-idf/components/spi_flash/spi_flash_os_func_noos.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++ -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj -c /home/mithras/esp/esp-idf/components/nvs_flash/src/nvs_api.cpp", + "file": "/home/mithras/esp/esp-idf/components/nvs_flash/src/nvs_api.cpp" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++ -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj -c /home/mithras/esp/esp-idf/components/nvs_flash/src/nvs_cxx_api.cpp", + "file": "/home/mithras/esp/esp-idf/components/nvs_flash/src/nvs_cxx_api.cpp" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++ -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj -c /home/mithras/esp/esp-idf/components/nvs_flash/src/nvs_item_hash_list.cpp", + "file": "/home/mithras/esp/esp-idf/components/nvs_flash/src/nvs_item_hash_list.cpp" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++ -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_ops.cpp.obj -c /home/mithras/esp/esp-idf/components/nvs_flash/src/nvs_ops.cpp", + "file": "/home/mithras/esp/esp-idf/components/nvs_flash/src/nvs_ops.cpp" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++ -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj -c /home/mithras/esp/esp-idf/components/nvs_flash/src/nvs_page.cpp", + "file": "/home/mithras/esp/esp-idf/components/nvs_flash/src/nvs_page.cpp" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++ -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj -c /home/mithras/esp/esp-idf/components/nvs_flash/src/nvs_pagemanager.cpp", + "file": "/home/mithras/esp/esp-idf/components/nvs_flash/src/nvs_pagemanager.cpp" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++ -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj -c /home/mithras/esp/esp-idf/components/nvs_flash/src/nvs_storage.cpp", + "file": "/home/mithras/esp/esp-idf/components/nvs_flash/src/nvs_storage.cpp" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++ -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj -c /home/mithras/esp/esp-idf/components/nvs_flash/src/nvs_handle_simple.cpp", + "file": "/home/mithras/esp/esp-idf/components/nvs_flash/src/nvs_handle_simple.cpp" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++ -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj -c /home/mithras/esp/esp-idf/components/nvs_flash/src/nvs_handle_locked.cpp", + "file": "/home/mithras/esp/esp-idf/components/nvs_flash/src/nvs_handle_locked.cpp" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++ -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj -c /home/mithras/esp/esp-idf/components/nvs_flash/src/nvs_partition_manager.cpp", + "file": "/home/mithras/esp/esp-idf/components/nvs_flash/src/nvs_partition_manager.cpp" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++ -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj -c /home/mithras/esp/esp-idf/components/nvs_flash/src/nvs_types.cpp", + "file": "/home/mithras/esp/esp-idf/components/nvs_flash/src/nvs_types.cpp" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/coexist.c.obj -c /home/mithras/esp/esp-idf/components/esp_wifi/src/coexist.c", + "file": "/home/mithras/esp/esp-idf/components/esp_wifi/src/coexist.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/lib_printf.c.obj -c /home/mithras/esp/esp-idf/components/esp_wifi/src/lib_printf.c", + "file": "/home/mithras/esp/esp-idf/components/esp_wifi/src/lib_printf.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj -c /home/mithras/esp/esp-idf/components/esp_wifi/src/mesh_event.c", + "file": "/home/mithras/esp/esp-idf/components/esp_wifi/src/mesh_event.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/phy_init.c.obj -c /home/mithras/esp/esp-idf/components/esp_wifi/src/phy_init.c", + "file": "/home/mithras/esp/esp-idf/components/esp_wifi/src/phy_init.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj -c /home/mithras/esp/esp-idf/components/esp_wifi/src/smartconfig.c", + "file": "/home/mithras/esp/esp-idf/components/esp_wifi/src/smartconfig.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj -c /home/mithras/esp/esp-idf/components/esp_wifi/src/smartconfig_ack.c", + "file": "/home/mithras/esp/esp-idf/components/esp_wifi/src/smartconfig_ack.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj -c /home/mithras/esp/esp-idf/components/esp_wifi/src/wifi_init.c", + "file": "/home/mithras/esp/esp-idf/components/esp_wifi/src/wifi_init.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj -c /home/mithras/esp/esp-idf/components/esp_wifi/src/wifi_default.c", + "file": "/home/mithras/esp/esp-idf/components/esp_wifi/src/wifi_default.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj -c /home/mithras/esp/esp-idf/components/esp_wifi/src/wifi_netif.c", + "file": "/home/mithras/esp/esp-idf/components/esp_wifi/src/wifi_netif.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32/esp_adapter.c.obj -c /home/mithras/esp/esp-idf/components/esp_wifi/esp32/esp_adapter.c", + "file": "/home/mithras/esp/esp-idf/components/esp_wifi/esp32/esp_adapter.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj -c /home/mithras/esp/esp-idf/components/lwip/apps/dhcpserver/dhcpserver.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/apps/dhcpserver/dhcpserver.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj -c /home/mithras/esp/esp-idf/components/lwip/apps/ping/esp_ping.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/apps/ping/esp_ping.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj -c /home/mithras/esp/esp-idf/components/lwip/apps/ping/ping.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/apps/ping/ping.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj -c /home/mithras/esp/esp-idf/components/lwip/apps/ping/ping_sock.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/apps/ping/ping_sock.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj -c /home/mithras/esp/esp-idf/components/lwip/apps/sntp/sntp.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/apps/sntp/sntp.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/api/api_lib.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/api/api_lib.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/api/api_msg.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/api/api_msg.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/api/err.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/api/err.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/api/if_api.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/api/if_api.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/api/netbuf.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/api/netbuf.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/api/netdb.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/api/netdb.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/api/netifapi.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/api/netifapi.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/api/sockets.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/api/sockets.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/api/tcpip.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/api/tcpip.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/apps/sntp/sntp.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/apps/sntp/sntp.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/apps/netbiosns/netbiosns.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/apps/netbiosns/netbiosns.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/def.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/core/def.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/dns.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/core/dns.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/inet_chksum.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/core/inet_chksum.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/init.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/core/init.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ip.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ip.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/mem.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/core/mem.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/memp.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/core/memp.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/netif.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/core/netif.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/pbuf.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/core/pbuf.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/raw.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/core/raw.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/stats.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/core/stats.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/sys.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/core/sys.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -Wno-type-limits -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/tcp.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/core/tcp.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/tcp_in.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/core/tcp_in.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/tcp_out.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/core/tcp_out.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/timeouts.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/core/timeouts.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/udp.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/core/udp.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv4/autoip.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv4/autoip.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv4/dhcp.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv4/dhcp.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv4/etharp.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv4/etharp.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv4/icmp.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv4/icmp.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv4/igmp.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv4/igmp.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv4/ip4.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv4/ip4.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_addr.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_addr.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_frag.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv4/ip4_frag.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv6/dhcp6.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv6/dhcp6.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv6/ethip6.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv6/ethip6.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv6/icmp6.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv6/icmp6.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv6/inet6.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv6/inet6.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv6/ip6.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv6/ip6.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv6/ip6_addr.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv6/ip6_addr.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv6/ip6_frag.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv6/ip6_frag.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv6/mld6.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv6/mld6.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv6/nd6.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/core/ipv6/nd6.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ethernet.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ethernet.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/lowpan6.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/lowpan6.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/lowpan6.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/slipif.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/slipif.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/auth.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/auth.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/ccp.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/ccp.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/chap-md5.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/chap-md5.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/chap-new.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/chap-new.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/chap_ms.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/chap_ms.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/demand.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/demand.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/eap.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/eap.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/ecp.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/ecp.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/eui64.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/eui64.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/fsm.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/fsm.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/ipcp.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/ipcp.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/ipv6cp.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/ipv6cp.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/lcp.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/lcp.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/magic.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/magic.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/mppe.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/mppe.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/multilink.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/multilink.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -Wno-uninitialized -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/ppp.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/ppp.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/pppapi.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/pppapi.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/pppcrypt.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/pppcrypt.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/pppoe.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/pppoe.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/pppol2tp.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/pppol2tp.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -Wno-implicit-fallthrough -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/pppos.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/pppos.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/upap.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/upap.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/utils.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/utils.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj -c /home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/vj.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/lwip/src/netif/ppp/vj.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/vfs_lwip.c.obj -c /home/mithras/esp/esp-idf/components/lwip/port/esp32/vfs_lwip.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/port/esp32/vfs_lwip.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/debug/lwip_debug.c.obj -c /home/mithras/esp/esp-idf/components/lwip/port/esp32/debug/lwip_debug.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/port/esp32/debug/lwip_debug.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/freertos/sys_arch.c.obj -c /home/mithras/esp/esp-idf/components/lwip/port/esp32/freertos/sys_arch.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/port/esp32/freertos/sys_arch.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/dhcp_state.c.obj -c /home/mithras/esp/esp-idf/components/lwip/port/esp32/netif/dhcp_state.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/port/esp32/netif/dhcp_state.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/wlanif.c.obj -c /home/mithras/esp/esp-idf/components/lwip/port/esp32/netif/wlanif.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/port/esp32/netif/wlanif.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-address -o esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32/netif/ethernetif.c.obj -c /home/mithras/esp/esp-idf/components/lwip/port/esp32/netif/ethernetif.c", + "file": "/home/mithras/esp/esp-idf/components/lwip/port/esp32/netif/ethernetif.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj -c /home/mithras/esp/esp-idf/components/log/log.c", + "file": "/home/mithras/esp/esp-idf/components/log/log.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj -c /home/mithras/esp/esp-idf/components/log/log_buffers.c", + "file": "/home/mithras/esp/esp-idf/components/log/log_buffers.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.c.obj -c /home/mithras/esp/esp-idf/components/log/log_freertos.c", + "file": "/home/mithras/esp/esp-idf/components/log/log_freertos.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DMULTI_HEAP_FREERTOS -o esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj -c /home/mithras/esp/esp-idf/components/heap/heap_caps.c", + "file": "/home/mithras/esp/esp-idf/components/heap/heap_caps.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DMULTI_HEAP_FREERTOS -o esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj -c /home/mithras/esp/esp-idf/components/heap/heap_caps_init.c", + "file": "/home/mithras/esp/esp-idf/components/heap/heap_caps_init.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DMULTI_HEAP_FREERTOS -o esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj -c /home/mithras/esp/esp-idf/components/heap/multi_heap.c", + "file": "/home/mithras/esp/esp-idf/components/heap/multi_heap.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj -c /home/mithras/esp/esp-idf/components/esp_ringbuf/ringbuf.c", + "file": "/home/mithras/esp/esp-idf/components/esp_ringbuf/ringbuf.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/driver/CMakeFiles/__idf_driver.dir/adc.c.obj -c /home/mithras/esp/esp-idf/components/driver/adc.c", + "file": "/home/mithras/esp/esp-idf/components/driver/adc.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/driver/CMakeFiles/__idf_driver.dir/can.c.obj -c /home/mithras/esp/esp-idf/components/driver/can.c", + "file": "/home/mithras/esp/esp-idf/components/driver/can.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/driver/CMakeFiles/__idf_driver.dir/dac.c.obj -c /home/mithras/esp/esp-idf/components/driver/dac.c", + "file": "/home/mithras/esp/esp-idf/components/driver/dac.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio.c.obj -c /home/mithras/esp/esp-idf/components/driver/gpio.c", + "file": "/home/mithras/esp/esp-idf/components/driver/gpio.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c.c.obj -c /home/mithras/esp/esp-idf/components/driver/i2c.c", + "file": "/home/mithras/esp/esp-idf/components/driver/i2c.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s.c.obj -c /home/mithras/esp/esp-idf/components/driver/i2s.c", + "file": "/home/mithras/esp/esp-idf/components/driver/i2s.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/driver/CMakeFiles/__idf_driver.dir/ledc.c.obj -c /home/mithras/esp/esp-idf/components/driver/ledc.c", + "file": "/home/mithras/esp/esp-idf/components/driver/ledc.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/driver/CMakeFiles/__idf_driver.dir/pcnt.c.obj -c /home/mithras/esp/esp-idf/components/driver/pcnt.c", + "file": "/home/mithras/esp/esp-idf/components/driver/pcnt.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/driver/CMakeFiles/__idf_driver.dir/periph_ctrl.c.obj -c /home/mithras/esp/esp-idf/components/driver/periph_ctrl.c", + "file": "/home/mithras/esp/esp-idf/components/driver/periph_ctrl.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt.c.obj -c /home/mithras/esp/esp-idf/components/driver/rmt.c", + "file": "/home/mithras/esp/esp-idf/components/driver/rmt.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/driver/CMakeFiles/__idf_driver.dir/rtc_io.c.obj -c /home/mithras/esp/esp-idf/components/driver/rtc_io.c", + "file": "/home/mithras/esp/esp-idf/components/driver/rtc_io.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/driver/CMakeFiles/__idf_driver.dir/rtc_module.c.obj -c /home/mithras/esp/esp-idf/components/driver/rtc_module.c", + "file": "/home/mithras/esp/esp-idf/components/driver/rtc_module.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_crc.c.obj -c /home/mithras/esp/esp-idf/components/driver/sdspi_crc.c", + "file": "/home/mithras/esp/esp-idf/components/driver/sdspi_crc.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_host.c.obj -c /home/mithras/esp/esp-idf/components/driver/sdspi_host.c", + "file": "/home/mithras/esp/esp-idf/components/driver/sdspi_host.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/driver/CMakeFiles/__idf_driver.dir/sdspi_transaction.c.obj -c /home/mithras/esp/esp-idf/components/driver/sdspi_transaction.c", + "file": "/home/mithras/esp/esp-idf/components/driver/sdspi_transaction.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/driver/CMakeFiles/__idf_driver.dir/sigmadelta.c.obj -c /home/mithras/esp/esp-idf/components/driver/sigmadelta.c", + "file": "/home/mithras/esp/esp-idf/components/driver/sigmadelta.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_common.c.obj -c /home/mithras/esp/esp-idf/components/driver/spi_common.c", + "file": "/home/mithras/esp/esp-idf/components/driver/spi_common.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -std=gnu11 -o esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_master.c.obj -c /home/mithras/esp/esp-idf/components/driver/spi_master.c", + "file": "/home/mithras/esp/esp-idf/components/driver/spi_master.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/driver/CMakeFiles/__idf_driver.dir/spi_slave.c.obj -c /home/mithras/esp/esp-idf/components/driver/spi_slave.c", + "file": "/home/mithras/esp/esp-idf/components/driver/spi_slave.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/driver/CMakeFiles/__idf_driver.dir/timer.c.obj -c /home/mithras/esp/esp-idf/components/driver/timer.c", + "file": "/home/mithras/esp/esp-idf/components/driver/timer.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor_common.c.obj -c /home/mithras/esp/esp-idf/components/driver/touch_sensor_common.c", + "file": "/home/mithras/esp/esp-idf/components/driver/touch_sensor_common.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/driver/CMakeFiles/__idf_driver.dir/uart.c.obj -c /home/mithras/esp/esp-idf/components/driver/uart.c", + "file": "/home/mithras/esp/esp-idf/components/driver/uart.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm.c.obj -c /home/mithras/esp/esp-idf/components/driver/mcpwm.c", + "file": "/home/mithras/esp/esp-idf/components/driver/mcpwm.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/driver/CMakeFiles/__idf_driver.dir/sdio_slave.c.obj -c /home/mithras/esp/esp-idf/components/driver/sdio_slave.c", + "file": "/home/mithras/esp/esp-idf/components/driver/sdio_slave.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_host.c.obj -c /home/mithras/esp/esp-idf/components/driver/sdmmc_host.c", + "file": "/home/mithras/esp/esp-idf/components/driver/sdmmc_host.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc_transaction.c.obj -c /home/mithras/esp/esp-idf/components/driver/sdmmc_transaction.c", + "file": "/home/mithras/esp/esp-idf/components/driver/sdmmc_transaction.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include/driver -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/driver/CMakeFiles/__idf_driver.dir/esp32/touch_sensor.c.obj -c /home/mithras/esp/esp-idf/components/driver/esp32/touch_sensor.c", + "file": "/home/mithras/esp/esp-idf/components/driver/esp32/touch_sensor.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj -c /home/mithras/esp/esp-idf/components/pthread/pthread.c", + "file": "/home/mithras/esp/esp-idf/components/pthread/pthread.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj -c /home/mithras/esp/esp-idf/components/pthread/pthread_cond_var.c", + "file": "/home/mithras/esp/esp-idf/components/pthread/pthread_cond_var.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj -c /home/mithras/esp/esp-idf/components/pthread/pthread_local_storage.c", + "file": "/home/mithras/esp/esp-idf/components/pthread/pthread_local_storage.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/espcoredump/include_core_dump -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj -c /home/mithras/esp/esp-idf/components/espcoredump/src/core_dump_common.c", + "file": "/home/mithras/esp/esp-idf/components/espcoredump/src/core_dump_common.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/espcoredump/include_core_dump -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj -c /home/mithras/esp/esp-idf/components/espcoredump/src/core_dump_flash.c", + "file": "/home/mithras/esp/esp-idf/components/espcoredump/src/core_dump_flash.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/espcoredump/include_core_dump -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_port.c.obj -c /home/mithras/esp/esp-idf/components/espcoredump/src/core_dump_port.c", + "file": "/home/mithras/esp/esp-idf/components/espcoredump/src/core_dump_port.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/espcoredump/include_core_dump -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj -c /home/mithras/esp/esp-idf/components/espcoredump/src/core_dump_uart.c", + "file": "/home/mithras/esp/esp-idf/components/espcoredump/src/core_dump_uart.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/espcoredump/include_core_dump -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj -c /home/mithras/esp/esp-idf/components/espcoredump/src/core_dump_elf.c", + "file": "/home/mithras/esp/esp-idf/components/espcoredump/src/core_dump_elf.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/perfmon/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj -c /home/mithras/esp/esp-idf/components/perfmon/xtensa_perfmon_access.c", + "file": "/home/mithras/esp/esp-idf/components/perfmon/xtensa_perfmon_access.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/perfmon/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj -c /home/mithras/esp/esp-idf/components/perfmon/xtensa_perfmon_apis.c", + "file": "/home/mithras/esp/esp-idf/components/perfmon/xtensa_perfmon_apis.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/perfmon/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj -c /home/mithras/esp/esp-idf/components/perfmon/xtensa_perfmon_masks.c", + "file": "/home/mithras/esp/esp-idf/components/perfmon/xtensa_perfmon_masks.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cache_err_int.c.obj -c /home/mithras/esp/esp-idf/components/esp32/cache_err_int.c", + "file": "/home/mithras/esp/esp-idf/components/esp32/cache_err_int.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cache_sram_mmu.c.obj -c /home/mithras/esp/esp-idf/components/esp32/cache_sram_mmu.c", + "file": "/home/mithras/esp/esp-idf/components/esp32/cache_sram_mmu.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp32/CMakeFiles/__idf_esp32.dir/clk.c.obj -c /home/mithras/esp/esp-idf/components/esp32/clk.c", + "file": "/home/mithras/esp/esp-idf/components/esp32/clk.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -fno-stack-protector -o esp-idf/esp32/CMakeFiles/__idf_esp32.dir/cpu_start.c.obj -c /home/mithras/esp/esp-idf/components/esp32/cpu_start.c", + "file": "/home/mithras/esp/esp-idf/components/esp32/cpu_start.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp32/CMakeFiles/__idf_esp32.dir/crosscore_int.c.obj -c /home/mithras/esp/esp-idf/components/esp32/crosscore_int.c", + "file": "/home/mithras/esp/esp-idf/components/esp32/crosscore_int.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp32/CMakeFiles/__idf_esp32.dir/dport_access.c.obj -c /home/mithras/esp/esp-idf/components/esp32/dport_access.c", + "file": "/home/mithras/esp/esp-idf/components/esp32/dport_access.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp32/CMakeFiles/__idf_esp32.dir/dport_panic_highint_hdl.S.obj -c /home/mithras/esp/esp-idf/components/esp32/dport_panic_highint_hdl.S", + "file": "/home/mithras/esp/esp-idf/components/esp32/dport_panic_highint_hdl.S" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp32/CMakeFiles/__idf_esp32.dir/esp_himem.c.obj -c /home/mithras/esp/esp-idf/components/esp32/esp_himem.c", + "file": "/home/mithras/esp/esp-idf/components/esp32/esp_himem.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp32/CMakeFiles/__idf_esp32.dir/hw_random.c.obj -c /home/mithras/esp/esp-idf/components/esp32/hw_random.c", + "file": "/home/mithras/esp/esp-idf/components/esp32/hw_random.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp32/CMakeFiles/__idf_esp32.dir/int_wdt.c.obj -c /home/mithras/esp/esp-idf/components/esp32/int_wdt.c", + "file": "/home/mithras/esp/esp-idf/components/esp32/int_wdt.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp32/CMakeFiles/__idf_esp32.dir/intr_alloc.c.obj -c /home/mithras/esp/esp-idf/components/esp32/intr_alloc.c", + "file": "/home/mithras/esp/esp-idf/components/esp32/intr_alloc.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp32/CMakeFiles/__idf_esp32.dir/panic.c.obj -c /home/mithras/esp/esp-idf/components/esp32/panic.c", + "file": "/home/mithras/esp/esp-idf/components/esp32/panic.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp32/CMakeFiles/__idf_esp32.dir/pm_esp32.c.obj -c /home/mithras/esp/esp-idf/components/esp32/pm_esp32.c", + "file": "/home/mithras/esp/esp-idf/components/esp32/pm_esp32.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp32/CMakeFiles/__idf_esp32.dir/pm_trace.c.obj -c /home/mithras/esp/esp-idf/components/esp32/pm_trace.c", + "file": "/home/mithras/esp/esp-idf/components/esp32/pm_trace.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp32/CMakeFiles/__idf_esp32.dir/reset_reason.c.obj -c /home/mithras/esp/esp-idf/components/esp32/reset_reason.c", + "file": "/home/mithras/esp/esp-idf/components/esp32/reset_reason.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp32/CMakeFiles/__idf_esp32.dir/sleep_modes.c.obj -c /home/mithras/esp/esp-idf/components/esp32/sleep_modes.c", + "file": "/home/mithras/esp/esp-idf/components/esp32/sleep_modes.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp32/CMakeFiles/__idf_esp32.dir/spiram.c.obj -c /home/mithras/esp/esp-idf/components/esp32/spiram.c", + "file": "/home/mithras/esp/esp-idf/components/esp32/spiram.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp32/CMakeFiles/__idf_esp32.dir/spiram_psram.c.obj -c /home/mithras/esp/esp-idf/components/esp32/spiram_psram.c", + "file": "/home/mithras/esp/esp-idf/components/esp32/spiram_psram.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp32/CMakeFiles/__idf_esp32.dir/system_api_esp32.c.obj -c /home/mithras/esp/esp-idf/components/esp32/system_api_esp32.c", + "file": "/home/mithras/esp/esp-idf/components/esp32/system_api_esp32.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp32/CMakeFiles/__idf_esp32.dir/task_wdt.c.obj -c /home/mithras/esp/esp-idf/components/esp32/task_wdt.c", + "file": "/home/mithras/esp/esp-idf/components/esp32/task_wdt.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/ulp/include -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/brownout.c.obj -c /home/mithras/esp/esp-idf/components/esp_common/src/brownout.c", + "file": "/home/mithras/esp/esp-idf/components/esp_common/src/brownout.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/ulp/include -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/dbg_stubs.c.obj -c /home/mithras/esp/esp-idf/components/esp_common/src/dbg_stubs.c", + "file": "/home/mithras/esp/esp-idf/components/esp_common/src/dbg_stubs.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/ulp/include -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj -c /home/mithras/esp/esp-idf/components/esp_common/src/esp_err_to_name.c", + "file": "/home/mithras/esp/esp-idf/components/esp_common/src/esp_err_to_name.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/ulp/include -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/freertos_hooks.c.obj -c /home/mithras/esp/esp-idf/components/esp_common/src/freertos_hooks.c", + "file": "/home/mithras/esp/esp-idf/components/esp_common/src/freertos_hooks.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/ulp/include -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/mac_addr.c.obj -c /home/mithras/esp/esp-idf/components/esp_common/src/mac_addr.c", + "file": "/home/mithras/esp/esp-idf/components/esp_common/src/mac_addr.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/ulp/include -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/pm_locks.c.obj -c /home/mithras/esp/esp-idf/components/esp_common/src/pm_locks.c", + "file": "/home/mithras/esp/esp-idf/components/esp_common/src/pm_locks.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/ulp/include -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -fno-stack-protector -o esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/stack_check.c.obj -c /home/mithras/esp/esp-idf/components/esp_common/src/stack_check.c", + "file": "/home/mithras/esp/esp-idf/components/esp_common/src/stack_check.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/ulp/include -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/system_api.c.obj -c /home/mithras/esp/esp-idf/components/esp_common/src/system_api.c", + "file": "/home/mithras/esp/esp-idf/components/esp_common/src/system_api.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/ulp/include -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/ipc.c.obj -c /home/mithras/esp/esp-idf/components/esp_common/src/ipc.c", + "file": "/home/mithras/esp/esp-idf/components/esp_common/src/ipc.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/esp_timer/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj -c /home/mithras/esp/esp-idf/components/esp_timer/src/esp_timer.c", + "file": "/home/mithras/esp/esp-idf/components/esp_timer/src/esp_timer.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/esp_timer/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj -c /home/mithras/esp/esp-idf/components/esp_timer/src/ets_timer_legacy.c", + "file": "/home/mithras/esp/esp-idf/components/esp_timer/src/ets_timer_legacy.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/esp_timer/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_lac.c.obj -c /home/mithras/esp/esp-idf/components/esp_timer/src/esp_timer_impl_lac.c", + "file": "/home/mithras/esp/esp-idf/components/esp_timer/src/esp_timer_impl_lac.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/freertos/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa -I/home/mithras/esp/esp-idf/components/freertos -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/port.c.obj -c /home/mithras/esp/esp-idf/components/freertos/xtensa/port.c", + "file": "/home/mithras/esp/esp-idf/components/freertos/xtensa/port.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/freertos/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa -I/home/mithras/esp/esp-idf/components/freertos -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/portasm.S.obj -c /home/mithras/esp/esp-idf/components/freertos/xtensa/portasm.S", + "file": "/home/mithras/esp/esp-idf/components/freertos/xtensa/portasm.S" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/freertos/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa -I/home/mithras/esp/esp-idf/components/freertos -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_context.S.obj -c /home/mithras/esp/esp-idf/components/freertos/xtensa/xtensa_context.S", + "file": "/home/mithras/esp/esp-idf/components/freertos/xtensa/xtensa_context.S" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/freertos/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa -I/home/mithras/esp/esp-idf/components/freertos -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_init.c.obj -c /home/mithras/esp/esp-idf/components/freertos/xtensa/xtensa_init.c", + "file": "/home/mithras/esp/esp-idf/components/freertos/xtensa/xtensa_init.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/freertos/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa -I/home/mithras/esp/esp-idf/components/freertos -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_intr_asm.S.obj -c /home/mithras/esp/esp-idf/components/freertos/xtensa/xtensa_intr_asm.S", + "file": "/home/mithras/esp/esp-idf/components/freertos/xtensa/xtensa_intr_asm.S" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/freertos/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa -I/home/mithras/esp/esp-idf/components/freertos -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_intr.c.obj -c /home/mithras/esp/esp-idf/components/freertos/xtensa/xtensa_intr.c", + "file": "/home/mithras/esp/esp-idf/components/freertos/xtensa/xtensa_intr.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/freertos/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa -I/home/mithras/esp/esp-idf/components/freertos -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_overlay_os_hook.c.obj -c /home/mithras/esp/esp-idf/components/freertos/xtensa/xtensa_overlay_os_hook.c", + "file": "/home/mithras/esp/esp-idf/components/freertos/xtensa/xtensa_overlay_os_hook.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/freertos/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa -I/home/mithras/esp/esp-idf/components/freertos -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_vector_defaults.S.obj -c /home/mithras/esp/esp-idf/components/freertos/xtensa/xtensa_vector_defaults.S", + "file": "/home/mithras/esp/esp-idf/components/freertos/xtensa/xtensa_vector_defaults.S" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/freertos/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa -I/home/mithras/esp/esp-idf/components/freertos -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freertos/CMakeFiles/__idf_freertos.dir/xtensa/xtensa_vectors.S.obj -c /home/mithras/esp/esp-idf/components/freertos/xtensa/xtensa_vectors.S", + "file": "/home/mithras/esp/esp-idf/components/freertos/xtensa/xtensa_vectors.S" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/freertos/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa -I/home/mithras/esp/esp-idf/components/freertos -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freertos/CMakeFiles/__idf_freertos.dir/croutine.c.obj -c /home/mithras/esp/esp-idf/components/freertos/croutine.c", + "file": "/home/mithras/esp/esp-idf/components/freertos/croutine.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -D_ESP_FREERTOS_INTERNAL -Iconfig -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/freertos/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa -I/home/mithras/esp/esp-idf/components/freertos -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freertos/CMakeFiles/__idf_freertos.dir/event_groups.c.obj -c /home/mithras/esp/esp-idf/components/freertos/event_groups.c", + "file": "/home/mithras/esp/esp-idf/components/freertos/event_groups.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/freertos/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa -I/home/mithras/esp/esp-idf/components/freertos -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-openocd.c.obj -c /home/mithras/esp/esp-idf/components/freertos/FreeRTOS-openocd.c", + "file": "/home/mithras/esp/esp-idf/components/freertos/FreeRTOS-openocd.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/freertos/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa -I/home/mithras/esp/esp-idf/components/freertos -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freertos/CMakeFiles/__idf_freertos.dir/list.c.obj -c /home/mithras/esp/esp-idf/components/freertos/list.c", + "file": "/home/mithras/esp/esp-idf/components/freertos/list.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -D_ESP_FREERTOS_INTERNAL -Iconfig -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/freertos/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa -I/home/mithras/esp/esp-idf/components/freertos -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freertos/CMakeFiles/__idf_freertos.dir/queue.c.obj -c /home/mithras/esp/esp-idf/components/freertos/queue.c", + "file": "/home/mithras/esp/esp-idf/components/freertos/queue.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -D_ESP_FREERTOS_INTERNAL -Iconfig -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/freertos/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa -I/home/mithras/esp/esp-idf/components/freertos -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freertos/CMakeFiles/__idf_freertos.dir/tasks.c.obj -c /home/mithras/esp/esp-idf/components/freertos/tasks.c", + "file": "/home/mithras/esp/esp-idf/components/freertos/tasks.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -D_ESP_FREERTOS_INTERNAL -Iconfig -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/freertos/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include/freertos -I/home/mithras/esp/esp-idf/components/freertos/xtensa -I/home/mithras/esp/esp-idf/components/freertos -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freertos/CMakeFiles/__idf_freertos.dir/timers.c.obj -c /home/mithras/esp/esp-idf/components/freertos/timers.c", + "file": "/home/mithras/esp/esp-idf/components/freertos/timers.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj -c /home/mithras/esp/esp-idf/components/vfs/vfs.c", + "file": "/home/mithras/esp/esp-idf/components/vfs/vfs.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_uart.c.obj -c /home/mithras/esp/esp-idf/components/vfs/vfs_uart.c", + "file": "/home/mithras/esp/esp-idf/components/vfs/vfs_uart.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj -c /home/mithras/esp/esp-idf/components/vfs/vfs_semihost.c", + "file": "/home/mithras/esp/esp-idf/components/vfs/vfs_semihost.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -fno-builtin -o esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj -c /home/mithras/esp/esp-idf/components/newlib/heap.c", + "file": "/home/mithras/esp/esp-idf/components/newlib/heap.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj -c /home/mithras/esp/esp-idf/components/newlib/locks.c", + "file": "/home/mithras/esp/esp-idf/components/newlib/locks.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj -c /home/mithras/esp/esp-idf/components/newlib/poll.c", + "file": "/home/mithras/esp/esp-idf/components/newlib/poll.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pread.c.obj -c /home/mithras/esp/esp-idf/components/newlib/pread.c", + "file": "/home/mithras/esp/esp-idf/components/newlib/pread.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pwrite.c.obj -c /home/mithras/esp/esp-idf/components/newlib/pwrite.c", + "file": "/home/mithras/esp/esp-idf/components/newlib/pwrite.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj -c /home/mithras/esp/esp-idf/components/newlib/pthread.c", + "file": "/home/mithras/esp/esp-idf/components/newlib/pthread.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj -c /home/mithras/esp/esp-idf/components/newlib/random.c", + "file": "/home/mithras/esp/esp-idf/components/newlib/random.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj -c /home/mithras/esp/esp-idf/components/newlib/reent_init.c", + "file": "/home/mithras/esp/esp-idf/components/newlib/reent_init.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/newlib/CMakeFiles/__idf_newlib.dir/select.c.obj -c /home/mithras/esp/esp-idf/components/newlib/select.c", + "file": "/home/mithras/esp/esp-idf/components/newlib/select.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscall_table.c.obj -c /home/mithras/esp/esp-idf/components/newlib/syscall_table.c", + "file": "/home/mithras/esp/esp-idf/components/newlib/syscall_table.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj -c /home/mithras/esp/esp-idf/components/newlib/syscalls.c", + "file": "/home/mithras/esp/esp-idf/components/newlib/syscalls.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj -c /home/mithras/esp/esp-idf/components/newlib/termios.c", + "file": "/home/mithras/esp/esp-idf/components/newlib/termios.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj -c /home/mithras/esp/esp-idf/components/newlib/time.c", + "file": "/home/mithras/esp/esp-idf/components/newlib/time.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/newlib/CMakeFiles/__idf_newlib.dir/utime.c.obj -c /home/mithras/esp/esp-idf/components/newlib/utime.c", + "file": "/home/mithras/esp/esp-idf/components/newlib/utime.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++ -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/pthread/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj -c /home/mithras/esp/esp-idf/components/cxx/cxx_exception_stubs.cpp", + "file": "/home/mithras/esp/esp-idf/components/cxx/cxx_exception_stubs.cpp" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++ -Iconfig -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/pthread/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj -c /home/mithras/esp/esp-idf/components/cxx/cxx_guards.cpp", + "file": "/home/mithras/esp/esp-idf/components/cxx/cxx_guards.cpp" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -fno-profile-arcs -fno-test-coverage -o esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj -c /home/mithras/esp/esp-idf/components/app_trace/app_trace.c", + "file": "/home/mithras/esp/esp-idf/components/app_trace/app_trace.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -fno-profile-arcs -fno-test-coverage -o esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj -c /home/mithras/esp/esp-idf/components/app_trace/app_trace_util.c", + "file": "/home/mithras/esp/esp-idf/components/app_trace/app_trace_util.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -fno-profile-arcs -fno-test-coverage -o esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj -c /home/mithras/esp/esp-idf/components/app_trace/host_file_io.c", + "file": "/home/mithras/esp/esp-idf/components/app_trace/host_file_io.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -fno-profile-arcs -fno-test-coverage -o esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/gcov/gcov_rtio.c.obj -c /home/mithras/esp/esp-idf/components/app_trace/gcov/gcov_rtio.c", + "file": "/home/mithras/esp/esp-idf/components/app_trace/gcov/gcov_rtio.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++ -Iconfig -I/home/mithras/esp/esp-idf/components/asio/asio/asio/include -I/home/mithras/esp/esp-idf/components/asio/port/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/asio/CMakeFiles/__idf_asio.dir/asio/asio/src/asio.cpp.obj -c /home/mithras/esp/esp-idf/components/asio/asio/asio/src/asio.cpp", + "file": "/home/mithras/esp/esp-idf/components/asio/asio/asio/src/asio.cpp" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -D__GLIBC__ -Iconfig -I/home/mithras/esp/esp-idf/components/cbor/port/include -I/home/mithras/esp/esp-idf/components/cbor/tinycbor/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-discarded-qualifiers -Wno-maybe-uninitialized -o esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborencoder_close_container_checked.c.obj -c /home/mithras/esp/esp-idf/components/cbor/tinycbor/src/cborencoder_close_container_checked.c", + "file": "/home/mithras/esp/esp-idf/components/cbor/tinycbor/src/cborencoder_close_container_checked.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -D__GLIBC__ -Iconfig -I/home/mithras/esp/esp-idf/components/cbor/port/include -I/home/mithras/esp/esp-idf/components/cbor/tinycbor/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-discarded-qualifiers -Wno-maybe-uninitialized -o esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborencoder.c.obj -c /home/mithras/esp/esp-idf/components/cbor/tinycbor/src/cborencoder.c", + "file": "/home/mithras/esp/esp-idf/components/cbor/tinycbor/src/cborencoder.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -D__GLIBC__ -Iconfig -I/home/mithras/esp/esp-idf/components/cbor/port/include -I/home/mithras/esp/esp-idf/components/cbor/tinycbor/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-discarded-qualifiers -Wno-maybe-uninitialized -o esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborerrorstrings.c.obj -c /home/mithras/esp/esp-idf/components/cbor/tinycbor/src/cborerrorstrings.c", + "file": "/home/mithras/esp/esp-idf/components/cbor/tinycbor/src/cborerrorstrings.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -D__GLIBC__ -Iconfig -I/home/mithras/esp/esp-idf/components/cbor/port/include -I/home/mithras/esp/esp-idf/components/cbor/tinycbor/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-discarded-qualifiers -Wno-maybe-uninitialized -o esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborparser_dup_string.c.obj -c /home/mithras/esp/esp-idf/components/cbor/tinycbor/src/cborparser_dup_string.c", + "file": "/home/mithras/esp/esp-idf/components/cbor/tinycbor/src/cborparser_dup_string.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -D__GLIBC__ -Iconfig -I/home/mithras/esp/esp-idf/components/cbor/port/include -I/home/mithras/esp/esp-idf/components/cbor/tinycbor/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-discarded-qualifiers -Wno-maybe-uninitialized -o esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborparser.c.obj -c /home/mithras/esp/esp-idf/components/cbor/tinycbor/src/cborparser.c", + "file": "/home/mithras/esp/esp-idf/components/cbor/tinycbor/src/cborparser.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -D__GLIBC__ -Iconfig -I/home/mithras/esp/esp-idf/components/cbor/port/include -I/home/mithras/esp/esp-idf/components/cbor/tinycbor/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-discarded-qualifiers -Wno-maybe-uninitialized -o esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborpretty_stdio.c.obj -c /home/mithras/esp/esp-idf/components/cbor/tinycbor/src/cborpretty_stdio.c", + "file": "/home/mithras/esp/esp-idf/components/cbor/tinycbor/src/cborpretty_stdio.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -D__GLIBC__ -Iconfig -I/home/mithras/esp/esp-idf/components/cbor/port/include -I/home/mithras/esp/esp-idf/components/cbor/tinycbor/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-discarded-qualifiers -Wno-maybe-uninitialized -o esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborpretty.c.obj -c /home/mithras/esp/esp-idf/components/cbor/tinycbor/src/cborpretty.c", + "file": "/home/mithras/esp/esp-idf/components/cbor/tinycbor/src/cborpretty.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -D__GLIBC__ -Iconfig -I/home/mithras/esp/esp-idf/components/cbor/port/include -I/home/mithras/esp/esp-idf/components/cbor/tinycbor/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-discarded-qualifiers -Wno-maybe-uninitialized -o esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cbortojson.c.obj -c /home/mithras/esp/esp-idf/components/cbor/tinycbor/src/cbortojson.c", + "file": "/home/mithras/esp/esp-idf/components/cbor/tinycbor/src/cbortojson.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -D__GLIBC__ -Iconfig -I/home/mithras/esp/esp-idf/components/cbor/port/include -I/home/mithras/esp/esp-idf/components/cbor/tinycbor/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-discarded-qualifiers -Wno-maybe-uninitialized -o esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/cborvalidation.c.obj -c /home/mithras/esp/esp-idf/components/cbor/tinycbor/src/cborvalidation.c", + "file": "/home/mithras/esp/esp-idf/components/cbor/tinycbor/src/cborvalidation.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -D__GLIBC__ -Iconfig -I/home/mithras/esp/esp-idf/components/cbor/port/include -I/home/mithras/esp/esp-idf/components/cbor/tinycbor/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-discarded-qualifiers -Wno-maybe-uninitialized -o esp-idf/cbor/CMakeFiles/__idf_cbor.dir/tinycbor/src/open_memstream.c.obj -c /home/mithras/esp/esp-idf/components/cbor/tinycbor/src/open_memstream.c", + "file": "/home/mithras/esp/esp-idf/components/cbor/tinycbor/src/open_memstream.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DWITH_POSIX -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/address.c.obj -c /home/mithras/esp/esp-idf/components/coap/libcoap/src/address.c", + "file": "/home/mithras/esp/esp-idf/components/coap/libcoap/src/address.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DWITH_POSIX -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/async.c.obj -c /home/mithras/esp/esp-idf/components/coap/libcoap/src/async.c", + "file": "/home/mithras/esp/esp-idf/components/coap/libcoap/src/async.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DWITH_POSIX -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/block.c.obj -c /home/mithras/esp/esp-idf/components/coap/libcoap/src/block.c", + "file": "/home/mithras/esp/esp-idf/components/coap/libcoap/src/block.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DWITH_POSIX -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_event.c.obj -c /home/mithras/esp/esp-idf/components/coap/libcoap/src/coap_event.c", + "file": "/home/mithras/esp/esp-idf/components/coap/libcoap/src/coap_event.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DWITH_POSIX -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_hashkey.c.obj -c /home/mithras/esp/esp-idf/components/coap/libcoap/src/coap_hashkey.c", + "file": "/home/mithras/esp/esp-idf/components/coap/libcoap/src/coap_hashkey.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DWITH_POSIX -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_session.c.obj -c /home/mithras/esp/esp-idf/components/coap/libcoap/src/coap_session.c", + "file": "/home/mithras/esp/esp-idf/components/coap/libcoap/src/coap_session.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DWITH_POSIX -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_time.c.obj -c /home/mithras/esp/esp-idf/components/coap/libcoap/src/coap_time.c", + "file": "/home/mithras/esp/esp-idf/components/coap/libcoap/src/coap_time.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DWITH_POSIX -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-format-truncation -o esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_debug.c.obj -c /home/mithras/esp/esp-idf/components/coap/port/coap_debug.c", + "file": "/home/mithras/esp/esp-idf/components/coap/port/coap_debug.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DWITH_POSIX -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/encode.c.obj -c /home/mithras/esp/esp-idf/components/coap/libcoap/src/encode.c", + "file": "/home/mithras/esp/esp-idf/components/coap/libcoap/src/encode.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DWITH_POSIX -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/mem.c.obj -c /home/mithras/esp/esp-idf/components/coap/libcoap/src/mem.c", + "file": "/home/mithras/esp/esp-idf/components/coap/libcoap/src/mem.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DWITH_POSIX -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/net.c.obj -c /home/mithras/esp/esp-idf/components/coap/libcoap/src/net.c", + "file": "/home/mithras/esp/esp-idf/components/coap/libcoap/src/net.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DWITH_POSIX -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/option.c.obj -c /home/mithras/esp/esp-idf/components/coap/libcoap/src/option.c", + "file": "/home/mithras/esp/esp-idf/components/coap/libcoap/src/option.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DWITH_POSIX -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/pdu.c.obj -c /home/mithras/esp/esp-idf/components/coap/libcoap/src/pdu.c", + "file": "/home/mithras/esp/esp-idf/components/coap/libcoap/src/pdu.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DWITH_POSIX -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/resource.c.obj -c /home/mithras/esp/esp-idf/components/coap/libcoap/src/resource.c", + "file": "/home/mithras/esp/esp-idf/components/coap/libcoap/src/resource.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DWITH_POSIX -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/str.c.obj -c /home/mithras/esp/esp-idf/components/coap/libcoap/src/str.c", + "file": "/home/mithras/esp/esp-idf/components/coap/libcoap/src/str.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DWITH_POSIX -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/subscribe.c.obj -c /home/mithras/esp/esp-idf/components/coap/libcoap/src/subscribe.c", + "file": "/home/mithras/esp/esp-idf/components/coap/libcoap/src/subscribe.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DWITH_POSIX -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/uri.c.obj -c /home/mithras/esp/esp-idf/components/coap/libcoap/src/uri.c", + "file": "/home/mithras/esp/esp-idf/components/coap/libcoap/src/uri.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DWITH_POSIX -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/coap/CMakeFiles/__idf_coap.dir/libcoap/src/coap_io.c.obj -c /home/mithras/esp/esp-idf/components/coap/libcoap/src/coap_io.c", + "file": "/home/mithras/esp/esp-idf/components/coap/libcoap/src/coap_io.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DWITH_POSIX -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_notls.c.obj -c /home/mithras/esp/esp-idf/components/coap/port/coap_notls.c", + "file": "/home/mithras/esp/esp-idf/components/coap/port/coap_notls.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DWITH_POSIX -Iconfig -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/coap/CMakeFiles/__idf_coap.dir/port/coap_mbedtls.c.obj -c /home/mithras/esp/esp-idf/components/coap/port/coap_mbedtls.c", + "file": "/home/mithras/esp/esp-idf/components/coap/port/coap_mbedtls.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj -c /home/mithras/esp/esp-idf/components/console/commands.c", + "file": "/home/mithras/esp/esp-idf/components/console/commands.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl.c.obj -c /home/mithras/esp/esp-idf/components/console/esp_console_repl.c", + "file": "/home/mithras/esp/esp-idf/components/console/esp_console_repl.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj -c /home/mithras/esp/esp-idf/components/console/split_argv.c", + "file": "/home/mithras/esp/esp-idf/components/console/split_argv.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj -c /home/mithras/esp/esp-idf/components/console/argtable3/argtable3.c", + "file": "/home/mithras/esp/esp-idf/components/console/argtable3/argtable3.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj -c /home/mithras/esp/esp-idf/components/console/linenoise/linenoise.c", + "file": "/home/mithras/esp/esp-idf/components/console/linenoise/linenoise.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_buf.c.obj -c /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_buf.c", + "file": "/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_buf.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_callbacks.c.obj -c /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_callbacks.c", + "file": "/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_callbacks.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_debug.c.obj -c /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_debug.c", + "file": "/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_debug.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_frame.c.obj -c /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_frame.c", + "file": "/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_frame.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_hd.c.obj -c /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_hd.c", + "file": "/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_hd.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_hd_huffman.c.obj -c /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_hd_huffman.c", + "file": "/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_hd_huffman.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_hd_huffman_data.c.obj -c /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_hd_huffman_data.c", + "file": "/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_hd_huffman_data.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_helper.c.obj -c /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_helper.c", + "file": "/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_helper.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_http.c.obj -c /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_http.c", + "file": "/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_http.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_map.c.obj -c /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_map.c", + "file": "/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_map.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_mem.c.obj -c /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_mem.c", + "file": "/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_mem.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_npn.c.obj -c /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_npn.c", + "file": "/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_npn.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_option.c.obj -c /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_option.c", + "file": "/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_option.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_outbound_item.c.obj -c /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_outbound_item.c", + "file": "/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_outbound_item.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_pq.c.obj -c /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_pq.c", + "file": "/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_pq.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_priority_spec.c.obj -c /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_priority_spec.c", + "file": "/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_priority_spec.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_queue.c.obj -c /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_queue.c", + "file": "/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_queue.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_rcbuf.c.obj -c /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_rcbuf.c", + "file": "/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_rcbuf.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_session.c.obj -c /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_session.c", + "file": "/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_session.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_stream.c.obj -c /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_stream.c", + "file": "/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_stream.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_submit.c.obj -c /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_submit.c", + "file": "/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_submit.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/nghttp2/lib/nghttp2_version.c.obj -c /home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_version.c", + "file": "/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/nghttp2_version.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -Iconfig -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/nghttp/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/nghttp/CMakeFiles/__idf_nghttp.dir/port/http_parser.c.obj -c /home/mithras/esp/esp-idf/components/nghttp/port/http_parser.c", + "file": "/home/mithras/esp/esp-idf/components/nghttp/port/http_parser.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/esp-tls/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj -c /home/mithras/esp/esp-idf/components/esp-tls/esp_tls.c", + "file": "/home/mithras/esp/esp-idf/components/esp-tls/esp_tls.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/esp-tls/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj -c /home/mithras/esp/esp-idf/components/esp-tls/esp_tls_mbedtls.c", + "file": "/home/mithras/esp/esp-idf/components/esp-tls/esp_tls_mbedtls.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/esp_adc_cal/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_adc_cal/CMakeFiles/__idf_esp_adc_cal.dir/esp_adc_cal.c.obj -c /home/mithras/esp/esp-idf/components/esp_adc_cal/esp_adc_cal.c", + "file": "/home/mithras/esp/esp-idf/components/esp_adc_cal/esp_adc_cal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/esp_gdbstub/include -I/home/mithras/esp/esp-idf/components/esp_gdbstub/private_include -I/home/mithras/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/mithras/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj -c /home/mithras/esp/esp-idf/components/esp_gdbstub/src/gdbstub.c", + "file": "/home/mithras/esp/esp-idf/components/esp_gdbstub/src/gdbstub.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/esp_gdbstub/include -I/home/mithras/esp/esp-idf/components/esp_gdbstub/private_include -I/home/mithras/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/mithras/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj -c /home/mithras/esp/esp-idf/components/esp_gdbstub/src/packet.c", + "file": "/home/mithras/esp/esp-idf/components/esp_gdbstub/src/packet.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/esp_gdbstub/include -I/home/mithras/esp/esp-idf/components/esp_gdbstub/private_include -I/home/mithras/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/mithras/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/esp32/gdbstub_esp32.c.obj -c /home/mithras/esp/esp-idf/components/esp_gdbstub/esp32/gdbstub_esp32.c", + "file": "/home/mithras/esp/esp-idf/components/esp_gdbstub/esp32/gdbstub_esp32.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/esp_gdbstub/include -I/home/mithras/esp/esp-idf/components/esp_gdbstub/private_include -I/home/mithras/esp/esp-idf/components/esp_gdbstub/esp32 -I/home/mithras/esp/esp-idf/components/esp_gdbstub/xtensa -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/xtensa/gdbstub_xtensa.c.obj -c /home/mithras/esp/esp-idf/components/esp_gdbstub/xtensa/gdbstub_xtensa.c", + "file": "/home/mithras/esp/esp-idf/components/esp_gdbstub/xtensa/gdbstub_xtensa.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/tcp_transport/include -I/home/mithras/esp/esp-idf/components/tcp_transport/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj -c /home/mithras/esp/esp-idf/components/tcp_transport/transport.c", + "file": "/home/mithras/esp/esp-idf/components/tcp_transport/transport.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/tcp_transport/include -I/home/mithras/esp/esp-idf/components/tcp_transport/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj -c /home/mithras/esp/esp-idf/components/tcp_transport/transport_ssl.c", + "file": "/home/mithras/esp/esp-idf/components/tcp_transport/transport_ssl.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/tcp_transport/include -I/home/mithras/esp/esp-idf/components/tcp_transport/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_tcp.c.obj -c /home/mithras/esp/esp-idf/components/tcp_transport/transport_tcp.c", + "file": "/home/mithras/esp/esp-idf/components/tcp_transport/transport_tcp.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/tcp_transport/include -I/home/mithras/esp/esp-idf/components/tcp_transport/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj -c /home/mithras/esp/esp-idf/components/tcp_transport/transport_ws.c", + "file": "/home/mithras/esp/esp-idf/components/tcp_transport/transport_ws.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/tcp_transport/include -I/home/mithras/esp/esp-idf/components/tcp_transport/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_utils.c.obj -c /home/mithras/esp/esp-idf/components/tcp_transport/transport_utils.c", + "file": "/home/mithras/esp/esp-idf/components/tcp_transport/transport_utils.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/esp_http_client/lib/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/tcp_transport/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj -c /home/mithras/esp/esp-idf/components/esp_http_client/esp_http_client.c", + "file": "/home/mithras/esp/esp-idf/components/esp_http_client/esp_http_client.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/esp_http_client/lib/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/tcp_transport/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj -c /home/mithras/esp/esp-idf/components/esp_http_client/lib/http_auth.c", + "file": "/home/mithras/esp/esp-idf/components/esp_http_client/lib/http_auth.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/esp_http_client/lib/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/tcp_transport/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj -c /home/mithras/esp/esp-idf/components/esp_http_client/lib/http_header.c", + "file": "/home/mithras/esp/esp-idf/components/esp_http_client/lib/http_header.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/esp_http_client/lib/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/tcp_transport/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj -c /home/mithras/esp/esp-idf/components/esp_http_client/lib/http_utils.c", + "file": "/home/mithras/esp/esp-idf/components/esp_http_client/lib/http_utils.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -Iconfig -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/esp_http_server/src/port/esp32 -I/home/mithras/esp/esp-idf/components/esp_http_server/src/util -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj -c /home/mithras/esp/esp-idf/components/esp_http_server/src/httpd_main.c", + "file": "/home/mithras/esp/esp-idf/components/esp_http_server/src/httpd_main.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -Iconfig -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/esp_http_server/src/port/esp32 -I/home/mithras/esp/esp-idf/components/esp_http_server/src/util -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj -c /home/mithras/esp/esp-idf/components/esp_http_server/src/httpd_parse.c", + "file": "/home/mithras/esp/esp-idf/components/esp_http_server/src/httpd_parse.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -Iconfig -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/esp_http_server/src/port/esp32 -I/home/mithras/esp/esp-idf/components/esp_http_server/src/util -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj -c /home/mithras/esp/esp-idf/components/esp_http_server/src/httpd_sess.c", + "file": "/home/mithras/esp/esp-idf/components/esp_http_server/src/httpd_sess.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -Iconfig -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/esp_http_server/src/port/esp32 -I/home/mithras/esp/esp-idf/components/esp_http_server/src/util -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj -c /home/mithras/esp/esp-idf/components/esp_http_server/src/httpd_txrx.c", + "file": "/home/mithras/esp/esp-idf/components/esp_http_server/src/httpd_txrx.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -Iconfig -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/esp_http_server/src/port/esp32 -I/home/mithras/esp/esp-idf/components/esp_http_server/src/util -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj -c /home/mithras/esp/esp-idf/components/esp_http_server/src/httpd_uri.c", + "file": "/home/mithras/esp/esp-idf/components/esp_http_server/src/httpd_uri.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -Iconfig -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/esp_http_server/src/port/esp32 -I/home/mithras/esp/esp-idf/components/esp_http_server/src/util -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj -c /home/mithras/esp/esp-idf/components/esp_http_server/src/util/ctrl_sock.c", + "file": "/home/mithras/esp/esp-idf/components/esp_http_server/src/util/ctrl_sock.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -Iconfig -I/home/mithras/esp/esp-idf/components/esp_https_ota/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj -c /home/mithras/esp/esp-idf/components/esp_https_ota/src/esp_https_ota.c", + "file": "/home/mithras/esp/esp-idf/components/esp_https_ota/src/esp_https_ota.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp_https_server/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_https_server/CMakeFiles/__idf_esp_https_server.dir/src/https_server.c.obj -c /home/mithras/esp/esp-idf/components/esp_https_server/src/https_server.c", + "file": "/home/mithras/esp/esp-idf/components/esp_https_server/src/https_server.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj -c /home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c/protobuf-c/protobuf-c.c", + "file": "/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c/protobuf-c/protobuf-c.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/src/common -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj -c /home/mithras/esp/esp-idf/components/protocomm/src/common/protocomm.c", + "file": "/home/mithras/esp/esp-idf/components/protocomm/src/common/protocomm.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/src/common -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj -c /home/mithras/esp/esp-idf/components/protocomm/src/security/security0.c", + "file": "/home/mithras/esp/esp-idf/components/protocomm/src/security/security0.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/src/common -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj -c /home/mithras/esp/esp-idf/components/protocomm/src/security/security1.c", + "file": "/home/mithras/esp/esp-idf/components/protocomm/src/security/security1.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/src/common -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj -c /home/mithras/esp/esp-idf/components/protocomm/proto-c/constants.pb-c.c", + "file": "/home/mithras/esp/esp-idf/components/protocomm/proto-c/constants.pb-c.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/src/common -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj -c /home/mithras/esp/esp-idf/components/protocomm/proto-c/sec0.pb-c.c", + "file": "/home/mithras/esp/esp-idf/components/protocomm/proto-c/sec0.pb-c.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/src/common -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj -c /home/mithras/esp/esp-idf/components/protocomm/proto-c/sec1.pb-c.c", + "file": "/home/mithras/esp/esp-idf/components/protocomm/proto-c/sec1.pb-c.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/src/common -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj -c /home/mithras/esp/esp-idf/components/protocomm/proto-c/session.pb-c.c", + "file": "/home/mithras/esp/esp-idf/components/protocomm/proto-c/session.pb-c.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/src/common -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj -c /home/mithras/esp/esp-idf/components/protocomm/src/transports/protocomm_console.c", + "file": "/home/mithras/esp/esp-idf/components/protocomm/src/transports/protocomm_console.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/src/common -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj -c /home/mithras/esp/esp-idf/components/protocomm/src/transports/protocomm_httpd.c", + "file": "/home/mithras/esp/esp-idf/components/protocomm/src/transports/protocomm_httpd.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/mdns/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/console -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns.c.obj -c /home/mithras/esp/esp-idf/components/mdns/mdns.c", + "file": "/home/mithras/esp/esp-idf/components/mdns/mdns.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/mdns/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/console -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_console.c.obj -c /home/mithras/esp/esp-idf/components/mdns/mdns_console.c", + "file": "/home/mithras/esp/esp-idf/components/mdns/mdns_console.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/mdns/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/console -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mdns/CMakeFiles/__idf_mdns.dir/mdns_networking.c.obj -c /home/mithras/esp/esp-idf/components/mdns/mdns_networking.c", + "file": "/home/mithras/esp/esp-idf/components/mdns/mdns_networking.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/include -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/proto-c -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/src -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/esp_https_server/include -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/console -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj -c /home/mithras/esp/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl.c", + "file": "/home/mithras/esp/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/include -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/proto-c -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/src -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/esp_https_server/include -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/console -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj -c /home/mithras/esp/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl_handler.c", + "file": "/home/mithras/esp/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl_handler.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/include -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/proto-c -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/src -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/esp_https_server/include -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/console -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj -c /home/mithras/esp/esp-idf/components/esp_local_ctrl/proto-c/esp_local_ctrl.pb-c.c", + "file": "/home/mithras/esp/esp-idf/components/esp_local_ctrl/proto-c/esp_local_ctrl.pb-c.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/include -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/proto-c -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/src -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/esp_https_server/include -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/console -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj -c /home/mithras/esp/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl_transport_httpd.c", + "file": "/home/mithras/esp/esp-idf/components/esp_local_ctrl/src/esp_local_ctrl_transport_httpd.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/sdmmc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj -c /home/mithras/esp/esp-idf/components/sdmmc/sdmmc_cmd.c", + "file": "/home/mithras/esp/esp-idf/components/sdmmc/sdmmc_cmd.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/sdmmc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj -c /home/mithras/esp/esp-idf/components/sdmmc/sdmmc_common.c", + "file": "/home/mithras/esp/esp-idf/components/sdmmc/sdmmc_common.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/sdmmc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj -c /home/mithras/esp/esp-idf/components/sdmmc/sdmmc_init.c", + "file": "/home/mithras/esp/esp-idf/components/sdmmc/sdmmc_init.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/sdmmc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj -c /home/mithras/esp/esp-idf/components/sdmmc/sdmmc_io.c", + "file": "/home/mithras/esp/esp-idf/components/sdmmc/sdmmc_io.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/sdmmc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj -c /home/mithras/esp/esp-idf/components/sdmmc/sdmmc_mmc.c", + "file": "/home/mithras/esp/esp-idf/components/sdmmc/sdmmc_mmc.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/sdmmc/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj -c /home/mithras/esp/esp-idf/components/sdmmc/sdmmc_sd.c", + "file": "/home/mithras/esp/esp-idf/components/sdmmc/sdmmc_sd.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/esp_serial_slave_link/include -I/home/mithras/esp/esp-idf/components/esp_serial_slave_link -I/home/mithras/esp/esp-idf/components/esp_serial_slave_link/include/esp_serial_slave_link -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/sdmmc/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl.c.obj -c /home/mithras/esp/esp-idf/components/esp_serial_slave_link/essl.c", + "file": "/home/mithras/esp/esp-idf/components/esp_serial_slave_link/essl.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/esp_serial_slave_link/include -I/home/mithras/esp/esp-idf/components/esp_serial_slave_link -I/home/mithras/esp/esp-idf/components/esp_serial_slave_link/include/esp_serial_slave_link -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/sdmmc/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_serial_slave_link/CMakeFiles/__idf_esp_serial_slave_link.dir/essl_sdio.c.obj -c /home/mithras/esp/esp-idf/components/esp_serial_slave_link/essl_sdio.c", + "file": "/home/mithras/esp/esp-idf/components/esp_serial_slave_link/essl_sdio.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/esp_websocket_client/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/tcp_transport/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/esp_websocket_client/CMakeFiles/__idf_esp_websocket_client.dir/esp_websocket_client.c.obj -c /home/mithras/esp/esp-idf/components/esp_websocket_client/esp_websocket_client.c", + "file": "/home/mithras/esp/esp-idf/components/esp_websocket_client/esp_websocket_client.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_EXPAT_CONFIG_H -DHAVE_GETRANDOM -Iconfig -I/home/mithras/esp/esp-idf/components/expat/expat/expat/lib -I/home/mithras/esp/esp-idf/components/expat/port/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-implicit-fallthrough -o esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmlparse.c.obj -c /home/mithras/esp/esp-idf/components/expat/expat/expat/lib/xmlparse.c", + "file": "/home/mithras/esp/esp-idf/components/expat/expat/expat/lib/xmlparse.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_EXPAT_CONFIG_H -DHAVE_GETRANDOM -Iconfig -I/home/mithras/esp/esp-idf/components/expat/expat/expat/lib -I/home/mithras/esp/esp-idf/components/expat/port/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-implicit-fallthrough -o esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmlrole.c.obj -c /home/mithras/esp/esp-idf/components/expat/expat/expat/lib/xmlrole.c", + "file": "/home/mithras/esp/esp-idf/components/expat/expat/expat/lib/xmlrole.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_EXPAT_CONFIG_H -DHAVE_GETRANDOM -Iconfig -I/home/mithras/esp/esp-idf/components/expat/expat/expat/lib -I/home/mithras/esp/esp-idf/components/expat/port/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-implicit-fallthrough -o esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmltok.c.obj -c /home/mithras/esp/esp-idf/components/expat/expat/expat/lib/xmltok.c", + "file": "/home/mithras/esp/esp-idf/components/expat/expat/expat/lib/xmltok.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_EXPAT_CONFIG_H -DHAVE_GETRANDOM -Iconfig -I/home/mithras/esp/esp-idf/components/expat/expat/expat/lib -I/home/mithras/esp/esp-idf/components/expat/port/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-implicit-fallthrough -o esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmltok_impl.c.obj -c /home/mithras/esp/esp-idf/components/expat/expat/expat/lib/xmltok_impl.c", + "file": "/home/mithras/esp/esp-idf/components/expat/expat/expat/lib/xmltok_impl.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_EXPAT_CONFIG_H -DHAVE_GETRANDOM -Iconfig -I/home/mithras/esp/esp-idf/components/expat/expat/expat/lib -I/home/mithras/esp/esp-idf/components/expat/port/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-implicit-fallthrough -o esp-idf/expat/CMakeFiles/__idf_expat.dir/expat/expat/lib/xmltok_ns.c.obj -c /home/mithras/esp/esp-idf/components/expat/expat/expat/lib/xmltok_ns.c", + "file": "/home/mithras/esp/esp-idf/components/expat/expat/expat/lib/xmltok_ns.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++ -Iconfig -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/wear_levelling/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj -c /home/mithras/esp/esp-idf/components/wear_levelling/Partition.cpp", + "file": "/home/mithras/esp/esp-idf/components/wear_levelling/Partition.cpp" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++ -Iconfig -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/wear_levelling/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj -c /home/mithras/esp/esp-idf/components/wear_levelling/SPI_Flash.cpp", + "file": "/home/mithras/esp/esp-idf/components/wear_levelling/SPI_Flash.cpp" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++ -Iconfig -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/wear_levelling/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj -c /home/mithras/esp/esp-idf/components/wear_levelling/WL_Ext_Perf.cpp", + "file": "/home/mithras/esp/esp-idf/components/wear_levelling/WL_Ext_Perf.cpp" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++ -Iconfig -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/wear_levelling/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj -c /home/mithras/esp/esp-idf/components/wear_levelling/WL_Ext_Safe.cpp", + "file": "/home/mithras/esp/esp-idf/components/wear_levelling/WL_Ext_Safe.cpp" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++ -Iconfig -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/wear_levelling/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj -c /home/mithras/esp/esp-idf/components/wear_levelling/WL_Flash.cpp", + "file": "/home/mithras/esp/esp-idf/components/wear_levelling/WL_Flash.cpp" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++ -Iconfig -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/wear_levelling/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj -c /home/mithras/esp/esp-idf/components/wear_levelling/crc32.cpp", + "file": "/home/mithras/esp/esp-idf/components/wear_levelling/crc32.cpp" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++ -Iconfig -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/wear_levelling/private_include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu++11 -fno-exceptions -fno-rtti -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj -c /home/mithras/esp/esp-idf/components/wear_levelling/wear_levelling.cpp", + "file": "/home/mithras/esp/esp-idf/components/wear_levelling/wear_levelling.cpp" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/fatfs/diskio -I/home/mithras/esp/esp-idf/components/fatfs/vfs -I/home/mithras/esp/esp-idf/components/fatfs/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/sdmmc/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj -c /home/mithras/esp/esp-idf/components/fatfs/diskio/diskio.c", + "file": "/home/mithras/esp/esp-idf/components/fatfs/diskio/diskio.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/fatfs/diskio -I/home/mithras/esp/esp-idf/components/fatfs/vfs -I/home/mithras/esp/esp-idf/components/fatfs/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/sdmmc/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj -c /home/mithras/esp/esp-idf/components/fatfs/diskio/diskio_rawflash.c", + "file": "/home/mithras/esp/esp-idf/components/fatfs/diskio/diskio_rawflash.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/fatfs/diskio -I/home/mithras/esp/esp-idf/components/fatfs/vfs -I/home/mithras/esp/esp-idf/components/fatfs/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/sdmmc/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj -c /home/mithras/esp/esp-idf/components/fatfs/diskio/diskio_sdmmc.c", + "file": "/home/mithras/esp/esp-idf/components/fatfs/diskio/diskio_sdmmc.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/fatfs/diskio -I/home/mithras/esp/esp-idf/components/fatfs/vfs -I/home/mithras/esp/esp-idf/components/fatfs/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/sdmmc/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj -c /home/mithras/esp/esp-idf/components/fatfs/diskio/diskio_wl.c", + "file": "/home/mithras/esp/esp-idf/components/fatfs/diskio/diskio_wl.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/fatfs/diskio -I/home/mithras/esp/esp-idf/components/fatfs/vfs -I/home/mithras/esp/esp-idf/components/fatfs/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/sdmmc/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj -c /home/mithras/esp/esp-idf/components/fatfs/src/ff.c", + "file": "/home/mithras/esp/esp-idf/components/fatfs/src/ff.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/fatfs/diskio -I/home/mithras/esp/esp-idf/components/fatfs/vfs -I/home/mithras/esp/esp-idf/components/fatfs/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/sdmmc/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj -c /home/mithras/esp/esp-idf/components/fatfs/port/freertos/ffsystem.c", + "file": "/home/mithras/esp/esp-idf/components/fatfs/port/freertos/ffsystem.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/fatfs/diskio -I/home/mithras/esp/esp-idf/components/fatfs/vfs -I/home/mithras/esp/esp-idf/components/fatfs/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/sdmmc/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj -c /home/mithras/esp/esp-idf/components/fatfs/src/ffunicode.c", + "file": "/home/mithras/esp/esp-idf/components/fatfs/src/ffunicode.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/fatfs/diskio -I/home/mithras/esp/esp-idf/components/fatfs/vfs -I/home/mithras/esp/esp-idf/components/fatfs/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/sdmmc/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj -c /home/mithras/esp/esp-idf/components/fatfs/vfs/vfs_fat.c", + "file": "/home/mithras/esp/esp-idf/components/fatfs/vfs/vfs_fat.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/fatfs/diskio -I/home/mithras/esp/esp-idf/components/fatfs/vfs -I/home/mithras/esp/esp-idf/components/fatfs/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/sdmmc/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj -c /home/mithras/esp/esp-idf/components/fatfs/vfs/vfs_fat_sdmmc.c", + "file": "/home/mithras/esp/esp-idf/components/fatfs/vfs/vfs_fat_sdmmc.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/fatfs/diskio -I/home/mithras/esp/esp-idf/components/fatfs/vfs -I/home/mithras/esp/esp-idf/components/fatfs/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/sdmmc/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj -c /home/mithras/esp/esp-idf/components/fatfs/vfs/vfs_fat_spiflash.c", + "file": "/home/mithras/esp/esp-idf/components/fatfs/vfs/vfs_fat_spiflash.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/common/esp_modbus_master.c.obj -c /home/mithras/esp/esp-idf/components/freemodbus/common/esp_modbus_master.c", + "file": "/home/mithras/esp/esp-idf/components/freemodbus/common/esp_modbus_master.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/common/esp_modbus_slave.c.obj -c /home/mithras/esp/esp-idf/components/freemodbus/common/esp_modbus_slave.c", + "file": "/home/mithras/esp/esp-idf/components/freemodbus/common/esp_modbus_slave.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/mb.c.obj -c /home/mithras/esp/esp-idf/components/freemodbus/modbus/mb.c", + "file": "/home/mithras/esp/esp-idf/components/freemodbus/modbus/mb.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/mb_m.c.obj -c /home/mithras/esp/esp-idf/components/freemodbus/modbus/mb_m.c", + "file": "/home/mithras/esp/esp-idf/components/freemodbus/modbus/mb_m.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/ascii/mbascii.c.obj -c /home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii/mbascii.c", + "file": "/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii/mbascii.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/ascii/mbascii_m.c.obj -c /home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii/mbascii_m.c", + "file": "/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii/mbascii_m.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbrtu_m.c.obj -c /home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu/mbrtu_m.c", + "file": "/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu/mbrtu_m.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbrtu.c.obj -c /home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu/mbrtu.c", + "file": "/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu/mbrtu.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/rtu/mbcrc.c.obj -c /home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu/mbcrc.c", + "file": "/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu/mbcrc.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/tcp/mbtcp.c.obj -c /home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp/mbtcp.c", + "file": "/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp/mbtcp.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/port.c.obj -c /home/mithras/esp/esp-idf/components/freemodbus/port/port.c", + "file": "/home/mithras/esp/esp-idf/components/freemodbus/port/port.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portevent.c.obj -c /home/mithras/esp/esp-idf/components/freemodbus/port/portevent.c", + "file": "/home/mithras/esp/esp-idf/components/freemodbus/port/portevent.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portevent_m.c.obj -c /home/mithras/esp/esp-idf/components/freemodbus/port/portevent_m.c", + "file": "/home/mithras/esp/esp-idf/components/freemodbus/port/portevent_m.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portother.c.obj -c /home/mithras/esp/esp-idf/components/freemodbus/port/portother.c", + "file": "/home/mithras/esp/esp-idf/components/freemodbus/port/portother.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portother_m.c.obj -c /home/mithras/esp/esp-idf/components/freemodbus/port/portother_m.c", + "file": "/home/mithras/esp/esp-idf/components/freemodbus/port/portother_m.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portserial.c.obj -c /home/mithras/esp/esp-idf/components/freemodbus/port/portserial.c", + "file": "/home/mithras/esp/esp-idf/components/freemodbus/port/portserial.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/portserial_m.c.obj -c /home/mithras/esp/esp-idf/components/freemodbus/port/portserial_m.c", + "file": "/home/mithras/esp/esp-idf/components/freemodbus/port/portserial_m.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/porttimer.c.obj -c /home/mithras/esp/esp-idf/components/freemodbus/port/porttimer.c", + "file": "/home/mithras/esp/esp-idf/components/freemodbus/port/porttimer.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/port/porttimer_m.c.obj -c /home/mithras/esp/esp-idf/components/freemodbus/port/porttimer_m.c", + "file": "/home/mithras/esp/esp-idf/components/freemodbus/port/porttimer_m.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfunccoils.c.obj -c /home/mithras/esp/esp-idf/components/freemodbus/modbus/functions/mbfunccoils.c", + "file": "/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions/mbfunccoils.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfunccoils_m.c.obj -c /home/mithras/esp/esp-idf/components/freemodbus/modbus/functions/mbfunccoils_m.c", + "file": "/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions/mbfunccoils_m.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncdiag.c.obj -c /home/mithras/esp/esp-idf/components/freemodbus/modbus/functions/mbfuncdiag.c", + "file": "/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions/mbfuncdiag.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncdisc.c.obj -c /home/mithras/esp/esp-idf/components/freemodbus/modbus/functions/mbfuncdisc.c", + "file": "/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions/mbfuncdisc.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncdisc_m.c.obj -c /home/mithras/esp/esp-idf/components/freemodbus/modbus/functions/mbfuncdisc_m.c", + "file": "/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions/mbfuncdisc_m.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncholding.c.obj -c /home/mithras/esp/esp-idf/components/freemodbus/modbus/functions/mbfuncholding.c", + "file": "/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions/mbfuncholding.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncholding_m.c.obj -c /home/mithras/esp/esp-idf/components/freemodbus/modbus/functions/mbfuncholding_m.c", + "file": "/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions/mbfuncholding_m.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncinput.c.obj -c /home/mithras/esp/esp-idf/components/freemodbus/modbus/functions/mbfuncinput.c", + "file": "/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions/mbfuncinput.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncinput_m.c.obj -c /home/mithras/esp/esp-idf/components/freemodbus/modbus/functions/mbfuncinput_m.c", + "file": "/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions/mbfuncinput_m.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbfuncother.c.obj -c /home/mithras/esp/esp-idf/components/freemodbus/modbus/functions/mbfuncother.c", + "file": "/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions/mbfuncother.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/modbus/functions/mbutils.c.obj -c /home/mithras/esp/esp-idf/components/freemodbus/modbus/functions/mbutils.c", + "file": "/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions/mbutils.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/serial_slave/modbus_controller/mbc_serial_slave.c.obj -c /home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller/mbc_serial_slave.c", + "file": "/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller/mbc_serial_slave.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/freemodbus/common -I/home/mithras/esp/esp-idf/components/freemodbus/port -I/home/mithras/esp/esp-idf/components/freemodbus/modbus -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/ascii -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/functions -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/rtu -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/tcp -I/home/mithras/esp/esp-idf/components/freemodbus/modbus/include -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_slave/modbus_controller -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/port -I/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/freemodbus/CMakeFiles/__idf_freemodbus.dir/serial_master/modbus_controller/mbc_serial_master.c.obj -c /home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller/mbc_serial_master.c", + "file": "/home/mithras/esp/esp-idf/components/freemodbus/serial_master/modbus_controller/mbc_serial_master.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/jsmn/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/jsmn/CMakeFiles/__idf_jsmn.dir/src/jsmn.c.obj -c /home/mithras/esp/esp-idf/components/jsmn/src/jsmn.c", + "file": "/home/mithras/esp/esp-idf/components/jsmn/src/jsmn.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/json/cJSON -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj -c /home/mithras/esp/esp-idf/components/json/cJSON/cJSON.c", + "file": "/home/mithras/esp/esp-idf/components/json/cJSON/cJSON.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/json/cJSON -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj -c /home/mithras/esp/esp-idf/components/json/cJSON/cJSON_Utils.c", + "file": "/home/mithras/esp/esp-idf/components/json/cJSON/cJSON_Utils.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/crypto_auth.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_auth/crypto_auth.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_auth/crypto_auth.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/hmacsha256/auth_hmacsha256.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_auth/hmacsha256/auth_hmacsha256.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_auth/hmacsha256/auth_hmacsha256.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/hmacsha512/auth_hmacsha512.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_auth/hmacsha512/auth_hmacsha512.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_auth/hmacsha512/auth_hmacsha512.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_auth/hmacsha512256/auth_hmacsha512256.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_auth/hmacsha512256/auth_hmacsha512256.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_auth/hmacsha512256/auth_hmacsha512256.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/crypto_box.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_box/crypto_box.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_box/crypto_box.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/crypto_box_easy.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_box/crypto_box_easy.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_box/crypto_box_easy.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/crypto_box_seal.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_box/crypto_box_seal.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_box/crypto_box_seal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/box_curve25519xsalsa20poly1305.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/box_curve25519xsalsa20poly1305.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/box_curve25519xsalsa20poly1305.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/curve25519/ref10/curve25519_ref10.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_core/curve25519/ref10/curve25519_ref10.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_core/curve25519/ref10/curve25519_ref10.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/hchacha20/core_hchacha20.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_core/hchacha20/core_hchacha20.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_core/hchacha20/core_hchacha20.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/hsalsa20/core_hsalsa20.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_core/hsalsa20/core_hsalsa20.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_core/hsalsa20/core_hsalsa20.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/hsalsa20/ref2/core_hsalsa20_ref2.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_core/hsalsa20/ref2/core_hsalsa20_ref2.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_core/hsalsa20/ref2/core_hsalsa20_ref2.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_core/salsa/ref/core_salsa_ref.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_core/salsa/ref/core_salsa_ref.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_core/salsa/ref/core_salsa_ref.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/crypto_generichash.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_generichash/crypto_generichash.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_generichash/crypto_generichash.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/generichash_blake2.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_generichash/blake2b/generichash_blake2.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_generichash/blake2b/generichash_blake2.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-avx2.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-avx2.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-avx2.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-ref.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-ref.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-ref.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-sse41.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-sse41.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-sse41.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-ssse3.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-ssse3.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-ssse3.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-ref.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-ref.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-ref.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_generichash/blake2b/ref/generichash_blake2b.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_generichash/blake2b/ref/generichash_blake2b.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_generichash/blake2b/ref/generichash_blake2b.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/crypto_hash.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_hash/crypto_hash.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_hash/crypto_hash.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha256/hash_sha256.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_hash/sha256/hash_sha256.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_hash/sha256/hash_sha256.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha256/cp/hash_sha256_cp.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_hash/sha256/cp/hash_sha256_cp.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_hash/sha256/cp/hash_sha256_cp.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha512/hash_sha512.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_hash/sha512/hash_sha512.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_hash/sha512/hash_sha512.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_hash/sha512/cp/hash_sha512_cp.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_hash/sha512/cp/hash_sha512_cp.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_hash/sha512/cp/hash_sha512_cp.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_kdf/crypto_kdf.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_kdf/crypto_kdf.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_kdf/crypto_kdf.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_kdf/blake2b/kdf_blake2b.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_kdf/blake2b/kdf_blake2b.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_kdf/blake2b/kdf_blake2b.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_kx/crypto_kx.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_kx/crypto_kx.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_kx/crypto_kx.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/crypto_onetimeauth.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_onetimeauth/crypto_onetimeauth.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_onetimeauth/crypto_onetimeauth.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/crypto_pwhash.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/crypto_pwhash.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/crypto_pwhash.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-type-limits -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-encoding.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-encoding.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-encoding.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-unknown-pragmas -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-ref.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-ref.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-ref.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-ssse3.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-ssse3.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-ssse3.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/argon2.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/argon2/argon2.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/argon2/argon2.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/blake2b-long.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/argon2/blake2b-long.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/argon2/blake2b-long.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-type-limits -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/argon2/pwhash_argon2i.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/argon2/pwhash_argon2i.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/argon2/pwhash_argon2i.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-type-limits -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pwhash_scryptsalsa208sha256.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pwhash_scryptsalsa208sha256.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pwhash_scryptsalsa208sha256.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/nosse/pwhash_scryptsalsa208sha256_nosse.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/crypto_scalarmult.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/crypto_scalarmult.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/crypto_scalarmult.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/x25519_ref10.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/x25519_ref10.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/x25519_ref10.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/consts.S.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/consts.S", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/consts.S" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_invert.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_invert.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_invert.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_mul.S.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_mul.S", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_mul.S" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_nsquare.S.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_nsquare.S", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_nsquare.S" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_pack.S.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_pack.S", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_pack.S" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder.S.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder.S", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder.S" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder_base.S.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder_base.S", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ladder_base.S" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/sandy2x.S.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/sandy2x.S", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/sandy2x.S" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox_easy.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox_easy.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox_easy.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_secretbox/xchacha20poly1305/secretbox_xchacha20poly1305.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_secretbox/xsalsa20poly1305/secretbox_xsalsa20poly1305.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_secretbox/xsalsa20poly1305/secretbox_xsalsa20poly1305.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_secretbox/xsalsa20poly1305/secretbox_xsalsa20poly1305.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/crypto_shorthash.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_shorthash/crypto_shorthash.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_shorthash/crypto_shorthash.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/shorthash_siphash24.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_shorthash/siphash24/shorthash_siphash24.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_shorthash/siphash24/shorthash_siphash24.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/shorthash_siphashx24.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_shorthash/siphash24/shorthash_siphashx24.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_shorthash/siphash24/shorthash_siphashx24.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-implicit-fallthrough -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphash24_ref.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphash24_ref.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphash24_ref.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-implicit-fallthrough -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphashx24_ref.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphashx24_ref.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_shorthash/siphash24/ref/shorthash_siphashx24_ref.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/crypto_sign.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_sign/crypto_sign.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_sign/crypto_sign.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/sign_ed25519.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_sign/ed25519/sign_ed25519.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_sign/ed25519/sign_ed25519.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/keypair.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_sign/ed25519/ref10/keypair.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_sign/ed25519/ref10/keypair.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/obsolete.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_sign/ed25519/ref10/obsolete.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_sign/ed25519/ref10/obsolete.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/open.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_sign/ed25519/ref10/open.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_sign/ed25519/ref10/open.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_sign/ed25519/ref10/sign.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_sign/ed25519/ref10/sign.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_sign/ed25519/ref10/sign.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/crypto_stream.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/crypto_stream.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/crypto_stream.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/stream_aes128ctr.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/aes128ctr/stream_aes128ctr.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/aes128ctr/stream_aes128ctr.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/afternm_aes128ctr.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/afternm_aes128ctr.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/afternm_aes128ctr.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/beforenm_aes128ctr.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/beforenm_aes128ctr.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/beforenm_aes128ctr.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/consts_aes128ctr.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/consts_aes128ctr.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/consts_aes128ctr.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/int128_aes128ctr.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/int128_aes128ctr.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/int128_aes128ctr.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/stream_aes128ctr_nacl.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/stream_aes128ctr_nacl.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/stream_aes128ctr_nacl.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/xor_afternm_aes128ctr.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/xor_afternm_aes128ctr.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/aes128ctr/nacl/xor_afternm_aes128ctr.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/stream_chacha20.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/chacha20/stream_chacha20.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/chacha20/stream_chacha20.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau/chacha20_dolbeau-avx2.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau/chacha20_dolbeau-avx2.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau/chacha20_dolbeau-avx2.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau/chacha20_dolbeau-ssse3.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau/chacha20_dolbeau-ssse3.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau/chacha20_dolbeau-ssse3.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/chacha20/ref/chacha20_ref.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/chacha20/ref/chacha20_ref.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/chacha20/ref/chacha20_ref.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/stream_salsa20.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa20/stream_salsa20.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa20/stream_salsa20.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/ref/salsa20_ref.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa20/ref/salsa20_ref.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa20/ref/salsa20_ref.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6/salsa20_xmm6-asm.S.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa20/xmm6/salsa20_xmm6-asm.S", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa20/xmm6/salsa20_xmm6-asm.S" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6/salsa20_xmm6.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa20/xmm6/salsa20_xmm6.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa20/xmm6/salsa20_xmm6.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/salsa20_xmm6int-avx2.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/salsa20_xmm6int-avx2.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/salsa20_xmm6int-avx2.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/salsa20_xmm6int-sse2.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/salsa20_xmm6int-sse2.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/salsa20_xmm6int-sse2.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa2012/stream_salsa2012.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa2012/stream_salsa2012.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa2012/stream_salsa2012.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa2012/ref/stream_salsa2012_ref.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa2012/ref/stream_salsa2012_ref.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa2012/ref/stream_salsa2012_ref.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa208/stream_salsa208.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa208/stream_salsa208.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa208/stream_salsa208.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/salsa208/ref/stream_salsa208_ref.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa208/ref/stream_salsa208_ref.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/salsa208/ref/stream_salsa208_ref.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/xchacha20/stream_xchacha20.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/xchacha20/stream_xchacha20.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/xchacha20/stream_xchacha20.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_stream/xsalsa20/stream_xsalsa20.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/xsalsa20/stream_xsalsa20.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_stream/xsalsa20/stream_xsalsa20.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/crypto_verify/sodium/verify.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_verify/sodium/verify.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/crypto_verify/sodium/verify.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -DRANDOMBYTES_DEFAULT_IMPLEMENTATION -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/randombytes.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/randombytes/randombytes.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/randombytes/randombytes.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/nativeclient/randombytes_nativeclient.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/randombytes/nativeclient/randombytes_nativeclient.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/randombytes/nativeclient/randombytes_nativeclient.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/salsa20/randombytes_salsa20_random.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/randombytes/salsa20/randombytes_salsa20_random.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/randombytes/salsa20/randombytes_salsa20_random.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/core.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/sodium/core.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/sodium/core.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/runtime.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/sodium/runtime.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/sodium/runtime.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-unused-variable -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/utils.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/sodium/utils.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/sodium/utils.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/libsodium/src/libsodium/sodium/version.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/sodium/version.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/sodium/version.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DCONFIGURED -DHAVE_WEAK_SYMBOLS -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DNATIVE_LITTLE_ENDIAN -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -Iconfig -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port_include/sodium -I/home/mithras/esp/esp-idf/components/libsodium/port -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/libsodium/CMakeFiles/__idf_libsodium.dir/port/randombytes_esp32.c.obj -c /home/mithras/esp/esp-idf/components/libsodium/port/randombytes_esp32.c", + "file": "/home/mithras/esp/esp-idf/components/libsodium/port/randombytes_esp32.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/include -I/home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/lib/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/tcp_transport/include -I/home/mithras/esp/esp-idf/components/esp-tls -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj -c /home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/mqtt_client.c", + "file": "/home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/mqtt_client.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/include -I/home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/lib/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/tcp_transport/include -I/home/mithras/esp/esp-idf/components/esp-tls -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj -c /home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/lib/mqtt_msg.c", + "file": "/home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/lib/mqtt_msg.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/include -I/home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/lib/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/tcp_transport/include -I/home/mithras/esp/esp-idf/components/esp-tls -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj -c /home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/lib/mqtt_outbox.c", + "file": "/home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/lib/mqtt_outbox.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/include -I/home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/lib/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/tcp_transport/include -I/home/mithras/esp/esp-idf/components/esp-tls -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj -c /home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/lib/platform_esp32_idf.c", + "file": "/home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/lib/platform_esp32_idf.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/openssl/include -I/home/mithras/esp/esp-idf/components/openssl/include/internal -I/home/mithras/esp/esp-idf/components/openssl/include/platform -I/home/mithras/esp/esp-idf/components/openssl/include/openssl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_cert.c.obj -c /home/mithras/esp/esp-idf/components/openssl/library/ssl_cert.c", + "file": "/home/mithras/esp/esp-idf/components/openssl/library/ssl_cert.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/openssl/include -I/home/mithras/esp/esp-idf/components/openssl/include/internal -I/home/mithras/esp/esp-idf/components/openssl/include/platform -I/home/mithras/esp/esp-idf/components/openssl/include/openssl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_lib.c.obj -c /home/mithras/esp/esp-idf/components/openssl/library/ssl_lib.c", + "file": "/home/mithras/esp/esp-idf/components/openssl/library/ssl_lib.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/openssl/include -I/home/mithras/esp/esp-idf/components/openssl/include/internal -I/home/mithras/esp/esp-idf/components/openssl/include/platform -I/home/mithras/esp/esp-idf/components/openssl/include/openssl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_methods.c.obj -c /home/mithras/esp/esp-idf/components/openssl/library/ssl_methods.c", + "file": "/home/mithras/esp/esp-idf/components/openssl/library/ssl_methods.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/openssl/include -I/home/mithras/esp/esp-idf/components/openssl/include/internal -I/home/mithras/esp/esp-idf/components/openssl/include/platform -I/home/mithras/esp/esp-idf/components/openssl/include/openssl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_pkey.c.obj -c /home/mithras/esp/esp-idf/components/openssl/library/ssl_pkey.c", + "file": "/home/mithras/esp/esp-idf/components/openssl/library/ssl_pkey.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/openssl/include -I/home/mithras/esp/esp-idf/components/openssl/include/internal -I/home/mithras/esp/esp-idf/components/openssl/include/platform -I/home/mithras/esp/esp-idf/components/openssl/include/openssl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_stack.c.obj -c /home/mithras/esp/esp-idf/components/openssl/library/ssl_stack.c", + "file": "/home/mithras/esp/esp-idf/components/openssl/library/ssl_stack.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/openssl/include -I/home/mithras/esp/esp-idf/components/openssl/include/internal -I/home/mithras/esp/esp-idf/components/openssl/include/platform -I/home/mithras/esp/esp-idf/components/openssl/include/openssl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/openssl/CMakeFiles/__idf_openssl.dir/library/ssl_x509.c.obj -c /home/mithras/esp/esp-idf/components/openssl/library/ssl_x509.c", + "file": "/home/mithras/esp/esp-idf/components/openssl/library/ssl_x509.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/openssl/include -I/home/mithras/esp/esp-idf/components/openssl/include/internal -I/home/mithras/esp/esp-idf/components/openssl/include/platform -I/home/mithras/esp/esp-idf/components/openssl/include/openssl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/openssl/CMakeFiles/__idf_openssl.dir/platform/ssl_pm.c.obj -c /home/mithras/esp/esp-idf/components/openssl/platform/ssl_pm.c", + "file": "/home/mithras/esp/esp-idf/components/openssl/platform/ssl_pm.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/openssl/include -I/home/mithras/esp/esp-idf/components/openssl/include/internal -I/home/mithras/esp/esp-idf/components/openssl/include/platform -I/home/mithras/esp/esp-idf/components/openssl/include/openssl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/openssl/CMakeFiles/__idf_openssl.dir/platform/ssl_port.c.obj -c /home/mithras/esp/esp-idf/components/openssl/platform/ssl_port.c", + "file": "/home/mithras/esp/esp-idf/components/openssl/platform/ssl_port.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/spiffs/include -I/home/mithras/esp/esp-idf/components/spiffs -I/home/mithras/esp/esp-idf/components/spiffs/spiffs/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj -c /home/mithras/esp/esp-idf/components/spiffs/esp_spiffs.c", + "file": "/home/mithras/esp/esp-idf/components/spiffs/esp_spiffs.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/spiffs/include -I/home/mithras/esp/esp-idf/components/spiffs -I/home/mithras/esp/esp-idf/components/spiffs/spiffs/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj -c /home/mithras/esp/esp-idf/components/spiffs/spiffs_api.c", + "file": "/home/mithras/esp/esp-idf/components/spiffs/spiffs_api.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/spiffs/include -I/home/mithras/esp/esp-idf/components/spiffs -I/home/mithras/esp/esp-idf/components/spiffs/spiffs/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj -c /home/mithras/esp/esp-idf/components/spiffs/spiffs/src/spiffs_cache.c", + "file": "/home/mithras/esp/esp-idf/components/spiffs/spiffs/src/spiffs_cache.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/spiffs/include -I/home/mithras/esp/esp-idf/components/spiffs -I/home/mithras/esp/esp-idf/components/spiffs/spiffs/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj -c /home/mithras/esp/esp-idf/components/spiffs/spiffs/src/spiffs_check.c", + "file": "/home/mithras/esp/esp-idf/components/spiffs/spiffs/src/spiffs_check.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/spiffs/include -I/home/mithras/esp/esp-idf/components/spiffs -I/home/mithras/esp/esp-idf/components/spiffs/spiffs/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj -c /home/mithras/esp/esp-idf/components/spiffs/spiffs/src/spiffs_gc.c", + "file": "/home/mithras/esp/esp-idf/components/spiffs/spiffs/src/spiffs_gc.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/spiffs/include -I/home/mithras/esp/esp-idf/components/spiffs -I/home/mithras/esp/esp-idf/components/spiffs/spiffs/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj -c /home/mithras/esp/esp-idf/components/spiffs/spiffs/src/spiffs_hydrogen.c", + "file": "/home/mithras/esp/esp-idf/components/spiffs/spiffs/src/spiffs_hydrogen.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/spiffs/include -I/home/mithras/esp/esp-idf/components/spiffs -I/home/mithras/esp/esp-idf/components/spiffs/spiffs/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/bootloader_support/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-stringop-truncation -o esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj -c /home/mithras/esp/esp-idf/components/spiffs/spiffs/src/spiffs_nucleus.c", + "file": "/home/mithras/esp/esp-idf/components/spiffs/spiffs/src/spiffs_nucleus.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/ulp/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp.c.obj -c /home/mithras/esp/esp-idf/components/ulp/ulp.c", + "file": "/home/mithras/esp/esp-idf/components/ulp/ulp.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I/home/mithras/esp/esp-idf/components/ulp/include -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/ulp/CMakeFiles/__idf_ulp.dir/ulp_macro.c.obj -c /home/mithras/esp/esp-idf/components/ulp/ulp_macro.c", + "file": "/home/mithras/esp/esp-idf/components/ulp/ulp_macro.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DUNITY_INCLUDE_CONFIG_H -Iconfig -I/home/mithras/esp/esp-idf/components/unity/include -I/home/mithras/esp/esp-idf/components/unity/unity/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-unused-const-variable -o esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj -c /home/mithras/esp/esp-idf/components/unity/unity/src/unity.c", + "file": "/home/mithras/esp/esp-idf/components/unity/unity/src/unity.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DUNITY_INCLUDE_CONFIG_H -Iconfig -I/home/mithras/esp/esp-idf/components/unity/include -I/home/mithras/esp/esp-idf/components/unity/unity/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-unused-const-variable -o esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj -c /home/mithras/esp/esp-idf/components/unity/unity_port_esp32.c", + "file": "/home/mithras/esp/esp-idf/components/unity/unity_port_esp32.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DUNITY_INCLUDE_CONFIG_H -Iconfig -I/home/mithras/esp/esp-idf/components/unity/include -I/home/mithras/esp/esp-idf/components/unity/unity/src -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-unused-const-variable -o esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj -c /home/mithras/esp/esp-idf/components/unity/unity_runner.c", + "file": "/home/mithras/esp/esp-idf/components/unity/unity_runner.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/wifi_provisioning/include -I/home/mithras/esp/esp-idf/components/wifi_provisioning/src -I/home/mithras/esp/esp-idf/components/wifi_provisioning/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/json/cJSON -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj -c /home/mithras/esp/esp-idf/components/wifi_provisioning/src/wifi_config.c", + "file": "/home/mithras/esp/esp-idf/components/wifi_provisioning/src/wifi_config.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/wifi_provisioning/include -I/home/mithras/esp/esp-idf/components/wifi_provisioning/src -I/home/mithras/esp/esp-idf/components/wifi_provisioning/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/json/cJSON -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj -c /home/mithras/esp/esp-idf/components/wifi_provisioning/src/wifi_scan.c", + "file": "/home/mithras/esp/esp-idf/components/wifi_provisioning/src/wifi_scan.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/wifi_provisioning/include -I/home/mithras/esp/esp-idf/components/wifi_provisioning/src -I/home/mithras/esp/esp-idf/components/wifi_provisioning/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/json/cJSON -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj -c /home/mithras/esp/esp-idf/components/wifi_provisioning/src/manager.c", + "file": "/home/mithras/esp/esp-idf/components/wifi_provisioning/src/manager.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/wifi_provisioning/include -I/home/mithras/esp/esp-idf/components/wifi_provisioning/src -I/home/mithras/esp/esp-idf/components/wifi_provisioning/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/json/cJSON -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-stringop-truncation -o esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj -c /home/mithras/esp/esp-idf/components/wifi_provisioning/src/handlers.c", + "file": "/home/mithras/esp/esp-idf/components/wifi_provisioning/src/handlers.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/wifi_provisioning/include -I/home/mithras/esp/esp-idf/components/wifi_provisioning/src -I/home/mithras/esp/esp-idf/components/wifi_provisioning/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/json/cJSON -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -Wno-stringop-truncation -o esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj -c /home/mithras/esp/esp-idf/components/wifi_provisioning/src/scheme_softap.c", + "file": "/home/mithras/esp/esp-idf/components/wifi_provisioning/src/scheme_softap.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/wifi_provisioning/include -I/home/mithras/esp/esp-idf/components/wifi_provisioning/src -I/home/mithras/esp/esp-idf/components/wifi_provisioning/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/json/cJSON -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj -c /home/mithras/esp/esp-idf/components/wifi_provisioning/src/scheme_console.c", + "file": "/home/mithras/esp/esp-idf/components/wifi_provisioning/src/scheme_console.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/wifi_provisioning/include -I/home/mithras/esp/esp-idf/components/wifi_provisioning/src -I/home/mithras/esp/esp-idf/components/wifi_provisioning/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/json/cJSON -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj -c /home/mithras/esp/esp-idf/components/wifi_provisioning/proto-c/wifi_config.pb-c.c", + "file": "/home/mithras/esp/esp-idf/components/wifi_provisioning/proto-c/wifi_config.pb-c.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/wifi_provisioning/include -I/home/mithras/esp/esp-idf/components/wifi_provisioning/src -I/home/mithras/esp/esp-idf/components/wifi_provisioning/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/json/cJSON -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj -c /home/mithras/esp/esp-idf/components/wifi_provisioning/proto-c/wifi_scan.pb-c.c", + "file": "/home/mithras/esp/esp-idf/components/wifi_provisioning/proto-c/wifi_scan.pb-c.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I/home/mithras/esp/esp-idf/components/wifi_provisioning/include -I/home/mithras/esp/esp-idf/components/wifi_provisioning/src -I/home/mithras/esp/esp-idf/components/wifi_provisioning/proto-c -I/home/mithras/esp/esp-idf/components/protocomm/proto-c -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/json/cJSON -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj -c /home/mithras/esp/esp-idf/components/wifi_provisioning/proto-c/wifi_constants.pb-c.c", + "file": "/home/mithras/esp/esp-idf/components/wifi_provisioning/proto-c/wifi_constants.pb-c.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DLV_CONF_INCLUDE_SIMPLE=1 -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -DUNITY_INCLUDE_CONFIG_H -DWITH_POSIX -Iconfig -I../main -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/port/include -I/home/mithras/esp/esp-idf/components/wpa_supplicant/include/esp_supplicant -I/home/mithras/esp/esp-idf/components/bootloader_support/include -I/home/mithras/esp/esp-idf/components/app_update/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/pthread/include -I/home/mithras/esp/esp-idf/components/espcoredump/include -I/home/mithras/esp/esp-idf/components/perfmon/include -I/home/mithras/esp/esp-idf/components/asio/asio/asio/include -I/home/mithras/esp/esp-idf/components/asio/port/include -I/home/mithras/esp/esp-idf/components/cbor/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include -I/home/mithras/esp/esp-idf/components/coap/port/include/coap -I/home/mithras/esp/esp-idf/components/coap/libcoap/include -I/home/mithras/esp/esp-idf/components/coap/libcoap/include/coap2 -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp-tls -I/home/mithras/esp/esp-idf/components/esp_adc_cal/include -I/home/mithras/esp/esp-idf/components/esp_gdbstub/include -I/home/mithras/esp/esp-idf/components/tcp_transport/include -I/home/mithras/esp/esp-idf/components/esp_http_client/include -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/esp_https_ota/include -I/home/mithras/esp/esp-idf/components/esp_https_server/include -I/home/mithras/esp/esp-idf/components/protobuf-c/protobuf-c -I/home/mithras/esp/esp-idf/components/protocomm/include/common -I/home/mithras/esp/esp-idf/components/protocomm/include/security -I/home/mithras/esp/esp-idf/components/protocomm/include/transports -I/home/mithras/esp/esp-idf/components/mdns/include -I/home/mithras/esp/esp-idf/components/esp_local_ctrl/include -I/home/mithras/esp/esp-idf/components/sdmmc/include -I/home/mithras/esp/esp-idf/components/esp_serial_slave_link/include -I/home/mithras/esp/esp-idf/components/esp_websocket_client/include -I/home/mithras/esp/esp-idf/components/expat/expat/expat/lib -I/home/mithras/esp/esp-idf/components/expat/port/include -I/home/mithras/esp/esp-idf/components/wear_levelling/include -I/home/mithras/esp/esp-idf/components/fatfs/diskio -I/home/mithras/esp/esp-idf/components/fatfs/vfs -I/home/mithras/esp/esp-idf/components/fatfs/src -I/home/mithras/esp/esp-idf/components/freemodbus/common/include -I/home/mithras/esp/esp-idf/components/idf_test/include -I/home/mithras/esp/esp-idf/components/jsmn/include -I/home/mithras/esp/esp-idf/components/json/cJSON -I/home/mithras/esp/esp-idf/components/libsodium/libsodium/src/libsodium/include -I/home/mithras/esp/esp-idf/components/libsodium/port_include -I/home/mithras/esp/esp-idf/components/mqtt/esp-mqtt/include -I/home/mithras/esp/esp-idf/components/openssl/include -I/home/mithras/esp/esp-idf/components/spiffs/include -I/home/mithras/esp/esp-idf/components/ulp/include -I/home/mithras/esp/esp-idf/components/unity/include -I/home/mithras/esp/esp-idf/components/unity/unity/src -I/home/mithras/esp/esp-idf/components/wifi_provisioning/include -I../components/ca -I../components/cmd_nvs -I../components/cmd_system -I../components/files -I../components/wifi -I../components/https_server -I../components/lvgl -I../components/lvgl/lvgl -I../components/lv_examples -I../components/lvgl_esp32_drivers -I../components/lvgl_esp32_drivers/lvgl_tft -I../components/lvgl_esp32_drivers/lvgl_touch -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/main/CMakeFiles/__idf_main.dir/main.c.obj -c /home/mithras/Documents/bakalarka/main/main.c", + "file": "/home/mithras/Documents/bakalarka/main/main.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I../components/ca -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/ca/CMakeFiles/__idf_ca.dir/ca.c.obj -c /home/mithras/Documents/bakalarka/components/ca/ca.c", + "file": "/home/mithras/Documents/bakalarka/components/ca/ca.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I../components/ca -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/ca/CMakeFiles/__idf_ca.dir/gen_key.c.obj -c /home/mithras/Documents/bakalarka/components/ca/gen_key.c", + "file": "/home/mithras/Documents/bakalarka/components/ca/gen_key.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I../components/cmd_nvs -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/cmd_nvs/CMakeFiles/__idf_cmd_nvs.dir/cmd_nvs.c.obj -c /home/mithras/Documents/bakalarka/components/cmd_nvs/cmd_nvs.c", + "file": "/home/mithras/Documents/bakalarka/components/cmd_nvs/cmd_nvs.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/cmd_system -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/cmd_system/CMakeFiles/__idf_cmd_system.dir/cmd_system.c.obj -c /home/mithras/Documents/bakalarka/components/cmd_system/cmd_system.c", + "file": "/home/mithras/Documents/bakalarka/components/cmd_system/cmd_system.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/files -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/spiffs/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/files/CMakeFiles/__idf_files.dir/file.c.obj -c /home/mithras/Documents/bakalarka/components/files/file.c", + "file": "/home/mithras/Documents/bakalarka/components/files/file.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/wifi -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/spi_flash/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/wifi/CMakeFiles/__idf_wifi.dir/wifi.c.obj -c /home/mithras/Documents/bakalarka/components/wifi/wifi.c", + "file": "/home/mithras/Documents/bakalarka/components/wifi/wifi.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I../components/https_server -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I../components/wifi -I/home/mithras/esp/esp-idf/components/esp_https_server/include -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp-tls -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/https_server/CMakeFiles/__idf_https_server.dir/https_server.c.obj -c /home/mithras/Documents/bakalarka/components/https_server/https_server.c", + "file": "/home/mithras/Documents/bakalarka/components/https_server/https_server.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I../components/https_server -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I../components/wifi -I/home/mithras/esp/esp-idf/components/esp_https_server/include -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp-tls -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/https_server/CMakeFiles/__idf_https_server.dir/url_decoder.c.obj -c /home/mithras/Documents/bakalarka/components/https_server/url_decoder.c", + "file": "/home/mithras/Documents/bakalarka/components/https_server/url_decoder.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I../components/https_server -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I../components/wifi -I/home/mithras/esp/esp-idf/components/esp_https_server/include -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp-tls -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/https_server/CMakeFiles/__idf_https_server.dir/__/__/cacert.pem.S.obj -c /home/mithras/Documents/bakalarka/build/cacert.pem.S", + "file": "/home/mithras/Documents/bakalarka/build/cacert.pem.S" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DHAVE_CONFIG_H -DMBEDTLS_CONFIG_FILE=\\\"mbedtls/esp_config.h\\\" -Iconfig -I../components/https_server -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I/home/mithras/esp/esp-idf/components/console -I/home/mithras/esp/esp-idf/components/nvs_flash/include -I/home/mithras/esp/esp-idf/components/spi_flash/include -I/home/mithras/esp/esp-idf/components/mbedtls/port/include -I/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include -I../components/wifi -I/home/mithras/esp/esp-idf/components/esp_https_server/include -I/home/mithras/esp/esp-idf/components/esp_http_server/include -I/home/mithras/esp/esp-idf/components/nghttp/port/include -I/home/mithras/esp/esp-idf/components/nghttp/nghttp2/lib/includes -I/home/mithras/esp/esp-idf/components/esp-tls -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/https_server/CMakeFiles/__idf_https_server.dir/__/__/prvtkey.pem.S.obj -c /home/mithras/Documents/bakalarka/build/prvtkey.pem.S", + "file": "/home/mithras/Documents/bakalarka/build/prvtkey.pem.S" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_debug.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_core/lv_debug.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_core/lv_debug.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_disp.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_core/lv_disp.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_core/lv_disp.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_group.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_core/lv_group.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_core/lv_group.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_indev.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_core/lv_indev.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_core/lv_indev.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_obj.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_core/lv_obj.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_core/lv_obj.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_refr.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_core/lv_refr.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_core/lv_refr.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_core/lv_style.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_core/lv_style.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_core/lv_style.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_draw/lv_draw.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_draw/lv_draw.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_arc.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_draw/lv_draw_arc.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_draw/lv_draw_arc.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_basic.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_draw/lv_draw_basic.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_draw/lv_draw_basic.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_img.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_draw/lv_draw_img.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_draw/lv_draw_img.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_label.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_draw/lv_draw_label.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_draw/lv_draw_label.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_line.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_draw/lv_draw_line.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_draw/lv_draw_line.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_rect.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_draw/lv_draw_rect.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_draw/lv_draw_rect.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_draw_triangle.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_draw/lv_draw_triangle.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_draw/lv_draw_triangle.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_img_cache.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_draw/lv_img_cache.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_draw/lv_img_cache.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_draw/lv_img_decoder.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_draw/lv_img_decoder.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_draw/lv_img_decoder.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_font/lv_font.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_font/lv_font.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_fmt_txt.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_font/lv_font_fmt_txt.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_font/lv_font_fmt_txt.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_12.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_font/lv_font_roboto_12.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_font/lv_font_roboto_12.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_12_subpx.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_font/lv_font_roboto_12_subpx.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_font/lv_font_roboto_12_subpx.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_16.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_font/lv_font_roboto_16.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_font/lv_font_roboto_16.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_22.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_font/lv_font_roboto_22.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_font/lv_font_roboto_22.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_28.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_font/lv_font_roboto_28.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_font/lv_font_roboto_28.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_roboto_28_compressed.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_font/lv_font_roboto_28_compressed.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_font/lv_font_roboto_28_compressed.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_font/lv_font_unscii_8.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_font/lv_font_unscii_8.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_font/lv_font_unscii_8.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_disp.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_hal/lv_hal_disp.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_hal/lv_hal_disp.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_indev.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_hal/lv_hal_indev.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_hal/lv_hal_indev.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_hal/lv_hal_tick.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_hal/lv_hal_tick.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_hal/lv_hal_tick.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_anim.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_misc/lv_anim.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_misc/lv_anim.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_area.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_misc/lv_area.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_misc/lv_area.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_async.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_misc/lv_async.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_misc/lv_async.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_bidi.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_misc/lv_bidi.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_misc/lv_bidi.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_circ.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_misc/lv_circ.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_misc/lv_circ.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_color.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_misc/lv_color.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_misc/lv_color.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_fs.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_misc/lv_fs.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_misc/lv_fs.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_gc.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_misc/lv_gc.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_misc/lv_gc.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_ll.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_misc/lv_ll.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_misc/lv_ll.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_log.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_misc/lv_log.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_misc/lv_log.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_math.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_misc/lv_math.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_misc/lv_math.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_mem.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_misc/lv_mem.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_misc/lv_mem.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_printf.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_misc/lv_printf.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_misc/lv_printf.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_task.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_misc/lv_task.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_misc/lv_task.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_templ.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_misc/lv_templ.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_misc/lv_templ.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_txt.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_misc/lv_txt.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_misc/lv_txt.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_misc/lv_utils.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_misc/lv_utils.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_misc/lv_utils.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_arc.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_arc.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_arc.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_bar.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_bar.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_bar.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_btn.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_btn.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_btn.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_btnm.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_btnm.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_btnm.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_calendar.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_calendar.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_calendar.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_canvas.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_canvas.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_canvas.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cb.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_cb.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_cb.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_chart.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_chart.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_chart.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cont.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_cont.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_cont.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_cpicker.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_cpicker.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_cpicker.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_ddlist.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_ddlist.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_ddlist.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_gauge.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_gauge.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_gauge.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_img.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_img.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_img.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_imgbtn.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_imgbtn.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_imgbtn.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_kb.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_kb.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_kb.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_label.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_label.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_label.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_led.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_led.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_led.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_line.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_line.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_line.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_list.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_list.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_list.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_lmeter.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_lmeter.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_lmeter.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_mbox.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_mbox.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_mbox.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_objx_templ.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_objx_templ.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_objx_templ.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_page.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_page.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_page.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_preload.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_preload.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_preload.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_roller.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_roller.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_roller.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_slider.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_slider.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_slider.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_spinbox.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_spinbox.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_spinbox.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_sw.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_sw.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_sw.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_ta.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_ta.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_ta.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_table.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_table.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_table.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_tabview.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_tabview.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_tabview.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_tileview.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_tileview.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_tileview.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_objx/lv_win.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_win.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_objx/lv_win.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_themes/lv_theme.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_themes/lv_theme.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_alien.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_themes/lv_theme_alien.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_themes/lv_theme_alien.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_default.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_themes/lv_theme_default.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_themes/lv_theme_default.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_material.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_themes/lv_theme_material.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_themes/lv_theme_material.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_mono.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_themes/lv_theme_mono.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_themes/lv_theme_mono.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_nemo.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_themes/lv_theme_nemo.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_themes/lv_theme_nemo.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_night.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_themes/lv_theme_night.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_themes/lv_theme_night.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_templ.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_themes/lv_theme_templ.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_themes/lv_theme_templ.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -Iconfig -I../components/lvgl -I../components/lvgl/lvgl -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl/CMakeFiles/__idf_lvgl.dir/lvgl/src/lv_themes/lv_theme_zen.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_themes/lv_theme_zen.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl/lvgl/src/lv_themes/lv_theme_zen.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_apps/benchmark/benchmark.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_apps/benchmark/benchmark.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/benchmark/benchmark_bg.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_apps/benchmark/benchmark_bg.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_apps/benchmark/benchmark_bg.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/demo.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_apps/demo/demo.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_apps/demo/demo.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/demo/img_bubble_pattern.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_apps/demo/img_bubble_pattern.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_apps/demo/img_bubble_pattern.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/sysmon/sysmon.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_apps/sysmon/sysmon.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_apps/sysmon/sysmon.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/terminal/terminal.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_apps/terminal/terminal.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_apps/terminal/terminal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_apps/tpcal/tpcal.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_apps/tpcal/tpcal.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_apps/tpcal/tpcal.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_group/lv_test_group.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_group/lv_test_group.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_group/lv_test_group.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_misc/lv_test_task.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_misc/lv_test_task.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_misc/lv_test_task.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_obj/lv_test_obj.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_obj/lv_test_obj.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_obj/lv_test_obj.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker/lv_test_cpicker.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker/lv_test_cpicker.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker/lv_test_cpicker.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img/img_flower_icon.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_img/img_flower_icon.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_img/img_flower_icon.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_1.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_1.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_1.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_2.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_2.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_2.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_3.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_3.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_3.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_4.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_4.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_4.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_stress/lv_test_stress.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_stress/lv_test_stress.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_stress/lv_test_stress.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_alpha.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/apple_icon_alpha.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/apple_icon_alpha.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/apple_icon_chroma.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/apple_icon_chroma.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/apple_icon_chroma.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/flower_icon_alpha.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tutorial/6_images/flower_icon_alpha.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tutorial/6_images/flower_icon_alpha.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/lv_tutorial_images.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tutorial/6_images/lv_tutorial_images.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tutorial/6_images/lv_tutorial_images.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/red_flower.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tutorial/6_images/red_flower.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tutorial/6_images/red_flower.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/6_images/red_rose_16.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tutorial/6_images/red_rose_16.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tutorial/6_images/red_rose_16.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts/arial_20.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tutorial/7_fonts/arial_20.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tutorial/7_fonts/arial_20.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lv_examples -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lv_examples/CMakeFiles/__idf_lv_examples.dir/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.c.obj -c /home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.c", + "file": "/home/mithras/Documents/bakalarka/components/lv_examples/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lvgl_esp32_drivers -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl_esp32_drivers/CMakeFiles/__idf_lvgl_esp32_drivers.dir/lvgl_driver.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_driver.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_driver.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lvgl_esp32_drivers/lvgl_tft -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/disp_driver.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_tft/disp_driver.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_tft/disp_driver.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lvgl_esp32_drivers/lvgl_tft -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/disp_spi.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_tft/disp_spi.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_tft/disp_spi.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lvgl_esp32_drivers/lvgl_tft -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/hx8357.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_tft/hx8357.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_tft/hx8357.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lvgl_esp32_drivers/lvgl_tft -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/ili9341.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_tft/ili9341.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_tft/ili9341.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lvgl_esp32_drivers/lvgl_tft -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/ili9488.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_tft/ili9488.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_tft/ili9488.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lvgl_esp32_drivers/lvgl_tft -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl_tft/CMakeFiles/__idf_lvgl_tft.dir/st7789.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_tft/st7789.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_tft/st7789.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lvgl_esp32_drivers/lvgl_touch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/ft6x36.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_touch/ft6x36.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_touch/ft6x36.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lvgl_esp32_drivers/lvgl_touch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/stmpe610.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_touch/stmpe610.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_touch/stmpe610.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lvgl_esp32_drivers/lvgl_touch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/touch_driver.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_touch/touch_driver.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_touch/touch_driver.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lvgl_esp32_drivers/lvgl_touch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/tp_i2c.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_touch/tp_i2c.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_touch/tp_i2c.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lvgl_esp32_drivers/lvgl_touch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/tp_spi.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_touch/tp_spi.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_touch/tp_spi.c" +}, + +{ + "directory": "/home/mithras/Documents/bakalarka/build", + "command": "/home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc -DLV_CONF_INCLUDE_SIMPLE=1 -Iconfig -I../components/lvgl_esp32_drivers/lvgl_touch -I/home/mithras/esp/esp-idf/components/newlib/platform_include -I/home/mithras/esp/esp-idf/components/freertos/include -I/home/mithras/esp/esp-idf/components/freertos/xtensa/include -I/home/mithras/esp/esp-idf/components/heap/include -I/home/mithras/esp/esp-idf/components/log/include -I/home/mithras/esp/esp-idf/components/lwip/include/apps -I/home/mithras/esp/esp-idf/components/lwip/include/apps/sntp -I/home/mithras/esp/esp-idf/components/lwip/lwip/src/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include -I/home/mithras/esp/esp-idf/components/lwip/port/esp32/include/arch -I/home/mithras/esp/esp-idf/components/soc/src/esp32/. -I/home/mithras/esp/esp-idf/components/soc/src/esp32/include -I/home/mithras/esp/esp-idf/components/soc/include -I/home/mithras/esp/esp-idf/components/esp_rom/include -I/home/mithras/esp/esp-idf/components/esp_common/include -I/home/mithras/esp/esp-idf/components/xtensa/include -I/home/mithras/esp/esp-idf/components/xtensa/esp32/include -I/home/mithras/esp/esp-idf/components/esp32/include -I/home/mithras/esp/esp-idf/components/driver/include -I/home/mithras/esp/esp-idf/components/driver/esp32/include -I/home/mithras/esp/esp-idf/components/esp_ringbuf/include -I/home/mithras/esp/esp-idf/components/efuse/include -I/home/mithras/esp/esp-idf/components/efuse/esp32/include -I/home/mithras/esp/esp-idf/components/esp_timer/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/. -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/include -I/home/mithras/esp/esp-idf/components/soc/soc/esp32/../include -I/home/mithras/esp/esp-idf/components/vfs/include -I/home/mithras/esp/esp-idf/components/esp_wifi/include -I/home/mithras/esp/esp-idf/components/esp_wifi/esp32/include -I/home/mithras/esp/esp-idf/components/esp_event/include -I/home/mithras/esp/esp-idf/components/esp_netif/include -I/home/mithras/esp/esp-idf/components/esp_eth/include -I/home/mithras/esp/esp-idf/components/tcpip_adapter/include -I/home/mithras/esp/esp-idf/components/app_trace/include -I../components/lvgl -I../components/lvgl/lvgl -mlongcalls -Wno-frame-address -ffunction-sections -fdata-sections -fstrict-volatile-bitfields -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-but-set-variable -Wno-error=unused-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -ggdb -Og -std=gnu99 -Wno-old-style-declaration -D_GNU_SOURCE -DIDF_VER=\\\"v4.2-dev-414-g132cc67c0-dirty\\\" -DESP_PLATFORM -o esp-idf/lvgl_touch/CMakeFiles/__idf_lvgl_touch.dir/xpt2046.c.obj -c /home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_touch/xpt2046.c", + "file": "/home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_touch/xpt2046.c" +} +] \ No newline at end of file diff --git a/build/config.env b/build/config.env new file mode 100644 index 0000000..5b07a49 --- /dev/null +++ b/build/config.env @@ -0,0 +1,10 @@ +{ + "COMPONENT_KCONFIGS": "/home/mithras/esp/esp-idf/components/app_trace/Kconfig /home/mithras/esp/esp-idf/components/bt/Kconfig /home/mithras/esp/esp-idf/components/coap/Kconfig /home/mithras/esp/esp-idf/components/driver/Kconfig /home/mithras/esp/esp-idf/components/efuse/Kconfig /home/mithras/esp/esp-idf/components/esp-tls/Kconfig /home/mithras/esp/esp-idf/components/esp32/Kconfig /home/mithras/esp/esp-idf/components/esp_adc_cal/Kconfig /home/mithras/esp/esp-idf/components/esp_common/Kconfig /home/mithras/esp/esp-idf/components/esp_eth/Kconfig /home/mithras/esp/esp-idf/components/esp_event/Kconfig /home/mithras/esp/esp-idf/components/esp_gdbstub/Kconfig /home/mithras/esp/esp-idf/components/esp_http_client/Kconfig /home/mithras/esp/esp-idf/components/esp_http_server/Kconfig /home/mithras/esp/esp-idf/components/esp_https_ota/Kconfig /home/mithras/esp/esp-idf/components/esp_https_server/Kconfig /home/mithras/esp/esp-idf/components/esp_netif/Kconfig /home/mithras/esp/esp-idf/components/esp_timer/Kconfig /home/mithras/esp/esp-idf/components/esp_wifi/Kconfig /home/mithras/esp/esp-idf/components/espcoredump/Kconfig /home/mithras/esp/esp-idf/components/fatfs/Kconfig /home/mithras/esp/esp-idf/components/freemodbus/Kconfig /home/mithras/esp/esp-idf/components/freertos/Kconfig /home/mithras/esp/esp-idf/components/heap/Kconfig /home/mithras/esp/esp-idf/components/jsmn/Kconfig /home/mithras/esp/esp-idf/components/libsodium/Kconfig /home/mithras/esp/esp-idf/components/log/Kconfig /home/mithras/esp/esp-idf/components/lwip/Kconfig /home/mithras/esp/esp-idf/components/mbedtls/Kconfig /home/mithras/esp/esp-idf/components/mdns/Kconfig /home/mithras/esp/esp-idf/components/mqtt/Kconfig /home/mithras/esp/esp-idf/components/newlib/Kconfig /home/mithras/esp/esp-idf/components/nvs_flash/Kconfig /home/mithras/esp/esp-idf/components/openssl/Kconfig /home/mithras/esp/esp-idf/components/pthread/Kconfig /home/mithras/esp/esp-idf/components/spi_flash/Kconfig /home/mithras/esp/esp-idf/components/spiffs/Kconfig /home/mithras/esp/esp-idf/components/unity/Kconfig /home/mithras/esp/esp-idf/components/vfs/Kconfig /home/mithras/esp/esp-idf/components/wear_levelling/Kconfig /home/mithras/esp/esp-idf/components/wifi_provisioning/Kconfig /home/mithras/esp/esp-idf/components/wpa_supplicant/Kconfig /home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_tft/Kconfig /home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_touch/Kconfig", + "COMPONENT_KCONFIGS_PROJBUILD": "/home/mithras/esp/esp-idf/components/app_update/Kconfig.projbuild /home/mithras/esp/esp-idf/components/bootloader/Kconfig.projbuild /home/mithras/esp/esp-idf/components/esptool_py/Kconfig.projbuild /home/mithras/esp/esp-idf/components/partition_table/Kconfig.projbuild /home/mithras/Documents/bakalarka/main/Kconfig.projbuild", + "COMPONENT_SDKCONFIG_RENAMES": "/home/mithras/esp/esp-idf/components/app_trace/sdkconfig.rename /home/mithras/esp/esp-idf/components/bootloader/sdkconfig.rename /home/mithras/esp/esp-idf/components/bt/sdkconfig.rename /home/mithras/esp/esp-idf/components/driver/sdkconfig.rename /home/mithras/esp/esp-idf/components/esp32/sdkconfig.rename /home/mithras/esp/esp-idf/components/esp_common/sdkconfig.rename /home/mithras/esp/esp-idf/components/esp_event/sdkconfig.rename /home/mithras/esp/esp-idf/components/esp_timer/sdkconfig.rename /home/mithras/esp/esp-idf/components/esp_wifi/sdkconfig.rename /home/mithras/esp/esp-idf/components/esptool_py/sdkconfig.rename /home/mithras/esp/esp-idf/components/freemodbus/sdkconfig.rename /home/mithras/esp/esp-idf/components/freertos/sdkconfig.rename /home/mithras/esp/esp-idf/components/lwip/sdkconfig.rename /home/mithras/esp/esp-idf/components/pthread/sdkconfig.rename /home/mithras/esp/esp-idf/components/spi_flash/sdkconfig.rename /home/mithras/esp/esp-idf/components/vfs/sdkconfig.rename", + "IDF_CMAKE": "y", + "IDF_TARGET": "esp32", + "IDF_PATH": "/home/mithras/esp/esp-idf", + "COMPONENT_KCONFIGS_SOURCE_FILE": "/home/mithras/Documents/bakalarka/build/kconfigs.in", + "COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE": "/home/mithras/Documents/bakalarka/build/kconfigs_projbuild.in" +} diff --git a/build/config/kconfig_menus.json b/build/config/kconfig_menus.json new file mode 100644 index 0000000..ded3e07 --- /dev/null +++ b/build/config/kconfig_menus.json @@ -0,0 +1,14928 @@ +[ + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_CMAKE", + "name": "IDF_CMAKE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_ENV_FPGA", + "name": "IDF_ENV_FPGA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET", + "name": "IDF_TARGET", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32", + "name": "IDF_TARGET_ESP32", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_TARGET_ESP32S2", + "name": "IDF_TARGET_ESP32S2", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "IDF_FIRMWARE_CHIP_ID", + "name": "IDF_FIRMWARE_CHIP_ID", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "The prefix/path that is used to call the toolchain. The default setting assumes\na crosstool-ng gcc setup that is in your PATH.", + "id": "SDK_TOOLPREFIX", + "name": "SDK_TOOLPREFIX", + "range": null, + "title": "Compiler toolchain path/prefix", + "type": "string" + }, + { + "children": [], + "depends_on": "!IDF_CMAKE", + "help": "The executable name/path that is used to run python. On some systems Python 2.x\nmay need to be invoked as python2.\n\n(Note: This option is used with the legacy GNU Make build system only.)", + "id": "SDK_PYTHON", + "name": "SDK_PYTHON", + "range": null, + "title": "Python 2 interpreter", + "type": "string" + }, + { + "children": [], + "depends_on": "!IDF_CMAKE", + "help": "Adds --warn-undefined-variables to MAKEFLAGS. This causes make to\nprint a warning any time an undefined variable is referenced.\n\nThis option helps find places where a variable reference is misspelled\nor otherwise missing, but it can be unwanted if you have Makefiles which\ndepend on undefined variables expanding to an empty string.\n\n(Note: this option is used with the legacy GNU Make build system only.)", + "id": "SDK_MAKE_WARN_UNDEFINED_VARIABLES", + "name": "SDK_MAKE_WARN_UNDEFINED_VARIABLES", + "range": null, + "title": "'make' warns on undefined variables", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option in case you have a custom toolchain which supports time_t wide 64-bits.\nThis option checks time_t is 64-bits and disables ROM time functions\nto use the time functions from the toolchain instead.\nThis option allows resolving the Y2K38 problem.\nSee \"Setup Linux Toolchain from Scratch\" to build\na custom toolchain which supports 64-bits time_t.\n\nNote: ESP-IDF does not currently come with any pre-compiled toolchain\nthat supports 64-bit wide time_t.\nThis will change in a future major release,\nbut currently 64-bit time_t requires a custom built toolchain.", + "id": "SDK_TOOLCHAIN_SUPPORTS_TIME_WIDE_64_BITS", + "name": "SDK_TOOLCHAIN_SUPPORTS_TIME_WIDE_64_BITS", + "range": null, + "title": "Toolchain supports time_t wide 64-bits", + "type": "bool" + } + ], + "depends_on": null, + "id": "sdk-tool-configuration", + "title": "SDK tool configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "APP_BUILD_TYPE_APP_2NDBOOT", + "name": "APP_BUILD_TYPE_APP_2NDBOOT", + "range": null, + "title": "Default (binary application + 2nd stage bootloader)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "APP_BUILD_TYPE_ELF_RAM", + "name": "APP_BUILD_TYPE_ELF_RAM", + "range": null, + "title": "ELF file, loadable into RAM (EXPERIMENTAL))", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select the way the application is built.\n\nBy default, the application is built as a binary file in a format compatible with\nthe ESP32 bootloader. In addition to this application, 2nd stage bootloader is\nalso built. Application and bootloader binaries can be written into flash and\nloaded/executed from there.\n\nAnother option, useful for only very small and limited applications, is to only link\nthe .elf file of the application, such that it can be loaded directly into RAM over\nJTAG. Note that since IRAM and DRAM sizes are very limited, it is not possible to\nbuild any complex application this way. However for kinds of testing and debugging,\nthis option may provide faster iterations, since the application does not need to be\nwritten into flash.\nNote that at the moment, ESP-IDF does not contain all the startup code required to\ninitialize the CPUs and ROM memory (data/bss). Therefore it is necessary to execute\na bit of ROM code prior to executing the application. A gdbinit file may look as follows:\n\n # Connect to a running instance of OpenOCD\n target remote :3333\n # Reset and halt the target\n mon reset halt\n # Run to a specific point in ROM code,\n # where most of initialization is complete.\n thb *0x40007901\n c\n # Load the application into RAM\n load\n # Run till app_main\n tb app_main\n c\n\nExecute this gdbinit file as follows:\n\n xtensa-esp32-elf-gdb build/app-name.elf -x gdbinit\n\nRecommended sdkconfig.defaults for building loadable ELF files is as follows.\nCONFIG_APP_BUILD_TYPE_ELF_RAM is required, other options help reduce application\nmemory footprint.\n\n CONFIG_APP_BUILD_TYPE_ELF_RAM=y\n CONFIG_VFS_SUPPORT_TERMIOS=\n CONFIG_NEWLIB_NANO_FORMAT=y\n CONFIG_ESP32_PANIC_PRINT_HALT=y\n CONFIG_ESP32_DEBUG_STUBS_ENABLE=\n CONFIG_ESP_ERR_TO_NAME_LOOKUP=", + "id": "build-type-application-build-type", + "name": "APP_BUILD_TYPE", + "title": "Application build type", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "APP_BUILD_GENERATE_BINARIES", + "name": "APP_BUILD_GENERATE_BINARIES", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "APP_BUILD_BOOTLOADER", + "name": "APP_BUILD_BOOTLOADER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "APP_BUILD_USE_FLASH_SECTIONS", + "name": "APP_BUILD_USE_FLASH_SECTIONS", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "build-type", + "title": "Build type", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "If set, then the app will be built with the current time/date stamp. It is stored in the app description\nstructure. If not set, time/date stamp will be excluded from app image. This can be useful for getting the\nsame binary image files made from the same source, but at different times.", + "id": "APP_COMPILE_TIME_DATE", + "name": "APP_COMPILE_TIME_DATE", + "range": null, + "title": "Use time/date stamp for app", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "The PROJECT_VER variable from the build system will not affect the firmware image.\nThis value will not be contained in the esp_app_desc structure.", + "id": "APP_EXCLUDE_PROJECT_VER_VAR", + "name": "APP_EXCLUDE_PROJECT_VER_VAR", + "range": null, + "title": "Exclude PROJECT_VER from firmware image", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "The PROJECT_NAME variable from the build system will not affect the firmware image.\nThis value will not be contained in the esp_app_desc structure.", + "id": "APP_EXCLUDE_PROJECT_NAME_VAR", + "name": "APP_EXCLUDE_PROJECT_NAME_VAR", + "range": null, + "title": "Exclude PROJECT_NAME from firmware image", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "APP_PROJECT_VER_FROM_CONFIG", + "help": "Project version", + "id": "APP_PROJECT_VER", + "name": "APP_PROJECT_VER", + "range": null, + "title": "Project version", + "type": "string" + } + ], + "depends_on": null, + "help": "If this is enabled, then config item APP_PROJECT_VER will be used for the variable PROJECT_VER.\nOther ways to set PROJECT_VER will be ignored.", + "id": "APP_PROJECT_VER_FROM_CONFIG", + "name": "APP_PROJECT_VER_FROM_CONFIG", + "range": null, + "title": "Get the project version from Kconfig", + "type": "bool" + } + ], + "depends_on": null, + "id": "application-manager", + "title": "Application manager", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_NONE", + "name": "BOOTLOADER_LOG_LEVEL_NONE", + "range": null, + "title": "No output", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_ERROR", + "name": "BOOTLOADER_LOG_LEVEL_ERROR", + "range": null, + "title": "Error", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_WARN", + "name": "BOOTLOADER_LOG_LEVEL_WARN", + "range": null, + "title": "Warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_INFO", + "name": "BOOTLOADER_LOG_LEVEL_INFO", + "range": null, + "title": "Info", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_DEBUG", + "name": "BOOTLOADER_LOG_LEVEL_DEBUG", + "range": null, + "title": "Debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_LOG_LEVEL_VERBOSE", + "name": "BOOTLOADER_LOG_LEVEL_VERBOSE", + "range": null, + "title": "Verbose", + "type": "bool" + } + ], + "depends_on": null, + "help": "Specify how much output to see in bootloader logs.", + "id": "bootloader-config-bootloader-log-verbosity", + "name": "BOOTLOADER_LOG_LEVEL", + "title": "Bootloader log verbosity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "BOOTLOADER_LOG_LEVEL", + "name": "BOOTLOADER_LOG_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "ESPTOOLPY_FLASHMODE_QIO || ESPTOOLPY_FLASHMODE_QOUT", + "help": "This value is ignored unless flash mode is set to QIO or QOUT *and* the SPI flash pins have been\noverriden by setting the eFuses SPI_PAD_CONFIG_xxx.\n\nWhen this is the case, the eFuse config only defines 3 of the 4 Quad I/O data pins. The WP pin (aka ESP32\npin \"SD_DATA_3\" or SPI flash pin \"IO2\") is not specified in eFuse. That pin number is compiled into the\nbootloader instead.\n\nThe default value (GPIO 7) is correct for WP pin on ESP32-D2WD integrated flash.", + "id": "BOOTLOADER_SPI_WP_PIN", + "name": "BOOTLOADER_SPI_WP_PIN", + "range": null, + "title": "SPI Flash WP Pin when customising pins via eFuse (read help)", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "!ESPTOOLPY_FLASHFREQ_80M && ", + "help": null, + "id": "BOOTLOADER_VDDSDIO_BOOST_1_8V", + "name": "BOOTLOADER_VDDSDIO_BOOST_1_8V", + "range": null, + "title": "1.8V", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BOOTLOADER_VDDSDIO_BOOST_1_9V", + "name": "BOOTLOADER_VDDSDIO_BOOST_1_9V", + "range": null, + "title": "1.9V", + "type": "bool" + } + ], + "depends_on": null, + "help": "If this option is enabled, and VDDSDIO LDO is set to 1.8V (using eFuse\nor MTDI bootstrapping pin), bootloader will change LDO settings to\noutput 1.9V instead. This helps prevent flash chip from browning out\nduring flash programming operations.\n\nThis option has no effect if VDDSDIO is set to 3.3V, or if the internal\nVDDSDIO regulator is disabled via eFuse.", + "id": "bootloader-config-vddsdio-ldo-voltage", + "name": "BOOTLOADER_VDDSDIO_BOOST", + "title": "VDDSDIO LDO voltage", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_FACTORY_RESET", + "help": "The selected GPIO will be configured as an input with internal pull-up enabled.\nTo trigger a factory reset, this GPIO must be pulled low on reset.\nNote that GPIO34-39 do not have an internal pullup and an external one must be provided.", + "id": "BOOTLOADER_NUM_PIN_FACTORY_RESET", + "name": "BOOTLOADER_NUM_PIN_FACTORY_RESET", + "range": null, + "title": "Number of the GPIO input for factory reset", + "type": "int" + }, + { + "children": [], + "depends_on": "BOOTLOADER_FACTORY_RESET", + "help": "The device will boot from \"factory\" partition (or OTA slot 0 if no factory partition is present) after a\nfactory reset.", + "id": "BOOTLOADER_OTA_DATA_ERASE", + "name": "BOOTLOADER_OTA_DATA_ERASE", + "range": null, + "title": "Clear OTA data on factory reset (select factory partition)", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_FACTORY_RESET", + "help": "Allows customers to select which data partitions will be erased while factory reset.\n\nSpecify the names of partitions as a comma-delimited with optional spaces for readability. (Like this:\n\"nvs, phy_init, ...\")\nMake sure that the name specified in the partition table and here are the same.\nPartitions of type \"app\" cannot be specified here.", + "id": "BOOTLOADER_DATA_FACTORY_RESET", + "name": "BOOTLOADER_DATA_FACTORY_RESET", + "range": null, + "title": "Comma-separated names of partitions to clear on factory reset", + "type": "string" + } + ], + "depends_on": null, + "help": "Allows to reset the device to factory settings:\n- clear one or more data partitions;\n- boot from \"factory\" partition.\nThe factory reset will occur if there is a GPIO input pulled low while device starts up.\nSee settings below.", + "id": "BOOTLOADER_FACTORY_RESET", + "name": "BOOTLOADER_FACTORY_RESET", + "range": null, + "title": "GPIO triggers factory reset", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_APP_TEST", + "help": "The selected GPIO will be configured as an input with internal pull-up enabled.\nTo trigger a test app, this GPIO must be pulled low on reset.\nAfter the GPIO input is deactivated and the device reboots, the old application will boot.\n(factory or OTA[x]).\nNote that GPIO34-39 do not have an internal pullup and an external one must be provided.", + "id": "BOOTLOADER_NUM_PIN_APP_TEST", + "name": "BOOTLOADER_NUM_PIN_APP_TEST", + "range": null, + "title": "Number of the GPIO input to boot TEST partition", + "type": "int" + } + ], + "depends_on": null, + "help": "Allows to run the test app from \"TEST\" partition.\nA boot from \"test\" partition will occur if there is a GPIO input pulled low while device starts up.\nSee settings below.", + "id": "BOOTLOADER_APP_TEST", + "name": "BOOTLOADER_APP_TEST", + "range": null, + "title": "GPIO triggers boot from test app partition", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_FACTORY_RESET || BOOTLOADER_APP_TEST", + "help": "The GPIO must be held low continuously for this period of time after reset\nbefore a factory reset or test partition boot (as applicable) is performed.", + "id": "BOOTLOADER_HOLD_TIME_GPIO", + "name": "BOOTLOADER_HOLD_TIME_GPIO", + "range": null, + "title": "Hold time of GPIO for reset/test mode (seconds)", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_WDT_ENABLE", + "help": "If it is set, the client must itself reset or disable rtc_wdt in their code (app_main()).\nOtherwise rtc_wdt will be disabled before calling app_main function.\nUse function rtc_wdt_feed() for resetting counter of rtc_wdt.\nUse function rtc_wdt_disable() for disabling rtc_wdt.", + "id": "BOOTLOADER_WDT_DISABLE_IN_USER_CODE", + "name": "BOOTLOADER_WDT_DISABLE_IN_USER_CODE", + "range": null, + "title": "Allows RTC watchdog disable in user code", + "type": "bool" + }, + { + "children": [], + "depends_on": "BOOTLOADER_WDT_ENABLE", + "help": "Verify that this parameter is correct and more then the execution time.\nPay attention to options such as reset to factory, trigger test partition and encryption on boot\n- these options can increase the execution time.\nNote: RTC_WDT will reset while encryption operations will be performed.", + "id": "BOOTLOADER_WDT_TIME_MS", + "name": "BOOTLOADER_WDT_TIME_MS", + "range": [ + 0, + 120000 + ], + "title": "Timeout for RTC watchdog (ms)", + "type": "int" + } + ], + "depends_on": null, + "help": "Tracks the execution time of startup code.\nIf the execution time is exceeded, the RTC_WDT will restart system.\nIt is also useful to prevent a lock up in start code caused by an unstable power source.\nNOTE: Tracks the execution time starts from the bootloader code - re-set timeout, while selecting the\nsource for slow_clk - and ends calling app_main.\nRe-set timeout is needed due to WDT uses a SLOW_CLK clock source. After changing a frequency slow_clk a\ntime of WDT needs to re-set for new frequency.\nslow_clk depends on ESP32_RTC_CLK_SRC (INTERNAL_RC or EXTERNAL_CRYSTAL).", + "id": "BOOTLOADER_WDT_ENABLE", + "name": "BOOTLOADER_WDT_ENABLE", + "range": null, + "title": "Use RTC watchdog in start code", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", + "help": "The secure version is the sequence number stored in the header of each firmware.\nThe security version is set in the bootloader, version is recorded in the eFuse field\nas the number of set ones. The allocated number of bits in the efuse field\nfor storing the security version is limited (see BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD option).\n\nBootloader: When bootloader selects an app to boot, an app is selected that has\na security version greater or equal that recorded in eFuse field.\nThe app is booted with a higher (or equal) secure version.\n\nThe security version is worth increasing if in previous versions there is\na significant vulnerability and their use is not acceptable.\n\nYour partition table should has a scheme with ota_0 + ota_1 (without factory).", + "id": "BOOTLOADER_APP_SECURE_VERSION", + "name": "BOOTLOADER_APP_SECURE_VERSION", + "range": null, + "title": "eFuse secure version of app", + "type": "int" + }, + { + "children": [], + "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", + "help": "The size of the efuse secure version field.\nIts length is limited to 32 bits for ESP32 and 16 bits for ESP32-S2.\nThis determines how many times the security version can be increased.", + "id": "BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD", + "name": "BOOTLOADER_APP_SEC_VER_SIZE_EFUSE_FIELD", + "range": null, + "title": "Size of the efuse secure version field", + "type": "int" + }, + { + "children": [], + "depends_on": "BOOTLOADER_APP_ANTI_ROLLBACK", + "help": "This option allow emulate read/write operations with efuse secure version.\nIt allow to test anti-rollback implemention without permanent write eFuse bits.\nIn partition table should be exist this partition `emul_efuse, data, 5, , 0x2000`.", + "id": "BOOTLOADER_EFUSE_SECURE_VERSION_EMULATE", + "name": "BOOTLOADER_EFUSE_SECURE_VERSION_EMULATE", + "range": null, + "title": "Emulate operations with efuse secure version(only test)", + "type": "bool" + } + ], + "depends_on": "BOOTLOADER_APP_ROLLBACK_ENABLE", + "help": "This option prevents rollback to previous firmware/application image with lower security version.", + "id": "BOOTLOADER_APP_ANTI_ROLLBACK", + "name": "BOOTLOADER_APP_ANTI_ROLLBACK", + "range": null, + "title": "Enable app anti-rollback support", + "type": "bool" + } + ], + "depends_on": null, + "help": "After updating the app, the bootloader runs a new app with the \"ESP_OTA_IMG_PENDING_VERIFY\" state set.\nThis state prevents the re-run of this app. After the first boot of the new app in the user code, the\nfunction should be called to confirm the operability of the app or vice versa about its non-operability.\nIf the app is working, then it is marked as valid. Otherwise, it is marked as not valid and rolls back to\nthe previous working app. A reboot is performed, and the app is booted before the software update.\nNote: If during the first boot a new app the power goes out or the WDT works, then roll back will happen.\nRollback is possible only between the apps with the same security versions.", + "id": "BOOTLOADER_APP_ROLLBACK_ENABLE", + "name": "BOOTLOADER_APP_ROLLBACK_ENABLE", + "range": null, + "title": "Enable app rollback support", + "type": "bool" + }, + { + "children": [], + "depends_on": "(SECURE_BOOT_ENABLED && SECURE_BOOT_INSECURE) || !SECURE_BOOT_ENABLED", + "help": "This option disables the normal validation of an image coming out of\ndeep sleep (checksums, SHA256, and signature). This is a trade-off\nbetween wakeup performance from deep sleep, and image integrity checks.\n\nOnly enable this if you know what you are doing. It should not be used\nin conjunction with using deep_sleep() entry and changing the active OTA\npartition as this would skip the validation upon first load of the new\nOTA partition.", + "id": "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP", + "name": "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP", + "range": null, + "title": "Skip image validation when exiting deep sleep", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Reserve RTC FAST memory for Skip image validation. This option in bytes.\nThis option reserves an area in the RTC FAST memory (access only PRO_CPU).\nUsed to save the addresses of the selected application.\nWhen a wakeup occurs (from Deep sleep), the bootloader retrieves it and\nloads the application without validation.", + "id": "BOOTLOADER_RESERVE_RTC_SIZE", + "name": "BOOTLOADER_RESERVE_RTC_SIZE", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [ + { + "children": [], + "depends_on": "BOOTLOADER_CUSTOM_RESERVE_RTC", + "help": "This option reserves in RTC FAST memory the area for custom purposes.\nIf you want to create your own bootloader and save more information\nin this area of memory, you can increase it. It must be a multiple of 4 bytes.\nThis area (rtc_retain_mem_t) is reserved and has access from the bootloader and an application.", + "id": "BOOTLOADER_CUSTOM_RESERVE_RTC_SIZE", + "name": "BOOTLOADER_CUSTOM_RESERVE_RTC_SIZE", + "range": null, + "title": "Size in bytes for custom purposes", + "type": "hex" + } + ], + "depends_on": null, + "help": "This option allows the customer to place data in the RTC FAST memory,\nthis area remains valid when rebooted, except for power loss.\nThis memory is located at a fixed address and is available\nfor both the bootloader and the application.\n(The application and bootoloader must be compiled with the same option).\nThe RTC FAST memory has access only through PRO_CPU.", + "id": "BOOTLOADER_CUSTOM_RESERVE_RTC", + "name": "BOOTLOADER_CUSTOM_RESERVE_RTC", + "range": null, + "title": "Reserve RTC FAST memory for custom purposes", + "type": "bool" + } + ], + "depends_on": null, + "id": "bootloader-config", + "title": "Bootloader config", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SECURE_BOOT_ENABLED || SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT", + "help": null, + "id": "SECURE_SIGNED_ON_BOOT", + "name": "SECURE_SIGNED_ON_BOOT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_ENABLED || SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", + "help": null, + "id": "SECURE_SIGNED_ON_UPDATE", + "name": "SECURE_SIGNED_ON_UPDATE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_SIGNED_ON_BOOT || SECURE_SIGNED_ON_UPDATE", + "help": null, + "id": "SECURE_SIGNED_APPS", + "name": "SECURE_SIGNED_APPS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", + "help": "If this option is set, the bootloader will be compiled with code to verify that an app is signed before\nbooting it.\n\nIf hardware secure boot is enabled, this option is always enabled and cannot be disabled.\nIf hardware secure boot is not enabled, this option doesn't add significant security by itself so most\nusers will want to leave it disabled.", + "id": "SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT", + "name": "SECURE_SIGNED_ON_BOOT_NO_SECURE_BOOT", + "range": null, + "title": "Bootloader verifies app signatures", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", + "help": "If this option is set, any OTA updated apps will have the signature verified before being considered valid.\n\nWhen enabled, the signature is automatically checked whenever the esp_ota_ops.h APIs are used for OTA\nupdates, or esp_image_format.h APIs are used to verify apps.\n\nIf hardware secure boot is enabled, this option is always enabled and cannot be disabled.\nIf hardware secure boot is not enabled, this option still adds significant security against network-based\nattackers by preventing spoofing of OTA updates.", + "id": "SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", + "name": "SECURE_SIGNED_ON_UPDATE_NO_SECURE_BOOT", + "range": null, + "title": "Verify app signature on update", + "type": "bool" + } + ], + "depends_on": "!SECURE_BOOT_ENABLED", + "help": "Require apps to be signed to verify their integrity.\n\nThis option uses the same app signature scheme as hardware secure boot, but unlike hardware secure boot it\ndoes not prevent the bootloader from being physically updated. This means that the device can be secured\nagainst remote network access, but not physical access. Compared to using hardware Secure Boot this option\nis much simpler to implement.", + "id": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", + "name": "SECURE_SIGNED_APPS_NO_SECURE_BOOT", + "range": null, + "title": "Require signed app images", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "On first boot, the bootloader will generate a key which is not readable externally or by software. A\ndigest is generated from the bootloader image itself. This digest will be verified on each subsequent\nboot.\n\nEnabling this option means that the bootloader cannot be changed after the first time it is booted.", + "id": "SECURE_BOOTLOADER_ONE_TIME_FLASH", + "name": "SECURE_BOOTLOADER_ONE_TIME_FLASH", + "range": null, + "title": "One-time flash", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Generate a reusable secure bootloader key, derived (via SHA-256) from the secure boot signing key.\n\nThis allows the secure bootloader to be re-flashed by anyone with access to the secure boot signing\nkey.\n\nThis option is less secure than one-time flash, because a leak of the digest key from one device\nallows reflashing of any device that uses it.", + "id": "SECURE_BOOTLOADER_REFLASHABLE", + "name": "SECURE_BOOTLOADER_REFLASHABLE", + "range": null, + "title": "Reflashable", + "type": "bool" + } + ], + "depends_on": "SECURE_BOOT_ENABLED", + "help": null, + "id": "security-features-enable-hardware-secure-boot-in-bootloader-read-docs-first--secure-bootloader-mode", + "name": "SECURE_BOOTLOADER_MODE", + "title": "Secure bootloader mode", + "type": "choice" + } + ], + "depends_on": null, + "help": "Build a bootloader which enables secure boot on first boot.\n\nOnce enabled, secure boot will not boot a modified bootloader. The bootloader will only load a partition\ntable or boot an app if the data has a verified digital signature. There are implications for reflashing\nupdated apps once secure boot is enabled.\n\nWhen enabling secure boot, JTAG and ROM BASIC Interpreter are permanently disabled by default.\n\nRefer to https://docs.espressif.com/projects/esp-idf/en/latest/security/secure-boot.html before enabling.", + "id": "SECURE_BOOT_ENABLED", + "name": "SECURE_BOOT_ENABLED", + "range": null, + "title": "Enable hardware secure boot in bootloader (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "SECURE_BOOT_BUILD_SIGNED_BINARIES", + "help": "Path to the key file used to sign app images.\n\nKey file is an ECDSA private key (NIST256p curve) in PEM format.\n\nPath is evaluated relative to the project directory.\n\nYou can generate a new signing key by running the following command:\nespsecure.py generate_signing_key secure_boot_signing_key.pem\n\nSee https://docs.espressif.com/projects/esp-idf/en/latest/security/secure-boot.html for details.", + "id": "SECURE_BOOT_SIGNING_KEY", + "name": "SECURE_BOOT_SIGNING_KEY", + "range": null, + "title": "Secure boot private signing key", + "type": "string" + } + ], + "depends_on": "SECURE_SIGNED_APPS", + "help": "Once secure boot or signed app requirement is enabled, app images are required to be signed.\n\nIf enabled (default), these binary files are signed as part of the build process. The file named in\n\"Secure boot private signing key\" will be used to sign the image.\n\nIf disabled, unsigned app/partition data will be built. They must be signed manually using espsecure.py\n(for example, on a remote signing server.)", + "id": "SECURE_BOOT_BUILD_SIGNED_BINARIES", + "name": "SECURE_BOOT_BUILD_SIGNED_BINARIES", + "range": null, + "title": "Sign binaries during build", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_SIGNED_APPS && !SECURE_BOOT_BUILD_SIGNED_BINARIES", + "help": "Path to a public key file used to verify signed images. This key is compiled into the bootloader and/or\napp, to verify app images.\n\nKey file is in raw binary format, and can be extracted from a\nPEM formatted private key using the espsecure.py\nextract_public_key command.\n\nRefer to https://docs.espressif.com/projects/esp-idf/en/latest/security/secure-boot.html before enabling.", + "id": "SECURE_BOOT_VERIFICATION_KEY", + "name": "SECURE_BOOT_VERIFICATION_KEY", + "range": null, + "title": "Secure boot public signature verification key", + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_BOOTLOADER_KEY_ENCODING_256BIT", + "name": "SECURE_BOOTLOADER_KEY_ENCODING_256BIT", + "range": null, + "title": "No encoding (256 bit key)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_BOOTLOADER_KEY_ENCODING_192BIT", + "name": "SECURE_BOOTLOADER_KEY_ENCODING_192BIT", + "range": null, + "title": "3/4 encoding (192 bit key)", + "type": "bool" + } + ], + "depends_on": "SECURE_BOOTLOADER_REFLASHABLE", + "help": "In reflashable secure bootloader mode, a hardware key is derived from the signing key (with SHA-256) and\ncan be written to eFuse with espefuse.py.\n\nNormally this is a 256-bit key, but if 3/4 Coding Scheme is used on the device then the eFuse key is\ntruncated to 192 bits.\n\nThis configuration item doesn't change any firmware code, it only changes the size of key binary which is\ngenerated at build time.", + "id": "security-features-hardware-key-encoding", + "name": "SECURE_BOOTLOADER_KEY_ENCODING", + "title": "Hardware Key Encoding", + "type": "choice" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_ENABLED", + "help": "You can disable some of the default protections offered by secure boot, in order to enable testing or a\ncustom combination of security features.\n\nOnly enable these options if you are very sure.\n\nRefer to https://docs.espressif.com/projects/esp-idf/en/latest/security/secure-boot.html before enabling.", + "id": "SECURE_BOOT_INSECURE", + "name": "SECURE_BOOT_INSECURE", + "range": null, + "title": "Allow potentially insecure options", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_AES128", + "name": "SECURE_FLASH_ENCRYPTION_AES128", + "range": null, + "title": "AES-128 (256-bit key)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_AES256", + "name": "SECURE_FLASH_ENCRYPTION_AES256", + "range": null, + "title": "AES-256 (512-bit key)", + "type": "bool" + } + ], + "depends_on": "IDF_TARGET_ESP32S2 && SECURE_FLASH_ENC_ENABLED", + "help": "Size of generated AES-XTS key.\n\nAES-128 uses a 256-bit key (32 bytes) which occupies one Efuse key block.\nAES-256 uses a 512-bit key (64 bytes) which occupies two Efuse key blocks.\n\nThis setting is ignored if either type of key is already burned to Efuse before the first boot.\nIn this case, the pre-burned key is used and no new key is generated.", + "id": "security-features-enable-flash-encryption-on-boot-read-docs-first--size-of-generated-aes-xts-key", + "name": "SECURE_FLASH_ENCRYPTION_KEYSIZE", + "title": "Size of generated AES-XTS key", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "name": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "range": null, + "title": "Development(NOT SECURE)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SECURE_FLASH_ENCRYPTION_MODE_RELEASE", + "name": "SECURE_FLASH_ENCRYPTION_MODE_RELEASE", + "range": null, + "title": "Release", + "type": "bool" + } + ], + "depends_on": "SECURE_FLASH_ENC_ENABLED", + "help": "By default Development mode is enabled which allows UART bootloader to perform flash encryption operations\n\nSelect Release mode only for production or manufacturing. Once enabled you can not reflash using UART\nbootloader\n\nRefer to https://docs.espressif.com/projects/esp-idf/en/latest/security/secure-boot.html and\nhttps://docs.espressif.com/projects/esp-idf/en/latest/security/flash-encryption.html for details.", + "id": "security-features-enable-flash-encryption-on-boot-read-docs-first--enable-usage-mode", + "name": "SECURE_FLASH_ENCRYPTION_MODE", + "title": "Enable usage mode", + "type": "choice" + } + ], + "depends_on": null, + "help": "If this option is set, flash contents will be encrypted by the bootloader on first boot.\n\nNote: After first boot, the system will be permanently encrypted. Re-flashing an encrypted\nsystem is complicated and not always possible.\n\nRead https://docs.espressif.com/projects/esp-idf/en/latest/security/flash-encryption.html\nbefore enabling.", + "id": "SECURE_FLASH_ENC_ENABLED", + "name": "SECURE_FLASH_ENC_ENABLED", + "range": null, + "title": "Enable flash encryption on boot (READ DOCS FIRST)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "SECURE_BOOT_INSECURE || SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "help": "By default, the BASIC ROM Console starts on reset if no valid bootloader is\nread from the flash.\n\nWhen either flash encryption or secure boot are enabled, the default is to\ndisable this BASIC fallback mode permanently via eFuse.\n\nIf this option is set, this eFuse is not burned and the BASIC ROM Console may\nremain accessible. Only set this option in testing environments.", + "id": "SECURE_BOOT_ALLOW_ROM_BASIC", + "name": "SECURE_BOOT_ALLOW_ROM_BASIC", + "range": null, + "title": "Leave ROM BASIC Interpreter available on reset", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_INSECURE || SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "help": "If not set (default), the bootloader will permanently disable JTAG (across entire chip) on first boot\nwhen either secure boot or flash encryption is enabled.\n\nSetting this option leaves JTAG on for debugging, which negates all protections of flash encryption\nand some of the protections of secure boot.\n\nOnly set this option in testing environments.", + "id": "SECURE_BOOT_ALLOW_JTAG", + "name": "SECURE_BOOT_ALLOW_JTAG", + "range": null, + "title": "Allow JTAG Debugging", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_BOOT_INSECURE", + "help": "If not set (default), app partition size must be a multiple of 64KB. App images are padded to 64KB\nlength, and the bootloader checks any trailing bytes after the signature (before the next 64KB\nboundary) have not been written. This is because flash cache maps entire 64KB pages into the address\nspace. This prevents an attacker from appending unverified data after the app image in the flash,\ncausing it to be mapped into the address space.\n\nSetting this option allows the app partition length to be unaligned, and disables padding of the app\nimage to this length. It is generally not recommended to set this option, unless you have a legacy\npartitioning scheme which doesn't support 64KB aligned partition lengths.", + "id": "SECURE_BOOT_ALLOW_SHORT_APP_PARTITION", + "name": "SECURE_BOOT_ALLOW_SHORT_APP_PARTITION", + "range": null, + "title": "Allow app partition length not 64KB aligned", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "help": "If not set (default), the bootloader will permanently disable UART bootloader encryption access on\nfirst boot. If set, the UART bootloader will still be able to access hardware encryption.\n\nIt is recommended to only set this option in testing environments.", + "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC", + "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_ENC", + "range": null, + "title": "Leave UART bootloader encryption enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "help": "If not set (default), the bootloader will permanently disable UART bootloader decryption access on\nfirst boot. If set, the UART bootloader will still be able to access hardware decryption.\n\nOnly set this option in testing environments. Setting this option allows complete bypass of flash\nencryption.", + "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_DEC", + "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_DEC", + "range": null, + "title": "Leave UART bootloader decryption enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "help": "If not set (default), the bootloader will permanently disable UART bootloader flash cache access on\nfirst boot. If set, the UART bootloader will still be able to access the flash cache.\n\nOnly set this option in testing environments.", + "id": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE", + "name": "SECURE_FLASH_UART_BOOTLOADER_ALLOW_CACHE", + "range": null, + "title": "Leave UART bootloader flash cache enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT", + "help": "If not set (default), and flash encryption is not yet enabled in eFuses, the 2nd stage bootloader\nwill enable flash encryption: generate the flash encryption key and program eFuses.\nIf this option is set, and flash encryption is not yet enabled, the bootloader will error out and\nreboot.\nIf flash encryption is enabled in eFuses, this option does not change the bootloader behavior.\n\nOnly use this option in testing environments, to avoid accidentally enabling flash encryption on\nthe wrong device. The device needs to have flash encryption already enabled using espefuse.py.", + "id": "SECURE_FLASH_REQUIRE_ALREADY_ENABLED", + "name": "SECURE_FLASH_REQUIRE_ALREADY_ENABLED", + "range": null, + "title": "Require flash encryption to be already enabled", + "type": "bool" + } + ], + "depends_on": null, + "id": "security-features-potentially-insecure-options", + "title": "Potentially insecure options", + "type": "menu" + } + ], + "depends_on": null, + "id": "security-features", + "title": "Security features", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!IDF_CMAKE", + "help": "The serial port that's connected to the ESP chip. This can be overridden by setting the ESPPORT\nenvironment variable.\n\nThis value is ignored when using the CMake-based build system or idf.py.", + "id": "ESPTOOLPY_PORT", + "name": "ESPTOOLPY_PORT", + "range": null, + "title": "Default serial port", + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_BAUD_115200B", + "name": "ESPTOOLPY_BAUD_115200B", + "range": null, + "title": "115200 baud", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_BAUD_230400B", + "name": "ESPTOOLPY_BAUD_230400B", + "range": null, + "title": "230400 baud", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_BAUD_921600B", + "name": "ESPTOOLPY_BAUD_921600B", + "range": null, + "title": "921600 baud", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_BAUD_2MB", + "name": "ESPTOOLPY_BAUD_2MB", + "range": null, + "title": "2Mbaud", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_BAUD_OTHER", + "name": "ESPTOOLPY_BAUD_OTHER", + "range": null, + "title": "Other baud rate", + "type": "bool" + } + ], + "depends_on": "!IDF_CMAKE", + "help": "Default baud rate to use while communicating with the ESP chip. Can be overridden by\nsetting the ESPBAUD variable.\n\nThis value is ignored when using the CMake-based build system or idf.py.", + "id": "serial-flasher-config-default-baud-rate", + "name": "ESPTOOLPY_BAUD", + "title": "Default baud rate", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESPTOOLPY_BAUD_OTHER_VAL", + "name": "ESPTOOLPY_BAUD_OTHER_VAL", + "range": null, + "title": "Other baud rate value", + "type": "int" + }, + { + "children": [], + "depends_on": "!IDF_CMAKE", + "help": null, + "id": "ESPTOOLPY_BAUD", + "name": "ESPTOOLPY_BAUD", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "!IDF_CMAKE", + "help": "The flasher tool can send data compressed using zlib, letting the ROM on the ESP chip\ndecompress it on the fly before flashing it. For most payloads, this should result in a\nspeed increase.", + "id": "ESPTOOLPY_COMPRESSED", + "name": "ESPTOOLPY_COMPRESSED", + "range": null, + "title": "Use compressed upload", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHMODE_QIO", + "name": "ESPTOOLPY_FLASHMODE_QIO", + "range": null, + "title": "QIO", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHMODE_QOUT", + "name": "ESPTOOLPY_FLASHMODE_QOUT", + "range": null, + "title": "QOUT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHMODE_DIO", + "name": "ESPTOOLPY_FLASHMODE_DIO", + "range": null, + "title": "DIO", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHMODE_DOUT", + "name": "ESPTOOLPY_FLASHMODE_DOUT", + "range": null, + "title": "DOUT", + "type": "bool" + } + ], + "depends_on": null, + "help": "Mode the flash chip is flashed in, as well as the default mode for the\nbinary to run in.", + "id": "serial-flasher-config-flash-spi-mode", + "name": "ESPTOOLPY_FLASHMODE", + "title": "Flash SPI mode", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESPTOOLPY_FLASHMODE", + "name": "ESPTOOLPY_FLASHMODE", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_80M", + "name": "ESPTOOLPY_FLASHFREQ_80M", + "range": null, + "title": "80 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_40M", + "name": "ESPTOOLPY_FLASHFREQ_40M", + "range": null, + "title": "40 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_26M", + "name": "ESPTOOLPY_FLASHFREQ_26M", + "range": null, + "title": "26 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHFREQ_20M", + "name": "ESPTOOLPY_FLASHFREQ_20M", + "range": null, + "title": "20 MHz", + "type": "bool" + } + ], + "depends_on": null, + "help": "The SPI flash frequency to be used.", + "id": "serial-flasher-config-flash-spi-speed", + "name": "ESPTOOLPY_FLASHFREQ", + "title": "Flash SPI speed", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESPTOOLPY_FLASHFREQ", + "name": "ESPTOOLPY_FLASHFREQ", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_1MB", + "name": "ESPTOOLPY_FLASHSIZE_1MB", + "range": null, + "title": "1 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_2MB", + "name": "ESPTOOLPY_FLASHSIZE_2MB", + "range": null, + "title": "2 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_4MB", + "name": "ESPTOOLPY_FLASHSIZE_4MB", + "range": null, + "title": "4 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_8MB", + "name": "ESPTOOLPY_FLASHSIZE_8MB", + "range": null, + "title": "8 MB", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_FLASHSIZE_16MB", + "name": "ESPTOOLPY_FLASHSIZE_16MB", + "range": null, + "title": "16 MB", + "type": "bool" + } + ], + "depends_on": null, + "help": "SPI flash size, in megabytes", + "id": "serial-flasher-config-flash-size", + "name": "ESPTOOLPY_FLASHSIZE", + "title": "Flash size", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESPTOOLPY_FLASHSIZE", + "name": "ESPTOOLPY_FLASHSIZE", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": "If this option is set, flashing the project will automatically detect\nthe flash size of the target chip and update the bootloader image\nbefore it is flashed.", + "id": "ESPTOOLPY_FLASHSIZE_DETECT", + "name": "ESPTOOLPY_FLASHSIZE_DETECT", + "range": null, + "title": "Detect flash size when flashing bootloader", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_BEFORE_RESET", + "name": "ESPTOOLPY_BEFORE_RESET", + "range": null, + "title": "Reset to bootloader", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_BEFORE_NORESET", + "name": "ESPTOOLPY_BEFORE_NORESET", + "range": null, + "title": "No reset", + "type": "bool" + } + ], + "depends_on": null, + "help": "Configure whether esptool.py should reset the ESP32 before flashing.\n\nAutomatic resetting depends on the RTS & DTR signals being\nwired from the serial port to the ESP32. Most USB development\nboards do this internally.", + "id": "serial-flasher-config-before-flashing", + "name": "ESPTOOLPY_BEFORE", + "title": "Before flashing", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESPTOOLPY_BEFORE", + "name": "ESPTOOLPY_BEFORE", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_AFTER_RESET", + "name": "ESPTOOLPY_AFTER_RESET", + "range": null, + "title": "Reset after flashing", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_AFTER_NORESET", + "name": "ESPTOOLPY_AFTER_NORESET", + "range": null, + "title": "Stay in bootloader", + "type": "bool" + } + ], + "depends_on": null, + "help": "Configure whether esptool.py should reset the ESP32 after flashing.\n\nAutomatic resetting depends on the RTS & DTR signals being\nwired from the serial port to the ESP32. Most USB development\nboards do this internally.", + "id": "serial-flasher-config-after-flashing", + "name": "ESPTOOLPY_AFTER", + "title": "After flashing", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESPTOOLPY_AFTER", + "name": "ESPTOOLPY_AFTER", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_MONITOR_BAUD_9600B", + "name": "ESPTOOLPY_MONITOR_BAUD_9600B", + "range": null, + "title": "9600 bps", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_MONITOR_BAUD_57600B", + "name": "ESPTOOLPY_MONITOR_BAUD_57600B", + "range": null, + "title": "57600 bps", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_MONITOR_BAUD_115200B", + "name": "ESPTOOLPY_MONITOR_BAUD_115200B", + "range": null, + "title": "115200 bps", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_MONITOR_BAUD_230400B", + "name": "ESPTOOLPY_MONITOR_BAUD_230400B", + "range": null, + "title": "230400 bps", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_MONITOR_BAUD_921600B", + "name": "ESPTOOLPY_MONITOR_BAUD_921600B", + "range": null, + "title": "921600 bps", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_MONITOR_BAUD_2MB", + "name": "ESPTOOLPY_MONITOR_BAUD_2MB", + "range": null, + "title": "2 Mbps", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESPTOOLPY_MONITOR_BAUD_OTHER", + "name": "ESPTOOLPY_MONITOR_BAUD_OTHER", + "range": null, + "title": "Custom baud rate", + "type": "bool" + } + ], + "depends_on": null, + "help": "Baud rate to use when running 'idf.py monitor' or 'make monitor'\nto view serial output from a running chip.\n\nCan override by setting the MONITORBAUD environment variable.", + "id": "serial-flasher-config--idf-py-monitor-baud-rate", + "name": "ESPTOOLPY_MONITOR_BAUD", + "title": "'idf.py monitor' baud rate", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESPTOOLPY_MONITOR_BAUD_OTHER_VAL", + "name": "ESPTOOLPY_MONITOR_BAUD_OTHER_VAL", + "range": null, + "title": "Custom baud rate value", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESPTOOLPY_MONITOR_BAUD", + "name": "ESPTOOLPY_MONITOR_BAUD", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": null, + "id": "serial-flasher-config", + "title": "Serial flasher config", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "PARTITION_TABLE_SINGLE_APP", + "name": "PARTITION_TABLE_SINGLE_APP", + "range": null, + "title": "Single factory app, no OTA", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "PARTITION_TABLE_TWO_OTA", + "name": "PARTITION_TABLE_TWO_OTA", + "range": null, + "title": "Factory app, two OTA definitions", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "PARTITION_TABLE_CUSTOM", + "name": "PARTITION_TABLE_CUSTOM", + "range": null, + "title": "Custom partition table CSV", + "type": "bool" + } + ], + "depends_on": null, + "help": "The partition table to flash to the ESP32. The partition table\ndetermines where apps, data and other resources are expected to\nbe found.\n\nThe predefined partition table CSV descriptions can be found\nin the components/partition_table directory. Otherwise it's\npossible to create a new custom partition CSV for your application.", + "id": "partition-table-partition-table", + "name": "PARTITION_TABLE_TYPE", + "title": "Partition Table", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "Name of the custom partition CSV filename. This path is evaluated\nrelative to the project root directory.", + "id": "PARTITION_TABLE_CUSTOM_FILENAME", + "name": "PARTITION_TABLE_CUSTOM_FILENAME", + "range": null, + "title": "Custom partition CSV file", + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "PARTITION_TABLE_FILENAME", + "name": "PARTITION_TABLE_FILENAME", + "range": null, + "title": null, + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": "The address of partition table (by default 0x8000).\nAllows you to move the partition table, it gives more space for the bootloader.\nNote that the bootloader and app will both need to be compiled with the same PARTITION_TABLE_OFFSET value.\n\nThis number should be a multiple of 0x1000.\n\nNote that partition offsets in the partition table CSV file may need to be changed if this value is set to\na higher value. To have each partition offset adapt to the configured partition table offset, leave all\npartition offsets blank in the CSV file.", + "id": "PARTITION_TABLE_OFFSET", + "name": "PARTITION_TABLE_OFFSET", + "range": null, + "title": "Offset of partition table", + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": "Generate an MD5 checksum for the partition table for protecting the\nintegrity of the table. The generation should be turned off for legacy\nbootloaders which cannot recognize the MD5 checksum in the partition\ntable.", + "id": "PARTITION_TABLE_MD5", + "name": "PARTITION_TABLE_MD5", + "range": null, + "title": "Generate an MD5 checksum for the partition table", + "type": "bool" + } + ], + "depends_on": null, + "id": "partition-table", + "title": "Partition Table", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Linenoise line editing library provides functions to save and load\ncommand history. If this option is enabled, initalizes a FAT filesystem\nand uses it to store command history.", + "id": "STORE_HISTORY", + "name": "STORE_HISTORY", + "range": null, + "title": "Store command history in flash", + "type": "bool" + } + ], + "depends_on": null, + "id": "example-configuration", + "title": "Example Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_OPTIMIZATION_DEFAULT", + "name": "COMPILER_OPTIMIZATION_DEFAULT", + "range": null, + "title": "Debug (-Og)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_OPTIMIZATION_SIZE", + "name": "COMPILER_OPTIMIZATION_SIZE", + "range": null, + "title": "Optimize for size (-Os)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_OPTIMIZATION_PERF", + "name": "COMPILER_OPTIMIZATION_PERF", + "range": null, + "title": "Optimize for performance (-O2)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_OPTIMIZATION_NONE", + "name": "COMPILER_OPTIMIZATION_NONE", + "range": null, + "title": "Debug without optimization (-O0)", + "type": "bool" + } + ], + "depends_on": null, + "help": "This option sets compiler optimization level (gcc -O argument).\n\n- The \"Default\" setting will add the -0g flag to CFLAGS.\n- The \"Size\" setting will add the -0s flag to CFLAGS.\n- The \"Performance\" setting will add the -O2 flag to CFLAGS.\n- The \"None\" setting will add the -O0 flag to CFLAGS.\n\nThe \"Size\" setting cause the compiled code to be smaller and faster, but\nmay lead to difficulties of correlating code addresses to source file\nlines when debugging.\n\nThe \"Performance\" setting causes the compiled code to be larger and faster,\nbut will be easier to correlated code addresses to source file lines.\n\n\"None\" with -O0 produces compiled code without optimization.\n\nNote that custom optimization levels may be unsupported.", + "id": "compiler-options-optimization-level", + "name": "COMPILER_OPTIMIZATION", + "title": "Optimization Level", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Enable assertions. Assertion content and line number will be printed on failure.", + "id": "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE", + "name": "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE", + "range": null, + "title": "Enabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Enable silent assertions. Failed assertions will abort(), user needs to\nuse the aborting address to find the line number with the failed assertion.", + "id": "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT", + "name": "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT", + "range": null, + "title": "Silent (saves code size)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "If assertions are disabled, -DNDEBUG is added to CPPFLAGS.", + "id": "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE", + "name": "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE", + "range": null, + "title": "Disabled (sets -DNDEBUG)", + "type": "bool" + } + ], + "depends_on": null, + "help": "Assertions can be:\n\n- Enabled. Failure will print verbose assertion details. This is the default.\n\n- Set to \"silent\" to save code size (failed assertions will abort() but user\n needs to use the aborting address to find the line number with the failed assertion.)\n\n- Disabled entirely (not recommended for most configurations.) -DNDEBUG is added\n to CPPFLAGS in this case.", + "id": "compiler-options-assertion-level", + "name": "COMPILER_OPTIMIZATION_ASSERTION_LEVEL", + "title": "Assertion level", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "COMPILER_CXX_EXCEPTIONS", + "help": "Size (in bytes) of the emergency memory pool for C++ exceptions. This pool will be used to allocate\nmemory for thrown exceptions when there is not enough memory on the heap.", + "id": "COMPILER_CXX_EXCEPTIONS_EMG_POOL_SIZE", + "name": "COMPILER_CXX_EXCEPTIONS_EMG_POOL_SIZE", + "range": null, + "title": "Emergency Pool Size", + "type": "int" + } + ], + "depends_on": null, + "help": "Enabling this option compiles all IDF C++ files with exception support enabled.\n\nDisabling this option disables C++ exception support in all compiled files, and any libstdc++ code\nwhich throws an exception will abort instead.\n\nEnabling this option currently adds an additional ~500 bytes of heap overhead\nwhen an exception is thrown in user code for the first time.", + "id": "COMPILER_CXX_EXCEPTIONS", + "is_menuconfig": true, + "name": "COMPILER_CXX_EXCEPTIONS", + "range": null, + "title": "Enable C++ exceptions", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option compiles all C++ files with RTTI support enabled.\nThis increases binary size (typically by tens of kB) but allows using\ndynamic_cast conversion and typeid operator.", + "id": "COMPILER_CXX_RTTI", + "name": "COMPILER_CXX_RTTI", + "range": null, + "title": "Enable C++ run-time type info (RTTI)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_STACK_CHECK_MODE_NONE", + "name": "COMPILER_STACK_CHECK_MODE_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_STACK_CHECK_MODE_NORM", + "name": "COMPILER_STACK_CHECK_MODE_NORM", + "range": null, + "title": "Normal", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_STACK_CHECK_MODE_STRONG", + "name": "COMPILER_STACK_CHECK_MODE_STRONG", + "range": null, + "title": "Strong", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COMPILER_STACK_CHECK_MODE_ALL", + "name": "COMPILER_STACK_CHECK_MODE_ALL", + "range": null, + "title": "Overall", + "type": "bool" + } + ], + "depends_on": null, + "help": "Stack smashing protection mode. Emit extra code to check for buffer overflows, such as stack\nsmashing attacks. This is done by adding a guard variable to functions with vulnerable objects.\nThe guards are initialized when a function is entered and then checked when the function exits.\nIf a guard check fails, program is halted. Protection has the following modes:\n\n- In NORMAL mode (GCC flag: -fstack-protector) only functions that call alloca, and functions with\n buffers larger than 8 bytes are protected.\n\n- STRONG mode (GCC flag: -fstack-protector-strong) is like NORMAL, but includes additional functions\n to be protected -- those that have local array definitions, or have references to local frame\n addresses.\n\n- In OVERALL mode (GCC flag: -fstack-protector-all) all functions are protected.\n\nModes have the following impact on code performance and coverage:\n\n- performance: NORMAL > STRONG > OVERALL\n\n- coverage: NORMAL < STRONG < OVERALL", + "id": "compiler-options-stack-smashing-protection-mode", + "name": "COMPILER_STACK_CHECK_MODE", + "title": "Stack smashing protection mode", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "Stack smashing protection.", + "id": "COMPILER_STACK_CHECK", + "name": "COMPILER_STACK_CHECK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Adds -Wwrite-strings flag for the C/C++ compilers.\n\nFor C, this gives string constants the type ``const char[]`` so that\ncopying the address of one into a non-const ``char *`` pointer\nproduces a warning. This warning helps to find at compile time code\nthat tries to write into a string constant.\n\nFor C++, this warns about the deprecated conversion from string\nliterals to ``char *``.", + "id": "COMPILER_WARN_WRITE_STRINGS", + "name": "COMPILER_WARN_WRITE_STRINGS", + "range": null, + "title": "Enable -Wwrite-strings warning flag", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option if using GCC 6 or newer, and wanting to disable warnings which don't appear with\nGCC 5.", + "id": "COMPILER_DISABLE_GCC8_WARNINGS", + "name": "COMPILER_DISABLE_GCC8_WARNINGS", + "range": null, + "title": "Disable new warnings introduced in GCC 6 - 8", + "type": "bool" + } + ], + "depends_on": null, + "id": "compiler-options", + "title": "Compiler options", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "APPTRACE_DEST_TRAX", + "name": "APPTRACE_DEST_TRAX", + "range": null, + "title": "Trace memory", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "APPTRACE_DEST_NONE", + "name": "APPTRACE_DEST_NONE", + "range": null, + "title": "None", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select destination for application trace: trace memory or none (to disable).", + "id": "component-config-application-level-tracing-data-destination", + "name": "APPTRACE_DESTINATION", + "title": "Data Destination", + "type": "choice" + }, + { + "children": [], + "depends_on": "!ESP32_TRAX && !ESP32S2_TRAX", + "help": "Enables/disable application tracing module.", + "id": "APPTRACE_ENABLE", + "name": "APPTRACE_ENABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enables/disable application tracing module internal sync lock.", + "id": "APPTRACE_LOCK_ENABLE", + "name": "APPTRACE_LOCK_ENABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "APPTRACE_ENABLE", + "help": "Timeout for flushing last trace data to host in case of panic. In ms.\nUse -1 to disable timeout and wait forever.", + "id": "APPTRACE_ONPANIC_HOST_FLUSH_TMO", + "name": "APPTRACE_ONPANIC_HOST_FLUSH_TMO", + "range": null, + "title": "Timeout for flushing last trace data to host on panic", + "type": "int" + }, + { + "children": [], + "depends_on": "APPTRACE_DEST_TRAX", + "help": "Threshold for flushing last trace data to host on panic in post-mortem mode.\nThis is minimal amount of data needed to perform flush. In bytes.", + "id": "APPTRACE_POSTMORTEM_FLUSH_THRESH", + "name": "APPTRACE_POSTMORTEM_FLUSH_THRESH", + "range": null, + "title": "Threshold for flushing last trace data to host on panic", + "type": "int" + }, + { + "children": [], + "depends_on": "APPTRACE_DEST_TRAX", + "help": "Size of the buffer for events in bytes. It is useful for buffering events from\nthe time critical code (scheduler, ISRs etc). If this parameter is 0 then\nevents will be discarded when main HW buffer is full.", + "id": "APPTRACE_PENDING_DATA_SIZE_MAX", + "name": "APPTRACE_PENDING_DATA_SIZE_MAX", + "range": null, + "title": "Size of the pending data buffer", + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "FREERTOS_UNICORE && !PM_ENABLE && ", + "help": null, + "id": "SYSVIEW_TS_SOURCE_CCOUNT", + "name": "SYSVIEW_TS_SOURCE_CCOUNT", + "range": null, + "title": "CPU cycle counter (CCOUNT)", + "type": "bool" + }, + { + "children": [], + "depends_on": "!PM_ENABLE && ", + "help": null, + "id": "SYSVIEW_TS_SOURCE_TIMER_00", + "name": "SYSVIEW_TS_SOURCE_TIMER_00", + "range": null, + "title": "Timer 0, Group 0", + "type": "bool" + }, + { + "children": [], + "depends_on": "!PM_ENABLE && ", + "help": null, + "id": "SYSVIEW_TS_SOURCE_TIMER_01", + "name": "SYSVIEW_TS_SOURCE_TIMER_01", + "range": null, + "title": "Timer 1, Group 0", + "type": "bool" + }, + { + "children": [], + "depends_on": "!PM_ENABLE && ", + "help": null, + "id": "SYSVIEW_TS_SOURCE_TIMER_10", + "name": "SYSVIEW_TS_SOURCE_TIMER_10", + "range": null, + "title": "Timer 0, Group 1", + "type": "bool" + }, + { + "children": [], + "depends_on": "!PM_ENABLE && ", + "help": null, + "id": "SYSVIEW_TS_SOURCE_TIMER_11", + "name": "SYSVIEW_TS_SOURCE_TIMER_11", + "range": null, + "title": "Timer 1, Group 1", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SYSVIEW_TS_SOURCE_ESP_TIMER", + "name": "SYSVIEW_TS_SOURCE_ESP_TIMER", + "range": null, + "title": "esp_timer high resolution timer", + "type": "bool" + } + ], + "depends_on": "SYSVIEW_ENABLE && APPTRACE_ENABLE", + "help": "SystemView needs to use a hardware timer as the source of timestamps\nwhen tracing. This option selects the timer for it.", + "id": "component-config-application-level-tracing-freertos-systemview-tracing-systemview-tracing-enable-timer-to-use-as-timestamp-source", + "name": "SYSVIEW_TS_SOURCE", + "title": "Timer to use as timestamp source", + "type": "choice" + }, + { + "children": [], + "depends_on": "SYSVIEW_ENABLE && APPTRACE_ENABLE", + "help": "Configures maximum supported tasks in sysview debug", + "id": "SYSVIEW_MAX_TASKS", + "name": "SYSVIEW_MAX_TASKS", + "range": null, + "title": "Maximum supported tasks", + "type": "int" + }, + { + "children": [], + "depends_on": "SYSVIEW_ENABLE && APPTRACE_ENABLE", + "help": "Configures timeout (in us) to wait for free space in trace buffer.\nSet to -1 to wait forever and avoid lost events.", + "id": "SYSVIEW_BUF_WAIT_TMO", + "name": "SYSVIEW_BUF_WAIT_TMO", + "range": null, + "title": "Trace buffer wait timeout", + "type": "int" + }, + { + "children": [], + "depends_on": "SYSVIEW_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"Trace Buffer Overflow\" event.", + "id": "SYSVIEW_EVT_OVERFLOW_ENABLE", + "name": "SYSVIEW_EVT_OVERFLOW_ENABLE", + "range": null, + "title": "Trace Buffer Overflow Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "SYSVIEW_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"ISR Enter\" event.", + "id": "SYSVIEW_EVT_ISR_ENTER_ENABLE", + "name": "SYSVIEW_EVT_ISR_ENTER_ENABLE", + "range": null, + "title": "ISR Enter Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "SYSVIEW_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"ISR Exit\" event.", + "id": "SYSVIEW_EVT_ISR_EXIT_ENABLE", + "name": "SYSVIEW_EVT_ISR_EXIT_ENABLE", + "range": null, + "title": "ISR Exit Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "SYSVIEW_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"ISR to Scheduler\" event.", + "id": "SYSVIEW_EVT_ISR_TO_SCHEDULER_ENABLE", + "name": "SYSVIEW_EVT_ISR_TO_SCHEDULER_ENABLE", + "range": null, + "title": "ISR Exit to Scheduler Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "SYSVIEW_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"Task Start Execution\" event.", + "id": "SYSVIEW_EVT_TASK_START_EXEC_ENABLE", + "name": "SYSVIEW_EVT_TASK_START_EXEC_ENABLE", + "range": null, + "title": "Task Start Execution Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "SYSVIEW_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"Task Stop Execution\" event.", + "id": "SYSVIEW_EVT_TASK_STOP_EXEC_ENABLE", + "name": "SYSVIEW_EVT_TASK_STOP_EXEC_ENABLE", + "range": null, + "title": "Task Stop Execution Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "SYSVIEW_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"Task Start Ready State\" event.", + "id": "SYSVIEW_EVT_TASK_START_READY_ENABLE", + "name": "SYSVIEW_EVT_TASK_START_READY_ENABLE", + "range": null, + "title": "Task Start Ready State Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "SYSVIEW_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"Task Stop Ready State\" event.", + "id": "SYSVIEW_EVT_TASK_STOP_READY_ENABLE", + "name": "SYSVIEW_EVT_TASK_STOP_READY_ENABLE", + "range": null, + "title": "Task Stop Ready State Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "SYSVIEW_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"Task Create\" event.", + "id": "SYSVIEW_EVT_TASK_CREATE_ENABLE", + "name": "SYSVIEW_EVT_TASK_CREATE_ENABLE", + "range": null, + "title": "Task Create Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "SYSVIEW_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"Task Terminate\" event.", + "id": "SYSVIEW_EVT_TASK_TERMINATE_ENABLE", + "name": "SYSVIEW_EVT_TASK_TERMINATE_ENABLE", + "range": null, + "title": "Task Terminate Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "SYSVIEW_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"System Idle\" event.", + "id": "SYSVIEW_EVT_IDLE_ENABLE", + "name": "SYSVIEW_EVT_IDLE_ENABLE", + "range": null, + "title": "System Idle Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "SYSVIEW_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"Timer Enter\" event.", + "id": "SYSVIEW_EVT_TIMER_ENTER_ENABLE", + "name": "SYSVIEW_EVT_TIMER_ENTER_ENABLE", + "range": null, + "title": "Timer Enter Event", + "type": "bool" + }, + { + "children": [], + "depends_on": "SYSVIEW_ENABLE && APPTRACE_ENABLE", + "help": "Enables \"Timer Exit\" event.", + "id": "SYSVIEW_EVT_TIMER_EXIT_ENABLE", + "name": "SYSVIEW_EVT_TIMER_EXIT_ENABLE", + "range": null, + "title": "Timer Exit Event", + "type": "bool" + } + ], + "depends_on": "APPTRACE_ENABLE && APPTRACE_ENABLE", + "help": "Enables supporrt for SEGGER SystemView tracing functionality.", + "id": "SYSVIEW_ENABLE", + "name": "SYSVIEW_ENABLE", + "range": null, + "title": "SystemView Tracing Enable", + "type": "bool" + } + ], + "depends_on": "APPTRACE_ENABLE", + "id": "component-config-application-level-tracing-freertos-systemview-tracing", + "title": "FreeRTOS SystemView Tracing", + "type": "menu" + }, + { + "children": [], + "depends_on": "APPTRACE_ENABLE && !SYSVIEW_ENABLE", + "help": "Enables support for GCOV data transfer to host.", + "id": "APPTRACE_GCOV_ENABLE", + "name": "APPTRACE_GCOV_ENABLE", + "range": null, + "title": "GCOV to Host Enable", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-application-level-tracing", + "title": "Application Level Tracing", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "help": "Select this option to enable Bluetooth and show the submenu with Bluetooth configuration choices.", + "id": "BT_ENABLED", + "name": "BT_ENABLED", + "range": null, + "title": "Bluetooth", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BTDM_CTRL_MODE_BLE_ONLY", + "name": "BTDM_CTRL_MODE_BLE_ONLY", + "range": null, + "title": "BLE Only", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BTDM_CTRL_MODE_BR_EDR_ONLY", + "name": "BTDM_CTRL_MODE_BR_EDR_ONLY", + "range": null, + "title": "BR/EDR Only", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BTDM_CTRL_MODE_BTDM", + "name": "BTDM_CTRL_MODE_BTDM", + "range": null, + "title": "Bluetooth Dual Mode", + "type": "bool" + } + ], + "depends_on": "BT_ENABLED", + "help": "Specify the bluetooth controller mode (BR/EDR, BLE or dual mode).", + "id": "component-config-bluetooth-bluetooth-controller-bluetooth-controller-mode-br-edr-ble-dualmode-", + "name": "BTDM_CTRL_MODE", + "title": "Bluetooth controller mode (BR/EDR/BLE/DUALMODE)", + "type": "choice" + }, + { + "children": [], + "depends_on": "BTDM_CTRL_MODE_BLE_ONLY || BTDM_CTRL_MODE_BTDM", + "help": "BLE maximum connections of bluetooth controller.\nEach connection uses 1KB static DRAM whenever the BT controller is enabled.", + "id": "BTDM_CTRL_BLE_MAX_CONN", + "name": "BTDM_CTRL_BLE_MAX_CONN", + "range": null, + "title": "BLE Max Connections", + "type": "int" + }, + { + "children": [], + "depends_on": "BTDM_CTRL_MODE_BR_EDR_ONLY || BTDM_CTRL_MODE_BTDM", + "help": "BR/EDR ACL maximum connections of bluetooth controller.\nEach connection uses 1.2KB static DRAM whenever the BT controller is enabled.", + "id": "BTDM_CTRL_BR_EDR_MAX_ACL_CONN", + "name": "BTDM_CTRL_BR_EDR_MAX_ACL_CONN", + "range": null, + "title": "BR/EDR ACL Max Connections", + "type": "int" + }, + { + "children": [], + "depends_on": "BTDM_CTRL_MODE_BR_EDR_ONLY || BTDM_CTRL_MODE_BTDM", + "help": "BR/EDR Synchronize maximum connections of bluetooth controller.\nEach connection uses 2KB static DRAM whenever the BT controller is enabled.", + "id": "BTDM_CTRL_BR_EDR_MAX_SYNC_CONN", + "name": "BTDM_CTRL_BR_EDR_MAX_SYNC_CONN", + "range": null, + "title": "BR/EDR Sync(SCO/eSCO) Max Connections", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BTDM_CTRL_BR_EDR_SCO_DATA_PATH_HCI", + "name": "BTDM_CTRL_BR_EDR_SCO_DATA_PATH_HCI", + "range": null, + "title": "HCI", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BTDM_CTRL_BR_EDR_SCO_DATA_PATH_PCM", + "name": "BTDM_CTRL_BR_EDR_SCO_DATA_PATH_PCM", + "range": null, + "title": "PCM", + "type": "bool" + } + ], + "depends_on": "BTDM_CTRL_MODE_BR_EDR_ONLY || BTDM_CTRL_MODE_BTDM", + "help": "SCO data path, i.e. HCI or PCM.\nSCO data can be sent/received through HCI synchronous packets, or the data\ncan be routed to on-chip PCM module on ESP32. PCM input/output signals can\nbe \"matrixed\" to GPIOs. The default data path can also be set using API\n\"esp_bredr_sco_datapath_set\"", + "id": "component-config-bluetooth-bluetooth-controller-br-edr-sync-sco-esco-default-data-path", + "name": "BTDM_CTRL_BR_EDR_SCO_DATA_PATH", + "title": "BR/EDR Sync(SCO/eSCO) default data path", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "BTDM_CTRL_BR_EDR_SCO_DATA_PATH_EFF", + "name": "BTDM_CTRL_BR_EDR_SCO_DATA_PATH_EFF", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BTDM_CTRL_MODE_BTDM", + "help": "BLE auto latency, used to enhance classic BT performance\nwhile classic BT and BLE are enabled at the same time.", + "id": "BTDM_CTRL_AUTO_LATENCY", + "name": "BTDM_CTRL_AUTO_LATENCY", + "range": null, + "title": "Auto latency", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "BTDM_CTRL_AUTO_LATENCY_EFF", + "name": "BTDM_CTRL_AUTO_LATENCY_EFF", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "BTDM_CTRL_BLE_MAX_CONN_EFF", + "name": "BTDM_CTRL_BLE_MAX_CONN_EFF", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "BTDM_CTRL_BR_EDR_MAX_ACL_CONN_EFF", + "name": "BTDM_CTRL_BR_EDR_MAX_ACL_CONN_EFF", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "BTDM_CTRL_BR_EDR_MAX_SYNC_CONN_EFF", + "name": "BTDM_CTRL_BR_EDR_MAX_SYNC_CONN_EFF", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BTDM_CTRL_PINNED_TO_CORE_0", + "name": "BTDM_CTRL_PINNED_TO_CORE_0", + "range": null, + "title": "Core 0 (PRO CPU)", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ", + "help": null, + "id": "BTDM_CTRL_PINNED_TO_CORE_1", + "name": "BTDM_CTRL_PINNED_TO_CORE_1", + "range": null, + "title": "Core 1 (APP CPU)", + "type": "bool" + } + ], + "depends_on": "BT_ENABLED && !FREERTOS_UNICORE", + "help": "Specify the cpu core to run bluetooth controller.\nCan not specify no-affinity.", + "id": "component-config-bluetooth-bluetooth-controller-the-cpu-core-which-bluetooth-controller-run", + "name": "BTDM_CTRL_PINNED_TO_CORE_CHOICE", + "title": "The cpu core which bluetooth controller run", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "BTDM_CTRL_PINNED_TO_CORE", + "name": "BTDM_CTRL_PINNED_TO_CORE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Normal option. Mostly, choose this VHCI when bluetooth host run on ESP32, too.", + "id": "BTDM_CTRL_HCI_MODE_VHCI", + "name": "BTDM_CTRL_HCI_MODE_VHCI", + "range": null, + "title": "VHCI", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "If use external bluetooth host which run on other hardware and use UART as the HCI interface,\nchoose this option.", + "id": "BTDM_CTRL_HCI_MODE_UART_H4", + "name": "BTDM_CTRL_HCI_MODE_UART_H4", + "range": null, + "title": "UART(H4)", + "type": "bool" + } + ], + "depends_on": "BT_ENABLED", + "help": "Speicify HCI mode as VHCI or UART(H4)", + "id": "component-config-bluetooth-bluetooth-controller-hci-mode", + "name": "BTDM_CTRL_HCI_MODE_CHOICE", + "title": "HCI mode", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "BTDM_CTRL_HCI_MODE_UART_H4", + "help": "Uart number for HCI. The available uart is UART1 and UART2.", + "id": "BT_HCI_UART_NO", + "name": "BT_HCI_UART_NO", + "range": null, + "title": "UART Number for HCI", + "type": "int" + }, + { + "children": [], + "depends_on": "BTDM_CTRL_HCI_MODE_UART_H4", + "help": "UART Baudrate for HCI. Please use standard baudrate.", + "id": "BT_HCI_UART_BAUDRATE", + "name": "BT_HCI_UART_BAUDRATE", + "range": null, + "title": "UART Baudrate for HCI", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-bluetooth-bluetooth-controller-hci-uart-h4-options", + "title": "HCI UART(H4) Options", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "ORIG mode is a bluetooth sleep mode that can be used for dual mode controller. In this mode,\nbluetooth controller sleeps between BR/EDR frames and BLE events. A low power clock is used to\nmaintain bluetooth reference clock.", + "id": "BTDM_MODEM_SLEEP_MODE_ORIG", + "name": "BTDM_MODEM_SLEEP_MODE_ORIG", + "range": null, + "title": "ORIG Mode(sleep with low power clock)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "EVED mode is for BLE only and is only for internal test. Do not use it for production. this\nmode is not compatible with DFS nor light sleep", + "id": "BTDM_MODEM_SLEEP_MODE_EVED", + "name": "BTDM_MODEM_SLEEP_MODE_EVED", + "range": null, + "title": "EVED Mode(For internal test only)", + "type": "bool" + } + ], + "depends_on": "BTDM_MODEM_SLEEP", + "help": "To select which strategy to use for modem sleep", + "id": "component-config-bluetooth-bluetooth-controller-modem-sleep-options-bluetooth-modem-sleep-bluetooth-modem-sleep-mode", + "name": "BTDM_MODEM_SLEEP_MODE", + "title": "Bluetooth Modem sleep mode", + "type": "choice" + } + ], + "depends_on": "BT_ENABLED", + "help": "Enable/disable bluetooth controller low power mode.", + "id": "BTDM_MODEM_SLEEP", + "name": "BTDM_MODEM_SLEEP", + "range": null, + "title": "Bluetooth modem sleep", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Main crystal can be used as low power clock for bluetooth modem sleep. If this option is\nselected, bluetooth modem sleep can work under Dynamic Frequency Scaling(DFS) enabled, but\ncannot work when light sleep is enabled. Main crystal has a good performance in accuracy as\nthe bluetooth low power clock source.", + "id": "BTDM_LPCLK_SEL_MAIN_XTAL", + "name": "BTDM_LPCLK_SEL_MAIN_XTAL", + "range": null, + "title": "Main crystal", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP32_RTC_CLK_SRC_EXT_CRYS && ", + "help": "External 32kHz crystal has a nominal frequency of 32.768kHz and provides good frequency\nstability. If used as Bluetooth low power clock, External 32kHz can support Bluetooth\nmodem sleep to be used with both DFS and light sleep.", + "id": "BTDM_LPCLK_SEL_EXT_32K_XTAL", + "name": "BTDM_LPCLK_SEL_EXT_32K_XTAL", + "range": null, + "title": "External 32kHz crystal", + "type": "bool" + } + ], + "depends_on": "BTDM_MODEM_SLEEP_MODE_ORIG", + "help": "Select the low power clock source for bluetooth controller. Bluetooth low power clock is\nthe clock source to maintain time in sleep mode.\n\n- \"Main crystal\" option provides good accuracy and can support Dynamic Frequency Scaling\n to be used with Bluetooth modem sleep. Light sleep is not supported.\n- \"External 32kHz crystal\" option allows user to use a 32.768kHz crystal as Bluetooth low\n power clock. This option is allowed as long as External 32kHz crystal is configured as\n the system RTC clock source. This option provides good accuracy and supports Bluetooth\n modem sleep to be used alongside Dynamic Frequency Scaling or light sleep.", + "id": "component-config-bluetooth-bluetooth-controller-modem-sleep-options-bluetooth-low-power-clock", + "name": "BTDM_LOW_POWER_CLOCK", + "title": "Bluetooth low power clock", + "type": "choice" + } + ], + "depends_on": null, + "id": "component-config-bluetooth-bluetooth-controller-modem-sleep-options", + "title": "MODEM SLEEP Options", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "BTDM_LPCLK_SEL_EXT_32K_XTAL && BTDM_CTRL_MODE_BLE_ONLY && ", + "help": null, + "id": "BTDM_BLE_DEFAULT_SCA_500PPM", + "name": "BTDM_BLE_DEFAULT_SCA_500PPM", + "range": null, + "title": "251ppm to 500ppm", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BTDM_BLE_DEFAULT_SCA_250PPM", + "name": "BTDM_BLE_DEFAULT_SCA_250PPM", + "range": null, + "title": "151ppm to 250ppm", + "type": "bool" + } + ], + "depends_on": "BTDM_CTRL_MODE_BLE_ONLY || BTDM_CTRL_MODE_BTDM", + "help": "BLE Sleep Clock Accuracy(SCA) for the local device is used to estimate window widening in BLE\nconnection events. With a lower level of clock accuracy(e.g. 500ppm over 250ppm), the slave\nneeds a larger RX window to synchronize with master in each anchor point, thus resulting in an\nincrease of power consumption but a higher level of robustness in keeping connected. According\nto the requirements of Bluetooth Core specification 4.2, the worst-case accuracy of Classic\nBluetooth low power oscialltor(LPO) is +/-250ppm in STANDBY and in low power modes such as\nsniff. For BLE the worst-case SCA is +/-500ppm.\n\n- \"151ppm to 250ppm\" option is the default value for Bluetooth Dual mode\n- \"251ppm to 500ppm\" option can be used in BLE only mode when using external 32kHz crystal as\n low power clock. This option is provided in case that BLE sleep clock has a lower level of\n accuracy, or other error sources contribute to the inaccurate timing during sleep.", + "id": "component-config-bluetooth-bluetooth-controller-ble-sleep-clock-accuracy", + "name": "BTDM_BLE_SLEEP_CLOCK_ACCURACY", + "title": "BLE Sleep Clock Accuracy", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "BTDM_BLE_SLEEP_CLOCK_ACCURACY_INDEX_EFF", + "name": "BTDM_BLE_SLEEP_CLOCK_ACCURACY_INDEX_EFF", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "This way is to use advertiser address filtering. The adv packet of the same address is only\nallowed to be reported once", + "id": "BTDM_SCAN_DUPL_TYPE_DEVICE", + "name": "BTDM_SCAN_DUPL_TYPE_DEVICE", + "range": null, + "title": "Scan Duplicate By Device Address", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This way is to use advertising data filtering. All same advertising data only allow to be reported\nonce even though they are from different devices.", + "id": "BTDM_SCAN_DUPL_TYPE_DATA", + "name": "BTDM_SCAN_DUPL_TYPE_DATA", + "range": null, + "title": "Scan Duplicate By Advertising Data", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This way is to use advertising data and device address filtering. All different adv packets with\nthe same address are allowed to be reported.", + "id": "BTDM_SCAN_DUPL_TYPE_DATA_DEVICE", + "name": "BTDM_SCAN_DUPL_TYPE_DATA_DEVICE", + "range": null, + "title": "Scan Duplicate By Device Address And Advertising Data", + "type": "bool" + } + ], + "depends_on": "BTDM_BLE_SCAN_DUPL", + "help": "Scan duplicate have three ways. one is \"Scan Duplicate By Device Address\", This way is to use\nadvertiser address filtering. The adv packet of the same address is only allowed to be reported once.\nAnother way is \"Scan Duplicate By Device Address And Advertising Data\". This way is to use advertising\ndata and device address filtering. All different adv packets with the same address are allowed to be\nreported. The last way is \"Scan Duplicate By Advertising Data\". This way is to use advertising data\nfiltering. All same advertising data only allow to be reported once even though they are from\ndifferent devices.", + "id": "component-config-bluetooth-bluetooth-controller-ble-scan-duplicate-options-scan-duplicate-type", + "name": "BTDM_SCAN_DUPL_TYPE", + "title": "Scan Duplicate Type", + "type": "choice" + }, + { + "children": [], + "depends_on": "BTDM_BLE_SCAN_DUPL", + "help": null, + "id": "BTDM_SCAN_DUPL_TYPE", + "name": "BTDM_SCAN_DUPL_TYPE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BTDM_BLE_SCAN_DUPL", + "help": "Maximum number of devices which can be recorded in scan duplicate filter.\nWhen the maximum amount of device in the filter is reached, the cache will be refreshed.", + "id": "BTDM_SCAN_DUPL_CACHE_SIZE", + "name": "BTDM_SCAN_DUPL_CACHE_SIZE", + "range": null, + "title": "Maximum number of devices in scan duplicate filter", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "BTDM_BLE_MESH_SCAN_DUPL_EN", + "help": "Maximum number of adv packets which can be recorded in duplicate scan cache for BLE Mesh.\nWhen the maximum amount of device in the filter is reached, the cache will be refreshed.", + "id": "BTDM_MESH_DUPL_SCAN_CACHE_SIZE", + "name": "BTDM_MESH_DUPL_SCAN_CACHE_SIZE", + "range": null, + "title": "Maximum number of Mesh adv packets in scan duplicate filter", + "type": "int" + } + ], + "depends_on": "BTDM_BLE_SCAN_DUPL", + "help": "This enables the BLE scan duplicate for special BLE Mesh scan.", + "id": "BTDM_BLE_MESH_SCAN_DUPL_EN", + "name": "BTDM_BLE_MESH_SCAN_DUPL_EN", + "range": null, + "title": "Special duplicate scan mechanism for BLE Mesh scan", + "type": "bool" + } + ], + "depends_on": "BTDM_CTRL_MODE_BTDM || BTDM_CTRL_MODE_BLE_ONLY", + "help": "This select enables parameters setting of BLE scan duplicate.", + "id": "BTDM_BLE_SCAN_DUPL", + "name": "BTDM_BLE_SCAN_DUPL", + "range": null, + "title": "BLE Scan Duplicate Options", + "type": "bool" + }, + { + "children": [], + "depends_on": "BTDM_CTRL_MODE_BLE_ONLY || BTDM_CTRL_MODE_BTDM", + "help": "The full scan function is mainly used to provide BLE scan performance.\nThis is required for scenes with high scan performance requirements, such as BLE Mesh scenes.", + "id": "BTDM_CTRL_FULL_SCAN_SUPPORTED", + "name": "BTDM_CTRL_FULL_SCAN_SUPPORTED", + "range": null, + "title": "BLE full scan feature supported", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BTDM_BLE_ADV_REPORT_FLOW_CTRL_SUPP", + "help": "The number of unprocessed advertising report that Bluedroid can save.If you set\n`BTDM_BLE_ADV_REPORT_FLOW_CTRL_NUM` to a small value, this may cause adv packets lost.\nIf you set `BTDM_BLE_ADV_REPORT_FLOW_CTRL_NUM` to a large value, Bluedroid may cache a\nlot of adv packets and this may cause system memory run out. For example, if you set\nit to 50, the maximum memory consumed by host is 35 * 50 bytes. Please set\n`BTDM_BLE_ADV_REPORT_FLOW_CTRL_NUM` according to your system free memory and handle adv\npackets as fast as possible, otherwise it will cause adv packets lost.", + "id": "BTDM_BLE_ADV_REPORT_FLOW_CTRL_NUM", + "name": "BTDM_BLE_ADV_REPORT_FLOW_CTRL_NUM", + "range": null, + "title": "BLE adv report flow control number", + "type": "int" + }, + { + "children": [], + "depends_on": "BTDM_BLE_ADV_REPORT_FLOW_CTRL_SUPP", + "help": "When adv report flow control is enabled, The ADV lost event will be generated when the number\nof ADV packets lost in the controller reaches this threshold. It is better to set a larger value.\nIf you set `BTDM_BLE_ADV_REPORT_DISCARD_THRSHOLD` to a small value or printf every adv lost event, it\nmay cause adv packets lost more.", + "id": "BTDM_BLE_ADV_REPORT_DISCARD_THRSHOLD", + "name": "BTDM_BLE_ADV_REPORT_DISCARD_THRSHOLD", + "range": null, + "title": "BLE adv lost event threshold value", + "type": "int" + } + ], + "depends_on": "BTDM_CTRL_MODE_BTDM || BTDM_CTRL_MODE_BLE_ONLY", + "help": "The function is mainly used to enable flow control for advertising reports. When it is enabled,\nadvertising reports will be discarded by the controller if the number of unprocessed advertising\nreports exceeds the size of BLE adv report flow control.", + "id": "BTDM_BLE_ADV_REPORT_FLOW_CTRL_SUPP", + "name": "BTDM_BLE_ADV_REPORT_FLOW_CTRL_SUPP", + "range": null, + "title": "BLE adv report flow control supported", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BTDM_COEX_BT_OPTIONS", + "help": "Improve BLE ADV coexistence priority to make it better performance.\nFor example, BLE mesh need to enable this option to improve BLE adv performance.", + "id": "BTDM_COEX_BLE_ADV_HIGH_PRIORITY", + "name": "BTDM_COEX_BLE_ADV_HIGH_PRIORITY", + "range": null, + "title": "Improve BLE ADV priority for WiFi & BLE coexistence", + "type": "bool" + } + ], + "depends_on": "ESP32_WIFI_SW_COEXIST_ENABLE", + "help": "Options of Bluetooth Side of WiFi and bluetooth coexistence.", + "id": "BTDM_COEX_BT_OPTIONS", + "is_menuconfig": true, + "name": "BTDM_COEX_BT_OPTIONS", + "range": null, + "title": "Coexistence Bluetooth Side Options", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-bluetooth-bluetooth-controller", + "title": "Bluetooth controller", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "This option is recommended for classic Bluetooth or for dual-mode\nusecases", + "id": "BT_BLUEDROID_ENABLED", + "name": "BT_BLUEDROID_ENABLED", + "range": null, + "title": "Bluedroid - Dual-mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This option is recommended for BLE only usecases to save on memory", + "id": "BT_NIMBLE_ENABLED", + "name": "BT_NIMBLE_ENABLED", + "range": null, + "title": "NimBLE - BLE only", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "This option is recommended when you want to communicate directly with the\ncontroller (without any host) or when you are using any other host stack\nnot supported by Espressif (not mentioned here).", + "id": "BT_CONTROLLER_ONLY", + "name": "BT_CONTROLLER_ONLY", + "range": null, + "title": "Controller Only", + "type": "bool" + } + ], + "depends_on": "BT_ENABLED && BTDM_CTRL_HCI_MODE_VHCI", + "help": "This helps to choose Bluetooth host stack", + "id": "component-config-bluetooth-bluetooth-host", + "name": "BT_HOST", + "title": "Bluetooth Host", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED", + "help": "This select btc task stack size", + "id": "BT_BTC_TASK_STACK_SIZE", + "name": "BT_BTC_TASK_STACK_SIZE", + "range": null, + "title": "Bluetooth event (callback to application) task stack size", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_BLUEDROID_PINNED_TO_CORE_0", + "name": "BT_BLUEDROID_PINNED_TO_CORE_0", + "range": null, + "title": "Core 0 (PRO CPU)", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ", + "help": null, + "id": "BT_BLUEDROID_PINNED_TO_CORE_1", + "name": "BT_BLUEDROID_PINNED_TO_CORE_1", + "range": null, + "title": "Core 1 (APP CPU)", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !FREERTOS_UNICORE", + "help": "Which the cpu core to run Bluedroid. Can choose core0 and core1.\nCan not specify no-affinity.", + "id": "component-config-bluetooth-bluedroid-options-the-cpu-core-which-bluedroid-run", + "name": "BT_BLUEDROID_PINNED_TO_CORE_CHOICE", + "title": "The cpu core which Bluedroid run", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_BLUEDROID_PINNED_TO_CORE", + "name": "BT_BLUEDROID_PINNED_TO_CORE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED", + "help": "This select btu task stack size", + "id": "BT_BTU_TASK_STACK_SIZE", + "name": "BT_BTU_TASK_STACK_SIZE", + "range": null, + "title": "Bluetooth Bluedroid Host Stack task stack size", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED", + "help": "Bluedroid memory debug", + "id": "BT_BLUEDROID_MEM_DEBUG", + "name": "BT_BLUEDROID_MEM_DEBUG", + "range": null, + "title": "Bluedroid memory debug", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_CLASSIC_ENABLED", + "help": "Advanced Audio Distrubution Profile", + "id": "BT_A2DP_ENABLE", + "name": "BT_A2DP_ENABLE", + "range": null, + "title": "A2DP", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_CLASSIC_ENABLED", + "help": "This enables the Serial Port Profile", + "id": "BT_SPP_ENABLED", + "name": "BT_SPP_ENABLED", + "range": null, + "title": "SPP", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_HFP_CLIENT_ENABLE", + "name": "BT_HFP_CLIENT_ENABLE", + "range": null, + "title": "Hands Free Unit", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_HFP_AG_ENABLE", + "name": "BT_HFP_AG_ENABLE", + "range": null, + "title": "Audio Gateway", + "type": "bool" + } + ], + "depends_on": "BT_HFP_ENABLE", + "help": null, + "id": "component-config-bluetooth-bluedroid-options-classic-bluetooth-hands-free-handset-profile-hands-free-profile-role-configuration", + "name": "BT_HFP_ROLE", + "title": "Hands-free Profile Role configuration", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_HFP_AUDIO_DATA_PATH_PCM", + "name": "BT_HFP_AUDIO_DATA_PATH_PCM", + "range": null, + "title": "PCM", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_HFP_AUDIO_DATA_PATH_HCI", + "name": "BT_HFP_AUDIO_DATA_PATH_HCI", + "range": null, + "title": "HCI", + "type": "bool" + } + ], + "depends_on": "BT_HFP_ENABLE", + "help": "SCO data path, i.e. HCI or PCM. This option is set using API\n\"esp_bredr_sco_datapath_set\" in Bluetooth host. Default SCO data\npath can also be set in Bluetooth Controller.", + "id": "component-config-bluetooth-bluedroid-options-classic-bluetooth-hands-free-handset-profile-audio-sco-data-path", + "name": "BT_HFP_AUDIO_DATA_PATH", + "title": "audio(SCO) data path", + "type": "choice" + } + ], + "depends_on": "BT_CLASSIC_ENABLED", + "help": null, + "id": "BT_HFP_ENABLE", + "name": "BT_HFP_ENABLE", + "range": null, + "title": "Hands Free/Handset Profile", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED", + "help": "For now this option needs \"SMP_ENABLE\" to be set to yes", + "id": "BT_CLASSIC_ENABLED", + "name": "BT_CLASSIC_ENABLED", + "range": null, + "title": "Classic Bluetooth", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_HFP_AUDIO_DATA_PATH_HCI", + "help": "This enables Wide Band Speech. Should disable it when SCO data path is PCM.\nOtherwise there will be no data transmited via GPIOs.", + "id": "BT_HFP_WBS_ENABLE", + "name": "BT_HFP_WBS_ENABLE", + "range": null, + "title": "Wide Band Speech", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_CLASSIC_ENABLED", + "help": "This enables the Secure Simple Pairing. If disable this option,\nBluedroid will only support Legacy Pairing", + "id": "BT_SSP_ENABLED", + "name": "BT_SSP_ENABLED", + "range": null, + "title": "Secure Simple Pairing", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BT_GATTS_ENABLE", + "help": "This enables \"Peripheral Preferred Connection Parameters\" characteristic (UUID: 0x2A04) in GAP service that has\nconnection parameters like min/max connection interval, slave latency and supervision timeout multiplier", + "id": "BT_GATTS_PPCP_CHAR_GAP", + "name": "BT_GATTS_PPCP_CHAR_GAP", + "range": null, + "title": "Enable Peripheral Preferred Connection Parameters characteristic in GAP service", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Manually send service change indication through API esp_ble_gatts_send_service_change_indication()", + "id": "BT_GATTS_SEND_SERVICE_CHANGE_MANUAL", + "name": "BT_GATTS_SEND_SERVICE_CHANGE_MANUAL", + "range": null, + "title": "GATTS manually send service change indication", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Let Bluedroid handle the service change indication internally", + "id": "BT_GATTS_SEND_SERVICE_CHANGE_AUTO", + "name": "BT_GATTS_SEND_SERVICE_CHANGE_AUTO", + "range": null, + "title": "GATTS automatically send service change indication", + "type": "bool" + } + ], + "depends_on": "BT_GATTS_ENABLE", + "help": "Service change indication mode for GATT Server.", + "id": "component-config-bluetooth-bluedroid-options-bluetooth-low-energy-include-gatt-server-module-gatts--gatts-service-change-mode", + "name": "BT_GATTS_SEND_SERVICE_CHANGE_MODE", + "title": "GATTS Service Change Mode", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_GATTS_ENABLE", + "help": null, + "id": "BT_GATTS_SEND_SERVICE_CHANGE_MODE", + "name": "BT_GATTS_SEND_SERVICE_CHANGE_MODE", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": "BT_BLE_ENABLED", + "help": "This option can be disabled when the app work only on gatt client mode", + "id": "BT_GATTS_ENABLE", + "name": "BT_GATTS_ENABLE", + "range": null, + "title": "Include GATT server module(GATTS)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_GATTC_ENABLE", + "help": "This select can save gattc cache data to nvs flash", + "id": "BT_GATTC_CACHE_NVS_FLASH", + "name": "BT_GATTC_CACHE_NVS_FLASH", + "range": null, + "title": "Save gattc cache data to nvs flash", + "type": "bool" + } + ], + "depends_on": "BT_BLE_ENABLED", + "help": "This option can be close when the app work only on gatt server mode", + "id": "BT_GATTC_ENABLE", + "name": "BT_GATTC_ENABLE", + "range": null, + "title": "Include GATT client module(GATTC)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_BLE_SMP_ENABLE", + "help": "In order to reduce the pairing time, slave actively initiates connection parameters\nupdate during pairing.", + "id": "BT_SMP_SLAVE_CON_PARAMS_UPD_ENABLE", + "name": "BT_SMP_SLAVE_CON_PARAMS_UPD_ENABLE", + "range": null, + "title": "Slave enable connection parameters update during pairing", + "type": "bool" + } + ], + "depends_on": "BT_BLE_ENABLED", + "help": "This option can be close when the app not used the ble security connect.", + "id": "BT_BLE_SMP_ENABLE", + "name": "BT_BLE_SMP_ENABLE", + "range": null, + "title": "Include BLE security module(SMP)", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED", + "help": "This enables Bluetooth Low Energy", + "id": "BT_BLE_ENABLED", + "name": "BT_BLE_ENABLED", + "range": null, + "title": "Bluetooth Low Energy", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED", + "help": "This select can save the rodata code size", + "id": "BT_STACK_NO_LOG", + "name": "BT_STACK_NO_LOG", + "range": null, + "title": "Disable BT debug logs (minimize bin size)", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HCI_TRACE_LEVEL_NONE", + "name": "BT_LOG_HCI_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HCI_TRACE_LEVEL_ERROR", + "name": "BT_LOG_HCI_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HCI_TRACE_LEVEL_WARNING", + "name": "BT_LOG_HCI_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HCI_TRACE_LEVEL_API", + "name": "BT_LOG_HCI_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HCI_TRACE_LEVEL_EVENT", + "name": "BT_LOG_HCI_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HCI_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_HCI_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HCI_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_HCI_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": "Define BT trace level for HCI layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-hci-layer", + "name": "BT_LOG_HCI_TRACE_LEVEL", + "title": "HCI layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": null, + "id": "BT_LOG_HCI_TRACE_LEVEL", + "name": "BT_LOG_HCI_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTM_TRACE_LEVEL_NONE", + "name": "BT_LOG_BTM_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTM_TRACE_LEVEL_ERROR", + "name": "BT_LOG_BTM_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTM_TRACE_LEVEL_WARNING", + "name": "BT_LOG_BTM_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTM_TRACE_LEVEL_API", + "name": "BT_LOG_BTM_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTM_TRACE_LEVEL_EVENT", + "name": "BT_LOG_BTM_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTM_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_BTM_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTM_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_BTM_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": "Define BT trace level for BTM layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-btm-layer", + "name": "BT_LOG_BTM_TRACE_LEVEL", + "title": "BTM layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": null, + "id": "BT_LOG_BTM_TRACE_LEVEL", + "name": "BT_LOG_BTM_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_L2CAP_TRACE_LEVEL_NONE", + "name": "BT_LOG_L2CAP_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_L2CAP_TRACE_LEVEL_ERROR", + "name": "BT_LOG_L2CAP_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_L2CAP_TRACE_LEVEL_WARNING", + "name": "BT_LOG_L2CAP_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_L2CAP_TRACE_LEVEL_API", + "name": "BT_LOG_L2CAP_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_L2CAP_TRACE_LEVEL_EVENT", + "name": "BT_LOG_L2CAP_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_L2CAP_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_L2CAP_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_L2CAP_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_L2CAP_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": "Define BT trace level for L2CAP layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-l2cap-layer", + "name": "BT_LOG_L2CAP_TRACE_LEVEL", + "title": "L2CAP layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": null, + "id": "BT_LOG_L2CAP_TRACE_LEVEL", + "name": "BT_LOG_L2CAP_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_RFCOMM_TRACE_LEVEL_NONE", + "name": "BT_LOG_RFCOMM_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_RFCOMM_TRACE_LEVEL_ERROR", + "name": "BT_LOG_RFCOMM_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_RFCOMM_TRACE_LEVEL_WARNING", + "name": "BT_LOG_RFCOMM_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_RFCOMM_TRACE_LEVEL_API", + "name": "BT_LOG_RFCOMM_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_RFCOMM_TRACE_LEVEL_EVENT", + "name": "BT_LOG_RFCOMM_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_RFCOMM_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_RFCOMM_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_RFCOMM_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_RFCOMM_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": "Define BT trace level for RFCOMM layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-rfcomm-layer", + "name": "BT_LOG_RFCOMM_TRACE_LEVEL", + "title": "RFCOMM layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": null, + "id": "BT_LOG_RFCOMM_TRACE_LEVEL", + "name": "BT_LOG_RFCOMM_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SDP_TRACE_LEVEL_NONE", + "name": "BT_LOG_SDP_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SDP_TRACE_LEVEL_ERROR", + "name": "BT_LOG_SDP_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SDP_TRACE_LEVEL_WARNING", + "name": "BT_LOG_SDP_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SDP_TRACE_LEVEL_API", + "name": "BT_LOG_SDP_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SDP_TRACE_LEVEL_EVENT", + "name": "BT_LOG_SDP_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SDP_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_SDP_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SDP_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_SDP_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": "Define BT trace level for SDP layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-sdp-layer", + "name": "BT_LOG_SDP_TRACE_LEVEL", + "title": "SDP layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": null, + "id": "BT_LOG_SDP_TRACE_LEVEL", + "name": "BT_LOG_SDP_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GAP_TRACE_LEVEL_NONE", + "name": "BT_LOG_GAP_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GAP_TRACE_LEVEL_ERROR", + "name": "BT_LOG_GAP_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GAP_TRACE_LEVEL_WARNING", + "name": "BT_LOG_GAP_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GAP_TRACE_LEVEL_API", + "name": "BT_LOG_GAP_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GAP_TRACE_LEVEL_EVENT", + "name": "BT_LOG_GAP_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GAP_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_GAP_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GAP_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_GAP_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": "Define BT trace level for GAP layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-gap-layer", + "name": "BT_LOG_GAP_TRACE_LEVEL", + "title": "GAP layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": null, + "id": "BT_LOG_GAP_TRACE_LEVEL", + "name": "BT_LOG_GAP_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BNEP_TRACE_LEVEL_NONE", + "name": "BT_LOG_BNEP_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BNEP_TRACE_LEVEL_ERROR", + "name": "BT_LOG_BNEP_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BNEP_TRACE_LEVEL_WARNING", + "name": "BT_LOG_BNEP_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BNEP_TRACE_LEVEL_API", + "name": "BT_LOG_BNEP_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BNEP_TRACE_LEVEL_EVENT", + "name": "BT_LOG_BNEP_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BNEP_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_BNEP_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BNEP_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_BNEP_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": "Define BT trace level for BNEP layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-bnep-layer", + "name": "BT_LOG_BNEP_TRACE_LEVEL", + "title": "BNEP layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": null, + "id": "BT_LOG_BNEP_TRACE_LEVEL", + "name": "BT_LOG_BNEP_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_PAN_TRACE_LEVEL_NONE", + "name": "BT_LOG_PAN_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_PAN_TRACE_LEVEL_ERROR", + "name": "BT_LOG_PAN_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_PAN_TRACE_LEVEL_WARNING", + "name": "BT_LOG_PAN_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_PAN_TRACE_LEVEL_API", + "name": "BT_LOG_PAN_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_PAN_TRACE_LEVEL_EVENT", + "name": "BT_LOG_PAN_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_PAN_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_PAN_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_PAN_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_PAN_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": "Define BT trace level for PAN layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-pan-layer", + "name": "BT_LOG_PAN_TRACE_LEVEL", + "title": "PAN layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": null, + "id": "BT_LOG_PAN_TRACE_LEVEL", + "name": "BT_LOG_PAN_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_A2D_TRACE_LEVEL_NONE", + "name": "BT_LOG_A2D_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_A2D_TRACE_LEVEL_ERROR", + "name": "BT_LOG_A2D_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_A2D_TRACE_LEVEL_WARNING", + "name": "BT_LOG_A2D_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_A2D_TRACE_LEVEL_API", + "name": "BT_LOG_A2D_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_A2D_TRACE_LEVEL_EVENT", + "name": "BT_LOG_A2D_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_A2D_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_A2D_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_A2D_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_A2D_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": "Define BT trace level for A2D layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-a2d-layer", + "name": "BT_LOG_A2D_TRACE_LEVEL", + "title": "A2D layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": null, + "id": "BT_LOG_A2D_TRACE_LEVEL", + "name": "BT_LOG_A2D_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVDT_TRACE_LEVEL_NONE", + "name": "BT_LOG_AVDT_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVDT_TRACE_LEVEL_ERROR", + "name": "BT_LOG_AVDT_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVDT_TRACE_LEVEL_WARNING", + "name": "BT_LOG_AVDT_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVDT_TRACE_LEVEL_API", + "name": "BT_LOG_AVDT_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVDT_TRACE_LEVEL_EVENT", + "name": "BT_LOG_AVDT_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVDT_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_AVDT_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVDT_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_AVDT_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": "Define BT trace level for AVDT layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-avdt-layer", + "name": "BT_LOG_AVDT_TRACE_LEVEL", + "title": "AVDT layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": null, + "id": "BT_LOG_AVDT_TRACE_LEVEL", + "name": "BT_LOG_AVDT_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVCT_TRACE_LEVEL_NONE", + "name": "BT_LOG_AVCT_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVCT_TRACE_LEVEL_ERROR", + "name": "BT_LOG_AVCT_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVCT_TRACE_LEVEL_WARNING", + "name": "BT_LOG_AVCT_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVCT_TRACE_LEVEL_API", + "name": "BT_LOG_AVCT_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVCT_TRACE_LEVEL_EVENT", + "name": "BT_LOG_AVCT_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVCT_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_AVCT_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVCT_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_AVCT_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": "Define BT trace level for AVCT layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-avct-layer", + "name": "BT_LOG_AVCT_TRACE_LEVEL", + "title": "AVCT layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": null, + "id": "BT_LOG_AVCT_TRACE_LEVEL", + "name": "BT_LOG_AVCT_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVRC_TRACE_LEVEL_NONE", + "name": "BT_LOG_AVRC_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVRC_TRACE_LEVEL_ERROR", + "name": "BT_LOG_AVRC_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVRC_TRACE_LEVEL_WARNING", + "name": "BT_LOG_AVRC_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVRC_TRACE_LEVEL_API", + "name": "BT_LOG_AVRC_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVRC_TRACE_LEVEL_EVENT", + "name": "BT_LOG_AVRC_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVRC_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_AVRC_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_AVRC_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_AVRC_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": "Define BT trace level for AVRC layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-avrc-layer", + "name": "BT_LOG_AVRC_TRACE_LEVEL", + "title": "AVRC layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": null, + "id": "BT_LOG_AVRC_TRACE_LEVEL", + "name": "BT_LOG_AVRC_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_MCA_TRACE_LEVEL_NONE", + "name": "BT_LOG_MCA_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_MCA_TRACE_LEVEL_ERROR", + "name": "BT_LOG_MCA_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_MCA_TRACE_LEVEL_WARNING", + "name": "BT_LOG_MCA_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_MCA_TRACE_LEVEL_API", + "name": "BT_LOG_MCA_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_MCA_TRACE_LEVEL_EVENT", + "name": "BT_LOG_MCA_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_MCA_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_MCA_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_MCA_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_MCA_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": "Define BT trace level for MCA layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-mca-layer", + "name": "BT_LOG_MCA_TRACE_LEVEL", + "title": "MCA layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": null, + "id": "BT_LOG_MCA_TRACE_LEVEL", + "name": "BT_LOG_MCA_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HID_TRACE_LEVEL_NONE", + "name": "BT_LOG_HID_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HID_TRACE_LEVEL_ERROR", + "name": "BT_LOG_HID_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HID_TRACE_LEVEL_WARNING", + "name": "BT_LOG_HID_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HID_TRACE_LEVEL_API", + "name": "BT_LOG_HID_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HID_TRACE_LEVEL_EVENT", + "name": "BT_LOG_HID_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HID_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_HID_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_HID_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_HID_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": "Define BT trace level for HID layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-hid-layer", + "name": "BT_LOG_HID_TRACE_LEVEL", + "title": "HID layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": null, + "id": "BT_LOG_HID_TRACE_LEVEL", + "name": "BT_LOG_HID_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_APPL_TRACE_LEVEL_NONE", + "name": "BT_LOG_APPL_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_APPL_TRACE_LEVEL_ERROR", + "name": "BT_LOG_APPL_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_APPL_TRACE_LEVEL_WARNING", + "name": "BT_LOG_APPL_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_APPL_TRACE_LEVEL_API", + "name": "BT_LOG_APPL_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_APPL_TRACE_LEVEL_EVENT", + "name": "BT_LOG_APPL_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_APPL_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_APPL_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_APPL_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_APPL_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": "Define BT trace level for APPL layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-appl-layer", + "name": "BT_LOG_APPL_TRACE_LEVEL", + "title": "APPL layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": null, + "id": "BT_LOG_APPL_TRACE_LEVEL", + "name": "BT_LOG_APPL_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GATT_TRACE_LEVEL_NONE", + "name": "BT_LOG_GATT_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GATT_TRACE_LEVEL_ERROR", + "name": "BT_LOG_GATT_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GATT_TRACE_LEVEL_WARNING", + "name": "BT_LOG_GATT_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GATT_TRACE_LEVEL_API", + "name": "BT_LOG_GATT_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GATT_TRACE_LEVEL_EVENT", + "name": "BT_LOG_GATT_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GATT_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_GATT_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_GATT_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_GATT_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": "Define BT trace level for GATT layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-gatt-layer", + "name": "BT_LOG_GATT_TRACE_LEVEL", + "title": "GATT layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": null, + "id": "BT_LOG_GATT_TRACE_LEVEL", + "name": "BT_LOG_GATT_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SMP_TRACE_LEVEL_NONE", + "name": "BT_LOG_SMP_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SMP_TRACE_LEVEL_ERROR", + "name": "BT_LOG_SMP_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SMP_TRACE_LEVEL_WARNING", + "name": "BT_LOG_SMP_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SMP_TRACE_LEVEL_API", + "name": "BT_LOG_SMP_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SMP_TRACE_LEVEL_EVENT", + "name": "BT_LOG_SMP_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SMP_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_SMP_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_SMP_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_SMP_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": "Define BT trace level for SMP layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-smp-layer", + "name": "BT_LOG_SMP_TRACE_LEVEL", + "title": "SMP layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": null, + "id": "BT_LOG_SMP_TRACE_LEVEL", + "name": "BT_LOG_SMP_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTIF_TRACE_LEVEL_NONE", + "name": "BT_LOG_BTIF_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTIF_TRACE_LEVEL_ERROR", + "name": "BT_LOG_BTIF_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTIF_TRACE_LEVEL_WARNING", + "name": "BT_LOG_BTIF_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTIF_TRACE_LEVEL_API", + "name": "BT_LOG_BTIF_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTIF_TRACE_LEVEL_EVENT", + "name": "BT_LOG_BTIF_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTIF_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_BTIF_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTIF_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_BTIF_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": "Define BT trace level for BTIF layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-btif-layer", + "name": "BT_LOG_BTIF_TRACE_LEVEL", + "title": "BTIF layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": null, + "id": "BT_LOG_BTIF_TRACE_LEVEL", + "name": "BT_LOG_BTIF_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTC_TRACE_LEVEL_NONE", + "name": "BT_LOG_BTC_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTC_TRACE_LEVEL_ERROR", + "name": "BT_LOG_BTC_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTC_TRACE_LEVEL_WARNING", + "name": "BT_LOG_BTC_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTC_TRACE_LEVEL_API", + "name": "BT_LOG_BTC_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTC_TRACE_LEVEL_EVENT", + "name": "BT_LOG_BTC_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTC_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_BTC_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BTC_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_BTC_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": "Define BT trace level for BTC layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-btc-layer", + "name": "BT_LOG_BTC_TRACE_LEVEL", + "title": "BTC layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": null, + "id": "BT_LOG_BTC_TRACE_LEVEL", + "name": "BT_LOG_BTC_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_OSI_TRACE_LEVEL_NONE", + "name": "BT_LOG_OSI_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_OSI_TRACE_LEVEL_ERROR", + "name": "BT_LOG_OSI_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_OSI_TRACE_LEVEL_WARNING", + "name": "BT_LOG_OSI_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_OSI_TRACE_LEVEL_API", + "name": "BT_LOG_OSI_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_OSI_TRACE_LEVEL_EVENT", + "name": "BT_LOG_OSI_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_OSI_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_OSI_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_OSI_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_OSI_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": "Define BT trace level for OSI layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-osi-layer", + "name": "BT_LOG_OSI_TRACE_LEVEL", + "title": "OSI layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": null, + "id": "BT_LOG_OSI_TRACE_LEVEL", + "name": "BT_LOG_OSI_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BLUFI_TRACE_LEVEL_NONE", + "name": "BT_LOG_BLUFI_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BLUFI_TRACE_LEVEL_ERROR", + "name": "BT_LOG_BLUFI_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BLUFI_TRACE_LEVEL_WARNING", + "name": "BT_LOG_BLUFI_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BLUFI_TRACE_LEVEL_API", + "name": "BT_LOG_BLUFI_TRACE_LEVEL_API", + "range": null, + "title": "API", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BLUFI_TRACE_LEVEL_EVENT", + "name": "BT_LOG_BLUFI_TRACE_LEVEL_EVENT", + "range": null, + "title": "EVENT", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BLUFI_TRACE_LEVEL_DEBUG", + "name": "BT_LOG_BLUFI_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_LOG_BLUFI_TRACE_LEVEL_VERBOSE", + "name": "BT_LOG_BLUFI_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": "Define BT trace level for BLUFI layer", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level-blufi-layer", + "name": "BT_LOG_BLUFI_TRACE_LEVEL", + "title": "BLUFI layer", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "help": null, + "id": "BT_LOG_BLUFI_TRACE_LEVEL", + "name": "BT_LOG_BLUFI_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": "BT_BLUEDROID_ENABLED && !BT_STACK_NO_LOG", + "id": "component-config-bluetooth-bluedroid-options-bt-debug-log-level", + "title": "BT DEBUG LOG LEVEL", + "type": "menu" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED", + "help": "Maximum BT/BLE connection count", + "id": "BT_ACL_CONNECTIONS", + "name": "BT_ACL_CONNECTIONS", + "range": null, + "title": "BT/BLE MAX ACL CONNECTIONS(1~7)", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED", + "help": "This select can save the internal RAM if there have the PSRAM", + "id": "BT_ALLOCATION_FROM_SPIRAM_FIRST", + "name": "BT_ALLOCATION_FROM_SPIRAM_FIRST", + "range": null, + "title": "BT/BLE will first malloc the memory from the PSRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED", + "help": "This select can make the allocation of memory will become more flexible", + "id": "BT_BLE_DYNAMIC_ENV_MEMORY", + "name": "BT_BLE_DYNAMIC_ENV_MEMORY", + "range": null, + "title": "Use dynamic memory allocation in BT/BLE stack", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED", + "help": "When scanning and scan duplicate is not enabled, if there are a lot of adv packets around\nor application layer handling adv packets is slow, it will cause the controller memory\nto run out. if enabled, adv packets will be lost when host queue is congested.", + "id": "BT_BLE_HOST_QUEUE_CONG_CHECK", + "name": "BT_BLE_HOST_QUEUE_CONG_CHECK", + "range": null, + "title": "BLE queue congestion check", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED", + "help": null, + "id": "BT_SMP_ENABLE", + "name": "BT_SMP_ENABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && (BTDM_CTRL_MODE_BTDM || BTDM_CTRL_MODE_BLE_ONLY)", + "help": "Originally, when doing BLE active scan, Bluedroid will not report adv to application layer\nuntil receive scan response. This option is used to disable the behavior. When enable this option,\nBluedroid will report adv data or scan response to application layer immediately.\n\n# Memory reserved at start of DRAM for Bluetooth stack", + "id": "BT_BLE_ACT_SCAN_REP_ADV_SCAN", + "name": "BT_BLE_ACT_SCAN_REP_ADV_SCAN", + "range": null, + "title": "Report adv data and scan response individually when BLE active scan", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED", + "help": "Bluetooth Connection establishment maximum time, if connection time exceeds this value, the connection\nestablishment fails, ESP_GATTC_OPEN_EVT or ESP_GATTS_OPEN_EVT is triggered.", + "id": "BT_BLE_ESTAB_LINK_CONN_TOUT", + "name": "BT_BLE_ESTAB_LINK_CONN_TOUT", + "range": null, + "title": "Timeout of BLE connection establishment", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "BT_RESERVE_DRAM", + "name": "BT_RESERVE_DRAM", + "range": null, + "title": null, + "type": "hex" + } + ], + "depends_on": null, + "id": "component-config-bluetooth-bluedroid-options", + "title": "Bluedroid Options", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_NIMBLE_MEM_ALLOC_MODE_INTERNAL", + "name": "BT_NIMBLE_MEM_ALLOC_MODE_INTERNAL", + "range": null, + "title": "Internal memory", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP32_SPIRAM_SUPPORT && ", + "help": null, + "id": "BT_NIMBLE_MEM_ALLOC_MODE_EXTERNAL", + "name": "BT_NIMBLE_MEM_ALLOC_MODE_EXTERNAL", + "range": null, + "title": "External SPIRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_NIMBLE_MEM_ALLOC_MODE_DEFAULT", + "name": "BT_NIMBLE_MEM_ALLOC_MODE_DEFAULT", + "range": null, + "title": "Default alloc mode", + "type": "bool" + } + ], + "depends_on": null, + "help": "Allocation strategy for NimBLE host stack, essentially provides ability to\nallocate all required dynamic allocations from,\n\n- Internal DRAM memory only\n- External SPIRAM memory only\n- Either internal or external memory based on default malloc()\n behavior in ESP-IDF\n\nRecommended mode here is always internal, since that is most preferred\nfrom security perspective. But if application requirement does not\nallow sufficient free internal memory then alternate mode can be\nselected.", + "id": "component-config-bluetooth-nimble-options-memory-allocation-strategy", + "name": "BT_NIMBLE_MEM_ALLOC_MODE", + "title": "Memory allocation strategy", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Defines maximum number of concurrent BLE connections", + "id": "BT_NIMBLE_MAX_CONNECTIONS", + "name": "BT_NIMBLE_MAX_CONNECTIONS", + "range": null, + "title": "Maximum number of concurrent connections", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Defines maximum number of bonds to save for peer security and our security", + "id": "BT_NIMBLE_MAX_BONDS", + "name": "BT_NIMBLE_MAX_BONDS", + "range": null, + "title": "Maximum number of bonds to save across reboots", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Defines maximum number of CCC descriptors to save", + "id": "BT_NIMBLE_MAX_CCCDS", + "name": "BT_NIMBLE_MAX_CCCDS", + "range": null, + "title": "Maximum number of CCC descriptors to save across reboots", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Defines maximum number of BLE Connection Oriented Channels. When set to (0), BLE COC is not compiled in", + "id": "BT_NIMBLE_L2CAP_COC_MAX_NUM", + "name": "BT_NIMBLE_L2CAP_COC_MAX_NUM", + "range": null, + "title": "Maximum number of connection oriented channels", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BT_NIMBLE_PINNED_TO_CORE_0", + "name": "BT_NIMBLE_PINNED_TO_CORE_0", + "range": null, + "title": "Core 0 (PRO CPU)", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ", + "help": null, + "id": "BT_NIMBLE_PINNED_TO_CORE_1", + "name": "BT_NIMBLE_PINNED_TO_CORE_1", + "range": null, + "title": "Core 1 (APP CPU)", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ENABLED && !FREERTOS_UNICORE", + "help": "The CPU core on which NimBLE host will run. You can choose Core 0 or Core 1.\nCannot specify no-affinity", + "id": "component-config-bluetooth-nimble-options-the-cpu-core-on-which-nimble-host-will-run", + "name": "BT_NIMBLE_PINNED_TO_CORE_CHOICE", + "title": "The CPU core on which NimBLE host will run", + "type": "choice" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_PINNED_TO_CORE", + "name": "BT_NIMBLE_PINNED_TO_CORE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "This configures stack size of NimBLE host task", + "id": "BT_NIMBLE_TASK_STACK_SIZE", + "name": "BT_NIMBLE_TASK_STACK_SIZE", + "range": null, + "title": "NimBLE Host task stack size", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_ROLE_CENTRAL", + "name": "BT_NIMBLE_ROLE_CENTRAL", + "range": null, + "title": "Enable BLE Central role", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_ROLE_PERIPHERAL", + "name": "BT_NIMBLE_ROLE_PERIPHERAL", + "range": null, + "title": "Enable BLE Peripheral role", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_ROLE_BROADCASTER", + "name": "BT_NIMBLE_ROLE_BROADCASTER", + "range": null, + "title": "Enable BLE Broadcaster role", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": null, + "id": "BT_NIMBLE_ROLE_OBSERVER", + "name": "BT_NIMBLE_ROLE_OBSERVER", + "range": null, + "title": "Enable BLE Observer role", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Enable this flag to make bonding persistent across device reboots", + "id": "BT_NIMBLE_NVS_PERSIST", + "name": "BT_NIMBLE_NVS_PERSIST", + "range": null, + "title": "Persist the BLE Bonding keys in NVS", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Enable security manager legacy pairing", + "id": "BT_NIMBLE_SM_LEGACY", + "name": "BT_NIMBLE_SM_LEGACY", + "range": null, + "title": "Security manager legacy pairing", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Enable security manager secure connections", + "id": "BT_NIMBLE_SM_SC", + "name": "BT_NIMBLE_SM_SC", + "range": null, + "title": "Security manager secure connections (4.2)", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "This enables extra runtime asserts and host debugging", + "id": "BT_NIMBLE_DEBUG", + "name": "BT_NIMBLE_DEBUG", + "range": null, + "title": "Enable extra runtime asserts and host debugging", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_SM_SC", + "help": "If this option is enabled, SM uses predefined DH key pair as described\nin Core Specification, Vol. 3, Part H, 2.3.5.6.1. This allows to\ndecrypt air traffic easily and thus should only be used for debugging.", + "id": "BT_NIMBLE_SM_SC_DEBUG_KEYS", + "name": "BT_NIMBLE_SM_SC_DEBUG_KEYS", + "range": null, + "title": "Use predefined public-private key pair", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "The Device Name characteristic shall contain the name of the device as an UTF-8 string.\nThis name can be changed by using API ble_svc_gap_device_name_set()", + "id": "BT_NIMBLE_SVC_GAP_DEVICE_NAME", + "name": "BT_NIMBLE_SVC_GAP_DEVICE_NAME", + "range": null, + "title": "BLE GAP default device name", + "type": "string" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Device Name characteristic value shall be 0 to 248 octets in length", + "id": "BT_NIMBLE_GAP_DEVICE_NAME_MAX_LEN", + "name": "BT_NIMBLE_GAP_DEVICE_NAME_MAX_LEN", + "range": null, + "title": "Maximum length of BLE device name in octets", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "This is the default value of ATT MTU indicated by the device during an ATT MTU exchange.\nThis value can be changed using API ble_att_set_preferred_mtu()", + "id": "BT_NIMBLE_ATT_PREFERRED_MTU", + "name": "BT_NIMBLE_ATT_PREFERRED_MTU", + "range": null, + "title": "Preferred MTU size in octets", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Standard BLE GAP Appearance value in HEX format e.g. 0x02C0", + "id": "BT_NIMBLE_SVC_GAP_APPEARANCE", + "name": "BT_NIMBLE_SVC_GAP_APPEARANCE", + "range": null, + "title": "External appearance of the device", + "type": "hex" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "The number of ACL data buffers.", + "id": "BT_NIMBLE_ACL_BUF_COUNT", + "name": "BT_NIMBLE_ACL_BUF_COUNT", + "range": null, + "title": "ACL Buffer count", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "This is the maximum size of the data portion of HCI ACL data packets.\nIt does not include the HCI data header (of 4 bytes)", + "id": "BT_NIMBLE_ACL_BUF_SIZE", + "name": "BT_NIMBLE_ACL_BUF_SIZE", + "range": null, + "title": "ACL Buffer size", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "This is the size of each HCI event buffer in bytes", + "id": "BT_NIMBLE_HCI_EVT_BUF_SIZE", + "name": "BT_NIMBLE_HCI_EVT_BUF_SIZE", + "range": null, + "title": "HCI Event Buffer size", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "This is the high priority HCI events' buffer size. High-priority\nevent buffers are for everything except advertising reports. If there\nare no free high-priority event buffers then host will try to allocate a\nlow-priority buffer instead", + "id": "BT_NIMBLE_HCI_EVT_HI_BUF_COUNT", + "name": "BT_NIMBLE_HCI_EVT_HI_BUF_COUNT", + "range": null, + "title": "High Priority HCI Event Buffer count", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "This is the low priority HCI events' buffer size. Low-priority event\nbuffers are only used for advertising reports. If there are no free\nlow-priority event buffers, then an incoming advertising report will\nget dropped", + "id": "BT_NIMBLE_HCI_EVT_LO_BUF_COUNT", + "name": "BT_NIMBLE_HCI_EVT_LO_BUF_COUNT", + "range": null, + "title": "Low Priority HCI Event Buffer count", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_HS_FLOW_CTRL", + "help": "Host flow control interval in msecs", + "id": "BT_NIMBLE_HS_FLOW_CTRL_ITVL", + "name": "BT_NIMBLE_HS_FLOW_CTRL_ITVL", + "range": null, + "title": "Host Flow control interval", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_HS_FLOW_CTRL", + "help": "Host flow control threshold, if the number of free buffers are at or\nbelow this threshold, send an immediate number-of-completed-packets\nevent", + "id": "BT_NIMBLE_HS_FLOW_CTRL_THRESH", + "name": "BT_NIMBLE_HS_FLOW_CTRL_THRESH", + "range": null, + "title": "Host Flow control threshold", + "type": "int" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_HS_FLOW_CTRL", + "help": "Enable this option to send number-of-completed-packets event to\ncontroller after disconnection", + "id": "BT_NIMBLE_HS_FLOW_CTRL_TX_ON_DISCONNECT", + "name": "BT_NIMBLE_HS_FLOW_CTRL_TX_ON_DISCONNECT", + "range": null, + "title": "Host Flow control on disconnect", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Enable Host Flow control", + "id": "BT_NIMBLE_HS_FLOW_CTRL", + "name": "BT_NIMBLE_HS_FLOW_CTRL", + "range": null, + "title": "Enable Host Flow control", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_MESH", + "help": "Enable proxy. This is automatically set whenever NIMBLE_MESH_PB_GATT or\nNIMBLE_MESH_GATT_PROXY is set", + "id": "BT_NIMBLE_MESH_PROXY", + "name": "BT_NIMBLE_MESH_PROXY", + "range": null, + "title": "Enable mesh proxy functionality", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_NIMBLE_MESH_PROV", + "help": "Enable this option to allow the device to be provisioned over\nthe advertising bearer", + "id": "BT_NIMBLE_MESH_PB_ADV", + "name": "BT_NIMBLE_MESH_PB_ADV", + "range": null, + "title": "Enable mesh provisioning over advertising bearer", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_MESH_PROV", + "help": "Enable this option to allow the device to be provisioned over the GATT\nbearer", + "id": "BT_NIMBLE_MESH_PB_GATT", + "name": "BT_NIMBLE_MESH_PB_GATT", + "range": null, + "title": "Enable mesh provisioning over GATT bearer", + "type": "bool" + } + ], + "depends_on": "BT_NIMBLE_MESH", + "help": "Enable mesh provisioning", + "id": "BT_NIMBLE_MESH_PROV", + "name": "BT_NIMBLE_MESH_PROV", + "range": null, + "title": "Enable BLE mesh provisioning", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_MESH", + "help": "This option enables support for the Mesh GATT Proxy Service,\ni.e. the ability to act as a proxy between a Mesh GATT Client\nand a Mesh network", + "id": "BT_NIMBLE_MESH_GATT_PROXY", + "name": "BT_NIMBLE_MESH_GATT_PROXY", + "range": null, + "title": "Enable GATT Proxy functionality", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_MESH", + "help": "Support for acting as a Mesh Relay Node", + "id": "BT_NIMBLE_MESH_RELAY", + "name": "BT_NIMBLE_MESH_RELAY", + "range": null, + "title": "Enable mesh relay functionality", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_MESH", + "help": "Enable this option to be able to act as a Low Power Node", + "id": "BT_NIMBLE_MESH_LOW_POWER", + "name": "BT_NIMBLE_MESH_LOW_POWER", + "range": null, + "title": "Enable mesh low power mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_MESH", + "help": "Enable this option to be able to act as a Friend Node", + "id": "BT_NIMBLE_MESH_FRIEND", + "name": "BT_NIMBLE_MESH_FRIEND", + "range": null, + "title": "Enable mesh friend functionality", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_MESH", + "help": "This value defines Bluetooth Mesh device/node name", + "id": "BT_NIMBLE_MESH_DEVICE_NAME", + "name": "BT_NIMBLE_MESH_DEVICE_NAME", + "range": null, + "title": "Set mesh device name", + "type": "string" + } + ], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Enable BLE Mesh functionality", + "id": "BT_NIMBLE_MESH", + "is_menuconfig": true, + "name": "BT_NIMBLE_MESH", + "range": null, + "title": "Enable BLE mesh functionality", + "type": "menu" + }, + { + "children": [], + "depends_on": "BT_NIMBLE_ENABLED", + "help": "Enable this option to choose mbedTLS instead of TinyCrypt for crypto\ncomputations.", + "id": "BT_NIMBLE_CRYPTO_STACK_MBEDTLS", + "name": "BT_NIMBLE_CRYPTO_STACK_MBEDTLS", + "range": null, + "title": "Override TinyCrypt with mbedTLS for crypto computations", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-bluetooth-nimble-options", + "title": "NimBLE Options", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-bluetooth", + "title": "Bluetooth", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH", + "help": "It is a temporary solution and needs further modifications.", + "id": "BLE_MESH_HCI_5_0", + "name": "BLE_MESH_HCI_5_0", + "range": null, + "title": "Support sending 20ms non-connectable adv packets", + "type": "bool" + }, + { + "children": [], + "depends_on": "BT_BLUEDROID_ENABLED && BLE_MESH", + "help": "Enable this option to allow using specific duplicate scan filter\nin BLE Mesh, and Scan Duplicate Type must be set by choosing the\noption in the Bluetooth Controller section in menuconfig, which is\n\"Scan Duplicate By Device Address and Advertising Data\".", + "id": "BLE_MESH_USE_DUPLICATE_SCAN", + "name": "BLE_MESH_USE_DUPLICATE_SCAN", + "range": null, + "title": "Support Duplicate Scan in BLE Mesh", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable this option to allow BLE Mesh fast provisioning solution to be used.\nWhen there are multiple unprovisioned devices around, fast provisioning can\ngreatly reduce the time consumption of the whole provisioning process.\nWhen this option is enabled, and after an unprovisioned device is provisioned\ninto a node successfully, it can be changed to a temporary Provisioner.", + "id": "BLE_MESH_FAST_PROV", + "name": "BLE_MESH_FAST_PROV", + "range": null, + "title": "Enable BLE Mesh Fast Provisioning", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable the device to be provisioned into a node. This option should be\nenabled when an unprovisioned device is going to be provisioned into a\nnode and communicate with other nodes in the BLE Mesh network.", + "id": "BLE_MESH_NODE", + "name": "BLE_MESH_NODE", + "range": null, + "title": "Support for BLE Mesh Node", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_PROVISIONER && BLE_MESH", + "help": "This option specifies how many unprovisioned devices can be added to device\nqueue for provisioning. Users can use this option to define the size of the\nqueue in the bottom layer which is used to store unprovisioned device\ninformation (e.g. Device UUID, address).", + "id": "BLE_MESH_WAIT_FOR_PROV_MAX_DEV_NUM", + "name": "BLE_MESH_WAIT_FOR_PROV_MAX_DEV_NUM", + "range": null, + "title": "Maximum number of unprovisioned devices that can be added to device queue", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_PROVISIONER && BLE_MESH", + "help": "This option specifies the maximum number of nodes whose information can be\nstored by a Provisioner in its upper layer.\nUsers can change this value according to the number of nodes whose information\n(e.g. Device UUID, unicast address, element number) are going to be stored by\na Provisioner. And the nodes include the provisioned ones and user-added ones.", + "id": "BLE_MESH_MAX_STORED_NODES", + "name": "BLE_MESH_MAX_STORED_NODES", + "range": null, + "title": "Maximum number of nodes whose information can be stored", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_PROVISIONER && BLE_MESH", + "help": "This option specifies how many devices can be provisioned by a Provisioner.\nThis value indicates the maximum number of unprovisioned devices which can be\nprovisioned by a Provisioner. For instance, if the value is 6, it means the\nProvisioner can provision up to 6 unprovisioned devices.\nTheoretically a Provisioner without the limitation of its memory can provision\nup to 32766 unprovisioned devices, here we limit the maximum number to 100\njust to limit the memory used by a Provisioner. The bigger the value is, the\nmore memory it will cost by a Provisioner to store the information of nodes.", + "id": "BLE_MESH_MAX_PROV_NODES", + "name": "BLE_MESH_MAX_PROV_NODES", + "range": null, + "title": "Maximum number of devices that can be provisioned by Provisioner", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_PB_ADV && BLE_MESH_PROVISIONER && BLE_MESH", + "help": "This option specifies how many devices can be provisioned at the same time\nusing PB-ADV. For examples, if the value is 2, it means a Provisioner can\nprovision two unprovisioned devices with PB-ADV at the same time.", + "id": "BLE_MESH_PBA_SAME_TIME", + "name": "BLE_MESH_PBA_SAME_TIME", + "range": null, + "title": "Maximum number of PB-ADV running at the same time by Provisioner", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_PB_GATT && BLE_MESH_PROVISIONER && BLE_MESH", + "help": "This option specifies how many devices can be provisioned at the same\ntime using PB-GATT. For example, if the value is 2, it means a Provisioner\ncan provision two unprovisioned devices with PB-GATT at the same time.", + "id": "BLE_MESH_PBG_SAME_TIME", + "name": "BLE_MESH_PBG_SAME_TIME", + "range": null, + "title": "Maximum number of PB-GATT running at the same time by Provisioner", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_PROVISIONER && BLE_MESH", + "help": "This option specifies how many subnets per network a Provisioner can create.\nIndeed, this value decides the number of network keys which can be added by a Provisioner.", + "id": "BLE_MESH_PROVISIONER_SUBNET_COUNT", + "name": "BLE_MESH_PROVISIONER_SUBNET_COUNT", + "range": null, + "title": "Maximum number of mesh subnets that can be created by Provisioner", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_PROVISIONER && BLE_MESH", + "help": "This option specifies how many application keys the Provisioner can have.\nIndeed, this value decides the number of the application keys which can be added by a Provisioner.", + "id": "BLE_MESH_PROVISIONER_APP_KEY_COUNT", + "name": "BLE_MESH_PROVISIONER_APP_KEY_COUNT", + "range": null, + "title": "Maximum number of application keys that can be owned by Provisioner", + "type": "int" + } + ], + "depends_on": "BLE_MESH", + "help": "Enable the device to be a Provisioner. The option should be enabled when\na device is going to act as a Provisioner and provision unprovisioned\ndevices into the BLE Mesh network.", + "id": "BLE_MESH_PROVISIONER", + "name": "BLE_MESH_PROVISIONER", + "range": null, + "title": "Support for BLE Mesh Provisioner", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable this option to support BLE Mesh Provisioning functionality. For\nBLE Mesh, this option should be always enabled.", + "id": "BLE_MESH_PROV", + "name": "BLE_MESH_PROV", + "range": null, + "title": "BLE Mesh Provisioning support", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable this option to allow the device to be provisioned over the\nadvertising bearer. This option should be enabled if PB-ADV is\ngoing to be used during provisioning procedure.", + "id": "BLE_MESH_PB_ADV", + "name": "BLE_MESH_PB_ADV", + "range": null, + "title": "Provisioning support using the advertising bearer (PB-ADV)", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable this option to allow the device to be provisioned over GATT.\nThis option should be enabled if PB-GATT is going to be used during\nprovisioning procedure.\n\n# Virtual option enabled whenever any Proxy protocol is needed", + "id": "BLE_MESH_PB_GATT", + "name": "BLE_MESH_PB_GATT", + "range": null, + "title": "Provisioning support using GATT (PB-GATT)", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable this option to support BLE Mesh Proxy protocol used by PB-GATT\nand other proxy pdu transmission.", + "id": "BLE_MESH_PROXY", + "name": "BLE_MESH_PROXY", + "range": null, + "title": "BLE Mesh Proxy protocol support", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_NODE && BLE_MESH", + "help": "This option enables support for Mesh GATT Proxy Service, i.e. the\nability to act as a proxy between a Mesh GATT Client and a Mesh network.\nThis option should be enabled if a node is going to be a Proxy Server.", + "id": "BLE_MESH_GATT_PROXY_SERVER", + "name": "BLE_MESH_GATT_PROXY_SERVER", + "range": null, + "title": "BLE Mesh GATT Proxy Server", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "This option enables support for Mesh GATT Proxy Client. The Proxy Client\ncan use the GATT bearer to send mesh messages to a node that supports the\nadvertising bearer.", + "id": "BLE_MESH_GATT_PROXY_CLIENT", + "name": "BLE_MESH_GATT_PROXY_CLIENT", + "range": null, + "title": "BLE Mesh GATT Proxy Client", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_GATT_PROXY_SERVER && BLE_MESH", + "help": "This option determines for how long the local node advertises using\nNode Identity. The given value is in seconds. The specification limits\nthis to 60 seconds and lists it as the recommended value as well.\nSo leaving the default value is the safest option.\nWhen an unprovisioned device is provisioned successfully and becomes a\nnode, it will start to advertise using Node Identity during the time\nset by this option. And after that, Network ID will be advertised.", + "id": "BLE_MESH_NODE_ID_TIMEOUT", + "name": "BLE_MESH_NODE_ID_TIMEOUT", + "range": null, + "title": "Node Identity advertising timeout", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_PROXY && BLE_MESH", + "help": "This option specifies how many Proxy Filter entries the local node supports.\nThe entries of Proxy filter (whitelist or blacklist) are used to store a\nlist of addresses which can be used to decide which messages will be forwarded\nto the Proxy Client by the Proxy Server.", + "id": "BLE_MESH_PROXY_FILTER_SIZE", + "name": "BLE_MESH_PROXY_FILTER_SIZE", + "range": null, + "title": "Maximum number of filter entries per Proxy Client", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable BLE Mesh net buffer pool tracking. This option is used to introduce another\nvariable in the bottom layer to record the usage of advertising buffers of BLE Mesh\ndevices. Recommend to enable this option as default.", + "id": "BLE_MESH_NET_BUF_POOL_USAGE", + "name": "BLE_MESH_NET_BUF_POOL_USAGE", + "range": null, + "title": "BLE Mesh net buffer pool usage tracking", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_SETTINGS && BLE_MESH", + "help": "This value defines in seconds how soon any pending changes are actually\nwritten into persistent storage (flash) after a change occurs.\nThe option allows nodes to delay a certain period of time to save proper\ninformation to flash. The default value is 0, which means information\nwill be stored immediately once there are updates.", + "id": "BLE_MESH_STORE_TIMEOUT", + "name": "BLE_MESH_STORE_TIMEOUT", + "range": null, + "title": "Delay (in seconds) before storing anything persistently", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_SETTINGS && BLE_MESH", + "help": "This value defines how often the local sequence number gets updated in\npersistent storage (i.e. flash). e.g. a value of 100 means that the\nsequence number will be stored to flash on every 100th increment.\nIf the node sends messages very frequently a higher value makes more\nsense, whereas if the node sends infrequently a value as low as 0\n(update storage for every increment) can make sense. When the stack\ngets initialized it will add sequence number to the last stored one,\nso that it starts off with a value that's guaranteed to be larger than\nthe last one used before power off.", + "id": "BLE_MESH_SEQ_STORE_RATE", + "name": "BLE_MESH_SEQ_STORE_RATE", + "range": null, + "title": "How often the sequence number gets updated in storage", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_SETTINGS && BLE_MESH", + "help": "This value defines in seconds how soon the RPL (Replay Protection List)\ngets written to persistent storage after a change occurs. If the node\nreceives messages frequently, then a large value is recommended. If the\nnode receives messages rarely, then the value can be as low as 0 (which\nmeans the RPL is written into the storage immediately).\nNote that if the node operates in a security-sensitive case, and there is\na risk of sudden power-off, then a value of 0 is strongly recommended.\nOtherwise, a power loss before RPL being written into the storage may\nintroduce message replay attacks and system security will be in a\nvulnerable state.", + "id": "BLE_MESH_RPL_STORE_TIMEOUT", + "name": "BLE_MESH_RPL_STORE_TIMEOUT", + "range": null, + "title": "Minimum frequency that the RPL gets updated in storage", + "type": "int" + } + ], + "depends_on": "BLE_MESH", + "help": "When selected, the BLE Mesh stack will take care of storing/restoring the\nBLE Mesh configuration persistently in flash. Currently this only supports\nstoring BLE Mesh node configuration.\nCurrently enabling this option will only store BLE Mesh nodes' information\nin the flash.", + "id": "BLE_MESH_SETTINGS", + "name": "BLE_MESH_SETTINGS", + "range": null, + "title": "Store BLE Mesh Node configuration persistently", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "This option specifies how many subnets a Mesh network can have at the same time.\nIndeed, this value decides the number of the network keys which can be owned by a node.", + "id": "BLE_MESH_SUBNET_COUNT", + "name": "BLE_MESH_SUBNET_COUNT", + "range": null, + "title": "Maximum number of mesh subnets per network", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "This option specifies how many application keys the device can store per network.\nIndeed, this value decides the number of the application keys which can be owned by a node.", + "id": "BLE_MESH_APP_KEY_COUNT", + "name": "BLE_MESH_APP_KEY_COUNT", + "range": null, + "title": "Maximum number of application keys per network", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "This option specifies the maximum number of application keys to which each model\ncan be bound.", + "id": "BLE_MESH_MODEL_KEY_COUNT", + "name": "BLE_MESH_MODEL_KEY_COUNT", + "range": null, + "title": "Maximum number of application keys per model", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "This option specifies the maximum number of addresses to which each model can\nbe subscribed.", + "id": "BLE_MESH_MODEL_GROUP_COUNT", + "name": "BLE_MESH_MODEL_GROUP_COUNT", + "range": null, + "title": "Maximum number of group address subscriptions per model", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "This option specifies how many Label UUIDs can be stored.\nIndeed, this value decides the number of the Virtual Addresses can be supported by a node.", + "id": "BLE_MESH_LABEL_COUNT", + "name": "BLE_MESH_LABEL_COUNT", + "range": null, + "title": "Maximum number of Label UUIDs used for Virtual Addresses", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "This option specifies the maximum capacity of the replay protection list.\nIt is similar to Network message cache size, but has a different purpose.\nThe replay protection list is used to prevent a node from replay attack,\nwhich will store the source address and sequence number of the received\nmesh messages.", + "id": "BLE_MESH_CRPL", + "name": "BLE_MESH_CRPL", + "range": null, + "title": "Maximum capacity of the replay protection list", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Number of messages that are cached for the network. This helps prevent\nunnecessary decryption operations and unnecessary relays. This option\nis similar to Replay protection list, but has a different purpose.\nA node is not required to cache the entire Network PDU and may cache\nonly part of it for tracking, such as values for SRC/SEQ or others.", + "id": "BLE_MESH_MSG_CACHE_SIZE", + "name": "BLE_MESH_MSG_CACHE_SIZE", + "range": null, + "title": "Network message cache size", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Number of advertising buffers available. The transport layer reserves\nADV_BUF_COUNT - 3 buffers for outgoing segments. The maximum outgoing\nSDU size is 12 times this value (out of which 4 or 8 bytes are used\nfor the Transport Layer MIC). For example, 5 segments means the maximum\nSDU size is 60 bytes, which leaves 56 bytes for application layer data\nusing a 4-byte MIC, or 52 bytes using an 8-byte MIC.", + "id": "BLE_MESH_ADV_BUF_COUNT", + "name": "BLE_MESH_ADV_BUF_COUNT", + "range": null, + "title": "Number of advertising buffers", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "When the IV Update state enters Normal operation or IV Update\nin Progress, we need to keep track of how many hours has passed\nin the state, since the specification requires us to remain in\nthe state at least for 96 hours (Update in Progress has an\nadditional upper limit of 144 hours).\n\nIn order to fulfill the above requirement, even if the node might\nbe powered off once in a while, we need to store persistently\nhow many hours the node has been in the state. This doesn't\nnecessarily need to happen every hour (thanks to the flexible\nduration range). The exact cadence will depend a lot on the\nways that the node will be used and what kind of power source it\nhas.\n\nSince there is no single optimal answer, this configuration\noption allows specifying a divider, i.e. how many intervals\nthe 96 hour minimum gets split into. After each interval the\nduration that the node has been in the current state gets\nstored to flash. E.g. the default value of 4 means that the\nstate is saved every 24 hours (96 / 4).", + "id": "BLE_MESH_IVU_DIVIDER", + "name": "BLE_MESH_IVU_DIVIDER", + "range": null, + "title": "Divider for IV Update state refresh timer", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Maximum number of simultaneous outgoing multi-segment and/or reliable messages.\nThe default value is 1, which means the device can only send one segmented\nmessage at a time. And if another segmented message is going to be sent, it\nshould wait for the completion of the previous one.\nIf users are going to send multiple segmented messages at the same time, this\nvalue should be configured properly.", + "id": "BLE_MESH_TX_SEG_MSG_COUNT", + "name": "BLE_MESH_TX_SEG_MSG_COUNT", + "range": null, + "title": "Maximum number of simultaneous outgoing segmented messages", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Maximum number of simultaneous incoming multi-segment and/or reliable messages.\nThe default value is 1, which means the device can only receive one segmented\nmessage at a time. And if another segmented message is going to be received,\nit should wait for the completion of the previous one.\nIf users are going to receive multiple segmented messages at the same time, this\nvalue should be configured properly.", + "id": "BLE_MESH_RX_SEG_MSG_COUNT", + "name": "BLE_MESH_RX_SEG_MSG_COUNT", + "range": null, + "title": "Maximum number of simultaneous incoming segmented messages", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Maximum incoming Upper Transport Access PDU length. Leave this to the default\nvalue, unless you really need to optimize memory usage.", + "id": "BLE_MESH_RX_SDU_MAX", + "name": "BLE_MESH_RX_SDU_MAX", + "range": null, + "title": "Maximum incoming Upper Transport Access PDU length", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Maximum number of segments supported for outgoing messages.\nThis value should typically be fine-tuned based on what\nmodels the local node supports, i.e. what's the largest\nmessage payload that the node needs to be able to send.\nThis value affects memory and call stack consumption, which\nis why the default is lower than the maximum that the\nspecification would allow (32 segments).\n\nThe maximum outgoing SDU size is 12 times this number (out of\nwhich 4 or 8 bytes is used for the Transport Layer MIC). For\nexample, 5 segments means the maximum SDU size is 60 bytes,\nwhich leaves 56 bytes for application layer data using a\n4-byte MIC and 52 bytes using an 8-byte MIC.\n\nBe sure to specify a sufficient number of advertising buffers\nwhen setting this option to a higher value. There must be at\nleast three more advertising buffers (BLE_MESH_ADV_BUF_COUNT)\nas there are outgoing segments.", + "id": "BLE_MESH_TX_SEG_MAX", + "name": "BLE_MESH_TX_SEG_MAX", + "range": null, + "title": "Maximum number of segments in outgoing messages", + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_RELAY_ADV_BUF && BLE_MESH_RELAY && BLE_MESH", + "help": "Number of advertising buffers for relay packets available.", + "id": "BLE_MESH_RELAY_ADV_BUF_COUNT", + "name": "BLE_MESH_RELAY_ADV_BUF_COUNT", + "range": null, + "title": "Number of advertising buffers for relay packets", + "type": "int" + } + ], + "depends_on": "BLE_MESH_RELAY && BLE_MESH", + "help": "When selected, self-send packets will be put in a high-priority\nqueue and relay packets will be put in a low-priority queue.", + "id": "BLE_MESH_RELAY_ADV_BUF", + "name": "BLE_MESH_RELAY_ADV_BUF", + "range": null, + "title": "Use separate advertising buffers for relay packets", + "type": "bool" + } + ], + "depends_on": "BLE_MESH_NODE && BLE_MESH", + "help": "Support for acting as a Mesh Relay Node. Enabling this option will allow\na node to support the Relay feature, and the Relay feature can still\nbe enabled or disabled by proper configuration messages. Disabling this\noption will let a node not support the Relay feature.", + "id": "BLE_MESH_RELAY", + "name": "BLE_MESH_RELAY", + "range": null, + "title": "Relay support", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", + "help": "Perform the Friendship establishment using low power with the help of a\nreduced scan duty cycle. The downside of this is that the node may miss\nout on messages intended for it until it has successfully set up Friendship\nwith a Friend node.\nWhen this option is enabled, the node will stop scanning for a period of\ntime after a Friend Request or Friend Poll is sent, so as to reduce more\npower consumption.", + "id": "BLE_MESH_LPN_ESTABLISHMENT", + "name": "BLE_MESH_LPN_ESTABLISHMENT", + "range": null, + "title": "Perform Friendship establishment using low power", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_LPN_AUTO && BLE_MESH_LOW_POWER && BLE_MESH", + "help": "Time in seconds from the last received message, that the node waits out\nbefore starting to look for Friend nodes.", + "id": "BLE_MESH_LPN_AUTO_TIMEOUT", + "name": "BLE_MESH_LPN_AUTO_TIMEOUT", + "range": null, + "title": "Time from last received message before going to LPN mode", + "type": "int" + } + ], + "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", + "help": "Once provisioned, automatically enable LPN functionality and start looking\nfor Friend nodes. If this option is disabled LPN mode needs to be manually\nenabled by calling bt_mesh_lpn_set(true).\nWhen an unprovisioned device is provisioned successfully and becomes a node,\nenabling this option will trigger the node starts to send Friend Request at\na certain period until it finds a proper Friend node.", + "id": "BLE_MESH_LPN_AUTO", + "name": "BLE_MESH_LPN_AUTO", + "range": null, + "title": "Automatically start looking for Friend nodes once provisioned", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", + "help": "Time in seconds between Friend Requests, if a previous Friend Request did\nnot yield any acceptable Friend Offers.", + "id": "BLE_MESH_LPN_RETRY_TIMEOUT", + "name": "BLE_MESH_LPN_RETRY_TIMEOUT", + "range": null, + "title": "Retry timeout for Friend requests", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", + "help": "The contribution of the RSSI, measured by the Friend node, used in Friend\nOffer Delay calculations. 0 = 1, 1 = 1.5, 2 = 2, 3 = 2.5.\nRSSIFactor, one of the parameters carried by Friend Request sent by Low Power\nnode, which is used to calculate the Friend Offer Delay.", + "id": "BLE_MESH_LPN_RSSI_FACTOR", + "name": "BLE_MESH_LPN_RSSI_FACTOR", + "range": null, + "title": "RSSIFactor, used in Friend Offer Delay calculation", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", + "help": "The contribution of the supported Receive Window used in Friend Offer\nDelay calculations. 0 = 1, 1 = 1.5, 2 = 2, 3 = 2.5.\nReceiveWindowFactor, one of the parameters carried by Friend Request sent by\nLow Power node, which is used to calculate the Friend Offer Delay.", + "id": "BLE_MESH_LPN_RECV_WIN_FACTOR", + "name": "BLE_MESH_LPN_RECV_WIN_FACTOR", + "range": null, + "title": "ReceiveWindowFactor, used in Friend Offer Delay calculation", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", + "help": "The MinQueueSizeLog field is defined as log_2(N), where N is the minimum\nnumber of maximum size Lower Transport PDUs that the Friend node can store\nin its Friend Queue. As an example, MinQueueSizeLog value 1 gives N = 2,\nand value 7 gives N = 128.", + "id": "BLE_MESH_LPN_MIN_QUEUE_SIZE", + "name": "BLE_MESH_LPN_MIN_QUEUE_SIZE", + "range": null, + "title": "Minimum size of the acceptable friend queue (MinQueueSizeLog)", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", + "help": "The ReceiveDelay is the time between the Low Power node sending a\nrequest and listening for a response. This delay allows the Friend\nnode time to prepare the response. The value is in units of milliseconds.", + "id": "BLE_MESH_LPN_RECV_DELAY", + "name": "BLE_MESH_LPN_RECV_DELAY", + "range": null, + "title": "Receive delay requested by the local node", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", + "help": "PollTimeout timer is used to measure time between two consecutive\nrequests sent by a Low Power node. If no requests are received\nthe Friend node before the PollTimeout timer expires, then the\nfriendship is considered terminated. The value is in units of 100\nmilliseconds, so e.g. a value of 300 means 30 seconds.\nThe smaller the value, the faster the Low Power node tries to get\nmessages from corresponding Friend node and vice versa.", + "id": "BLE_MESH_LPN_POLL_TIMEOUT", + "name": "BLE_MESH_LPN_POLL_TIMEOUT", + "range": null, + "title": "The value of the PollTimeout timer", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", + "help": "The initial value of the PollTimeout timer when Friendship is to be\nestablished for the first time. After this, the timeout gradually\ngrows toward the actual PollTimeout, doubling in value for each iteration.\nThe value is in units of 100 milliseconds, so e.g. a value of 300 means\n30 seconds.", + "id": "BLE_MESH_LPN_INIT_POLL_TIMEOUT", + "name": "BLE_MESH_LPN_INIT_POLL_TIMEOUT", + "range": null, + "title": "The starting value of the PollTimeout timer", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", + "help": "Latency (in milliseconds) is the time it takes to enable scanning. In\npractice, it means how much time in advance of the Receive Window, the\nrequest to enable scanning is made.", + "id": "BLE_MESH_LPN_SCAN_LATENCY", + "name": "BLE_MESH_LPN_SCAN_LATENCY", + "range": null, + "title": "Latency for enabling scanning", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_LOW_POWER && BLE_MESH", + "help": "Maximum number of groups to which the LPN can subscribe.", + "id": "BLE_MESH_LPN_GROUPS", + "name": "BLE_MESH_LPN_GROUPS", + "range": null, + "title": "Number of groups the LPN can subscribe to", + "type": "int" + } + ], + "depends_on": "BLE_MESH_NODE && BLE_MESH", + "help": "Enable this option to operate as a Low Power Node. If low power consumption\nis required by a node, this option should be enabled. And once the node\nenters the mesh network, it will try to find a Friend node and establish a\nfriendship.", + "id": "BLE_MESH_LOW_POWER", + "name": "BLE_MESH_LOW_POWER", + "range": null, + "title": "Support for Low Power features", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_FRIEND && BLE_MESH", + "help": "Receive Window in milliseconds supported by the Friend node.", + "id": "BLE_MESH_FRIEND_RECV_WIN", + "name": "BLE_MESH_FRIEND_RECV_WIN", + "range": null, + "title": "Friend Receive Window", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_FRIEND && BLE_MESH", + "help": "Minimum number of buffers available to be stored for each local Friend Queue.\nThis option decides the size of each buffer which can be used by a Friend node\nto store messages for each Low Power node.", + "id": "BLE_MESH_FRIEND_QUEUE_SIZE", + "name": "BLE_MESH_FRIEND_QUEUE_SIZE", + "range": null, + "title": "Minimum number of buffers supported per Friend Queue", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_FRIEND && BLE_MESH", + "help": "Size of the Subscription List that can be supported by a Friend node for a\nLow Power node. And Low Power node can send Friend Subscription List Add or\nFriend Subscription List Remove messages to the Friend node to add or remove\nsubscription addresses.", + "id": "BLE_MESH_FRIEND_SUB_LIST_SIZE", + "name": "BLE_MESH_FRIEND_SUB_LIST_SIZE", + "range": null, + "title": "Friend Subscription List Size", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_FRIEND && BLE_MESH", + "help": "Number of Low Power Nodes with which a Friend can have Friendship simultaneously.\nA Friend node can have friendship with multiple Low Power nodes at the same time,\nwhile a Low Power node can only establish friendship with only one Friend node at\nthe same time.", + "id": "BLE_MESH_FRIEND_LPN_COUNT", + "name": "BLE_MESH_FRIEND_LPN_COUNT", + "range": null, + "title": "Number of supported LPN nodes", + "type": "int" + }, + { + "children": [], + "depends_on": "BLE_MESH_FRIEND && BLE_MESH", + "help": "Number of incomplete segment lists tracked for each Friends' LPN.\nIn other words, this determines from how many elements can segmented\nmessages destined for the Friend queue be received simultaneously.", + "id": "BLE_MESH_FRIEND_SEG_RX", + "name": "BLE_MESH_FRIEND_SEG_RX", + "range": null, + "title": "Number of incomplete segment lists per LPN", + "type": "int" + } + ], + "depends_on": "BLE_MESH", + "help": "Enable this option to be able to act as a Friend Node.", + "id": "BLE_MESH_FRIEND", + "name": "BLE_MESH_FRIEND", + "range": null, + "title": "Support for Friend feature", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH && BLE_MESH", + "help": "Select this to save the BLE Mesh related rodata code size. Enabling this option\nwill disable the output of BLE Mesh debug log.", + "id": "BLE_MESH_NO_LOG", + "name": "BLE_MESH_NO_LOG", + "range": null, + "title": "Disable BLE Mesh debug logs (minimize bin size)", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_TRACE_LEVEL_NONE", + "name": "BLE_MESH_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_TRACE_LEVEL_ERROR", + "name": "BLE_MESH_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_TRACE_LEVEL_WARNING", + "name": "BLE_MESH_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_TRACE_LEVEL_INFO", + "name": "BLE_MESH_TRACE_LEVEL_INFO", + "range": null, + "title": "INFO", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_TRACE_LEVEL_DEBUG", + "name": "BLE_MESH_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_TRACE_LEVEL_VERBOSE", + "name": "BLE_MESH_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH", + "help": "Define BLE Mesh trace level for BLE Mesh stack.", + "id": "component-config-esp-ble-mesh-support-ble-mesh-stack-debug-log-level-ble_mesh_stack", + "name": "BLE_MESH_STACK_TRACE_LEVEL", + "title": "BLE_MESH_STACK", + "type": "choice" + }, + { + "children": [], + "depends_on": "BLE_MESH && BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH", + "help": null, + "id": "BLE_MESH_STACK_TRACE_LEVEL", + "name": "BLE_MESH_STACK_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": "BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH", + "id": "component-config-esp-ble-mesh-support-ble-mesh-stack-debug-log-level", + "title": "BLE Mesh STACK DEBUG LOG LEVEL", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_NET_BUF_TRACE_LEVEL_NONE", + "name": "BLE_MESH_NET_BUF_TRACE_LEVEL_NONE", + "range": null, + "title": "NONE", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_NET_BUF_TRACE_LEVEL_ERROR", + "name": "BLE_MESH_NET_BUF_TRACE_LEVEL_ERROR", + "range": null, + "title": "ERROR", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_NET_BUF_TRACE_LEVEL_WARNING", + "name": "BLE_MESH_NET_BUF_TRACE_LEVEL_WARNING", + "range": null, + "title": "WARNING", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_NET_BUF_TRACE_LEVEL_INFO", + "name": "BLE_MESH_NET_BUF_TRACE_LEVEL_INFO", + "range": null, + "title": "INFO", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_NET_BUF_TRACE_LEVEL_DEBUG", + "name": "BLE_MESH_NET_BUF_TRACE_LEVEL_DEBUG", + "range": null, + "title": "DEBUG", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "BLE_MESH_NET_BUF_TRACE_LEVEL_VERBOSE", + "name": "BLE_MESH_NET_BUF_TRACE_LEVEL_VERBOSE", + "range": null, + "title": "VERBOSE", + "type": "bool" + } + ], + "depends_on": "BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH", + "help": "Define BLE Mesh trace level for BLE Mesh net buffer.", + "id": "component-config-esp-ble-mesh-support-ble-mesh-net-buf-debug-log-level-ble_mesh_net_buf", + "name": "BLE_MESH_NET_BUF_TRACE_LEVEL", + "title": "BLE_MESH_NET_BUF", + "type": "choice" + }, + { + "children": [], + "depends_on": "BLE_MESH && BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH", + "help": null, + "id": "BLE_MESH_NET_BUF_TRACE_LEVEL", + "name": "BLE_MESH_NET_BUF_TRACE_LEVEL", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": "BLE_MESH && !BLE_MESH_NO_LOG && BLE_MESH", + "id": "component-config-esp-ble-mesh-support-ble-mesh-net-buf-debug-log-level", + "title": "BLE Mesh NET BUF DEBUG LOG LEVEL", + "type": "menu" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Timeout value used by the node to get response of the acknowledged\nmessage which is sent by the client model.\nThis value indicates the maximum time that a client model waits for\nthe response of the sent acknowledged messages. If a client model\nuses 0 as the timeout value when sending acknowledged messages, then\nthe default value will be used which is four seconds.", + "id": "BLE_MESH_CLIENT_MSG_TIMEOUT", + "name": "BLE_MESH_CLIENT_MSG_TIMEOUT", + "range": null, + "title": "Timeout(ms) for client message response", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Configuration client model.", + "id": "BLE_MESH_CFG_CLI", + "name": "BLE_MESH_CFG_CLI", + "range": null, + "title": "Configuration Client Model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Health client model.", + "id": "BLE_MESH_HEALTH_CLI", + "name": "BLE_MESH_HEALTH_CLI", + "range": null, + "title": "Health Client Model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Generic OnOff client model.", + "id": "BLE_MESH_GENERIC_ONOFF_CLI", + "name": "BLE_MESH_GENERIC_ONOFF_CLI", + "range": null, + "title": "Generic OnOff Client Model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Generic Level client model.", + "id": "BLE_MESH_GENERIC_LEVEL_CLI", + "name": "BLE_MESH_GENERIC_LEVEL_CLI", + "range": null, + "title": "Generic Level Client Model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Generic Default Transition Time client model.", + "id": "BLE_MESH_GENERIC_DEF_TRANS_TIME_CLI", + "name": "BLE_MESH_GENERIC_DEF_TRANS_TIME_CLI", + "range": null, + "title": "Generic Default Transition Time Client Model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Generic Power Onoff client model.", + "id": "BLE_MESH_GENERIC_POWER_ONOFF_CLI", + "name": "BLE_MESH_GENERIC_POWER_ONOFF_CLI", + "range": null, + "title": "Generic Power Onoff Client Model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Generic Power Level client model.", + "id": "BLE_MESH_GENERIC_POWER_LEVEL_CLI", + "name": "BLE_MESH_GENERIC_POWER_LEVEL_CLI", + "range": null, + "title": "Generic Power Level Client Model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Generic Battery client model.", + "id": "BLE_MESH_GENERIC_BATTERY_CLI", + "name": "BLE_MESH_GENERIC_BATTERY_CLI", + "range": null, + "title": "Generic Battery Client Model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Generic Location client model.", + "id": "BLE_MESH_GENERIC_LOCATION_CLI", + "name": "BLE_MESH_GENERIC_LOCATION_CLI", + "range": null, + "title": "Generic Location Client Model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Generic Property client model.", + "id": "BLE_MESH_GENERIC_PROPERTY_CLI", + "name": "BLE_MESH_GENERIC_PROPERTY_CLI", + "range": null, + "title": "Generic Property Client Model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Sensor client model.", + "id": "BLE_MESH_SENSOR_CLI", + "name": "BLE_MESH_SENSOR_CLI", + "range": null, + "title": "Sensor Client Model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Time client model.", + "id": "BLE_MESH_TIME_CLI", + "name": "BLE_MESH_TIME_CLI", + "range": null, + "title": "Time Client Model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Scene client model.", + "id": "BLE_MESH_SCENE_CLI", + "name": "BLE_MESH_SCENE_CLI", + "range": null, + "title": "Scene Client Model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Scheduler client model.", + "id": "BLE_MESH_SCHEDULER_CLI", + "name": "BLE_MESH_SCHEDULER_CLI", + "range": null, + "title": "Scheduler Client Model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Light Lightness client model.", + "id": "BLE_MESH_LIGHT_LIGHTNESS_CLI", + "name": "BLE_MESH_LIGHT_LIGHTNESS_CLI", + "range": null, + "title": "Light Lightness Client Model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Light CTL client model.", + "id": "BLE_MESH_LIGHT_CTL_CLI", + "name": "BLE_MESH_LIGHT_CTL_CLI", + "range": null, + "title": "Light CTL Client Model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Light HSL client model.", + "id": "BLE_MESH_LIGHT_HSL_CLI", + "name": "BLE_MESH_LIGHT_HSL_CLI", + "range": null, + "title": "Light HSL Client Model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Light XYL client model.", + "id": "BLE_MESH_LIGHT_XYL_CLI", + "name": "BLE_MESH_LIGHT_XYL_CLI", + "range": null, + "title": "Light XYL Client Model", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Enable support for Light LC client model.", + "id": "BLE_MESH_LIGHT_LC_CLI", + "name": "BLE_MESH_LIGHT_LC_CLI", + "range": null, + "title": "Light LC Client Model", + "type": "bool" + } + ], + "depends_on": "BLE_MESH", + "id": "component-config-esp-ble-mesh-support-support-for-ble-mesh-client-models", + "title": "Support for BLE Mesh Client Models", + "type": "menu" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "This option removes the 96 hour limit of the IV Update Procedure and\nlets the state to be changed at any time.\nIf IV Update test mode is going to be used, this option should be enabled.", + "id": "BLE_MESH_IV_UPDATE_TEST", + "name": "BLE_MESH_IV_UPDATE_TEST", + "range": null, + "title": "Test the IV Update Procedure", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH", + "help": "This option adds extra self-tests which are run every time BLE Mesh\nnetworking is initialized.", + "id": "BLE_MESH_SELF_TEST", + "name": "BLE_MESH_SELF_TEST", + "range": null, + "title": "Perform BLE Mesh self-tests", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH", + "help": "Activate shell module that provides BLE Mesh commands to the console.", + "id": "BLE_MESH_SHELL", + "name": "BLE_MESH_SHELL", + "range": null, + "title": "Enable BLE Mesh shell", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "BLE_MESH_DEBUG && BLE_MESH", + "help": "Enable Network layer debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG_NET", + "name": "BLE_MESH_DEBUG_NET", + "range": null, + "title": "Network layer debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_DEBUG && BLE_MESH", + "help": "Enable Transport layer debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG_TRANS", + "name": "BLE_MESH_DEBUG_TRANS", + "range": null, + "title": "Transport layer debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_DEBUG && BLE_MESH", + "help": "Enable Beacon-related debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG_BEACON", + "name": "BLE_MESH_DEBUG_BEACON", + "range": null, + "title": "Beacon debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_DEBUG && BLE_MESH", + "help": "Enable cryptographic debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG_CRYPTO", + "name": "BLE_MESH_DEBUG_CRYPTO", + "range": null, + "title": "Crypto debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_DEBUG && BLE_MESH", + "help": "Enable Provisioning debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG_PROV", + "name": "BLE_MESH_DEBUG_PROV", + "range": null, + "title": "Provisioning debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_DEBUG && BLE_MESH", + "help": "Enable Access layer debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG_ACCESS", + "name": "BLE_MESH_DEBUG_ACCESS", + "range": null, + "title": "Access layer debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_DEBUG && BLE_MESH", + "help": "Enable Foundation Models debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG_MODEL", + "name": "BLE_MESH_DEBUG_MODEL", + "range": null, + "title": "Foundation model debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_DEBUG && BLE_MESH", + "help": "Enable advertising debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG_ADV", + "name": "BLE_MESH_DEBUG_ADV", + "range": null, + "title": "Advertising debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_DEBUG && BLE_MESH", + "help": "Enable Low Power debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG_LOW_POWER", + "name": "BLE_MESH_DEBUG_LOW_POWER", + "range": null, + "title": "Low Power debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_DEBUG && BLE_MESH", + "help": "Enable Friend debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG_FRIEND", + "name": "BLE_MESH_DEBUG_FRIEND", + "range": null, + "title": "Friend debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "BLE_MESH_PROXY && BLE_MESH_DEBUG && BLE_MESH", + "help": "Enable Proxy protocol debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG_PROXY", + "name": "BLE_MESH_DEBUG_PROXY", + "range": null, + "title": "Proxy debug", + "type": "bool" + } + ], + "depends_on": "BLE_MESH", + "help": "Enable debug logs for the BLE Mesh functionality.", + "id": "BLE_MESH_DEBUG", + "name": "BLE_MESH_DEBUG", + "range": null, + "title": "Enable BLE Mesh debug logs", + "type": "bool" + } + ], + "depends_on": "BLE_MESH", + "id": "component-config-esp-ble-mesh-support-ble-mesh-specific-test-option", + "title": "BLE Mesh specific test option", + "type": "menu" + } + ], + "depends_on": "BT_ENABLED", + "help": "This option enables ESP BLE Mesh support. The specific features that are\navailable may depend on other features that have been enabled in the\nstack, such as Bluetooth Support, Bluedroid Support & GATT support.", + "id": "BLE_MESH", + "is_menuconfig": true, + "name": "BLE_MESH", + "range": null, + "title": "ESP BLE Mesh Support", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "COAP_MBEDTLS_PSK", + "name": "COAP_MBEDTLS_PSK", + "range": null, + "title": "Pre-Shared Keys", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COAP_MBEDTLS_PKI", + "name": "COAP_MBEDTLS_PKI", + "range": null, + "title": "PKI Certificates", + "type": "bool" + } + ], + "depends_on": null, + "help": "If the CoAP information is to be encrypted, the encryption environment\ncan be set up in one of two ways (default being Pre-Shared key mode)\n\n- Encrypt using defined Pre-Shared Keys (PSK if uri includes coaps://)\n- Encrypt using defined Public Key Infrastructure (PKI if uri includes coaps://)", + "id": "component-config-coap-configuration-coap-encryption-method", + "name": "COAP_MBEDTLS_ENCRYPTION_MODE", + "title": "CoAP Encryption method", + "type": "choice" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "COAP_LOG_EMERG", + "name": "COAP_LOG_EMERG", + "range": null, + "title": "Emergency", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COAP_LOG_ALERT", + "name": "COAP_LOG_ALERT", + "range": null, + "title": "Alert", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COAP_LOG_CRIT", + "name": "COAP_LOG_CRIT", + "range": null, + "title": "Critical", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COAP_LOG_ERROR", + "name": "COAP_LOG_ERROR", + "range": null, + "title": "Error", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COAP_LOG_WARNING", + "name": "COAP_LOG_WARNING", + "range": null, + "title": "Warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COAP_LOG_NOTICE", + "name": "COAP_LOG_NOTICE", + "range": null, + "title": "Notice", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COAP_LOG_INFO", + "name": "COAP_LOG_INFO", + "range": null, + "title": "Info", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "COAP_LOG_DEBUG", + "name": "COAP_LOG_DEBUG", + "range": null, + "title": "Debug", + "type": "bool" + } + ], + "depends_on": "COAP_MBEDTLS_DEBUG", + "help": "Set CoAP debugging level", + "id": "component-config-coap-configuration-enable-coap-debugging-set-coap-debugging-level", + "name": "COAP_MBEDTLS_DEBUG_LEVEL", + "title": "Set CoAP debugging level", + "type": "choice" + } + ], + "depends_on": null, + "help": "Enable CoAP debugging functions at compile time for the example code.\n\nIf this option is enabled, call coap_set_log_level()\nat runtime in order to enable CoAP debug output via the ESP\nlog mechanism.", + "id": "COAP_MBEDTLS_DEBUG", + "name": "COAP_MBEDTLS_DEBUG", + "range": null, + "title": "Enable CoAP debugging", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "COAP_LOG_DEFAULT_LEVEL", + "name": "COAP_LOG_DEFAULT_LEVEL", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-coap-configuration", + "title": "CoAP Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "ADC power can be controlled by the FSM instead of software. This allows the ADC to\nbe shut off when it is not working leading to lower power consumption. However\nusing the FSM control ADC power will increase the noise of ADC.", + "id": "ADC_FORCE_XPD_FSM", + "name": "ADC_FORCE_XPD_FSM", + "range": null, + "title": "Use the FSM to control ADC power", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If this is set, the ADC2 driver will disable the output of the DAC corresponding to the specified\nchannel. This is the default value.\n\nFor testing, disable this option so that we can measure the output of DAC by internal ADC.", + "id": "ADC_DISABLE_DAC", + "name": "ADC_DISABLE_DAC", + "range": null, + "title": "Disable DAC when ADC2 is used on GPIO 25 and 26", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-driver-configurations-adc-configuration", + "title": "ADC configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Normally only the ISR of SPI master is placed in the IRAM, so that it\ncan work without the flash when interrupt is triggered.\nFor other functions, there's some possibility that the flash cache\nmiss when running inside and out of SPI functions, which may increase\nthe interval of SPI transactions.\nEnable this to put ``queue_trans``, ``get_trans_result`` and\n``transmit`` functions into the IRAM to avoid possible cache miss.\n\nDuring unit test, this is enabled to measure the ideal case of api.", + "id": "SPI_MASTER_IN_IRAM", + "name": "SPI_MASTER_IN_IRAM", + "range": null, + "title": "Place transmitting functions of SPI master into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Place the SPI master ISR in to IRAM to avoid possible cache miss.\n\nAlso you can forbid the ISR being disabled during flash writing\naccess, by add ESP_INTR_FLAG_IRAM when initializing the driver.", + "id": "SPI_MASTER_ISR_IN_IRAM", + "name": "SPI_MASTER_ISR_IN_IRAM", + "range": null, + "title": "Place SPI master ISR function into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Normally only the ISR of SPI slave is placed in the IRAM, so that it\ncan work without the flash when interrupt is triggered.\nFor other functions, there's some possibility that the flash cache\nmiss when running inside and out of SPI functions, which may increase\nthe interval of SPI transactions.\nEnable this to put ``queue_trans``, ``get_trans_result`` and\n``transmit`` functions into the IRAM to avoid possible cache miss.", + "id": "SPI_SLAVE_IN_IRAM", + "name": "SPI_SLAVE_IN_IRAM", + "range": null, + "title": "Place transmitting functions of SPI slave into IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Place the SPI slave ISR in to IRAM to avoid possible cache miss.\n\nAlso you can forbid the ISR being disabled during flash writing\naccess, by add ESP_INTR_FLAG_IRAM when initializing the driver.", + "id": "SPI_SLAVE_ISR_IN_IRAM", + "name": "SPI_SLAVE_ISR_IN_IRAM", + "range": null, + "title": "Place SPI slave ISR function into IRAM", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-driver-configurations-spi-configuration", + "title": "SPI configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "If this option is not selected, UART interrupt will be disabled for a long time and\nmay cause data lost when doing spi flash operation.", + "id": "UART_ISR_IN_IRAM", + "name": "UART_ISR_IN_IRAM", + "range": null, + "title": "Place UART ISR function into IRAM", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-driver-configurations-uart-configuration", + "title": "UART configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "help": "The the array `rtc_gpio_desc` will don't compile by default.\nIf this option is selected, the array `rtc_gpio_desc` can be compile.\nIf user use this array, please enable this configuration.", + "id": "RTCIO_SUPPORT_RTC_GPIO_DESC", + "name": "RTCIO_SUPPORT_RTC_GPIO_DESC", + "range": null, + "title": "Support array `rtc_gpio_desc` for ESP32", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-driver-configurations-rtcio-configuration", + "title": "RTCIO configuration", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-driver-configurations", + "title": "Driver configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "EFUSE_CUSTOM_TABLE", + "help": "Name of the custom eFuse CSV filename. This path is evaluated\nrelative to the project root directory.", + "id": "EFUSE_CUSTOM_TABLE_FILENAME", + "name": "EFUSE_CUSTOM_TABLE_FILENAME", + "range": null, + "title": "Custom eFuse CSV file", + "type": "string" + } + ], + "depends_on": null, + "help": "Allows to generate a structure for eFuse from the CSV file.", + "id": "EFUSE_CUSTOM_TABLE", + "name": "EFUSE_CUSTOM_TABLE", + "range": null, + "title": "Use custom eFuse table", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "All read and writes operations are redirected to RAM instead of eFuse registers.\nIf this option is set, all permanent changes (via eFuse) are disabled.\nLog output will state changes which would be applied, but they will not be.", + "id": "EFUSE_VIRTUAL", + "name": "EFUSE_VIRTUAL", + "range": null, + "title": "Simulate eFuse operations in RAM", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "EFUSE_CODE_SCHEME_COMPAT_NONE", + "name": "EFUSE_CODE_SCHEME_COMPAT_NONE", + "range": null, + "title": "None Only", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "EFUSE_CODE_SCHEME_COMPAT_3_4", + "name": "EFUSE_CODE_SCHEME_COMPAT_3_4", + "range": null, + "title": "3/4 and None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "EFUSE_CODE_SCHEME_COMPAT_REPEAT", + "name": "EFUSE_CODE_SCHEME_COMPAT_REPEAT", + "range": null, + "title": "Repeat, 3/4 and None (common table does not support it)", + "type": "bool" + } + ], + "depends_on": "IDF_TARGET_ESP32", + "help": "Selector eFuse code scheme.", + "id": "component-config-efuse-bit-manager-coding-scheme-compatibility", + "name": "EFUSE_CODE_SCHEME_SELECTOR", + "title": "Coding Scheme Compatibility", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "EFUSE_MAX_BLK_LEN", + "name": "EFUSE_MAX_BLK_LEN", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-efuse-bit-manager", + "title": "eFuse Bit Manager", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_TLS_USING_MBEDTLS", + "name": "ESP_TLS_USING_MBEDTLS", + "range": null, + "title": "mbedTLS", + "type": "bool" + }, + { + "children": [], + "depends_on": "TLS_STACK_WOLFSSL && ", + "help": null, + "id": "ESP_TLS_USING_WOLFSSL", + "name": "ESP_TLS_USING_WOLFSSL", + "range": null, + "title": "wolfSSL (License info in wolfSSL directory README)", + "type": "bool" + } + ], + "depends_on": null, + "help": "The ESP-TLS APIs support multiple backend TLS libraries. Currently mbedTLS and WolfSSL are\nsupported. Different TLS libraries may support different features and have different resource\nusage. Consult the ESP-TLS documentation in ESP-IDF Programming guide for more details.", + "id": "component-config-esp-tls-choose-ssl-tls-library-for-esp-tls-see-help-for-more-info-", + "name": "ESP_TLS_LIBRARY_CHOOSE", + "title": "Choose SSL/TLS library for ESP-TLS (See help for more Info)", + "type": "choice" + }, + { + "children": [], + "depends_on": "ESP_TLS_USING_MBEDTLS", + "help": "Enable support for creating server side SSL/TLS session, uses the mbedtls crypto library", + "id": "ESP_TLS_SERVER", + "name": "ESP_TLS_SERVER", + "range": null, + "title": "Enable ESP-TLS Server", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_TLS_USING_MBEDTLS", + "help": "Enable support for pre shared key ciphers, uses the mbedtls crypto library", + "id": "ESP_TLS_PSK_VERIFICATION", + "name": "ESP_TLS_PSK_VERIFICATION", + "range": null, + "title": "Enable PSK verification", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_TLS_USING_WOLFSSL", + "help": "Enables server verification with Intermediate CA cert, does not authenticate full chain\nof trust upto the root CA cert (After Enabling this option client only needs to have Intermediate\nCA certificate of the server to authenticate server, root CA cert is not necessary).", + "id": "ESP_WOLFSSL_SMALL_CERT_VERIFY", + "name": "ESP_WOLFSSL_SMALL_CERT_VERIFY", + "range": null, + "title": "Enable SMALL_CERT_VERIFY", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_TLS_USING_WOLFSSL", + "help": "Enable detailed debug prints for wolfSSL SSL library.", + "id": "ESP_DEBUG_WOLFSSL", + "name": "ESP_DEBUG_WOLFSSL", + "range": null, + "title": "Enable debug logs for wolfSSL", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-tls", + "title": "ESP-TLS", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_REV_MIN_0", + "name": "ESP32_REV_MIN_0", + "range": null, + "title": "Rev 0", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_REV_MIN_1", + "name": "ESP32_REV_MIN_1", + "range": null, + "title": "Rev 1", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_REV_MIN_2", + "name": "ESP32_REV_MIN_2", + "range": null, + "title": "Rev 2", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_REV_MIN_3", + "name": "ESP32_REV_MIN_3", + "range": null, + "title": "Rev 3", + "type": "bool" + } + ], + "depends_on": null, + "help": "Minimum revision that ESP-IDF would support.\nESP-IDF performs different strategy on different esp32 revision.", + "id": "component-config-esp32-specific-minimum-supported-esp32-revision", + "name": "ESP32_REV_MIN", + "title": "Minimum Supported ESP32 Revision", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_REV_MIN", + "name": "ESP32_REV_MIN", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_DPORT_WORKAROUND", + "name": "ESP32_DPORT_WORKAROUND", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_DEFAULT_CPU_FREQ_80", + "name": "ESP32_DEFAULT_CPU_FREQ_80", + "range": null, + "title": "80 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_DEFAULT_CPU_FREQ_160", + "name": "ESP32_DEFAULT_CPU_FREQ_160", + "range": null, + "title": "160 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_DEFAULT_CPU_FREQ_240", + "name": "ESP32_DEFAULT_CPU_FREQ_240", + "range": null, + "title": "240 MHz", + "type": "bool" + } + ], + "depends_on": null, + "help": "CPU frequency to be set on application startup.", + "id": "component-config-esp32-specific-cpu-frequency", + "name": "ESP32_DEFAULT_CPU_FREQ_MHZ", + "title": "CPU frequency", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_DEFAULT_CPU_FREQ_MHZ", + "name": "ESP32_DEFAULT_CPU_FREQ_MHZ", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_TYPE_AUTO", + "name": "SPIRAM_TYPE_AUTO", + "range": null, + "title": "Auto-detect", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_TYPE_ESPPSRAM32", + "name": "SPIRAM_TYPE_ESPPSRAM32", + "range": null, + "title": "ESP-PSRAM32 or IS25WP032", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_TYPE_ESPPSRAM64", + "name": "SPIRAM_TYPE_ESPPSRAM64", + "range": null, + "title": "ESP-PSRAM64 or LY68L6400", + "type": "bool" + } + ], + "depends_on": "ESP32_SPIRAM_SUPPORT", + "help": null, + "id": "component-config-esp32-specific-support-for-external-spi-connected-ram-spi-ram-config-type-of-spi-ram-chip-in-use", + "name": "SPIRAM_TYPE", + "title": "Type of SPI RAM chip in use", + "type": "choice" + }, + { + "children": [], + "depends_on": "ESP32_SPIRAM_SUPPORT", + "help": null, + "id": "SPIRAM_SIZE", + "name": "SPIRAM_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_SPEED_40M", + "name": "SPIRAM_SPEED_40M", + "range": null, + "title": "40MHz clock speed", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESPTOOLPY_FLASHFREQ_80M && ", + "help": null, + "id": "SPIRAM_SPEED_80M", + "name": "SPIRAM_SPEED_80M", + "range": null, + "title": "80MHz clock speed", + "type": "bool" + } + ], + "depends_on": "ESP32_SPIRAM_SUPPORT", + "help": "Select the speed for the SPI RAM chip.\nIf SPI RAM is enabled, we only support three combinations of SPI speed mode we supported now:\n\n1. Flash SPI running at 40Mhz and RAM SPI running at 40Mhz\n2. Flash SPI running at 80Mhz and RAM SPI running at 40Mhz\n3. Flash SPI running at 80Mhz and RAM SPI running at 80Mhz\n\nNote: If the third mode(80Mhz+80Mhz) is enabled for SPI RAM of type 32MBit, one of the HSPI/VSPI host\nwill be occupied by the system. Which SPI host to use can be selected by the config item\nSPIRAM_OCCUPY_SPI_HOST. Application code should never touch HSPI/VSPI hardware in this case. The\noption to select 80MHz will only be visible if the flash SPI speed is also 80MHz.\n(ESPTOOLPY_FLASHFREQ_80M is true)", + "id": "component-config-esp32-specific-support-for-external-spi-connected-ram-spi-ram-config-set-ram-clock-speed", + "name": "SPIRAM_SPEED", + "title": "Set RAM clock speed", + "type": "choice" + }, + { + "children": [], + "depends_on": "ESP32_SPIRAM_SUPPORT", + "help": null, + "id": "SPIRAM", + "name": "SPIRAM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPIRAM_BOOT_INIT && !SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY && ESP32_SPIRAM_SUPPORT", + "help": "Normally, if psram initialization is enabled during compile time but not found at runtime, it\nis seen as an error making the CPU panic. If this is enabled, booting will complete\nbut no PSRAM will be available.", + "id": "SPIRAM_IGNORE_NOTFOUND", + "name": "SPIRAM_IGNORE_NOTFOUND", + "range": null, + "title": "Ignore PSRAM when not found", + "type": "bool" + } + ], + "depends_on": "ESP32_SPIRAM_SUPPORT", + "help": "If this is enabled, the SPI RAM will be enabled during initial boot. Unless you\nhave specific requirements, you'll want to leave this enabled so memory allocated\nduring boot-up can also be placed in SPI RAM.", + "id": "SPIRAM_BOOT_INIT", + "name": "SPIRAM_BOOT_INIT", + "range": null, + "title": "Initialize SPI RAM during startup", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_USE_MEMMAP", + "name": "SPIRAM_USE_MEMMAP", + "range": null, + "title": "Integrate RAM into memory map", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_USE_CAPS_ALLOC", + "name": "SPIRAM_USE_CAPS_ALLOC", + "range": null, + "title": "Make RAM allocatable using heap_caps_malloc(..., MALLOC_CAP_SPIRAM)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_USE_MALLOC", + "name": "SPIRAM_USE_MALLOC", + "range": null, + "title": "Make RAM allocatable using malloc() as well", + "type": "bool" + } + ], + "depends_on": "ESP32_SPIRAM_SUPPORT", + "help": "The SPI RAM can be accessed in multiple methods: by just having it available as an unmanaged\nmemory region in the CPU's memory map, by integrating it in the heap as 'special' memory\nneeding heap_caps_malloc to allocate, or by fully integrating it making malloc() also able to\nreturn SPI RAM pointers.", + "id": "component-config-esp32-specific-support-for-external-spi-connected-ram-spi-ram-config-spi-ram-access-method", + "name": "SPIRAM_USE", + "title": "SPI RAM access method", + "type": "choice" + }, + { + "children": [], + "depends_on": "SPIRAM_BOOT_INIT && ESP32_SPIRAM_SUPPORT", + "help": "Runs a rudimentary memory test on initialization. Aborts when memory test fails. Disable this for\nslightly faster startup.", + "id": "SPIRAM_MEMTEST", + "name": "SPIRAM_MEMTEST", + "range": null, + "title": "Run memory test on SPI RAM initialization", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_USE_MALLOC && ESP32_SPIRAM_SUPPORT", + "help": "If malloc() is capable of also allocating SPI-connected ram, its allocation strategy will prefer to\nallocate chunks less than this size in internal memory, while allocations larger than this will be\ndone from external RAM. If allocation from the preferred region fails, an attempt is made to allocate\nfrom the non-preferred region instead, so malloc() will not suddenly fail when either internal or\nexternal memory is full.", + "id": "SPIRAM_MALLOC_ALWAYSINTERNAL", + "name": "SPIRAM_MALLOC_ALWAYSINTERNAL", + "range": null, + "title": "Maximum malloc() size, in bytes, to always put in internal memory", + "type": "int" + }, + { + "children": [], + "depends_on": "(SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && ESP32_SPIRAM_SUPPORT", + "help": "Try to allocate memories of WiFi and LWIP in SPIRAM firstly. If failed, try to allocate internal\nmemory then.", + "id": "SPIRAM_TRY_ALLOCATE_WIFI_LWIP", + "name": "SPIRAM_TRY_ALLOCATE_WIFI_LWIP", + "range": null, + "title": "Try to allocate memories of WiFi and LWIP in SPIRAM firstly. If failed, allocate internal memory", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_USE_MALLOC && ESP32_SPIRAM_SUPPORT", + "help": "Because the external/internal RAM allocation strategy is not always perfect, it sometimes may happen\nthat the internal memory is entirely filled up. This causes allocations that are specifically done in\ninternal memory, for example the stack for new tasks or memory to service DMA or have memory that's\nalso available when SPI cache is down, to fail. This option reserves a pool specifically for requests\nlike that; the memory in this pool is not given out when a normal malloc() is called.\n\nSet this to 0 to disable this feature.\n\nNote that because FreeRTOS stacks are forced to internal memory, they will also use this memory pool;\nbe sure to keep this in mind when adjusting this value.\n\nNote also that the DMA reserved pool may not be one single contiguous memory region, depending on the\nconfigured size and the static memory usage of the app.", + "id": "SPIRAM_MALLOC_RESERVE_INTERNAL", + "name": "SPIRAM_MALLOC_RESERVE_INTERNAL", + "range": null, + "title": "Reserve this amount of bytes for data that specifically needs to be in DMA or internal memory", + "type": "int" + }, + { + "children": [], + "depends_on": "SPIRAM && ESP32_SPIRAM_SUPPORT", + "help": "If enabled the option,and add EXT_RAM_ATTR defined your variable,then your variable will be placed in\nPSRAM instead of internal memory, and placed most of variables of lwip,net802.11,pp,bluedroid library\nto external memory defaultly.", + "id": "SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY", + "name": "SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY", + "range": null, + "title": "Allow .bss segment placed in external memory", + "type": "bool" + }, + { + "children": [], + "depends_on": "(SPIRAM_USE_MEMMAP || SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && ESP32_REV_MIN < 3 && ESP32_SPIRAM_SUPPORT", + "help": "Revision 1 of the ESP32 has a bug that can cause a write to PSRAM not to take place in some situations\nwhen the cache line needs to be fetched from external RAM and an interrupt occurs. This enables a\nfix in the compiler (-mfix-esp32-psram-cache-issue) that makes sure the specific code that is\nvulnerable to this will not be emitted.\n\nThis will also not use any bits of newlib that are located in ROM, opting for a version that is\ncompiled with the workaround and located in flash instead.\n\nThe workaround is not required for ESP32 revision 3 and above.", + "id": "SPIRAM_CACHE_WORKAROUND", + "name": "SPIRAM_CACHE_WORKAROUND", + "range": null, + "title": "Enable workaround for bug in SPI RAM cache for Rev1 ESP32s", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPIRAM_BANKSWITCH_ENABLE && ESP32_SPIRAM_SUPPORT", + "help": "Select the amount of banks reserved for bank switching. Note that the amount of RAM allocatable with\nmalloc/esp_heap_alloc_caps will decrease by 32K for each page reserved here.\n\nNote that this reservation is only actually done if your program actually uses the himem API. Without\nany himem calls, the reservation is not done and the original amount of memory will be available\nto malloc/esp_heap_alloc_caps.", + "id": "SPIRAM_BANKSWITCH_RESERVE", + "name": "SPIRAM_BANKSWITCH_RESERVE", + "range": null, + "title": "Amount of 32K pages to reserve for bank switching", + "type": "int" + } + ], + "depends_on": "(SPIRAM_USE_MEMMAP || SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC) && ESP32_SPIRAM_SUPPORT", + "help": "The ESP32 only supports 4MiB of external RAM in its address space. The hardware does support larger\nmemories, but these have to be bank-switched in and out of this address space. Enabling this allows you\nto reserve some MMU pages for this, which allows the use of the esp_himem api to manage these banks.\n\n#Note that this is limited to 62 banks, as esp_spiram_writeback_cache needs some kind of mapping of\n#some banks below that mark to work. We cannot at this moment guarantee this to exist when himem is\n#enabled.", + "id": "SPIRAM_BANKSWITCH_ENABLE", + "name": "SPIRAM_BANKSWITCH_ENABLE", + "range": null, + "title": "Enable bank switching for >4MiB external RAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_USE_MALLOC && ESP32_SPIRAM_SUPPORT", + "help": "Because some bits of the ESP32 code environment cannot be recompiled with the cache workaround,\nnormally tasks cannot be safely run with their stack residing in external memory; for this reason\nxTaskCreate and friends always allocate stack in internal memory and xTaskCreateStatic will check if\nthe memory passed to it is in internal memory. If you have a task that needs a large amount of stack\nand does not call on ROM code in any way (no direct calls, but also no Bluetooth/WiFi), you can try to\ndisable this and use xTaskCreateStatic to create the tasks stack in external memory.", + "id": "SPIRAM_ALLOW_STACK_EXTERNAL_MEMORY", + "name": "SPIRAM_ALLOW_STACK_EXTERNAL_MEMORY", + "range": null, + "title": "Allow external memory as an argument to xTaskCreateStatic", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_OCCUPY_HSPI_HOST", + "name": "SPIRAM_OCCUPY_HSPI_HOST", + "range": null, + "title": "HSPI host (SPI2)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_OCCUPY_VSPI_HOST", + "name": "SPIRAM_OCCUPY_VSPI_HOST", + "range": null, + "title": "VSPI host (SPI3)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPIRAM_OCCUPY_NO_HOST", + "name": "SPIRAM_OCCUPY_NO_HOST", + "range": null, + "title": "Will not try to use any host, will abort if not able to use the PSRAM", + "type": "bool" + } + ], + "depends_on": "SPIRAM_SPEED_80M && ESP32_SPIRAM_SUPPORT", + "help": "When both flash and PSRAM is working under 80MHz, and the PSRAM is of type 32MBit, one of the HSPI/VSPI\nhost will be used to output the clock. Select which one to use here.", + "id": "component-config-esp32-specific-support-for-external-spi-connected-ram-spi-ram-config-spi-host-to-use-for-32mbit-psram", + "name": "SPIRAM_OCCUPY_SPI_HOST", + "title": "SPI host to use for 32MBit PSRAM", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP32_SPIRAM_SUPPORT && ESP32_SPIRAM_SUPPORT", + "help": "The PSRAM CLOCK IO can be any unused GPIO, user can config it based on hardware design. If user use\n1.8V flash and 1.8V psram, this value can only be one of 6, 7, 8, 9, 10, 11, 16, 17.", + "id": "D0WD_PSRAM_CLK_IO", + "name": "D0WD_PSRAM_CLK_IO", + "range": null, + "title": "PSRAM CLK IO number", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP32_SPIRAM_SUPPORT && ESP32_SPIRAM_SUPPORT", + "help": "The PSRAM CS IO can be any unused GPIO, user can config it based on hardware design. If user use\n1.8V flash and 1.8V psram, this value can only be one of 6, 7, 8, 9, 10, 11, 16, 17.", + "id": "D0WD_PSRAM_CS_IO", + "name": "D0WD_PSRAM_CS_IO", + "range": null, + "title": "PSRAM CS IO number", + "type": "int" + } + ], + "depends_on": "ESP32_SPIRAM_SUPPORT", + "id": "component-config-esp32-specific-support-for-external-spi-connected-ram-spi-ram-config-psram-clock-and-cs-io-for-esp32-dowd", + "title": "PSRAM clock and cs IO for ESP32-DOWD", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP32_SPIRAM_SUPPORT && ESP32_SPIRAM_SUPPORT", + "help": "User can config it based on hardware design. For ESP32-D2WD chip, the psram can only be 1.8V psram,\nso this value can only be one of 6, 7, 8, 9, 10, 11, 16, 17.", + "id": "D2WD_PSRAM_CLK_IO", + "name": "D2WD_PSRAM_CLK_IO", + "range": null, + "title": "PSRAM CLK IO number", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP32_SPIRAM_SUPPORT && ESP32_SPIRAM_SUPPORT", + "help": "User can config it based on hardware design. For ESP32-D2WD chip, the psram can only be 1.8V psram,\nso this value can only be one of 6, 7, 8, 9, 10, 11, 16, 17.", + "id": "D2WD_PSRAM_CS_IO", + "name": "D2WD_PSRAM_CS_IO", + "range": null, + "title": "PSRAM CS IO number", + "type": "int" + } + ], + "depends_on": "ESP32_SPIRAM_SUPPORT", + "id": "component-config-esp32-specific-support-for-external-spi-connected-ram-spi-ram-config-psram-clock-and-cs-io-for-esp32-d2wd", + "title": "PSRAM clock and cs IO for ESP32-D2WD", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP32_SPIRAM_SUPPORT && ESP32_SPIRAM_SUPPORT", + "help": "The PSRAM CS IO can be any unused GPIO, user can config it based on hardware design.\n\nFor ESP32-PICO chip, the psram share clock with flash, so user do not need to configure the clock\nIO.\nFor the reference hardware design, please refer to\nhttps://www.espressif.com/sites/default/files/documentation/esp32-pico-d4_datasheet_en.pdf", + "id": "PICO_PSRAM_CS_IO", + "name": "PICO_PSRAM_CS_IO", + "range": null, + "title": "PSRAM CS IO number", + "type": "int" + } + ], + "depends_on": "ESP32_SPIRAM_SUPPORT", + "id": "component-config-esp32-specific-support-for-external-spi-connected-ram-spi-ram-config-psram-clock-and-cs-io-for-esp32-pico", + "title": "PSRAM clock and cs IO for ESP32-PICO", + "type": "menu" + }, + { + "children": [], + "depends_on": "(ESPTOOLPY_FLASHMODE_DIO || ESPTOOLPY_FLASHMODE_DOUT) && ESP32_SPIRAM_SUPPORT", + "help": "This value is ignored unless flash mode is set to DIO or DOUT and the SPI flash pins have been\noverriden by setting the eFuses SPI_PAD_CONFIG_xxx.\n\nWhen this is the case, the eFuse config only defines 3 of the 4 Quad I/O data pins. The WP pin (aka\nESP32 pin \"SD_DATA_3\" or SPI flash pin \"IO2\") is not specified in eFuse. And the psram only has QPI\nmode, the WP pin is necessary, so we need to configure this value here.\n\nWhen flash mode is set to QIO or QOUT, the PSRAM WP pin will be set as the value configured in\nbootloader.\n\nFor ESP32-PICO chip, the default value of this config should be 7.", + "id": "SPIRAM_SPIWP_SD3_PIN", + "name": "SPIRAM_SPIWP_SD3_PIN", + "range": null, + "title": "SPI PSRAM WP(SD3) Pin when customising pins via eFuse (read help)", + "type": "int" + } + ], + "depends_on": "ESP32_SPIRAM_SUPPORT", + "id": "component-config-esp32-specific-support-for-external-spi-connected-ram-spi-ram-config", + "title": "SPI RAM config", + "type": "menu" + } + ], + "depends_on": null, + "help": "This enables support for an external SPI RAM chip, connected in parallel with the\nmain SPI flash chip.", + "id": "ESP32_SPIRAM_SUPPORT", + "name": "ESP32_SPIRAM_SUPPORT", + "range": null, + "title": "Support for external, SPI-connected RAM", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_MEMMAP_TRACEMEM", + "name": "ESP32_MEMMAP_TRACEMEM", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_MEMMAP_TRACEMEM_TWOBANKS", + "name": "ESP32_MEMMAP_TRACEMEM_TWOBANKS", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP32_TRAX && !FREERTOS_UNICORE", + "help": "The ESP32 contains a feature which allows you to trace the execution path the processor\nhas taken through the program. This is stored in a chunk of 32K (16K for single-processor)\nof memory that can't be used for general purposes anymore. Disable this if you do not know\nwhat this is.\n\n# Memory to reverse for trace, used in linker script", + "id": "ESP32_TRAX_TWOBANKS", + "name": "ESP32_TRAX_TWOBANKS", + "range": null, + "title": "Reserve memory for tracing both pro as well as app cpu execution", + "type": "bool" + } + ], + "depends_on": null, + "help": "The ESP32 contains a feature which allows you to trace the execution path the processor\nhas taken through the program. This is stored in a chunk of 32K (16K for single-processor)\nof memory that can't be used for general purposes anymore. Disable this if you do not know\nwhat this is.", + "id": "ESP32_TRAX", + "name": "ESP32_TRAX", + "range": null, + "title": "Use TRAX tracing feature", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_TRACEMEM_RESERVE_DRAM", + "name": "ESP32_TRACEMEM_RESERVE_DRAM", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_UNIVERSAL_MAC_ADDRESSES_TWO", + "name": "ESP32_UNIVERSAL_MAC_ADDRESSES_TWO", + "range": null, + "title": "Two", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR", + "name": "ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR", + "range": null, + "title": "Four", + "type": "bool" + } + ], + "depends_on": null, + "help": "Configure the number of universally administered (by IEEE) MAC addresses.\nDuring initialization, MAC addresses for each network interface are generated or derived from a\nsingle base MAC address.\nIf the number of universal MAC addresses is four, all four interfaces (WiFi station, WiFi softap,\nBluetooth and Ethernet) receive a universally administered MAC address. These are generated\nsequentially by adding 0, 1, 2 and 3 (respectively) to the final octet of the base MAC address.\nIf the number of universal MAC addresses is two, only two interfaces (WiFi station and Bluetooth)\nreceive a universally administered MAC address. These are generated sequentially by adding 0\nand 1 (respectively) to the base MAC address. The remaining two interfaces (WiFi softap and Ethernet)\nreceive local MAC addresses. These are derived from the universal WiFi station and Bluetooth MAC\naddresses, respectively.\nWhen using the default (Espressif-assigned) base MAC address, either setting can be used. When using\na custom universal MAC address range, the correct setting will depend on the allocation of MAC\naddresses in this range (either 2 or 4 per device.)", + "id": "component-config-esp32-specific-number-of-universally-administered-by-ieee-mac-address", + "name": "ESP32_UNIVERSAL_MAC_ADDRESSES", + "title": "Number of universally administered (by IEEE) MAC address", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_UNIVERSAL_MAC_ADDRESSES", + "name": "ESP32_UNIVERSAL_MAC_ADDRESSES", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Bytes of memory to reserve for ULP coprocessor firmware & data.\n\nData is reserved at the beginning of RTC slow memory.", + "id": "ESP32_ULP_COPROC_RESERVE_MEM", + "name": "ESP32_ULP_COPROC_RESERVE_MEM", + "range": [ + 0, + 0 + ], + "title": "RTC slow memory reserved for coprocessor", + "type": "int" + } + ], + "depends_on": null, + "help": "Set to 'y' if you plan to load a firmware for the coprocessor.\n\nIf this option is enabled, further coprocessor configuration will appear in the Components menu.", + "id": "ESP32_ULP_COPROC_ENABLED", + "name": "ESP32_ULP_COPROC_ENABLED", + "range": null, + "title": "Enable Ultra Low Power (ULP) Coprocessor", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Outputs the relevant registers over the serial port and halt the\nprocessor. Needs a manual reset to restart.", + "id": "ESP32_PANIC_PRINT_HALT", + "name": "ESP32_PANIC_PRINT_HALT", + "range": null, + "title": "Print registers and halt", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Outputs the relevant registers over the serial port and immediately\nreset the processor.", + "id": "ESP32_PANIC_PRINT_REBOOT", + "name": "ESP32_PANIC_PRINT_REBOOT", + "range": null, + "title": "Print registers and reboot", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Just resets the processor without outputting anything", + "id": "ESP32_PANIC_SILENT_REBOOT", + "name": "ESP32_PANIC_SILENT_REBOOT", + "range": null, + "title": "Silent reboot", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Invoke gdbstub on the serial port, allowing for gdb to attach to it to do a postmortem\nof the crash.", + "id": "ESP32_PANIC_GDBSTUB", + "name": "ESP32_PANIC_GDBSTUB", + "range": null, + "title": "Invoke GDBStub", + "type": "bool" + } + ], + "depends_on": null, + "help": "If FreeRTOS detects unexpected behaviour or an unhandled exception, the panic handler is\ninvoked. Configure the panic handlers action here.", + "id": "component-config-esp32-specific-panic-handler-behaviour", + "name": "ESP32_PANIC", + "title": "Panic handler behaviour", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "The FreeRTOS panic and unhandled exception handers can detect a JTAG OCD debugger and\ninstead of panicking, have the debugger stop on the offending instruction.", + "id": "ESP32_DEBUG_OCDAWARE", + "name": "ESP32_DEBUG_OCDAWARE", + "range": null, + "title": "Make exception and panic handlers JTAG/OCD aware", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_BROWNOUT_DET_LVL_SEL_0", + "name": "ESP32_BROWNOUT_DET_LVL_SEL_0", + "range": null, + "title": "2.43V +/- 0.05", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_BROWNOUT_DET_LVL_SEL_1", + "name": "ESP32_BROWNOUT_DET_LVL_SEL_1", + "range": null, + "title": "2.48V +/- 0.05", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_BROWNOUT_DET_LVL_SEL_2", + "name": "ESP32_BROWNOUT_DET_LVL_SEL_2", + "range": null, + "title": "2.58V +/- 0.05", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_BROWNOUT_DET_LVL_SEL_3", + "name": "ESP32_BROWNOUT_DET_LVL_SEL_3", + "range": null, + "title": "2.62V +/- 0.05", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_BROWNOUT_DET_LVL_SEL_4", + "name": "ESP32_BROWNOUT_DET_LVL_SEL_4", + "range": null, + "title": "2.67V +/- 0.05", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_BROWNOUT_DET_LVL_SEL_5", + "name": "ESP32_BROWNOUT_DET_LVL_SEL_5", + "range": null, + "title": "2.70V +/- 0.05", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_BROWNOUT_DET_LVL_SEL_6", + "name": "ESP32_BROWNOUT_DET_LVL_SEL_6", + "range": null, + "title": "2.77V +/- 0.05", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_BROWNOUT_DET_LVL_SEL_7", + "name": "ESP32_BROWNOUT_DET_LVL_SEL_7", + "range": null, + "title": "2.80V +/- 0.05", + "type": "bool" + } + ], + "depends_on": "ESP32_BROWNOUT_DET", + "help": "The brownout detector will reset the chip when the supply voltage is approximately\nbelow this level. Note that there may be some variation of brownout voltage level\nbetween each ESP32 chip.\n\n#The voltage levels here are estimates, more work needs to be done to figure out the exact voltages\n#of the brownout threshold levels.", + "id": "component-config-esp32-specific-hardware-brownout-detect-reset-brownout-voltage-level", + "name": "ESP32_BROWNOUT_DET_LVL_SEL", + "title": "Brownout voltage level", + "type": "choice" + } + ], + "depends_on": null, + "help": "The ESP32 has a built-in brownout detector which can detect if the voltage is lower than\na specific value. If this happens, it will reset the chip in order to prevent unintended\nbehaviour.", + "id": "ESP32_BROWNOUT_DET", + "name": "ESP32_BROWNOUT_DET", + "range": null, + "title": "Hardware brownout detect & reset", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_BROWNOUT_DET_LVL", + "name": "ESP32_BROWNOUT_DET_LVL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "ESP32_BROWNOUT_DET", + "help": "When brownout reset occurs, reduce PHY TX power to keep the code running\n\n# Note about the use of \"FRC1\" name: currently FRC1 timer is not used for\n# high resolution timekeeping anymore. Instead the esp_timer API is used.\n# FRC1 name in the option name is kept for compatibility.", + "id": "ESP32_REDUCE_PHY_TX_POWER", + "name": "ESP32_REDUCE_PHY_TX_POWER", + "range": null, + "title": "Reduce PHY TX power when brownout reset", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_TIME_SYSCALL_USE_RTC_FRC1", + "name": "ESP32_TIME_SYSCALL_USE_RTC_FRC1", + "range": null, + "title": "RTC and high-resolution timer", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_TIME_SYSCALL_USE_RTC", + "name": "ESP32_TIME_SYSCALL_USE_RTC", + "range": null, + "title": "RTC", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_TIME_SYSCALL_USE_FRC1", + "name": "ESP32_TIME_SYSCALL_USE_FRC1", + "range": null, + "title": "High-resolution timer", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_TIME_SYSCALL_USE_NONE", + "name": "ESP32_TIME_SYSCALL_USE_NONE", + "range": null, + "title": "None", + "type": "bool" + } + ], + "depends_on": null, + "help": "This setting defines which hardware timers are used to\nimplement 'gettimeofday' and 'time' functions in C library.\n\n- If both high-resolution and RTC timers are used, timekeeping will\n continue in deep sleep. Time will be reported at 1 microsecond\n resolution. This is the default, and the recommended option.\n- If only high-resolution timer is used, gettimeofday will\n provide time at microsecond resolution.\n Time will not be preserved when going into deep sleep mode.\n- If only RTC timer is used, timekeeping will continue in\n deep sleep, but time will be measured at 6.(6) microsecond\n resolution. Also the gettimeofday function itself may take\n longer to run.\n- If no timers are used, gettimeofday and time functions\n return -1 and set errno to ENOSYS.\n- When RTC is used for timekeeping, two RTC_STORE registers are\n used to keep time in deep sleep mode.", + "id": "component-config-esp32-specific-timers-used-for-gettimeofday-function", + "name": "ESP32_TIME_SYSCALL", + "title": "Timers used for gettimeofday function", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_RTC_CLK_SRC_INT_RC", + "name": "ESP32_RTC_CLK_SRC_INT_RC", + "range": null, + "title": "Internal 150kHz RC oscillator", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_RTC_CLK_SRC_EXT_CRYS", + "name": "ESP32_RTC_CLK_SRC_EXT_CRYS", + "range": null, + "title": "External 32kHz crystal", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_RTC_CLK_SRC_EXT_OSC", + "name": "ESP32_RTC_CLK_SRC_EXT_OSC", + "range": null, + "title": "External 32kHz oscillator at 32K_XP pin", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_RTC_CLK_SRC_INT_8MD256", + "name": "ESP32_RTC_CLK_SRC_INT_8MD256", + "range": null, + "title": "Internal 8.5MHz oscillator, divided by 256 (~33kHz)", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose which clock is used as RTC clock source.\n\n- \"Internal 150kHz oscillator\" option provides lowest deep sleep current\n consumption, and does not require extra external components. However\n frequency stability with respect to temperature is poor, so time may\n drift in deep/light sleep modes.\n- \"External 32kHz crystal\" provides better frequency stability, at the\n expense of slightly higher (1uA) deep sleep current consumption.\n- \"External 32kHz oscillator\" allows using 32kHz clock generated by an\n external circuit. In this case, external clock signal must be connected\n to 32K_XP pin. Amplitude should be <1.2V in case of sine wave signal,\n and <1V in case of square wave signal. Common mode voltage should be\n 0.1 < Vcm < 0.5Vamp, where Vamp is the signal amplitude.\n Additionally, 1nF capacitor must be connected between 32K_XN pin and\n ground. 32K_XN pin can not be used as a GPIO in this case.\n- \"Internal 8.5MHz oscillator divided by 256\" option results in higher\n deep sleep current (by 5uA) but has better frequency stability than\n the internal 150kHz oscillator. It does not require external components.", + "id": "component-config-esp32-specific-rtc-clock-source", + "name": "ESP32_RTC_CLK_SRC", + "title": "RTC clock source", + "type": "choice" + }, + { + "children": [], + "depends_on": "ESP32_RTC_CLK_SRC_EXT_CRYS", + "help": "Choose which additional current is used for rtc external crystal.\n\n- With some 32kHz crystal configurations, the X32N and X32P pins may not\n have enough drive strength to keep the crystal oscillating during deep sleep.\n If this option is enabled, additional current from touchpad 9 is provided\n internally to drive the 32kHz crystal. If this option is enabled, deep sleep current\n is slightly higher (4-5uA) and the touchpad and ULP wakeup sources are not available.", + "id": "ESP32_RTC_EXT_CRYST_ADDIT_CURRENT", + "name": "ESP32_RTC_EXT_CRYST_ADDIT_CURRENT", + "range": null, + "title": "Additional current for external 32kHz crystal", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "When the startup code initializes RTC_SLOW_CLK, it can perform\ncalibration by comparing the RTC_SLOW_CLK frequency with main XTAL\nfrequency. This option sets the number of RTC_SLOW_CLK cycles measured\nby the calibration routine. Higher numbers increase calibration\nprecision, which may be important for applications which spend a lot of\ntime in deep sleep. Lower numbers reduce startup time.\n\nWhen this option is set to 0, clock calibration will not be performed at\nstartup, and approximate clock frequencies will be assumed:\n\n- 150000 Hz if internal RC oscillator is used as clock source. For this use value 1024.\n- 32768 Hz if the 32k crystal oscillator is used. For this use value 3000 or more.\n In case more value will help improve the definition of the launch of the crystal.\n If the crystal could not start, it will be switched to internal RC.", + "id": "ESP32_RTC_CLK_CAL_CYCLES", + "name": "ESP32_RTC_CLK_CAL_CYCLES", + "range": [ + 0, + 32766 + ], + "title": "Number of cycles for RTC_SLOW_CLK calibration", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP32_RTC_CLK_SRC_EXT_CRYS", + "help": "To reduce the startup time of an external RTC crystal,\nwe bootstrap it with a 32kHz square wave for a fixed number of cycles.\nSetting 0 will disable bootstrapping (if disabled, the crystal may take\nlonger to start up or fail to oscillate under some conditions).\n\nIf this value is too high, a faulty crystal may initially start and then fail.\nIf this value is too low, an otherwise good crystal may not start.\n\nTo accurately determine if the crystal has started,\nset a larger \"Number of cycles for RTC_SLOW_CLK calibration\" (about 3000).", + "id": "ESP32_RTC_XTAL_BOOTSTRAP_CYCLES", + "name": "ESP32_RTC_XTAL_BOOTSTRAP_CYCLES", + "range": null, + "title": "Bootstrap cycles for external 32kHz crystal", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "When ESP32 exits deep sleep, the CPU and the flash chip are powered on\nat the same time. CPU will run deep sleep stub first, and then\nproceed to load code from flash. Some flash chips need sufficient\ntime to pass between power on and first read operation. By default,\nwithout any extra delay, this time is approximately 900us, although\nsome flash chip types need more than that.\n\nBy default extra delay is set to 2000us. When optimizing startup time\nfor applications which require it, this value may be reduced.\n\nIf you are seeing \"flash read err, 1000\" message printed to the\nconsole after deep sleep reset, try increasing this value.", + "id": "ESP32_DEEP_SLEEP_WAKEUP_DELAY", + "name": "ESP32_DEEP_SLEEP_WAKEUP_DELAY", + "range": [ + 0, + 5000 + ], + "title": "Extra delay in deep sleep wake stub (in us)", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_XTAL_FREQ_40", + "name": "ESP32_XTAL_FREQ_40", + "range": null, + "title": "40 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_XTAL_FREQ_26", + "name": "ESP32_XTAL_FREQ_26", + "range": null, + "title": "26 MHz", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_XTAL_FREQ_AUTO", + "name": "ESP32_XTAL_FREQ_AUTO", + "range": null, + "title": "Autodetect", + "type": "bool" + } + ], + "depends_on": null, + "help": "ESP32 currently supports the following XTAL frequencies:\n\n- 26 MHz\n- 40 MHz\n\nStartup code can automatically estimate XTAL frequency. This feature\nuses the internal 8MHz oscillator as a reference. Because the internal\noscillator frequency is temperature dependent, it is not recommended\nto use automatic XTAL frequency detection in applications which need\nto work at high ambient temperatures and use high-temperature\nqualified chips and modules.", + "id": "component-config-esp32-specific-main-xtal-frequency", + "name": "ESP32_XTAL_FREQ_SEL", + "title": "Main XTAL frequency", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_XTAL_FREQ", + "name": "ESP32_XTAL_FREQ", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "If set, the first time the app boots it will disable the BASIC ROM Console\npermanently (by burning an eFuse).\n\nOtherwise, the BASIC ROM Console starts on reset if no valid bootloader is\nread from the flash.\n\n(Enabling secure boot also disables the BASIC ROM Console by default.)", + "id": "ESP32_DISABLE_BASIC_ROM_CONSOLE", + "name": "ESP32_DISABLE_BASIC_ROM_CONSOLE", + "range": null, + "title": "Permanently disable BASIC ROM Console", + "type": "bool" + }, + { + "children": [], + "depends_on": "!BT_ENABLED", + "help": "If enabled, this disables the linking of binary libraries in the application build. Note\nthat after enabling this Wi-Fi/Bluetooth will not work.", + "id": "ESP32_NO_BLOBS", + "name": "ESP32_NO_BLOBS", + "range": null, + "title": "No Binary Blobs", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Bootloaders before IDF v2.1 did less initialisation of the\nsystem clock. This setting needs to be enabled to build an app\nwhich can be booted by these older bootloaders.\n\nIf this setting is enabled, the app can be booted by any bootloader\nfrom IDF v1.0 up to the current version.\n\nIf this setting is disabled, the app can only be booted by bootloaders\nfrom IDF v2.1 or newer.\n\nEnabling this setting adds approximately 1KB to the app's IRAM usage.", + "id": "ESP32_COMPATIBLE_PRE_V2_1_BOOTLOADERS", + "name": "ESP32_COMPATIBLE_PRE_V2_1_BOOTLOADERS", + "range": null, + "title": "App compatible with bootloaders before IDF v2.1", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_APP_INIT_CLK", + "name": "ESP32_APP_INIT_CLK", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "FREERTOS_UNICORE", + "help": "This option allows to place .rtc_data and .rtc_rodata sections into\nRTC fast memory segment to free the slow memory region for ULP programs.\nThis option depends on the CONFIG_FREERTOS_UNICORE option because RTC fast memory\ncan be accessed only by PRO_CPU core.", + "id": "ESP32_RTCDATA_IN_FAST_MEM", + "name": "ESP32_RTCDATA_IN_FAST_MEM", + "range": null, + "title": "Place RTC_DATA_ATTR and RTC_RODATA_ATTR variables into RTC fast memory segment", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP32_USE_FIXED_STATIC_RAM_SIZE", + "help": "RAM size dedicated for static variables (.data & .bss sections).\nPlease note that the actual length will be reduced by BT_RESERVE_DRAM if Bluetooth\ncontroller is enabled.", + "id": "ESP32_FIXED_STATIC_RAM_SIZE", + "name": "ESP32_FIXED_STATIC_RAM_SIZE", + "range": null, + "title": "Fixed Static RAM size", + "type": "hex" + } + ], + "depends_on": null, + "help": "If this option is disabled, the DRAM part of the heap starts right after the .bss section,\nwithin the dram0_0 region. As a result, adding or removing some static variables\nwill change the available heap size.\n\nIf this option is enabled, the DRAM part of the heap starts right after the dram0_0 region,\nwhere its length is set with ESP32_FIXED_STATIC_RAM_SIZE", + "id": "ESP32_USE_FIXED_STATIC_RAM_SIZE", + "name": "ESP32_USE_FIXED_STATIC_RAM_SIZE", + "range": null, + "title": "Use fixed static RAM size", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "To prevent interrupting DPORT workarounds,\nneed to disable interrupt with a maximum used level in the system.", + "id": "ESP32_DPORT_DIS_INTERRUPT_LVL", + "name": "ESP32_DPORT_DIS_INTERRUPT_LVL", + "range": null, + "title": "Disable the interrupt level for the DPORT workarounds", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-esp32-specific", + "title": "ESP32-specific", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "PM_ENABLE", + "help": "If enabled, startup code configures dynamic frequency scaling.\nMax CPU frequency is set to CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ setting,\nmin frequency is set to XTAL frequency.\nIf disabled, DFS will not be active until the application\nconfigures it using esp_pm_configure function.", + "id": "PM_DFS_INIT_AUTO", + "name": "PM_DFS_INIT_AUTO", + "range": null, + "title": "Enable dynamic frequency scaling (DFS) at startup", + "type": "bool" + }, + { + "children": [], + "depends_on": "PM_ENABLE && ESP_TIMER_IMPL_FRC2 && (ESP32_TIME_SYSCALL_USE_RTC || ESP32_TIME_SYSCALL_USE_RTC_FRC1)", + "help": "When APB clock frequency changes, high-resolution timer (esp_timer)\nscale and base value need to be adjusted. Each adjustment may cause\nsmall error, and over time such small errors may cause time drift.\nIf this option is enabled, RTC timer will be used as a reference to\ncompensate for the drift.\nIt is recommended that this option is only used if 32k XTAL is selected\nas RTC clock source.", + "id": "PM_USE_RTC_TIMER_REF", + "name": "PM_USE_RTC_TIMER_REF", + "range": null, + "title": "Use RTC timer to prevent time drift (EXPERIMENTAL)", + "type": "bool" + }, + { + "children": [], + "depends_on": "PM_ENABLE", + "help": "If enabled, esp_pm_* functions will keep track of the amount of time\neach of the power management locks has been held, and esp_pm_dump_locks\nfunction will print this information.\nThis feature can be used to analyze which locks are preventing the chip\nfrom going into a lower power state, and see what time the chip spends\nin each power saving mode. This feature does incur some run-time\noverhead, so should typically be disabled in production builds.", + "id": "PM_PROFILING", + "name": "PM_PROFILING", + "range": null, + "title": "Enable profiling counters for PM locks", + "type": "bool" + }, + { + "children": [], + "depends_on": "PM_ENABLE", + "help": "If enabled, some GPIOs will be used to signal events such as RTOS ticks,\nfrequency switching, entry/exit from idle state. Refer to pm_trace.c\nfile for the list of GPIOs.\nThis feature is intended to be used when analyzing/debugging behavior\nof power management implementation, and should be kept disabled in\napplications.", + "id": "PM_TRACE", + "name": "PM_TRACE", + "range": null, + "title": "Enable debug tracing of PM using GPIOs", + "type": "bool" + } + ], + "depends_on": null, + "help": "If enabled, application is compiled with support for power management.\nThis option has run-time overhead (increased interrupt latency,\nlonger time to enter idle state), and it also reduces accuracy of\nRTOS ticks and timers used for timekeeping.\nEnable this option if application uses power management APIs.", + "id": "PM_ENABLE", + "name": "PM_ENABLE", + "range": null, + "title": "Support for power management", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-power-management", + "title": "Power Management", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Some ESP32s have Two Point calibration values burned into eFuse BLOCK3.\nThis option will allow the ADC calibration component to characterize the\nADC-Voltage curve using Two Point values if they are available.", + "id": "ADC_CAL_EFUSE_TP_ENABLE", + "name": "ADC_CAL_EFUSE_TP_ENABLE", + "range": null, + "title": "Use Two Point Values", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Some ESP32s have Vref burned into eFuse BLOCK0. This option will allow\nthe ADC calibration component to characterize the ADC-Voltage curve using\neFuse Vref if it is available.", + "id": "ADC_CAL_EFUSE_VREF_ENABLE", + "name": "ADC_CAL_EFUSE_VREF_ENABLE", + "range": null, + "title": "Use eFuse Vref", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This option will allow the ADC calibration component to use Lookup Tables\nto correct for non-linear behavior in 11db attenuation. Other attenuations\ndo not exhibit non-linear behavior hence will not be affected by this option.", + "id": "ADC_CAL_LUT_ENABLE", + "name": "ADC_CAL_LUT_ENABLE", + "range": null, + "title": "Use Lookup Tables", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-adc-calibration", + "title": "ADC-Calibration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Functions esp_err_to_name() and esp_err_to_name_r() return string representations of error codes from a\npre-generated lookup table. This option can be used to turn off the use of the look-up table in order to\nsave memory but this comes at the price of sacrificing distinguishable (meaningful) output string\nrepresentations.", + "id": "ESP_ERR_TO_NAME_LOOKUP", + "name": "ESP_ERR_TO_NAME_LOOKUP", + "range": null, + "title": "Enable lookup of error code strings", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Config system event queue size in different application.", + "id": "ESP_SYSTEM_EVENT_QUEUE_SIZE", + "name": "ESP_SYSTEM_EVENT_QUEUE_SIZE", + "range": null, + "title": "System event queue size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Config system event task stack size in different application.", + "id": "ESP_SYSTEM_EVENT_TASK_STACK_SIZE", + "name": "ESP_SYSTEM_EVENT_TASK_STACK_SIZE", + "range": null, + "title": "Event loop task stack size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the \"main task\" stack size. This is the stack of the task\nwhich calls app_main(). If app_main() returns then this task is deleted\nand its stack memory is freed.", + "id": "ESP_MAIN_TASK_STACK_SIZE", + "name": "ESP_MAIN_TASK_STACK_SIZE", + "range": null, + "title": "Main task stack size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the IPC tasks stack size. One IPC task runs on each core\n(in dual core mode), and allows for cross-core function calls.\n\nSee IPC documentation for more details.\n\nThe default stack size should be enough for most common use cases.\nIt can be shrunk if you are sure that you do not use any custom\nIPC functionality.", + "id": "ESP_IPC_TASK_STACK_SIZE", + "name": "ESP_IPC_TASK_STACK_SIZE", + "range": [ + 512, + 65536 + ], + "title": "Inter-Processor Call (IPC) task stack size", + "type": "int" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE", + "help": "If this option is not enabled then the IPC task will keep behavior\nsame as prior to that of ESP-IDF v4.0, and hence IPC task will run\nat (configMAX_PRIORITIES - 1) priority.", + "id": "ESP_IPC_USES_CALLERS_PRIORITY", + "name": "ESP_IPC_USES_CALLERS_PRIORITY", + "range": null, + "title": "IPC runs at caller's priority", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Minimal value of size, in bytes, accepted to execute a expression\nwith shared stack.", + "id": "ESP_MINIMAL_SHARED_STACK_SIZE", + "name": "ESP_MINIMAL_SHARED_STACK_SIZE", + "range": null, + "title": "Minimal allowed size for shared stack", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CONSOLE_UART_DEFAULT", + "name": "ESP_CONSOLE_UART_DEFAULT", + "range": null, + "title": "Default: UART0, TX=GPIO1, RX=GPIO3", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CONSOLE_UART_CUSTOM", + "name": "ESP_CONSOLE_UART_CUSTOM", + "range": null, + "title": "Custom", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CONSOLE_UART_NONE", + "name": "ESP_CONSOLE_UART_NONE", + "range": null, + "title": "None", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select whether to use UART for console output (through stdout and stderr).\n\n- Default is to use UART0 on pins GPIO1(TX) and GPIO3(RX).\n- If \"Custom\" is selected, UART0 or UART1 can be chosen,\n and any pins can be selected.\n- If \"None\" is selected, there will be no console output on any UART, except\n for initial output from ROM bootloader. This output can be further suppressed by\n bootstrapping GPIO13 pin to low logic level.", + "id": "component-config-common-esp-related-uart-for-console-output", + "name": "ESP_CONSOLE_UART", + "title": "UART for console output", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CONSOLE_UART_CUSTOM_NUM_0", + "name": "ESP_CONSOLE_UART_CUSTOM_NUM_0", + "range": null, + "title": "UART0", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP_CONSOLE_UART_CUSTOM_NUM_1", + "name": "ESP_CONSOLE_UART_CUSTOM_NUM_1", + "range": null, + "title": "UART1", + "type": "bool" + } + ], + "depends_on": "ESP_CONSOLE_UART_CUSTOM", + "help": "Due of a ROM bug, UART2 is not supported for console output\nvia ets_printf.", + "id": "component-config-common-esp-related-uart-peripheral-to-use-for-console-output-0-1-", + "name": "ESP_CONSOLE_UART_NUM", + "title": "UART peripheral to use for console output (0-1)", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_CONSOLE_UART_NUM", + "name": "ESP_CONSOLE_UART_NUM", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_UART_CUSTOM", + "help": null, + "id": "ESP_CONSOLE_UART_TX_GPIO", + "name": "ESP_CONSOLE_UART_TX_GPIO", + "range": null, + "title": "UART TX on GPIO#", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_CONSOLE_UART_CUSTOM", + "help": null, + "id": "ESP_CONSOLE_UART_RX_GPIO", + "name": "ESP_CONSOLE_UART_RX_GPIO", + "range": null, + "title": "UART RX on GPIO#", + "type": "int" + }, + { + "children": [], + "depends_on": "!ESP_CONSOLE_UART_NONE", + "help": null, + "id": "ESP_CONSOLE_UART_BAUDRATE", + "name": "ESP_CONSOLE_UART_BAUDRATE", + "range": [ + 1200, + 4000000 + ], + "title": "UART console baud rate", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_INT_WDT", + "help": "The timeout of the watchdog, in miliseconds. Make this higher than the FreeRTOS tick rate.", + "id": "ESP_INT_WDT_TIMEOUT_MS", + "name": "ESP_INT_WDT_TIMEOUT_MS", + "range": [ + 10, + 10000 + ], + "title": "Interrupt watchdog timeout (ms)", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_INT_WDT && !FREERTOS_UNICORE", + "help": "Also detect if interrupts on CPU 1 are disabled for too long.", + "id": "ESP_INT_WDT_CHECK_CPU1", + "name": "ESP_INT_WDT_CHECK_CPU1", + "range": null, + "title": "Also watch CPU1 tick interrupt", + "type": "bool" + } + ], + "depends_on": null, + "help": "This watchdog timer can detect if the FreeRTOS tick interrupt has not been called for a certain time,\neither because a task turned off interrupts and did not turn them on for a long time, or because an\ninterrupt handler did not return. It will try to invoke the panic handler first and failing that\nreset the SoC.", + "id": "ESP_INT_WDT", + "name": "ESP_INT_WDT", + "range": null, + "title": "Interrupt watchdog", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_TASK_WDT", + "help": "If this option is enabled, the Task Watchdog Timer will be configured to\ntrigger the panic handler when it times out. This can also be configured\nat run time (see Task Watchdog Timer API Reference)", + "id": "ESP_TASK_WDT_PANIC", + "name": "ESP_TASK_WDT_PANIC", + "range": null, + "title": "Invoke panic handler on Task Watchdog timeout", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_TASK_WDT", + "help": "Timeout period configuration for the Task Watchdog Timer in seconds.\nThis is also configurable at run time (see Task Watchdog Timer API Reference)", + "id": "ESP_TASK_WDT_TIMEOUT_S", + "name": "ESP_TASK_WDT_TIMEOUT_S", + "range": [ + 1, + 60 + ], + "title": "Task Watchdog timeout period (seconds)", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP_TASK_WDT", + "help": "If this option is enabled, the Task Watchdog Timer will watch the CPU0\nIdle Task. Having the Task Watchdog watch the Idle Task allows for detection\nof CPU starvation as the Idle Task not being called is usually a symptom of\nCPU starvation. Starvation of the Idle Task is detrimental as FreeRTOS household\ntasks depend on the Idle Task getting some runtime every now and then.", + "id": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0", + "name": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0", + "range": null, + "title": "Watch CPU0 Idle Task", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP_TASK_WDT && !FREERTOS_UNICORE", + "help": "If this option is enabled, the Task Wtachdog Timer will wach the CPU1\nIdle Task.", + "id": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1", + "name": "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1", + "range": null, + "title": "Watch CPU1 Idle Task", + "type": "bool" + } + ], + "depends_on": null, + "help": "The Task Watchdog Timer can be used to make sure individual tasks are still\nrunning. Enabling this option will cause the Task Watchdog Timer to be\ninitialized automatically at startup. The Task Watchdog timer can be\ninitialized after startup as well (see Task Watchdog Timer API Reference)", + "id": "ESP_TASK_WDT", + "name": "ESP_TASK_WDT", + "range": null, + "title": "Initialize Task Watchdog Timer on startup", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "help": "If this option is disabled (default), the panic handler code is placed in flash not IRAM.\nThis means that if ESP-IDF crashes while flash cache is disabled, the panic handler will\nautomatically re-enable flash cache before running GDB Stub or Core Dump. This adds some minor\nrisk, if the flash cache status is also corrupted during the crash.\n\nIf this option is enabled, the panic handler code is placed in IRAM. This allows the panic\nhandler to run without needing to re-enable cache first. This may be necessary to debug some\ncomplex issues with crashes while flash cache is disabled (for example, when writing to\nSPI flash.)", + "id": "ESP_PANIC_HANDLER_IRAM", + "name": "ESP_PANIC_HANDLER_IRAM", + "range": null, + "title": "Place panic handler code in IRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ESP32_TRAX && !ESP32S2_TRAX", + "help": "Debug stubs are used by OpenOCD to execute pre-compiled onboard code\nwhich does some useful debugging stuff, e.g. GCOV data dump.", + "id": "ESP_DEBUG_STUBS_ENABLE", + "name": "ESP_DEBUG_STUBS_ENABLE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_WIFI_STA", + "name": "ESP_MAC_ADDR_UNIVERSE_WIFI_STA", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_WIFI_AP", + "name": "ESP_MAC_ADDR_UNIVERSE_WIFI_AP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_BT", + "name": "ESP_MAC_ADDR_UNIVERSE_BT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_MAC_ADDR_UNIVERSE_ETH", + "name": "ESP_MAC_ADDR_UNIVERSE_ETH", + "range": null, + "title": null, + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-common-esp-related", + "title": "Common ESP-related", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ETH_ENABLED", + "name": "ETH_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ETH_PHY_INTERFACE_RMII", + "name": "ETH_PHY_INTERFACE_RMII", + "range": null, + "title": "Reduced Media Independent Interface (RMII)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ETH_PHY_INTERFACE_MII", + "name": "ETH_PHY_INTERFACE_MII", + "range": null, + "title": "Media Independent Interface (MII)", + "type": "bool" + } + ], + "depends_on": "ETH_USE_ESP32_EMAC", + "help": "Select the communication interface between MAC and PHY chip.", + "id": "component-config-ethernet-support-esp32-internal-emac-controller-phy-interface", + "name": "ETH_PHY_INTERFACE", + "title": "PHY interface", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "MAC will get RMII clock from outside.\nNote that ESP32 only supports GPIO0 to input the RMII clock.", + "id": "ETH_RMII_CLK_INPUT", + "name": "ETH_RMII_CLK_INPUT", + "range": null, + "title": "Input RMII clock from external", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "ESP32 can generate RMII clock by internal APLL.\nThis clock can be routed to the external PHY device.\nESP32 supports to route the RMII clock to GPIO0/16/17.", + "id": "ETH_RMII_CLK_OUTPUT", + "name": "ETH_RMII_CLK_OUTPUT", + "range": null, + "title": "Output RMII clock from internal", + "type": "bool" + } + ], + "depends_on": "ETH_PHY_INTERFACE_RMII && ETH_USE_ESP32_EMAC", + "help": "Select external or internal RMII clock.", + "id": "component-config-ethernet-support-esp32-internal-emac-controller-rmii-clock-mode", + "name": "ETH_RMII_CLK_MODE", + "title": "RMII clock mode", + "type": "choice" + }, + { + "children": [], + "depends_on": "ETH_RMII_CLK_INPUT && ETH_USE_ESP32_EMAC", + "help": "ESP32 only supports GPIO0 to input the RMII clock.", + "id": "ETH_RMII_CLK_IN_GPIO", + "name": "ETH_RMII_CLK_IN_GPIO", + "range": [ + 0, + 0 + ], + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "ETH_RMII_CLK_OUTPUT && ETH_USE_ESP32_EMAC", + "help": "GPIO0 can be set to output a pre-divided PLL clock (test only!).\nEnabling this option will configure GPIO0 to output a 50MHz clock.\nIn fact this clock doesn't have directly relationship with EMAC peripheral.\nSometimes this clock won't work well with your PHY chip. You might need to\nadd some extra devices after GPIO0 (e.g. inverter).\nNote that outputting RMII clock on GPIO0 is an experimental practice.\nIf you want the Ethernet to work with WiFi, don't select GPIO0 output mode for stability.", + "id": "ETH_RMII_CLK_OUTPUT_GPIO0", + "name": "ETH_RMII_CLK_OUTPUT_GPIO0", + "range": null, + "title": "Output RMII clock from GPIO0 (Experimental!)", + "type": "bool" + }, + { + "children": [], + "depends_on": "!ETH_RMII_CLK_OUTPUT_GPIO0 && ETH_RMII_CLK_OUTPUT && ETH_USE_ESP32_EMAC", + "help": "Set the GPIO number to output RMII Clock.", + "id": "ETH_RMII_CLK_OUT_GPIO", + "name": "ETH_RMII_CLK_OUT_GPIO", + "range": null, + "title": "RMII clock GPIO number", + "type": "int" + }, + { + "children": [], + "depends_on": "ETH_USE_ESP32_EMAC", + "help": "Set the size of each buffer used by Ethernet MAC DMA.", + "id": "ETH_DMA_BUFFER_SIZE", + "name": "ETH_DMA_BUFFER_SIZE", + "range": [ + 256, + 1600 + ], + "title": "Ethernet DMA buffer size (Byte)", + "type": "int" + }, + { + "children": [], + "depends_on": "ETH_USE_ESP32_EMAC", + "help": "Number of DMA receive buffers. Each buffer's size is ETH_DMA_BUFFER_SIZE.\nLarger number of buffers could increase throughput somehow.", + "id": "ETH_DMA_RX_BUFFER_NUM", + "name": "ETH_DMA_RX_BUFFER_NUM", + "range": [ + 3, + 30 + ], + "title": "Amount of Ethernet DMA Rx buffers", + "type": "int" + }, + { + "children": [], + "depends_on": "ETH_USE_ESP32_EMAC", + "help": "Number of DMA transmit buffers. Each buffer's size is ETH_DMA_BUFFER_SIZE.\nLarger number of buffers could increase throughput somehow.", + "id": "ETH_DMA_TX_BUFFER_NUM", + "name": "ETH_DMA_TX_BUFFER_NUM", + "range": [ + 3, + 30 + ], + "title": "Amount of Ethernet DMA Tx buffers", + "type": "int" + } + ], + "depends_on": "IDF_TARGET_ESP32", + "help": "ESP32 integrates a 10/100M Ethernet MAC controller.", + "id": "ETH_USE_ESP32_EMAC", + "is_menuconfig": true, + "name": "ETH_USE_ESP32_EMAC", + "range": null, + "title": "Support ESP32 internal EMAC controller", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "ETH_USE_SPI_ETHERNET", + "help": "DM9051 is a fast Ethernet controller with an SPI interface.\nIt's also integrated with a 10/100M PHY and MAC.\nSelect to enable DM9051 driver.", + "id": "ETH_SPI_ETHERNET_DM9051", + "name": "ETH_SPI_ETHERNET_DM9051", + "range": null, + "title": "Use DM9051", + "type": "bool" + } + ], + "depends_on": null, + "help": "ESP-IDF can also support some SPI-Ethernet modules.", + "id": "ETH_USE_SPI_ETHERNET", + "is_menuconfig": true, + "name": "ETH_USE_SPI_ETHERNET", + "range": null, + "title": "Support SPI to Ethernet Module", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "ETH_USE_OPENETH", + "help": "Number of DMA receive buffers, each buffer is 1600 bytes.", + "id": "ETH_OPENETH_DMA_RX_BUFFER_NUM", + "name": "ETH_OPENETH_DMA_RX_BUFFER_NUM", + "range": null, + "title": "Number of Ethernet DMA Rx buffers", + "type": "int" + }, + { + "children": [], + "depends_on": "ETH_USE_OPENETH", + "help": "Number of DMA transmit buffers, each buffer is 1600 bytes.", + "id": "ETH_OPENETH_DMA_TX_BUFFER_NUM", + "name": "ETH_OPENETH_DMA_TX_BUFFER_NUM", + "range": null, + "title": "Number of Ethernet DMA Tx buffers", + "type": "int" + } + ], + "depends_on": null, + "help": "OpenCores Ethernet MAC driver can be used when an ESP-IDF application\nis executed in QEMU. This driver is not supported when running on a\nreal chip.", + "id": "ETH_USE_OPENETH", + "is_menuconfig": true, + "name": "ETH_USE_OPENETH", + "range": null, + "title": "Support OpenCores Ethernet MAC (for use with QEMU)", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-ethernet", + "title": "Ethernet", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enables collections of statistics in the event loop library such as the number of events posted\nto/recieved by an event loop, number of callbacks involved, number of events dropped to to a full event\nloop queue, run time of event handlers, and number of times/run time of each event handler.", + "id": "ESP_EVENT_LOOP_PROFILING", + "name": "ESP_EVENT_LOOP_PROFILING", + "range": null, + "title": "Enable event loop profiling", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_EVENT_POST_FROM_ISR", + "help": "Enable posting events from interrupt handlers placed in IRAM. Enabling this option places API functions\nesp_event_post and esp_event_post_to in IRAM.", + "id": "ESP_EVENT_POST_FROM_IRAM_ISR", + "name": "ESP_EVENT_POST_FROM_IRAM_ISR", + "range": null, + "title": "Support posting events from ISRs placed in IRAM", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enable posting events from interrupt handlers.", + "id": "ESP_EVENT_POST_FROM_ISR", + "name": "ESP_EVENT_POST_FROM_ISR", + "range": null, + "title": "Support posting events from ISRs", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-event-loop-library", + "title": "Event Loop Library", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP_GDBSTUB_ENABLED", + "name": "ESP_GDBSTUB_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP_GDBSTUB_SUPPORT_TASKS", + "help": "Set the number of tasks which GDB Stub will support.", + "id": "ESP_GDBSTUB_MAX_TASKS", + "name": "ESP_GDBSTUB_MAX_TASKS", + "range": null, + "title": "Maximum number of tasks supported by GDB Stub", + "type": "int" + } + ], + "depends_on": "ESP_GDBSTUB_ENABLED", + "help": "If enabled, GDBStub can supply the list of FreeRTOS tasks to GDB.\nThread list can be queried from GDB using 'info threads' command.\nNote that if GDB task lists were corrupted, this feature may not work.\nIf GDBStub fails, try disabling this feature.", + "id": "ESP_GDBSTUB_SUPPORT_TASKS", + "name": "ESP_GDBSTUB_SUPPORT_TASKS", + "range": null, + "title": "Enable listing FreeRTOS tasks through GDB Stub", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-gdb-stub", + "title": "GDB Stub", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "This option will enable https protocol by linking mbedtls library and initializing SSL transport", + "id": "ESP_HTTP_CLIENT_ENABLE_HTTPS", + "name": "ESP_HTTP_CLIENT_ENABLE_HTTPS", + "range": null, + "title": "Enable https", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This option will enable HTTP Basic Authentication. It is disabled by default as Basic\nauth uses unencrypted encoding, so it introduces a vulnerability when not using TLS", + "id": "ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH", + "name": "ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH", + "range": null, + "title": "Enable HTTP Basic Authentication", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-http-client", + "title": "ESP HTTP client", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "This sets the maximum supported size of headers section in HTTP request packet to be processed by the\nserver", + "id": "HTTPD_MAX_REQ_HDR_LEN", + "name": "HTTPD_MAX_REQ_HDR_LEN", + "range": null, + "title": "Max HTTP Request Header Length", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "This sets the maximum supported size of HTTP request URI to be processed by the server", + "id": "HTTPD_MAX_URI_LEN", + "name": "HTTPD_MAX_URI_LEN", + "range": null, + "title": "Max HTTP URI Length", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Using TCP_NODEALY socket option ensures that HTTP error response reaches the client before the\nunderlying socket is closed. Please note that turning this off may cause multiple test failures", + "id": "HTTPD_ERR_RESP_NO_DELAY", + "name": "HTTPD_ERR_RESP_NO_DELAY", + "range": null, + "title": "Use TCP_NODELAY socket option when sending HTTP error responses", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This sets the size of the temporary buffer used to receive and discard any remaining data that is\nreceived from the HTTP client in the request, but not processed as part of the server HTTP request\nhandler.\n\nIf the remaining data is larger than the available buffer size, the buffer will be filled in multiple\niterations. The buffer should be small enough to fit on the stack, but large enough to avoid excessive\niterations.", + "id": "HTTPD_PURGE_BUF_LEN", + "name": "HTTPD_PURGE_BUF_LEN", + "range": null, + "title": "Length of temporary buffer for purging data", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this will log discarded binary HTTP request data at Debug level.\nFor large content data this may not be desirable as it will clutter the log.", + "id": "HTTPD_LOG_PURGE_DATA", + "name": "HTTPD_LOG_PURGE_DATA", + "range": null, + "title": "Log purged content data at Debug level", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-http-server", + "title": "HTTP Server", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "It is highly recommended to keep HTTPS (along with server certificate validation) enabled.\nEnabling this option comes with potential risk of:\n- Non-encrypted communication channel with server\n- Accepting firmware upgrade image from server with fake identity", + "id": "OTA_ALLOW_HTTP", + "name": "OTA_ALLOW_HTTP", + "range": null, + "title": "Allow HTTP for OTA (WARNING: ONLY FOR TESTING PURPOSE, READ HELP)", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-https-ota", + "title": "ESP HTTPS OTA", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enable ESP HTTPS server component", + "id": "ESP_HTTPS_SERVER_ENABLE", + "name": "ESP_HTTPS_SERVER_ENABLE", + "range": null, + "title": "Enable ESP_HTTPS_SERVER component", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-https-server", + "title": "ESP HTTPS server", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "The value of 0 indicates the IP lost timer is disabled, otherwise the timer is enabled.\n\nThe IP address may be lost because of some reasons, e.g. when the station disconnects\nfrom soft-AP, or when DHCP IP renew fails etc. If the IP lost timer is enabled, it will\nbe started everytime the IP is lost. Event SYSTEM_EVENT_STA_LOST_IP will be raised if\nthe timer expires. The IP lost timer is stopped if the station get the IP again before\nthe timer expires.", + "id": "ESP_NETIF_IP_LOST_TIMER_INTERVAL", + "name": "ESP_NETIF_IP_LOST_TIMER_INTERVAL", + "range": [ + 0, + 65535 + ], + "title": "IP Address lost timer interval (seconds)", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "lwIP is a small independent implementation of the TCP/IP protocol suite.", + "id": "ESP_NETIF_TCPIP_LWIP", + "name": "ESP_NETIF_TCPIP_LWIP", + "range": null, + "title": "LwIP", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Dummy implementation of esp-netif functionality which connects driver transmit\nto receive function. This option is for testing purpose only", + "id": "ESP_NETIF_LOOPBACK", + "name": "ESP_NETIF_LOOPBACK", + "range": null, + "title": "Loopback", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose the TCP/IP Stack to work, for example, LwIP, uIP, etc.", + "id": "component-config-esp-netif-adapter-tcp-ip-stack-library", + "name": "ESP_NETIF_USE_TCPIP_STACK_LIB", + "title": "TCP/IP Stack Library", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "Backward compatible interface to tcpip_adapter is enabled by default to support\nlegacy TCP/IP stack initialisation code. Disable this option to use only esp-netif\ninterface.", + "id": "ESP_NETIF_TCPIP_ADAPTER_COMPATIBLE_LAYER", + "name": "ESP_NETIF_TCPIP_ADAPTER_COMPATIBLE_LAYER", + "range": null, + "title": "Enable backward compatible tcpip_adapter interface", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-netif-adapter", + "title": "ESP NETIF Adapter", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "If enabled, esp_timer_dump will dump information such as number of times the timer was started,\nnumber of times the timer has triggered, and the total time it took for the callback to run.\nThis option has some effect on timer performance and the amount of memory used for timer\nstorage, and should only be used for debugging/testing purposes.", + "id": "ESP_TIMER_PROFILING", + "name": "ESP_TIMER_PROFILING", + "range": null, + "title": "Enable esp_timer profiling features", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the stack size of \"timer_task\" task. This task is used\nto dispatch callbacks of timers created using ets_timer and esp_timer\nAPIs. If you are seing stack overflow errors in timer task, increase\nthis value.\n\nNote that this is not the same as FreeRTOS timer task. To configure\nFreeRTOS timer task size, see \"FreeRTOS timer task stack size\" option\nin \"FreeRTOS\" menu.", + "id": "ESP_TIMER_TASK_STACK_SIZE", + "name": "ESP_TIMER_TASK_STACK_SIZE", + "range": [ + 2048, + 65536 + ], + "title": "High-resolution timer task stack size", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && ", + "help": null, + "id": "ESP_TIMER_IMPL_FRC2", + "name": "ESP_TIMER_IMPL_FRC2", + "range": null, + "title": "FRC2 (legacy) timer", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32 && ", + "help": null, + "id": "ESP_TIMER_IMPL_TG0_LAC", + "name": "ESP_TIMER_IMPL_TG0_LAC", + "range": null, + "title": "LAC timer of Timer Group 0", + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32S2 && ", + "help": null, + "id": "ESP_TIMER_IMPL_SYSTIMER", + "name": "ESP_TIMER_IMPL_SYSTIMER", + "range": null, + "title": "SYSTIMER", + "type": "bool" + } + ], + "depends_on": null, + "help": "esp_timer APIs can be implemented using different hardware timers.\n\n- \"FRC2 (legacy)\" implementation has been used in ESP-IDF v2.x - v4.1.\n\n- \"LAC timer of Timer Group 0\" implementation is simpler, and has smaller\n run time overhead because software handling of timer overflow is not needed.\n\n- \"SYSTIMER\" implementation is similar to \"LAC timer of Timer Group 0\" but for ESP32-S2 chip.", + "id": "component-config-high-resolution-timer-esp_timer--hardware-timer-to-use-for-esp_timer", + "name": "ESP_TIMER_IMPL", + "title": "Hardware timer to use for esp_timer", + "type": "choice" + } + ], + "depends_on": null, + "id": "component-config-high-resolution-timer-esp_timer-", + "title": "High resolution timer (esp_timer)", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "BT_ENABLED", + "help": "If enabled, WiFi & Bluetooth coexistence is controlled by software rather than hardware.\nRecommended for heavy traffic scenarios. Both coexistence configuration options are\nautomatically managed, no user intervention is required.\nIf only Bluetooth is used, it is recommended to disable this option to reduce binary file\nsize.", + "id": "ESP32_WIFI_SW_COEXIST_ENABLE", + "name": "ESP32_WIFI_SW_COEXIST_ENABLE", + "range": null, + "title": "Software controls WiFi/Bluetooth coexistence", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Set the number of WiFi static RX buffers. Each buffer takes approximately 1.6KB of RAM.\nThe static rx buffers are allocated when esp_wifi_init is called, they are not freed\nuntil esp_wifi_deinit is called.\n\nWiFi hardware use these buffers to receive all 802.11 frames.\nA higher number may allow higher throughput but increases memory use. If ESP32_WIFI_AMPDU_RX_ENABLED\nis enabled, this value is recommended to set equal or bigger than ESP32_WIFI_RX_BA_WIN in order to\nachieve better throughput and compatibility with both stations and APs.", + "id": "ESP32_WIFI_STATIC_RX_BUFFER_NUM", + "name": "ESP32_WIFI_STATIC_RX_BUFFER_NUM", + "range": [ + 2, + 25 + ], + "title": "Max number of WiFi static RX buffers", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Set the number of WiFi dynamic RX buffers, 0 means unlimited RX buffers will be allocated\n(provided sufficient free RAM). The size of each dynamic RX buffer depends on the size of\nthe received data frame.\n\nFor each received data frame, the WiFi driver makes a copy to an RX buffer and then delivers\nit to the high layer TCP/IP stack. The dynamic RX buffer is freed after the higher layer has\nsuccessfully received the data frame.\n\nFor some applications, WiFi data frames may be received faster than the application can\nprocess them. In these cases we may run out of memory if RX buffer number is unlimited (0).\n\nIf a dynamic RX buffer limit is set, it should be at least the number of static RX buffers.", + "id": "ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM", + "name": "ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM", + "range": [ + 0, + 128 + ], + "title": "Max number of WiFi dynamic RX buffers", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_WIFI_STATIC_TX_BUFFER", + "name": "ESP32_WIFI_STATIC_TX_BUFFER", + "range": null, + "title": "Static", + "type": "bool" + }, + { + "children": [], + "depends_on": "!SPIRAM_USE_MALLOC && ", + "help": null, + "id": "ESP32_WIFI_DYNAMIC_TX_BUFFER", + "name": "ESP32_WIFI_DYNAMIC_TX_BUFFER", + "range": null, + "title": "Dynamic", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select type of WiFi TX buffers:\n\nIf \"Static\" is selected, WiFi TX buffers are allocated when WiFi is initialized and released\nwhen WiFi is de-initialized. The size of each static TX buffer is fixed to about 1.6KB.\n\nIf \"Dynamic\" is selected, each WiFi TX buffer is allocated as needed when a data frame is\ndelivered to the Wifi driver from the TCP/IP stack. The buffer is freed after the data frame\nhas been sent by the WiFi driver. The size of each dynamic TX buffer depends on the length\nof each data frame sent by the TCP/IP layer.\n\nIf PSRAM is enabled, \"Static\" should be selected to guarantee enough WiFi TX buffers.\nIf PSRAM is disabled, \"Dynamic\" should be selected to improve the utilization of RAM.", + "id": "component-config-wi-fi-type-of-wifi-tx-buffers", + "name": "ESP32_WIFI_TX_BUFFER", + "title": "Type of WiFi TX buffers", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_WIFI_TX_BUFFER_TYPE", + "name": "ESP32_WIFI_TX_BUFFER_TYPE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": "ESP32_WIFI_STATIC_TX_BUFFER", + "help": "Set the number of WiFi static TX buffers. Each buffer takes approximately 1.6KB of RAM.\nThe static RX buffers are allocated when esp_wifi_init() is called, they are not released\nuntil esp_wifi_deinit() is called.\n\nFor each transmitted data frame from the higher layer TCP/IP stack, the WiFi driver makes a\ncopy of it in a TX buffer. For some applications especially UDP applications, the upper\nlayer can deliver frames faster than WiFi layer can transmit. In these cases, we may run out\nof TX buffers.", + "id": "ESP32_WIFI_STATIC_TX_BUFFER_NUM", + "name": "ESP32_WIFI_STATIC_TX_BUFFER_NUM", + "range": null, + "title": "Max number of WiFi static TX buffers", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP32_WIFI_DYNAMIC_TX_BUFFER", + "help": "Set the number of WiFi dynamic TX buffers. The size of each dynamic TX buffer is not fixed,\nit depends on the size of each transmitted data frame.\n\nFor each transmitted frame from the higher layer TCP/IP stack, the WiFi driver makes a copy\nof it in a TX buffer. For some applications, especially UDP applications, the upper layer\ncan deliver frames faster than WiFi layer can transmit. In these cases, we may run out of TX\nbuffers.", + "id": "ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM", + "name": "ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM", + "range": [ + 16, + 128 + ], + "title": "Max number of WiFi dynamic TX buffers", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Select this option to enable CSI(Channel State Information) feature. CSI takes about\nCONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM KB of RAM. If CSI is not used, it is better to disable\nthis feature in order to save memory.", + "id": "ESP32_WIFI_CSI_ENABLED", + "name": "ESP32_WIFI_CSI_ENABLED", + "range": null, + "title": "WiFi CSI(Channel State Information)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP32_WIFI_AMPDU_TX_ENABLED", + "help": "Set the size of WiFi Block Ack TX window. Generally a bigger value means higher throughput but\nmore memory. Most of time we should NOT change the default value unless special reason, e.g.\ntest the maximum UDP TX throughput with iperf etc. For iperf test in shieldbox, the recommended\nvalue is 9~12.", + "id": "ESP32_WIFI_TX_BA_WIN", + "name": "ESP32_WIFI_TX_BA_WIN", + "range": [ + 2, + 32 + ], + "title": "WiFi AMPDU TX BA window size", + "type": "int" + } + ], + "depends_on": null, + "help": "Select this option to enable AMPDU TX feature", + "id": "ESP32_WIFI_AMPDU_TX_ENABLED", + "name": "ESP32_WIFI_AMPDU_TX_ENABLED", + "range": null, + "title": "WiFi AMPDU TX", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP32_WIFI_AMPDU_RX_ENABLED", + "help": "Set the size of WiFi Block Ack RX window. Generally a bigger value means higher throughput and better\ncompatibility but more memory. Most of time we should NOT change the default value unless special\nreason, e.g. test the maximum UDP RX throughput with iperf etc. For iperf test in shieldbox, the\nrecommended value is 9~12. If PSRAM is used and WiFi memory is prefered to allocat in PSRAM first,\nthe default and minimum value should be 16 to achieve better throughput and compatibility with both\nstations and APs.", + "id": "ESP32_WIFI_RX_BA_WIN", + "name": "ESP32_WIFI_RX_BA_WIN", + "range": [ + 2, + 32 + ], + "title": "WiFi AMPDU RX BA window size", + "type": "int" + } + ], + "depends_on": null, + "help": "Select this option to enable AMPDU RX feature", + "id": "ESP32_WIFI_AMPDU_RX_ENABLED", + "name": "ESP32_WIFI_AMPDU_RX_ENABLED", + "range": null, + "title": "WiFi AMPDU RX", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Select this option to enable WiFi NVS flash", + "id": "ESP32_WIFI_NVS_ENABLED", + "name": "ESP32_WIFI_NVS_ENABLED", + "range": null, + "title": "WiFi NVS flash", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_WIFI_TASK_PINNED_TO_CORE_0", + "name": "ESP32_WIFI_TASK_PINNED_TO_CORE_0", + "range": null, + "title": "Core 0", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_WIFI_TASK_PINNED_TO_CORE_1", + "name": "ESP32_WIFI_TASK_PINNED_TO_CORE_1", + "range": null, + "title": "Core 1", + "type": "bool" + } + ], + "depends_on": "!FREERTOS_UNICORE", + "help": "Pinned WiFi task to core 0 or core 1.", + "id": "component-config-wi-fi-wifi-task-core-id", + "name": "ESP32_WIFI_TASK_CORE_ID", + "title": "WiFi Task Core ID", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "ESP-MESH utilizes beacon frames to detect and resolve root node conflicts (see documentation). However the\ndefault length of a beacon frame can simultaneously hold only five root node identifier structures,\nmeaning that a root node conflict of up to five nodes can be detected at one time. In the occurence of\nmore root nodes conflict involving more than five root nodes, the conflict resolution process will detect\nfive of the root nodes, resolve the conflict, and re-detect more root nodes. This process will repeat\nuntil all root node conflicts are resolved. However this process can generally take a very long time.\n\nTo counter this situation, the beacon frame length can be increased such that more root nodes can be\ndetected simultaneously. Each additional root node will require 36 bytes and should be added ontop of the\ndefault beacon frame length of\n752 bytes. For example, if you want to detect 10 root nodes simultaneously, you need to set the beacon\nframe length as\n932 (752+36*5).\n\nSetting a longer beacon length also assists with debugging as the conflicting root nodes can be identified\nmore quickly.", + "id": "ESP32_WIFI_SOFTAP_BEACON_MAX_LEN", + "name": "ESP32_WIFI_SOFTAP_BEACON_MAX_LEN", + "range": [ + 752, + 1256 + ], + "title": "Max length of WiFi SoftAP Beacon", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Set the number of WiFi management short buffer.", + "id": "ESP32_WIFI_MGMT_SBUF_NUM", + "name": "ESP32_WIFI_MGMT_SBUF_NUM", + "range": [ + 6, + 32 + ], + "title": "WiFi mgmt short buffer number", + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_WIFI_DEBUG_LOG_DEBUG", + "name": "ESP32_WIFI_DEBUG_LOG_DEBUG", + "range": null, + "title": "WiFi Debug Log Debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_WIFI_DEBUG_LOG_VERBOSE", + "name": "ESP32_WIFI_DEBUG_LOG_VERBOSE", + "range": null, + "title": "WiFi Debug Log Verbose", + "type": "bool" + } + ], + "depends_on": "ESP32_WIFI_DEBUG_LOG_ENABLE", + "help": "The WiFi log is divided into the following levels: ERROR,WARNING,INFO,DEBUG,VERBOSE.\nThe ERROR,WARNING,INFO levels are enabled by default, and the DEBUG,VERBOSE levels can be enabled here.", + "id": "component-config-wi-fi-enable-wifi-debug-log-wifi-debug-log-level", + "name": "ESP32_WIFI_DEBUG_LOG_LEVEL", + "title": "WiFi debug log level", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_WIFI_DEBUG_LOG_MODULE_ALL", + "name": "ESP32_WIFI_DEBUG_LOG_MODULE_ALL", + "range": null, + "title": "WiFi Debug Log Module All", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_WIFI_DEBUG_LOG_MODULE_WIFI", + "name": "ESP32_WIFI_DEBUG_LOG_MODULE_WIFI", + "range": null, + "title": "WiFi Debug Log Module WiFi", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_WIFI_DEBUG_LOG_MODULE_COEX", + "name": "ESP32_WIFI_DEBUG_LOG_MODULE_COEX", + "range": null, + "title": "WiFi Debug Log Module Coex", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_WIFI_DEBUG_LOG_MODULE_MESH", + "name": "ESP32_WIFI_DEBUG_LOG_MODULE_MESH", + "range": null, + "title": "WiFi Debug Log Module Mesh", + "type": "bool" + } + ], + "depends_on": "ESP32_WIFI_DEBUG_LOG_ENABLE", + "help": "The WiFi log module contains three parts: WIFI,COEX,MESH. The WIFI module indicates the logs related to\nWiFi, the COEX module indicates the logs related to WiFi and BT(or BLE) coexist, the MESH module indicates\nthe logs related to Mesh. When ESP32_WIFI_LOG_MODULE_ALL is enabled, all modules are selected.", + "id": "component-config-wi-fi-enable-wifi-debug-log-wifi-debug-log-module", + "name": "ESP32_WIFI_DEBUG_LOG_MODULE", + "title": "WiFi debug log module", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "ESP32_WIFI_DEBUG_LOG_SUBMODULE", + "help": "When this option is enabled, all debug submodules are selected.", + "id": "ESP32_WIFI_DEBUG_LOG_SUBMODULE_ALL", + "name": "ESP32_WIFI_DEBUG_LOG_SUBMODULE_ALL", + "range": null, + "title": "WiFi Debug Log Submodule All", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP32_WIFI_DEBUG_LOG_SUBMODULE && !ESP32_WIFI_DEBUG_LOG_SUBMODULE_ALL", + "help": null, + "id": "ESP32_WIFI_DEBUG_LOG_SUBMODULE_INIT", + "name": "ESP32_WIFI_DEBUG_LOG_SUBMODULE_INIT", + "range": null, + "title": "WiFi Debug Log Submodule Init", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP32_WIFI_DEBUG_LOG_SUBMODULE && !ESP32_WIFI_DEBUG_LOG_SUBMODULE_ALL", + "help": null, + "id": "ESP32_WIFI_DEBUG_LOG_SUBMODULE_IOCTL", + "name": "ESP32_WIFI_DEBUG_LOG_SUBMODULE_IOCTL", + "range": null, + "title": "WiFi Debug Log Submodule Ioctl", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP32_WIFI_DEBUG_LOG_SUBMODULE && !ESP32_WIFI_DEBUG_LOG_SUBMODULE_ALL", + "help": null, + "id": "ESP32_WIFI_DEBUG_LOG_SUBMODULE_CONN", + "name": "ESP32_WIFI_DEBUG_LOG_SUBMODULE_CONN", + "range": null, + "title": "WiFi Debug Log Submodule Conn", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP32_WIFI_DEBUG_LOG_SUBMODULE && !ESP32_WIFI_DEBUG_LOG_SUBMODULE_ALL", + "help": null, + "id": "ESP32_WIFI_DEBUG_LOG_SUBMODULE_SCAN", + "name": "ESP32_WIFI_DEBUG_LOG_SUBMODULE_SCAN", + "range": null, + "title": "WiFi Debug Log Submodule Scan", + "type": "bool" + } + ], + "depends_on": "ESP32_WIFI_DEBUG_LOG_ENABLE", + "help": "Enable this option to set the WiFi debug log submodule.\nCurrently the log submodule contains the following parts: INIT,IOCTL,CONN,SCAN.\nThe INIT submodule indicates the initialization process.The IOCTL submodule indicates the API calling\nprocess.\nThe CONN submodule indicates the connecting process.The SCAN submodule indicates the scaning process.", + "id": "ESP32_WIFI_DEBUG_LOG_SUBMODULE", + "name": "ESP32_WIFI_DEBUG_LOG_SUBMODULE", + "range": null, + "title": "WiFi debug log submodule", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select this option to enable WiFi debug log", + "id": "ESP32_WIFI_DEBUG_LOG_ENABLE", + "name": "ESP32_WIFI_DEBUG_LOG_ENABLE", + "range": null, + "title": "Enable WiFi debug log", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Select this option to place frequently called Wi-Fi library functions in IRAM.\nWhen this option is disabled, more than 10Kbytes of IRAM memory will be saved\nbut Wi-Fi throughput will be reduced.", + "id": "ESP32_WIFI_IRAM_OPT", + "name": "ESP32_WIFI_IRAM_OPT", + "range": null, + "title": "WiFi IRAM speed optimization", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Select this option to place frequently called Wi-Fi library RX functions in IRAM.\nWhen this option is disabled, more than 17Kbytes of IRAM memory will be saved\nbut Wi-Fi performance will be reduced.", + "id": "ESP32_WIFI_RX_IRAM_OPT", + "name": "ESP32_WIFI_RX_IRAM_OPT", + "range": null, + "title": "WiFi RX IRAM speed optimization", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Select this option to allow the device to establish a WPA3-Personal connection with eligible AP's.\nPMF (Protected Management Frames) is a prerequisite feature for a WPA3 connection, it needs to be\nexplicitly configured before attempting connection. Please refer to the Wi-Fi Driver API Guide for details.", + "id": "ESP32_WIFI_ENABLE_WPA3_SAE", + "name": "ESP32_WIFI_ENABLE_WPA3_SAE", + "range": null, + "title": "Enable WPA3-Personal", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-wi-fi", + "title": "Wi-Fi", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "help": "If this option is enabled, NVS will be initialized and calibration data will be loaded from there.\nPHY calibration will be skipped on deep sleep wakeup. If calibration data is not found, full calibration\nwill be performed and stored in NVS. Normally, only partial calibration will be performed.\nIf this option is disabled, full calibration will be performed.\n\nIf it's easy that your board calibrate bad data, choose 'n'.\nTwo cases for example, you should choose 'n':\n1.If your board is easy to be booted up with antenna disconnected.\n2.Because of your board design, each time when you do calibration, the result are too unstable.\nIf unsure, choose 'y'.", + "id": "ESP32_PHY_CALIBRATION_AND_DATA_STORAGE", + "name": "ESP32_PHY_CALIBRATION_AND_DATA_STORAGE", + "range": null, + "title": "Store phy calibration data in NVS", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If enabled, PHY init data will be loaded from a partition.\nWhen using a custom partition table, make sure that PHY data\npartition is included (type: 'data', subtype: 'phy').\nWith default partition tables, this is done automatically.\nIf PHY init data is stored in a partition, it has to be flashed there,\notherwise runtime error will occur.\n\nIf this option is not enabled, PHY init data will be embedded\ninto the application binary.\n\nIf unsure, choose 'n'.", + "id": "ESP32_PHY_INIT_DATA_IN_PARTITION", + "name": "ESP32_PHY_INIT_DATA_IN_PARTITION", + "range": null, + "title": "Use a partition to store PHY init data", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Set maximum transmit power for WiFi radio. Actual transmit power for high\ndata rates may be lower than this setting.", + "id": "ESP32_PHY_MAX_WIFI_TX_POWER", + "name": "ESP32_PHY_MAX_WIFI_TX_POWER", + "range": [ + 10, + 20 + ], + "title": "Max WiFi TX power (dBm)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_PHY_MAX_TX_POWER", + "name": "ESP32_PHY_MAX_TX_POWER", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-phy", + "title": "PHY", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_ENABLE_COREDUMP_TO_FLASH", + "name": "ESP32_ENABLE_COREDUMP_TO_FLASH", + "range": null, + "title": "Flash", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_ENABLE_COREDUMP_TO_UART", + "name": "ESP32_ENABLE_COREDUMP_TO_UART", + "range": null, + "title": "UART", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_ENABLE_COREDUMP_TO_NONE", + "name": "ESP32_ENABLE_COREDUMP_TO_NONE", + "range": null, + "title": "None", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select place to store core dump: flash, uart or none (to disable core dumps generation).\n\nIf core dump is configured to be stored in flash and custom partition table is used add\ncorresponding entry to your CSV. For examples, please see predefined partition table CSV descriptions\nin the components/partition_table directory.", + "id": "component-config-core-dump-data-destination", + "name": "ESP32_COREDUMP_TO_FLASH_OR_UART", + "title": "Data destination", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_COREDUMP_DATA_FORMAT_BIN", + "name": "ESP32_COREDUMP_DATA_FORMAT_BIN", + "range": null, + "title": "Binary format", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_COREDUMP_DATA_FORMAT_ELF", + "name": "ESP32_COREDUMP_DATA_FORMAT_ELF", + "range": null, + "title": "ELF format", + "type": "bool" + } + ], + "depends_on": "!ESP32_ENABLE_COREDUMP_TO_NONE", + "help": "Select the data format for core dump.", + "id": "component-config-core-dump-core-dump-data-format", + "name": "ESP32_COREDUMP_DATA_FORMAT", + "title": "Core dump data format", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_COREDUMP_CHECKSUM_CRC32", + "name": "ESP32_COREDUMP_CHECKSUM_CRC32", + "range": null, + "title": "Use CRC32 for integrity verification", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP32_COREDUMP_DATA_FORMAT_ELF && ", + "help": null, + "id": "ESP32_COREDUMP_CHECKSUM_SHA256", + "name": "ESP32_COREDUMP_CHECKSUM_SHA256", + "range": null, + "title": "Use SHA256 for integrity verification", + "type": "bool" + } + ], + "depends_on": "!ESP32_ENABLE_COREDUMP_TO_NONE", + "help": "Select the integrity check for the core dump.", + "id": "component-config-core-dump-core-dump-data-integrity-check", + "name": "ESP32_COREDUMP_CHECKSUM", + "title": "Core dump data integrity check", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "Enables/disable core dump module.", + "id": "ESP32_ENABLE_COREDUMP", + "name": "ESP32_ENABLE_COREDUMP", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP32_ENABLE_COREDUMP", + "help": "Maximum number of tasks snapshots in core dump.", + "id": "ESP32_CORE_DUMP_MAX_TASKS_NUM", + "name": "ESP32_CORE_DUMP_MAX_TASKS_NUM", + "range": null, + "title": "Maximum number of tasks", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP32_ENABLE_COREDUMP_TO_UART", + "help": "Config delay (in ms) before printing core dump to UART.\nDelay can be interrupted by pressing Enter key.", + "id": "ESP32_CORE_DUMP_UART_DELAY", + "name": "ESP32_CORE_DUMP_UART_DELAY", + "range": null, + "title": "Delay before print to UART", + "type": "int" + }, + { + "children": [], + "depends_on": "ESP32_ENABLE_COREDUMP", + "help": "Size of the memory to be reserved for core dump stack. If 0 core dump process will run on\nthe stack of crashed task/ISR, otherwise special stack will be allocated.\nTo ensure that core dump itself will not overflow task/ISR stack set this to the value above 800.\nNOTE: It eats DRAM.", + "id": "ESP32_CORE_DUMP_STACK_SIZE", + "name": "ESP32_CORE_DUMP_STACK_SIZE", + "range": null, + "title": "Reserved stack size", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_CORE_DUMP_DECODE_INFO", + "name": "ESP32_CORE_DUMP_DECODE_INFO", + "range": null, + "title": "Decode and show summary (info_corefile)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "ESP32_CORE_DUMP_DECODE_DISABLE", + "name": "ESP32_CORE_DUMP_DECODE_DISABLE", + "range": null, + "title": "Don't decode", + "type": "bool" + } + ], + "depends_on": "ESP32_ENABLE_COREDUMP_TO_UART", + "help": null, + "id": "component-config-core-dump-handling-of-uart-core-dumps-in-idf-monitor", + "name": "ESP32_CORE_DUMP_DECODE", + "title": "Handling of UART core dumps in IDF Monitor", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "ESP32_CORE_DUMP_DECODE", + "name": "ESP32_CORE_DUMP_DECODE", + "range": null, + "title": null, + "type": "string" + } + ], + "depends_on": null, + "id": "component-config-core-dump", + "title": "Core dump", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_DYNAMIC", + "name": "FATFS_CODEPAGE_DYNAMIC", + "range": null, + "title": "Dynamic (all code pages supported)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_437", + "name": "FATFS_CODEPAGE_437", + "range": null, + "title": "US (CP437)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_720", + "name": "FATFS_CODEPAGE_720", + "range": null, + "title": "Arabic (CP720)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_737", + "name": "FATFS_CODEPAGE_737", + "range": null, + "title": "Greek (CP737)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_771", + "name": "FATFS_CODEPAGE_771", + "range": null, + "title": "KBL (CP771)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_775", + "name": "FATFS_CODEPAGE_775", + "range": null, + "title": "Baltic (CP775)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_850", + "name": "FATFS_CODEPAGE_850", + "range": null, + "title": "Latin 1 (CP850)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_852", + "name": "FATFS_CODEPAGE_852", + "range": null, + "title": "Latin 2 (CP852)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_855", + "name": "FATFS_CODEPAGE_855", + "range": null, + "title": "Cyrillic (CP855)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_857", + "name": "FATFS_CODEPAGE_857", + "range": null, + "title": "Turkish (CP857)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_860", + "name": "FATFS_CODEPAGE_860", + "range": null, + "title": "Portugese (CP860)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_861", + "name": "FATFS_CODEPAGE_861", + "range": null, + "title": "Icelandic (CP861)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_862", + "name": "FATFS_CODEPAGE_862", + "range": null, + "title": "Hebrew (CP862)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_863", + "name": "FATFS_CODEPAGE_863", + "range": null, + "title": "Canadian French (CP863)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_864", + "name": "FATFS_CODEPAGE_864", + "range": null, + "title": "Arabic (CP864)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_865", + "name": "FATFS_CODEPAGE_865", + "range": null, + "title": "Nordic (CP865)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_866", + "name": "FATFS_CODEPAGE_866", + "range": null, + "title": "Russian (CP866)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_869", + "name": "FATFS_CODEPAGE_869", + "range": null, + "title": "Greek 2 (CP869)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_932", + "name": "FATFS_CODEPAGE_932", + "range": null, + "title": "Japanese (DBCS) (CP932)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_936", + "name": "FATFS_CODEPAGE_936", + "range": null, + "title": "Simplified Chinese (DBCS) (CP936)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_949", + "name": "FATFS_CODEPAGE_949", + "range": null, + "title": "Korean (DBCS) (CP949)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_CODEPAGE_950", + "name": "FATFS_CODEPAGE_950", + "range": null, + "title": "Traditional Chinese (DBCS) (CP950)", + "type": "bool" + } + ], + "depends_on": null, + "help": "OEM code page used for file name encodings.\n\nIf \"Dynamic\" is selected, code page can be chosen at runtime using\nf_setcp function. Note that choosing this option will increase\napplication size by ~480kB.", + "id": "component-config-fat-filesystem-support-oem-code-page", + "name": "FATFS_CHOOSE_CODEPAGE", + "title": "OEM Code Page", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FATFS_CODEPAGE", + "name": "FATFS_CODEPAGE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_LFN_NONE", + "name": "FATFS_LFN_NONE", + "range": null, + "title": "No long filenames", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_LFN_HEAP", + "name": "FATFS_LFN_HEAP", + "range": null, + "title": "Long filename buffer in heap", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_LFN_STACK", + "name": "FATFS_LFN_STACK", + "range": null, + "title": "Long filename buffer on stack", + "type": "bool" + } + ], + "depends_on": null, + "help": "Support long filenames in FAT. Long filename data increases\nmemory usage. FATFS can be configured to store the buffer for\nlong filename data in stack or heap.", + "id": "component-config-fat-filesystem-support-long-filename-support", + "name": "FATFS_LONG_FILENAMES", + "title": "Long filename support", + "type": "choice" + }, + { + "children": [], + "depends_on": "!FATFS_LFN_NONE", + "help": "Maximum long filename length. Can be reduced to save RAM.", + "id": "FATFS_MAX_LFN", + "name": "FATFS_MAX_LFN", + "range": null, + "title": "Max long filename length", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_API_ENCODING_ANSI_OEM", + "name": "FATFS_API_ENCODING_ANSI_OEM", + "range": null, + "title": "API uses ANSI/OEM encoding", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_API_ENCODING_UTF_16", + "name": "FATFS_API_ENCODING_UTF_16", + "range": null, + "title": "API uses UTF-16 encoding", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "FATFS_API_ENCODING_UTF_8", + "name": "FATFS_API_ENCODING_UTF_8", + "range": null, + "title": "API uses UTF-8 encoding", + "type": "bool" + } + ], + "depends_on": "!FATFS_LFN_NONE", + "help": "Choose encoding for character and string arguments/returns when using\nFATFS APIs. The encoding of arguments will usually depend on text\neditor settings.", + "id": "component-config-fat-filesystem-support-api-character-encoding", + "name": "FATFS_API_ENCODING", + "title": "API character encoding", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "This option sets the FATFS configuration value _FS_LOCK.\nThe option _FS_LOCK switches file lock function to control duplicated file open\nand illegal operation to open objects.\n\n* 0: Disable file lock function. To avoid volume corruption, application\nshould avoid illegal open, remove and rename to the open objects.\n\n* >0: Enable file lock function. The value defines how many files/sub-directories\ncan be opened simultaneously under file lock control.\n\nNote that the file lock control is independent of re-entrancy.", + "id": "FATFS_FS_LOCK", + "name": "FATFS_FS_LOCK", + "range": [ + 0, + 65535 + ], + "title": "Number of simultaneously open files protected by lock function", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "This option sets FATFS configuration value _FS_TIMEOUT, scaled to milliseconds.\nSets the number of milliseconds FATFS will wait to acquire a mutex when\noperating on an open file. For example, if one task is performing a lenghty\noperation, another task will wait for the first task to release the lock,\nand time out after amount of time set by this option.", + "id": "FATFS_TIMEOUT_MS", + "name": "FATFS_TIMEOUT_MS", + "range": null, + "title": "Timeout for acquiring a file lock, ms", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "This option affects FATFS configuration value _FS_TINY.\n\nIf this option is set, _FS_TINY is 0, and each open file has its own cache,\nsize of the cache is equal to the _MAX_SS variable (512 or 4096 bytes).\nThis option uses more RAM if more than 1 file is open, but needs less reads\nand writes to the storage for some operations.\n\nIf this option is not set, _FS_TINY is 1, and single cache is used for\nall open files, size is also equal to _MAX_SS variable. This reduces the\namount of heap used when multiple files are open, but increases the number\nof read and write operations which FATFS needs to make.", + "id": "FATFS_PER_FILE_CACHE", + "name": "FATFS_PER_FILE_CACHE", + "range": null, + "title": "Use separate cache for each file", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIRAM_USE_CAPS_ALLOC || SPIRAM_USE_MALLOC", + "help": "When the option is enabled, internal buffers used by FATFS will be allocated\nfrom external RAM. If the allocation from external RAM fails, the buffer will\nbe allocated from the internal RAM.\nDisable this option if optimizing for performance. Enable this option if\noptimizing for internal memory size.", + "id": "FATFS_ALLOC_PREFER_EXTRAM", + "name": "FATFS_ALLOC_PREFER_EXTRAM", + "range": null, + "title": "Perfer external RAM when allocating FATFS buffers", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-fat-filesystem-support", + "title": "FAT Filesystem support", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enable RTU Modbus communication mode option for Modbus serial stack.", + "id": "FMB_COMM_MODE_RTU_EN", + "name": "FMB_COMM_MODE_RTU_EN", + "range": null, + "title": "Enable Modbus stack support for RTU mode", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable ASCII Modbus communication mode option for Modbus serial stack.", + "id": "FMB_COMM_MODE_ASCII_EN", + "name": "FMB_COMM_MODE_ASCII_EN", + "range": null, + "title": "Enable Modbus stack support for ASCII mode", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If master sends a frame which is not broadcast, it has to wait sometime for slave response.\nif slave is not respond in this time, the master will process timeout error.", + "id": "FMB_MASTER_TIMEOUT_MS_RESPOND", + "name": "FMB_MASTER_TIMEOUT_MS_RESPOND", + "range": [ + 50, + 400 + ], + "title": "Slave respond timeout (Milliseconds)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "If master sends a broadcast frame, it has to wait conversion time to delay,\nthen master can send next frame.", + "id": "FMB_MASTER_DELAY_MS_CONVERT", + "name": "FMB_MASTER_DELAY_MS_CONVERT", + "range": [ + 50, + 400 + ], + "title": "Slave conversion delay (Milliseconds)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Modbus serial driver queue length. It is used by event queue task.\nSee the serial driver API for more information.", + "id": "FMB_QUEUE_LENGTH", + "name": "FMB_QUEUE_LENGTH", + "range": [ + 0, + 200 + ], + "title": "Modbus serial task queue length", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Modbus serial task stack size for event queue task.\nIt may be adjusted when debugging is enabled (for example).", + "id": "FMB_SERIAL_TASK_STACK_SIZE", + "name": "FMB_SERIAL_TASK_STACK_SIZE", + "range": [ + 768, + 8192 + ], + "title": "Modbus serial task stack size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Modbus serial task RX and TX buffer size for UART driver initialization.\nThis buffer is used for modbus frame transfer. The Modbus protocol maximum\nframe size is 256 bytes. Bigger size can be used for non standard implementations.", + "id": "FMB_SERIAL_BUF_SIZE", + "name": "FMB_SERIAL_BUF_SIZE", + "range": [ + 0, + 2048 + ], + "title": "Modbus serial task RX/TX buffer size", + "type": "int" + }, + { + "children": [], + "depends_on": "FMB_COMM_MODE_ASCII_EN", + "help": "This option defines the number of data bits per ASCII character.", + "id": "FMB_SERIAL_ASCII_BITS_PER_SYMB", + "name": "FMB_SERIAL_ASCII_BITS_PER_SYMB", + "range": [ + 7, + 8 + ], + "title": "Number of data bits per ASCII character", + "type": "int" + }, + { + "children": [], + "depends_on": "FMB_COMM_MODE_ASCII_EN", + "help": "This option defines response timeout of slave in milliseconds for ASCII communication mode.\nThus the timeout will expire and allow the master\u2019s program to handle the error.", + "id": "FMB_SERIAL_ASCII_TIMEOUT_RESPOND_MS", + "name": "FMB_SERIAL_ASCII_TIMEOUT_RESPOND_MS", + "range": [ + 300, + 2000 + ], + "title": "Response timeout for ASCII communication mode (ms)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Modbus UART driver event task priority.\nThe priority of Modbus controller task is equal to (CONFIG_FMB_SERIAL_TASK_PRIO - 1).", + "id": "FMB_SERIAL_TASK_PRIO", + "name": "FMB_SERIAL_TASK_PRIO", + "range": [ + 3, + 10 + ], + "title": "Modbus serial task priority", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "FMB_CONTROLLER_SLAVE_ID_SUPPORT", + "help": "Modbus slave ID value to identify modbus device\nin the network using command.\nMost significant byte of ID is used as short device ID and\nother three bytes used as long ID.", + "id": "FMB_CONTROLLER_SLAVE_ID", + "name": "FMB_CONTROLLER_SLAVE_ID", + "range": null, + "title": "Modbus controller slave ID", + "type": "hex" + } + ], + "depends_on": null, + "help": "Modbus slave ID support enable.\nWhen enabled the Modbus command is supported by stack.", + "id": "FMB_CONTROLLER_SLAVE_ID_SUPPORT", + "name": "FMB_CONTROLLER_SLAVE_ID_SUPPORT", + "range": null, + "title": "Modbus controller slave ID support", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Modbus controller notification timeout in milliseconds.\nThis timeout is used to send notification about accessed parameters.", + "id": "FMB_CONTROLLER_NOTIFY_TIMEOUT", + "name": "FMB_CONTROLLER_NOTIFY_TIMEOUT", + "range": [ + 0, + 200 + ], + "title": "Modbus controller notification timeout (ms)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Modbus controller notification queue size.\nThe notification queue is used to get information about accessed parameters.", + "id": "FMB_CONTROLLER_NOTIFY_QUEUE_SIZE", + "name": "FMB_CONTROLLER_NOTIFY_QUEUE_SIZE", + "range": [ + 0, + 200 + ], + "title": "Modbus controller notification queue size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Modbus controller task stack size. The Stack size may be adjusted when\ndebug mode is used which requires more stack size (for example).", + "id": "FMB_CONTROLLER_STACK_SIZE", + "name": "FMB_CONTROLLER_STACK_SIZE", + "range": [ + 0, + 8192 + ], + "title": "Modbus controller stack size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Modbus stack event queue timeout in milliseconds. This may help to optimize\nModbus stack event processing time.", + "id": "FMB_EVENT_QUEUE_TIMEOUT", + "name": "FMB_EVENT_QUEUE_TIMEOUT", + "range": [ + 0, + 500 + ], + "title": "Modbus stack event queue timeout (ms)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "If this option is set the Modbus stack uses timer for T3.5 time measurement.\nElse the internal UART TOUT timeout is used for 3.5T symbol time measurement.", + "id": "FMB_TIMER_PORT_ENABLED", + "name": "FMB_TIMER_PORT_ENABLED", + "range": null, + "title": "Modbus slave stack use timer for 3.5T symbol time measurement", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Modbus Timer group number that is used for timeout measurement.", + "id": "FMB_TIMER_GROUP", + "name": "FMB_TIMER_GROUP", + "range": [ + 0, + 1 + ], + "title": "Modbus Timer group number", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Modbus Timer Index in the group that is used for timeout measurement.", + "id": "FMB_TIMER_INDEX", + "name": "FMB_TIMER_INDEX", + "range": [ + 0, + 1 + ], + "title": "Modbus Timer index in the group", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "This option places Modbus timer IRQ handler into IRAM.\nThis allows to avoid delays related to processing of non-IRAM-safe interrupts\nduring a flash write operation (NVS updating a value, or some other\nflash API which has to perform an read/write operation and disable CPU cache).\nThis option has dependency with the UART_ISR_IN_IRAM option which places UART interrupt\nhandler into IRAM to prevent delays related to processing of UART events.", + "id": "FMB_TIMER_ISR_IN_IRAM", + "name": "FMB_TIMER_ISR_IN_IRAM", + "range": null, + "title": "Place timer interrupt handler into IRAM", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-modbus-configuration", + "title": "Modbus configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "This version of FreeRTOS normally takes control of all cores of\nthe CPU. Select this if you only want to start it on the first core.\nThis is needed when e.g. another process needs complete control\nover the second core.\n\n# This invisible config value sets the value of tskNO_AFFINITY in task.h.\n# Intended to be used as a constant from other Kconfig files.\n# Value is (32-bit) INT_MAX.", + "id": "FREERTOS_UNICORE", + "name": "FREERTOS_UNICORE", + "range": null, + "title": "Run FreeRTOS only on first core", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "FREERTOS_NO_AFFINITY", + "name": "FREERTOS_NO_AFFINITY", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Select this to use timer 0", + "id": "FREERTOS_CORETIMER_0", + "name": "FREERTOS_CORETIMER_0", + "range": null, + "title": "Timer 0 (int 6, level 1)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Select this to use timer 1", + "id": "FREERTOS_CORETIMER_1", + "name": "FREERTOS_CORETIMER_1", + "range": null, + "title": "Timer 1 (int 15, level 3)", + "type": "bool" + } + ], + "depends_on": null, + "help": "FreeRTOS needs a timer with an associated interrupt to use as\nthe main tick source to increase counters, run timers and do\npre-emptive multitasking with. There are multiple timers available\nto do this, with different interrupt priorities. Check", + "id": "component-config-freertos-xtensa-timer-to-use-as-the-freertos-tick-source", + "name": "FREERTOS_CORETIMER", + "title": "Xtensa timer to use as the FreeRTOS tick source", + "type": "choice" + }, + { + "children": [], + "depends_on": "FREERTOS_UNICORE", + "help": "On most platforms there are instructions can speedup the ready task\nsearching. Enabling this option the FreeRTOS with this instructions\nsupport will be built.", + "id": "FREERTOS_OPTIMIZED_SCHEDULER", + "name": "FREERTOS_OPTIMIZED_SCHEDULER", + "range": null, + "title": "Enable FreeRTOS p\u013aatform optimized scheduler", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Select the tick rate at which FreeRTOS does pre-emptive context switching.", + "id": "FREERTOS_HZ", + "name": "FREERTOS_HZ", + "range": [ + 1, + 1000 + ], + "title": "Tick rate (Hz)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Some functions in FreeRTOS have not been thoroughly tested yet when moving to\nthe SMP implementation of FreeRTOS. When this option is enabled, these fuctions\nwill throw an assert().", + "id": "FREERTOS_ASSERT_ON_UNTESTED_FUNCTION", + "name": "FREERTOS_ASSERT_ON_UNTESTED_FUNCTION", + "range": null, + "title": "Halt when an SMP-untested function is called", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Do not check for stack overflows (configCHECK_FOR_STACK_OVERFLOW=0)", + "id": "FREERTOS_CHECK_STACKOVERFLOW_NONE", + "name": "FREERTOS_CHECK_STACKOVERFLOW_NONE", + "range": null, + "title": "No checking", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Check for stack overflows on each context switch by checking if\nthe stack pointer is in a valid range. Quick but does not detect\nstack overflows that happened between context switches\n(configCHECK_FOR_STACK_OVERFLOW=1)", + "id": "FREERTOS_CHECK_STACKOVERFLOW_PTRVAL", + "name": "FREERTOS_CHECK_STACKOVERFLOW_PTRVAL", + "range": null, + "title": "Check by stack pointer value", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Places some magic bytes at the end of the stack area and on each\ncontext switch, check if these bytes are still intact. More thorough\nthan just checking the pointer, but also slightly slower.\n(configCHECK_FOR_STACK_OVERFLOW=2)", + "id": "FREERTOS_CHECK_STACKOVERFLOW_CANARY", + "name": "FREERTOS_CHECK_STACKOVERFLOW_CANARY", + "range": null, + "title": "Check using canary bytes", + "type": "bool" + } + ], + "depends_on": null, + "help": "FreeRTOS can check for stack overflows in threads and trigger an user function\ncalled vApplicationStackOverflowHook when this happens.", + "id": "component-config-freertos-check-for-stack-overflow", + "name": "FREERTOS_CHECK_STACKOVERFLOW", + "title": "Check for stack overflow", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "FreeRTOS can check if a stack has overflown its bounds by checking either the value of\nthe stack pointer or by checking the integrity of canary bytes. (See FREERTOS_CHECK_STACKOVERFLOW\nfor more information.) These checks only happen on a context switch, and the situation that caused\nthe stack overflow may already be long gone by then. This option will use the debug memory\nwatchpoint 1 (the second one) to allow breaking into the debugger (or panic'ing) as soon as any\nof the last 32 bytes on the stack of a task are overwritten. The side effect is that using gdb, you\neffectively only have one watchpoint; the 2nd one is overwritten as soon as a task switch happens.\n\nThis check only triggers if the stack overflow writes within 4 bytes of the end of the stack, rather than\novershooting further, so it is worth combining this approach with one of the other stack overflow check\nmethods.\n\nWhen this watchpoint is hit, gdb will stop with a SIGTRAP message. When no JTAG OCD is attached, esp-idf\nwill panic on an unhandled debug exception.", + "id": "FREERTOS_WATCHPOINT_END_OF_STACK", + "name": "FREERTOS_WATCHPOINT_END_OF_STACK", + "range": null, + "title": "Set a debug watchpoint as a stack overflow check", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If this option is enabled, interrupt stack frame will be modified to\npoint to the code of the interrupted task as its return address.\nThis helps the debugger (or the panic handler) show a backtrace from\nthe interrupt to the task which was interrupted. This also works for\nnested interrupts: higer level interrupt stack can be traced back to the\nlower level interrupt.\nThis option adds 4 instructions to the interrupt dispatching code.", + "id": "FREERTOS_INTERRUPT_BACKTRACE", + "name": "FREERTOS_INTERRUPT_BACKTRACE", + "range": null, + "title": "Enable backtrace from interrupt to task context", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "FreeRTOS has the ability to store per-thread pointers in the task\ncontrol block. This controls the number of pointers available.\n\nThis value must be at least 1. Index 0 is reserved for use by the pthreads API\nthread-local-storage. Other indexes can be used for any desired purpose.", + "id": "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS", + "name": "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS", + "range": [ + 1, + 256 + ], + "title": "Number of thread local storage pointers", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "If a FreeRTOS configASSERT() fails, FreeRTOS will abort() and\nhalt execution. The panic handler can be configured to handle\nthe outcome of an abort() in different ways.", + "id": "FREERTOS_ASSERT_FAIL_ABORT", + "name": "FREERTOS_ASSERT_FAIL_ABORT", + "range": null, + "title": "abort() on failed assertions", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "If a FreeRTOS assertion fails, print it out and continue.", + "id": "FREERTOS_ASSERT_FAIL_PRINT_CONTINUE", + "name": "FREERTOS_ASSERT_FAIL_PRINT_CONTINUE", + "range": null, + "title": "Print and continue failed assertions", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "FreeRTOS configASSERT() will not be compiled into the binary.", + "id": "FREERTOS_ASSERT_DISABLE", + "name": "FREERTOS_ASSERT_DISABLE", + "range": null, + "title": "Disable FreeRTOS assertions", + "type": "bool" + } + ], + "depends_on": null, + "help": "Failed FreeRTOS configASSERT() assertions can be configured to\nbehave in different ways.", + "id": "component-config-freertos-freertos-assertions", + "name": "FREERTOS_ASSERT", + "title": "FreeRTOS assertions", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "The idle task has its own stack, sized in bytes. The default size is enough for most uses. Size can be\nreduced to 768 bytes if no (or simple) FreeRTOS idle hooks are used and pthread local storage or FreeRTOS\nlocal storage cleanup callbacks are not used.\n\nThe stack size may need to be increased above the default if the app installs idle or thread local storage\ncleanup hooks that use a lot of stack memory.", + "id": "FREERTOS_IDLE_TASK_STACKSIZE", + "name": "FREERTOS_IDLE_TASK_STACKSIZE", + "range": [ + 768, + 32768 + ], + "title": "Idle Task stack size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "The interrupt handlers have their own stack. The size of the stack can be defined here.\nEach processor has its own stack, so the total size occupied will be twice this.", + "id": "FREERTOS_ISR_STACKSIZE", + "name": "FREERTOS_ISR_STACKSIZE", + "range": [ + 1536, + 32768 + ], + "title": "ISR stack size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "FreeRTOS offers a number of hooks/callback functions that are called when a timer\ntick happens, the idle thread runs etc. esp-idf replaces these by runtime registerable\nhooks using the esp_register_freertos_xxx_hook system, but for legacy reasons the old\nhooks can also still be enabled. Please enable this only if you have code that for some\nreason can't be migrated to the esp_register_freertos_xxx_hook system.", + "id": "FREERTOS_LEGACY_HOOKS", + "name": "FREERTOS_LEGACY_HOOKS", + "range": null, + "title": "Use FreeRTOS legacy hooks", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Changes the maximum task name length. Each task allocated will\ninclude this many bytes for a task name. Using a shorter value\nsaves a small amount of RAM, a longer value allows more complex\nnames.\n\nFor most uses, the default of 16 is OK.", + "id": "FREERTOS_MAX_TASK_NAME_LEN", + "name": "FREERTOS_MAX_TASK_NAME_LEN", + "range": [ + 1, + 256 + ], + "title": "Maximum task name length", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "FREERTOS_SUPPORT_STATIC_ALLOCATION", + "help": "Enable this option to make FreeRTOS call the static task clean up hook when a task is deleted.\n\nBear in mind that if this option is enabled you will need to implement the following function::\n\n void vPortCleanUpTCB ( void *pxTCB ) {\n // place clean up code here\n }", + "id": "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", + "name": "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP", + "range": null, + "title": "Enable static task clean up hook", + "type": "bool" + } + ], + "depends_on": null, + "help": "FreeRTOS gives the application writer the ability to instead provide the memory\nthemselves, allowing the following objects to optionally be created without any\nmemory being allocated dynamically:\n\n- Tasks\n- Software Timers (Daemon task is still dynamic. See documentation)\n- Queues\n- Event Groups\n- Binary Semaphores\n- Counting Semaphores\n- Recursive Semaphores\n- Mutexes\n\nWhether it is preferable to use static or dynamic memory allocation is dependent on\nthe application, and the preference of the application writer. Both methods have pros\nand cons, and both methods can be used within the same RTOS application.\n\nCreating RTOS objects using statically allocated RAM has the benefit of providing the application writer\nwith more control: RTOS objects can be placed at specific memory locations. The maximum RAM footprint can\nbe determined at link time, rather than run time. The application writer does not need to concern\nthemselves with graceful handling of memory allocation failures. It allows the RTOS to be used in\napplications that simply don't allow any dynamic memory allocation (although FreeRTOS includes allocation\nschemes that can overcome most objections).", + "id": "FREERTOS_SUPPORT_STATIC_ALLOCATION", + "name": "FREERTOS_SUPPORT_STATIC_ALLOCATION", + "range": null, + "title": "Enable FreeRTOS static allocation API", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "The timer service task (primarily) makes use of existing FreeRTOS features, allowing timer\nfunctionality to be added to an application with minimal impact on the size of the application's\nexecutable binary.\n\nUse this constant to define the priority that the timer task will run at.", + "id": "FREERTOS_TIMER_TASK_PRIORITY", + "name": "FREERTOS_TIMER_TASK_PRIORITY", + "range": [ + 1, + 25 + ], + "title": "FreeRTOS timer task priority", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "The timer service task (primarily) makes use of existing FreeRTOS features, allowing timer\nfunctionality to be added to an application with minimal impact on the size of the application's\nexecutable binary.\n\nUse this constant to define the size (in bytes) of the stack allocated for the timer task.", + "id": "FREERTOS_TIMER_TASK_STACK_DEPTH", + "name": "FREERTOS_TIMER_TASK_STACK_DEPTH", + "range": [ + 1536, + 32768 + ], + "title": "FreeRTOS timer task stack size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "FreeRTOS provides a set of timer related API functions. Many of these functions use a standard\nFreeRTOS queue to send commands to the timer service task. The queue used for this purpose is\ncalled the 'timer command queue'. The 'timer command queue' is private to the FreeRTOS timer\nimplementation, and cannot be accessed directly.\n\nFor most uses the default value of 10 is OK.", + "id": "FREERTOS_TIMER_QUEUE_LENGTH", + "name": "FREERTOS_TIMER_QUEUE_LENGTH", + "range": [ + 5, + 20 + ], + "title": "FreeRTOS timer queue length", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "FreeRTOS uses the queue registry as a means for kernel aware debuggers to locate queues, semaphores,\nand mutexes. The registry allows for a textual name to be associated with a queue for easy identification\nwithin a debugging GUI. A value of 0 will disable queue registry functionality, and a value larger than 0\nwill specify the number of queues/semaphores/mutexes that the registry can hold.", + "id": "FREERTOS_QUEUE_REGISTRY_SIZE", + "name": "FREERTOS_QUEUE_REGISTRY_SIZE", + "range": [ + 0, + 20 + ], + "title": "FreeRTOS queue registry size", + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "FREERTOS_USE_STATS_FORMATTING_FUNCTIONS", + "help": "If enabled, this will include an extra column when vTaskList is called\nto display the CoreID the task is pinned to (0,1) or -1 if not pinned.", + "id": "FREERTOS_VTASKLIST_INCLUDE_COREID", + "name": "FREERTOS_VTASKLIST_INCLUDE_COREID", + "range": null, + "title": "Enable display of xCoreID in vTaskList", + "type": "bool" + } + ], + "depends_on": "FREERTOS_USE_TRACE_FACILITY", + "help": "If enabled, configUSE_STATS_FORMATTING_FUNCTIONS will be defined as 1 in\nFreeRTOS. This will allow the usage of stats formatting functions such\nas vTaskList().", + "id": "FREERTOS_USE_STATS_FORMATTING_FUNCTIONS", + "name": "FREERTOS_USE_STATS_FORMATTING_FUNCTIONS", + "range": null, + "title": "Enable FreeRTOS stats formatting functions", + "type": "bool" + } + ], + "depends_on": null, + "help": "If enabled, configUSE_TRACE_FACILITY will be defined as 1 in FreeRTOS.\nThis will allow the usage of trace facility functions such as\nuxTaskGetSystemState().", + "id": "FREERTOS_USE_TRACE_FACILITY", + "name": "FREERTOS_USE_TRACE_FACILITY", + "range": null, + "title": "Enable FreeRTOS trace facility", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "ESP Timer will be used as the clock source for FreeRTOS run time stats.\nThe ESP Timer runs at a frequency of 1MHz regardless of Dynamic\nFrequency Scaling. Therefore the ESP Timer will overflow in\napproximately 4290 seconds.", + "id": "FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER", + "name": "FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER", + "range": null, + "title": "Use ESP TIMER for run time stats", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "CPU Clock will be used as the clock source for the generation of run\ntime stats. The CPU Clock has a frequency dependent on\nESP32_DEFAULT_CPU_FREQ_MHZ and Dynamic Frequency Scaling (DFS).\nTherefore the CPU Clock frequency can fluctuate between 80 to 240MHz.\nRun time stats generated using the CPU Clock represents the number of\nCPU cycles each task is allocated and DOES NOT reflect the amount of\ntime each task runs for (as CPU clock frequency can change). If the CPU\nclock consistently runs at the maximum frequency of 240MHz, it will\noverflow in approximately 17 seconds.", + "id": "FREERTOS_RUN_TIME_STATS_USING_CPU_CLK", + "name": "FREERTOS_RUN_TIME_STATS_USING_CPU_CLK", + "range": null, + "title": "Use CPU Clock for run time stats", + "type": "bool" + } + ], + "depends_on": "FREERTOS_GENERATE_RUN_TIME_STATS", + "help": "Choose the clock source for FreeRTOS run time stats. Options are CPU0's\nCPU Clock or the ESP Timer. Both clock sources are 32 bits. The CPU\nClock can run at a higher frequency hence provide a finer resolution\nbut will overflow much quicker. Note that run time stats are only valid\nuntil the clock source overflows.", + "id": "component-config-freertos-enable-freertos-to-collect-run-time-stats-choose-the-clock-source-for-run-time-stats", + "name": "FREERTOS_RUN_TIME_STATS_CLK", + "title": "Choose the clock source for run time stats", + "type": "choice" + } + ], + "depends_on": null, + "help": "If enabled, configGENERATE_RUN_TIME_STATS will be defined as 1 in\nFreeRTOS. This will allow FreeRTOS to collect information regarding the\nusage of processor time amongst FreeRTOS tasks. Run time stats are\ngenerated using either the ESP Timer or the CPU Clock as the clock\nsource (Note that run time stats are only valid until the clock source\noverflows). The function vTaskGetRunTimeStats() will also be available\nif FREERTOS_USE_STATS_FORMATTING_FUNCTIONS and\nFREERTOS_USE_TRACE_FACILITY are enabled. vTaskGetRunTimeStats() will\ndisplay the run time of each task as a % of the total run time of all\nCPUs (task run time / no of CPUs) / (total run time / 100 )", + "id": "FREERTOS_GENERATE_RUN_TIME_STATS", + "name": "FREERTOS_GENERATE_RUN_TIME_STATS", + "range": null, + "title": "Enable FreeRTOS to collect run time stats", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "FREERTOS_USE_TICKLESS_IDLE", + "help": "FreeRTOS will enter light sleep mode if no tasks need to run for this number\nof ticks.", + "id": "FREERTOS_IDLE_TIME_BEFORE_SLEEP", + "name": "FREERTOS_IDLE_TIME_BEFORE_SLEEP", + "range": null, + "title": "Minimum number of ticks to enter sleep mode for", + "type": "int" + } + ], + "depends_on": "PM_ENABLE", + "help": "If power management support is enabled, FreeRTOS will be able to put\nthe system into light sleep mode when no tasks need to run for a number\nof ticks. This number can be set using FREERTOS_IDLE_TIME_BEFORE_SLEEP option.\nThis feature is also known as \"automatic light sleep\".\n\nNote that timers created using esp_timer APIs may prevent the system from\nentering sleep mode, even when no tasks need to run.\n\nIf disabled, automatic light sleep support will be disabled.", + "id": "FREERTOS_USE_TICKLESS_IDLE", + "name": "FREERTOS_USE_TICKLESS_IDLE", + "range": null, + "title": "Tickless idle support", + "type": "bool" + }, + { + "children": [], + "depends_on": "COMPILER_OPTIMIZATION_DEFAULT", + "help": "If enabled, all FreeRTOS task functions will be enclosed in a wrapper function.\nIf a task function mistakenly returns (i.e. does not delete), the call flow will\nreturn to the wrapper function. The wrapper function will then log an error and\nabort the application. This option is also required for GDB backtraces and C++\nexceptions to work correctly inside top-level task functions.", + "id": "FREERTOS_TASK_FUNCTION_WRAPPER", + "name": "FREERTOS_TASK_FUNCTION_WRAPPER", + "range": null, + "title": "Enclose all task functions in a wrapper function", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If enabled, assert that when a mutex semaphore is given, the task giving the\nsemaphore is the task which is currently holding the mutex.", + "id": "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER", + "name": "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER", + "range": null, + "title": "Check that mutex semaphore is given by owner task", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If enabled, context of port*_CRITICAL calls (ISR or Non-ISR)\nwould be checked to be in compliance with Vanilla FreeRTOS.\ne.g Calling port*_CRITICAL from ISR context would cause assert failure", + "id": "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE", + "name": "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE", + "range": null, + "title": "Tests compliance with Vanilla FreeRTOS port*_CRITICAL calls", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Hidden option, gets selected by CONFIG_ESPxx_DEBUG_OCDAWARE", + "id": "FREERTOS_DEBUG_OCDAWARE", + "name": "FREERTOS_DEBUG_OCDAWARE", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "IDF_TARGET_ESP32", + "help": "When enabled, the usage of float type is allowed inside Level 1\nISRs.", + "id": "FREERTOS_FPU_IN_ISR", + "name": "FREERTOS_FPU_IN_ISR", + "range": null, + "title": "Allow use of float inside Level 1 ISR (EXPERIMENTAL)", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-freertos", + "title": "FreeRTOS", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "HEAP_POISONING_DISABLED", + "name": "HEAP_POISONING_DISABLED", + "range": null, + "title": "Basic (no poisoning)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HEAP_POISONING_LIGHT", + "name": "HEAP_POISONING_LIGHT", + "range": null, + "title": "Light impact", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HEAP_POISONING_COMPREHENSIVE", + "name": "HEAP_POISONING_COMPREHENSIVE", + "range": null, + "title": "Comprehensive", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enable heap poisoning features to detect heap corruption caused by out-of-bounds access to heap memory.\n\nSee the \"Heap Memory Debugging\" page of the IDF documentation\nfor a description of each level of heap corruption detection.", + "id": "component-config-heap-memory-debugging-heap-corruption-detection", + "name": "HEAP_CORRUPTION_DETECTION", + "title": "Heap corruption detection", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "HEAP_TRACING_OFF", + "name": "HEAP_TRACING_OFF", + "range": null, + "title": "Disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HEAP_TRACING_STANDALONE", + "name": "HEAP_TRACING_STANDALONE", + "range": null, + "title": "Standalone", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "HEAP_TRACING_TOHOST", + "name": "HEAP_TRACING_TOHOST", + "range": null, + "title": "Host-based", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enables the heap tracing API defined in esp_heap_trace.h.\n\nThis function causes a moderate increase in IRAM code side and a minor increase in heap function\n(malloc/free/realloc) CPU overhead, even when the tracing feature is not used.\nSo it's best to keep it disabled unless tracing is being used.", + "id": "component-config-heap-memory-debugging-heap-tracing", + "name": "HEAP_TRACING_DEST", + "title": "Heap tracing", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "Enables/disables heap tracing API.", + "id": "HEAP_TRACING", + "name": "HEAP_TRACING", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": "HEAP_TRACING", + "help": "Number of stack frames to save when tracing heap operation callers.\n\nMore stack frames uses more memory in the heap trace buffer (and slows down allocation), but\ncan provide useful information.", + "id": "HEAP_TRACING_STACK_DEPTH", + "name": "HEAP_TRACING_STACK_DEPTH", + "range": null, + "title": "Heap tracing stack depth", + "type": "int" + }, + { + "children": [], + "depends_on": "!HEAP_POISONING_DISABLED", + "help": "Enables tracking the task responsible for each heap allocation.\n\nThis function depends on heap poisoning being enabled and adds four more bytes of overhead for each block\nallocated.", + "id": "HEAP_TASK_TRACKING", + "name": "HEAP_TASK_TRACKING", + "range": null, + "title": "Enable heap task tracking", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-heap-memory-debugging", + "title": "Heap memory debugging", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "You can access to parent node of parsed json", + "id": "JSMN_PARENT_LINKS", + "name": "JSMN_PARENT_LINKS", + "range": null, + "title": "Enable parent links", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "In strict mode primitives are: numbers and booleans", + "id": "JSMN_STRICT", + "name": "JSMN_STRICT", + "range": null, + "title": "Enable strict mode", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-jsmn", + "title": "jsmn", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "!MBEDTLS_HARDWARE_SHA", + "help": "If this option is enabled, libsodium will use thin wrappers\naround mbedTLS for SHA256 & SHA512 operations.\n\nThis saves some code size if mbedTLS is also used. However it\nis incompatible with hardware SHA acceleration (due to the\nway libsodium's API manages SHA state).", + "id": "LIBSODIUM_USE_MBEDTLS_SHA", + "name": "LIBSODIUM_USE_MBEDTLS_SHA", + "range": null, + "title": "Use mbedTLS SHA256 & SHA512 implementations", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-libsodium", + "title": "libsodium", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_NONE", + "name": "LOG_DEFAULT_LEVEL_NONE", + "range": null, + "title": "No output", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_ERROR", + "name": "LOG_DEFAULT_LEVEL_ERROR", + "range": null, + "title": "Error", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_WARN", + "name": "LOG_DEFAULT_LEVEL_WARN", + "range": null, + "title": "Warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_INFO", + "name": "LOG_DEFAULT_LEVEL_INFO", + "range": null, + "title": "Info", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_DEBUG", + "name": "LOG_DEFAULT_LEVEL_DEBUG", + "range": null, + "title": "Debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_DEFAULT_LEVEL_VERBOSE", + "name": "LOG_DEFAULT_LEVEL_VERBOSE", + "range": null, + "title": "Verbose", + "type": "bool" + } + ], + "depends_on": null, + "help": "Specify how much output to see in logs by default.\nYou can set lower verbosity level at runtime using\nesp_log_level_set function.\n\nNote that this setting limits which log statements\nare compiled into the program. So setting this to, say,\n\"Warning\" would mean that changing log level to \"Debug\"\nat runtime will not be possible.", + "id": "component-config-log-output-default-log-verbosity", + "name": "LOG_DEFAULT_LEVEL", + "title": "Default log verbosity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LOG_DEFAULT_LEVEL", + "name": "LOG_DEFAULT_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Enable ANSI terminal color codes in bootloader output.\n\nIn order to view these, your terminal program must support ANSI color codes.", + "id": "LOG_COLORS", + "name": "LOG_COLORS", + "range": null, + "title": "Use ANSI terminal colors in log output", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_TIMESTAMP_SOURCE_RTOS", + "name": "LOG_TIMESTAMP_SOURCE_RTOS", + "range": null, + "title": "Milliseconds Since Boot", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LOG_TIMESTAMP_SOURCE_SYSTEM", + "name": "LOG_TIMESTAMP_SOURCE_SYSTEM", + "range": null, + "title": "System Time", + "type": "bool" + } + ], + "depends_on": null, + "help": "Choose what sort of timestamp is displayed in the log output:\n\n- Milliseconds since boot is calulated from the RTOS tick count multiplied\n by the tick period. This time will reset after a software reboot.\n e.g. (90000)\n\n- System time is taken from POSIX time functions which use the ESP32's\n RTC and FRC1 timers to maintain an accurate time. The system time is\n initialized to 0 on startup, it can be set with an SNTP sync, or with\n POSIX time functions. This time will not reset after a software reboot.\n e.g. (00:01:30.000)\n\n- NOTE: Currently this will not get used in logging from binary blobs\n (i.e WiFi & Bluetooth libraries), these will always print\n milliseconds since boot.", + "id": "component-config-log-output-log-timestamps", + "name": "LOG_TIMESTAMP_SOURCE", + "title": "Log Timestamps", + "type": "choice" + } + ], + "depends_on": null, + "id": "component-config-log-output", + "title": "Log output", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "The default name this device will report to other devices on the network.\nCould be updated at runtime with esp_netif_set_hostname()", + "id": "LWIP_LOCAL_HOSTNAME", + "name": "LWIP_LOCAL_HOSTNAME", + "range": null, + "title": "Local netif hostname", + "type": "string" + }, + { + "children": [], + "depends_on": null, + "help": "If this feature is enabled, standard API such as gethostbyname\nsupport .local addresses by sending one shot multicast mDNS\nquery", + "id": "LWIP_DNS_SUPPORT_MDNS_QUERIES", + "name": "LWIP_DNS_SUPPORT_MDNS_QUERIES", + "range": null, + "title": "Enable mDNS queries in resolving host name", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If this feature is enabled, all traffic from layer2(WIFI Driver) will be\ncopied to a new buffer before sending it to layer3(LWIP stack), freeing\nthe layer2 buffer.\nPlease be notified that the total layer2 receiving buffer is fixed and\nESP32 currently supports 25 layer2 receiving buffer, when layer2 buffer\nruns out of memory, then the incoming packets will be dropped in hardware.\nThe layer3 buffer is allocated from the heap, so the total layer3 receiving\nbuffer depends on the available heap size, when heap runs out of memory,\nno copy will be sent to layer3 and packet will be dropped in layer2.\nPlease make sure you fully understand the impact of this feature before\nenabling it.", + "id": "LWIP_L2_TO_L3_COPY", + "name": "LWIP_L2_TO_L3_COPY", + "range": null, + "title": "Enable copy between Layer2 and Layer3 packets", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If this feature is enabled, some functions relating to RX/TX in LWIP will be\nput into IRAM, it can improve UDP/TCP throughput by >10% for single core mode,\nit doesn't help too much for dual core mode. On the other hand, it needs about\n10KB IRAM for these optimizations.\n\nIf this feature is disabled, all lwip functions will be put into FLASH.", + "id": "LWIP_IRAM_OPTIMIZATION", + "name": "LWIP_IRAM_OPTIMIZATION", + "range": null, + "title": "Enable LWIP IRAM optimization", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If this feature is enabled, IGMP and MLD6 timers will be activated only\nwhen joining groups or receiving QUERY packets.\n\nThis feature will reduce the power consumption for applications which do not\nuse IGMP and MLD6.", + "id": "LWIP_TIMERS_ONDEMAND", + "name": "LWIP_TIMERS_ONDEMAND", + "range": null, + "title": "Enable LWIP Timers on demand", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Sockets take up a certain amount of memory, and allowing fewer\nsockets to be open at the same time conserves memory. Specify\nthe maximum amount of sockets here. The valid value is from 1\nto 16.", + "id": "LWIP_MAX_SOCKETS", + "name": "LWIP_MAX_SOCKETS", + "range": [ + 1, + 16 + ], + "title": "Max number of open sockets", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "The virtual filesystem layer of select() redirects sockets to\nlwip_select() and non-socket file descriptors to their respective driver\nimplementations. If this option is enabled then all calls of select()\nwill be redirected to lwip_select(), therefore, select can be used\nfor sockets only.", + "id": "LWIP_USE_ONLY_LWIP_SELECT", + "name": "LWIP_USE_ONLY_LWIP_SELECT", + "range": null, + "title": "Support LWIP socket select() only", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_SO_REUSE", + "help": "Enabling this option means that any incoming broadcast or multicast\npacket will be copied to all of the local sockets that it matches\n(may be more than one if SO_REUSEADDR is set on the socket.)\n\nThis increases memory overhead as the packets need to be copied,\nhowever they are only copied per matching socket. You can safely\ndisable it if you don't plan to receive broadcast or multicast\ntraffic on more than one socket at a time.", + "id": "LWIP_SO_REUSE_RXTOALL", + "name": "LWIP_SO_REUSE_RXTOALL", + "range": null, + "title": "SO_REUSEADDR copies broadcast/multicast to all matches", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enabling this option allows binding to a port which remains in\nTIME_WAIT.", + "id": "LWIP_SO_REUSE", + "name": "LWIP_SO_REUSE", + "range": null, + "title": "Enable SO_REUSEADDR option", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option allows checking for available data on a netconn.", + "id": "LWIP_SO_RCVBUF", + "name": "LWIP_SO_RCVBUF", + "range": null, + "title": "Enable SO_RCVBUF option", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option allows checking for the destination address\nof a received IPv4 Packet.", + "id": "LWIP_NETBUF_RECVINFO", + "name": "LWIP_NETBUF_RECVINFO", + "range": null, + "title": "Enable IP_PKTINFO option", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option allows fragmenting outgoing IP packets if their size\nexceeds MTU.", + "id": "LWIP_IP_FRAG", + "name": "LWIP_IP_FRAG", + "range": null, + "title": "Enable fragment outgoing IP packets", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option allows reassemblying incoming fragmented IP packets.", + "id": "LWIP_IP_REASSEMBLY", + "name": "LWIP_IP_REASSEMBLY", + "range": null, + "title": "Enable reassembly incoming fragmented IP packets", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option allows LWIP statistics", + "id": "LWIP_STATS", + "name": "LWIP_STATS", + "range": null, + "title": "Enable LWIP statistics", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option allows ARP table to be updated.\n\nIf this option is enabled, the incoming IP packets cause the ARP table to be\nupdated with the source MAC and IP addresses supplied in the packet.\nYou may want to disable this if you do not trust LAN peers to have the\ncorrect addresses, or as a limited approach to attempt to handle\nspoofing. If disabled, lwIP will need to make a new ARP request if\nthe peer is not already in the ARP table, adding a little latency.\nThe peer *is* in the ARP table if it requested our address before.\nAlso notice that this slows down input processing of every IP packet!\n\nThere are two known issues in real application if this feature is enabled:\n- The LAN peer may have bug to update the ARP table after the ARP entry is aged out.\nIf the ARP entry on the LAN peer is aged out but failed to be updated, all IP packets\nsent from LWIP to the LAN peer will be dropped by LAN peer.\n- The LAN peer may not be trustful, the LAN peer may send IP packets to LWIP with\ntwo different MACs, but the same IP address. If this happens, the LWIP has problem\nto receive IP packets from LAN peer.\n\nSo the recommendation is to disable this option.\nHere the LAN peer means the other side to which the ESP station or soft-AP is connected.", + "id": "LWIP_ETHARP_TRUST_IP_MAC", + "name": "LWIP_ETHARP_TRUST_IP_MAC", + "range": null, + "title": "Enable LWIP ARP trust", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_ESP_GRATUITOUS_ARP", + "help": "Set the timer interval for gratuitous ARP. The default value is 60s", + "id": "LWIP_GARP_TMR_INTERVAL", + "name": "LWIP_GARP_TMR_INTERVAL", + "range": null, + "title": "GARP timer interval(seconds)", + "type": "int" + } + ], + "depends_on": null, + "help": "Enable this option allows to send gratuitous ARP periodically.\n\nThis option solve the compatibility issues.If the ARP table of the AP is old, and the AP\ndoesn't send ARP request to update it's ARP table, this will lead to the STA sending IP packet fail.\nThus we send gratuitous ARP periodically to let AP update it's ARP table.", + "id": "LWIP_ESP_GRATUITOUS_ARP", + "name": "LWIP_ESP_GRATUITOUS_ARP", + "range": null, + "title": "Send gratuitous ARP periodically", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Set TCPIP task receive mail box size. Generally bigger value means higher throughput\nbut more memory. The value should be bigger than UDP/TCP mail box size.", + "id": "LWIP_TCPIP_RECVMBOX_SIZE", + "name": "LWIP_TCPIP_RECVMBOX_SIZE", + "range": [ + 6, + 64 + ], + "title": "TCPIP task receive mail box size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option performs a check (via ARP request) if the offered IP address\nis not already in use by another host on the network.", + "id": "LWIP_DHCP_DOES_ARP_CHECK", + "name": "LWIP_DHCP_DOES_ARP_CHECK", + "range": null, + "title": "DHCP: Perform ARP check on any offered address", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "When this option is enabled, DHCP client tries to re-obtain last valid IP address obtained from DHCP\nserver. Last valid DHCP configuration is stored in nvs and restored after reset/power-up. If IP is still\navailable, there is no need for sending discovery message to DHCP server and save some time.", + "id": "LWIP_DHCP_RESTORE_LAST_IP", + "name": "LWIP_DHCP_RESTORE_LAST_IP", + "range": null, + "title": "DHCP: Restore last IP obtained from DHCP server", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "The DHCP server is calculating lease time multiplying the sent\nand received times by this number of seconds per unit.\nThe default is 60, that equals one minute.", + "id": "LWIP_DHCPS_LEASE_UNIT", + "name": "LWIP_DHCPS_LEASE_UNIT", + "range": [ + 1, + 3600 + ], + "title": "Multiplier for lease time, in seconds", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "The maximum number of DHCP clients that are connected to the server.\nAfter this number is exceeded, DHCP server removes of the oldest device\nfrom it's address pool, without notification.", + "id": "LWIP_DHCPS_MAX_STATION_NUM", + "name": "LWIP_DHCPS_MAX_STATION_NUM", + "range": [ + 1, + 64 + ], + "title": "Maximum number of stations", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-lwip-dhcp-server", + "title": "DHCP server", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_AUTOIP", + "help": "DHCP client will send this many probes before self-assigning a\nlink local address.\n\nFrom LWIP help: \"This can be set as low as 1 to get an AutoIP\naddress very quickly, but you should be prepared to handle a\nchanging IP address when DHCP overrides AutoIP.\" (In the case of\nESP-IDF, this means multiple SYSTEM_EVENT_STA_GOT_IP events.)", + "id": "LWIP_AUTOIP_TRIES", + "name": "LWIP_AUTOIP_TRIES", + "range": null, + "title": "DHCP Probes before self-assigning IPv4 LL address", + "type": "int" + }, + { + "children": [], + "depends_on": "LWIP_AUTOIP", + "help": "If the AUTOIP functionality detects this many IP conflicts while\nself-assigning an address, it will go into a rate limited mode.", + "id": "LWIP_AUTOIP_MAX_CONFLICTS", + "name": "LWIP_AUTOIP_MAX_CONFLICTS", + "range": null, + "title": "Max IP conflicts before rate limiting", + "type": "int" + }, + { + "children": [], + "depends_on": "LWIP_AUTOIP", + "help": "If rate limiting self-assignment requests, wait this long between\neach request.", + "id": "LWIP_AUTOIP_RATE_LIMIT_INTERVAL", + "name": "LWIP_AUTOIP_RATE_LIMIT_INTERVAL", + "range": null, + "title": "Rate limited interval (seconds)", + "type": "int" + } + ], + "depends_on": null, + "help": "Enabling this option allows the device to self-assign an address\nin the 169.256/16 range if none is assigned statically or via DHCP.\n\nSee RFC 3927.", + "id": "LWIP_AUTOIP", + "is_menuconfig": true, + "name": "LWIP_AUTOIP", + "range": null, + "title": "Enable IPV4 Link-Local Addressing (AUTOIP)", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_NETIF_LOOPBACK", + "help": "Configure the maximum number of packets which can be queued for\nloopback on a given interface. Reducing this number may cause packets\nto be dropped, but will avoid filling memory with queued packet data.", + "id": "LWIP_LOOPBACK_MAX_PBUFS", + "name": "LWIP_LOOPBACK_MAX_PBUFS", + "range": [ + 0, + 16 + ], + "title": "Max queued loopback packets per interface", + "type": "int" + } + ], + "depends_on": null, + "help": "Enabling this option means that if a packet is sent with a destination\naddress equal to the interface's own IP address, it will \"loop back\" and\nbe received by this interface.", + "id": "LWIP_NETIF_LOOPBACK", + "is_menuconfig": true, + "name": "LWIP_NETIF_LOOPBACK", + "range": null, + "title": "Support per-interface loopback", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "The maximum number of simultaneously active TCP\nconnections. The practical maximum limit is\ndetermined by available heap memory at runtime.\n\nChanging this value by itself does not substantially\nchange the memory usage of LWIP, except for preventing\nnew TCP connections after the limit is reached.", + "id": "LWIP_MAX_ACTIVE_TCP", + "name": "LWIP_MAX_ACTIVE_TCP", + "range": [ + 1, + 1024 + ], + "title": "Maximum active TCP Connections", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "The maximum number of simultaneously listening TCP\nconnections. The practical maximum limit is\ndetermined by available heap memory at runtime.\n\nChanging this value by itself does not substantially\nchange the memory usage of LWIP, except for preventing\nnew listening TCP connections after the limit is reached.", + "id": "LWIP_MAX_LISTENING_TCP", + "name": "LWIP_MAX_LISTENING_TCP", + "range": [ + 1, + 1024 + ], + "title": "Maximum listening TCP Connections", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Set maximum number of retransmissions of data segments.", + "id": "LWIP_TCP_MAXRTX", + "name": "LWIP_TCP_MAXRTX", + "range": [ + 3, + 12 + ], + "title": "Maximum number of retransmissions of data segments", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Set maximum number of retransmissions of SYN segments.", + "id": "LWIP_TCP_SYNMAXRTX", + "name": "LWIP_TCP_SYNMAXRTX", + "range": [ + 3, + 12 + ], + "title": "Maximum number of retransmissions of SYN segments", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Set maximum segment size for TCP transmission.\n\nCan be set lower to save RAM, the default value 1460(ipv4)/1440(ipv6) will give best throughput.\nIPv4 TCP_MSS Range: 576 <= TCP_MSS <= 1460\nIPv6 TCP_MSS Range: 1220<= TCP_mSS <= 1440", + "id": "LWIP_TCP_MSS", + "name": "LWIP_TCP_MSS", + "range": [ + 536, + 1460 + ], + "title": "Maximum Segment Size (MSS)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Set TCP timer interval in milliseconds.\n\nCan be used to speed connections on bad networks.\nA lower value will redeliver unacked packets faster.", + "id": "LWIP_TCP_TMR_INTERVAL", + "name": "LWIP_TCP_TMR_INTERVAL", + "range": null, + "title": "TCP timer interval(ms)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Set maximum segment lifetime in in milliseconds.", + "id": "LWIP_TCP_MSL", + "name": "LWIP_TCP_MSL", + "range": null, + "title": "Maximum segment lifetime (MSL)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Set default send buffer size for new TCP sockets.\n\nPer-socket send buffer size can be changed at runtime\nwith lwip_setsockopt(s, TCP_SNDBUF, ...).\n\nThis value must be at least 2x the MSS size, and the default\nis 4x the default MSS size.\n\nSetting a smaller default SNDBUF size can save some RAM, but\nwill decrease performance.", + "id": "LWIP_TCP_SND_BUF_DEFAULT", + "name": "LWIP_TCP_SND_BUF_DEFAULT", + "range": [ + 2440, + 65535 + ], + "title": "Default send buffer size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Set default TCP receive window size for new TCP sockets.\n\nPer-socket receive window size can be changed at runtime\nwith lwip_setsockopt(s, TCP_WINDOW, ...).\n\nSetting a smaller default receive window size can save some RAM,\nbut will significantly decrease performance.", + "id": "LWIP_TCP_WND_DEFAULT", + "name": "LWIP_TCP_WND_DEFAULT", + "range": [ + 2440, + 65535 + ], + "title": "Default receive window size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Set TCP receive mail box size. Generally bigger value means higher throughput\nbut more memory. The recommended value is: LWIP_TCP_WND_DEFAULT/TCP_MSS + 2, e.g. if\nLWIP_TCP_WND_DEFAULT=14360, TCP_MSS=1436, then the recommended receive mail box size is\n(14360/1436 + 2) = 12.\n\nTCP receive mail box is a per socket mail box, when the application receives packets\nfrom TCP socket, LWIP core firstly posts the packets to TCP receive mail box and the\napplication then fetches the packets from mail box. It means LWIP can caches maximum\nLWIP_TCP_RECCVMBOX_SIZE packets for each TCP socket, so the maximum possible cached TCP packets\nfor all TCP sockets is LWIP_TCP_RECCVMBOX_SIZE multiples the maximum TCP socket number. In other\nwords, the bigger LWIP_TCP_RECVMBOX_SIZE means more memory.\nOn the other hand, if the receiv mail box is too small, the mail box may be full. If the\nmail box is full, the LWIP drops the packets. So generally we need to make sure the TCP\nreceive mail box is big enough to avoid packet drop between LWIP core and application.", + "id": "LWIP_TCP_RECVMBOX_SIZE", + "name": "LWIP_TCP_RECVMBOX_SIZE", + "range": [ + 6, + 64 + ], + "title": "Default TCP receive mail box size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Queue incoming out-of-order segments for later use.\n\nDisable this option to save some RAM during TCP sessions, at the expense\nof increased retransmissions if segments arrive out of order.", + "id": "LWIP_TCP_QUEUE_OOSEQ", + "name": "LWIP_TCP_QUEUE_OOSEQ", + "range": null, + "title": "Queue incoming out-of-order segments", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "TCP will support sending selective acknowledgements (SACKs).", + "id": "LWIP_TCP_SACK_OUT", + "name": "LWIP_TCP_SACK_OUT", + "range": null, + "title": "Support sending selective acknowledgements", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This option is enabled when the following scenario happen:\nnetwork dropped and reconnected, IP changes is like: 192.168.0.2->0.0.0.0->192.168.0.2\n\nDisable this option to keep consistent with the original LWIP code behavior.", + "id": "LWIP_TCP_KEEP_CONNECTION_WHEN_IP_CHANGES", + "name": "LWIP_TCP_KEEP_CONNECTION_WHEN_IP_CHANGES", + "range": null, + "title": "Keep TCP connections when IP changed", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_TCP_OVERSIZE_MSS", + "name": "LWIP_TCP_OVERSIZE_MSS", + "range": null, + "title": "MSS", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_TCP_OVERSIZE_QUARTER_MSS", + "name": "LWIP_TCP_OVERSIZE_QUARTER_MSS", + "range": null, + "title": "25% MSS", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_TCP_OVERSIZE_DISABLE", + "name": "LWIP_TCP_OVERSIZE_DISABLE", + "range": null, + "title": "Disabled", + "type": "bool" + } + ], + "depends_on": null, + "help": "Allows enabling \"oversize\" allocation of TCP transmission pbufs ahead of time,\nwhich can reduce the length of pbuf chains used for transmission.\n\nThis will not make a difference to sockets where Nagle's algorithm\nis disabled.\n\nDefault value of MSS is fine for most applications, 25% MSS may save\nsome RAM when only transmitting small amounts of data. Disabled will\nhave worst performance and fragmentation characteristics, but uses\nleast RAM overall.", + "id": "component-config-lwip-tcp-pre-allocate-transmit-pbuf-size", + "name": "LWIP_TCP_OVERSIZE", + "title": "Pre-allocate transmit PBUF size", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_WND_SCALE", + "help": "Enable this feature to support TCP window scaling.", + "id": "LWIP_TCP_RCV_SCALE", + "name": "LWIP_TCP_RCV_SCALE", + "range": null, + "title": "Set TCP receiving window scaling factor", + "type": "int" + } + ], + "depends_on": "SPIRAM_TRY_ALLOCATE_WIFI_LWIP", + "help": "Enable this feature to support TCP window scaling.", + "id": "LWIP_WND_SCALE", + "name": "LWIP_WND_SCALE", + "range": null, + "title": "Support TCP window scale", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-lwip-tcp", + "title": "TCP", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "The maximum number of active UDP \"connections\" (ie\nUDP sockets sending/receiving data).\nThe practical maximum limit is determined by available\nheap memory at runtime.", + "id": "LWIP_MAX_UDP_PCBS", + "name": "LWIP_MAX_UDP_PCBS", + "range": [ + 1, + 1024 + ], + "title": "Maximum active UDP control blocks", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Set UDP receive mail box size. The recommended value is 6.\n\nUDP receive mail box is a per socket mail box, when the application receives packets\nfrom UDP socket, LWIP core firstly posts the packets to UDP receive mail box and the\napplication then fetches the packets from mail box. It means LWIP can caches maximum\nUDP_RECCVMBOX_SIZE packets for each UDP socket, so the maximum possible cached UDP packets\nfor all UDP sockets is UDP_RECCVMBOX_SIZE multiples the maximum UDP socket number. In other\nwords, the bigger UDP_RECVMBOX_SIZE means more memory.\nOn the other hand, if the receiv mail box is too small, the mail box may be full. If the\nmail box is full, the LWIP drops the packets. So generally we need to make sure the UDP\nreceive mail box is big enough to avoid packet drop between LWIP core and application.", + "id": "LWIP_UDP_RECVMBOX_SIZE", + "name": "LWIP_UDP_RECVMBOX_SIZE", + "range": [ + 6, + 64 + ], + "title": "Default UDP receive mail box size", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-lwip-udp", + "title": "UDP", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "Configure TCP/IP task stack size, used by LWIP to process multi-threaded TCP/IP operations.\nSetting this stack too small will result in stack overflow crashes.", + "id": "LWIP_TCPIP_TASK_STACK_SIZE", + "name": "LWIP_TCPIP_TASK_STACK_SIZE", + "range": [ + 2048, + 65536 + ], + "title": "TCP/IP Task Stack Size", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY", + "name": "LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY", + "range": null, + "title": "No affinity", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LWIP_TCPIP_TASK_AFFINITY_CPU0", + "name": "LWIP_TCPIP_TASK_AFFINITY_CPU0", + "range": null, + "title": "CPU0", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ", + "help": null, + "id": "LWIP_TCPIP_TASK_AFFINITY_CPU1", + "name": "LWIP_TCPIP_TASK_AFFINITY_CPU1", + "range": null, + "title": "CPU1", + "type": "bool" + } + ], + "depends_on": null, + "help": "Allows setting LwIP tasks affinity, i.e. whether the task is pinned to\nCPU0, pinned to CPU1, or allowed to run on any CPU.\nCurrently this applies to \"TCP/IP\" task and \"Ping\" task.", + "id": "component-config-lwip-tcp-ip-task-affinity", + "name": "LWIP_TCPIP_TASK_AFFINITY", + "title": "TCP/IP task affinity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LWIP_TCPIP_TASK_AFFINITY", + "name": "LWIP_TCPIP_TASK_AFFINITY", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [ + { + "children": [], + "depends_on": "LWIP_PPP_SUPPORT", + "help": "Enable to set a callback which is called on change of the internal PPP state machine.", + "id": "LWIP_PPP_NOTIFY_PHASE_SUPPORT", + "name": "LWIP_PPP_NOTIFY_PHASE_SUPPORT", + "range": null, + "title": "Enable Notify Phase Callback", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_PPP_SUPPORT", + "help": "Enable Password Authentication Protocol (PAP) support", + "id": "LWIP_PPP_PAP_SUPPORT", + "name": "LWIP_PPP_PAP_SUPPORT", + "range": null, + "title": "Enable PAP support", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_PPP_SUPPORT", + "help": "Enable Challenge Handshake Authentication Protocol (CHAP) support", + "id": "LWIP_PPP_CHAP_SUPPORT", + "name": "LWIP_PPP_CHAP_SUPPORT", + "range": null, + "title": "Enable CHAP support", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_PPP_SUPPORT", + "help": "Enable Microsoft version of the Challenge-Handshake Authentication Protocol (MSCHAP) support", + "id": "LWIP_PPP_MSCHAP_SUPPORT", + "name": "LWIP_PPP_MSCHAP_SUPPORT", + "range": null, + "title": "Enable MSCHAP support", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_PPP_SUPPORT", + "help": "Enable Microsoft Point-to-Point Encryption (MPPE) support", + "id": "LWIP_PPP_MPPE_SUPPORT", + "name": "LWIP_PPP_MPPE_SUPPORT", + "range": null, + "title": "Enable MPPE support", + "type": "bool" + }, + { + "children": [], + "depends_on": "LWIP_PPP_SUPPORT", + "help": "Enable PPP debug log output", + "id": "LWIP_PPP_DEBUG_ON", + "name": "LWIP_PPP_DEBUG_ON", + "range": null, + "title": "Enable PPP debug log output", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enable PPP stack. Now only PPP over serial is possible.\n\nPPP over serial support is experimental and unsupported.", + "id": "LWIP_PPP_SUPPORT", + "is_menuconfig": true, + "name": "LWIP_PPP_SUPPORT", + "range": null, + "title": "Enable PPP support (new/experimental)", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "LWIP_MULTICAST_PING", + "name": "LWIP_MULTICAST_PING", + "range": null, + "title": "Respond to multicast pings", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LWIP_BROADCAST_PING", + "name": "LWIP_BROADCAST_PING", + "range": null, + "title": "Respond to broadcast pings", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-lwip-icmp", + "title": "ICMP", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "The maximum number of simultaneously active LWIP\nRAW protocol control blocks. The practical maximum\nlimit is determined by available heap memory at runtime.", + "id": "LWIP_MAX_RAW_PCBS", + "name": "LWIP_MAX_RAW_PCBS", + "range": [ + 1, + 1024 + ], + "title": "Maximum LWIP RAW PCBs", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-lwip-lwip-raw-api", + "title": "LWIP RAW API", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Set maximum number of NTP servers used by LwIP SNTP module.\nFirst argument of sntp_setserver/sntp_setservername functions\nis limited to this value.", + "id": "LWIP_DHCP_MAX_NTP_SERVERS", + "name": "LWIP_DHCP_MAX_NTP_SERVERS", + "range": [ + 1, + 16 + ], + "title": "Maximum number of NTP servers", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "This option allows you to set the time update period via SNTP.\nDefault is 1 hour. Must not be below 15 seconds by specification.\n(SNTPv4 RFC 4330 enforces a minimum update time of 15 seconds).", + "id": "LWIP_SNTP_UPDATE_DELAY", + "name": "LWIP_SNTP_UPDATE_DELAY", + "range": [ + 15000, + 4294967295 + ], + "title": "Request interval to update time (ms)", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-lwip-sntp", + "title": "SNTP", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-lwip", + "title": "LWIP", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_INTERNAL_MEM_ALLOC", + "name": "MBEDTLS_INTERNAL_MEM_ALLOC", + "range": null, + "title": "Internal memory", + "type": "bool" + }, + { + "children": [], + "depends_on": "ESP32_SPIRAM_SUPPORT && ", + "help": null, + "id": "MBEDTLS_EXTERNAL_MEM_ALLOC", + "name": "MBEDTLS_EXTERNAL_MEM_ALLOC", + "range": null, + "title": "External SPIRAM", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_DEFAULT_MEM_ALLOC", + "name": "MBEDTLS_DEFAULT_MEM_ALLOC", + "range": null, + "title": "Default alloc mode", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_CUSTOM_MEM_ALLOC", + "name": "MBEDTLS_CUSTOM_MEM_ALLOC", + "range": null, + "title": "Custom alloc mode", + "type": "bool" + } + ], + "depends_on": null, + "help": "Allocation strategy for mbedTLS, essentially provides ability to\nallocate all required dynamic allocations from,\n\n- Internal DRAM memory only\n- External SPIRAM memory only\n- Either internal or external memory based on default malloc()\n behavior in ESP-IDF\n- Custom allocation mode, by overwriting calloc()/free() using\n mbedtls_platform_set_calloc_free() function\n\nRecommended mode here is always internal, since that is most preferred\nfrom security perspective. But if application requirement does not\nallow sufficient free internal memory then alternate mode can be\nselected.", + "id": "component-config-mbedtls-memory-allocation-strategy", + "name": "MBEDTLS_MEM_ALLOC_MODE", + "title": "Memory allocation strategy", + "type": "choice" + }, + { + "children": [], + "depends_on": "!MBEDTLS_ASYMMETRIC_CONTENT_LEN", + "help": "Maximum TLS message length (in bytes) supported by mbedTLS.\n\n16384 is the default and this value is required to comply\nfully with TLS standards.\n\nHowever you can set a lower value in order to save RAM. This\nis safe if the other end of the connection supports Maximum\nFragment Length Negotiation Extension (max_fragment_length,\nsee RFC6066) or you know for certain that it will never send a\nmessage longer than a certain number of bytes.\n\nIf the value is set too low, symptoms are a failed TLS\nhandshake or a return value of MBEDTLS_ERR_SSL_INVALID_RECORD\n(-0x7200).", + "id": "MBEDTLS_SSL_MAX_CONTENT_LEN", + "name": "MBEDTLS_SSL_MAX_CONTENT_LEN", + "range": null, + "title": "TLS maximum message content length", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_ASYMMETRIC_CONTENT_LEN", + "help": "This defines maximum incoming fragment length, overriding default\nmaximum content length (MBEDTLS_SSL_MAX_CONTENT_LEN).", + "id": "MBEDTLS_SSL_IN_CONTENT_LEN", + "name": "MBEDTLS_SSL_IN_CONTENT_LEN", + "range": [ + 512, + 16384 + ], + "title": "TLS maximum incoming fragment length", + "type": "int" + }, + { + "children": [], + "depends_on": "MBEDTLS_ASYMMETRIC_CONTENT_LEN", + "help": "This defines maximum outgoing fragment length, overriding default\nmaximum content length (MBEDTLS_SSL_MAX_CONTENT_LEN).", + "id": "MBEDTLS_SSL_OUT_CONTENT_LEN", + "name": "MBEDTLS_SSL_OUT_CONTENT_LEN", + "range": [ + 512, + 16384 + ], + "title": "TLS maximum outgoing fragment length", + "type": "int" + } + ], + "depends_on": null, + "help": "If enabled, this option allows customizing TLS in/out fragment length\nin asymmetric way. Please note that enabling this with default values\nsaves 12KB of dynamic memory per TLS connection.", + "id": "MBEDTLS_ASYMMETRIC_CONTENT_LEN", + "name": "MBEDTLS_ASYMMETRIC_CONTENT_LEN", + "range": null, + "title": "Asymmetric in/out fragment length", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_DEBUG_LEVEL_WARN", + "name": "MBEDTLS_DEBUG_LEVEL_WARN", + "range": null, + "title": "Warning", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_DEBUG_LEVEL_INFO", + "name": "MBEDTLS_DEBUG_LEVEL_INFO", + "range": null, + "title": "Info", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_DEBUG_LEVEL_DEBUG", + "name": "MBEDTLS_DEBUG_LEVEL_DEBUG", + "range": null, + "title": "Debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_DEBUG_LEVEL_VERBOSE", + "name": "MBEDTLS_DEBUG_LEVEL_VERBOSE", + "range": null, + "title": "Verbose", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_DEBUG", + "help": "Set mbedTLS debugging level", + "id": "component-config-mbedtls-enable-mbedtls-debugging-set-mbedtls-debugging-level", + "name": "MBEDTLS_DEBUG_LEVEL", + "title": "Set mbedTLS debugging level", + "type": "choice" + } + ], + "depends_on": null, + "help": "Enable mbedTLS debugging functions at compile time.\n\nIf this option is enabled, you can include\n\"mbedtls/esp_debug.h\" and call mbedtls_esp_enable_debug_log()\nat runtime in order to enable mbedTLS debug output via the ESP\nlog mechanism.", + "id": "MBEDTLS_DEBUG", + "name": "MBEDTLS_DEBUG", + "range": null, + "title": "Enable mbedTLS debugging", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MBEDTLS_DEBUG_LEVEL", + "name": "MBEDTLS_DEBUG_LEVEL", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Enable \"non-blocking\" ECC operations that can return early and be resumed.", + "id": "MBEDTLS_ECP_RESTARTABLE", + "name": "MBEDTLS_ECP_RESTARTABLE", + "range": null, + "title": "Enable mbedTLS ecp restartable", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable the CMAC (Cipher-based Message Authentication Code) mode for\nblock ciphers.", + "id": "MBEDTLS_CMAC_C", + "name": "MBEDTLS_CMAC_C", + "range": null, + "title": "Enable CMAC mode for block ciphers", + "type": "bool" + }, + { + "children": [], + "depends_on": "!IDF_TARGET_ESP32S2", + "help": "Enable hardware accelerated AES encryption & decryption.\n\nNote that if the ESP32 CPU is running at 240MHz, hardware AES does not\noffer any speed boost over software AES.", + "id": "MBEDTLS_HARDWARE_AES", + "name": "MBEDTLS_HARDWARE_AES", + "range": null, + "title": "Enable hardware AES acceleration", + "type": "bool" + }, + { + "children": [], + "depends_on": "!IDF_TARGET_ESP32S2", + "help": "Enable hardware accelerated multiple precision integer operations.\n\nHardware accelerated multiplication, modulo multiplication,\nand modular exponentiation for up to 4096 bit results.\n\nThese operations are used by RSA.", + "id": "MBEDTLS_HARDWARE_MPI", + "name": "MBEDTLS_HARDWARE_MPI", + "range": null, + "title": "Enable hardware MPI (bignum) acceleration", + "type": "bool" + }, + { + "children": [], + "depends_on": "!IDF_TARGET_ESP32S2", + "help": "Enable hardware accelerated SHA1, SHA256, SHA384 & SHA512 in mbedTLS.\n\nDue to a hardware limitation, hardware acceleration is only\nguaranteed if SHA digests are calculated one at a time. If more\nthan one SHA digest is calculated at the same time, one will\nbe calculated fully in hardware and the rest will be calculated\n(at least partially calculated) in software. This happens automatically.\n\nSHA hardware acceleration is faster than software in some situations but\nslower in others. You should benchmark to find the best setting for you.", + "id": "MBEDTLS_HARDWARE_SHA", + "name": "MBEDTLS_HARDWARE_SHA", + "range": null, + "title": "Enable hardware SHA acceleration", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_HAVE_TIME", + "help": "System has time.h and time(), gmtime() and the clock is correct.\nThe time needs to be correct (not necesarily very accurate, but at least\nthe date should be correct). This is used to verify the validity period of\nX.509 certificates.\n\nIt is suggested that you should get the real time by \"SNTP\".", + "id": "MBEDTLS_HAVE_TIME_DATE", + "name": "MBEDTLS_HAVE_TIME_DATE", + "range": null, + "title": "Enable mbedtls certificate expiry check", + "type": "bool" + } + ], + "depends_on": "!ESP32_TIME_SYSCALL_USE_NONE", + "help": "System has time.h and time().\nThe time does not need to be correct, only time differences are used.", + "id": "MBEDTLS_HAVE_TIME", + "name": "MBEDTLS_HAVE_TIME", + "range": null, + "title": "Enable mbedtls time", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_TLS_SERVER_AND_CLIENT", + "name": "MBEDTLS_TLS_SERVER_AND_CLIENT", + "range": null, + "title": "Server & Client", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_TLS_SERVER_ONLY", + "name": "MBEDTLS_TLS_SERVER_ONLY", + "range": null, + "title": "Server", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_TLS_CLIENT_ONLY", + "name": "MBEDTLS_TLS_CLIENT_ONLY", + "range": null, + "title": "Client", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_TLS_DISABLED", + "name": "MBEDTLS_TLS_DISABLED", + "range": null, + "title": "None", + "type": "bool" + } + ], + "depends_on": null, + "help": "mbedTLS can be compiled with protocol support for the TLS\nserver, TLS client, or both server and client.\n\nReducing the number of TLS roles supported saves code size.", + "id": "component-config-mbedtls-tls-protocol-role", + "name": "MBEDTLS_TLS_MODE", + "title": "TLS Protocol Role", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MBEDTLS_TLS_SERVER", + "name": "MBEDTLS_TLS_SERVER", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MBEDTLS_TLS_CLIENT", + "name": "MBEDTLS_TLS_CLIENT", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MBEDTLS_TLS_ENABLED", + "name": "MBEDTLS_TLS_ENABLED", + "range": null, + "title": null, + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_PSK_MODES && MBEDTLS_TLS_ENABLED", + "help": "Enable to support symmetric key PSK (pre-shared-key) TLS key exchange modes.", + "id": "MBEDTLS_KEY_EXCHANGE_PSK", + "name": "MBEDTLS_KEY_EXCHANGE_PSK", + "range": null, + "title": "Enable PSK based ciphersuite modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_PSK_MODES && MBEDTLS_TLS_ENABLED", + "help": "Enable to support Diffie-Hellman PSK (pre-shared-key) TLS authentication modes.", + "id": "MBEDTLS_KEY_EXCHANGE_DHE_PSK", + "name": "MBEDTLS_KEY_EXCHANGE_DHE_PSK", + "range": null, + "title": "Enable DHE-PSK based ciphersuite modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_PSK_MODES && MBEDTLS_ECDH_C && MBEDTLS_TLS_ENABLED", + "help": "Enable to support Elliptic-Curve-Diffie-Hellman PSK (pre-shared-key) TLS authentication modes.", + "id": "MBEDTLS_KEY_EXCHANGE_ECDHE_PSK", + "name": "MBEDTLS_KEY_EXCHANGE_ECDHE_PSK", + "range": null, + "title": "Enable ECDHE-PSK based ciphersuite modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_PSK_MODES && MBEDTLS_TLS_ENABLED", + "help": "Enable to support RSA PSK (pre-shared-key) TLS authentication modes.", + "id": "MBEDTLS_KEY_EXCHANGE_RSA_PSK", + "name": "MBEDTLS_KEY_EXCHANGE_RSA_PSK", + "range": null, + "title": "Enable RSA-PSK based ciphersuite modes", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_TLS_ENABLED", + "help": "Enable to show configuration for different types of pre-shared-key TLS authentatication methods.\n\nLeaving this options disabled will save code size if they are not used.", + "id": "MBEDTLS_PSK_MODES", + "name": "MBEDTLS_PSK_MODES", + "range": null, + "title": "Enable pre-shared-key ciphersuites", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED", + "help": "Enable to support ciphersuites with prefix TLS-RSA-WITH-", + "id": "MBEDTLS_KEY_EXCHANGE_RSA", + "name": "MBEDTLS_KEY_EXCHANGE_RSA", + "range": null, + "title": "Enable RSA-only based ciphersuite modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED", + "help": "Enable to support ciphersuites with prefix TLS-DHE-RSA-WITH-", + "id": "MBEDTLS_KEY_EXCHANGE_DHE_RSA", + "name": "MBEDTLS_KEY_EXCHANGE_DHE_RSA", + "range": null, + "title": "Enable DHE-RSA based ciphersuite modes", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE && MBEDTLS_ECDH_C && MBEDTLS_TLS_ENABLED", + "help": "Enable to support ciphersuites with prefix TLS-ECDHE-RSA-WITH-", + "id": "MBEDTLS_KEY_EXCHANGE_ECDHE_RSA", + "name": "MBEDTLS_KEY_EXCHANGE_ECDHE_RSA", + "range": null, + "title": "Enable ECDHE-RSA based ciphersuite modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE && MBEDTLS_ECDH_C && MBEDTLS_ECDSA_C && MBEDTLS_TLS_ENABLED", + "help": "Enable to support ciphersuites with prefix TLS-ECDHE-RSA-WITH-", + "id": "MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA", + "name": "MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA", + "range": null, + "title": "Enable ECDHE-ECDSA based ciphersuite modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE && MBEDTLS_ECDH_C && MBEDTLS_ECDSA_C && MBEDTLS_TLS_ENABLED", + "help": "Enable to support ciphersuites with prefix TLS-ECDHE-RSA-WITH-", + "id": "MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA", + "name": "MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA", + "range": null, + "title": "Enable ECDH-ECDSA based ciphersuite modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE && MBEDTLS_ECDH_C && MBEDTLS_TLS_ENABLED", + "help": "Enable to support ciphersuites with prefix TLS-ECDHE-RSA-WITH-", + "id": "MBEDTLS_KEY_EXCHANGE_ECDH_RSA", + "name": "MBEDTLS_KEY_EXCHANGE_ECDH_RSA", + "range": null, + "title": "Enable ECDH-RSA based ciphersuite modes", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_ECP_C && MBEDTLS_TLS_ENABLED", + "help": "Enable to show Elliptic Curve based ciphersuite mode options.\n\nDisabling all Elliptic Curve ciphersuites saves code size and\ncan give slightly faster TLS handshakes, provided the server supports\nRSA-only ciphersuite modes.", + "id": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE", + "name": "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE", + "range": null, + "title": "Support Elliptic Curve based ciphersuites", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_TLS_ENABLED", + "id": "component-config-mbedtls-tls-key-exchange-methods", + "title": "TLS Key Exchange Methods", + "type": "menu" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED", + "help": "The two main uses of renegotiation are (1) refresh keys on long-lived\nconnections and (2) client authentication after the initial handshake.\nIf you don't need renegotiation, disabling it will save code size and\nreduce the possibility of abuse/vulnerability.", + "id": "MBEDTLS_SSL_RENEGOTIATION", + "name": "MBEDTLS_SSL_RENEGOTIATION", + "range": null, + "title": "Support TLS renegotiation", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED", + "help": "Support the legacy SSL 3.0 protocol. Most servers will speak a newer\nTLS protocol these days.", + "id": "MBEDTLS_SSL_PROTO_SSL3", + "name": "MBEDTLS_SSL_PROTO_SSL3", + "range": null, + "title": "Legacy SSL 3.0 support", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED", + "help": null, + "id": "MBEDTLS_SSL_PROTO_TLS1", + "name": "MBEDTLS_SSL_PROTO_TLS1", + "range": null, + "title": "Support TLS 1.0 protocol", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED", + "help": null, + "id": "MBEDTLS_SSL_PROTO_TLS1_1", + "name": "MBEDTLS_SSL_PROTO_TLS1_1", + "range": null, + "title": "Support TLS 1.1 protocol", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED", + "help": null, + "id": "MBEDTLS_SSL_PROTO_TLS1_2", + "name": "MBEDTLS_SSL_PROTO_TLS1_2", + "range": null, + "title": "Support TLS 1.2 protocol", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_SSL_PROTO_TLS1_1 || MBEDTLS_SSL_PROTO_TLS1_2", + "help": "Requires TLS 1.1 to be enabled for DTLS 1.0\nRequires TLS 1.2 to be enabled for DTLS 1.2", + "id": "MBEDTLS_SSL_PROTO_DTLS", + "name": "MBEDTLS_SSL_PROTO_DTLS", + "range": null, + "title": "Support DTLS protocol (all versions)", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED", + "help": "Disabling this option will save some code size if it is not needed.", + "id": "MBEDTLS_SSL_ALPN", + "name": "MBEDTLS_SSL_ALPN", + "range": null, + "title": "Support ALPN (Application Layer Protocol Negotiation)", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED", + "help": "Client support for RFC 5077 session tickets. See mbedTLS documentation for more details.\nDisabling this option will save some code size.", + "id": "MBEDTLS_CLIENT_SSL_SESSION_TICKETS", + "name": "MBEDTLS_CLIENT_SSL_SESSION_TICKETS", + "range": null, + "title": "TLS: Client Support for RFC 5077 SSL session tickets", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_TLS_ENABLED", + "help": "Server support for RFC 5077 session tickets. See mbedTLS documentation for more details.\nDisabling this option will save some code size.", + "id": "MBEDTLS_SERVER_SSL_SESSION_TICKETS", + "name": "MBEDTLS_SERVER_SSL_SESSION_TICKETS", + "range": null, + "title": "TLS: Server Support for RFC 5077 SSL session tickets", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "MBEDTLS_AES_C", + "name": "MBEDTLS_AES_C", + "range": null, + "title": "AES block cipher", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MBEDTLS_CAMELLIA_C", + "name": "MBEDTLS_CAMELLIA_C", + "range": null, + "title": "Camellia block cipher", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enables the DES block cipher to support 3DES-based TLS ciphersuites.\n\n3DES is vulnerable to the Sweet32 attack and should only be enabled\nif absolutely necessary.", + "id": "MBEDTLS_DES_C", + "name": "MBEDTLS_DES_C", + "range": null, + "title": "DES block cipher (legacy, insecure)", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_RC4_DISABLED", + "name": "MBEDTLS_RC4_DISABLED", + "range": null, + "title": "Disabled", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_RC4_ENABLED_NO_DEFAULT", + "name": "MBEDTLS_RC4_ENABLED_NO_DEFAULT", + "range": null, + "title": "Enabled, not in default ciphersuites", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MBEDTLS_RC4_ENABLED", + "name": "MBEDTLS_RC4_ENABLED", + "range": null, + "title": "Enabled", + "type": "bool" + } + ], + "depends_on": null, + "help": "ARCFOUR (RC4) stream cipher can be disabled entirely, enabled but not\nadded to default ciphersuites, or enabled completely.\n\nPlease consider the security implications before enabling RC4.", + "id": "component-config-mbedtls-symmetric-ciphers-rc4-stream-cipher-legacy-insecure-", + "name": "MBEDTLS_RC4_MODE", + "title": "RC4 Stream Cipher (legacy, insecure)", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "Enables the Blowfish block cipher (not used for TLS sessions.)\n\nThe Blowfish cipher is not used for mbedTLS TLS sessions but can be\nused for other purposes. Read up on the limitations of Blowfish (including\nSweet32) before enabling.", + "id": "MBEDTLS_BLOWFISH_C", + "name": "MBEDTLS_BLOWFISH_C", + "range": null, + "title": "Blowfish block cipher (read help)", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enables the XTEA block cipher.", + "id": "MBEDTLS_XTEA_C", + "name": "MBEDTLS_XTEA_C", + "range": null, + "title": "XTEA block cipher", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_AES_C || MBEDTLS_CAMELLIA_C", + "help": "Enable Counter with CBC-MAC (CCM) modes for AES and/or Camellia ciphers.\n\nDisabling this option saves some code size.", + "id": "MBEDTLS_CCM_C", + "name": "MBEDTLS_CCM_C", + "range": null, + "title": "CCM (Counter with CBC-MAC) block cipher modes", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_AES_C || MBEDTLS_CAMELLIA_C", + "help": "Enable Galois/Counter Mode for AES and/or Camellia ciphers.\n\nThis option is generally faster than CCM.", + "id": "MBEDTLS_GCM_C", + "name": "MBEDTLS_GCM_C", + "range": null, + "title": "GCM (Galois/Counter) block cipher modes", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-mbedtls-symmetric-ciphers", + "title": "Symmetric Ciphers", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "Enable the RIPEMD-160 hash algorithm.", + "id": "MBEDTLS_RIPEMD160_C", + "name": "MBEDTLS_RIPEMD160_C", + "range": null, + "title": "Enable RIPEMD-160 hash algorithm", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enable decoding/parsing of PEM formatted certificates.\n\nIf your certificates are all in the simpler DER format, disabling\nthis option will save some code size.", + "id": "MBEDTLS_PEM_PARSE_C", + "name": "MBEDTLS_PEM_PARSE_C", + "range": null, + "title": "Read & Parse PEM formatted certificates", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable writing of PEM formatted certificates.\n\nIf writing certificate data only in DER format, disabling this\noption will save some code size.", + "id": "MBEDTLS_PEM_WRITE_C", + "name": "MBEDTLS_PEM_WRITE_C", + "range": null, + "title": "Write PEM formatted certificates", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Support for parsing X.509 Certifificate Revocation Lists.", + "id": "MBEDTLS_X509_CRL_PARSE_C", + "name": "MBEDTLS_X509_CRL_PARSE_C", + "range": null, + "title": "X.509 CRL parsing", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Support for parsing X.509 Certifificate Signing Requests", + "id": "MBEDTLS_X509_CSR_PARSE_C", + "name": "MBEDTLS_X509_CSR_PARSE_C", + "range": null, + "title": "X.509 CSR parsing", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-mbedtls-certificates", + "title": "Certificates", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_ECDH_C", + "help": "Enable ECDSA. Needed to use ECDSA-xxx TLS ciphersuites.", + "id": "MBEDTLS_ECDSA_C", + "name": "MBEDTLS_ECDSA_C", + "range": null, + "title": "Elliptic Curve DSA", + "type": "bool" + } + ], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable ECDH. Needed to use ECDHE-xxx TLS ciphersuites.", + "id": "MBEDTLS_ECDH_C", + "name": "MBEDTLS_ECDH_C", + "range": null, + "title": "Elliptic Curve Diffie-Hellman (ECDH)", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable support for SECP192R1 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_SECP192R1_ENABLED", + "name": "MBEDTLS_ECP_DP_SECP192R1_ENABLED", + "range": null, + "title": "Enable SECP192R1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable support for SECP224R1 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_SECP224R1_ENABLED", + "name": "MBEDTLS_ECP_DP_SECP224R1_ENABLED", + "range": null, + "title": "Enable SECP224R1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable support for SECP256R1 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_SECP256R1_ENABLED", + "name": "MBEDTLS_ECP_DP_SECP256R1_ENABLED", + "range": null, + "title": "Enable SECP256R1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable support for SECP384R1 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_SECP384R1_ENABLED", + "name": "MBEDTLS_ECP_DP_SECP384R1_ENABLED", + "range": null, + "title": "Enable SECP384R1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable support for SECP521R1 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_SECP521R1_ENABLED", + "name": "MBEDTLS_ECP_DP_SECP521R1_ENABLED", + "range": null, + "title": "Enable SECP521R1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable support for SECP192K1 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_SECP192K1_ENABLED", + "name": "MBEDTLS_ECP_DP_SECP192K1_ENABLED", + "range": null, + "title": "Enable SECP192K1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable support for SECP224K1 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_SECP224K1_ENABLED", + "name": "MBEDTLS_ECP_DP_SECP224K1_ENABLED", + "range": null, + "title": "Enable SECP224K1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable support for SECP256K1 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_SECP256K1_ENABLED", + "name": "MBEDTLS_ECP_DP_SECP256K1_ENABLED", + "range": null, + "title": "Enable SECP256K1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "support for DP Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_BP256R1_ENABLED", + "name": "MBEDTLS_ECP_DP_BP256R1_ENABLED", + "range": null, + "title": "Enable BP256R1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "support for DP Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_BP384R1_ENABLED", + "name": "MBEDTLS_ECP_DP_BP384R1_ENABLED", + "range": null, + "title": "Enable BP384R1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "support for DP Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_BP512R1_ENABLED", + "name": "MBEDTLS_ECP_DP_BP512R1_ENABLED", + "range": null, + "title": "Enable BP512R1 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "Enable support for CURVE25519 Elliptic Curve.", + "id": "MBEDTLS_ECP_DP_CURVE25519_ENABLED", + "name": "MBEDTLS_ECP_DP_CURVE25519_ENABLED", + "range": null, + "title": "Enable CURVE25519 curve", + "type": "bool" + }, + { + "children": [], + "depends_on": "MBEDTLS_ECP_C", + "help": "NIST 'modulo p' optimisations increase Elliptic Curve operation performance.\n\nDisabling this option saves some code size.\n\n# end of Elliptic Curve options", + "id": "MBEDTLS_ECP_NIST_OPTIM", + "name": "MBEDTLS_ECP_NIST_OPTIM", + "range": null, + "title": "NIST 'modulo p' optimisations", + "type": "bool" + } + ], + "depends_on": null, + "help": null, + "id": "MBEDTLS_ECP_C", + "is_menuconfig": true, + "name": "MBEDTLS_ECP_C", + "range": null, + "title": "Elliptic Curve Ciphers", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "MBEDTLS_SECURITY_RISKS", + "help": "Allow the X.509 certificate parser to load certificates\nwith unsupported critical extensions", + "id": "MBEDTLS_ALLOW_UNSUPPORTED_CRITICAL_EXT", + "name": "MBEDTLS_ALLOW_UNSUPPORTED_CRITICAL_EXT", + "range": null, + "title": "X.509 CRT parsing with unsupported critical extensions", + "type": "bool" + } + ], + "depends_on": null, + "help": null, + "id": "MBEDTLS_SECURITY_RISKS", + "is_menuconfig": true, + "name": "MBEDTLS_SECURITY_RISKS", + "range": null, + "title": "Show configurations with potential security risks", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-mbedtls", + "title": "mbedTLS", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Services take up a certain amount of memory, and allowing fewer\nservices to be open at the same time conserves memory. Specify\nthe maximum amount of services here. The valid value is from 1\nto 64.", + "id": "MDNS_MAX_SERVICES", + "name": "MDNS_MAX_SERVICES", + "range": [ + 1, + 64 + ], + "title": "Max number of services", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Allows setting mDNS task priority. Please do not set the task priority\nhigher than priorities of system tasks. Compile time warning/error\nwould be emitted if the chosen task priority were too high.", + "id": "MDNS_TASK_PRIORITY", + "name": "MDNS_TASK_PRIORITY", + "range": [ + 1, + 255 + ], + "title": "mDNS task priority", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "MDNS_TASK_AFFINITY_NO_AFFINITY", + "name": "MDNS_TASK_AFFINITY_NO_AFFINITY", + "range": null, + "title": "No affinity", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MDNS_TASK_AFFINITY_CPU0", + "name": "MDNS_TASK_AFFINITY_CPU0", + "range": null, + "title": "CPU0", + "type": "bool" + }, + { + "children": [], + "depends_on": "!FREERTOS_UNICORE && ", + "help": null, + "id": "MDNS_TASK_AFFINITY_CPU1", + "name": "MDNS_TASK_AFFINITY_CPU1", + "range": null, + "title": "CPU1", + "type": "bool" + } + ], + "depends_on": null, + "help": "Allows setting mDNS tasks affinity, i.e. whether the task is pinned to\nCPU0, pinned to CPU1, or allowed to run on any CPU.", + "id": "component-config-mdns-mdns-task-affinity", + "name": "MDNS_TASK_AFFINITY", + "title": "mDNS task affinity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "MDNS_TASK_AFFINITY", + "name": "MDNS_TASK_AFFINITY", + "range": null, + "title": null, + "type": "hex" + }, + { + "children": [], + "depends_on": null, + "help": "Configures timeout for adding a new mDNS service. Adding a service\nfails if could not be completed within this time.", + "id": "MDNS_SERVICE_ADD_TIMEOUT_MS", + "name": "MDNS_SERVICE_ADD_TIMEOUT_MS", + "range": [ + 10, + 30000 + ], + "title": "mDNS adding service timeout (ms)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Configures period of mDNS timer, which periodically transmits packets\nand schedules mDNS searches.", + "id": "MDNS_TIMER_PERIOD_MS", + "name": "MDNS_TIMER_PERIOD_MS", + "range": [ + 10, + 10000 + ], + "title": "mDNS timer period (ms)", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-mdns", + "title": "mDNS", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "If not, this library will use MQTT protocol 3.1", + "id": "MQTT_PROTOCOL_311", + "name": "MQTT_PROTOCOL_311", + "range": null, + "title": "Enable MQTT protocol 3.1.1", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable MQTT transport over SSL with mbedtls", + "id": "MQTT_TRANSPORT_SSL", + "name": "MQTT_TRANSPORT_SSL", + "range": null, + "title": "Enable MQTT over SSL", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MQTT_TRANSPORT_WEBSOCKET && MQTT_TRANSPORT_SSL", + "help": "Enable MQTT transport over Websocket Secure.", + "id": "MQTT_TRANSPORT_WEBSOCKET_SECURE", + "name": "MQTT_TRANSPORT_WEBSOCKET_SECURE", + "range": null, + "title": "Enable MQTT over Websocket Secure", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enable MQTT transport over Websocket.", + "id": "MQTT_TRANSPORT_WEBSOCKET", + "name": "MQTT_TRANSPORT_WEBSOCKET", + "range": null, + "title": "Enable MQTT over Websocket", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "MQTT_USE_CUSTOM_CONFIG", + "help": "Default MQTT over TCP port", + "id": "MQTT_TCP_DEFAULT_PORT", + "name": "MQTT_TCP_DEFAULT_PORT", + "range": null, + "title": "Default MQTT over TCP port", + "type": "int" + }, + { + "children": [], + "depends_on": "MQTT_USE_CUSTOM_CONFIG && MQTT_TRANSPORT_SSL", + "help": "Default MQTT over SSL port", + "id": "MQTT_SSL_DEFAULT_PORT", + "name": "MQTT_SSL_DEFAULT_PORT", + "range": null, + "title": "Default MQTT over SSL port", + "type": "int" + }, + { + "children": [], + "depends_on": "MQTT_USE_CUSTOM_CONFIG && MQTT_TRANSPORT_WEBSOCKET", + "help": "Default MQTT over Websocket port", + "id": "MQTT_WS_DEFAULT_PORT", + "name": "MQTT_WS_DEFAULT_PORT", + "range": null, + "title": "Default MQTT over Websocket port", + "type": "int" + }, + { + "children": [], + "depends_on": "MQTT_USE_CUSTOM_CONFIG && MQTT_TRANSPORT_WEBSOCKET && MQTT_TRANSPORT_WEBSOCKET_SECURE", + "help": "Default MQTT over Websocket Secure port", + "id": "MQTT_WSS_DEFAULT_PORT", + "name": "MQTT_WSS_DEFAULT_PORT", + "range": null, + "title": "Default MQTT over Websocket Secure port", + "type": "int" + }, + { + "children": [], + "depends_on": "MQTT_USE_CUSTOM_CONFIG", + "help": "This buffer size using for both transmit and receive", + "id": "MQTT_BUFFER_SIZE", + "name": "MQTT_BUFFER_SIZE", + "range": null, + "title": "Default MQTT Buffer Size", + "type": "int" + }, + { + "children": [], + "depends_on": "MQTT_USE_CUSTOM_CONFIG", + "help": "MQTT task stack size", + "id": "MQTT_TASK_STACK_SIZE", + "name": "MQTT_TASK_STACK_SIZE", + "range": null, + "title": "MQTT task stack size", + "type": "int" + }, + { + "children": [], + "depends_on": "MQTT_USE_CUSTOM_CONFIG", + "help": "Default config employs API locks to protect internal structures. It is possible to disable\nthese locks if the user code doesn't access MQTT API from multiple concurrent tasks", + "id": "MQTT_DISABLE_API_LOCKS", + "name": "MQTT_DISABLE_API_LOCKS", + "range": null, + "title": "Disable API locks", + "type": "bool" + } + ], + "depends_on": null, + "help": "Custom MQTT configurations.", + "id": "MQTT_USE_CUSTOM_CONFIG", + "name": "MQTT_USE_CUSTOM_CONFIG", + "range": null, + "title": "MQTT Using custom configurations", + "type": "bool" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "MQTT_USE_CORE_0", + "name": "MQTT_USE_CORE_0", + "range": null, + "title": "Core 0", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "MQTT_USE_CORE_1", + "name": "MQTT_USE_CORE_1", + "range": null, + "title": "Core 1", + "type": "bool" + } + ], + "depends_on": "MQTT_TASK_CORE_SELECTION_ENABLED", + "help": null, + "id": "component-config-esp-mqtt-configurations-enable-mqtt-task-core-selection-core-to-use-", + "name": "MQTT_TASK_CORE_SELECTION", + "title": "Core to use ?", + "type": "choice" + } + ], + "depends_on": null, + "help": "This will enable core selection", + "id": "MQTT_TASK_CORE_SELECTION_ENABLED", + "name": "MQTT_TASK_CORE_SELECTION_ENABLED", + "range": null, + "title": "Enable MQTT task core selection", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Set to true if a specific implementation of message outbox is needed (e.g. persistant outbox in NVM or\nsimilar).", + "id": "MQTT_CUSTOM_OUTBOX", + "name": "MQTT_CUSTOM_OUTBOX", + "range": null, + "title": "Enable custom outbox implementation", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-esp-mqtt-configurations", + "title": "ESP-MQTT Configurations", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_STDOUT_LINE_ENDING_CRLF", + "name": "NEWLIB_STDOUT_LINE_ENDING_CRLF", + "range": null, + "title": "CRLF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_STDOUT_LINE_ENDING_LF", + "name": "NEWLIB_STDOUT_LINE_ENDING_LF", + "range": null, + "title": "LF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_STDOUT_LINE_ENDING_CR", + "name": "NEWLIB_STDOUT_LINE_ENDING_CR", + "range": null, + "title": "CR", + "type": "bool" + } + ], + "depends_on": null, + "help": "This option allows configuring the desired line endings sent to UART\nwhen a newline ('\\n', LF) appears on stdout.\nThree options are possible:\n\nCRLF: whenever LF is encountered, prepend it with CR\n\nLF: no modification is applied, stdout is sent as is\n\nCR: each occurence of LF is replaced with CR\n\nThis option doesn't affect behavior of the UART driver (drivers/uart.h).", + "id": "component-config-newlib-line-ending-for-uart-output", + "name": "NEWLIB_STDOUT_LINE_ENDING", + "title": "Line ending for UART output", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_STDIN_LINE_ENDING_CRLF", + "name": "NEWLIB_STDIN_LINE_ENDING_CRLF", + "range": null, + "title": "CRLF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_STDIN_LINE_ENDING_LF", + "name": "NEWLIB_STDIN_LINE_ENDING_LF", + "range": null, + "title": "LF", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "NEWLIB_STDIN_LINE_ENDING_CR", + "name": "NEWLIB_STDIN_LINE_ENDING_CR", + "range": null, + "title": "CR", + "type": "bool" + } + ], + "depends_on": null, + "help": "This option allows configuring which input sequence on UART produces\na newline ('\\n', LF) on stdin.\nThree options are possible:\n\nCRLF: CRLF is converted to LF\n\nLF: no modification is applied, input is sent to stdin as is\n\nCR: each occurence of CR is replaced with LF\n\nThis option doesn't affect behavior of the UART driver (drivers/uart.h).", + "id": "component-config-newlib-line-ending-for-uart-input", + "name": "NEWLIB_STDIN_LINE_ENDING", + "title": "Line ending for UART input", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "ESP32 ROM contains parts of newlib C library, including printf/scanf family\nof functions. These functions have been compiled with so-called \"nano\"\nformatting option. This option doesn't support 64-bit integer formats and C99\nfeatures, such as positional arguments.\n\nFor more details about \"nano\" formatting option, please see newlib readme file,\nsearch for '--enable-newlib-nano-formatted-io':\nhttps://sourceware.org/newlib/README\n\nIf this option is enabled, build system will use functions available in\nROM, reducing the application binary size. Functions available in ROM run\nfaster than functions which run from flash. Functions available in ROM can\nalso run when flash instruction cache is disabled.\n\nIf you need 64-bit integer formatting support or C99 features, keep this\noption disabled.", + "id": "NEWLIB_NANO_FORMAT", + "name": "NEWLIB_NANO_FORMAT", + "range": null, + "title": "Enable 'nano' formatting options for printf/scanf family", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-newlib", + "title": "Newlib", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": "SECURE_FLASH_ENC_ENABLED", + "help": "This option enables encryption for NVS. When enabled, AES-XTS is used to encrypt\nthe complete NVS data, except the page headers. It requires XTS encryption keys\nto be stored in an encrypted partition. This means enabling flash encryption is\na pre-requisite for this feature.", + "id": "NVS_ENCRYPTION", + "name": "NVS_ENCRYPTION", + "range": null, + "title": "Enable NVS encryption", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-nvs", + "title": "NVS", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "OPENSSL_DEBUG", + "help": "OpenSSL debugging level.\n\nOnly function whose debugging level is higher than \"OPENSSL_DEBUG_LEVEL\" works.\n\nFor example:\nIf OPENSSL_DEBUG_LEVEL = 2, you use function \"SSL_DEBUG(1, \"malloc failed\")\". Because 1 < 2, it will not\nprint.", + "id": "OPENSSL_DEBUG_LEVEL", + "name": "OPENSSL_DEBUG_LEVEL", + "range": null, + "title": "OpenSSL debugging level", + "type": "int" + }, + { + "children": [], + "depends_on": "OPENSSL_DEBUG", + "help": "If the option is enabled, low-level module debugging function of OpenSSL is enabled, e.g. mbedtls internal\ndebugging function.", + "id": "OPENSSL_LOWLEVEL_DEBUG", + "name": "OPENSSL_LOWLEVEL_DEBUG", + "range": null, + "title": "Enable OpenSSL low-level module debugging", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enable OpenSSL debugging function.\n\nIf the option is enabled, \"SSL_DEBUG\" works.", + "id": "OPENSSL_DEBUG", + "name": "OPENSSL_DEBUG", + "range": null, + "title": "Enable OpenSSL debugging", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": "Do nothing and \"SSL_ASSERT\" does not work.", + "id": "OPENSSL_ASSERT_DO_NOTHING", + "name": "OPENSSL_ASSERT_DO_NOTHING", + "range": null, + "title": "Do nothing", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": "Enable assert exiting, it will check and return error code.", + "id": "OPENSSL_ASSERT_EXIT", + "name": "OPENSSL_ASSERT_EXIT", + "range": null, + "title": "Check and exit", + "type": "bool" + }, + { + "children": [], + "depends_on": "OPENSSL_DEBUG && ", + "help": "Enable assert debugging, it will check and show debugging message.", + "id": "OPENSSL_ASSERT_DEBUG", + "name": "OPENSSL_ASSERT_DEBUG", + "range": null, + "title": "Show debugging message", + "type": "bool" + }, + { + "children": [], + "depends_on": "OPENSSL_DEBUG && ", + "help": "Enable assert debugging and exiting, it will check, show debugging message and return error code.", + "id": "OPENSSL_ASSERT_DEBUG_EXIT", + "name": "OPENSSL_ASSERT_DEBUG_EXIT", + "range": null, + "title": "Show debugging message and exit", + "type": "bool" + }, + { + "children": [], + "depends_on": "OPENSSL_DEBUG && ", + "help": "Enable assert debugging and blocking, it will check, show debugging message and block by \"while (1);\".", + "id": "OPENSSL_ASSERT_DEBUG_BLOCK", + "name": "OPENSSL_ASSERT_DEBUG_BLOCK", + "range": null, + "title": "Show debugging message and block", + "type": "bool" + } + ], + "depends_on": null, + "help": "OpenSSL function needs \"assert\" function to check if input parameters are valid.\n\nIf you want to use assert debugging function, \"OPENSSL_DEBUG\" should be enabled.", + "id": "component-config-openssl-select-openssl-assert-function", + "name": "OPENSSL_ASSERT", + "title": "Select OpenSSL assert function", + "type": "choice" + } + ], + "depends_on": null, + "id": "component-config-openssl", + "title": "OpenSSL", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Priority used to create new tasks with default pthread parameters.", + "id": "PTHREAD_TASK_PRIO_DEFAULT", + "name": "PTHREAD_TASK_PRIO_DEFAULT", + "range": [ + 0, + 255 + ], + "title": "Default task priority", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Stack size used to create new tasks with default pthread parameters.", + "id": "PTHREAD_TASK_STACK_SIZE_DEFAULT", + "name": "PTHREAD_TASK_STACK_SIZE_DEFAULT", + "range": null, + "title": "Default task stack size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Minimum allowed pthread stack size set in attributes passed to pthread_create", + "id": "PTHREAD_STACK_MIN", + "name": "PTHREAD_STACK_MIN", + "range": null, + "title": "Minimum allowed pthread stack size", + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "PTHREAD_DEFAULT_CORE_NO_AFFINITY", + "name": "PTHREAD_DEFAULT_CORE_NO_AFFINITY", + "range": null, + "title": "No affinity", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "PTHREAD_DEFAULT_CORE_0", + "name": "PTHREAD_DEFAULT_CORE_0", + "range": null, + "title": "Core 0", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "PTHREAD_DEFAULT_CORE_1", + "name": "PTHREAD_DEFAULT_CORE_1", + "range": null, + "title": "Core 1", + "type": "bool" + } + ], + "depends_on": "!FREERTOS_UNICORE", + "help": "The default core to which pthreads are pinned.", + "id": "component-config-pthreads-default-pthread-core-affinity", + "name": "PTHREAD_TASK_CORE_DEFAULT", + "title": "Default pthread core affinity", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "PTHREAD_TASK_CORE_DEFAULT", + "name": "PTHREAD_TASK_CORE_DEFAULT", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "The default name of pthreads.", + "id": "PTHREAD_TASK_NAME_DEFAULT", + "name": "PTHREAD_TASK_NAME_DEFAULT", + "range": null, + "title": "Default name of pthreads", + "type": "string" + } + ], + "depends_on": null, + "id": "component-config-pthreads", + "title": "PThreads", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SPI_FLASH_VERIFY_WRITE", + "help": "If this option is enabled, if SPI flash write verification fails then a log error line\nwill be written with the address, expected & actual values. This can be useful when\ndebugging hardware SPI flash problems.", + "id": "SPI_FLASH_LOG_FAILED_WRITE", + "name": "SPI_FLASH_LOG_FAILED_WRITE", + "range": null, + "title": "Log errors if verification fails", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPI_FLASH_VERIFY_WRITE", + "help": "If this option is enabled, any SPI flash write which tries to set zero bits in the flash to\nones will log a warning. Such writes will not result in the requested data appearing identically\nin flash once written, as SPI NOR flash can only set bits to one when an entire sector is erased.\nAfter erasing, individual bits can only be written from one to zero.\n\nNote that some software (such as SPIFFS) which is aware of SPI NOR flash may write one bits as an\noptimisation, relying on the data in flash becoming a bitwise AND of the new data and any existing data.\nSuch software will log spurious warnings if this option is enabled.", + "id": "SPI_FLASH_WARN_SETTING_ZERO_TO_ONE", + "name": "SPI_FLASH_WARN_SETTING_ZERO_TO_ONE", + "range": null, + "title": "Log warning if writing zero bits to ones", + "type": "bool" + } + ], + "depends_on": null, + "help": "If this option is enabled, any time SPI flash is written then the data will be read\nback and verified. This can catch hardware problems with SPI flash, or flash which\nwas not erased before verification.", + "id": "SPI_FLASH_VERIFY_WRITE", + "name": "SPI_FLASH_VERIFY_WRITE", + "range": null, + "title": "Verify SPI flash writes", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This option enables the following APIs:\n\n- spi_flash_reset_counters\n- spi_flash_dump_counters\n- spi_flash_get_counters\n\nThese APIs may be used to collect performance data for spi_flash APIs\nand to help understand behaviour of libraries which use SPI flash.", + "id": "SPI_FLASH_ENABLE_COUNTERS", + "name": "SPI_FLASH_ENABLE_COUNTERS", + "range": null, + "title": "Enable operation counters", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this flag to use patched versions of SPI flash ROM driver functions.\nThis option is needed to write to flash on ESP32-D2WD, and any configuration\nwhere external SPI flash is connected to non-default pins.", + "id": "SPI_FLASH_ROM_DRIVER_PATCH", + "name": "SPI_FLASH_ROM_DRIVER_PATCH", + "range": null, + "title": "Enable SPI flash ROM driver patched functions", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_DANGEROUS_WRITE_ABORTS", + "name": "SPI_FLASH_DANGEROUS_WRITE_ABORTS", + "range": null, + "title": "Aborts", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_DANGEROUS_WRITE_FAILS", + "name": "SPI_FLASH_DANGEROUS_WRITE_FAILS", + "range": null, + "title": "Fails", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "SPI_FLASH_DANGEROUS_WRITE_ALLOWED", + "name": "SPI_FLASH_DANGEROUS_WRITE_ALLOWED", + "range": null, + "title": "Allowed", + "type": "bool" + } + ], + "depends_on": null, + "help": "SPI flash APIs can optionally abort or return a failure code\nif erasing or writing addresses that fall at the beginning\nof flash (covering the bootloader and partition table) or that\noverlap the app partition that contains the running app.\n\nIt is not recommended to ever write to these regions from an IDF app,\nand this check prevents logic errors or corrupted firmware memory from\ndamaging these regions.\n\nNote that this feature *does not* check calls to the esp_rom_xxx SPI flash\nROM functions. These functions should not be called directly from IDF\napplications.", + "id": "component-config-spi-flash-driver-writing-to-dangerous-flash-regions", + "name": "SPI_FLASH_DANGEROUS_WRITE", + "title": "Writing to dangerous flash regions", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": "The implementation of SPI flash has been greatly changed in IDF v4.0.\nEnable this option to use the legacy implementation.", + "id": "SPI_FLASH_USE_LEGACY_IMPL", + "name": "SPI_FLASH_USE_LEGACY_IMPL", + "range": null, + "title": "Use the legacy implementation before IDF v4.0", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enable this to support auto detection of ISSI chips if chip vendor not directly\ngiven by ``chip_drv`` member of the chip struct. This adds support for variant\nchips, however will extend detecting time.", + "id": "SPI_FLASH_SUPPORT_ISSI_CHIP", + "name": "SPI_FLASH_SUPPORT_ISSI_CHIP", + "range": null, + "title": "ISSI", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this to support auto detection of GD (GigaDevice) chips if chip vendor not\ndirectly given by ``chip_drv`` member of the chip struct. If you are using Wrover\nmodules, please don't disable this, otherwise your flash may not work in 4-bit\nmode.\n\nThis adds support for variant chips, however will extend detecting time and image\nsize. Note that the default chip driver supports the GD chips with product ID\n60H.", + "id": "SPI_FLASH_SUPPORT_GD_CHIP", + "name": "SPI_FLASH_SUPPORT_GD_CHIP", + "range": null, + "title": "GigaDevice", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-spi-flash-driver-auto-detect-flash-chips", + "title": "Auto-detect flash chips", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-spi-flash-driver", + "title": "SPI Flash driver", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Define maximum number of partitions that can be mounted.", + "id": "SPIFFS_MAX_PARTITIONS", + "name": "SPIFFS_MAX_PARTITIONS", + "range": [ + 1, + 10 + ], + "title": "Maximum Number of Partitions", + "type": "int" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "SPIFFS_CACHE", + "help": "Enables memory write caching for file descriptors in hydrogen.", + "id": "SPIFFS_CACHE_WR", + "name": "SPIFFS_CACHE_WR", + "range": null, + "title": "Enable SPIFFS Write Caching", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIFFS_CACHE", + "help": "Enable/disable statistics on caching. Debug/test purpose only.", + "id": "SPIFFS_CACHE_STATS", + "name": "SPIFFS_CACHE_STATS", + "range": null, + "title": "Enable SPIFFS Cache Statistics", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enables/disable memory read caching of nucleus file system\noperations.", + "id": "SPIFFS_CACHE", + "name": "SPIFFS_CACHE", + "range": null, + "title": "Enable SPIFFS Cache", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-spiffs-configuration-spiffs-cache-configuration", + "title": "SPIFFS Cache Configuration", + "type": "menu" + }, + { + "children": [], + "depends_on": null, + "help": "Always check header of each accessed page to ensure consistent state.\nIf enabled it will increase number of reads from flash, especially\nif cache is disabled.", + "id": "SPIFFS_PAGE_CHECK", + "name": "SPIFFS_PAGE_CHECK", + "range": null, + "title": "Enable SPIFFS Page Check", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Define maximum number of GC runs to perform to reach desired free pages.", + "id": "SPIFFS_GC_MAX_RUNS", + "name": "SPIFFS_GC_MAX_RUNS", + "range": [ + 1, + 255 + ], + "title": "Set Maximum GC Runs", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Enable/disable statistics on gc. Debug/test purpose only.", + "id": "SPIFFS_GC_STATS", + "name": "SPIFFS_GC_STATS", + "range": null, + "title": "Enable SPIFFS GC Statistics", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Logical page size of SPIFFS partition, in bytes. Must be multiple\nof flash page size (which is usually 256 bytes).\nLarger page sizes reduce overhead when storing large files, and\nimprove filesystem performance when reading large files.\nSmaller page sizes reduce overhead when storing small (< page size)\nfiles.", + "id": "SPIFFS_PAGE_SIZE", + "name": "SPIFFS_PAGE_SIZE", + "range": [ + 256, + 1024 + ], + "title": "SPIFFS logical page size", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Object name maximum length. Note that this length include the\nzero-termination character, meaning maximum string of characters\ncan at most be SPIFFS_OBJ_NAME_LEN - 1.\n\nSPIFFS_OBJ_NAME_LEN + SPIFFS_META_LENGTH should not exceed\nSPIFFS_PAGE_SIZE - 64.", + "id": "SPIFFS_OBJ_NAME_LEN", + "name": "SPIFFS_OBJ_NAME_LEN", + "range": [ + 1, + 256 + ], + "title": "Set SPIFFS Maximum Name Length", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "If this option is enabled, symbolic links are taken into account\nduring partition image creation.", + "id": "SPIFFS_FOLLOW_SYMLINKS", + "name": "SPIFFS_FOLLOW_SYMLINKS", + "range": null, + "title": "Enable symbolic links for image creation", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": "SPIFFS_USE_MAGIC", + "help": "If this option is enabled, the magic will also be dependent\non the length of the filesystem. For example, a filesystem\nconfigured and formatted for 4 megabytes will not be accepted\nfor mounting with a configuration defining the filesystem as 2 megabytes.", + "id": "SPIFFS_USE_MAGIC_LENGTH", + "name": "SPIFFS_USE_MAGIC_LENGTH", + "range": null, + "title": "Enable SPIFFS Filesystem Length Magic", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enable this to have an identifiable spiffs filesystem.\nThis will look for a magic in all sectors to determine if this\nis a valid spiffs system or not at mount time.", + "id": "SPIFFS_USE_MAGIC", + "name": "SPIFFS_USE_MAGIC", + "range": null, + "title": "Enable SPIFFS Filesystem Magic", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "This option sets the number of extra bytes stored in the file header.\nThese bytes can be used in an application-specific manner.\nSet this to at least 4 bytes to enable support for saving file\nmodification time.\n\nSPIFFS_OBJ_NAME_LEN + SPIFFS_META_LENGTH should not exceed\nSPIFFS_PAGE_SIZE - 64.", + "id": "SPIFFS_META_LENGTH", + "name": "SPIFFS_META_LENGTH", + "range": null, + "title": "Size of per-file metadata field", + "type": "int" + }, + { + "children": [], + "depends_on": "SPIFFS_META_LENGTH >= 4", + "help": "If enabled, then the first 4 bytes of per-file metadata will be used\nto store file modification time (mtime), accessible through\nstat/fstat functions.\nModification time is updated when the file is opened.", + "id": "SPIFFS_USE_MTIME", + "name": "SPIFFS_USE_MTIME", + "range": null, + "title": "Save file modification time", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIFFS_META_LENGTH >= 8", + "help": "If this option is not set, the time field is 32 bits (up to 2106 year),\notherwise it is 64 bits and make sure it matches SPIFFS_META_LENGTH.\nIf the chip already has the spiffs image with the time field = 32 bits\nthen this option cannot be applied in this case.\nErase it first before using this option.\nTo resolve the Y2K38 problem for the spiffs, use a toolchain with support\ntime_t 64 bits (see SDK_TOOLCHAIN_SUPPORTS_TIME_WIDE_64_BITS).", + "id": "SPIFFS_MTIME_WIDE_64_BITS", + "name": "SPIFFS_MTIME_WIDE_64_BITS", + "range": null, + "title": "The time field occupies 64 bits in the image instead of 32 bits", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Enabling this option will print general debug mesages to the console.", + "id": "SPIFFS_DBG", + "name": "SPIFFS_DBG", + "range": null, + "title": "Enable general SPIFFS debug", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option will print API debug mesages to the console.", + "id": "SPIFFS_API_DBG", + "name": "SPIFFS_API_DBG", + "range": null, + "title": "Enable SPIFFS API debug", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option will print GC debug mesages to the console.", + "id": "SPIFFS_GC_DBG", + "name": "SPIFFS_GC_DBG", + "range": null, + "title": "Enable SPIFFS Garbage Cleaner debug", + "type": "bool" + }, + { + "children": [], + "depends_on": "SPIFFS_CACHE", + "help": "Enabling this option will print cache debug mesages to the console.", + "id": "SPIFFS_CACHE_DBG", + "name": "SPIFFS_CACHE_DBG", + "range": null, + "title": "Enable SPIFFS Cache debug", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enabling this option will print Filesystem Check debug mesages\nto the console.", + "id": "SPIFFS_CHECK_DBG", + "name": "SPIFFS_CHECK_DBG", + "range": null, + "title": "Enable SPIFFS Filesystem Check debug", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Enable this option to enable SPIFFS_vis function in the API.", + "id": "SPIFFS_TEST_VISUALISATION", + "name": "SPIFFS_TEST_VISUALISATION", + "range": null, + "title": "Enable SPIFFS Filesystem Visualization", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-spiffs-configuration-debug-configuration", + "title": "Debug Configuration", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-spiffs-configuration", + "title": "SPIFFS Configuration", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "If not set, assertions on float arguments will not be available.", + "id": "UNITY_ENABLE_FLOAT", + "name": "UNITY_ENABLE_FLOAT", + "range": null, + "title": "Support for float type", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If not set, assertions on double arguments will not be available.", + "id": "UNITY_ENABLE_DOUBLE", + "name": "UNITY_ENABLE_DOUBLE", + "range": null, + "title": "Support for double type", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If set, Unity will colorize test results using console escape sequences.", + "id": "UNITY_ENABLE_COLOR", + "name": "UNITY_ENABLE_COLOR", + "range": null, + "title": "Colorize test output", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If set, then the following features will be available:\n\n- TEST_CASE macro which performs automatic registration of test functions\n- Functions to run registered test functions: unity_run_all_tests,\n unity_run_tests_with_filter, unity_run_single_test_by_name.\n- Interactive menu which lists test cases and allows choosing the tests to\n be run, available via unity_run_menu function.\n\nDisable if a different test registration mechanism is used.", + "id": "UNITY_ENABLE_IDF_TEST_RUNNER", + "name": "UNITY_ENABLE_IDF_TEST_RUNNER", + "range": null, + "title": "Include ESP-IDF test registration/running helpers", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If set, unity_fixture.h header file and associated source files are part of\nthe build. These provide an optional set of macros and functions to\nimplement test groups.", + "id": "UNITY_ENABLE_FIXTURE", + "name": "UNITY_ENABLE_FIXTURE", + "range": null, + "title": "Include Unity test fixture", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "If set, the unity framework will print the backtrace information before\njumping back to the test menu. The jumping is usually occurs in assert\nfunctions such as TEST_ASSERT, TEST_FAIL etc.", + "id": "UNITY_ENABLE_BACKTRACE_ON_FAIL", + "name": "UNITY_ENABLE_BACKTRACE_ON_FAIL", + "range": null, + "title": "Print a backtrace when a unit test fails", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-unity-unit-testing-library", + "title": "Unity unit testing library", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Select() related functions might produce an unconveniently lot of\ndebug outputs when one sets the default log level to DEBUG or higher.\nIt is possible to suppress these debug outputs by enabling this\noption.", + "id": "VFS_SUPPRESS_SELECT_DEBUG_OUTPUT", + "name": "VFS_SUPPRESS_SELECT_DEBUG_OUTPUT", + "range": null, + "title": "Suppress select() related debug outputs", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Disabling this option can save memory when the support for termios.h is not required.", + "id": "VFS_SUPPORT_TERMIOS", + "name": "VFS_SUPPORT_TERMIOS", + "range": null, + "title": "Add support for termios.h", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Define maximum number of host filesystem mount points.", + "id": "SEMIHOSTFS_MAX_MOUNT_POINTS", + "name": "SEMIHOSTFS_MAX_MOUNT_POINTS", + "range": null, + "title": "Maximum number of the host filesystem mount points", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Define maximum path length for the host base directory which is to be mounted.\nIf host path passed to esp_vfs_semihost_register() is longer than this value\nit will be truncated.", + "id": "SEMIHOSTFS_HOST_PATH_MAX_LEN", + "name": "SEMIHOSTFS_HOST_PATH_MAX_LEN", + "range": null, + "title": "Maximum path length for the host base directory", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-virtual-file-system-host-file-system-i-o-semihosting-", + "title": "Host File System I/O (Semihosting)", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-virtual-file-system", + "title": "Virtual file system", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "WL_SECTOR_SIZE_512", + "name": "WL_SECTOR_SIZE_512", + "range": null, + "title": "512", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "WL_SECTOR_SIZE_4096", + "name": "WL_SECTOR_SIZE_4096", + "range": null, + "title": "4096", + "type": "bool" + } + ], + "depends_on": null, + "help": "Sector size used by wear levelling library.\nYou can set default sector size or size that will\nfit to the flash device sector size.\n\nWith sector size set to 4096 bytes, wear levelling library is more\nefficient. However if FAT filesystem is used on top of wear levelling\nlibrary, it will need more temporary storage: 4096 bytes for each\nmounted filesystem and 4096 bytes for each opened file.\n\nWith sector size set to 512 bytes, wear levelling library will perform\nmore operations with flash memory, but less RAM will be used by FAT\nfilesystem library (512 bytes for the filesystem and 512 bytes for each\nfile opened).", + "id": "component-config-wear-levelling-wear-levelling-library-sector-size", + "name": "WL_SECTOR_SIZE", + "title": "Wear Levelling library sector size", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "WL_SECTOR_SIZE", + "name": "WL_SECTOR_SIZE", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "WL_SECTOR_MODE_PERF", + "name": "WL_SECTOR_MODE_PERF", + "range": null, + "title": "Perfomance", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "WL_SECTOR_MODE_SAFE", + "name": "WL_SECTOR_MODE_SAFE", + "range": null, + "title": "Safety", + "type": "bool" + } + ], + "depends_on": "WL_SECTOR_SIZE_512", + "help": "Specify the mode to store data into flash:\n\n- In Performance mode a data will be stored to the RAM and then\n stored back to the flash. Compared to the Safety mode, this operation is\n faster, but if power will be lost when erase sector operation is in\n progress, then the data from complete flash device sector will be lost.\n\n- In Safety mode data from complete flash device sector will be read from\n flash, modified, and then stored back to flash.\n Compared to the Performance mode, this operation is slower, but if\n power is lost during erase sector operation, then the data from full\n flash device sector will not be lost.", + "id": "component-config-wear-levelling-sector-store-mode", + "name": "WL_SECTOR_MODE", + "title": "Sector store mode", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "WL_SECTOR_MODE", + "name": "WL_SECTOR_MODE", + "range": null, + "title": null, + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-wear-levelling", + "title": "Wear Levelling", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "This sets the maximum number of entries of Wi-Fi scan results that will be kept by the provisioning manager", + "id": "WIFI_PROV_SCAN_MAX_ENTRIES", + "name": "WIFI_PROV_SCAN_MAX_ENTRIES", + "range": [ + 1, + 255 + ], + "title": "Max Wi-Fi Scan Result Entries", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Time (in seconds) after which the Wi-Fi provisioning manager will auto-stop after connecting to\na Wi-Fi network successfully.", + "id": "WIFI_PROV_AUTOSTOP_TIMEOUT", + "name": "WIFI_PROV_AUTOSTOP_TIMEOUT", + "range": [ + 5, + 600 + ], + "title": "Provisioning auto-stop timeout", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-wi-fi-provisioning-manager", + "title": "Wi-Fi Provisioning Manager", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Select this option to use MbedTLS crypto API's which utilize hardware acceleration.", + "id": "WPA_MBEDTLS_CRYPTO", + "name": "WPA_MBEDTLS_CRYPTO", + "range": null, + "title": "Use MbedTLS crypto API's", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": "Select this option to print logging information from WPA supplicant,\nthis includes handshake information and key hex dumps depending\non the project logging level.\n\nEnabling this could increase the build size ~60kb\ndepending on the project logging level.", + "id": "WPA_DEBUG_PRINT", + "name": "WPA_DEBUG_PRINT", + "range": null, + "title": "Print debug messages from WPA Supplicant", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-supplicant", + "title": "Supplicant", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_PREDEFINED_DISPLAY_NONE", + "name": "LVGL_PREDEFINED_DISPLAY_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_PREDEFINED_DISPLAY_WROVER4", + "name": "LVGL_PREDEFINED_DISPLAY_WROVER4", + "range": null, + "title": "ESP-Wrover-KIT v4.1", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_PREDEFINED_DISPLAY_M5STACK", + "name": "LVGL_PREDEFINED_DISPLAY_M5STACK", + "range": null, + "title": "M5Stack", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_PREDEFINED_DISPLAY_ERTFT0356", + "name": "LVGL_PREDEFINED_DISPLAY_ERTFT0356", + "range": null, + "title": "ER-TFT035-6", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_PREDEFINED_DISPLAY_ADA_FEATHERWING", + "name": "LVGL_PREDEFINED_DISPLAY_ADA_FEATHERWING", + "range": null, + "title": "Adafruit 3.5 Featherwing", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select predefined display configuration", + "id": "component-config-littlevgl-lvgl-tft-display-controller-select-predefined-display-configuration", + "name": null, + "title": "Select predefined display configuration", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_PREDEFINED_PINS_NONE", + "name": "LVGL_PREDEFINED_PINS_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_PREDEFINED_PINS_38V4", + "name": "LVGL_PREDEFINED_PINS_38V4", + "range": null, + "title": "ESP32 DevKit v4 (38 GPIOS)", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_PREDEFINED_PINS_30", + "name": "LVGL_PREDEFINED_PINS_30", + "range": null, + "title": "ESP32 Devkit v1 - 30 pins", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_PREDEFINED_PINS_38V1", + "name": "LVGL_PREDEFINED_PINS_38V1", + "range": null, + "title": "Dev Board with 38 pins", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select predefined board pin out configuration.", + "id": "component-config-littlevgl-lvgl-tft-display-controller-select-predefined-board-pinouts", + "name": null, + "title": "Select predefined board pinouts", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_TFT_DISPLAY_CONTROLLER", + "name": "LVGL_TFT_DISPLAY_CONTROLLER", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_TFT_DISPLAY_CONTROLLER_ILI9341", + "name": "LVGL_TFT_DISPLAY_CONTROLLER_ILI9341", + "range": null, + "title": "ILI9341", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_TFT_DISPLAY_CONTROLLER_ILI9488", + "name": "LVGL_TFT_DISPLAY_CONTROLLER_ILI9488", + "range": null, + "title": "ILI9488", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_TFT_DISPLAY_CONTROLLER_ST7789", + "name": "LVGL_TFT_DISPLAY_CONTROLLER_ST7789", + "range": null, + "title": "ST7789", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_TFT_DISPLAY_CONTROLLER_HX8357", + "name": "LVGL_TFT_DISPLAY_CONTROLLER_HX8357", + "range": null, + "title": "HX8357", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select the controller for your display.", + "id": "component-config-littlevgl-lvgl-tft-display-controller-select-a-display-controller-model-", + "name": null, + "title": "Select a display controller model.", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_TFT_DISPLAY_SPI_HSPI", + "name": "LVGL_TFT_DISPLAY_SPI_HSPI", + "range": null, + "title": "HSPI", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_TFT_DISPLAY_SPI_VSPI", + "name": "LVGL_TFT_DISPLAY_SPI_VSPI", + "range": null, + "title": "VSPI", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select the SPI Bus the TFT Display is attached to.", + "id": "component-config-littlevgl-lvgl-tft-display-controller-tft-spi-bus-", + "name": null, + "title": "TFT SPI Bus.", + "type": "choice" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_DISPLAY_WIDTH", + "name": "LVGL_DISPLAY_WIDTH", + "range": null, + "title": "TFT display width in pixels.", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_DISPLAY_HEIGHT", + "name": "LVGL_DISPLAY_HEIGHT", + "range": null, + "title": "TFT display height in pixels.", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "If text is backwards on your display, try enabling this.", + "id": "LVGL_INVERT_DISPLAY", + "name": "LVGL_INVERT_DISPLAY", + "range": null, + "title": "Invert display.", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Some backlights are turned on with a high signal, others held low.\nIf enabled, a value of 1 will be sent to the display to enable the backlight,\notherwise a 0 will be expected to enable it.", + "id": "LVGL_BACKLIGHT_ACTIVE_LVL", + "name": "LVGL_BACKLIGHT_ACTIVE_LVL", + "range": null, + "title": "Is backlight turn on with a HIGH (1) logic level?", + "type": "bool" + } + ], + "depends_on": null, + "help": "Enable controlling the display backlight using an GPIO", + "id": "LVGL_ENABLE_BACKLIGHT_CONTROL", + "name": "LVGL_ENABLE_BACKLIGHT_CONTROL", + "range": null, + "title": "Enable control of the display backlight by using an GPIO.", + "type": "bool" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Configure the display MOSI pin here.", + "id": "LVGL_DISP_SPI_MOSI", + "name": "LVGL_DISP_SPI_MOSI", + "range": [ + 0, + 39 + ], + "title": "GPIO for MOSI (Master Out Slave In)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the display CLK pin here.", + "id": "LVGL_DISP_SPI_CLK", + "name": "LVGL_DISP_SPI_CLK", + "range": [ + 0, + 39 + ], + "title": "GPIO for CLK (SCK / Serial Clock)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the display CS pin here.", + "id": "LVGL_DISP_SPI_CS", + "name": "LVGL_DISP_SPI_CS", + "range": [ + 0, + 39 + ], + "title": "GPIO for CS (Slave Select)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the display DC pin here.", + "id": "LVGL_DISP_PIN_DC", + "name": "LVGL_DISP_PIN_DC", + "range": [ + 0, + 39 + ], + "title": "GPIO for DC (Data / Command)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the display Reset pin here.", + "id": "LVGL_DISP_PIN_RST", + "name": "LVGL_DISP_PIN_RST", + "range": [ + 0, + 39 + ], + "title": "GPIO for Reset", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the display BCLK (LED) pin here.", + "id": "LVGL_DISP_PIN_BCKL", + "name": "LVGL_DISP_PIN_BCKL", + "range": [ + 0, + 39 + ], + "title": "GPIO for Backlight Control", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-littlevgl-lvgl-tft-display-controller-display-pin-assignments", + "title": "Display Pin Assignments", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-littlevgl-lvgl-tft-display-controller", + "title": "LittlevGL (LVGL) TFT Display controller", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_TOUCH_CONTROLLER", + "name": "LVGL_TOUCH_CONTROLLER", + "range": null, + "title": null, + "type": "int" + }, + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_TOUCH_CONTROLLER_NONE", + "name": "LVGL_TOUCH_CONTROLLER_NONE", + "range": null, + "title": "None", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_TOUCH_CONTROLLER_XPT2046", + "name": "LVGL_TOUCH_CONTROLLER_XPT2046", + "range": null, + "title": "XPT2046", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_TOUCH_CONTROLLER_FT6X06", + "name": "LVGL_TOUCH_CONTROLLER_FT6X06", + "range": null, + "title": "FT6X06", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_TOUCH_CONTROLLER_STMPE610", + "name": "LVGL_TOUCH_CONTROLLER_STMPE610", + "range": null, + "title": "STMPE610", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select the controller for your touch panel.", + "id": "component-config-littlevgl-lvgl-touch-controller-select-a-touch-panel-controller-model-", + "name": null, + "title": "Select a touch panel controller model.", + "type": "choice" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Configure the touchpanel MISO pin here.", + "id": "LVGL_TOUCH_SPI_MISO", + "name": "LVGL_TOUCH_SPI_MISO", + "range": [ + 0, + 39 + ], + "title": "GPIO for MISO (Master In Slave Out)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the touchpanel MOSI pin here.", + "id": "LVGL_TOUCH_SPI_MOSI", + "name": "LVGL_TOUCH_SPI_MOSI", + "range": [ + 0, + 39 + ], + "title": "GPIO for MOSI (Master Out Slave In)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the touchpanel CLK pin here.", + "id": "LVGL_TOUCH_SPI_CLK", + "name": "LVGL_TOUCH_SPI_CLK", + "range": [ + 0, + 39 + ], + "title": "GPIO for CLK (SCK / Serial Clock)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the touchpanel CS pin here.", + "id": "LVGL_TOUCH_SPI_CS", + "name": "LVGL_TOUCH_SPI_CS", + "range": [ + 0, + 39 + ], + "title": "GPIO for CS (Slave Select)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the touchpanel CS pin here.", + "id": "LVGL_TOUCH_PIN_IRQ", + "name": "LVGL_TOUCH_PIN_IRQ", + "range": [ + 0, + 39 + ], + "title": "GPIO for IRQ (Interrupt Request)", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-littlevgl-lvgl-touch-controller-touchpanel-xpt2046-pin-assignments", + "title": "Touchpanel (XPT2046) Pin Assignments", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Configure the I2C touchpanel SDA pin here.", + "id": "LVGL_TOUCH_I2C_SDA", + "name": "LVGL_TOUCH_I2C_SDA", + "range": [ + 0, + 39 + ], + "title": "GPIO for SDA (I2C)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the I2C touchpanel SCL pin here.", + "id": "LVGL_TOUCH_I2C_SCL", + "name": "LVGL_TOUCH_I2C_SCL", + "range": [ + 0, + 39 + ], + "title": "GPIO for clock signal SCL (I2C)", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-littlevgl-lvgl-touch-controller-touchpanel-ft6x06-pin-assignments", + "title": "Touchpanel (FT6X06) Pin Assignments", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Configure the touchpanel MISO pin here.", + "id": "LVGL_TOUCH_SPI_MISO", + "name": "LVGL_TOUCH_SPI_MISO", + "range": [ + 0, + 39 + ], + "title": "GPIO for MISO (Master In Slave Out)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the touchpanel MOSI pin here.", + "id": "LVGL_TOUCH_SPI_MOSI", + "name": "LVGL_TOUCH_SPI_MOSI", + "range": [ + 0, + 39 + ], + "title": "GPIO for MOSI (Master Out Slave In)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the touchpanel CLK pin here.", + "id": "LVGL_TOUCH_SPI_CLK", + "name": "LVGL_TOUCH_SPI_CLK", + "range": [ + 0, + 39 + ], + "title": "GPIO for CLK (SCK / Serial Clock)", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": "Configure the touchpanel CS pin here.", + "id": "LVGL_TOUCH_SPI_CS", + "name": "LVGL_TOUCH_SPI_CS", + "range": [ + 0, + 39 + ], + "title": "GPIO for CS (Slave Select)", + "type": "int" + } + ], + "depends_on": null, + "id": "component-config-littlevgl-lvgl-touch-controller-touchpanel-stmpe610-pin-assignments", + "title": "Touchpanel (STMPE610) Pin Assignments", + "type": "menu" + }, + { + "children": [ + { + "children": [ + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_TOUCH_CONTROLLER_SPI_HSPI", + "name": "LVGL_TOUCH_CONTROLLER_SPI_HSPI", + "range": null, + "title": "HSPI", + "type": "bool" + }, + { + "children": [], + "depends_on": "", + "help": null, + "id": "LVGL_TOUCH_CONTROLLER_SPI_VSPI", + "name": "LVGL_TOUCH_CONTROLLER_SPI_VSPI", + "range": null, + "title": "VSPI", + "type": "bool" + } + ], + "depends_on": null, + "help": "Select the SPI Bus the TFT Display is attached to.", + "id": "component-config-littlevgl-lvgl-touch-controller-touchpanel-spi-bus-touch-controller-spi-bus-", + "name": null, + "title": "Touch Controller SPI Bus.", + "type": "choice" + } + ], + "depends_on": null, + "id": "component-config-littlevgl-lvgl-touch-controller-touchpanel-spi-bus", + "title": "Touchpanel SPI Bus", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_TOUCH_X_MIN", + "name": "LVGL_TOUCH_X_MIN", + "range": null, + "title": "Minimum X coordinate value.", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_TOUCH_Y_MIN", + "name": "LVGL_TOUCH_Y_MIN", + "range": null, + "title": "Minimum Y coordinate value.", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_TOUCH_X_MAX", + "name": "LVGL_TOUCH_X_MAX", + "range": null, + "title": "Maximum X coordinate value.", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_TOUCH_Y_MAX", + "name": "LVGL_TOUCH_Y_MAX", + "range": null, + "title": "Maximum Y coordinate value.", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_TOUCH_INVERT_X", + "name": "LVGL_TOUCH_INVERT_X", + "range": null, + "title": "Invert X coordinate value.", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_TOUCH_INVERT_Y", + "name": "LVGL_TOUCH_INVERT_Y", + "range": null, + "title": "Invert Y coordinate value.", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-littlevgl-lvgl-touch-controller-touchpanel-configuration-xpt2046-", + "title": "Touchpanel Configuration (XPT2046)", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_FT6X36_SWAPXY", + "name": "LVGL_FT6X36_SWAPXY", + "range": null, + "title": "Swap X with Y coordinate.", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_FT6X36_INVERT_X", + "name": "LVGL_FT6X36_INVERT_X", + "range": null, + "title": "Invert X coordinate value.", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_FT6X36_INVERT_Y", + "name": "LVGL_FT6X36_INVERT_Y", + "range": null, + "title": "Invert Y coordinate value.", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-littlevgl-lvgl-touch-controller-touchpanel-configuration-ft6x06-", + "title": "Touchpanel Configuration (FT6X06)", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_TOUCH_X_MIN", + "name": "LVGL_TOUCH_X_MIN", + "range": null, + "title": "Minimum X coordinate value.", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_TOUCH_Y_MIN", + "name": "LVGL_TOUCH_Y_MIN", + "range": null, + "title": "Minimum Y coordinate value.", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_TOUCH_X_MAX", + "name": "LVGL_TOUCH_X_MAX", + "range": null, + "title": "Maximum X coordinate value.", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_TOUCH_Y_MAX", + "name": "LVGL_TOUCH_Y_MAX", + "range": null, + "title": "Maximum Y coordinate value.", + "type": "int" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_TOUCH_XY_SWAP", + "name": "LVGL_TOUCH_XY_SWAP", + "range": null, + "title": "Swap XY.", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_TOUCH_INVERT_X", + "name": "LVGL_TOUCH_INVERT_X", + "range": null, + "title": "Invert X coordinate value.", + "type": "bool" + }, + { + "children": [], + "depends_on": null, + "help": null, + "id": "LVGL_TOUCH_INVERT_Y", + "name": "LVGL_TOUCH_INVERT_Y", + "range": null, + "title": "Invert Y coordinate value.", + "type": "bool" + } + ], + "depends_on": null, + "id": "component-config-littlevgl-lvgl-touch-controller-touchpanel-configuration-stmpe610-", + "title": "Touchpanel Configuration (STMPE610)", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config-littlevgl-lvgl-touch-controller", + "title": "LittlevGL (LVGL) Touch controller", + "type": "menu" + } + ], + "depends_on": null, + "id": "component-config", + "title": "Component config", + "type": "menu" + }, + { + "children": [ + { + "children": [], + "depends_on": null, + "help": "Soc, esp32, and driver components, the most common\ncomponents. Some header of these components are included\nimplicitly by headers of other components before IDF v4.0.\nIt's not required for high-level components, but still\nincluded through long header chain everywhere.\n\nThis is harmful to the modularity. So it's changed in IDF\nv4.0.\n\nYou can still include these headers in a legacy way until it\nis totally deprecated by enable this option.", + "id": "LEGACY_INCLUDE_COMMON_HEADERS", + "name": "LEGACY_INCLUDE_COMMON_HEADERS", + "range": null, + "title": "Include headers across components as before IDF v4.0", + "type": "bool" + } + ], + "depends_on": null, + "id": "compatibility-options", + "title": "Compatibility options", + "type": "menu" + } +] \ No newline at end of file diff --git a/build/config/sdkconfig.cmake b/build/config/sdkconfig.cmake new file mode 100644 index 0000000..2667955 --- /dev/null +++ b/build/config/sdkconfig.cmake @@ -0,0 +1,764 @@ +# +# Automatically generated file. DO NOT EDIT. +# Espressif IoT Development Framework (ESP-IDF) Configuration cmake include file +# +set(CONFIG_IDF_CMAKE "y") +set(CONFIG_IDF_TARGET "esp32") +set(CONFIG_IDF_TARGET_ESP32 "y") +set(CONFIG_IDF_FIRMWARE_CHIP_ID "0x0000") +set(CONFIG_SDK_TOOLPREFIX "xtensa-esp32-elf-") +set(CONFIG_SDK_TOOLCHAIN_SUPPORTS_TIME_WIDE_64_BITS "") +set(CONFIG_APP_BUILD_TYPE_APP_2NDBOOT "y") +set(CONFIG_APP_BUILD_TYPE_ELF_RAM "") +set(CONFIG_APP_BUILD_GENERATE_BINARIES "y") +set(CONFIG_APP_BUILD_BOOTLOADER "y") +set(CONFIG_APP_BUILD_USE_FLASH_SECTIONS "y") +set(CONFIG_APP_COMPILE_TIME_DATE "y") +set(CONFIG_APP_EXCLUDE_PROJECT_VER_VAR "") +set(CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR "") +set(CONFIG_APP_PROJECT_VER_FROM_CONFIG "") +set(CONFIG_BOOTLOADER_LOG_LEVEL_NONE "") +set(CONFIG_BOOTLOADER_LOG_LEVEL_ERROR "") +set(CONFIG_BOOTLOADER_LOG_LEVEL_WARN "y") +set(CONFIG_BOOTLOADER_LOG_LEVEL_INFO "") +set(CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG "") +set(CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE "") +set(CONFIG_BOOTLOADER_LOG_LEVEL "2") +set(CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_8V "") +set(CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V "y") +set(CONFIG_BOOTLOADER_FACTORY_RESET "") +set(CONFIG_BOOTLOADER_APP_TEST "") +set(CONFIG_BOOTLOADER_WDT_ENABLE "y") +set(CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE "") +set(CONFIG_BOOTLOADER_WDT_TIME_MS "9000") +set(CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE "") +set(CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP "") +set(CONFIG_BOOTLOADER_RESERVE_RTC_SIZE "0") +set(CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC "") +set(CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT "") +set(CONFIG_SECURE_BOOT_ENABLED "") +set(CONFIG_SECURE_FLASH_ENC_ENABLED "") +set(CONFIG_ESPTOOLPY_BAUD_OTHER_VAL "115200") +set(CONFIG_ESPTOOLPY_FLASHMODE_QIO "") +set(CONFIG_ESPTOOLPY_FLASHMODE_QOUT "") +set(CONFIG_ESPTOOLPY_FLASHMODE_DIO "y") +set(CONFIG_ESPTOOLPY_FLASHMODE_DOUT "") +set(CONFIG_ESPTOOLPY_FLASHMODE "dio") +set(CONFIG_ESPTOOLPY_FLASHFREQ_80M "") +set(CONFIG_ESPTOOLPY_FLASHFREQ_40M "y") +set(CONFIG_ESPTOOLPY_FLASHFREQ_26M "") +set(CONFIG_ESPTOOLPY_FLASHFREQ_20M "") +set(CONFIG_ESPTOOLPY_FLASHFREQ "40m") +set(CONFIG_ESPTOOLPY_FLASHSIZE_1MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_2MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_4MB "y") +set(CONFIG_ESPTOOLPY_FLASHSIZE_8MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE_16MB "") +set(CONFIG_ESPTOOLPY_FLASHSIZE "4MB") +set(CONFIG_ESPTOOLPY_FLASHSIZE_DETECT "y") +set(CONFIG_ESPTOOLPY_BEFORE_RESET "y") +set(CONFIG_ESPTOOLPY_BEFORE_NORESET "") +set(CONFIG_ESPTOOLPY_BEFORE "default_reset") +set(CONFIG_ESPTOOLPY_AFTER_RESET "y") +set(CONFIG_ESPTOOLPY_AFTER_NORESET "") +set(CONFIG_ESPTOOLPY_AFTER "hard_reset") +set(CONFIG_ESPTOOLPY_MONITOR_BAUD_9600B "") +set(CONFIG_ESPTOOLPY_MONITOR_BAUD_57600B "") +set(CONFIG_ESPTOOLPY_MONITOR_BAUD_115200B "y") +set(CONFIG_ESPTOOLPY_MONITOR_BAUD_230400B "") +set(CONFIG_ESPTOOLPY_MONITOR_BAUD_921600B "") +set(CONFIG_ESPTOOLPY_MONITOR_BAUD_2MB "") +set(CONFIG_ESPTOOLPY_MONITOR_BAUD_OTHER "") +set(CONFIG_ESPTOOLPY_MONITOR_BAUD_OTHER_VAL "115200") +set(CONFIG_ESPTOOLPY_MONITOR_BAUD "115200") +set(CONFIG_PARTITION_TABLE_SINGLE_APP "") +set(CONFIG_PARTITION_TABLE_TWO_OTA "") +set(CONFIG_PARTITION_TABLE_CUSTOM "y") +set(CONFIG_PARTITION_TABLE_CUSTOM_FILENAME "partitions_example.csv") +set(CONFIG_PARTITION_TABLE_FILENAME "partitions_example.csv") +set(CONFIG_PARTITION_TABLE_OFFSET "0x8000") +set(CONFIG_PARTITION_TABLE_MD5 "y") +set(CONFIG_STORE_HISTORY "y") +set(CONFIG_COMPILER_OPTIMIZATION_DEFAULT "y") +set(CONFIG_COMPILER_OPTIMIZATION_SIZE "") +set(CONFIG_COMPILER_OPTIMIZATION_PERF "") +set(CONFIG_COMPILER_OPTIMIZATION_NONE "") +set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE "y") +set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT "") +set(CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE "") +set(CONFIG_COMPILER_CXX_EXCEPTIONS "") +set(CONFIG_COMPILER_CXX_RTTI "") +set(CONFIG_COMPILER_STACK_CHECK_MODE_NONE "y") +set(CONFIG_COMPILER_STACK_CHECK_MODE_NORM "") +set(CONFIG_COMPILER_STACK_CHECK_MODE_STRONG "") +set(CONFIG_COMPILER_STACK_CHECK_MODE_ALL "") +set(CONFIG_COMPILER_WARN_WRITE_STRINGS "") +set(CONFIG_COMPILER_DISABLE_GCC8_WARNINGS "") +set(CONFIG_APPTRACE_DEST_TRAX "") +set(CONFIG_APPTRACE_DEST_NONE "y") +set(CONFIG_APPTRACE_LOCK_ENABLE "y") +set(CONFIG_BT_ENABLED "") +set(CONFIG_BTDM_CTRL_BR_EDR_SCO_DATA_PATH_EFF "0") +set(CONFIG_BTDM_CTRL_BLE_MAX_CONN_EFF "0") +set(CONFIG_BTDM_CTRL_BR_EDR_MAX_ACL_CONN_EFF "0") +set(CONFIG_BTDM_CTRL_BR_EDR_MAX_SYNC_CONN_EFF "0") +set(CONFIG_BTDM_CTRL_PINNED_TO_CORE "0") +set(CONFIG_BTDM_BLE_SLEEP_CLOCK_ACCURACY_INDEX_EFF "1") +set(CONFIG_BT_RESERVE_DRAM "0") +set(CONFIG_COAP_MBEDTLS_PSK "y") +set(CONFIG_COAP_MBEDTLS_PKI "") +set(CONFIG_COAP_MBEDTLS_DEBUG "") +set(CONFIG_COAP_LOG_DEFAULT_LEVEL "0") +set(CONFIG_ADC_FORCE_XPD_FSM "") +set(CONFIG_ADC_DISABLE_DAC "y") +set(CONFIG_SPI_MASTER_IN_IRAM "") +set(CONFIG_SPI_MASTER_ISR_IN_IRAM "y") +set(CONFIG_SPI_SLAVE_IN_IRAM "") +set(CONFIG_SPI_SLAVE_ISR_IN_IRAM "y") +set(CONFIG_UART_ISR_IN_IRAM "") +set(CONFIG_RTCIO_SUPPORT_RTC_GPIO_DESC "") +set(CONFIG_EFUSE_CUSTOM_TABLE "") +set(CONFIG_EFUSE_VIRTUAL "") +set(CONFIG_EFUSE_CODE_SCHEME_COMPAT_NONE "") +set(CONFIG_EFUSE_CODE_SCHEME_COMPAT_3_4 "y") +set(CONFIG_EFUSE_CODE_SCHEME_COMPAT_REPEAT "") +set(CONFIG_EFUSE_MAX_BLK_LEN "192") +set(CONFIG_ESP_TLS_USING_MBEDTLS "y") +set(CONFIG_ESP_TLS_SERVER "y") +set(CONFIG_ESP_TLS_PSK_VERIFICATION "") +set(CONFIG_ESP32_REV_MIN_0 "y") +set(CONFIG_ESP32_REV_MIN_1 "") +set(CONFIG_ESP32_REV_MIN_2 "") +set(CONFIG_ESP32_REV_MIN_3 "") +set(CONFIG_ESP32_REV_MIN "0") +set(CONFIG_ESP32_DPORT_WORKAROUND "y") +set(CONFIG_ESP32_DEFAULT_CPU_FREQ_80 "") +set(CONFIG_ESP32_DEFAULT_CPU_FREQ_160 "y") +set(CONFIG_ESP32_DEFAULT_CPU_FREQ_240 "") +set(CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ "160") +set(CONFIG_ESP32_SPIRAM_SUPPORT "") +set(CONFIG_ESP32_TRAX "") +set(CONFIG_ESP32_TRACEMEM_RESERVE_DRAM "0x0") +set(CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_TWO "") +set(CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR "y") +set(CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES "4") +set(CONFIG_ESP32_ULP_COPROC_ENABLED "") +set(CONFIG_ESP32_ULP_COPROC_RESERVE_MEM "0") +set(CONFIG_ESP32_PANIC_PRINT_HALT "") +set(CONFIG_ESP32_PANIC_PRINT_REBOOT "y") +set(CONFIG_ESP32_PANIC_SILENT_REBOOT "") +set(CONFIG_ESP32_PANIC_GDBSTUB "") +set(CONFIG_ESP32_DEBUG_OCDAWARE "y") +set(CONFIG_ESP32_BROWNOUT_DET "y") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_0 "y") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_1 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_2 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_3 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_4 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_5 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_6 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_7 "") +set(CONFIG_ESP32_BROWNOUT_DET_LVL "0") +set(CONFIG_ESP32_REDUCE_PHY_TX_POWER "y") +set(CONFIG_ESP32_TIME_SYSCALL_USE_RTC_FRC1 "y") +set(CONFIG_ESP32_TIME_SYSCALL_USE_RTC "") +set(CONFIG_ESP32_TIME_SYSCALL_USE_FRC1 "") +set(CONFIG_ESP32_TIME_SYSCALL_USE_NONE "") +set(CONFIG_ESP32_RTC_CLK_SRC_INT_RC "y") +set(CONFIG_ESP32_RTC_CLK_SRC_EXT_CRYS "") +set(CONFIG_ESP32_RTC_CLK_SRC_EXT_OSC "") +set(CONFIG_ESP32_RTC_CLK_SRC_INT_8MD256 "") +set(CONFIG_ESP32_RTC_CLK_CAL_CYCLES "1024") +set(CONFIG_ESP32_DEEP_SLEEP_WAKEUP_DELAY "2000") +set(CONFIG_ESP32_XTAL_FREQ_40 "y") +set(CONFIG_ESP32_XTAL_FREQ_26 "") +set(CONFIG_ESP32_XTAL_FREQ_AUTO "") +set(CONFIG_ESP32_XTAL_FREQ "40") +set(CONFIG_ESP32_DISABLE_BASIC_ROM_CONSOLE "") +set(CONFIG_ESP32_NO_BLOBS "") +set(CONFIG_ESP32_COMPATIBLE_PRE_V2_1_BOOTLOADERS "") +set(CONFIG_ESP32_USE_FIXED_STATIC_RAM_SIZE "") +set(CONFIG_ESP32_DPORT_DIS_INTERRUPT_LVL "5") +set(CONFIG_PM_ENABLE "") +set(CONFIG_ADC_CAL_EFUSE_TP_ENABLE "y") +set(CONFIG_ADC_CAL_EFUSE_VREF_ENABLE "y") +set(CONFIG_ADC_CAL_LUT_ENABLE "y") +set(CONFIG_ESP_ERR_TO_NAME_LOOKUP "y") +set(CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE "32") +set(CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE "2304") +set(CONFIG_ESP_MAIN_TASK_STACK_SIZE "7168") +set(CONFIG_ESP_IPC_TASK_STACK_SIZE "1024") +set(CONFIG_ESP_IPC_USES_CALLERS_PRIORITY "y") +set(CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE "2048") +set(CONFIG_ESP_CONSOLE_UART_DEFAULT "y") +set(CONFIG_ESP_CONSOLE_UART_CUSTOM "") +set(CONFIG_ESP_CONSOLE_UART_NONE "") +set(CONFIG_ESP_CONSOLE_UART_NUM "0") +set(CONFIG_ESP_CONSOLE_UART_BAUDRATE "115200") +set(CONFIG_ESP_INT_WDT "y") +set(CONFIG_ESP_INT_WDT_TIMEOUT_MS "300") +set(CONFIG_ESP_INT_WDT_CHECK_CPU1 "y") +set(CONFIG_ESP_TASK_WDT "y") +set(CONFIG_ESP_TASK_WDT_PANIC "") +set(CONFIG_ESP_TASK_WDT_TIMEOUT_S "5") +set(CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0 "y") +set(CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1 "y") +set(CONFIG_ESP_PANIC_HANDLER_IRAM "") +set(CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA "y") +set(CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP "y") +set(CONFIG_ESP_MAC_ADDR_UNIVERSE_BT "y") +set(CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH "y") +set(CONFIG_ETH_ENABLED "y") +set(CONFIG_ETH_USE_ESP32_EMAC "y") +set(CONFIG_ETH_PHY_INTERFACE_RMII "y") +set(CONFIG_ETH_PHY_INTERFACE_MII "") +set(CONFIG_ETH_RMII_CLK_INPUT "y") +set(CONFIG_ETH_RMII_CLK_OUTPUT "") +set(CONFIG_ETH_RMII_CLK_IN_GPIO "0") +set(CONFIG_ETH_DMA_BUFFER_SIZE "512") +set(CONFIG_ETH_DMA_RX_BUFFER_NUM "10") +set(CONFIG_ETH_DMA_TX_BUFFER_NUM "10") +set(CONFIG_ETH_USE_SPI_ETHERNET "y") +set(CONFIG_ETH_SPI_ETHERNET_DM9051 "") +set(CONFIG_ETH_USE_OPENETH "") +set(CONFIG_ESP_EVENT_LOOP_PROFILING "") +set(CONFIG_ESP_EVENT_POST_FROM_ISR "y") +set(CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR "y") +set(CONFIG_ESP_HTTP_CLIENT_ENABLE_HTTPS "y") +set(CONFIG_ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH "") +set(CONFIG_HTTPD_MAX_REQ_HDR_LEN "1024") +set(CONFIG_HTTPD_MAX_URI_LEN "512") +set(CONFIG_HTTPD_ERR_RESP_NO_DELAY "y") +set(CONFIG_HTTPD_PURGE_BUF_LEN "32") +set(CONFIG_HTTPD_LOG_PURGE_DATA "") +set(CONFIG_OTA_ALLOW_HTTP "") +set(CONFIG_ESP_HTTPS_SERVER_ENABLE "y") +set(CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL "120") +set(CONFIG_ESP_NETIF_TCPIP_LWIP "y") +set(CONFIG_ESP_NETIF_LOOPBACK "") +set(CONFIG_ESP_NETIF_TCPIP_ADAPTER_COMPATIBLE_LAYER "y") +set(CONFIG_ESP_TIMER_PROFILING "") +set(CONFIG_ESP_TIMER_TASK_STACK_SIZE "3584") +set(CONFIG_ESP_TIMER_IMPL_FRC2 "") +set(CONFIG_ESP_TIMER_IMPL_TG0_LAC "y") +set(CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM "10") +set(CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM "32") +set(CONFIG_ESP32_WIFI_STATIC_TX_BUFFER "") +set(CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER "y") +set(CONFIG_ESP32_WIFI_TX_BUFFER_TYPE "1") +set(CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM "32") +set(CONFIG_ESP32_WIFI_CSI_ENABLED "") +set(CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED "y") +set(CONFIG_ESP32_WIFI_TX_BA_WIN "6") +set(CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED "y") +set(CONFIG_ESP32_WIFI_RX_BA_WIN "6") +set(CONFIG_ESP32_WIFI_NVS_ENABLED "y") +set(CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_0 "y") +set(CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_1 "") +set(CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN "752") +set(CONFIG_ESP32_WIFI_MGMT_SBUF_NUM "32") +set(CONFIG_ESP32_WIFI_DEBUG_LOG_ENABLE "") +set(CONFIG_ESP32_WIFI_IRAM_OPT "y") +set(CONFIG_ESP32_WIFI_RX_IRAM_OPT "y") +set(CONFIG_ESP32_WIFI_ENABLE_WPA3_SAE "") +set(CONFIG_ESP32_PHY_CALIBRATION_AND_DATA_STORAGE "y") +set(CONFIG_ESP32_PHY_INIT_DATA_IN_PARTITION "") +set(CONFIG_ESP32_PHY_MAX_WIFI_TX_POWER "20") +set(CONFIG_ESP32_PHY_MAX_TX_POWER "20") +set(CONFIG_ESP32_ENABLE_COREDUMP_TO_FLASH "") +set(CONFIG_ESP32_ENABLE_COREDUMP_TO_UART "") +set(CONFIG_ESP32_ENABLE_COREDUMP_TO_NONE "y") +set(CONFIG_FATFS_CODEPAGE_DYNAMIC "") +set(CONFIG_FATFS_CODEPAGE_437 "y") +set(CONFIG_FATFS_CODEPAGE_720 "") +set(CONFIG_FATFS_CODEPAGE_737 "") +set(CONFIG_FATFS_CODEPAGE_771 "") +set(CONFIG_FATFS_CODEPAGE_775 "") +set(CONFIG_FATFS_CODEPAGE_850 "") +set(CONFIG_FATFS_CODEPAGE_852 "") +set(CONFIG_FATFS_CODEPAGE_855 "") +set(CONFIG_FATFS_CODEPAGE_857 "") +set(CONFIG_FATFS_CODEPAGE_860 "") +set(CONFIG_FATFS_CODEPAGE_861 "") +set(CONFIG_FATFS_CODEPAGE_862 "") +set(CONFIG_FATFS_CODEPAGE_863 "") +set(CONFIG_FATFS_CODEPAGE_864 "") +set(CONFIG_FATFS_CODEPAGE_865 "") +set(CONFIG_FATFS_CODEPAGE_866 "") +set(CONFIG_FATFS_CODEPAGE_869 "") +set(CONFIG_FATFS_CODEPAGE_932 "") +set(CONFIG_FATFS_CODEPAGE_936 "") +set(CONFIG_FATFS_CODEPAGE_949 "") +set(CONFIG_FATFS_CODEPAGE_950 "") +set(CONFIG_FATFS_CODEPAGE "437") +set(CONFIG_FATFS_LFN_NONE "y") +set(CONFIG_FATFS_LFN_HEAP "") +set(CONFIG_FATFS_LFN_STACK "") +set(CONFIG_FATFS_FS_LOCK "0") +set(CONFIG_FATFS_TIMEOUT_MS "10000") +set(CONFIG_FATFS_PER_FILE_CACHE "y") +set(CONFIG_FMB_COMM_MODE_RTU_EN "y") +set(CONFIG_FMB_COMM_MODE_ASCII_EN "y") +set(CONFIG_FMB_MASTER_TIMEOUT_MS_RESPOND "150") +set(CONFIG_FMB_MASTER_DELAY_MS_CONVERT "200") +set(CONFIG_FMB_QUEUE_LENGTH "20") +set(CONFIG_FMB_SERIAL_TASK_STACK_SIZE "2048") +set(CONFIG_FMB_SERIAL_BUF_SIZE "256") +set(CONFIG_FMB_SERIAL_ASCII_BITS_PER_SYMB "8") +set(CONFIG_FMB_SERIAL_ASCII_TIMEOUT_RESPOND_MS "1000") +set(CONFIG_FMB_SERIAL_TASK_PRIO "10") +set(CONFIG_FMB_CONTROLLER_SLAVE_ID_SUPPORT "") +set(CONFIG_FMB_CONTROLLER_NOTIFY_TIMEOUT "20") +set(CONFIG_FMB_CONTROLLER_NOTIFY_QUEUE_SIZE "20") +set(CONFIG_FMB_CONTROLLER_STACK_SIZE "4096") +set(CONFIG_FMB_EVENT_QUEUE_TIMEOUT "20") +set(CONFIG_FMB_TIMER_PORT_ENABLED "y") +set(CONFIG_FMB_TIMER_GROUP "0") +set(CONFIG_FMB_TIMER_INDEX "0") +set(CONFIG_FMB_TIMER_ISR_IN_IRAM "") +set(CONFIG_FREERTOS_UNICORE "") +set(CONFIG_FREERTOS_NO_AFFINITY "0x7FFFFFFF") +set(CONFIG_FREERTOS_CORETIMER_0 "y") +set(CONFIG_FREERTOS_CORETIMER_1 "") +set(CONFIG_FREERTOS_HZ "100") +set(CONFIG_FREERTOS_ASSERT_ON_UNTESTED_FUNCTION "y") +set(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE "") +set(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL "") +set(CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY "y") +set(CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK "y") +set(CONFIG_FREERTOS_INTERRUPT_BACKTRACE "y") +set(CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS "1") +set(CONFIG_FREERTOS_ASSERT_FAIL_ABORT "") +set(CONFIG_FREERTOS_ASSERT_FAIL_PRINT_CONTINUE "y") +set(CONFIG_FREERTOS_ASSERT_DISABLE "") +set(CONFIG_FREERTOS_IDLE_TASK_STACKSIZE "1536") +set(CONFIG_FREERTOS_ISR_STACKSIZE "1536") +set(CONFIG_FREERTOS_LEGACY_HOOKS "") +set(CONFIG_FREERTOS_MAX_TASK_NAME_LEN "16") +set(CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION "") +set(CONFIG_FREERTOS_TIMER_TASK_PRIORITY "1") +set(CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH "2048") +set(CONFIG_FREERTOS_TIMER_QUEUE_LENGTH "10") +set(CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE "0") +set(CONFIG_FREERTOS_USE_TRACE_FACILITY "y") +set(CONFIG_FREERTOS_USE_STATS_FORMATTING_FUNCTIONS "y") +set(CONFIG_FREERTOS_VTASKLIST_INCLUDE_COREID "") +set(CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS "") +set(CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER "y") +set(CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER "y") +set(CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE "") +set(CONFIG_FREERTOS_DEBUG_OCDAWARE "y") +set(CONFIG_FREERTOS_FPU_IN_ISR "") +set(CONFIG_HEAP_POISONING_DISABLED "y") +set(CONFIG_HEAP_POISONING_LIGHT "") +set(CONFIG_HEAP_POISONING_COMPREHENSIVE "") +set(CONFIG_HEAP_TRACING_OFF "y") +set(CONFIG_HEAP_TRACING_STANDALONE "") +set(CONFIG_HEAP_TRACING_TOHOST "") +set(CONFIG_JSMN_PARENT_LINKS "") +set(CONFIG_JSMN_STRICT "") +set(CONFIG_LOG_DEFAULT_LEVEL_NONE "") +set(CONFIG_LOG_DEFAULT_LEVEL_ERROR "") +set(CONFIG_LOG_DEFAULT_LEVEL_WARN "") +set(CONFIG_LOG_DEFAULT_LEVEL_INFO "y") +set(CONFIG_LOG_DEFAULT_LEVEL_DEBUG "") +set(CONFIG_LOG_DEFAULT_LEVEL_VERBOSE "") +set(CONFIG_LOG_DEFAULT_LEVEL "3") +set(CONFIG_LOG_COLORS "y") +set(CONFIG_LOG_TIMESTAMP_SOURCE_RTOS "y") +set(CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM "") +set(CONFIG_LWIP_LOCAL_HOSTNAME "espressif") +set(CONFIG_LWIP_DNS_SUPPORT_MDNS_QUERIES "y") +set(CONFIG_LWIP_L2_TO_L3_COPY "") +set(CONFIG_LWIP_IRAM_OPTIMIZATION "") +set(CONFIG_LWIP_TIMERS_ONDEMAND "y") +set(CONFIG_LWIP_MAX_SOCKETS "10") +set(CONFIG_LWIP_USE_ONLY_LWIP_SELECT "") +set(CONFIG_LWIP_SO_REUSE "y") +set(CONFIG_LWIP_SO_REUSE_RXTOALL "y") +set(CONFIG_LWIP_SO_RCVBUF "") +set(CONFIG_LWIP_NETBUF_RECVINFO "") +set(CONFIG_LWIP_IP_FRAG "y") +set(CONFIG_LWIP_IP_REASSEMBLY "") +set(CONFIG_LWIP_STATS "") +set(CONFIG_LWIP_ETHARP_TRUST_IP_MAC "") +set(CONFIG_LWIP_ESP_GRATUITOUS_ARP "y") +set(CONFIG_LWIP_GARP_TMR_INTERVAL "60") +set(CONFIG_LWIP_TCPIP_RECVMBOX_SIZE "32") +set(CONFIG_LWIP_DHCP_DOES_ARP_CHECK "y") +set(CONFIG_LWIP_DHCP_RESTORE_LAST_IP "") +set(CONFIG_LWIP_DHCPS_LEASE_UNIT "60") +set(CONFIG_LWIP_DHCPS_MAX_STATION_NUM "8") +set(CONFIG_LWIP_AUTOIP "") +set(CONFIG_LWIP_NETIF_LOOPBACK "y") +set(CONFIG_LWIP_LOOPBACK_MAX_PBUFS "8") +set(CONFIG_LWIP_MAX_ACTIVE_TCP "16") +set(CONFIG_LWIP_MAX_LISTENING_TCP "16") +set(CONFIG_LWIP_TCP_MAXRTX "12") +set(CONFIG_LWIP_TCP_SYNMAXRTX "6") +set(CONFIG_LWIP_TCP_MSS "1440") +set(CONFIG_LWIP_TCP_TMR_INTERVAL "250") +set(CONFIG_LWIP_TCP_MSL "60000") +set(CONFIG_LWIP_TCP_SND_BUF_DEFAULT "5744") +set(CONFIG_LWIP_TCP_WND_DEFAULT "5744") +set(CONFIG_LWIP_TCP_RECVMBOX_SIZE "6") +set(CONFIG_LWIP_TCP_QUEUE_OOSEQ "y") +set(CONFIG_LWIP_TCP_SACK_OUT "") +set(CONFIG_LWIP_TCP_KEEP_CONNECTION_WHEN_IP_CHANGES "") +set(CONFIG_LWIP_TCP_OVERSIZE_MSS "y") +set(CONFIG_LWIP_TCP_OVERSIZE_QUARTER_MSS "") +set(CONFIG_LWIP_TCP_OVERSIZE_DISABLE "") +set(CONFIG_LWIP_MAX_UDP_PCBS "16") +set(CONFIG_LWIP_UDP_RECVMBOX_SIZE "6") +set(CONFIG_LWIP_TCPIP_TASK_STACK_SIZE "3072") +set(CONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY "y") +set(CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU0 "") +set(CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU1 "") +set(CONFIG_LWIP_TCPIP_TASK_AFFINITY "0x7FFFFFFF") +set(CONFIG_LWIP_PPP_SUPPORT "") +set(CONFIG_LWIP_MULTICAST_PING "") +set(CONFIG_LWIP_BROADCAST_PING "") +set(CONFIG_LWIP_MAX_RAW_PCBS "16") +set(CONFIG_LWIP_DHCP_MAX_NTP_SERVERS "1") +set(CONFIG_LWIP_SNTP_UPDATE_DELAY "3600000") +set(CONFIG_MBEDTLS_INTERNAL_MEM_ALLOC "y") +set(CONFIG_MBEDTLS_DEFAULT_MEM_ALLOC "") +set(CONFIG_MBEDTLS_CUSTOM_MEM_ALLOC "") +set(CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN "y") +set(CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN "16384") +set(CONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN "4096") +set(CONFIG_MBEDTLS_DEBUG "") +set(CONFIG_MBEDTLS_ECP_RESTARTABLE "") +set(CONFIG_MBEDTLS_CMAC_C "") +set(CONFIG_MBEDTLS_HARDWARE_AES "y") +set(CONFIG_MBEDTLS_HARDWARE_MPI "y") +set(CONFIG_MBEDTLS_HARDWARE_SHA "y") +set(CONFIG_MBEDTLS_HAVE_TIME "y") +set(CONFIG_MBEDTLS_HAVE_TIME_DATE "") +set(CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT "y") +set(CONFIG_MBEDTLS_TLS_SERVER_ONLY "") +set(CONFIG_MBEDTLS_TLS_CLIENT_ONLY "") +set(CONFIG_MBEDTLS_TLS_DISABLED "") +set(CONFIG_MBEDTLS_TLS_SERVER "y") +set(CONFIG_MBEDTLS_TLS_CLIENT "y") +set(CONFIG_MBEDTLS_TLS_ENABLED "y") +set(CONFIG_MBEDTLS_PSK_MODES "y") +set(CONFIG_MBEDTLS_KEY_EXCHANGE_PSK "y") +set(CONFIG_MBEDTLS_KEY_EXCHANGE_DHE_PSK "y") +set(CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_PSK "y") +set(CONFIG_MBEDTLS_KEY_EXCHANGE_RSA_PSK "y") +set(CONFIG_MBEDTLS_KEY_EXCHANGE_RSA "y") +set(CONFIG_MBEDTLS_KEY_EXCHANGE_DHE_RSA "y") +set(CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE "y") +set(CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA "y") +set(CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA "y") +set(CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA "y") +set(CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA "y") +set(CONFIG_MBEDTLS_SSL_RENEGOTIATION "y") +set(CONFIG_MBEDTLS_SSL_PROTO_SSL3 "") +set(CONFIG_MBEDTLS_SSL_PROTO_TLS1 "y") +set(CONFIG_MBEDTLS_SSL_PROTO_TLS1_1 "y") +set(CONFIG_MBEDTLS_SSL_PROTO_TLS1_2 "y") +set(CONFIG_MBEDTLS_SSL_PROTO_DTLS "y") +set(CONFIG_MBEDTLS_SSL_ALPN "y") +set(CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS "y") +set(CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS "y") +set(CONFIG_MBEDTLS_AES_C "y") +set(CONFIG_MBEDTLS_CAMELLIA_C "") +set(CONFIG_MBEDTLS_DES_C "") +set(CONFIG_MBEDTLS_RC4_DISABLED "y") +set(CONFIG_MBEDTLS_RC4_ENABLED_NO_DEFAULT "") +set(CONFIG_MBEDTLS_RC4_ENABLED "") +set(CONFIG_MBEDTLS_BLOWFISH_C "") +set(CONFIG_MBEDTLS_XTEA_C "") +set(CONFIG_MBEDTLS_CCM_C "y") +set(CONFIG_MBEDTLS_GCM_C "y") +set(CONFIG_MBEDTLS_RIPEMD160_C "") +set(CONFIG_MBEDTLS_PEM_PARSE_C "y") +set(CONFIG_MBEDTLS_PEM_WRITE_C "y") +set(CONFIG_MBEDTLS_X509_CRL_PARSE_C "y") +set(CONFIG_MBEDTLS_X509_CSR_PARSE_C "y") +set(CONFIG_MBEDTLS_ECP_C "y") +set(CONFIG_MBEDTLS_ECDH_C "y") +set(CONFIG_MBEDTLS_ECDSA_C "y") +set(CONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_SECP224K1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED "y") +set(CONFIG_MBEDTLS_ECP_NIST_OPTIM "y") +set(CONFIG_MBEDTLS_SECURITY_RISKS "") +set(CONFIG_MDNS_MAX_SERVICES "10") +set(CONFIG_MDNS_TASK_PRIORITY "1") +set(CONFIG_MDNS_TASK_AFFINITY_NO_AFFINITY "") +set(CONFIG_MDNS_TASK_AFFINITY_CPU0 "y") +set(CONFIG_MDNS_TASK_AFFINITY_CPU1 "") +set(CONFIG_MDNS_TASK_AFFINITY "0x0") +set(CONFIG_MDNS_SERVICE_ADD_TIMEOUT_MS "2000") +set(CONFIG_MDNS_TIMER_PERIOD_MS "100") +set(CONFIG_MQTT_PROTOCOL_311 "y") +set(CONFIG_MQTT_TRANSPORT_SSL "y") +set(CONFIG_MQTT_TRANSPORT_WEBSOCKET "y") +set(CONFIG_MQTT_TRANSPORT_WEBSOCKET_SECURE "y") +set(CONFIG_MQTT_USE_CUSTOM_CONFIG "") +set(CONFIG_MQTT_TASK_CORE_SELECTION_ENABLED "") +set(CONFIG_MQTT_CUSTOM_OUTBOX "") +set(CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF "y") +set(CONFIG_NEWLIB_STDOUT_LINE_ENDING_LF "") +set(CONFIG_NEWLIB_STDOUT_LINE_ENDING_CR "") +set(CONFIG_NEWLIB_STDIN_LINE_ENDING_CRLF "") +set(CONFIG_NEWLIB_STDIN_LINE_ENDING_LF "") +set(CONFIG_NEWLIB_STDIN_LINE_ENDING_CR "y") +set(CONFIG_NEWLIB_NANO_FORMAT "") +set(CONFIG_OPENSSL_DEBUG "") +set(CONFIG_OPENSSL_ASSERT_DO_NOTHING "") +set(CONFIG_OPENSSL_ASSERT_EXIT "y") +set(CONFIG_PTHREAD_TASK_PRIO_DEFAULT "5") +set(CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT "3072") +set(CONFIG_PTHREAD_STACK_MIN "768") +set(CONFIG_PTHREAD_DEFAULT_CORE_NO_AFFINITY "y") +set(CONFIG_PTHREAD_DEFAULT_CORE_0 "") +set(CONFIG_PTHREAD_DEFAULT_CORE_1 "") +set(CONFIG_PTHREAD_TASK_CORE_DEFAULT "-1") +set(CONFIG_PTHREAD_TASK_NAME_DEFAULT "pthread") +set(CONFIG_SPI_FLASH_VERIFY_WRITE "") +set(CONFIG_SPI_FLASH_ENABLE_COUNTERS "") +set(CONFIG_SPI_FLASH_ROM_DRIVER_PATCH "y") +set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS "y") +set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS "") +set(CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED "") +set(CONFIG_SPI_FLASH_USE_LEGACY_IMPL "") +set(CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP "y") +set(CONFIG_SPI_FLASH_SUPPORT_GD_CHIP "y") +set(CONFIG_SPIFFS_MAX_PARTITIONS "3") +set(CONFIG_SPIFFS_CACHE "y") +set(CONFIG_SPIFFS_CACHE_WR "y") +set(CONFIG_SPIFFS_CACHE_STATS "") +set(CONFIG_SPIFFS_PAGE_CHECK "y") +set(CONFIG_SPIFFS_GC_MAX_RUNS "10") +set(CONFIG_SPIFFS_GC_STATS "") +set(CONFIG_SPIFFS_PAGE_SIZE "256") +set(CONFIG_SPIFFS_OBJ_NAME_LEN "32") +set(CONFIG_SPIFFS_FOLLOW_SYMLINKS "") +set(CONFIG_SPIFFS_USE_MAGIC "y") +set(CONFIG_SPIFFS_USE_MAGIC_LENGTH "y") +set(CONFIG_SPIFFS_META_LENGTH "4") +set(CONFIG_SPIFFS_USE_MTIME "y") +set(CONFIG_SPIFFS_DBG "") +set(CONFIG_SPIFFS_API_DBG "") +set(CONFIG_SPIFFS_GC_DBG "") +set(CONFIG_SPIFFS_CACHE_DBG "") +set(CONFIG_SPIFFS_CHECK_DBG "") +set(CONFIG_SPIFFS_TEST_VISUALISATION "") +set(CONFIG_UNITY_ENABLE_FLOAT "y") +set(CONFIG_UNITY_ENABLE_DOUBLE "y") +set(CONFIG_UNITY_ENABLE_COLOR "") +set(CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER "y") +set(CONFIG_UNITY_ENABLE_FIXTURE "") +set(CONFIG_UNITY_ENABLE_BACKTRACE_ON_FAIL "") +set(CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT "y") +set(CONFIG_VFS_SUPPORT_TERMIOS "y") +set(CONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS "1") +set(CONFIG_SEMIHOSTFS_HOST_PATH_MAX_LEN "128") +set(CONFIG_WL_SECTOR_SIZE_512 "") +set(CONFIG_WL_SECTOR_SIZE_4096 "y") +set(CONFIG_WL_SECTOR_SIZE "4096") +set(CONFIG_WIFI_PROV_SCAN_MAX_ENTRIES "16") +set(CONFIG_WIFI_PROV_AUTOSTOP_TIMEOUT "30") +set(CONFIG_WPA_MBEDTLS_CRYPTO "y") +set(CONFIG_WPA_DEBUG_PRINT "") +set(CONFIG_LVGL_PREDEFINED_DISPLAY_NONE "") +set(CONFIG_LVGL_PREDEFINED_DISPLAY_WROVER4 "y") +set(CONFIG_LVGL_PREDEFINED_DISPLAY_M5STACK "") +set(CONFIG_LVGL_PREDEFINED_DISPLAY_ERTFT0356 "") +set(CONFIG_LVGL_PREDEFINED_DISPLAY_ADA_FEATHERWING "") +set(CONFIG_LVGL_TFT_DISPLAY_SPI_HSPI "y") +set(CONFIG_LVGL_TFT_DISPLAY_SPI_VSPI "") +set(CONFIG_LVGL_DISPLAY_WIDTH "320") +set(CONFIG_LVGL_DISPLAY_HEIGHT "240") +set(CONFIG_LVGL_ENABLE_BACKLIGHT_CONTROL "") +set(CONFIG_LVGL_DISP_SPI_MOSI "13") +set(CONFIG_LVGL_DISP_SPI_CLK "14") +set(CONFIG_LVGL_DISP_SPI_CS "15") +set(CONFIG_LVGL_DISP_PIN_DC "2") +set(CONFIG_LVGL_DISP_PIN_RST "4") +set(CONFIG_LVGL_DISP_PIN_BCKL "21") +set(CONFIG_LVGL_TOUCH_SPI_MISO "19") +set(CONFIG_LVGL_TOUCH_SPI_MOSI "23") +set(CONFIG_LVGL_TOUCH_SPI_CLK "18") +set(CONFIG_LVGL_TOUCH_SPI_CS "5") +set(CONFIG_LVGL_TOUCH_PIN_IRQ "25") +set(CONFIG_LVGL_TOUCH_I2C_SDA "21") +set(CONFIG_LVGL_TOUCH_I2C_SCL "22") +set(CONFIG_LVGL_TOUCH_SPI_MISO "19") +set(CONFIG_LVGL_TOUCH_SPI_MOSI "23") +set(CONFIG_LVGL_TOUCH_SPI_CLK "18") +set(CONFIG_LVGL_TOUCH_SPI_CS "5") +set(CONFIG_LVGL_TOUCH_X_MIN "200") +set(CONFIG_LVGL_TOUCH_Y_MIN "120") +set(CONFIG_LVGL_TOUCH_X_MAX "1900") +set(CONFIG_LVGL_TOUCH_Y_MAX "1900") +set(CONFIG_LVGL_TOUCH_INVERT_X "y") +set(CONFIG_LVGL_TOUCH_INVERT_Y "y") +set(CONFIG_LVGL_FT6X36_SWAPXY "y") +set(CONFIG_LVGL_FT6X36_INVERT_Y "y") +set(CONFIG_LVGL_TOUCH_X_MIN "200") +set(CONFIG_LVGL_TOUCH_Y_MIN "120") +set(CONFIG_LVGL_TOUCH_X_MAX "1900") +set(CONFIG_LVGL_TOUCH_Y_MAX "1900") +set(CONFIG_LVGL_TOUCH_INVERT_X "y") +set(CONFIG_LVGL_TOUCH_INVERT_Y "y") +set(CONFIG_LEGACY_INCLUDE_COMMON_HEADERS "") +set(CONFIGS_LIST CONFIG_IDF_CMAKE;CONFIG_IDF_TARGET;CONFIG_IDF_TARGET_ESP32;CONFIG_IDF_FIRMWARE_CHIP_ID;CONFIG_SDK_TOOLPREFIX;CONFIG_TOOLPREFIX;CONFIG_SDK_TOOLCHAIN_SUPPORTS_TIME_WIDE_64_BITS;CONFIG_APP_BUILD_TYPE_APP_2NDBOOT;CONFIG_APP_BUILD_TYPE_ELF_RAM;CONFIG_APP_BUILD_GENERATE_BINARIES;CONFIG_APP_BUILD_BOOTLOADER;CONFIG_APP_BUILD_USE_FLASH_SECTIONS;CONFIG_APP_COMPILE_TIME_DATE;CONFIG_APP_EXCLUDE_PROJECT_VER_VAR;CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR;CONFIG_APP_PROJECT_VER_FROM_CONFIG;CONFIG_BOOTLOADER_LOG_LEVEL_NONE;CONFIG_LOG_BOOTLOADER_LEVEL_NONE;CONFIG_BOOTLOADER_LOG_LEVEL_ERROR;CONFIG_LOG_BOOTLOADER_LEVEL_ERROR;CONFIG_BOOTLOADER_LOG_LEVEL_WARN;CONFIG_LOG_BOOTLOADER_LEVEL_WARN;CONFIG_BOOTLOADER_LOG_LEVEL_INFO;CONFIG_LOG_BOOTLOADER_LEVEL_INFO;CONFIG_BOOTLOADER_LOG_LEVEL_DEBUG;CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG;CONFIG_BOOTLOADER_LOG_LEVEL_VERBOSE;CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE;CONFIG_BOOTLOADER_LOG_LEVEL;CONFIG_LOG_BOOTLOADER_LEVEL;CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_8V;CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V;CONFIG_BOOTLOADER_FACTORY_RESET;CONFIG_BOOTLOADER_APP_TEST;CONFIG_BOOTLOADER_WDT_ENABLE;CONFIG_BOOTLOADER_WDT_DISABLE_IN_USER_CODE;CONFIG_BOOTLOADER_WDT_TIME_MS;CONFIG_BOOTLOADER_APP_ROLLBACK_ENABLE;CONFIG_APP_ROLLBACK_ENABLE;CONFIG_BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP;CONFIG_BOOTLOADER_RESERVE_RTC_SIZE;CONFIG_BOOTLOADER_CUSTOM_RESERVE_RTC;CONFIG_SECURE_SIGNED_APPS_NO_SECURE_BOOT;CONFIG_SECURE_BOOT_ENABLED;CONFIG_SECURE_FLASH_ENC_ENABLED;CONFIG_FLASH_ENCRYPTION_ENABLED;CONFIG_ESPTOOLPY_BAUD_OTHER_VAL;CONFIG_ESPTOOLPY_FLASHMODE_QIO;CONFIG_FLASHMODE_QIO;CONFIG_ESPTOOLPY_FLASHMODE_QOUT;CONFIG_FLASHMODE_QOUT;CONFIG_ESPTOOLPY_FLASHMODE_DIO;CONFIG_FLASHMODE_DIO;CONFIG_ESPTOOLPY_FLASHMODE_DOUT;CONFIG_FLASHMODE_DOUT;CONFIG_ESPTOOLPY_FLASHMODE;CONFIG_ESPTOOLPY_FLASHFREQ_80M;CONFIG_ESPTOOLPY_FLASHFREQ_40M;CONFIG_ESPTOOLPY_FLASHFREQ_26M;CONFIG_ESPTOOLPY_FLASHFREQ_20M;CONFIG_ESPTOOLPY_FLASHFREQ;CONFIG_ESPTOOLPY_FLASHSIZE_1MB;CONFIG_ESPTOOLPY_FLASHSIZE_2MB;CONFIG_ESPTOOLPY_FLASHSIZE_4MB;CONFIG_ESPTOOLPY_FLASHSIZE_8MB;CONFIG_ESPTOOLPY_FLASHSIZE_16MB;CONFIG_ESPTOOLPY_FLASHSIZE;CONFIG_ESPTOOLPY_FLASHSIZE_DETECT;CONFIG_ESPTOOLPY_BEFORE_RESET;CONFIG_ESPTOOLPY_BEFORE_NORESET;CONFIG_ESPTOOLPY_BEFORE;CONFIG_ESPTOOLPY_AFTER_RESET;CONFIG_ESPTOOLPY_AFTER_NORESET;CONFIG_ESPTOOLPY_AFTER;CONFIG_ESPTOOLPY_MONITOR_BAUD_9600B;CONFIG_MONITOR_BAUD_9600B;CONFIG_ESPTOOLPY_MONITOR_BAUD_57600B;CONFIG_MONITOR_BAUD_57600B;CONFIG_ESPTOOLPY_MONITOR_BAUD_115200B;CONFIG_MONITOR_BAUD_115200B;CONFIG_ESPTOOLPY_MONITOR_BAUD_230400B;CONFIG_MONITOR_BAUD_230400B;CONFIG_ESPTOOLPY_MONITOR_BAUD_921600B;CONFIG_MONITOR_BAUD_921600B;CONFIG_ESPTOOLPY_MONITOR_BAUD_2MB;CONFIG_MONITOR_BAUD_2MB;CONFIG_ESPTOOLPY_MONITOR_BAUD_OTHER;CONFIG_MONITOR_BAUD_OTHER;CONFIG_ESPTOOLPY_MONITOR_BAUD_OTHER_VAL;CONFIG_MONITOR_BAUD_OTHER_VAL;CONFIG_ESPTOOLPY_MONITOR_BAUD;CONFIG_MONITOR_BAUD;CONFIG_PARTITION_TABLE_SINGLE_APP;CONFIG_PARTITION_TABLE_TWO_OTA;CONFIG_PARTITION_TABLE_CUSTOM;CONFIG_PARTITION_TABLE_CUSTOM_FILENAME;CONFIG_PARTITION_TABLE_FILENAME;CONFIG_PARTITION_TABLE_OFFSET;CONFIG_PARTITION_TABLE_MD5;CONFIG_STORE_HISTORY;CONFIG_COMPILER_OPTIMIZATION_DEFAULT;CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG;CONFIG_COMPILER_OPTIMIZATION_SIZE;CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE;CONFIG_COMPILER_OPTIMIZATION_PERF;CONFIG_COMPILER_OPTIMIZATION_NONE;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE;CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_SILENT;CONFIG_OPTIMIZATION_ASSERTIONS_SILENT;CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE;CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED;CONFIG_COMPILER_CXX_EXCEPTIONS;CONFIG_CXX_EXCEPTIONS;CONFIG_COMPILER_CXX_RTTI;CONFIG_COMPILER_STACK_CHECK_MODE_NONE;CONFIG_STACK_CHECK_NONE;CONFIG_COMPILER_STACK_CHECK_MODE_NORM;CONFIG_STACK_CHECK_NORM;CONFIG_COMPILER_STACK_CHECK_MODE_STRONG;CONFIG_STACK_CHECK_STRONG;CONFIG_COMPILER_STACK_CHECK_MODE_ALL;CONFIG_STACK_CHECK_ALL;CONFIG_COMPILER_WARN_WRITE_STRINGS;CONFIG_WARN_WRITE_STRINGS;CONFIG_COMPILER_DISABLE_GCC8_WARNINGS;CONFIG_DISABLE_GCC8_WARNINGS;CONFIG_APPTRACE_DEST_TRAX;CONFIG_ESP32_APPTRACE_DEST_TRAX;CONFIG_APPTRACE_DEST_NONE;CONFIG_ESP32_APPTRACE_DEST_NONE;CONFIG_APPTRACE_LOCK_ENABLE;CONFIG_ESP32_APPTRACE_LOCK_ENABLE;CONFIG_BT_ENABLED;CONFIG_BTDM_CTRL_BR_EDR_SCO_DATA_PATH_EFF;CONFIG_BTDM_CTRL_BLE_MAX_CONN_EFF;CONFIG_BTDM_CONTROLLER_BLE_MAX_CONN_EFF;CONFIG_BTDM_CTRL_BR_EDR_MAX_ACL_CONN_EFF;CONFIG_BTDM_CONTROLLER_BR_EDR_MAX_ACL_CONN_EFF;CONFIG_BTDM_CTRL_BR_EDR_MAX_SYNC_CONN_EFF;CONFIG_BTDM_CONTROLLER_BR_EDR_MAX_SYNC_CONN_EFF;CONFIG_BTDM_CTRL_PINNED_TO_CORE;CONFIG_BTDM_CONTROLLER_PINNED_TO_CORE;CONFIG_BTDM_BLE_SLEEP_CLOCK_ACCURACY_INDEX_EFF;CONFIG_BT_RESERVE_DRAM;CONFIG_COAP_MBEDTLS_PSK;CONFIG_COAP_MBEDTLS_PKI;CONFIG_COAP_MBEDTLS_DEBUG;CONFIG_COAP_LOG_DEFAULT_LEVEL;CONFIG_ADC_FORCE_XPD_FSM;CONFIG_ADC_DISABLE_DAC;CONFIG_ADC2_DISABLE_DAC;CONFIG_SPI_MASTER_IN_IRAM;CONFIG_SPI_MASTER_ISR_IN_IRAM;CONFIG_SPI_SLAVE_IN_IRAM;CONFIG_SPI_SLAVE_ISR_IN_IRAM;CONFIG_UART_ISR_IN_IRAM;CONFIG_RTCIO_SUPPORT_RTC_GPIO_DESC;CONFIG_EFUSE_CUSTOM_TABLE;CONFIG_EFUSE_VIRTUAL;CONFIG_EFUSE_CODE_SCHEME_COMPAT_NONE;CONFIG_EFUSE_CODE_SCHEME_COMPAT_3_4;CONFIG_EFUSE_CODE_SCHEME_COMPAT_REPEAT;CONFIG_EFUSE_MAX_BLK_LEN;CONFIG_ESP_TLS_USING_MBEDTLS;CONFIG_ESP_TLS_SERVER;CONFIG_ESP_TLS_PSK_VERIFICATION;CONFIG_ESP32_REV_MIN_0;CONFIG_ESP32_REV_MIN_1;CONFIG_ESP32_REV_MIN_2;CONFIG_ESP32_REV_MIN_3;CONFIG_ESP32_REV_MIN;CONFIG_ESP32_DPORT_WORKAROUND;CONFIG_ESP32_DEFAULT_CPU_FREQ_80;CONFIG_ESP32_DEFAULT_CPU_FREQ_160;CONFIG_ESP32_DEFAULT_CPU_FREQ_240;CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ;CONFIG_ESP32_SPIRAM_SUPPORT;CONFIG_SPIRAM_SUPPORT;CONFIG_ESP32_TRAX;CONFIG_ESP32_TRACEMEM_RESERVE_DRAM;CONFIG_TRACEMEM_RESERVE_DRAM;CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_TWO;CONFIG_TWO_UNIVERSAL_MAC_ADDRESS;CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR;CONFIG_FOUR_UNIVERSAL_MAC_ADDRESS;CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES;CONFIG_NUMBER_OF_UNIVERSAL_MAC_ADDRESS;CONFIG_ESP32_ULP_COPROC_ENABLED;CONFIG_ULP_COPROC_ENABLED;CONFIG_ESP32_ULP_COPROC_RESERVE_MEM;CONFIG_ULP_COPROC_RESERVE_MEM;CONFIG_ESP32_PANIC_PRINT_HALT;CONFIG_ESP32_PANIC_PRINT_REBOOT;CONFIG_ESP32_PANIC_SILENT_REBOOT;CONFIG_ESP32_PANIC_GDBSTUB;CONFIG_ESP32_DEBUG_OCDAWARE;CONFIG_ESP32_BROWNOUT_DET;CONFIG_BROWNOUT_DET;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_0;CONFIG_BROWNOUT_DET_LVL_SEL_0;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_1;CONFIG_BROWNOUT_DET_LVL_SEL_1;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_2;CONFIG_BROWNOUT_DET_LVL_SEL_2;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_3;CONFIG_BROWNOUT_DET_LVL_SEL_3;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_4;CONFIG_BROWNOUT_DET_LVL_SEL_4;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_5;CONFIG_BROWNOUT_DET_LVL_SEL_5;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_6;CONFIG_BROWNOUT_DET_LVL_SEL_6;CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_7;CONFIG_BROWNOUT_DET_LVL_SEL_7;CONFIG_ESP32_BROWNOUT_DET_LVL;CONFIG_BROWNOUT_DET_LVL;CONFIG_ESP32_REDUCE_PHY_TX_POWER;CONFIG_REDUCE_PHY_TX_POWER;CONFIG_ESP32_TIME_SYSCALL_USE_RTC_FRC1;CONFIG_ESP32_TIME_SYSCALL_USE_RTC;CONFIG_ESP32_TIME_SYSCALL_USE_FRC1;CONFIG_ESP32_TIME_SYSCALL_USE_NONE;CONFIG_ESP32_RTC_CLK_SRC_INT_RC;CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_RC;CONFIG_ESP32_RTC_CLK_SRC_EXT_CRYS;CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_CRYSTAL;CONFIG_ESP32_RTC_CLK_SRC_EXT_OSC;CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_OSC;CONFIG_ESP32_RTC_CLK_SRC_INT_8MD256;CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_8MD256;CONFIG_ESP32_RTC_CLK_CAL_CYCLES;CONFIG_ESP32_DEEP_SLEEP_WAKEUP_DELAY;CONFIG_ESP32_XTAL_FREQ_40;CONFIG_ESP32_XTAL_FREQ_26;CONFIG_ESP32_XTAL_FREQ_AUTO;CONFIG_ESP32_XTAL_FREQ;CONFIG_ESP32_DISABLE_BASIC_ROM_CONSOLE;CONFIG_DISABLE_BASIC_ROM_CONSOLE;CONFIG_ESP32_NO_BLOBS;CONFIG_NO_BLOBS;CONFIG_ESP32_COMPATIBLE_PRE_V2_1_BOOTLOADERS;CONFIG_COMPATIBLE_PRE_V2_1_BOOTLOADERS;CONFIG_ESP32_USE_FIXED_STATIC_RAM_SIZE;CONFIG_ESP32_DPORT_DIS_INTERRUPT_LVL;CONFIG_PM_ENABLE;CONFIG_ADC_CAL_EFUSE_TP_ENABLE;CONFIG_ADC_CAL_EFUSE_VREF_ENABLE;CONFIG_ADC_CAL_LUT_ENABLE;CONFIG_ESP_ERR_TO_NAME_LOOKUP;CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE;CONFIG_SYSTEM_EVENT_QUEUE_SIZE;CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE;CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE;CONFIG_ESP_MAIN_TASK_STACK_SIZE;CONFIG_MAIN_TASK_STACK_SIZE;CONFIG_ESP_IPC_TASK_STACK_SIZE;CONFIG_IPC_TASK_STACK_SIZE;CONFIG_ESP_IPC_USES_CALLERS_PRIORITY;CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE;CONFIG_ESP_CONSOLE_UART_DEFAULT;CONFIG_CONSOLE_UART_DEFAULT;CONFIG_ESP_CONSOLE_UART_CUSTOM;CONFIG_CONSOLE_UART_CUSTOM;CONFIG_ESP_CONSOLE_UART_NONE;CONFIG_CONSOLE_UART_NONE;CONFIG_ESP_CONSOLE_UART_NUM;CONFIG_CONSOLE_UART_NUM;CONFIG_ESP_CONSOLE_UART_BAUDRATE;CONFIG_CONSOLE_UART_BAUDRATE;CONFIG_ESP_INT_WDT;CONFIG_INT_WDT;CONFIG_ESP_INT_WDT_TIMEOUT_MS;CONFIG_INT_WDT_TIMEOUT_MS;CONFIG_ESP_INT_WDT_CHECK_CPU1;CONFIG_INT_WDT_CHECK_CPU1;CONFIG_ESP_TASK_WDT;CONFIG_TASK_WDT;CONFIG_ESP_TASK_WDT_PANIC;CONFIG_TASK_WDT_PANIC;CONFIG_ESP_TASK_WDT_TIMEOUT_S;CONFIG_TASK_WDT_TIMEOUT_S;CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0;CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0;CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1;CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1;CONFIG_ESP_PANIC_HANDLER_IRAM;CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA;CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP;CONFIG_ESP_MAC_ADDR_UNIVERSE_BT;CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH;CONFIG_ETH_ENABLED;CONFIG_ETH_USE_ESP32_EMAC;CONFIG_ETH_PHY_INTERFACE_RMII;CONFIG_ETH_PHY_INTERFACE_MII;CONFIG_ETH_RMII_CLK_INPUT;CONFIG_ETH_RMII_CLK_OUTPUT;CONFIG_ETH_RMII_CLK_IN_GPIO;CONFIG_ETH_DMA_BUFFER_SIZE;CONFIG_ETH_DMA_RX_BUFFER_NUM;CONFIG_ETH_DMA_TX_BUFFER_NUM;CONFIG_ETH_USE_SPI_ETHERNET;CONFIG_ETH_SPI_ETHERNET_DM9051;CONFIG_ETH_USE_OPENETH;CONFIG_ESP_EVENT_LOOP_PROFILING;CONFIG_EVENT_LOOP_PROFILING;CONFIG_ESP_EVENT_POST_FROM_ISR;CONFIG_POST_EVENTS_FROM_ISR;CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR;CONFIG_POST_EVENTS_FROM_IRAM_ISR;CONFIG_ESP_HTTP_CLIENT_ENABLE_HTTPS;CONFIG_ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH;CONFIG_HTTPD_MAX_REQ_HDR_LEN;CONFIG_HTTPD_MAX_URI_LEN;CONFIG_HTTPD_ERR_RESP_NO_DELAY;CONFIG_HTTPD_PURGE_BUF_LEN;CONFIG_HTTPD_LOG_PURGE_DATA;CONFIG_OTA_ALLOW_HTTP;CONFIG_ESP_HTTPS_SERVER_ENABLE;CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL;CONFIG_ESP_NETIF_TCPIP_LWIP;CONFIG_ESP_NETIF_LOOPBACK;CONFIG_ESP_NETIF_TCPIP_ADAPTER_COMPATIBLE_LAYER;CONFIG_ESP_TIMER_PROFILING;CONFIG_ESP_TIMER_TASK_STACK_SIZE;CONFIG_TIMER_TASK_STACK_SIZE;CONFIG_ESP_TIMER_IMPL_FRC2;CONFIG_ESP_TIMER_IMPL_TG0_LAC;CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM;CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM;CONFIG_ESP32_WIFI_STATIC_TX_BUFFER;CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER;CONFIG_ESP32_WIFI_TX_BUFFER_TYPE;CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM;CONFIG_ESP32_WIFI_CSI_ENABLED;CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED;CONFIG_ESP32_WIFI_TX_BA_WIN;CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED;CONFIG_ESP32_WIFI_RX_BA_WIN;CONFIG_ESP32_WIFI_NVS_ENABLED;CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_0;CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_1;CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN;CONFIG_ESP32_WIFI_MGMT_SBUF_NUM;CONFIG_ESP32_WIFI_DEBUG_LOG_ENABLE;CONFIG_ESP32_WIFI_IRAM_OPT;CONFIG_ESP32_WIFI_RX_IRAM_OPT;CONFIG_ESP32_WIFI_ENABLE_WPA3_SAE;CONFIG_ESP32_PHY_CALIBRATION_AND_DATA_STORAGE;CONFIG_ESP32_PHY_INIT_DATA_IN_PARTITION;CONFIG_ESP32_PHY_MAX_WIFI_TX_POWER;CONFIG_ESP32_PHY_MAX_TX_POWER;CONFIG_ESP32_ENABLE_COREDUMP_TO_FLASH;CONFIG_ESP32_ENABLE_COREDUMP_TO_UART;CONFIG_ESP32_ENABLE_COREDUMP_TO_NONE;CONFIG_FATFS_CODEPAGE_DYNAMIC;CONFIG_FATFS_CODEPAGE_437;CONFIG_FATFS_CODEPAGE_720;CONFIG_FATFS_CODEPAGE_737;CONFIG_FATFS_CODEPAGE_771;CONFIG_FATFS_CODEPAGE_775;CONFIG_FATFS_CODEPAGE_850;CONFIG_FATFS_CODEPAGE_852;CONFIG_FATFS_CODEPAGE_855;CONFIG_FATFS_CODEPAGE_857;CONFIG_FATFS_CODEPAGE_860;CONFIG_FATFS_CODEPAGE_861;CONFIG_FATFS_CODEPAGE_862;CONFIG_FATFS_CODEPAGE_863;CONFIG_FATFS_CODEPAGE_864;CONFIG_FATFS_CODEPAGE_865;CONFIG_FATFS_CODEPAGE_866;CONFIG_FATFS_CODEPAGE_869;CONFIG_FATFS_CODEPAGE_932;CONFIG_FATFS_CODEPAGE_936;CONFIG_FATFS_CODEPAGE_949;CONFIG_FATFS_CODEPAGE_950;CONFIG_FATFS_CODEPAGE;CONFIG_FATFS_LFN_NONE;CONFIG_FATFS_LFN_HEAP;CONFIG_FATFS_LFN_STACK;CONFIG_FATFS_FS_LOCK;CONFIG_FATFS_TIMEOUT_MS;CONFIG_FATFS_PER_FILE_CACHE;CONFIG_FMB_COMM_MODE_RTU_EN;CONFIG_FMB_COMM_MODE_ASCII_EN;CONFIG_FMB_MASTER_TIMEOUT_MS_RESPOND;CONFIG_MB_MASTER_TIMEOUT_MS_RESPOND;CONFIG_FMB_MASTER_DELAY_MS_CONVERT;CONFIG_MB_MASTER_DELAY_MS_CONVERT;CONFIG_FMB_QUEUE_LENGTH;CONFIG_MB_QUEUE_LENGTH;CONFIG_FMB_SERIAL_TASK_STACK_SIZE;CONFIG_MB_SERIAL_TASK_STACK_SIZE;CONFIG_FMB_SERIAL_BUF_SIZE;CONFIG_MB_SERIAL_BUF_SIZE;CONFIG_FMB_SERIAL_ASCII_BITS_PER_SYMB;CONFIG_FMB_SERIAL_ASCII_TIMEOUT_RESPOND_MS;CONFIG_FMB_SERIAL_TASK_PRIO;CONFIG_MB_SERIAL_TASK_PRIO;CONFIG_FMB_CONTROLLER_SLAVE_ID_SUPPORT;CONFIG_MB_CONTROLLER_SLAVE_ID_SUPPORT;CONFIG_FMB_CONTROLLER_NOTIFY_TIMEOUT;CONFIG_MB_CONTROLLER_NOTIFY_TIMEOUT;CONFIG_FMB_CONTROLLER_NOTIFY_QUEUE_SIZE;CONFIG_MB_CONTROLLER_NOTIFY_QUEUE_SIZE;CONFIG_FMB_CONTROLLER_STACK_SIZE;CONFIG_MB_CONTROLLER_STACK_SIZE;CONFIG_FMB_EVENT_QUEUE_TIMEOUT;CONFIG_MB_EVENT_QUEUE_TIMEOUT;CONFIG_FMB_TIMER_PORT_ENABLED;CONFIG_MB_TIMER_PORT_ENABLED;CONFIG_FMB_TIMER_GROUP;CONFIG_MB_TIMER_GROUP;CONFIG_FMB_TIMER_INDEX;CONFIG_MB_TIMER_INDEX;CONFIG_FMB_TIMER_ISR_IN_IRAM;CONFIG_FREERTOS_UNICORE;CONFIG_FREERTOS_NO_AFFINITY;CONFIG_FREERTOS_CORETIMER_0;CONFIG_FREERTOS_CORETIMER_1;CONFIG_FREERTOS_HZ;CONFIG_FREERTOS_ASSERT_ON_UNTESTED_FUNCTION;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_NONE;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_PTRVAL;CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY;CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK;CONFIG_FREERTOS_INTERRUPT_BACKTRACE;CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS;CONFIG_FREERTOS_ASSERT_FAIL_ABORT;CONFIG_FREERTOS_ASSERT_FAIL_PRINT_CONTINUE;CONFIG_FREERTOS_ASSERT_DISABLE;CONFIG_FREERTOS_IDLE_TASK_STACKSIZE;CONFIG_FREERTOS_ISR_STACKSIZE;CONFIG_FREERTOS_LEGACY_HOOKS;CONFIG_FREERTOS_MAX_TASK_NAME_LEN;CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION;CONFIG_SUPPORT_STATIC_ALLOCATION;CONFIG_FREERTOS_TIMER_TASK_PRIORITY;CONFIG_TIMER_TASK_PRIORITY;CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH;CONFIG_TIMER_TASK_STACK_DEPTH;CONFIG_FREERTOS_TIMER_QUEUE_LENGTH;CONFIG_TIMER_QUEUE_LENGTH;CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE;CONFIG_FREERTOS_USE_TRACE_FACILITY;CONFIG_FREERTOS_USE_STATS_FORMATTING_FUNCTIONS;CONFIG_FREERTOS_VTASKLIST_INCLUDE_COREID;CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS;CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER;CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER;CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE;CONFIG_FREERTOS_DEBUG_OCDAWARE;CONFIG_FREERTOS_FPU_IN_ISR;CONFIG_HEAP_POISONING_DISABLED;CONFIG_HEAP_POISONING_LIGHT;CONFIG_HEAP_POISONING_COMPREHENSIVE;CONFIG_HEAP_TRACING_OFF;CONFIG_HEAP_TRACING_STANDALONE;CONFIG_HEAP_TRACING_TOHOST;CONFIG_JSMN_PARENT_LINKS;CONFIG_JSMN_STRICT;CONFIG_LOG_DEFAULT_LEVEL_NONE;CONFIG_LOG_DEFAULT_LEVEL_ERROR;CONFIG_LOG_DEFAULT_LEVEL_WARN;CONFIG_LOG_DEFAULT_LEVEL_INFO;CONFIG_LOG_DEFAULT_LEVEL_DEBUG;CONFIG_LOG_DEFAULT_LEVEL_VERBOSE;CONFIG_LOG_DEFAULT_LEVEL;CONFIG_LOG_COLORS;CONFIG_LOG_TIMESTAMP_SOURCE_RTOS;CONFIG_LOG_TIMESTAMP_SOURCE_SYSTEM;CONFIG_LWIP_LOCAL_HOSTNAME;CONFIG_LWIP_DNS_SUPPORT_MDNS_QUERIES;CONFIG_LWIP_L2_TO_L3_COPY;CONFIG_L2_TO_L3_COPY;CONFIG_LWIP_IRAM_OPTIMIZATION;CONFIG_LWIP_TIMERS_ONDEMAND;CONFIG_LWIP_MAX_SOCKETS;CONFIG_LWIP_USE_ONLY_LWIP_SELECT;CONFIG_USE_ONLY_LWIP_SELECT;CONFIG_LWIP_SO_REUSE;CONFIG_LWIP_SO_REUSE_RXTOALL;CONFIG_LWIP_SO_RCVBUF;CONFIG_LWIP_NETBUF_RECVINFO;CONFIG_LWIP_IP_FRAG;CONFIG_LWIP_IP_REASSEMBLY;CONFIG_LWIP_STATS;CONFIG_LWIP_ETHARP_TRUST_IP_MAC;CONFIG_LWIP_ESP_GRATUITOUS_ARP;CONFIG_ESP_GRATUITOUS_ARP;CONFIG_LWIP_GARP_TMR_INTERVAL;CONFIG_GARP_TMR_INTERVAL;CONFIG_LWIP_TCPIP_RECVMBOX_SIZE;CONFIG_TCPIP_RECVMBOX_SIZE;CONFIG_LWIP_DHCP_DOES_ARP_CHECK;CONFIG_LWIP_DHCP_RESTORE_LAST_IP;CONFIG_LWIP_DHCPS_LEASE_UNIT;CONFIG_LWIP_DHCPS_MAX_STATION_NUM;CONFIG_LWIP_AUTOIP;CONFIG_LWIP_NETIF_LOOPBACK;CONFIG_LWIP_LOOPBACK_MAX_PBUFS;CONFIG_LWIP_MAX_ACTIVE_TCP;CONFIG_LWIP_MAX_LISTENING_TCP;CONFIG_LWIP_TCP_MAXRTX;CONFIG_TCP_MAXRTX;CONFIG_LWIP_TCP_SYNMAXRTX;CONFIG_TCP_SYNMAXRTX;CONFIG_LWIP_TCP_MSS;CONFIG_TCP_MSS;CONFIG_LWIP_TCP_TMR_INTERVAL;CONFIG_LWIP_TCP_MSL;CONFIG_TCP_MSL;CONFIG_LWIP_TCP_SND_BUF_DEFAULT;CONFIG_TCP_SND_BUF_DEFAULT;CONFIG_LWIP_TCP_WND_DEFAULT;CONFIG_TCP_WND_DEFAULT;CONFIG_LWIP_TCP_RECVMBOX_SIZE;CONFIG_TCP_RECVMBOX_SIZE;CONFIG_LWIP_TCP_QUEUE_OOSEQ;CONFIG_TCP_QUEUE_OOSEQ;CONFIG_LWIP_TCP_SACK_OUT;CONFIG_LWIP_TCP_KEEP_CONNECTION_WHEN_IP_CHANGES;CONFIG_ESP_TCP_KEEP_CONNECTION_WHEN_IP_CHANGES;CONFIG_LWIP_TCP_OVERSIZE_MSS;CONFIG_TCP_OVERSIZE_MSS;CONFIG_LWIP_TCP_OVERSIZE_QUARTER_MSS;CONFIG_TCP_OVERSIZE_QUARTER_MSS;CONFIG_LWIP_TCP_OVERSIZE_DISABLE;CONFIG_TCP_OVERSIZE_DISABLE;CONFIG_LWIP_MAX_UDP_PCBS;CONFIG_LWIP_UDP_RECVMBOX_SIZE;CONFIG_UDP_RECVMBOX_SIZE;CONFIG_LWIP_TCPIP_TASK_STACK_SIZE;CONFIG_TCPIP_TASK_STACK_SIZE;CONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY;CONFIG_TCPIP_TASK_AFFINITY_NO_AFFINITY;CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU0;CONFIG_TCPIP_TASK_AFFINITY_CPU0;CONFIG_LWIP_TCPIP_TASK_AFFINITY_CPU1;CONFIG_TCPIP_TASK_AFFINITY_CPU1;CONFIG_LWIP_TCPIP_TASK_AFFINITY;CONFIG_TCPIP_TASK_AFFINITY;CONFIG_LWIP_PPP_SUPPORT;CONFIG_PPP_SUPPORT;CONFIG_LWIP_MULTICAST_PING;CONFIG_LWIP_BROADCAST_PING;CONFIG_LWIP_MAX_RAW_PCBS;CONFIG_LWIP_DHCP_MAX_NTP_SERVERS;CONFIG_LWIP_SNTP_UPDATE_DELAY;CONFIG_MBEDTLS_INTERNAL_MEM_ALLOC;CONFIG_MBEDTLS_DEFAULT_MEM_ALLOC;CONFIG_MBEDTLS_CUSTOM_MEM_ALLOC;CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN;CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN;CONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN;CONFIG_MBEDTLS_DEBUG;CONFIG_MBEDTLS_ECP_RESTARTABLE;CONFIG_MBEDTLS_CMAC_C;CONFIG_MBEDTLS_HARDWARE_AES;CONFIG_MBEDTLS_HARDWARE_MPI;CONFIG_MBEDTLS_HARDWARE_SHA;CONFIG_MBEDTLS_HAVE_TIME;CONFIG_MBEDTLS_HAVE_TIME_DATE;CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT;CONFIG_MBEDTLS_TLS_SERVER_ONLY;CONFIG_MBEDTLS_TLS_CLIENT_ONLY;CONFIG_MBEDTLS_TLS_DISABLED;CONFIG_MBEDTLS_TLS_SERVER;CONFIG_MBEDTLS_TLS_CLIENT;CONFIG_MBEDTLS_TLS_ENABLED;CONFIG_MBEDTLS_PSK_MODES;CONFIG_MBEDTLS_KEY_EXCHANGE_PSK;CONFIG_MBEDTLS_KEY_EXCHANGE_DHE_PSK;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_PSK;CONFIG_MBEDTLS_KEY_EXCHANGE_RSA_PSK;CONFIG_MBEDTLS_KEY_EXCHANGE_RSA;CONFIG_MBEDTLS_KEY_EXCHANGE_DHE_RSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA;CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA;CONFIG_MBEDTLS_SSL_RENEGOTIATION;CONFIG_MBEDTLS_SSL_PROTO_SSL3;CONFIG_MBEDTLS_SSL_PROTO_TLS1;CONFIG_MBEDTLS_SSL_PROTO_TLS1_1;CONFIG_MBEDTLS_SSL_PROTO_TLS1_2;CONFIG_MBEDTLS_SSL_PROTO_DTLS;CONFIG_MBEDTLS_SSL_ALPN;CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS;CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS;CONFIG_MBEDTLS_AES_C;CONFIG_MBEDTLS_CAMELLIA_C;CONFIG_MBEDTLS_DES_C;CONFIG_MBEDTLS_RC4_DISABLED;CONFIG_MBEDTLS_RC4_ENABLED_NO_DEFAULT;CONFIG_MBEDTLS_RC4_ENABLED;CONFIG_MBEDTLS_BLOWFISH_C;CONFIG_MBEDTLS_XTEA_C;CONFIG_MBEDTLS_CCM_C;CONFIG_MBEDTLS_GCM_C;CONFIG_MBEDTLS_RIPEMD160_C;CONFIG_MBEDTLS_PEM_PARSE_C;CONFIG_MBEDTLS_PEM_WRITE_C;CONFIG_MBEDTLS_X509_CRL_PARSE_C;CONFIG_MBEDTLS_X509_CSR_PARSE_C;CONFIG_MBEDTLS_ECP_C;CONFIG_MBEDTLS_ECDH_C;CONFIG_MBEDTLS_ECDSA_C;CONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP224K1_ENABLED;CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED;CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED;CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED;CONFIG_MBEDTLS_ECP_NIST_OPTIM;CONFIG_MBEDTLS_SECURITY_RISKS;CONFIG_MDNS_MAX_SERVICES;CONFIG_MDNS_TASK_PRIORITY;CONFIG_MDNS_TASK_AFFINITY_NO_AFFINITY;CONFIG_MDNS_TASK_AFFINITY_CPU0;CONFIG_MDNS_TASK_AFFINITY_CPU1;CONFIG_MDNS_TASK_AFFINITY;CONFIG_MDNS_SERVICE_ADD_TIMEOUT_MS;CONFIG_MDNS_TIMER_PERIOD_MS;CONFIG_MQTT_PROTOCOL_311;CONFIG_MQTT_TRANSPORT_SSL;CONFIG_MQTT_TRANSPORT_WEBSOCKET;CONFIG_MQTT_TRANSPORT_WEBSOCKET_SECURE;CONFIG_MQTT_USE_CUSTOM_CONFIG;CONFIG_MQTT_TASK_CORE_SELECTION_ENABLED;CONFIG_MQTT_CUSTOM_OUTBOX;CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF;CONFIG_NEWLIB_STDOUT_LINE_ENDING_LF;CONFIG_NEWLIB_STDOUT_LINE_ENDING_CR;CONFIG_NEWLIB_STDIN_LINE_ENDING_CRLF;CONFIG_NEWLIB_STDIN_LINE_ENDING_LF;CONFIG_NEWLIB_STDIN_LINE_ENDING_CR;CONFIG_NEWLIB_NANO_FORMAT;CONFIG_OPENSSL_DEBUG;CONFIG_OPENSSL_ASSERT_DO_NOTHING;CONFIG_OPENSSL_ASSERT_EXIT;CONFIG_PTHREAD_TASK_PRIO_DEFAULT;CONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT;CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT;CONFIG_ESP32_PTHREAD_TASK_STACK_SIZE_DEFAULT;CONFIG_PTHREAD_STACK_MIN;CONFIG_ESP32_PTHREAD_STACK_MIN;CONFIG_PTHREAD_DEFAULT_CORE_NO_AFFINITY;CONFIG_ESP32_DEFAULT_PTHREAD_CORE_NO_AFFINITY;CONFIG_PTHREAD_DEFAULT_CORE_0;CONFIG_ESP32_DEFAULT_PTHREAD_CORE_0;CONFIG_PTHREAD_DEFAULT_CORE_1;CONFIG_ESP32_DEFAULT_PTHREAD_CORE_1;CONFIG_PTHREAD_TASK_CORE_DEFAULT;CONFIG_ESP32_PTHREAD_TASK_CORE_DEFAULT;CONFIG_PTHREAD_TASK_NAME_DEFAULT;CONFIG_ESP32_PTHREAD_TASK_NAME_DEFAULT;CONFIG_SPI_FLASH_VERIFY_WRITE;CONFIG_SPI_FLASH_ENABLE_COUNTERS;CONFIG_SPI_FLASH_ROM_DRIVER_PATCH;CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS;CONFIG_SPI_FLASH_DANGEROUS_WRITE_FAILS;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS;CONFIG_SPI_FLASH_DANGEROUS_WRITE_ALLOWED;CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED;CONFIG_SPI_FLASH_USE_LEGACY_IMPL;CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP;CONFIG_SPI_FLASH_SUPPORT_GD_CHIP;CONFIG_SPIFFS_MAX_PARTITIONS;CONFIG_SPIFFS_CACHE;CONFIG_SPIFFS_CACHE_WR;CONFIG_SPIFFS_CACHE_STATS;CONFIG_SPIFFS_PAGE_CHECK;CONFIG_SPIFFS_GC_MAX_RUNS;CONFIG_SPIFFS_GC_STATS;CONFIG_SPIFFS_PAGE_SIZE;CONFIG_SPIFFS_OBJ_NAME_LEN;CONFIG_SPIFFS_FOLLOW_SYMLINKS;CONFIG_SPIFFS_USE_MAGIC;CONFIG_SPIFFS_USE_MAGIC_LENGTH;CONFIG_SPIFFS_META_LENGTH;CONFIG_SPIFFS_USE_MTIME;CONFIG_SPIFFS_DBG;CONFIG_SPIFFS_API_DBG;CONFIG_SPIFFS_GC_DBG;CONFIG_SPIFFS_CACHE_DBG;CONFIG_SPIFFS_CHECK_DBG;CONFIG_SPIFFS_TEST_VISUALISATION;CONFIG_UNITY_ENABLE_FLOAT;CONFIG_UNITY_ENABLE_DOUBLE;CONFIG_UNITY_ENABLE_COLOR;CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER;CONFIG_UNITY_ENABLE_FIXTURE;CONFIG_UNITY_ENABLE_BACKTRACE_ON_FAIL;CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT;CONFIG_SUPPRESS_SELECT_DEBUG_OUTPUT;CONFIG_VFS_SUPPORT_TERMIOS;CONFIG_SUPPORT_TERMIOS;CONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS;CONFIG_SEMIHOSTFS_HOST_PATH_MAX_LEN;CONFIG_WL_SECTOR_SIZE_512;CONFIG_WL_SECTOR_SIZE_4096;CONFIG_WL_SECTOR_SIZE;CONFIG_WIFI_PROV_SCAN_MAX_ENTRIES;CONFIG_WIFI_PROV_AUTOSTOP_TIMEOUT;CONFIG_WPA_MBEDTLS_CRYPTO;CONFIG_WPA_DEBUG_PRINT;CONFIG_LVGL_PREDEFINED_DISPLAY_NONE;CONFIG_LVGL_PREDEFINED_DISPLAY_WROVER4;CONFIG_LVGL_PREDEFINED_DISPLAY_M5STACK;CONFIG_LVGL_PREDEFINED_DISPLAY_ERTFT0356;CONFIG_LVGL_PREDEFINED_DISPLAY_ADA_FEATHERWING;CONFIG_LVGL_TFT_DISPLAY_SPI_HSPI;CONFIG_LVGL_TFT_DISPLAY_SPI_VSPI;CONFIG_LVGL_DISPLAY_WIDTH;CONFIG_LVGL_DISPLAY_HEIGHT;CONFIG_LVGL_ENABLE_BACKLIGHT_CONTROL;CONFIG_LVGL_DISP_SPI_MOSI;CONFIG_LVGL_DISP_SPI_CLK;CONFIG_LVGL_DISP_SPI_CS;CONFIG_LVGL_DISP_PIN_DC;CONFIG_LVGL_DISP_PIN_RST;CONFIG_LVGL_DISP_PIN_BCKL;CONFIG_LVGL_TOUCH_SPI_MISO;CONFIG_LVGL_TOUCH_SPI_MOSI;CONFIG_LVGL_TOUCH_SPI_CLK;CONFIG_LVGL_TOUCH_SPI_CS;CONFIG_LVGL_TOUCH_PIN_IRQ;CONFIG_LVGL_TOUCH_I2C_SDA;CONFIG_LVGL_TOUCH_I2C_SCL;CONFIG_LVGL_TOUCH_SPI_MISO;CONFIG_LVGL_TOUCH_SPI_MOSI;CONFIG_LVGL_TOUCH_SPI_CLK;CONFIG_LVGL_TOUCH_SPI_CS;CONFIG_LVGL_TOUCH_X_MIN;CONFIG_LVGL_TOUCH_Y_MIN;CONFIG_LVGL_TOUCH_X_MAX;CONFIG_LVGL_TOUCH_Y_MAX;CONFIG_LVGL_TOUCH_INVERT_X;CONFIG_LVGL_TOUCH_INVERT_Y;CONFIG_LVGL_FT6X36_SWAPXY;CONFIG_LVGL_FT6X36_INVERT_Y;CONFIG_LVGL_TOUCH_X_MIN;CONFIG_LVGL_TOUCH_Y_MIN;CONFIG_LVGL_TOUCH_X_MAX;CONFIG_LVGL_TOUCH_Y_MAX;CONFIG_LVGL_TOUCH_INVERT_X;CONFIG_LVGL_TOUCH_INVERT_Y;CONFIG_LEGACY_INCLUDE_COMMON_HEADERS) +# List of deprecated options for backward compatibility +set(CONFIG_TOOLPREFIX "xtensa-esp32-elf-") +set(CONFIG_LOG_BOOTLOADER_LEVEL_NONE "") +set(CONFIG_LOG_BOOTLOADER_LEVEL_ERROR "") +set(CONFIG_LOG_BOOTLOADER_LEVEL_WARN "y") +set(CONFIG_LOG_BOOTLOADER_LEVEL_INFO "") +set(CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG "") +set(CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE "") +set(CONFIG_LOG_BOOTLOADER_LEVEL "2") +set(CONFIG_APP_ROLLBACK_ENABLE "") +set(CONFIG_FLASH_ENCRYPTION_ENABLED "") +set(CONFIG_FLASHMODE_QIO "") +set(CONFIG_FLASHMODE_QOUT "") +set(CONFIG_FLASHMODE_DIO "y") +set(CONFIG_FLASHMODE_DOUT "") +set(CONFIG_MONITOR_BAUD_9600B "") +set(CONFIG_MONITOR_BAUD_57600B "") +set(CONFIG_MONITOR_BAUD_115200B "y") +set(CONFIG_MONITOR_BAUD_230400B "") +set(CONFIG_MONITOR_BAUD_921600B "") +set(CONFIG_MONITOR_BAUD_2MB "") +set(CONFIG_MONITOR_BAUD_OTHER "") +set(CONFIG_MONITOR_BAUD_OTHER_VAL "115200") +set(CONFIG_MONITOR_BAUD "115200") +set(CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG "y") +set(CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE "") +set(CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED "y") +set(CONFIG_OPTIMIZATION_ASSERTIONS_SILENT "") +set(CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED "") +set(CONFIG_CXX_EXCEPTIONS "") +set(CONFIG_STACK_CHECK_NONE "y") +set(CONFIG_STACK_CHECK_NORM "") +set(CONFIG_STACK_CHECK_STRONG "") +set(CONFIG_STACK_CHECK_ALL "") +set(CONFIG_WARN_WRITE_STRINGS "") +set(CONFIG_DISABLE_GCC8_WARNINGS "") +set(CONFIG_ESP32_APPTRACE_DEST_TRAX "") +set(CONFIG_ESP32_APPTRACE_DEST_NONE "y") +set(CONFIG_ESP32_APPTRACE_LOCK_ENABLE "y") +set(CONFIG_BTDM_CONTROLLER_BLE_MAX_CONN_EFF "0") +set(CONFIG_BTDM_CONTROLLER_BR_EDR_MAX_ACL_CONN_EFF "0") +set(CONFIG_BTDM_CONTROLLER_BR_EDR_MAX_SYNC_CONN_EFF "0") +set(CONFIG_BTDM_CONTROLLER_PINNED_TO_CORE "0") +set(CONFIG_ADC2_DISABLE_DAC "y") +set(CONFIG_SPIRAM_SUPPORT "") +set(CONFIG_TRACEMEM_RESERVE_DRAM "0x0") +set(CONFIG_TWO_UNIVERSAL_MAC_ADDRESS "") +set(CONFIG_FOUR_UNIVERSAL_MAC_ADDRESS "y") +set(CONFIG_NUMBER_OF_UNIVERSAL_MAC_ADDRESS "4") +set(CONFIG_ULP_COPROC_ENABLED "") +set(CONFIG_ULP_COPROC_RESERVE_MEM "0") +set(CONFIG_BROWNOUT_DET "y") +set(CONFIG_BROWNOUT_DET_LVL_SEL_0 "y") +set(CONFIG_BROWNOUT_DET_LVL_SEL_1 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_2 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_3 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_4 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_5 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_6 "") +set(CONFIG_BROWNOUT_DET_LVL_SEL_7 "") +set(CONFIG_BROWNOUT_DET_LVL "0") +set(CONFIG_REDUCE_PHY_TX_POWER "y") +set(CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_RC "y") +set(CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_CRYSTAL "") +set(CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_OSC "") +set(CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_8MD256 "") +set(CONFIG_DISABLE_BASIC_ROM_CONSOLE "") +set(CONFIG_NO_BLOBS "") +set(CONFIG_COMPATIBLE_PRE_V2_1_BOOTLOADERS "") +set(CONFIG_SYSTEM_EVENT_QUEUE_SIZE "32") +set(CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE "2304") +set(CONFIG_MAIN_TASK_STACK_SIZE "7168") +set(CONFIG_IPC_TASK_STACK_SIZE "1024") +set(CONFIG_CONSOLE_UART_DEFAULT "y") +set(CONFIG_CONSOLE_UART_CUSTOM "") +set(CONFIG_CONSOLE_UART_NONE "") +set(CONFIG_CONSOLE_UART_NUM "0") +set(CONFIG_CONSOLE_UART_BAUDRATE "115200") +set(CONFIG_INT_WDT "y") +set(CONFIG_INT_WDT_TIMEOUT_MS "300") +set(CONFIG_INT_WDT_CHECK_CPU1 "y") +set(CONFIG_TASK_WDT "y") +set(CONFIG_TASK_WDT_PANIC "") +set(CONFIG_TASK_WDT_TIMEOUT_S "5") +set(CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0 "y") +set(CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1 "y") +set(CONFIG_EVENT_LOOP_PROFILING "") +set(CONFIG_POST_EVENTS_FROM_ISR "y") +set(CONFIG_POST_EVENTS_FROM_IRAM_ISR "y") +set(CONFIG_TIMER_TASK_STACK_SIZE "3584") +set(CONFIG_MB_MASTER_TIMEOUT_MS_RESPOND "150") +set(CONFIG_MB_MASTER_DELAY_MS_CONVERT "200") +set(CONFIG_MB_QUEUE_LENGTH "20") +set(CONFIG_MB_SERIAL_TASK_STACK_SIZE "2048") +set(CONFIG_MB_SERIAL_BUF_SIZE "256") +set(CONFIG_MB_SERIAL_TASK_PRIO "10") +set(CONFIG_MB_CONTROLLER_SLAVE_ID_SUPPORT "") +set(CONFIG_MB_CONTROLLER_NOTIFY_TIMEOUT "20") +set(CONFIG_MB_CONTROLLER_NOTIFY_QUEUE_SIZE "20") +set(CONFIG_MB_CONTROLLER_STACK_SIZE "4096") +set(CONFIG_MB_EVENT_QUEUE_TIMEOUT "20") +set(CONFIG_MB_TIMER_PORT_ENABLED "y") +set(CONFIG_MB_TIMER_GROUP "0") +set(CONFIG_MB_TIMER_INDEX "0") +set(CONFIG_SUPPORT_STATIC_ALLOCATION "") +set(CONFIG_TIMER_TASK_PRIORITY "1") +set(CONFIG_TIMER_TASK_STACK_DEPTH "2048") +set(CONFIG_TIMER_QUEUE_LENGTH "10") +set(CONFIG_L2_TO_L3_COPY "") +set(CONFIG_USE_ONLY_LWIP_SELECT "") +set(CONFIG_ESP_GRATUITOUS_ARP "y") +set(CONFIG_GARP_TMR_INTERVAL "60") +set(CONFIG_TCPIP_RECVMBOX_SIZE "32") +set(CONFIG_TCP_MAXRTX "12") +set(CONFIG_TCP_SYNMAXRTX "6") +set(CONFIG_TCP_MSS "1440") +set(CONFIG_TCP_MSL "60000") +set(CONFIG_TCP_SND_BUF_DEFAULT "5744") +set(CONFIG_TCP_WND_DEFAULT "5744") +set(CONFIG_TCP_RECVMBOX_SIZE "6") +set(CONFIG_TCP_QUEUE_OOSEQ "y") +set(CONFIG_ESP_TCP_KEEP_CONNECTION_WHEN_IP_CHANGES "") +set(CONFIG_TCP_OVERSIZE_MSS "y") +set(CONFIG_TCP_OVERSIZE_QUARTER_MSS "") +set(CONFIG_TCP_OVERSIZE_DISABLE "") +set(CONFIG_UDP_RECVMBOX_SIZE "6") +set(CONFIG_TCPIP_TASK_STACK_SIZE "3072") +set(CONFIG_TCPIP_TASK_AFFINITY_NO_AFFINITY "y") +set(CONFIG_TCPIP_TASK_AFFINITY_CPU0 "") +set(CONFIG_TCPIP_TASK_AFFINITY_CPU1 "") +set(CONFIG_TCPIP_TASK_AFFINITY "0x7FFFFFFF") +set(CONFIG_PPP_SUPPORT "") +set(CONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT "5") +set(CONFIG_ESP32_PTHREAD_TASK_STACK_SIZE_DEFAULT "3072") +set(CONFIG_ESP32_PTHREAD_STACK_MIN "768") +set(CONFIG_ESP32_DEFAULT_PTHREAD_CORE_NO_AFFINITY "y") +set(CONFIG_ESP32_DEFAULT_PTHREAD_CORE_0 "") +set(CONFIG_ESP32_DEFAULT_PTHREAD_CORE_1 "") +set(CONFIG_ESP32_PTHREAD_TASK_CORE_DEFAULT "-1") +set(CONFIG_ESP32_PTHREAD_TASK_NAME_DEFAULT "pthread") +set(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS "y") +set(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS "") +set(CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED "") +set(CONFIG_SUPPRESS_SELECT_DEBUG_OUTPUT "y") +set(CONFIG_SUPPORT_TERMIOS "y") diff --git a/build/config/sdkconfig.h b/build/config/sdkconfig.h new file mode 100644 index 0000000..dde5598 --- /dev/null +++ b/build/config/sdkconfig.h @@ -0,0 +1,434 @@ +/* + * Automatically generated file. DO NOT EDIT. + * Espressif IoT Development Framework (ESP-IDF) Configuration Header + */ +#pragma once +#define CONFIG_IDF_CMAKE 1 +#define CONFIG_IDF_TARGET "esp32" +#define CONFIG_IDF_TARGET_ESP32 1 +#define CONFIG_IDF_FIRMWARE_CHIP_ID 0x0000 +#define CONFIG_SDK_TOOLPREFIX "xtensa-esp32-elf-" +#define CONFIG_APP_BUILD_TYPE_APP_2NDBOOT 1 +#define CONFIG_APP_BUILD_GENERATE_BINARIES 1 +#define CONFIG_APP_BUILD_BOOTLOADER 1 +#define CONFIG_APP_BUILD_USE_FLASH_SECTIONS 1 +#define CONFIG_APP_COMPILE_TIME_DATE 1 +#define CONFIG_BOOTLOADER_LOG_LEVEL_WARN 1 +#define CONFIG_BOOTLOADER_LOG_LEVEL 2 +#define CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V 1 +#define CONFIG_BOOTLOADER_WDT_ENABLE 1 +#define CONFIG_BOOTLOADER_WDT_TIME_MS 9000 +#define CONFIG_BOOTLOADER_RESERVE_RTC_SIZE 0x0 +#define CONFIG_ESPTOOLPY_BAUD_OTHER_VAL 115200 +#define CONFIG_ESPTOOLPY_FLASHMODE_DIO 1 +#define CONFIG_ESPTOOLPY_FLASHMODE "dio" +#define CONFIG_ESPTOOLPY_FLASHFREQ_40M 1 +#define CONFIG_ESPTOOLPY_FLASHFREQ "40m" +#define CONFIG_ESPTOOLPY_FLASHSIZE_4MB 1 +#define CONFIG_ESPTOOLPY_FLASHSIZE "4MB" +#define CONFIG_ESPTOOLPY_FLASHSIZE_DETECT 1 +#define CONFIG_ESPTOOLPY_BEFORE_RESET 1 +#define CONFIG_ESPTOOLPY_BEFORE "default_reset" +#define CONFIG_ESPTOOLPY_AFTER_RESET 1 +#define CONFIG_ESPTOOLPY_AFTER "hard_reset" +#define CONFIG_ESPTOOLPY_MONITOR_BAUD_115200B 1 +#define CONFIG_ESPTOOLPY_MONITOR_BAUD_OTHER_VAL 115200 +#define CONFIG_ESPTOOLPY_MONITOR_BAUD 115200 +#define CONFIG_PARTITION_TABLE_CUSTOM 1 +#define CONFIG_PARTITION_TABLE_CUSTOM_FILENAME "partitions_example.csv" +#define CONFIG_PARTITION_TABLE_FILENAME "partitions_example.csv" +#define CONFIG_PARTITION_TABLE_OFFSET 0x8000 +#define CONFIG_PARTITION_TABLE_MD5 1 +#define CONFIG_STORE_HISTORY 1 +#define CONFIG_COMPILER_OPTIMIZATION_DEFAULT 1 +#define CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE 1 +#define CONFIG_COMPILER_STACK_CHECK_MODE_NONE 1 +#define CONFIG_APPTRACE_DEST_NONE 1 +#define CONFIG_APPTRACE_LOCK_ENABLE 1 +#define CONFIG_BTDM_CTRL_BR_EDR_SCO_DATA_PATH_EFF 0 +#define CONFIG_BTDM_CTRL_BLE_MAX_CONN_EFF 0 +#define CONFIG_BTDM_CTRL_BR_EDR_MAX_ACL_CONN_EFF 0 +#define CONFIG_BTDM_CTRL_BR_EDR_MAX_SYNC_CONN_EFF 0 +#define CONFIG_BTDM_CTRL_PINNED_TO_CORE 0 +#define CONFIG_BTDM_BLE_SLEEP_CLOCK_ACCURACY_INDEX_EFF 1 +#define CONFIG_BT_RESERVE_DRAM 0x0 +#define CONFIG_COAP_MBEDTLS_PSK 1 +#define CONFIG_COAP_LOG_DEFAULT_LEVEL 0 +#define CONFIG_ADC_DISABLE_DAC 1 +#define CONFIG_SPI_MASTER_ISR_IN_IRAM 1 +#define CONFIG_SPI_SLAVE_ISR_IN_IRAM 1 +#define CONFIG_EFUSE_CODE_SCHEME_COMPAT_3_4 1 +#define CONFIG_EFUSE_MAX_BLK_LEN 192 +#define CONFIG_ESP_TLS_USING_MBEDTLS 1 +#define CONFIG_ESP_TLS_SERVER 1 +#define CONFIG_ESP32_REV_MIN_0 1 +#define CONFIG_ESP32_REV_MIN 0 +#define CONFIG_ESP32_DPORT_WORKAROUND 1 +#define CONFIG_ESP32_DEFAULT_CPU_FREQ_160 1 +#define CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ 160 +#define CONFIG_ESP32_TRACEMEM_RESERVE_DRAM 0x0 +#define CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR 1 +#define CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES 4 +#define CONFIG_ESP32_ULP_COPROC_RESERVE_MEM 0 +#define CONFIG_ESP32_PANIC_PRINT_REBOOT 1 +#define CONFIG_ESP32_DEBUG_OCDAWARE 1 +#define CONFIG_ESP32_BROWNOUT_DET 1 +#define CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_0 1 +#define CONFIG_ESP32_BROWNOUT_DET_LVL 0 +#define CONFIG_ESP32_REDUCE_PHY_TX_POWER 1 +#define CONFIG_ESP32_TIME_SYSCALL_USE_RTC_FRC1 1 +#define CONFIG_ESP32_RTC_CLK_SRC_INT_RC 1 +#define CONFIG_ESP32_RTC_CLK_CAL_CYCLES 1024 +#define CONFIG_ESP32_DEEP_SLEEP_WAKEUP_DELAY 2000 +#define CONFIG_ESP32_XTAL_FREQ_40 1 +#define CONFIG_ESP32_XTAL_FREQ 40 +#define CONFIG_ESP32_DPORT_DIS_INTERRUPT_LVL 5 +#define CONFIG_ADC_CAL_EFUSE_TP_ENABLE 1 +#define CONFIG_ADC_CAL_EFUSE_VREF_ENABLE 1 +#define CONFIG_ADC_CAL_LUT_ENABLE 1 +#define CONFIG_ESP_ERR_TO_NAME_LOOKUP 1 +#define CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE 32 +#define CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE 2304 +#define CONFIG_ESP_MAIN_TASK_STACK_SIZE 7168 +#define CONFIG_ESP_IPC_TASK_STACK_SIZE 1024 +#define CONFIG_ESP_IPC_USES_CALLERS_PRIORITY 1 +#define CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE 2048 +#define CONFIG_ESP_CONSOLE_UART_DEFAULT 1 +#define CONFIG_ESP_CONSOLE_UART_NUM 0 +#define CONFIG_ESP_CONSOLE_UART_BAUDRATE 115200 +#define CONFIG_ESP_INT_WDT 1 +#define CONFIG_ESP_INT_WDT_TIMEOUT_MS 300 +#define CONFIG_ESP_INT_WDT_CHECK_CPU1 1 +#define CONFIG_ESP_TASK_WDT 1 +#define CONFIG_ESP_TASK_WDT_TIMEOUT_S 5 +#define CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0 1 +#define CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1 1 +#define CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA 1 +#define CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP 1 +#define CONFIG_ESP_MAC_ADDR_UNIVERSE_BT 1 +#define CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH 1 +#define CONFIG_ETH_ENABLED 1 +#define CONFIG_ETH_USE_ESP32_EMAC 1 +#define CONFIG_ETH_PHY_INTERFACE_RMII 1 +#define CONFIG_ETH_RMII_CLK_INPUT 1 +#define CONFIG_ETH_RMII_CLK_IN_GPIO 0 +#define CONFIG_ETH_DMA_BUFFER_SIZE 512 +#define CONFIG_ETH_DMA_RX_BUFFER_NUM 10 +#define CONFIG_ETH_DMA_TX_BUFFER_NUM 10 +#define CONFIG_ETH_USE_SPI_ETHERNET 1 +#define CONFIG_ESP_EVENT_POST_FROM_ISR 1 +#define CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR 1 +#define CONFIG_ESP_HTTP_CLIENT_ENABLE_HTTPS 1 +#define CONFIG_HTTPD_MAX_REQ_HDR_LEN 1024 +#define CONFIG_HTTPD_MAX_URI_LEN 512 +#define CONFIG_HTTPD_ERR_RESP_NO_DELAY 1 +#define CONFIG_HTTPD_PURGE_BUF_LEN 32 +#define CONFIG_ESP_HTTPS_SERVER_ENABLE 1 +#define CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL 120 +#define CONFIG_ESP_NETIF_TCPIP_LWIP 1 +#define CONFIG_ESP_NETIF_TCPIP_ADAPTER_COMPATIBLE_LAYER 1 +#define CONFIG_ESP_TIMER_TASK_STACK_SIZE 3584 +#define CONFIG_ESP_TIMER_IMPL_TG0_LAC 1 +#define CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM 10 +#define CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM 32 +#define CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER 1 +#define CONFIG_ESP32_WIFI_TX_BUFFER_TYPE 1 +#define CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM 32 +#define CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED 1 +#define CONFIG_ESP32_WIFI_TX_BA_WIN 6 +#define CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED 1 +#define CONFIG_ESP32_WIFI_RX_BA_WIN 6 +#define CONFIG_ESP32_WIFI_NVS_ENABLED 1 +#define CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_0 1 +#define CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN 752 +#define CONFIG_ESP32_WIFI_MGMT_SBUF_NUM 32 +#define CONFIG_ESP32_WIFI_IRAM_OPT 1 +#define CONFIG_ESP32_WIFI_RX_IRAM_OPT 1 +#define CONFIG_ESP32_PHY_CALIBRATION_AND_DATA_STORAGE 1 +#define CONFIG_ESP32_PHY_MAX_WIFI_TX_POWER 20 +#define CONFIG_ESP32_PHY_MAX_TX_POWER 20 +#define CONFIG_ESP32_ENABLE_COREDUMP_TO_NONE 1 +#define CONFIG_FATFS_CODEPAGE_437 1 +#define CONFIG_FATFS_CODEPAGE 437 +#define CONFIG_FATFS_LFN_NONE 1 +#define CONFIG_FATFS_FS_LOCK 0 +#define CONFIG_FATFS_TIMEOUT_MS 10000 +#define CONFIG_FATFS_PER_FILE_CACHE 1 +#define CONFIG_FMB_COMM_MODE_RTU_EN 1 +#define CONFIG_FMB_COMM_MODE_ASCII_EN 1 +#define CONFIG_FMB_MASTER_TIMEOUT_MS_RESPOND 150 +#define CONFIG_FMB_MASTER_DELAY_MS_CONVERT 200 +#define CONFIG_FMB_QUEUE_LENGTH 20 +#define CONFIG_FMB_SERIAL_TASK_STACK_SIZE 2048 +#define CONFIG_FMB_SERIAL_BUF_SIZE 256 +#define CONFIG_FMB_SERIAL_ASCII_BITS_PER_SYMB 8 +#define CONFIG_FMB_SERIAL_ASCII_TIMEOUT_RESPOND_MS 1000 +#define CONFIG_FMB_SERIAL_TASK_PRIO 10 +#define CONFIG_FMB_CONTROLLER_NOTIFY_TIMEOUT 20 +#define CONFIG_FMB_CONTROLLER_NOTIFY_QUEUE_SIZE 20 +#define CONFIG_FMB_CONTROLLER_STACK_SIZE 4096 +#define CONFIG_FMB_EVENT_QUEUE_TIMEOUT 20 +#define CONFIG_FMB_TIMER_PORT_ENABLED 1 +#define CONFIG_FMB_TIMER_GROUP 0 +#define CONFIG_FMB_TIMER_INDEX 0 +#define CONFIG_FREERTOS_NO_AFFINITY 0x7FFFFFFF +#define CONFIG_FREERTOS_CORETIMER_0 1 +#define CONFIG_FREERTOS_HZ 100 +#define CONFIG_FREERTOS_ASSERT_ON_UNTESTED_FUNCTION 1 +#define CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY 1 +#define CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK 1 +#define CONFIG_FREERTOS_INTERRUPT_BACKTRACE 1 +#define CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS 1 +#define CONFIG_FREERTOS_ASSERT_FAIL_PRINT_CONTINUE 1 +#define CONFIG_FREERTOS_IDLE_TASK_STACKSIZE 1536 +#define CONFIG_FREERTOS_ISR_STACKSIZE 1536 +#define CONFIG_FREERTOS_MAX_TASK_NAME_LEN 16 +#define CONFIG_FREERTOS_TIMER_TASK_PRIORITY 1 +#define CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH 2048 +#define CONFIG_FREERTOS_TIMER_QUEUE_LENGTH 10 +#define CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE 0 +#define CONFIG_FREERTOS_USE_TRACE_FACILITY 1 +#define CONFIG_FREERTOS_USE_STATS_FORMATTING_FUNCTIONS 1 +#define CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER 1 +#define CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER 1 +#define CONFIG_FREERTOS_DEBUG_OCDAWARE 1 +#define CONFIG_HEAP_POISONING_DISABLED 1 +#define CONFIG_HEAP_TRACING_OFF 1 +#define CONFIG_LOG_DEFAULT_LEVEL_INFO 1 +#define CONFIG_LOG_DEFAULT_LEVEL 3 +#define CONFIG_LOG_COLORS 1 +#define CONFIG_LOG_TIMESTAMP_SOURCE_RTOS 1 +#define CONFIG_LWIP_LOCAL_HOSTNAME "espressif" +#define CONFIG_LWIP_DNS_SUPPORT_MDNS_QUERIES 1 +#define CONFIG_LWIP_TIMERS_ONDEMAND 1 +#define CONFIG_LWIP_MAX_SOCKETS 10 +#define CONFIG_LWIP_SO_REUSE 1 +#define CONFIG_LWIP_SO_REUSE_RXTOALL 1 +#define CONFIG_LWIP_IP_FRAG 1 +#define CONFIG_LWIP_ESP_GRATUITOUS_ARP 1 +#define CONFIG_LWIP_GARP_TMR_INTERVAL 60 +#define CONFIG_LWIP_TCPIP_RECVMBOX_SIZE 32 +#define CONFIG_LWIP_DHCP_DOES_ARP_CHECK 1 +#define CONFIG_LWIP_DHCPS_LEASE_UNIT 60 +#define CONFIG_LWIP_DHCPS_MAX_STATION_NUM 8 +#define CONFIG_LWIP_NETIF_LOOPBACK 1 +#define CONFIG_LWIP_LOOPBACK_MAX_PBUFS 8 +#define CONFIG_LWIP_MAX_ACTIVE_TCP 16 +#define CONFIG_LWIP_MAX_LISTENING_TCP 16 +#define CONFIG_LWIP_TCP_MAXRTX 12 +#define CONFIG_LWIP_TCP_SYNMAXRTX 6 +#define CONFIG_LWIP_TCP_MSS 1440 +#define CONFIG_LWIP_TCP_TMR_INTERVAL 250 +#define CONFIG_LWIP_TCP_MSL 60000 +#define CONFIG_LWIP_TCP_SND_BUF_DEFAULT 5744 +#define CONFIG_LWIP_TCP_WND_DEFAULT 5744 +#define CONFIG_LWIP_TCP_RECVMBOX_SIZE 6 +#define CONFIG_LWIP_TCP_QUEUE_OOSEQ 1 +#define CONFIG_LWIP_TCP_OVERSIZE_MSS 1 +#define CONFIG_LWIP_MAX_UDP_PCBS 16 +#define CONFIG_LWIP_UDP_RECVMBOX_SIZE 6 +#define CONFIG_LWIP_TCPIP_TASK_STACK_SIZE 3072 +#define CONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY 1 +#define CONFIG_LWIP_TCPIP_TASK_AFFINITY 0x7FFFFFFF +#define CONFIG_LWIP_MAX_RAW_PCBS 16 +#define CONFIG_LWIP_DHCP_MAX_NTP_SERVERS 1 +#define CONFIG_LWIP_SNTP_UPDATE_DELAY 3600000 +#define CONFIG_MBEDTLS_INTERNAL_MEM_ALLOC 1 +#define CONFIG_MBEDTLS_ASYMMETRIC_CONTENT_LEN 1 +#define CONFIG_MBEDTLS_SSL_IN_CONTENT_LEN 16384 +#define CONFIG_MBEDTLS_SSL_OUT_CONTENT_LEN 4096 +#define CONFIG_MBEDTLS_HARDWARE_AES 1 +#define CONFIG_MBEDTLS_HARDWARE_MPI 1 +#define CONFIG_MBEDTLS_HARDWARE_SHA 1 +#define CONFIG_MBEDTLS_HAVE_TIME 1 +#define CONFIG_MBEDTLS_TLS_SERVER_AND_CLIENT 1 +#define CONFIG_MBEDTLS_TLS_SERVER 1 +#define CONFIG_MBEDTLS_TLS_CLIENT 1 +#define CONFIG_MBEDTLS_TLS_ENABLED 1 +#define CONFIG_MBEDTLS_PSK_MODES 1 +#define CONFIG_MBEDTLS_KEY_EXCHANGE_PSK 1 +#define CONFIG_MBEDTLS_KEY_EXCHANGE_DHE_PSK 1 +#define CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_PSK 1 +#define CONFIG_MBEDTLS_KEY_EXCHANGE_RSA_PSK 1 +#define CONFIG_MBEDTLS_KEY_EXCHANGE_RSA 1 +#define CONFIG_MBEDTLS_KEY_EXCHANGE_DHE_RSA 1 +#define CONFIG_MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE 1 +#define CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA 1 +#define CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA 1 +#define CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA 1 +#define CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA 1 +#define CONFIG_MBEDTLS_SSL_RENEGOTIATION 1 +#define CONFIG_MBEDTLS_SSL_PROTO_TLS1 1 +#define CONFIG_MBEDTLS_SSL_PROTO_TLS1_1 1 +#define CONFIG_MBEDTLS_SSL_PROTO_TLS1_2 1 +#define CONFIG_MBEDTLS_SSL_PROTO_DTLS 1 +#define CONFIG_MBEDTLS_SSL_ALPN 1 +#define CONFIG_MBEDTLS_CLIENT_SSL_SESSION_TICKETS 1 +#define CONFIG_MBEDTLS_SERVER_SSL_SESSION_TICKETS 1 +#define CONFIG_MBEDTLS_AES_C 1 +#define CONFIG_MBEDTLS_RC4_DISABLED 1 +#define CONFIG_MBEDTLS_CCM_C 1 +#define CONFIG_MBEDTLS_GCM_C 1 +#define CONFIG_MBEDTLS_PEM_PARSE_C 1 +#define CONFIG_MBEDTLS_PEM_WRITE_C 1 +#define CONFIG_MBEDTLS_X509_CRL_PARSE_C 1 +#define CONFIG_MBEDTLS_X509_CSR_PARSE_C 1 +#define CONFIG_MBEDTLS_ECP_C 1 +#define CONFIG_MBEDTLS_ECDH_C 1 +#define CONFIG_MBEDTLS_ECDSA_C 1 +#define CONFIG_MBEDTLS_ECP_DP_SECP192R1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_SECP224R1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_SECP256R1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_SECP384R1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_SECP521R1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_SECP224K1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_SECP256K1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_BP256R1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_BP384R1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_BP512R1_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_DP_CURVE25519_ENABLED 1 +#define CONFIG_MBEDTLS_ECP_NIST_OPTIM 1 +#define CONFIG_MDNS_MAX_SERVICES 10 +#define CONFIG_MDNS_TASK_PRIORITY 1 +#define CONFIG_MDNS_TASK_AFFINITY_CPU0 1 +#define CONFIG_MDNS_TASK_AFFINITY 0x0 +#define CONFIG_MDNS_SERVICE_ADD_TIMEOUT_MS 2000 +#define CONFIG_MDNS_TIMER_PERIOD_MS 100 +#define CONFIG_MQTT_PROTOCOL_311 1 +#define CONFIG_MQTT_TRANSPORT_SSL 1 +#define CONFIG_MQTT_TRANSPORT_WEBSOCKET 1 +#define CONFIG_MQTT_TRANSPORT_WEBSOCKET_SECURE 1 +#define CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF 1 +#define CONFIG_NEWLIB_STDIN_LINE_ENDING_CR 1 +#define CONFIG_OPENSSL_ASSERT_EXIT 1 +#define CONFIG_PTHREAD_TASK_PRIO_DEFAULT 5 +#define CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT 3072 +#define CONFIG_PTHREAD_STACK_MIN 768 +#define CONFIG_PTHREAD_DEFAULT_CORE_NO_AFFINITY 1 +#define CONFIG_PTHREAD_TASK_CORE_DEFAULT -1 +#define CONFIG_PTHREAD_TASK_NAME_DEFAULT "pthread" +#define CONFIG_SPI_FLASH_ROM_DRIVER_PATCH 1 +#define CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS 1 +#define CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP 1 +#define CONFIG_SPI_FLASH_SUPPORT_GD_CHIP 1 +#define CONFIG_SPIFFS_MAX_PARTITIONS 3 +#define CONFIG_SPIFFS_CACHE 1 +#define CONFIG_SPIFFS_CACHE_WR 1 +#define CONFIG_SPIFFS_PAGE_CHECK 1 +#define CONFIG_SPIFFS_GC_MAX_RUNS 10 +#define CONFIG_SPIFFS_PAGE_SIZE 256 +#define CONFIG_SPIFFS_OBJ_NAME_LEN 32 +#define CONFIG_SPIFFS_USE_MAGIC 1 +#define CONFIG_SPIFFS_USE_MAGIC_LENGTH 1 +#define CONFIG_SPIFFS_META_LENGTH 4 +#define CONFIG_SPIFFS_USE_MTIME 1 +#define CONFIG_UNITY_ENABLE_FLOAT 1 +#define CONFIG_UNITY_ENABLE_DOUBLE 1 +#define CONFIG_UNITY_ENABLE_IDF_TEST_RUNNER 1 +#define CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT 1 +#define CONFIG_VFS_SUPPORT_TERMIOS 1 +#define CONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS 1 +#define CONFIG_SEMIHOSTFS_HOST_PATH_MAX_LEN 128 +#define CONFIG_WL_SECTOR_SIZE_4096 1 +#define CONFIG_WL_SECTOR_SIZE 4096 +#define CONFIG_WIFI_PROV_SCAN_MAX_ENTRIES 16 +#define CONFIG_WIFI_PROV_AUTOSTOP_TIMEOUT 30 +#define CONFIG_WPA_MBEDTLS_CRYPTO 1 +#define CONFIG_LVGL_PREDEFINED_DISPLAY_WROVER4 1 +#define CONFIG_LVGL_TFT_DISPLAY_SPI_HSPI 1 +#define CONFIG_LVGL_DISPLAY_WIDTH 320 +#define CONFIG_LVGL_DISPLAY_HEIGHT 240 +#define CONFIG_LVGL_DISP_SPI_MOSI 13 +#define CONFIG_LVGL_DISP_SPI_CLK 14 +#define CONFIG_LVGL_DISP_SPI_CS 15 +#define CONFIG_LVGL_DISP_PIN_DC 2 +#define CONFIG_LVGL_DISP_PIN_RST 4 +#define CONFIG_LVGL_DISP_PIN_BCKL 21 +#define CONFIG_LVGL_TOUCH_SPI_MISO 19 +#define CONFIG_LVGL_TOUCH_SPI_MOSI 23 +#define CONFIG_LVGL_TOUCH_SPI_CLK 18 +#define CONFIG_LVGL_TOUCH_SPI_CS 5 +#define CONFIG_LVGL_TOUCH_PIN_IRQ 25 +#define CONFIG_LVGL_TOUCH_I2C_SDA 21 +#define CONFIG_LVGL_TOUCH_I2C_SCL 22 +#define CONFIG_LVGL_TOUCH_X_MIN 200 +#define CONFIG_LVGL_TOUCH_Y_MIN 120 +#define CONFIG_LVGL_TOUCH_X_MAX 1900 +#define CONFIG_LVGL_TOUCH_Y_MAX 1900 +#define CONFIG_LVGL_TOUCH_INVERT_X 1 +#define CONFIG_LVGL_TOUCH_INVERT_Y 1 +#define CONFIG_LVGL_FT6X36_SWAPXY 1 +#define CONFIG_LVGL_FT6X36_INVERT_Y 1 + +/* List of deprecated options */ +#define CONFIG_ADC2_DISABLE_DAC CONFIG_ADC_DISABLE_DAC +#define CONFIG_BROWNOUT_DET CONFIG_ESP32_BROWNOUT_DET +#define CONFIG_BROWNOUT_DET_LVL_SEL_0 CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_0 +#define CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG CONFIG_COMPILER_OPTIMIZATION_DEFAULT +#define CONFIG_CONSOLE_UART_BAUDRATE CONFIG_ESP_CONSOLE_UART_BAUDRATE +#define CONFIG_CONSOLE_UART_DEFAULT CONFIG_ESP_CONSOLE_UART_DEFAULT +#define CONFIG_ESP32_APPTRACE_DEST_NONE CONFIG_APPTRACE_DEST_NONE +#define CONFIG_ESP32_DEFAULT_PTHREAD_CORE_NO_AFFINITY CONFIG_PTHREAD_DEFAULT_CORE_NO_AFFINITY +#define CONFIG_ESP32_PTHREAD_STACK_MIN CONFIG_PTHREAD_STACK_MIN +#define CONFIG_ESP32_PTHREAD_TASK_NAME_DEFAULT CONFIG_PTHREAD_TASK_NAME_DEFAULT +#define CONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT CONFIG_PTHREAD_TASK_PRIO_DEFAULT +#define CONFIG_ESP32_PTHREAD_TASK_STACK_SIZE_DEFAULT CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT +#define CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_RC CONFIG_ESP32_RTC_CLK_SRC_INT_RC +#define CONFIG_ESP_GRATUITOUS_ARP CONFIG_LWIP_ESP_GRATUITOUS_ARP +#define CONFIG_FLASHMODE_DIO CONFIG_ESPTOOLPY_FLASHMODE_DIO +#define CONFIG_FOUR_UNIVERSAL_MAC_ADDRESS CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR +#define CONFIG_GARP_TMR_INTERVAL CONFIG_LWIP_GARP_TMR_INTERVAL +#define CONFIG_INT_WDT CONFIG_ESP_INT_WDT +#define CONFIG_INT_WDT_CHECK_CPU1 CONFIG_ESP_INT_WDT_CHECK_CPU1 +#define CONFIG_INT_WDT_TIMEOUT_MS CONFIG_ESP_INT_WDT_TIMEOUT_MS +#define CONFIG_IPC_TASK_STACK_SIZE CONFIG_ESP_IPC_TASK_STACK_SIZE +#define CONFIG_LOG_BOOTLOADER_LEVEL_WARN CONFIG_BOOTLOADER_LOG_LEVEL_WARN +#define CONFIG_MAIN_TASK_STACK_SIZE CONFIG_ESP_MAIN_TASK_STACK_SIZE +#define CONFIG_MB_CONTROLLER_NOTIFY_QUEUE_SIZE CONFIG_FMB_CONTROLLER_NOTIFY_QUEUE_SIZE +#define CONFIG_MB_CONTROLLER_NOTIFY_TIMEOUT CONFIG_FMB_CONTROLLER_NOTIFY_TIMEOUT +#define CONFIG_MB_CONTROLLER_STACK_SIZE CONFIG_FMB_CONTROLLER_STACK_SIZE +#define CONFIG_MB_EVENT_QUEUE_TIMEOUT CONFIG_FMB_EVENT_QUEUE_TIMEOUT +#define CONFIG_MB_MASTER_DELAY_MS_CONVERT CONFIG_FMB_MASTER_DELAY_MS_CONVERT +#define CONFIG_MB_MASTER_TIMEOUT_MS_RESPOND CONFIG_FMB_MASTER_TIMEOUT_MS_RESPOND +#define CONFIG_MB_QUEUE_LENGTH CONFIG_FMB_QUEUE_LENGTH +#define CONFIG_MB_SERIAL_BUF_SIZE CONFIG_FMB_SERIAL_BUF_SIZE +#define CONFIG_MB_SERIAL_TASK_PRIO CONFIG_FMB_SERIAL_TASK_PRIO +#define CONFIG_MB_SERIAL_TASK_STACK_SIZE CONFIG_FMB_SERIAL_TASK_STACK_SIZE +#define CONFIG_MB_TIMER_GROUP CONFIG_FMB_TIMER_GROUP +#define CONFIG_MB_TIMER_INDEX CONFIG_FMB_TIMER_INDEX +#define CONFIG_MB_TIMER_PORT_ENABLED CONFIG_FMB_TIMER_PORT_ENABLED +#define CONFIG_MONITOR_BAUD_115200B CONFIG_ESPTOOLPY_MONITOR_BAUD_115200B +#define CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE +#define CONFIG_OPTIMIZATION_LEVEL_DEBUG CONFIG_COMPILER_OPTIMIZATION_DEFAULT +#define CONFIG_POST_EVENTS_FROM_IRAM_ISR CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR +#define CONFIG_POST_EVENTS_FROM_ISR CONFIG_ESP_EVENT_POST_FROM_ISR +#define CONFIG_REDUCE_PHY_TX_POWER CONFIG_ESP32_REDUCE_PHY_TX_POWER +#define CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS +#define CONFIG_STACK_CHECK_NONE CONFIG_COMPILER_STACK_CHECK_MODE_NONE +#define CONFIG_SUPPORT_TERMIOS CONFIG_VFS_SUPPORT_TERMIOS +#define CONFIG_SUPPRESS_SELECT_DEBUG_OUTPUT CONFIG_VFS_SUPPRESS_SELECT_DEBUG_OUTPUT +#define CONFIG_SYSTEM_EVENT_QUEUE_SIZE CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE +#define CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE +#define CONFIG_TASK_WDT CONFIG_ESP_TASK_WDT +#define CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0 CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0 +#define CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1 CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1 +#define CONFIG_TASK_WDT_TIMEOUT_S CONFIG_ESP_TASK_WDT_TIMEOUT_S +#define CONFIG_TCPIP_RECVMBOX_SIZE CONFIG_LWIP_TCPIP_RECVMBOX_SIZE +#define CONFIG_TCPIP_TASK_AFFINITY_NO_AFFINITY CONFIG_LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY +#define CONFIG_TCPIP_TASK_STACK_SIZE CONFIG_LWIP_TCPIP_TASK_STACK_SIZE +#define CONFIG_TCP_MAXRTX CONFIG_LWIP_TCP_MAXRTX +#define CONFIG_TCP_MSL CONFIG_LWIP_TCP_MSL +#define CONFIG_TCP_MSS CONFIG_LWIP_TCP_MSS +#define CONFIG_TCP_OVERSIZE_MSS CONFIG_LWIP_TCP_OVERSIZE_MSS +#define CONFIG_TCP_QUEUE_OOSEQ CONFIG_LWIP_TCP_QUEUE_OOSEQ +#define CONFIG_TCP_RECVMBOX_SIZE CONFIG_LWIP_TCP_RECVMBOX_SIZE +#define CONFIG_TCP_SND_BUF_DEFAULT CONFIG_LWIP_TCP_SND_BUF_DEFAULT +#define CONFIG_TCP_SYNMAXRTX CONFIG_LWIP_TCP_SYNMAXRTX +#define CONFIG_TCP_WND_DEFAULT CONFIG_LWIP_TCP_WND_DEFAULT +#define CONFIG_TIMER_QUEUE_LENGTH CONFIG_FREERTOS_TIMER_QUEUE_LENGTH +#define CONFIG_TIMER_TASK_PRIORITY CONFIG_FREERTOS_TIMER_TASK_PRIORITY +#define CONFIG_TIMER_TASK_STACK_DEPTH CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH +#define CONFIG_TIMER_TASK_STACK_SIZE CONFIG_ESP_TIMER_TASK_STACK_SIZE +#define CONFIG_TOOLPREFIX CONFIG_SDK_TOOLPREFIX +#define CONFIG_UDP_RECVMBOX_SIZE CONFIG_LWIP_UDP_RECVMBOX_SIZE diff --git a/build/config/sdkconfig.json b/build/config/sdkconfig.json new file mode 100644 index 0000000..e82053b --- /dev/null +++ b/build/config/sdkconfig.json @@ -0,0 +1,606 @@ +{ + "ADC_CAL_EFUSE_TP_ENABLE": true, + "ADC_CAL_EFUSE_VREF_ENABLE": true, + "ADC_CAL_LUT_ENABLE": true, + "ADC_DISABLE_DAC": true, + "ADC_FORCE_XPD_FSM": false, + "APPTRACE_DEST_NONE": true, + "APPTRACE_DEST_TRAX": false, + "APPTRACE_LOCK_ENABLE": true, + "APP_BUILD_BOOTLOADER": true, + "APP_BUILD_GENERATE_BINARIES": true, + "APP_BUILD_TYPE_APP_2NDBOOT": true, + "APP_BUILD_TYPE_ELF_RAM": false, + "APP_BUILD_USE_FLASH_SECTIONS": true, + "APP_COMPILE_TIME_DATE": true, + "APP_EXCLUDE_PROJECT_NAME_VAR": false, + "APP_EXCLUDE_PROJECT_VER_VAR": false, + "APP_PROJECT_VER_FROM_CONFIG": false, + "BOOTLOADER_APP_ROLLBACK_ENABLE": false, + "BOOTLOADER_APP_TEST": false, + "BOOTLOADER_CUSTOM_RESERVE_RTC": false, + "BOOTLOADER_FACTORY_RESET": false, + "BOOTLOADER_LOG_LEVEL": 2, + "BOOTLOADER_LOG_LEVEL_DEBUG": false, + "BOOTLOADER_LOG_LEVEL_ERROR": false, + "BOOTLOADER_LOG_LEVEL_INFO": false, + "BOOTLOADER_LOG_LEVEL_NONE": false, + "BOOTLOADER_LOG_LEVEL_VERBOSE": false, + "BOOTLOADER_LOG_LEVEL_WARN": true, + "BOOTLOADER_RESERVE_RTC_SIZE": 0, + "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP": false, + "BOOTLOADER_VDDSDIO_BOOST_1_8V": false, + "BOOTLOADER_VDDSDIO_BOOST_1_9V": true, + "BOOTLOADER_WDT_DISABLE_IN_USER_CODE": false, + "BOOTLOADER_WDT_ENABLE": true, + "BOOTLOADER_WDT_TIME_MS": 9000, + "BTDM_BLE_SLEEP_CLOCK_ACCURACY_INDEX_EFF": 1, + "BTDM_CTRL_BLE_MAX_CONN_EFF": 0, + "BTDM_CTRL_BR_EDR_MAX_ACL_CONN_EFF": 0, + "BTDM_CTRL_BR_EDR_MAX_SYNC_CONN_EFF": 0, + "BTDM_CTRL_BR_EDR_SCO_DATA_PATH_EFF": 0, + "BTDM_CTRL_PINNED_TO_CORE": 0, + "BT_ENABLED": false, + "BT_RESERVE_DRAM": 0, + "COAP_LOG_DEFAULT_LEVEL": 0, + "COAP_MBEDTLS_DEBUG": false, + "COAP_MBEDTLS_PKI": false, + "COAP_MBEDTLS_PSK": true, + "COMPILER_CXX_EXCEPTIONS": false, + "COMPILER_CXX_RTTI": false, + "COMPILER_DISABLE_GCC8_WARNINGS": false, + "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE": false, + "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE": true, + "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT": false, + "COMPILER_OPTIMIZATION_DEFAULT": true, + "COMPILER_OPTIMIZATION_NONE": false, + "COMPILER_OPTIMIZATION_PERF": false, + "COMPILER_OPTIMIZATION_SIZE": false, + "COMPILER_STACK_CHECK_MODE_ALL": false, + "COMPILER_STACK_CHECK_MODE_NONE": true, + "COMPILER_STACK_CHECK_MODE_NORM": false, + "COMPILER_STACK_CHECK_MODE_STRONG": false, + "COMPILER_WARN_WRITE_STRINGS": false, + "EFUSE_CODE_SCHEME_COMPAT_3_4": true, + "EFUSE_CODE_SCHEME_COMPAT_NONE": false, + "EFUSE_CODE_SCHEME_COMPAT_REPEAT": false, + "EFUSE_CUSTOM_TABLE": false, + "EFUSE_MAX_BLK_LEN": 192, + "EFUSE_VIRTUAL": false, + "ESP32_BROWNOUT_DET": true, + "ESP32_BROWNOUT_DET_LVL": 0, + "ESP32_BROWNOUT_DET_LVL_SEL_0": true, + "ESP32_BROWNOUT_DET_LVL_SEL_1": false, + "ESP32_BROWNOUT_DET_LVL_SEL_2": false, + "ESP32_BROWNOUT_DET_LVL_SEL_3": false, + "ESP32_BROWNOUT_DET_LVL_SEL_4": false, + "ESP32_BROWNOUT_DET_LVL_SEL_5": false, + "ESP32_BROWNOUT_DET_LVL_SEL_6": false, + "ESP32_BROWNOUT_DET_LVL_SEL_7": false, + "ESP32_COMPATIBLE_PRE_V2_1_BOOTLOADERS": false, + "ESP32_DEBUG_OCDAWARE": true, + "ESP32_DEEP_SLEEP_WAKEUP_DELAY": 2000, + "ESP32_DEFAULT_CPU_FREQ_160": true, + "ESP32_DEFAULT_CPU_FREQ_240": false, + "ESP32_DEFAULT_CPU_FREQ_80": false, + "ESP32_DEFAULT_CPU_FREQ_MHZ": 160, + "ESP32_DISABLE_BASIC_ROM_CONSOLE": false, + "ESP32_DPORT_DIS_INTERRUPT_LVL": 5, + "ESP32_DPORT_WORKAROUND": true, + "ESP32_ENABLE_COREDUMP_TO_FLASH": false, + "ESP32_ENABLE_COREDUMP_TO_NONE": true, + "ESP32_ENABLE_COREDUMP_TO_UART": false, + "ESP32_NO_BLOBS": false, + "ESP32_PANIC_GDBSTUB": false, + "ESP32_PANIC_PRINT_HALT": false, + "ESP32_PANIC_PRINT_REBOOT": true, + "ESP32_PANIC_SILENT_REBOOT": false, + "ESP32_PHY_CALIBRATION_AND_DATA_STORAGE": true, + "ESP32_PHY_INIT_DATA_IN_PARTITION": false, + "ESP32_PHY_MAX_TX_POWER": 20, + "ESP32_PHY_MAX_WIFI_TX_POWER": 20, + "ESP32_REDUCE_PHY_TX_POWER": true, + "ESP32_REV_MIN": 0, + "ESP32_REV_MIN_0": true, + "ESP32_REV_MIN_1": false, + "ESP32_REV_MIN_2": false, + "ESP32_REV_MIN_3": false, + "ESP32_RTC_CLK_CAL_CYCLES": 1024, + "ESP32_RTC_CLK_SRC_EXT_CRYS": false, + "ESP32_RTC_CLK_SRC_EXT_OSC": false, + "ESP32_RTC_CLK_SRC_INT_8MD256": false, + "ESP32_RTC_CLK_SRC_INT_RC": true, + "ESP32_SPIRAM_SUPPORT": false, + "ESP32_TIME_SYSCALL_USE_FRC1": false, + "ESP32_TIME_SYSCALL_USE_NONE": false, + "ESP32_TIME_SYSCALL_USE_RTC": false, + "ESP32_TIME_SYSCALL_USE_RTC_FRC1": true, + "ESP32_TRACEMEM_RESERVE_DRAM": 0, + "ESP32_TRAX": false, + "ESP32_ULP_COPROC_ENABLED": false, + "ESP32_ULP_COPROC_RESERVE_MEM": 0, + "ESP32_UNIVERSAL_MAC_ADDRESSES": 4, + "ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR": true, + "ESP32_UNIVERSAL_MAC_ADDRESSES_TWO": false, + "ESP32_USE_FIXED_STATIC_RAM_SIZE": false, + "ESP32_WIFI_AMPDU_RX_ENABLED": true, + "ESP32_WIFI_AMPDU_TX_ENABLED": true, + "ESP32_WIFI_CSI_ENABLED": false, + "ESP32_WIFI_DEBUG_LOG_ENABLE": false, + "ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM": 32, + "ESP32_WIFI_DYNAMIC_TX_BUFFER": true, + "ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM": 32, + "ESP32_WIFI_ENABLE_WPA3_SAE": false, + "ESP32_WIFI_IRAM_OPT": true, + "ESP32_WIFI_MGMT_SBUF_NUM": 32, + "ESP32_WIFI_NVS_ENABLED": true, + "ESP32_WIFI_RX_BA_WIN": 6, + "ESP32_WIFI_RX_IRAM_OPT": true, + "ESP32_WIFI_SOFTAP_BEACON_MAX_LEN": 752, + "ESP32_WIFI_STATIC_RX_BUFFER_NUM": 10, + "ESP32_WIFI_STATIC_TX_BUFFER": false, + "ESP32_WIFI_TASK_PINNED_TO_CORE_0": true, + "ESP32_WIFI_TASK_PINNED_TO_CORE_1": false, + "ESP32_WIFI_TX_BA_WIN": 6, + "ESP32_WIFI_TX_BUFFER_TYPE": 1, + "ESP32_XTAL_FREQ": 40, + "ESP32_XTAL_FREQ_26": false, + "ESP32_XTAL_FREQ_40": true, + "ESP32_XTAL_FREQ_AUTO": false, + "ESPTOOLPY_AFTER": "hard_reset", + "ESPTOOLPY_AFTER_NORESET": false, + "ESPTOOLPY_AFTER_RESET": true, + "ESPTOOLPY_BAUD_OTHER_VAL": 115200, + "ESPTOOLPY_BEFORE": "default_reset", + "ESPTOOLPY_BEFORE_NORESET": false, + "ESPTOOLPY_BEFORE_RESET": true, + "ESPTOOLPY_FLASHFREQ": "40m", + "ESPTOOLPY_FLASHFREQ_20M": false, + "ESPTOOLPY_FLASHFREQ_26M": false, + "ESPTOOLPY_FLASHFREQ_40M": true, + "ESPTOOLPY_FLASHFREQ_80M": false, + "ESPTOOLPY_FLASHMODE": "dio", + "ESPTOOLPY_FLASHMODE_DIO": true, + "ESPTOOLPY_FLASHMODE_DOUT": false, + "ESPTOOLPY_FLASHMODE_QIO": false, + "ESPTOOLPY_FLASHMODE_QOUT": false, + "ESPTOOLPY_FLASHSIZE": "4MB", + "ESPTOOLPY_FLASHSIZE_16MB": false, + "ESPTOOLPY_FLASHSIZE_1MB": false, + "ESPTOOLPY_FLASHSIZE_2MB": false, + "ESPTOOLPY_FLASHSIZE_4MB": true, + "ESPTOOLPY_FLASHSIZE_8MB": false, + "ESPTOOLPY_FLASHSIZE_DETECT": true, + "ESPTOOLPY_MONITOR_BAUD": 115200, + "ESPTOOLPY_MONITOR_BAUD_115200B": true, + "ESPTOOLPY_MONITOR_BAUD_230400B": false, + "ESPTOOLPY_MONITOR_BAUD_2MB": false, + "ESPTOOLPY_MONITOR_BAUD_57600B": false, + "ESPTOOLPY_MONITOR_BAUD_921600B": false, + "ESPTOOLPY_MONITOR_BAUD_9600B": false, + "ESPTOOLPY_MONITOR_BAUD_OTHER": false, + "ESPTOOLPY_MONITOR_BAUD_OTHER_VAL": 115200, + "ESP_CONSOLE_UART_BAUDRATE": 115200, + "ESP_CONSOLE_UART_CUSTOM": false, + "ESP_CONSOLE_UART_DEFAULT": true, + "ESP_CONSOLE_UART_NONE": false, + "ESP_CONSOLE_UART_NUM": 0, + "ESP_ERR_TO_NAME_LOOKUP": true, + "ESP_EVENT_LOOP_PROFILING": false, + "ESP_EVENT_POST_FROM_IRAM_ISR": true, + "ESP_EVENT_POST_FROM_ISR": true, + "ESP_HTTPS_SERVER_ENABLE": true, + "ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH": false, + "ESP_HTTP_CLIENT_ENABLE_HTTPS": true, + "ESP_INT_WDT": true, + "ESP_INT_WDT_CHECK_CPU1": true, + "ESP_INT_WDT_TIMEOUT_MS": 300, + "ESP_IPC_TASK_STACK_SIZE": 1024, + "ESP_IPC_USES_CALLERS_PRIORITY": true, + "ESP_MAC_ADDR_UNIVERSE_BT": true, + "ESP_MAC_ADDR_UNIVERSE_ETH": true, + "ESP_MAC_ADDR_UNIVERSE_WIFI_AP": true, + "ESP_MAC_ADDR_UNIVERSE_WIFI_STA": true, + "ESP_MAIN_TASK_STACK_SIZE": 7168, + "ESP_MINIMAL_SHARED_STACK_SIZE": 2048, + "ESP_NETIF_IP_LOST_TIMER_INTERVAL": 120, + "ESP_NETIF_LOOPBACK": false, + "ESP_NETIF_TCPIP_ADAPTER_COMPATIBLE_LAYER": true, + "ESP_NETIF_TCPIP_LWIP": true, + "ESP_PANIC_HANDLER_IRAM": false, + "ESP_SYSTEM_EVENT_QUEUE_SIZE": 32, + "ESP_SYSTEM_EVENT_TASK_STACK_SIZE": 2304, + "ESP_TASK_WDT": true, + "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0": true, + "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1": true, + "ESP_TASK_WDT_PANIC": false, + "ESP_TASK_WDT_TIMEOUT_S": 5, + "ESP_TIMER_IMPL_FRC2": false, + "ESP_TIMER_IMPL_TG0_LAC": true, + "ESP_TIMER_PROFILING": false, + "ESP_TIMER_TASK_STACK_SIZE": 3584, + "ESP_TLS_PSK_VERIFICATION": false, + "ESP_TLS_SERVER": true, + "ESP_TLS_USING_MBEDTLS": true, + "ETH_DMA_BUFFER_SIZE": 512, + "ETH_DMA_RX_BUFFER_NUM": 10, + "ETH_DMA_TX_BUFFER_NUM": 10, + "ETH_ENABLED": true, + "ETH_PHY_INTERFACE_MII": false, + "ETH_PHY_INTERFACE_RMII": true, + "ETH_RMII_CLK_INPUT": true, + "ETH_RMII_CLK_IN_GPIO": 0, + "ETH_RMII_CLK_OUTPUT": false, + "ETH_SPI_ETHERNET_DM9051": false, + "ETH_USE_ESP32_EMAC": true, + "ETH_USE_OPENETH": false, + "ETH_USE_SPI_ETHERNET": true, + "FATFS_CODEPAGE": 437, + "FATFS_CODEPAGE_437": true, + "FATFS_CODEPAGE_720": false, + "FATFS_CODEPAGE_737": false, + "FATFS_CODEPAGE_771": false, + "FATFS_CODEPAGE_775": false, + "FATFS_CODEPAGE_850": false, + "FATFS_CODEPAGE_852": false, + "FATFS_CODEPAGE_855": false, + "FATFS_CODEPAGE_857": false, + "FATFS_CODEPAGE_860": false, + "FATFS_CODEPAGE_861": false, + "FATFS_CODEPAGE_862": false, + "FATFS_CODEPAGE_863": false, + "FATFS_CODEPAGE_864": false, + "FATFS_CODEPAGE_865": false, + "FATFS_CODEPAGE_866": false, + "FATFS_CODEPAGE_869": false, + "FATFS_CODEPAGE_932": false, + "FATFS_CODEPAGE_936": false, + "FATFS_CODEPAGE_949": false, + "FATFS_CODEPAGE_950": false, + "FATFS_CODEPAGE_DYNAMIC": false, + "FATFS_FS_LOCK": 0, + "FATFS_LFN_HEAP": false, + "FATFS_LFN_NONE": true, + "FATFS_LFN_STACK": false, + "FATFS_PER_FILE_CACHE": true, + "FATFS_TIMEOUT_MS": 10000, + "FMB_COMM_MODE_ASCII_EN": true, + "FMB_COMM_MODE_RTU_EN": true, + "FMB_CONTROLLER_NOTIFY_QUEUE_SIZE": 20, + "FMB_CONTROLLER_NOTIFY_TIMEOUT": 20, + "FMB_CONTROLLER_SLAVE_ID_SUPPORT": false, + "FMB_CONTROLLER_STACK_SIZE": 4096, + "FMB_EVENT_QUEUE_TIMEOUT": 20, + "FMB_MASTER_DELAY_MS_CONVERT": 200, + "FMB_MASTER_TIMEOUT_MS_RESPOND": 150, + "FMB_QUEUE_LENGTH": 20, + "FMB_SERIAL_ASCII_BITS_PER_SYMB": 8, + "FMB_SERIAL_ASCII_TIMEOUT_RESPOND_MS": 1000, + "FMB_SERIAL_BUF_SIZE": 256, + "FMB_SERIAL_TASK_PRIO": 10, + "FMB_SERIAL_TASK_STACK_SIZE": 2048, + "FMB_TIMER_GROUP": 0, + "FMB_TIMER_INDEX": 0, + "FMB_TIMER_ISR_IN_IRAM": false, + "FMB_TIMER_PORT_ENABLED": true, + "FREERTOS_ASSERT_DISABLE": false, + "FREERTOS_ASSERT_FAIL_ABORT": false, + "FREERTOS_ASSERT_FAIL_PRINT_CONTINUE": true, + "FREERTOS_ASSERT_ON_UNTESTED_FUNCTION": true, + "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER": true, + "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE": false, + "FREERTOS_CHECK_STACKOVERFLOW_CANARY": true, + "FREERTOS_CHECK_STACKOVERFLOW_NONE": false, + "FREERTOS_CHECK_STACKOVERFLOW_PTRVAL": false, + "FREERTOS_CORETIMER_0": true, + "FREERTOS_CORETIMER_1": false, + "FREERTOS_DEBUG_OCDAWARE": true, + "FREERTOS_FPU_IN_ISR": false, + "FREERTOS_GENERATE_RUN_TIME_STATS": false, + "FREERTOS_HZ": 100, + "FREERTOS_IDLE_TASK_STACKSIZE": 1536, + "FREERTOS_INTERRUPT_BACKTRACE": true, + "FREERTOS_ISR_STACKSIZE": 1536, + "FREERTOS_LEGACY_HOOKS": false, + "FREERTOS_MAX_TASK_NAME_LEN": 16, + "FREERTOS_NO_AFFINITY": 2147483647, + "FREERTOS_QUEUE_REGISTRY_SIZE": 0, + "FREERTOS_SUPPORT_STATIC_ALLOCATION": false, + "FREERTOS_TASK_FUNCTION_WRAPPER": true, + "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS": 1, + "FREERTOS_TIMER_QUEUE_LENGTH": 10, + "FREERTOS_TIMER_TASK_PRIORITY": 1, + "FREERTOS_TIMER_TASK_STACK_DEPTH": 2048, + "FREERTOS_UNICORE": false, + "FREERTOS_USE_STATS_FORMATTING_FUNCTIONS": true, + "FREERTOS_USE_TRACE_FACILITY": true, + "FREERTOS_VTASKLIST_INCLUDE_COREID": false, + "FREERTOS_WATCHPOINT_END_OF_STACK": true, + "HEAP_POISONING_COMPREHENSIVE": false, + "HEAP_POISONING_DISABLED": true, + "HEAP_POISONING_LIGHT": false, + "HEAP_TRACING_OFF": true, + "HEAP_TRACING_STANDALONE": false, + "HEAP_TRACING_TOHOST": false, + "HTTPD_ERR_RESP_NO_DELAY": true, + "HTTPD_LOG_PURGE_DATA": false, + "HTTPD_MAX_REQ_HDR_LEN": 1024, + "HTTPD_MAX_URI_LEN": 512, + "HTTPD_PURGE_BUF_LEN": 32, + "IDF_CMAKE": true, + "IDF_FIRMWARE_CHIP_ID": 0, + "IDF_TARGET": "esp32", + "IDF_TARGET_ESP32": true, + "JSMN_PARENT_LINKS": false, + "JSMN_STRICT": false, + "LEGACY_INCLUDE_COMMON_HEADERS": false, + "LOG_COLORS": true, + "LOG_DEFAULT_LEVEL": 3, + "LOG_DEFAULT_LEVEL_DEBUG": false, + "LOG_DEFAULT_LEVEL_ERROR": false, + "LOG_DEFAULT_LEVEL_INFO": true, + "LOG_DEFAULT_LEVEL_NONE": false, + "LOG_DEFAULT_LEVEL_VERBOSE": false, + "LOG_DEFAULT_LEVEL_WARN": false, + "LOG_TIMESTAMP_SOURCE_RTOS": true, + "LOG_TIMESTAMP_SOURCE_SYSTEM": false, + "LVGL_DISPLAY_HEIGHT": 240, + "LVGL_DISPLAY_WIDTH": 320, + "LVGL_DISP_PIN_BCKL": 21, + "LVGL_DISP_PIN_DC": 2, + "LVGL_DISP_PIN_RST": 4, + "LVGL_DISP_SPI_CLK": 14, + "LVGL_DISP_SPI_CS": 15, + "LVGL_DISP_SPI_MOSI": 13, + "LVGL_ENABLE_BACKLIGHT_CONTROL": false, + "LVGL_FT6X36_INVERT_Y": true, + "LVGL_FT6X36_SWAPXY": true, + "LVGL_PREDEFINED_DISPLAY_ADA_FEATHERWING": false, + "LVGL_PREDEFINED_DISPLAY_ERTFT0356": false, + "LVGL_PREDEFINED_DISPLAY_M5STACK": false, + "LVGL_PREDEFINED_DISPLAY_NONE": false, + "LVGL_PREDEFINED_DISPLAY_WROVER4": true, + "LVGL_TFT_DISPLAY_SPI_HSPI": true, + "LVGL_TFT_DISPLAY_SPI_VSPI": false, + "LVGL_TOUCH_I2C_SCL": 22, + "LVGL_TOUCH_I2C_SDA": 21, + "LVGL_TOUCH_INVERT_X": true, + "LVGL_TOUCH_INVERT_Y": true, + "LVGL_TOUCH_PIN_IRQ": 25, + "LVGL_TOUCH_SPI_CLK": 18, + "LVGL_TOUCH_SPI_CS": 5, + "LVGL_TOUCH_SPI_MISO": 19, + "LVGL_TOUCH_SPI_MOSI": 23, + "LVGL_TOUCH_X_MAX": 1900, + "LVGL_TOUCH_X_MIN": 200, + "LVGL_TOUCH_Y_MAX": 1900, + "LVGL_TOUCH_Y_MIN": 120, + "LWIP_AUTOIP": false, + "LWIP_BROADCAST_PING": false, + "LWIP_DHCPS_LEASE_UNIT": 60, + "LWIP_DHCPS_MAX_STATION_NUM": 8, + "LWIP_DHCP_DOES_ARP_CHECK": true, + "LWIP_DHCP_MAX_NTP_SERVERS": 1, + "LWIP_DHCP_RESTORE_LAST_IP": false, + "LWIP_DNS_SUPPORT_MDNS_QUERIES": true, + "LWIP_ESP_GRATUITOUS_ARP": true, + "LWIP_ETHARP_TRUST_IP_MAC": false, + "LWIP_GARP_TMR_INTERVAL": 60, + "LWIP_IP_FRAG": true, + "LWIP_IP_REASSEMBLY": false, + "LWIP_IRAM_OPTIMIZATION": false, + "LWIP_L2_TO_L3_COPY": false, + "LWIP_LOCAL_HOSTNAME": "espressif", + "LWIP_LOOPBACK_MAX_PBUFS": 8, + "LWIP_MAX_ACTIVE_TCP": 16, + "LWIP_MAX_LISTENING_TCP": 16, + "LWIP_MAX_RAW_PCBS": 16, + "LWIP_MAX_SOCKETS": 10, + "LWIP_MAX_UDP_PCBS": 16, + "LWIP_MULTICAST_PING": false, + "LWIP_NETBUF_RECVINFO": false, + "LWIP_NETIF_LOOPBACK": true, + "LWIP_PPP_SUPPORT": false, + "LWIP_SNTP_UPDATE_DELAY": 3600000, + "LWIP_SO_RCVBUF": false, + "LWIP_SO_REUSE": true, + "LWIP_SO_REUSE_RXTOALL": true, + "LWIP_STATS": false, + "LWIP_TCPIP_RECVMBOX_SIZE": 32, + "LWIP_TCPIP_TASK_AFFINITY": 2147483647, + "LWIP_TCPIP_TASK_AFFINITY_CPU0": false, + "LWIP_TCPIP_TASK_AFFINITY_CPU1": false, + "LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY": true, + "LWIP_TCPIP_TASK_STACK_SIZE": 3072, + "LWIP_TCP_KEEP_CONNECTION_WHEN_IP_CHANGES": false, + "LWIP_TCP_MAXRTX": 12, + "LWIP_TCP_MSL": 60000, + "LWIP_TCP_MSS": 1440, + "LWIP_TCP_OVERSIZE_DISABLE": false, + "LWIP_TCP_OVERSIZE_MSS": true, + "LWIP_TCP_OVERSIZE_QUARTER_MSS": false, + "LWIP_TCP_QUEUE_OOSEQ": true, + "LWIP_TCP_RECVMBOX_SIZE": 6, + "LWIP_TCP_SACK_OUT": false, + "LWIP_TCP_SND_BUF_DEFAULT": 5744, + "LWIP_TCP_SYNMAXRTX": 6, + "LWIP_TCP_TMR_INTERVAL": 250, + "LWIP_TCP_WND_DEFAULT": 5744, + "LWIP_TIMERS_ONDEMAND": true, + "LWIP_UDP_RECVMBOX_SIZE": 6, + "LWIP_USE_ONLY_LWIP_SELECT": false, + "MBEDTLS_AES_C": true, + "MBEDTLS_ASYMMETRIC_CONTENT_LEN": true, + "MBEDTLS_BLOWFISH_C": false, + "MBEDTLS_CAMELLIA_C": false, + "MBEDTLS_CCM_C": true, + "MBEDTLS_CLIENT_SSL_SESSION_TICKETS": true, + "MBEDTLS_CMAC_C": false, + "MBEDTLS_CUSTOM_MEM_ALLOC": false, + "MBEDTLS_DEBUG": false, + "MBEDTLS_DEFAULT_MEM_ALLOC": false, + "MBEDTLS_DES_C": false, + "MBEDTLS_ECDH_C": true, + "MBEDTLS_ECDSA_C": true, + "MBEDTLS_ECP_C": true, + "MBEDTLS_ECP_DP_BP256R1_ENABLED": true, + "MBEDTLS_ECP_DP_BP384R1_ENABLED": true, + "MBEDTLS_ECP_DP_BP512R1_ENABLED": true, + "MBEDTLS_ECP_DP_CURVE25519_ENABLED": true, + "MBEDTLS_ECP_DP_SECP192K1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP192R1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP224K1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP224R1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP256K1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP256R1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP384R1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP521R1_ENABLED": true, + "MBEDTLS_ECP_NIST_OPTIM": true, + "MBEDTLS_ECP_RESTARTABLE": false, + "MBEDTLS_GCM_C": true, + "MBEDTLS_HARDWARE_AES": true, + "MBEDTLS_HARDWARE_MPI": true, + "MBEDTLS_HARDWARE_SHA": true, + "MBEDTLS_HAVE_TIME": true, + "MBEDTLS_HAVE_TIME_DATE": false, + "MBEDTLS_INTERNAL_MEM_ALLOC": true, + "MBEDTLS_KEY_EXCHANGE_DHE_PSK": true, + "MBEDTLS_KEY_EXCHANGE_DHE_RSA": true, + "MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA": true, + "MBEDTLS_KEY_EXCHANGE_ECDHE_PSK": true, + "MBEDTLS_KEY_EXCHANGE_ECDHE_RSA": true, + "MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA": true, + "MBEDTLS_KEY_EXCHANGE_ECDH_RSA": true, + "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE": true, + "MBEDTLS_KEY_EXCHANGE_PSK": true, + "MBEDTLS_KEY_EXCHANGE_RSA": true, + "MBEDTLS_KEY_EXCHANGE_RSA_PSK": true, + "MBEDTLS_PEM_PARSE_C": true, + "MBEDTLS_PEM_WRITE_C": true, + "MBEDTLS_PSK_MODES": true, + "MBEDTLS_RC4_DISABLED": true, + "MBEDTLS_RC4_ENABLED": false, + "MBEDTLS_RC4_ENABLED_NO_DEFAULT": false, + "MBEDTLS_RIPEMD160_C": false, + "MBEDTLS_SECURITY_RISKS": false, + "MBEDTLS_SERVER_SSL_SESSION_TICKETS": true, + "MBEDTLS_SSL_ALPN": true, + "MBEDTLS_SSL_IN_CONTENT_LEN": 16384, + "MBEDTLS_SSL_OUT_CONTENT_LEN": 4096, + "MBEDTLS_SSL_PROTO_DTLS": true, + "MBEDTLS_SSL_PROTO_SSL3": false, + "MBEDTLS_SSL_PROTO_TLS1": true, + "MBEDTLS_SSL_PROTO_TLS1_1": true, + "MBEDTLS_SSL_PROTO_TLS1_2": true, + "MBEDTLS_SSL_RENEGOTIATION": true, + "MBEDTLS_TLS_CLIENT": true, + "MBEDTLS_TLS_CLIENT_ONLY": false, + "MBEDTLS_TLS_DISABLED": false, + "MBEDTLS_TLS_ENABLED": true, + "MBEDTLS_TLS_SERVER": true, + "MBEDTLS_TLS_SERVER_AND_CLIENT": true, + "MBEDTLS_TLS_SERVER_ONLY": false, + "MBEDTLS_X509_CRL_PARSE_C": true, + "MBEDTLS_X509_CSR_PARSE_C": true, + "MBEDTLS_XTEA_C": false, + "MDNS_MAX_SERVICES": 10, + "MDNS_SERVICE_ADD_TIMEOUT_MS": 2000, + "MDNS_TASK_AFFINITY": 0, + "MDNS_TASK_AFFINITY_CPU0": true, + "MDNS_TASK_AFFINITY_CPU1": false, + "MDNS_TASK_AFFINITY_NO_AFFINITY": false, + "MDNS_TASK_PRIORITY": 1, + "MDNS_TIMER_PERIOD_MS": 100, + "MQTT_CUSTOM_OUTBOX": false, + "MQTT_PROTOCOL_311": true, + "MQTT_TASK_CORE_SELECTION_ENABLED": false, + "MQTT_TRANSPORT_SSL": true, + "MQTT_TRANSPORT_WEBSOCKET": true, + "MQTT_TRANSPORT_WEBSOCKET_SECURE": true, + "MQTT_USE_CUSTOM_CONFIG": false, + "NEWLIB_NANO_FORMAT": false, + "NEWLIB_STDIN_LINE_ENDING_CR": true, + "NEWLIB_STDIN_LINE_ENDING_CRLF": false, + "NEWLIB_STDIN_LINE_ENDING_LF": false, + "NEWLIB_STDOUT_LINE_ENDING_CR": false, + "NEWLIB_STDOUT_LINE_ENDING_CRLF": true, + "NEWLIB_STDOUT_LINE_ENDING_LF": false, + "OPENSSL_ASSERT_DO_NOTHING": false, + "OPENSSL_ASSERT_EXIT": true, + "OPENSSL_DEBUG": false, + "OTA_ALLOW_HTTP": false, + "PARTITION_TABLE_CUSTOM": true, + "PARTITION_TABLE_CUSTOM_FILENAME": "partitions_example.csv", + "PARTITION_TABLE_FILENAME": "partitions_example.csv", + "PARTITION_TABLE_MD5": true, + "PARTITION_TABLE_OFFSET": 32768, + "PARTITION_TABLE_SINGLE_APP": false, + "PARTITION_TABLE_TWO_OTA": false, + "PM_ENABLE": false, + "PTHREAD_DEFAULT_CORE_0": false, + "PTHREAD_DEFAULT_CORE_1": false, + "PTHREAD_DEFAULT_CORE_NO_AFFINITY": true, + "PTHREAD_STACK_MIN": 768, + "PTHREAD_TASK_CORE_DEFAULT": -1, + "PTHREAD_TASK_NAME_DEFAULT": "pthread", + "PTHREAD_TASK_PRIO_DEFAULT": 5, + "PTHREAD_TASK_STACK_SIZE_DEFAULT": 3072, + "RTCIO_SUPPORT_RTC_GPIO_DESC": false, + "SDK_TOOLCHAIN_SUPPORTS_TIME_WIDE_64_BITS": false, + "SDK_TOOLPREFIX": "xtensa-esp32-elf-", + "SECURE_BOOT_ENABLED": false, + "SECURE_FLASH_ENC_ENABLED": false, + "SECURE_SIGNED_APPS_NO_SECURE_BOOT": false, + "SEMIHOSTFS_HOST_PATH_MAX_LEN": 128, + "SEMIHOSTFS_MAX_MOUNT_POINTS": 1, + "SPIFFS_API_DBG": false, + "SPIFFS_CACHE": true, + "SPIFFS_CACHE_DBG": false, + "SPIFFS_CACHE_STATS": false, + "SPIFFS_CACHE_WR": true, + "SPIFFS_CHECK_DBG": false, + "SPIFFS_DBG": false, + "SPIFFS_FOLLOW_SYMLINKS": false, + "SPIFFS_GC_DBG": false, + "SPIFFS_GC_MAX_RUNS": 10, + "SPIFFS_GC_STATS": false, + "SPIFFS_MAX_PARTITIONS": 3, + "SPIFFS_META_LENGTH": 4, + "SPIFFS_OBJ_NAME_LEN": 32, + "SPIFFS_PAGE_CHECK": true, + "SPIFFS_PAGE_SIZE": 256, + "SPIFFS_TEST_VISUALISATION": false, + "SPIFFS_USE_MAGIC": true, + "SPIFFS_USE_MAGIC_LENGTH": true, + "SPIFFS_USE_MTIME": true, + "SPI_FLASH_DANGEROUS_WRITE_ABORTS": true, + "SPI_FLASH_DANGEROUS_WRITE_ALLOWED": false, + "SPI_FLASH_DANGEROUS_WRITE_FAILS": false, + "SPI_FLASH_ENABLE_COUNTERS": false, + "SPI_FLASH_ROM_DRIVER_PATCH": true, + "SPI_FLASH_SUPPORT_GD_CHIP": true, + "SPI_FLASH_SUPPORT_ISSI_CHIP": true, + "SPI_FLASH_USE_LEGACY_IMPL": false, + "SPI_FLASH_VERIFY_WRITE": false, + "SPI_MASTER_IN_IRAM": false, + "SPI_MASTER_ISR_IN_IRAM": true, + "SPI_SLAVE_IN_IRAM": false, + "SPI_SLAVE_ISR_IN_IRAM": true, + "STORE_HISTORY": true, + "UART_ISR_IN_IRAM": false, + "UNITY_ENABLE_BACKTRACE_ON_FAIL": false, + "UNITY_ENABLE_COLOR": false, + "UNITY_ENABLE_DOUBLE": true, + "UNITY_ENABLE_FIXTURE": false, + "UNITY_ENABLE_FLOAT": true, + "UNITY_ENABLE_IDF_TEST_RUNNER": true, + "VFS_SUPPORT_TERMIOS": true, + "VFS_SUPPRESS_SELECT_DEBUG_OUTPUT": true, + "WIFI_PROV_AUTOSTOP_TIMEOUT": 30, + "WIFI_PROV_SCAN_MAX_ENTRIES": 16, + "WL_SECTOR_SIZE": 4096, + "WL_SECTOR_SIZE_4096": true, + "WL_SECTOR_SIZE_512": false, + "WPA_DEBUG_PRINT": false, + "WPA_MBEDTLS_CRYPTO": true +} \ No newline at end of file diff --git a/build/esp-idf/app_trace/cmake_install.cmake b/build/esp-idf/app_trace/cmake_install.cmake new file mode 100644 index 0000000..24fbc24 --- /dev/null +++ b/build/esp-idf/app_trace/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/app_trace + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/app_update/cmake_install.cmake b/build/esp-idf/app_update/cmake_install.cmake new file mode 100644 index 0000000..b4156ee --- /dev/null +++ b/build/esp-idf/app_update/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/app_update + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/asio/cmake_install.cmake b/build/esp-idf/asio/cmake_install.cmake new file mode 100644 index 0000000..ca33d53 --- /dev/null +++ b/build/esp-idf/asio/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/asio + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/bootloader/bootloader-flash_args.in b/build/esp-idf/bootloader/bootloader-flash_args.in new file mode 100644 index 0000000..2686aff --- /dev/null +++ b/build/esp-idf/bootloader/bootloader-flash_args.in @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 40m --flash_size 4MB +0x1000 bootloader/bootloader.bin \ No newline at end of file diff --git a/build/esp-idf/bootloader/cmake_install.cmake b/build/esp-idf/bootloader/cmake_install.cmake new file mode 100644 index 0000000..e5e2d06 --- /dev/null +++ b/build/esp-idf/bootloader/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/bootloader + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/bootloader_support/cmake_install.cmake b/build/esp-idf/bootloader_support/cmake_install.cmake new file mode 100644 index 0000000..4ff5417 --- /dev/null +++ b/build/esp-idf/bootloader_support/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/bootloader_support + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/bt/cmake_install.cmake b/build/esp-idf/bt/cmake_install.cmake new file mode 100644 index 0000000..2eb17e5 --- /dev/null +++ b/build/esp-idf/bt/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/bt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/ca/cmake_install.cmake b/build/esp-idf/ca/cmake_install.cmake new file mode 100644 index 0000000..3a4ce25 --- /dev/null +++ b/build/esp-idf/ca/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/Documents/bakalarka/components/ca + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/cbor/cmake_install.cmake b/build/esp-idf/cbor/cmake_install.cmake new file mode 100644 index 0000000..07728ea --- /dev/null +++ b/build/esp-idf/cbor/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/cbor + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/cmake_install.cmake b/build/esp-idf/cmake_install.cmake new file mode 100644 index 0000000..f4de619 --- /dev/null +++ b/build/esp-idf/cmake_install.cmake @@ -0,0 +1,120 @@ +# Install script for directory: /home/mithras/esp/esp-idf + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("/home/mithras/Documents/bakalarka/build/esp-idf/xtensa/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/esp_rom/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/soc/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/esp_eth/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/tcpip_adapter/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/esp_netif/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/esp_event/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/wpa_supplicant/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/efuse/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/bootloader_support/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/partition_table/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/app_update/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/spi_flash/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/nvs_flash/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/esp_wifi/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/lwip/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/log/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/heap/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/esp_ringbuf/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/driver/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/pthread/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/espcoredump/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/perfmon/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/esp32/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/esp_common/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/esp_timer/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/freertos/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/vfs/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/newlib/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/cxx/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/app_trace/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/asio/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/bootloader/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/bt/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/cbor/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/coap/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/console/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/nghttp/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/esp-tls/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/esp_adc_cal/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/esp_gdbstub/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/tcp_transport/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/esp_http_client/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/esp_http_server/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/esp_https_ota/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/esp_https_server/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/protobuf-c/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/protocomm/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/mdns/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/esp_local_ctrl/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/sdmmc/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/esp_serial_slave_link/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/esp_websocket_client/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/esptool_py/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/expat/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/wear_levelling/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/fatfs/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/freemodbus/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/idf_test/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/jsmn/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/json/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/libsodium/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/mqtt/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/openssl/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/spiffs/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/ulp/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/unity/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/wifi_provisioning/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/main/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/ca/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/cmd_nvs/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/cmd_system/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/files/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/wifi/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/https_server/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/lvgl/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/lv_examples/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_esp32_drivers/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_tft/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_touch/cmake_install.cmake") + +endif() + diff --git a/build/esp-idf/cmd_nvs/cmake_install.cmake b/build/esp-idf/cmd_nvs/cmake_install.cmake new file mode 100644 index 0000000..eadff29 --- /dev/null +++ b/build/esp-idf/cmd_nvs/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/Documents/bakalarka/components/cmd_nvs + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/cmd_system/cmake_install.cmake b/build/esp-idf/cmd_system/cmake_install.cmake new file mode 100644 index 0000000..38a173f --- /dev/null +++ b/build/esp-idf/cmd_system/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/Documents/bakalarka/components/cmd_system + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/coap/cmake_install.cmake b/build/esp-idf/coap/cmake_install.cmake new file mode 100644 index 0000000..6d7d334 --- /dev/null +++ b/build/esp-idf/coap/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/coap + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/console/cmake_install.cmake b/build/esp-idf/console/cmake_install.cmake new file mode 100644 index 0000000..f769059 --- /dev/null +++ b/build/esp-idf/console/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/console + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/cxx/cmake_install.cmake b/build/esp-idf/cxx/cmake_install.cmake new file mode 100644 index 0000000..7eb9f86 --- /dev/null +++ b/build/esp-idf/cxx/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/cxx + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/driver/cmake_install.cmake b/build/esp-idf/driver/cmake_install.cmake new file mode 100644 index 0000000..c3c7583 --- /dev/null +++ b/build/esp-idf/driver/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/driver + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/efuse/cmake_install.cmake b/build/esp-idf/efuse/cmake_install.cmake new file mode 100644 index 0000000..052f86a --- /dev/null +++ b/build/esp-idf/efuse/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/efuse + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/esp-tls/cmake_install.cmake b/build/esp-idf/esp-tls/cmake_install.cmake new file mode 100644 index 0000000..c7bb2ee --- /dev/null +++ b/build/esp-idf/esp-tls/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/esp-tls + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/esp32/cmake_install.cmake b/build/esp-idf/esp32/cmake_install.cmake new file mode 100644 index 0000000..30a70bd --- /dev/null +++ b/build/esp-idf/esp32/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/esp32 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/esp_adc_cal/cmake_install.cmake b/build/esp-idf/esp_adc_cal/cmake_install.cmake new file mode 100644 index 0000000..79bdfed --- /dev/null +++ b/build/esp-idf/esp_adc_cal/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/esp_adc_cal + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/esp_common/cmake_install.cmake b/build/esp-idf/esp_common/cmake_install.cmake new file mode 100644 index 0000000..0e9434d --- /dev/null +++ b/build/esp-idf/esp_common/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/esp_common + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/esp_eth/cmake_install.cmake b/build/esp-idf/esp_eth/cmake_install.cmake new file mode 100644 index 0000000..7baf34a --- /dev/null +++ b/build/esp-idf/esp_eth/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/esp_eth + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/esp_event/cmake_install.cmake b/build/esp-idf/esp_event/cmake_install.cmake new file mode 100644 index 0000000..f7a2289 --- /dev/null +++ b/build/esp-idf/esp_event/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/esp_event + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/esp_gdbstub/cmake_install.cmake b/build/esp-idf/esp_gdbstub/cmake_install.cmake new file mode 100644 index 0000000..0008141 --- /dev/null +++ b/build/esp-idf/esp_gdbstub/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/esp_gdbstub + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/esp_http_client/cmake_install.cmake b/build/esp-idf/esp_http_client/cmake_install.cmake new file mode 100644 index 0000000..366b2cb --- /dev/null +++ b/build/esp-idf/esp_http_client/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/esp_http_client + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/esp_http_server/cmake_install.cmake b/build/esp-idf/esp_http_server/cmake_install.cmake new file mode 100644 index 0000000..a374340 --- /dev/null +++ b/build/esp-idf/esp_http_server/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/esp_http_server + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/esp_https_ota/cmake_install.cmake b/build/esp-idf/esp_https_ota/cmake_install.cmake new file mode 100644 index 0000000..6cd8560 --- /dev/null +++ b/build/esp-idf/esp_https_ota/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/esp_https_ota + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/esp_https_server/cmake_install.cmake b/build/esp-idf/esp_https_server/cmake_install.cmake new file mode 100644 index 0000000..709ac33 --- /dev/null +++ b/build/esp-idf/esp_https_server/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/esp_https_server + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/esp_local_ctrl/cmake_install.cmake b/build/esp-idf/esp_local_ctrl/cmake_install.cmake new file mode 100644 index 0000000..053fd35 --- /dev/null +++ b/build/esp-idf/esp_local_ctrl/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/esp_local_ctrl + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/esp_netif/cmake_install.cmake b/build/esp-idf/esp_netif/cmake_install.cmake new file mode 100644 index 0000000..1855a94 --- /dev/null +++ b/build/esp-idf/esp_netif/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/esp_netif + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/esp_ringbuf/cmake_install.cmake b/build/esp-idf/esp_ringbuf/cmake_install.cmake new file mode 100644 index 0000000..932f685 --- /dev/null +++ b/build/esp-idf/esp_ringbuf/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/esp_ringbuf + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/esp_rom/cmake_install.cmake b/build/esp-idf/esp_rom/cmake_install.cmake new file mode 100644 index 0000000..1dea5e5 --- /dev/null +++ b/build/esp-idf/esp_rom/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/esp_rom + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/esp_serial_slave_link/cmake_install.cmake b/build/esp-idf/esp_serial_slave_link/cmake_install.cmake new file mode 100644 index 0000000..a5a29ea --- /dev/null +++ b/build/esp-idf/esp_serial_slave_link/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/esp_serial_slave_link + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/esp_timer/cmake_install.cmake b/build/esp-idf/esp_timer/cmake_install.cmake new file mode 100644 index 0000000..b11b152 --- /dev/null +++ b/build/esp-idf/esp_timer/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/esp_timer + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/esp_websocket_client/cmake_install.cmake b/build/esp-idf/esp_websocket_client/cmake_install.cmake new file mode 100644 index 0000000..83d8300 --- /dev/null +++ b/build/esp-idf/esp_websocket_client/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/esp_websocket_client + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/esp_wifi/cmake_install.cmake b/build/esp-idf/esp_wifi/cmake_install.cmake new file mode 100644 index 0000000..a638fca --- /dev/null +++ b/build/esp-idf/esp_wifi/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/esp_wifi + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/espcoredump/cmake_install.cmake b/build/esp-idf/espcoredump/cmake_install.cmake new file mode 100644 index 0000000..c254756 --- /dev/null +++ b/build/esp-idf/espcoredump/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/espcoredump + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/esptool_py/app-flash_args.in b/build/esp-idf/esptool_py/app-flash_args.in new file mode 100644 index 0000000..9450bb4 --- /dev/null +++ b/build/esp-idf/esptool_py/app-flash_args.in @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 40m --flash_size 4MB +0x10000 $.bin \ No newline at end of file diff --git a/build/esp-idf/esptool_py/cmake_install.cmake b/build/esp-idf/esptool_py/cmake_install.cmake new file mode 100644 index 0000000..88005d7 --- /dev/null +++ b/build/esp-idf/esptool_py/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/esptool_py + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/esptool_py/flasher_args.json.in b/build/esp-idf/esptool_py/flasher_args.json.in new file mode 100644 index 0000000..3d62661 --- /dev/null +++ b/build/esp-idf/esptool_py/flasher_args.json.in @@ -0,0 +1,24 @@ +{ + "write_flash_args" : [ "--flash_mode", "dio", + "--flash_size", "detect", + "--flash_freq", "40m" ], + "flash_settings" : { + "flash_mode": "dio", + "flash_size": "detect", + "flash_freq": "40m" + }, + "flash_files" : { + "0x8000" : "partition_table/partition-table.bin", + "0x1000" : "bootloader/bootloader.bin", + "0x10000" : "$.bin" + }, + "partition_table" : { "offset" : "0x8000", "file" : "partition_table/partition-table.bin" }, + "bootloader" : { "offset" : "0x1000", "file" : "bootloader/bootloader.bin" }, + "app" : { "offset" : "0x10000", "file" : "$.bin" }, + "extra_esptool_args" : { + "after" : "hard_reset", + "before" : "default_reset", + "stub" : "TRUE", + "chip" : "esp32" + } +} diff --git a/build/esp-idf/expat/cmake_install.cmake b/build/esp-idf/expat/cmake_install.cmake new file mode 100644 index 0000000..765bda0 --- /dev/null +++ b/build/esp-idf/expat/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/expat + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/fatfs/cmake_install.cmake b/build/esp-idf/fatfs/cmake_install.cmake new file mode 100644 index 0000000..b81a73f --- /dev/null +++ b/build/esp-idf/fatfs/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/fatfs + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/files/cmake_install.cmake b/build/esp-idf/files/cmake_install.cmake new file mode 100644 index 0000000..af54c58 --- /dev/null +++ b/build/esp-idf/files/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/Documents/bakalarka/components/files + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/freemodbus/cmake_install.cmake b/build/esp-idf/freemodbus/cmake_install.cmake new file mode 100644 index 0000000..4050318 --- /dev/null +++ b/build/esp-idf/freemodbus/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/freemodbus + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/freertos/cmake_install.cmake b/build/esp-idf/freertos/cmake_install.cmake new file mode 100644 index 0000000..455e328 --- /dev/null +++ b/build/esp-idf/freertos/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/freertos + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/heap/cmake_install.cmake b/build/esp-idf/heap/cmake_install.cmake new file mode 100644 index 0000000..89db946 --- /dev/null +++ b/build/esp-idf/heap/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/heap + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/https_server/cmake_install.cmake b/build/esp-idf/https_server/cmake_install.cmake new file mode 100644 index 0000000..407e261 --- /dev/null +++ b/build/esp-idf/https_server/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/Documents/bakalarka/components/https_server + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/idf_test/cmake_install.cmake b/build/esp-idf/idf_test/cmake_install.cmake new file mode 100644 index 0000000..3c8af54 --- /dev/null +++ b/build/esp-idf/idf_test/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/idf_test + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/jsmn/cmake_install.cmake b/build/esp-idf/jsmn/cmake_install.cmake new file mode 100644 index 0000000..4681476 --- /dev/null +++ b/build/esp-idf/jsmn/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/jsmn + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/json/cmake_install.cmake b/build/esp-idf/json/cmake_install.cmake new file mode 100644 index 0000000..c7c8770 --- /dev/null +++ b/build/esp-idf/json/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/json + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/libsodium/cmake_install.cmake b/build/esp-idf/libsodium/cmake_install.cmake new file mode 100644 index 0000000..239425b --- /dev/null +++ b/build/esp-idf/libsodium/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/libsodium + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/log/cmake_install.cmake b/build/esp-idf/log/cmake_install.cmake new file mode 100644 index 0000000..573a3bf --- /dev/null +++ b/build/esp-idf/log/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/log + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/lv_examples/cmake_install.cmake b/build/esp-idf/lv_examples/cmake_install.cmake new file mode 100644 index 0000000..3c88c22 --- /dev/null +++ b/build/esp-idf/lv_examples/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/Documents/bakalarka/components/lv_examples + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/lvgl/cmake_install.cmake b/build/esp-idf/lvgl/cmake_install.cmake new file mode 100644 index 0000000..a19e801 --- /dev/null +++ b/build/esp-idf/lvgl/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/Documents/bakalarka/components/lvgl + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/lvgl_esp32_drivers/cmake_install.cmake b/build/esp-idf/lvgl_esp32_drivers/cmake_install.cmake new file mode 100644 index 0000000..299561d --- /dev/null +++ b/build/esp-idf/lvgl_esp32_drivers/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/lvgl_tft/cmake_install.cmake b/build/esp-idf/lvgl_tft/cmake_install.cmake new file mode 100644 index 0000000..63f7dbc --- /dev/null +++ b/build/esp-idf/lvgl_tft/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_tft + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/lvgl_touch/cmake_install.cmake b/build/esp-idf/lvgl_touch/cmake_install.cmake new file mode 100644 index 0000000..5b3eff8 --- /dev/null +++ b/build/esp-idf/lvgl_touch/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_touch + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/lwip/cmake_install.cmake b/build/esp-idf/lwip/cmake_install.cmake new file mode 100644 index 0000000..d0bf341 --- /dev/null +++ b/build/esp-idf/lwip/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/lwip + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/main/cmake_install.cmake b/build/esp-idf/main/cmake_install.cmake new file mode 100644 index 0000000..6970e04 --- /dev/null +++ b/build/esp-idf/main/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/Documents/bakalarka/main + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/mbedtls/cmake_install.cmake b/build/esp-idf/mbedtls/cmake_install.cmake new file mode 100644 index 0000000..d5b8753 --- /dev/null +++ b/build/esp-idf/mbedtls/cmake_install.cmake @@ -0,0 +1,40 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/mbedtls + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake") + +endif() + diff --git a/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake b/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake new file mode 100644 index 0000000..9b92608 --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake @@ -0,0 +1,41 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/mbedtls/mbedtls + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake") + +endif() + diff --git a/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake b/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake new file mode 100644 index 0000000..615a0fa --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake @@ -0,0 +1,117 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/include/mbedtls" TYPE FILE PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ FILES + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/aes.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/aesni.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/arc4.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/aria.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/asn1.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/asn1write.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/base64.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/bignum.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/blowfish.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/bn_mul.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/camellia.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ccm.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/certs.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/chacha20.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/chachapoly.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/check_config.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/cipher.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/cipher_internal.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/cmac.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/compat-1.3.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/config.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ctr_drbg.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/debug.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/des.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/dhm.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ecdh.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ecdsa.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ecjpake.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ecp.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ecp_internal.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/entropy.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/entropy_poll.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/error.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/gcm.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/havege.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/hkdf.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/hmac_drbg.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/md.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/md2.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/md4.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/md5.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/md_internal.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/memory_buffer_alloc.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/net.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/net_sockets.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/nist_kw.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/oid.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/padlock.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pem.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pk.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pk_internal.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pkcs11.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pkcs12.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/pkcs5.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/platform.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/platform_time.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/platform_util.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/poly1305.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ripemd160.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/rsa.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/rsa_internal.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/sha1.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/sha256.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/sha512.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl_cache.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl_ciphersuites.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl_cookie.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl_internal.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/ssl_ticket.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/threading.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/timing.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/version.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/x509.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/x509_crl.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/x509_crt.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/x509_csr.h" + "/home/mithras/esp/esp-idf/components/mbedtls/mbedtls/include/mbedtls/xtea.h" + ) +endif() + diff --git a/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake b/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake new file mode 100644 index 0000000..13bd41d --- /dev/null +++ b/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake @@ -0,0 +1,46 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/mbedtls/mbedtls/library + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE FILES "/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/library/libmbedtls.a") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE FILES "/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/library/libmbedx509.a") +endif() + +if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE FILES "/home/mithras/Documents/bakalarka/build/esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a") +endif() + diff --git a/build/esp-idf/mdns/cmake_install.cmake b/build/esp-idf/mdns/cmake_install.cmake new file mode 100644 index 0000000..1c13a18 --- /dev/null +++ b/build/esp-idf/mdns/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/mdns + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/mqtt/cmake_install.cmake b/build/esp-idf/mqtt/cmake_install.cmake new file mode 100644 index 0000000..186991f --- /dev/null +++ b/build/esp-idf/mqtt/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/mqtt + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/newlib/cmake_install.cmake b/build/esp-idf/newlib/cmake_install.cmake new file mode 100644 index 0000000..73f07f9 --- /dev/null +++ b/build/esp-idf/newlib/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/newlib + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/nghttp/cmake_install.cmake b/build/esp-idf/nghttp/cmake_install.cmake new file mode 100644 index 0000000..6404dbf --- /dev/null +++ b/build/esp-idf/nghttp/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/nghttp + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/nvs_flash/cmake_install.cmake b/build/esp-idf/nvs_flash/cmake_install.cmake new file mode 100644 index 0000000..47e9245 --- /dev/null +++ b/build/esp-idf/nvs_flash/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/nvs_flash + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/openssl/cmake_install.cmake b/build/esp-idf/openssl/cmake_install.cmake new file mode 100644 index 0000000..0087cce --- /dev/null +++ b/build/esp-idf/openssl/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/openssl + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/partition_table/cmake_install.cmake b/build/esp-idf/partition_table/cmake_install.cmake new file mode 100644 index 0000000..4a54419 --- /dev/null +++ b/build/esp-idf/partition_table/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/partition_table + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/partition_table/partition_table-flash_args.in b/build/esp-idf/partition_table/partition_table-flash_args.in new file mode 100644 index 0000000..f63197a --- /dev/null +++ b/build/esp-idf/partition_table/partition_table-flash_args.in @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 40m --flash_size 4MB +0x8000 partition_table/partition-table.bin \ No newline at end of file diff --git a/build/esp-idf/perfmon/cmake_install.cmake b/build/esp-idf/perfmon/cmake_install.cmake new file mode 100644 index 0000000..426784e --- /dev/null +++ b/build/esp-idf/perfmon/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/perfmon + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/protobuf-c/cmake_install.cmake b/build/esp-idf/protobuf-c/cmake_install.cmake new file mode 100644 index 0000000..d1b516d --- /dev/null +++ b/build/esp-idf/protobuf-c/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/protobuf-c + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/protocomm/cmake_install.cmake b/build/esp-idf/protocomm/cmake_install.cmake new file mode 100644 index 0000000..8f9951e --- /dev/null +++ b/build/esp-idf/protocomm/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/protocomm + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/pthread/cmake_install.cmake b/build/esp-idf/pthread/cmake_install.cmake new file mode 100644 index 0000000..883b05a --- /dev/null +++ b/build/esp-idf/pthread/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/pthread + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/sdmmc/cmake_install.cmake b/build/esp-idf/sdmmc/cmake_install.cmake new file mode 100644 index 0000000..31a6b8e --- /dev/null +++ b/build/esp-idf/sdmmc/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/sdmmc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/soc/cmake_install.cmake b/build/esp-idf/soc/cmake_install.cmake new file mode 100644 index 0000000..ad4ecf6 --- /dev/null +++ b/build/esp-idf/soc/cmake_install.cmake @@ -0,0 +1,41 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/soc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("/home/mithras/Documents/bakalarka/build/esp-idf/soc/src/esp32/cmake_install.cmake") + include("/home/mithras/Documents/bakalarka/build/esp-idf/soc/soc/cmake_install.cmake") + +endif() + diff --git a/build/esp-idf/soc/soc/cmake_install.cmake b/build/esp-idf/soc/soc/cmake_install.cmake new file mode 100644 index 0000000..5088e70 --- /dev/null +++ b/build/esp-idf/soc/soc/cmake_install.cmake @@ -0,0 +1,40 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/soc/soc + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + include("/home/mithras/Documents/bakalarka/build/esp-idf/soc/soc/esp32/cmake_install.cmake") + +endif() + diff --git a/build/esp-idf/soc/soc/esp32/cmake_install.cmake b/build/esp-idf/soc/soc/esp32/cmake_install.cmake new file mode 100644 index 0000000..ee0ab0f --- /dev/null +++ b/build/esp-idf/soc/soc/esp32/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/soc/soc/esp32 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/soc/src/esp32/cmake_install.cmake b/build/esp-idf/soc/src/esp32/cmake_install.cmake new file mode 100644 index 0000000..5de88a6 --- /dev/null +++ b/build/esp-idf/soc/src/esp32/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/soc/src/esp32 + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/spi_flash/cmake_install.cmake b/build/esp-idf/spi_flash/cmake_install.cmake new file mode 100644 index 0000000..7ac42f1 --- /dev/null +++ b/build/esp-idf/spi_flash/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/spi_flash + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/spiffs/cmake_install.cmake b/build/esp-idf/spiffs/cmake_install.cmake new file mode 100644 index 0000000..2178fa6 --- /dev/null +++ b/build/esp-idf/spiffs/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/spiffs + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/tcp_transport/cmake_install.cmake b/build/esp-idf/tcp_transport/cmake_install.cmake new file mode 100644 index 0000000..08cd0d0 --- /dev/null +++ b/build/esp-idf/tcp_transport/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/tcp_transport + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/tcpip_adapter/cmake_install.cmake b/build/esp-idf/tcpip_adapter/cmake_install.cmake new file mode 100644 index 0000000..bfec0bb --- /dev/null +++ b/build/esp-idf/tcpip_adapter/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/tcpip_adapter + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/ulp/cmake_install.cmake b/build/esp-idf/ulp/cmake_install.cmake new file mode 100644 index 0000000..39e5852 --- /dev/null +++ b/build/esp-idf/ulp/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/ulp + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/unity/cmake_install.cmake b/build/esp-idf/unity/cmake_install.cmake new file mode 100644 index 0000000..4a510e7 --- /dev/null +++ b/build/esp-idf/unity/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/unity + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/vfs/cmake_install.cmake b/build/esp-idf/vfs/cmake_install.cmake new file mode 100644 index 0000000..d2e3629 --- /dev/null +++ b/build/esp-idf/vfs/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/vfs + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/wear_levelling/cmake_install.cmake b/build/esp-idf/wear_levelling/cmake_install.cmake new file mode 100644 index 0000000..43b8190 --- /dev/null +++ b/build/esp-idf/wear_levelling/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/wear_levelling + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/wifi/cmake_install.cmake b/build/esp-idf/wifi/cmake_install.cmake new file mode 100644 index 0000000..aafbe0e --- /dev/null +++ b/build/esp-idf/wifi/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/Documents/bakalarka/components/wifi + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/wifi_provisioning/cmake_install.cmake b/build/esp-idf/wifi_provisioning/cmake_install.cmake new file mode 100644 index 0000000..15293b7 --- /dev/null +++ b/build/esp-idf/wifi_provisioning/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/wifi_provisioning + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/wpa_supplicant/cmake_install.cmake b/build/esp-idf/wpa_supplicant/cmake_install.cmake new file mode 100644 index 0000000..f201dce --- /dev/null +++ b/build/esp-idf/wpa_supplicant/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/wpa_supplicant + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/esp-idf/xtensa/cmake_install.cmake b/build/esp-idf/xtensa/cmake_install.cmake new file mode 100644 index 0000000..50e21ae --- /dev/null +++ b/build/esp-idf/xtensa/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/mithras/esp/esp-idf/components/xtensa + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "TRUE") +endif() + diff --git a/build/flash_app_args b/build/flash_app_args new file mode 100644 index 0000000..55bebee --- /dev/null +++ b/build/flash_app_args @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 40m --flash_size 4MB +0x10000 bakalarka.bin diff --git a/build/flash_args b/build/flash_args new file mode 100644 index 0000000..e545d4c --- /dev/null +++ b/build/flash_args @@ -0,0 +1,4 @@ +--flash_mode dio --flash_freq 40m --flash_size 4MB +0x8000 partition_table/partition-table.bin +0x1000 bootloader/bootloader.bin +0x10000 bakalarka.bin diff --git a/build/flash_args.in b/build/flash_args.in new file mode 100644 index 0000000..e406dcd --- /dev/null +++ b/build/flash_args.in @@ -0,0 +1,4 @@ +--flash_mode dio --flash_freq 40m --flash_size 4MB +0x8000 partition_table/partition-table.bin +0x1000 bootloader/bootloader.bin +0x10000 $.bin \ No newline at end of file diff --git a/build/flash_bootloader_args b/build/flash_bootloader_args new file mode 100644 index 0000000..31ab2e9 --- /dev/null +++ b/build/flash_bootloader_args @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 40m --flash_size 4MB +0x1000 bootloader/bootloader.bin diff --git a/build/flash_project_args b/build/flash_project_args new file mode 100644 index 0000000..e545d4c --- /dev/null +++ b/build/flash_project_args @@ -0,0 +1,4 @@ +--flash_mode dio --flash_freq 40m --flash_size 4MB +0x8000 partition_table/partition-table.bin +0x1000 bootloader/bootloader.bin +0x10000 bakalarka.bin diff --git a/build/flasher_args.json b/build/flasher_args.json new file mode 100644 index 0000000..1c3806b --- /dev/null +++ b/build/flasher_args.json @@ -0,0 +1,24 @@ +{ + "write_flash_args" : [ "--flash_mode", "dio", + "--flash_size", "detect", + "--flash_freq", "40m" ], + "flash_settings" : { + "flash_mode": "dio", + "flash_size": "detect", + "flash_freq": "40m" + }, + "flash_files" : { + "0x8000" : "partition_table/partition-table.bin", + "0x1000" : "bootloader/bootloader.bin", + "0x10000" : "bakalarka.bin" + }, + "partition_table" : { "offset" : "0x8000", "file" : "partition_table/partition-table.bin" }, + "bootloader" : { "offset" : "0x1000", "file" : "bootloader/bootloader.bin" }, + "app" : { "offset" : "0x10000", "file" : "bakalarka.bin" }, + "extra_esptool_args" : { + "after" : "hard_reset", + "before" : "default_reset", + "stub" : "TRUE", + "chip" : "esp32" + } +} diff --git a/build/kconfigs.in b/build/kconfigs.in new file mode 100644 index 0000000..f821517 --- /dev/null +++ b/build/kconfigs.in @@ -0,0 +1,44 @@ +source "/home/mithras/esp/esp-idf/components/app_trace/Kconfig" +source "/home/mithras/esp/esp-idf/components/bt/Kconfig" +source "/home/mithras/esp/esp-idf/components/coap/Kconfig" +source "/home/mithras/esp/esp-idf/components/driver/Kconfig" +source "/home/mithras/esp/esp-idf/components/efuse/Kconfig" +source "/home/mithras/esp/esp-idf/components/esp-tls/Kconfig" +source "/home/mithras/esp/esp-idf/components/esp32/Kconfig" +source "/home/mithras/esp/esp-idf/components/esp_adc_cal/Kconfig" +source "/home/mithras/esp/esp-idf/components/esp_common/Kconfig" +source "/home/mithras/esp/esp-idf/components/esp_eth/Kconfig" +source "/home/mithras/esp/esp-idf/components/esp_event/Kconfig" +source "/home/mithras/esp/esp-idf/components/esp_gdbstub/Kconfig" +source "/home/mithras/esp/esp-idf/components/esp_http_client/Kconfig" +source "/home/mithras/esp/esp-idf/components/esp_http_server/Kconfig" +source "/home/mithras/esp/esp-idf/components/esp_https_ota/Kconfig" +source "/home/mithras/esp/esp-idf/components/esp_https_server/Kconfig" +source "/home/mithras/esp/esp-idf/components/esp_netif/Kconfig" +source "/home/mithras/esp/esp-idf/components/esp_timer/Kconfig" +source "/home/mithras/esp/esp-idf/components/esp_wifi/Kconfig" +source "/home/mithras/esp/esp-idf/components/espcoredump/Kconfig" +source "/home/mithras/esp/esp-idf/components/fatfs/Kconfig" +source "/home/mithras/esp/esp-idf/components/freemodbus/Kconfig" +source "/home/mithras/esp/esp-idf/components/freertos/Kconfig" +source "/home/mithras/esp/esp-idf/components/heap/Kconfig" +source "/home/mithras/esp/esp-idf/components/jsmn/Kconfig" +source "/home/mithras/esp/esp-idf/components/libsodium/Kconfig" +source "/home/mithras/esp/esp-idf/components/log/Kconfig" +source "/home/mithras/esp/esp-idf/components/lwip/Kconfig" +source "/home/mithras/esp/esp-idf/components/mbedtls/Kconfig" +source "/home/mithras/esp/esp-idf/components/mdns/Kconfig" +source "/home/mithras/esp/esp-idf/components/mqtt/Kconfig" +source "/home/mithras/esp/esp-idf/components/newlib/Kconfig" +source "/home/mithras/esp/esp-idf/components/nvs_flash/Kconfig" +source "/home/mithras/esp/esp-idf/components/openssl/Kconfig" +source "/home/mithras/esp/esp-idf/components/pthread/Kconfig" +source "/home/mithras/esp/esp-idf/components/spi_flash/Kconfig" +source "/home/mithras/esp/esp-idf/components/spiffs/Kconfig" +source "/home/mithras/esp/esp-idf/components/unity/Kconfig" +source "/home/mithras/esp/esp-idf/components/vfs/Kconfig" +source "/home/mithras/esp/esp-idf/components/wear_levelling/Kconfig" +source "/home/mithras/esp/esp-idf/components/wifi_provisioning/Kconfig" +source "/home/mithras/esp/esp-idf/components/wpa_supplicant/Kconfig" +source "/home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_tft/Kconfig" +source "/home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_touch/Kconfig" \ No newline at end of file diff --git a/build/kconfigs_projbuild.in b/build/kconfigs_projbuild.in new file mode 100644 index 0000000..d12b635 --- /dev/null +++ b/build/kconfigs_projbuild.in @@ -0,0 +1,5 @@ +source "/home/mithras/esp/esp-idf/components/app_update/Kconfig.projbuild" +source "/home/mithras/esp/esp-idf/components/bootloader/Kconfig.projbuild" +source "/home/mithras/esp/esp-idf/components/esptool_py/Kconfig.projbuild" +source "/home/mithras/esp/esp-idf/components/partition_table/Kconfig.projbuild" +source "/home/mithras/Documents/bakalarka/main/Kconfig.projbuild" \ No newline at end of file diff --git a/build/ldgen_libraries b/build/ldgen_libraries new file mode 100644 index 0000000..1972c2c --- /dev/null +++ b/build/ldgen_libraries @@ -0,0 +1,74 @@ +/home/mithras/Documents/bakalarka/build/esp-idf/xtensa/libxtensa.a +/home/mithras/Documents/bakalarka/build/esp-idf/soc/libsoc.a +/home/mithras/Documents/bakalarka/build/esp-idf/esp_eth/libesp_eth.a +/home/mithras/Documents/bakalarka/build/esp-idf/tcpip_adapter/libtcpip_adapter.a +/home/mithras/Documents/bakalarka/build/esp-idf/esp_netif/libesp_netif.a +/home/mithras/Documents/bakalarka/build/esp-idf/esp_event/libesp_event.a +/home/mithras/Documents/bakalarka/build/esp-idf/wpa_supplicant/libwpa_supplicant.a +/home/mithras/Documents/bakalarka/build/esp-idf/efuse/libefuse.a +/home/mithras/Documents/bakalarka/build/esp-idf/bootloader_support/libbootloader_support.a +/home/mithras/Documents/bakalarka/build/esp-idf/app_update/libapp_update.a +/home/mithras/Documents/bakalarka/build/esp-idf/spi_flash/libspi_flash.a +/home/mithras/Documents/bakalarka/build/esp-idf/nvs_flash/libnvs_flash.a +/home/mithras/Documents/bakalarka/build/esp-idf/esp_wifi/libesp_wifi.a +/home/mithras/Documents/bakalarka/build/esp-idf/lwip/liblwip.a +/home/mithras/Documents/bakalarka/build/esp-idf/log/liblog.a +/home/mithras/Documents/bakalarka/build/esp-idf/heap/libheap.a +/home/mithras/Documents/bakalarka/build/esp-idf/esp_ringbuf/libesp_ringbuf.a +/home/mithras/Documents/bakalarka/build/esp-idf/driver/libdriver.a +/home/mithras/Documents/bakalarka/build/esp-idf/pthread/libpthread.a +/home/mithras/Documents/bakalarka/build/esp-idf/espcoredump/libespcoredump.a +/home/mithras/Documents/bakalarka/build/esp-idf/perfmon/libperfmon.a +/home/mithras/Documents/bakalarka/build/esp-idf/esp32/libesp32.a +/home/mithras/Documents/bakalarka/build/esp-idf/esp_common/libesp_common.a +/home/mithras/Documents/bakalarka/build/esp-idf/esp_timer/libesp_timer.a +/home/mithras/Documents/bakalarka/build/esp-idf/freertos/libfreertos.a +/home/mithras/Documents/bakalarka/build/esp-idf/vfs/libvfs.a +/home/mithras/Documents/bakalarka/build/esp-idf/newlib/libnewlib.a +/home/mithras/Documents/bakalarka/build/esp-idf/cxx/libcxx.a +/home/mithras/Documents/bakalarka/build/esp-idf/app_trace/libapp_trace.a +/home/mithras/Documents/bakalarka/build/esp-idf/asio/libasio.a +/home/mithras/Documents/bakalarka/build/esp-idf/cbor/libcbor.a +/home/mithras/Documents/bakalarka/build/esp-idf/coap/libcoap.a +/home/mithras/Documents/bakalarka/build/esp-idf/console/libconsole.a +/home/mithras/Documents/bakalarka/build/esp-idf/nghttp/libnghttp.a +/home/mithras/Documents/bakalarka/build/esp-idf/esp-tls/libesp-tls.a +/home/mithras/Documents/bakalarka/build/esp-idf/esp_adc_cal/libesp_adc_cal.a +/home/mithras/Documents/bakalarka/build/esp-idf/esp_gdbstub/libesp_gdbstub.a +/home/mithras/Documents/bakalarka/build/esp-idf/tcp_transport/libtcp_transport.a +/home/mithras/Documents/bakalarka/build/esp-idf/esp_http_client/libesp_http_client.a +/home/mithras/Documents/bakalarka/build/esp-idf/esp_http_server/libesp_http_server.a +/home/mithras/Documents/bakalarka/build/esp-idf/esp_https_ota/libesp_https_ota.a +/home/mithras/Documents/bakalarka/build/esp-idf/esp_https_server/libesp_https_server.a +/home/mithras/Documents/bakalarka/build/esp-idf/protobuf-c/libprotobuf-c.a +/home/mithras/Documents/bakalarka/build/esp-idf/protocomm/libprotocomm.a +/home/mithras/Documents/bakalarka/build/esp-idf/mdns/libmdns.a +/home/mithras/Documents/bakalarka/build/esp-idf/esp_local_ctrl/libesp_local_ctrl.a +/home/mithras/Documents/bakalarka/build/esp-idf/sdmmc/libsdmmc.a +/home/mithras/Documents/bakalarka/build/esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a +/home/mithras/Documents/bakalarka/build/esp-idf/esp_websocket_client/libesp_websocket_client.a +/home/mithras/Documents/bakalarka/build/esp-idf/expat/libexpat.a +/home/mithras/Documents/bakalarka/build/esp-idf/wear_levelling/libwear_levelling.a +/home/mithras/Documents/bakalarka/build/esp-idf/fatfs/libfatfs.a +/home/mithras/Documents/bakalarka/build/esp-idf/freemodbus/libfreemodbus.a +/home/mithras/Documents/bakalarka/build/esp-idf/jsmn/libjsmn.a +/home/mithras/Documents/bakalarka/build/esp-idf/json/libjson.a +/home/mithras/Documents/bakalarka/build/esp-idf/libsodium/liblibsodium.a +/home/mithras/Documents/bakalarka/build/esp-idf/mqtt/libmqtt.a +/home/mithras/Documents/bakalarka/build/esp-idf/openssl/libopenssl.a +/home/mithras/Documents/bakalarka/build/esp-idf/spiffs/libspiffs.a +/home/mithras/Documents/bakalarka/build/esp-idf/ulp/libulp.a +/home/mithras/Documents/bakalarka/build/esp-idf/unity/libunity.a +/home/mithras/Documents/bakalarka/build/esp-idf/wifi_provisioning/libwifi_provisioning.a +/home/mithras/Documents/bakalarka/build/esp-idf/main/libmain.a +/home/mithras/Documents/bakalarka/build/esp-idf/ca/libca.a +/home/mithras/Documents/bakalarka/build/esp-idf/cmd_nvs/libcmd_nvs.a +/home/mithras/Documents/bakalarka/build/esp-idf/cmd_system/libcmd_system.a +/home/mithras/Documents/bakalarka/build/esp-idf/files/libfiles.a +/home/mithras/Documents/bakalarka/build/esp-idf/wifi/libwifi.a +/home/mithras/Documents/bakalarka/build/esp-idf/https_server/libhttps_server.a +/home/mithras/Documents/bakalarka/build/esp-idf/lvgl/liblvgl.a +/home/mithras/Documents/bakalarka/build/esp-idf/lv_examples/liblv_examples.a +/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_esp32_drivers/liblvgl_esp32_drivers.a +/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_tft/liblvgl_tft.a +/home/mithras/Documents/bakalarka/build/esp-idf/lvgl_touch/liblvgl_touch.a diff --git a/build/ldgen_libraries.in b/build/ldgen_libraries.in new file mode 100644 index 0000000..fab3f31 --- /dev/null +++ b/build/ldgen_libraries.in @@ -0,0 +1,74 @@ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ +$ \ No newline at end of file diff --git a/build/partition_table-flash_args b/build/partition_table-flash_args new file mode 100644 index 0000000..a6fee24 --- /dev/null +++ b/build/partition_table-flash_args @@ -0,0 +1,2 @@ +--flash_mode dio --flash_freq 40m --flash_size 4MB +0x8000 partition_table/partition-table.bin diff --git a/build/project_description.json b/build/project_description.json new file mode 100644 index 0000000..afa2d01 --- /dev/null +++ b/build/project_description.json @@ -0,0 +1,20 @@ +{ + "project_name": "bakalarka", + "project_path": "/home/mithras/Documents/bakalarka", + "build_dir": "/home/mithras/Documents/bakalarka/build", + "config_file": "/home/mithras/Documents/bakalarka/sdkconfig", + "config_defaults": "/home/mithras/Documents/bakalarka/sdkconfig.defaults", + "app_elf": "bakalarka.elf", + "app_bin": "bakalarka.bin", + "git_revision": "v4.2-dev-414-g132cc67c0-dirty", + "target": "esp32", + "phy_data_partition": "", + "monitor_baud" : "115200", + "monitor_toolprefix": "xtensa-esp32-elf-", + "config_environment" : { + "COMPONENT_KCONFIGS" : "/home/mithras/esp/esp-idf/components/app_trace/Kconfig;/home/mithras/esp/esp-idf/components/bt/Kconfig;/home/mithras/esp/esp-idf/components/coap/Kconfig;/home/mithras/esp/esp-idf/components/driver/Kconfig;/home/mithras/esp/esp-idf/components/efuse/Kconfig;/home/mithras/esp/esp-idf/components/esp-tls/Kconfig;/home/mithras/esp/esp-idf/components/esp32/Kconfig;/home/mithras/esp/esp-idf/components/esp_adc_cal/Kconfig;/home/mithras/esp/esp-idf/components/esp_common/Kconfig;/home/mithras/esp/esp-idf/components/esp_eth/Kconfig;/home/mithras/esp/esp-idf/components/esp_event/Kconfig;/home/mithras/esp/esp-idf/components/esp_gdbstub/Kconfig;/home/mithras/esp/esp-idf/components/esp_http_client/Kconfig;/home/mithras/esp/esp-idf/components/esp_http_server/Kconfig;/home/mithras/esp/esp-idf/components/esp_https_ota/Kconfig;/home/mithras/esp/esp-idf/components/esp_https_server/Kconfig;/home/mithras/esp/esp-idf/components/esp_netif/Kconfig;/home/mithras/esp/esp-idf/components/esp_timer/Kconfig;/home/mithras/esp/esp-idf/components/esp_wifi/Kconfig;/home/mithras/esp/esp-idf/components/espcoredump/Kconfig;/home/mithras/esp/esp-idf/components/fatfs/Kconfig;/home/mithras/esp/esp-idf/components/freemodbus/Kconfig;/home/mithras/esp/esp-idf/components/freertos/Kconfig;/home/mithras/esp/esp-idf/components/heap/Kconfig;/home/mithras/esp/esp-idf/components/jsmn/Kconfig;/home/mithras/esp/esp-idf/components/libsodium/Kconfig;/home/mithras/esp/esp-idf/components/log/Kconfig;/home/mithras/esp/esp-idf/components/lwip/Kconfig;/home/mithras/esp/esp-idf/components/mbedtls/Kconfig;/home/mithras/esp/esp-idf/components/mdns/Kconfig;/home/mithras/esp/esp-idf/components/mqtt/Kconfig;/home/mithras/esp/esp-idf/components/newlib/Kconfig;/home/mithras/esp/esp-idf/components/nvs_flash/Kconfig;/home/mithras/esp/esp-idf/components/openssl/Kconfig;/home/mithras/esp/esp-idf/components/pthread/Kconfig;/home/mithras/esp/esp-idf/components/spi_flash/Kconfig;/home/mithras/esp/esp-idf/components/spiffs/Kconfig;/home/mithras/esp/esp-idf/components/unity/Kconfig;/home/mithras/esp/esp-idf/components/vfs/Kconfig;/home/mithras/esp/esp-idf/components/wear_levelling/Kconfig;/home/mithras/esp/esp-idf/components/wifi_provisioning/Kconfig;/home/mithras/esp/esp-idf/components/wpa_supplicant/Kconfig;/home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_tft/Kconfig;/home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_touch/Kconfig", + "COMPONENT_KCONFIGS_PROJBUILD" : "/home/mithras/esp/esp-idf/components/app_update/Kconfig.projbuild;/home/mithras/esp/esp-idf/components/bootloader/Kconfig.projbuild;/home/mithras/esp/esp-idf/components/esptool_py/Kconfig.projbuild;/home/mithras/esp/esp-idf/components/partition_table/Kconfig.projbuild;/home/mithras/Documents/bakalarka/main/Kconfig.projbuild" + }, + "build_components" : [ "app_trace", "app_update", "asio", "bootloader", "bootloader_support", "bt", "ca", "cbor", "cmd_nvs", "cmd_system", "coap", "console", "cxx", "driver", "efuse", "esp-tls", "esp32", "esp_adc_cal", "esp_common", "esp_eth", "esp_event", "esp_gdbstub", "esp_http_client", "esp_http_server", "esp_https_ota", "esp_https_server", "esp_local_ctrl", "esp_netif", "esp_ringbuf", "esp_rom", "esp_serial_slave_link", "esp_timer", "esp_websocket_client", "esp_wifi", "espcoredump", "esptool_py", "expat", "fatfs", "files", "freemodbus", "freertos", "heap", "https_server", "idf_test", "jsmn", "json", "libsodium", "log", "lv_examples", "lvgl", "lvgl_esp32_drivers", "lvgl_tft", "lvgl_touch", "lwip", "main", "mbedtls", "mdns", "mqtt", "newlib", "nghttp", "nvs_flash", "openssl", "partition_table", "perfmon", "protobuf-c", "protocomm", "pthread", "sdmmc", "soc", "spi_flash", "spiffs", "tcp_transport", "tcpip_adapter", "ulp", "unity", "vfs", "wear_levelling", "wifi", "wifi_provisioning", "wpa_supplicant", "xtensa", "" ], + "build_component_paths" : [ "/home/mithras/esp/esp-idf/components/app_trace", "/home/mithras/esp/esp-idf/components/app_update", "/home/mithras/esp/esp-idf/components/asio", "/home/mithras/esp/esp-idf/components/bootloader", "/home/mithras/esp/esp-idf/components/bootloader_support", "/home/mithras/esp/esp-idf/components/bt", "/home/mithras/Documents/bakalarka/components/ca", "/home/mithras/esp/esp-idf/components/cbor", "/home/mithras/Documents/bakalarka/components/cmd_nvs", "/home/mithras/Documents/bakalarka/components/cmd_system", "/home/mithras/esp/esp-idf/components/coap", "/home/mithras/esp/esp-idf/components/console", "/home/mithras/esp/esp-idf/components/cxx", "/home/mithras/esp/esp-idf/components/driver", "/home/mithras/esp/esp-idf/components/efuse", "/home/mithras/esp/esp-idf/components/esp-tls", "/home/mithras/esp/esp-idf/components/esp32", "/home/mithras/esp/esp-idf/components/esp_adc_cal", "/home/mithras/esp/esp-idf/components/esp_common", "/home/mithras/esp/esp-idf/components/esp_eth", "/home/mithras/esp/esp-idf/components/esp_event", "/home/mithras/esp/esp-idf/components/esp_gdbstub", "/home/mithras/esp/esp-idf/components/esp_http_client", "/home/mithras/esp/esp-idf/components/esp_http_server", "/home/mithras/esp/esp-idf/components/esp_https_ota", "/home/mithras/esp/esp-idf/components/esp_https_server", "/home/mithras/esp/esp-idf/components/esp_local_ctrl", "/home/mithras/esp/esp-idf/components/esp_netif", "/home/mithras/esp/esp-idf/components/esp_ringbuf", "/home/mithras/esp/esp-idf/components/esp_rom", "/home/mithras/esp/esp-idf/components/esp_serial_slave_link", "/home/mithras/esp/esp-idf/components/esp_timer", "/home/mithras/esp/esp-idf/components/esp_websocket_client", "/home/mithras/esp/esp-idf/components/esp_wifi", "/home/mithras/esp/esp-idf/components/espcoredump", "/home/mithras/esp/esp-idf/components/esptool_py", "/home/mithras/esp/esp-idf/components/expat", "/home/mithras/esp/esp-idf/components/fatfs", "/home/mithras/Documents/bakalarka/components/files", "/home/mithras/esp/esp-idf/components/freemodbus", "/home/mithras/esp/esp-idf/components/freertos", "/home/mithras/esp/esp-idf/components/heap", "/home/mithras/Documents/bakalarka/components/https_server", "/home/mithras/esp/esp-idf/components/idf_test", "/home/mithras/esp/esp-idf/components/jsmn", "/home/mithras/esp/esp-idf/components/json", "/home/mithras/esp/esp-idf/components/libsodium", "/home/mithras/esp/esp-idf/components/log", "/home/mithras/Documents/bakalarka/components/lv_examples", "/home/mithras/Documents/bakalarka/components/lvgl", "/home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers", "/home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_tft", "/home/mithras/Documents/bakalarka/components/lvgl_esp32_drivers/lvgl_touch", "/home/mithras/esp/esp-idf/components/lwip", "/home/mithras/Documents/bakalarka/main", "/home/mithras/esp/esp-idf/components/mbedtls", "/home/mithras/esp/esp-idf/components/mdns", "/home/mithras/esp/esp-idf/components/mqtt", "/home/mithras/esp/esp-idf/components/newlib", "/home/mithras/esp/esp-idf/components/nghttp", "/home/mithras/esp/esp-idf/components/nvs_flash", "/home/mithras/esp/esp-idf/components/openssl", "/home/mithras/esp/esp-idf/components/partition_table", "/home/mithras/esp/esp-idf/components/perfmon", "/home/mithras/esp/esp-idf/components/protobuf-c", "/home/mithras/esp/esp-idf/components/protocomm", "/home/mithras/esp/esp-idf/components/pthread", "/home/mithras/esp/esp-idf/components/sdmmc", "/home/mithras/esp/esp-idf/components/soc", "/home/mithras/esp/esp-idf/components/spi_flash", "/home/mithras/esp/esp-idf/components/spiffs", "/home/mithras/esp/esp-idf/components/tcp_transport", "/home/mithras/esp/esp-idf/components/tcpip_adapter", "/home/mithras/esp/esp-idf/components/ulp", "/home/mithras/esp/esp-idf/components/unity", "/home/mithras/esp/esp-idf/components/vfs", "/home/mithras/esp/esp-idf/components/wear_levelling", "/home/mithras/Documents/bakalarka/components/wifi", "/home/mithras/esp/esp-idf/components/wifi_provisioning", "/home/mithras/esp/esp-idf/components/wpa_supplicant", "/home/mithras/esp/esp-idf/components/xtensa", "" ] +} diff --git a/build/rules.ninja b/build/rules.ninja new file mode 100644 index 0000000..ff06c65 --- /dev/null +++ b/build/rules.ninja @@ -0,0 +1,1596 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.10 + +# This file contains all the rules used to get the outputs files +# built from the input files. +# It is included in the main 'build.ninja'. + +# ============================================================================= +# Project: bakalarka +# Configuration: +# ============================================================================= +# ============================================================================= + +############################################# +# Rule for running custom commands. + +rule CUSTOM_COMMAND + command = $COMMAND + description = $DESC + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__bakalarka.2eelf + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX executable. + +rule CXX_EXECUTABLE_LINKER__bakalarka.2eelf + command = $PRE_LINK && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++ $FLAGS $LINK_FLAGS $in -o $TARGET_FILE $LINK_PATH $LINK_LIBRARIES && $POST_BUILD + description = Linking CXX executable $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling ASM files. + +rule ASM_COMPILER____idf_xtensa + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building ASM object $out + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_xtensa + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_xtensa + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_soc + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_soc + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__soc_esp32 + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER__soc_esp32 + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_eth + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_esp_eth + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_tcpip_adapter + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_tcpip_adapter + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_netif + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_esp_netif + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_event + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_esp_event + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__mbedx509 + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER__mbedx509 + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__mbedcrypto + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER__mbedcrypto + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER__mbedtls + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER__mbedtls + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_wpa_supplicant + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_wpa_supplicant + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_efuse + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_efuse + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_bootloader_support + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_bootloader_support + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_app_update + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_app_update + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_spi_flash + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_spi_flash + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER____idf_nvs_flash + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_nvs_flash + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_wifi + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_esp_wifi + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_lwip + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_lwip + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_log + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_log + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_heap + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_heap + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_ringbuf + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_esp_ringbuf + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_driver + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_driver + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_pthread + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_pthread + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_espcoredump + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_espcoredump + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_perfmon + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_perfmon + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling ASM files. + +rule ASM_COMPILER____idf_esp32 + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building ASM object $out + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp32 + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_esp32 + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_common + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_esp_common + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_timer + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_esp_timer + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling ASM files. + +rule ASM_COMPILER____idf_freertos + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building ASM object $out + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_freertos + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_freertos + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_vfs + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_vfs + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_newlib + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_newlib + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER____idf_cxx + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_cxx + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_app_trace + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_app_trace + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER____idf_asio + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_asio + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_cbor + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_cbor + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_coap + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_coap + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_console + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_console + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_nghttp + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_nghttp + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp-tls + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_esp-tls + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_adc_cal + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_esp_adc_cal + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_gdbstub + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_esp_gdbstub + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_tcp_transport + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_tcp_transport + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_http_client + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_esp_http_client + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_http_server + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_esp_http_server + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_https_ota + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_esp_https_ota + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_https_server + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_esp_https_server + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_protobuf-c + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_protobuf-c + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_protocomm + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_protocomm + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_mdns + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_mdns + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_local_ctrl + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_esp_local_ctrl + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_sdmmc + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_sdmmc + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_serial_slave_link + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_esp_serial_slave_link + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_esp_websocket_client + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_esp_websocket_client + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_expat + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_expat + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER____idf_wear_levelling + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_wear_levelling + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_fatfs + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_fatfs + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_freemodbus + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_freemodbus + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_jsmn + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_jsmn + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_json + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_json + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling ASM files. + +rule ASM_COMPILER____idf_libsodium + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building ASM object $out + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_libsodium + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_libsodium + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_mqtt + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_mqtt + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_openssl + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_openssl + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_spiffs + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_spiffs + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_ulp + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_ulp + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_unity + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_unity + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_wifi_provisioning + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_wifi_provisioning + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_main + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_main + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_ca + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_ca + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_cmd_nvs + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_cmd_nvs + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_cmd_system + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_cmd_system + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_files + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_files + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_wifi + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_wifi + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling ASM files. + +rule ASM_COMPILER____idf_https_server + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building ASM object $out + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_https_server + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_https_server + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_lvgl + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_lvgl + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_lv_examples + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_lv_examples + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_lvgl_esp32_drivers + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_lvgl_esp32_drivers + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_lvgl_tft + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_lvgl_tft + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling C files. + +rule C_COMPILER____idf_lvgl_touch + depfile = $DEP_FILE + deps = gcc + command = /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building C object $out + + +############################################# +# Rule for linking CXX static library. + +rule CXX_STATIC_LIBRARY_LINKER____idf_lvgl_touch + command = $PRE_LINK && /usr/bin/cmake -E remove $TARGET_FILE && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar qc $TARGET_FILE $LINK_FLAGS $in && /home/mithras/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib $TARGET_FILE && $POST_BUILD + description = Linking CXX static library $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for re-running cmake. + +rule RERUN_CMAKE + command = /usr/bin/cmake -H/home/mithras/Documents/bakalarka -B/home/mithras/Documents/bakalarka/build + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = /usr/bin/ninja -t clean + description = Cleaning all built files... + + +############################################# +# Rule for printing all primary targets available. + +rule HELP + command = /usr/bin/ninja -t targets + description = All primary targets available: + diff --git a/build_properties.temp.cmake b/build_properties.temp.cmake new file mode 100644 index 0000000..dff33fd --- /dev/null +++ b/build_properties.temp.cmake @@ -0,0 +1,26 @@ + +set(PYTHON python) +set(__BUILD_PROPERTIES PYTHON;__BUILD_PROPERTIES;IDF_PATH;__PREFIX;__CHECK_PYTHON;COMPILE_DEFINITIONS;COMPILE_OPTIONS;C_COMPILE_OPTIONS;CXX_COMPILE_OPTIONS;__COMPONENT_TARGETS;__COMPONENT_REQUIRES_COMMON;IDF_VER;__ROOT_KCONFIG;__ROOT_SDKCONFIG_RENAME;__OUTPUT_SDKCONFIG;EXTRA_CMAKE_ARGS;IDF_COMPONENT_MANAGER;BOOTLOADER_BUILD;IDF_TARGET;PROJECT_DIR;PROJECT_NAME;PROJECT_VER;BUILD_DIR;SDKCONFIG;SDKCONFIG_DEFAULTS) +set(IDF_PATH /home/mithras/esp/esp-idf) +set(__PREFIX idf) +set(__CHECK_PYTHON 1) +set(COMPILE_DEFINITIONS -D_GNU_SOURCE;-DIDF_VER="v4.2-dev-414-g132cc67c0-dirty") +set(COMPILE_OPTIONS -ffunction-sections;-fdata-sections;-fstrict-volatile-bitfields;-Wall;-Werror=all;-Wno-error=unused-function;-Wno-error=unused-but-set-variable;-Wno-error=unused-variable;-Wno-error=deprecated-declarations;-Wextra;-Wno-unused-parameter;-Wno-sign-compare;-ggdb) +set(C_COMPILE_OPTIONS -std=gnu99;-Wno-old-style-declaration) +set(CXX_COMPILE_OPTIONS -std=gnu++11) +set(__COMPONENT_TARGETS ___idf_app_trace;___idf_app_update;___idf_asio;___idf_bootloader;___idf_bootloader_support;___idf_bt;___idf_cbor;___idf_coap;___idf_console;___idf_cxx;___idf_driver;___idf_efuse;___idf_esp-tls;___idf_esp32;___idf_esp32s2;___idf_esp_adc_cal;___idf_esp_common;___idf_esp_eth;___idf_esp_event;___idf_esp_gdbstub;___idf_esp_http_client;___idf_esp_http_server;___idf_esp_https_ota;___idf_esp_https_server;___idf_esp_local_ctrl;___idf_esp_netif;___idf_esp_ringbuf;___idf_esp_rom;___idf_esp_serial_slave_link;___idf_esp_timer;___idf_esp_websocket_client;___idf_esp_wifi;___idf_espcoredump;___idf_esptool_py;___idf_expat;___idf_fatfs;___idf_freemodbus;___idf_freertos;___idf_heap;___idf_idf_test;___idf_jsmn;___idf_json;___idf_libsodium;___idf_log;___idf_lwip;___idf_mbedtls;___idf_mdns;___idf_mqtt;___idf_newlib;___idf_nghttp;___idf_nvs_flash;___idf_openssl;___idf_partition_table;___idf_perfmon;___idf_protobuf-c;___idf_protocomm;___idf_pthread;___idf_sdmmc;___idf_soc;___idf_spi_flash;___idf_spiffs;___idf_tcp_transport;___idf_tcpip_adapter;___idf_ulp;___idf_unity;___idf_vfs;___idf_wear_levelling;___idf_wifi_provisioning;___idf_wpa_supplicant;___idf_xtensa;___idf_main;___idf_ca;___idf_cmd_nvs;___idf_cmd_system;___idf_files;___idf_https_server;___idf_lv_port_esp32;___idf_wifi;___idf_lv_examples;___idf_lvgl;___idf_lvgl_tft;___idf_lvgl_touch;___idf_lvgl_esp32_drivers) +set(__COMPONENT_REQUIRES_COMMON cxx;newlib;freertos;heap;log;lwip;soc;esp_rom;esp_common;xtensa;esp32) +set(IDF_VER v4.2-dev-414-g132cc67c0-dirty) +set(__ROOT_KCONFIG /home/mithras/esp/esp-idf/Kconfig) +set(__ROOT_SDKCONFIG_RENAME /home/mithras/esp/esp-idf/sdkconfig.rename) +set(__OUTPUT_SDKCONFIG 1) +set(EXTRA_CMAKE_ARGS ) +set(IDF_COMPONENT_MANAGER ) +set(BOOTLOADER_BUILD ) +set(IDF_TARGET esp32) +set(PROJECT_DIR /home/mithras/Documents/console) +set(PROJECT_NAME console) +set(PROJECT_VER 0.1.0.1) +set(BUILD_DIR /home/mithras/Documents/console) +set(SDKCONFIG /home/mithras/Documents/console/sdkconfig) +set(SDKCONFIG_DEFAULTS /home/mithras/Documents/console/sdkconfig.defaults) \ No newline at end of file diff --git a/component_properties.temp.cmake b/component_properties.temp.cmake new file mode 100644 index 0000000..2ca032e --- /dev/null +++ b/component_properties.temp.cmake @@ -0,0 +1,748 @@ + +set(__component____idf_app_trace_COMPONENT_LIB __idf_app_trace) +set(__component____idf_app_trace___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_app_trace_COMPONENT_NAME app_trace) +set(__component____idf_app_trace_COMPONENT_DIR /home/mithras/esp/esp-idf/components/app_trace) +set(__component____idf_app_trace_COMPONENT_ALIAS idf::app_trace) +set(__component____idf_app_trace___PREFIX idf) +set(__component____idf_app_trace_KCONFIG /home/mithras/esp/esp-idf/components/app_trace/Kconfig) +set(__component____idf_app_trace_KCONFIG_PROJBUILD ) +set(__component____idf_app_trace_SDKCONFIG_RENAME /home/mithras/esp/esp-idf/components/app_trace/sdkconfig.rename) +set(__component____idf_app_update_COMPONENT_LIB __idf_app_update) +set(__component____idf_app_update___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_app_update_COMPONENT_NAME app_update) +set(__component____idf_app_update_COMPONENT_DIR /home/mithras/esp/esp-idf/components/app_update) +set(__component____idf_app_update_COMPONENT_ALIAS idf::app_update) +set(__component____idf_app_update___PREFIX idf) +set(__component____idf_app_update_KCONFIG ) +set(__component____idf_app_update_KCONFIG_PROJBUILD /home/mithras/esp/esp-idf/components/app_update/Kconfig.projbuild) +set(__component____idf_app_update_SDKCONFIG_RENAME ) +set(__component____idf_asio_COMPONENT_LIB __idf_asio) +set(__component____idf_asio___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_asio_COMPONENT_NAME asio) +set(__component____idf_asio_COMPONENT_DIR /home/mithras/esp/esp-idf/components/asio) +set(__component____idf_asio_COMPONENT_ALIAS idf::asio) +set(__component____idf_asio___PREFIX idf) +set(__component____idf_asio_KCONFIG ) +set(__component____idf_asio_KCONFIG_PROJBUILD ) +set(__component____idf_asio_SDKCONFIG_RENAME ) +set(__component____idf_bootloader_COMPONENT_LIB __idf_bootloader) +set(__component____idf_bootloader___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_bootloader_COMPONENT_NAME bootloader) +set(__component____idf_bootloader_COMPONENT_DIR /home/mithras/esp/esp-idf/components/bootloader) +set(__component____idf_bootloader_COMPONENT_ALIAS idf::bootloader) +set(__component____idf_bootloader___PREFIX idf) +set(__component____idf_bootloader_KCONFIG ) +set(__component____idf_bootloader_KCONFIG_PROJBUILD /home/mithras/esp/esp-idf/components/bootloader/Kconfig.projbuild) +set(__component____idf_bootloader_SDKCONFIG_RENAME /home/mithras/esp/esp-idf/components/bootloader/sdkconfig.rename) +set(__component____idf_bootloader_support_COMPONENT_LIB __idf_bootloader_support) +set(__component____idf_bootloader_support___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_bootloader_support_COMPONENT_NAME bootloader_support) +set(__component____idf_bootloader_support_COMPONENT_DIR /home/mithras/esp/esp-idf/components/bootloader_support) +set(__component____idf_bootloader_support_COMPONENT_ALIAS idf::bootloader_support) +set(__component____idf_bootloader_support___PREFIX idf) +set(__component____idf_bootloader_support_KCONFIG ) +set(__component____idf_bootloader_support_KCONFIG_PROJBUILD ) +set(__component____idf_bootloader_support_SDKCONFIG_RENAME ) +set(__component____idf_bt_COMPONENT_LIB __idf_bt) +set(__component____idf_bt___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_bt_COMPONENT_NAME bt) +set(__component____idf_bt_COMPONENT_DIR /home/mithras/esp/esp-idf/components/bt) +set(__component____idf_bt_COMPONENT_ALIAS idf::bt) +set(__component____idf_bt___PREFIX idf) +set(__component____idf_bt_KCONFIG /home/mithras/esp/esp-idf/components/bt/Kconfig) +set(__component____idf_bt_KCONFIG_PROJBUILD ) +set(__component____idf_bt_SDKCONFIG_RENAME /home/mithras/esp/esp-idf/components/bt/sdkconfig.rename) +set(__component____idf_cbor_COMPONENT_LIB __idf_cbor) +set(__component____idf_cbor___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_cbor_COMPONENT_NAME cbor) +set(__component____idf_cbor_COMPONENT_DIR /home/mithras/esp/esp-idf/components/cbor) +set(__component____idf_cbor_COMPONENT_ALIAS idf::cbor) +set(__component____idf_cbor___PREFIX idf) +set(__component____idf_cbor_KCONFIG ) +set(__component____idf_cbor_KCONFIG_PROJBUILD ) +set(__component____idf_cbor_SDKCONFIG_RENAME ) +set(__component____idf_coap_COMPONENT_LIB __idf_coap) +set(__component____idf_coap___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_coap_COMPONENT_NAME coap) +set(__component____idf_coap_COMPONENT_DIR /home/mithras/esp/esp-idf/components/coap) +set(__component____idf_coap_COMPONENT_ALIAS idf::coap) +set(__component____idf_coap___PREFIX idf) +set(__component____idf_coap_KCONFIG /home/mithras/esp/esp-idf/components/coap/Kconfig) +set(__component____idf_coap_KCONFIG_PROJBUILD ) +set(__component____idf_coap_SDKCONFIG_RENAME ) +set(__component____idf_console_COMPONENT_LIB __idf_console) +set(__component____idf_console___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_console_COMPONENT_NAME console) +set(__component____idf_console_COMPONENT_DIR /home/mithras/esp/esp-idf/components/console) +set(__component____idf_console_COMPONENT_ALIAS idf::console) +set(__component____idf_console___PREFIX idf) +set(__component____idf_console_KCONFIG ) +set(__component____idf_console_KCONFIG_PROJBUILD ) +set(__component____idf_console_SDKCONFIG_RENAME ) +set(__component____idf_cxx_COMPONENT_LIB __idf_cxx) +set(__component____idf_cxx___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_cxx_COMPONENT_NAME cxx) +set(__component____idf_cxx_COMPONENT_DIR /home/mithras/esp/esp-idf/components/cxx) +set(__component____idf_cxx_COMPONENT_ALIAS idf::cxx) +set(__component____idf_cxx___PREFIX idf) +set(__component____idf_cxx_KCONFIG ) +set(__component____idf_cxx_KCONFIG_PROJBUILD ) +set(__component____idf_cxx_SDKCONFIG_RENAME ) +set(__component____idf_driver_COMPONENT_LIB __idf_driver) +set(__component____idf_driver___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_driver_COMPONENT_NAME driver) +set(__component____idf_driver_COMPONENT_DIR /home/mithras/esp/esp-idf/components/driver) +set(__component____idf_driver_COMPONENT_ALIAS idf::driver) +set(__component____idf_driver___PREFIX idf) +set(__component____idf_driver_KCONFIG /home/mithras/esp/esp-idf/components/driver/Kconfig) +set(__component____idf_driver_KCONFIG_PROJBUILD ) +set(__component____idf_driver_SDKCONFIG_RENAME /home/mithras/esp/esp-idf/components/driver/sdkconfig.rename) +set(__component____idf_efuse_COMPONENT_LIB __idf_efuse) +set(__component____idf_efuse___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_efuse_COMPONENT_NAME efuse) +set(__component____idf_efuse_COMPONENT_DIR /home/mithras/esp/esp-idf/components/efuse) +set(__component____idf_efuse_COMPONENT_ALIAS idf::efuse) +set(__component____idf_efuse___PREFIX idf) +set(__component____idf_efuse_KCONFIG /home/mithras/esp/esp-idf/components/efuse/Kconfig) +set(__component____idf_efuse_KCONFIG_PROJBUILD ) +set(__component____idf_efuse_SDKCONFIG_RENAME ) +set(__component____idf_esp-tls_COMPONENT_LIB __idf_esp-tls) +set(__component____idf_esp-tls___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_esp-tls_COMPONENT_NAME esp-tls) +set(__component____idf_esp-tls_COMPONENT_DIR /home/mithras/esp/esp-idf/components/esp-tls) +set(__component____idf_esp-tls_COMPONENT_ALIAS idf::esp-tls) +set(__component____idf_esp-tls___PREFIX idf) +set(__component____idf_esp-tls_KCONFIG /home/mithras/esp/esp-idf/components/esp-tls/Kconfig) +set(__component____idf_esp-tls_KCONFIG_PROJBUILD ) +set(__component____idf_esp-tls_SDKCONFIG_RENAME ) +set(__component____idf_esp32_COMPONENT_LIB __idf_esp32) +set(__component____idf_esp32___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_esp32_COMPONENT_NAME esp32) +set(__component____idf_esp32_COMPONENT_DIR /home/mithras/esp/esp-idf/components/esp32) +set(__component____idf_esp32_COMPONENT_ALIAS idf::esp32) +set(__component____idf_esp32___PREFIX idf) +set(__component____idf_esp32_KCONFIG /home/mithras/esp/esp-idf/components/esp32/Kconfig) +set(__component____idf_esp32_KCONFIG_PROJBUILD ) +set(__component____idf_esp32_SDKCONFIG_RENAME /home/mithras/esp/esp-idf/components/esp32/sdkconfig.rename) +set(__component____idf_esp32s2_COMPONENT_LIB __idf_esp32s2) +set(__component____idf_esp32s2___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_esp32s2_COMPONENT_NAME esp32s2) +set(__component____idf_esp32s2_COMPONENT_DIR /home/mithras/esp/esp-idf/components/esp32s2) +set(__component____idf_esp32s2_COMPONENT_ALIAS idf::esp32s2) +set(__component____idf_esp32s2___PREFIX idf) +set(__component____idf_esp32s2_KCONFIG /home/mithras/esp/esp-idf/components/esp32s2/Kconfig) +set(__component____idf_esp32s2_KCONFIG_PROJBUILD ) +set(__component____idf_esp32s2_SDKCONFIG_RENAME ) +set(__component____idf_esp_adc_cal_COMPONENT_LIB __idf_esp_adc_cal) +set(__component____idf_esp_adc_cal___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_esp_adc_cal_COMPONENT_NAME esp_adc_cal) +set(__component____idf_esp_adc_cal_COMPONENT_DIR /home/mithras/esp/esp-idf/components/esp_adc_cal) +set(__component____idf_esp_adc_cal_COMPONENT_ALIAS idf::esp_adc_cal) +set(__component____idf_esp_adc_cal___PREFIX idf) +set(__component____idf_esp_adc_cal_KCONFIG /home/mithras/esp/esp-idf/components/esp_adc_cal/Kconfig) +set(__component____idf_esp_adc_cal_KCONFIG_PROJBUILD ) +set(__component____idf_esp_adc_cal_SDKCONFIG_RENAME ) +set(__component____idf_esp_common_COMPONENT_LIB __idf_esp_common) +set(__component____idf_esp_common___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_esp_common_COMPONENT_NAME esp_common) +set(__component____idf_esp_common_COMPONENT_DIR /home/mithras/esp/esp-idf/components/esp_common) +set(__component____idf_esp_common_COMPONENT_ALIAS idf::esp_common) +set(__component____idf_esp_common___PREFIX idf) +set(__component____idf_esp_common_KCONFIG /home/mithras/esp/esp-idf/components/esp_common/Kconfig) +set(__component____idf_esp_common_KCONFIG_PROJBUILD ) +set(__component____idf_esp_common_SDKCONFIG_RENAME /home/mithras/esp/esp-idf/components/esp_common/sdkconfig.rename) +set(__component____idf_esp_eth_COMPONENT_LIB __idf_esp_eth) +set(__component____idf_esp_eth___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_esp_eth_COMPONENT_NAME esp_eth) +set(__component____idf_esp_eth_COMPONENT_DIR /home/mithras/esp/esp-idf/components/esp_eth) +set(__component____idf_esp_eth_COMPONENT_ALIAS idf::esp_eth) +set(__component____idf_esp_eth___PREFIX idf) +set(__component____idf_esp_eth_KCONFIG /home/mithras/esp/esp-idf/components/esp_eth/Kconfig) +set(__component____idf_esp_eth_KCONFIG_PROJBUILD ) +set(__component____idf_esp_eth_SDKCONFIG_RENAME ) +set(__component____idf_esp_event_COMPONENT_LIB __idf_esp_event) +set(__component____idf_esp_event___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_esp_event_COMPONENT_NAME esp_event) +set(__component____idf_esp_event_COMPONENT_DIR /home/mithras/esp/esp-idf/components/esp_event) +set(__component____idf_esp_event_COMPONENT_ALIAS idf::esp_event) +set(__component____idf_esp_event___PREFIX idf) +set(__component____idf_esp_event_KCONFIG /home/mithras/esp/esp-idf/components/esp_event/Kconfig) +set(__component____idf_esp_event_KCONFIG_PROJBUILD ) +set(__component____idf_esp_event_SDKCONFIG_RENAME /home/mithras/esp/esp-idf/components/esp_event/sdkconfig.rename) +set(__component____idf_esp_gdbstub_COMPONENT_LIB __idf_esp_gdbstub) +set(__component____idf_esp_gdbstub___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_esp_gdbstub_COMPONENT_NAME esp_gdbstub) +set(__component____idf_esp_gdbstub_COMPONENT_DIR /home/mithras/esp/esp-idf/components/esp_gdbstub) +set(__component____idf_esp_gdbstub_COMPONENT_ALIAS idf::esp_gdbstub) +set(__component____idf_esp_gdbstub___PREFIX idf) +set(__component____idf_esp_gdbstub_KCONFIG /home/mithras/esp/esp-idf/components/esp_gdbstub/Kconfig) +set(__component____idf_esp_gdbstub_KCONFIG_PROJBUILD ) +set(__component____idf_esp_gdbstub_SDKCONFIG_RENAME ) +set(__component____idf_esp_http_client_COMPONENT_LIB __idf_esp_http_client) +set(__component____idf_esp_http_client___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_esp_http_client_COMPONENT_NAME esp_http_client) +set(__component____idf_esp_http_client_COMPONENT_DIR /home/mithras/esp/esp-idf/components/esp_http_client) +set(__component____idf_esp_http_client_COMPONENT_ALIAS idf::esp_http_client) +set(__component____idf_esp_http_client___PREFIX idf) +set(__component____idf_esp_http_client_KCONFIG /home/mithras/esp/esp-idf/components/esp_http_client/Kconfig) +set(__component____idf_esp_http_client_KCONFIG_PROJBUILD ) +set(__component____idf_esp_http_client_SDKCONFIG_RENAME ) +set(__component____idf_esp_http_server_COMPONENT_LIB __idf_esp_http_server) +set(__component____idf_esp_http_server___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_esp_http_server_COMPONENT_NAME esp_http_server) +set(__component____idf_esp_http_server_COMPONENT_DIR /home/mithras/esp/esp-idf/components/esp_http_server) +set(__component____idf_esp_http_server_COMPONENT_ALIAS idf::esp_http_server) +set(__component____idf_esp_http_server___PREFIX idf) +set(__component____idf_esp_http_server_KCONFIG /home/mithras/esp/esp-idf/components/esp_http_server/Kconfig) +set(__component____idf_esp_http_server_KCONFIG_PROJBUILD ) +set(__component____idf_esp_http_server_SDKCONFIG_RENAME ) +set(__component____idf_esp_https_ota_COMPONENT_LIB __idf_esp_https_ota) +set(__component____idf_esp_https_ota___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_esp_https_ota_COMPONENT_NAME esp_https_ota) +set(__component____idf_esp_https_ota_COMPONENT_DIR /home/mithras/esp/esp-idf/components/esp_https_ota) +set(__component____idf_esp_https_ota_COMPONENT_ALIAS idf::esp_https_ota) +set(__component____idf_esp_https_ota___PREFIX idf) +set(__component____idf_esp_https_ota_KCONFIG /home/mithras/esp/esp-idf/components/esp_https_ota/Kconfig) +set(__component____idf_esp_https_ota_KCONFIG_PROJBUILD ) +set(__component____idf_esp_https_ota_SDKCONFIG_RENAME ) +set(__component____idf_esp_https_server_COMPONENT_LIB __idf_esp_https_server) +set(__component____idf_esp_https_server___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_esp_https_server_COMPONENT_NAME esp_https_server) +set(__component____idf_esp_https_server_COMPONENT_DIR /home/mithras/esp/esp-idf/components/esp_https_server) +set(__component____idf_esp_https_server_COMPONENT_ALIAS idf::esp_https_server) +set(__component____idf_esp_https_server___PREFIX idf) +set(__component____idf_esp_https_server_KCONFIG /home/mithras/esp/esp-idf/components/esp_https_server/Kconfig) +set(__component____idf_esp_https_server_KCONFIG_PROJBUILD ) +set(__component____idf_esp_https_server_SDKCONFIG_RENAME ) +set(__component____idf_esp_local_ctrl_COMPONENT_LIB __idf_esp_local_ctrl) +set(__component____idf_esp_local_ctrl___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_esp_local_ctrl_COMPONENT_NAME esp_local_ctrl) +set(__component____idf_esp_local_ctrl_COMPONENT_DIR /home/mithras/esp/esp-idf/components/esp_local_ctrl) +set(__component____idf_esp_local_ctrl_COMPONENT_ALIAS idf::esp_local_ctrl) +set(__component____idf_esp_local_ctrl___PREFIX idf) +set(__component____idf_esp_local_ctrl_KCONFIG ) +set(__component____idf_esp_local_ctrl_KCONFIG_PROJBUILD ) +set(__component____idf_esp_local_ctrl_SDKCONFIG_RENAME ) +set(__component____idf_esp_netif_COMPONENT_LIB __idf_esp_netif) +set(__component____idf_esp_netif___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_esp_netif_COMPONENT_NAME esp_netif) +set(__component____idf_esp_netif_COMPONENT_DIR /home/mithras/esp/esp-idf/components/esp_netif) +set(__component____idf_esp_netif_COMPONENT_ALIAS idf::esp_netif) +set(__component____idf_esp_netif___PREFIX idf) +set(__component____idf_esp_netif_KCONFIG /home/mithras/esp/esp-idf/components/esp_netif/Kconfig) +set(__component____idf_esp_netif_KCONFIG_PROJBUILD ) +set(__component____idf_esp_netif_SDKCONFIG_RENAME ) +set(__component____idf_esp_ringbuf_COMPONENT_LIB __idf_esp_ringbuf) +set(__component____idf_esp_ringbuf___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_esp_ringbuf_COMPONENT_NAME esp_ringbuf) +set(__component____idf_esp_ringbuf_COMPONENT_DIR /home/mithras/esp/esp-idf/components/esp_ringbuf) +set(__component____idf_esp_ringbuf_COMPONENT_ALIAS idf::esp_ringbuf) +set(__component____idf_esp_ringbuf___PREFIX idf) +set(__component____idf_esp_ringbuf_KCONFIG ) +set(__component____idf_esp_ringbuf_KCONFIG_PROJBUILD ) +set(__component____idf_esp_ringbuf_SDKCONFIG_RENAME ) +set(__component____idf_esp_rom_COMPONENT_LIB __idf_esp_rom) +set(__component____idf_esp_rom___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_esp_rom_COMPONENT_NAME esp_rom) +set(__component____idf_esp_rom_COMPONENT_DIR /home/mithras/esp/esp-idf/components/esp_rom) +set(__component____idf_esp_rom_COMPONENT_ALIAS idf::esp_rom) +set(__component____idf_esp_rom___PREFIX idf) +set(__component____idf_esp_rom_KCONFIG ) +set(__component____idf_esp_rom_KCONFIG_PROJBUILD ) +set(__component____idf_esp_rom_SDKCONFIG_RENAME ) +set(__component____idf_esp_serial_slave_link_COMPONENT_LIB __idf_esp_serial_slave_link) +set(__component____idf_esp_serial_slave_link___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_esp_serial_slave_link_COMPONENT_NAME esp_serial_slave_link) +set(__component____idf_esp_serial_slave_link_COMPONENT_DIR /home/mithras/esp/esp-idf/components/esp_serial_slave_link) +set(__component____idf_esp_serial_slave_link_COMPONENT_ALIAS idf::esp_serial_slave_link) +set(__component____idf_esp_serial_slave_link___PREFIX idf) +set(__component____idf_esp_serial_slave_link_KCONFIG ) +set(__component____idf_esp_serial_slave_link_KCONFIG_PROJBUILD ) +set(__component____idf_esp_serial_slave_link_SDKCONFIG_RENAME ) +set(__component____idf_esp_timer_COMPONENT_LIB __idf_esp_timer) +set(__component____idf_esp_timer___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_esp_timer_COMPONENT_NAME esp_timer) +set(__component____idf_esp_timer_COMPONENT_DIR /home/mithras/esp/esp-idf/components/esp_timer) +set(__component____idf_esp_timer_COMPONENT_ALIAS idf::esp_timer) +set(__component____idf_esp_timer___PREFIX idf) +set(__component____idf_esp_timer_KCONFIG /home/mithras/esp/esp-idf/components/esp_timer/Kconfig) +set(__component____idf_esp_timer_KCONFIG_PROJBUILD ) +set(__component____idf_esp_timer_SDKCONFIG_RENAME /home/mithras/esp/esp-idf/components/esp_timer/sdkconfig.rename) +set(__component____idf_esp_websocket_client_COMPONENT_LIB __idf_esp_websocket_client) +set(__component____idf_esp_websocket_client___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_esp_websocket_client_COMPONENT_NAME esp_websocket_client) +set(__component____idf_esp_websocket_client_COMPONENT_DIR /home/mithras/esp/esp-idf/components/esp_websocket_client) +set(__component____idf_esp_websocket_client_COMPONENT_ALIAS idf::esp_websocket_client) +set(__component____idf_esp_websocket_client___PREFIX idf) +set(__component____idf_esp_websocket_client_KCONFIG ) +set(__component____idf_esp_websocket_client_KCONFIG_PROJBUILD ) +set(__component____idf_esp_websocket_client_SDKCONFIG_RENAME ) +set(__component____idf_esp_wifi_COMPONENT_LIB __idf_esp_wifi) +set(__component____idf_esp_wifi___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_esp_wifi_COMPONENT_NAME esp_wifi) +set(__component____idf_esp_wifi_COMPONENT_DIR /home/mithras/esp/esp-idf/components/esp_wifi) +set(__component____idf_esp_wifi_COMPONENT_ALIAS idf::esp_wifi) +set(__component____idf_esp_wifi___PREFIX idf) +set(__component____idf_esp_wifi_KCONFIG /home/mithras/esp/esp-idf/components/esp_wifi/Kconfig) +set(__component____idf_esp_wifi_KCONFIG_PROJBUILD ) +set(__component____idf_esp_wifi_SDKCONFIG_RENAME /home/mithras/esp/esp-idf/components/esp_wifi/sdkconfig.rename) +set(__component____idf_espcoredump_COMPONENT_LIB __idf_espcoredump) +set(__component____idf_espcoredump___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_espcoredump_COMPONENT_NAME espcoredump) +set(__component____idf_espcoredump_COMPONENT_DIR /home/mithras/esp/esp-idf/components/espcoredump) +set(__component____idf_espcoredump_COMPONENT_ALIAS idf::espcoredump) +set(__component____idf_espcoredump___PREFIX idf) +set(__component____idf_espcoredump_KCONFIG /home/mithras/esp/esp-idf/components/espcoredump/Kconfig) +set(__component____idf_espcoredump_KCONFIG_PROJBUILD ) +set(__component____idf_espcoredump_SDKCONFIG_RENAME ) +set(__component____idf_esptool_py_COMPONENT_LIB __idf_esptool_py) +set(__component____idf_esptool_py___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_esptool_py_COMPONENT_NAME esptool_py) +set(__component____idf_esptool_py_COMPONENT_DIR /home/mithras/esp/esp-idf/components/esptool_py) +set(__component____idf_esptool_py_COMPONENT_ALIAS idf::esptool_py) +set(__component____idf_esptool_py___PREFIX idf) +set(__component____idf_esptool_py_KCONFIG ) +set(__component____idf_esptool_py_KCONFIG_PROJBUILD /home/mithras/esp/esp-idf/components/esptool_py/Kconfig.projbuild) +set(__component____idf_esptool_py_SDKCONFIG_RENAME /home/mithras/esp/esp-idf/components/esptool_py/sdkconfig.rename) +set(__component____idf_expat_COMPONENT_LIB __idf_expat) +set(__component____idf_expat___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_expat_COMPONENT_NAME expat) +set(__component____idf_expat_COMPONENT_DIR /home/mithras/esp/esp-idf/components/expat) +set(__component____idf_expat_COMPONENT_ALIAS idf::expat) +set(__component____idf_expat___PREFIX idf) +set(__component____idf_expat_KCONFIG ) +set(__component____idf_expat_KCONFIG_PROJBUILD ) +set(__component____idf_expat_SDKCONFIG_RENAME ) +set(__component____idf_fatfs_COMPONENT_LIB __idf_fatfs) +set(__component____idf_fatfs___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_fatfs_COMPONENT_NAME fatfs) +set(__component____idf_fatfs_COMPONENT_DIR /home/mithras/esp/esp-idf/components/fatfs) +set(__component____idf_fatfs_COMPONENT_ALIAS idf::fatfs) +set(__component____idf_fatfs___PREFIX idf) +set(__component____idf_fatfs_KCONFIG /home/mithras/esp/esp-idf/components/fatfs/Kconfig) +set(__component____idf_fatfs_KCONFIG_PROJBUILD ) +set(__component____idf_fatfs_SDKCONFIG_RENAME ) +set(__component____idf_freemodbus_COMPONENT_LIB __idf_freemodbus) +set(__component____idf_freemodbus___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_freemodbus_COMPONENT_NAME freemodbus) +set(__component____idf_freemodbus_COMPONENT_DIR /home/mithras/esp/esp-idf/components/freemodbus) +set(__component____idf_freemodbus_COMPONENT_ALIAS idf::freemodbus) +set(__component____idf_freemodbus___PREFIX idf) +set(__component____idf_freemodbus_KCONFIG /home/mithras/esp/esp-idf/components/freemodbus/Kconfig) +set(__component____idf_freemodbus_KCONFIG_PROJBUILD ) +set(__component____idf_freemodbus_SDKCONFIG_RENAME /home/mithras/esp/esp-idf/components/freemodbus/sdkconfig.rename) +set(__component____idf_freertos_COMPONENT_LIB __idf_freertos) +set(__component____idf_freertos___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_freertos_COMPONENT_NAME freertos) +set(__component____idf_freertos_COMPONENT_DIR /home/mithras/esp/esp-idf/components/freertos) +set(__component____idf_freertos_COMPONENT_ALIAS idf::freertos) +set(__component____idf_freertos___PREFIX idf) +set(__component____idf_freertos_KCONFIG /home/mithras/esp/esp-idf/components/freertos/Kconfig) +set(__component____idf_freertos_KCONFIG_PROJBUILD ) +set(__component____idf_freertos_SDKCONFIG_RENAME /home/mithras/esp/esp-idf/components/freertos/sdkconfig.rename) +set(__component____idf_heap_COMPONENT_LIB __idf_heap) +set(__component____idf_heap___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_heap_COMPONENT_NAME heap) +set(__component____idf_heap_COMPONENT_DIR /home/mithras/esp/esp-idf/components/heap) +set(__component____idf_heap_COMPONENT_ALIAS idf::heap) +set(__component____idf_heap___PREFIX idf) +set(__component____idf_heap_KCONFIG /home/mithras/esp/esp-idf/components/heap/Kconfig) +set(__component____idf_heap_KCONFIG_PROJBUILD ) +set(__component____idf_heap_SDKCONFIG_RENAME ) +set(__component____idf_idf_test_COMPONENT_LIB __idf_idf_test) +set(__component____idf_idf_test___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_idf_test_COMPONENT_NAME idf_test) +set(__component____idf_idf_test_COMPONENT_DIR /home/mithras/esp/esp-idf/components/idf_test) +set(__component____idf_idf_test_COMPONENT_ALIAS idf::idf_test) +set(__component____idf_idf_test___PREFIX idf) +set(__component____idf_idf_test_KCONFIG ) +set(__component____idf_idf_test_KCONFIG_PROJBUILD ) +set(__component____idf_idf_test_SDKCONFIG_RENAME ) +set(__component____idf_jsmn_COMPONENT_LIB __idf_jsmn) +set(__component____idf_jsmn___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_jsmn_COMPONENT_NAME jsmn) +set(__component____idf_jsmn_COMPONENT_DIR /home/mithras/esp/esp-idf/components/jsmn) +set(__component____idf_jsmn_COMPONENT_ALIAS idf::jsmn) +set(__component____idf_jsmn___PREFIX idf) +set(__component____idf_jsmn_KCONFIG /home/mithras/esp/esp-idf/components/jsmn/Kconfig) +set(__component____idf_jsmn_KCONFIG_PROJBUILD ) +set(__component____idf_jsmn_SDKCONFIG_RENAME ) +set(__component____idf_json_COMPONENT_LIB __idf_json) +set(__component____idf_json___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_json_COMPONENT_NAME json) +set(__component____idf_json_COMPONENT_DIR /home/mithras/esp/esp-idf/components/json) +set(__component____idf_json_COMPONENT_ALIAS idf::json) +set(__component____idf_json___PREFIX idf) +set(__component____idf_json_KCONFIG ) +set(__component____idf_json_KCONFIG_PROJBUILD ) +set(__component____idf_json_SDKCONFIG_RENAME ) +set(__component____idf_libsodium_COMPONENT_LIB __idf_libsodium) +set(__component____idf_libsodium___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_libsodium_COMPONENT_NAME libsodium) +set(__component____idf_libsodium_COMPONENT_DIR /home/mithras/esp/esp-idf/components/libsodium) +set(__component____idf_libsodium_COMPONENT_ALIAS idf::libsodium) +set(__component____idf_libsodium___PREFIX idf) +set(__component____idf_libsodium_KCONFIG /home/mithras/esp/esp-idf/components/libsodium/Kconfig) +set(__component____idf_libsodium_KCONFIG_PROJBUILD ) +set(__component____idf_libsodium_SDKCONFIG_RENAME ) +set(__component____idf_log_COMPONENT_LIB __idf_log) +set(__component____idf_log___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_log_COMPONENT_NAME log) +set(__component____idf_log_COMPONENT_DIR /home/mithras/esp/esp-idf/components/log) +set(__component____idf_log_COMPONENT_ALIAS idf::log) +set(__component____idf_log___PREFIX idf) +set(__component____idf_log_KCONFIG /home/mithras/esp/esp-idf/components/log/Kconfig) +set(__component____idf_log_KCONFIG_PROJBUILD ) +set(__component____idf_log_SDKCONFIG_RENAME ) +set(__component____idf_lwip_COMPONENT_LIB __idf_lwip) +set(__component____idf_lwip___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_lwip_COMPONENT_NAME lwip) +set(__component____idf_lwip_COMPONENT_DIR /home/mithras/esp/esp-idf/components/lwip) +set(__component____idf_lwip_COMPONENT_ALIAS idf::lwip) +set(__component____idf_lwip___PREFIX idf) +set(__component____idf_lwip_KCONFIG /home/mithras/esp/esp-idf/components/lwip/Kconfig) +set(__component____idf_lwip_KCONFIG_PROJBUILD ) +set(__component____idf_lwip_SDKCONFIG_RENAME /home/mithras/esp/esp-idf/components/lwip/sdkconfig.rename) +set(__component____idf_mbedtls_COMPONENT_LIB __idf_mbedtls) +set(__component____idf_mbedtls___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_mbedtls_COMPONENT_NAME mbedtls) +set(__component____idf_mbedtls_COMPONENT_DIR /home/mithras/esp/esp-idf/components/mbedtls) +set(__component____idf_mbedtls_COMPONENT_ALIAS idf::mbedtls) +set(__component____idf_mbedtls___PREFIX idf) +set(__component____idf_mbedtls_KCONFIG /home/mithras/esp/esp-idf/components/mbedtls/Kconfig) +set(__component____idf_mbedtls_KCONFIG_PROJBUILD ) +set(__component____idf_mbedtls_SDKCONFIG_RENAME ) +set(__component____idf_mdns_COMPONENT_LIB __idf_mdns) +set(__component____idf_mdns___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_mdns_COMPONENT_NAME mdns) +set(__component____idf_mdns_COMPONENT_DIR /home/mithras/esp/esp-idf/components/mdns) +set(__component____idf_mdns_COMPONENT_ALIAS idf::mdns) +set(__component____idf_mdns___PREFIX idf) +set(__component____idf_mdns_KCONFIG /home/mithras/esp/esp-idf/components/mdns/Kconfig) +set(__component____idf_mdns_KCONFIG_PROJBUILD ) +set(__component____idf_mdns_SDKCONFIG_RENAME ) +set(__component____idf_mqtt_COMPONENT_LIB __idf_mqtt) +set(__component____idf_mqtt___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_mqtt_COMPONENT_NAME mqtt) +set(__component____idf_mqtt_COMPONENT_DIR /home/mithras/esp/esp-idf/components/mqtt) +set(__component____idf_mqtt_COMPONENT_ALIAS idf::mqtt) +set(__component____idf_mqtt___PREFIX idf) +set(__component____idf_mqtt_KCONFIG /home/mithras/esp/esp-idf/components/mqtt/Kconfig) +set(__component____idf_mqtt_KCONFIG_PROJBUILD ) +set(__component____idf_mqtt_SDKCONFIG_RENAME ) +set(__component____idf_newlib_COMPONENT_LIB __idf_newlib) +set(__component____idf_newlib___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_newlib_COMPONENT_NAME newlib) +set(__component____idf_newlib_COMPONENT_DIR /home/mithras/esp/esp-idf/components/newlib) +set(__component____idf_newlib_COMPONENT_ALIAS idf::newlib) +set(__component____idf_newlib___PREFIX idf) +set(__component____idf_newlib_KCONFIG /home/mithras/esp/esp-idf/components/newlib/Kconfig) +set(__component____idf_newlib_KCONFIG_PROJBUILD ) +set(__component____idf_newlib_SDKCONFIG_RENAME ) +set(__component____idf_nghttp_COMPONENT_LIB __idf_nghttp) +set(__component____idf_nghttp___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_nghttp_COMPONENT_NAME nghttp) +set(__component____idf_nghttp_COMPONENT_DIR /home/mithras/esp/esp-idf/components/nghttp) +set(__component____idf_nghttp_COMPONENT_ALIAS idf::nghttp) +set(__component____idf_nghttp___PREFIX idf) +set(__component____idf_nghttp_KCONFIG ) +set(__component____idf_nghttp_KCONFIG_PROJBUILD ) +set(__component____idf_nghttp_SDKCONFIG_RENAME ) +set(__component____idf_nvs_flash_COMPONENT_LIB __idf_nvs_flash) +set(__component____idf_nvs_flash___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_nvs_flash_COMPONENT_NAME nvs_flash) +set(__component____idf_nvs_flash_COMPONENT_DIR /home/mithras/esp/esp-idf/components/nvs_flash) +set(__component____idf_nvs_flash_COMPONENT_ALIAS idf::nvs_flash) +set(__component____idf_nvs_flash___PREFIX idf) +set(__component____idf_nvs_flash_KCONFIG /home/mithras/esp/esp-idf/components/nvs_flash/Kconfig) +set(__component____idf_nvs_flash_KCONFIG_PROJBUILD ) +set(__component____idf_nvs_flash_SDKCONFIG_RENAME ) +set(__component____idf_openssl_COMPONENT_LIB __idf_openssl) +set(__component____idf_openssl___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_openssl_COMPONENT_NAME openssl) +set(__component____idf_openssl_COMPONENT_DIR /home/mithras/esp/esp-idf/components/openssl) +set(__component____idf_openssl_COMPONENT_ALIAS idf::openssl) +set(__component____idf_openssl___PREFIX idf) +set(__component____idf_openssl_KCONFIG /home/mithras/esp/esp-idf/components/openssl/Kconfig) +set(__component____idf_openssl_KCONFIG_PROJBUILD ) +set(__component____idf_openssl_SDKCONFIG_RENAME ) +set(__component____idf_partition_table_COMPONENT_LIB __idf_partition_table) +set(__component____idf_partition_table___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_partition_table_COMPONENT_NAME partition_table) +set(__component____idf_partition_table_COMPONENT_DIR /home/mithras/esp/esp-idf/components/partition_table) +set(__component____idf_partition_table_COMPONENT_ALIAS idf::partition_table) +set(__component____idf_partition_table___PREFIX idf) +set(__component____idf_partition_table_KCONFIG ) +set(__component____idf_partition_table_KCONFIG_PROJBUILD /home/mithras/esp/esp-idf/components/partition_table/Kconfig.projbuild) +set(__component____idf_partition_table_SDKCONFIG_RENAME ) +set(__component____idf_perfmon_COMPONENT_LIB __idf_perfmon) +set(__component____idf_perfmon___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_perfmon_COMPONENT_NAME perfmon) +set(__component____idf_perfmon_COMPONENT_DIR /home/mithras/esp/esp-idf/components/perfmon) +set(__component____idf_perfmon_COMPONENT_ALIAS idf::perfmon) +set(__component____idf_perfmon___PREFIX idf) +set(__component____idf_perfmon_KCONFIG ) +set(__component____idf_perfmon_KCONFIG_PROJBUILD ) +set(__component____idf_perfmon_SDKCONFIG_RENAME ) +set(__component____idf_protobuf-c_COMPONENT_LIB __idf_protobuf-c) +set(__component____idf_protobuf-c___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_protobuf-c_COMPONENT_NAME protobuf-c) +set(__component____idf_protobuf-c_COMPONENT_DIR /home/mithras/esp/esp-idf/components/protobuf-c) +set(__component____idf_protobuf-c_COMPONENT_ALIAS idf::protobuf-c) +set(__component____idf_protobuf-c___PREFIX idf) +set(__component____idf_protobuf-c_KCONFIG ) +set(__component____idf_protobuf-c_KCONFIG_PROJBUILD ) +set(__component____idf_protobuf-c_SDKCONFIG_RENAME ) +set(__component____idf_protocomm_COMPONENT_LIB __idf_protocomm) +set(__component____idf_protocomm___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_protocomm_COMPONENT_NAME protocomm) +set(__component____idf_protocomm_COMPONENT_DIR /home/mithras/esp/esp-idf/components/protocomm) +set(__component____idf_protocomm_COMPONENT_ALIAS idf::protocomm) +set(__component____idf_protocomm___PREFIX idf) +set(__component____idf_protocomm_KCONFIG ) +set(__component____idf_protocomm_KCONFIG_PROJBUILD ) +set(__component____idf_protocomm_SDKCONFIG_RENAME ) +set(__component____idf_pthread_COMPONENT_LIB __idf_pthread) +set(__component____idf_pthread___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_pthread_COMPONENT_NAME pthread) +set(__component____idf_pthread_COMPONENT_DIR /home/mithras/esp/esp-idf/components/pthread) +set(__component____idf_pthread_COMPONENT_ALIAS idf::pthread) +set(__component____idf_pthread___PREFIX idf) +set(__component____idf_pthread_KCONFIG /home/mithras/esp/esp-idf/components/pthread/Kconfig) +set(__component____idf_pthread_KCONFIG_PROJBUILD ) +set(__component____idf_pthread_SDKCONFIG_RENAME /home/mithras/esp/esp-idf/components/pthread/sdkconfig.rename) +set(__component____idf_sdmmc_COMPONENT_LIB __idf_sdmmc) +set(__component____idf_sdmmc___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_sdmmc_COMPONENT_NAME sdmmc) +set(__component____idf_sdmmc_COMPONENT_DIR /home/mithras/esp/esp-idf/components/sdmmc) +set(__component____idf_sdmmc_COMPONENT_ALIAS idf::sdmmc) +set(__component____idf_sdmmc___PREFIX idf) +set(__component____idf_sdmmc_KCONFIG ) +set(__component____idf_sdmmc_KCONFIG_PROJBUILD ) +set(__component____idf_sdmmc_SDKCONFIG_RENAME ) +set(__component____idf_soc_COMPONENT_LIB __idf_soc) +set(__component____idf_soc___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_soc_COMPONENT_NAME soc) +set(__component____idf_soc_COMPONENT_DIR /home/mithras/esp/esp-idf/components/soc) +set(__component____idf_soc_COMPONENT_ALIAS idf::soc) +set(__component____idf_soc___PREFIX idf) +set(__component____idf_soc_KCONFIG ) +set(__component____idf_soc_KCONFIG_PROJBUILD ) +set(__component____idf_soc_SDKCONFIG_RENAME ) +set(__component____idf_spi_flash_COMPONENT_LIB __idf_spi_flash) +set(__component____idf_spi_flash___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_spi_flash_COMPONENT_NAME spi_flash) +set(__component____idf_spi_flash_COMPONENT_DIR /home/mithras/esp/esp-idf/components/spi_flash) +set(__component____idf_spi_flash_COMPONENT_ALIAS idf::spi_flash) +set(__component____idf_spi_flash___PREFIX idf) +set(__component____idf_spi_flash_KCONFIG /home/mithras/esp/esp-idf/components/spi_flash/Kconfig) +set(__component____idf_spi_flash_KCONFIG_PROJBUILD ) +set(__component____idf_spi_flash_SDKCONFIG_RENAME /home/mithras/esp/esp-idf/components/spi_flash/sdkconfig.rename) +set(__component____idf_spiffs_COMPONENT_LIB __idf_spiffs) +set(__component____idf_spiffs___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_spiffs_COMPONENT_NAME spiffs) +set(__component____idf_spiffs_COMPONENT_DIR /home/mithras/esp/esp-idf/components/spiffs) +set(__component____idf_spiffs_COMPONENT_ALIAS idf::spiffs) +set(__component____idf_spiffs___PREFIX idf) +set(__component____idf_spiffs_KCONFIG /home/mithras/esp/esp-idf/components/spiffs/Kconfig) +set(__component____idf_spiffs_KCONFIG_PROJBUILD ) +set(__component____idf_spiffs_SDKCONFIG_RENAME ) +set(__component____idf_tcp_transport_COMPONENT_LIB __idf_tcp_transport) +set(__component____idf_tcp_transport___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_tcp_transport_COMPONENT_NAME tcp_transport) +set(__component____idf_tcp_transport_COMPONENT_DIR /home/mithras/esp/esp-idf/components/tcp_transport) +set(__component____idf_tcp_transport_COMPONENT_ALIAS idf::tcp_transport) +set(__component____idf_tcp_transport___PREFIX idf) +set(__component____idf_tcp_transport_KCONFIG ) +set(__component____idf_tcp_transport_KCONFIG_PROJBUILD ) +set(__component____idf_tcp_transport_SDKCONFIG_RENAME ) +set(__component____idf_tcpip_adapter_COMPONENT_LIB __idf_tcpip_adapter) +set(__component____idf_tcpip_adapter___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_tcpip_adapter_COMPONENT_NAME tcpip_adapter) +set(__component____idf_tcpip_adapter_COMPONENT_DIR /home/mithras/esp/esp-idf/components/tcpip_adapter) +set(__component____idf_tcpip_adapter_COMPONENT_ALIAS idf::tcpip_adapter) +set(__component____idf_tcpip_adapter___PREFIX idf) +set(__component____idf_tcpip_adapter_KCONFIG ) +set(__component____idf_tcpip_adapter_KCONFIG_PROJBUILD ) +set(__component____idf_tcpip_adapter_SDKCONFIG_RENAME ) +set(__component____idf_ulp_COMPONENT_LIB __idf_ulp) +set(__component____idf_ulp___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_ulp_COMPONENT_NAME ulp) +set(__component____idf_ulp_COMPONENT_DIR /home/mithras/esp/esp-idf/components/ulp) +set(__component____idf_ulp_COMPONENT_ALIAS idf::ulp) +set(__component____idf_ulp___PREFIX idf) +set(__component____idf_ulp_KCONFIG ) +set(__component____idf_ulp_KCONFIG_PROJBUILD ) +set(__component____idf_ulp_SDKCONFIG_RENAME ) +set(__component____idf_unity_COMPONENT_LIB __idf_unity) +set(__component____idf_unity___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_unity_COMPONENT_NAME unity) +set(__component____idf_unity_COMPONENT_DIR /home/mithras/esp/esp-idf/components/unity) +set(__component____idf_unity_COMPONENT_ALIAS idf::unity) +set(__component____idf_unity___PREFIX idf) +set(__component____idf_unity_KCONFIG /home/mithras/esp/esp-idf/components/unity/Kconfig) +set(__component____idf_unity_KCONFIG_PROJBUILD ) +set(__component____idf_unity_SDKCONFIG_RENAME ) +set(__component____idf_vfs_COMPONENT_LIB __idf_vfs) +set(__component____idf_vfs___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_vfs_COMPONENT_NAME vfs) +set(__component____idf_vfs_COMPONENT_DIR /home/mithras/esp/esp-idf/components/vfs) +set(__component____idf_vfs_COMPONENT_ALIAS idf::vfs) +set(__component____idf_vfs___PREFIX idf) +set(__component____idf_vfs_KCONFIG /home/mithras/esp/esp-idf/components/vfs/Kconfig) +set(__component____idf_vfs_KCONFIG_PROJBUILD ) +set(__component____idf_vfs_SDKCONFIG_RENAME /home/mithras/esp/esp-idf/components/vfs/sdkconfig.rename) +set(__component____idf_wear_levelling_COMPONENT_LIB __idf_wear_levelling) +set(__component____idf_wear_levelling___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_wear_levelling_COMPONENT_NAME wear_levelling) +set(__component____idf_wear_levelling_COMPONENT_DIR /home/mithras/esp/esp-idf/components/wear_levelling) +set(__component____idf_wear_levelling_COMPONENT_ALIAS idf::wear_levelling) +set(__component____idf_wear_levelling___PREFIX idf) +set(__component____idf_wear_levelling_KCONFIG /home/mithras/esp/esp-idf/components/wear_levelling/Kconfig) +set(__component____idf_wear_levelling_KCONFIG_PROJBUILD ) +set(__component____idf_wear_levelling_SDKCONFIG_RENAME ) +set(__component____idf_wifi_provisioning_COMPONENT_LIB __idf_wifi_provisioning) +set(__component____idf_wifi_provisioning___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_wifi_provisioning_COMPONENT_NAME wifi_provisioning) +set(__component____idf_wifi_provisioning_COMPONENT_DIR /home/mithras/esp/esp-idf/components/wifi_provisioning) +set(__component____idf_wifi_provisioning_COMPONENT_ALIAS idf::wifi_provisioning) +set(__component____idf_wifi_provisioning___PREFIX idf) +set(__component____idf_wifi_provisioning_KCONFIG /home/mithras/esp/esp-idf/components/wifi_provisioning/Kconfig) +set(__component____idf_wifi_provisioning_KCONFIG_PROJBUILD ) +set(__component____idf_wifi_provisioning_SDKCONFIG_RENAME ) +set(__component____idf_wpa_supplicant_COMPONENT_LIB __idf_wpa_supplicant) +set(__component____idf_wpa_supplicant___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_wpa_supplicant_COMPONENT_NAME wpa_supplicant) +set(__component____idf_wpa_supplicant_COMPONENT_DIR /home/mithras/esp/esp-idf/components/wpa_supplicant) +set(__component____idf_wpa_supplicant_COMPONENT_ALIAS idf::wpa_supplicant) +set(__component____idf_wpa_supplicant___PREFIX idf) +set(__component____idf_wpa_supplicant_KCONFIG /home/mithras/esp/esp-idf/components/wpa_supplicant/Kconfig) +set(__component____idf_wpa_supplicant_KCONFIG_PROJBUILD ) +set(__component____idf_wpa_supplicant_SDKCONFIG_RENAME ) +set(__component____idf_xtensa_COMPONENT_LIB __idf_xtensa) +set(__component____idf_xtensa___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_xtensa_COMPONENT_NAME xtensa) +set(__component____idf_xtensa_COMPONENT_DIR /home/mithras/esp/esp-idf/components/xtensa) +set(__component____idf_xtensa_COMPONENT_ALIAS idf::xtensa) +set(__component____idf_xtensa___PREFIX idf) +set(__component____idf_xtensa_KCONFIG ) +set(__component____idf_xtensa_KCONFIG_PROJBUILD ) +set(__component____idf_xtensa_SDKCONFIG_RENAME ) +set(__component____idf_main_COMPONENT_LIB __idf_main) +set(__component____idf_main___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_main_COMPONENT_NAME main) +set(__component____idf_main_COMPONENT_DIR /home/mithras/Documents/console/main) +set(__component____idf_main_COMPONENT_ALIAS idf::main) +set(__component____idf_main___PREFIX idf) +set(__component____idf_main_KCONFIG ) +set(__component____idf_main_KCONFIG_PROJBUILD /home/mithras/Documents/console/main/Kconfig.projbuild) +set(__component____idf_main_SDKCONFIG_RENAME ) +set(__component____idf_ca_COMPONENT_LIB __idf_ca) +set(__component____idf_ca___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_ca_COMPONENT_NAME ca) +set(__component____idf_ca_COMPONENT_DIR /home/mithras/Documents/console/components/ca) +set(__component____idf_ca_COMPONENT_ALIAS idf::ca) +set(__component____idf_ca___PREFIX idf) +set(__component____idf_ca_KCONFIG ) +set(__component____idf_ca_KCONFIG_PROJBUILD ) +set(__component____idf_ca_SDKCONFIG_RENAME ) +set(__component____idf_cmd_nvs_COMPONENT_LIB __idf_cmd_nvs) +set(__component____idf_cmd_nvs___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_cmd_nvs_COMPONENT_NAME cmd_nvs) +set(__component____idf_cmd_nvs_COMPONENT_DIR /home/mithras/Documents/console/components/cmd_nvs) +set(__component____idf_cmd_nvs_COMPONENT_ALIAS idf::cmd_nvs) +set(__component____idf_cmd_nvs___PREFIX idf) +set(__component____idf_cmd_nvs_KCONFIG ) +set(__component____idf_cmd_nvs_KCONFIG_PROJBUILD ) +set(__component____idf_cmd_nvs_SDKCONFIG_RENAME ) +set(__component____idf_cmd_system_COMPONENT_LIB __idf_cmd_system) +set(__component____idf_cmd_system___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_cmd_system_COMPONENT_NAME cmd_system) +set(__component____idf_cmd_system_COMPONENT_DIR /home/mithras/Documents/console/components/cmd_system) +set(__component____idf_cmd_system_COMPONENT_ALIAS idf::cmd_system) +set(__component____idf_cmd_system___PREFIX idf) +set(__component____idf_cmd_system_KCONFIG ) +set(__component____idf_cmd_system_KCONFIG_PROJBUILD ) +set(__component____idf_cmd_system_SDKCONFIG_RENAME ) +set(__component____idf_files_COMPONENT_LIB __idf_files) +set(__component____idf_files___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_files_COMPONENT_NAME files) +set(__component____idf_files_COMPONENT_DIR /home/mithras/Documents/console/components/files) +set(__component____idf_files_COMPONENT_ALIAS idf::files) +set(__component____idf_files___PREFIX idf) +set(__component____idf_files_KCONFIG ) +set(__component____idf_files_KCONFIG_PROJBUILD ) +set(__component____idf_files_SDKCONFIG_RENAME ) +set(__component____idf_https_server_COMPONENT_LIB __idf_https_server) +set(__component____idf_https_server___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_https_server_COMPONENT_NAME https_server) +set(__component____idf_https_server_COMPONENT_DIR /home/mithras/Documents/console/components/https_server) +set(__component____idf_https_server_COMPONENT_ALIAS idf::https_server) +set(__component____idf_https_server___PREFIX idf) +set(__component____idf_https_server_KCONFIG ) +set(__component____idf_https_server_KCONFIG_PROJBUILD ) +set(__component____idf_https_server_SDKCONFIG_RENAME ) +set(__component____idf_lv_port_esp32_COMPONENT_LIB __idf_lv_port_esp32) +set(__component____idf_lv_port_esp32___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_lv_port_esp32_COMPONENT_NAME lv_port_esp32) +set(__component____idf_lv_port_esp32_COMPONENT_DIR /home/mithras/Documents/console/components/lv_port_esp32) +set(__component____idf_lv_port_esp32_COMPONENT_ALIAS idf::lv_port_esp32) +set(__component____idf_lv_port_esp32___PREFIX idf) +set(__component____idf_lv_port_esp32_KCONFIG ) +set(__component____idf_lv_port_esp32_KCONFIG_PROJBUILD ) +set(__component____idf_lv_port_esp32_SDKCONFIG_RENAME ) +set(__component____idf_wifi_COMPONENT_LIB __idf_wifi) +set(__component____idf_wifi___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_wifi_COMPONENT_NAME wifi) +set(__component____idf_wifi_COMPONENT_DIR /home/mithras/Documents/console/components/wifi) +set(__component____idf_wifi_COMPONENT_ALIAS idf::wifi) +set(__component____idf_wifi___PREFIX idf) +set(__component____idf_wifi_KCONFIG ) +set(__component____idf_wifi_KCONFIG_PROJBUILD ) +set(__component____idf_wifi_SDKCONFIG_RENAME ) +set(__component____idf_lv_examples_COMPONENT_LIB __idf_lv_examples) +set(__component____idf_lv_examples___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_lv_examples_COMPONENT_NAME lv_examples) +set(__component____idf_lv_examples_COMPONENT_DIR /home/mithras/Documents/console/components/lv_port_esp32/components/lv_examples) +set(__component____idf_lv_examples_COMPONENT_ALIAS idf::lv_examples) +set(__component____idf_lv_examples___PREFIX idf) +set(__component____idf_lv_examples_KCONFIG ) +set(__component____idf_lv_examples_KCONFIG_PROJBUILD ) +set(__component____idf_lv_examples_SDKCONFIG_RENAME ) +set(__component____idf_lvgl_COMPONENT_LIB __idf_lvgl) +set(__component____idf_lvgl___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_lvgl_COMPONENT_NAME lvgl) +set(__component____idf_lvgl_COMPONENT_DIR /home/mithras/Documents/console/components/lv_port_esp32/components/lvgl) +set(__component____idf_lvgl_COMPONENT_ALIAS idf::lvgl) +set(__component____idf_lvgl___PREFIX idf) +set(__component____idf_lvgl_KCONFIG ) +set(__component____idf_lvgl_KCONFIG_PROJBUILD ) +set(__component____idf_lvgl_SDKCONFIG_RENAME ) +set(__component____idf_lvgl_tft_COMPONENT_LIB __idf_lvgl_tft) +set(__component____idf_lvgl_tft___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_lvgl_tft_COMPONENT_NAME lvgl_tft) +set(__component____idf_lvgl_tft_COMPONENT_DIR /home/mithras/Documents/console/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft) +set(__component____idf_lvgl_tft_COMPONENT_ALIAS idf::lvgl_tft) +set(__component____idf_lvgl_tft___PREFIX idf) +set(__component____idf_lvgl_tft_KCONFIG /home/mithras/Documents/console/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_tft/Kconfig) +set(__component____idf_lvgl_tft_KCONFIG_PROJBUILD ) +set(__component____idf_lvgl_tft_SDKCONFIG_RENAME ) +set(__component____idf_lvgl_touch_COMPONENT_LIB __idf_lvgl_touch) +set(__component____idf_lvgl_touch___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_lvgl_touch_COMPONENT_NAME lvgl_touch) +set(__component____idf_lvgl_touch_COMPONENT_DIR /home/mithras/Documents/console/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch) +set(__component____idf_lvgl_touch_COMPONENT_ALIAS idf::lvgl_touch) +set(__component____idf_lvgl_touch___PREFIX idf) +set(__component____idf_lvgl_touch_KCONFIG /home/mithras/Documents/console/components/lv_port_esp32/components/lvgl_esp32_drivers/lvgl_touch/Kconfig) +set(__component____idf_lvgl_touch_KCONFIG_PROJBUILD ) +set(__component____idf_lvgl_touch_SDKCONFIG_RENAME ) +set(__component____idf_lvgl_esp32_drivers_COMPONENT_LIB __idf_lvgl_esp32_drivers) +set(__component____idf_lvgl_esp32_drivers___COMPONENT_PROPERTIES COMPONENT_LIB;__COMPONENT_PROPERTIES;COMPONENT_NAME;COMPONENT_DIR;COMPONENT_ALIAS;__PREFIX;KCONFIG;KCONFIG_PROJBUILD;SDKCONFIG_RENAME) +set(__component____idf_lvgl_esp32_drivers_COMPONENT_NAME lvgl_esp32_drivers) +set(__component____idf_lvgl_esp32_drivers_COMPONENT_DIR /home/mithras/Documents/console/components/lv_port_esp32/components/lvgl_esp32_drivers) +set(__component____idf_lvgl_esp32_drivers_COMPONENT_ALIAS idf::lvgl_esp32_drivers) +set(__component____idf_lvgl_esp32_drivers___PREFIX idf) +set(__component____idf_lvgl_esp32_drivers_KCONFIG ) +set(__component____idf_lvgl_esp32_drivers_KCONFIG_PROJBUILD ) +set(__component____idf_lvgl_esp32_drivers_SDKCONFIG_RENAME ) \ No newline at end of file diff --git a/components/ca/CMakeLists.txt b/components/ca/CMakeLists.txt new file mode 100644 index 0000000..db8600a --- /dev/null +++ b/components/ca/CMakeLists.txt @@ -0,0 +1,4 @@ +idf_component_register(SRCS "ca.c" + "gen_key.c" + INCLUDE_DIRS . + REQUIRES console mbedtls) \ No newline at end of file diff --git a/components/ca/ca.c b/components/ca/ca.c new file mode 100644 index 0000000..4cbfdd7 --- /dev/null +++ b/components/ca/ca.c @@ -0,0 +1,839 @@ +/* + * Certificate generation and signing + * + * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may + * not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is part of mbed TLS (https://tls.mbed.org) + */ + +#if !defined(MBEDTLS_CONFIG_FILE) +#include "mbedtls/config.h" +#else +#include MBEDTLS_CONFIG_FILE +#endif + +#if defined(MBEDTLS_PLATFORM_C) +#include "mbedtls/platform.h" +#else +#include +#include +#define mbedtls_printf printf +#define mbedtls_exit exit +#define MBEDTLS_EXIT_SUCCESS EXIT_SUCCESS +#define MBEDTLS_EXIT_FAILURE EXIT_FAILURE +#endif /* MBEDTLS_PLATFORM_C */ + +#if !defined(MBEDTLS_X509_CRT_WRITE_C) || \ + !defined(MBEDTLS_X509_CRT_PARSE_C) || !defined(MBEDTLS_FS_IO) || \ + !defined(MBEDTLS_ENTROPY_C) || !defined(MBEDTLS_CTR_DRBG_C) || \ + !defined(MBEDTLS_ERROR_C) || !defined(MBEDTLS_SHA256_C) || \ + !defined(MBEDTLS_PEM_WRITE_C) +int main( void ) +{ + mbedtls_printf( "MBEDTLS_X509_CRT_WRITE_C and/or MBEDTLS_X509_CRT_PARSE_C and/or " + "MBEDTLS_FS_IO and/or MBEDTLS_SHA256_C and/or " + "MBEDTLS_ENTROPY_C and/or MBEDTLS_CTR_DRBG_C and/or " + "MBEDTLS_ERROR_C not defined.\n"); + return( 0 ); +} +#else + +#include "mbedtls/x509_crt.h" +#include "mbedtls/x509_csr.h" +#include "mbedtls/entropy.h" +#include "mbedtls/ctr_drbg.h" +#include "mbedtls/md.h" +#include "mbedtls/error.h" +#include "esp_console.h" +#include "ca.h" + +#include +#include +#include + +#if defined(MBEDTLS_X509_CSR_PARSE_C) +#define USAGE_CSR \ + " request_file=%%s default: (empty)\n" \ + " If request_file is specified, subject_key,\n" \ + " subject_pwd and subject_name are ignored!\n" +#else +#define USAGE_CSR "" +#endif /* MBEDTLS_X509_CSR_PARSE_C */ + +#define DFL_ISSUER_CRT "" +#define DFL_REQUEST_FILE "" +#define DFL_SUBJECT_KEY "subject.key" +#define DFL_ISSUER_KEY "ca.key" +#define DFL_SUBJECT_PWD "" +#define DFL_ISSUER_PWD "" +#define DFL_OUTPUT_FILENAME "cert.crt" +#define DFL_SUBJECT_NAME "CN=Cert,O=mbed TLS,C=UK" +#define DFL_ISSUER_NAME "CN=CA,O=mbed TLS,C=UK" +#define DFL_NOT_BEFORE "20010101000000" +#define DFL_NOT_AFTER "20301231235959" +#define DFL_SERIAL "1" +#define DFL_SELFSIGN 0 +#define DFL_IS_CA 0 +#define DFL_MAX_PATHLEN -1 +#define DFL_KEY_USAGE 0 +#define DFL_NS_CERT_TYPE 0 +#define DFL_VERSION 3 +#define DFL_AUTH_IDENT 1 +#define DFL_SUBJ_IDENT 1 +#define DFL_CONSTRAINTS 1 +#define DFL_DIGEST MBEDTLS_MD_SHA256 + +#define USAGE \ + "\n usage: cert_write param=<>...\n" \ + "\n acceptable parameters:\n" \ + USAGE_CSR \ + " subject_key=%%s default: subject.key\n" \ + " subject_pwd=%%s default: (empty)\n" \ + " subject_name=%%s default: CN=Cert,O=mbed TLS,C=UK\n" \ + "\n" \ + " issuer_crt=%%s default: (empty)\n" \ + " If issuer_crt is specified, issuer_name is\n" \ + " ignored!\n" \ + " issuer_name=%%s default: CN=CA,O=mbed TLS,C=UK\n" \ + "\n" \ + " selfsign=%%d default: 0 (false)\n" \ + " If selfsign is enabled, issuer_name and\n" \ + " issuer_key are required (issuer_crt and\n" \ + " subject_* are ignored\n" \ + " issuer_key=%%s default: ca.key\n" \ + " issuer_pwd=%%s default: (empty)\n" \ + " output_file=%%s default: cert.crt\n" \ + " serial=%%s default: 1\n" \ + " not_before=%%s default: 20010101000000\n"\ + " not_after=%%s default: 20301231235959\n"\ + " is_ca=%%d default: 0 (disabled)\n" \ + " max_pathlen=%%d default: -1 (none)\n" \ + " md=%%s default: SHA256\n" \ + " Supported values:\n" \ + " MD2, MD4, MD5, SHA1, SHA256, SHA512\n"\ + " version=%%d default: 3\n" \ + " Possible values: 1, 2, 3\n"\ + " subject_identifier=%%s default: 1\n" \ + " Possible values: 0, 1\n" \ + " (Considered for v3 only)\n"\ + " authority_identifier=%%s default: 1\n" \ + " Possible values: 0, 1\n" \ + " (Considered for v3 only)\n"\ + " basic_constraints=%%d default: 1\n" \ + " Possible values: 0, 1\n" \ + " (Considered for v3 only)\n"\ + " key_usage=%%s default: (empty)\n" \ + " Comma-separated-list of values:\n" \ + " digital_signature\n" \ + " non_repudiation\n" \ + " key_encipherment\n" \ + " data_encipherment\n" \ + " key_agreement\n" \ + " key_cert_sign\n" \ + " crl_sign\n" \ + " (Considered for v3 only)\n"\ + " ns_cert_type=%%s default: (empty)\n" \ + " Comma-separated-list of values:\n" \ + " ssl_client\n" \ + " ssl_server\n" \ + " email\n" \ + " object_signing\n" \ + " ssl_ca\n" \ + " email_ca\n" \ + " object_signing_ca\n" \ + "\n" + + +/* + * global options + */ +struct options +{ + const char *issuer_crt; /* filename of the issuer certificate */ + const char *request_file; /* filename of the certificate request */ + const char *subject_key; /* filename of the subject key file */ + const char *issuer_key; /* filename of the issuer key file */ + const char *subject_pwd; /* password for the subject key file */ + const char *issuer_pwd; /* password for the issuer key file */ + const char *output_file; /* where to store the constructed CRT */ + const char *subject_name; /* subject name for certificate */ + const char *issuer_name; /* issuer name for certificate */ + const char *not_before; /* validity period not before */ + const char *not_after; /* validity period not after */ + const char *serial; /* serial number string */ + int selfsign; /* selfsign the certificate */ + int is_ca; /* is a CA certificate */ + int max_pathlen; /* maximum CA path length */ + int authority_identifier; /* add authority identifier to CRT */ + int subject_identifier; /* add subject identifier to CRT */ + int basic_constraints; /* add basic constraints ext to CRT */ + int version; /* CRT version */ + mbedtls_md_type_t md; /* Hash used for signing */ + unsigned char key_usage; /* key usage flags */ + unsigned char ns_cert_type; /* NS cert type */ +} opt; + +int write_certificate( mbedtls_x509write_cert *crt, const char *output_file, + int (*f_rng)(void *, unsigned char *, size_t), + void *p_rng ) +{ + int ret; + FILE *f; + unsigned char output_buf[4096]; + size_t len = 0; + + memset( output_buf, 0, 4096 ); + if( ( ret = mbedtls_x509write_crt_pem( crt, output_buf, 4096, + f_rng, p_rng ) ) < 0 ) + return( ret ); + + len = strlen( (char *) output_buf ); + + if( ( f = fopen( output_file, "w" ) ) == NULL ) + return( -1 ); + + if( fwrite( output_buf, 1, len, f ) != len ) + { + fclose( f ); + return( -1 ); + } + + fclose( f ); + + return( 0 ); +} + +static int connect( int argc, char *argv[] ) +{ + int ret = 1; + int exit_code = MBEDTLS_EXIT_FAILURE; + mbedtls_x509_crt issuer_crt; + mbedtls_pk_context loaded_issuer_key, loaded_subject_key; + mbedtls_pk_context *issuer_key = &loaded_issuer_key, + *subject_key = &loaded_subject_key; + char buf[1024]; + char issuer_name[256]; + int i; + char *p, *q, *r; +#if defined(MBEDTLS_X509_CSR_PARSE_C) + char subject_name[256]; + mbedtls_x509_csr csr; +#endif + mbedtls_x509write_cert crt; + mbedtls_mpi serial; + mbedtls_entropy_context entropy; + mbedtls_ctr_drbg_context ctr_drbg; + const char *pers = "crt example app"; + + /* + * Set to sane values + */ + mbedtls_x509write_crt_init( &crt ); + mbedtls_pk_init( &loaded_issuer_key ); + mbedtls_pk_init( &loaded_subject_key ); + mbedtls_mpi_init( &serial ); + mbedtls_ctr_drbg_init( &ctr_drbg ); + mbedtls_entropy_init( &entropy ); +#if defined(MBEDTLS_X509_CSR_PARSE_C) + mbedtls_x509_csr_init( &csr ); +#endif + mbedtls_x509_crt_init( &issuer_crt ); + memset( buf, 0, 1024 ); + + if( argc == 0 ) + { + usage: + mbedtls_printf( USAGE ); + goto exit; + } + + opt.issuer_crt = DFL_ISSUER_CRT; + opt.request_file = DFL_REQUEST_FILE; + opt.subject_key = DFL_SUBJECT_KEY; + opt.issuer_key = DFL_ISSUER_KEY; + opt.subject_pwd = DFL_SUBJECT_PWD; + opt.issuer_pwd = DFL_ISSUER_PWD; + opt.output_file = DFL_OUTPUT_FILENAME; + opt.subject_name = DFL_SUBJECT_NAME; + opt.issuer_name = DFL_ISSUER_NAME; + opt.not_before = DFL_NOT_BEFORE; + opt.not_after = DFL_NOT_AFTER; + opt.serial = DFL_SERIAL; + opt.selfsign = DFL_SELFSIGN; + opt.is_ca = DFL_IS_CA; + opt.max_pathlen = DFL_MAX_PATHLEN; + opt.key_usage = DFL_KEY_USAGE; + opt.ns_cert_type = DFL_NS_CERT_TYPE; + opt.version = DFL_VERSION - 1; + opt.md = DFL_DIGEST; + opt.subject_identifier = DFL_SUBJ_IDENT; + opt.authority_identifier = DFL_AUTH_IDENT; + opt.basic_constraints = DFL_CONSTRAINTS; + + for( i = 1; i < argc; i++ ) + { + + p = argv[i]; + if( ( q = strchr( p, '=' ) ) == NULL ) + goto usage; + *q++ = '\0'; + + if( strcmp( p, "request_file" ) == 0 ) + opt.request_file = q; + else if( strcmp( p, "subject_key" ) == 0 ) + opt.subject_key = q; + else if( strcmp( p, "issuer_key" ) == 0 ) + opt.issuer_key = q; + else if( strcmp( p, "subject_pwd" ) == 0 ) + opt.subject_pwd = q; + else if( strcmp( p, "issuer_pwd" ) == 0 ) + opt.issuer_pwd = q; + else if( strcmp( p, "issuer_crt" ) == 0 ) + opt.issuer_crt = q; + else if( strcmp( p, "output_file" ) == 0 ) + opt.output_file = q; + else if( strcmp( p, "subject_name" ) == 0 ) + { + opt.subject_name = q; + } + else if( strcmp( p, "issuer_name" ) == 0 ) + { + opt.issuer_name = q; + } + else if( strcmp( p, "not_before" ) == 0 ) + { + opt.not_before = q; + } + else if( strcmp( p, "not_after" ) == 0 ) + { + opt.not_after = q; + } + else if( strcmp( p, "serial" ) == 0 ) + { + opt.serial = q; + } + else if( strcmp( p, "authority_identifier" ) == 0 ) + { + opt.authority_identifier = atoi( q ); + if( opt.authority_identifier != 0 && + opt.authority_identifier != 1 ) + { + mbedtls_printf( "Invalid argument for option %s\n", p ); + goto usage; + } + } + else if( strcmp( p, "subject_identifier" ) == 0 ) + { + opt.subject_identifier = atoi( q ); + if( opt.subject_identifier != 0 && + opt.subject_identifier != 1 ) + { + mbedtls_printf( "Invalid argument for option %s\n", p ); + goto usage; + } + } + else if( strcmp( p, "basic_constraints" ) == 0 ) + { + opt.basic_constraints = atoi( q ); + if( opt.basic_constraints != 0 && + opt.basic_constraints != 1 ) + { + mbedtls_printf( "Invalid argument for option %s\n", p ); + goto usage; + } + } + else if( strcmp( p, "md" ) == 0 ) + { + if( strcmp( q, "SHA1" ) == 0 ) + opt.md = MBEDTLS_MD_SHA1; + else if( strcmp( q, "SHA224" ) == 0 ) + opt.md = MBEDTLS_MD_SHA224; + else if( strcmp( q, "SHA256" ) == 0 ) + opt.md = MBEDTLS_MD_SHA256; + else if( strcmp( q, "SHA384" ) == 0 ) + opt.md = MBEDTLS_MD_SHA384; + else if( strcmp( q, "SHA512" ) == 0 ) + opt.md = MBEDTLS_MD_SHA512; + else if( strcmp( q, "MD2" ) == 0 ) + opt.md = MBEDTLS_MD_MD2; + else if( strcmp( q, "MD4" ) == 0 ) + opt.md = MBEDTLS_MD_MD4; + else if( strcmp( q, "MD5" ) == 0 ) + opt.md = MBEDTLS_MD_MD5; + else + { + mbedtls_printf( "Invalid argument for option %s\n", p ); + goto usage; + } + } + else if( strcmp( p, "version" ) == 0 ) + { + opt.version = atoi( q ); + if( opt.version < 1 || opt.version > 3 ) + { + mbedtls_printf( "Invalid argument for option %s\n", p ); + goto usage; + } + opt.version--; + } + else if( strcmp( p, "selfsign" ) == 0 ) + { + opt.selfsign = atoi( q ); + if( opt.selfsign < 0 || opt.selfsign > 1 ) + { + mbedtls_printf( "Invalid argument for option %s\n", p ); + goto usage; + } + } + else if( strcmp( p, "is_ca" ) == 0 ) + { + opt.is_ca = atoi( q ); + if( opt.is_ca < 0 || opt.is_ca > 1 ) + { + mbedtls_printf( "Invalid argument for option %s\n", p ); + goto usage; + } + } + else if( strcmp( p, "max_pathlen" ) == 0 ) + { + opt.max_pathlen = atoi( q ); + if( opt.max_pathlen < -1 || opt.max_pathlen > 127 ) + { + mbedtls_printf( "Invalid argument for option %s\n", p ); + goto usage; + } + } + else if( strcmp( p, "key_usage" ) == 0 ) + { + while( q != NULL ) + { + if( ( r = strchr( q, ',' ) ) != NULL ) + *r++ = '\0'; + + if( strcmp( q, "digital_signature" ) == 0 ) + opt.key_usage |= MBEDTLS_X509_KU_DIGITAL_SIGNATURE; + else if( strcmp( q, "non_repudiation" ) == 0 ) + opt.key_usage |= MBEDTLS_X509_KU_NON_REPUDIATION; + else if( strcmp( q, "key_encipherment" ) == 0 ) + opt.key_usage |= MBEDTLS_X509_KU_KEY_ENCIPHERMENT; + else if( strcmp( q, "data_encipherment" ) == 0 ) + opt.key_usage |= MBEDTLS_X509_KU_DATA_ENCIPHERMENT; + else if( strcmp( q, "key_agreement" ) == 0 ) + opt.key_usage |= MBEDTLS_X509_KU_KEY_AGREEMENT; + else if( strcmp( q, "key_cert_sign" ) == 0 ) + opt.key_usage |= MBEDTLS_X509_KU_KEY_CERT_SIGN; + else if( strcmp( q, "crl_sign" ) == 0 ) + opt.key_usage |= MBEDTLS_X509_KU_CRL_SIGN; + else + { + mbedtls_printf( "Invalid argument for option %s\n", p ); + goto usage; + } + + q = r; + } + } + else if( strcmp( p, "ns_cert_type" ) == 0 ) + { + while( q != NULL ) + { + if( ( r = strchr( q, ',' ) ) != NULL ) + *r++ = '\0'; + + if( strcmp( q, "ssl_client" ) == 0 ) + opt.ns_cert_type |= MBEDTLS_X509_NS_CERT_TYPE_SSL_CLIENT; + else if( strcmp( q, "ssl_server" ) == 0 ) + opt.ns_cert_type |= MBEDTLS_X509_NS_CERT_TYPE_SSL_SERVER; + else if( strcmp( q, "email" ) == 0 ) + opt.ns_cert_type |= MBEDTLS_X509_NS_CERT_TYPE_EMAIL; + else if( strcmp( q, "object_signing" ) == 0 ) + opt.ns_cert_type |= MBEDTLS_X509_NS_CERT_TYPE_OBJECT_SIGNING; + else if( strcmp( q, "ssl_ca" ) == 0 ) + opt.ns_cert_type |= MBEDTLS_X509_NS_CERT_TYPE_SSL_CA; + else if( strcmp( q, "email_ca" ) == 0 ) + opt.ns_cert_type |= MBEDTLS_X509_NS_CERT_TYPE_EMAIL_CA; + else if( strcmp( q, "object_signing_ca" ) == 0 ) + opt.ns_cert_type |= MBEDTLS_X509_NS_CERT_TYPE_OBJECT_SIGNING_CA; + else + { + mbedtls_printf( "Invalid argument for option %s\n", p ); + goto usage; + } + + q = r; + } + } + else + goto usage; + } + + mbedtls_printf("\n"); + + /* + * 0. Seed the PRNG + */ + mbedtls_printf( " . Seeding the random number generator..." ); + fflush( stdout ); + + if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy, + (const unsigned char *) pers, + strlen( pers ) ) ) != 0 ) + { + mbedtls_strerror( ret, buf, 1024 ); + mbedtls_printf( " failed\n ! mbedtls_ctr_drbg_seed returned %d - %s\n", + ret, buf ); + goto exit; + } + + mbedtls_printf( " ok\n" ); + + // Parse serial to MPI + // + mbedtls_printf( " . Reading serial number..." ); + fflush( stdout ); + + if( ( ret = mbedtls_mpi_read_string( &serial, 10, opt.serial ) ) != 0 ) + { + mbedtls_strerror( ret, buf, 1024 ); + mbedtls_printf( " failed\n ! mbedtls_mpi_read_string " + "returned -0x%04x - %s\n\n", -ret, buf ); + goto exit; + } + + mbedtls_printf( " ok\n" ); + + // Parse issuer certificate if present + // + if( !opt.selfsign && strlen( opt.issuer_crt ) ) + { + /* + * 1.0.a. Load the certificates + */ + mbedtls_printf( " . Loading the issuer certificate ..." ); + fflush( stdout ); + + if( ( ret = mbedtls_x509_crt_parse_file( &issuer_crt, opt.issuer_crt ) ) != 0 ) + { + mbedtls_strerror( ret, buf, 1024 ); + mbedtls_printf( " failed\n ! mbedtls_x509_crt_parse_file " + "returned -0x%04x - %s\n\n", -ret, buf ); + goto exit; + } + + ret = mbedtls_x509_dn_gets( issuer_name, sizeof(issuer_name), + &issuer_crt.subject ); + if( ret < 0 ) + { + mbedtls_strerror( ret, buf, 1024 ); + mbedtls_printf( " failed\n ! mbedtls_x509_dn_gets " + "returned -0x%04x - %s\n\n", -ret, buf ); + goto exit; + } + + opt.issuer_name = issuer_name; + + mbedtls_printf( " ok\n" ); + } + +#if defined(MBEDTLS_X509_CSR_PARSE_C) + // Parse certificate request if present + // + if( !opt.selfsign && strlen( opt.request_file ) ) + { + /* + * 1.0.b. Load the CSR + */ + mbedtls_printf( " . Loading the certificate request ..." ); + fflush( stdout ); + + if( ( ret = mbedtls_x509_csr_parse_file( &csr, opt.request_file ) ) != 0 ) + { + mbedtls_strerror( ret, buf, 1024 ); + mbedtls_printf( " failed\n ! mbedtls_x509_csr_parse_file " + "returned -0x%04x - %s\n\n", -ret, buf ); + goto exit; + } + + ret = mbedtls_x509_dn_gets( subject_name, sizeof(subject_name), + &csr.subject ); + if( ret < 0 ) + { + mbedtls_strerror( ret, buf, 1024 ); + mbedtls_printf( " failed\n ! mbedtls_x509_dn_gets " + "returned -0x%04x - %s\n\n", -ret, buf ); + goto exit; + } + + opt.subject_name = subject_name; + subject_key = &csr.pk; + + mbedtls_printf( " ok\n" ); + } +#endif /* MBEDTLS_X509_CSR_PARSE_C */ + + /* + * 1.1. Load the keys + */ + if( !opt.selfsign && !strlen( opt.request_file ) ) + { + mbedtls_printf( " . Loading the subject key ..." ); + fflush( stdout ); + + ret = mbedtls_pk_parse_keyfile( &loaded_subject_key, opt.subject_key, + opt.subject_pwd ); + if( ret != 0 ) + { + mbedtls_strerror( ret, buf, 1024 ); + mbedtls_printf( " failed\n ! mbedtls_pk_parse_keyfile " + "returned -0x%04x - %s\n\n", -ret, buf ); + goto exit; + } + + mbedtls_printf( " ok\n" ); + } + + mbedtls_printf( " . Loading the issuer key ..." ); + fflush( stdout ); + + ret = mbedtls_pk_parse_keyfile( &loaded_issuer_key, opt.issuer_key, + opt.issuer_pwd ); + if( ret != 0 ) + { + mbedtls_strerror( ret, buf, 1024 ); + mbedtls_printf( " failed\n ! mbedtls_pk_parse_keyfile " + "returned -x%02x - %s\n\n", -ret, buf ); + goto exit; + } + + // Check if key and issuer certificate match + // + if( strlen( opt.issuer_crt ) ) + { + if( mbedtls_pk_check_pair( &issuer_crt.pk, issuer_key ) != 0 ) + { + mbedtls_printf( " failed\n ! issuer_key does not match " + "issuer certificate\n\n" ); + goto exit; + } + } + + mbedtls_printf( " ok\n" ); + + if( opt.selfsign ) + { + opt.subject_name = opt.issuer_name; + subject_key = issuer_key; + } + + mbedtls_x509write_crt_set_subject_key( &crt, subject_key ); + mbedtls_x509write_crt_set_issuer_key( &crt, issuer_key ); + + /* + * 1.0. Check the names for validity + */ + if( ( ret = mbedtls_x509write_crt_set_subject_name( &crt, opt.subject_name ) ) != 0 ) + { + mbedtls_strerror( ret, buf, 1024 ); + mbedtls_printf( " failed\n ! mbedtls_x509write_crt_set_subject_name " + "returned -0x%04x - %s\n\n", -ret, buf ); + goto exit; + } + + if( ( ret = mbedtls_x509write_crt_set_issuer_name( &crt, opt.issuer_name ) ) != 0 ) + { + mbedtls_strerror( ret, buf, 1024 ); + mbedtls_printf( " failed\n ! mbedtls_x509write_crt_set_issuer_name " + "returned -0x%04x - %s\n\n", -ret, buf ); + goto exit; + } + + mbedtls_printf( " . Setting certificate values ..." ); + fflush( stdout ); + + mbedtls_x509write_crt_set_version( &crt, opt.version ); + mbedtls_x509write_crt_set_md_alg( &crt, opt.md ); + + ret = mbedtls_x509write_crt_set_serial( &crt, &serial ); + if( ret != 0 ) + { + mbedtls_strerror( ret, buf, 1024 ); + mbedtls_printf( " failed\n ! mbedtls_x509write_crt_set_serial " + "returned -0x%04x - %s\n\n", -ret, buf ); + goto exit; + } + + ret = mbedtls_x509write_crt_set_validity( &crt, opt.not_before, opt.not_after ); + if( ret != 0 ) + { + mbedtls_strerror( ret, buf, 1024 ); + mbedtls_printf( " failed\n ! mbedtls_x509write_crt_set_validity " + "returned -0x%04x - %s\n\n", -ret, buf ); + goto exit; + } + + mbedtls_printf( " ok\n" ); + + if( opt.version == MBEDTLS_X509_CRT_VERSION_3 && + opt.basic_constraints != 0 ) + { + mbedtls_printf( " . Adding the Basic Constraints extension ..." ); + fflush( stdout ); + + ret = mbedtls_x509write_crt_set_basic_constraints( &crt, opt.is_ca, + opt.max_pathlen ); + if( ret != 0 ) + { + mbedtls_strerror( ret, buf, 1024 ); + mbedtls_printf( " failed\n ! x509write_crt_set_basic_contraints " + "returned -0x%04x - %s\n\n", -ret, buf ); + goto exit; + } + + mbedtls_printf( " ok\n" ); + } + +#if defined(MBEDTLS_SHA1_C) + if( opt.version == MBEDTLS_X509_CRT_VERSION_3 && + opt.subject_identifier != 0 ) + { + mbedtls_printf( " . Adding the Subject Key Identifier ..." ); + fflush( stdout ); + + ret = mbedtls_x509write_crt_set_subject_key_identifier( &crt ); + if( ret != 0 ) + { + mbedtls_strerror( ret, buf, 1024 ); + mbedtls_printf( " failed\n ! mbedtls_x509write_crt_set_subject" + "_key_identifier returned -0x%04x - %s\n\n", + -ret, buf ); + goto exit; + } + + mbedtls_printf( " ok\n" ); + } + + if( opt.version == MBEDTLS_X509_CRT_VERSION_3 && + opt.authority_identifier != 0 ) + { + mbedtls_printf( " . Adding the Authority Key Identifier ..." ); + fflush( stdout ); + + ret = mbedtls_x509write_crt_set_authority_key_identifier( &crt ); + if( ret != 0 ) + { + mbedtls_strerror( ret, buf, 1024 ); + mbedtls_printf( " failed\n ! mbedtls_x509write_crt_set_authority_" + "key_identifier returned -0x%04x - %s\n\n", + -ret, buf ); + goto exit; + } + + mbedtls_printf( " ok\n" ); + } +#endif /* MBEDTLS_SHA1_C */ + + if( opt.version == MBEDTLS_X509_CRT_VERSION_3 && + opt.key_usage != 0 ) + { + mbedtls_printf( " . Adding the Key Usage extension ..." ); + fflush( stdout ); + + ret = mbedtls_x509write_crt_set_key_usage( &crt, opt.key_usage ); + if( ret != 0 ) + { + mbedtls_strerror( ret, buf, 1024 ); + mbedtls_printf( " failed\n ! mbedtls_x509write_crt_set_key_usage " + "returned -0x%04x - %s\n\n", -ret, buf ); + goto exit; + } + + mbedtls_printf( " ok\n" ); + } + + if( opt.version == MBEDTLS_X509_CRT_VERSION_3 && + opt.ns_cert_type != 0 ) + { + mbedtls_printf( " . Adding the NS Cert Type extension ..." ); + fflush( stdout ); + + ret = mbedtls_x509write_crt_set_ns_cert_type( &crt, opt.ns_cert_type ); + if( ret != 0 ) + { + mbedtls_strerror( ret, buf, 1024 ); + mbedtls_printf( " failed\n ! mbedtls_x509write_crt_set_ns_cert_type " + "returned -0x%04x - %s\n\n", -ret, buf ); + goto exit; + } + + mbedtls_printf( " ok\n" ); + } + + /* + * 1.2. Writing the certificate + */ + mbedtls_printf( " . Writing the certificate..." ); + fflush( stdout ); + + if( ( ret = write_certificate( &crt, opt.output_file, + mbedtls_ctr_drbg_random, &ctr_drbg ) ) != 0 ) + { + mbedtls_strerror( ret, buf, 1024 ); + mbedtls_printf( " failed\n ! write_certificate -0x%04x - %s\n\n", + -ret, buf ); + goto exit; + } + + mbedtls_printf( " ok\n" ); + + exit_code = MBEDTLS_EXIT_SUCCESS; + +exit: +#if defined(MBEDTLS_X509_CSR_PARSE_C) + mbedtls_x509_csr_free( &csr ); +#endif /* MBEDTLS_X509_CSR_PARSE_C */ + mbedtls_x509_crt_free( &issuer_crt ); + mbedtls_x509write_crt_free( &crt ); + mbedtls_pk_free( &loaded_subject_key ); + mbedtls_pk_free( &loaded_issuer_key ); + mbedtls_mpi_free( &serial ); + mbedtls_ctr_drbg_free( &ctr_drbg ); + mbedtls_entropy_free( &entropy ); + +#if defined(_WIN32) + mbedtls_printf( " + Press Enter to exit this program.\n" ); + fflush( stdout ); getchar(); +#endif + + return( exit_code ); +} + + +void register_ca(void) +{ + + const esp_console_cmd_t join_cmd = { + .command = "write_cert", + .help = "Write Certificate from CSR", + .hint = NULL, + .func = &connect, + .argtable = NULL + }; + + ESP_ERROR_CHECK( esp_console_cmd_register(&join_cmd) ); +} +#endif /* MBEDTLS_X509_CRT_WRITE_C && MBEDTLS_X509_CRT_PARSE_C && + MBEDTLS_FS_IO && MBEDTLS_ENTROPY_C && MBEDTLS_CTR_DRBG_C && + MBEDTLS_ERROR_C && MBEDTLS_PEM_WRITE_C */ \ No newline at end of file diff --git a/components/ca/ca.h b/components/ca/ca.h new file mode 100644 index 0000000..5e252a1 --- /dev/null +++ b/components/ca/ca.h @@ -0,0 +1 @@ +void register_ca(void); diff --git a/components/ca/component.mk b/components/ca/component.mk new file mode 100644 index 0000000..e0e9f4c --- /dev/null +++ b/components/ca/component.mk @@ -0,0 +1,10 @@ +# +# Component Makefile +# +# This Makefile should, at the very least, just include $(SDK_PATH)/Makefile. By default, +# this will take the sources in the src/ directory, compile them and link them into +# lib(subdirectory_name).a in the build directory. This behaviour is entirely configurable, +# please read the SDK documents if you need to do this. +# + +COMPONENT_ADD_INCLUDEDIRS := . diff --git a/components/ca/gen_key.c b/components/ca/gen_key.c new file mode 100644 index 0000000..fb13715 --- /dev/null +++ b/components/ca/gen_key.c @@ -0,0 +1,503 @@ +/* + * Key generation application + * + * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may + * not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This file is part of mbed TLS (https://tls.mbed.org) + */ + +#if !defined(MBEDTLS_CONFIG_FILE) +#include "mbedtls/config.h" +#else +#include MBEDTLS_CONFIG_FILE +#endif + +#if defined(MBEDTLS_PLATFORM_C) +#include "mbedtls/platform.h" +#else +#include +#include +#define mbedtls_printf printf +#define mbedtls_exit exit +#define MBEDTLS_EXIT_SUCCESS EXIT_SUCCESS +#define MBEDTLS_EXIT_FAILURE EXIT_FAILURE +#endif /* MBEDTLS_PLATFORM_C */ + +#if defined(MBEDTLS_PK_WRITE_C) && defined(MBEDTLS_FS_IO) && \ + defined(MBEDTLS_ENTROPY_C) && defined(MBEDTLS_CTR_DRBG_C) +#include "mbedtls/error.h" +#include "mbedtls/pk.h" +#include "mbedtls/ecdsa.h" +#include "mbedtls/rsa.h" +#include "mbedtls/error.h" +#include "mbedtls/entropy.h" +#include "mbedtls/ctr_drbg.h" + +#include "esp_console.h" +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" + +#include +#include +#include + +#if !defined(_WIN32) +#include + +#define DEV_RANDOM_THRESHOLD 32 + +struct pass_args +{ + int argc; + char **argv; +}; + + +struct pass_args global_arg; + +int dev_random_entropy_poll( void *data, unsigned char *output, + size_t len, size_t *olen ) +{ + FILE *file; + size_t ret, left = len; + unsigned char *p = output; + ((void) data); + + *olen = 0; + + file = fopen( "/dev/random", "rb" ); + if( file == NULL ) + return( MBEDTLS_ERR_ENTROPY_SOURCE_FAILED ); + + while( left > 0 ) + { + /* /dev/random can return much less than requested. If so, try again */ + ret = fread( p, 1, left, file ); + if( ret == 0 && ferror( file ) ) + { + fclose( file ); + return( MBEDTLS_ERR_ENTROPY_SOURCE_FAILED ); + } + + p += ret; + left -= ret; + sleep( 1 ); + } + fclose( file ); + *olen = len; + + return( 0 ); +} +#endif /* !_WIN32 */ +#endif + +#if defined(MBEDTLS_ECP_C) +#define DFL_EC_CURVE mbedtls_ecp_curve_list()->grp_id +#else +#define DFL_EC_CURVE 0 +#endif + +#if !defined(_WIN32) && defined(MBEDTLS_FS_IO) +#define USAGE_DEV_RANDOM \ + " use_dev_random=0|1 default: 0\n" +#else +#define USAGE_DEV_RANDOM "" +#endif /* !_WIN32 && MBEDTLS_FS_IO */ + +#define FORMAT_PEM 0 +#define FORMAT_DER 1 + +#define DFL_TYPE MBEDTLS_PK_RSA +#define DFL_RSA_KEYSIZE 4096 +#define DFL_FILENAME "keyfile.key" +#define DFL_FORMAT FORMAT_PEM +#define DFL_USE_DEV_RANDOM 0 + +#define USAGE \ + "\n usage: gen_key param=<>...\n" \ + "\n acceptable parameters:\n" \ + " type=rsa|ec default: rsa\n" \ + " rsa_keysize=%%d default: 4096\n" \ + " ec_curve=%%s see below\n" \ + " filename=%%s default: keyfile.key\n" \ + " format=pem|der default: pem\n" \ + USAGE_DEV_RANDOM \ + "\n" + +#if !defined(MBEDTLS_PK_WRITE_C) || !defined(MBEDTLS_PEM_WRITE_C) || \ + !defined(MBEDTLS_FS_IO) || !defined(MBEDTLS_ENTROPY_C) || \ + !defined(MBEDTLS_CTR_DRBG_C) +int main( void ) +{ + mbedtls_printf( "MBEDTLS_PK_WRITE_C and/or MBEDTLS_FS_IO and/or " + "MBEDTLS_ENTROPY_C and/or MBEDTLS_CTR_DRBG_C and/or " + "MBEDTLS_PEM_WRITE_C" + "not defined.\n" ); + return( 0 ); +} +#else + + +/* + * global options + */ +struct options +{ + int type; /* the type of key to generate */ + int rsa_keysize; /* length of key in bits */ + int ec_curve; /* curve identifier for EC keys */ + const char *filename; /* filename of the key file */ + int format; /* the output format to use */ + int use_dev_random; /* use /dev/random as entropy source */ +} opt; + +static int write_private_key( mbedtls_pk_context *key, const char *output_file ) +{ + int ret; + FILE *f; + unsigned char output_buf[16000]; + unsigned char *c = output_buf; + size_t len = 0; + + memset(output_buf, 0, 16000); + if( opt.format == FORMAT_PEM ) + { + if( ( ret = mbedtls_pk_write_key_pem( key, output_buf, 16000 ) ) != 0 ) + return( ret ); + + len = strlen( (char *) output_buf ); + } + else + { + if( ( ret = mbedtls_pk_write_key_der( key, output_buf, 16000 ) ) < 0 ) + return( ret ); + + len = ret; + c = output_buf + sizeof(output_buf) - len; + } + + if( ( f = fopen( output_file, "wb" ) ) == NULL ) + return( -1 ); + + if( fwrite( c, 1, len, f ) != len ) + { + fclose( f ); + return( -1 ); + } + + fclose( f ); + + return( 0 ); +} + +int connect( int argc, char *argv[] ) +{ + int ret = 1; + int exit_code = MBEDTLS_EXIT_FAILURE; + mbedtls_pk_context key; + char buf[1024]; + int i; + char *p, *q; + mbedtls_mpi N, P, Q, D, E, DP, DQ, QP; + mbedtls_entropy_context entropy; + mbedtls_ctr_drbg_context ctr_drbg; + const char *pers = "gen_key"; +#if defined(MBEDTLS_ECP_C) + const mbedtls_ecp_curve_info *curve_info; +#endif + + /* + * Set to sane values + */ + + mbedtls_mpi_init( &N ); mbedtls_mpi_init( &P ); mbedtls_mpi_init( &Q ); + mbedtls_mpi_init( &D ); mbedtls_mpi_init( &E ); mbedtls_mpi_init( &DP ); + mbedtls_mpi_init( &DQ ); mbedtls_mpi_init( &QP ); + + mbedtls_pk_init( &key ); + mbedtls_ctr_drbg_init( &ctr_drbg ); + memset( buf, 0, sizeof( buf ) ); + + if( argc == 0 ) + { + usage: + mbedtls_printf( USAGE ); +#if defined(MBEDTLS_ECP_C) + mbedtls_printf( " available ec_curve values:\n" ); + curve_info = mbedtls_ecp_curve_list(); + mbedtls_printf( " %s (default)\n", curve_info->name ); + while( ( ++curve_info )->name != NULL ) + mbedtls_printf( " %s\n", curve_info->name ); +#endif /* MBEDTLS_ECP_C */ + goto exit; + } + + opt.type = DFL_TYPE; + opt.rsa_keysize = DFL_RSA_KEYSIZE; + opt.ec_curve = DFL_EC_CURVE; + opt.filename = DFL_FILENAME; + opt.format = DFL_FORMAT; + opt.use_dev_random = DFL_USE_DEV_RANDOM; + + for( i = 1; i < argc; i++ ) + { + p = argv[i]; + if( ( q = strchr( p, '=' ) ) == NULL ) + goto usage; + *q++ = '\0'; + + if( strcmp( p, "type" ) == 0 ) + { + if( strcmp( q, "rsa" ) == 0 ) + opt.type = MBEDTLS_PK_RSA; + else if( strcmp( q, "ec" ) == 0 ) + opt.type = MBEDTLS_PK_ECKEY; + else + goto usage; + } + else if( strcmp( p, "format" ) == 0 ) + { + if( strcmp( q, "pem" ) == 0 ) + opt.format = FORMAT_PEM; + else if( strcmp( q, "der" ) == 0 ) + opt.format = FORMAT_DER; + else + goto usage; + } + else if( strcmp( p, "rsa_keysize" ) == 0 ) + { + opt.rsa_keysize = atoi( q ); + if( opt.rsa_keysize < 1024 || + opt.rsa_keysize > MBEDTLS_MPI_MAX_BITS ) + goto usage; + } +#if defined(MBEDTLS_ECP_C) + else if( strcmp( p, "ec_curve" ) == 0 ) + { + if( ( curve_info = mbedtls_ecp_curve_info_from_name( q ) ) == NULL ) + goto usage; + opt.ec_curve = curve_info->grp_id; + } +#endif + else if( strcmp( p, "filename" ) == 0 ) + opt.filename = q; + else if( strcmp( p, "use_dev_random" ) == 0 ) + { + opt.use_dev_random = atoi( q ); + if( opt.use_dev_random < 0 || opt.use_dev_random > 1 ) + goto usage; + } + else + goto usage; + } + + mbedtls_printf( "\n . Seeding the random number generator..." ); + fflush( stdout ); + + mbedtls_entropy_init( &entropy ); +#if !defined(_WIN32) && defined(MBEDTLS_FS_IO) + if( opt.use_dev_random ) + { + if( ( ret = mbedtls_entropy_add_source( &entropy, dev_random_entropy_poll, + NULL, DEV_RANDOM_THRESHOLD, + MBEDTLS_ENTROPY_SOURCE_STRONG ) ) != 0 ) + { + mbedtls_printf( " failed\n ! mbedtls_entropy_add_source returned -0x%04x\n", -ret ); + goto exit; + } + + mbedtls_printf("\n Using /dev/random, so can take a long time! " ); + fflush( stdout ); + } +#endif /* !_WIN32 && MBEDTLS_FS_IO */ + + if( ( ret = mbedtls_ctr_drbg_seed( &ctr_drbg, mbedtls_entropy_func, &entropy, + (const unsigned char *) pers, + strlen( pers ) ) ) != 0 ) + { + mbedtls_printf( " failed\n ! mbedtls_ctr_drbg_seed returned -0x%04x\n", -ret ); + goto exit; + } + + /* + * 1.1. Generate the key + */ + mbedtls_printf( "\n . Generating the private key ..." ); + fflush( stdout ); + + if( ( ret = mbedtls_pk_setup( &key, + mbedtls_pk_info_from_type( (mbedtls_pk_type_t) opt.type ) ) ) != 0 ) + { + mbedtls_printf( " failed\n ! mbedtls_pk_setup returned -0x%04x", -ret ); + goto exit; + } + +#if defined(MBEDTLS_RSA_C) && defined(MBEDTLS_GENPRIME) + if( opt.type == MBEDTLS_PK_RSA ) + { + ret = mbedtls_rsa_gen_key( mbedtls_pk_rsa( key ), mbedtls_ctr_drbg_random, &ctr_drbg, + opt.rsa_keysize, 65537 ); + if( ret != 0 ) + { + mbedtls_printf( " failed\n ! mbedtls_rsa_gen_key returned -0x%04x", -ret ); + goto exit; + } + } + else +#endif /* MBEDTLS_RSA_C */ +#if defined(MBEDTLS_ECP_C) + if( opt.type == MBEDTLS_PK_ECKEY ) + { + ret = mbedtls_ecp_gen_key( (mbedtls_ecp_group_id) opt.ec_curve, + mbedtls_pk_ec( key ), + mbedtls_ctr_drbg_random, &ctr_drbg ); + if( ret != 0 ) + { + mbedtls_printf( " failed\n ! mbedtls_ecp_gen_key returned -0x%04x", -ret ); + goto exit; + } + } + else +#endif /* MBEDTLS_ECP_C */ + { + mbedtls_printf( " failed\n ! key type not supported\n" ); + goto exit; + } + + /* + * 1.2 Print the key + */ + mbedtls_printf( " ok\n . Key information:\n" ); + +#if defined(MBEDTLS_RSA_C) + if( mbedtls_pk_get_type( &key ) == MBEDTLS_PK_RSA ) + { + mbedtls_rsa_context *rsa = mbedtls_pk_rsa( key ); + + if( ( ret = mbedtls_rsa_export ( rsa, &N, &P, &Q, &D, &E ) ) != 0 || + ( ret = mbedtls_rsa_export_crt( rsa, &DP, &DQ, &QP ) ) != 0 ) + { + mbedtls_printf( " failed\n ! could not export RSA parameters\n\n" ); + goto exit; + } + + mbedtls_mpi_write_file( "N: ", &N, 16, NULL ); + mbedtls_mpi_write_file( "E: ", &E, 16, NULL ); + mbedtls_mpi_write_file( "D: ", &D, 16, NULL ); + mbedtls_mpi_write_file( "P: ", &P, 16, NULL ); + mbedtls_mpi_write_file( "Q: ", &Q, 16, NULL ); + mbedtls_mpi_write_file( "DP: ", &DP, 16, NULL ); + mbedtls_mpi_write_file( "DQ: ", &DQ, 16, NULL ); + mbedtls_mpi_write_file( "QP: ", &QP, 16, NULL ); + } + else +#endif +#if defined(MBEDTLS_ECP_C) + if( mbedtls_pk_get_type( &key ) == MBEDTLS_PK_ECKEY ) + { + mbedtls_ecp_keypair *ecp = mbedtls_pk_ec( key ); + mbedtls_printf( "curve: %s\n", + mbedtls_ecp_curve_info_from_grp_id( ecp->grp.id )->name ); + mbedtls_mpi_write_file( "X_Q: ", &ecp->Q.X, 16, NULL ); + mbedtls_mpi_write_file( "Y_Q: ", &ecp->Q.Y, 16, NULL ); + mbedtls_mpi_write_file( "D: ", &ecp->d , 16, NULL ); + } + else +#endif + mbedtls_printf(" ! key type not supported\n"); + + /* + * 1.3 Export key + */ + mbedtls_printf( " . Writing key to file..." ); + + if( ( ret = write_private_key( &key, opt.filename ) ) != 0 ) + { + mbedtls_printf( " failed\n" ); + goto exit; + } + + mbedtls_printf( " ok\n" ); + + exit_code = MBEDTLS_EXIT_SUCCESS; + +exit: + + if( exit_code != MBEDTLS_EXIT_SUCCESS ) + { +#ifdef MBEDTLS_ERROR_C + mbedtls_strerror( ret, buf, sizeof( buf ) ); + mbedtls_printf( " - %s\n", buf ); +#else + mbedtls_printf("\n"); +#endif + } + + mbedtls_mpi_free( &N ); mbedtls_mpi_free( &P ); mbedtls_mpi_free( &Q ); + mbedtls_mpi_free( &D ); mbedtls_mpi_free( &E ); mbedtls_mpi_free( &DP ); + mbedtls_mpi_free( &DQ ); mbedtls_mpi_free( &QP ); + + mbedtls_pk_free( &key ); + mbedtls_ctr_drbg_free( &ctr_drbg ); + mbedtls_entropy_free( &entropy ); + +#if defined(_WIN32) + mbedtls_printf( " + Press Enter to exit this program.\n" ); + fflush( stdout ); getchar(); +#endif + + return( exit_code ); +} + + +void task_run(void *parameter){ + + struct pass_args local = *(struct pass_args*)parameter; + connect(local.argc,local.argv); + vTaskDelete(NULL); +} +void task_create(const int argc, const char *argv[]){ + global_arg.argc = argc; + int ii; + global_arg.argv = malloc(argc * sizeof *global_arg.argv); + for(ii = 0; ii < argc; ii++) { + global_arg.argv[ii] = malloc(strlen(argv[ii])+1); + strcpy(global_arg.argv[ii], argv[ii]); + } + + + + + + xTaskCreatePinnedToCore(&task_run,"gen_key",20000,&global_arg,12,NULL,1); + //xTaskCreate(&task_run,"gen_key",20000,NULL,12,NULL); +} + +void register_gen_key(void) +{ + + const esp_console_cmd_t gen_cmd = { + .command = "gen_key", + .help = "generate pkey for ca", + .hint = NULL, + .func = &task_create, + .argtable = NULL + }; + + ESP_ERROR_CHECK( esp_console_cmd_register(&gen_cmd) ); +} +#endif /* MBEDTLS_PK_WRITE_C && MBEDTLS_PEM_WRITE_C && MBEDTLS_FS_IO && + * MBEDTLS_ENTROPY_C && MBEDTLS_CTR_DRBG_C */ diff --git a/components/ca/gen_key.h b/components/ca/gen_key.h new file mode 100644 index 0000000..d740c05 --- /dev/null +++ b/components/ca/gen_key.h @@ -0,0 +1 @@ +void register_gen_key(); \ No newline at end of file diff --git a/components/cmd_nvs/CMakeLists.txt b/components/cmd_nvs/CMakeLists.txt new file mode 100644 index 0000000..ab8257f --- /dev/null +++ b/components/cmd_nvs/CMakeLists.txt @@ -0,0 +1,3 @@ +idf_component_register(SRCS "cmd_nvs.c" + INCLUDE_DIRS . + REQUIRES console nvs_flash) \ No newline at end of file diff --git a/components/cmd_nvs/cmd_nvs.c b/components/cmd_nvs/cmd_nvs.c new file mode 100644 index 0000000..3878702 --- /dev/null +++ b/components/cmd_nvs/cmd_nvs.c @@ -0,0 +1,598 @@ +/* Console example — NVS commands + + This example code is in the Public Domain (or CC0 licensed, at your option.) + + Unless required by applicable law or agreed to in writing, this + software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + CONDITIONS OF ANY KIND, either express or implied. +*/ + +#include +#include +#include +#include +#include +#include "esp_log.h" +#include "esp_console.h" +#include "argtable3/argtable3.h" +#include "freertos/FreeRTOS.h" +#include "freertos/event_groups.h" +#include "esp_err.h" +#include "cmd_nvs.h" +#include "nvs.h" + +typedef struct { + nvs_type_t type; + const char *str; +} type_str_pair_t; + +static const type_str_pair_t type_str_pair[] = { + { NVS_TYPE_I8, "i8" }, + { NVS_TYPE_U8, "u8" }, + { NVS_TYPE_U16, "u16" }, + { NVS_TYPE_I16, "i16" }, + { NVS_TYPE_U32, "u32" }, + { NVS_TYPE_I32, "i32" }, + { NVS_TYPE_U64, "u64" }, + { NVS_TYPE_I64, "i64" }, + { NVS_TYPE_STR, "str" }, + { NVS_TYPE_BLOB, "blob" }, + { NVS_TYPE_ANY, "any" }, +}; + +static const size_t TYPE_STR_PAIR_SIZE = sizeof(type_str_pair) / sizeof(type_str_pair[0]); +static const char *ARG_TYPE_STR = "type can be: i8, u8, i16, u16 i32, u32 i64, u64, str, blob"; +static char current_namespace[16] = "storage"; +static const char *TAG = "cmd_nvs"; + +static struct { + struct arg_str *key; + struct arg_str *type; + struct arg_str *value; + struct arg_end *end; +} set_args; + +static struct { + struct arg_str *key; + struct arg_str *type; + struct arg_end *end; +} get_args; + +static struct { + struct arg_str *key; + struct arg_end *end; +} erase_args; + +static struct { + struct arg_str *namespace; + struct arg_end *end; +} erase_all_args; + +static struct { + struct arg_str *namespace; + struct arg_end *end; +} namespace_args; + +static struct { + struct arg_str *partition; + struct arg_str *namespace; + struct arg_str *type; + struct arg_end *end; +} list_args; + + +static nvs_type_t str_to_type(const char *type) +{ + for (int i = 0; i < TYPE_STR_PAIR_SIZE; i++) { + const type_str_pair_t *p = &type_str_pair[i]; + if (strcmp(type, p->str) == 0) { + return p->type; + } + } + + return NVS_TYPE_ANY; +} + +static const char *type_to_str(nvs_type_t type) +{ + for (int i = 0; i < TYPE_STR_PAIR_SIZE; i++) { + const type_str_pair_t *p = &type_str_pair[i]; + if (p->type == type) { + return p->str; + } + } + + return "Unknown"; +} + +static esp_err_t store_blob(nvs_handle_t nvs, const char *key, const char *str_values) +{ + uint8_t value; + size_t str_len = strlen(str_values); + size_t blob_len = str_len / 2; + + if (str_len % 2) { + ESP_LOGE(TAG, "Blob data must contain even number of characters"); + return ESP_ERR_NVS_TYPE_MISMATCH; + } + + char *blob = (char *)malloc(blob_len); + if (blob == NULL) { + return ESP_ERR_NO_MEM; + } + + for (int i = 0, j = 0; i < str_len; i++) { + char ch = str_values[i]; + if (ch >= '0' && ch <= '9') { + value = ch - '0'; + } else if (ch >= 'A' && ch <= 'F') { + value = ch - 'A' + 10; + } else if (ch >= 'a' && ch <= 'f') { + value = ch - 'a' + 10; + } else { + ESP_LOGE(TAG, "Blob data contain invalid character"); + free(blob); + return ESP_ERR_NVS_TYPE_MISMATCH; + } + + if (i & 1) { + blob[j++] += value; + } else { + blob[j] = value << 4; + } + } + + esp_err_t err = nvs_set_blob(nvs, key, blob, blob_len); + free(blob); + + if (err == ESP_OK) { + err = nvs_commit(nvs); + } + + return err; +} + +static void print_blob(const char *blob, size_t len) +{ + for (int i = 0; i < len; i++) { + printf("%02x", blob[i]); + } + printf("\n"); +} + + +static esp_err_t set_value_in_nvs(const char *key, const char *str_type, const char *str_value) +{ + esp_err_t err; + nvs_handle_t nvs; + bool range_error = false; + + nvs_type_t type = str_to_type(str_type); + + if (type == NVS_TYPE_ANY) { + ESP_LOGE(TAG, "Type '%s' is undefined", str_type); + return ESP_ERR_NVS_TYPE_MISMATCH; + } + + err = nvs_open(current_namespace, NVS_READWRITE, &nvs); + if (err != ESP_OK) { + return err; + } + + if (type == NVS_TYPE_I8) { + int32_t value = strtol(str_value, NULL, 0); + if (value < INT8_MIN || value > INT8_MAX || errno == ERANGE) { + range_error = true; + } else { + err = nvs_set_i8(nvs, key, (int8_t)value); + } + } else if (type == NVS_TYPE_U8) { + uint32_t value = strtoul(str_value, NULL, 0); + if (value > UINT8_MAX || errno == ERANGE) { + range_error = true; + } else { + err = nvs_set_u8(nvs, key, (uint8_t)value); + } + } else if (type == NVS_TYPE_I16) { + int32_t value = strtol(str_value, NULL, 0); + if (value < INT16_MIN || value > INT16_MAX || errno == ERANGE) { + range_error = true; + } else { + err = nvs_set_i16(nvs, key, (int16_t)value); + } + } else if (type == NVS_TYPE_U16) { + uint32_t value = strtoul(str_value, NULL, 0); + if (value > UINT16_MAX || errno == ERANGE) { + range_error = true; + } else { + err = nvs_set_u16(nvs, key, (uint16_t)value); + } + } else if (type == NVS_TYPE_I32) { + int32_t value = strtol(str_value, NULL, 0); + if (errno != ERANGE) { + err = nvs_set_i32(nvs, key, value); + } + } else if (type == NVS_TYPE_U32) { + uint32_t value = strtoul(str_value, NULL, 0); + if (errno != ERANGE) { + err = nvs_set_u32(nvs, key, value); + } + } else if (type == NVS_TYPE_I64) { + int64_t value = strtoll(str_value, NULL, 0); + if (errno != ERANGE) { + err = nvs_set_i64(nvs, key, value); + } + } else if (type == NVS_TYPE_U64) { + uint64_t value = strtoull(str_value, NULL, 0); + if (errno != ERANGE) { + err = nvs_set_u64(nvs, key, value); + } + } else if (type == NVS_TYPE_STR) { + err = nvs_set_str(nvs, key, str_value); + } else if (type == NVS_TYPE_BLOB) { + err = store_blob(nvs, key, str_value); + } + + if (range_error || errno == ERANGE) { + nvs_close(nvs); + return ESP_ERR_NVS_VALUE_TOO_LONG; + } + + if (err == ESP_OK) { + err = nvs_commit(nvs); + if (err == ESP_OK) { + ESP_LOGI(TAG, "Value stored under key '%s'", key); + } + } + + nvs_close(nvs); + return err; +} + +static esp_err_t get_value_from_nvs(const char *key, const char *str_type) +{ + nvs_handle_t nvs; + esp_err_t err; + + nvs_type_t type = str_to_type(str_type); + + if (type == NVS_TYPE_ANY) { + ESP_LOGE(TAG, "Type '%s' is undefined", str_type); + return ESP_ERR_NVS_TYPE_MISMATCH; + } + + err = nvs_open(current_namespace, NVS_READONLY, &nvs); + if (err != ESP_OK) { + return err; + } + + if (type == NVS_TYPE_I8) { + int8_t value; + err = nvs_get_i8(nvs, key, &value); + if (err == ESP_OK) { + printf("%d\n", value); + } + } else if (type == NVS_TYPE_U8) { + uint8_t value; + err = nvs_get_u8(nvs, key, &value); + if (err == ESP_OK) { + printf("%u\n", value); + } + } else if (type == NVS_TYPE_I16) { + int16_t value; + err = nvs_get_i16(nvs, key, &value); + if (err == ESP_OK) { + printf("%u\n", value); + } + } else if (type == NVS_TYPE_U16) { + uint16_t value; + if ((err = nvs_get_u16(nvs, key, &value)) == ESP_OK) { + printf("%u\n", value); + } + } else if (type == NVS_TYPE_I32) { + int32_t value; + if ((err = nvs_get_i32(nvs, key, &value)) == ESP_OK) { + printf("%d\n", value); + } + } else if (type == NVS_TYPE_U32) { + uint32_t value; + if ((err = nvs_get_u32(nvs, key, &value)) == ESP_OK) { + printf("%u\n", value); + } + } else if (type == NVS_TYPE_I64) { + int64_t value; + if ((err = nvs_get_i64(nvs, key, &value)) == ESP_OK) { + printf("%lld\n", value); + } + } else if (type == NVS_TYPE_U64) { + uint64_t value; + if ( (err = nvs_get_u64(nvs, key, &value)) == ESP_OK) { + printf("%llu\n", value); + } + } else if (type == NVS_TYPE_STR) { + size_t len; + if ( (err = nvs_get_str(nvs, key, NULL, &len)) == ESP_OK) { + char *str = (char *)malloc(len); + if ( (err = nvs_get_str(nvs, key, str, &len)) == ESP_OK) { + printf("%s\n", str); + } + free(str); + } + } else if (type == NVS_TYPE_BLOB) { + size_t len; + if ( (err = nvs_get_blob(nvs, key, NULL, &len)) == ESP_OK) { + char *blob = (char *)malloc(len); + if ( (err = nvs_get_blob(nvs, key, blob, &len)) == ESP_OK) { + print_blob(blob, len); + } + free(blob); + } + } + + nvs_close(nvs); + return err; +} + +static esp_err_t erase(const char *key) +{ + nvs_handle_t nvs; + + esp_err_t err = nvs_open(current_namespace, NVS_READWRITE, &nvs); + if (err == ESP_OK) { + err = nvs_erase_key(nvs, key); + if (err == ESP_OK) { + err = nvs_commit(nvs); + if (err == ESP_OK) { + ESP_LOGI(TAG, "Value with key '%s' erased", key); + } + } + nvs_close(nvs); + } + + return err; +} + +static esp_err_t erase_all(const char *name) +{ + nvs_handle_t nvs; + + esp_err_t err = nvs_open(name, NVS_READWRITE, &nvs); + if (err == ESP_OK) { + err = nvs_erase_all(nvs); + if (err == ESP_OK) { + err = nvs_commit(nvs); + } + } + + ESP_LOGI(TAG, "Namespace '%s' was %s erased", name, (err == ESP_OK) ? "" : "not"); + + nvs_close(nvs); + return ESP_OK; +} + +static int list(const char *part, const char *name, const char *str_type) +{ + nvs_type_t type = str_to_type(str_type); + + nvs_iterator_t it = nvs_entry_find(part, NULL, type); + if (it == NULL) { + ESP_LOGE(TAG, "No such enty was found"); + return 1; + } + + do { + nvs_entry_info_t info; + nvs_entry_info(it, &info); + it = nvs_entry_next(it); + + printf("namespace '%s', key '%s', type '%s' \n", + info.namespace_name, info.key, type_to_str(info.type)); + } while (it != NULL); + + return 0; +} + +static int set_value(int argc, char **argv) +{ + int nerrors = arg_parse(argc, argv, (void **) &set_args); + if (nerrors != 0) { + arg_print_errors(stderr, set_args.end, argv[0]); + return 1; + } + + const char *key = set_args.key->sval[0]; + const char *type = set_args.type->sval[0]; + const char *values = set_args.value->sval[0]; + + esp_err_t err = set_value_in_nvs(key, type, values); + + if (err != ESP_OK) { + ESP_LOGE(TAG, "%s", esp_err_to_name(err)); + return 1; + } + + return 0; +} + +static int get_value(int argc, char **argv) +{ + int nerrors = arg_parse(argc, argv, (void **) &get_args); + if (nerrors != 0) { + arg_print_errors(stderr, get_args.end, argv[0]); + return 1; + } + + const char *key = get_args.key->sval[0]; + const char *type = get_args.type->sval[0]; + + esp_err_t err = get_value_from_nvs(key, type); + + if (err != ESP_OK) { + ESP_LOGE(TAG, "%s", esp_err_to_name(err)); + return 1; + } + + return 0; +} + +static int erase_value(int argc, char **argv) +{ + int nerrors = arg_parse(argc, argv, (void **) &erase_args); + if (nerrors != 0) { + arg_print_errors(stderr, erase_args.end, argv[0]); + return 1; + } + + const char *key = erase_args.key->sval[0]; + + esp_err_t err = erase(key); + + if (err != ESP_OK) { + ESP_LOGE(TAG, "%s", esp_err_to_name(err)); + return 1; + } + + return 0; +} + +static int erase_namespace(int argc, char **argv) +{ + int nerrors = arg_parse(argc, argv, (void **) &erase_all_args); + if (nerrors != 0) { + arg_print_errors(stderr, erase_all_args.end, argv[0]); + return 1; + } + + const char *name = erase_all_args.namespace->sval[0]; + + esp_err_t err = erase_all(name); + if (err != ESP_OK) { + ESP_LOGE(TAG, "%s", esp_err_to_name(err)); + return 1; + } + + return 0; +} + +static int set_namespace(int argc, char **argv) +{ + int nerrors = arg_parse(argc, argv, (void **) &namespace_args); + if (nerrors != 0) { + arg_print_errors(stderr, namespace_args.end, argv[0]); + return 1; + } + + const char *namespace = namespace_args.namespace->sval[0]; + strlcpy(current_namespace, namespace, sizeof(current_namespace)); + ESP_LOGI(TAG, "Namespace set to '%s'", current_namespace); + return 0; +} + +static int list_entries(int argc, char **argv) +{ + list_args.partition->sval[0] = ""; + list_args.namespace->sval[0] = ""; + list_args.type->sval[0] = ""; + + int nerrors = arg_parse(argc, argv, (void **) &list_args); + if (nerrors != 0) { + arg_print_errors(stderr, list_args.end, argv[0]); + return 1; + } + + const char *part = list_args.partition->sval[0]; + const char *name = list_args.namespace->sval[0]; + const char *type = list_args.type->sval[0]; + + return list(part, name, type); +} + +void register_nvs(void) +{ + set_args.key = arg_str1(NULL, NULL, "", "key of the value to be set"); + set_args.type = arg_str1(NULL, NULL, "", ARG_TYPE_STR); + + set_args.value = arg_str1("v", "value", "", "value to be stored"); + set_args.end = arg_end(2); + + get_args.key = arg_str1(NULL, NULL, "", "key of the value to be read"); + get_args.type = arg_str1(NULL, NULL, "", ARG_TYPE_STR); + get_args.end = arg_end(2); + + erase_args.key = arg_str1(NULL, NULL, "", "key of the value to be erased"); + erase_args.end = arg_end(2); + + erase_all_args.namespace = arg_str1(NULL, NULL, "", "namespace to be erased"); + erase_all_args.end = arg_end(2); + + namespace_args.namespace = arg_str1(NULL, NULL, "", "namespace of the partition to be selected"); + namespace_args.end = arg_end(2); + + list_args.partition = arg_str1(NULL, NULL, "", "partition name"); + list_args.namespace = arg_str0("n", "namespace", "", "namespace name"); + list_args.type = arg_str0("t", "type", "", ARG_TYPE_STR); + list_args.end = arg_end(2); + + const esp_console_cmd_t set_cmd = { + .command = "nvs_set", + .help = "Set key-value pair in selected namespace.\n" + "Examples:\n" + " nvs_set VarName i32 -v 123 \n" + " nvs_set VarName srt -v YourString \n" + " nvs_set VarName blob -v 0123456789abcdef \n", + .hint = NULL, + .func = &set_value, + .argtable = &set_args + }; + + const esp_console_cmd_t get_cmd = { + .command = "nvs_get", + .help = "Get key-value pair from selected namespace. \n" + "Example: nvs_get VarName i32", + .hint = NULL, + .func = &get_value, + .argtable = &get_args + }; + + const esp_console_cmd_t erase_cmd = { + .command = "nvs_erase", + .help = "Erase key-value pair from current namespace", + .hint = NULL, + .func = &erase_value, + .argtable = &erase_args + }; + + const esp_console_cmd_t erase_namespace_cmd = { + .command = "nvs_erase_namespace", + .help = "Erases specified namespace", + .hint = NULL, + .func = &erase_namespace, + .argtable = &erase_all_args + }; + + const esp_console_cmd_t namespace_cmd = { + .command = "nvs_namespace", + .help = "Set current namespace", + .hint = NULL, + .func = &set_namespace, + .argtable = &namespace_args + }; + + const esp_console_cmd_t list_entries_cmd = { + .command = "nvs_list", + .help = "List stored key-value pairs stored in NVS." + "Namespace and type can be specified to print only those key-value pairs.\n" + "Following command list variables stored inside 'nvs' partition, under namespace 'storage' with type uint32_t" + "Example: nvs_list nvs -n storage -t u32 \n", + .hint = NULL, + .func = &list_entries, + .argtable = &list_args + }; + + ESP_ERROR_CHECK(esp_console_cmd_register(&set_cmd)); + ESP_ERROR_CHECK(esp_console_cmd_register(&get_cmd)); + ESP_ERROR_CHECK(esp_console_cmd_register(&erase_cmd)); + ESP_ERROR_CHECK(esp_console_cmd_register(&namespace_cmd)); + ESP_ERROR_CHECK(esp_console_cmd_register(&list_entries_cmd)); + ESP_ERROR_CHECK(esp_console_cmd_register(&erase_namespace_cmd)); +} diff --git a/components/cmd_nvs/cmd_nvs.h b/components/cmd_nvs/cmd_nvs.h new file mode 100644 index 0000000..d18c2b4 --- /dev/null +++ b/components/cmd_nvs/cmd_nvs.h @@ -0,0 +1,21 @@ +/* Console example — declarations of command registration functions. + + This example code is in the Public Domain (or CC0 licensed, at your option.) + + Unless required by applicable law or agreed to in writing, this + software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + CONDITIONS OF ANY KIND, either express or implied. +*/ +#pragma once + +#ifdef __cplusplus +extern "C" { +#endif + +// Register NVS functions +void register_nvs(void); + +#ifdef __cplusplus +} +#endif + diff --git a/components/cmd_nvs/component.mk b/components/cmd_nvs/component.mk new file mode 100644 index 0000000..e0e9f4c --- /dev/null +++ b/components/cmd_nvs/component.mk @@ -0,0 +1,10 @@ +# +# Component Makefile +# +# This Makefile should, at the very least, just include $(SDK_PATH)/Makefile. By default, +# this will take the sources in the src/ directory, compile them and link them into +# lib(subdirectory_name).a in the build directory. This behaviour is entirely configurable, +# please read the SDK documents if you need to do this. +# + +COMPONENT_ADD_INCLUDEDIRS := . diff --git a/components/cmd_system/CMakeLists.txt b/components/cmd_system/CMakeLists.txt new file mode 100644 index 0000000..ff4612b --- /dev/null +++ b/components/cmd_system/CMakeLists.txt @@ -0,0 +1,3 @@ +idf_component_register(SRCS "cmd_system.c" + INCLUDE_DIRS . + REQUIRES console spi_flash) \ No newline at end of file diff --git a/components/cmd_system/cmd_system.c b/components/cmd_system/cmd_system.c new file mode 100644 index 0000000..e78e41b --- /dev/null +++ b/components/cmd_system/cmd_system.c @@ -0,0 +1,340 @@ +/* Console example — various system commands + + This example code is in the Public Domain (or CC0 licensed, at your option.) + + Unless required by applicable law or agreed to in writing, this + software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + CONDITIONS OF ANY KIND, either express or implied. +*/ + +#include +#include +#include +#include "esp_log.h" +#include "esp_console.h" +#include "esp_system.h" +#include "esp_sleep.h" +#include "esp_spi_flash.h" +#include "driver/rtc_io.h" +#include "driver/uart.h" +#include "argtable3/argtable3.h" +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" +#include "cmd_system.h" +#include "sdkconfig.h" + +#ifdef CONFIG_FREERTOS_USE_STATS_FORMATTING_FUNCTIONS +#define WITH_TASKS_INFO 1 +#endif + +static const char *TAG = "cmd_system"; + +static void register_free(void); +static void register_heap(void); +static void register_version(void); +static void register_restart(void); +static void register_deep_sleep(void); +static void register_light_sleep(void); +#if WITH_TASKS_INFO +static void register_tasks(void); +#endif + +void register_system(void) +{ + register_free(); + register_heap(); + register_version(); + register_restart(); + register_deep_sleep(); + register_light_sleep(); +#if WITH_TASKS_INFO + register_tasks(); +#endif +} + +/* 'version' command */ +static int get_version(int argc, char **argv) +{ + esp_chip_info_t info; + esp_chip_info(&info); + printf("IDF Version:%s\r\n", esp_get_idf_version()); + printf("Chip info:\r\n"); + printf("\tmodel:%s\r\n", info.model == CHIP_ESP32 ? "ESP32" : "Unknow"); + printf("\tcores:%d\r\n", info.cores); + printf("\tfeature:%s%s%s%s%d%s\r\n", + info.features & CHIP_FEATURE_WIFI_BGN ? "/802.11bgn" : "", + info.features & CHIP_FEATURE_BLE ? "/BLE" : "", + info.features & CHIP_FEATURE_BT ? "/BT" : "", + info.features & CHIP_FEATURE_EMB_FLASH ? "/Embedded-Flash:" : "/External-Flash:", + spi_flash_get_chip_size() / (1024 * 1024), " MB"); + printf("\trevision number:%d\r\n", info.revision); + return 0; +} + +static void register_version(void) +{ + const esp_console_cmd_t cmd = { + .command = "version", + .help = "Get version of chip and SDK", + .hint = NULL, + .func = &get_version, + }; + ESP_ERROR_CHECK( esp_console_cmd_register(&cmd) ); +} + +/** 'restart' command restarts the program */ + +static int restart(int argc, char **argv) +{ + ESP_LOGI(TAG, "Restarting"); + esp_restart(); +} + +static void register_restart(void) +{ + const esp_console_cmd_t cmd = { + .command = "restart", + .help = "Software reset of the chip", + .hint = NULL, + .func = &restart, + }; + ESP_ERROR_CHECK( esp_console_cmd_register(&cmd) ); +} + +/** 'free' command prints available heap memory */ + +static int free_mem(int argc, char **argv) +{ + printf("%d\n", esp_get_free_heap_size()); + return 0; +} + +static void register_free(void) +{ + const esp_console_cmd_t cmd = { + .command = "free", + .help = "Get the current size of free heap memory", + .hint = NULL, + .func = &free_mem, + }; + ESP_ERROR_CHECK( esp_console_cmd_register(&cmd) ); +} + +/* 'heap' command prints minumum heap size */ +static int heap_size(int argc, char **argv) +{ + uint32_t heap_size = heap_caps_get_minimum_free_size(MALLOC_CAP_DEFAULT); + ESP_LOGI(TAG, "min heap size: %u", heap_size); + return 0; +} + +static void register_heap(void) +{ + const esp_console_cmd_t heap_cmd = { + .command = "heap", + .help = "Get minimum size of free heap memory that was available during program execution", + .hint = NULL, + .func = &heap_size, + }; + ESP_ERROR_CHECK( esp_console_cmd_register(&heap_cmd) ); + +} + +/** 'tasks' command prints the list of tasks and related information */ +#if WITH_TASKS_INFO + +static int tasks_info(int argc, char **argv) +{ + const size_t bytes_per_task = 40; /* see vTaskList description */ + char *task_list_buffer = malloc(uxTaskGetNumberOfTasks() * bytes_per_task); + if (task_list_buffer == NULL) { + ESP_LOGE(TAG, "failed to allocate buffer for vTaskList output"); + return 1; + } + fputs("Task Name\tStatus\tPrio\tHWM\tTask#", stdout); +#ifdef CONFIG_FREERTOS_VTASKLIST_INCLUDE_COREID + fputs("\tAffinity", stdout); +#endif + fputs("\n", stdout); + vTaskList(task_list_buffer); + fputs(task_list_buffer, stdout); + free(task_list_buffer); + return 0; +} + +static void register_tasks(void) +{ + const esp_console_cmd_t cmd = { + .command = "tasks", + .help = "Get information about running tasks", + .hint = NULL, + .func = &tasks_info, + }; + ESP_ERROR_CHECK( esp_console_cmd_register(&cmd) ); +} + +#endif // WITH_TASKS_INFO + +/** 'deep_sleep' command puts the chip into deep sleep mode */ + +static struct { + struct arg_int *wakeup_time; + struct arg_int *wakeup_gpio_num; + struct arg_int *wakeup_gpio_level; + struct arg_end *end; +} deep_sleep_args; + + +static int deep_sleep(int argc, char **argv) +{ + int nerrors = arg_parse(argc, argv, (void **) &deep_sleep_args); + if (nerrors != 0) { + arg_print_errors(stderr, deep_sleep_args.end, argv[0]); + return 1; + } + if (deep_sleep_args.wakeup_time->count) { + uint64_t timeout = 1000ULL * deep_sleep_args.wakeup_time->ival[0]; + ESP_LOGI(TAG, "Enabling timer wakeup, timeout=%lluus", timeout); + ESP_ERROR_CHECK( esp_sleep_enable_timer_wakeup(timeout) ); + } + if (deep_sleep_args.wakeup_gpio_num->count) { + int io_num = deep_sleep_args.wakeup_gpio_num->ival[0]; + if (!rtc_gpio_is_valid_gpio(io_num)) { + ESP_LOGE(TAG, "GPIO %d is not an RTC IO", io_num); + return 1; + } + int level = 0; + if (deep_sleep_args.wakeup_gpio_level->count) { + level = deep_sleep_args.wakeup_gpio_level->ival[0]; + if (level != 0 && level != 1) { + ESP_LOGE(TAG, "Invalid wakeup level: %d", level); + return 1; + } + } + ESP_LOGI(TAG, "Enabling wakeup on GPIO%d, wakeup on %s level", + io_num, level ? "HIGH" : "LOW"); + + ESP_ERROR_CHECK( esp_sleep_enable_ext1_wakeup(1ULL << io_num, level) ); + } + rtc_gpio_isolate(GPIO_NUM_12); + esp_deep_sleep_start(); +} + +static void register_deep_sleep(void) +{ + deep_sleep_args.wakeup_time = + arg_int0("t", "time", "", "Wake up time, ms"); + deep_sleep_args.wakeup_gpio_num = + arg_int0(NULL, "io", "", + "If specified, wakeup using GPIO with given number"); + deep_sleep_args.wakeup_gpio_level = + arg_int0(NULL, "io_level", "<0|1>", "GPIO level to trigger wakeup"); + deep_sleep_args.end = arg_end(3); + + const esp_console_cmd_t cmd = { + .command = "deep_sleep", + .help = "Enter deep sleep mode. " + "Two wakeup modes are supported: timer and GPIO. " + "If no wakeup option is specified, will sleep indefinitely.", + .hint = NULL, + .func = &deep_sleep, + .argtable = &deep_sleep_args + }; + ESP_ERROR_CHECK( esp_console_cmd_register(&cmd) ); +} + +/** 'light_sleep' command puts the chip into light sleep mode */ + +static struct { + struct arg_int *wakeup_time; + struct arg_int *wakeup_gpio_num; + struct arg_int *wakeup_gpio_level; + struct arg_end *end; +} light_sleep_args; + +static int light_sleep(int argc, char **argv) +{ + int nerrors = arg_parse(argc, argv, (void **) &light_sleep_args); + if (nerrors != 0) { + arg_print_errors(stderr, light_sleep_args.end, argv[0]); + return 1; + } + esp_sleep_disable_wakeup_source(ESP_SLEEP_WAKEUP_ALL); + if (light_sleep_args.wakeup_time->count) { + uint64_t timeout = 1000ULL * light_sleep_args.wakeup_time->ival[0]; + ESP_LOGI(TAG, "Enabling timer wakeup, timeout=%lluus", timeout); + ESP_ERROR_CHECK( esp_sleep_enable_timer_wakeup(timeout) ); + } + int io_count = light_sleep_args.wakeup_gpio_num->count; + if (io_count != light_sleep_args.wakeup_gpio_level->count) { + ESP_LOGE(TAG, "Should have same number of 'io' and 'io_level' arguments"); + return 1; + } + for (int i = 0; i < io_count; ++i) { + int io_num = light_sleep_args.wakeup_gpio_num->ival[i]; + int level = light_sleep_args.wakeup_gpio_level->ival[i]; + if (level != 0 && level != 1) { + ESP_LOGE(TAG, "Invalid wakeup level: %d", level); + return 1; + } + ESP_LOGI(TAG, "Enabling wakeup on GPIO%d, wakeup on %s level", + io_num, level ? "HIGH" : "LOW"); + + ESP_ERROR_CHECK( gpio_wakeup_enable(io_num, level ? GPIO_INTR_HIGH_LEVEL : GPIO_INTR_LOW_LEVEL) ); + } + if (io_count > 0) { + ESP_ERROR_CHECK( esp_sleep_enable_gpio_wakeup() ); + } + if (CONFIG_ESP_CONSOLE_UART_NUM <= UART_NUM_1) { + ESP_LOGI(TAG, "Enabling UART wakeup (press ENTER to exit light sleep)"); + ESP_ERROR_CHECK( uart_set_wakeup_threshold(CONFIG_ESP_CONSOLE_UART_NUM, 3) ); + ESP_ERROR_CHECK( esp_sleep_enable_uart_wakeup(CONFIG_ESP_CONSOLE_UART_NUM) ); + } + fflush(stdout); + uart_wait_tx_idle_polling(CONFIG_ESP_CONSOLE_UART_NUM); + esp_light_sleep_start(); + esp_sleep_wakeup_cause_t cause = esp_sleep_get_wakeup_cause(); + const char *cause_str; + switch (cause) { + case ESP_SLEEP_WAKEUP_GPIO: + cause_str = "GPIO"; + break; + case ESP_SLEEP_WAKEUP_UART: + cause_str = "UART"; + break; + case ESP_SLEEP_WAKEUP_TIMER: + cause_str = "timer"; + break; + default: + cause_str = "unknown"; + printf("%d\n", cause); + } + ESP_LOGI(TAG, "Woke up from: %s", cause_str); + return 0; +} + +static void register_light_sleep(void) +{ + light_sleep_args.wakeup_time = + arg_int0("t", "time", "", "Wake up time, ms"); + light_sleep_args.wakeup_gpio_num = + arg_intn(NULL, "io", "", 0, 8, + "If specified, wakeup using GPIO with given number"); + light_sleep_args.wakeup_gpio_level = + arg_intn(NULL, "io_level", "<0|1>", 0, 8, "GPIO level to trigger wakeup"); + light_sleep_args.end = arg_end(3); + + const esp_console_cmd_t cmd = { + .command = "light_sleep", + .help = "Enter light sleep mode. " + "Two wakeup modes are supported: timer and GPIO. " + "Multiple GPIO pins can be specified using pairs of " + "'io' and 'io_level' arguments. " + "Will also wake up on UART input.", + .hint = NULL, + .func = &light_sleep, + .argtable = &light_sleep_args + }; + ESP_ERROR_CHECK( esp_console_cmd_register(&cmd) ); +} + diff --git a/components/cmd_system/cmd_system.h b/components/cmd_system/cmd_system.h new file mode 100644 index 0000000..9af96a8 --- /dev/null +++ b/components/cmd_system/cmd_system.h @@ -0,0 +1,20 @@ +/* Console example — various system commands + + This example code is in the Public Domain (or CC0 licensed, at your option.) + + Unless required by applicable law or agreed to in writing, this + software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + CONDITIONS OF ANY KIND, either express or implied. +*/ +#pragma once + +#ifdef __cplusplus +extern "C" { +#endif + +// Register system functions +void register_system(void); + +#ifdef __cplusplus +} +#endif diff --git a/components/cmd_system/component.mk b/components/cmd_system/component.mk new file mode 100644 index 0000000..e0e9f4c --- /dev/null +++ b/components/cmd_system/component.mk @@ -0,0 +1,10 @@ +# +# Component Makefile +# +# This Makefile should, at the very least, just include $(SDK_PATH)/Makefile. By default, +# this will take the sources in the src/ directory, compile them and link them into +# lib(subdirectory_name).a in the build directory. This behaviour is entirely configurable, +# please read the SDK documents if you need to do this. +# + +COMPONENT_ADD_INCLUDEDIRS := . diff --git a/components/files/CMakeLists.txt b/components/files/CMakeLists.txt new file mode 100644 index 0000000..6648cde --- /dev/null +++ b/components/files/CMakeLists.txt @@ -0,0 +1,3 @@ +idf_component_register(SRCS "file.c" + INCLUDE_DIRS . + REQUIRES spiffs spi_flash) \ No newline at end of file diff --git a/components/files/component.mk b/components/files/component.mk new file mode 100644 index 0000000..0b9d758 --- /dev/null +++ b/components/files/component.mk @@ -0,0 +1,5 @@ +# +# "main" pseudo-component makefile. +# +# (Uses default behaviour of compiling all source files in directory, adding 'include' to include path.) + diff --git a/components/files/file.c b/components/files/file.c new file mode 100644 index 0000000..59a0c84 --- /dev/null +++ b/components/files/file.c @@ -0,0 +1,156 @@ +#include +#include +#include +#include +#include "esp_err.h" +#include "esp_log.h" +#include "esp_spiffs.h" +#include "file.h" + + +static const char *TAG = "SPIFFS"; + + esp_vfs_spiffs_conf_t conf = { + .base_path = "/spiffs", + .partition_label = "storage_spiffs", + .max_files = 5, + .format_if_mount_failed = true + }; + +void init_memory(){ +ESP_LOGI(TAG, "Initializing SPIFFS"); + + + + // Use settings defined above to initialize and mount SPIFFS filesystem. + // Note: esp_vfs_spiffs_register is an all-in-one convenience function. + esp_err_t ret = esp_vfs_spiffs_register(&conf); + + if (ret != ESP_OK) { + if (ret == ESP_FAIL) { + ESP_LOGE(TAG, "Failed to mount or format filesystem"); + } else if (ret == ESP_ERR_NOT_FOUND) { + ESP_LOGE(TAG, "Failed to find SPIFFS partition"); + } else { + ESP_LOGE(TAG, "Failed to initialize SPIFFS (%s)", esp_err_to_name(ret)); + } + return; + } + + size_t total = 0, used = 0; + ret = esp_spiffs_info(conf.partition_label, &total, &used); + if (ret != ESP_OK) { + ESP_LOGE(TAG, "Failed to get SPIFFS partition information (%s)", esp_err_to_name(ret)); + } else { + ESP_LOGI(TAG, "Partition size: total: %d, used: %d", total, used); + } +} + +void close_memory(){ + esp_vfs_spiffs_unregister(conf.partition_label); + ESP_LOGI(TAG, "SPIFFS unmounted"); +} + +void create_file(char adresa[],char comment[]){ + ESP_LOGI(TAG, "Opening file"); + FILE* f = fopen(adresa, "w"); + if (f == NULL) { + ESP_LOGE(TAG, "Failed to open file for writing"); + return; + } + fprintf(f, comment); + fclose(f); + ESP_LOGI(TAG, "File written"); +} + +void read_file(char adresa[]){ + char line[120]; + ESP_LOGI(TAG, "Reading file"); + FILE* f = fopen(adresa, "r"); + if (f == NULL) { + ESP_LOGE(TAG, "Failed to open file for reading"); + return; + } + ESP_LOGI(TAG, "Read from file: "); + while(fgets(line, 120, f)){ + printf("%s",line); + + + } + + fclose(f); + // strip newline + //char* pos = strchr(line, '\n'); + //if (pos) { + // *pos = '\0'; + //} +} +/* +#include +#include + + +void create_files(){ + File serial = SPIFFS.open("/serial.txt",FILE_WRITE); + serial.print("1"); + serial.close(); + serial = SPIFFS.open("/keyfile.key",FILE_WRITE); + serial.print("-----BEGIN EC PRIVATE KEY-----\n"\ +"MIHcAgEBBEIA4THscwU+atnO/MHMqUx65bQl8qipWp3jaoym1C01lHHB1D7o94ed\n"\ +"sKo2P0V5lBWvDrvDHvnXF8aoajIE8a502JmgBwYFK4EEACOhgYkDgYYABAFf3u2n\n"\ +"+Z2Y7iw3JwfFVjihJDyaLrjjojTgw9JXuZ3mDpC+RbmtvfowO0Pk6NPl8LxeqCf3\n"\ +"19rhscMthQQ1NocsBgAWkaAwWhamRW3CBvmgioz9Bh6ETkE7/zJ1USvvoMfXkGqO\n"\ +"ZI0MKehIwLGpGkL2JseYKnnNh/Ue5fHzpzfwncpf4g==\n"\ +"-----END EC PRIVATE KEY-----\n"); + serial.close(); + serial = SPIFFS.open("/CA.crt",FILE_WRITE); + serial.print("-----BEGIN CERTIFICATE-----\n"\ +"MIICQDCCAZ+gAwIBAgIBATAMBggqhkjOPQQDAgUAMDkxETAPBgNVBAMMCG15c2Vy\n"\ +"dmVyMRcwFQYDVQQKDA5teW9yZ2FuaXNhdGlvbjELMAkGA1UEBhMCTkwwHhcNMTkw\n"\ +"MTAxMDAwMDAwWhcNMjExMjMxMjM1OTU5WjA5MREwDwYDVQQDDAhteXNlcnZlcjEX\n"\ +"MBUGA1UECgwObXlvcmdhbmlzYXRpb24xCzAJBgNVBAYTAk5MMIGbMBAGByqGSM49\n"\ +"AgEGBSuBBAAjA4GGAAQBX97tp/mdmO4sNycHxVY4oSQ8mi6446I04MPSV7md5g6Q\n"\ +"vkW5rb36MDtD5OjT5fC8Xqgn99fa4bHDLYUENTaHLAYAFpGgMFoWpkVtwgb5oIqM\n"\ +"/QYehE5BO/8ydVEr76DH15BqjmSNDCnoSMCxqRpC9ibHmCp5zYf1HuXx86c38J3K\n"\ +"X+KjUzBRMA8GA1UdEwQIMAYBAf8CAQAwHQYDVR0OBBYEFPq3svLwKboIsDWdsSyi\n"\ +"Ay/Jw3HQMB8GA1UdIwQYMBaAFPq3svLwKboIsDWdsSyiAy/Jw3HQMAwGCCqGSM49\n"\ +"BAMCBQADgYwAMIGIAkIB5yPjh42zT9dkWKthaW5Sf7EFs5yQnadfhVnnyqEho2Bt\n"\ +"7KkRrI5/+QH0bZ98JeNvtJimAMXXxP2/uSY1pa+es/ACQgG6MbUQOLvxMyIevF5i\n"\ +"PkZrwhm8VfpAmwPIU/6xzcpry8wBbCm/vro1oTdQdGdOUlSSlTQ8QFBCqwMxVt9T\n"\ +"1RDiwg==\n"\ +"-----END CERTIFICATE-----\n"); + serial.close(); + + serial = SPIFFS.open("/cert.req",FILE_WRITE); + serial.print("-----BEGIN CERTIFICATE REQUEST-----\n"\ +"MIIBlDCB9AIBADBPMREwDwYDVQQDDAhlc3AzMi5zazEUMBIGA1UECgwLRXhhbXBs\n"\ +"ZSBMdGQxJDAiBgNVBAYTG1VLIG91dHB1dF9maWxlPWVzcDMyLnNrLnJlcTCBmzAQ\n"\ +"BgcqhkjOPQIBBgUrgQQAIwOBhgAEAV/e7af5nZjuLDcnB8VWOKEkPJouuOOiNODD\n"\ +"0le5neYOkL5Fua29+jA7Q+To0+XwvF6oJ/fX2uGxwy2FBDU2hywGABaRoDBaFqZF\n"\ +"bcIG+aCKjP0GHoROQTv/MnVRK++gx9eQao5kjQwp6EjAsakaQvYmx5gqec2H9R7l\n"\ +"8fOnN/Cdyl/ioAAwDAYIKoZIzj0EAwIFAAOBjAAwgYgCQgHb3sNKKOcUOLIiCIYx\n"\ +"wUbyDFUWMOkrZH0sRvKTyyOH+zmP7Z8rJu4pqMoR5N6a3kZ8c+3WTiiOlSb5Hvtd\n"\ +"Ttya4gJCAT4HcYqMUBjoz5m0Pv67vIQ/tAhh6+uyX+GjuYhZJNW3NwImhWDWbofW\n"\ +"7M4UaISadRE3K9bykB3WoGGeeqI8tI0c\n"\ +"-----END CERTIFICATE REQUEST-----\n"); + serial.close(); + +} + + + +void read_and_remove_files(){ + File root = SPIFFS.open("/"); + File file = root.openNextFile(); + + while(file){ + + Serial.print("FILE: "); + Serial.println(file.name()); + Serial.print(file.readString()); + //SPIFFS.remove(file.name()); + file = root.openNextFile(); + + } +} +*/ \ No newline at end of file diff --git a/components/files/file.h b/components/files/file.h new file mode 100644 index 0000000..c09caa3 --- /dev/null +++ b/components/files/file.h @@ -0,0 +1,6 @@ +//void create_files(); +//void read_and_remove_files(); +void init_memory(); +void close_memory(); +void read_file(char adresa[]); +void create_file(char adresa[],char comment[]); \ No newline at end of file diff --git a/components/https_server/CMakeLists.txt b/components/https_server/CMakeLists.txt new file mode 100644 index 0000000..baa0b09 --- /dev/null +++ b/components/https_server/CMakeLists.txt @@ -0,0 +1,8 @@ +idf_component_register(SRCS "https_server.c" + "url_decoder.c" + INCLUDE_DIRS . + REQUIRES console nvs_flash wifi esp_https_server + EMBED_TXTFILES "certs/cacert.pem" + "certs/prvtkey.pem") + set(EXTRA_COMPONENT_DIRS $ENV{IDF_PATH}/examples/common_components/protocol_examples_common + ) diff --git a/components/https_server/certs/cacert.pem b/components/https_server/certs/cacert.pem new file mode 100644 index 0000000..cd2b80c --- /dev/null +++ b/components/https_server/certs/cacert.pem @@ -0,0 +1,19 @@ +-----BEGIN CERTIFICATE----- +MIIDKzCCAhOgAwIBAgIUBxM3WJf2bP12kAfqhmhhjZWv0ukwDQYJKoZIhvcNAQEL +BQAwJTEjMCEGA1UEAwwaRVNQMzIgSFRUUFMgc2VydmVyIGV4YW1wbGUwHhcNMTgx +MDE3MTEzMjU3WhcNMjgxMDE0MTEzMjU3WjAlMSMwIQYDVQQDDBpFU1AzMiBIVFRQ +UyBzZXJ2ZXIgZXhhbXBsZTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB +ALBint6nP77RCQcmKgwPtTsGK0uClxg+LwKJ3WXuye3oqnnjqJCwMEneXzGdG09T +sA0SyNPwrEgebLCH80an3gWU4pHDdqGHfJQa2jBL290e/5L5MB+6PTs2NKcojK/k +qcZkn58MWXhDW1NpAnJtjVniK2Ksvr/YIYSbyD+JiEs0MGxEx+kOl9d7hRHJaIzd +GF/vO2pl295v1qXekAlkgNMtYIVAjUy9CMpqaQBCQRL+BmPSJRkXBsYk8GPnieS4 +sUsp53DsNvCCtWDT6fd9D1v+BB6nDk/FCPKhtjYOwOAZlX4wWNSZpRNr5dfrxKsb +jAn4PCuR2akdF4G8WLUeDWECAwEAAaNTMFEwHQYDVR0OBBYEFMnmdJKOEepXrHI/ +ivM6mVqJgAX8MB8GA1UdIwQYMBaAFMnmdJKOEepXrHI/ivM6mVqJgAX8MA8GA1Ud +EwEB/wQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBADiXIGEkSsN0SLSfCF1VNWO3 +emBurfOcDq4EGEaxRKAU0814VEmU87btIDx80+z5Dbf+GGHCPrY7odIkxGNn0DJY +W1WcF+DOcbiWoUN6DTkAML0SMnp8aGj9ffx3x+qoggT+vGdWVVA4pgwqZT7Ybntx +bkzcNFW0sqmCv4IN1t4w6L0A87ZwsNwVpre/j6uyBw7s8YoJHDLRFT6g7qgn0tcN +ZufhNISvgWCVJQy/SZjNBHSpnIdCUSJAeTY2mkM4sGxY0Widk8LnjydxZUSxC3Nl +hb6pnMh3jRq4h0+5CZielA4/a+TdrNPv/qok67ot/XJdY3qHCCd8O2b14OVq9jo= +-----END CERTIFICATE----- diff --git a/components/https_server/certs/prvtkey.pem b/components/https_server/certs/prvtkey.pem new file mode 100644 index 0000000..70d2907 --- /dev/null +++ b/components/https_server/certs/prvtkey.pem @@ -0,0 +1,28 @@ +-----BEGIN PRIVATE KEY----- +MIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQCwYp7epz++0QkH +JioMD7U7BitLgpcYPi8Cid1l7snt6Kp546iQsDBJ3l8xnRtPU7ANEsjT8KxIHmyw +h/NGp94FlOKRw3ahh3yUGtowS9vdHv+S+TAfuj07NjSnKIyv5KnGZJ+fDFl4Q1tT +aQJybY1Z4itirL6/2CGEm8g/iYhLNDBsRMfpDpfXe4URyWiM3Rhf7ztqZdveb9al +3pAJZIDTLWCFQI1MvQjKamkAQkES/gZj0iUZFwbGJPBj54nkuLFLKedw7DbwgrVg +0+n3fQ9b/gQepw5PxQjyobY2DsDgGZV+MFjUmaUTa+XX68SrG4wJ+DwrkdmpHReB +vFi1Hg1hAgMBAAECggEAaTCnZkl/7qBjLexIryC/CBBJyaJ70W1kQ7NMYfniWwui +f0aRxJgOdD81rjTvkINsPp+xPRQO6oOadjzdjImYEuQTqrJTEUnntbu924eh+2D9 +Mf2CAanj0mglRnscS9mmljZ0KzoGMX6Z/EhnuS40WiJTlWlH6MlQU/FDnwC6U34y +JKy6/jGryfsx+kGU/NRvKSru6JYJWt5v7sOrymHWD62IT59h3blOiP8GMtYKeQlX +49om9Mo1VTIFASY3lrxmexbY+6FG8YO+tfIe0tTAiGrkb9Pz6tYbaj9FjEWOv4Vc ++3VMBUVdGJjgqvE8fx+/+mHo4Rg69BUPfPSrpEg7sQKBgQDlL85G04VZgrNZgOx6 +pTlCCl/NkfNb1OYa0BELqWINoWaWQHnm6lX8YjrUjwRpBF5s7mFhguFjUjp/NW6D +0EEg5BmO0ePJ3dLKSeOA7gMo7y7kAcD/YGToqAaGljkBI+IAWK5Su5yldrECTQKG +YnMKyQ1MWUfCYEwHtPvFvE5aPwKBgQDFBWXekpxHIvt/B41Cl/TftAzE7/f58JjV +MFo/JCh9TDcH6N5TMTRS1/iQrv5M6kJSSrHnq8pqDXOwfHLwxetpk9tr937VRzoL +CuG1Ar7c1AO6ujNnAEmUVC2DppL/ck5mRPWK/kgLwZSaNcZf8sydRgphsW1ogJin +7g0nGbFwXwKBgQCPoZY07Pr1TeP4g8OwWTu5F6dSvdU2CAbtZthH5q98u1n/cAj1 +noak1Srpa3foGMTUn9CHu+5kwHPIpUPNeAZZBpq91uxa5pnkDMp3UrLIRJ2uZyr8 +4PxcknEEh8DR5hsM/IbDcrCJQglM19ZtQeW3LKkY4BsIxjDf45ymH407IQKBgE/g +Ul6cPfOxQRlNLH4VMVgInSyyxWx1mODFy7DRrgCuh5kTVh+QUVBM8x9lcwAn8V9/ +nQT55wR8E603pznqY/jX0xvAqZE6YVPcw4kpZcwNwL1RhEl8GliikBlRzUL3SsW3 +q30AfqEViHPE3XpE66PPo6Hb1ymJCVr77iUuC3wtAoGBAIBrOGunv1qZMfqmwAY2 +lxlzRgxgSiaev0lTNxDzZkmU/u3dgdTwJ5DDANqPwJc6b8SGYTp9rQ0mbgVHnhIB +jcJQBQkTfq6Z0H6OoTVi7dPs3ibQJFrtkoyvYAbyk36quBmNRjVh6rc8468bhXYr +v/t+MeGJP/0Zw8v/X2CFll96 +-----END PRIVATE KEY----- diff --git a/components/https_server/component.mk b/components/https_server/component.mk new file mode 100644 index 0000000..7da70ba --- /dev/null +++ b/components/https_server/component.mk @@ -0,0 +1,11 @@ +# +# Component Makefile +# +# This Makefile should, at the very least, just include $(SDK_PATH)/Makefile. By default, +# this will take the sources in the src/ directory, compile them and link them into +# lib(subdirectory_name).a in the build directory. This behaviour is entirely configurable, +# please read the SDK documents if you need to do this. +# + +COMPONENT_ADD_INCLUDEDIRS := . + diff --git a/components/https_server/https_server.c b/components/https_server/https_server.c new file mode 100644 index 0000000..27e9ab4 --- /dev/null +++ b/components/https_server/https_server.c @@ -0,0 +1,224 @@ +/* Simple HTTP + SSL Server Example + + This example code is in the Public Domain (or CC0 licensed, at your option.) + + Unless required by applicable law or agreed to in writing, this + software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR + CONDITIONS OF ANY KIND, either express or implied. +*/ + +#include +#include +#include +#include +#include +#include +#include "esp_netif.h" +#include "esp_eth.h" +#include "esp_console.h" +#include "string.h" +#include "url_decoder.h" + +#include + +/* A simple example that demonstrates how to create GET and POST + * handlers and start an HTTPS server. +*/ + +struct csr{ +char* var; +char* begin; +char* body; +char* end; +}; + + +static const char *TAG = "server"; +TaskHandle_t xHandleServer = NULL; + +/* An HTTP GET handler */ +static esp_err_t root_get_handler(httpd_req_t *req) +{ + httpd_resp_set_type(req, "text/html"); + httpd_resp_send(req, "
\n" +"
\n" +"
\n" +" \n" +"
", -1); // -1 = use strlen() + + return ESP_OK; +} +static esp_err_t echo_post_handler(httpd_req_t *req) +{ + char buf[3000]; + int ret, remaining = req->content_len; + memset(buf,'\0',sizeof(buf)); + while (remaining > 0) { + /* Read the data for the request */ + if ((ret = httpd_req_recv(req, buf, + MIN(remaining, sizeof(buf)))) <= 0) { + if (ret == HTTPD_SOCK_ERR_TIMEOUT) { + /* Retry receiving if timeout occurred */ + continue; + } + return ESP_FAIL; + } + + /* Send back the same data */ + //const char *url = "http%3A%2F%2ffoo+bar%2fabcd"; + //char out[strlen(url) + 1]; + + //printf("length: %d\n", decode(buf, 0)); + //puts(decode(buf, out) < 0 ? "bad string" : out); + + + + /* Log data received */ + ESP_LOGI(TAG, "=========== RECEIVED DATA =========="); + ESP_LOGI(TAG, "%.*s", ret, buf); + ESP_LOGI(TAG, "===================================="); + const char *url = &buf[4]; + char out[strlen(url) + 1]; + + printf("length: %d\n", decode(url, 0)); + printf("%s\n",url); + printf("%s\n",decode(url, out) < 0 ? "bad string" : out); + httpd_resp_send_chunk(req, out, strlen(out)); + remaining -= ret; + } + + // End response + httpd_resp_send_chunk(req, NULL, 0); + return ESP_OK; +} +static const httpd_uri_t echo = { + .uri = "/echo", + .method = HTTP_POST, + .handler = echo_post_handler, + .user_ctx = NULL +}; + +static const httpd_uri_t root = { + .uri = "/", + .method = HTTP_GET, + .handler = root_get_handler +}; + + +static httpd_handle_t start_webserver(void) +{ + httpd_handle_t server = NULL; + + // Start the httpd server + ESP_LOGI(TAG, "Starting server"); + + httpd_ssl_config_t conf = HTTPD_SSL_CONFIG_DEFAULT(); + conf.httpd.stack_size = 30000; + + extern const unsigned char cacert_pem_start[] asm("_binary_cacert_pem_start"); + extern const unsigned char cacert_pem_end[] asm("_binary_cacert_pem_end"); + conf.cacert_pem = cacert_pem_start; + conf.cacert_len = cacert_pem_end - cacert_pem_start; + + extern const unsigned char prvtkey_pem_start[] asm("_binary_prvtkey_pem_start"); + extern const unsigned char prvtkey_pem_end[] asm("_binary_prvtkey_pem_end"); + conf.prvtkey_pem = prvtkey_pem_start; + conf.prvtkey_len = prvtkey_pem_end - prvtkey_pem_start; + + esp_err_t ret = httpd_ssl_start(&server, &conf); + if (ESP_OK != ret) { + ESP_LOGI(TAG, "Error starting server!"); + return NULL; + } + + // Set URI handlers + ESP_LOGI(TAG, "Registering URI handlers"); + httpd_register_uri_handler(server, &root); + httpd_register_uri_handler(server, &echo); + + return server; +} + +static void stop_webserver(httpd_handle_t server) +{ + // Stop the httpd server + httpd_ssl_stop(server); +} + +static void disconnect_handler(void* arg, esp_event_base_t event_base, + int32_t event_id, void* event_data) +{ + httpd_handle_t* server = (httpd_handle_t*) arg; + if (*server) { + stop_webserver(*server); + *server = NULL; + } +} + +static void connect_handler(void* arg, esp_event_base_t event_base, + int32_t event_id, void* event_data) +{ + httpd_handle_t* server = (httpd_handle_t*) arg; + if (*server == NULL) { + *server = start_webserver(); + } +} + +static void connect(void) +{ + static httpd_handle_t server = NULL; + + // ESP_ERROR_CHECK(nvs_flash_init()); + // ESP_ERROR_CHECK(esp_netif_init()); + // ESP_ERROR_CHECK(esp_event_loop_create_default()); + + /* Register event handlers to start server when Wi-Fi or Ethernet is connected, + * and stop server when disconnection happens. + */ + ESP_ERROR_CHECK(esp_event_handler_register(IP_EVENT, IP_EVENT_STA_GOT_IP, &connect_handler, &server)); + ESP_ERROR_CHECK(esp_event_handler_register(WIFI_EVENT, WIFI_EVENT_STA_DISCONNECTED, &disconnect_handler, &server)); +#ifdef CONFIG_EXAMPLE_CONNECT_WIFI + ESP_ERROR_CHECK(esp_event_handler_register(IP_EVENT, IP_EVENT_STA_GOT_IP, &connect_handler, &server)); + ESP_ERROR_CHECK(esp_event_handler_register(WIFI_EVENT, WIFI_EVENT_STA_DISCONNECTED, &disconnect_handler, &server)); +#endif // CONFIG_EXAMPLE_CONNECT_WIFI +#ifdef CONFIG_EXAMPLE_CONNECT_ETHERNET + ESP_ERROR_CHECK(esp_event_handler_register(IP_EVENT, IP_EVENT_ETH_GOT_IP, &connect_handler, &server)); + ESP_ERROR_CHECK(esp_event_handler_register(ETH_EVENT, ETHERNET_EVENT_DISCONNECTED, &disconnect_handler, &server)); +#endif // CONFIG_EXAMPLE_CONNECT_ETHERNET + + /* This helper function configures Wi-Fi or Ethernet, as selected in menuconfig. + * Read "Establishing Wi-Fi or Ethernet Connection" section in + * examples/protocols/README.md for more information about this function. + */ + //ESP_ERROR_CHECK(example_connect()); + //start_webserver(); + /* + for(;;){ + vTaskDelay(40); + } + */ +} + +static void server_off(){ + vTaskDelete(xHandleServer); +} + +void register_server(void) +{ +const esp_console_cmd_t webserver_on = { + .command = "server_on", + .help = "HTTPS server", + .hint = NULL, + .func = &connect, + .argtable = NULL + }; +const esp_console_cmd_t webserver_off = { + .command = "server_off", + .help = "HTTPS server", + .hint = NULL, + .func = &server_off, + .argtable = NULL + }; + ESP_ERROR_CHECK(esp_console_cmd_register(&webserver_on)); + ESP_ERROR_CHECK(esp_console_cmd_register(&webserver_off)); +} \ No newline at end of file diff --git a/components/https_server/https_server.h b/components/https_server/https_server.h new file mode 100644 index 0000000..8f8772c --- /dev/null +++ b/components/https_server/https_server.h @@ -0,0 +1,2 @@ +void register_server(void); +void server_on(); diff --git a/components/https_server/url_decoder.c b/components/https_server/url_decoder.c new file mode 100644 index 0000000..1ae7441 --- /dev/null +++ b/components/https_server/url_decoder.c @@ -0,0 +1,30 @@ +#include +#include + +inline int ishex(int x) +{ + return (x >= '0' && x <= '9') || + (x >= 'a' && x <= 'f') || + (x >= 'A' && x <= 'F'); +} + +int decode(const char *s, char *dec) +{ + char *o; + const char *end = s + strlen(s); + int c; + + for (o = dec; s <= end; o++) { + c = *s++; + if (c == '+') c = ' '; + else if (c == '%' && ( !ishex(*s++) || + !ishex(*s++) || + !sscanf(s - 2, "%2x", &c))) + return -1; + + if (dec) *o = c; + } + + return o - dec; +} + \ No newline at end of file diff --git a/components/https_server/url_decoder.h b/components/https_server/url_decoder.h new file mode 100644 index 0000000..183eee8 --- /dev/null +++ b/components/https_server/url_decoder.h @@ -0,0 +1 @@ +int decode(const char *s, char *dec); diff --git a/components/lv_examples/CMakeLists.txt b/components/lv_examples/CMakeLists.txt new file mode 100644 index 0000000..49f76f2 --- /dev/null +++ b/components/lv_examples/CMakeLists.txt @@ -0,0 +1,4 @@ +file(GLOB_RECURSE SOURCES lv_examples/*.c) +idf_component_register(SRCS ${SOURCES} + INCLUDE_DIRS . + REQUIRES lvgl) diff --git a/components/lv_examples/component.mk b/components/lv_examples/component.mk new file mode 100644 index 0000000..eddaac7 --- /dev/null +++ b/components/lv_examples/component.mk @@ -0,0 +1,27 @@ +# +# Component Makefile +# + +CFLAGS += -DLV_CONF_INCLUDE_SIMPLE + +COMPONENT_SRCDIRS := lv_examples \ + lv_examples/lv_apps/benchmark \ + lv_examples/lv_apps/demo \ + lv_examples/lv_apps/sysmon \ + lv_examples/lv_apps/terminal \ + lv_examples/lv_apps/tpcal \ + lv_examples/lv_tests/lv_test_theme \ + lv_examples/lv_tests/lv_test_group \ + lv_examples/lv_tutorial/10_keyboard \ + lv_examples/lv_tutorial/1_hello_world \ + lv_examples/lv_tutorial/2_objects \ + lv_examples/lv_tutorial/3_styles \ + lv_examples/lv_tutorial/4_themes \ + lv_examples/lv_tutorial/5_antialiasing \ + lv_examples/lv_tutorial/6_images \ + lv_examples/lv_tutorial/7_fonts \ + lv_examples/lv_tutorial/8_animations \ + lv_examples/lv_tutorial/9_responsive + + +COMPONENT_ADD_INCLUDEDIRS := $(COMPONENT_SRCDIRS) . diff --git a/components/lv_examples/lv_ex_conf.h b/components/lv_examples/lv_ex_conf.h new file mode 100644 index 0000000..adbe893 --- /dev/null +++ b/components/lv_examples/lv_ex_conf.h @@ -0,0 +1,60 @@ +/** + * @file lv_ex_conf.h + * + */ +/* + * COPY THIS FILE AS lv_ex_conf.h + */ + +#if 1 /*Set it to "1" to enable the content*/ + +#ifndef LV_EX_CONF_H +#define LV_EX_CONF_H + +/******************* + * GENERAL SETTING + *******************/ +#define LV_EX_PRINTF 0 /*Enable printf-ing data*/ +#define LV_EX_KEYBOARD 0 /*Add PC keyboard support to some examples (`lv_drivers` repository is required)*/ +#define LV_EX_MOUSEWHEEL 0 /*Add 'encoder' (mouse wheel) support to some examples (`lv_drivers` repository is required)*/ + +/******************* + * TEST USAGE + *******************/ +#define LV_USE_TESTS 0 + +/******************* + * TUTORIAL USAGE + *******************/ +#define LV_USE_TUTORIALS 0 + + +/********************* + * APPLICATION USAGE + *********************/ + +/* Test the graphical performance of your MCU + * with different settings*/ +#define LV_USE_BENCHMARK 0 + +/*A demo application with Keyboard, Text area, List and Chart + * placed on Tab view */ +#define LV_USE_DEMO 1 +#if LV_USE_DEMO +#define LV_DEMO_WALLPAPER 1 /*Create a wallpaper too*/ +#define LV_DEMO_SLIDE_SHOW 1 /*Automatically switch between tabs*/ +#endif + +/*MCU and memory usage monitoring*/ +#define LV_USE_SYSMON 0 + +/*A terminal to display received characters*/ +#define LV_USE_TERMINAL 0 + +/*Touch pad calibration with 4 points*/ +#define LV_USE_TPCAL 0 + +#endif /*LV_EX_CONF_H*/ + +#endif /*End of "Content enable"*/ + diff --git a/components/lv_examples/lv_examples/.github/stale.yml b/components/lv_examples/lv_examples/.github/stale.yml new file mode 100644 index 0000000..ea1179b --- /dev/null +++ b/components/lv_examples/lv_examples/.github/stale.yml @@ -0,0 +1,17 @@ +# Number of days of inactivity before an issue becomes stale +daysUntilStale: 21 +# Number of days of inactivity before a stale issue is closed +daysUntilClose: 7 +# Issues with these labels will never be considered stale +exemptLabels: + - architecture + - pinned +# Label to use when marking an issue as stale +staleLabel: stale +# Comment to post when marking an issue as stale. Set to `false` to disable +markComment: > + This issue or pull request has been automatically marked as stale because it has not had + recent activity. It will be closed if no further activity occurs. Thank you + for your contributions. +# Comment to post when closing a stale issue. Set to `false` to disable +closeComment: false diff --git a/components/lv_examples/lv_examples/.gitignore b/components/lv_examples/lv_examples/.gitignore new file mode 100644 index 0000000..2372cca --- /dev/null +++ b/components/lv_examples/lv_examples/.gitignore @@ -0,0 +1 @@ +**/*.o \ No newline at end of file diff --git a/components/lv_examples/lv_examples/README.md b/components/lv_examples/lv_examples/README.md new file mode 100644 index 0000000..9b9ca49 --- /dev/null +++ b/components/lv_examples/lv_examples/README.md @@ -0,0 +1,49 @@ +# Examples for Littlev Graphics Library + +LittlevGL is a free and open-source graphics library providing everything you need to create a Graphical User Interface (GUI) on embedded systems with easy-to-use graphical elements, beautiful visual effects and low memory footprint. + +GitHub: https://github.com/littlevgl/lvgl +Website: https://littlevgl.com + +## Add the examples to your projects +1. Clone this repository: `git clone https://github.com/littlevgl/lv_examples.git` or download from the [Download page](https://littlevgl.com/download). To always use the newest version the cloning is recommended. +2. The `lv_examples` directory should be next to the `lvgl` directory in your project. + +Similary to `lv_conf.h` there is a configuration file for the examples too. It is called `lv_ex_conf.h`. +1. Copy `lv_examples/lv_ex_conf_templ.h` next to `lv_examples` directory +2. Rename it to `lv_ex_conf.h` +3. Delete the first `#if` and last `#endif` to enable the file's content +4. Enable or Disable modules + +## Tutorial +A step-by-step guide to teach the most important parts of the Graphics Library. +* Hello world +* Objects (graphical components) +* Styles +* Themes +* Anti-aliasing +* Images +* Fonts +* Animations +* Responsive +* Keyboard + +## Applications +Real life GUI examples which can be adapted in your own project. The applications are designed to adapt to your screen's resolution. +* Demo +* Benchmark +* System performance monitor +* Touchpad calibrator +* Terminal + +## Tests +Test cases to validate the features of LittelvGL. You can also use them as examples. The most important and useful tests are: +* Theme test: `lv_test_theme_1()` +* Keyboard interface test: `lv_test_group_1()` +* Tests of object types: `lv_test_..._1/2/3()` e.g. (lv_test_slider_1()) + +## Contributing +For contribution and coding style guidelines, please refer to the file docs/CONTRIBUTNG.md in the main LittlevGL repo: + https://github.com/littlevgl/lvgl +You are encouraged to use the 'astyle' util to format your code prior to pushing it. The files docs/astyle_(c/h) contain astyle rules to format source and header files according to the project coding guidelines. + diff --git a/components/lv_examples/lv_examples/docs/astyle_c b/components/lv_examples/lv_examples/docs/astyle_c new file mode 100644 index 0000000..9b9d7f3 --- /dev/null +++ b/components/lv_examples/lv_examples/docs/astyle_c @@ -0,0 +1 @@ +--style=kr --convert-tabs --indent=spaces=4 --indent-switches --pad-oper --unpad-paren --align-pointer=middle --suffix=.bak --lineend=linux --min-conditional-indent= diff --git a/components/lv_examples/lv_examples/docs/astyle_h b/components/lv_examples/lv_examples/docs/astyle_h new file mode 100644 index 0000000..d9c7633 --- /dev/null +++ b/components/lv_examples/lv_examples/docs/astyle_h @@ -0,0 +1 @@ +--convert-tabs --indent=spaces=4 diff --git a/components/lv_examples/lv_examples/lv_apps/benchmark/benchmark.c b/components/lv_examples/lv_examples/lv_apps/benchmark/benchmark.c new file mode 100644 index 0000000..dc28881 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_apps/benchmark/benchmark.c @@ -0,0 +1,319 @@ +/** + * @file benchmark.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "benchmark.h" +#if LV_USE_BENCHMARK + +#include + +/********************* + * DEFINES + *********************/ +#define TEST_CYCLE_NUM 10 /*How many times run the test (will calculate the average)*/ +#define SHADOW_WIDTH (LV_DPI / 8) +#define IMG_RECOLOR LV_OPA_20 +#define OPACITY LV_OPA_60 + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ +static void refr_monitor(lv_disp_drv_t * disp_drv, uint32_t time_ms, uint32_t px_num); +static void run_test_event_cb(lv_obj_t * btn, lv_event_t event); +static void wp_btn_event_cb(lv_obj_t * btn, lv_event_t event); +static void recolor_btn_event_cb(lv_obj_t * btn, lv_event_t event); +static void shadow_btn_event_cb(lv_obj_t * btn, lv_event_t event); +static void opa_btn_event_cb(lv_obj_t * btn, lv_event_t event); + +/********************** + * STATIC VARIABLES + **********************/ +static lv_obj_t * holder_page; +static lv_obj_t * wp; +static lv_obj_t * result_label; + +static lv_style_t style_wp; +static lv_style_t style_btn_rel; +static lv_style_t style_btn_pr; +static lv_style_t style_btn_tgl_rel; +static lv_style_t style_btn_tgl_pr; + +static uint32_t time_sum; +static uint32_t refr_cnt; + +LV_IMG_DECLARE(benchmark_bg) + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/********************** + * STATIC FUNCTIONS + **********************/ + + +/** + * Open a graphics benchmark + */ +void benchmark_create(void) +{ + + lv_coord_t hres = lv_disp_get_hor_res(NULL); + lv_coord_t vres = lv_disp_get_ver_res(NULL); + + /*Styles of the buttons*/ + lv_style_copy(&style_btn_rel, &lv_style_btn_rel); + lv_style_copy(&style_btn_pr, &lv_style_btn_pr); + lv_style_copy(&style_btn_tgl_rel, &lv_style_btn_tgl_rel); + lv_style_copy(&style_btn_tgl_pr, &lv_style_btn_tgl_pr); + + style_btn_rel.body.opa = LV_OPA_COVER; + style_btn_pr.body.opa = LV_OPA_COVER; + style_btn_tgl_rel.body.opa = LV_OPA_COVER; + style_btn_tgl_pr.body.opa = LV_OPA_COVER; + + style_btn_rel.body.shadow.width = 0; + style_btn_pr.body.shadow.width = 0; + style_btn_tgl_rel.body.shadow.width = 0; + style_btn_tgl_pr.body.shadow.width = 0; + + /*Style of the wallpaper*/ + lv_style_copy(&style_wp, &lv_style_plain); + style_wp.image.color = LV_COLOR_RED; + + /*Create a holder page (the page become scrollable on small displays )*/ + holder_page = lv_page_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_size(holder_page, hres, vres); + lv_page_set_style(holder_page, LV_PAGE_STYLE_BG, &lv_style_transp_fit); + lv_page_set_style(holder_page, LV_PAGE_STYLE_SCRL, &lv_style_transp); + lv_page_set_scrl_layout(holder_page, LV_LAYOUT_PRETTY); + + /*Create a wallpaper on the page*/ + wp = lv_img_create(holder_page, NULL); + lv_obj_set_protect(wp, LV_PROTECT_PARENT); /*Don't let to move the wallpaper by the layout */ + lv_obj_set_parent(wp, holder_page); + lv_obj_set_parent(lv_page_get_scrl(holder_page), holder_page); + lv_img_set_src(wp, &benchmark_bg); + lv_obj_set_size(wp, hres, vres); + lv_obj_set_pos(wp, 0, 0); + lv_obj_set_hidden(wp, true); + lv_img_set_style(wp, LV_IMG_STYLE_MAIN, &style_wp); + lv_img_set_auto_size(wp, false); + + /*Create a label to show the test result*/ + result_label = lv_label_create(holder_page, NULL); + lv_label_set_text(result_label, "Run the test"); + lv_label_set_body_draw(result_label, true); + lv_label_set_style(result_label, LV_LABEL_STYLE_MAIN, &lv_style_pretty); + + /*Create a "Run test" button*/ + lv_obj_t * btn; + btn = lv_btn_create(holder_page, NULL); + lv_page_glue_obj(btn, true); + lv_btn_set_fit(btn, LV_FIT_TIGHT); + lv_btn_set_style(btn, LV_BTN_STYLE_REL, &style_btn_rel); + lv_btn_set_style(btn, LV_BTN_STYLE_PR, &style_btn_pr); + lv_btn_set_style(btn, LV_BTN_STYLE_TGL_REL, &style_btn_tgl_rel); + lv_btn_set_style(btn, LV_BTN_STYLE_TGL_PR, &style_btn_tgl_pr); + lv_obj_set_event_cb(btn, run_test_event_cb); + + lv_obj_t * btn_l; + btn_l = lv_label_create(btn, NULL); + lv_label_set_text(btn_l, "Run\ntest!"); + lv_obj_set_protect(btn, LV_PROTECT_FOLLOW); /*Line break in layout*/ + + + /*Create a "Wallpaper show" button*/ + btn = lv_btn_create(holder_page, btn); + lv_btn_set_toggle(btn, true); + lv_obj_clear_protect(btn, LV_PROTECT_FOLLOW); + lv_obj_set_event_cb(btn, wp_btn_event_cb); + btn_l = lv_label_create(btn, btn_l); + lv_label_set_text(btn_l, "Wallpaper"); + + + /*Create a "Wallpaper re-color" button*/ + btn = lv_btn_create(holder_page, btn); + lv_obj_set_event_cb(btn, recolor_btn_event_cb); + btn_l = lv_label_create(btn, btn_l); + lv_label_set_text(btn_l, "Wp. recolor!"); + + /*Create a "Shadow draw" button*/ + btn = lv_btn_create(holder_page, btn); + lv_obj_set_event_cb(btn, shadow_btn_event_cb); + btn_l = lv_label_create(btn, btn_l); + lv_label_set_text(btn_l, "Shadow"); + + /*Create an "Opacity enable" button*/ + btn = lv_btn_create(holder_page, btn); + lv_obj_set_event_cb(btn, opa_btn_event_cb); + btn_l = lv_label_create(btn, btn_l); + lv_label_set_text(btn_l, "Opacity"); +} + + +void benchmark_start(void) +{ + lv_disp_t * disp = lv_obj_get_disp(holder_page); + + disp->driver.monitor_cb = refr_monitor; + + lv_obj_invalidate(lv_disp_get_scr_act(disp)); + + time_sum = 0; + refr_cnt = 0; +} + +bool benchmark_is_ready(void) +{ + if(refr_cnt == TEST_CYCLE_NUM) return true; + else return false; +} + +uint32_t benchmark_get_refr_time(void) +{ + if(benchmark_is_ready()) return time_sum / TEST_CYCLE_NUM; + else return 0; +} + +/*-------------------- + * OTHER FUNCTIONS + ---------------------*/ + +/** + * Called when a the library finished rendering to monitor its performance + * @param disp_drv pointer to the caller display driver + * @param time_ms time of rendering in milliseconds + * @param px_num Number of pixels drawn + */ +static void refr_monitor(lv_disp_drv_t * disp_drv, uint32_t time_ms, uint32_t px_num) +{ + (void) px_num ; /*Unused*/ + lv_disp_t * disp = lv_obj_get_disp(holder_page); + time_sum += time_ms; + refr_cnt ++; + lv_obj_invalidate(lv_disp_get_scr_act(disp)); + + if(refr_cnt >= TEST_CYCLE_NUM) { + int time_avg = (int)time_sum / (int)TEST_CYCLE_NUM; + char buf[256]; + sprintf(buf, "Screen load: %d ms\nAverage of %d", time_avg, TEST_CYCLE_NUM); + lv_label_set_text(result_label, buf); + disp_drv->monitor_cb = NULL; + } else { + char buf[256]; + sprintf(buf, "Running %d/%d", refr_cnt, TEST_CYCLE_NUM); + lv_label_set_text(result_label, buf); + + } +} + +/** + * Called when the "Run test" button is clicked + * @param btn pointer to the button + * @param event the current event + */ +static void run_test_event_cb(lv_obj_t * btn, lv_event_t event) +{ + (void) btn; /*Unused*/ + + if(event != LV_EVENT_CLICKED) return; + + benchmark_start(); +} + +/** + * Called when the "Wallpaper" button is clicked + * @param btn pointer to the button + * @param event the current event + */ +static void wp_btn_event_cb(lv_obj_t * btn, lv_event_t event) +{ + if(event != LV_EVENT_CLICKED) return; + + if(lv_btn_get_state(btn) == LV_BTN_STATE_TGL_REL) lv_obj_set_hidden(wp, false); + else lv_obj_set_hidden(wp, true); +} + +/** + * Called when the "Wp. recolor" button is clicked + * @param btn pointer to the button + * @param event the current event + */ +static void recolor_btn_event_cb(lv_obj_t * btn, lv_event_t event) +{ + if(event != LV_EVENT_CLICKED) return; + + if(lv_btn_get_state(btn) == LV_BTN_STATE_TGL_REL) style_wp.image.intense = IMG_RECOLOR; + else style_wp.image.intense = LV_OPA_TRANSP; + + lv_obj_refresh_style(wp); +} + +/** + * Called when the "Shadow" button is clicked + * @param btn pointer to the button + * @param event the current event + */ +static void shadow_btn_event_cb(lv_obj_t * btn, lv_event_t event) +{ + if(event != LV_EVENT_CLICKED) return; + + if(lv_btn_get_state(btn) == LV_BTN_STATE_TGL_REL) { + style_btn_rel.body.shadow.width = SHADOW_WIDTH; + style_btn_pr.body.shadow.width = SHADOW_WIDTH; + style_btn_tgl_rel.body.shadow.width = SHADOW_WIDTH; + style_btn_tgl_pr.body.shadow.width = SHADOW_WIDTH; + } else { + style_btn_rel.body.shadow.width = 0; + style_btn_pr.body.shadow.width = 0; + style_btn_tgl_rel.body.shadow.width = 0; + style_btn_tgl_pr.body.shadow.width = 0; + } + + lv_obj_report_style_mod(&style_btn_rel); + lv_obj_report_style_mod(&style_btn_pr); + lv_obj_report_style_mod(&style_btn_tgl_rel); + lv_obj_report_style_mod(&style_btn_tgl_pr); +} + +/** + * Called when the "Opacity" button is clicked + * @param btn pointer to the button + * @param event the current event + */ +static void opa_btn_event_cb(lv_obj_t * btn, lv_event_t event) +{ + if(event != LV_EVENT_CLICKED) return; + + if(lv_btn_get_state(btn) == LV_BTN_STATE_TGL_REL) { + style_btn_rel.body.opa = OPACITY; + style_btn_pr.body.opa = OPACITY; + style_btn_tgl_rel.body.opa = OPACITY; + style_btn_tgl_pr.body.opa = OPACITY; + } else { + style_btn_rel.body.opa = LV_OPA_COVER; + style_btn_pr.body.opa = LV_OPA_COVER; + style_btn_tgl_rel.body.opa = LV_OPA_COVER; + style_btn_tgl_pr.body.opa = LV_OPA_COVER; + } + + lv_obj_report_style_mod(&style_btn_rel); + lv_obj_report_style_mod(&style_btn_pr); + lv_obj_report_style_mod(&style_btn_tgl_rel); + lv_obj_report_style_mod(&style_btn_tgl_pr); +} + +#endif /*LV_USE_BENCHMARK*/ diff --git a/components/lv_examples/lv_examples/lv_apps/benchmark/benchmark.h b/components/lv_examples/lv_examples/lv_apps/benchmark/benchmark.h new file mode 100644 index 0000000..207787d --- /dev/null +++ b/components/lv_examples/lv_examples/lv_apps/benchmark/benchmark.h @@ -0,0 +1,61 @@ +/** + * @file benchmark.h + * + */ + +#ifndef BENCHMARK_H +#define BENCHMARK_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ + +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../lvgl/lvgl.h" +#include "../../../lv_ex_conf.h" +#endif + +#if LV_USE_BENCHMARK + + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Open a graphics benchmark + */ +void benchmark_create(void); + +void benchmark_start(void); + +bool benchmark_is_ready(void); + +uint32_t benchmark_get_refr_time(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_BENCHMARK*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /* BENCHMARK_H */ diff --git a/components/lv_examples/lv_examples/lv_apps/benchmark/benchmark.mk b/components/lv_examples/lv_examples/lv_apps/benchmark/benchmark.mk new file mode 100644 index 0000000..f83d7dc --- /dev/null +++ b/components/lv_examples/lv_examples/lv_apps/benchmark/benchmark.mk @@ -0,0 +1,7 @@ +CSRCS += benchmark.c +CSRCS += benchmark_bg.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_apps/benchmark +VPATH += :$(LVGL_DIR)/lv_examples/lv_apps/benchmark + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_apps/benchmark" diff --git a/components/lv_examples/lv_examples/lv_apps/benchmark/benchmark_bg.c b/components/lv_examples/lv_examples/lv_apps/benchmark/benchmark_bg.c new file mode 100644 index 0000000..fb4d15f --- /dev/null +++ b/components/lv_examples/lv_examples/lv_apps/benchmark/benchmark_bg.c @@ -0,0 +1,234 @@ +#include "lvgl/lvgl.h" +#include "lv_ex_conf.h" + +#if LV_USE_BENCHMARK + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +const LV_ATTRIBUTE_MEM_ALIGN uint8_t benchmark_bg_map[] = { +#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8 + /*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 bit*/ + 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x6d, 0x49, 0x25, 0x49, 0x6d, 0x6d, 0x49, 0x49, 0x6d, 0x49, 0x49, 0x49, 0x25, 0x49, 0x6d, 0x49, 0x49, 0x6d, 0x49, 0x6d, 0x49, 0x25, 0x49, 0x49, 0x49, 0x6d, 0x49, 0x49, 0x6e, 0x6d, 0x49, 0x25, 0x49, 0x6d, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, + 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x25, 0x49, 0x6d, 0x6d, 0x49, 0x49, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x49, 0x49, 0x6d, 0x6d, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, + 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x49, 0x6d, 0x6d, 0x49, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, + 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x6d, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x49, 0x49, 0x6d, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, + 0x25, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x49, 0x25, 0x49, 0x6d, 0x49, 0x6d, 0x49, 0x49, 0x49, 0x25, 0x6d, 0x49, 0x49, 0x49, 0x6d, 0x49, 0x25, 0x25, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, + 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x25, 0x49, 0x6d, 0x49, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x49, 0x25, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, + 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x25, 0x49, 0x6e, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x49, 0x49, 0x49, 0x6d, 0x6d, 0x49, 0x25, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, + 0x49, 0x49, 0x49, 0x25, 0x25, 0x25, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x25, 0x6d, 0x49, 0x49, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x49, 0x49, + 0x6d, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x25, 0x25, 0x25, 0x25, 0x49, 0x49, 0x49, 0x25, 0x25, 0x25, 0x49, 0x6d, 0x49, 0x49, 0x6d, 0x6d, 0x49, 0x49, 0x6d, 0x49, 0x25, 0x25, 0x25, 0x49, 0x49, 0x49, 0x25, 0x25, 0x25, 0x25, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x25, 0x49, 0x6d, + 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x25, 0x6d, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x49, 0x25, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x25, 0x49, + 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x25, 0x49, 0x6d, 0x6d, 0x49, 0x49, 0x6d, 0x6d, 0x49, 0x25, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, + 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x6d, 0x6e, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, + 0x6d, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x6d, + 0x6d, 0x6d, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x6d, 0x6d, + 0x49, 0x6d, 0x6d, 0x49, 0x25, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x25, 0x25, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x25, 0x49, 0x6d, 0x6d, 0x49, + 0x49, 0x49, 0x6d, 0x49, 0x25, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x25, 0x6d, 0x6d, 0x49, 0x49, + 0x6d, 0x49, 0x49, 0x6d, 0x25, 0x25, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x25, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x25, 0x49, 0x6d, 0x49, 0x49, 0x6d, + 0x49, 0x6d, 0x49, 0x6d, 0x25, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x49, + 0x49, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x6d, 0x49, 0x25, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x25, 0x49, 0x6d, 0x6d, 0x49, 0x49, 0x49, 0x6d, 0x49, + 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x49, 0x25, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x25, 0x49, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x49, + 0x49, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x49, 0x49, 0x49, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x49, 0x49, 0x49, 0x6d, 0x49, 0x49, 0x49, 0x6d, 0x25, + 0x49, 0x49, 0x49, 0x49, 0x6d, 0x49, 0x49, 0x6d, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x6d, 0x6d, 0x6d, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, + 0x6d, 0x49, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x6d, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x6d, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x49, 0x6d, + 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x49, 0x49, 0x6d, 0x6d, 0x49, 0x25, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x25, 0x49, 0x6d, 0x6d, 0x49, 0x49, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, + 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x49, 0x49, 0x6d, 0x6d, 0x49, 0x25, 0x49, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x6d, 0x49, 0x25, 0x49, 0x6d, 0x6e, 0x49, 0x49, 0x6d, 0x49, 0x6d, 0x49, 0x49, 0x49, 0x6d, 0x49, 0x49, + 0x6d, 0x49, 0x6d, 0x49, 0x25, 0x49, 0x49, 0x49, 0x6d, 0x49, 0x49, 0x6e, 0x49, 0x25, 0x25, 0x49, 0x6d, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x6d, 0x49, 0x25, 0x49, 0x6d, 0x6e, 0x49, 0x49, 0x6d, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x6d, + 0x49, 0x49, 0x49, 0x49, 0x6d, 0x6d, 0x6d, 0x6d, 0x49, 0x49, 0x6d, 0x6d, 0x25, 0x25, 0x25, 0x25, 0x49, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x25, 0x49, 0x6d, 0x6d, 0x49, 0x49, 0x6d, 0x6d, 0x49, 0x6d, 0x49, 0x49, 0x49, 0x49, + 0x6d, 0x49, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x49, 0x6d, + 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x6d, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, + 0x25, 0x49, 0x49, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x25, + 0x49, 0x49, 0x49, 0x49, 0x6d, 0x49, 0x6d, 0x49, 0x25, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x25, 0x49, 0x6d, 0x49, 0x6d, 0x49, 0x49, 0x6d, 0x49, + 0x49, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x6d, 0x49, 0x25, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x25, 0x6d, 0x6d, 0x6d, 0x49, 0x49, 0x49, 0x6d, 0x49, + 0x49, 0x6d, 0x49, 0x6d, 0x25, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x25, 0x49, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x49, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x6d, 0x49, + 0x6d, 0x49, 0x49, 0x6d, 0x25, 0x25, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x25, 0x49, 0x6d, 0x49, 0x49, 0x6d, + 0x49, 0x49, 0x6d, 0x49, 0x25, 0x25, 0x25, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x25, 0x6d, 0x6d, 0x49, 0x49, + 0x49, 0x6d, 0x6d, 0x49, 0x25, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x25, 0x49, 0x6d, 0x6d, 0x49, + 0x6e, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x6e, + 0x6d, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x6d, + 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x6d, 0x6e, 0x6e, 0x6d, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, + 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x25, 0x49, 0x6d, 0x6d, 0x49, 0x49, 0x6d, 0x6d, 0x49, 0x25, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, + 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x25, 0x6d, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x49, 0x25, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, + 0x6d, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x25, 0x49, 0x6d, 0x49, 0x49, 0x6d, 0x6d, 0x49, 0x49, 0x6d, 0x49, 0x25, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x25, 0x49, 0x6d, + 0x49, 0x49, 0x49, 0x25, 0x25, 0x25, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x25, 0x49, 0x49, 0x49, 0x6d, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x49, 0x49, + 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x49, 0x49, 0x25, 0x49, 0x49, 0x25, 0x25, 0x25, 0x49, 0x6d, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x49, 0x6d, 0x49, 0x25, 0x49, 0x6d, 0x6d, 0x49, 0x25, 0x25, 0x25, 0x49, 0x49, 0x25, 0x49, 0x49, 0x25, 0x25, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, + 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x25, 0x25, 0x6d, 0x49, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x49, 0x25, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, + 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x6d, 0x49, 0x49, 0x49, 0x6d, 0x49, 0x49, 0x49, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, + 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x6d, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x49, 0x49, 0x6d, 0x49, 0x49, 0x49, + 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x49, 0x6d, 0x6d, 0x49, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x6d, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x49, 0x25, 0x25, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, + 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x49, 0x25, 0x25, 0x25, 0x49, 0x6d, 0x6d, 0x49, 0x49, 0x6d, 0x6d, 0x6d, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x6d, 0x6d, 0x6d, 0x6d, 0x49, 0x49, 0x6d, 0x6d, 0x49, 0x25, 0x25, 0x25, 0x49, 0x6d, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, + 0x49, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x6d, 0x49, 0x25, 0x49, 0x6d, 0x6d, 0x49, 0x49, 0x6d, 0x49, 0x49, 0x49, 0x25, 0x49, 0x6d, 0x49, 0x49, 0x6d, 0x49, 0x6d, 0x49, 0x25, 0x49, 0x49, 0x49, 0x6d, 0x49, 0x49, 0x6e, 0x6d, 0x49, 0x25, 0x49, 0x6d, 0x49, 0x49, 0x49, 0x25, 0x49, 0x49, 0x49, 0x49, +#endif +#if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP == 0 + /*Pixel format: Red: 5 bit, Green: 6 bit, Blue: 5 bit*/ + 0xc7, 0x39, 0x29, 0x4a, 0x29, 0x4a, 0xe7, 0x39, 0x86, 0x31, 0xe8, 0x41, 0x28, 0x42, 0xe8, 0x41, 0xaa, 0x52, 0xe8, 0x41, 0x45, 0x29, 0xa7, 0x39, 0xcb, 0x5a, 0x0c, 0x63, 0xe8, 0x41, 0x08, 0x42, 0xec, 0x62, 0xc7, 0x39, 0x8a, 0x52, 0x29, 0x4a, 0x86, 0x31, 0xe8, 0x41, 0xcb, 0x5a, 0xe7, 0x39, 0x49, 0x4a, 0xaa, 0x52, 0x86, 0x31, 0xab, 0x5a, 0xe8, 0x41, 0x86, 0x31, 0x69, 0x4a, 0x6a, 0x52, 0x08, 0x42, 0xec, 0x62, 0xa6, 0x31, 0x08, 0x42, 0x0c, 0x63, 0x8a, 0x52, 0x86, 0x31, 0x86, 0x31, 0xe8, 0x41, 0x8a, 0x52, 0xc7, 0x39, 0x49, 0x4a, 0xc7, 0x39, 0x86, 0x31, 0x08, 0x42, 0x08, 0x42, 0x08, 0x42, 0xe8, 0x41, + 0x29, 0x4a, 0xa6, 0x31, 0xa7, 0x39, 0x29, 0x4a, 0x29, 0x4a, 0x08, 0x42, 0x28, 0x42, 0x6a, 0x52, 0xe8, 0x41, 0x86, 0x31, 0x86, 0x31, 0x66, 0x31, 0x86, 0x31, 0xcb, 0x5a, 0xcb, 0x5a, 0xa7, 0x39, 0x29, 0x4a, 0xaa, 0x52, 0x49, 0x4a, 0x29, 0x4a, 0x69, 0x4a, 0x6a, 0x52, 0xc7, 0x39, 0x86, 0x31, 0xe7, 0x39, 0xa7, 0x39, 0x86, 0x31, 0xe8, 0x41, 0x6a, 0x52, 0x49, 0x4a, 0x29, 0x4a, 0x49, 0x4a, 0xaa, 0x52, 0x08, 0x42, 0xc7, 0x39, 0xeb, 0x5a, 0xaa, 0x52, 0x86, 0x31, 0x86, 0x31, 0x86, 0x31, 0x86, 0x31, 0x08, 0x42, 0x69, 0x4a, 0x08, 0x42, 0x08, 0x42, 0x29, 0x4a, 0x08, 0x42, 0xa7, 0x39, 0xa6, 0x31, 0x29, 0x4a, + 0x29, 0x4a, 0xc7, 0x39, 0x29, 0x4a, 0x08, 0x42, 0xe7, 0x39, 0xc7, 0x39, 0xc7, 0x39, 0x86, 0x31, 0xa6, 0x31, 0x08, 0x42, 0x08, 0x42, 0x08, 0x42, 0xa6, 0x31, 0xa7, 0x39, 0xab, 0x5a, 0xcb, 0x5a, 0xe8, 0x41, 0xa6, 0x31, 0xc7, 0x39, 0xc7, 0x39, 0xe7, 0x39, 0x28, 0x42, 0x8a, 0x52, 0xe8, 0x41, 0x8a, 0x52, 0x8a, 0x52, 0xa7, 0x39, 0xaa, 0x52, 0x29, 0x4a, 0xc7, 0x39, 0xc7, 0x39, 0xc7, 0x39, 0xa6, 0x31, 0x08, 0x42, 0xeb, 0x5a, 0xab, 0x5a, 0xa7, 0x39, 0xc7, 0x39, 0x08, 0x42, 0x08, 0x42, 0x08, 0x42, 0xa6, 0x31, 0xa6, 0x31, 0xc7, 0x39, 0xc7, 0x39, 0xe8, 0x41, 0x28, 0x42, 0x49, 0x4a, 0x86, 0x31, 0x28, 0x42, + 0xc7, 0x39, 0x29, 0x4a, 0x08, 0x42, 0x28, 0x42, 0x49, 0x4a, 0x49, 0x4a, 0x86, 0x31, 0x66, 0x31, 0x29, 0x4a, 0xa7, 0x39, 0xc7, 0x39, 0xa7, 0x39, 0x49, 0x4a, 0x86, 0x31, 0xa6, 0x31, 0x69, 0x4a, 0xeb, 0x5a, 0xcb, 0x5a, 0xa6, 0x31, 0xe8, 0x41, 0x6a, 0x52, 0x28, 0x42, 0x69, 0x4a, 0x29, 0x4a, 0x08, 0x42, 0x29, 0x4a, 0x49, 0x4a, 0x08, 0x42, 0x29, 0x4a, 0x8a, 0x52, 0xc7, 0x39, 0xa6, 0x31, 0xab, 0x5a, 0xeb, 0x5a, 0x49, 0x4a, 0xa6, 0x31, 0xa7, 0x39, 0x08, 0x42, 0xa6, 0x31, 0xc7, 0x39, 0xc7, 0x39, 0xe8, 0x41, 0x66, 0x31, 0x86, 0x31, 0x69, 0x4a, 0x29, 0x4a, 0x69, 0x4a, 0xc7, 0x39, 0x29, 0x4a, 0xe8, 0x41, + 0x86, 0x31, 0x28, 0x42, 0xe7, 0x39, 0x49, 0x4a, 0x66, 0x31, 0x49, 0x4a, 0x08, 0x42, 0x86, 0x31, 0x29, 0x4a, 0xa6, 0x31, 0x49, 0x4a, 0xc7, 0x39, 0xe8, 0x41, 0xe8, 0x41, 0x65, 0x29, 0x66, 0x31, 0x86, 0x31, 0x86, 0x31, 0xe8, 0x41, 0x8a, 0x52, 0xa7, 0x39, 0xab, 0x5a, 0xa6, 0x31, 0x69, 0x4a, 0x86, 0x31, 0x66, 0x31, 0xab, 0x5a, 0xc7, 0x39, 0x49, 0x4a, 0xa7, 0x39, 0xcb, 0x5a, 0xe7, 0x39, 0x86, 0x31, 0x86, 0x31, 0x66, 0x31, 0x66, 0x31, 0xe7, 0x39, 0xc7, 0x39, 0x08, 0x42, 0x08, 0x42, 0xc7, 0x39, 0x08, 0x42, 0x86, 0x31, 0x08, 0x42, 0x49, 0x4a, 0x86, 0x31, 0x49, 0x4a, 0x86, 0x31, 0x6a, 0x52, 0x66, 0x31, + 0xe8, 0x41, 0x08, 0x42, 0xc7, 0x39, 0x49, 0x4a, 0x49, 0x4a, 0x49, 0x4a, 0x08, 0x42, 0x66, 0x31, 0x28, 0x42, 0xe7, 0x39, 0xe7, 0x39, 0xa7, 0x39, 0xc7, 0x39, 0x08, 0x42, 0x65, 0x29, 0x66, 0x31, 0x65, 0x29, 0xa6, 0x31, 0xcb, 0x5a, 0x08, 0x42, 0x8a, 0x52, 0xc7, 0x39, 0xa6, 0x31, 0x8a, 0x52, 0x08, 0x42, 0x08, 0x42, 0x8a, 0x52, 0xa6, 0x31, 0x08, 0x42, 0x69, 0x4a, 0xe7, 0x39, 0xcb, 0x5a, 0xa6, 0x31, 0x65, 0x29, 0x65, 0x29, 0x66, 0x31, 0x08, 0x42, 0xa7, 0x39, 0xe8, 0x41, 0xc7, 0x39, 0xe7, 0x39, 0xe8, 0x41, 0x65, 0x29, 0x08, 0x42, 0x69, 0x4a, 0x49, 0x4a, 0x08, 0x42, 0xe7, 0x39, 0x49, 0x4a, 0xc7, 0x39, + 0x28, 0x42, 0x08, 0x42, 0xc7, 0x39, 0x86, 0x31, 0xe8, 0x41, 0x08, 0x42, 0xa6, 0x31, 0x65, 0x29, 0x66, 0x31, 0xe7, 0x39, 0xe7, 0x39, 0xa7, 0x39, 0x29, 0x4a, 0x28, 0x42, 0x65, 0x29, 0x65, 0x29, 0x45, 0x29, 0x49, 0x4a, 0x0c, 0x63, 0x8a, 0x52, 0xe8, 0x41, 0xa7, 0x39, 0xa6, 0x31, 0x8a, 0x52, 0x6a, 0x52, 0x08, 0x42, 0xcb, 0x5a, 0xa7, 0x39, 0x86, 0x31, 0x29, 0x4a, 0xaa, 0x52, 0x0c, 0x63, 0x49, 0x4a, 0x65, 0x29, 0x65, 0x29, 0x86, 0x31, 0x08, 0x42, 0x08, 0x42, 0xa7, 0x39, 0xe8, 0x41, 0xc7, 0x39, 0x86, 0x31, 0x65, 0x29, 0xa6, 0x31, 0x08, 0x42, 0xe8, 0x41, 0x86, 0x31, 0xc7, 0x39, 0x6a, 0x52, 0xe8, 0x41, + 0xe7, 0x39, 0x6a, 0x52, 0x86, 0x31, 0x66, 0x31, 0x66, 0x31, 0x66, 0x31, 0x65, 0x29, 0x66, 0x31, 0xe8, 0x41, 0x29, 0x4a, 0x28, 0x42, 0x08, 0x42, 0x28, 0x42, 0x49, 0x4a, 0x29, 0x4a, 0xc7, 0x39, 0x65, 0x29, 0x28, 0x42, 0x29, 0x4a, 0xa6, 0x31, 0xa7, 0x39, 0xaa, 0x52, 0x66, 0x31, 0x8a, 0x52, 0x08, 0x42, 0x28, 0x42, 0xcb, 0x5a, 0xa6, 0x31, 0x69, 0x4a, 0x86, 0x31, 0xa7, 0x39, 0x29, 0x4a, 0x08, 0x42, 0x66, 0x31, 0xc7, 0x39, 0x29, 0x4a, 0x49, 0x4a, 0x28, 0x42, 0x08, 0x42, 0x28, 0x42, 0x29, 0x4a, 0xc7, 0x39, 0x86, 0x31, 0x65, 0x29, 0x65, 0x29, 0x66, 0x31, 0x65, 0x29, 0x86, 0x31, 0x8a, 0x52, 0xe8, 0x41, + 0xaa, 0x52, 0x08, 0x42, 0xa6, 0x31, 0x29, 0x4a, 0x49, 0x4a, 0x28, 0x42, 0x66, 0x31, 0xe8, 0x41, 0x49, 0x4a, 0xc7, 0x39, 0x66, 0x31, 0x66, 0x31, 0x66, 0x31, 0x66, 0x31, 0xc7, 0x39, 0x49, 0x4a, 0xe7, 0x39, 0x66, 0x31, 0x66, 0x31, 0x66, 0x31, 0xa6, 0x31, 0x0c, 0x63, 0xe7, 0x39, 0x08, 0x42, 0x0c, 0x63, 0x0c, 0x63, 0xe8, 0x41, 0xe8, 0x41, 0xab, 0x5a, 0x86, 0x31, 0x66, 0x31, 0x66, 0x31, 0x86, 0x31, 0x08, 0x42, 0x49, 0x4a, 0xa7, 0x39, 0x66, 0x31, 0x66, 0x31, 0x66, 0x31, 0x86, 0x31, 0xe7, 0x39, 0x69, 0x4a, 0xc7, 0x39, 0x86, 0x31, 0x29, 0x4a, 0x49, 0x4a, 0x28, 0x42, 0x86, 0x31, 0xe8, 0x41, 0xab, 0x5a, + 0xe8, 0x41, 0x66, 0x31, 0x08, 0x42, 0xc7, 0x39, 0xa6, 0x31, 0xe7, 0x39, 0xe7, 0x39, 0x29, 0x4a, 0xa7, 0x39, 0x86, 0x31, 0x28, 0x42, 0x49, 0x4a, 0x49, 0x4a, 0x28, 0x42, 0xa6, 0x31, 0xa6, 0x31, 0x49, 0x4a, 0xa7, 0x39, 0x65, 0x29, 0x66, 0x31, 0x65, 0x29, 0x8a, 0x52, 0xcb, 0x5a, 0xa6, 0x31, 0xe7, 0x39, 0xc7, 0x39, 0xa6, 0x31, 0xcb, 0x5a, 0x49, 0x4a, 0x66, 0x31, 0x66, 0x31, 0x66, 0x31, 0xc7, 0x39, 0x29, 0x4a, 0x86, 0x31, 0xa6, 0x31, 0x08, 0x42, 0x49, 0x4a, 0x49, 0x4a, 0x08, 0x42, 0x86, 0x31, 0xe8, 0x41, 0xe8, 0x41, 0xc7, 0x39, 0xe8, 0x41, 0x86, 0x31, 0xe8, 0x41, 0x08, 0x42, 0x65, 0x29, 0xe8, 0x41, + 0x65, 0x29, 0x86, 0x31, 0x08, 0x42, 0xc7, 0x39, 0x49, 0x4a, 0xe8, 0x41, 0xe7, 0x39, 0x28, 0x42, 0x66, 0x31, 0x28, 0x42, 0x08, 0x42, 0xa6, 0x31, 0xa7, 0x39, 0xc7, 0x39, 0x29, 0x4a, 0xa6, 0x31, 0xe7, 0x39, 0x28, 0x42, 0x65, 0x29, 0x66, 0x31, 0x65, 0x29, 0x86, 0x31, 0xcb, 0x5a, 0xcb, 0x5a, 0xe8, 0x41, 0xe8, 0x41, 0xcb, 0x5a, 0xab, 0x5a, 0x86, 0x31, 0x65, 0x29, 0x65, 0x29, 0x86, 0x31, 0x28, 0x42, 0xa7, 0x39, 0xa7, 0x39, 0x49, 0x4a, 0xc7, 0x39, 0xa6, 0x31, 0xa6, 0x31, 0x08, 0x42, 0x08, 0x42, 0xa6, 0x31, 0x08, 0x42, 0xc7, 0x39, 0x08, 0x42, 0x28, 0x42, 0xa7, 0x39, 0x29, 0x4a, 0x65, 0x29, 0x65, 0x29, + 0xa6, 0x31, 0x66, 0x31, 0x08, 0x42, 0xa7, 0x39, 0xc7, 0x39, 0xa7, 0x39, 0xa7, 0x39, 0x08, 0x42, 0x66, 0x31, 0x49, 0x4a, 0xa6, 0x31, 0xc7, 0x39, 0xe8, 0x41, 0xc7, 0x39, 0xc7, 0x39, 0x08, 0x42, 0x86, 0x31, 0x49, 0x4a, 0x28, 0x42, 0x28, 0x42, 0x08, 0x42, 0x86, 0x31, 0xa7, 0x39, 0xcb, 0x5a, 0xec, 0x62, 0x0c, 0x63, 0xaa, 0x52, 0xa6, 0x31, 0xa6, 0x31, 0x08, 0x42, 0x08, 0x42, 0x28, 0x42, 0x28, 0x42, 0x86, 0x31, 0x49, 0x4a, 0xa7, 0x39, 0xc7, 0x39, 0x08, 0x42, 0xa7, 0x39, 0x86, 0x31, 0x29, 0x4a, 0xa6, 0x31, 0x29, 0x4a, 0x66, 0x31, 0xc7, 0x39, 0xa6, 0x31, 0xe7, 0x39, 0x08, 0x42, 0x65, 0x29, 0xa6, 0x31, + 0xcb, 0x5a, 0x86, 0x31, 0xa6, 0x31, 0x49, 0x4a, 0xe8, 0x41, 0xc7, 0x39, 0x29, 0x4a, 0x28, 0x42, 0x66, 0x31, 0x49, 0x4a, 0xa6, 0x31, 0xe7, 0x39, 0x66, 0x31, 0x28, 0x42, 0x86, 0x31, 0x28, 0x42, 0x86, 0x31, 0x49, 0x4a, 0x08, 0x42, 0xa6, 0x31, 0xc7, 0x39, 0x29, 0x4a, 0xa7, 0x39, 0xa6, 0x31, 0xcb, 0x5a, 0x8a, 0x52, 0x86, 0x31, 0xc7, 0x39, 0x28, 0x42, 0xc7, 0x39, 0xa7, 0x39, 0x28, 0x42, 0x08, 0x42, 0xa6, 0x31, 0x49, 0x4a, 0x86, 0x31, 0xe8, 0x41, 0xa6, 0x31, 0x08, 0x42, 0x86, 0x31, 0x29, 0x4a, 0xa6, 0x31, 0x49, 0x4a, 0x28, 0x42, 0xc7, 0x39, 0x08, 0x42, 0x28, 0x42, 0x86, 0x31, 0xa6, 0x31, 0xab, 0x5a, + 0xec, 0x62, 0xcb, 0x5a, 0xa7, 0x39, 0x86, 0x31, 0xe8, 0x41, 0x08, 0x42, 0x28, 0x42, 0x49, 0x4a, 0x86, 0x31, 0x08, 0x42, 0xc7, 0x39, 0xc7, 0x39, 0x28, 0x42, 0xe7, 0x39, 0x86, 0x31, 0x28, 0x42, 0x86, 0x31, 0x29, 0x4a, 0x86, 0x31, 0xc7, 0x39, 0xc7, 0x39, 0xa6, 0x31, 0x29, 0x4a, 0x66, 0x31, 0xa6, 0x31, 0x86, 0x31, 0x66, 0x31, 0x08, 0x42, 0xa7, 0x39, 0xc7, 0x39, 0xc7, 0x39, 0xa6, 0x31, 0x08, 0x42, 0xa6, 0x31, 0x49, 0x4a, 0x86, 0x31, 0xc7, 0x39, 0x29, 0x4a, 0xa7, 0x39, 0xc7, 0x39, 0x08, 0x42, 0xa6, 0x31, 0x49, 0x4a, 0x08, 0x42, 0x08, 0x42, 0xe7, 0x39, 0x86, 0x31, 0xc7, 0x39, 0xeb, 0x5a, 0x0c, 0x63, + 0x08, 0x42, 0xcb, 0x5a, 0xab, 0x5a, 0xa6, 0x31, 0x65, 0x29, 0x65, 0x29, 0x66, 0x31, 0x29, 0x4a, 0xc7, 0x39, 0xa6, 0x31, 0x29, 0x4a, 0xc7, 0x39, 0xa6, 0x31, 0x86, 0x31, 0x08, 0x42, 0x08, 0x42, 0x86, 0x31, 0x49, 0x4a, 0xa7, 0x39, 0x08, 0x42, 0x29, 0x4a, 0x86, 0x31, 0x29, 0x4a, 0x86, 0x31, 0x65, 0x29, 0x66, 0x31, 0x86, 0x31, 0x08, 0x42, 0xe7, 0x39, 0xe8, 0x41, 0x28, 0x42, 0xc7, 0x39, 0x08, 0x42, 0x86, 0x31, 0x49, 0x4a, 0x08, 0x42, 0x86, 0x31, 0x86, 0x31, 0xc7, 0x39, 0x29, 0x4a, 0xa7, 0x39, 0xe8, 0x41, 0x08, 0x42, 0x65, 0x29, 0x65, 0x29, 0x45, 0x29, 0xa7, 0x39, 0xec, 0x62, 0xcb, 0x5a, 0x08, 0x42, + 0xe8, 0x41, 0xa7, 0x39, 0xcb, 0x5a, 0x49, 0x4a, 0x66, 0x31, 0x65, 0x29, 0x65, 0x29, 0xc7, 0x39, 0x49, 0x4a, 0xa6, 0x31, 0xa6, 0x31, 0x08, 0x42, 0x08, 0x42, 0x28, 0x42, 0x08, 0x42, 0x86, 0x31, 0xe8, 0x41, 0x29, 0x4a, 0xa6, 0x31, 0x08, 0x42, 0xc7, 0x39, 0xc7, 0x39, 0x28, 0x42, 0x86, 0x31, 0x08, 0x42, 0xe8, 0x41, 0x66, 0x31, 0x08, 0x42, 0xe7, 0x39, 0xa7, 0x39, 0x08, 0x42, 0xc7, 0x39, 0x08, 0x42, 0xc7, 0x39, 0xa6, 0x31, 0x08, 0x42, 0x28, 0x42, 0x08, 0x42, 0x08, 0x42, 0xa6, 0x31, 0xa7, 0x39, 0x29, 0x4a, 0xa6, 0x31, 0x65, 0x29, 0x65, 0x29, 0x66, 0x31, 0xaa, 0x52, 0xab, 0x5a, 0xa6, 0x31, 0xe7, 0x39, + 0xec, 0x62, 0x28, 0x42, 0xe8, 0x41, 0xeb, 0x5a, 0x86, 0x31, 0x66, 0x31, 0x65, 0x29, 0x65, 0x29, 0xe7, 0x39, 0x49, 0x4a, 0xe7, 0x39, 0x86, 0x31, 0x86, 0x31, 0x86, 0x31, 0x86, 0x31, 0xe7, 0x39, 0x69, 0x4a, 0xc7, 0x39, 0x66, 0x31, 0x08, 0x42, 0x29, 0x4a, 0x08, 0x42, 0x86, 0x31, 0x08, 0x42, 0xaa, 0x52, 0xab, 0x5a, 0xe7, 0x39, 0x86, 0x31, 0x08, 0x42, 0x29, 0x4a, 0xe8, 0x41, 0x66, 0x31, 0xe8, 0x41, 0x49, 0x4a, 0xc7, 0x39, 0x86, 0x31, 0x66, 0x31, 0x86, 0x31, 0x86, 0x31, 0xe8, 0x41, 0x49, 0x4a, 0xc7, 0x39, 0x65, 0x29, 0x65, 0x29, 0x65, 0x29, 0xc7, 0x39, 0xeb, 0x5a, 0xa6, 0x31, 0x28, 0x42, 0x0c, 0x63, + 0xc7, 0x39, 0xab, 0x5a, 0xa6, 0x31, 0xcb, 0x5a, 0x86, 0x31, 0xa6, 0x31, 0x49, 0x4a, 0x08, 0x42, 0x66, 0x31, 0xa7, 0x39, 0x28, 0x42, 0x49, 0x4a, 0x49, 0x4a, 0x29, 0x4a, 0x49, 0x4a, 0x29, 0x4a, 0xc7, 0x39, 0x66, 0x31, 0x66, 0x31, 0x66, 0x31, 0x66, 0x31, 0x66, 0x31, 0x86, 0x31, 0x69, 0x4a, 0xc7, 0x39, 0xc7, 0x39, 0x8a, 0x52, 0x66, 0x31, 0x66, 0x31, 0x66, 0x31, 0x66, 0x31, 0x66, 0x31, 0x86, 0x31, 0xe8, 0x41, 0x29, 0x4a, 0x49, 0x4a, 0x29, 0x4a, 0x49, 0x4a, 0x49, 0x4a, 0x28, 0x42, 0xa6, 0x31, 0x65, 0x29, 0x49, 0x4a, 0x29, 0x4a, 0x86, 0x31, 0xe7, 0x39, 0x49, 0x4a, 0x86, 0x31, 0xeb, 0x5a, 0xc7, 0x39, + 0x6a, 0x52, 0x49, 0x4a, 0xc7, 0x39, 0xa6, 0x31, 0xe7, 0x39, 0xcb, 0x5a, 0x0c, 0x63, 0x29, 0x4a, 0x66, 0x31, 0x66, 0x31, 0x65, 0x29, 0x08, 0x42, 0x28, 0x42, 0x86, 0x31, 0xa7, 0x39, 0xa7, 0x39, 0x86, 0x31, 0x66, 0x31, 0x86, 0x31, 0xe8, 0x41, 0xc7, 0x39, 0x86, 0x31, 0xa6, 0x31, 0x49, 0x4a, 0x29, 0x4a, 0xe8, 0x41, 0x69, 0x4a, 0xa7, 0x39, 0x86, 0x31, 0xe7, 0x39, 0xe8, 0x41, 0x86, 0x31, 0x65, 0x29, 0x86, 0x31, 0xa6, 0x31, 0xa7, 0x39, 0xa7, 0x39, 0x29, 0x4a, 0xe8, 0x41, 0x65, 0x29, 0x65, 0x29, 0x65, 0x29, 0x8a, 0x52, 0x0c, 0x63, 0xab, 0x5a, 0xe7, 0x39, 0x86, 0x31, 0xc7, 0x39, 0xab, 0x5a, 0x49, 0x4a, + 0x49, 0x4a, 0x29, 0x4a, 0xc7, 0x39, 0x08, 0x42, 0x8a, 0x52, 0x08, 0x42, 0x8a, 0x52, 0xa6, 0x31, 0x66, 0x31, 0x66, 0x31, 0x66, 0x31, 0x08, 0x42, 0xa6, 0x31, 0xc7, 0x39, 0x08, 0x42, 0x08, 0x42, 0xe8, 0x41, 0x66, 0x31, 0xe8, 0x41, 0x6a, 0x52, 0x69, 0x4a, 0x29, 0x4a, 0xa6, 0x31, 0x49, 0x4a, 0xa7, 0x39, 0xe7, 0x39, 0x49, 0x4a, 0xc7, 0x39, 0x49, 0x4a, 0x29, 0x4a, 0x6a, 0x52, 0x08, 0x42, 0x66, 0x31, 0x08, 0x42, 0xe8, 0x41, 0x08, 0x42, 0xc7, 0x39, 0xe8, 0x41, 0xc7, 0x39, 0x65, 0x29, 0x66, 0x31, 0x65, 0x29, 0xc7, 0x39, 0xcb, 0x5a, 0x08, 0x42, 0x6a, 0x52, 0xc7, 0x39, 0xc7, 0x39, 0xaa, 0x52, 0x08, 0x42, + 0x86, 0x31, 0x69, 0x4a, 0xe7, 0x39, 0x6a, 0x52, 0xa7, 0x39, 0x8a, 0x52, 0xe8, 0x41, 0xa6, 0x31, 0xa6, 0x31, 0x65, 0x29, 0x65, 0x29, 0x08, 0x42, 0xc7, 0x39, 0xc7, 0x39, 0x29, 0x4a, 0xc7, 0x39, 0x29, 0x4a, 0x66, 0x31, 0xe7, 0x39, 0x69, 0x4a, 0x86, 0x31, 0x6a, 0x52, 0xa6, 0x31, 0x49, 0x4a, 0x86, 0x31, 0x66, 0x31, 0x6a, 0x52, 0xc7, 0x39, 0x08, 0x42, 0x86, 0x31, 0x8a, 0x52, 0xc7, 0x39, 0xa6, 0x31, 0x08, 0x42, 0xc7, 0x39, 0x29, 0x4a, 0xc7, 0x39, 0x08, 0x42, 0xa6, 0x31, 0x66, 0x31, 0x65, 0x29, 0xa6, 0x31, 0xa6, 0x31, 0x08, 0x42, 0xaa, 0x52, 0xe7, 0x39, 0x69, 0x4a, 0x86, 0x31, 0xcb, 0x5a, 0x66, 0x31, + 0xe8, 0x41, 0x6a, 0x52, 0x29, 0x4a, 0x08, 0x42, 0xab, 0x5a, 0xc7, 0x39, 0xc7, 0x39, 0xab, 0x5a, 0x0c, 0x63, 0x8a, 0x52, 0x86, 0x31, 0x86, 0x31, 0x29, 0x4a, 0xa6, 0x31, 0x86, 0x31, 0xc7, 0x39, 0x08, 0x42, 0x66, 0x31, 0x86, 0x31, 0x29, 0x4a, 0x69, 0x4a, 0x69, 0x4a, 0x08, 0x42, 0x08, 0x42, 0xe8, 0x41, 0x28, 0x42, 0x08, 0x42, 0xe8, 0x41, 0x6a, 0x52, 0x6a, 0x52, 0x29, 0x4a, 0x66, 0x31, 0x86, 0x31, 0x28, 0x42, 0xa6, 0x31, 0xa6, 0x31, 0xc7, 0x39, 0x08, 0x42, 0x86, 0x31, 0x86, 0x31, 0x8a, 0x52, 0x0c, 0x63, 0xab, 0x5a, 0x86, 0x31, 0xe7, 0x39, 0x8a, 0x52, 0x49, 0x4a, 0xe8, 0x41, 0x69, 0x4a, 0x08, 0x42, + 0xcb, 0x5a, 0xc7, 0x39, 0x8a, 0x52, 0x69, 0x4a, 0x86, 0x31, 0xa6, 0x31, 0xa6, 0x31, 0x86, 0x31, 0xe7, 0x39, 0xcb, 0x5a, 0xab, 0x5a, 0xa6, 0x31, 0xa7, 0x39, 0x29, 0x4a, 0x29, 0x4a, 0x29, 0x4a, 0x86, 0x31, 0x86, 0x31, 0xa6, 0x31, 0xa6, 0x31, 0xa7, 0x39, 0x08, 0x42, 0x69, 0x4a, 0xa6, 0x31, 0x49, 0x4a, 0x29, 0x4a, 0x86, 0x31, 0x69, 0x4a, 0x08, 0x42, 0xa6, 0x31, 0xa6, 0x31, 0xa6, 0x31, 0x86, 0x31, 0xa7, 0x39, 0x29, 0x4a, 0x28, 0x42, 0x28, 0x42, 0xa6, 0x31, 0xc7, 0x39, 0xec, 0x62, 0xcb, 0x5a, 0xc7, 0x39, 0x86, 0x31, 0xa7, 0x39, 0xa6, 0x31, 0xa7, 0x39, 0x6a, 0x52, 0xcb, 0x5a, 0xa6, 0x31, 0xcb, 0x5a, + 0xe7, 0x39, 0x86, 0x31, 0xe8, 0x41, 0x29, 0x4a, 0x69, 0x4a, 0x8a, 0x52, 0x8a, 0x52, 0x8a, 0x52, 0x08, 0x42, 0xa6, 0x31, 0xcb, 0x5a, 0xab, 0x5a, 0x86, 0x31, 0x65, 0x29, 0x86, 0x31, 0x86, 0x31, 0xe8, 0x41, 0x69, 0x4a, 0x49, 0x4a, 0x49, 0x4a, 0x29, 0x4a, 0x08, 0x42, 0xa6, 0x31, 0xc7, 0x39, 0xe8, 0x41, 0xe8, 0x41, 0xa6, 0x31, 0xc7, 0x39, 0x08, 0x42, 0x29, 0x4a, 0x49, 0x4a, 0x49, 0x4a, 0x49, 0x4a, 0xe7, 0x39, 0x86, 0x31, 0x86, 0x31, 0x65, 0x29, 0xa7, 0x39, 0xeb, 0x5a, 0xcb, 0x5a, 0xa7, 0x39, 0x08, 0x42, 0x8a, 0x52, 0x8a, 0x52, 0x8a, 0x52, 0x69, 0x4a, 0x08, 0x42, 0xe8, 0x41, 0x86, 0x31, 0xc7, 0x39, + 0x49, 0x4a, 0xe7, 0x39, 0x8a, 0x52, 0x08, 0x42, 0x86, 0x31, 0x08, 0x42, 0x6a, 0x52, 0x28, 0x42, 0x0c, 0x63, 0xc7, 0x39, 0xe8, 0x41, 0x0c, 0x63, 0xab, 0x5a, 0xa6, 0x31, 0x65, 0x29, 0x08, 0x42, 0xab, 0x5a, 0xc7, 0x39, 0x29, 0x4a, 0xc7, 0x39, 0x86, 0x31, 0xe8, 0x41, 0x49, 0x4a, 0xe8, 0x41, 0xe8, 0x41, 0x08, 0x42, 0x08, 0x42, 0x28, 0x42, 0xe8, 0x41, 0x66, 0x31, 0xc7, 0x39, 0x29, 0x4a, 0x08, 0x42, 0x8a, 0x52, 0xc7, 0x39, 0x65, 0x29, 0xc7, 0x39, 0xcb, 0x5a, 0x0c, 0x63, 0xc7, 0x39, 0xe7, 0x39, 0xcb, 0x5a, 0x08, 0x42, 0xaa, 0x52, 0x08, 0x42, 0x86, 0x31, 0x29, 0x4a, 0xaa, 0x52, 0x86, 0x31, 0x49, 0x4a, + 0xaa, 0x52, 0xa7, 0x39, 0xaa, 0x52, 0x28, 0x42, 0x66, 0x31, 0x08, 0x42, 0x08, 0x42, 0x28, 0x42, 0x0c, 0x63, 0xc7, 0x39, 0x08, 0x42, 0x0c, 0x63, 0x8a, 0x52, 0x86, 0x31, 0x65, 0x29, 0xe8, 0x41, 0xab, 0x5a, 0xc7, 0x39, 0xe8, 0x41, 0xe7, 0x39, 0x66, 0x31, 0x08, 0x42, 0x49, 0x4a, 0xe8, 0x41, 0x08, 0x42, 0x49, 0x4a, 0xe8, 0x41, 0x08, 0x42, 0x08, 0x42, 0x66, 0x31, 0xe7, 0x39, 0xe8, 0x41, 0x08, 0x42, 0xab, 0x5a, 0xa6, 0x31, 0x66, 0x31, 0xa6, 0x31, 0xaa, 0x52, 0x0c, 0x63, 0xe7, 0x39, 0xc7, 0x39, 0xec, 0x62, 0xc7, 0x39, 0x29, 0x4a, 0x08, 0x42, 0x66, 0x31, 0x6a, 0x52, 0x8a, 0x52, 0x86, 0x31, 0xaa, 0x52, + 0x86, 0x31, 0x86, 0x31, 0xa7, 0x39, 0x6a, 0x52, 0xab, 0x5a, 0x8a, 0x52, 0xcb, 0x5a, 0xcb, 0x5a, 0xe7, 0x39, 0xa7, 0x39, 0xcb, 0x5a, 0xab, 0x5a, 0x86, 0x31, 0x66, 0x31, 0x86, 0x31, 0x66, 0x31, 0xe7, 0x39, 0x8a, 0x52, 0x69, 0x4a, 0x49, 0x4a, 0x8a, 0x52, 0x28, 0x42, 0x86, 0x31, 0xa6, 0x31, 0x08, 0x42, 0x08, 0x42, 0x86, 0x31, 0xa6, 0x31, 0x28, 0x42, 0x6a, 0x52, 0x49, 0x4a, 0x69, 0x4a, 0x6a, 0x52, 0xc7, 0x39, 0x66, 0x31, 0x86, 0x31, 0x66, 0x31, 0xa6, 0x31, 0xcb, 0x5a, 0xcb, 0x5a, 0xa6, 0x31, 0x08, 0x42, 0xcb, 0x5a, 0xaa, 0x52, 0x8a, 0x52, 0xcb, 0x5a, 0x49, 0x4a, 0xa7, 0x39, 0x86, 0x31, 0x86, 0x31, + 0xaa, 0x52, 0xe8, 0x41, 0xaa, 0x52, 0x08, 0x42, 0xc7, 0x39, 0xa7, 0x39, 0xa7, 0x39, 0xa6, 0x31, 0xe8, 0x41, 0xcb, 0x5a, 0xab, 0x5a, 0xa6, 0x31, 0xc7, 0x39, 0x28, 0x42, 0x08, 0x42, 0x08, 0x42, 0x86, 0x31, 0x66, 0x31, 0xa7, 0x39, 0xe7, 0x39, 0xc7, 0x39, 0xe8, 0x41, 0x69, 0x4a, 0xc7, 0x39, 0x28, 0x42, 0x28, 0x42, 0xa6, 0x31, 0x49, 0x4a, 0xe8, 0x41, 0xc7, 0x39, 0xc7, 0x39, 0xa6, 0x31, 0x66, 0x31, 0xa7, 0x39, 0x08, 0x42, 0x08, 0x42, 0x08, 0x42, 0xa6, 0x31, 0xc7, 0x39, 0xcb, 0x5a, 0xcb, 0x5a, 0xe7, 0x39, 0xa6, 0x31, 0xa7, 0x39, 0xa7, 0x39, 0xc7, 0x39, 0x28, 0x42, 0xcb, 0x5a, 0xc7, 0x39, 0xaa, 0x52, + 0x08, 0x42, 0x69, 0x4a, 0x29, 0x4a, 0x29, 0x4a, 0x49, 0x4a, 0x08, 0x42, 0x86, 0x31, 0x69, 0x4a, 0xab, 0x5a, 0x49, 0x4a, 0x86, 0x31, 0xa6, 0x31, 0x28, 0x42, 0xa7, 0x39, 0xe7, 0x39, 0xe7, 0x39, 0x08, 0x42, 0x65, 0x29, 0x86, 0x31, 0x29, 0x4a, 0x08, 0x42, 0x6a, 0x52, 0x08, 0x42, 0x08, 0x42, 0xe8, 0x41, 0x08, 0x42, 0x29, 0x4a, 0xe8, 0x41, 0x49, 0x4a, 0x28, 0x42, 0x49, 0x4a, 0x86, 0x31, 0x86, 0x31, 0x08, 0x42, 0xc7, 0x39, 0xe7, 0x39, 0xc7, 0x39, 0x28, 0x42, 0x66, 0x31, 0xa7, 0x39, 0x49, 0x4a, 0xab, 0x5a, 0x69, 0x4a, 0x66, 0x31, 0x08, 0x42, 0x49, 0x4a, 0x8a, 0x52, 0xe8, 0x41, 0x69, 0x4a, 0x08, 0x42, + 0x66, 0x31, 0x69, 0x4a, 0xc7, 0x39, 0x8a, 0x52, 0xa7, 0x39, 0x69, 0x4a, 0x28, 0x42, 0x86, 0x31, 0x86, 0x31, 0x66, 0x31, 0x65, 0x29, 0x08, 0x42, 0xa7, 0x39, 0xc7, 0x39, 0x08, 0x42, 0xa7, 0x39, 0x29, 0x4a, 0x66, 0x31, 0xe7, 0x39, 0x49, 0x4a, 0x86, 0x31, 0x6a, 0x52, 0xa6, 0x31, 0x29, 0x4a, 0x86, 0x31, 0x66, 0x31, 0x69, 0x4a, 0xc7, 0x39, 0x29, 0x4a, 0x86, 0x31, 0x49, 0x4a, 0xe8, 0x41, 0x86, 0x31, 0x08, 0x42, 0xc7, 0x39, 0xe8, 0x41, 0xc7, 0x39, 0xe8, 0x41, 0xa7, 0x39, 0x65, 0x29, 0x66, 0x31, 0x86, 0x31, 0x86, 0x31, 0x49, 0x4a, 0x6a, 0x52, 0xe8, 0x41, 0x49, 0x4a, 0xa6, 0x31, 0xab, 0x5a, 0x65, 0x29, + 0x69, 0x4a, 0x29, 0x4a, 0xc7, 0x39, 0xc7, 0x39, 0xab, 0x5a, 0xe7, 0x39, 0xaa, 0x52, 0xc7, 0x39, 0x66, 0x31, 0x66, 0x31, 0x66, 0x31, 0x28, 0x42, 0xa6, 0x31, 0xc7, 0x39, 0x08, 0x42, 0x08, 0x42, 0xe8, 0x41, 0x66, 0x31, 0xe7, 0x39, 0x8a, 0x52, 0x8a, 0x52, 0x49, 0x4a, 0xa6, 0x31, 0x49, 0x4a, 0xc7, 0x39, 0xe7, 0x39, 0x29, 0x4a, 0xe7, 0x39, 0x49, 0x4a, 0x69, 0x4a, 0x8a, 0x52, 0xe8, 0x41, 0x65, 0x29, 0x28, 0x42, 0xe7, 0x39, 0x08, 0x42, 0xc7, 0x39, 0xe8, 0x41, 0xe7, 0x39, 0x65, 0x29, 0x65, 0x29, 0x65, 0x29, 0xe7, 0x39, 0xcb, 0x5a, 0xc7, 0x39, 0x8a, 0x52, 0xc7, 0x39, 0xc7, 0x39, 0xaa, 0x52, 0x28, 0x42, + 0x6a, 0x52, 0x49, 0x4a, 0xc7, 0x39, 0x86, 0x31, 0xe8, 0x41, 0xcb, 0x5a, 0xec, 0x62, 0x28, 0x42, 0x66, 0x31, 0x66, 0x31, 0x86, 0x31, 0x28, 0x42, 0x08, 0x42, 0x86, 0x31, 0xc7, 0x39, 0xc7, 0x39, 0x66, 0x31, 0x66, 0x31, 0x86, 0x31, 0x08, 0x42, 0xe7, 0x39, 0x66, 0x31, 0xa6, 0x31, 0x49, 0x4a, 0x29, 0x4a, 0xe8, 0x41, 0x69, 0x4a, 0xa6, 0x31, 0x86, 0x31, 0xe7, 0x39, 0xe8, 0x41, 0x86, 0x31, 0x65, 0x29, 0x86, 0x31, 0xe7, 0x39, 0xc7, 0x39, 0xa6, 0x31, 0x29, 0x4a, 0xe8, 0x41, 0x86, 0x31, 0x66, 0x31, 0x65, 0x29, 0x8a, 0x52, 0xeb, 0x5a, 0xaa, 0x52, 0xe8, 0x41, 0x86, 0x31, 0xc7, 0x39, 0xcb, 0x5a, 0x49, 0x4a, + 0x08, 0x42, 0xaa, 0x52, 0xa6, 0x31, 0xab, 0x5a, 0x66, 0x31, 0xa7, 0x39, 0x49, 0x4a, 0xe8, 0x41, 0x66, 0x31, 0xc7, 0x39, 0x08, 0x42, 0x28, 0x42, 0x08, 0x42, 0x08, 0x42, 0x08, 0x42, 0x08, 0x42, 0xe8, 0x41, 0x66, 0x31, 0x65, 0x29, 0x66, 0x31, 0x86, 0x31, 0x66, 0x31, 0x86, 0x31, 0x49, 0x4a, 0x08, 0x42, 0x08, 0x42, 0x8a, 0x52, 0x66, 0x31, 0x86, 0x31, 0x86, 0x31, 0x66, 0x31, 0x65, 0x29, 0x86, 0x31, 0xe8, 0x41, 0x08, 0x42, 0x08, 0x42, 0x08, 0x42, 0x08, 0x42, 0x28, 0x42, 0x08, 0x42, 0xc7, 0x39, 0x66, 0x31, 0x29, 0x4a, 0x28, 0x42, 0xa6, 0x31, 0xc7, 0x39, 0x69, 0x4a, 0x86, 0x31, 0xcb, 0x5a, 0x08, 0x42, + 0xeb, 0x5a, 0xe8, 0x41, 0x08, 0x42, 0xeb, 0x5a, 0x66, 0x31, 0x65, 0x29, 0x65, 0x29, 0x65, 0x29, 0x08, 0x42, 0x29, 0x4a, 0xa7, 0x39, 0x86, 0x31, 0xa6, 0x31, 0xa6, 0x31, 0x86, 0x31, 0xc7, 0x39, 0x49, 0x4a, 0xe7, 0x39, 0x86, 0x31, 0x08, 0x42, 0x08, 0x42, 0x29, 0x4a, 0xa7, 0x39, 0xe7, 0x39, 0xaa, 0x52, 0xab, 0x5a, 0xc7, 0x39, 0xa7, 0x39, 0x08, 0x42, 0x08, 0x42, 0x28, 0x42, 0x86, 0x31, 0xe8, 0x41, 0x29, 0x4a, 0xa7, 0x39, 0x86, 0x31, 0xa6, 0x31, 0xa6, 0x31, 0x86, 0x31, 0xc7, 0x39, 0x29, 0x4a, 0xe7, 0x39, 0x66, 0x31, 0x65, 0x29, 0x65, 0x29, 0xc7, 0x39, 0xeb, 0x5a, 0xa7, 0x39, 0x08, 0x42, 0x0c, 0x63, + 0xa7, 0x39, 0xc7, 0x39, 0xeb, 0x5a, 0x49, 0x4a, 0x66, 0x31, 0x66, 0x31, 0x65, 0x29, 0xc7, 0x39, 0x49, 0x4a, 0x86, 0x31, 0xc7, 0x39, 0x49, 0x4a, 0x49, 0x4a, 0x49, 0x4a, 0x29, 0x4a, 0xa6, 0x31, 0xe7, 0x39, 0x29, 0x4a, 0xa7, 0x39, 0xe8, 0x41, 0xc7, 0x39, 0xa7, 0x39, 0x29, 0x4a, 0x86, 0x31, 0xc7, 0x39, 0xa7, 0x39, 0x66, 0x31, 0x28, 0x42, 0xc7, 0x39, 0xa6, 0x31, 0xe7, 0x39, 0xe7, 0x39, 0x28, 0x42, 0xa7, 0x39, 0xa7, 0x39, 0x49, 0x4a, 0x49, 0x4a, 0x49, 0x4a, 0x49, 0x4a, 0xa7, 0x39, 0xa6, 0x31, 0x29, 0x4a, 0xa6, 0x31, 0x65, 0x29, 0x65, 0x29, 0x65, 0x29, 0x8a, 0x52, 0xcb, 0x5a, 0x86, 0x31, 0xa6, 0x31, + 0xe8, 0x41, 0xcb, 0x5a, 0xab, 0x5a, 0x86, 0x31, 0x65, 0x29, 0x66, 0x31, 0x86, 0x31, 0x29, 0x4a, 0xa7, 0x39, 0xa6, 0x31, 0x49, 0x4a, 0xa7, 0x39, 0x86, 0x31, 0x86, 0x31, 0x08, 0x42, 0x08, 0x42, 0x86, 0x31, 0x49, 0x4a, 0xa7, 0x39, 0x08, 0x42, 0x29, 0x4a, 0x86, 0x31, 0x28, 0x42, 0x86, 0x31, 0x65, 0x29, 0x66, 0x31, 0x86, 0x31, 0x08, 0x42, 0xe7, 0x39, 0x08, 0x42, 0x08, 0x42, 0xc7, 0x39, 0x08, 0x42, 0x86, 0x31, 0x49, 0x4a, 0xe8, 0x41, 0x66, 0x31, 0x86, 0x31, 0xc7, 0x39, 0x49, 0x4a, 0xa6, 0x31, 0xe7, 0x39, 0x08, 0x42, 0x66, 0x31, 0x66, 0x31, 0x66, 0x31, 0xa6, 0x31, 0xcb, 0x5a, 0xcb, 0x5a, 0xe8, 0x41, + 0x2c, 0x63, 0xaa, 0x52, 0xa7, 0x39, 0xa7, 0x39, 0xe7, 0x39, 0xe8, 0x41, 0x08, 0x42, 0x29, 0x4a, 0x66, 0x31, 0x28, 0x42, 0xc7, 0x39, 0xc7, 0x39, 0xe8, 0x41, 0xc7, 0x39, 0x86, 0x31, 0x28, 0x42, 0x86, 0x31, 0x49, 0x4a, 0xa6, 0x31, 0xc7, 0x39, 0xc7, 0x39, 0xc7, 0x39, 0x28, 0x42, 0x66, 0x31, 0xc7, 0x39, 0x86, 0x31, 0x66, 0x31, 0x08, 0x42, 0xc7, 0x39, 0xe7, 0x39, 0xc7, 0x39, 0xa6, 0x31, 0x08, 0x42, 0xa6, 0x31, 0x49, 0x4a, 0x66, 0x31, 0xc7, 0x39, 0xe8, 0x41, 0xa6, 0x31, 0xc7, 0x39, 0x08, 0x42, 0xa6, 0x31, 0x49, 0x4a, 0x08, 0x42, 0x08, 0x42, 0xe7, 0x39, 0x86, 0x31, 0xc7, 0x39, 0xcb, 0x5a, 0x2c, 0x63, + 0x8a, 0x52, 0xa6, 0x31, 0xc7, 0x39, 0x08, 0x42, 0xc7, 0x39, 0xa7, 0x39, 0x08, 0x42, 0x08, 0x42, 0x66, 0x31, 0x49, 0x4a, 0xa6, 0x31, 0x08, 0x42, 0xa6, 0x31, 0x28, 0x42, 0x86, 0x31, 0x08, 0x42, 0x86, 0x31, 0x49, 0x4a, 0x29, 0x4a, 0xe7, 0x39, 0x08, 0x42, 0x08, 0x42, 0x86, 0x31, 0xc7, 0x39, 0xcb, 0x5a, 0xaa, 0x52, 0xa6, 0x31, 0xa6, 0x31, 0x08, 0x42, 0x08, 0x42, 0xe8, 0x41, 0x49, 0x4a, 0x08, 0x42, 0x86, 0x31, 0x49, 0x4a, 0x86, 0x31, 0x08, 0x42, 0xc7, 0x39, 0x08, 0x42, 0x66, 0x31, 0x29, 0x4a, 0x86, 0x31, 0x49, 0x4a, 0x08, 0x42, 0xa7, 0x39, 0xc7, 0x39, 0x29, 0x4a, 0xa6, 0x31, 0xa6, 0x31, 0x8a, 0x52, + 0x86, 0x31, 0x86, 0x31, 0x08, 0x42, 0xa6, 0x31, 0x08, 0x42, 0xe8, 0x41, 0xc7, 0x39, 0x08, 0x42, 0x86, 0x31, 0x49, 0x4a, 0xa6, 0x31, 0xc7, 0x39, 0x08, 0x42, 0xa7, 0x39, 0xc7, 0x39, 0x08, 0x42, 0x86, 0x31, 0x49, 0x4a, 0xe7, 0x39, 0xc7, 0x39, 0xa7, 0x39, 0x86, 0x31, 0xc7, 0x39, 0xeb, 0x5a, 0x0c, 0x63, 0x0c, 0x63, 0xcb, 0x5a, 0xc7, 0x39, 0x86, 0x31, 0xc7, 0x39, 0xe7, 0x39, 0xe8, 0x41, 0x28, 0x42, 0x86, 0x31, 0x49, 0x4a, 0xc7, 0x39, 0xa6, 0x31, 0x08, 0x42, 0xa7, 0x39, 0x86, 0x31, 0x29, 0x4a, 0xa6, 0x31, 0x29, 0x4a, 0x86, 0x31, 0x08, 0x42, 0xe7, 0x39, 0xc7, 0x39, 0x28, 0x42, 0x65, 0x29, 0x86, 0x31, + 0x66, 0x31, 0xa6, 0x31, 0xe8, 0x41, 0xc7, 0x39, 0x08, 0x42, 0xc7, 0x39, 0xe8, 0x41, 0x28, 0x42, 0x66, 0x31, 0x28, 0x42, 0x08, 0x42, 0x86, 0x31, 0x86, 0x31, 0xc7, 0x39, 0x49, 0x4a, 0xa6, 0x31, 0xe8, 0x41, 0x08, 0x42, 0x65, 0x29, 0x65, 0x29, 0x66, 0x31, 0x86, 0x31, 0xec, 0x62, 0xcb, 0x5a, 0xc7, 0x39, 0xe7, 0x39, 0xeb, 0x5a, 0xcb, 0x5a, 0xa6, 0x31, 0x66, 0x31, 0x65, 0x29, 0x86, 0x31, 0x08, 0x42, 0xc7, 0x39, 0xa7, 0x39, 0x49, 0x4a, 0xc7, 0x39, 0x86, 0x31, 0x86, 0x31, 0x28, 0x42, 0x08, 0x42, 0xa6, 0x31, 0x08, 0x42, 0xc7, 0x39, 0x08, 0x42, 0x08, 0x42, 0xa7, 0x39, 0x49, 0x4a, 0x66, 0x31, 0x66, 0x31, + 0xe8, 0x41, 0x86, 0x31, 0x08, 0x42, 0xc7, 0x39, 0xe7, 0x39, 0xc7, 0x39, 0xc7, 0x39, 0x29, 0x4a, 0xc7, 0x39, 0x86, 0x31, 0x08, 0x42, 0x29, 0x4a, 0x29, 0x4a, 0x08, 0x42, 0xa6, 0x31, 0xa7, 0x39, 0x49, 0x4a, 0xa6, 0x31, 0x65, 0x29, 0x66, 0x31, 0x65, 0x29, 0x8a, 0x52, 0xcb, 0x5a, 0xa6, 0x31, 0xe7, 0x39, 0xc7, 0x39, 0xa6, 0x31, 0xcb, 0x5a, 0x49, 0x4a, 0x66, 0x31, 0x65, 0x29, 0x66, 0x31, 0xc7, 0x39, 0x29, 0x4a, 0x86, 0x31, 0xa7, 0x39, 0x08, 0x42, 0x29, 0x4a, 0x29, 0x4a, 0x08, 0x42, 0x86, 0x31, 0x08, 0x42, 0xe8, 0x41, 0xc7, 0x39, 0x08, 0x42, 0xc7, 0x39, 0xe8, 0x41, 0x08, 0x42, 0x66, 0x31, 0x08, 0x42, + 0x8a, 0x52, 0x08, 0x42, 0xa6, 0x31, 0xe8, 0x41, 0xe8, 0x41, 0xe8, 0x41, 0x86, 0x31, 0xe7, 0x39, 0x49, 0x4a, 0xe8, 0x41, 0xa6, 0x31, 0x86, 0x31, 0x86, 0x31, 0xa6, 0x31, 0xe8, 0x41, 0x29, 0x4a, 0xc7, 0x39, 0x66, 0x31, 0x65, 0x29, 0x65, 0x29, 0xa6, 0x31, 0x0c, 0x63, 0xc7, 0x39, 0x08, 0x42, 0xeb, 0x5a, 0xec, 0x62, 0x08, 0x42, 0xe8, 0x41, 0xab, 0x5a, 0x86, 0x31, 0x65, 0x29, 0x65, 0x29, 0x66, 0x31, 0xe7, 0x39, 0x49, 0x4a, 0xe7, 0x39, 0xa6, 0x31, 0xa6, 0x31, 0xa6, 0x31, 0xa6, 0x31, 0x08, 0x42, 0x49, 0x4a, 0xa7, 0x39, 0x86, 0x31, 0xe8, 0x41, 0x08, 0x42, 0xe8, 0x41, 0x86, 0x31, 0x08, 0x42, 0xaa, 0x52, + 0xc7, 0x39, 0x69, 0x4a, 0x86, 0x31, 0x66, 0x31, 0x66, 0x31, 0x65, 0x29, 0x65, 0x29, 0x66, 0x31, 0xc7, 0x39, 0x08, 0x42, 0x08, 0x42, 0x29, 0x4a, 0x49, 0x4a, 0x49, 0x4a, 0x08, 0x42, 0xa6, 0x31, 0x65, 0x29, 0x49, 0x4a, 0x8a, 0x52, 0xa7, 0x39, 0xa6, 0x31, 0xaa, 0x52, 0x86, 0x31, 0x8a, 0x52, 0xe8, 0x41, 0xc7, 0x39, 0xcb, 0x5a, 0xa6, 0x31, 0x69, 0x4a, 0x86, 0x31, 0xc7, 0x39, 0x8a, 0x52, 0x29, 0x4a, 0x66, 0x31, 0xa6, 0x31, 0x08, 0x42, 0x29, 0x4a, 0x49, 0x4a, 0x29, 0x4a, 0x08, 0x42, 0xe8, 0x41, 0xa7, 0x39, 0x66, 0x31, 0x65, 0x29, 0x65, 0x29, 0x86, 0x31, 0x66, 0x31, 0x86, 0x31, 0x8a, 0x52, 0xc7, 0x39, + 0x49, 0x4a, 0x08, 0x42, 0xc7, 0x39, 0x86, 0x31, 0x08, 0x42, 0x28, 0x42, 0xa6, 0x31, 0x66, 0x31, 0x86, 0x31, 0xc7, 0x39, 0xc7, 0x39, 0x86, 0x31, 0x28, 0x42, 0x08, 0x42, 0x65, 0x29, 0x65, 0x29, 0x65, 0x29, 0x49, 0x4a, 0xec, 0x62, 0xcb, 0x5a, 0xe8, 0x41, 0x86, 0x31, 0xa6, 0x31, 0x8a, 0x52, 0x8a, 0x52, 0x28, 0x42, 0xab, 0x5a, 0xa7, 0x39, 0x66, 0x31, 0x49, 0x4a, 0xeb, 0x5a, 0xeb, 0x5a, 0x28, 0x42, 0x65, 0x29, 0x65, 0x29, 0x66, 0x31, 0x08, 0x42, 0xe8, 0x41, 0x86, 0x31, 0xc7, 0x39, 0xc7, 0x39, 0x86, 0x31, 0x65, 0x29, 0xa6, 0x31, 0x28, 0x42, 0xe8, 0x41, 0x86, 0x31, 0xc7, 0x39, 0x69, 0x4a, 0x28, 0x42, + 0xe7, 0x39, 0x08, 0x42, 0xc7, 0x39, 0x69, 0x4a, 0x69, 0x4a, 0x69, 0x4a, 0x08, 0x42, 0x65, 0x29, 0x29, 0x4a, 0xe8, 0x41, 0x08, 0x42, 0xc7, 0x39, 0xc7, 0x39, 0x08, 0x42, 0x45, 0x29, 0x65, 0x29, 0x65, 0x29, 0x86, 0x31, 0xab, 0x5a, 0xe8, 0x41, 0xaa, 0x52, 0xc7, 0x39, 0xa6, 0x31, 0x8a, 0x52, 0x08, 0x42, 0x08, 0x42, 0x8a, 0x52, 0xa7, 0x39, 0x28, 0x42, 0x6a, 0x52, 0xc7, 0x39, 0xab, 0x5a, 0xa6, 0x31, 0x65, 0x29, 0x65, 0x29, 0x66, 0x31, 0x08, 0x42, 0xa6, 0x31, 0x08, 0x42, 0x08, 0x42, 0x08, 0x42, 0xe8, 0x41, 0x65, 0x29, 0x28, 0x42, 0x8a, 0x52, 0x6a, 0x52, 0x08, 0x42, 0xe7, 0x39, 0x49, 0x4a, 0xa7, 0x39, + 0x86, 0x31, 0x29, 0x4a, 0xe7, 0x39, 0x28, 0x42, 0x86, 0x31, 0x49, 0x4a, 0xe8, 0x41, 0x86, 0x31, 0x49, 0x4a, 0x86, 0x31, 0x08, 0x42, 0xa6, 0x31, 0x08, 0x42, 0xc7, 0x39, 0x65, 0x29, 0x66, 0x31, 0xc7, 0x39, 0xc7, 0x39, 0xe7, 0x39, 0x6a, 0x52, 0xe7, 0x39, 0x8a, 0x52, 0xa7, 0x39, 0x6a, 0x52, 0x86, 0x31, 0x66, 0x31, 0xcb, 0x5a, 0xc7, 0x39, 0x49, 0x4a, 0xe7, 0x39, 0xaa, 0x52, 0xe8, 0x41, 0xc7, 0x39, 0xc7, 0x39, 0x65, 0x29, 0x66, 0x31, 0xe7, 0x39, 0xc7, 0x39, 0xe8, 0x41, 0x08, 0x42, 0xc7, 0x39, 0x08, 0x42, 0x86, 0x31, 0x08, 0x42, 0x69, 0x4a, 0xa6, 0x31, 0x49, 0x4a, 0xa6, 0x31, 0x6a, 0x52, 0x65, 0x29, + 0x28, 0x42, 0x08, 0x42, 0x28, 0x42, 0x6a, 0x52, 0x49, 0x4a, 0x08, 0x42, 0x86, 0x31, 0x66, 0x31, 0x29, 0x4a, 0xe7, 0x39, 0xa6, 0x31, 0xe7, 0x39, 0x29, 0x4a, 0x66, 0x31, 0xa7, 0x39, 0xaa, 0x52, 0xcb, 0x5a, 0x69, 0x4a, 0x86, 0x31, 0xc7, 0x39, 0x69, 0x4a, 0x49, 0x4a, 0x49, 0x4a, 0x28, 0x42, 0x29, 0x4a, 0x69, 0x4a, 0x29, 0x4a, 0x28, 0x42, 0x8a, 0x52, 0x49, 0x4a, 0xa7, 0x39, 0x86, 0x31, 0x6a, 0x52, 0xcb, 0x5a, 0x8a, 0x52, 0xa6, 0x31, 0x86, 0x31, 0x28, 0x42, 0xc7, 0x39, 0xa7, 0x39, 0xe8, 0x41, 0xe8, 0x41, 0x66, 0x31, 0x86, 0x31, 0x08, 0x42, 0x49, 0x4a, 0xaa, 0x52, 0xe7, 0x39, 0x08, 0x42, 0x28, 0x42, + 0x28, 0x42, 0xa7, 0x39, 0x49, 0x4a, 0xc7, 0x39, 0xa6, 0x31, 0xe7, 0x39, 0xc7, 0x39, 0x86, 0x31, 0x86, 0x31, 0x28, 0x42, 0x49, 0x4a, 0x08, 0x42, 0x86, 0x31, 0xa7, 0x39, 0xec, 0x62, 0xab, 0x5a, 0xa6, 0x31, 0x86, 0x31, 0xa7, 0x39, 0xc7, 0x39, 0x86, 0x31, 0x08, 0x42, 0xcb, 0x5a, 0xe8, 0x41, 0xaa, 0x52, 0x8a, 0x52, 0xa7, 0x39, 0xcb, 0x5a, 0xe7, 0x39, 0xa6, 0x31, 0xc7, 0x39, 0xa7, 0x39, 0x86, 0x31, 0xc7, 0x39, 0xcb, 0x5a, 0xcb, 0x5a, 0xa7, 0x39, 0xa6, 0x31, 0x28, 0x42, 0x49, 0x4a, 0x08, 0x42, 0x86, 0x31, 0x86, 0x31, 0xc7, 0x39, 0xc7, 0x39, 0xa6, 0x31, 0xe7, 0x39, 0x6a, 0x52, 0x86, 0x31, 0x08, 0x42, + 0x08, 0x42, 0xa6, 0x31, 0x86, 0x31, 0x29, 0x4a, 0x69, 0x4a, 0x49, 0x4a, 0x69, 0x4a, 0x8a, 0x52, 0x08, 0x42, 0x65, 0x29, 0x65, 0x29, 0x65, 0x29, 0xa6, 0x31, 0xeb, 0x5a, 0xab, 0x5a, 0xa6, 0x31, 0x28, 0x42, 0xcb, 0x5a, 0xcb, 0x5a, 0xaa, 0x52, 0xcb, 0x5a, 0x49, 0x4a, 0xa6, 0x31, 0x86, 0x31, 0xa6, 0x31, 0x86, 0x31, 0xa6, 0x31, 0xc7, 0x39, 0x69, 0x4a, 0xab, 0x5a, 0xab, 0x5a, 0xcb, 0x5a, 0xcb, 0x5a, 0xe8, 0x41, 0xa6, 0x31, 0xeb, 0x5a, 0xab, 0x5a, 0xa6, 0x31, 0x66, 0x31, 0x65, 0x29, 0x66, 0x31, 0x08, 0x42, 0x8a, 0x52, 0x69, 0x4a, 0x49, 0x4a, 0x6a, 0x52, 0x08, 0x42, 0xa6, 0x31, 0xa6, 0x31, 0x08, 0x42, + 0xe8, 0x41, 0x29, 0x4a, 0x29, 0x4a, 0xe7, 0x39, 0x65, 0x29, 0xc7, 0x39, 0x08, 0x42, 0xe8, 0x41, 0xab, 0x5a, 0xe8, 0x41, 0x65, 0x29, 0xa7, 0x39, 0xcb, 0x5a, 0x0c, 0x63, 0xe8, 0x41, 0xe8, 0x41, 0x0c, 0x63, 0xc7, 0x39, 0x49, 0x4a, 0x08, 0x42, 0x66, 0x31, 0x28, 0x42, 0xcb, 0x5a, 0xc7, 0x39, 0x49, 0x4a, 0xaa, 0x52, 0x86, 0x31, 0xaa, 0x52, 0x08, 0x42, 0x65, 0x29, 0x28, 0x42, 0x49, 0x4a, 0x28, 0x42, 0xec, 0x62, 0xa6, 0x31, 0xe8, 0x41, 0x2c, 0x63, 0x8a, 0x52, 0x86, 0x31, 0x66, 0x31, 0xe8, 0x41, 0xaa, 0x52, 0xc7, 0x39, 0x28, 0x42, 0xa7, 0x39, 0x66, 0x31, 0x29, 0x4a, 0x08, 0x42, 0x08, 0x42, 0x08, 0x42, +#endif +#if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP != 0 + /*Pixel format: Red: 5 bit, Green: 6 bit, Blue: 5 bit BUT the 2 bytes are swapped*/ + 0x39, 0xc7, 0x4a, 0x29, 0x4a, 0x29, 0x39, 0xe7, 0x31, 0x86, 0x41, 0xe8, 0x42, 0x28, 0x41, 0xe8, 0x52, 0xaa, 0x41, 0xe8, 0x29, 0x45, 0x39, 0xa7, 0x5a, 0xcb, 0x63, 0x0c, 0x41, 0xe8, 0x42, 0x08, 0x62, 0xec, 0x39, 0xc7, 0x52, 0x8a, 0x4a, 0x29, 0x31, 0x86, 0x41, 0xe8, 0x5a, 0xcb, 0x39, 0xe7, 0x4a, 0x49, 0x52, 0xaa, 0x31, 0x86, 0x5a, 0xab, 0x41, 0xe8, 0x31, 0x86, 0x4a, 0x69, 0x52, 0x6a, 0x42, 0x08, 0x62, 0xec, 0x31, 0xa6, 0x42, 0x08, 0x63, 0x0c, 0x52, 0x8a, 0x31, 0x86, 0x31, 0x86, 0x41, 0xe8, 0x52, 0x8a, 0x39, 0xc7, 0x4a, 0x49, 0x39, 0xc7, 0x31, 0x86, 0x42, 0x08, 0x42, 0x08, 0x42, 0x08, 0x41, 0xe8, + 0x4a, 0x29, 0x31, 0xa6, 0x39, 0xa7, 0x4a, 0x29, 0x4a, 0x29, 0x42, 0x08, 0x42, 0x28, 0x52, 0x6a, 0x41, 0xe8, 0x31, 0x86, 0x31, 0x86, 0x31, 0x66, 0x31, 0x86, 0x5a, 0xcb, 0x5a, 0xcb, 0x39, 0xa7, 0x4a, 0x29, 0x52, 0xaa, 0x4a, 0x49, 0x4a, 0x29, 0x4a, 0x69, 0x52, 0x6a, 0x39, 0xc7, 0x31, 0x86, 0x39, 0xe7, 0x39, 0xa7, 0x31, 0x86, 0x41, 0xe8, 0x52, 0x6a, 0x4a, 0x49, 0x4a, 0x29, 0x4a, 0x49, 0x52, 0xaa, 0x42, 0x08, 0x39, 0xc7, 0x5a, 0xeb, 0x52, 0xaa, 0x31, 0x86, 0x31, 0x86, 0x31, 0x86, 0x31, 0x86, 0x42, 0x08, 0x4a, 0x69, 0x42, 0x08, 0x42, 0x08, 0x4a, 0x29, 0x42, 0x08, 0x39, 0xa7, 0x31, 0xa6, 0x4a, 0x29, + 0x4a, 0x29, 0x39, 0xc7, 0x4a, 0x29, 0x42, 0x08, 0x39, 0xe7, 0x39, 0xc7, 0x39, 0xc7, 0x31, 0x86, 0x31, 0xa6, 0x42, 0x08, 0x42, 0x08, 0x42, 0x08, 0x31, 0xa6, 0x39, 0xa7, 0x5a, 0xab, 0x5a, 0xcb, 0x41, 0xe8, 0x31, 0xa6, 0x39, 0xc7, 0x39, 0xc7, 0x39, 0xe7, 0x42, 0x28, 0x52, 0x8a, 0x41, 0xe8, 0x52, 0x8a, 0x52, 0x8a, 0x39, 0xa7, 0x52, 0xaa, 0x4a, 0x29, 0x39, 0xc7, 0x39, 0xc7, 0x39, 0xc7, 0x31, 0xa6, 0x42, 0x08, 0x5a, 0xeb, 0x5a, 0xab, 0x39, 0xa7, 0x39, 0xc7, 0x42, 0x08, 0x42, 0x08, 0x42, 0x08, 0x31, 0xa6, 0x31, 0xa6, 0x39, 0xc7, 0x39, 0xc7, 0x41, 0xe8, 0x42, 0x28, 0x4a, 0x49, 0x31, 0x86, 0x42, 0x28, + 0x39, 0xc7, 0x4a, 0x29, 0x42, 0x08, 0x42, 0x28, 0x4a, 0x49, 0x4a, 0x49, 0x31, 0x86, 0x31, 0x66, 0x4a, 0x29, 0x39, 0xa7, 0x39, 0xc7, 0x39, 0xa7, 0x4a, 0x49, 0x31, 0x86, 0x31, 0xa6, 0x4a, 0x69, 0x5a, 0xeb, 0x5a, 0xcb, 0x31, 0xa6, 0x41, 0xe8, 0x52, 0x6a, 0x42, 0x28, 0x4a, 0x69, 0x4a, 0x29, 0x42, 0x08, 0x4a, 0x29, 0x4a, 0x49, 0x42, 0x08, 0x4a, 0x29, 0x52, 0x8a, 0x39, 0xc7, 0x31, 0xa6, 0x5a, 0xab, 0x5a, 0xeb, 0x4a, 0x49, 0x31, 0xa6, 0x39, 0xa7, 0x42, 0x08, 0x31, 0xa6, 0x39, 0xc7, 0x39, 0xc7, 0x41, 0xe8, 0x31, 0x66, 0x31, 0x86, 0x4a, 0x69, 0x4a, 0x29, 0x4a, 0x69, 0x39, 0xc7, 0x4a, 0x29, 0x41, 0xe8, + 0x31, 0x86, 0x42, 0x28, 0x39, 0xe7, 0x4a, 0x49, 0x31, 0x66, 0x4a, 0x49, 0x42, 0x08, 0x31, 0x86, 0x4a, 0x29, 0x31, 0xa6, 0x4a, 0x49, 0x39, 0xc7, 0x41, 0xe8, 0x41, 0xe8, 0x29, 0x65, 0x31, 0x66, 0x31, 0x86, 0x31, 0x86, 0x41, 0xe8, 0x52, 0x8a, 0x39, 0xa7, 0x5a, 0xab, 0x31, 0xa6, 0x4a, 0x69, 0x31, 0x86, 0x31, 0x66, 0x5a, 0xab, 0x39, 0xc7, 0x4a, 0x49, 0x39, 0xa7, 0x5a, 0xcb, 0x39, 0xe7, 0x31, 0x86, 0x31, 0x86, 0x31, 0x66, 0x31, 0x66, 0x39, 0xe7, 0x39, 0xc7, 0x42, 0x08, 0x42, 0x08, 0x39, 0xc7, 0x42, 0x08, 0x31, 0x86, 0x42, 0x08, 0x4a, 0x49, 0x31, 0x86, 0x4a, 0x49, 0x31, 0x86, 0x52, 0x6a, 0x31, 0x66, + 0x41, 0xe8, 0x42, 0x08, 0x39, 0xc7, 0x4a, 0x49, 0x4a, 0x49, 0x4a, 0x49, 0x42, 0x08, 0x31, 0x66, 0x42, 0x28, 0x39, 0xe7, 0x39, 0xe7, 0x39, 0xa7, 0x39, 0xc7, 0x42, 0x08, 0x29, 0x65, 0x31, 0x66, 0x29, 0x65, 0x31, 0xa6, 0x5a, 0xcb, 0x42, 0x08, 0x52, 0x8a, 0x39, 0xc7, 0x31, 0xa6, 0x52, 0x8a, 0x42, 0x08, 0x42, 0x08, 0x52, 0x8a, 0x31, 0xa6, 0x42, 0x08, 0x4a, 0x69, 0x39, 0xe7, 0x5a, 0xcb, 0x31, 0xa6, 0x29, 0x65, 0x29, 0x65, 0x31, 0x66, 0x42, 0x08, 0x39, 0xa7, 0x41, 0xe8, 0x39, 0xc7, 0x39, 0xe7, 0x41, 0xe8, 0x29, 0x65, 0x42, 0x08, 0x4a, 0x69, 0x4a, 0x49, 0x42, 0x08, 0x39, 0xe7, 0x4a, 0x49, 0x39, 0xc7, + 0x42, 0x28, 0x42, 0x08, 0x39, 0xc7, 0x31, 0x86, 0x41, 0xe8, 0x42, 0x08, 0x31, 0xa6, 0x29, 0x65, 0x31, 0x66, 0x39, 0xe7, 0x39, 0xe7, 0x39, 0xa7, 0x4a, 0x29, 0x42, 0x28, 0x29, 0x65, 0x29, 0x65, 0x29, 0x45, 0x4a, 0x49, 0x63, 0x0c, 0x52, 0x8a, 0x41, 0xe8, 0x39, 0xa7, 0x31, 0xa6, 0x52, 0x8a, 0x52, 0x6a, 0x42, 0x08, 0x5a, 0xcb, 0x39, 0xa7, 0x31, 0x86, 0x4a, 0x29, 0x52, 0xaa, 0x63, 0x0c, 0x4a, 0x49, 0x29, 0x65, 0x29, 0x65, 0x31, 0x86, 0x42, 0x08, 0x42, 0x08, 0x39, 0xa7, 0x41, 0xe8, 0x39, 0xc7, 0x31, 0x86, 0x29, 0x65, 0x31, 0xa6, 0x42, 0x08, 0x41, 0xe8, 0x31, 0x86, 0x39, 0xc7, 0x52, 0x6a, 0x41, 0xe8, + 0x39, 0xe7, 0x52, 0x6a, 0x31, 0x86, 0x31, 0x66, 0x31, 0x66, 0x31, 0x66, 0x29, 0x65, 0x31, 0x66, 0x41, 0xe8, 0x4a, 0x29, 0x42, 0x28, 0x42, 0x08, 0x42, 0x28, 0x4a, 0x49, 0x4a, 0x29, 0x39, 0xc7, 0x29, 0x65, 0x42, 0x28, 0x4a, 0x29, 0x31, 0xa6, 0x39, 0xa7, 0x52, 0xaa, 0x31, 0x66, 0x52, 0x8a, 0x42, 0x08, 0x42, 0x28, 0x5a, 0xcb, 0x31, 0xa6, 0x4a, 0x69, 0x31, 0x86, 0x39, 0xa7, 0x4a, 0x29, 0x42, 0x08, 0x31, 0x66, 0x39, 0xc7, 0x4a, 0x29, 0x4a, 0x49, 0x42, 0x28, 0x42, 0x08, 0x42, 0x28, 0x4a, 0x29, 0x39, 0xc7, 0x31, 0x86, 0x29, 0x65, 0x29, 0x65, 0x31, 0x66, 0x29, 0x65, 0x31, 0x86, 0x52, 0x8a, 0x41, 0xe8, + 0x52, 0xaa, 0x42, 0x08, 0x31, 0xa6, 0x4a, 0x29, 0x4a, 0x49, 0x42, 0x28, 0x31, 0x66, 0x41, 0xe8, 0x4a, 0x49, 0x39, 0xc7, 0x31, 0x66, 0x31, 0x66, 0x31, 0x66, 0x31, 0x66, 0x39, 0xc7, 0x4a, 0x49, 0x39, 0xe7, 0x31, 0x66, 0x31, 0x66, 0x31, 0x66, 0x31, 0xa6, 0x63, 0x0c, 0x39, 0xe7, 0x42, 0x08, 0x63, 0x0c, 0x63, 0x0c, 0x41, 0xe8, 0x41, 0xe8, 0x5a, 0xab, 0x31, 0x86, 0x31, 0x66, 0x31, 0x66, 0x31, 0x86, 0x42, 0x08, 0x4a, 0x49, 0x39, 0xa7, 0x31, 0x66, 0x31, 0x66, 0x31, 0x66, 0x31, 0x86, 0x39, 0xe7, 0x4a, 0x69, 0x39, 0xc7, 0x31, 0x86, 0x4a, 0x29, 0x4a, 0x49, 0x42, 0x28, 0x31, 0x86, 0x41, 0xe8, 0x5a, 0xab, + 0x41, 0xe8, 0x31, 0x66, 0x42, 0x08, 0x39, 0xc7, 0x31, 0xa6, 0x39, 0xe7, 0x39, 0xe7, 0x4a, 0x29, 0x39, 0xa7, 0x31, 0x86, 0x42, 0x28, 0x4a, 0x49, 0x4a, 0x49, 0x42, 0x28, 0x31, 0xa6, 0x31, 0xa6, 0x4a, 0x49, 0x39, 0xa7, 0x29, 0x65, 0x31, 0x66, 0x29, 0x65, 0x52, 0x8a, 0x5a, 0xcb, 0x31, 0xa6, 0x39, 0xe7, 0x39, 0xc7, 0x31, 0xa6, 0x5a, 0xcb, 0x4a, 0x49, 0x31, 0x66, 0x31, 0x66, 0x31, 0x66, 0x39, 0xc7, 0x4a, 0x29, 0x31, 0x86, 0x31, 0xa6, 0x42, 0x08, 0x4a, 0x49, 0x4a, 0x49, 0x42, 0x08, 0x31, 0x86, 0x41, 0xe8, 0x41, 0xe8, 0x39, 0xc7, 0x41, 0xe8, 0x31, 0x86, 0x41, 0xe8, 0x42, 0x08, 0x29, 0x65, 0x41, 0xe8, + 0x29, 0x65, 0x31, 0x86, 0x42, 0x08, 0x39, 0xc7, 0x4a, 0x49, 0x41, 0xe8, 0x39, 0xe7, 0x42, 0x28, 0x31, 0x66, 0x42, 0x28, 0x42, 0x08, 0x31, 0xa6, 0x39, 0xa7, 0x39, 0xc7, 0x4a, 0x29, 0x31, 0xa6, 0x39, 0xe7, 0x42, 0x28, 0x29, 0x65, 0x31, 0x66, 0x29, 0x65, 0x31, 0x86, 0x5a, 0xcb, 0x5a, 0xcb, 0x41, 0xe8, 0x41, 0xe8, 0x5a, 0xcb, 0x5a, 0xab, 0x31, 0x86, 0x29, 0x65, 0x29, 0x65, 0x31, 0x86, 0x42, 0x28, 0x39, 0xa7, 0x39, 0xa7, 0x4a, 0x49, 0x39, 0xc7, 0x31, 0xa6, 0x31, 0xa6, 0x42, 0x08, 0x42, 0x08, 0x31, 0xa6, 0x42, 0x08, 0x39, 0xc7, 0x42, 0x08, 0x42, 0x28, 0x39, 0xa7, 0x4a, 0x29, 0x29, 0x65, 0x29, 0x65, + 0x31, 0xa6, 0x31, 0x66, 0x42, 0x08, 0x39, 0xa7, 0x39, 0xc7, 0x39, 0xa7, 0x39, 0xa7, 0x42, 0x08, 0x31, 0x66, 0x4a, 0x49, 0x31, 0xa6, 0x39, 0xc7, 0x41, 0xe8, 0x39, 0xc7, 0x39, 0xc7, 0x42, 0x08, 0x31, 0x86, 0x4a, 0x49, 0x42, 0x28, 0x42, 0x28, 0x42, 0x08, 0x31, 0x86, 0x39, 0xa7, 0x5a, 0xcb, 0x62, 0xec, 0x63, 0x0c, 0x52, 0xaa, 0x31, 0xa6, 0x31, 0xa6, 0x42, 0x08, 0x42, 0x08, 0x42, 0x28, 0x42, 0x28, 0x31, 0x86, 0x4a, 0x49, 0x39, 0xa7, 0x39, 0xc7, 0x42, 0x08, 0x39, 0xa7, 0x31, 0x86, 0x4a, 0x29, 0x31, 0xa6, 0x4a, 0x29, 0x31, 0x66, 0x39, 0xc7, 0x31, 0xa6, 0x39, 0xe7, 0x42, 0x08, 0x29, 0x65, 0x31, 0xa6, + 0x5a, 0xcb, 0x31, 0x86, 0x31, 0xa6, 0x4a, 0x49, 0x41, 0xe8, 0x39, 0xc7, 0x4a, 0x29, 0x42, 0x28, 0x31, 0x66, 0x4a, 0x49, 0x31, 0xa6, 0x39, 0xe7, 0x31, 0x66, 0x42, 0x28, 0x31, 0x86, 0x42, 0x28, 0x31, 0x86, 0x4a, 0x49, 0x42, 0x08, 0x31, 0xa6, 0x39, 0xc7, 0x4a, 0x29, 0x39, 0xa7, 0x31, 0xa6, 0x5a, 0xcb, 0x52, 0x8a, 0x31, 0x86, 0x39, 0xc7, 0x42, 0x28, 0x39, 0xc7, 0x39, 0xa7, 0x42, 0x28, 0x42, 0x08, 0x31, 0xa6, 0x4a, 0x49, 0x31, 0x86, 0x41, 0xe8, 0x31, 0xa6, 0x42, 0x08, 0x31, 0x86, 0x4a, 0x29, 0x31, 0xa6, 0x4a, 0x49, 0x42, 0x28, 0x39, 0xc7, 0x42, 0x08, 0x42, 0x28, 0x31, 0x86, 0x31, 0xa6, 0x5a, 0xab, + 0x62, 0xec, 0x5a, 0xcb, 0x39, 0xa7, 0x31, 0x86, 0x41, 0xe8, 0x42, 0x08, 0x42, 0x28, 0x4a, 0x49, 0x31, 0x86, 0x42, 0x08, 0x39, 0xc7, 0x39, 0xc7, 0x42, 0x28, 0x39, 0xe7, 0x31, 0x86, 0x42, 0x28, 0x31, 0x86, 0x4a, 0x29, 0x31, 0x86, 0x39, 0xc7, 0x39, 0xc7, 0x31, 0xa6, 0x4a, 0x29, 0x31, 0x66, 0x31, 0xa6, 0x31, 0x86, 0x31, 0x66, 0x42, 0x08, 0x39, 0xa7, 0x39, 0xc7, 0x39, 0xc7, 0x31, 0xa6, 0x42, 0x08, 0x31, 0xa6, 0x4a, 0x49, 0x31, 0x86, 0x39, 0xc7, 0x4a, 0x29, 0x39, 0xa7, 0x39, 0xc7, 0x42, 0x08, 0x31, 0xa6, 0x4a, 0x49, 0x42, 0x08, 0x42, 0x08, 0x39, 0xe7, 0x31, 0x86, 0x39, 0xc7, 0x5a, 0xeb, 0x63, 0x0c, + 0x42, 0x08, 0x5a, 0xcb, 0x5a, 0xab, 0x31, 0xa6, 0x29, 0x65, 0x29, 0x65, 0x31, 0x66, 0x4a, 0x29, 0x39, 0xc7, 0x31, 0xa6, 0x4a, 0x29, 0x39, 0xc7, 0x31, 0xa6, 0x31, 0x86, 0x42, 0x08, 0x42, 0x08, 0x31, 0x86, 0x4a, 0x49, 0x39, 0xa7, 0x42, 0x08, 0x4a, 0x29, 0x31, 0x86, 0x4a, 0x29, 0x31, 0x86, 0x29, 0x65, 0x31, 0x66, 0x31, 0x86, 0x42, 0x08, 0x39, 0xe7, 0x41, 0xe8, 0x42, 0x28, 0x39, 0xc7, 0x42, 0x08, 0x31, 0x86, 0x4a, 0x49, 0x42, 0x08, 0x31, 0x86, 0x31, 0x86, 0x39, 0xc7, 0x4a, 0x29, 0x39, 0xa7, 0x41, 0xe8, 0x42, 0x08, 0x29, 0x65, 0x29, 0x65, 0x29, 0x45, 0x39, 0xa7, 0x62, 0xec, 0x5a, 0xcb, 0x42, 0x08, + 0x41, 0xe8, 0x39, 0xa7, 0x5a, 0xcb, 0x4a, 0x49, 0x31, 0x66, 0x29, 0x65, 0x29, 0x65, 0x39, 0xc7, 0x4a, 0x49, 0x31, 0xa6, 0x31, 0xa6, 0x42, 0x08, 0x42, 0x08, 0x42, 0x28, 0x42, 0x08, 0x31, 0x86, 0x41, 0xe8, 0x4a, 0x29, 0x31, 0xa6, 0x42, 0x08, 0x39, 0xc7, 0x39, 0xc7, 0x42, 0x28, 0x31, 0x86, 0x42, 0x08, 0x41, 0xe8, 0x31, 0x66, 0x42, 0x08, 0x39, 0xe7, 0x39, 0xa7, 0x42, 0x08, 0x39, 0xc7, 0x42, 0x08, 0x39, 0xc7, 0x31, 0xa6, 0x42, 0x08, 0x42, 0x28, 0x42, 0x08, 0x42, 0x08, 0x31, 0xa6, 0x39, 0xa7, 0x4a, 0x29, 0x31, 0xa6, 0x29, 0x65, 0x29, 0x65, 0x31, 0x66, 0x52, 0xaa, 0x5a, 0xab, 0x31, 0xa6, 0x39, 0xe7, + 0x62, 0xec, 0x42, 0x28, 0x41, 0xe8, 0x5a, 0xeb, 0x31, 0x86, 0x31, 0x66, 0x29, 0x65, 0x29, 0x65, 0x39, 0xe7, 0x4a, 0x49, 0x39, 0xe7, 0x31, 0x86, 0x31, 0x86, 0x31, 0x86, 0x31, 0x86, 0x39, 0xe7, 0x4a, 0x69, 0x39, 0xc7, 0x31, 0x66, 0x42, 0x08, 0x4a, 0x29, 0x42, 0x08, 0x31, 0x86, 0x42, 0x08, 0x52, 0xaa, 0x5a, 0xab, 0x39, 0xe7, 0x31, 0x86, 0x42, 0x08, 0x4a, 0x29, 0x41, 0xe8, 0x31, 0x66, 0x41, 0xe8, 0x4a, 0x49, 0x39, 0xc7, 0x31, 0x86, 0x31, 0x66, 0x31, 0x86, 0x31, 0x86, 0x41, 0xe8, 0x4a, 0x49, 0x39, 0xc7, 0x29, 0x65, 0x29, 0x65, 0x29, 0x65, 0x39, 0xc7, 0x5a, 0xeb, 0x31, 0xa6, 0x42, 0x28, 0x63, 0x0c, + 0x39, 0xc7, 0x5a, 0xab, 0x31, 0xa6, 0x5a, 0xcb, 0x31, 0x86, 0x31, 0xa6, 0x4a, 0x49, 0x42, 0x08, 0x31, 0x66, 0x39, 0xa7, 0x42, 0x28, 0x4a, 0x49, 0x4a, 0x49, 0x4a, 0x29, 0x4a, 0x49, 0x4a, 0x29, 0x39, 0xc7, 0x31, 0x66, 0x31, 0x66, 0x31, 0x66, 0x31, 0x66, 0x31, 0x66, 0x31, 0x86, 0x4a, 0x69, 0x39, 0xc7, 0x39, 0xc7, 0x52, 0x8a, 0x31, 0x66, 0x31, 0x66, 0x31, 0x66, 0x31, 0x66, 0x31, 0x66, 0x31, 0x86, 0x41, 0xe8, 0x4a, 0x29, 0x4a, 0x49, 0x4a, 0x29, 0x4a, 0x49, 0x4a, 0x49, 0x42, 0x28, 0x31, 0xa6, 0x29, 0x65, 0x4a, 0x49, 0x4a, 0x29, 0x31, 0x86, 0x39, 0xe7, 0x4a, 0x49, 0x31, 0x86, 0x5a, 0xeb, 0x39, 0xc7, + 0x52, 0x6a, 0x4a, 0x49, 0x39, 0xc7, 0x31, 0xa6, 0x39, 0xe7, 0x5a, 0xcb, 0x63, 0x0c, 0x4a, 0x29, 0x31, 0x66, 0x31, 0x66, 0x29, 0x65, 0x42, 0x08, 0x42, 0x28, 0x31, 0x86, 0x39, 0xa7, 0x39, 0xa7, 0x31, 0x86, 0x31, 0x66, 0x31, 0x86, 0x41, 0xe8, 0x39, 0xc7, 0x31, 0x86, 0x31, 0xa6, 0x4a, 0x49, 0x4a, 0x29, 0x41, 0xe8, 0x4a, 0x69, 0x39, 0xa7, 0x31, 0x86, 0x39, 0xe7, 0x41, 0xe8, 0x31, 0x86, 0x29, 0x65, 0x31, 0x86, 0x31, 0xa6, 0x39, 0xa7, 0x39, 0xa7, 0x4a, 0x29, 0x41, 0xe8, 0x29, 0x65, 0x29, 0x65, 0x29, 0x65, 0x52, 0x8a, 0x63, 0x0c, 0x5a, 0xab, 0x39, 0xe7, 0x31, 0x86, 0x39, 0xc7, 0x5a, 0xab, 0x4a, 0x49, + 0x4a, 0x49, 0x4a, 0x29, 0x39, 0xc7, 0x42, 0x08, 0x52, 0x8a, 0x42, 0x08, 0x52, 0x8a, 0x31, 0xa6, 0x31, 0x66, 0x31, 0x66, 0x31, 0x66, 0x42, 0x08, 0x31, 0xa6, 0x39, 0xc7, 0x42, 0x08, 0x42, 0x08, 0x41, 0xe8, 0x31, 0x66, 0x41, 0xe8, 0x52, 0x6a, 0x4a, 0x69, 0x4a, 0x29, 0x31, 0xa6, 0x4a, 0x49, 0x39, 0xa7, 0x39, 0xe7, 0x4a, 0x49, 0x39, 0xc7, 0x4a, 0x49, 0x4a, 0x29, 0x52, 0x6a, 0x42, 0x08, 0x31, 0x66, 0x42, 0x08, 0x41, 0xe8, 0x42, 0x08, 0x39, 0xc7, 0x41, 0xe8, 0x39, 0xc7, 0x29, 0x65, 0x31, 0x66, 0x29, 0x65, 0x39, 0xc7, 0x5a, 0xcb, 0x42, 0x08, 0x52, 0x6a, 0x39, 0xc7, 0x39, 0xc7, 0x52, 0xaa, 0x42, 0x08, + 0x31, 0x86, 0x4a, 0x69, 0x39, 0xe7, 0x52, 0x6a, 0x39, 0xa7, 0x52, 0x8a, 0x41, 0xe8, 0x31, 0xa6, 0x31, 0xa6, 0x29, 0x65, 0x29, 0x65, 0x42, 0x08, 0x39, 0xc7, 0x39, 0xc7, 0x4a, 0x29, 0x39, 0xc7, 0x4a, 0x29, 0x31, 0x66, 0x39, 0xe7, 0x4a, 0x69, 0x31, 0x86, 0x52, 0x6a, 0x31, 0xa6, 0x4a, 0x49, 0x31, 0x86, 0x31, 0x66, 0x52, 0x6a, 0x39, 0xc7, 0x42, 0x08, 0x31, 0x86, 0x52, 0x8a, 0x39, 0xc7, 0x31, 0xa6, 0x42, 0x08, 0x39, 0xc7, 0x4a, 0x29, 0x39, 0xc7, 0x42, 0x08, 0x31, 0xa6, 0x31, 0x66, 0x29, 0x65, 0x31, 0xa6, 0x31, 0xa6, 0x42, 0x08, 0x52, 0xaa, 0x39, 0xe7, 0x4a, 0x69, 0x31, 0x86, 0x5a, 0xcb, 0x31, 0x66, + 0x41, 0xe8, 0x52, 0x6a, 0x4a, 0x29, 0x42, 0x08, 0x5a, 0xab, 0x39, 0xc7, 0x39, 0xc7, 0x5a, 0xab, 0x63, 0x0c, 0x52, 0x8a, 0x31, 0x86, 0x31, 0x86, 0x4a, 0x29, 0x31, 0xa6, 0x31, 0x86, 0x39, 0xc7, 0x42, 0x08, 0x31, 0x66, 0x31, 0x86, 0x4a, 0x29, 0x4a, 0x69, 0x4a, 0x69, 0x42, 0x08, 0x42, 0x08, 0x41, 0xe8, 0x42, 0x28, 0x42, 0x08, 0x41, 0xe8, 0x52, 0x6a, 0x52, 0x6a, 0x4a, 0x29, 0x31, 0x66, 0x31, 0x86, 0x42, 0x28, 0x31, 0xa6, 0x31, 0xa6, 0x39, 0xc7, 0x42, 0x08, 0x31, 0x86, 0x31, 0x86, 0x52, 0x8a, 0x63, 0x0c, 0x5a, 0xab, 0x31, 0x86, 0x39, 0xe7, 0x52, 0x8a, 0x4a, 0x49, 0x41, 0xe8, 0x4a, 0x69, 0x42, 0x08, + 0x5a, 0xcb, 0x39, 0xc7, 0x52, 0x8a, 0x4a, 0x69, 0x31, 0x86, 0x31, 0xa6, 0x31, 0xa6, 0x31, 0x86, 0x39, 0xe7, 0x5a, 0xcb, 0x5a, 0xab, 0x31, 0xa6, 0x39, 0xa7, 0x4a, 0x29, 0x4a, 0x29, 0x4a, 0x29, 0x31, 0x86, 0x31, 0x86, 0x31, 0xa6, 0x31, 0xa6, 0x39, 0xa7, 0x42, 0x08, 0x4a, 0x69, 0x31, 0xa6, 0x4a, 0x49, 0x4a, 0x29, 0x31, 0x86, 0x4a, 0x69, 0x42, 0x08, 0x31, 0xa6, 0x31, 0xa6, 0x31, 0xa6, 0x31, 0x86, 0x39, 0xa7, 0x4a, 0x29, 0x42, 0x28, 0x42, 0x28, 0x31, 0xa6, 0x39, 0xc7, 0x62, 0xec, 0x5a, 0xcb, 0x39, 0xc7, 0x31, 0x86, 0x39, 0xa7, 0x31, 0xa6, 0x39, 0xa7, 0x52, 0x6a, 0x5a, 0xcb, 0x31, 0xa6, 0x5a, 0xcb, + 0x39, 0xe7, 0x31, 0x86, 0x41, 0xe8, 0x4a, 0x29, 0x4a, 0x69, 0x52, 0x8a, 0x52, 0x8a, 0x52, 0x8a, 0x42, 0x08, 0x31, 0xa6, 0x5a, 0xcb, 0x5a, 0xab, 0x31, 0x86, 0x29, 0x65, 0x31, 0x86, 0x31, 0x86, 0x41, 0xe8, 0x4a, 0x69, 0x4a, 0x49, 0x4a, 0x49, 0x4a, 0x29, 0x42, 0x08, 0x31, 0xa6, 0x39, 0xc7, 0x41, 0xe8, 0x41, 0xe8, 0x31, 0xa6, 0x39, 0xc7, 0x42, 0x08, 0x4a, 0x29, 0x4a, 0x49, 0x4a, 0x49, 0x4a, 0x49, 0x39, 0xe7, 0x31, 0x86, 0x31, 0x86, 0x29, 0x65, 0x39, 0xa7, 0x5a, 0xeb, 0x5a, 0xcb, 0x39, 0xa7, 0x42, 0x08, 0x52, 0x8a, 0x52, 0x8a, 0x52, 0x8a, 0x4a, 0x69, 0x42, 0x08, 0x41, 0xe8, 0x31, 0x86, 0x39, 0xc7, + 0x4a, 0x49, 0x39, 0xe7, 0x52, 0x8a, 0x42, 0x08, 0x31, 0x86, 0x42, 0x08, 0x52, 0x6a, 0x42, 0x28, 0x63, 0x0c, 0x39, 0xc7, 0x41, 0xe8, 0x63, 0x0c, 0x5a, 0xab, 0x31, 0xa6, 0x29, 0x65, 0x42, 0x08, 0x5a, 0xab, 0x39, 0xc7, 0x4a, 0x29, 0x39, 0xc7, 0x31, 0x86, 0x41, 0xe8, 0x4a, 0x49, 0x41, 0xe8, 0x41, 0xe8, 0x42, 0x08, 0x42, 0x08, 0x42, 0x28, 0x41, 0xe8, 0x31, 0x66, 0x39, 0xc7, 0x4a, 0x29, 0x42, 0x08, 0x52, 0x8a, 0x39, 0xc7, 0x29, 0x65, 0x39, 0xc7, 0x5a, 0xcb, 0x63, 0x0c, 0x39, 0xc7, 0x39, 0xe7, 0x5a, 0xcb, 0x42, 0x08, 0x52, 0xaa, 0x42, 0x08, 0x31, 0x86, 0x4a, 0x29, 0x52, 0xaa, 0x31, 0x86, 0x4a, 0x49, + 0x52, 0xaa, 0x39, 0xa7, 0x52, 0xaa, 0x42, 0x28, 0x31, 0x66, 0x42, 0x08, 0x42, 0x08, 0x42, 0x28, 0x63, 0x0c, 0x39, 0xc7, 0x42, 0x08, 0x63, 0x0c, 0x52, 0x8a, 0x31, 0x86, 0x29, 0x65, 0x41, 0xe8, 0x5a, 0xab, 0x39, 0xc7, 0x41, 0xe8, 0x39, 0xe7, 0x31, 0x66, 0x42, 0x08, 0x4a, 0x49, 0x41, 0xe8, 0x42, 0x08, 0x4a, 0x49, 0x41, 0xe8, 0x42, 0x08, 0x42, 0x08, 0x31, 0x66, 0x39, 0xe7, 0x41, 0xe8, 0x42, 0x08, 0x5a, 0xab, 0x31, 0xa6, 0x31, 0x66, 0x31, 0xa6, 0x52, 0xaa, 0x63, 0x0c, 0x39, 0xe7, 0x39, 0xc7, 0x62, 0xec, 0x39, 0xc7, 0x4a, 0x29, 0x42, 0x08, 0x31, 0x66, 0x52, 0x6a, 0x52, 0x8a, 0x31, 0x86, 0x52, 0xaa, + 0x31, 0x86, 0x31, 0x86, 0x39, 0xa7, 0x52, 0x6a, 0x5a, 0xab, 0x52, 0x8a, 0x5a, 0xcb, 0x5a, 0xcb, 0x39, 0xe7, 0x39, 0xa7, 0x5a, 0xcb, 0x5a, 0xab, 0x31, 0x86, 0x31, 0x66, 0x31, 0x86, 0x31, 0x66, 0x39, 0xe7, 0x52, 0x8a, 0x4a, 0x69, 0x4a, 0x49, 0x52, 0x8a, 0x42, 0x28, 0x31, 0x86, 0x31, 0xa6, 0x42, 0x08, 0x42, 0x08, 0x31, 0x86, 0x31, 0xa6, 0x42, 0x28, 0x52, 0x6a, 0x4a, 0x49, 0x4a, 0x69, 0x52, 0x6a, 0x39, 0xc7, 0x31, 0x66, 0x31, 0x86, 0x31, 0x66, 0x31, 0xa6, 0x5a, 0xcb, 0x5a, 0xcb, 0x31, 0xa6, 0x42, 0x08, 0x5a, 0xcb, 0x52, 0xaa, 0x52, 0x8a, 0x5a, 0xcb, 0x4a, 0x49, 0x39, 0xa7, 0x31, 0x86, 0x31, 0x86, + 0x52, 0xaa, 0x41, 0xe8, 0x52, 0xaa, 0x42, 0x08, 0x39, 0xc7, 0x39, 0xa7, 0x39, 0xa7, 0x31, 0xa6, 0x41, 0xe8, 0x5a, 0xcb, 0x5a, 0xab, 0x31, 0xa6, 0x39, 0xc7, 0x42, 0x28, 0x42, 0x08, 0x42, 0x08, 0x31, 0x86, 0x31, 0x66, 0x39, 0xa7, 0x39, 0xe7, 0x39, 0xc7, 0x41, 0xe8, 0x4a, 0x69, 0x39, 0xc7, 0x42, 0x28, 0x42, 0x28, 0x31, 0xa6, 0x4a, 0x49, 0x41, 0xe8, 0x39, 0xc7, 0x39, 0xc7, 0x31, 0xa6, 0x31, 0x66, 0x39, 0xa7, 0x42, 0x08, 0x42, 0x08, 0x42, 0x08, 0x31, 0xa6, 0x39, 0xc7, 0x5a, 0xcb, 0x5a, 0xcb, 0x39, 0xe7, 0x31, 0xa6, 0x39, 0xa7, 0x39, 0xa7, 0x39, 0xc7, 0x42, 0x28, 0x5a, 0xcb, 0x39, 0xc7, 0x52, 0xaa, + 0x42, 0x08, 0x4a, 0x69, 0x4a, 0x29, 0x4a, 0x29, 0x4a, 0x49, 0x42, 0x08, 0x31, 0x86, 0x4a, 0x69, 0x5a, 0xab, 0x4a, 0x49, 0x31, 0x86, 0x31, 0xa6, 0x42, 0x28, 0x39, 0xa7, 0x39, 0xe7, 0x39, 0xe7, 0x42, 0x08, 0x29, 0x65, 0x31, 0x86, 0x4a, 0x29, 0x42, 0x08, 0x52, 0x6a, 0x42, 0x08, 0x42, 0x08, 0x41, 0xe8, 0x42, 0x08, 0x4a, 0x29, 0x41, 0xe8, 0x4a, 0x49, 0x42, 0x28, 0x4a, 0x49, 0x31, 0x86, 0x31, 0x86, 0x42, 0x08, 0x39, 0xc7, 0x39, 0xe7, 0x39, 0xc7, 0x42, 0x28, 0x31, 0x66, 0x39, 0xa7, 0x4a, 0x49, 0x5a, 0xab, 0x4a, 0x69, 0x31, 0x66, 0x42, 0x08, 0x4a, 0x49, 0x52, 0x8a, 0x41, 0xe8, 0x4a, 0x69, 0x42, 0x08, + 0x31, 0x66, 0x4a, 0x69, 0x39, 0xc7, 0x52, 0x8a, 0x39, 0xa7, 0x4a, 0x69, 0x42, 0x28, 0x31, 0x86, 0x31, 0x86, 0x31, 0x66, 0x29, 0x65, 0x42, 0x08, 0x39, 0xa7, 0x39, 0xc7, 0x42, 0x08, 0x39, 0xa7, 0x4a, 0x29, 0x31, 0x66, 0x39, 0xe7, 0x4a, 0x49, 0x31, 0x86, 0x52, 0x6a, 0x31, 0xa6, 0x4a, 0x29, 0x31, 0x86, 0x31, 0x66, 0x4a, 0x69, 0x39, 0xc7, 0x4a, 0x29, 0x31, 0x86, 0x4a, 0x49, 0x41, 0xe8, 0x31, 0x86, 0x42, 0x08, 0x39, 0xc7, 0x41, 0xe8, 0x39, 0xc7, 0x41, 0xe8, 0x39, 0xa7, 0x29, 0x65, 0x31, 0x66, 0x31, 0x86, 0x31, 0x86, 0x4a, 0x49, 0x52, 0x6a, 0x41, 0xe8, 0x4a, 0x49, 0x31, 0xa6, 0x5a, 0xab, 0x29, 0x65, + 0x4a, 0x69, 0x4a, 0x29, 0x39, 0xc7, 0x39, 0xc7, 0x5a, 0xab, 0x39, 0xe7, 0x52, 0xaa, 0x39, 0xc7, 0x31, 0x66, 0x31, 0x66, 0x31, 0x66, 0x42, 0x28, 0x31, 0xa6, 0x39, 0xc7, 0x42, 0x08, 0x42, 0x08, 0x41, 0xe8, 0x31, 0x66, 0x39, 0xe7, 0x52, 0x8a, 0x52, 0x8a, 0x4a, 0x49, 0x31, 0xa6, 0x4a, 0x49, 0x39, 0xc7, 0x39, 0xe7, 0x4a, 0x29, 0x39, 0xe7, 0x4a, 0x49, 0x4a, 0x69, 0x52, 0x8a, 0x41, 0xe8, 0x29, 0x65, 0x42, 0x28, 0x39, 0xe7, 0x42, 0x08, 0x39, 0xc7, 0x41, 0xe8, 0x39, 0xe7, 0x29, 0x65, 0x29, 0x65, 0x29, 0x65, 0x39, 0xe7, 0x5a, 0xcb, 0x39, 0xc7, 0x52, 0x8a, 0x39, 0xc7, 0x39, 0xc7, 0x52, 0xaa, 0x42, 0x28, + 0x52, 0x6a, 0x4a, 0x49, 0x39, 0xc7, 0x31, 0x86, 0x41, 0xe8, 0x5a, 0xcb, 0x62, 0xec, 0x42, 0x28, 0x31, 0x66, 0x31, 0x66, 0x31, 0x86, 0x42, 0x28, 0x42, 0x08, 0x31, 0x86, 0x39, 0xc7, 0x39, 0xc7, 0x31, 0x66, 0x31, 0x66, 0x31, 0x86, 0x42, 0x08, 0x39, 0xe7, 0x31, 0x66, 0x31, 0xa6, 0x4a, 0x49, 0x4a, 0x29, 0x41, 0xe8, 0x4a, 0x69, 0x31, 0xa6, 0x31, 0x86, 0x39, 0xe7, 0x41, 0xe8, 0x31, 0x86, 0x29, 0x65, 0x31, 0x86, 0x39, 0xe7, 0x39, 0xc7, 0x31, 0xa6, 0x4a, 0x29, 0x41, 0xe8, 0x31, 0x86, 0x31, 0x66, 0x29, 0x65, 0x52, 0x8a, 0x5a, 0xeb, 0x52, 0xaa, 0x41, 0xe8, 0x31, 0x86, 0x39, 0xc7, 0x5a, 0xcb, 0x4a, 0x49, + 0x42, 0x08, 0x52, 0xaa, 0x31, 0xa6, 0x5a, 0xab, 0x31, 0x66, 0x39, 0xa7, 0x4a, 0x49, 0x41, 0xe8, 0x31, 0x66, 0x39, 0xc7, 0x42, 0x08, 0x42, 0x28, 0x42, 0x08, 0x42, 0x08, 0x42, 0x08, 0x42, 0x08, 0x41, 0xe8, 0x31, 0x66, 0x29, 0x65, 0x31, 0x66, 0x31, 0x86, 0x31, 0x66, 0x31, 0x86, 0x4a, 0x49, 0x42, 0x08, 0x42, 0x08, 0x52, 0x8a, 0x31, 0x66, 0x31, 0x86, 0x31, 0x86, 0x31, 0x66, 0x29, 0x65, 0x31, 0x86, 0x41, 0xe8, 0x42, 0x08, 0x42, 0x08, 0x42, 0x08, 0x42, 0x08, 0x42, 0x28, 0x42, 0x08, 0x39, 0xc7, 0x31, 0x66, 0x4a, 0x29, 0x42, 0x28, 0x31, 0xa6, 0x39, 0xc7, 0x4a, 0x69, 0x31, 0x86, 0x5a, 0xcb, 0x42, 0x08, + 0x5a, 0xeb, 0x41, 0xe8, 0x42, 0x08, 0x5a, 0xeb, 0x31, 0x66, 0x29, 0x65, 0x29, 0x65, 0x29, 0x65, 0x42, 0x08, 0x4a, 0x29, 0x39, 0xa7, 0x31, 0x86, 0x31, 0xa6, 0x31, 0xa6, 0x31, 0x86, 0x39, 0xc7, 0x4a, 0x49, 0x39, 0xe7, 0x31, 0x86, 0x42, 0x08, 0x42, 0x08, 0x4a, 0x29, 0x39, 0xa7, 0x39, 0xe7, 0x52, 0xaa, 0x5a, 0xab, 0x39, 0xc7, 0x39, 0xa7, 0x42, 0x08, 0x42, 0x08, 0x42, 0x28, 0x31, 0x86, 0x41, 0xe8, 0x4a, 0x29, 0x39, 0xa7, 0x31, 0x86, 0x31, 0xa6, 0x31, 0xa6, 0x31, 0x86, 0x39, 0xc7, 0x4a, 0x29, 0x39, 0xe7, 0x31, 0x66, 0x29, 0x65, 0x29, 0x65, 0x39, 0xc7, 0x5a, 0xeb, 0x39, 0xa7, 0x42, 0x08, 0x63, 0x0c, + 0x39, 0xa7, 0x39, 0xc7, 0x5a, 0xeb, 0x4a, 0x49, 0x31, 0x66, 0x31, 0x66, 0x29, 0x65, 0x39, 0xc7, 0x4a, 0x49, 0x31, 0x86, 0x39, 0xc7, 0x4a, 0x49, 0x4a, 0x49, 0x4a, 0x49, 0x4a, 0x29, 0x31, 0xa6, 0x39, 0xe7, 0x4a, 0x29, 0x39, 0xa7, 0x41, 0xe8, 0x39, 0xc7, 0x39, 0xa7, 0x4a, 0x29, 0x31, 0x86, 0x39, 0xc7, 0x39, 0xa7, 0x31, 0x66, 0x42, 0x28, 0x39, 0xc7, 0x31, 0xa6, 0x39, 0xe7, 0x39, 0xe7, 0x42, 0x28, 0x39, 0xa7, 0x39, 0xa7, 0x4a, 0x49, 0x4a, 0x49, 0x4a, 0x49, 0x4a, 0x49, 0x39, 0xa7, 0x31, 0xa6, 0x4a, 0x29, 0x31, 0xa6, 0x29, 0x65, 0x29, 0x65, 0x29, 0x65, 0x52, 0x8a, 0x5a, 0xcb, 0x31, 0x86, 0x31, 0xa6, + 0x41, 0xe8, 0x5a, 0xcb, 0x5a, 0xab, 0x31, 0x86, 0x29, 0x65, 0x31, 0x66, 0x31, 0x86, 0x4a, 0x29, 0x39, 0xa7, 0x31, 0xa6, 0x4a, 0x49, 0x39, 0xa7, 0x31, 0x86, 0x31, 0x86, 0x42, 0x08, 0x42, 0x08, 0x31, 0x86, 0x4a, 0x49, 0x39, 0xa7, 0x42, 0x08, 0x4a, 0x29, 0x31, 0x86, 0x42, 0x28, 0x31, 0x86, 0x29, 0x65, 0x31, 0x66, 0x31, 0x86, 0x42, 0x08, 0x39, 0xe7, 0x42, 0x08, 0x42, 0x08, 0x39, 0xc7, 0x42, 0x08, 0x31, 0x86, 0x4a, 0x49, 0x41, 0xe8, 0x31, 0x66, 0x31, 0x86, 0x39, 0xc7, 0x4a, 0x49, 0x31, 0xa6, 0x39, 0xe7, 0x42, 0x08, 0x31, 0x66, 0x31, 0x66, 0x31, 0x66, 0x31, 0xa6, 0x5a, 0xcb, 0x5a, 0xcb, 0x41, 0xe8, + 0x63, 0x2c, 0x52, 0xaa, 0x39, 0xa7, 0x39, 0xa7, 0x39, 0xe7, 0x41, 0xe8, 0x42, 0x08, 0x4a, 0x29, 0x31, 0x66, 0x42, 0x28, 0x39, 0xc7, 0x39, 0xc7, 0x41, 0xe8, 0x39, 0xc7, 0x31, 0x86, 0x42, 0x28, 0x31, 0x86, 0x4a, 0x49, 0x31, 0xa6, 0x39, 0xc7, 0x39, 0xc7, 0x39, 0xc7, 0x42, 0x28, 0x31, 0x66, 0x39, 0xc7, 0x31, 0x86, 0x31, 0x66, 0x42, 0x08, 0x39, 0xc7, 0x39, 0xe7, 0x39, 0xc7, 0x31, 0xa6, 0x42, 0x08, 0x31, 0xa6, 0x4a, 0x49, 0x31, 0x66, 0x39, 0xc7, 0x41, 0xe8, 0x31, 0xa6, 0x39, 0xc7, 0x42, 0x08, 0x31, 0xa6, 0x4a, 0x49, 0x42, 0x08, 0x42, 0x08, 0x39, 0xe7, 0x31, 0x86, 0x39, 0xc7, 0x5a, 0xcb, 0x63, 0x2c, + 0x52, 0x8a, 0x31, 0xa6, 0x39, 0xc7, 0x42, 0x08, 0x39, 0xc7, 0x39, 0xa7, 0x42, 0x08, 0x42, 0x08, 0x31, 0x66, 0x4a, 0x49, 0x31, 0xa6, 0x42, 0x08, 0x31, 0xa6, 0x42, 0x28, 0x31, 0x86, 0x42, 0x08, 0x31, 0x86, 0x4a, 0x49, 0x4a, 0x29, 0x39, 0xe7, 0x42, 0x08, 0x42, 0x08, 0x31, 0x86, 0x39, 0xc7, 0x5a, 0xcb, 0x52, 0xaa, 0x31, 0xa6, 0x31, 0xa6, 0x42, 0x08, 0x42, 0x08, 0x41, 0xe8, 0x4a, 0x49, 0x42, 0x08, 0x31, 0x86, 0x4a, 0x49, 0x31, 0x86, 0x42, 0x08, 0x39, 0xc7, 0x42, 0x08, 0x31, 0x66, 0x4a, 0x29, 0x31, 0x86, 0x4a, 0x49, 0x42, 0x08, 0x39, 0xa7, 0x39, 0xc7, 0x4a, 0x29, 0x31, 0xa6, 0x31, 0xa6, 0x52, 0x8a, + 0x31, 0x86, 0x31, 0x86, 0x42, 0x08, 0x31, 0xa6, 0x42, 0x08, 0x41, 0xe8, 0x39, 0xc7, 0x42, 0x08, 0x31, 0x86, 0x4a, 0x49, 0x31, 0xa6, 0x39, 0xc7, 0x42, 0x08, 0x39, 0xa7, 0x39, 0xc7, 0x42, 0x08, 0x31, 0x86, 0x4a, 0x49, 0x39, 0xe7, 0x39, 0xc7, 0x39, 0xa7, 0x31, 0x86, 0x39, 0xc7, 0x5a, 0xeb, 0x63, 0x0c, 0x63, 0x0c, 0x5a, 0xcb, 0x39, 0xc7, 0x31, 0x86, 0x39, 0xc7, 0x39, 0xe7, 0x41, 0xe8, 0x42, 0x28, 0x31, 0x86, 0x4a, 0x49, 0x39, 0xc7, 0x31, 0xa6, 0x42, 0x08, 0x39, 0xa7, 0x31, 0x86, 0x4a, 0x29, 0x31, 0xa6, 0x4a, 0x29, 0x31, 0x86, 0x42, 0x08, 0x39, 0xe7, 0x39, 0xc7, 0x42, 0x28, 0x29, 0x65, 0x31, 0x86, + 0x31, 0x66, 0x31, 0xa6, 0x41, 0xe8, 0x39, 0xc7, 0x42, 0x08, 0x39, 0xc7, 0x41, 0xe8, 0x42, 0x28, 0x31, 0x66, 0x42, 0x28, 0x42, 0x08, 0x31, 0x86, 0x31, 0x86, 0x39, 0xc7, 0x4a, 0x49, 0x31, 0xa6, 0x41, 0xe8, 0x42, 0x08, 0x29, 0x65, 0x29, 0x65, 0x31, 0x66, 0x31, 0x86, 0x62, 0xec, 0x5a, 0xcb, 0x39, 0xc7, 0x39, 0xe7, 0x5a, 0xeb, 0x5a, 0xcb, 0x31, 0xa6, 0x31, 0x66, 0x29, 0x65, 0x31, 0x86, 0x42, 0x08, 0x39, 0xc7, 0x39, 0xa7, 0x4a, 0x49, 0x39, 0xc7, 0x31, 0x86, 0x31, 0x86, 0x42, 0x28, 0x42, 0x08, 0x31, 0xa6, 0x42, 0x08, 0x39, 0xc7, 0x42, 0x08, 0x42, 0x08, 0x39, 0xa7, 0x4a, 0x49, 0x31, 0x66, 0x31, 0x66, + 0x41, 0xe8, 0x31, 0x86, 0x42, 0x08, 0x39, 0xc7, 0x39, 0xe7, 0x39, 0xc7, 0x39, 0xc7, 0x4a, 0x29, 0x39, 0xc7, 0x31, 0x86, 0x42, 0x08, 0x4a, 0x29, 0x4a, 0x29, 0x42, 0x08, 0x31, 0xa6, 0x39, 0xa7, 0x4a, 0x49, 0x31, 0xa6, 0x29, 0x65, 0x31, 0x66, 0x29, 0x65, 0x52, 0x8a, 0x5a, 0xcb, 0x31, 0xa6, 0x39, 0xe7, 0x39, 0xc7, 0x31, 0xa6, 0x5a, 0xcb, 0x4a, 0x49, 0x31, 0x66, 0x29, 0x65, 0x31, 0x66, 0x39, 0xc7, 0x4a, 0x29, 0x31, 0x86, 0x39, 0xa7, 0x42, 0x08, 0x4a, 0x29, 0x4a, 0x29, 0x42, 0x08, 0x31, 0x86, 0x42, 0x08, 0x41, 0xe8, 0x39, 0xc7, 0x42, 0x08, 0x39, 0xc7, 0x41, 0xe8, 0x42, 0x08, 0x31, 0x66, 0x42, 0x08, + 0x52, 0x8a, 0x42, 0x08, 0x31, 0xa6, 0x41, 0xe8, 0x41, 0xe8, 0x41, 0xe8, 0x31, 0x86, 0x39, 0xe7, 0x4a, 0x49, 0x41, 0xe8, 0x31, 0xa6, 0x31, 0x86, 0x31, 0x86, 0x31, 0xa6, 0x41, 0xe8, 0x4a, 0x29, 0x39, 0xc7, 0x31, 0x66, 0x29, 0x65, 0x29, 0x65, 0x31, 0xa6, 0x63, 0x0c, 0x39, 0xc7, 0x42, 0x08, 0x5a, 0xeb, 0x62, 0xec, 0x42, 0x08, 0x41, 0xe8, 0x5a, 0xab, 0x31, 0x86, 0x29, 0x65, 0x29, 0x65, 0x31, 0x66, 0x39, 0xe7, 0x4a, 0x49, 0x39, 0xe7, 0x31, 0xa6, 0x31, 0xa6, 0x31, 0xa6, 0x31, 0xa6, 0x42, 0x08, 0x4a, 0x49, 0x39, 0xa7, 0x31, 0x86, 0x41, 0xe8, 0x42, 0x08, 0x41, 0xe8, 0x31, 0x86, 0x42, 0x08, 0x52, 0xaa, + 0x39, 0xc7, 0x4a, 0x69, 0x31, 0x86, 0x31, 0x66, 0x31, 0x66, 0x29, 0x65, 0x29, 0x65, 0x31, 0x66, 0x39, 0xc7, 0x42, 0x08, 0x42, 0x08, 0x4a, 0x29, 0x4a, 0x49, 0x4a, 0x49, 0x42, 0x08, 0x31, 0xa6, 0x29, 0x65, 0x4a, 0x49, 0x52, 0x8a, 0x39, 0xa7, 0x31, 0xa6, 0x52, 0xaa, 0x31, 0x86, 0x52, 0x8a, 0x41, 0xe8, 0x39, 0xc7, 0x5a, 0xcb, 0x31, 0xa6, 0x4a, 0x69, 0x31, 0x86, 0x39, 0xc7, 0x52, 0x8a, 0x4a, 0x29, 0x31, 0x66, 0x31, 0xa6, 0x42, 0x08, 0x4a, 0x29, 0x4a, 0x49, 0x4a, 0x29, 0x42, 0x08, 0x41, 0xe8, 0x39, 0xa7, 0x31, 0x66, 0x29, 0x65, 0x29, 0x65, 0x31, 0x86, 0x31, 0x66, 0x31, 0x86, 0x52, 0x8a, 0x39, 0xc7, + 0x4a, 0x49, 0x42, 0x08, 0x39, 0xc7, 0x31, 0x86, 0x42, 0x08, 0x42, 0x28, 0x31, 0xa6, 0x31, 0x66, 0x31, 0x86, 0x39, 0xc7, 0x39, 0xc7, 0x31, 0x86, 0x42, 0x28, 0x42, 0x08, 0x29, 0x65, 0x29, 0x65, 0x29, 0x65, 0x4a, 0x49, 0x62, 0xec, 0x5a, 0xcb, 0x41, 0xe8, 0x31, 0x86, 0x31, 0xa6, 0x52, 0x8a, 0x52, 0x8a, 0x42, 0x28, 0x5a, 0xab, 0x39, 0xa7, 0x31, 0x66, 0x4a, 0x49, 0x5a, 0xeb, 0x5a, 0xeb, 0x42, 0x28, 0x29, 0x65, 0x29, 0x65, 0x31, 0x66, 0x42, 0x08, 0x41, 0xe8, 0x31, 0x86, 0x39, 0xc7, 0x39, 0xc7, 0x31, 0x86, 0x29, 0x65, 0x31, 0xa6, 0x42, 0x28, 0x41, 0xe8, 0x31, 0x86, 0x39, 0xc7, 0x4a, 0x69, 0x42, 0x28, + 0x39, 0xe7, 0x42, 0x08, 0x39, 0xc7, 0x4a, 0x69, 0x4a, 0x69, 0x4a, 0x69, 0x42, 0x08, 0x29, 0x65, 0x4a, 0x29, 0x41, 0xe8, 0x42, 0x08, 0x39, 0xc7, 0x39, 0xc7, 0x42, 0x08, 0x29, 0x45, 0x29, 0x65, 0x29, 0x65, 0x31, 0x86, 0x5a, 0xab, 0x41, 0xe8, 0x52, 0xaa, 0x39, 0xc7, 0x31, 0xa6, 0x52, 0x8a, 0x42, 0x08, 0x42, 0x08, 0x52, 0x8a, 0x39, 0xa7, 0x42, 0x28, 0x52, 0x6a, 0x39, 0xc7, 0x5a, 0xab, 0x31, 0xa6, 0x29, 0x65, 0x29, 0x65, 0x31, 0x66, 0x42, 0x08, 0x31, 0xa6, 0x42, 0x08, 0x42, 0x08, 0x42, 0x08, 0x41, 0xe8, 0x29, 0x65, 0x42, 0x28, 0x52, 0x8a, 0x52, 0x6a, 0x42, 0x08, 0x39, 0xe7, 0x4a, 0x49, 0x39, 0xa7, + 0x31, 0x86, 0x4a, 0x29, 0x39, 0xe7, 0x42, 0x28, 0x31, 0x86, 0x4a, 0x49, 0x41, 0xe8, 0x31, 0x86, 0x4a, 0x49, 0x31, 0x86, 0x42, 0x08, 0x31, 0xa6, 0x42, 0x08, 0x39, 0xc7, 0x29, 0x65, 0x31, 0x66, 0x39, 0xc7, 0x39, 0xc7, 0x39, 0xe7, 0x52, 0x6a, 0x39, 0xe7, 0x52, 0x8a, 0x39, 0xa7, 0x52, 0x6a, 0x31, 0x86, 0x31, 0x66, 0x5a, 0xcb, 0x39, 0xc7, 0x4a, 0x49, 0x39, 0xe7, 0x52, 0xaa, 0x41, 0xe8, 0x39, 0xc7, 0x39, 0xc7, 0x29, 0x65, 0x31, 0x66, 0x39, 0xe7, 0x39, 0xc7, 0x41, 0xe8, 0x42, 0x08, 0x39, 0xc7, 0x42, 0x08, 0x31, 0x86, 0x42, 0x08, 0x4a, 0x69, 0x31, 0xa6, 0x4a, 0x49, 0x31, 0xa6, 0x52, 0x6a, 0x29, 0x65, + 0x42, 0x28, 0x42, 0x08, 0x42, 0x28, 0x52, 0x6a, 0x4a, 0x49, 0x42, 0x08, 0x31, 0x86, 0x31, 0x66, 0x4a, 0x29, 0x39, 0xe7, 0x31, 0xa6, 0x39, 0xe7, 0x4a, 0x29, 0x31, 0x66, 0x39, 0xa7, 0x52, 0xaa, 0x5a, 0xcb, 0x4a, 0x69, 0x31, 0x86, 0x39, 0xc7, 0x4a, 0x69, 0x4a, 0x49, 0x4a, 0x49, 0x42, 0x28, 0x4a, 0x29, 0x4a, 0x69, 0x4a, 0x29, 0x42, 0x28, 0x52, 0x8a, 0x4a, 0x49, 0x39, 0xa7, 0x31, 0x86, 0x52, 0x6a, 0x5a, 0xcb, 0x52, 0x8a, 0x31, 0xa6, 0x31, 0x86, 0x42, 0x28, 0x39, 0xc7, 0x39, 0xa7, 0x41, 0xe8, 0x41, 0xe8, 0x31, 0x66, 0x31, 0x86, 0x42, 0x08, 0x4a, 0x49, 0x52, 0xaa, 0x39, 0xe7, 0x42, 0x08, 0x42, 0x28, + 0x42, 0x28, 0x39, 0xa7, 0x4a, 0x49, 0x39, 0xc7, 0x31, 0xa6, 0x39, 0xe7, 0x39, 0xc7, 0x31, 0x86, 0x31, 0x86, 0x42, 0x28, 0x4a, 0x49, 0x42, 0x08, 0x31, 0x86, 0x39, 0xa7, 0x62, 0xec, 0x5a, 0xab, 0x31, 0xa6, 0x31, 0x86, 0x39, 0xa7, 0x39, 0xc7, 0x31, 0x86, 0x42, 0x08, 0x5a, 0xcb, 0x41, 0xe8, 0x52, 0xaa, 0x52, 0x8a, 0x39, 0xa7, 0x5a, 0xcb, 0x39, 0xe7, 0x31, 0xa6, 0x39, 0xc7, 0x39, 0xa7, 0x31, 0x86, 0x39, 0xc7, 0x5a, 0xcb, 0x5a, 0xcb, 0x39, 0xa7, 0x31, 0xa6, 0x42, 0x28, 0x4a, 0x49, 0x42, 0x08, 0x31, 0x86, 0x31, 0x86, 0x39, 0xc7, 0x39, 0xc7, 0x31, 0xa6, 0x39, 0xe7, 0x52, 0x6a, 0x31, 0x86, 0x42, 0x08, + 0x42, 0x08, 0x31, 0xa6, 0x31, 0x86, 0x4a, 0x29, 0x4a, 0x69, 0x4a, 0x49, 0x4a, 0x69, 0x52, 0x8a, 0x42, 0x08, 0x29, 0x65, 0x29, 0x65, 0x29, 0x65, 0x31, 0xa6, 0x5a, 0xeb, 0x5a, 0xab, 0x31, 0xa6, 0x42, 0x28, 0x5a, 0xcb, 0x5a, 0xcb, 0x52, 0xaa, 0x5a, 0xcb, 0x4a, 0x49, 0x31, 0xa6, 0x31, 0x86, 0x31, 0xa6, 0x31, 0x86, 0x31, 0xa6, 0x39, 0xc7, 0x4a, 0x69, 0x5a, 0xab, 0x5a, 0xab, 0x5a, 0xcb, 0x5a, 0xcb, 0x41, 0xe8, 0x31, 0xa6, 0x5a, 0xeb, 0x5a, 0xab, 0x31, 0xa6, 0x31, 0x66, 0x29, 0x65, 0x31, 0x66, 0x42, 0x08, 0x52, 0x8a, 0x4a, 0x69, 0x4a, 0x49, 0x52, 0x6a, 0x42, 0x08, 0x31, 0xa6, 0x31, 0xa6, 0x42, 0x08, + 0x41, 0xe8, 0x4a, 0x29, 0x4a, 0x29, 0x39, 0xe7, 0x29, 0x65, 0x39, 0xc7, 0x42, 0x08, 0x41, 0xe8, 0x5a, 0xab, 0x41, 0xe8, 0x29, 0x65, 0x39, 0xa7, 0x5a, 0xcb, 0x63, 0x0c, 0x41, 0xe8, 0x41, 0xe8, 0x63, 0x0c, 0x39, 0xc7, 0x4a, 0x49, 0x42, 0x08, 0x31, 0x66, 0x42, 0x28, 0x5a, 0xcb, 0x39, 0xc7, 0x4a, 0x49, 0x52, 0xaa, 0x31, 0x86, 0x52, 0xaa, 0x42, 0x08, 0x29, 0x65, 0x42, 0x28, 0x4a, 0x49, 0x42, 0x28, 0x62, 0xec, 0x31, 0xa6, 0x41, 0xe8, 0x63, 0x2c, 0x52, 0x8a, 0x31, 0x86, 0x31, 0x66, 0x41, 0xe8, 0x52, 0xaa, 0x39, 0xc7, 0x42, 0x28, 0x39, 0xa7, 0x31, 0x66, 0x4a, 0x29, 0x42, 0x08, 0x42, 0x08, 0x42, 0x08, +#endif +#if LV_COLOR_DEPTH == 32 + /*Pixel format: Fix 0xFF: 8 bit, Red: 8 bit, Green: 8 bit, Blue: 8 bit*/ + 0x39, 0x39, 0x39, 0xff, 0x46, 0x46, 0x46, 0xff, 0x45, 0x45, 0x45, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x30, 0x30, 0x30, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x43, 0x43, 0x43, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x54, 0x54, 0x54, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x2a, 0x2a, 0x2a, 0xff, 0x36, 0x36, 0x36, 0xff, 0x57, 0x57, 0x57, 0xff, 0x5f, 0x5f, 0x5f, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x5d, 0x5d, 0x5d, 0xff, 0x38, 0x38, 0x38, 0xff, 0x4f, 0x4f, 0x4f, 0xff, 0x46, 0x46, 0x46, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x58, 0x58, 0x58, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x47, 0x47, 0x47, 0xff, 0x53, 0x53, 0x53, 0xff, 0x32, 0x32, 0x32, 0xff, 0x55, 0x55, 0x55, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x30, 0x30, 0x30, 0xff, 0x4b, 0x4b, 0x4b, 0xff, 0x4e, 0x4e, 0x4e, 0xff, 0x41, 0x41, 0x41, 0xff, 0x5d, 0x5d, 0x5d, 0xff, 0x33, 0x33, 0x33, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x62, 0x62, 0x62, 0xff, 0x52, 0x52, 0x52, 0xff, 0x31, 0x31, 0x31, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x52, 0x52, 0x52, 0xff, 0x38, 0x38, 0x38, 0xff, 0x49, 0x49, 0x49, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x42, 0x42, 0x42, 0xff, 0x42, 0x42, 0x42, 0xff, 0x41, 0x41, 0x41, 0xff, 0x3d, 0x3d, 0x3d, 0xff, + 0x46, 0x46, 0x46, 0xff, 0x34, 0x34, 0x34, 0xff, 0x35, 0x35, 0x35, 0xff, 0x45, 0x45, 0x45, 0xff, 0x45, 0x45, 0x45, 0xff, 0x40, 0x40, 0x40, 0xff, 0x44, 0x44, 0x44, 0xff, 0x4d, 0x4d, 0x4d, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x32, 0x32, 0x32, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x32, 0x32, 0x32, 0xff, 0x57, 0x57, 0x57, 0xff, 0x57, 0x57, 0x57, 0xff, 0x36, 0x36, 0x36, 0xff, 0x45, 0x45, 0x45, 0xff, 0x54, 0x54, 0x54, 0xff, 0x47, 0x47, 0x47, 0xff, 0x46, 0x46, 0x46, 0xff, 0x4c, 0x4c, 0x4c, 0xff, 0x4e, 0x4e, 0x4e, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x31, 0x31, 0x31, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x36, 0x36, 0x36, 0xff, 0x30, 0x30, 0x30, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x4d, 0x4d, 0x4d, 0xff, 0x4a, 0x4a, 0x4a, 0xff, 0x46, 0x46, 0x46, 0xff, 0x49, 0x49, 0x49, 0xff, 0x54, 0x54, 0x54, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x37, 0x37, 0x37, 0xff, 0x5b, 0x5b, 0x5b, 0xff, 0x54, 0x54, 0x54, 0xff, 0x32, 0x32, 0x32, 0xff, 0x30, 0x30, 0x30, 0xff, 0x31, 0x31, 0x31, 0xff, 0x31, 0x31, 0x31, 0xff, 0x41, 0x41, 0x41, 0xff, 0x4c, 0x4c, 0x4c, 0xff, 0x42, 0x42, 0x42, 0xff, 0x41, 0x41, 0x41, 0xff, 0x45, 0x45, 0x45, 0xff, 0x42, 0x42, 0x42, 0xff, 0x35, 0x35, 0x35, 0xff, 0x33, 0x33, 0x33, 0xff, 0x45, 0x45, 0x45, 0xff, + 0x46, 0x46, 0x46, 0xff, 0x37, 0x37, 0x37, 0xff, 0x46, 0x46, 0x46, 0xff, 0x42, 0x42, 0x42, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x39, 0x39, 0x39, 0xff, 0x37, 0x37, 0x37, 0xff, 0x31, 0x31, 0x31, 0xff, 0x33, 0x33, 0x33, 0xff, 0x42, 0x42, 0x42, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x42, 0x42, 0x42, 0xff, 0x33, 0x33, 0x33, 0xff, 0x36, 0x36, 0x36, 0xff, 0x56, 0x56, 0x56, 0xff, 0x58, 0x58, 0x58, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x34, 0x34, 0x34, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x39, 0x39, 0x39, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x44, 0x44, 0x44, 0xff, 0x52, 0x52, 0x52, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x51, 0x51, 0x51, 0xff, 0x52, 0x52, 0x52, 0xff, 0x36, 0x36, 0x36, 0xff, 0x53, 0x53, 0x53, 0xff, 0x45, 0x45, 0x45, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x39, 0x39, 0x39, 0xff, 0x34, 0x34, 0x34, 0xff, 0x41, 0x41, 0x41, 0xff, 0x5c, 0x5c, 0x5c, 0xff, 0x55, 0x55, 0x55, 0xff, 0x35, 0x35, 0x35, 0xff, 0x38, 0x38, 0x38, 0xff, 0x41, 0x41, 0x41, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x40, 0x40, 0x40, 0xff, 0x33, 0x33, 0x33, 0xff, 0x33, 0x33, 0x33, 0xff, 0x39, 0x39, 0x39, 0xff, 0x39, 0x39, 0x39, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x43, 0x43, 0x43, 0xff, 0x49, 0x49, 0x49, 0xff, 0x32, 0x32, 0x32, 0xff, 0x44, 0x44, 0x44, 0xff, + 0x3a, 0x3a, 0x3a, 0xff, 0x46, 0x46, 0x46, 0xff, 0x42, 0x42, 0x42, 0xff, 0x44, 0x44, 0x44, 0xff, 0x47, 0x47, 0x47, 0xff, 0x4a, 0x4a, 0x4a, 0xff, 0x31, 0x31, 0x31, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x45, 0x45, 0x45, 0xff, 0x36, 0x36, 0x36, 0xff, 0x37, 0x37, 0x37, 0xff, 0x35, 0x35, 0x35, 0xff, 0x47, 0x47, 0x47, 0xff, 0x30, 0x30, 0x30, 0xff, 0x33, 0x33, 0x33, 0xff, 0x4c, 0x4c, 0x4c, 0xff, 0x5b, 0x5b, 0x5b, 0xff, 0x57, 0x57, 0x57, 0xff, 0x33, 0x33, 0x33, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x4d, 0x4d, 0x4d, 0xff, 0x43, 0x43, 0x43, 0xff, 0x4b, 0x4b, 0x4b, 0xff, 0x45, 0x45, 0x45, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x45, 0x45, 0x45, 0xff, 0x4a, 0x4a, 0x4a, 0xff, 0x40, 0x40, 0x40, 0xff, 0x46, 0x46, 0x46, 0xff, 0x51, 0x51, 0x51, 0xff, 0x38, 0x38, 0x38, 0xff, 0x33, 0x33, 0x33, 0xff, 0x56, 0x56, 0x56, 0xff, 0x5b, 0x5b, 0x5b, 0xff, 0x47, 0x47, 0x47, 0xff, 0x33, 0x33, 0x33, 0xff, 0x36, 0x36, 0x36, 0xff, 0x41, 0x41, 0x41, 0xff, 0x33, 0x33, 0x33, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x39, 0x39, 0x39, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x30, 0x30, 0x30, 0xff, 0x4b, 0x4b, 0x4b, 0xff, 0x46, 0x46, 0x46, 0xff, 0x4c, 0x4c, 0x4c, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x45, 0x45, 0x45, 0xff, 0x3d, 0x3d, 0x3d, 0xff, + 0x30, 0x30, 0x30, 0xff, 0x44, 0x44, 0x44, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x4a, 0x4a, 0x4a, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x47, 0x47, 0x47, 0xff, 0x40, 0x40, 0x40, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x46, 0x46, 0x46, 0xff, 0x33, 0x33, 0x33, 0xff, 0x48, 0x48, 0x48, 0xff, 0x37, 0x37, 0x37, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x2b, 0x2b, 0x2b, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x31, 0x31, 0x31, 0xff, 0x30, 0x30, 0x30, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x51, 0x51, 0x51, 0xff, 0x36, 0x36, 0x36, 0xff, 0x55, 0x55, 0x55, 0xff, 0x33, 0x33, 0x33, 0xff, 0x4c, 0x4c, 0x4c, 0xff, 0x32, 0x32, 0x32, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x56, 0x56, 0x56, 0xff, 0x38, 0x38, 0x38, 0xff, 0x49, 0x49, 0x49, 0xff, 0x35, 0x35, 0x35, 0xff, 0x59, 0x59, 0x59, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x30, 0x30, 0x30, 0xff, 0x30, 0x30, 0x30, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x37, 0x37, 0x37, 0xff, 0x40, 0x40, 0x40, 0xff, 0x42, 0x42, 0x42, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x4a, 0x4a, 0x4a, 0xff, 0x31, 0x31, 0x31, 0xff, 0x48, 0x48, 0x48, 0xff, 0x32, 0x32, 0x32, 0xff, 0x4e, 0x4e, 0x4e, 0xff, 0x2d, 0x2d, 0x2d, 0xff, + 0x3d, 0x3d, 0x3d, 0xff, 0x40, 0x40, 0x40, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x49, 0x49, 0x49, 0xff, 0x48, 0x48, 0x48, 0xff, 0x48, 0x48, 0x48, 0xff, 0x41, 0x41, 0x41, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x43, 0x43, 0x43, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x35, 0x35, 0x35, 0xff, 0x39, 0x39, 0x39, 0xff, 0x42, 0x42, 0x42, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x33, 0x33, 0x33, 0xff, 0x57, 0x57, 0x57, 0xff, 0x40, 0x40, 0x40, 0xff, 0x51, 0x51, 0x51, 0xff, 0x39, 0x39, 0x39, 0xff, 0x34, 0x34, 0x34, 0xff, 0x50, 0x50, 0x50, 0xff, 0x40, 0x40, 0x40, 0xff, 0x40, 0x40, 0x40, 0xff, 0x52, 0x52, 0x52, 0xff, 0x33, 0x33, 0x33, 0xff, 0x42, 0x42, 0x42, 0xff, 0x4b, 0x4b, 0x4b, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x59, 0x59, 0x59, 0xff, 0x33, 0x33, 0x33, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x35, 0x35, 0x35, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x42, 0x42, 0x42, 0xff, 0x4b, 0x4b, 0x4b, 0xff, 0x49, 0x49, 0x49, 0xff, 0x40, 0x40, 0x40, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x49, 0x49, 0x49, 0xff, 0x39, 0x39, 0x39, 0xff, + 0x44, 0x44, 0x44, 0xff, 0x42, 0x42, 0x42, 0xff, 0x38, 0x38, 0x38, 0xff, 0x31, 0x31, 0x31, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x41, 0x41, 0x41, 0xff, 0x33, 0x33, 0x33, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x36, 0x36, 0x36, 0xff, 0x45, 0x45, 0x45, 0xff, 0x43, 0x43, 0x43, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2a, 0x2a, 0x2a, 0xff, 0x4a, 0x4a, 0x4a, 0xff, 0x61, 0x61, 0x61, 0xff, 0x52, 0x52, 0x52, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x36, 0x36, 0x36, 0xff, 0x34, 0x34, 0x34, 0xff, 0x4f, 0x4f, 0x4f, 0xff, 0x4e, 0x4e, 0x4e, 0xff, 0x40, 0x40, 0x40, 0xff, 0x57, 0x57, 0x57, 0xff, 0x35, 0x35, 0x35, 0xff, 0x32, 0x32, 0x32, 0xff, 0x46, 0x46, 0x46, 0xff, 0x53, 0x53, 0x53, 0xff, 0x5f, 0x5f, 0x5f, 0xff, 0x47, 0x47, 0x47, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2b, 0x2b, 0x2b, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x42, 0x42, 0x42, 0xff, 0x42, 0x42, 0x42, 0xff, 0x36, 0x36, 0x36, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x33, 0x33, 0x33, 0xff, 0x42, 0x42, 0x42, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x37, 0x37, 0x37, 0xff, 0x4e, 0x4e, 0x4e, 0xff, 0x3e, 0x3e, 0x3e, 0xff, + 0x3c, 0x3c, 0x3c, 0xff, 0x4e, 0x4e, 0x4e, 0xff, 0x31, 0x31, 0x31, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x45, 0x45, 0x45, 0xff, 0x44, 0x44, 0x44, 0xff, 0x41, 0x41, 0x41, 0xff, 0x44, 0x44, 0x44, 0xff, 0x47, 0x47, 0x47, 0xff, 0x46, 0x46, 0x46, 0xff, 0x37, 0x37, 0x37, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x43, 0x43, 0x43, 0xff, 0x45, 0x45, 0x45, 0xff, 0x33, 0x33, 0x33, 0xff, 0x35, 0x35, 0x35, 0xff, 0x54, 0x54, 0x54, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x52, 0x52, 0x52, 0xff, 0x41, 0x41, 0x41, 0xff, 0x43, 0x43, 0x43, 0xff, 0x59, 0x59, 0x59, 0xff, 0x33, 0x33, 0x33, 0xff, 0x4b, 0x4b, 0x4b, 0xff, 0x31, 0x31, 0x31, 0xff, 0x36, 0x36, 0x36, 0xff, 0x46, 0x46, 0x46, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x46, 0x46, 0x46, 0xff, 0x47, 0x47, 0x47, 0xff, 0x43, 0x43, 0x43, 0xff, 0x41, 0x41, 0x41, 0xff, 0x44, 0x44, 0x44, 0xff, 0x45, 0x45, 0x45, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2b, 0x2b, 0x2b, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x30, 0x30, 0x30, 0xff, 0x50, 0x50, 0x50, 0xff, 0x3e, 0x3e, 0x3e, 0xff, + 0x54, 0x54, 0x54, 0xff, 0x40, 0x40, 0x40, 0xff, 0x33, 0x33, 0x33, 0xff, 0x45, 0x45, 0x45, 0xff, 0x47, 0x47, 0x47, 0xff, 0x43, 0x43, 0x43, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x4a, 0x4a, 0x4a, 0xff, 0x37, 0x37, 0x37, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x38, 0x38, 0x38, 0xff, 0x48, 0x48, 0x48, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x34, 0x34, 0x34, 0xff, 0x5f, 0x5f, 0x5f, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x40, 0x40, 0x40, 0xff, 0x60, 0x60, 0x60, 0xff, 0x60, 0x60, 0x60, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x56, 0x56, 0x56, 0xff, 0x32, 0x32, 0x32, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x40, 0x40, 0x40, 0xff, 0x49, 0x49, 0x49, 0xff, 0x36, 0x36, 0x36, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x4b, 0x4b, 0x4b, 0xff, 0x37, 0x37, 0x37, 0xff, 0x30, 0x30, 0x30, 0xff, 0x45, 0x45, 0x45, 0xff, 0x49, 0x49, 0x49, 0xff, 0x44, 0x44, 0x44, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x56, 0x56, 0x56, 0xff, + 0x3e, 0x3e, 0x3e, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x42, 0x42, 0x42, 0xff, 0x37, 0x37, 0x37, 0xff, 0x33, 0x33, 0x33, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x45, 0x45, 0x45, 0xff, 0x36, 0x36, 0x36, 0xff, 0x30, 0x30, 0x30, 0xff, 0x43, 0x43, 0x43, 0xff, 0x48, 0x48, 0x48, 0xff, 0x47, 0x47, 0x47, 0xff, 0x43, 0x43, 0x43, 0xff, 0x34, 0x34, 0x34, 0xff, 0x34, 0x34, 0x34, 0xff, 0x48, 0x48, 0x48, 0xff, 0x35, 0x35, 0x35, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2b, 0x2b, 0x2b, 0xff, 0x51, 0x51, 0x51, 0xff, 0x59, 0x59, 0x59, 0xff, 0x34, 0x34, 0x34, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x38, 0x38, 0x38, 0xff, 0x34, 0x34, 0x34, 0xff, 0x5a, 0x5a, 0x5a, 0xff, 0x47, 0x47, 0x47, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x39, 0x39, 0x39, 0xff, 0x46, 0x46, 0x46, 0xff, 0x31, 0x31, 0x31, 0xff, 0x34, 0x34, 0x34, 0xff, 0x42, 0x42, 0x42, 0xff, 0x47, 0x47, 0x47, 0xff, 0x48, 0x48, 0x48, 0xff, 0x42, 0x42, 0x42, 0xff, 0x32, 0x32, 0x32, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x30, 0x30, 0x30, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x41, 0x41, 0x41, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x3d, 0x3d, 0x3d, 0xff, + 0x2b, 0x2b, 0x2b, 0xff, 0x32, 0x32, 0x32, 0xff, 0x40, 0x40, 0x40, 0xff, 0x37, 0x37, 0x37, 0xff, 0x48, 0x48, 0x48, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x43, 0x43, 0x43, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x43, 0x43, 0x43, 0xff, 0x42, 0x42, 0x42, 0xff, 0x34, 0x34, 0x34, 0xff, 0x35, 0x35, 0x35, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x45, 0x45, 0x45, 0xff, 0x34, 0x34, 0x34, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x44, 0x44, 0x44, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2b, 0x2b, 0x2b, 0xff, 0x32, 0x32, 0x32, 0xff, 0x59, 0x59, 0x59, 0xff, 0x57, 0x57, 0x57, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x58, 0x58, 0x58, 0xff, 0x56, 0x56, 0x56, 0xff, 0x32, 0x32, 0x32, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x30, 0x30, 0x30, 0xff, 0x43, 0x43, 0x43, 0xff, 0x35, 0x35, 0x35, 0xff, 0x36, 0x36, 0x36, 0xff, 0x47, 0x47, 0x47, 0xff, 0x39, 0x39, 0x39, 0xff, 0x34, 0x34, 0x34, 0xff, 0x33, 0x33, 0x33, 0xff, 0x42, 0x42, 0x42, 0xff, 0x41, 0x41, 0x41, 0xff, 0x34, 0x34, 0x34, 0xff, 0x40, 0x40, 0x40, 0xff, 0x39, 0x39, 0x39, 0xff, 0x41, 0x41, 0x41, 0xff, 0x43, 0x43, 0x43, 0xff, 0x35, 0x35, 0x35, 0xff, 0x46, 0x46, 0x46, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2b, 0x2b, 0x2b, 0xff, + 0x33, 0x33, 0x33, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x41, 0x41, 0x41, 0xff, 0x35, 0x35, 0x35, 0xff, 0x37, 0x37, 0x37, 0xff, 0x35, 0x35, 0x35, 0xff, 0x36, 0x36, 0x36, 0xff, 0x40, 0x40, 0x40, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x48, 0x48, 0x48, 0xff, 0x34, 0x34, 0x34, 0xff, 0x39, 0x39, 0x39, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x39, 0x39, 0x39, 0xff, 0x38, 0x38, 0x38, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x31, 0x31, 0x31, 0xff, 0x4a, 0x4a, 0x4a, 0xff, 0x43, 0x43, 0x43, 0xff, 0x43, 0x43, 0x43, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x32, 0x32, 0x32, 0xff, 0x36, 0x36, 0x36, 0xff, 0x57, 0x57, 0x57, 0xff, 0x5e, 0x5e, 0x5e, 0xff, 0x61, 0x61, 0x61, 0xff, 0x54, 0x54, 0x54, 0xff, 0x34, 0x34, 0x34, 0xff, 0x33, 0x33, 0x33, 0xff, 0x40, 0x40, 0x40, 0xff, 0x42, 0x42, 0x42, 0xff, 0x44, 0x44, 0x44, 0xff, 0x43, 0x43, 0x43, 0xff, 0x31, 0x31, 0x31, 0xff, 0x48, 0x48, 0x48, 0xff, 0x36, 0x36, 0x36, 0xff, 0x37, 0x37, 0x37, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x36, 0x36, 0x36, 0xff, 0x31, 0x31, 0x31, 0xff, 0x46, 0x46, 0x46, 0xff, 0x33, 0x33, 0x33, 0xff, 0x46, 0x46, 0x46, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x37, 0x37, 0x37, 0xff, 0x34, 0x34, 0x34, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x42, 0x42, 0x42, 0xff, 0x2b, 0x2b, 0x2b, 0xff, 0x34, 0x34, 0x34, 0xff, + 0x57, 0x57, 0x57, 0xff, 0x31, 0x31, 0x31, 0xff, 0x34, 0x34, 0x34, 0xff, 0x47, 0x47, 0x47, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x38, 0x38, 0x38, 0xff, 0x45, 0x45, 0x45, 0xff, 0x44, 0x44, 0x44, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x47, 0x47, 0x47, 0xff, 0x34, 0x34, 0x34, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x43, 0x43, 0x43, 0xff, 0x32, 0x32, 0x32, 0xff, 0x43, 0x43, 0x43, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x48, 0x48, 0x48, 0xff, 0x42, 0x42, 0x42, 0xff, 0x34, 0x34, 0x34, 0xff, 0x39, 0x39, 0x39, 0xff, 0x46, 0x46, 0x46, 0xff, 0x35, 0x35, 0x35, 0xff, 0x33, 0x33, 0x33, 0xff, 0x57, 0x57, 0x57, 0xff, 0x4f, 0x4f, 0x4f, 0xff, 0x30, 0x30, 0x30, 0xff, 0x38, 0x38, 0x38, 0xff, 0x44, 0x44, 0x44, 0xff, 0x37, 0x37, 0x37, 0xff, 0x35, 0x35, 0x35, 0xff, 0x44, 0x44, 0x44, 0xff, 0x42, 0x42, 0x42, 0xff, 0x33, 0x33, 0x33, 0xff, 0x48, 0x48, 0x48, 0xff, 0x30, 0x30, 0x30, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x33, 0x33, 0x33, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x46, 0x46, 0x46, 0xff, 0x33, 0x33, 0x33, 0xff, 0x48, 0x48, 0x48, 0xff, 0x43, 0x43, 0x43, 0xff, 0x38, 0x38, 0x38, 0xff, 0x40, 0x40, 0x40, 0xff, 0x44, 0x44, 0x44, 0xff, 0x31, 0x31, 0x31, 0xff, 0x33, 0x33, 0x33, 0xff, 0x56, 0x56, 0x56, 0xff, + 0x5e, 0x5e, 0x5e, 0xff, 0x57, 0x57, 0x57, 0xff, 0x35, 0x35, 0x35, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x42, 0x42, 0x42, 0xff, 0x44, 0x44, 0x44, 0xff, 0x47, 0x47, 0x47, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x41, 0x41, 0x41, 0xff, 0x39, 0x39, 0x39, 0xff, 0x39, 0x39, 0x39, 0xff, 0x43, 0x43, 0x43, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x32, 0x32, 0x32, 0xff, 0x43, 0x43, 0x43, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x46, 0x46, 0x46, 0xff, 0x32, 0x32, 0x32, 0xff, 0x37, 0x37, 0x37, 0xff, 0x37, 0x37, 0x37, 0xff, 0x34, 0x34, 0x34, 0xff, 0x46, 0x46, 0x46, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x34, 0x34, 0x34, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x42, 0x42, 0x42, 0xff, 0x35, 0x35, 0x35, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x37, 0x37, 0x37, 0xff, 0x33, 0x33, 0x33, 0xff, 0x40, 0x40, 0x40, 0xff, 0x34, 0x34, 0x34, 0xff, 0x4a, 0x4a, 0x4a, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x45, 0x45, 0x45, 0xff, 0x35, 0x35, 0x35, 0xff, 0x39, 0x39, 0x39, 0xff, 0x42, 0x42, 0x42, 0xff, 0x34, 0x34, 0x34, 0xff, 0x47, 0x47, 0x47, 0xff, 0x41, 0x41, 0x41, 0xff, 0x42, 0x42, 0x42, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x37, 0x37, 0x37, 0xff, 0x5b, 0x5b, 0x5b, 0xff, 0x5f, 0x5f, 0x5f, 0xff, + 0x41, 0x41, 0x41, 0xff, 0x57, 0x57, 0x57, 0xff, 0x56, 0x56, 0x56, 0xff, 0x33, 0x33, 0x33, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2b, 0x2b, 0x2b, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x45, 0x45, 0x45, 0xff, 0x38, 0x38, 0x38, 0xff, 0x33, 0x33, 0x33, 0xff, 0x45, 0x45, 0x45, 0xff, 0x37, 0x37, 0x37, 0xff, 0x33, 0x33, 0x33, 0xff, 0x31, 0x31, 0x31, 0xff, 0x40, 0x40, 0x40, 0xff, 0x41, 0x41, 0x41, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x48, 0x48, 0x48, 0xff, 0x36, 0x36, 0x36, 0xff, 0x41, 0x41, 0x41, 0xff, 0x46, 0x46, 0x46, 0xff, 0x30, 0x30, 0x30, 0xff, 0x45, 0x45, 0x45, 0xff, 0x30, 0x30, 0x30, 0xff, 0x2b, 0x2b, 0x2b, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x42, 0x42, 0x42, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x43, 0x43, 0x43, 0xff, 0x39, 0x39, 0x39, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x31, 0x31, 0x31, 0xff, 0x48, 0x48, 0x48, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x32, 0x32, 0x32, 0xff, 0x32, 0x32, 0x32, 0xff, 0x38, 0x38, 0x38, 0xff, 0x46, 0x46, 0x46, 0xff, 0x35, 0x35, 0x35, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x2b, 0x2b, 0x2b, 0xff, 0x2b, 0x2b, 0x2b, 0xff, 0x2a, 0x2a, 0x2a, 0xff, 0x36, 0x36, 0x36, 0xff, 0x5d, 0x5d, 0x5d, 0xff, 0x57, 0x57, 0x57, 0xff, 0x3f, 0x3f, 0x3f, 0xff, + 0x3d, 0x3d, 0x3d, 0xff, 0x36, 0x36, 0x36, 0xff, 0x59, 0x59, 0x59, 0xff, 0x49, 0x49, 0x49, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x37, 0x37, 0x37, 0xff, 0x48, 0x48, 0x48, 0xff, 0x34, 0x34, 0x34, 0xff, 0x34, 0x34, 0x34, 0xff, 0x40, 0x40, 0x40, 0xff, 0x42, 0x42, 0x42, 0xff, 0x43, 0x43, 0x43, 0xff, 0x41, 0x41, 0x41, 0xff, 0x32, 0x32, 0x32, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x45, 0x45, 0x45, 0xff, 0x34, 0x34, 0x34, 0xff, 0x40, 0x40, 0x40, 0xff, 0x38, 0x38, 0x38, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x44, 0x44, 0x44, 0xff, 0x30, 0x30, 0x30, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x42, 0x42, 0x42, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x36, 0x36, 0x36, 0xff, 0x41, 0x41, 0x41, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x42, 0x42, 0x42, 0xff, 0x37, 0x37, 0x37, 0xff, 0x33, 0x33, 0x33, 0xff, 0x42, 0x42, 0x42, 0xff, 0x44, 0x44, 0x44, 0xff, 0x42, 0x42, 0x42, 0xff, 0x40, 0x40, 0x40, 0xff, 0x34, 0x34, 0x34, 0xff, 0x36, 0x36, 0x36, 0xff, 0x46, 0x46, 0x46, 0xff, 0x33, 0x33, 0x33, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x53, 0x53, 0x53, 0xff, 0x55, 0x55, 0x55, 0xff, 0x34, 0x34, 0x34, 0xff, 0x3c, 0x3c, 0x3c, 0xff, + 0x5e, 0x5e, 0x5e, 0xff, 0x43, 0x43, 0x43, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x5b, 0x5b, 0x5b, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2b, 0x2b, 0x2b, 0xff, 0x2b, 0x2b, 0x2b, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x48, 0x48, 0x48, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x31, 0x31, 0x31, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x30, 0x30, 0x30, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x4c, 0x4c, 0x4c, 0xff, 0x39, 0x39, 0x39, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x45, 0x45, 0x45, 0xff, 0x41, 0x41, 0x41, 0xff, 0x32, 0x32, 0x32, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x54, 0x54, 0x54, 0xff, 0x56, 0x56, 0x56, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x31, 0x31, 0x31, 0xff, 0x42, 0x42, 0x42, 0xff, 0x45, 0x45, 0x45, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x4a, 0x4a, 0x4a, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x31, 0x31, 0x31, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x31, 0x31, 0x31, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x47, 0x47, 0x47, 0xff, 0x38, 0x38, 0x38, 0xff, 0x2b, 0x2b, 0x2b, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x5b, 0x5b, 0x5b, 0xff, 0x33, 0x33, 0x33, 0xff, 0x44, 0x44, 0x44, 0xff, 0x5f, 0x5f, 0x5f, 0xff, + 0x38, 0x38, 0x38, 0xff, 0x55, 0x55, 0x55, 0xff, 0x34, 0x34, 0x34, 0xff, 0x57, 0x57, 0x57, 0xff, 0x30, 0x30, 0x30, 0xff, 0x33, 0x33, 0x33, 0xff, 0x4a, 0x4a, 0x4a, 0xff, 0x41, 0x41, 0x41, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x35, 0x35, 0x35, 0xff, 0x44, 0x44, 0x44, 0xff, 0x4a, 0x4a, 0x4a, 0xff, 0x48, 0x48, 0x48, 0xff, 0x46, 0x46, 0x46, 0xff, 0x4a, 0x4a, 0x4a, 0xff, 0x45, 0x45, 0x45, 0xff, 0x39, 0x39, 0x39, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x30, 0x30, 0x30, 0xff, 0x4c, 0x4c, 0x4c, 0xff, 0x39, 0x39, 0x39, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x50, 0x50, 0x50, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x46, 0x46, 0x46, 0xff, 0x47, 0x47, 0x47, 0xff, 0x46, 0x46, 0x46, 0xff, 0x47, 0x47, 0x47, 0xff, 0x4a, 0x4a, 0x4a, 0xff, 0x43, 0x43, 0x43, 0xff, 0x33, 0x33, 0x33, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x4a, 0x4a, 0x4a, 0xff, 0x45, 0x45, 0x45, 0xff, 0x31, 0x31, 0x31, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x49, 0x49, 0x49, 0xff, 0x31, 0x31, 0x31, 0xff, 0x5b, 0x5b, 0x5b, 0xff, 0x38, 0x38, 0x38, 0xff, + 0x4d, 0x4d, 0x4d, 0xff, 0x48, 0x48, 0x48, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x33, 0x33, 0x33, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x58, 0x58, 0x58, 0xff, 0x60, 0x60, 0x60, 0xff, 0x45, 0x45, 0x45, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2b, 0x2b, 0x2b, 0xff, 0x42, 0x42, 0x42, 0xff, 0x43, 0x43, 0x43, 0xff, 0x32, 0x32, 0x32, 0xff, 0x36, 0x36, 0x36, 0xff, 0x35, 0x35, 0x35, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x31, 0x31, 0x31, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x30, 0x30, 0x30, 0xff, 0x33, 0x33, 0x33, 0xff, 0x48, 0x48, 0x48, 0xff, 0x45, 0x45, 0x45, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x4c, 0x4c, 0x4c, 0xff, 0x35, 0x35, 0x35, 0xff, 0x31, 0x31, 0x31, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x30, 0x30, 0x30, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x30, 0x30, 0x30, 0xff, 0x34, 0x34, 0x34, 0xff, 0x36, 0x36, 0x36, 0xff, 0x35, 0x35, 0x35, 0xff, 0x45, 0x45, 0x45, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x4f, 0x4f, 0x4f, 0xff, 0x60, 0x60, 0x60, 0xff, 0x55, 0x55, 0x55, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x31, 0x31, 0x31, 0xff, 0x37, 0x37, 0x37, 0xff, 0x56, 0x56, 0x56, 0xff, 0x48, 0x48, 0x48, 0xff, + 0x47, 0x47, 0x47, 0xff, 0x46, 0x46, 0x46, 0xff, 0x38, 0x38, 0x38, 0xff, 0x40, 0x40, 0x40, 0xff, 0x50, 0x50, 0x50, 0xff, 0x40, 0x40, 0x40, 0xff, 0x52, 0x52, 0x52, 0xff, 0x34, 0x34, 0x34, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x42, 0x42, 0x42, 0xff, 0x34, 0x34, 0x34, 0xff, 0x37, 0x37, 0x37, 0xff, 0x41, 0x41, 0x41, 0xff, 0x41, 0x41, 0x41, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x4e, 0x4e, 0x4e, 0xff, 0x4b, 0x4b, 0x4b, 0xff, 0x46, 0x46, 0x46, 0xff, 0x34, 0x34, 0x34, 0xff, 0x49, 0x49, 0x49, 0xff, 0x36, 0x36, 0x36, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x48, 0x48, 0x48, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x47, 0x47, 0x47, 0xff, 0x46, 0x46, 0x46, 0xff, 0x4e, 0x4e, 0x4e, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x41, 0x41, 0x41, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x37, 0x37, 0x37, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x39, 0x39, 0x39, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2b, 0x2b, 0x2b, 0xff, 0x37, 0x37, 0x37, 0xff, 0x5a, 0x5a, 0x5a, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x4e, 0x4e, 0x4e, 0xff, 0x37, 0x37, 0x37, 0xff, 0x39, 0x39, 0x39, 0xff, 0x53, 0x53, 0x53, 0xff, 0x40, 0x40, 0x40, 0xff, + 0x31, 0x31, 0x31, 0xff, 0x4c, 0x4c, 0x4c, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x4d, 0x4d, 0x4d, 0xff, 0x36, 0x36, 0x36, 0xff, 0x51, 0x51, 0x51, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x34, 0x34, 0x34, 0xff, 0x33, 0x33, 0x33, 0xff, 0x2b, 0x2b, 0x2b, 0xff, 0x2b, 0x2b, 0x2b, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x37, 0x37, 0x37, 0xff, 0x38, 0x38, 0x38, 0xff, 0x45, 0x45, 0x45, 0xff, 0x38, 0x38, 0x38, 0xff, 0x45, 0x45, 0x45, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x4b, 0x4b, 0x4b, 0xff, 0x30, 0x30, 0x30, 0xff, 0x4d, 0x4d, 0x4d, 0xff, 0x34, 0x34, 0x34, 0xff, 0x47, 0x47, 0x47, 0xff, 0x30, 0x30, 0x30, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x4e, 0x4e, 0x4e, 0xff, 0x39, 0x39, 0x39, 0xff, 0x42, 0x42, 0x42, 0xff, 0x32, 0x32, 0x32, 0xff, 0x50, 0x50, 0x50, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x33, 0x33, 0x33, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x39, 0x39, 0x39, 0xff, 0x45, 0x45, 0x45, 0xff, 0x38, 0x38, 0x38, 0xff, 0x40, 0x40, 0x40, 0xff, 0x34, 0x34, 0x34, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x34, 0x34, 0x34, 0xff, 0x33, 0x33, 0x33, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x53, 0x53, 0x53, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x4b, 0x4b, 0x4b, 0xff, 0x31, 0x31, 0x31, 0xff, 0x57, 0x57, 0x57, 0xff, 0x2d, 0x2d, 0x2d, 0xff, + 0x3d, 0x3d, 0x3d, 0xff, 0x4d, 0x4d, 0x4d, 0xff, 0x45, 0x45, 0x45, 0xff, 0x42, 0x42, 0x42, 0xff, 0x55, 0x55, 0x55, 0xff, 0x39, 0x39, 0x39, 0xff, 0x37, 0x37, 0x37, 0xff, 0x55, 0x55, 0x55, 0xff, 0x5f, 0x5f, 0x5f, 0xff, 0x4f, 0x4f, 0x4f, 0xff, 0x32, 0x32, 0x32, 0xff, 0x32, 0x32, 0x32, 0xff, 0x46, 0x46, 0x46, 0xff, 0x34, 0x34, 0x34, 0xff, 0x31, 0x31, 0x31, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x41, 0x41, 0x41, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x30, 0x30, 0x30, 0xff, 0x46, 0x46, 0x46, 0xff, 0x4c, 0x4c, 0x4c, 0xff, 0x4c, 0x4c, 0x4c, 0xff, 0x42, 0x42, 0x42, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x43, 0x43, 0x43, 0xff, 0x42, 0x42, 0x42, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x4d, 0x4d, 0x4d, 0xff, 0x4d, 0x4d, 0x4d, 0xff, 0x46, 0x46, 0x46, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x44, 0x44, 0x44, 0xff, 0x34, 0x34, 0x34, 0xff, 0x33, 0x33, 0x33, 0xff, 0x37, 0x37, 0x37, 0xff, 0x42, 0x42, 0x42, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x31, 0x31, 0x31, 0xff, 0x51, 0x51, 0x51, 0xff, 0x5f, 0x5f, 0x5f, 0xff, 0x55, 0x55, 0x55, 0xff, 0x30, 0x30, 0x30, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x4f, 0x4f, 0x4f, 0xff, 0x49, 0x49, 0x49, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x4b, 0x4b, 0x4b, 0xff, 0x42, 0x42, 0x42, 0xff, + 0x57, 0x57, 0x57, 0xff, 0x39, 0x39, 0x39, 0xff, 0x51, 0x51, 0x51, 0xff, 0x4b, 0x4b, 0x4b, 0xff, 0x32, 0x32, 0x32, 0xff, 0x34, 0x34, 0x34, 0xff, 0x34, 0x34, 0x34, 0xff, 0x30, 0x30, 0x30, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x5a, 0x5a, 0x5a, 0xff, 0x56, 0x56, 0x56, 0xff, 0x34, 0x34, 0x34, 0xff, 0x35, 0x35, 0x35, 0xff, 0x46, 0x46, 0x46, 0xff, 0x45, 0x45, 0x45, 0xff, 0x45, 0x45, 0x45, 0xff, 0x31, 0x31, 0x31, 0xff, 0x30, 0x30, 0x30, 0xff, 0x33, 0x33, 0x33, 0xff, 0x34, 0x34, 0x34, 0xff, 0x36, 0x36, 0x36, 0xff, 0x42, 0x42, 0x42, 0xff, 0x4c, 0x4c, 0x4c, 0xff, 0x34, 0x34, 0x34, 0xff, 0x49, 0x49, 0x49, 0xff, 0x46, 0x46, 0x46, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x4c, 0x4c, 0x4c, 0xff, 0x41, 0x41, 0x41, 0xff, 0x33, 0x33, 0x33, 0xff, 0x34, 0x34, 0x34, 0xff, 0x34, 0x34, 0x34, 0xff, 0x30, 0x30, 0x30, 0xff, 0x36, 0x36, 0x36, 0xff, 0x46, 0x46, 0x46, 0xff, 0x44, 0x44, 0x44, 0xff, 0x44, 0x44, 0x44, 0xff, 0x33, 0x33, 0x33, 0xff, 0x38, 0x38, 0x38, 0xff, 0x5d, 0x5d, 0x5d, 0xff, 0x58, 0x58, 0x58, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x35, 0x35, 0x35, 0xff, 0x34, 0x34, 0x34, 0xff, 0x36, 0x36, 0x36, 0xff, 0x4d, 0x4d, 0x4d, 0xff, 0x57, 0x57, 0x57, 0xff, 0x34, 0x34, 0x34, 0xff, 0x58, 0x58, 0x58, 0xff, + 0x3b, 0x3b, 0x3b, 0xff, 0x31, 0x31, 0x31, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x45, 0x45, 0x45, 0xff, 0x4c, 0x4c, 0x4c, 0xff, 0x4f, 0x4f, 0x4f, 0xff, 0x50, 0x50, 0x50, 0xff, 0x51, 0x51, 0x51, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x34, 0x34, 0x34, 0xff, 0x58, 0x58, 0x58, 0xff, 0x55, 0x55, 0x55, 0xff, 0x32, 0x32, 0x32, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x30, 0x30, 0x30, 0xff, 0x30, 0x30, 0x30, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x4b, 0x4b, 0x4b, 0xff, 0x49, 0x49, 0x49, 0xff, 0x48, 0x48, 0x48, 0xff, 0x46, 0x46, 0x46, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x34, 0x34, 0x34, 0xff, 0x37, 0x37, 0x37, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x34, 0x34, 0x34, 0xff, 0x37, 0x37, 0x37, 0xff, 0x40, 0x40, 0x40, 0xff, 0x46, 0x46, 0x46, 0xff, 0x4a, 0x4a, 0x4a, 0xff, 0x48, 0x48, 0x48, 0xff, 0x4a, 0x4a, 0x4a, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x31, 0x31, 0x31, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x36, 0x36, 0x36, 0xff, 0x5b, 0x5b, 0x5b, 0xff, 0x57, 0x57, 0x57, 0xff, 0x36, 0x36, 0x36, 0xff, 0x42, 0x42, 0x42, 0xff, 0x51, 0x51, 0x51, 0xff, 0x50, 0x50, 0x50, 0xff, 0x50, 0x50, 0x50, 0xff, 0x4c, 0x4c, 0x4c, 0xff, 0x42, 0x42, 0x42, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x31, 0x31, 0x31, 0xff, 0x39, 0x39, 0x39, 0xff, + 0x47, 0x47, 0x47, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x50, 0x50, 0x50, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x32, 0x32, 0x32, 0xff, 0x42, 0x42, 0x42, 0xff, 0x4e, 0x4e, 0x4e, 0xff, 0x43, 0x43, 0x43, 0xff, 0x5f, 0x5f, 0x5f, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x60, 0x60, 0x60, 0xff, 0x55, 0x55, 0x55, 0xff, 0x33, 0x33, 0x33, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x55, 0x55, 0x55, 0xff, 0x38, 0x38, 0x38, 0xff, 0x45, 0x45, 0x45, 0xff, 0x37, 0x37, 0x37, 0xff, 0x31, 0x31, 0x31, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x4a, 0x4a, 0x4a, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x40, 0x40, 0x40, 0xff, 0x40, 0x40, 0x40, 0xff, 0x43, 0x43, 0x43, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x37, 0x37, 0x37, 0xff, 0x46, 0x46, 0x46, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x52, 0x52, 0x52, 0xff, 0x38, 0x38, 0x38, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x37, 0x37, 0x37, 0xff, 0x58, 0x58, 0x58, 0xff, 0x61, 0x61, 0x61, 0xff, 0x39, 0x39, 0x39, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x5a, 0x5a, 0x5a, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x54, 0x54, 0x54, 0xff, 0x42, 0x42, 0x42, 0xff, 0x32, 0x32, 0x32, 0xff, 0x46, 0x46, 0x46, 0xff, 0x53, 0x53, 0x53, 0xff, 0x31, 0x31, 0x31, 0xff, 0x49, 0x49, 0x49, 0xff, + 0x53, 0x53, 0x53, 0xff, 0x36, 0x36, 0x36, 0xff, 0x53, 0x53, 0x53, 0xff, 0x43, 0x43, 0x43, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x41, 0x41, 0x41, 0xff, 0x41, 0x41, 0x41, 0xff, 0x43, 0x43, 0x43, 0xff, 0x60, 0x60, 0x60, 0xff, 0x38, 0x38, 0x38, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x62, 0x62, 0x62, 0xff, 0x50, 0x50, 0x50, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x56, 0x56, 0x56, 0xff, 0x39, 0x39, 0x39, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x42, 0x42, 0x42, 0xff, 0x47, 0x47, 0x47, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x41, 0x41, 0x41, 0xff, 0x47, 0x47, 0x47, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x41, 0x41, 0x41, 0xff, 0x41, 0x41, 0x41, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x56, 0x56, 0x56, 0xff, 0x34, 0x34, 0x34, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x33, 0x33, 0x33, 0xff, 0x54, 0x54, 0x54, 0xff, 0x61, 0x61, 0x61, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x5e, 0x5e, 0x5e, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x46, 0x46, 0x46, 0xff, 0x40, 0x40, 0x40, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x4d, 0x4d, 0x4d, 0xff, 0x50, 0x50, 0x50, 0xff, 0x31, 0x31, 0x31, 0xff, 0x53, 0x53, 0x53, 0xff, + 0x32, 0x32, 0x32, 0xff, 0x32, 0x32, 0x32, 0xff, 0x36, 0x36, 0x36, 0xff, 0x4e, 0x4e, 0x4e, 0xff, 0x55, 0x55, 0x55, 0xff, 0x52, 0x52, 0x52, 0xff, 0x57, 0x57, 0x57, 0xff, 0x5a, 0x5a, 0x5a, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x35, 0x35, 0x35, 0xff, 0x59, 0x59, 0x59, 0xff, 0x55, 0x55, 0x55, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x51, 0x51, 0x51, 0xff, 0x4b, 0x4b, 0x4b, 0xff, 0x47, 0x47, 0x47, 0xff, 0x4f, 0x4f, 0x4f, 0xff, 0x44, 0x44, 0x44, 0xff, 0x30, 0x30, 0x30, 0xff, 0x34, 0x34, 0x34, 0xff, 0x41, 0x41, 0x41, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x30, 0x30, 0x30, 0xff, 0x34, 0x34, 0x34, 0xff, 0x43, 0x43, 0x43, 0xff, 0x4d, 0x4d, 0x4d, 0xff, 0x47, 0x47, 0x47, 0xff, 0x4c, 0x4c, 0x4c, 0xff, 0x4e, 0x4e, 0x4e, 0xff, 0x38, 0x38, 0x38, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x34, 0x34, 0x34, 0xff, 0x5a, 0x5a, 0x5a, 0xff, 0x59, 0x59, 0x59, 0xff, 0x33, 0x33, 0x33, 0xff, 0x42, 0x42, 0x42, 0xff, 0x59, 0x59, 0x59, 0xff, 0x54, 0x54, 0x54, 0xff, 0x50, 0x50, 0x50, 0xff, 0x57, 0x57, 0x57, 0xff, 0x48, 0x48, 0x48, 0xff, 0x35, 0x35, 0x35, 0xff, 0x32, 0x32, 0x32, 0xff, 0x32, 0x32, 0x32, 0xff, + 0x54, 0x54, 0x54, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x53, 0x53, 0x53, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x37, 0x37, 0x37, 0xff, 0x35, 0x35, 0x35, 0xff, 0x35, 0x35, 0x35, 0xff, 0x33, 0x33, 0x33, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x5a, 0x5a, 0x5a, 0xff, 0x56, 0x56, 0x56, 0xff, 0x34, 0x34, 0x34, 0xff, 0x37, 0x37, 0x37, 0xff, 0x43, 0x43, 0x43, 0xff, 0x42, 0x42, 0x42, 0xff, 0x42, 0x42, 0x42, 0xff, 0x32, 0x32, 0x32, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x35, 0x35, 0x35, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x38, 0x38, 0x38, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x4c, 0x4c, 0x4c, 0xff, 0x37, 0x37, 0x37, 0xff, 0x43, 0x43, 0x43, 0xff, 0x43, 0x43, 0x43, 0xff, 0x34, 0x34, 0x34, 0xff, 0x4a, 0x4a, 0x4a, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x39, 0x39, 0x39, 0xff, 0x34, 0x34, 0x34, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x36, 0x36, 0x36, 0xff, 0x42, 0x42, 0x42, 0xff, 0x42, 0x42, 0x42, 0xff, 0x41, 0x41, 0x41, 0xff, 0x33, 0x33, 0x33, 0xff, 0x38, 0x38, 0x38, 0xff, 0x58, 0x58, 0x58, 0xff, 0x59, 0x59, 0x59, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x34, 0x34, 0x34, 0xff, 0x36, 0x36, 0x36, 0xff, 0x36, 0x36, 0x36, 0xff, 0x37, 0x37, 0x37, 0xff, 0x44, 0x44, 0x44, 0xff, 0x59, 0x59, 0x59, 0xff, 0x37, 0x37, 0x37, 0xff, 0x54, 0x54, 0x54, 0xff, + 0x3f, 0x3f, 0x3f, 0xff, 0x4c, 0x4c, 0x4c, 0xff, 0x46, 0x46, 0x46, 0xff, 0x46, 0x46, 0x46, 0xff, 0x49, 0x49, 0x49, 0xff, 0x41, 0x41, 0x41, 0xff, 0x32, 0x32, 0x32, 0xff, 0x4c, 0x4c, 0x4c, 0xff, 0x56, 0x56, 0x56, 0xff, 0x48, 0x48, 0x48, 0xff, 0x32, 0x32, 0x32, 0xff, 0x34, 0x34, 0x34, 0xff, 0x44, 0x44, 0x44, 0xff, 0x35, 0x35, 0x35, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x41, 0x41, 0x41, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x32, 0x32, 0x32, 0xff, 0x46, 0x46, 0x46, 0xff, 0x42, 0x42, 0x42, 0xff, 0x4d, 0x4d, 0x4d, 0xff, 0x40, 0x40, 0x40, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x45, 0x45, 0x45, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x49, 0x49, 0x49, 0xff, 0x44, 0x44, 0x44, 0xff, 0x48, 0x48, 0x48, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x30, 0x30, 0x30, 0xff, 0x42, 0x42, 0x42, 0xff, 0x39, 0x39, 0x39, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x39, 0x39, 0x39, 0xff, 0x43, 0x43, 0x43, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x35, 0x35, 0x35, 0xff, 0x4a, 0x4a, 0x4a, 0xff, 0x56, 0x56, 0x56, 0xff, 0x4b, 0x4b, 0x4b, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x42, 0x42, 0x42, 0xff, 0x47, 0x47, 0x47, 0xff, 0x4f, 0x4f, 0x4f, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x4c, 0x4c, 0x4c, 0xff, 0x42, 0x42, 0x42, 0xff, + 0x2e, 0x2e, 0x2e, 0xff, 0x4c, 0x4c, 0x4c, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x51, 0x51, 0x51, 0xff, 0x36, 0x36, 0x36, 0xff, 0x4c, 0x4c, 0x4c, 0xff, 0x44, 0x44, 0x44, 0xff, 0x32, 0x32, 0x32, 0xff, 0x32, 0x32, 0x32, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x40, 0x40, 0x40, 0xff, 0x35, 0x35, 0x35, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x36, 0x36, 0x36, 0xff, 0x45, 0x45, 0x45, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x47, 0x47, 0x47, 0xff, 0x32, 0x32, 0x32, 0xff, 0x4e, 0x4e, 0x4e, 0xff, 0x33, 0x33, 0x33, 0xff, 0x46, 0x46, 0x46, 0xff, 0x30, 0x30, 0x30, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x4c, 0x4c, 0x4c, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x45, 0x45, 0x45, 0xff, 0x31, 0x31, 0x31, 0xff, 0x49, 0x49, 0x49, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x32, 0x32, 0x32, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x37, 0x37, 0x37, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x36, 0x36, 0x36, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x31, 0x31, 0x31, 0xff, 0x31, 0x31, 0x31, 0xff, 0x47, 0x47, 0x47, 0xff, 0x4e, 0x4e, 0x4e, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x49, 0x49, 0x49, 0xff, 0x34, 0x34, 0x34, 0xff, 0x56, 0x56, 0x56, 0xff, 0x2b, 0x2b, 0x2b, 0xff, + 0x4b, 0x4b, 0x4b, 0xff, 0x46, 0x46, 0x46, 0xff, 0x39, 0x39, 0x39, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x56, 0x56, 0x56, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x53, 0x53, 0x53, 0xff, 0x37, 0x37, 0x37, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x44, 0x44, 0x44, 0xff, 0x34, 0x34, 0x34, 0xff, 0x38, 0x38, 0x38, 0xff, 0x42, 0x42, 0x42, 0xff, 0x41, 0x41, 0x41, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x4f, 0x4f, 0x4f, 0xff, 0x50, 0x50, 0x50, 0xff, 0x48, 0x48, 0x48, 0xff, 0x33, 0x33, 0x33, 0xff, 0x48, 0x48, 0x48, 0xff, 0x38, 0x38, 0x38, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x46, 0x46, 0x46, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x47, 0x47, 0x47, 0xff, 0x4c, 0x4c, 0x4c, 0xff, 0x50, 0x50, 0x50, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x44, 0x44, 0x44, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x42, 0x42, 0x42, 0xff, 0x39, 0x39, 0x39, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x59, 0x59, 0x59, 0xff, 0x38, 0x38, 0x38, 0xff, 0x52, 0x52, 0x52, 0xff, 0x37, 0x37, 0x37, 0xff, 0x38, 0x38, 0x38, 0xff, 0x54, 0x54, 0x54, 0xff, 0x43, 0x43, 0x43, 0xff, + 0x4d, 0x4d, 0x4d, 0xff, 0x4a, 0x4a, 0x4a, 0xff, 0x39, 0x39, 0x39, 0xff, 0x32, 0x32, 0x32, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x59, 0x59, 0x59, 0xff, 0x5e, 0x5e, 0x5e, 0xff, 0x44, 0x44, 0x44, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x44, 0x44, 0x44, 0xff, 0x42, 0x42, 0x42, 0xff, 0x32, 0x32, 0x32, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x31, 0x31, 0x31, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x33, 0x33, 0x33, 0xff, 0x49, 0x49, 0x49, 0xff, 0x46, 0x46, 0x46, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x4b, 0x4b, 0x4b, 0xff, 0x34, 0x34, 0x34, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x31, 0x31, 0x31, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x34, 0x34, 0x34, 0xff, 0x46, 0x46, 0x46, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2b, 0x2b, 0x2b, 0xff, 0x51, 0x51, 0x51, 0xff, 0x5b, 0x5b, 0x5b, 0xff, 0x54, 0x54, 0x54, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x31, 0x31, 0x31, 0xff, 0x38, 0x38, 0x38, 0xff, 0x57, 0x57, 0x57, 0xff, 0x48, 0x48, 0x48, 0xff, + 0x41, 0x41, 0x41, 0xff, 0x53, 0x53, 0x53, 0xff, 0x34, 0x34, 0x34, 0xff, 0x56, 0x56, 0x56, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x35, 0x35, 0x35, 0xff, 0x47, 0x47, 0x47, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x39, 0x39, 0x39, 0xff, 0x42, 0x42, 0x42, 0xff, 0x44, 0x44, 0x44, 0xff, 0x41, 0x41, 0x41, 0xff, 0x40, 0x40, 0x40, 0xff, 0x40, 0x40, 0x40, 0xff, 0x41, 0x41, 0x41, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x32, 0x32, 0x32, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x49, 0x49, 0x49, 0xff, 0x41, 0x41, 0x41, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x4f, 0x4f, 0x4f, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x32, 0x32, 0x32, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x31, 0x31, 0x31, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x41, 0x41, 0x41, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x40, 0x40, 0x40, 0xff, 0x41, 0x41, 0x41, 0xff, 0x44, 0x44, 0x44, 0xff, 0x42, 0x42, 0x42, 0xff, 0x38, 0x38, 0x38, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x45, 0x45, 0x45, 0xff, 0x44, 0x44, 0x44, 0xff, 0x34, 0x34, 0x34, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x4b, 0x4b, 0x4b, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x59, 0x59, 0x59, 0xff, 0x42, 0x42, 0x42, 0xff, + 0x5c, 0x5c, 0x5c, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x40, 0x40, 0x40, 0xff, 0x5b, 0x5b, 0x5b, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x40, 0x40, 0x40, 0xff, 0x46, 0x46, 0x46, 0xff, 0x36, 0x36, 0x36, 0xff, 0x31, 0x31, 0x31, 0xff, 0x34, 0x34, 0x34, 0xff, 0x33, 0x33, 0x33, 0xff, 0x31, 0x31, 0x31, 0xff, 0x38, 0x38, 0x38, 0xff, 0x4a, 0x4a, 0x4a, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x30, 0x30, 0x30, 0xff, 0x41, 0x41, 0x41, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x45, 0x45, 0x45, 0xff, 0x35, 0x35, 0x35, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x53, 0x53, 0x53, 0xff, 0x56, 0x56, 0x56, 0xff, 0x39, 0x39, 0x39, 0xff, 0x35, 0x35, 0x35, 0xff, 0x42, 0x42, 0x42, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x44, 0x44, 0x44, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x46, 0x46, 0x46, 0xff, 0x36, 0x36, 0x36, 0xff, 0x31, 0x31, 0x31, 0xff, 0x33, 0x33, 0x33, 0xff, 0x33, 0x33, 0x33, 0xff, 0x31, 0x31, 0x31, 0xff, 0x37, 0x37, 0x37, 0xff, 0x45, 0x45, 0x45, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2b, 0x2b, 0x2b, 0xff, 0x39, 0x39, 0x39, 0xff, 0x5b, 0x5b, 0x5b, 0xff, 0x36, 0x36, 0x36, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x60, 0x60, 0x60, 0xff, + 0x35, 0x35, 0x35, 0xff, 0x37, 0x37, 0x37, 0xff, 0x5c, 0x5c, 0x5c, 0xff, 0x47, 0x47, 0x47, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x48, 0x48, 0x48, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x38, 0x38, 0x38, 0xff, 0x47, 0x47, 0x47, 0xff, 0x48, 0x48, 0x48, 0xff, 0x4a, 0x4a, 0x4a, 0xff, 0x46, 0x46, 0x46, 0xff, 0x33, 0x33, 0x33, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x45, 0x45, 0x45, 0xff, 0x36, 0x36, 0x36, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x38, 0x38, 0x38, 0xff, 0x35, 0x35, 0x35, 0xff, 0x46, 0x46, 0x46, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x38, 0x38, 0x38, 0xff, 0x35, 0x35, 0x35, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x43, 0x43, 0x43, 0xff, 0x37, 0x37, 0x37, 0xff, 0x34, 0x34, 0x34, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x43, 0x43, 0x43, 0xff, 0x35, 0x35, 0x35, 0xff, 0x35, 0x35, 0x35, 0xff, 0x49, 0x49, 0x49, 0xff, 0x4a, 0x4a, 0x4a, 0xff, 0x49, 0x49, 0x49, 0xff, 0x47, 0x47, 0x47, 0xff, 0x35, 0x35, 0x35, 0xff, 0x33, 0x33, 0x33, 0xff, 0x46, 0x46, 0x46, 0xff, 0x34, 0x34, 0x34, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x52, 0x52, 0x52, 0xff, 0x5a, 0x5a, 0x5a, 0xff, 0x31, 0x31, 0x31, 0xff, 0x34, 0x34, 0x34, 0xff, + 0x3e, 0x3e, 0x3e, 0xff, 0x5a, 0x5a, 0x5a, 0xff, 0x55, 0x55, 0x55, 0xff, 0x31, 0x31, 0x31, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x30, 0x30, 0x30, 0xff, 0x45, 0x45, 0x45, 0xff, 0x36, 0x36, 0x36, 0xff, 0x34, 0x34, 0x34, 0xff, 0x47, 0x47, 0x47, 0xff, 0x36, 0x36, 0x36, 0xff, 0x30, 0x30, 0x30, 0xff, 0x30, 0x30, 0x30, 0xff, 0x41, 0x41, 0x41, 0xff, 0x41, 0x41, 0x41, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x48, 0x48, 0x48, 0xff, 0x36, 0x36, 0x36, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x45, 0x45, 0x45, 0xff, 0x32, 0x32, 0x32, 0xff, 0x44, 0x44, 0x44, 0xff, 0x30, 0x30, 0x30, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x42, 0x42, 0x42, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x41, 0x41, 0x41, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x31, 0x31, 0x31, 0xff, 0x49, 0x49, 0x49, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x37, 0x37, 0x37, 0xff, 0x48, 0x48, 0x48, 0xff, 0x34, 0x34, 0x34, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x40, 0x40, 0x40, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x34, 0x34, 0x34, 0xff, 0x5a, 0x5a, 0x5a, 0xff, 0x5a, 0x5a, 0x5a, 0xff, 0x3d, 0x3d, 0x3d, 0xff, + 0x63, 0x63, 0x63, 0xff, 0x54, 0x54, 0x54, 0xff, 0x35, 0x35, 0x35, 0xff, 0x35, 0x35, 0x35, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x42, 0x42, 0x42, 0xff, 0x46, 0x46, 0x46, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x43, 0x43, 0x43, 0xff, 0x39, 0x39, 0x39, 0xff, 0x37, 0x37, 0x37, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x32, 0x32, 0x32, 0xff, 0x43, 0x43, 0x43, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x48, 0x48, 0x48, 0xff, 0x34, 0x34, 0x34, 0xff, 0x38, 0x38, 0x38, 0xff, 0x38, 0x38, 0x38, 0xff, 0x37, 0x37, 0x37, 0xff, 0x44, 0x44, 0x44, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x38, 0x38, 0x38, 0xff, 0x32, 0x32, 0x32, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x41, 0x41, 0x41, 0xff, 0x39, 0x39, 0x39, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x34, 0x34, 0x34, 0xff, 0x40, 0x40, 0x40, 0xff, 0x34, 0x34, 0x34, 0xff, 0x49, 0x49, 0x49, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x39, 0x39, 0x39, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x34, 0x34, 0x34, 0xff, 0x38, 0x38, 0x38, 0xff, 0x42, 0x42, 0x42, 0xff, 0x34, 0x34, 0x34, 0xff, 0x47, 0x47, 0x47, 0xff, 0x40, 0x40, 0x40, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x32, 0x32, 0x32, 0xff, 0x37, 0x37, 0x37, 0xff, 0x57, 0x57, 0x57, 0xff, 0x63, 0x63, 0x63, 0xff, + 0x51, 0x51, 0x51, 0xff, 0x33, 0x33, 0x33, 0xff, 0x38, 0x38, 0x38, 0xff, 0x41, 0x41, 0x41, 0xff, 0x37, 0x37, 0x37, 0xff, 0x36, 0x36, 0x36, 0xff, 0x42, 0x42, 0x42, 0xff, 0x42, 0x42, 0x42, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x48, 0x48, 0x48, 0xff, 0x33, 0x33, 0x33, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x33, 0x33, 0x33, 0xff, 0x44, 0x44, 0x44, 0xff, 0x31, 0x31, 0x31, 0xff, 0x42, 0x42, 0x42, 0xff, 0x30, 0x30, 0x30, 0xff, 0x49, 0x49, 0x49, 0xff, 0x46, 0x46, 0x46, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x42, 0x42, 0x42, 0xff, 0x32, 0x32, 0x32, 0xff, 0x37, 0x37, 0x37, 0xff, 0x57, 0x57, 0x57, 0xff, 0x53, 0x53, 0x53, 0xff, 0x34, 0x34, 0x34, 0xff, 0x33, 0x33, 0x33, 0xff, 0x42, 0x42, 0x42, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x47, 0x47, 0x47, 0xff, 0x42, 0x42, 0x42, 0xff, 0x32, 0x32, 0x32, 0xff, 0x49, 0x49, 0x49, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x38, 0x38, 0x38, 0xff, 0x40, 0x40, 0x40, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x45, 0x45, 0x45, 0xff, 0x32, 0x32, 0x32, 0xff, 0x47, 0x47, 0x47, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x35, 0x35, 0x35, 0xff, 0x38, 0x38, 0x38, 0xff, 0x45, 0x45, 0x45, 0xff, 0x33, 0x33, 0x33, 0xff, 0x34, 0x34, 0x34, 0xff, 0x52, 0x52, 0x52, 0xff, + 0x30, 0x30, 0x30, 0xff, 0x30, 0x30, 0x30, 0xff, 0x41, 0x41, 0x41, 0xff, 0x33, 0x33, 0x33, 0xff, 0x40, 0x40, 0x40, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x37, 0x37, 0x37, 0xff, 0x41, 0x41, 0x41, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x48, 0x48, 0x48, 0xff, 0x33, 0x33, 0x33, 0xff, 0x37, 0x37, 0x37, 0xff, 0x42, 0x42, 0x42, 0xff, 0x35, 0x35, 0x35, 0xff, 0x39, 0x39, 0x39, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x32, 0x32, 0x32, 0xff, 0x49, 0x49, 0x49, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x35, 0x35, 0x35, 0xff, 0x30, 0x30, 0x30, 0xff, 0x38, 0x38, 0x38, 0xff, 0x5c, 0x5c, 0x5c, 0xff, 0x61, 0x61, 0x61, 0xff, 0x62, 0x62, 0x62, 0xff, 0x59, 0x59, 0x59, 0xff, 0x37, 0x37, 0x37, 0xff, 0x30, 0x30, 0x30, 0xff, 0x37, 0x37, 0x37, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x44, 0x44, 0x44, 0xff, 0x30, 0x30, 0x30, 0xff, 0x47, 0x47, 0x47, 0xff, 0x37, 0x37, 0x37, 0xff, 0x34, 0x34, 0x34, 0xff, 0x41, 0x41, 0x41, 0xff, 0x35, 0x35, 0x35, 0xff, 0x31, 0x31, 0x31, 0xff, 0x46, 0x46, 0x46, 0xff, 0x33, 0x33, 0x33, 0xff, 0x45, 0x45, 0x45, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x38, 0x38, 0x38, 0xff, 0x43, 0x43, 0x43, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x31, 0x31, 0x31, 0xff, + 0x2d, 0x2d, 0x2d, 0xff, 0x33, 0x33, 0x33, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x39, 0x39, 0x39, 0xff, 0x42, 0x42, 0x42, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x43, 0x43, 0x43, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x43, 0x43, 0x43, 0xff, 0x42, 0x42, 0x42, 0xff, 0x31, 0x31, 0x31, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x38, 0x38, 0x38, 0xff, 0x47, 0x47, 0x47, 0xff, 0x34, 0x34, 0x34, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x42, 0x42, 0x42, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x31, 0x31, 0x31, 0xff, 0x5d, 0x5d, 0x5d, 0xff, 0x57, 0x57, 0x57, 0xff, 0x39, 0x39, 0x39, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x5b, 0x5b, 0x5b, 0xff, 0x57, 0x57, 0x57, 0xff, 0x34, 0x34, 0x34, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x42, 0x42, 0x42, 0xff, 0x37, 0x37, 0x37, 0xff, 0x35, 0x35, 0x35, 0xff, 0x48, 0x48, 0x48, 0xff, 0x38, 0x38, 0x38, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x31, 0x31, 0x31, 0xff, 0x43, 0x43, 0x43, 0xff, 0x41, 0x41, 0x41, 0xff, 0x34, 0x34, 0x34, 0xff, 0x42, 0x42, 0x42, 0xff, 0x39, 0x39, 0x39, 0xff, 0x41, 0x41, 0x41, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x36, 0x36, 0x36, 0xff, 0x47, 0x47, 0x47, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2e, 0x2e, 0x2e, 0xff, + 0x3e, 0x3e, 0x3e, 0xff, 0x31, 0x31, 0x31, 0xff, 0x40, 0x40, 0x40, 0xff, 0x39, 0x39, 0x39, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x45, 0x45, 0x45, 0xff, 0x39, 0x39, 0x39, 0xff, 0x31, 0x31, 0x31, 0xff, 0x42, 0x42, 0x42, 0xff, 0x45, 0x45, 0x45, 0xff, 0x45, 0x45, 0x45, 0xff, 0x42, 0x42, 0x42, 0xff, 0x34, 0x34, 0x34, 0xff, 0x35, 0x35, 0x35, 0xff, 0x48, 0x48, 0x48, 0xff, 0x33, 0x33, 0x33, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2b, 0x2b, 0x2b, 0xff, 0x52, 0x52, 0x52, 0xff, 0x59, 0x59, 0x59, 0xff, 0x34, 0x34, 0x34, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x39, 0x39, 0x39, 0xff, 0x34, 0x34, 0x34, 0xff, 0x59, 0x59, 0x59, 0xff, 0x48, 0x48, 0x48, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x38, 0x38, 0x38, 0xff, 0x45, 0x45, 0x45, 0xff, 0x32, 0x32, 0x32, 0xff, 0x35, 0x35, 0x35, 0xff, 0x42, 0x42, 0x42, 0xff, 0x45, 0x45, 0x45, 0xff, 0x46, 0x46, 0x46, 0xff, 0x42, 0x42, 0x42, 0xff, 0x31, 0x31, 0x31, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x38, 0x38, 0x38, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x40, 0x40, 0x40, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x3f, 0x3f, 0x3f, 0xff, + 0x52, 0x52, 0x52, 0xff, 0x41, 0x41, 0x41, 0xff, 0x33, 0x33, 0x33, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x4a, 0x4a, 0x4a, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x34, 0x34, 0x34, 0xff, 0x32, 0x32, 0x32, 0xff, 0x32, 0x32, 0x32, 0xff, 0x34, 0x34, 0x34, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x46, 0x46, 0x46, 0xff, 0x39, 0x39, 0x39, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2b, 0x2b, 0x2b, 0xff, 0x2b, 0x2b, 0x2b, 0xff, 0x34, 0x34, 0x34, 0xff, 0x5f, 0x5f, 0x5f, 0xff, 0x39, 0x39, 0x39, 0xff, 0x42, 0x42, 0x42, 0xff, 0x5b, 0x5b, 0x5b, 0xff, 0x5e, 0x5e, 0x5e, 0xff, 0x40, 0x40, 0x40, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x55, 0x55, 0x55, 0xff, 0x32, 0x32, 0x32, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2b, 0x2b, 0x2b, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x47, 0x47, 0x47, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x34, 0x34, 0x34, 0xff, 0x33, 0x33, 0x33, 0xff, 0x34, 0x34, 0x34, 0xff, 0x34, 0x34, 0x34, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x4a, 0x4a, 0x4a, 0xff, 0x35, 0x35, 0x35, 0xff, 0x30, 0x30, 0x30, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x30, 0x30, 0x30, 0xff, 0x42, 0x42, 0x42, 0xff, 0x54, 0x54, 0x54, 0xff, + 0x39, 0x39, 0x39, 0xff, 0x4c, 0x4c, 0x4c, 0xff, 0x32, 0x32, 0x32, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x37, 0x37, 0x37, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x42, 0x42, 0x42, 0xff, 0x46, 0x46, 0x46, 0xff, 0x47, 0x47, 0x47, 0xff, 0x48, 0x48, 0x48, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x34, 0x34, 0x34, 0xff, 0x2b, 0x2b, 0x2b, 0xff, 0x4a, 0x4a, 0x4a, 0xff, 0x4f, 0x4f, 0x4f, 0xff, 0x36, 0x36, 0x36, 0xff, 0x34, 0x34, 0x34, 0xff, 0x54, 0x54, 0x54, 0xff, 0x30, 0x30, 0x30, 0xff, 0x50, 0x50, 0x50, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x58, 0x58, 0x58, 0xff, 0x33, 0x33, 0x33, 0xff, 0x4b, 0x4b, 0x4b, 0xff, 0x30, 0x30, 0x30, 0xff, 0x39, 0x39, 0x39, 0xff, 0x50, 0x50, 0x50, 0xff, 0x45, 0x45, 0x45, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x34, 0x34, 0x34, 0xff, 0x40, 0x40, 0x40, 0xff, 0x46, 0x46, 0x46, 0xff, 0x48, 0x48, 0x48, 0xff, 0x45, 0x45, 0x45, 0xff, 0x42, 0x42, 0x42, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x36, 0x36, 0x36, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x30, 0x30, 0x30, 0xff, 0x50, 0x50, 0x50, 0xff, 0x38, 0x38, 0x38, 0xff, + 0x48, 0x48, 0x48, 0xff, 0x42, 0x42, 0x42, 0xff, 0x38, 0x38, 0x38, 0xff, 0x31, 0x31, 0x31, 0xff, 0x40, 0x40, 0x40, 0xff, 0x44, 0x44, 0x44, 0xff, 0x33, 0x33, 0x33, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x39, 0x39, 0x39, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x43, 0x43, 0x43, 0xff, 0x40, 0x40, 0x40, 0xff, 0x2b, 0x2b, 0x2b, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2b, 0x2b, 0x2b, 0xff, 0x49, 0x49, 0x49, 0xff, 0x5e, 0x5e, 0x5e, 0xff, 0x5a, 0x5a, 0x5a, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x31, 0x31, 0x31, 0xff, 0x34, 0x34, 0x34, 0xff, 0x4f, 0x4f, 0x4f, 0xff, 0x52, 0x52, 0x52, 0xff, 0x44, 0x44, 0x44, 0xff, 0x56, 0x56, 0x56, 0xff, 0x35, 0x35, 0x35, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x47, 0x47, 0x47, 0xff, 0x5c, 0x5c, 0x5c, 0xff, 0x5b, 0x5b, 0x5b, 0xff, 0x44, 0x44, 0x44, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x40, 0x40, 0x40, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x30, 0x30, 0x30, 0xff, 0x39, 0x39, 0x39, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x33, 0x33, 0x33, 0xff, 0x44, 0x44, 0x44, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x38, 0x38, 0x38, 0xff, 0x4b, 0x4b, 0x4b, 0xff, 0x44, 0x44, 0x44, 0xff, + 0x3b, 0x3b, 0x3b, 0xff, 0x41, 0x41, 0x41, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x4b, 0x4b, 0x4b, 0xff, 0x4b, 0x4b, 0x4b, 0xff, 0x4b, 0x4b, 0x4b, 0xff, 0x42, 0x42, 0x42, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x45, 0x45, 0x45, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x42, 0x42, 0x42, 0xff, 0x37, 0x37, 0x37, 0xff, 0x38, 0x38, 0x38, 0xff, 0x42, 0x42, 0x42, 0xff, 0x2a, 0x2a, 0x2a, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x30, 0x30, 0x30, 0xff, 0x55, 0x55, 0x55, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x53, 0x53, 0x53, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x34, 0x34, 0x34, 0xff, 0x4f, 0x4f, 0x4f, 0xff, 0x42, 0x42, 0x42, 0xff, 0x42, 0x42, 0x42, 0xff, 0x52, 0x52, 0x52, 0xff, 0x35, 0x35, 0x35, 0xff, 0x43, 0x43, 0x43, 0xff, 0x4d, 0x4d, 0x4d, 0xff, 0x39, 0x39, 0x39, 0xff, 0x55, 0x55, 0x55, 0xff, 0x33, 0x33, 0x33, 0xff, 0x2b, 0x2b, 0x2b, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x34, 0x34, 0x34, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x41, 0x41, 0x41, 0xff, 0x40, 0x40, 0x40, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x44, 0x44, 0x44, 0xff, 0x4f, 0x4f, 0x4f, 0xff, 0x4d, 0x4d, 0x4d, 0xff, 0x41, 0x41, 0x41, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x48, 0x48, 0x48, 0xff, 0x36, 0x36, 0x36, 0xff, + 0x2f, 0x2f, 0x2f, 0xff, 0x46, 0x46, 0x46, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x44, 0x44, 0x44, 0xff, 0x32, 0x32, 0x32, 0xff, 0x4a, 0x4a, 0x4a, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x30, 0x30, 0x30, 0xff, 0x48, 0x48, 0x48, 0xff, 0x30, 0x30, 0x30, 0xff, 0x42, 0x42, 0x42, 0xff, 0x34, 0x34, 0x34, 0xff, 0x41, 0x41, 0x41, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x2b, 0x2b, 0x2b, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x39, 0x39, 0x39, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x4e, 0x4e, 0x4e, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x4f, 0x4f, 0x4f, 0xff, 0x36, 0x36, 0x36, 0xff, 0x4d, 0x4d, 0x4d, 0xff, 0x30, 0x30, 0x30, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x57, 0x57, 0x57, 0xff, 0x37, 0x37, 0x37, 0xff, 0x47, 0x47, 0x47, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x53, 0x53, 0x53, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x39, 0x39, 0x39, 0xff, 0x38, 0x38, 0x38, 0xff, 0x2b, 0x2b, 0x2b, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x38, 0x38, 0x38, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x37, 0x37, 0x37, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x4b, 0x4b, 0x4b, 0xff, 0x34, 0x34, 0x34, 0xff, 0x48, 0x48, 0x48, 0xff, 0x33, 0x33, 0x33, 0xff, 0x4d, 0x4d, 0x4d, 0xff, 0x2c, 0x2c, 0x2c, 0xff, + 0x43, 0x43, 0x43, 0xff, 0x42, 0x42, 0x42, 0xff, 0x43, 0x43, 0x43, 0xff, 0x4e, 0x4e, 0x4e, 0xff, 0x48, 0x48, 0x48, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x45, 0x45, 0x45, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x34, 0x34, 0x34, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x45, 0x45, 0x45, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x36, 0x36, 0x36, 0xff, 0x53, 0x53, 0x53, 0xff, 0x59, 0x59, 0x59, 0xff, 0x4b, 0x4b, 0x4b, 0xff, 0x31, 0x31, 0x31, 0xff, 0x37, 0x37, 0x37, 0xff, 0x4b, 0x4b, 0x4b, 0xff, 0x4a, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0x4a, 0xff, 0x44, 0x44, 0x44, 0xff, 0x46, 0x46, 0x46, 0xff, 0x4c, 0x4c, 0x4c, 0xff, 0x46, 0x46, 0x46, 0xff, 0x44, 0x44, 0x44, 0xff, 0x4f, 0x4f, 0x4f, 0xff, 0x48, 0x48, 0x48, 0xff, 0x35, 0x35, 0x35, 0xff, 0x32, 0x32, 0x32, 0xff, 0x4d, 0x4d, 0x4d, 0xff, 0x5a, 0x5a, 0x5a, 0xff, 0x51, 0x51, 0x51, 0xff, 0x34, 0x34, 0x34, 0xff, 0x32, 0x32, 0x32, 0xff, 0x44, 0x44, 0x44, 0xff, 0x37, 0x37, 0x37, 0xff, 0x36, 0x36, 0x36, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x30, 0x30, 0x30, 0xff, 0x41, 0x41, 0x41, 0xff, 0x48, 0x48, 0x48, 0xff, 0x53, 0x53, 0x53, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x40, 0x40, 0x40, 0xff, 0x44, 0x44, 0x44, 0xff, + 0x43, 0x43, 0x43, 0xff, 0x35, 0x35, 0x35, 0xff, 0x49, 0x49, 0x49, 0xff, 0x37, 0x37, 0x37, 0xff, 0x34, 0x34, 0x34, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x38, 0x38, 0x38, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x30, 0x30, 0x30, 0xff, 0x43, 0x43, 0x43, 0xff, 0x48, 0x48, 0x48, 0xff, 0x41, 0x41, 0x41, 0xff, 0x31, 0x31, 0x31, 0xff, 0x36, 0x36, 0x36, 0xff, 0x5d, 0x5d, 0x5d, 0xff, 0x56, 0x56, 0x56, 0xff, 0x34, 0x34, 0x34, 0xff, 0x31, 0x31, 0x31, 0xff, 0x36, 0x36, 0x36, 0xff, 0x37, 0x37, 0x37, 0xff, 0x31, 0x31, 0x31, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x57, 0x57, 0x57, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x53, 0x53, 0x53, 0xff, 0x51, 0x51, 0x51, 0xff, 0x36, 0x36, 0x36, 0xff, 0x57, 0x57, 0x57, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x34, 0x34, 0x34, 0xff, 0x37, 0x37, 0x37, 0xff, 0x36, 0x36, 0x36, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x38, 0x38, 0x38, 0xff, 0x5a, 0x5a, 0x5a, 0xff, 0x5a, 0x5a, 0x5a, 0xff, 0x35, 0x35, 0x35, 0xff, 0x33, 0x33, 0x33, 0xff, 0x44, 0x44, 0x44, 0xff, 0x47, 0x47, 0x47, 0xff, 0x40, 0x40, 0x40, 0xff, 0x30, 0x30, 0x30, 0xff, 0x2f, 0x2f, 0x2f, 0xff, 0x38, 0x38, 0x38, 0xff, 0x3a, 0x3a, 0x3a, 0xff, 0x33, 0x33, 0x33, 0xff, 0x3b, 0x3b, 0x3b, 0xff, 0x4d, 0x4d, 0x4d, 0xff, 0x32, 0x32, 0x32, 0xff, 0x42, 0x42, 0x42, 0xff, + 0x41, 0x41, 0x41, 0xff, 0x34, 0x34, 0x34, 0xff, 0x32, 0x32, 0x32, 0xff, 0x46, 0x46, 0x46, 0xff, 0x4c, 0x4c, 0x4c, 0xff, 0x48, 0x48, 0x48, 0xff, 0x4c, 0x4c, 0x4c, 0xff, 0x51, 0x51, 0x51, 0xff, 0x40, 0x40, 0x40, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x34, 0x34, 0x34, 0xff, 0x5c, 0x5c, 0x5c, 0xff, 0x56, 0x56, 0x56, 0xff, 0x33, 0x33, 0x33, 0xff, 0x44, 0x44, 0x44, 0xff, 0x5a, 0x5a, 0x5a, 0xff, 0x58, 0x58, 0x58, 0xff, 0x54, 0x54, 0x54, 0xff, 0x57, 0x57, 0x57, 0xff, 0x49, 0x49, 0x49, 0xff, 0x33, 0x33, 0x33, 0xff, 0x32, 0x32, 0x32, 0xff, 0x33, 0x33, 0x33, 0xff, 0x30, 0x30, 0x30, 0xff, 0x34, 0x34, 0x34, 0xff, 0x38, 0x38, 0x38, 0xff, 0x4b, 0x4b, 0x4b, 0xff, 0x56, 0x56, 0x56, 0xff, 0x55, 0x55, 0x55, 0xff, 0x58, 0x58, 0x58, 0xff, 0x59, 0x59, 0x59, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x33, 0x33, 0x33, 0xff, 0x5b, 0x5b, 0x5b, 0xff, 0x56, 0x56, 0x56, 0xff, 0x33, 0x33, 0x33, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x41, 0x41, 0x41, 0xff, 0x51, 0x51, 0x51, 0xff, 0x4c, 0x4c, 0x4c, 0xff, 0x49, 0x49, 0x49, 0xff, 0x4d, 0x4d, 0x4d, 0xff, 0x40, 0x40, 0x40, 0xff, 0x33, 0x33, 0x33, 0xff, 0x34, 0x34, 0x34, 0xff, 0x41, 0x41, 0x41, 0xff, + 0x3e, 0x3e, 0x3e, 0xff, 0x45, 0x45, 0x45, 0xff, 0x45, 0x45, 0x45, 0xff, 0x3c, 0x3c, 0x3c, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x39, 0x39, 0x39, 0xff, 0x3f, 0x3f, 0x3f, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x56, 0x56, 0x56, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x2b, 0x2b, 0x2b, 0xff, 0x35, 0x35, 0x35, 0xff, 0x57, 0x57, 0x57, 0xff, 0x60, 0x60, 0x60, 0xff, 0x3e, 0x3e, 0x3e, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x60, 0x60, 0x60, 0xff, 0x39, 0x39, 0x39, 0xff, 0x47, 0x47, 0x47, 0xff, 0x40, 0x40, 0x40, 0xff, 0x2e, 0x2e, 0x2e, 0xff, 0x44, 0x44, 0x44, 0xff, 0x57, 0x57, 0x57, 0xff, 0x39, 0x39, 0x39, 0xff, 0x4a, 0x4a, 0x4a, 0xff, 0x53, 0x53, 0x53, 0xff, 0x31, 0x31, 0x31, 0xff, 0x54, 0x54, 0x54, 0xff, 0x42, 0x42, 0x42, 0xff, 0x2c, 0x2c, 0x2c, 0xff, 0x44, 0x44, 0x44, 0xff, 0x47, 0x47, 0x47, 0xff, 0x43, 0x43, 0x43, 0xff, 0x5e, 0x5e, 0x5e, 0xff, 0x33, 0x33, 0x33, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x63, 0x63, 0x63, 0xff, 0x51, 0x51, 0x51, 0xff, 0x31, 0x31, 0x31, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x3d, 0x3d, 0x3d, 0xff, 0x54, 0x54, 0x54, 0xff, 0x39, 0x39, 0x39, 0xff, 0x44, 0x44, 0x44, 0xff, 0x36, 0x36, 0x36, 0xff, 0x2d, 0x2d, 0x2d, 0xff, 0x45, 0x45, 0x45, 0xff, 0x42, 0x42, 0x42, 0xff, 0x40, 0x40, 0x40, 0xff, 0x40, 0x40, 0x40, 0xff, +#endif +}; + +lv_img_dsc_t benchmark_bg = { + .header.always_zero = 0, + .header.w = 50, + .header.h = 50, + .data_size = 2500 * LV_COLOR_SIZE / 8, + .header.cf = LV_IMG_CF_TRUE_COLOR, + .data = benchmark_bg_map, +}; + +#endif /*LV_USE_BENCHMARK*/ diff --git a/components/lv_examples/lv_examples/lv_apps/benchmark/benchmark_bg.png b/components/lv_examples/lv_examples/lv_apps/benchmark/benchmark_bg.png new file mode 100644 index 0000000..9cac7b1 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_apps/benchmark/benchmark_bg.png differ diff --git a/components/lv_examples/lv_examples/lv_apps/demo/bubble_pattern.png b/components/lv_examples/lv_examples/lv_apps/demo/bubble_pattern.png new file mode 100644 index 0000000..a2b88d0 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_apps/demo/bubble_pattern.png differ diff --git a/components/lv_examples/lv_examples/lv_apps/demo/demo.c b/components/lv_examples/lv_examples/lv_apps/demo/demo.c new file mode 100644 index 0000000..86eeb42 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_apps/demo/demo.c @@ -0,0 +1,451 @@ +/** + * @file demo.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "demo.h" +#if LV_USE_DEMO + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ +static void write_create(lv_obj_t * parent); +static void text_area_event_handler(lv_obj_t * text_area, lv_event_t event); +static void keyboard_event_cb(lv_obj_t * keyboard, lv_event_t event); +#if LV_USE_ANIMATION +static void kb_hide_anim_end(lv_anim_t * a); +#endif +static void list_create(lv_obj_t * parent); +static void chart_create(lv_obj_t * parent); +static void slider_event_handler(lv_obj_t * slider, lv_event_t event); +static void list_btn_event_handler(lv_obj_t * slider, lv_event_t event); +#if LV_DEMO_SLIDE_SHOW +static void tab_switcher(lv_task_t * task); +#endif + +/********************** + * STATIC VARIABLES + **********************/ +static lv_obj_t * chart; +static lv_obj_t * ta; +static lv_obj_t * kb; + +static lv_style_t style_kb; +static lv_style_t style_kb_rel; +static lv_style_t style_kb_pr; + +#if LV_DEMO_WALLPAPER +LV_IMG_DECLARE(img_bubble_pattern) +#endif + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create a demo application + */ +void demo_create(void) +{ + lv_coord_t hres = lv_disp_get_hor_res(NULL); + lv_coord_t vres = lv_disp_get_ver_res(NULL); + +#if LV_DEMO_WALLPAPER + lv_obj_t * wp = lv_img_create(lv_disp_get_scr_act(NULL), NULL); + lv_img_set_src(wp, &img_bubble_pattern); + lv_obj_set_width(wp, hres * 4); + lv_obj_set_protect(wp, LV_PROTECT_POS); +#endif + + static lv_style_t style_tv_btn_bg; + lv_style_copy(&style_tv_btn_bg, &lv_style_plain); + style_tv_btn_bg.body.main_color = lv_color_hex(0x487fb7); + style_tv_btn_bg.body.grad_color = lv_color_hex(0x487fb7); + style_tv_btn_bg.body.padding.top = 0; + style_tv_btn_bg.body.padding.bottom = 0; + + static lv_style_t style_tv_btn_rel; + lv_style_copy(&style_tv_btn_rel, &lv_style_btn_rel); + style_tv_btn_rel.body.opa = LV_OPA_TRANSP; + style_tv_btn_rel.body.border.width = 0; + + static lv_style_t style_tv_btn_pr; + lv_style_copy(&style_tv_btn_pr, &lv_style_btn_pr); + style_tv_btn_pr.body.radius = 0; + style_tv_btn_pr.body.opa = LV_OPA_50; + style_tv_btn_pr.body.main_color = LV_COLOR_WHITE; + style_tv_btn_pr.body.grad_color = LV_COLOR_WHITE; + style_tv_btn_pr.body.border.width = 0; + style_tv_btn_pr.text.color = LV_COLOR_GRAY; + + lv_obj_t * tv = lv_tabview_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_size(tv, hres, vres); + +#if LV_DEMO_WALLPAPER + lv_obj_set_parent(wp, ((lv_tabview_ext_t *) tv->ext_attr)->content); + lv_obj_set_pos(wp, 0, -5); +#endif + + lv_obj_t * tab1 = lv_tabview_add_tab(tv, "Write"); + lv_obj_t * tab2 = lv_tabview_add_tab(tv, "List"); + lv_obj_t * tab3 = lv_tabview_add_tab(tv, "Chart"); + +#if LV_DEMO_WALLPAPER == 0 + /*Blue bg instead of wallpaper*/ + lv_tabview_set_style(tv, LV_TABVIEW_STYLE_BG, &style_tv_btn_bg); +#endif + lv_tabview_set_style(tv, LV_TABVIEW_STYLE_BTN_BG, &style_tv_btn_bg); + lv_tabview_set_style(tv, LV_TABVIEW_STYLE_INDIC, &lv_style_plain); + lv_tabview_set_style(tv, LV_TABVIEW_STYLE_BTN_REL, &style_tv_btn_rel); + lv_tabview_set_style(tv, LV_TABVIEW_STYLE_BTN_PR, &style_tv_btn_pr); + lv_tabview_set_style(tv, LV_TABVIEW_STYLE_BTN_TGL_REL, &style_tv_btn_rel); + lv_tabview_set_style(tv, LV_TABVIEW_STYLE_BTN_TGL_PR, &style_tv_btn_pr); + + write_create(tab1); + list_create(tab2); + chart_create(tab3); + +#if LV_DEMO_SLIDE_SHOW + lv_task_create(tab_switcher, 3000, LV_TASK_PRIO_MID, tv); +#endif +} + + +/********************** + * STATIC FUNCTIONS + **********************/ + +static void write_create(lv_obj_t * parent) +{ + lv_page_set_style(parent, LV_PAGE_STYLE_BG, &lv_style_transp_fit); + lv_page_set_style(parent, LV_PAGE_STYLE_SCRL, &lv_style_transp_fit); + + lv_page_set_sb_mode(parent, LV_SB_MODE_OFF); + + static lv_style_t style_ta; + lv_style_copy(&style_ta, &lv_style_pretty); + style_ta.body.opa = LV_OPA_30; + style_ta.body.radius = 0; + style_ta.text.color = lv_color_hex3(0x222); + + ta = lv_ta_create(parent, NULL); + lv_obj_set_size(ta, lv_page_get_scrl_width(parent), lv_obj_get_height(parent) / 2); + lv_ta_set_style(ta, LV_TA_STYLE_BG, &style_ta); + lv_ta_set_text(ta, ""); + lv_obj_set_event_cb(ta, text_area_event_handler); + lv_style_copy(&style_kb, &lv_style_plain); + lv_ta_set_text_sel(ta, true); + + style_kb.body.opa = LV_OPA_70; + style_kb.body.main_color = lv_color_hex3(0x333); + style_kb.body.grad_color = lv_color_hex3(0x333); + style_kb.body.padding.left = 0; + style_kb.body.padding.right = 0; + style_kb.body.padding.top = 0; + style_kb.body.padding.bottom = 0; + style_kb.body.padding.inner = 0; + + lv_style_copy(&style_kb_rel, &lv_style_plain); + style_kb_rel.body.opa = LV_OPA_TRANSP; + style_kb_rel.body.radius = 0; + style_kb_rel.body.border.width = 1; + style_kb_rel.body.border.color = LV_COLOR_SILVER; + style_kb_rel.body.border.opa = LV_OPA_50; + style_kb_rel.body.main_color = lv_color_hex3(0x333); /*Recommended if LV_VDB_SIZE == 0 and bpp > 1 fonts are used*/ + style_kb_rel.body.grad_color = lv_color_hex3(0x333); + style_kb_rel.text.color = LV_COLOR_WHITE; + + lv_style_copy(&style_kb_pr, &lv_style_plain); + style_kb_pr.body.radius = 0; + style_kb_pr.body.opa = LV_OPA_50; + style_kb_pr.body.main_color = LV_COLOR_WHITE; + style_kb_pr.body.grad_color = LV_COLOR_WHITE; + style_kb_pr.body.border.width = 1; + style_kb_pr.body.border.color = LV_COLOR_SILVER; + +} + +static void text_area_event_handler(lv_obj_t * text_area, lv_event_t event) +{ + (void) text_area; /*Unused*/ + + /*Text area is on the scrollable part of the page but we need the page itself*/ + lv_obj_t * parent = lv_obj_get_parent(lv_obj_get_parent(ta)); + + if(event == LV_EVENT_CLICKED) { + if(kb == NULL) { + kb = lv_kb_create(parent, NULL); + lv_obj_set_size(kb, lv_obj_get_width_fit(parent), lv_obj_get_height_fit(parent) / 2); + lv_obj_align(kb, ta, LV_ALIGN_OUT_BOTTOM_MID, 0, 0); + lv_kb_set_ta(kb, ta); + lv_kb_set_style(kb, LV_KB_STYLE_BG, &style_kb); + lv_kb_set_style(kb, LV_KB_STYLE_BTN_REL, &style_kb_rel); + lv_kb_set_style(kb, LV_KB_STYLE_BTN_PR, &style_kb_pr); + lv_obj_set_event_cb(kb, keyboard_event_cb); + +#if LV_USE_ANIMATION + lv_anim_t a; + a.var = kb; + a.start = LV_VER_RES; + a.end = lv_obj_get_y(kb); + a.exec_cb = (lv_anim_exec_xcb_t)lv_obj_set_y; + a.path_cb = lv_anim_path_linear; + a.ready_cb = NULL; + a.act_time = 0; + a.time = 300; + a.playback = 0; + a.playback_pause = 0; + a.repeat = 0; + a.repeat_pause = 0; + lv_anim_create(&a); +#endif + } + } + +} + +/** + * Called when the close or ok button is pressed on the keyboard + * @param keyboard pointer to the keyboard + * @return + */ +static void keyboard_event_cb(lv_obj_t * keyboard, lv_event_t event) +{ + (void) keyboard; /*Unused*/ + + lv_kb_def_event_cb(kb, event); + + if(event == LV_EVENT_APPLY || event == LV_EVENT_CANCEL) { +#if LV_USE_ANIMATION + lv_anim_t a; + a.var = kb; + a.start = lv_obj_get_y(kb); + a.end = LV_VER_RES; + a.exec_cb = (lv_anim_exec_xcb_t)lv_obj_set_y; + a.path_cb = lv_anim_path_linear; + a.ready_cb = kb_hide_anim_end; + a.act_time = 0; + a.time = 300; + a.playback = 0; + a.playback_pause = 0; + a.repeat = 0; + a.repeat_pause = 0; + lv_anim_create(&a); +#else + lv_obj_del(kb); + kb = NULL; +#endif + } +} + +static void list_create(lv_obj_t * parent) +{ + lv_coord_t hres = lv_disp_get_hor_res(NULL); + + lv_page_set_style(parent, LV_PAGE_STYLE_BG, &lv_style_transp_fit); + lv_page_set_style(parent, LV_PAGE_STYLE_SCRL, &lv_style_transp_fit); + + lv_page_set_sb_mode(parent, LV_SB_MODE_OFF); + + /*Create styles for the buttons*/ + static lv_style_t style_btn_rel; + static lv_style_t style_btn_pr; + lv_style_copy(&style_btn_rel, &lv_style_btn_rel); + style_btn_rel.body.main_color = lv_color_hex3(0x333); + style_btn_rel.body.grad_color = LV_COLOR_BLACK; + style_btn_rel.body.border.color = LV_COLOR_SILVER; + style_btn_rel.body.border.width = 1; + style_btn_rel.body.border.opa = LV_OPA_50; + style_btn_rel.body.radius = 0; + + lv_style_copy(&style_btn_pr, &style_btn_rel); + style_btn_pr.body.main_color = lv_color_make(0x55, 0x96, 0xd8); + style_btn_pr.body.grad_color = lv_color_make(0x37, 0x62, 0x90); + style_btn_pr.text.color = lv_color_make(0xbb, 0xd5, 0xf1); + + lv_obj_t * list = lv_list_create(parent, NULL); + lv_obj_set_height(list, 2 * lv_obj_get_height(parent) / 3); + lv_list_set_style(list, LV_LIST_STYLE_BG, &lv_style_transp_tight); + lv_list_set_style(list, LV_LIST_STYLE_SCRL, &lv_style_transp_tight); + lv_list_set_style(list, LV_LIST_STYLE_BTN_REL, &style_btn_rel); + lv_list_set_style(list, LV_LIST_STYLE_BTN_PR, &style_btn_pr); + lv_obj_align(list, NULL, LV_ALIGN_IN_TOP_MID, 0, LV_DPI / 4); + + lv_obj_t * list_btn; + list_btn = lv_list_add_btn(list, LV_SYMBOL_FILE, "New"); + lv_obj_set_event_cb(list_btn, list_btn_event_handler); + + list_btn = lv_list_add_btn(list, LV_SYMBOL_DIRECTORY, "Open"); + lv_obj_set_event_cb(list_btn, list_btn_event_handler); + + list_btn = lv_list_add_btn(list, LV_SYMBOL_TRASH, "Delete"); + lv_obj_set_event_cb(list_btn, list_btn_event_handler); + + list_btn = lv_list_add_btn(list, LV_SYMBOL_EDIT, "Edit"); + lv_obj_set_event_cb(list_btn, list_btn_event_handler); + + list_btn = lv_list_add_btn(list, LV_SYMBOL_SAVE, "Save"); + lv_obj_set_event_cb(list_btn, list_btn_event_handler); + + list_btn = lv_list_add_btn(list, LV_SYMBOL_WIFI, "WiFi"); + lv_obj_set_event_cb(list_btn, list_btn_event_handler); + + list_btn = lv_list_add_btn(list, LV_SYMBOL_GPS, "GPS"); + lv_obj_set_event_cb(list_btn, list_btn_event_handler); + + lv_obj_t * mbox = lv_mbox_create(parent, NULL); + lv_mbox_set_text(mbox, "Click a button to copy its text to the Text area "); + lv_obj_set_width(mbox, hres - LV_DPI); + static const char * mbox_btns[] = {"Got it", ""}; + lv_mbox_add_btns(mbox, mbox_btns); /*The default action is close*/ + lv_obj_align(mbox, parent, LV_ALIGN_IN_TOP_MID, 0, LV_DPI / 2); +} + +#if LV_USE_ANIMATION +static void kb_hide_anim_end(lv_anim_t * a) +{ + lv_obj_del(a->var); + kb = NULL; +} +#endif + +static void chart_create(lv_obj_t * parent) +{ + + lv_coord_t vres = lv_disp_get_ver_res(NULL); + + lv_page_set_style(parent, LV_PAGE_STYLE_BG, &lv_style_transp_fit); + lv_page_set_style(parent, LV_PAGE_STYLE_SCRL, &lv_style_transp_fit); + + lv_page_set_scrl_height(parent, lv_obj_get_height(parent)); + lv_page_set_sb_mode(parent, LV_SB_MODE_OFF); + + static lv_style_t style_chart; + lv_style_copy(&style_chart, &lv_style_pretty); + style_chart.body.opa = LV_OPA_60; + style_chart.body.radius = 0; + style_chart.line.color = LV_COLOR_GRAY; + + chart = lv_chart_create(parent, NULL); + lv_obj_set_size(chart, 2 * lv_obj_get_width(parent) / 3, lv_obj_get_height(parent) / 2); + lv_obj_align(chart, NULL, LV_ALIGN_IN_TOP_MID, 0, LV_DPI / 4); + lv_chart_set_type(chart, LV_CHART_TYPE_COLUMN); + lv_chart_set_style(chart, LV_CHART_STYLE_MAIN, &style_chart); + lv_chart_set_series_opa(chart, LV_OPA_70); + lv_chart_series_t * ser1; + ser1 = lv_chart_add_series(chart, LV_COLOR_RED); + lv_chart_set_next(chart, ser1, 40); + lv_chart_set_next(chart, ser1, 30); + lv_chart_set_next(chart, ser1, 47); + lv_chart_set_next(chart, ser1, 59); + lv_chart_set_next(chart, ser1, 59); + lv_chart_set_next(chart, ser1, 31); + lv_chart_set_next(chart, ser1, 55); + lv_chart_set_next(chart, ser1, 70); + lv_chart_set_next(chart, ser1, 82); + lv_chart_set_next(chart, ser1, 91); + + /*Create a bar, an indicator and a knob style*/ + static lv_style_t style_bar; + static lv_style_t style_indic; + static lv_style_t style_knob; + + lv_style_copy(&style_bar, &lv_style_pretty); + style_bar.body.main_color = LV_COLOR_BLACK; + style_bar.body.grad_color = LV_COLOR_GRAY; + style_bar.body.radius = LV_RADIUS_CIRCLE; + style_bar.body.border.color = LV_COLOR_WHITE; + style_bar.body.opa = LV_OPA_60; + style_bar.body.padding.left = 0; + style_bar.body.padding.right = 0; + style_bar.body.padding.top = LV_DPI / 10; + style_bar.body.padding.bottom = LV_DPI / 10; + + lv_style_copy(&style_indic, &lv_style_pretty); + style_indic.body.grad_color = LV_COLOR_MAROON; + style_indic.body.main_color = LV_COLOR_RED; + style_indic.body.radius = LV_RADIUS_CIRCLE; + style_indic.body.shadow.width = LV_DPI / 10; + style_indic.body.shadow.color = LV_COLOR_RED; + style_indic.body.padding.left = LV_DPI / 30; + style_indic.body.padding.right = LV_DPI / 30; + style_indic.body.padding.top = LV_DPI / 30; + style_indic.body.padding.bottom = LV_DPI / 30; + + lv_style_copy(&style_knob, &lv_style_pretty); + style_knob.body.radius = LV_RADIUS_CIRCLE; + style_knob.body.opa = LV_OPA_70; + + /*Create a second slider*/ + lv_obj_t * slider = lv_slider_create(parent, NULL); + lv_slider_set_style(slider, LV_SLIDER_STYLE_BG, &style_bar); + lv_slider_set_style(slider, LV_SLIDER_STYLE_INDIC, &style_indic); + lv_slider_set_style(slider, LV_SLIDER_STYLE_KNOB, &style_knob); + lv_obj_set_size(slider, lv_obj_get_width(chart), LV_DPI / 3); + lv_obj_align(slider, chart, LV_ALIGN_OUT_BOTTOM_MID, 0, (vres - chart->coords.y2 - lv_obj_get_height(slider)) / 2); /*Align to below the chart*/ + lv_obj_set_event_cb(slider, slider_event_handler); + lv_slider_set_range(slider, 10, 1000); + lv_slider_set_value(slider, 700, false); + slider_event_handler(slider, LV_EVENT_VALUE_CHANGED); /*Simulate a user value set the refresh the chart*/ +} + +/** + * Called when a new value on the slider on the Chart tab is set + * @param slider pointer to the slider + * @return LV_RES_OK because the slider is not deleted in the function + */ +static void slider_event_handler(lv_obj_t * slider, lv_event_t event) +{ + + if(event == LV_EVENT_VALUE_CHANGED) { + int16_t v = lv_slider_get_value(slider); + v = 1000 * 100 / v; /*Convert to range modify values linearly*/ + lv_chart_set_range(chart, 0, v); + } +} + +/** + * Called when a a list button is clicked on the List tab + * @param btn pointer to a list button + * @return LV_RES_OK because the button is not deleted in the function + */ +static void list_btn_event_handler(lv_obj_t * btn, lv_event_t event) +{ + + if(event == LV_EVENT_SHORT_CLICKED) { + lv_ta_add_char(ta, '\n'); + lv_ta_add_text(ta, lv_list_get_btn_text(btn)); + } +} + +#if LV_DEMO_SLIDE_SHOW +/** + * Called periodically (lv_task) to switch to the next tab + */ +static void tab_switcher(lv_task_t * task) +{ + static uint8_t tab = 0; + lv_obj_t * tv = task->user_data; + tab++; + if(tab >= 3) tab = 0; + lv_tabview_set_tab_act(tv, tab, true); +} +#endif + + +#endif /*LV_USE_DEMO*/ diff --git a/components/lv_examples/lv_examples/lv_apps/demo/demo.h b/components/lv_examples/lv_examples/lv_apps/demo/demo.h new file mode 100644 index 0000000..400efa7 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_apps/demo/demo.h @@ -0,0 +1,54 @@ +/** + * @file demo.h + * + */ + +#ifndef DEMO_H +#define DEMO_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ + +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../lvgl/lvgl.h" +#include "../../../lv_ex_conf.h" +#endif + +#if LV_USE_DEMO + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create a demo application + */ +void demo_create(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_DEMO*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*DEMO_H*/ diff --git a/components/lv_examples/lv_examples/lv_apps/demo/demo.mk b/components/lv_examples/lv_examples/lv_apps/demo/demo.mk new file mode 100644 index 0000000..0ae872a --- /dev/null +++ b/components/lv_examples/lv_examples/lv_apps/demo/demo.mk @@ -0,0 +1,7 @@ +CSRCS += demo.c +CSRCS += img_bubble_pattern.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_apps/demo +VPATH += :$(LVGL_DIR)/lv_examples/lv_apps/demo + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_apps/demo" diff --git a/components/lv_examples/lv_examples/lv_apps/demo/img_bubble_pattern.c b/components/lv_examples/lv_examples/lv_apps/demo/img_bubble_pattern.c new file mode 100644 index 0000000..dc18e1c --- /dev/null +++ b/components/lv_examples/lv_examples/lv_apps/demo/img_bubble_pattern.c @@ -0,0 +1,1955 @@ +#include "lvgl/lvgl.h" +#include "lv_ex_conf.h" + +#if LV_DEMO_WALLPAPER && LV_USE_DEMO + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +const LV_ATTRIBUTE_MEM_ALIGN uint8_t img_bubble_pattern_map[] = { +#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8 + /*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 bit*/ + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x97, 0x97, 0x97, 0x9b, 0x97, 0x9b, 0x97, 0x9b, 0x77, 0x77, 0x73, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x97, 0x73, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0x9b, 0xbb, 0x97, 0x73, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0xbb, 0xbb, 0x97, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0xbb, 0x73, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x97, 0x73, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x97, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, + 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x97, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, + 0x4f, 0x4f, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x77, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, + 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, + 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, + 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x73, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, + 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, + 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, + 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, + 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, + 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x73, 0x77, 0x77, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, + 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x4e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, + 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, + 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x73, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, + 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x73, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, + 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x73, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0xbb, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x73, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, + 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0xbb, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x97, 0x97, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, + 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0xbb, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x97, 0x97, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, + 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x57, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x73, 0x77, 0x77, 0x77, 0x73, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x97, 0x97, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, + 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x57, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x77, 0x97, 0x97, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, + 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x53, 0x4e, 0x4f, 0x4f, 0x4e, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, + 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, + 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x53, 0x77, 0x77, 0x77, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x53, 0x73, 0x73, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0xbb, 0xbb, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x73, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x53, 0x73, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x73, 0x73, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x77, 0x73, 0x77, 0x77, 0x77, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x73, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0xbb, 0xbb, 0xdb, 0xbb, 0xbb, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0xdb, 0xbb, 0xbb, 0xdb, 0xbb, 0xbb, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x73, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0xbb, 0xdb, 0xdb, 0xbb, 0xbb, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x97, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x73, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x73, 0x73, 0x53, 0x53, 0x73, 0x73, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0xbb, 0xbb, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, + 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x2f, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, + 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x2f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, + 0x4e, 0x4e, 0x4e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x2f, 0x2f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, + 0x4e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x2f, 0x2f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, + 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x2f, 0x2f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x57, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0xbb, 0xdb, 0xbb, 0xbb, 0xbb, 0xbb, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xbb, 0xbb, 0xbb, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x57, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0xbb, 0xdb, 0xdb, 0xdb, 0xdb, 0xbb, 0xbb, 0xbb, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xbb, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x57, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0xbb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xbb, 0xbb, 0xbb, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xbb, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x57, 0x57, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0xbb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xbb, 0xbb, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0xbb, 0xdb, 0xdb, 0xbb, 0xbb, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x57, 0x57, 0x57, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0xbb, 0xdb, 0xdb, 0xdb, 0xbb, 0xbb, 0xbb, 0xbb, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, + 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0xbb, 0xbb, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x57, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, + 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x57, 0x57, 0x57, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, + 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x57, 0x57, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, + 0x4e, 0x4e, 0x2e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0xbb, 0xbb, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, + 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x77, 0x7b, 0x77, 0x77, 0x7b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x7b, 0x77, 0x77, 0x77, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, + 0x2e, 0x2a, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x57, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, + 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x73, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x57, 0x57, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x57, 0x53, 0x57, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x57, 0x57, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x57, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x53, 0x57, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x57, 0x57, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x4e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x53, 0x53, 0x53, 0x57, 0x57, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x77, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x53, 0x53, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, + 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, + 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, + 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0xbb, 0xdb, 0xdb, 0xdb, 0xdb, 0xbb, 0xbb, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0xbb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xbb, 0xbb, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x77, 0x77, 0x77, 0x7b, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x2e, 0x2e, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0xbb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xbb, 0xbb, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x9b, 0x9f, 0xbb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xbb, 0xbb, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x77, 0x7b, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x73, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x9b, 0xbb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xbb, 0xbb, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x73, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2e, 0x2e, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x9b, 0x9b, 0xbb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xbb, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x73, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x7b, 0x9b, 0xbb, 0xbb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xbb, 0xbb, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x77, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x7b, 0x9b, 0xbb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xbb, 0xbb, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4e, 0x2e, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x9b, 0x9f, 0xbb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdf, 0xdb, 0xbb, 0xbb, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4e, 0x2e, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x9b, 0x9b, 0xbb, 0xdf, 0xdf, 0xdb, 0xdb, 0xdf, 0xbb, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0x9f, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x9b, 0x9b, 0xbf, 0xbb, 0xbb, 0xbb, 0xbf, 0xbf, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0xbb, 0xbb, 0xdf, 0xdb, 0xbb, 0xbb, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x9b, 0x9b, 0x9f, 0x9b, 0xbb, 0x9b, 0x9b, 0x9f, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x7b, 0x9b, 0x9f, 0xbb, 0xdb, 0xdf, 0xdf, 0xbb, 0xbf, 0x9b, 0x9b, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x9b, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x77, 0x77, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0xdf, 0xbf, 0xbf, 0x9b, 0x9b, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x57, 0x53, 0x53, 0x53, 0x57, 0x57, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x77, 0x77, 0x9b, 0x9b, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x53, 0x53, 0x57, 0x53, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0x9b, 0x97, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x57, 0x57, 0x57, 0x53, 0x57, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x57, 0x77, 0x77, 0x57, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x57, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x57, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x77, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x77, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4f, 0x53, 0x53, 0x4f, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x77, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x7b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x57, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x77, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9b, 0x9b, 0x73, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xbb, 0x9b, 0x97, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x77, 0x77, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0xbf, 0xdb, 0xbb, 0x73, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x77, 0x77, 0x73, 0x77, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0xbb, 0x73, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x77, 0x77, 0x73, 0x77, 0x57, 0x53, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9f, 0xbb, 0x73, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x77, 0x53, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x25, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x53, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x73, 0x73, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x2a, 0x26, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x73, 0x73, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x73, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x4e, 0x2e, 0x4e, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4e, 0x4f, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, + 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x73, 0x73, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x53, 0x73, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, + 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x73, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, + 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x97, 0x97, 0x97, 0x77, 0x73, 0x73, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, + 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x97, 0x9b, 0x9b, 0x9b, 0x97, 0x77, 0x73, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, + 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x73, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4f, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x53, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x73, 0x73, 0x77, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x97, 0x77, 0x73, 0x53, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x2e, 0x2a, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x53, 0x4f, 0x4f, 0x4e, + 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x73, 0x73, 0x77, 0x97, 0x97, 0x97, 0x9b, 0x97, 0x97, 0x77, 0x73, 0x73, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x73, 0x73, 0x73, 0x73, 0x53, 0x73, 0x73, 0x73, 0x77, 0x97, 0x9b, 0x9f, 0xbf, 0x9b, 0x9b, 0x77, 0x73, 0x73, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x2e, 0x2a, 0x2e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4f, 0x4f, 0x4e, + 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x73, 0x73, 0x77, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x97, 0x97, 0x77, 0x73, 0x73, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4e, 0x2e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x97, 0x9b, 0xbf, 0xbf, 0xbf, 0x9b, 0x97, 0x77, 0x73, 0x53, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x2e, 0x2a, 0x2a, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, + 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x73, 0x73, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x97, 0x97, 0x77, 0x73, 0x73, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x97, 0x9b, 0xbf, 0xbf, 0xbf, 0xbf, 0x9b, 0x77, 0x73, 0x73, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2a, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, + 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x73, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x77, 0x77, 0x73, 0x73, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x73, 0x77, 0x77, 0x9b, 0x9f, 0xbf, 0xbf, 0xbf, 0x9b, 0x97, 0x77, 0x73, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x53, + 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x97, 0x9b, 0xbf, 0xbf, 0xbf, 0x9b, 0x9b, 0x77, 0x73, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, + 0x4e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x9b, 0x9b, 0xbf, 0xbf, 0x9b, 0x9b, 0x77, 0x73, 0x73, 0x53, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, + 0x4e, 0x4e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x53, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x73, 0x73, 0x77, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x73, 0x73, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, + 0x4e, 0x4e, 0x4e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4f, 0x4e, 0x4f, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x73, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0x9b, 0x97, 0x77, 0x73, 0x73, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, + 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x73, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x97, 0x97, 0x77, 0x77, 0x73, 0x73, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, + 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x73, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, + 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x73, 0x73, 0x53, 0x73, 0x53, 0x73, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x2e, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, + 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x53, 0x4f, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, + 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x77, 0x77, 0x77, 0x73, 0x73, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, + 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4f, 0x4e, 0x4f, 0x4f, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, + 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x73, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, + 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x73, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, + 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, + 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x53, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, + 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x73, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4f, 0x4e, 0x4f, 0x4e, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x53, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x73, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4f, 0x4e, 0x2e, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x73, 0x53, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4f, 0x4e, 0x4e, 0x4f, 0x4e, 0x2a, 0x2a, 0x2e, 0x2e, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4f, 0x4e, 0x2e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x53, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x73, 0x4f, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4f, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x2e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, + 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x73, 0x73, 0x77, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, + 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x4e, 0x53, 0x4f, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x53, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, + 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, + 0x4e, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, + 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, + 0x4f, 0x4f, 0x53, 0x73, 0x4f, 0x4f, 0x53, 0x73, 0x73, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x77, 0x77, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x97, 0x97, 0x77, 0x77, 0x77, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, + 0x4f, 0x4f, 0x53, 0x73, 0x4e, 0x4f, 0x73, 0x73, 0x77, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x97, 0x97, 0x77, 0x73, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x77, 0x77, 0x97, 0x9b, 0x9f, 0xbf, 0xbf, 0x9b, 0x9b, 0x97, 0x97, 0x77, 0x77, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, + 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x53, 0x73, 0x73, 0x77, 0x97, 0x9b, 0x9b, 0xbf, 0xbf, 0xbf, 0x9b, 0x9b, 0x97, 0x77, 0x73, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x77, 0x77, 0x9b, 0x9b, 0xbf, 0xbf, 0xbf, 0xbf, 0xbb, 0x9b, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, + 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x73, 0x73, 0x77, 0x97, 0x9b, 0xbb, 0xbf, 0xbf, 0xbf, 0xbf, 0x9b, 0x97, 0x77, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x73, 0x73, 0x77, 0x97, 0x9b, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9b, 0x97, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x77, 0x73, 0x73, 0x73, 0x73, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, + 0x4f, 0x4f, 0x53, 0x4e, 0x4e, 0x4f, 0x53, 0x73, 0x77, 0x97, 0x9b, 0xbb, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9b, 0x97, 0x77, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x73, 0x77, 0x9b, 0x9b, 0xbf, 0xbf, 0xdf, 0xdf, 0xdf, 0xbf, 0xbf, 0x9b, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, + 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x53, 0x73, 0x73, 0x77, 0x97, 0x9b, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9b, 0x97, 0x73, 0x73, 0x53, 0x53, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x77, 0x77, 0x9b, 0x9f, 0xbf, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xbf, 0x9b, 0x97, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, + 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x73, 0x77, 0x97, 0x9b, 0x9b, 0xbf, 0xbf, 0xbf, 0x9b, 0x97, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x77, 0x77, 0x9b, 0x9b, 0xbf, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xbf, 0xbb, 0x9b, 0x97, 0x77, 0x77, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, + 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x73, 0x73, 0x77, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x97, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x73, 0x77, 0x9b, 0x9b, 0xbf, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xbf, 0xbf, 0x9b, 0x97, 0x77, 0x77, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, + 0x4f, 0x4f, 0x4f, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x73, 0x73, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x77, 0x77, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x73, 0x77, 0x97, 0x9b, 0xbf, 0xbf, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xbf, 0x9b, 0x97, 0x77, 0x77, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, + 0x4f, 0x4f, 0x4f, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x25, 0x25, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x73, 0x73, 0x77, 0x77, 0x9b, 0x9f, 0xbf, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xbf, 0x9b, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, + 0x4f, 0x4f, 0x4f, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x25, 0x25, 0x25, 0x25, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x9b, 0x9f, 0xbf, 0xbf, 0xdf, 0xdf, 0xdf, 0xbf, 0xbf, 0x9b, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x4f, 0x4e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, + 0x53, 0x53, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x77, 0x77, 0x97, 0x9b, 0xbf, 0xbf, 0xdf, 0xdf, 0xbf, 0xbf, 0xbf, 0x9b, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, + 0x53, 0x53, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x9b, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9b, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, + 0x53, 0x53, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0xbf, 0x9f, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, + 0x73, 0x73, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2a, 0x2a, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, + 0x73, 0x73, 0x73, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2a, 0x2a, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, + 0x73, 0x73, 0x73, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x26, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, + 0x53, 0x73, 0x73, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4e, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x26, 0x26, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x26, 0x26, 0x26, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x4f, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, + 0x4f, 0x4f, 0x4f, 0x4f, 0x2e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x2e, 0x4e, 0x2e, 0x4e, 0x4e, 0x2a, 0x26, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x25, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, + 0x4f, 0x4f, 0x4f, 0x4f, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x25, 0x26, 0x26, 0x25, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, + 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2a, 0x0a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, + 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x0a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, + 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x2a, 0x0a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, + 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0x97, 0x97, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x53, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, + 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2f, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, + 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0xbf, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, + 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, + 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2e, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x77, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0xbb, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9b, 0x9b, 0x9b, 0x97, 0x77, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, + 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x77, 0x77, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0xbf, 0xdf, 0xdf, 0xff, 0xff, 0xff, 0xdf, 0xdf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9b, 0x9b, 0x9b, 0x77, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, + 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x77, 0x77, 0x77, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0x9b, 0xbf, 0xdf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xdf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9b, 0x97, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, + 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2f, 0x2e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x77, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0xbf, 0xbf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xdf, 0xbf, 0xbf, 0xbf, 0x9b, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, + 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2a, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x73, 0x77, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x9f, 0xbf, 0xbf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xdf, 0xbf, 0xbb, 0x9b, 0x97, 0x97, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2f, 0x2f, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, + 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xdf, 0xdf, 0xbf, 0x9b, 0x9b, 0x97, 0x97, 0x97, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2f, 0x2e, 0x2f, 0x2f, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, + 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xbf, 0x9b, 0x9b, 0x9b, 0x97, 0x97, 0x97, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, + 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9b, 0x9b, 0x9b, 0x97, 0x97, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2e, 0x2e, 0x2e, 0x2e, 0x2f, 0x2f, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, + 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x97, 0x97, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2e, 0x2f, 0x2f, 0x2e, 0x2f, 0x2e, 0x2f, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, + 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x4f, 0x2f, 0x4f, 0x4f, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, + 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, + 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2f, 0x2f, 0x2f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, + 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x53, 0x53, 0x53, 0x73, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, + 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x53, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, + 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x77, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9b, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, + 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x52, 0x9f, 0x9f, 0xbf, 0xbf, 0xdf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xdf, 0xbf, 0xbf, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x73, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, + 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x9b, 0x9f, 0xbf, 0xbf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xdf, 0xbf, 0x9f, 0x9b, 0x97, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x4e, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x73, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2a, 0x4e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4e, 0x4e, + 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x53, 0x9f, 0xbf, 0xbf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xbf, 0xbf, 0x9b, 0x97, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x4e, 0x4f, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x97, 0x97, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, + 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x77, 0x9f, 0x9f, 0xbf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xbf, 0x9f, 0x9b, 0x97, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x4f, 0x4f, 0x4e, + 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xdf, 0xbf, 0x9f, 0x9b, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x4e, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x97, 0x97, 0x9b, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, + 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x77, 0x7b, 0x9b, 0x9f, 0x9f, 0xbf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xdf, 0xbf, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x97, 0x9b, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, + 0x53, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x53, 0x77, 0x77, 0x7b, 0x9b, 0x9f, 0xbf, 0xbf, 0xdf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xbf, 0xbf, 0x9f, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x97, 0x9b, 0x9b, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9f, 0x9f, 0xbf, 0xbf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xbf, 0xbf, 0xbf, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x97, 0x9b, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9b, 0x97, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0xdf, 0xdf, 0xff, 0xff, 0xff, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x73, 0x73, 0x53, 0x4f, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x97, 0x97, 0x97, 0x97, 0x97, 0x9b, 0xbb, 0xbb, 0x9b, 0x9b, 0x97, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x4f, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x9b, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0xdf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x73, 0x73, 0x73, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0xbb, 0x9b, 0x97, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2a, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x97, 0x9b, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x77, 0x77, 0x77, 0x73, 0x53, 0x73, 0x73, 0x73, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0xbb, 0x97, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x97, 0x9b, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x77, 0x77, 0x77, 0x53, 0x53, 0x73, 0x73, 0x73, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x53, 0x77, 0x73, 0x73, 0x73, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0xbb, 0xbb, 0x77, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0x9f, 0x9f, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, + 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x77, 0x73, 0x53, 0x73, 0x73, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x53, 0x77, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x73, 0x73, 0x73, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x97, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x53, + 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x9b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x97, 0x97, 0x9b, 0x97, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x77, 0x73, 0x73, 0x73, 0x53, 0x4e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x73, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x77, 0x77, 0x73, 0x73, 0x73, 0x77, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x97, 0x97, 0x97, 0x77, 0x73, 0x4f, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x97, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x97, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x97, 0x9b, 0x97, 0x9b, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x77, 0x73, 0x4f, 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x73, 0x77, 0x73, 0x73, 0x77, 0x97, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x97, 0x73, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x4f, 0x4f, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x9b, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x97, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4f, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x73, 0x77, 0x73, 0x77, 0x77, 0x97, 0x9b, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x97, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0x9f, 0x9b, 0x77, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x53, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x7b, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x73, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x53, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x9b, 0x9b, 0xbf, 0xbf, 0xbf, 0xbf, 0x9b, 0x73, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x4f, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x77, 0x77, 0x77, 0x77, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x4e, 0x73, 0x77, 0x77, 0x77, 0x7b, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0xbf, 0xbf, 0xbf, 0x73, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x73, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2e, 0x4e, 0x2e, 0x53, 0x77, 0x97, 0x77, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x9b, 0x9b, 0xbf, 0xbf, 0x77, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x73, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x2e, 0x4e, 0x73, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x97, 0x9b, 0x9f, 0xbb, 0x73, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x73, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x4f, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x97, 0x9b, 0x9b, 0x77, 0x4f, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x53, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x97, 0x9b, 0x73, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x4e, 0x73, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x4e, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x73, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2a, 0x53, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x53, 0x53, 0x53, 0x53, 0x57, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x73, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x73, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x4f, 0x53, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x53, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2e, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2e, 0x4f, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x53, 0x73, 0x73, 0x73, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x77, 0x73, 0x77, 0x73, 0x77, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0x9b, 0x77, 0x97, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x73, 0x73, 0x73, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x73, 0x73, 0x73, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x2f, 0x2f, 0x2f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x4f, 0x73, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x97, 0x97, 0x97, 0x77, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x2f, 0x2f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4f, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, + 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x73, 0x73, 0x77, 0x77, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9b, 0x77, 0x4e, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x2f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, + 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x4e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0xbf, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xbf, 0xbb, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, + 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x73, 0x4e, 0x4e, 0x4e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0xdf, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xbb, 0x73, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x2e, 0x2e, 0x2a, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, + 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0xbf, 0xdf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xdf, 0x93, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x77, 0x77, 0x77, 0x53, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, + 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x2e, 0x4e, 0x4e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0xbf, 0xdf, 0xdf, 0xff, 0xff, 0xff, 0xdb, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, + 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0xbf, 0xdf, 0xdf, 0xff, 0xff, 0xb7, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x73, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, + 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0xbf, 0xbf, 0xbf, 0xbf, 0xdf, 0xdf, 0x97, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, + 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0x73, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, + 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0x73, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2f, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, + 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4f, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x2f, 0x2f, 0x2f, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x0a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, + 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x73, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2f, 0x2f, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, + 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2e, 0x2e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x73, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, + 0x2e, 0x2e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x77, 0x77, 0x77, 0x77, 0x97, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2e, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, + 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0x9b, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, + 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x7b, 0x77, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x4f, 0x73, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x53, 0x53, 0x73, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x77, 0x57, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x53, 0x73, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x9b, 0x9b, 0x73, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0x9f, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x53, 0x73, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x4f, 0x4e, 0x2e, 0x4e, 0x73, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x2f, 0x4f, 0x4f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x2f, 0x2f, 0x2f, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x53, 0x77, 0x73, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x97, 0x77, 0x73, 0x73, 0x73, 0x73, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9f, 0xbf, 0xbf, 0xdf, 0xdf, 0xdf, 0xbf, 0x9f, 0x9f, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2e, 0x2e, 0x2e, 0x53, 0x77, 0x77, 0x73, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9f, 0xbf, 0xbf, 0xdf, 0xdf, 0xdf, 0xdf, 0xbf, 0x9f, 0x9f, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x2f, 0x2f, 0x2f, 0x2e, 0x2e, 0x4f, 0x73, 0x77, 0x73, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9f, 0xbf, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9f, 0xbf, 0xbf, 0xdf, 0xdf, 0xdf, 0xdf, 0xbf, 0x9f, 0x9f, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x57, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x2f, 0x4f, 0x2e, 0x53, 0x77, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x9b, 0xbf, 0xbf, 0xbb, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x73, 0x2e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9f, 0xbf, 0xbf, 0xdf, 0xdf, 0xff, 0xdf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x57, 0x57, 0x57, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x2e, 0x4f, 0x53, 0x77, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0xbf, 0xbf, 0xbb, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x73, 0x77, 0x73, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x6e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9f, 0x9f, 0xbf, 0xbf, 0xdf, 0xdf, 0xdf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x2e, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9f, 0xbf, 0xbf, 0xbb, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x6e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0xdf, 0xdf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9f, 0xbf, 0xbb, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x06, 0x2a, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x2a, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x6e, 0x6e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0xbf, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x4f, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x6e, 0x6e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x2a, 0x26, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x9b, 0x9b, 0x9f, 0x9b, 0x9b, 0x9f, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x77, 0x77, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0xbb, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9f, 0x9b, 0x7b, 0x7b, 0x7b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x77, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x2a, 0x26, 0x26, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x77, 0x77, 0x77, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0xbb, 0xbf, 0xbf, 0x9f, 0x9f, 0x9f, 0x9f, 0x9b, 0x7b, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x9f, 0x9f, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x73, 0x97, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x77, 0x77, 0x73, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0xbf, 0x9f, 0x9f, 0x9f, 0x9f, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9f, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x7b, 0x7b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9b, 0x7b, 0x77, 0x7b, 0x7b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x97, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x77, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x06, 0x06, 0x26, 0x06, 0x06, 0x06, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0x9f, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x57, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0xdf, 0xdf, 0xdf, 0xdf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x9b, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x2a, 0x26, 0x2a, 0x26, 0x26, 0x06, 0x26, 0x06, 0x06, 0x26, 0x06, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x77, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x7b, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x9b, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0xdf, 0xdf, 0xff, 0xdf, 0xdf, 0xdf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x77, 0x73, 0x53, 0x77, 0x97, 0x9b, 0x7b, 0x77, 0x77, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x73, 0x73, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x06, 0x06, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0x9f, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0xdf, 0xdf, 0xff, 0xff, 0xdf, 0xdf, 0xdf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x53, 0x73, 0x77, 0x77, 0x73, 0x53, 0x77, 0x77, 0x97, 0x77, 0x9b, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x97, 0x77, 0x9b, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9b, 0x97, 0x77, 0x77, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x06, 0x06, 0x26, 0x26, 0x26, 0x26, 0x06, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x2e, 0x53, 0x77, 0x73, 0x77, 0x77, 0x77, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x9f, 0x9f, 0x9b, 0x9b, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0x9b, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0xdf, 0xff, 0xff, 0xdf, 0xdf, 0xbf, 0xbf, 0xbf, 0x9b, 0x9b, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x06, 0x26, 0x26, 0x06, 0x26, 0x06, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x2e, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x77, 0x77, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xdf, 0xbf, 0xbf, 0x9b, 0x97, 0x77, 0x73, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x06, 0x06, 0x26, 0x06, 0x06, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x77, 0x77, 0x77, 0x97, 0x77, 0x77, 0x77, 0x77, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x77, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x77, 0x73, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x97, 0x77, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0xbf, 0xbf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xbf, 0x9b, 0x9b, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x73, 0x77, 0x77, 0x97, 0x97, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0xbf, 0xbf, 0xbf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xbf, 0xbf, 0x9b, 0x9b, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x26, 0x26, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x73, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x77, 0x77, 0x77, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0xbf, 0xbf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xbf, 0xbf, 0x9b, 0x97, 0x77, 0x73, 0x73, 0x73, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x53, 0x73, 0x73, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x73, 0x73, 0x53, 0x73, 0x73, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0xbf, 0xbf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xbf, 0x9f, 0x9b, 0x97, 0x77, 0x73, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4f, 0x53, 0x53, 0x73, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x73, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x77, 0x7b, 0x77, 0x9b, 0x9b, 0x9b, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0xbf, 0xbf, 0xdf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xbf, 0xbf, 0x9b, 0x9b, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4f, 0x4f, 0x53, 0x73, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x73, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0xbf, 0xbf, 0xbf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xbf, 0xbf, 0x9f, 0x9b, 0x97, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4f, 0x4f, 0x53, 0x73, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0xdf, 0xdf, 0xff, 0xdf, 0xdf, 0xbf, 0xbf, 0x9f, 0x9b, 0x97, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x53, 0x73, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x97, 0x97, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0xdf, 0xdf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9b, 0x9b, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x77, 0x77, 0x73, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9b, 0x97, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x77, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4f, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9f, 0x9f, 0xbf, 0xbf, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x97, 0x77, 0x73, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2f, 0x2f, 0x4f, 0x53, 0x53, 0x4f, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x77, 0x77, 0x77, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9f, 0x9f, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x77, 0x73, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x4f, 0x2e, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x77, 0x77, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x2f, 0x2f, 0x2e, 0x2f, 0x2f, 0x2f, 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x77, 0x77, 0x77, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x7b, 0x9b, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x73, 0x73, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x77, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x33, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xdf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x77, 0x7b, 0x97, 0x97, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xdf, 0xdf, 0xdf, 0xdf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x33, 0x33, 0x33, 0x33, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x9b, 0x9f, 0x9f, 0xbf, 0xbf, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x97, 0x77, 0x9b, 0x97, 0x97, 0x97, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0xdf, 0xdf, 0xff, 0xff, 0xff, 0xdf, 0xdf, 0xdf, 0xbf, 0xbf, 0x9f, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x33, 0x33, 0x33, 0x33, 0x2f, 0x2f, 0x2f, 0x2f, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x9b, 0x9f, 0x9f, 0xbf, 0xbf, 0xdf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xdf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x26, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0xbf, 0xdf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xdf, 0xbf, 0x9f, 0x9b, 0x7b, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x2f, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0xbf, 0xdf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xdf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x97, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x26, 0x26, 0x06, 0x06, 0x06, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0x9f, 0xbf, 0xbf, 0xdf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xbf, 0x9f, 0x9b, 0x7b, 0x7b, 0x57, 0x57, 0x53, 0x53, 0x53, 0x53, 0x33, 0x33, 0x33, 0x33, 0x33, 0x2f, 0x2e, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9f, 0x9f, 0xbf, 0xbf, 0xdf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xdf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, + 0x06, 0x06, 0x2a, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0xbf, 0xbf, 0xdf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0x9f, 0x9f, 0x7b, 0x7b, 0x57, 0x57, 0x57, 0x53, 0x53, 0x53, 0x53, 0x33, 0x53, 0x33, 0x33, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9f, 0xbf, 0xbf, 0xdf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xdf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x06, 0x06, 0x06, + 0x2a, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0xbf, 0xbf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xbf, 0x9f, 0x9f, 0x7b, 0x7b, 0x77, 0x57, 0x57, 0x57, 0x53, 0x53, 0x53, 0x53, 0x53, 0x33, 0x2f, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xdf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x06, 0x26, 0x26, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0xbf, 0xbf, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xbf, 0x9f, 0x7f, 0x7f, 0x7b, 0x7b, 0x57, 0x57, 0x57, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x9f, 0x9f, 0xbf, 0xbf, 0xdf, 0xdf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xdf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbb, 0xbb, 0xbb, 0xbb, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x7f, 0x7b, 0x7b, 0x77, 0x77, 0x57, 0x57, 0x57, 0x57, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x9f, 0x9f, 0xbf, 0xbf, 0xdf, 0xdf, 0xdf, 0xff, 0xff, 0xff, 0xdf, 0xdf, 0xdf, 0xdf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbb, 0xbb, 0xbb, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x7f, 0x7b, 0x7b, 0x7b, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9f, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbb, 0xbb, 0xbb, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0xbf, 0x9f, 0x9b, 0x9b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x9b, 0x9b, 0x7b, 0x7b, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbb, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9b, 0x9b, 0x9f, 0x9f, 0x7b, 0x7b, 0x7b, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0x9b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbb, 0xbb, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x4e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x9b, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x9b, 0x9f, 0x9b, 0x9b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x77, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9f, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbb, 0xbb, 0xbb, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9f, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9f, 0xbf, 0xbf, 0x9f, 0x9f, 0xbf, 0xbb, 0xbb, 0xbb, 0xbb, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9b, 0x9b, 0x7b, 0x7b, 0x7b, 0x77, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x57, 0x77, 0x77, 0x7b, 0x9b, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0xbb, 0xbb, 0xbb, 0xbf, 0xbf, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0x9b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x57, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0x9f, 0x9b, 0x9b, 0x7b, 0x7b, 0x7b, 0x77, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0x9b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x57, 0x57, 0x77, 0x7b, 0x7b, 0x7b, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x53, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2e, 0x4e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0x9f, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x57, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x9f, 0x9b, 0x7b, 0x7f, 0x7f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x9b, 0x77, 0x7b, 0x7b, 0x53, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2e, 0x4e, 0x4e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x26, 0x2a, 0x26, 0x2a, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0x9f, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x57, 0x57, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7f, 0x9f, 0x9f, 0x9b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x7b, 0x53, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0x9b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x57, 0x37, 0x57, 0x57, 0x2e, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x57, 0x57, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7f, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x53, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, + 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0x9b, 0x7b, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x37, 0x57, 0x57, 0x53, 0x4f, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x9b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x53, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, + 0x06, 0x26, 0x06, 0x06, 0x06, 0x26, 0x06, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0xbf, 0xbf, 0x9f, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x37, 0x57, 0x37, 0x57, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x53, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, + 0x06, 0x06, 0x06, 0x06, 0x06, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x57, 0x37, 0x57, 0x57, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x06, 0x06, 0x26, 0x06, + 0x06, 0x06, 0x06, 0x06, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x37, 0x57, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x33, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x06, 0x06, 0x06, 0x06, + 0x06, 0x06, 0x06, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x33, 0x33, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x57, 0x57, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x06, 0x26, 0x26, 0x26, 0x06, 0x06, 0x06, 0x06, 0x06, + 0x06, 0x06, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x57, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x33, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x57, 0x57, 0x57, 0x57, 0x77, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, + 0x06, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2f, 0x2f, 0x2f, 0x4f, 0x2f, 0x2f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x57, 0x57, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0xbf, 0x9f, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x77, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x2e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x06, 0x05, 0x05, 0x05, 0x06, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9f, 0x9f, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x77, 0x77, 0x73, 0x77, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x2a, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2a, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x06, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x7b, 0x9b, 0x9f, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x77, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x77, 0x77, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x2e, 0x4e, 0x2a, 0x2e, 0x2a, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x77, 0x77, 0x9b, 0x9b, 0xbf, 0xbf, 0xbf, 0xdf, 0xdf, 0xdf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x77, 0x77, 0x9b, 0x9b, 0xbf, 0xbf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xdf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x77, 0x77, 0x9b, 0x9b, 0xbf, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xdf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x77, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x2a, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x05, 0x06, 0x06, 0x06, 0x06, 0x06, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x9b, 0xbf, 0xbf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x7b, 0x73, 0x77, 0x73, 0x73, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x05, 0x05, 0x05, 0x06, 0x06, 0x06, 0x06, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x77, 0x77, 0x9b, 0x9f, 0xbf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9f, 0x7b, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x7b, 0x73, 0x77, 0x77, 0x77, 0x73, 0x53, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x06, 0x26, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x06, 0x05, 0x05, 0x06, 0x06, 0x06, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x77, 0x77, 0x9f, 0xbf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xdf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9b, 0x7b, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x9b, 0x7b, 0x73, 0x77, 0x77, 0x77, 0x73, 0x53, 0x77, 0x77, 0x77, 0x73, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x06, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x77, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x06, 0x26, 0x26, 0x26, 0x2a, 0x26, 0x05, 0x05, 0x06, 0x06, 0x06, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x77, 0x77, 0x9b, 0x9f, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9b, 0x7b, 0x77, 0x77, 0x7b, 0x7b, 0x77, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x05, 0x26, 0x2a, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x73, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x26, 0x26, 0x26, 0x2a, 0x05, 0x05, 0x06, 0x06, 0x06, 0x0a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x77, 0x77, 0x9b, 0xbf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9b, 0x9b, 0x77, 0x77, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x05, 0x26, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x06, 0x26, 0x26, 0x06, 0x06, 0x05, 0x05, 0x06, 0x06, 0x06, 0x26, 0x2a, 0x05, 0x05, 0x06, 0x06, 0x06, 0x06, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x77, 0x77, 0x9b, 0x9f, 0xbf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x53, 0x77, 0x77, 0x77, 0x57, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x05, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x77, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x26, 0x2a, 0x06, 0x05, 0x06, 0x06, 0x06, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x77, 0x77, 0x9b, 0x9f, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x57, 0x77, 0x77, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x06, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9b, 0x97, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x06, 0x26, 0x06, 0x26, 0x06, 0x26, 0x26, 0x26, 0x06, 0x26, 0x26, 0x06, 0x06, 0x2a, 0x06, 0x05, 0x06, 0x06, 0x06, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x9b, 0xbf, 0xbf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x57, 0x57, 0x77, 0x57, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x06, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x73, 0x77, 0x9b, 0x9b, 0xbf, 0xbf, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xbf, 0xbf, 0x9b, 0x97, 0x77, 0x77, 0x73, 0x73, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x06, 0x06, 0x06, 0x06, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x9b, 0x9f, 0xbf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x77, 0x57, 0x57, 0x57, 0x57, 0x57, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x06, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x77, 0x77, 0x9b, 0x9f, 0xbf, 0xdf, 0xdf, 0xff, 0xff, 0xff, 0xdf, 0xbf, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x26, 0x26, 0x26, 0x26, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x26, 0x26, 0x2a, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x06, 0x06, 0x06, 0x06, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x9b, 0x9f, 0xbf, 0xbf, 0xdf, 0xdf, 0xdf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x53, 0x57, 0x57, 0x77, 0x73, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x53, 0x53, 0x77, 0x77, 0x9b, 0x9f, 0xbf, 0xbf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xbf, 0x9b, 0x9b, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x26, 0x26, 0x26, 0x06, 0x06, 0x06, 0x06, 0x05, 0x06, 0x06, 0x26, 0x06, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x06, 0x06, 0x0a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x7b, 0x9b, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x57, 0x57, 0x57, 0x57, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2f, 0x4f, 0x53, 0x53, 0x77, 0x77, 0x9b, 0x9f, 0xbf, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xbf, 0xbf, 0x9b, 0x97, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x26, 0x26, 0x26, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x06, 0x0a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x9b, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x77, 0x7b, 0x77, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x77, 0x77, 0x57, 0x57, 0x77, 0x57, 0x77, 0x77, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2f, 0x4f, 0x53, 0x53, 0x73, 0x77, 0x9b, 0x9f, 0xbf, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xbf, 0xbf, 0x9b, 0x97, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x4f, 0x53, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x26, 0x06, 0x06, 0x06, 0x06, 0x05, 0x05, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x7b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x53, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4f, 0x53, 0x53, 0x73, 0x77, 0x9b, 0xbf, 0xbf, 0xbf, 0xdf, 0xdf, 0xbf, 0xbf, 0x9b, 0x9b, 0x97, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x26, 0x06, 0x06, 0x06, 0x06, 0x05, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x26, 0x06, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x77, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4f, 0x4f, 0x53, 0x73, 0x77, 0x9b, 0x9b, 0xbf, 0xbf, 0xbf, 0xbf, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, + 0x06, 0x06, 0x06, 0x05, 0x05, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x06, 0x06, 0x06, 0x06, 0x06, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4f, 0x4f, 0x53, 0x73, 0x77, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x97, 0x97, 0x77, 0x77, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, + 0x26, 0x26, 0x06, 0x05, 0x06, 0x06, 0x06, 0x06, 0x06, 0x05, 0x05, 0x05, 0x06, 0x06, 0x06, 0x06, 0x06, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x0a, 0x06, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2f, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x97, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, + 0x06, 0x05, 0x05, 0x26, 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x06, 0x06, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x2a, 0x2a, 0x06, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x06, 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, + 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x06, 0x06, 0x26, 0x2a, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x06, + 0x06, 0x05, 0x06, 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x26, 0x06, 0x06, 0x26, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x4e, 0x4f, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x06, 0x06, + 0x06, 0x05, 0x05, 0x05, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x05, 0x05, 0x05, 0x06, 0x06, 0x06, 0x06, 0x06, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x7b, 0x7b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x06, 0x06, 0x06, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x06, 0x06, + 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x06, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x06, 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x06, 0x06, 0x26, 0x2a, 0x2a, 0x2a, 0x4e, 0x4f, 0x4f, 0x4e, 0x2e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x06, 0x06, 0x06, + 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x06, 0x06, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x06, 0x0a, 0x0a, 0x2a, 0x2e, 0x4f, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x06, 0x06, 0x06, 0x06, 0x26, 0x06, 0x06, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x06, 0x06, + 0x06, 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2f, 0x2f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9f, 0x9b, 0x9b, 0x9b, 0x97, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x06, 0x06, 0x2a, 0x2e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x06, 0x26, 0x26, 0x06, 0x06, 0x06, 0x06, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x06, 0x26, + 0x06, 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x06, 0x06, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x2a, 0x2e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x06, 0x06, 0x26, 0x26, 0x26, 0x06, 0x06, 0x26, 0x06, 0x06, 0x06, 0x06, 0x06, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x06, + 0x26, 0x06, 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x26, 0x06, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x9b, 0x9b, 0x9b, 0x9b, 0x77, 0x73, 0x73, 0x73, 0x4f, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x2a, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x06, 0x06, 0x06, 0x26, 0x26, 0x26, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x05, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, + 0x26, 0x26, 0x06, 0x06, 0x06, 0x05, 0x05, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x26, 0x06, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0xbf, 0xbf, 0xdf, 0xdf, 0xdf, 0xbf, 0xbf, 0xbf, 0xbf, 0x9f, 0x97, 0x73, 0x4f, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x2a, 0x2e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x06, 0x06, 0x26, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x05, 0x05, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, + 0x26, 0x26, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x97, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0xbf, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xdf, 0xbf, 0x73, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x26, 0x2e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x06, 0x06, 0x26, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x06, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, + 0x26, 0x26, 0x26, 0x26, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x7b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0xdf, 0xdf, 0xdf, 0xff, 0xff, 0xdb, 0x72, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x01, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x06, 0x2a, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x2e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x26, 0x06, 0x06, 0x06, 0x05, 0x05, 0x05, 0x06, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, + 0x2a, 0x26, 0x26, 0x06, 0x26, 0x06, 0x26, 0x06, 0x06, 0x26, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0xdf, 0xdf, 0xff, 0xbb, 0x73, 0x4a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x01, 0x05, 0x05, 0x01, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x05, 0x2a, 0x4e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4f, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x06, 0x26, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x26, 0x26, 0x26, 0x06, 0x06, 0x26, 0x26, 0x26, 0x26, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x97, 0x9b, 0x9b, 0x9b, 0x7b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0x9f, 0xbf, 0xbf, 0xdf, 0xbb, 0x72, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x05, 0x05, 0x05, 0x05, 0x05, 0x01, 0x05, 0x01, 0x05, 0x05, 0x01, 0x01, 0x01, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x05, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x05, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x26, 0x26, 0x26, 0x26, 0x06, 0x06, 0x26, 0x06, 0x26, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x26, 0x26, 0x26, 0x06, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x57, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x9b, 0xbf, 0xbf, 0x73, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4a, 0x2a, 0x2a, 0x2a, 0x4e, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x05, 0x05, 0x05, 0x05, 0x05, 0x01, 0x01, 0x01, 0x01, 0x05, 0x01, 0x01, 0x01, 0x05, 0x05, 0x05, 0x06, 0x06, 0x05, 0x2a, 0x4e, 0x4e, 0x2e, 0x2a, 0x2e, 0x2e, 0x4e, 0x4f, 0x53, 0x53, 0x4f, 0x53, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x06, 0x06, 0x06, 0x05, 0x26, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x25, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x26, 0x26, 0x2a, 0x26, 0x06, 0x06, 0x26, 0x26, 0x26, 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x26, 0x06, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x73, 0x77, 0x9b, 0x9b, 0x9b, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x73, 0x53, 0x77, 0x57, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x9b, 0x9b, 0x77, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x4e, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x05, 0x05, 0x05, 0x05, 0x01, 0x01, 0x01, 0x01, 0x01, 0x05, 0x01, 0x01, 0x05, 0x05, 0x05, 0x06, 0x05, 0x2a, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x53, 0x4f, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x05, 0x06, 0x06, 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x06, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x97, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x73, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x77, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x4e, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x4f, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x05, 0x05, 0x05, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x05, 0x05, 0x05, 0x06, 0x06, 0x26, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x4f, 0x53, 0x73, 0x53, 0x73, 0x53, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x06, 0x05, 0x06, 0x06, 0x06, 0x06, 0x05, 0x06, 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x2a, 0x26, 0x26, 0x26, 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x05, 0x06, 0x06, 0x06, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x4e, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x05, 0x05, 0x05, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x05, 0x06, 0x06, 0x06, 0x2e, 0x4f, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x73, 0x73, 0x73, 0x53, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x06, 0x06, 0x06, 0x06, 0x06, 0x05, 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x06, 0x06, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x53, 0x73, 0x73, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x4f, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x7b, 0x77, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x4f, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x05, 0x05, 0x05, 0x01, 0x01, 0x05, 0x01, 0x01, 0x05, 0x05, 0x05, 0x06, 0x06, 0x06, 0x2a, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x4e, 0x4e, 0x4f, 0x53, 0x73, 0x73, 0x53, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x06, 0x06, 0x05, 0x06, 0x06, 0x06, 0x06, 0x06, 0x05, 0x05, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x06, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x77, 0x77, 0x77, 0x77, 0x77, 0x53, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x05, 0x05, 0x05, 0x01, 0x01, 0x01, 0x01, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x2a, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x4e, 0x4e, 0x4f, 0x73, 0x73, 0x53, 0x4f, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x06, 0x06, 0x05, 0x05, 0x06, 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x06, 0x26, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x05, 0x05, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x77, 0x77, 0x77, 0x53, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x05, 0x05, 0x05, 0x01, 0x01, 0x01, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x06, 0x2a, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x06, 0x06, 0x05, 0x05, 0x06, 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x26, 0x2a, 0x26, 0x2a, 0x26, 0x26, 0x26, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x26, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x2e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x05, 0x05, 0x05, 0x01, 0x01, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x05, 0x2a, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x06, 0x05, 0x05, 0x05, 0x06, 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x73, 0x53, 0x73, 0x4f, 0x2a, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x4f, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x05, 0x05, 0x05, 0x01, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x05, 0x26, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x06, 0x05, 0x05, 0x05, 0x06, 0x05, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x2a, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x53, 0x73, 0x73, 0x73, 0x73, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x4f, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x05, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x53, 0x73, 0x73, 0x73, 0x77, 0x53, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x97, 0x97, 0x77, 0x73, 0x73, 0x53, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x06, 0x05, 0x05, 0x05, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x2a, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4a, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x73, 0x73, 0x77, 0x97, 0x9b, 0x9b, 0x97, 0x97, 0x77, 0x73, 0x4f, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x2a, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4a, 0x4e, 0x4e, 0x4f, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x4f, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x53, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x73, 0x77, 0x97, 0x9b, 0x9b, 0xbb, 0x9b, 0x9b, 0x97, 0x73, 0x53, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x06, 0x05, 0x05, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x2a, 0x4f, 0x4e, 0x2e, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4f, 0x73, 0x73, 0x73, 0x97, 0x97, 0x97, 0x97, 0x97, 0x77, 0x73, 0x73, 0x53, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x73, 0x53, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x73, 0x73, 0x73, 0x73, 0x53, 0x73, 0x73, 0x77, 0x97, 0x9b, 0xbf, 0xbf, 0xbf, 0xbb, 0x9b, 0x77, 0x73, 0x4f, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x2a, 0x4f, 0x4e, 0x2e, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4f, 0x73, 0x73, 0x97, 0x97, 0x97, 0x9b, 0xbb, 0x9b, 0x97, 0x97, 0x73, 0x73, 0x53, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x97, 0x9b, 0xbf, 0xbf, 0xbf, 0xbf, 0xbb, 0x97, 0x77, 0x73, 0x4f, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x06, 0x06, 0x05, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x01, 0x01, 0x05, 0x05, 0x01, 0x4e, 0x4f, 0x4e, 0x2e, + 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x4f, 0x73, 0x73, 0x97, 0x97, 0xbb, 0xbf, 0xbb, 0xbb, 0x9b, 0x97, 0x97, 0x73, 0x73, 0x4f, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x2a, 0x2a, 0x06, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x77, 0x77, 0x73, 0x73, 0x73, 0x53, 0x73, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x97, 0x9b, 0xbf, 0xdf, 0xdf, 0xdf, 0xbf, 0x9b, 0x97, 0x73, 0x53, 0x4f, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x05, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4a, 0x2a, 0x2a, 0x4f, 0x4f, 0x4e, + 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x4e, 0x73, 0x73, 0x77, 0x97, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0x9b, 0x97, 0x77, 0x73, 0x4f, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x06, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x97, 0x9b, 0xbf, 0xdf, 0xdf, 0xdf, 0xbf, 0xbb, 0x97, 0x77, 0x73, 0x4f, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x06, 0x05, 0x06, 0x05, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4f, 0x4f, + 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4f, 0x73, 0x73, 0x97, 0x97, 0x9b, 0xbb, 0xbb, 0x9b, 0x97, 0x97, 0x73, 0x73, 0x53, 0x4f, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x05, 0x06, 0x06, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x73, 0x73, 0x53, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x77, 0x9b, 0xbf, 0xbf, 0xdf, 0xdf, 0xdf, 0xbf, 0x9b, 0x97, 0x73, 0x53, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x06, 0x06, 0x06, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4f, + 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2e, 0x2a, 0x2a, 0x2a, 0x4e, 0x4f, 0x73, 0x73, 0x77, 0x97, 0x97, 0x97, 0x97, 0x97, 0x77, 0x73, 0x73, 0x53, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x05, 0x05, 0x06, 0x06, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x73, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x73, 0x4f, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x73, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x77, 0x97, 0x9b, 0xbf, 0xdf, 0xdf, 0xdf, 0xbf, 0x9b, 0x97, 0x73, 0x53, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x05, 0x05, 0x05, 0x05, 0x05, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x06, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x06, 0x26, 0x06, 0x05, 0x05, 0x05, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, + 0x2e, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x2e, 0x2a, 0x2e, 0x4f, 0x4f, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x4f, 0x4f, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2a, 0x2a, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x73, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x73, 0x53, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x73, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x77, 0x9b, 0xbf, 0xbf, 0xdf, 0xdf, 0xbf, 0xbb, 0x97, 0x77, 0x73, 0x4f, 0x4e, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x05, 0x05, 0x05, 0x05, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x05, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2e, 0x53, 0x53, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x2e, 0x4e, 0x2a, 0x2a, 0x06, 0x06, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x53, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x77, 0x97, 0x9b, 0xbf, 0xbf, 0xbf, 0xbf, 0xbb, 0x97, 0x77, 0x73, 0x53, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x06, 0x05, 0x05, 0x26, 0x26, 0x26, 0x06, 0x26, 0x26, 0x26, 0x26, 0x06, 0x05, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x06, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2a, 0x2a, + 0x2e, 0x2e, 0x2e, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x26, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x26, 0x26, 0x2a, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x2a, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x77, 0x77, 0x97, 0x9b, 0xbb, 0xbf, 0xbb, 0x9b, 0x97, 0x77, 0x73, 0x53, 0x4f, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x05, 0x26, 0x26, 0x26, 0x06, 0x06, 0x06, 0x26, 0x26, 0x26, 0x06, 0x06, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2e, 0x2a, 0x4f, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x05, 0x05, 0x06, 0x06, 0x05, 0x06, 0x06, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4f, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x2e, 0x2a, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x73, 0x97, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x77, 0x97, 0x9b, 0x9b, 0x9b, 0x9b, 0x97, 0x77, 0x73, 0x53, 0x4f, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x26, 0x06, 0x06, 0x06, 0x26, 0x26, 0x06, 0x06, 0x06, 0x06, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4f, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x53, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2a, 0x05, 0x05, 0x05, 0x06, 0x06, 0x05, 0x06, 0x06, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x73, 0x53, 0x2e, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x2e, 0x4e, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x77, 0x97, 0x97, 0x97, 0x97, 0x77, 0x73, 0x73, 0x4f, 0x4f, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x06, 0x06, 0x26, 0x26, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x05, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x2a, 0x2a, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4f, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x2a, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x05, 0x05, 0x06, 0x06, 0x26, 0x26, 0x26, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x2e, 0x2a, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x73, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x53, 0x4f, 0x4f, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x06, 0x06, 0x26, 0x26, 0x06, 0x05, 0x06, 0x05, 0x06, 0x06, 0x06, 0x05, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4e, 0x2e, + 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4f, 0x4f, 0x53, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4e, 0x2a, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x06, 0x06, 0x26, 0x26, 0x2a, 0x2a, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4e, 0x4e, 0x4e, 0x4e, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x4f, 0x53, 0x53, 0x53, 0x53, 0x4f, 0x2e, 0x2e, 0x2e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2e, 0x2e, 0x4e, 0x4f, 0x4e, 0x4f, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x77, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x73, 0x53, 0x53, 0x4f, 0x4f, 0x4e, 0x4e, 0x2e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x06, 0x05, 0x05, 0x06, 0x06, 0x06, 0x06, 0x06, 0x06, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x4f, 0x4e, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x26, 0x26, 0x26, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, 0x2a, +#endif +#if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP == 0 + /*Pixel format: Red: 5 bit, Green: 6 bit, Blue: 5 bit*/ + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, + 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, + 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, + 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, + 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, + 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, + 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, + 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, + 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, + 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, + 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, + 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, + 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, + 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, + 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, + 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, + 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, + 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0x37, 0x4c, 0x38, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x58, 0x54, 0x57, 0x54, 0x57, 0x54, 0x57, 0x54, 0x57, 0x54, 0x57, 0x54, 0x57, 0x54, 0x57, 0x54, 0x57, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, + 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0x17, 0x4c, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x57, 0x54, 0x57, 0x54, 0x57, 0x54, 0x57, 0x54, 0x57, 0x54, 0x57, 0x54, 0x57, 0x54, 0x77, 0x54, 0x57, 0x54, 0x57, 0x54, 0x57, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, + 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0x37, 0x54, 0x78, 0x54, 0x77, 0x54, 0x77, 0x54, 0x78, 0x54, 0x78, 0x54, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x54, 0x78, 0x54, 0x78, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, + 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0x17, 0x4c, 0x78, 0x54, 0x77, 0x54, 0x78, 0x54, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, + 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0x57, 0x54, 0x78, 0x54, 0x78, 0x54, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0x37, 0x4c, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, + 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0x16, 0x4c, 0x78, 0x54, 0x78, 0x54, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x64, 0x78, 0x64, 0x78, 0x64, 0x78, 0x64, 0x78, 0x64, 0x78, 0x64, 0x78, 0x64, 0x78, 0x64, 0x78, 0x64, 0x78, 0x64, 0x78, 0x64, 0x78, 0x64, 0x78, 0x64, 0x78, 0x64, 0x78, 0x64, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x54, 0x78, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, + 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0x37, 0x54, 0x78, 0x54, 0x78, 0x54, 0x98, 0x5c, 0x98, 0x5c, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x5c, 0x98, 0x5c, 0x78, 0x54, 0x78, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x78, 0x54, 0x78, 0x54, 0x78, 0x54, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, + 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0x58, 0x54, 0x78, 0x54, 0x78, 0x54, 0x98, 0x5c, 0x98, 0x5c, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x5c, 0x98, 0x5c, 0x78, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x98, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, + 0xf6, 0x4b, 0xd6, 0x43, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x98, 0x54, 0x98, 0x5c, 0x98, 0x5c, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x5c, 0x98, 0x5c, 0x78, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x98, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, + 0xf7, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0x17, 0x4c, 0x38, 0x4c, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x98, 0x54, 0x98, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0xb8, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0xb8, 0x64, 0x98, 0x64, 0x98, 0x64, 0xb8, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x5c, 0xb8, 0x5c, 0x98, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xf6, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0x98, 0x5c, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, + 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x98, 0x54, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x64, 0xb8, 0x64, 0xb8, 0x6c, 0xb8, 0x6c, 0xb8, 0x6c, 0xb8, 0x6c, 0xb8, 0x6c, 0xb8, 0x6c, 0xb8, 0x6c, 0xb8, 0x6c, 0xb8, 0x6c, 0xb8, 0x6c, 0xb8, 0x64, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0x98, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xf7, 0x4b, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x78, 0x5c, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x54, 0x38, 0x54, 0x58, 0x54, 0x78, 0x54, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x64, 0xb8, 0x64, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0x98, 0x5c, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, + 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x78, 0x54, 0x98, 0x54, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x64, 0xb8, 0x64, 0xb8, 0x64, 0xb8, 0x6c, 0xb8, 0x6c, 0xb8, 0x64, 0xb8, 0x64, 0xb8, 0x64, 0xb8, 0x64, 0xb8, 0x64, 0xb8, 0x64, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0x98, 0x54, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0x17, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x38, 0x54, 0x58, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x98, 0x5c, 0x78, 0x5c, 0x37, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x78, 0x54, 0x98, 0x5c, 0xb8, 0x5c, 0xb8, 0x64, 0xb8, 0x64, 0xb8, 0x64, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0x98, 0x5c, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, + 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x17, 0x4c, 0x59, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x98, 0x54, 0xb8, 0x54, 0xb8, 0x5c, 0xb8, 0x5c, 0xd8, 0x5c, 0xb8, 0x5c, 0xd8, 0x64, 0xd8, 0x5c, 0xd8, 0x5c, 0xd8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0x98, 0x5c, 0x98, 0x54, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0xb5, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0x17, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x98, 0x5c, 0x58, 0x5c, 0x37, 0x54, 0x37, 0x54, 0x17, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xd6, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x58, 0x54, 0x78, 0x54, 0x98, 0x5c, 0xb8, 0x5c, 0xb8, 0x64, 0xb8, 0x64, 0xb8, 0x64, 0xd8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0x78, 0x5c, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, + 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0xb5, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xf7, 0x4b, 0x59, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x98, 0x54, 0x98, 0x54, 0xd8, 0x5c, 0xd8, 0x5c, 0xd8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0x98, 0x5c, 0x78, 0x54, 0x78, 0x54, 0x78, 0x54, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x59, 0x54, 0x58, 0x54, 0x38, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0xf7, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0xd6, 0x43, 0x17, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x5c, 0x78, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x98, 0x5c, 0x57, 0x54, 0x17, 0x54, 0x17, 0x54, 0x37, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x17, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x38, 0x4c, 0x58, 0x54, 0x58, 0x54, 0x79, 0x5c, 0x99, 0x5c, 0xd8, 0x5c, 0xd8, 0x5c, 0xd8, 0x5c, 0xd8, 0x5c, 0xd8, 0x5c, 0xb8, 0x5c, 0x99, 0x5c, 0x79, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, + 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x16, 0x4c, 0x16, 0x4c, 0xf6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xf7, 0x4b, 0x59, 0x54, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x54, 0x59, 0x54, 0x58, 0x54, 0x79, 0x54, 0x78, 0x54, 0x98, 0x54, 0xb9, 0x54, 0xb9, 0x5c, 0x79, 0x54, 0x79, 0x54, 0x99, 0x54, 0x99, 0x54, 0x99, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x59, 0x54, 0x79, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x54, 0x58, 0x54, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0xf7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xd6, 0x4b, 0x38, 0x54, 0x38, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x58, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x5c, 0x79, 0x5c, 0x99, 0x5c, 0x78, 0x5c, 0x37, 0x54, 0x17, 0x4c, 0x17, 0x54, 0x37, 0x54, 0x38, 0x54, 0x58, 0x54, 0x59, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x17, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xd6, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xf7, 0x4b, 0x18, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x58, 0x54, 0x59, 0x54, 0x79, 0x5c, 0x99, 0x5c, 0xb9, 0x5c, 0xb9, 0x5c, 0xd9, 0x5c, 0xd9, 0x5c, 0xb9, 0x5c, 0x99, 0x5c, 0x79, 0x5c, 0x79, 0x54, 0x59, 0x54, 0x59, 0x54, 0x39, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0x37, 0x4c, 0x58, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x99, 0x54, 0x99, 0x54, 0x99, 0x54, 0x99, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x5c, 0x58, 0x54, 0x37, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0x17, 0x54, 0x38, 0x54, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x79, 0x54, 0x79, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x99, 0x5c, 0x58, 0x5c, 0x17, 0x54, 0x17, 0x4c, 0x17, 0x54, 0x37, 0x54, 0x38, 0x54, 0x58, 0x54, 0x79, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0xf7, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0xb9, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x79, 0x5c, 0x79, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xf7, 0x4b, 0xf7, 0x43, 0x17, 0x44, 0x17, 0x4c, 0x79, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x59, 0x54, 0x79, 0x54, 0xb9, 0x5c, 0xb9, 0x5c, 0xb9, 0x5c, 0xb9, 0x5c, 0x99, 0x5c, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x5c, 0x79, 0x54, 0x79, 0x5c, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x58, 0x54, 0x37, 0x54, 0x17, 0x54, 0x17, 0x54, 0x37, 0x4c, 0xf7, 0x4b, 0x95, 0x3b, 0x95, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0xf7, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0x17, 0x54, 0x38, 0x54, 0x18, 0x4c, 0x17, 0x4c, 0x38, 0x4c, 0x58, 0x54, 0x79, 0x54, 0x79, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x38, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x37, 0x54, 0x58, 0x54, 0x79, 0x5c, 0x79, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x79, 0x54, 0x59, 0x54, 0x17, 0x54, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x38, 0x54, 0x38, 0x54, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x79, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd6, 0x43, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x16, 0x4c, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x44, 0x17, 0x44, 0xf7, 0x43, 0xf7, 0x43, 0x17, 0x4c, 0x58, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x99, 0x54, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0xd9, 0x5c, 0xd9, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x54, 0x99, 0x54, 0x99, 0x5c, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x99, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x58, 0x54, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0xf7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0x17, 0x4c, 0x58, 0x54, 0x38, 0x54, 0x18, 0x4c, 0x38, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x59, 0x54, 0x79, 0x54, 0x38, 0x54, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x58, 0x54, 0x79, 0x5c, 0x99, 0x5c, 0xb9, 0x5c, 0xb9, 0x64, 0xd9, 0x5c, 0xb9, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x79, 0x5c, 0xf7, 0x4b, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x38, 0x54, 0x39, 0x54, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0xd7, 0x4b, 0xd6, 0x43, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xf7, 0x43, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x44, 0x17, 0x44, 0x17, 0x44, 0xf7, 0x43, 0xf7, 0x43, 0x17, 0x4c, 0x37, 0x4c, 0x58, 0x54, 0xb8, 0x5c, 0xd9, 0x5c, 0xd9, 0x5c, 0xb9, 0x5c, 0xb9, 0x5c, 0xb9, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0xb9, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x79, 0x5c, 0x79, 0x54, 0x79, 0x54, 0x58, 0x54, 0xf7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0xb6, 0x43, 0xf7, 0x4b, 0xd7, 0x43, 0xd6, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x58, 0x54, 0x58, 0x54, 0x37, 0x54, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0xf7, 0x4b, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x59, 0x54, 0x79, 0x54, 0x99, 0x5c, 0x99, 0x54, 0x79, 0x54, 0x58, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x58, 0x54, 0x79, 0x5c, 0x99, 0x5c, 0xb9, 0x5c, 0xd9, 0x64, 0xf9, 0x64, 0xf9, 0x64, 0xf9, 0x64, 0xf9, 0x64, 0x37, 0x54, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xd6, 0x43, 0x38, 0x54, 0x39, 0x54, 0x18, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x5c, 0x79, 0x54, 0x79, 0x5c, 0x78, 0x54, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x37, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xd7, 0x43, 0xd6, 0x43, 0xd7, 0x43, 0x17, 0x4c, 0x17, 0x4c, + 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x43, 0x17, 0x44, 0x17, 0x44, 0x17, 0x44, 0x17, 0x44, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0x17, 0x4c, 0x37, 0x4c, 0x57, 0x54, 0x58, 0x54, 0x78, 0x54, 0xd9, 0x5c, 0xf9, 0x64, 0xb9, 0x5c, 0x99, 0x5c, 0xb9, 0x5c, 0xb9, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0xb9, 0x5c, 0xb9, 0x5c, 0xb9, 0x5c, 0x78, 0x54, 0x37, 0x54, 0x17, 0x4c, 0xf6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0xb6, 0x43, 0xd7, 0x4b, 0xd7, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x5c, 0x37, 0x54, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0xb6, 0x43, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x99, 0x5c, 0x99, 0x5c, 0x79, 0x54, 0x37, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x79, 0x54, 0x99, 0x5c, 0xb9, 0x64, 0xd9, 0x64, 0xf9, 0x64, 0x19, 0x65, 0x19, 0x6d, 0x98, 0x5c, 0xd6, 0x4b, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x38, 0x54, 0x39, 0x54, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x37, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, + 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x44, 0x17, 0x44, 0x17, 0x44, 0x17, 0x44, 0x17, 0x44, 0xf7, 0x43, 0x17, 0x4c, 0xf7, 0x43, 0x17, 0x4c, 0x17, 0x44, 0xf7, 0x43, 0xf7, 0x43, 0x37, 0x4c, 0x37, 0x4c, 0x58, 0x54, 0x78, 0x54, 0x78, 0x54, 0x57, 0x54, 0x57, 0x54, 0x57, 0x54, 0x37, 0x54, 0x37, 0x54, 0x16, 0x4c, 0xd6, 0x43, 0xb5, 0x43, 0x75, 0x3b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0xb6, 0x43, 0xd6, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x5c, 0x37, 0x54, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x17, 0x4c, 0x59, 0x54, 0x79, 0x54, 0x79, 0x54, 0x99, 0x5c, 0x38, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x99, 0x5c, 0xb9, 0x5c, 0xd9, 0x64, 0x19, 0x65, 0x19, 0x6d, 0x39, 0x6d, 0x16, 0x54, 0xb5, 0x4b, 0xb6, 0x4b, 0xb5, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x38, 0x54, 0x39, 0x54, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x5c, 0x79, 0x5c, 0x99, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x37, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd6, 0x43, 0xd7, 0x43, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, + 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0xd6, 0x43, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x44, 0x17, 0x4c, 0x17, 0x44, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x43, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd7, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x17, 0x54, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0xd6, 0x4b, 0x38, 0x54, 0x99, 0x5c, 0x59, 0x54, 0x38, 0x54, 0x38, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x58, 0x54, 0x79, 0x5c, 0x99, 0x5c, 0xd9, 0x64, 0x19, 0x65, 0x39, 0x6d, 0x37, 0x54, 0xb6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x18, 0x54, 0x59, 0x54, 0x38, 0x54, 0x18, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, + 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xf7, 0x43, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x44, 0x17, 0x4c, 0x17, 0x44, 0xf7, 0x43, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x44, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xb6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0xd6, 0x43, 0xd7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x17, 0x4c, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xd6, 0x4b, 0x38, 0x54, 0x39, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x99, 0x5c, 0xb9, 0x5c, 0xfa, 0x64, 0xd8, 0x64, 0x16, 0x54, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x3b, 0xd6, 0x43, 0x59, 0x54, 0x59, 0x54, 0x38, 0x54, 0x18, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x5c, 0x79, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, + 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x4b, 0xf7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x44, 0xf7, 0x43, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0xf7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0xb6, 0x43, 0xf7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0xb5, 0x43, 0x18, 0x4c, 0x59, 0x54, 0x38, 0x54, 0x38, 0x54, 0x18, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x58, 0x54, 0x79, 0x5c, 0x9a, 0x5c, 0xb9, 0x5c, 0x37, 0x54, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x58, 0x54, 0x59, 0x54, 0x39, 0x54, 0x18, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x18, 0x54, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, + 0xf7, 0x4b, 0xd7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xf7, 0x4b, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x43, 0x17, 0x4c, 0x17, 0x44, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x96, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x54, 0x3b, 0xd6, 0x4b, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x9a, 0x5c, 0x99, 0x5c, 0xf6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0xf7, 0x4b, 0x59, 0x54, 0x59, 0x54, 0x38, 0x54, 0x18, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x18, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, + 0xf7, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0xf7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0xf7, 0x4b, 0x38, 0x54, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x59, 0x54, 0x79, 0x5c, 0x17, 0x4c, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0xb6, 0x43, 0x18, 0x54, 0x79, 0x5c, 0x59, 0x54, 0x18, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x17, 0x54, 0x17, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, + 0xf7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x38, 0x4c, 0x58, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x58, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0xf7, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0xb6, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x17, 0x4c, 0x38, 0x54, 0x18, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x38, 0x54, 0x38, 0x54, 0xd6, 0x4b, 0xb6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0x75, 0x3b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0xb6, 0x43, 0x38, 0x54, 0x59, 0x54, 0x38, 0x54, 0x18, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x17, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, + 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x38, 0x4c, 0x37, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x58, 0x4c, 0x58, 0x4c, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x79, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0xf7, 0x4b, 0x38, 0x54, 0x18, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0xf6, 0x4b, 0x59, 0x54, 0x39, 0x54, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x17, 0x54, 0x18, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x43, 0xf7, 0x43, + 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd6, 0x43, 0xd7, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0x59, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0x37, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x58, 0x4c, 0x58, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x58, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0x95, 0x3b, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0xb6, 0x3b, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0x18, 0x4c, 0xf7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0xf7, 0x4b, 0x38, 0x54, 0x18, 0x4c, 0x18, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0xd7, 0x4b, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x18, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x17, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x43, 0xd7, 0x4b, + 0xd7, 0x4b, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x38, 0x4c, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x58, 0x4c, 0x58, 0x4c, 0x58, 0x54, 0x58, 0x54, 0x59, 0x54, 0x79, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x79, 0x54, 0x79, 0x54, 0x9a, 0x5c, 0x99, 0x5c, 0x59, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0xf7, 0x4b, 0x38, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0xb6, 0x43, 0xd7, 0x4b, 0x18, 0x54, 0x38, 0x54, 0x18, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x54, 0x38, 0x54, 0x59, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, + 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x37, 0x4c, 0x38, 0x4c, 0x58, 0x4c, 0x38, 0x4c, 0x58, 0x54, 0x79, 0x54, 0x58, 0x54, 0x59, 0x54, 0x79, 0x54, 0x9a, 0x54, 0x99, 0x54, 0x9a, 0x5c, 0xda, 0x5c, 0xba, 0x5c, 0xba, 0x5c, 0xba, 0x5c, 0x99, 0x5c, 0x59, 0x54, 0x79, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x17, 0x4c, 0x17, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xb6, 0x4b, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x74, 0x3b, 0x74, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x13, 0x33, 0xd6, 0x4b, 0x38, 0x54, 0x38, 0x54, 0x17, 0x54, 0x17, 0x54, 0xf7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0x75, 0x43, 0xd6, 0x4b, 0x38, 0x54, 0x18, 0x54, 0x18, 0x54, 0x17, 0x54, 0x17, 0x4c, 0x17, 0x54, 0xf7, 0x4b, 0x17, 0x4c, 0x38, 0x54, 0x39, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, + 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x39, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x38, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x59, 0x54, 0x79, 0x54, 0x59, 0x54, 0x79, 0x54, 0x9a, 0x54, 0x9a, 0x5c, 0xb9, 0x5c, 0xda, 0x5c, 0xda, 0x5c, 0xda, 0x5c, 0xda, 0x5c, 0xfa, 0x64, 0xfa, 0x64, 0xda, 0x5c, 0x7a, 0x5c, 0x9a, 0x5c, 0x9a, 0x5c, 0x79, 0x54, 0x59, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x37, 0x54, 0x17, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x74, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x33, 0x95, 0x43, 0x18, 0x54, 0x38, 0x54, 0x37, 0x54, 0x17, 0x4c, 0xb6, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x74, 0x43, 0x74, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0xb6, 0x43, 0xf7, 0x4b, 0x18, 0x54, 0x17, 0x54, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, + 0xf7, 0x4b, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x39, 0x4c, 0x38, 0x4c, 0x59, 0x54, 0x59, 0x54, 0x58, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x79, 0x54, 0x9a, 0x5c, 0xda, 0x5c, 0xda, 0x5c, 0xfa, 0x64, 0x3a, 0x65, 0x3a, 0x65, 0x3a, 0x65, 0x5a, 0x65, 0x3a, 0x65, 0xba, 0x5c, 0xba, 0x5c, 0xba, 0x5c, 0x9a, 0x5c, 0x9a, 0x5c, 0x79, 0x5c, 0x79, 0x54, 0x79, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x37, 0x54, 0x37, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x75, 0x3b, 0x74, 0x3b, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x13, 0x33, 0x75, 0x43, 0x17, 0x54, 0x38, 0x54, 0xf7, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x43, 0xb6, 0x43, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, + 0xd7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x59, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x9a, 0x5c, 0xba, 0x5c, 0xfa, 0x64, 0x1a, 0x65, 0x5a, 0x65, 0x7a, 0x6d, 0x79, 0x6d, 0x7a, 0x6d, 0x5a, 0x6d, 0x1a, 0x65, 0x1a, 0x65, 0xfa, 0x64, 0xda, 0x64, 0xda, 0x64, 0xba, 0x5c, 0xba, 0x5c, 0x9a, 0x5c, 0x9a, 0x5c, 0x79, 0x5c, 0x79, 0x54, 0x79, 0x5c, 0x17, 0x54, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x37, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x18, 0x4c, 0xf7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x13, 0x33, 0xf3, 0x32, 0x34, 0x3b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x95, 0x43, 0xf7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xf6, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, + 0xd6, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x37, 0x54, 0x58, 0x54, 0x58, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x39, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x9a, 0x5c, 0x9a, 0x5c, 0xfa, 0x64, 0x1a, 0x65, 0x5a, 0x6d, 0x9a, 0x6d, 0x7a, 0x6d, 0x9a, 0x75, 0x99, 0x75, 0x9a, 0x75, 0x9a, 0x75, 0x7a, 0x6d, 0x7a, 0x6d, 0x7a, 0x6d, 0x7a, 0x6d, 0x5a, 0x6d, 0xfa, 0x64, 0xda, 0x64, 0xda, 0x64, 0xba, 0x64, 0x37, 0x54, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x18, 0x4c, 0xf7, 0x43, 0xd6, 0x43, 0xb6, 0x3b, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x13, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x95, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x95, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, + 0xd6, 0x43, 0xd6, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0xd6, 0x43, 0xb6, 0x43, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x9a, 0x5c, 0x9a, 0x5c, 0xda, 0x64, 0x1a, 0x65, 0x5a, 0x6d, 0x9a, 0x6d, 0x99, 0x75, 0x9a, 0x75, 0x9a, 0x7d, 0x9a, 0x7d, 0x9a, 0x7d, 0x9a, 0x7d, 0x9a, 0x75, 0x9a, 0x75, 0x9a, 0x7d, 0x9a, 0x75, 0x9a, 0x75, 0x7a, 0x75, 0xf9, 0x64, 0x37, 0x54, 0x74, 0x3b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x39, 0x54, 0x39, 0x54, 0x59, 0x54, 0x39, 0x54, 0x38, 0x54, 0x17, 0x4c, 0xd7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd7, 0x43, 0xf7, 0x4b, 0x17, 0x54, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0x34, 0x3b, 0x75, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, + 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x17, 0x54, 0x17, 0x54, 0x95, 0x3b, 0x95, 0x43, 0xd6, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x38, 0x54, 0x38, 0x54, 0x59, 0x54, 0x79, 0x54, 0x7a, 0x5c, 0x9a, 0x5c, 0xba, 0x5c, 0x1a, 0x65, 0x5a, 0x6d, 0x7a, 0x6d, 0x9a, 0x75, 0x9a, 0x75, 0x9a, 0x7d, 0x9a, 0x85, 0x9a, 0x85, 0x9a, 0x8d, 0x9a, 0x8d, 0x9a, 0x85, 0x9a, 0x85, 0x9a, 0x85, 0x9a, 0x85, 0x39, 0x75, 0x57, 0x5c, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x59, 0x54, 0x39, 0x54, 0x39, 0x54, 0x18, 0x4c, 0xf7, 0x43, 0xd6, 0x43, 0xd7, 0x43, 0xf7, 0x4b, 0x17, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x33, 0x13, 0x33, 0xf3, 0x32, 0x54, 0x3b, 0x75, 0x43, 0x55, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, + 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0xf7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0x17, 0x54, 0x95, 0x43, 0x75, 0x3b, 0x95, 0x3b, 0xd6, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x59, 0x54, 0x39, 0x54, 0x59, 0x54, 0x79, 0x54, 0x7a, 0x5c, 0x9a, 0x5c, 0xda, 0x64, 0x1a, 0x65, 0x7a, 0x6d, 0x9a, 0x6d, 0x9a, 0x75, 0x9a, 0x7d, 0x9a, 0x7d, 0x9a, 0x85, 0x9a, 0x95, 0xba, 0x95, 0xba, 0x95, 0x9a, 0x95, 0xbb, 0x95, 0x7a, 0x8d, 0x57, 0x64, 0xb5, 0x4b, 0x74, 0x43, 0x95, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x4c, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x59, 0x54, 0x18, 0x4c, 0xd7, 0x43, 0x17, 0x4c, 0x17, 0x54, 0x17, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x33, 0x13, 0x33, 0xd2, 0x32, 0x55, 0x3b, 0x75, 0x43, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x75, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, + 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xd7, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x95, 0x3b, 0xd6, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x9a, 0x5c, 0xba, 0x5c, 0xda, 0x64, 0x1a, 0x65, 0x7a, 0x6d, 0xba, 0x75, 0xba, 0x75, 0xba, 0x7d, 0xba, 0x85, 0xba, 0x8d, 0xba, 0x95, 0xbb, 0x95, 0xbb, 0x95, 0xbb, 0x9d, 0x39, 0x8d, 0x95, 0x4b, 0x75, 0x43, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xd5, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x59, 0x54, 0x17, 0x4c, 0x17, 0x54, 0x17, 0x54, 0x17, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x33, 0xf3, 0x32, 0x13, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x75, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0xb5, 0x3b, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, + 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd7, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf7, 0x4b, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x95, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x59, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x9a, 0x54, 0xba, 0x5c, 0xba, 0x5c, 0xfa, 0x64, 0x3a, 0x6d, 0x9b, 0x6d, 0xba, 0x75, 0xba, 0x75, 0xba, 0x7d, 0xba, 0x85, 0xba, 0x8d, 0xbb, 0x9d, 0xbb, 0x9d, 0x9a, 0x95, 0x97, 0x6c, 0x74, 0x43, 0x75, 0x43, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0xb5, 0x4b, 0xd5, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x7b, 0x54, 0x7a, 0x5c, 0x58, 0x54, 0x38, 0x54, 0x37, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x95, 0x43, 0xd6, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x33, 0xf3, 0x32, 0x54, 0x3b, 0x95, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x3a, 0x34, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0xb6, 0x3b, 0xb6, 0x43, 0xb6, 0x43, + 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xb6, 0x43, 0x54, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x95, 0x43, 0xd6, 0x4b, 0x38, 0x54, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x79, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0xbb, 0x5c, 0xda, 0x64, 0x1a, 0x65, 0x3a, 0x6d, 0x7a, 0x6d, 0xba, 0x75, 0xba, 0x75, 0xba, 0x7d, 0xba, 0x85, 0xba, 0x85, 0xbb, 0x95, 0x9a, 0x95, 0x36, 0x64, 0x74, 0x43, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x53, 0xf6, 0x53, 0xf6, 0x53, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x7b, 0x54, 0x7b, 0x5c, 0x9a, 0x5c, 0x59, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0xb5, 0x43, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, + 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0xb6, 0x4b, 0x38, 0x54, 0x17, 0x54, 0x17, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x5c, 0x9a, 0x5c, 0xfb, 0x64, 0x3b, 0x65, 0x3b, 0x6d, 0x3a, 0x6d, 0x7a, 0x75, 0xba, 0x75, 0xba, 0x7d, 0xba, 0x7d, 0xba, 0x85, 0x7a, 0x8d, 0xb5, 0x53, 0x74, 0x43, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0xb5, 0x4b, 0xd5, 0x53, 0xf6, 0x53, 0xf6, 0x53, 0x16, 0x54, 0x16, 0x54, 0x16, 0x54, 0x16, 0x54, 0x17, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x54, 0x17, 0x4c, 0x18, 0x54, 0x18, 0x54, 0x17, 0x4c, 0x18, 0x54, 0x18, 0x54, 0x17, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x7b, 0x54, 0x7b, 0x54, 0x9b, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x59, 0x54, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0xb5, 0x43, 0xf7, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x33, 0x75, 0x3b, 0x95, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x34, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x43, 0x95, 0x43, + 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0xb6, 0x43, 0x38, 0x54, 0x18, 0x54, 0x17, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x9a, 0x5c, 0xdb, 0x5c, 0xdb, 0x64, 0xfb, 0x64, 0x5b, 0x6d, 0x3a, 0x6d, 0x7b, 0x6d, 0x9b, 0x75, 0xdb, 0x75, 0xda, 0x7d, 0x7a, 0x7d, 0x74, 0x43, 0x75, 0x43, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xd5, 0x53, 0xf5, 0x53, 0xf6, 0x53, 0xf6, 0x53, 0x16, 0x54, 0xf6, 0x53, 0x16, 0x54, 0x17, 0x54, 0x17, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7b, 0x54, 0x7b, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x59, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x95, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x75, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x43, + 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x96, 0x43, 0x18, 0x54, 0x38, 0x54, 0x18, 0x54, 0x18, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x9a, 0x5c, 0x7a, 0x5c, 0x9a, 0x5c, 0xfa, 0x64, 0xfb, 0x64, 0xfb, 0x64, 0xfb, 0x64, 0xfb, 0x64, 0x3b, 0x65, 0x5a, 0x6d, 0x5b, 0x6d, 0xbb, 0x75, 0x59, 0x75, 0xd5, 0x4b, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x4b, 0x95, 0x43, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xd5, 0x4b, 0xf5, 0x4b, 0xf6, 0x53, 0xf6, 0x53, 0xf6, 0x53, 0xf6, 0x53, 0xf6, 0x53, 0xf7, 0x53, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x7b, 0x54, 0x9a, 0x54, 0xbb, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x59, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x43, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0x96, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x95, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x95, 0x43, 0xb6, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x2a, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x13, 0x33, 0x13, 0x33, 0x13, 0x33, 0x13, 0x33, 0x13, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x95, 0x43, + 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x95, 0x43, 0xd7, 0x4b, 0x59, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x7a, 0x54, 0x9a, 0x5c, 0xda, 0x5c, 0x1b, 0x65, 0x1b, 0x6d, 0x1b, 0x6d, 0x1b, 0x65, 0xda, 0x64, 0xfb, 0x64, 0x3b, 0x65, 0x5b, 0x6d, 0xfa, 0x64, 0xd5, 0x4b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x4b, 0x95, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xd5, 0x4b, 0xd5, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x9a, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x59, 0x54, 0xf7, 0x4b, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x14, 0x33, 0x13, 0x33, 0x14, 0x33, 0x14, 0x33, 0x13, 0x33, 0x13, 0x33, 0x13, 0x33, 0xf3, 0x32, 0x13, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x13, 0x33, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, + 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0xb6, 0x4b, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0xbb, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xfb, 0x64, 0x1b, 0x6d, 0x1b, 0x6d, 0x1b, 0x6d, 0x1b, 0x65, 0xfa, 0x64, 0x1b, 0x65, 0x1a, 0x65, 0x16, 0x54, 0x54, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x4b, 0xd5, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x43, 0xd7, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x39, 0x54, 0x39, 0x54, 0x18, 0x4c, 0x38, 0x4c, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x39, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x59, 0x54, 0x9b, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0x59, 0x54, 0xf7, 0x43, 0xf7, 0x4b, 0xf7, 0x43, 0xd7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x96, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x2a, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xd2, 0x2a, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x75, 0x3b, + 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x95, 0x43, 0x18, 0x54, 0x39, 0x54, 0x38, 0x54, 0x59, 0x54, 0xbb, 0x5c, 0x9b, 0x5c, 0xbb, 0x5c, 0xdb, 0x5c, 0xfb, 0x64, 0x1b, 0x6d, 0x3b, 0x6d, 0x3b, 0x6d, 0x3b, 0x65, 0x1a, 0x65, 0x56, 0x54, 0x34, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x39, 0x4c, 0x59, 0x54, 0x59, 0x54, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x59, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x59, 0x4c, 0x9a, 0x54, 0xbb, 0x5c, 0xdb, 0x5c, 0xdb, 0x64, 0xdb, 0x5c, 0xdb, 0x5c, 0xbb, 0x5c, 0x59, 0x54, 0xf7, 0x4b, 0xf7, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0xb6, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0xd6, 0x43, 0xd6, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x2a, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xd2, 0x2a, 0xd2, 0x2a, 0xb2, 0x2a, 0xd2, 0x2a, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, + 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0xd6, 0x4b, 0x38, 0x54, 0x9a, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xdb, 0x64, 0xfb, 0x64, 0x3b, 0x65, 0x3b, 0x65, 0x1b, 0x65, 0x98, 0x5c, 0x54, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x39, 0x4c, 0x59, 0x54, 0x59, 0x54, 0x39, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x79, 0x54, 0x59, 0x54, 0x59, 0x54, 0xba, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xdb, 0x64, 0xfb, 0x64, 0xdb, 0x5c, 0x9a, 0x5c, 0x38, 0x4c, 0xf7, 0x4b, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xd7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x96, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xd2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, + 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x43, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x33, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x43, 0x55, 0x3b, 0x78, 0x5c, 0xdb, 0x5c, 0xdb, 0x64, 0xbb, 0x5c, 0xdb, 0x64, 0xdb, 0x5c, 0xdb, 0x64, 0xfb, 0x64, 0x1b, 0x65, 0xda, 0x64, 0xb5, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x39, 0x4c, 0x59, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x9a, 0x54, 0x9b, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0x9b, 0x5c, 0x9a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x9a, 0x5c, 0xbb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0x7a, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0x96, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0xd7, 0x43, 0x38, 0x54, 0x17, 0x4c, 0x17, 0x54, 0x17, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x2a, 0xd2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, + 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0x13, 0x3b, 0xf3, 0x3a, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x17, 0x54, 0x37, 0x54, 0x99, 0x5c, 0xfb, 0x64, 0xdb, 0x64, 0xfb, 0x64, 0xdb, 0x64, 0xfb, 0x64, 0xfa, 0x64, 0x37, 0x54, 0x54, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x38, 0x4c, 0x39, 0x4c, 0x39, 0x4c, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x7a, 0x54, 0xbb, 0x5c, 0xdb, 0x5c, 0xfb, 0x64, 0xfb, 0x64, 0xfb, 0x64, 0xfb, 0x64, 0xdb, 0x5c, 0xbb, 0x5c, 0x9b, 0x54, 0x9b, 0x5c, 0xbb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xbb, 0x5c, 0xdb, 0x5c, 0xfb, 0x64, 0xdb, 0x64, 0x79, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x44, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xd6, 0x3b, 0xd6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x33, 0xb6, 0x43, 0x38, 0x54, 0x38, 0x4c, 0x37, 0x54, 0x17, 0x54, 0x17, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0x18, 0x54, 0x18, 0x4c, 0xf7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, + 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x95, 0x43, 0x17, 0x54, 0x17, 0x4c, 0x37, 0x54, 0x58, 0x54, 0xba, 0x5c, 0xdb, 0x64, 0x1b, 0x65, 0x1b, 0x65, 0xb9, 0x64, 0x54, 0x3b, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x39, 0x4c, 0x38, 0x4c, 0x58, 0x4c, 0x79, 0x54, 0x9a, 0x54, 0xbb, 0x5c, 0xfb, 0x64, 0x1b, 0x65, 0x7b, 0x6d, 0x9b, 0x6d, 0x9b, 0x6d, 0x5b, 0x6d, 0xfb, 0x64, 0xdb, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xdb, 0x5c, 0xbb, 0x5c, 0xfb, 0x64, 0x1b, 0x65, 0xdb, 0x5c, 0x79, 0x54, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x44, 0xf7, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xd6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0xf7, 0x4b, 0x38, 0x54, 0x38, 0x4c, 0x37, 0x54, 0x17, 0x54, 0x17, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x58, 0x54, 0x38, 0x54, 0x18, 0x54, 0xf7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0x13, 0x3b, + 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0x95, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0xb5, 0x43, 0x17, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x78, 0x54, 0xb9, 0x5c, 0xda, 0x64, 0xb5, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x59, 0x54, 0x7a, 0x54, 0xbb, 0x54, 0xdb, 0x5c, 0x1b, 0x65, 0x7b, 0x6d, 0xdb, 0x75, 0xfa, 0x75, 0xfa, 0x75, 0xdb, 0x75, 0x9b, 0x6d, 0x3b, 0x65, 0xfb, 0x64, 0xdb, 0x64, 0xbb, 0x5c, 0x9b, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xdb, 0x5c, 0x1b, 0x65, 0x1b, 0x65, 0x9a, 0x5c, 0x58, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x44, 0xf7, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x33, 0xf7, 0x4b, 0x59, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x58, 0x54, 0x79, 0x5c, 0x79, 0x5c, 0x38, 0x54, 0x18, 0x54, 0xf7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x3b, + 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x53, 0x17, 0x54, 0x37, 0x54, 0x17, 0x54, 0xd6, 0x4b, 0x34, 0x3b, 0x95, 0x43, 0x17, 0x54, 0x17, 0x54, 0x17, 0x54, 0x37, 0x54, 0x37, 0x54, 0x57, 0x54, 0x58, 0x54, 0x17, 0x54, 0x54, 0x3b, 0x74, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x74, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x59, 0x54, 0x79, 0x54, 0x7a, 0x54, 0xbb, 0x5c, 0xdb, 0x5c, 0x3b, 0x65, 0xbb, 0x6d, 0xfa, 0x75, 0xfa, 0x7d, 0xfa, 0x7d, 0xfa, 0x7d, 0xfa, 0x7d, 0xbb, 0x6d, 0x5b, 0x65, 0x1b, 0x65, 0xfb, 0x64, 0xbb, 0x5c, 0x9b, 0x54, 0xbb, 0x5c, 0xdb, 0x5c, 0xfb, 0x64, 0x3b, 0x65, 0xfb, 0x64, 0x79, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x37, 0x4c, 0x17, 0x44, 0x17, 0x44, 0x17, 0x44, 0xf7, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0x96, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0xb6, 0x43, 0x38, 0x54, 0x59, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x37, 0x4c, 0x38, 0x54, 0x58, 0x54, 0x59, 0x54, 0x59, 0x54, 0x9a, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9a, 0x5c, 0xbb, 0x64, 0x9b, 0x5c, 0x7a, 0x5c, 0x38, 0x54, 0x38, 0x54, 0xf7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, + 0xf3, 0x3a, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x54, 0x37, 0x54, 0x38, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x37, 0x54, 0x17, 0x54, 0x17, 0x54, 0x37, 0x54, 0x37, 0x54, 0x38, 0x54, 0x58, 0x54, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x43, 0x74, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x94, 0x43, 0x94, 0x43, 0x94, 0x43, 0x94, 0x43, 0x94, 0x43, 0x74, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x39, 0x4c, 0x79, 0x54, 0x7a, 0x54, 0x9b, 0x54, 0xdb, 0x5c, 0xfb, 0x5c, 0x5b, 0x6d, 0xbb, 0x75, 0xfa, 0x7d, 0xfa, 0x85, 0xfb, 0x85, 0xfb, 0x8d, 0xfb, 0x85, 0xfa, 0x7d, 0xbb, 0x6d, 0x5b, 0x6d, 0x1b, 0x65, 0xdb, 0x5c, 0xbb, 0x54, 0x9b, 0x54, 0xbb, 0x5c, 0xdb, 0x5c, 0x1b, 0x65, 0x3b, 0x65, 0xba, 0x5c, 0x58, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x17, 0x44, 0x17, 0x44, 0x17, 0x44, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xd6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x33, 0xf8, 0x4b, 0x79, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x7a, 0x54, 0xbb, 0x5c, 0xdb, 0x64, 0xfb, 0x64, 0xfb, 0x64, 0xfb, 0x64, 0xdb, 0x64, 0x9b, 0x5c, 0x7a, 0x5c, 0x59, 0x54, 0x18, 0x54, 0xf7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb1, 0x2a, 0x91, 0x2a, 0xb1, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, + 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0x17, 0x54, 0x17, 0x54, 0x38, 0x54, 0x9a, 0x5c, 0xbb, 0x64, 0xba, 0x64, 0x58, 0x5c, 0x58, 0x54, 0x37, 0x54, 0x37, 0x54, 0xd6, 0x4b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x75, 0x43, 0x75, 0x43, 0x74, 0x43, 0x94, 0x43, 0x94, 0x43, 0x94, 0x43, 0x94, 0x43, 0x94, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x4b, 0xb5, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x38, 0x4c, 0x58, 0x4c, 0x58, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x9b, 0x54, 0xbb, 0x5c, 0xdb, 0x5c, 0xfb, 0x64, 0x5b, 0x6d, 0xdb, 0x75, 0xfa, 0x7d, 0xfb, 0x85, 0xfb, 0x8d, 0xfb, 0x95, 0xfb, 0x8d, 0xfb, 0x85, 0xfa, 0x75, 0xbb, 0x6d, 0x5b, 0x6d, 0x1b, 0x65, 0xdb, 0x5c, 0x9b, 0x54, 0xbb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0x1b, 0x65, 0xfb, 0x64, 0x99, 0x5c, 0x58, 0x54, 0x58, 0x54, 0x58, 0x4c, 0x58, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x44, 0x18, 0x44, 0x17, 0x44, 0x17, 0x44, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0x96, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0xd6, 0x43, 0x59, 0x54, 0x79, 0x54, 0x58, 0x54, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0xdb, 0x64, 0x3b, 0x6d, 0x7b, 0x6d, 0x7b, 0x75, 0x3b, 0x6d, 0x1b, 0x65, 0xdb, 0x64, 0xbb, 0x5c, 0x9a, 0x5c, 0x59, 0x54, 0x38, 0x54, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x74, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0xb1, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb1, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x91, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, + 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0x38, 0x54, 0x9a, 0x5c, 0x9a, 0x5c, 0x9b, 0x5c, 0xbb, 0x5c, 0xbb, 0x64, 0xba, 0x5c, 0x57, 0x54, 0xb5, 0x43, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x54, 0x3b, 0x74, 0x43, 0x74, 0x43, 0x94, 0x43, 0x94, 0x4b, 0x94, 0x4b, 0x74, 0x4b, 0x94, 0x4b, 0x95, 0x4b, 0x75, 0x43, 0x95, 0x4b, 0x95, 0x4b, 0xb5, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x4b, 0xb5, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x79, 0x54, 0x99, 0x54, 0xba, 0x5c, 0xbb, 0x5c, 0xdb, 0x5c, 0x1b, 0x65, 0x7b, 0x6d, 0xdb, 0x75, 0xfa, 0x7d, 0xfb, 0x85, 0xfb, 0x95, 0xfb, 0x9d, 0xfb, 0x9d, 0xfb, 0x8d, 0xfa, 0x7d, 0xfb, 0x75, 0x9b, 0x6d, 0x3b, 0x6d, 0xdb, 0x5c, 0xbb, 0x5c, 0x9b, 0x54, 0xbb, 0x5c, 0xdb, 0x5c, 0xfb, 0x5c, 0xfb, 0x64, 0xba, 0x5c, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x58, 0x4c, 0x58, 0x4c, 0x58, 0x4c, 0x58, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x44, 0x18, 0x44, 0x17, 0x44, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x18, 0x4c, 0x7a, 0x54, 0x59, 0x4c, 0x38, 0x4c, 0x59, 0x54, 0x7a, 0x54, 0x9a, 0x5c, 0xbb, 0x5c, 0xdb, 0x64, 0x5b, 0x6d, 0xdb, 0x75, 0x1b, 0x7e, 0x7b, 0x75, 0x5b, 0x6d, 0x1b, 0x6d, 0xfb, 0x64, 0xbb, 0x5c, 0x9b, 0x5c, 0x79, 0x54, 0x59, 0x54, 0x18, 0x4c, 0xf7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb1, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0xb1, 0x2a, 0xb1, 0x2a, 0xb1, 0x2a, 0x91, 0x2a, 0xb1, 0x2a, 0x91, 0x2a, 0xb1, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, + 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0x58, 0x54, 0x58, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xbb, 0x64, 0x79, 0x5c, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x94, 0x43, 0x94, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x94, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x75, 0x43, 0x95, 0x4b, 0xb5, 0x4b, 0x95, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf7, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x78, 0x54, 0x98, 0x54, 0xb9, 0x5c, 0xba, 0x5c, 0xda, 0x5c, 0xfb, 0x5c, 0x1b, 0x65, 0x7b, 0x6d, 0xdb, 0x75, 0x1a, 0x7e, 0xfb, 0x85, 0x1b, 0x96, 0x1b, 0x9e, 0x1b, 0x9e, 0x1b, 0x96, 0xfb, 0x85, 0xfa, 0x75, 0xfb, 0x75, 0x9b, 0x6d, 0xfb, 0x64, 0xbb, 0x5c, 0x9b, 0x54, 0x9b, 0x54, 0xbb, 0x5c, 0xfb, 0x64, 0xfb, 0x64, 0xdb, 0x5c, 0x7a, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x4c, 0x79, 0x4c, 0x79, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x44, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0xf7, 0x43, 0x5a, 0x54, 0x5a, 0x4c, 0x39, 0x4c, 0x59, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0xbb, 0x5c, 0xfb, 0x64, 0x5b, 0x6d, 0xdb, 0x7d, 0x1b, 0x86, 0x7b, 0x7d, 0x5b, 0x75, 0x5b, 0x6d, 0x1b, 0x6d, 0xfb, 0x64, 0xbb, 0x5c, 0xbb, 0x5c, 0x9a, 0x54, 0x59, 0x54, 0x18, 0x4c, 0xf7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb1, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0xb1, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0xb1, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd2, 0x32, + 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0x58, 0x54, 0x58, 0x54, 0x59, 0x54, 0x79, 0x54, 0x59, 0x54, 0x59, 0x54, 0x9a, 0x5c, 0x17, 0x54, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x74, 0x43, 0x74, 0x43, 0x95, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x43, 0x95, 0x4b, 0x95, 0x4b, 0xb5, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xf7, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x57, 0x54, 0x78, 0x54, 0x78, 0x54, 0x98, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0xda, 0x5c, 0xfa, 0x5c, 0xfb, 0x64, 0x3b, 0x65, 0x7b, 0x6d, 0xdb, 0x75, 0x1a, 0x76, 0x1b, 0x86, 0x1b, 0x8e, 0x1b, 0x96, 0x1b, 0x9e, 0x1b, 0x96, 0x1b, 0x8e, 0xfa, 0x7d, 0xfb, 0x75, 0xbb, 0x6d, 0x3b, 0x65, 0xdb, 0x5c, 0xbb, 0x5c, 0xbb, 0x54, 0x9b, 0x54, 0xdb, 0x5c, 0xfb, 0x5c, 0xfb, 0x64, 0xba, 0x5c, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x99, 0x54, 0x9a, 0x54, 0x7a, 0x4c, 0x7a, 0x4c, 0x7a, 0x4c, 0x7a, 0x4c, 0x7a, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x43, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x3b, 0x96, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x39, 0x4c, 0x7a, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x7b, 0x54, 0x7b, 0x5c, 0x9b, 0x5c, 0xdb, 0x64, 0x5b, 0x6d, 0xfb, 0x75, 0x1b, 0x86, 0x7b, 0x7d, 0x5b, 0x75, 0x7b, 0x75, 0x5b, 0x75, 0x3b, 0x6d, 0xfb, 0x64, 0xdb, 0x64, 0xbb, 0x5c, 0x9a, 0x5c, 0x59, 0x54, 0x38, 0x54, 0x18, 0x4c, 0xd7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb1, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, + 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x59, 0x54, 0x79, 0x5c, 0x59, 0x54, 0x59, 0x5c, 0x59, 0x54, 0x95, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x74, 0x43, 0x74, 0x43, 0x94, 0x4b, 0x94, 0x4b, 0x95, 0x4b, 0x95, 0x53, 0xb5, 0x53, 0x95, 0x4b, 0x75, 0x43, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf7, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0x37, 0x4c, 0x57, 0x4c, 0x57, 0x54, 0x78, 0x54, 0x78, 0x54, 0x98, 0x5c, 0x98, 0x5c, 0xb8, 0x5c, 0xd9, 0x64, 0xfa, 0x64, 0x1b, 0x65, 0x3b, 0x65, 0x7b, 0x6d, 0xdb, 0x6d, 0x1a, 0x76, 0x1b, 0x7e, 0x1b, 0x86, 0x1b, 0x8e, 0x1b, 0x96, 0x1b, 0x96, 0x1b, 0x8e, 0x1a, 0x7e, 0xfb, 0x6d, 0xbb, 0x6d, 0x5b, 0x6d, 0xfb, 0x64, 0xbb, 0x5c, 0xbb, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xdb, 0x5c, 0xfb, 0x64, 0xdb, 0x5c, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9b, 0x54, 0xbb, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0x9a, 0x54, 0x7a, 0x54, 0x79, 0x54, 0x58, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0x96, 0x3b, 0x75, 0x3b, 0xd6, 0x43, 0x7a, 0x54, 0x9b, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0xbb, 0x5c, 0x1b, 0x65, 0x9b, 0x75, 0x1b, 0x7e, 0xdb, 0x85, 0x7b, 0x7d, 0x7b, 0x7d, 0x7b, 0x75, 0x5b, 0x6d, 0x3b, 0x6d, 0x1b, 0x65, 0xfb, 0x64, 0xbb, 0x5c, 0x9a, 0x5c, 0x79, 0x54, 0x58, 0x54, 0x18, 0x4c, 0xf7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd7, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, + 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0x38, 0x54, 0x58, 0x54, 0x79, 0x54, 0x79, 0x5c, 0x79, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0xf3, 0x32, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x43, 0x74, 0x43, 0x74, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x53, 0xb5, 0x53, 0x95, 0x4b, 0x95, 0x43, 0x95, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf7, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0x37, 0x4c, 0x57, 0x54, 0x57, 0x54, 0x77, 0x54, 0x77, 0x54, 0x98, 0x5c, 0x98, 0x5c, 0xb8, 0x5c, 0xb9, 0x64, 0xda, 0x64, 0xfa, 0x64, 0x3b, 0x6d, 0x7c, 0x6d, 0xdb, 0x6d, 0x1b, 0x76, 0x1a, 0x7e, 0x1b, 0x86, 0x1b, 0x8e, 0x1b, 0x8e, 0x1b, 0x8e, 0x1b, 0x86, 0x1a, 0x7e, 0xfb, 0x75, 0xbb, 0x6d, 0x7b, 0x6d, 0x1b, 0x65, 0xdb, 0x5c, 0xbb, 0x5c, 0xbb, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0xdb, 0x5c, 0xdb, 0x5c, 0xba, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xdb, 0x54, 0xdb, 0x54, 0xbb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xbb, 0x54, 0x9b, 0x54, 0x9a, 0x54, 0x79, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0xf7, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0x75, 0x3b, 0xf7, 0x4b, 0x9a, 0x54, 0x9b, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0x9b, 0x5c, 0xbb, 0x5c, 0xdb, 0x64, 0x3b, 0x65, 0xdb, 0x75, 0x3b, 0x86, 0x9b, 0x7d, 0x7b, 0x75, 0x7b, 0x7d, 0x7b, 0x75, 0x7b, 0x6d, 0x5b, 0x6d, 0x1b, 0x65, 0xdb, 0x64, 0xbb, 0x5c, 0x9a, 0x5c, 0x79, 0x5c, 0x59, 0x54, 0x38, 0x4c, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xf3, 0x3a, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0xb1, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, + 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0x17, 0x54, 0x38, 0x54, 0x58, 0x54, 0x78, 0x54, 0x79, 0x5c, 0x99, 0x5c, 0x9a, 0x5c, 0x9a, 0x5c, 0x17, 0x54, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x94, 0x4b, 0x95, 0x4b, 0x95, 0x53, 0x95, 0x53, 0x95, 0x4b, 0x75, 0x43, 0x95, 0x4b, 0x95, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x57, 0x4c, 0x57, 0x54, 0x77, 0x54, 0x77, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0x98, 0x64, 0xb9, 0x64, 0xd9, 0x6c, 0xfa, 0x6c, 0x1b, 0x6d, 0x3b, 0x6d, 0x9b, 0x75, 0x1b, 0x76, 0x1a, 0x76, 0x1a, 0x7e, 0x1b, 0x86, 0x1b, 0x86, 0x1b, 0x86, 0x1b, 0x86, 0x1a, 0x7e, 0xfb, 0x75, 0xbb, 0x6d, 0x7b, 0x6d, 0x3b, 0x65, 0xfb, 0x5c, 0xdb, 0x5c, 0xbb, 0x5c, 0xbb, 0x54, 0xbb, 0x54, 0xbb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0x7b, 0x4c, 0xbb, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xdb, 0x54, 0xdb, 0x54, 0xdb, 0x5c, 0xdb, 0x5c, 0xfb, 0x5c, 0x1b, 0x5d, 0xfb, 0x5c, 0x1b, 0x5d, 0x1b, 0x5d, 0xfb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0x9a, 0x54, 0x79, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x3b, 0x39, 0x54, 0xbb, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xdb, 0x64, 0x5b, 0x6d, 0xfb, 0x75, 0x9b, 0x75, 0x7c, 0x75, 0x9b, 0x75, 0x7b, 0x75, 0x9b, 0x75, 0x7c, 0x6d, 0x3b, 0x6d, 0x1b, 0x6d, 0xfb, 0x64, 0xbb, 0x64, 0x9a, 0x5c, 0x7a, 0x54, 0x59, 0x54, 0x38, 0x54, 0x18, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xf2, 0x32, 0xf3, 0x3a, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x70, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, + 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0x17, 0x54, 0x38, 0x54, 0x58, 0x54, 0x78, 0x5c, 0x79, 0x5c, 0x99, 0x5c, 0xba, 0x5c, 0xba, 0x5c, 0x95, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x43, 0x94, 0x43, 0x94, 0x4b, 0x94, 0x4b, 0x94, 0x4b, 0x95, 0x53, 0xb5, 0x53, 0x95, 0x4b, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0x37, 0x4c, 0x57, 0x54, 0x57, 0x54, 0x77, 0x54, 0x77, 0x5c, 0x78, 0x5c, 0x78, 0x64, 0x98, 0x64, 0xb8, 0x6c, 0xb9, 0x6c, 0xda, 0x6c, 0xfa, 0x6c, 0x1b, 0x75, 0x5b, 0x75, 0xbc, 0x75, 0x1b, 0x7e, 0x1b, 0x7e, 0x1b, 0x7e, 0x1b, 0x86, 0x1a, 0x86, 0x1a, 0x7e, 0x1a, 0x76, 0xfb, 0x6d, 0x9b, 0x65, 0x5b, 0x65, 0x3b, 0x65, 0x1b, 0x65, 0xfb, 0x5c, 0xdb, 0x5c, 0xbc, 0x5c, 0xbb, 0x5c, 0xbc, 0x5c, 0xbb, 0x5c, 0xbb, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0xbb, 0x54, 0xdb, 0x54, 0xdb, 0x54, 0xdb, 0x5c, 0xfb, 0x5c, 0xfb, 0x5c, 0x1b, 0x65, 0x3b, 0x65, 0x3b, 0x65, 0x5b, 0x65, 0x5b, 0x65, 0x3b, 0x65, 0x3b, 0x65, 0x1b, 0x65, 0xfb, 0x64, 0xfc, 0x5c, 0xbb, 0x5c, 0x9a, 0x54, 0x79, 0x54, 0x58, 0x54, 0x37, 0x4c, 0xf7, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x79, 0x54, 0xfc, 0x64, 0xdb, 0x64, 0xdb, 0x5c, 0xbb, 0x5c, 0x9b, 0x5c, 0xbb, 0x5c, 0xfb, 0x64, 0x3b, 0x6d, 0x5b, 0x6d, 0x7b, 0x6d, 0x9c, 0x75, 0x9b, 0x75, 0x9b, 0x6d, 0x5b, 0x6d, 0x1b, 0x65, 0xfb, 0x64, 0xbb, 0x5c, 0xbb, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x7a, 0x54, 0x79, 0x54, 0x59, 0x54, 0x38, 0x54, 0x38, 0x54, 0x18, 0x4c, 0x17, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xd7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0x13, 0x3b, 0xf3, 0x3a, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0xb2, 0x2a, + 0x91, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0x59, 0x54, 0x38, 0x54, 0x17, 0x54, 0x58, 0x54, 0x78, 0x5c, 0x79, 0x5c, 0x99, 0x5c, 0x99, 0x64, 0x9a, 0x64, 0x75, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x94, 0x43, 0x95, 0x4b, 0x94, 0x4b, 0x94, 0x4b, 0x94, 0x4b, 0x94, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0x17, 0x4c, 0x37, 0x4c, 0x57, 0x54, 0x77, 0x54, 0x77, 0x5c, 0x78, 0x5c, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x6c, 0xb9, 0x6c, 0xda, 0x6c, 0xfa, 0x74, 0xfb, 0x74, 0x1b, 0x75, 0x7c, 0x75, 0xdc, 0x7d, 0x1b, 0x7e, 0x1b, 0x7e, 0x1b, 0x7e, 0x1a, 0x7e, 0x1a, 0x7e, 0x1b, 0x76, 0xdb, 0x6d, 0x7b, 0x65, 0x3b, 0x65, 0x3b, 0x65, 0x1c, 0x65, 0x1b, 0x65, 0x1b, 0x65, 0xdb, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xbc, 0x5c, 0xbb, 0x5c, 0xbb, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xdb, 0x54, 0xfb, 0x5c, 0xfb, 0x5c, 0x1b, 0x65, 0x3b, 0x65, 0x7b, 0x65, 0xbb, 0x6d, 0xdb, 0x6d, 0xdb, 0x6d, 0xdc, 0x6d, 0xbc, 0x6d, 0x9c, 0x6d, 0x5b, 0x6d, 0x3b, 0x65, 0x1c, 0x65, 0xfb, 0x64, 0xbb, 0x5c, 0x9a, 0x5c, 0x59, 0x54, 0x38, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xba, 0x64, 0xfc, 0x64, 0xdb, 0x64, 0xbb, 0x5c, 0xbc, 0x5c, 0xbb, 0x54, 0xbb, 0x5c, 0xdb, 0x64, 0x1b, 0x6d, 0x3c, 0x6d, 0x5b, 0x6d, 0x5b, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x3b, 0x6d, 0x1c, 0x65, 0xdb, 0x5c, 0xbb, 0x5c, 0x9c, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9b, 0x54, 0x7a, 0x5c, 0x7a, 0x54, 0x79, 0x54, 0x58, 0x54, 0x38, 0x54, 0x37, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, + 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0xd7, 0x4b, 0x9b, 0x5c, 0x9b, 0x5c, 0x37, 0x54, 0x38, 0x54, 0x58, 0x54, 0x78, 0x5c, 0x99, 0x5c, 0x99, 0x64, 0xba, 0x64, 0x54, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x55, 0x43, 0x54, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x94, 0x43, 0x95, 0x43, 0x95, 0x4b, 0x95, 0x4b, 0x94, 0x4b, 0x94, 0x4b, 0x94, 0x4b, 0x95, 0x4b, 0x94, 0x43, 0xb5, 0x43, 0x95, 0x4b, 0x95, 0x43, 0x74, 0x43, 0x75, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0xb5, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0x16, 0x4c, 0x37, 0x4c, 0x57, 0x54, 0x77, 0x5c, 0x77, 0x5c, 0x98, 0x5c, 0x98, 0x64, 0x98, 0x64, 0x98, 0x6c, 0x98, 0x6c, 0xb9, 0x6c, 0xd9, 0x6c, 0xda, 0x74, 0xfa, 0x74, 0x1b, 0x75, 0x3c, 0x75, 0x7c, 0x7d, 0xdc, 0x7d, 0x1b, 0x7e, 0x1a, 0x7e, 0x3a, 0x7e, 0x1a, 0x76, 0x1b, 0x76, 0xfb, 0x6d, 0x7b, 0x65, 0x3b, 0x65, 0x3b, 0x65, 0x3c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0xfb, 0x64, 0xdb, 0x5c, 0xdb, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xbb, 0x54, 0xbc, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xfc, 0x5c, 0x1b, 0x5d, 0x3c, 0x65, 0x7c, 0x65, 0xbb, 0x6d, 0xfb, 0x75, 0x1b, 0x76, 0x1b, 0x76, 0x3b, 0x76, 0x3b, 0x76, 0x1b, 0x76, 0x1b, 0x76, 0xdc, 0x75, 0x7b, 0x6d, 0x3b, 0x65, 0x1c, 0x65, 0xdb, 0x5c, 0xba, 0x5c, 0x79, 0x54, 0x38, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xba, 0x5c, 0x1c, 0x65, 0xdb, 0x64, 0xbb, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xfb, 0x64, 0xfc, 0x64, 0x1b, 0x65, 0x1b, 0x6d, 0x1b, 0x6d, 0x3b, 0x6d, 0x1c, 0x65, 0x1c, 0x65, 0xfb, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xbb, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbb, 0x5c, 0xbc, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0x9a, 0x5c, 0x79, 0x5c, 0x58, 0x54, 0x38, 0x54, 0x17, 0x54, 0xf7, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x3a, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, + 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x39, 0x54, 0x9c, 0x5c, 0xbc, 0x5c, 0xdb, 0x64, 0x17, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x5c, 0x99, 0x5c, 0x78, 0x5c, 0x54, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x94, 0x43, 0x94, 0x43, 0x94, 0x4b, 0x94, 0x4b, 0x95, 0x4b, 0x94, 0x4b, 0xb5, 0x4b, 0xb5, 0x43, 0x95, 0x43, 0xb5, 0x4b, 0x94, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf6, 0x4b, 0x36, 0x4c, 0x57, 0x54, 0x77, 0x5c, 0x77, 0x5c, 0x97, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x6c, 0x98, 0x6c, 0xb8, 0x6c, 0xb9, 0x6c, 0xda, 0x6c, 0xda, 0x74, 0xfb, 0x74, 0x1b, 0x75, 0x3c, 0x7d, 0x9c, 0x7d, 0xdc, 0x7d, 0x1b, 0x7e, 0x3a, 0x7e, 0x3a, 0x76, 0x1b, 0x76, 0xdb, 0x6d, 0x7b, 0x65, 0x1b, 0x5d, 0x1b, 0x5d, 0x1b, 0x65, 0x5c, 0x6d, 0x7c, 0x6d, 0x5c, 0x65, 0xfb, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xdb, 0x54, 0xdb, 0x54, 0xfc, 0x5c, 0x1c, 0x65, 0x3b, 0x65, 0x9c, 0x6d, 0xfc, 0x6d, 0x1b, 0x76, 0x1b, 0x7e, 0x1a, 0x7e, 0x3b, 0x7e, 0x3b, 0x7e, 0x3a, 0x7e, 0x3a, 0x7e, 0x3b, 0x7e, 0x1b, 0x76, 0xdc, 0x75, 0x7b, 0x6d, 0x1c, 0x65, 0xfc, 0x64, 0xbb, 0x5c, 0x9a, 0x5c, 0x58, 0x54, 0x37, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xd6, 0x43, 0x96, 0x43, 0x17, 0x4c, 0xdb, 0x64, 0xfc, 0x64, 0xdc, 0x64, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xdb, 0x64, 0xfc, 0x64, 0xfb, 0x64, 0x1b, 0x65, 0x1b, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xfc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfb, 0x64, 0xfb, 0x64, 0xdb, 0x64, 0xfb, 0x64, 0xfb, 0x64, 0xfb, 0x64, 0xfc, 0x64, 0xdc, 0x64, 0x9b, 0x5c, 0x79, 0x5c, 0x58, 0x54, 0x37, 0x54, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x22, 0x70, 0x22, 0x70, 0x22, 0x70, 0x22, 0x70, 0x2a, 0x70, 0x22, 0x50, 0x2a, 0x50, 0x22, 0x70, 0x22, 0x70, 0x22, 0x70, 0x22, 0x70, 0x22, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, + 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x95, 0x43, 0xd7, 0x4b, 0x9b, 0x5c, 0x9b, 0x5c, 0xbc, 0x5c, 0xbb, 0x5c, 0x9a, 0x5c, 0x37, 0x54, 0x58, 0x54, 0x58, 0x54, 0x79, 0x5c, 0x37, 0x54, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x74, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x94, 0x43, 0x95, 0x43, 0x95, 0x43, 0x94, 0x43, 0x94, 0x43, 0xb4, 0x43, 0x95, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x94, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0xb5, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x4b, 0x16, 0x4c, 0x36, 0x54, 0x57, 0x5c, 0x77, 0x5c, 0x97, 0x5c, 0x97, 0x64, 0x98, 0x64, 0xb8, 0x6c, 0xb8, 0x6c, 0xb8, 0x6c, 0xb9, 0x6c, 0xd9, 0x6c, 0xda, 0x74, 0xfa, 0x74, 0xfb, 0x74, 0x1c, 0x75, 0x5c, 0x7d, 0x9c, 0x7d, 0xfc, 0x7d, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x76, 0xfc, 0x6d, 0x7c, 0x65, 0x3c, 0x5d, 0x1b, 0x5d, 0x1c, 0x5d, 0x3b, 0x65, 0x7c, 0x6d, 0x9c, 0x6d, 0x3c, 0x65, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdb, 0x5c, 0xdb, 0x54, 0xdc, 0x54, 0xfc, 0x54, 0xfc, 0x5c, 0xfc, 0x5c, 0x1c, 0x5d, 0x5b, 0x65, 0xbc, 0x6d, 0xfb, 0x75, 0x3b, 0x76, 0x3b, 0x7e, 0x3b, 0x86, 0x3b, 0x86, 0x3b, 0x8e, 0x3b, 0x8e, 0x3b, 0x86, 0x3b, 0x86, 0x3b, 0x7e, 0x3b, 0x7e, 0xfb, 0x75, 0x9c, 0x75, 0x3b, 0x6d, 0xfc, 0x64, 0xdb, 0x5c, 0x9a, 0x5c, 0x58, 0x54, 0x38, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xd6, 0x43, 0xf7, 0x4b, 0x38, 0x54, 0xda, 0x64, 0x1c, 0x65, 0xfc, 0x64, 0xfc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x64, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xfc, 0x64, 0xdc, 0x5c, 0xfb, 0x64, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x3c, 0x6d, 0x3c, 0x6d, 0x1c, 0x6d, 0x1c, 0x6d, 0x1c, 0x65, 0xfc, 0x64, 0xdb, 0x64, 0x9a, 0x5c, 0x58, 0x5c, 0x37, 0x54, 0x17, 0x54, 0xf7, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x22, 0x50, 0x22, 0x70, 0x22, 0x70, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x70, 0x22, 0x50, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, + 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x3a, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x38, 0x54, 0x7a, 0x54, 0x7b, 0x5c, 0x9c, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0x79, 0x5c, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0xf7, 0x4b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x94, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x94, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf6, 0x4b, 0x16, 0x4c, 0x36, 0x54, 0x37, 0x54, 0x57, 0x5c, 0x77, 0x5c, 0x97, 0x64, 0x97, 0x64, 0xb8, 0x6c, 0xb8, 0x6c, 0xb8, 0x6c, 0xb9, 0x6c, 0xb9, 0x6c, 0xd9, 0x6c, 0xda, 0x74, 0xfb, 0x74, 0x1b, 0x75, 0x3c, 0x75, 0x5c, 0x75, 0xbc, 0x75, 0x1b, 0x76, 0x3b, 0x76, 0x3b, 0x76, 0xfb, 0x6d, 0x7b, 0x65, 0x3c, 0x65, 0x1c, 0x5d, 0x1b, 0x5d, 0x1b, 0x65, 0x5c, 0x65, 0x7c, 0x6d, 0x5c, 0x65, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbb, 0x54, 0xbb, 0x54, 0xdc, 0x54, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0x1b, 0x65, 0x5b, 0x65, 0xbc, 0x6d, 0x1b, 0x76, 0x1b, 0x7e, 0x3b, 0x86, 0x3b, 0x86, 0x3b, 0x8e, 0x3b, 0x8e, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x8e, 0x3b, 0x8e, 0x3b, 0x86, 0x3b, 0x7e, 0x1b, 0x7e, 0xbc, 0x75, 0x5c, 0x6d, 0x1c, 0x65, 0xdb, 0x64, 0x9a, 0x5c, 0x59, 0x54, 0x38, 0x54, 0x17, 0x4c, 0xf6, 0x4b, 0xf7, 0x4b, 0x39, 0x4c, 0x59, 0x54, 0xda, 0x64, 0x1b, 0x6d, 0x1c, 0x65, 0xfc, 0x64, 0xdc, 0x5c, 0xdc, 0x64, 0xfc, 0x64, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0x1c, 0x6d, 0x5c, 0x6d, 0x7c, 0x6d, 0x7c, 0x75, 0x9c, 0x75, 0x7c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x1c, 0x6d, 0xfc, 0x64, 0xbb, 0x64, 0x79, 0x5c, 0x58, 0x54, 0x17, 0x54, 0xf7, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x3a, 0x14, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x22, 0x70, 0x22, 0x70, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x70, 0x22, 0x70, 0x22, 0x70, 0x2a, 0x70, 0x22, 0x70, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, + 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0xd6, 0x4b, 0x38, 0x54, 0x59, 0x54, 0x79, 0x5c, 0xbb, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdb, 0x5c, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0xd6, 0x4b, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x43, 0x95, 0x43, 0x94, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf6, 0x4b, 0x16, 0x4c, 0x16, 0x54, 0x36, 0x54, 0x57, 0x5c, 0x77, 0x5c, 0x97, 0x64, 0x97, 0x64, 0xb8, 0x64, 0xb8, 0x6c, 0xb8, 0x6c, 0xb8, 0x6c, 0xb9, 0x6c, 0xd9, 0x6c, 0xda, 0x74, 0xfa, 0x74, 0xfb, 0x74, 0x1b, 0x75, 0x5c, 0x75, 0x9c, 0x75, 0xdc, 0x75, 0x1c, 0x7e, 0x3c, 0x76, 0x3b, 0x76, 0xdc, 0x6d, 0x5c, 0x65, 0x1b, 0x5d, 0xfb, 0x5c, 0xfb, 0x5c, 0x1c, 0x65, 0x5c, 0x65, 0x3c, 0x65, 0x1c, 0x5d, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x54, 0xdc, 0x54, 0xbc, 0x54, 0xdc, 0x54, 0xfc, 0x5c, 0x1c, 0x5d, 0x3c, 0x65, 0x5c, 0x65, 0x9c, 0x6d, 0xfb, 0x75, 0x3b, 0x7e, 0x3b, 0x86, 0x3b, 0x8e, 0x3b, 0x8e, 0x3b, 0x96, 0x3c, 0x9e, 0x3c, 0x9e, 0x3b, 0x9e, 0x3b, 0x96, 0x3b, 0x8e, 0x3b, 0x86, 0x5b, 0x86, 0x3b, 0x7e, 0xbc, 0x75, 0x3c, 0x6d, 0xfc, 0x64, 0xdb, 0x64, 0x9a, 0x5c, 0x58, 0x54, 0x38, 0x54, 0x17, 0x54, 0x17, 0x4c, 0x59, 0x54, 0x79, 0x54, 0x38, 0x4c, 0xb9, 0x5c, 0x1b, 0x6d, 0x1c, 0x65, 0xfc, 0x64, 0x3c, 0x65, 0x3c, 0x6d, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0x1c, 0x6d, 0x5c, 0x6d, 0x9c, 0x75, 0xfc, 0x75, 0x1c, 0x7e, 0x3b, 0x7e, 0x3b, 0x7e, 0x3c, 0x7e, 0xdc, 0x7d, 0x9c, 0x75, 0x5c, 0x6d, 0x1c, 0x6d, 0xdc, 0x64, 0x9a, 0x5c, 0x58, 0x5c, 0x18, 0x54, 0xf7, 0x4b, 0xd6, 0x4b, 0x95, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x22, 0x70, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x70, 0x2a, 0x70, 0x22, 0x70, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, + 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x96, 0x43, 0x58, 0x54, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x9a, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xda, 0x64, 0x37, 0x54, 0x58, 0x54, 0xd6, 0x4b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x94, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd6, 0x4b, 0xf6, 0x4b, 0x16, 0x4c, 0x16, 0x54, 0x37, 0x54, 0x57, 0x5c, 0x77, 0x5c, 0x97, 0x64, 0x97, 0x64, 0xb8, 0x64, 0xb8, 0x64, 0xb8, 0x6c, 0xb8, 0x6c, 0xd9, 0x6c, 0xd9, 0x6c, 0xda, 0x6c, 0xfa, 0x6c, 0x1b, 0x6d, 0x3c, 0x6d, 0x7c, 0x75, 0xbc, 0x75, 0xdc, 0x75, 0xfc, 0x75, 0xfc, 0x75, 0xdc, 0x6d, 0x7c, 0x65, 0x1c, 0x5d, 0xfc, 0x5c, 0xfc, 0x5c, 0x1b, 0x5d, 0x3c, 0x65, 0x3c, 0x65, 0x1c, 0x65, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x54, 0xdc, 0x54, 0xfc, 0x54, 0xfc, 0x54, 0xfc, 0x5c, 0x1c, 0x5d, 0x1c, 0x5d, 0x3c, 0x65, 0x9c, 0x6d, 0xfc, 0x75, 0x3b, 0x76, 0x3b, 0x86, 0x3b, 0x86, 0x3b, 0x8e, 0x5c, 0x9e, 0x5c, 0xa6, 0x3c, 0xae, 0x5c, 0xa6, 0x3c, 0x9e, 0x5b, 0x96, 0x3b, 0x8e, 0x3b, 0x86, 0x5b, 0x86, 0x3c, 0x7e, 0xbc, 0x75, 0x3c, 0x6d, 0xfc, 0x64, 0xdb, 0x5c, 0x9a, 0x5c, 0x79, 0x54, 0x58, 0x54, 0x37, 0x4c, 0x58, 0x54, 0x7a, 0x54, 0x79, 0x54, 0x38, 0x54, 0x79, 0x54, 0xda, 0x64, 0x3b, 0x6d, 0x1c, 0x65, 0xfc, 0x64, 0x1c, 0x65, 0x1c, 0x6d, 0x1c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0x1c, 0x65, 0x3c, 0x6d, 0x7c, 0x6d, 0xfc, 0x75, 0x3b, 0x7e, 0x5b, 0x86, 0x5b, 0x86, 0x3b, 0x8e, 0x5b, 0x86, 0x5b, 0x86, 0x3b, 0x86, 0xdc, 0x7d, 0x7c, 0x75, 0x1c, 0x6d, 0xfc, 0x64, 0x9a, 0x5c, 0x59, 0x5c, 0x38, 0x54, 0xf7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x22, 0x70, 0x2a, 0x70, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x70, 0x22, 0x50, 0x22, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, + 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0xbc, 0x5c, 0xdc, 0x64, 0x99, 0x5c, 0x58, 0x54, 0xd6, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x94, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0x16, 0x4c, 0x16, 0x54, 0x37, 0x54, 0x57, 0x54, 0x77, 0x5c, 0x97, 0x5c, 0xb7, 0x5c, 0xb8, 0x5c, 0xb8, 0x64, 0xb8, 0x64, 0xb9, 0x64, 0xd9, 0x64, 0xd9, 0x64, 0xfa, 0x64, 0xfa, 0x64, 0x1b, 0x6d, 0x3b, 0x6d, 0x7c, 0x75, 0x9c, 0x75, 0xbc, 0x75, 0xbc, 0x75, 0xbc, 0x6d, 0x7c, 0x65, 0x1c, 0x65, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0x1c, 0x5d, 0x3c, 0x65, 0x1c, 0x65, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x54, 0xfc, 0x54, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0x1c, 0x5d, 0x3c, 0x65, 0x5b, 0x65, 0xbc, 0x6d, 0x3c, 0x76, 0x5b, 0x7e, 0x5b, 0x86, 0x5b, 0x96, 0x3c, 0x96, 0x3b, 0x9e, 0x1c, 0xa6, 0xfc, 0xa5, 0xfb, 0x9d, 0xfc, 0x9d, 0x1c, 0x96, 0x1b, 0x8e, 0x3b, 0x86, 0x3b, 0x7e, 0x1c, 0x7e, 0xbc, 0x75, 0x5c, 0x6d, 0x1c, 0x65, 0xdb, 0x5c, 0x9a, 0x54, 0x79, 0x54, 0x38, 0x54, 0x38, 0x54, 0x7a, 0x54, 0x9a, 0x5c, 0x59, 0x54, 0x38, 0x54, 0x79, 0x54, 0xda, 0x5c, 0xfb, 0x64, 0x1c, 0x65, 0x1c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x1c, 0x65, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0x1c, 0x65, 0x1c, 0x6d, 0x3c, 0x6d, 0x7c, 0x6d, 0x1c, 0x76, 0x3b, 0x7e, 0x5b, 0x8e, 0x5c, 0x96, 0x3c, 0x96, 0x5b, 0x96, 0x5b, 0x96, 0x5b, 0x8e, 0x5b, 0x86, 0x1c, 0x7e, 0x9c, 0x75, 0x1c, 0x6d, 0xfc, 0x64, 0xbb, 0x64, 0x59, 0x5c, 0x17, 0x54, 0xf7, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, + 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x57, 0x5c, 0x98, 0x5c, 0x78, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x79, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x7a, 0x5c, 0x9b, 0x5c, 0xdc, 0x5c, 0xbb, 0x5c, 0x37, 0x54, 0xd6, 0x4b, 0xb6, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd5, 0x43, 0xd5, 0x43, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0x16, 0x4c, 0x36, 0x4c, 0x37, 0x54, 0x57, 0x54, 0x77, 0x54, 0x97, 0x54, 0x98, 0x54, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0xd9, 0x64, 0xf9, 0x64, 0xfa, 0x64, 0xfa, 0x64, 0xfa, 0x64, 0x1a, 0x65, 0x3b, 0x6d, 0x3c, 0x6d, 0x5c, 0x65, 0x3c, 0x65, 0x3b, 0x65, 0x1b, 0x65, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0x1c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0x1c, 0x5d, 0xfc, 0x5c, 0xfc, 0x5c, 0x1c, 0x5d, 0xfc, 0x5c, 0x1c, 0x5d, 0x3c, 0x65, 0x9c, 0x6d, 0xdb, 0x75, 0x7a, 0x6d, 0xf9, 0x64, 0xb8, 0x64, 0xd9, 0x6c, 0xd9, 0x6c, 0xda, 0x74, 0xda, 0x74, 0xda, 0x74, 0xfb, 0x74, 0xfb, 0x74, 0x1b, 0x75, 0x5c, 0x75, 0x9c, 0x75, 0x9c, 0x75, 0x5c, 0x6d, 0x1c, 0x6d, 0x1c, 0x6d, 0xfc, 0x64, 0xdb, 0x64, 0x79, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0x5a, 0x54, 0x9b, 0x5c, 0x7a, 0x54, 0xba, 0x5c, 0xba, 0x5c, 0xba, 0x5c, 0x99, 0x54, 0xb9, 0x5c, 0x1b, 0x6d, 0x3c, 0x6d, 0x1c, 0x6d, 0x1c, 0x6d, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x6c, 0x1c, 0x6d, 0x3c, 0x6d, 0x7c, 0x6d, 0x1c, 0x76, 0x3b, 0x7e, 0x5b, 0x8e, 0x5c, 0x9e, 0x5c, 0xae, 0x5c, 0xb6, 0x5c, 0xae, 0x5c, 0x9e, 0x3b, 0x96, 0x5b, 0x8e, 0x3c, 0x86, 0xbc, 0x75, 0x3c, 0x6d, 0xdc, 0x64, 0x9a, 0x5c, 0x59, 0x5c, 0x17, 0x54, 0xf7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x70, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, + 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xb2, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x57, 0x5c, 0x98, 0x64, 0x98, 0x64, 0xb8, 0x64, 0xb9, 0x5c, 0x9a, 0x5c, 0x79, 0x5c, 0x79, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0xbc, 0x5c, 0xdc, 0x64, 0x9a, 0x5c, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0x16, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x57, 0x54, 0x77, 0x54, 0x98, 0x54, 0x98, 0x54, 0x98, 0x54, 0xb8, 0x5c, 0xd9, 0x5c, 0xd9, 0x5c, 0xb8, 0x5c, 0xd9, 0x5c, 0xd9, 0x64, 0xfa, 0x64, 0x1a, 0x65, 0x1b, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x1c, 0x65, 0x1c, 0x5d, 0xfc, 0x5c, 0xfb, 0x5c, 0xfb, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x5c, 0xfc, 0x5c, 0x1c, 0x5d, 0x1c, 0x5d, 0x1c, 0x5d, 0x1c, 0x5d, 0x1c, 0x5d, 0xfb, 0x5c, 0x99, 0x54, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x79, 0x5c, 0x99, 0x5c, 0xb9, 0x64, 0xba, 0x64, 0xda, 0x64, 0xda, 0x6c, 0xda, 0x6c, 0xda, 0x6c, 0xdb, 0x74, 0xfb, 0x6c, 0xfb, 0x6c, 0xfc, 0x6c, 0x1c, 0x6d, 0x1c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x1c, 0x6d, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xdb, 0x64, 0xba, 0x5c, 0xbb, 0x5c, 0xfb, 0x5c, 0xdb, 0x5c, 0xda, 0x5c, 0xba, 0x5c, 0xb9, 0x5c, 0xb9, 0x5c, 0x98, 0x5c, 0xfb, 0x64, 0x1c, 0x6d, 0x1c, 0x6d, 0x1c, 0x6d, 0xfc, 0x6c, 0xfc, 0x64, 0xfc, 0x64, 0x1c, 0x6d, 0x3c, 0x6d, 0x5c, 0x75, 0xdc, 0x75, 0x3b, 0x7e, 0x5b, 0x86, 0x5c, 0x96, 0x5c, 0xae, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xa6, 0x5c, 0x96, 0x3b, 0x8e, 0x3c, 0x86, 0x9c, 0x75, 0xfc, 0x6c, 0x9b, 0x64, 0x79, 0x5c, 0x58, 0x54, 0x17, 0x54, 0xf7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x70, 0x2a, 0x70, 0x22, 0x70, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, + 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x3a, 0xf3, 0x3a, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0xd6, 0x4b, 0x77, 0x64, 0x77, 0x64, 0x98, 0x64, 0xb8, 0x6c, 0xd9, 0x64, 0xb9, 0x5c, 0x7a, 0x5c, 0x79, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdb, 0x64, 0x17, 0x54, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd5, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xf6, 0x43, 0xf6, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x57, 0x4c, 0x57, 0x4c, 0x78, 0x54, 0x78, 0x54, 0x78, 0x54, 0x77, 0x54, 0x98, 0x54, 0xb8, 0x5c, 0xb8, 0x5c, 0xd9, 0x5c, 0xda, 0x5c, 0xfa, 0x5c, 0xfb, 0x5c, 0xfb, 0x5c, 0xfb, 0x5c, 0x1c, 0x5d, 0x1c, 0x5d, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x5c, 0x1c, 0x5d, 0x1c, 0x5d, 0xfb, 0x5c, 0xba, 0x5c, 0x99, 0x54, 0x37, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x59, 0x54, 0x79, 0x54, 0x99, 0x5c, 0x99, 0x5c, 0xb9, 0x5c, 0xda, 0x64, 0xda, 0x64, 0xda, 0x6c, 0xda, 0x6c, 0xdb, 0x6c, 0xfb, 0x6c, 0xfb, 0x6c, 0xfb, 0x6c, 0x1c, 0x6d, 0x1c, 0x6d, 0x1c, 0x6d, 0x1c, 0x6d, 0x1c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xdc, 0x64, 0xdc, 0x5c, 0xfc, 0x64, 0x5c, 0x6d, 0x5c, 0x6d, 0x3b, 0x65, 0xfb, 0x64, 0xda, 0x64, 0xba, 0x5c, 0xb9, 0x5c, 0xb9, 0x5c, 0xd9, 0x64, 0xfb, 0x64, 0xfc, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0xfc, 0x64, 0xfc, 0x6c, 0x1c, 0x6d, 0x3c, 0x6d, 0x9c, 0x75, 0x3c, 0x7e, 0x5b, 0x86, 0x5b, 0x96, 0x5c, 0xae, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xae, 0x5b, 0x96, 0x5b, 0x8e, 0xdc, 0x7d, 0x5c, 0x75, 0xfc, 0x64, 0xba, 0x5c, 0x59, 0x5c, 0x58, 0x54, 0x17, 0x4c, 0xd7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x33, 0xf3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x22, 0x70, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, + 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x3a, 0xd3, 0x3a, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0xb5, 0x4b, 0x78, 0x5c, 0x98, 0x64, 0x98, 0x64, 0x98, 0x6c, 0xb8, 0x6c, 0xb9, 0x6c, 0xd9, 0x64, 0x99, 0x5c, 0x7a, 0x5c, 0x79, 0x54, 0x79, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0xdc, 0x5c, 0xdc, 0x64, 0x38, 0x54, 0xd6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd5, 0x43, 0xd5, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xf6, 0x4b, 0x16, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x57, 0x4c, 0x58, 0x54, 0x78, 0x54, 0x98, 0x5c, 0xb9, 0x5c, 0xb9, 0x5c, 0xda, 0x5c, 0xda, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xdb, 0x5c, 0x99, 0x54, 0x78, 0x54, 0x37, 0x54, 0x17, 0x4c, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x59, 0x54, 0x79, 0x54, 0x99, 0x5c, 0x99, 0x5c, 0xb9, 0x5c, 0xd9, 0x64, 0xda, 0x64, 0xda, 0x6c, 0xda, 0x6c, 0xdb, 0x6c, 0xfb, 0x6c, 0x1c, 0x6d, 0x1c, 0x6d, 0x1c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x1c, 0x6d, 0xfc, 0x64, 0xdc, 0x64, 0xdc, 0x64, 0xdc, 0x64, 0xbb, 0x64, 0xfc, 0x64, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x5c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x1b, 0x65, 0xfb, 0x64, 0xda, 0x5c, 0xd9, 0x5c, 0xfa, 0x64, 0xfc, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0x1c, 0x6d, 0x7c, 0x75, 0xfc, 0x7d, 0x3b, 0x86, 0x5b, 0x8e, 0x5c, 0x9e, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xa6, 0x5b, 0x96, 0x3b, 0x86, 0xbc, 0x75, 0x3c, 0x6d, 0xdc, 0x64, 0x9a, 0x5c, 0x58, 0x54, 0x38, 0x54, 0xf7, 0x4b, 0xd6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x70, 0x22, 0x70, 0x22, 0x70, 0x22, 0x50, 0x22, 0x70, 0x2a, 0x50, 0x22, 0x70, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, + 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd2, 0x3a, 0xf3, 0x3a, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x75, 0x3b, 0x37, 0x54, 0x57, 0x5c, 0x77, 0x64, 0x78, 0x6c, 0x98, 0x6c, 0xb8, 0x6c, 0xb9, 0x6c, 0xd9, 0x6c, 0xb9, 0x64, 0x9a, 0x5c, 0x7a, 0x5c, 0x59, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0xdc, 0x5c, 0xdc, 0x64, 0xb9, 0x5c, 0xd6, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xf6, 0x4b, 0xf6, 0x53, 0xf6, 0x53, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x54, 0x16, 0x54, 0xf6, 0x53, 0xd6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x4b, 0xb6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x4b, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd5, 0x43, 0xd5, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xf6, 0x4b, 0xf6, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf6, 0x43, 0xf6, 0x4b, 0x17, 0x44, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x58, 0x54, 0x78, 0x54, 0x98, 0x54, 0x99, 0x54, 0x99, 0x54, 0xba, 0x54, 0xba, 0x54, 0xba, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbb, 0x5c, 0x7a, 0x54, 0x59, 0x54, 0x38, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x59, 0x54, 0x79, 0x54, 0x99, 0x5c, 0x99, 0x5c, 0xb9, 0x5c, 0xda, 0x64, 0xda, 0x64, 0xda, 0x64, 0xfa, 0x6c, 0xfb, 0x6c, 0x1c, 0x6d, 0x3c, 0x6d, 0x1c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x1c, 0x6d, 0x1c, 0x65, 0xfc, 0x64, 0xdc, 0x64, 0xbb, 0x5c, 0xdc, 0x64, 0xfb, 0x64, 0xfc, 0x64, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0xfb, 0x64, 0xfa, 0x64, 0xfb, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0x1c, 0x6d, 0x3c, 0x75, 0x9c, 0x7d, 0x1c, 0x86, 0x5b, 0x8e, 0x5b, 0x9e, 0x5c, 0xae, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0x9e, 0x5b, 0x8e, 0x1b, 0x86, 0x9c, 0x75, 0x1c, 0x6d, 0xdb, 0x64, 0x79, 0x5c, 0x38, 0x54, 0x38, 0x54, 0xf7, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x22, 0x70, 0x2a, 0x70, 0x22, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, + 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0xb2, 0x32, 0x92, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x54, 0x3b, 0xf7, 0x4b, 0x17, 0x54, 0x57, 0x5c, 0x77, 0x64, 0x98, 0x64, 0xda, 0x74, 0xb9, 0x74, 0xb8, 0x74, 0xb9, 0x6c, 0xd9, 0x64, 0xba, 0x5c, 0x9a, 0x5c, 0x7a, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0xbc, 0x5c, 0xfc, 0x64, 0xfb, 0x64, 0xf7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x54, 0x17, 0x54, 0x17, 0x54, 0x17, 0x54, 0xf6, 0x53, 0x17, 0x54, 0xf6, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x17, 0x54, 0x37, 0x54, 0x17, 0x54, 0xf6, 0x53, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x4b, 0xb5, 0x43, 0xb5, 0x4b, 0xd5, 0x43, 0xd5, 0x43, 0xd5, 0x43, 0xd5, 0x4b, 0xf6, 0x4b, 0xf6, 0x43, 0xf6, 0x43, 0xf6, 0x4b, 0xf6, 0x43, 0xf6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xf7, 0x43, 0x17, 0x44, 0x17, 0x4c, 0x37, 0x4c, 0x58, 0x4c, 0x58, 0x54, 0x78, 0x54, 0x99, 0x54, 0x99, 0x54, 0x79, 0x54, 0x79, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0xbb, 0x54, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbb, 0x5c, 0x79, 0x54, 0x39, 0x54, 0x59, 0x54, 0x39, 0x54, 0x18, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x79, 0x54, 0x79, 0x54, 0x99, 0x5c, 0xb9, 0x5c, 0xba, 0x5c, 0xda, 0x5c, 0xda, 0x64, 0xfa, 0x64, 0xfb, 0x64, 0x1b, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0xfc, 0x64, 0xdc, 0x64, 0xdb, 0x64, 0x1c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x6d, 0x3c, 0x6d, 0x1c, 0x6d, 0xfc, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0xdc, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0x1c, 0x6d, 0x5c, 0x75, 0xfc, 0x7d, 0x3b, 0x86, 0x5b, 0x8e, 0x5c, 0xa6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xae, 0x5b, 0x96, 0x5b, 0x86, 0xfb, 0x7d, 0x5c, 0x75, 0xfc, 0x6c, 0xba, 0x5c, 0x58, 0x54, 0x18, 0x54, 0x17, 0x54, 0xd7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x22, 0x50, 0x2a, 0x70, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x70, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, + 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x92, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x34, 0x3b, 0x95, 0x43, 0xd6, 0x4b, 0x17, 0x4c, 0x57, 0x54, 0x77, 0x5c, 0xb9, 0x6c, 0xd9, 0x74, 0xda, 0x74, 0xd9, 0x74, 0xb8, 0x6c, 0xd9, 0x6c, 0xb9, 0x5c, 0x9a, 0x5c, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x5c, 0xbc, 0x5c, 0xfc, 0x64, 0x1b, 0x65, 0x18, 0x54, 0xf7, 0x4b, 0xf7, 0x53, 0x17, 0x54, 0x17, 0x54, 0x17, 0x54, 0x17, 0x54, 0x37, 0x5c, 0x37, 0x5c, 0x37, 0x54, 0x37, 0x54, 0x17, 0x54, 0x17, 0x54, 0x17, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x17, 0x54, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xd5, 0x4b, 0xd5, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xd6, 0x43, 0xb5, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xf6, 0x43, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x38, 0x4c, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x79, 0x54, 0x79, 0x54, 0x7a, 0x54, 0x9a, 0x54, 0x9b, 0x54, 0xbc, 0x54, 0x9a, 0x5c, 0x59, 0x54, 0x38, 0x54, 0x38, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x54, 0x99, 0x54, 0x99, 0x5c, 0xba, 0x5c, 0xda, 0x5c, 0xda, 0x64, 0xfa, 0x64, 0x1b, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x1c, 0x65, 0xfc, 0x64, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xfc, 0x64, 0xdc, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0xdc, 0x5c, 0xfc, 0x64, 0xfc, 0x64, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x1c, 0x6d, 0xfc, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0x1c, 0x6d, 0x1c, 0x6d, 0x7c, 0x75, 0x1c, 0x7e, 0x5b, 0x86, 0x5b, 0x8e, 0x5c, 0x9e, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0x9e, 0x5b, 0x8e, 0x3c, 0x86, 0xbc, 0x75, 0x3c, 0x6d, 0xdb, 0x64, 0x9a, 0x5c, 0x58, 0x54, 0x17, 0x54, 0xf7, 0x4b, 0xd7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x50, 0x22, 0x70, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x70, 0x2a, 0x50, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, + 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xf3, 0x3a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0x14, 0x3b, 0x55, 0x3b, 0x95, 0x43, 0xb6, 0x43, 0xf7, 0x4b, 0x17, 0x54, 0x98, 0x64, 0xb9, 0x6c, 0xb9, 0x6c, 0xd9, 0x74, 0xda, 0x74, 0xd9, 0x74, 0xb8, 0x6c, 0xb9, 0x64, 0x9a, 0x5c, 0x9a, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0xbb, 0x5c, 0xdc, 0x64, 0x1c, 0x65, 0x78, 0x5c, 0xf7, 0x53, 0x17, 0x54, 0x17, 0x54, 0x17, 0x54, 0x37, 0x54, 0x57, 0x5c, 0x57, 0x5c, 0x37, 0x5c, 0x57, 0x5c, 0x57, 0x54, 0x57, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x57, 0x54, 0x37, 0x54, 0x37, 0x54, 0x57, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0xf6, 0x53, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0xb6, 0x4b, 0xb5, 0x4b, 0xd5, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xd5, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x38, 0x4c, 0x58, 0x4c, 0x78, 0x54, 0x79, 0x54, 0x79, 0x54, 0x9a, 0x54, 0x7a, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x39, 0x54, 0x38, 0x54, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x38, 0x54, 0x58, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x9a, 0x54, 0x9a, 0x5c, 0xba, 0x5c, 0xda, 0x5c, 0xdb, 0x64, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x1b, 0x65, 0xdb, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0xbc, 0x5c, 0x9b, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0xbc, 0x5c, 0xbb, 0x5c, 0xfc, 0x64, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x6d, 0x1c, 0x6d, 0x1c, 0x6d, 0xfc, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0x1c, 0x6d, 0x3c, 0x6d, 0x7c, 0x75, 0x1c, 0x7e, 0x5b, 0x86, 0x5b, 0x8e, 0x5c, 0x9e, 0x5c, 0xae, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xae, 0x5c, 0x9e, 0x5b, 0x8e, 0x5b, 0x86, 0xfc, 0x7d, 0x7c, 0x75, 0x1c, 0x6d, 0xba, 0x64, 0x79, 0x5c, 0x37, 0x54, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x50, 0x2a, 0x70, 0x2a, 0x50, 0x22, 0x50, 0x2a, 0x70, 0x2a, 0x50, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, + 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0x13, 0x33, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xd6, 0x4b, 0x37, 0x54, 0x98, 0x5c, 0xb8, 0x64, 0xb9, 0x6c, 0xd9, 0x6c, 0xda, 0x6c, 0xfa, 0x6c, 0xd9, 0x6c, 0xb9, 0x5c, 0x99, 0x5c, 0x9a, 0x5c, 0x7a, 0x54, 0x9a, 0x5c, 0xbb, 0x5c, 0xdc, 0x64, 0x1c, 0x65, 0x99, 0x5c, 0x38, 0x54, 0x18, 0x54, 0x17, 0x54, 0x37, 0x54, 0x57, 0x5c, 0x57, 0x5c, 0x57, 0x5c, 0x57, 0x5c, 0x57, 0x5c, 0x57, 0x5c, 0x57, 0x5c, 0x57, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x78, 0x54, 0x57, 0x54, 0x57, 0x5c, 0x37, 0x5c, 0x17, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd5, 0x4b, 0xd5, 0x4b, 0xb5, 0x4b, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd5, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xf6, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x58, 0x4c, 0x58, 0x54, 0x78, 0x54, 0x79, 0x54, 0x38, 0x54, 0xd7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x37, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x59, 0x54, 0x38, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x5c, 0xba, 0x5c, 0xda, 0x5c, 0xfb, 0x64, 0xfc, 0x64, 0x1c, 0x65, 0x1b, 0x65, 0xdb, 0x5c, 0xbb, 0x5c, 0x9c, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x7b, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xfc, 0x64, 0x1c, 0x65, 0x1c, 0x6d, 0x1c, 0x6d, 0x1c, 0x6d, 0x3c, 0x6d, 0x1c, 0x6d, 0xfc, 0x6c, 0x1c, 0x6d, 0x3c, 0x6d, 0x5c, 0x75, 0x5c, 0x6d, 0x7b, 0x75, 0x1c, 0x76, 0x5b, 0x7e, 0x5b, 0x8e, 0x5b, 0x96, 0x5c, 0x9e, 0x5c, 0xa6, 0x5c, 0x9e, 0x5c, 0x96, 0x5b, 0x8e, 0x5b, 0x86, 0x1c, 0x7e, 0x7c, 0x75, 0x1c, 0x6d, 0xdb, 0x64, 0x79, 0x5c, 0x38, 0x54, 0x17, 0x54, 0xf7, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x96, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, + 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0xd6, 0x4b, 0x58, 0x54, 0x99, 0x5c, 0xb9, 0x64, 0xd9, 0x64, 0xd9, 0x6c, 0xd9, 0x6c, 0xfa, 0x6c, 0xfa, 0x6c, 0xb9, 0x5c, 0x99, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x9a, 0x5c, 0x9b, 0x5c, 0xdc, 0x64, 0xfc, 0x64, 0x1b, 0x65, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x57, 0x5c, 0x77, 0x5c, 0x57, 0x5c, 0x57, 0x64, 0x57, 0x64, 0x57, 0x5c, 0x77, 0x5c, 0x77, 0x5c, 0x78, 0x54, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x78, 0x5c, 0x78, 0x5c, 0x58, 0x5c, 0x57, 0x5c, 0x17, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x58, 0x54, 0x37, 0x4c, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf7, 0x4b, 0x17, 0x54, 0x17, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x38, 0x4c, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x58, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x5c, 0x7a, 0x54, 0x9a, 0x5c, 0x9a, 0x5c, 0x7a, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0x9c, 0x5c, 0xbc, 0x5c, 0xdc, 0x64, 0xdc, 0x64, 0xdc, 0x64, 0xdc, 0x64, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0x9c, 0x5c, 0xbc, 0x5c, 0xfc, 0x64, 0x1c, 0x6d, 0x1c, 0x6d, 0x1c, 0x6d, 0x3c, 0x6d, 0x1c, 0x6d, 0x1c, 0x6d, 0xfc, 0x64, 0x1c, 0x6d, 0x5c, 0x6d, 0xbc, 0x75, 0xfc, 0x75, 0x1b, 0x76, 0x5b, 0x7e, 0x3b, 0x86, 0x5b, 0x8e, 0x5b, 0x8e, 0x5b, 0x96, 0x5b, 0x8e, 0x5b, 0x8e, 0x5b, 0x86, 0x1c, 0x7e, 0x7c, 0x75, 0x1c, 0x6d, 0xdb, 0x64, 0xba, 0x64, 0x58, 0x5c, 0x37, 0x54, 0x17, 0x4c, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x75, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, + 0x91, 0x2a, 0x91, 0x32, 0x91, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x14, 0x33, 0x54, 0x3b, 0x55, 0x3b, 0x95, 0x43, 0x17, 0x4c, 0x58, 0x54, 0x78, 0x5c, 0x99, 0x5c, 0xb9, 0x5c, 0xd9, 0x64, 0xd9, 0x64, 0xfa, 0x64, 0x1a, 0x65, 0xb9, 0x5c, 0x99, 0x5c, 0x79, 0x54, 0x7a, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0xdc, 0x5c, 0xfc, 0x64, 0x3c, 0x6d, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x77, 0x64, 0x77, 0x64, 0x77, 0x64, 0x77, 0x64, 0x78, 0x64, 0x78, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0x78, 0x5c, 0x78, 0x54, 0x78, 0x54, 0x58, 0x54, 0x78, 0x54, 0x78, 0x54, 0x58, 0x54, 0x78, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0x78, 0x5c, 0x58, 0x5c, 0x37, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x53, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xd5, 0x43, 0xd5, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xf6, 0x43, 0xf7, 0x4b, 0x37, 0x4c, 0x17, 0x4c, 0xd6, 0x4b, 0x75, 0x43, 0x75, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0x17, 0x4c, 0x17, 0x54, 0x17, 0x54, 0x38, 0x54, 0x38, 0x54, 0x18, 0x54, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x38, 0x4c, 0x58, 0x54, 0x78, 0x54, 0x78, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x59, 0x54, 0x39, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x39, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x9b, 0x54, 0xbc, 0x5c, 0xbc, 0x5c, 0xfc, 0x64, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xdc, 0x64, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0x9c, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x64, 0x1c, 0x65, 0x1c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x1c, 0x6d, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x5c, 0x6d, 0xbc, 0x75, 0x1c, 0x76, 0x5b, 0x7e, 0x5b, 0x86, 0x3b, 0x86, 0x3b, 0x86, 0x5b, 0x86, 0x5b, 0x86, 0x3c, 0x7e, 0xdc, 0x75, 0x7c, 0x75, 0x1c, 0x6d, 0xdc, 0x64, 0x9a, 0x5c, 0x78, 0x5c, 0x38, 0x54, 0x17, 0x54, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0x14, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, + 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x14, 0x33, 0x34, 0x3b, 0x55, 0x3b, 0xd6, 0x4b, 0xf6, 0x4b, 0x17, 0x54, 0x58, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0xb9, 0x5c, 0xd9, 0x64, 0xd9, 0x64, 0xda, 0x64, 0xdb, 0x64, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x7a, 0x54, 0x9a, 0x5c, 0xdc, 0x5c, 0xfc, 0x64, 0x1c, 0x6d, 0xda, 0x64, 0x38, 0x54, 0x58, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x98, 0x64, 0x78, 0x64, 0x78, 0x64, 0x78, 0x64, 0x78, 0x64, 0x78, 0x64, 0x78, 0x64, 0x98, 0x64, 0xb8, 0x5c, 0xb8, 0x5c, 0x99, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x5c, 0x98, 0x5c, 0xb8, 0x5c, 0x98, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x37, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x16, 0x4c, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xd5, 0x43, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0x17, 0x4c, 0xf6, 0x4b, 0x95, 0x43, 0x54, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0xf7, 0x4b, 0x17, 0x54, 0x17, 0x54, 0x37, 0x54, 0x38, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x58, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x99, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x79, 0x54, 0x18, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x59, 0x54, 0x7b, 0x54, 0x9b, 0x54, 0x9c, 0x54, 0xbc, 0x5c, 0xfc, 0x64, 0x1c, 0x65, 0x3c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x1c, 0x65, 0xfc, 0x64, 0xfc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdb, 0x64, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0xfc, 0x64, 0xfc, 0x64, 0x1c, 0x65, 0x3c, 0x65, 0x7c, 0x6d, 0xbc, 0x6d, 0x1c, 0x76, 0x5b, 0x86, 0x5b, 0x86, 0x3b, 0x7e, 0x1c, 0x76, 0xdc, 0x75, 0x9c, 0x75, 0x5c, 0x6d, 0x1c, 0x65, 0xdc, 0x64, 0xba, 0x5c, 0x79, 0x5c, 0x58, 0x54, 0x37, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x91, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, + 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x14, 0x33, 0x34, 0x3b, 0x95, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0x17, 0x54, 0x38, 0x54, 0x78, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0xb9, 0x5c, 0xba, 0x5c, 0xba, 0x5c, 0x9a, 0x54, 0x79, 0x54, 0x59, 0x54, 0x59, 0x54, 0x9a, 0x5c, 0xbb, 0x5c, 0xdc, 0x64, 0x1c, 0x65, 0xfb, 0x64, 0x59, 0x54, 0x59, 0x5c, 0x78, 0x5c, 0x98, 0x5c, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x6c, 0x98, 0x6c, 0x98, 0x6c, 0x98, 0x6c, 0xb8, 0x64, 0xb9, 0x64, 0xb9, 0x64, 0xb9, 0x5c, 0x99, 0x54, 0x79, 0x54, 0x99, 0x54, 0x99, 0x54, 0x99, 0x54, 0x99, 0x5c, 0xb9, 0x5c, 0xb9, 0x5c, 0xb9, 0x5c, 0xb8, 0x5c, 0x98, 0x5c, 0x58, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x4b, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xb6, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0x17, 0x54, 0x17, 0x54, 0x18, 0x54, 0x17, 0x4c, 0xf7, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x78, 0x54, 0x99, 0x54, 0x99, 0x54, 0x99, 0x5c, 0x9a, 0x5c, 0x9a, 0x5c, 0x79, 0x54, 0x18, 0x4c, 0xf7, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x4c, 0x5a, 0x54, 0x9b, 0x54, 0x9c, 0x54, 0xbc, 0x5c, 0xdc, 0x5c, 0xfc, 0x64, 0x3c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x7c, 0x6d, 0x5c, 0x6d, 0x3c, 0x65, 0x3c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x64, 0x1c, 0x6d, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x6d, 0x3c, 0x6d, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0x1c, 0x65, 0x3c, 0x65, 0x7c, 0x6d, 0xdc, 0x75, 0x1c, 0x76, 0x3b, 0x7e, 0x5b, 0x7e, 0x9b, 0x6d, 0x5c, 0x6d, 0x3c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xbb, 0x5c, 0x79, 0x5c, 0x38, 0x54, 0x38, 0x54, 0x17, 0x54, 0x17, 0x4c, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, + 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x14, 0x33, 0x54, 0x3b, 0x95, 0x3b, 0xb5, 0x43, 0xd6, 0x4b, 0xf6, 0x4b, 0x17, 0x54, 0x38, 0x54, 0x58, 0x54, 0x79, 0x54, 0x79, 0x54, 0x99, 0x54, 0x99, 0x5c, 0x9a, 0x5c, 0x9b, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x7a, 0x54, 0xbb, 0x5c, 0xdc, 0x64, 0x1c, 0x65, 0x1b, 0x6d, 0x9a, 0x5c, 0x59, 0x5c, 0x99, 0x5c, 0x98, 0x5c, 0x98, 0x64, 0x98, 0x64, 0x98, 0x6c, 0x98, 0x6c, 0x98, 0x6c, 0x98, 0x6c, 0xb9, 0x6c, 0xb9, 0x6c, 0xd9, 0x64, 0xd9, 0x64, 0xda, 0x5c, 0xda, 0x5c, 0xda, 0x5c, 0xba, 0x5c, 0x9a, 0x54, 0xba, 0x5c, 0xba, 0x5c, 0xba, 0x5c, 0xba, 0x5c, 0xb9, 0x5c, 0xb9, 0x5c, 0xb9, 0x5c, 0x78, 0x54, 0x37, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x33, 0x95, 0x33, 0x95, 0x3b, 0xb6, 0x3b, 0xd6, 0x43, 0x95, 0x43, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x59, 0x54, 0x99, 0x5c, 0x99, 0x5c, 0x79, 0x54, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x9c, 0x54, 0xbc, 0x54, 0xbc, 0x5c, 0xdc, 0x5c, 0x1c, 0x65, 0x3c, 0x6d, 0x5c, 0x6d, 0x9c, 0x75, 0x9c, 0x75, 0x9c, 0x6d, 0x7c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x3c, 0x65, 0xfc, 0x64, 0xdc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x64, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x64, 0x1c, 0x65, 0x3c, 0x65, 0x5c, 0x6d, 0x9c, 0x6d, 0xbc, 0x75, 0xfc, 0x75, 0xbc, 0x75, 0x3c, 0x65, 0xfc, 0x64, 0xdb, 0x5c, 0xbb, 0x5c, 0x79, 0x54, 0x59, 0x54, 0x38, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x32, + 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x14, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x53, 0xf7, 0x53, 0x17, 0x54, 0x18, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x59, 0x54, 0x7a, 0x54, 0x59, 0x54, 0x38, 0x54, 0x59, 0x54, 0x79, 0x54, 0x9b, 0x5c, 0xdc, 0x5c, 0xfc, 0x64, 0x1c, 0x65, 0xda, 0x64, 0x79, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0xb9, 0x64, 0x98, 0x64, 0xb8, 0x6c, 0x98, 0x6c, 0x98, 0x6c, 0x98, 0x6c, 0xb9, 0x6c, 0xd9, 0x6c, 0xd9, 0x6c, 0xfa, 0x6c, 0xfa, 0x64, 0xfa, 0x64, 0xfb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xdb, 0x64, 0xfb, 0x64, 0xda, 0x5c, 0xda, 0x5c, 0xba, 0x5c, 0x99, 0x5c, 0x78, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x37, 0x4c, 0x17, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0xf6, 0x4b, 0xb5, 0x43, 0xb5, 0x4b, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x33, 0x75, 0x33, 0x75, 0x33, 0x75, 0x33, 0x95, 0x3b, 0x54, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x58, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x7a, 0x54, 0xbc, 0x54, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x64, 0x1c, 0x65, 0x5c, 0x6d, 0x7c, 0x6d, 0xbc, 0x75, 0xdc, 0x75, 0xdc, 0x75, 0xbc, 0x75, 0x9c, 0x75, 0x5c, 0x6d, 0x5c, 0x6d, 0x3c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0x1c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x64, 0x1c, 0x65, 0x3c, 0x65, 0x3c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0xdb, 0x5c, 0x7a, 0x54, 0x7a, 0x54, 0x59, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0x17, 0x4c, 0xd6, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x32, + 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xf7, 0x53, 0xf7, 0x53, 0x17, 0x54, 0x18, 0x54, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x39, 0x4c, 0x59, 0x54, 0x38, 0x4c, 0x59, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xfc, 0x64, 0xdb, 0x64, 0x7a, 0x5c, 0x9a, 0x5c, 0xb9, 0x5c, 0xb9, 0x64, 0xb9, 0x64, 0xb9, 0x6c, 0xb9, 0x6c, 0xb9, 0x6c, 0xb9, 0x74, 0xb9, 0x74, 0xd9, 0x74, 0xda, 0x6c, 0xfa, 0x6c, 0x1b, 0x6d, 0x3b, 0x65, 0x3c, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1b, 0x65, 0xdb, 0x5c, 0xba, 0x5c, 0x9a, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x58, 0x54, 0x58, 0x54, 0x37, 0x4c, 0x37, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x33, 0x75, 0x33, 0x75, 0x33, 0x75, 0x33, 0x75, 0x33, 0x95, 0x33, 0x54, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x79, 0x54, 0x79, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x9b, 0x54, 0xbc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0x3c, 0x65, 0x5c, 0x6d, 0x9c, 0x6d, 0xdc, 0x75, 0xfc, 0x75, 0x1c, 0x76, 0x1c, 0x76, 0xfc, 0x75, 0xfc, 0x75, 0xbc, 0x75, 0x7c, 0x6d, 0x5c, 0x6d, 0x3c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xfc, 0x64, 0xdc, 0x64, 0xdc, 0x64, 0xdc, 0x64, 0xfc, 0x64, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x64, 0xfc, 0x64, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0xfb, 0x64, 0x7a, 0x54, 0x39, 0x54, 0x18, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x39, 0x4c, 0x39, 0x4c, 0x96, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, + 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x39, 0x4c, 0x39, 0x4c, 0x39, 0x54, 0x5a, 0x54, 0x39, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0xbc, 0x5c, 0xdc, 0x64, 0x1c, 0x6d, 0x1c, 0x6d, 0x9a, 0x5c, 0x9a, 0x5c, 0xba, 0x64, 0xda, 0x64, 0xd9, 0x64, 0xd9, 0x6c, 0xb9, 0x6c, 0xb9, 0x6c, 0xb9, 0x74, 0xd9, 0x74, 0xda, 0x74, 0xfa, 0x74, 0xfb, 0x74, 0x1c, 0x6d, 0x5c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x65, 0x5c, 0x65, 0x5c, 0x6d, 0x1c, 0x65, 0xfc, 0x64, 0xdb, 0x5c, 0x9a, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x57, 0x54, 0x37, 0x4c, 0x17, 0x4c, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x33, 0x75, 0x33, 0x75, 0x33, 0x75, 0x33, 0x95, 0x33, 0x54, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x43, 0xf6, 0x43, 0xf7, 0x4b, 0xf7, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xd7, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0x17, 0x54, 0x37, 0x54, 0x37, 0x54, 0x58, 0x54, 0x58, 0x5c, 0x58, 0x5c, 0x79, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x9a, 0x5c, 0x9a, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0x9c, 0x54, 0xbc, 0x54, 0xdc, 0x5c, 0xfc, 0x64, 0x3c, 0x65, 0x7c, 0x6d, 0xbc, 0x6d, 0xfc, 0x75, 0x1c, 0x76, 0x3c, 0x76, 0x3c, 0x7e, 0x3c, 0x7e, 0x3c, 0x7e, 0x3c, 0x76, 0xfc, 0x75, 0xbc, 0x75, 0x7c, 0x6d, 0x3c, 0x6d, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xdc, 0x64, 0x1c, 0x65, 0x1c, 0x6d, 0x1c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xfc, 0x64, 0x1c, 0x65, 0xfc, 0x64, 0xdc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x64, 0xfc, 0x64, 0xdc, 0x64, 0xfc, 0x64, 0xdc, 0x64, 0xdc, 0x64, 0xdc, 0x64, 0x79, 0x54, 0x18, 0x4c, 0x18, 0x4c, 0x59, 0x4c, 0x7a, 0x54, 0x59, 0x4c, 0x38, 0x4c, 0x95, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, + 0xd2, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0x39, 0x4c, 0x39, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x39, 0x54, 0x39, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0xdc, 0x5c, 0x1c, 0x65, 0x3c, 0x6d, 0x3c, 0x6d, 0xbb, 0x64, 0xda, 0x64, 0xda, 0x64, 0xda, 0x64, 0xda, 0x64, 0xda, 0x6c, 0xd9, 0x74, 0xda, 0x74, 0xda, 0x74, 0xfa, 0x74, 0xfb, 0x74, 0x1b, 0x75, 0x3c, 0x75, 0x7c, 0x75, 0xbc, 0x75, 0xdc, 0x75, 0xfc, 0x75, 0xfc, 0x75, 0xdc, 0x75, 0xdc, 0x75, 0xdc, 0x75, 0xdc, 0x75, 0xbc, 0x6d, 0x9c, 0x6d, 0x5c, 0x65, 0x1c, 0x65, 0xdb, 0x5c, 0x79, 0x54, 0x59, 0x54, 0x99, 0x5c, 0x99, 0x5c, 0x78, 0x54, 0x58, 0x54, 0x38, 0x54, 0x57, 0x54, 0x17, 0x54, 0xf6, 0x4b, 0xf6, 0x53, 0xf6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0x95, 0x33, 0x75, 0x33, 0x75, 0x33, 0x75, 0x33, 0x75, 0x33, 0x75, 0x33, 0x75, 0x33, 0x34, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x43, 0xf6, 0x43, 0xf7, 0x43, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x43, 0xb6, 0x43, 0x95, 0x3b, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x54, 0x37, 0x54, 0x58, 0x5c, 0x58, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x9a, 0x5c, 0xba, 0x5c, 0xbb, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0x3c, 0x65, 0x5c, 0x6d, 0xbc, 0x6d, 0x1c, 0x76, 0x5b, 0x7e, 0x5b, 0x7e, 0x5b, 0x86, 0x5b, 0x86, 0x5b, 0x86, 0x5b, 0x86, 0x5b, 0x7e, 0x3c, 0x7e, 0xdc, 0x75, 0x9c, 0x75, 0x5c, 0x6d, 0x3c, 0x6d, 0x3c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xdc, 0x64, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xdc, 0x64, 0xbb, 0x5c, 0x9b, 0x5c, 0x9b, 0x54, 0x7a, 0x4c, 0x59, 0x4c, 0xf7, 0x4b, 0x75, 0x43, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0x14, 0x3b, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, + 0x92, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0x18, 0x4c, 0x38, 0x4c, 0x59, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x79, 0x54, 0x59, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x7b, 0x54, 0xbc, 0x5c, 0xfc, 0x64, 0x1c, 0x65, 0x1c, 0x6d, 0x1b, 0x65, 0xdb, 0x64, 0xfb, 0x64, 0xfb, 0x6c, 0xfa, 0x6c, 0xda, 0x6c, 0xda, 0x6c, 0xfa, 0x74, 0xda, 0x74, 0xfa, 0x74, 0x1b, 0x75, 0x3c, 0x75, 0x5c, 0x75, 0x9c, 0x75, 0xfc, 0x75, 0x3c, 0x7e, 0x5b, 0x7e, 0x5b, 0x7e, 0x5b, 0x86, 0x5b, 0x86, 0x5b, 0x7e, 0x5b, 0x7e, 0x3b, 0x7e, 0x3c, 0x76, 0xfc, 0x75, 0x7c, 0x6d, 0x3c, 0x65, 0xbb, 0x5c, 0xba, 0x5c, 0xda, 0x64, 0x9a, 0x5c, 0x99, 0x5c, 0x78, 0x54, 0x58, 0x54, 0x37, 0x54, 0x17, 0x54, 0x17, 0x54, 0xf6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x3b, 0xb6, 0x3b, 0x96, 0x33, 0x95, 0x33, 0x75, 0x33, 0x75, 0x33, 0x75, 0x33, 0x75, 0x33, 0x34, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xb6, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x58, 0x5c, 0x58, 0x5c, 0x78, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0xba, 0x5c, 0xba, 0x5c, 0xbb, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0x1c, 0x65, 0x3c, 0x65, 0x7c, 0x6d, 0xdc, 0x6d, 0x3c, 0x76, 0x5b, 0x7e, 0x5b, 0x86, 0x5b, 0x8e, 0x5b, 0x8e, 0x5b, 0x8e, 0x5b, 0x8e, 0x5b, 0x8e, 0x5b, 0x86, 0x5b, 0x7e, 0x3c, 0x7e, 0xdc, 0x75, 0x7c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x3c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0x1c, 0x6d, 0x3c, 0x6d, 0x1c, 0x65, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xdc, 0x64, 0xbc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0x9c, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0x9b, 0x5c, 0x7a, 0x54, 0x59, 0x4c, 0xd7, 0x4b, 0x96, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, + 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xb7, 0x43, 0xd7, 0x43, 0xf7, 0x4b, 0xf8, 0x4b, 0x18, 0x4c, 0x39, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x54, 0x59, 0x54, 0x79, 0x54, 0x7a, 0x54, 0x9a, 0x54, 0xbb, 0x5c, 0xdc, 0x5c, 0xfc, 0x64, 0x1c, 0x65, 0x3c, 0x6d, 0xdb, 0x64, 0xfb, 0x64, 0x1b, 0x6d, 0x1b, 0x6d, 0xfb, 0x74, 0xfb, 0x74, 0xfa, 0x74, 0xfb, 0x74, 0x1b, 0x75, 0x1b, 0x75, 0x3c, 0x75, 0x5c, 0x75, 0xbc, 0x75, 0x3c, 0x7e, 0x5b, 0x7e, 0x5b, 0x86, 0x5b, 0x86, 0x5b, 0x8e, 0x5b, 0x8e, 0x5b, 0x8e, 0x5b, 0x8e, 0x5b, 0x8e, 0x5b, 0x86, 0x5b, 0x7e, 0x5c, 0x7e, 0xdc, 0x75, 0x5c, 0x6d, 0x1b, 0x65, 0xfb, 0x64, 0xdb, 0x64, 0xba, 0x64, 0xb9, 0x5c, 0x78, 0x54, 0x58, 0x54, 0x37, 0x4c, 0x37, 0x4c, 0xf7, 0x43, 0xd7, 0x3b, 0xd6, 0x3b, 0xb6, 0x33, 0xb6, 0x33, 0x96, 0x33, 0x96, 0x33, 0x75, 0x33, 0x75, 0x33, 0x75, 0x33, 0x34, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x95, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xf6, 0x4b, 0xf6, 0x43, 0x95, 0x43, 0x55, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x37, 0x54, 0x17, 0x54, 0x58, 0x54, 0x78, 0x5c, 0x78, 0x5c, 0x79, 0x5c, 0x99, 0x5c, 0x9a, 0x5c, 0xba, 0x5c, 0xbb, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0x1c, 0x65, 0x3c, 0x65, 0x7c, 0x6d, 0x9c, 0x6d, 0xfc, 0x75, 0x5b, 0x7e, 0x5b, 0x86, 0x5b, 0x8e, 0x5b, 0x8e, 0x5b, 0x96, 0x5b, 0x96, 0x5b, 0x96, 0x5b, 0x96, 0x5b, 0x96, 0x5b, 0x8e, 0x5b, 0x86, 0x5b, 0x7e, 0x1c, 0x76, 0xbc, 0x75, 0x9c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x3c, 0x65, 0x3c, 0x6d, 0x3c, 0x6d, 0x1c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x1c, 0x65, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xdc, 0x5c, 0xbc, 0x5c, 0xdc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0x9c, 0x5c, 0xdc, 0x5c, 0xfc, 0x64, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0x5a, 0x4c, 0xb6, 0x43, 0x96, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x71, 0x2a, + 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xf8, 0x4b, 0x18, 0x4c, 0x38, 0x4c, 0x39, 0x4c, 0x59, 0x54, 0x7a, 0x54, 0x58, 0x54, 0x79, 0x54, 0x79, 0x54, 0x9a, 0x5c, 0xbb, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0x3c, 0x65, 0x3c, 0x6d, 0xfc, 0x64, 0x1c, 0x65, 0x1c, 0x6d, 0x1b, 0x6d, 0x1b, 0x75, 0x1b, 0x75, 0x1b, 0x7d, 0x1b, 0x75, 0x3c, 0x75, 0x5c, 0x75, 0x7c, 0x75, 0xbc, 0x7d, 0x3c, 0x7e, 0x5b, 0x7e, 0x5b, 0x86, 0x5b, 0x8e, 0x5b, 0x96, 0x5c, 0x9e, 0x5c, 0x9e, 0x5c, 0x9e, 0x5c, 0x9e, 0x5c, 0x96, 0x5b, 0x96, 0x5b, 0x86, 0x5c, 0x7e, 0xfc, 0x7d, 0x9b, 0x75, 0x5c, 0x6d, 0xfb, 0x64, 0xfb, 0x64, 0xda, 0x5c, 0x99, 0x54, 0x58, 0x4c, 0x17, 0x4c, 0x17, 0x44, 0xf7, 0x3b, 0xd7, 0x3b, 0xd6, 0x33, 0xd6, 0x33, 0xd6, 0x33, 0xb6, 0x33, 0x96, 0x33, 0x96, 0x33, 0x96, 0x33, 0x55, 0x33, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x95, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xf6, 0x43, 0xd6, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x58, 0x54, 0x78, 0x5c, 0x78, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0xba, 0x5c, 0xbb, 0x5c, 0xdc, 0x64, 0xfc, 0x64, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x5c, 0x6d, 0xbc, 0x6d, 0x1c, 0x76, 0x5b, 0x7e, 0x5b, 0x86, 0x5b, 0x8e, 0x5b, 0x96, 0x5c, 0x9e, 0x5c, 0x9e, 0x5c, 0xa6, 0x5c, 0xa6, 0x5c, 0x9e, 0x5c, 0x96, 0x5b, 0x8e, 0x5b, 0x86, 0x5b, 0x86, 0x3c, 0x7e, 0x1c, 0x76, 0xbc, 0x75, 0x7c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x1c, 0x6d, 0x1c, 0x65, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xdc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x64, 0x1c, 0x65, 0xfc, 0x64, 0xfc, 0x5c, 0xfc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0x38, 0x54, 0xb6, 0x43, 0xb6, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x71, 0x2a, 0x71, 0x2a, + 0x50, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0xb7, 0x43, 0xd7, 0x43, 0xf8, 0x43, 0xf8, 0x4b, 0x19, 0x4c, 0x39, 0x4c, 0x59, 0x54, 0x7a, 0x54, 0x59, 0x4c, 0x58, 0x4c, 0x79, 0x54, 0x9a, 0x5c, 0xba, 0x5c, 0xdb, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x64, 0x3c, 0x6d, 0x1c, 0x6d, 0xfc, 0x64, 0x1c, 0x6d, 0x1c, 0x6d, 0x1c, 0x75, 0x1b, 0x75, 0x1b, 0x75, 0x1c, 0x7d, 0x3c, 0x7d, 0x5c, 0x75, 0x7c, 0x75, 0xbc, 0x7d, 0x1c, 0x7e, 0x7b, 0x86, 0x5b, 0x86, 0x7b, 0x8e, 0x5c, 0x96, 0x5c, 0xa6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x7c, 0xb6, 0x7c, 0xa6, 0x5c, 0x96, 0x7b, 0x96, 0x5b, 0x8e, 0x3c, 0x7e, 0xbc, 0x75, 0x5b, 0x6d, 0x1b, 0x65, 0xdb, 0x5c, 0x9a, 0x54, 0x58, 0x4c, 0x38, 0x44, 0x18, 0x3c, 0x17, 0x3c, 0xf7, 0x3b, 0xd7, 0x3b, 0xf7, 0x3b, 0xd7, 0x3b, 0xb6, 0x33, 0xb6, 0x33, 0xb6, 0x33, 0x75, 0x33, 0x13, 0x33, 0xf3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf7, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x57, 0x54, 0x58, 0x54, 0x78, 0x5c, 0x99, 0x5c, 0x9a, 0x5c, 0xba, 0x64, 0xdb, 0x64, 0xfc, 0x64, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x7c, 0x6d, 0x9c, 0x6d, 0x1c, 0x76, 0x5b, 0x7e, 0x5b, 0x86, 0x5c, 0x8e, 0x7c, 0x9e, 0x5c, 0xa6, 0x5c, 0xae, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xae, 0x5c, 0xa6, 0x5c, 0x9e, 0x5b, 0x96, 0x5b, 0x8e, 0x5b, 0x86, 0x5c, 0x7e, 0x1c, 0x76, 0xdc, 0x75, 0xbc, 0x75, 0x9c, 0x6d, 0x5c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x1c, 0x6d, 0x1c, 0x65, 0xfc, 0x64, 0xdc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0x1c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xfc, 0x64, 0xdc, 0x64, 0xdc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xf7, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xd3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, + 0x50, 0x2a, 0x50, 0x22, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x2a, 0x51, 0x2a, 0x71, 0x22, 0x50, 0x22, 0x51, 0x22, 0x92, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x14, 0x33, 0x55, 0x3b, 0x96, 0x3b, 0xb6, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xf8, 0x4b, 0x18, 0x4c, 0x19, 0x4c, 0x39, 0x4c, 0x79, 0x54, 0x79, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x79, 0x54, 0xba, 0x54, 0xdb, 0x5c, 0xfc, 0x5c, 0xfc, 0x64, 0x1c, 0x65, 0x3c, 0x65, 0x5c, 0x6d, 0x1c, 0x65, 0x1c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x1c, 0x75, 0x3c, 0x75, 0x3c, 0x75, 0x3c, 0x75, 0x5c, 0x7d, 0x5c, 0x7d, 0x9c, 0x7d, 0x1c, 0x76, 0x5b, 0x7e, 0x5b, 0x86, 0x5b, 0x8e, 0x7c, 0x96, 0x5c, 0xa6, 0x5c, 0xb6, 0x7c, 0xb6, 0x7c, 0xb6, 0x7c, 0xb6, 0x7c, 0xb6, 0x5c, 0xb6, 0x7c, 0xa6, 0x5c, 0x9e, 0x5b, 0x8e, 0x1b, 0x7e, 0x9c, 0x6d, 0x3b, 0x65, 0x1c, 0x5d, 0xdb, 0x54, 0x79, 0x44, 0x38, 0x3c, 0x38, 0x3c, 0x18, 0x3c, 0x18, 0x3c, 0x17, 0x3c, 0xf7, 0x3b, 0xf7, 0x3b, 0xd6, 0x3b, 0xd6, 0x3b, 0xb6, 0x3b, 0x34, 0x33, 0x13, 0x33, 0x13, 0x33, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd6, 0x43, 0xb5, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf7, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x79, 0x5c, 0x9a, 0x5c, 0xbb, 0x5c, 0xdc, 0x64, 0xfc, 0x64, 0x1c, 0x65, 0x3c, 0x6d, 0x9c, 0x6d, 0x1c, 0x76, 0x5b, 0x7e, 0x5b, 0x86, 0x5b, 0x8e, 0x5c, 0x9e, 0x7c, 0xa6, 0x7c, 0xb6, 0x7c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x7c, 0xae, 0x5c, 0x9e, 0x5b, 0x96, 0x5b, 0x8e, 0x5b, 0x86, 0x5c, 0x7e, 0x3c, 0x7e, 0xfc, 0x75, 0xdc, 0x75, 0xbc, 0x75, 0x7c, 0x6d, 0x7c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x1c, 0x6d, 0x1c, 0x6d, 0x1c, 0x6d, 0x1c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbb, 0x5c, 0xd7, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0x75, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x35, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, + 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x71, 0x2a, 0x91, 0x2a, 0xb2, 0x32, 0xf3, 0x3a, 0x54, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x53, 0x18, 0x54, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0x39, 0x4c, 0x59, 0x4c, 0x79, 0x54, 0x79, 0x54, 0x9a, 0x54, 0xbb, 0x5c, 0xbb, 0x54, 0xbb, 0x5c, 0xdb, 0x5c, 0xfc, 0x5c, 0x1c, 0x65, 0x3c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x3c, 0x75, 0x3c, 0x75, 0x5c, 0x75, 0x7c, 0x7d, 0x9c, 0x7d, 0xfc, 0x7d, 0x3c, 0x7e, 0x5b, 0x7e, 0x5b, 0x86, 0x5c, 0x96, 0x7c, 0x9e, 0x5c, 0xae, 0x7c, 0xbe, 0x7c, 0xbe, 0x7c, 0xb6, 0x7c, 0xb6, 0x7c, 0xb6, 0x7c, 0xb6, 0x5c, 0xae, 0x5b, 0x96, 0x3b, 0x76, 0xdb, 0x6d, 0x5c, 0x5d, 0x3b, 0x55, 0xdb, 0x4c, 0x7a, 0x44, 0x59, 0x44, 0x59, 0x44, 0x38, 0x3c, 0x18, 0x3c, 0x18, 0x3c, 0xf7, 0x3b, 0xf7, 0x3b, 0xf7, 0x3b, 0xd6, 0x3b, 0x55, 0x33, 0xf3, 0x32, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x37, 0x4c, 0x58, 0x54, 0x58, 0x54, 0x79, 0x5c, 0x9a, 0x5c, 0xbb, 0x5c, 0xdc, 0x64, 0xfc, 0x64, 0x3c, 0x65, 0x7c, 0x6d, 0xfc, 0x75, 0x5c, 0x7e, 0x7b, 0x86, 0x5b, 0x8e, 0x5c, 0x96, 0x5c, 0xa6, 0x5c, 0xb6, 0x5c, 0xb6, 0x7c, 0xb6, 0x7c, 0xb6, 0x7c, 0xb6, 0x7c, 0xbe, 0x7c, 0xae, 0x7c, 0x9e, 0x5b, 0x96, 0x7b, 0x8e, 0x5b, 0x86, 0x5b, 0x86, 0x3c, 0x7e, 0x1c, 0x76, 0xfc, 0x75, 0xbc, 0x75, 0x9c, 0x75, 0x9c, 0x75, 0x9c, 0x75, 0x9c, 0x75, 0xdc, 0x75, 0xdc, 0x75, 0x9c, 0x6d, 0x3c, 0x6d, 0x1c, 0x6d, 0x1c, 0x65, 0xfc, 0x64, 0xfc, 0x64, 0xdc, 0x64, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0x38, 0x54, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, + 0x91, 0x2a, 0x91, 0x2a, 0xd3, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb7, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0x18, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0x7b, 0x5c, 0x5a, 0x54, 0x59, 0x54, 0x59, 0x4c, 0x39, 0x4c, 0x59, 0x4c, 0x79, 0x54, 0x7a, 0x54, 0x9a, 0x5c, 0xbb, 0x5c, 0xdc, 0x5c, 0xdb, 0x5c, 0xdc, 0x5c, 0x1c, 0x5d, 0x3c, 0x65, 0x5c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x75, 0x7c, 0x75, 0x9c, 0x75, 0x9c, 0x7d, 0xdc, 0x7d, 0x1c, 0x7e, 0x5c, 0x7e, 0x5b, 0x7e, 0x5b, 0x86, 0x5b, 0x8e, 0x7c, 0x9e, 0x7c, 0xae, 0x7c, 0xbe, 0x7c, 0xbe, 0x7c, 0xbe, 0x7c, 0xbe, 0x7c, 0xb6, 0x7c, 0xae, 0x5b, 0x96, 0x5b, 0x7e, 0x1c, 0x6e, 0x9c, 0x5d, 0x3b, 0x55, 0xfc, 0x4c, 0xbb, 0x4c, 0x9b, 0x44, 0x59, 0x44, 0x59, 0x44, 0x38, 0x44, 0x38, 0x3c, 0x18, 0x3c, 0x17, 0x3c, 0xf7, 0x3b, 0xb6, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x74, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x75, 0x43, 0x34, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd7, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x37, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x9a, 0x5c, 0xbb, 0x5c, 0xdc, 0x5c, 0xfc, 0x64, 0x1c, 0x5d, 0x1c, 0x65, 0x9c, 0x6d, 0x1c, 0x76, 0x5b, 0x7e, 0x5b, 0x86, 0x7b, 0x8e, 0x5c, 0x9e, 0x5c, 0xae, 0x5c, 0xb6, 0x7c, 0xb6, 0x7c, 0xb6, 0x7c, 0xbe, 0x5c, 0xb6, 0x7c, 0xb6, 0x5c, 0xae, 0x5c, 0x9e, 0x5b, 0x96, 0x5b, 0x8e, 0x5b, 0x86, 0x5b, 0x86, 0x5b, 0x7e, 0x3c, 0x7e, 0x1c, 0x7e, 0x1c, 0x7e, 0xdc, 0x7d, 0xdc, 0x7d, 0xfc, 0x75, 0xdc, 0x75, 0xdc, 0x75, 0xbc, 0x75, 0xdc, 0x75, 0x7c, 0x6d, 0x3c, 0x6d, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xdc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xd3, 0x32, 0xb2, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x71, 0x2a, + 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xf7, 0x4b, 0xf8, 0x4b, 0x18, 0x54, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7b, 0x54, 0x7a, 0x5c, 0x7a, 0x54, 0x7b, 0x5c, 0x7b, 0x5c, 0x7b, 0x54, 0x79, 0x54, 0x79, 0x5c, 0x9a, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0x1c, 0x65, 0x3c, 0x65, 0x7c, 0x6d, 0xbc, 0x6d, 0x7c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x5c, 0x75, 0x9c, 0x75, 0xbc, 0x75, 0xdc, 0x75, 0xfc, 0x75, 0x3c, 0x76, 0x3c, 0x76, 0x3c, 0x76, 0x5b, 0x86, 0x5b, 0x8e, 0x7c, 0x9e, 0x7c, 0xa6, 0x7c, 0xb6, 0x5c, 0xb6, 0x7c, 0xb6, 0x7c, 0xae, 0x5c, 0x9e, 0x5b, 0x8e, 0x5b, 0x7e, 0x1c, 0x66, 0xbc, 0x65, 0x5c, 0x5d, 0xfc, 0x54, 0xbc, 0x4c, 0xbb, 0x4c, 0x7a, 0x44, 0x59, 0x44, 0x59, 0x44, 0x38, 0x44, 0x38, 0x3c, 0x18, 0x3c, 0xf7, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x74, 0x43, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x18, 0x4c, 0x58, 0x54, 0x79, 0x54, 0x9a, 0x5c, 0xbb, 0x5c, 0xdc, 0x64, 0xfc, 0x64, 0x1c, 0x65, 0x5c, 0x65, 0xdc, 0x6d, 0x3c, 0x76, 0x5b, 0x7e, 0x5b, 0x86, 0x5b, 0x8e, 0x5c, 0x9e, 0x5c, 0xa6, 0x5c, 0xae, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xae, 0x5c, 0x9e, 0x5c, 0x96, 0x5b, 0x8e, 0x5b, 0x8e, 0x5b, 0x86, 0x5b, 0x86, 0x5c, 0x86, 0x1c, 0x86, 0x1c, 0x86, 0xdc, 0x85, 0xbc, 0x7d, 0xbc, 0x7d, 0xbc, 0x7d, 0xbc, 0x7d, 0xfc, 0x75, 0xfc, 0x75, 0xdc, 0x75, 0x9c, 0x6d, 0x5c, 0x6d, 0x1c, 0x6d, 0xfc, 0x64, 0xfc, 0x64, 0xdc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbb, 0x5c, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xb2, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x50, 0x2a, 0x91, 0x2a, 0xd2, 0x32, 0xf3, 0x3a, + 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0x18, 0x54, 0x38, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x7b, 0x5c, 0x9b, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbb, 0x5c, 0xba, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0x1c, 0x65, 0x3c, 0x65, 0x5c, 0x6d, 0x7c, 0x6d, 0x9c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x9c, 0x6d, 0xbc, 0x75, 0xdc, 0x75, 0xdc, 0x6d, 0xfc, 0x6d, 0x1c, 0x6e, 0x1c, 0x76, 0x1c, 0x76, 0x7b, 0x7e, 0x7b, 0x86, 0x5b, 0x8e, 0x5c, 0x96, 0x5c, 0x9e, 0x5c, 0x9e, 0x5b, 0x96, 0x5b, 0x8e, 0x5b, 0x86, 0x5b, 0x7e, 0x1c, 0x66, 0xdc, 0x5d, 0x5b, 0x5d, 0x3c, 0x55, 0xdc, 0x4c, 0x9b, 0x4c, 0x7a, 0x44, 0x7a, 0x44, 0x5a, 0x44, 0x59, 0x44, 0x38, 0x44, 0x18, 0x3c, 0x96, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x74, 0x43, 0x74, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x74, 0x43, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x38, 0x4c, 0x59, 0x54, 0x79, 0x54, 0x9a, 0x5c, 0xbb, 0x5c, 0xdc, 0x5c, 0x1c, 0x65, 0x3c, 0x65, 0x7c, 0x65, 0xfc, 0x6d, 0x3b, 0x76, 0x5b, 0x7e, 0x5b, 0x86, 0x5b, 0x8e, 0x5c, 0x9e, 0x5c, 0xa6, 0x7c, 0xae, 0x5c, 0xae, 0x5c, 0xae, 0x5c, 0xae, 0x7c, 0xae, 0x5c, 0x9e, 0x5b, 0x96, 0x5b, 0x96, 0x5b, 0x8e, 0x5b, 0x86, 0x5b, 0x86, 0x5c, 0x86, 0x3c, 0x86, 0xdc, 0x85, 0xdc, 0x85, 0xdc, 0x85, 0xbc, 0x85, 0xbc, 0x85, 0xbc, 0x85, 0xfc, 0x7d, 0x1c, 0x7e, 0xfc, 0x75, 0xdc, 0x75, 0x9c, 0x75, 0x7c, 0x6d, 0x5c, 0x6d, 0x1c, 0x65, 0xfc, 0x64, 0xfc, 0x5c, 0xdc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0x7a, 0x5c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xb2, 0x2a, 0xb2, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x50, 0x22, 0xd2, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xd3, 0x32, + 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x76, 0x43, 0xb6, 0x43, 0xf7, 0x4b, 0x18, 0x4c, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x7b, 0x54, 0x9b, 0x5c, 0xbc, 0x5c, 0xdc, 0x64, 0xdc, 0x64, 0xdb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xfc, 0x5c, 0x1c, 0x5d, 0x3c, 0x65, 0x5c, 0x65, 0x7c, 0x6d, 0x9c, 0x6d, 0x9c, 0x6d, 0x9c, 0x6d, 0xdc, 0x75, 0xdc, 0x75, 0x9c, 0x75, 0x9c, 0x6d, 0x9c, 0x6d, 0x9c, 0x6d, 0xbc, 0x6d, 0x9c, 0x6d, 0x9c, 0x6d, 0x9c, 0x6d, 0xdc, 0x6d, 0xfc, 0x6d, 0xbc, 0x6d, 0xdc, 0x75, 0x3c, 0x7e, 0x5b, 0x7e, 0x7b, 0x86, 0x7b, 0x86, 0x5b, 0x86, 0x5b, 0x86, 0x7b, 0x7e, 0x3b, 0x76, 0xdc, 0x65, 0xbc, 0x5d, 0x5c, 0x5d, 0x1c, 0x55, 0xfc, 0x54, 0xbb, 0x4c, 0xbb, 0x4c, 0x9a, 0x44, 0x7a, 0x44, 0x59, 0x44, 0x59, 0x44, 0xf7, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x74, 0x3b, 0x74, 0x3b, 0x75, 0x43, 0x74, 0x43, 0x13, 0x3b, 0xf3, 0x32, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x58, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0xbb, 0x5c, 0xdc, 0x5c, 0x1c, 0x5d, 0x3c, 0x65, 0x9c, 0x6d, 0x1c, 0x6e, 0x7b, 0x76, 0x5b, 0x86, 0x5b, 0x86, 0x5b, 0x8e, 0x5c, 0x96, 0x5c, 0xa6, 0x5c, 0xae, 0x7c, 0xae, 0x5c, 0xa6, 0x7c, 0xa6, 0x5c, 0x9e, 0x7c, 0x96, 0x5b, 0x96, 0x5b, 0x8e, 0x7b, 0x86, 0x5b, 0x86, 0x7b, 0x86, 0x5c, 0x86, 0xfc, 0x85, 0xbc, 0x85, 0xbc, 0x85, 0x9c, 0x85, 0x9c, 0x85, 0xdc, 0x85, 0xfc, 0x85, 0x1c, 0x7e, 0xfc, 0x7d, 0xdc, 0x75, 0xbc, 0x75, 0x9c, 0x6d, 0x5c, 0x6d, 0x7c, 0x6d, 0x3b, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xfc, 0x64, 0xdc, 0x5c, 0xfc, 0x64, 0x59, 0x54, 0xf8, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0xd3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, + 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xd7, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0x39, 0x54, 0x39, 0x54, 0x38, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x7b, 0x54, 0x9b, 0x5c, 0x9c, 0x5c, 0xbc, 0x5c, 0xdc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x5c, 0xfc, 0x5c, 0x1c, 0x65, 0x5c, 0x65, 0x9c, 0x6d, 0x9c, 0x6d, 0xbc, 0x6d, 0x9c, 0x6d, 0x9c, 0x6d, 0x1c, 0x7e, 0x3c, 0x7e, 0xdc, 0x75, 0x9c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x7c, 0x65, 0x7c, 0x65, 0x7c, 0x65, 0x7c, 0x6d, 0x9c, 0x6d, 0x7c, 0x6d, 0x3c, 0x6d, 0x9c, 0x6d, 0xbc, 0x6d, 0xfc, 0x6d, 0x3c, 0x76, 0x1b, 0x76, 0x3c, 0x76, 0x3c, 0x76, 0xfc, 0x6d, 0xdc, 0x65, 0x5b, 0x5d, 0x3c, 0x55, 0x1c, 0x55, 0xdc, 0x54, 0xdc, 0x4c, 0x9b, 0x4c, 0x9b, 0x44, 0x7a, 0x44, 0x7a, 0x44, 0x39, 0x44, 0xd7, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x54, 0x3b, 0x13, 0x3b, 0xd2, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x13, 0x33, 0x13, 0x33, 0x34, 0x3b, 0x34, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x59, 0x54, 0x79, 0x54, 0x9b, 0x54, 0xbc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0x3c, 0x65, 0xbc, 0x6d, 0x1c, 0x6e, 0x5b, 0x7e, 0x5b, 0x86, 0x7b, 0x86, 0x7b, 0x8e, 0x7c, 0x96, 0x7c, 0x9e, 0x7c, 0xa6, 0x7c, 0xa6, 0x5c, 0x9e, 0x5c, 0x9e, 0x7b, 0x96, 0x5b, 0x96, 0x5b, 0x8e, 0x5b, 0x8e, 0x7b, 0x86, 0x5b, 0x86, 0x5c, 0x86, 0x1c, 0x86, 0xdc, 0x85, 0x9c, 0x85, 0xbc, 0x85, 0xfc, 0x8d, 0x1c, 0x8e, 0xfc, 0x8d, 0xfc, 0x85, 0xfc, 0x85, 0xdc, 0x7d, 0xdc, 0x75, 0xbc, 0x75, 0x7c, 0x6d, 0x5c, 0x6d, 0xbc, 0x6d, 0x9c, 0x6d, 0x5c, 0x65, 0x3c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x18, 0x54, 0x38, 0x54, 0x18, 0x54, 0xf7, 0x53, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0xf4, 0x32, 0x13, 0x33, 0xf3, 0x32, 0xd2, 0x2a, 0xd2, 0x2a, 0xb2, 0x2a, 0xd2, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, + 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x38, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x9b, 0x54, 0x9c, 0x5c, 0x9c, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x7c, 0x6d, 0x9c, 0x6d, 0x9c, 0x6d, 0xbc, 0x6d, 0x7c, 0x6d, 0x9c, 0x6d, 0x3c, 0x7e, 0x5c, 0x7e, 0xdc, 0x75, 0x7c, 0x6d, 0x5c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x1c, 0x5d, 0x3c, 0x65, 0x7c, 0x65, 0x7c, 0x65, 0x7c, 0x65, 0x9c, 0x65, 0x9c, 0x65, 0x5c, 0x5d, 0x1c, 0x55, 0x1c, 0x55, 0x1c, 0x55, 0xdc, 0x4c, 0xbc, 0x4c, 0xbb, 0x4c, 0xbb, 0x4c, 0x9b, 0x44, 0x7b, 0x44, 0x59, 0x44, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x74, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x13, 0x3b, 0xd2, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x13, 0x33, 0x13, 0x3b, 0x13, 0x33, 0x34, 0x33, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x7a, 0x54, 0x9b, 0x54, 0xbc, 0x54, 0xdc, 0x5c, 0x1c, 0x5d, 0x3c, 0x5d, 0x7c, 0x65, 0xfc, 0x6d, 0x3b, 0x76, 0x5b, 0x7e, 0x5b, 0x86, 0x7b, 0x8e, 0x5b, 0x8e, 0x5b, 0x96, 0x7c, 0x96, 0x7c, 0x96, 0x7b, 0x96, 0x5b, 0x96, 0x5b, 0x8e, 0x7b, 0x8e, 0x5b, 0x86, 0x7b, 0x86, 0x7b, 0x86, 0x5b, 0x86, 0x1c, 0x7e, 0xdc, 0x85, 0xdc, 0x85, 0xfc, 0x85, 0xfc, 0x8d, 0xfc, 0x8d, 0x1c, 0x8e, 0xfc, 0x8d, 0xfc, 0x85, 0xdc, 0x85, 0xdc, 0x7d, 0xdc, 0x75, 0xbc, 0x75, 0x7c, 0x6d, 0x9c, 0x6d, 0xdc, 0x6d, 0x9c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0xfa, 0x5c, 0xb5, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0xf7, 0x53, 0x17, 0x54, 0xf7, 0x53, 0xd7, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x13, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xd2, 0x2a, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, + 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x14, 0x3b, 0x34, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0x18, 0x4c, 0x39, 0x54, 0x39, 0x54, 0x38, 0x54, 0x39, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x7b, 0x54, 0x9b, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x5c, 0x6d, 0x9c, 0x6d, 0x9c, 0x6d, 0x9c, 0x6d, 0x5c, 0x65, 0x5c, 0x65, 0xfc, 0x75, 0x7c, 0x7e, 0xfc, 0x75, 0x9c, 0x6d, 0x5c, 0x65, 0x5c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x1c, 0x65, 0x1c, 0x5d, 0xfc, 0x5c, 0x1c, 0x5d, 0x1c, 0x5d, 0x3c, 0x5d, 0x3c, 0x5d, 0x3c, 0x5d, 0x3c, 0x5d, 0x1c, 0x55, 0xfc, 0x54, 0xdc, 0x54, 0xdc, 0x4c, 0xbc, 0x4c, 0xbc, 0x4c, 0x9c, 0x4c, 0x9c, 0x4c, 0x9b, 0x4c, 0x17, 0x44, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x74, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x33, 0x3b, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf2, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x13, 0x33, 0x13, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x33, 0xf3, 0x32, 0x13, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x39, 0x4c, 0x59, 0x54, 0x7a, 0x54, 0x9b, 0x54, 0xbc, 0x54, 0xfc, 0x5c, 0x3c, 0x5d, 0x7c, 0x65, 0xfc, 0x6d, 0x5b, 0x76, 0x5b, 0x7e, 0x5b, 0x86, 0x7b, 0x8e, 0x7b, 0x8e, 0x7b, 0x8e, 0x7b, 0x8e, 0x7b, 0x8e, 0x7b, 0x8e, 0x5b, 0x8e, 0x5b, 0x86, 0x5b, 0x86, 0x7b, 0x86, 0x5b, 0x7e, 0x7b, 0x86, 0x3c, 0x7e, 0x3c, 0x7e, 0x3c, 0x86, 0xfc, 0x85, 0xbc, 0x85, 0x9c, 0x85, 0xfc, 0x8d, 0x1c, 0x8e, 0x1c, 0x8e, 0xfc, 0x85, 0xdc, 0x7d, 0xdc, 0x7d, 0xdc, 0x75, 0xbc, 0x6d, 0x5c, 0x6d, 0x9c, 0x6d, 0x9c, 0x6d, 0x7c, 0x6d, 0x7c, 0x65, 0xfa, 0x5c, 0x75, 0x43, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x14, 0x3b, 0x13, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x91, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, + 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x34, 0x3b, 0x55, 0x3b, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0x19, 0x4c, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x7b, 0x5c, 0xbb, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xfc, 0x64, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x1c, 0x65, 0x3c, 0x6d, 0x5c, 0x65, 0x7c, 0x6d, 0xbc, 0x75, 0xbc, 0x6d, 0x9c, 0x65, 0x3c, 0x65, 0x3c, 0x5d, 0x7c, 0x6d, 0xfc, 0x75, 0xbc, 0x6d, 0x7c, 0x6d, 0x5c, 0x65, 0x5c, 0x65, 0x3c, 0x65, 0x3c, 0x5d, 0x1c, 0x5d, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0xfc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0x1c, 0x5d, 0x1c, 0x5d, 0x1c, 0x5d, 0xfc, 0x54, 0xfc, 0x4c, 0xfc, 0x4c, 0xfc, 0x4c, 0xdc, 0x4c, 0xdc, 0x4c, 0xbc, 0x4c, 0xbc, 0x4c, 0xbc, 0x4c, 0x79, 0x4c, 0xf7, 0x4b, 0x17, 0x54, 0x17, 0x54, 0x17, 0x54, 0xf7, 0x53, 0xf7, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0x95, 0x43, 0x75, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x33, 0x3b, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x13, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x7a, 0x54, 0x9b, 0x54, 0xbc, 0x54, 0xdc, 0x54, 0x1c, 0x5d, 0x5c, 0x65, 0xdc, 0x6d, 0x3c, 0x76, 0x5b, 0x7e, 0x7b, 0x7e, 0x7b, 0x86, 0x5b, 0x86, 0x7b, 0x86, 0x5b, 0x86, 0x5b, 0x86, 0x5b, 0x86, 0x5b, 0x86, 0x7b, 0x7e, 0x5b, 0x7e, 0x5b, 0x7e, 0x5b, 0x7e, 0x7b, 0x7e, 0x7b, 0x86, 0x3c, 0x7e, 0xfc, 0x85, 0xdc, 0x85, 0x9c, 0x85, 0x9c, 0x85, 0xbc, 0x85, 0xfc, 0x8d, 0xfc, 0x8d, 0xdc, 0x85, 0xdc, 0x7d, 0xdc, 0x75, 0xdc, 0x75, 0x9c, 0x6d, 0x5c, 0x6d, 0x5c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0xda, 0x5c, 0x74, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x13, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, + 0x92, 0x32, 0x91, 0x2a, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0x18, 0x4c, 0x39, 0x4c, 0x59, 0x54, 0x39, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0xbb, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xfc, 0x64, 0x1c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x5c, 0x65, 0x7c, 0x6d, 0x9c, 0x6d, 0xbc, 0x6d, 0x9c, 0x65, 0x7c, 0x65, 0x3c, 0x5d, 0x3c, 0x5d, 0x3c, 0x65, 0x7c, 0x6d, 0x9c, 0x6d, 0x7c, 0x6d, 0x5c, 0x65, 0x5c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x1c, 0x5d, 0xfc, 0x54, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x54, 0xfc, 0x54, 0xfc, 0x54, 0xdc, 0x4c, 0xdc, 0x4c, 0xdc, 0x4c, 0xdc, 0x4c, 0xbc, 0x4c, 0x9b, 0x4c, 0x38, 0x4c, 0x17, 0x54, 0x37, 0x54, 0x17, 0x5c, 0x17, 0x5c, 0x17, 0x5c, 0x17, 0x54, 0x17, 0x54, 0xf7, 0x53, 0xf6, 0x53, 0xd6, 0x4b, 0xd6, 0x4b, 0x95, 0x4b, 0x74, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x34, 0x3b, 0xf2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x59, 0x4c, 0x5a, 0x4c, 0x7b, 0x4c, 0x9c, 0x4c, 0xdc, 0x54, 0x1c, 0x5d, 0x5c, 0x65, 0x9c, 0x6d, 0xfc, 0x6d, 0x5b, 0x76, 0x7b, 0x7e, 0x7b, 0x7e, 0x7b, 0x7e, 0x7b, 0x7e, 0x5b, 0x7e, 0x5b, 0x7e, 0x5b, 0x7e, 0x7b, 0x7e, 0x5b, 0x7e, 0x5b, 0x7e, 0x5a, 0x7e, 0x5b, 0x7e, 0x5b, 0x7e, 0x5c, 0x7e, 0x1c, 0x7e, 0xfc, 0x7d, 0x9c, 0x7d, 0x7c, 0x7d, 0x7c, 0x85, 0x9c, 0x85, 0xdc, 0x85, 0xfc, 0x85, 0xfc, 0x7d, 0xdc, 0x75, 0xdc, 0x75, 0xbc, 0x75, 0x5c, 0x6d, 0x5c, 0x65, 0x3c, 0x65, 0x3c, 0x5d, 0xba, 0x54, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, + 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0xf8, 0x4b, 0x19, 0x4c, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x9b, 0x54, 0xbb, 0x5c, 0xdb, 0x5c, 0xfc, 0x64, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x3c, 0x6d, 0x5c, 0x6d, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x5c, 0x65, 0x5c, 0x6d, 0x7c, 0x6d, 0xdc, 0x6d, 0xbc, 0x6d, 0x9c, 0x65, 0x5c, 0x65, 0x1c, 0x5d, 0x3c, 0x5d, 0x3c, 0x65, 0x3c, 0x65, 0x7c, 0x65, 0xbc, 0x6d, 0x7c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0xfc, 0x5c, 0xbc, 0x54, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x54, 0xdc, 0x4c, 0xdc, 0x4c, 0xdc, 0x4c, 0xdc, 0x4c, 0xdc, 0x4c, 0xdc, 0x4c, 0xdc, 0x4c, 0x9a, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x38, 0x5c, 0x38, 0x5c, 0x37, 0x5c, 0x37, 0x5c, 0x17, 0x54, 0x17, 0x54, 0x17, 0x54, 0xd6, 0x4b, 0x74, 0x43, 0x74, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf7, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0x38, 0x4c, 0x39, 0x4c, 0x5a, 0x4c, 0x7b, 0x4c, 0x9c, 0x4c, 0xdc, 0x54, 0xfc, 0x5c, 0x3c, 0x5d, 0x7c, 0x65, 0xbc, 0x6d, 0xfc, 0x6d, 0x5c, 0x76, 0x7c, 0x7e, 0x5b, 0x7e, 0x5b, 0x7e, 0x5b, 0x7e, 0x5b, 0x76, 0x5b, 0x76, 0x5b, 0x76, 0x5b, 0x76, 0x5b, 0x76, 0x5b, 0x76, 0x5b, 0x76, 0x5c, 0x7e, 0x3c, 0x7e, 0xfc, 0x7d, 0x9c, 0x7d, 0x7c, 0x7d, 0x7c, 0x7d, 0x7c, 0x7d, 0x7c, 0x7d, 0xbc, 0x7d, 0xdc, 0x7d, 0xfc, 0x75, 0xdc, 0x75, 0xdc, 0x6d, 0x5c, 0x6d, 0x5c, 0x65, 0x5c, 0x65, 0x3c, 0x5d, 0x99, 0x54, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x13, 0x33, 0x13, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, + 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0xf8, 0x4b, 0x39, 0x4c, 0x59, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x9a, 0x5c, 0xbb, 0x5c, 0xdb, 0x5c, 0xfc, 0x64, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x3c, 0x65, 0x5c, 0x6d, 0x7c, 0x6d, 0x9c, 0x6d, 0xdc, 0x6d, 0xbc, 0x6d, 0x5c, 0x65, 0x3c, 0x65, 0x1c, 0x5d, 0x1c, 0x5d, 0x1c, 0x5d, 0x3c, 0x55, 0x1c, 0x5d, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x54, 0xdc, 0x54, 0xdc, 0x54, 0xbc, 0x54, 0xdc, 0x4c, 0xdc, 0x54, 0xdb, 0x54, 0x7a, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x5c, 0x38, 0x54, 0x38, 0x54, 0xf7, 0x53, 0x95, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x13, 0x3b, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0x18, 0x44, 0x18, 0x44, 0x39, 0x44, 0x5a, 0x44, 0x7a, 0x44, 0x9b, 0x4c, 0xdc, 0x54, 0xfc, 0x5c, 0x3c, 0x5d, 0x5c, 0x65, 0x7c, 0x6d, 0xdc, 0x6d, 0x1c, 0x76, 0x3c, 0x76, 0x5c, 0x76, 0x5c, 0x76, 0x5c, 0x76, 0x5c, 0x76, 0x5c, 0x6e, 0x5c, 0x76, 0x5b, 0x6e, 0x5b, 0x6e, 0x5c, 0x76, 0x5c, 0x76, 0x3c, 0x76, 0x1c, 0x76, 0xbc, 0x75, 0x9c, 0x75, 0x7c, 0x75, 0x9c, 0x75, 0x7c, 0x75, 0x7c, 0x75, 0x9c, 0x75, 0xbc, 0x75, 0xdc, 0x75, 0xbc, 0x75, 0x7c, 0x6d, 0x3c, 0x65, 0x3b, 0x65, 0x3c, 0x65, 0x99, 0x54, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x33, 0x13, 0x33, 0x13, 0x33, 0x13, 0x33, 0x13, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, + 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x35, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0xd7, 0x4b, 0xf8, 0x4b, 0x18, 0x4c, 0x39, 0x4c, 0x39, 0x4c, 0x39, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x9a, 0x54, 0xbb, 0x5c, 0xdb, 0x64, 0xfc, 0x64, 0x3c, 0x65, 0x1c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x65, 0x7c, 0x6d, 0x7c, 0x6d, 0xbc, 0x6d, 0xdc, 0x75, 0xbc, 0x6d, 0x5c, 0x65, 0x3c, 0x5d, 0x3c, 0x5d, 0x5c, 0x5d, 0x3c, 0x5d, 0x3c, 0x55, 0xfc, 0x54, 0xfc, 0x5c, 0x1c, 0x5d, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x54, 0xdc, 0x54, 0xdc, 0x54, 0xdc, 0x54, 0xdc, 0x54, 0xdc, 0x54, 0x9b, 0x54, 0x5a, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x5c, 0x79, 0x5c, 0x58, 0x54, 0xf7, 0x53, 0xd6, 0x4b, 0x95, 0x43, 0x74, 0x43, 0x75, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0xf3, 0x3a, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0x17, 0x44, 0x18, 0x44, 0x38, 0x44, 0x39, 0x44, 0x7a, 0x44, 0x9a, 0x4c, 0xbb, 0x4c, 0xfc, 0x54, 0x1c, 0x5d, 0x3c, 0x5d, 0x5c, 0x65, 0x7c, 0x65, 0x9c, 0x6d, 0xbc, 0x6d, 0xfc, 0x6d, 0x1c, 0x6e, 0x1c, 0x6e, 0xfc, 0x6d, 0xfc, 0x6d, 0x1c, 0x6e, 0x1c, 0x6e, 0x3c, 0x6e, 0x5c, 0x6e, 0x3c, 0x76, 0x3c, 0x76, 0xdc, 0x75, 0x9c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x9c, 0x6d, 0x9c, 0x6d, 0x7c, 0x6d, 0x9c, 0x6d, 0xbc, 0x6d, 0x9c, 0x6d, 0x7c, 0x6d, 0x1c, 0x65, 0x3c, 0x65, 0x3c, 0x5d, 0x58, 0x54, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x13, 0x33, 0x13, 0x33, 0x13, 0x33, 0x13, 0x33, 0x13, 0x33, 0x13, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, + 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xf4, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xf8, 0x4b, 0x19, 0x54, 0x39, 0x54, 0x7b, 0x54, 0x7c, 0x5c, 0xbc, 0x5c, 0xdc, 0x64, 0xbb, 0x64, 0xbb, 0x64, 0xbb, 0x5c, 0xdb, 0x64, 0xfc, 0x64, 0x3c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x3c, 0x75, 0x3c, 0x6d, 0x3c, 0x75, 0x5c, 0x75, 0x7c, 0x75, 0x7c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x9c, 0x6d, 0xdc, 0x6d, 0xfc, 0x75, 0xbc, 0x6d, 0x5c, 0x5d, 0x5c, 0x5d, 0x5c, 0x5d, 0x5c, 0x5d, 0x3c, 0x5d, 0xdc, 0x54, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x54, 0xfc, 0x5c, 0xfc, 0x5c, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x54, 0xfc, 0x5c, 0xfc, 0x54, 0xfc, 0x54, 0xdc, 0x54, 0xdc, 0x5c, 0x9b, 0x5c, 0x7a, 0x5c, 0x38, 0x54, 0xf7, 0x4b, 0xf6, 0x4b, 0xb6, 0x4b, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x13, 0x3b, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0x92, 0x32, 0x91, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0x18, 0x44, 0x38, 0x44, 0x58, 0x44, 0x59, 0x44, 0x7a, 0x44, 0xbb, 0x4c, 0xdc, 0x54, 0xfc, 0x54, 0x1c, 0x5d, 0x3c, 0x65, 0x3c, 0x65, 0x5c, 0x65, 0x7c, 0x6d, 0x9c, 0x6d, 0xbc, 0x65, 0xbc, 0x65, 0x9c, 0x65, 0x9c, 0x65, 0xbc, 0x65, 0xdc, 0x65, 0xfc, 0x65, 0x1c, 0x6e, 0x3c, 0x6e, 0x1c, 0x6e, 0x9c, 0x6d, 0x7c, 0x65, 0x7c, 0x6d, 0x9c, 0x65, 0x7c, 0x6d, 0x9c, 0x65, 0x9c, 0x65, 0x9c, 0x65, 0x7c, 0x65, 0x5c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x5d, 0x17, 0x4c, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x13, 0x33, 0x13, 0x33, 0x13, 0x33, 0x13, 0x33, 0x13, 0x33, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, + 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xf3, 0x3a, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb7, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0x18, 0x4c, 0x5a, 0x54, 0x9b, 0x5c, 0x9c, 0x5c, 0x9b, 0x5c, 0xbb, 0x5c, 0x9c, 0x5c, 0xdc, 0x64, 0xdc, 0x64, 0xfc, 0x64, 0x1c, 0x6d, 0x3c, 0x6d, 0x3c, 0x75, 0x5c, 0x75, 0x5c, 0x75, 0x5c, 0x75, 0x7c, 0x75, 0x7c, 0x75, 0x7c, 0x75, 0x9c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x9c, 0x6d, 0x9c, 0x6d, 0xbc, 0x6d, 0xdc, 0x6d, 0xdc, 0x6d, 0xbc, 0x6d, 0x5c, 0x5d, 0x7c, 0x5d, 0x5c, 0x5d, 0x1c, 0x5d, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x54, 0xfc, 0x54, 0xfc, 0x54, 0xdc, 0x54, 0xfc, 0x54, 0x1c, 0x5d, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x64, 0xfc, 0x64, 0xdc, 0x5c, 0xdc, 0x54, 0xdb, 0x54, 0xfb, 0x54, 0xfb, 0x54, 0xdc, 0x4c, 0x9a, 0x44, 0xf7, 0x43, 0x95, 0x3b, 0x95, 0x43, 0xb6, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0x95, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x75, 0x43, 0x74, 0x43, 0x54, 0x3b, 0x74, 0x3b, 0x54, 0x3b, 0x74, 0x43, 0x34, 0x3b, 0xd2, 0x32, 0xd2, 0x32, 0xf2, 0x3a, 0xf2, 0x32, 0xf2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0xf7, 0x3b, 0x18, 0x3c, 0x18, 0x3c, 0x38, 0x44, 0x59, 0x44, 0x79, 0x4c, 0x9a, 0x4c, 0xdb, 0x4c, 0xdb, 0x54, 0xdc, 0x5c, 0xfc, 0x5c, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x7c, 0x65, 0x7c, 0x65, 0x7c, 0x65, 0x9c, 0x65, 0xbc, 0x65, 0xdc, 0x65, 0xdc, 0x65, 0xdc, 0x6d, 0x9c, 0x65, 0x7c, 0x65, 0x7c, 0x65, 0x9c, 0x65, 0x7c, 0x65, 0x7c, 0x65, 0x7c, 0x65, 0x5c, 0x65, 0x3c, 0x65, 0xfc, 0x5c, 0xdc, 0x64, 0x1c, 0x5d, 0xf6, 0x4b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x33, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x33, 0x13, 0x33, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, + 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x13, 0x3b, 0xf4, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf4, 0x3a, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0x96, 0x43, 0xb7, 0x43, 0xd7, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0x39, 0x4c, 0x59, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x7b, 0x5c, 0x9c, 0x5c, 0xbc, 0x64, 0xdc, 0x64, 0xfc, 0x64, 0x1c, 0x6d, 0x3c, 0x6d, 0x3c, 0x75, 0x5c, 0x75, 0x7c, 0x75, 0x7c, 0x75, 0x7c, 0x75, 0x9c, 0x7d, 0x9c, 0x75, 0x9c, 0x75, 0x9c, 0x6d, 0x7c, 0x6d, 0x7c, 0x65, 0x9c, 0x65, 0x9c, 0x6d, 0x9c, 0x6d, 0xbc, 0x6d, 0xdc, 0x6d, 0xdc, 0x6d, 0x7c, 0x65, 0x5c, 0x5d, 0x3c, 0x5d, 0xfc, 0x5c, 0x1c, 0x55, 0xfc, 0x54, 0xdc, 0x54, 0xdc, 0x54, 0xdc, 0x54, 0xfc, 0x5c, 0x1c, 0x5d, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x54, 0x9a, 0x44, 0xba, 0x3c, 0x99, 0x3c, 0x9a, 0x3c, 0xba, 0x3c, 0x79, 0x44, 0x55, 0x3b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x74, 0x43, 0x75, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x54, 0x3b, 0xf3, 0x3a, 0xd2, 0x32, 0xf2, 0x3a, 0xf2, 0x3a, 0xf3, 0x3a, 0xf2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0xd7, 0x3b, 0xf7, 0x3b, 0x18, 0x3c, 0x18, 0x3c, 0x38, 0x3c, 0x38, 0x44, 0x79, 0x44, 0x9a, 0x4c, 0x9a, 0x54, 0xbb, 0x54, 0xbc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0x1c, 0x65, 0x1c, 0x5d, 0x1c, 0x5d, 0x3c, 0x5d, 0x3c, 0x5d, 0x3c, 0x5d, 0x3c, 0x5d, 0x3c, 0x5d, 0x5c, 0x5d, 0x7c, 0x65, 0xbc, 0x65, 0x7c, 0x65, 0x7c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xf6, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x33, 0x34, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x33, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x50, 0x2a, + 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x92, 0x32, 0xd2, 0x32, 0xf3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xb7, 0x43, 0xd7, 0x4b, 0x18, 0x4c, 0x39, 0x54, 0x39, 0x54, 0x18, 0x4c, 0x39, 0x54, 0x5a, 0x54, 0x9b, 0x5c, 0xbc, 0x5c, 0xdc, 0x64, 0xfc, 0x64, 0x1c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x5c, 0x75, 0x7c, 0x75, 0x9c, 0x7d, 0xbc, 0x7d, 0xdc, 0x7d, 0xdc, 0x7d, 0xdc, 0x75, 0xdc, 0x6d, 0xbc, 0x65, 0x9c, 0x65, 0x9c, 0x65, 0x7c, 0x6d, 0x7c, 0x6d, 0x9c, 0x6d, 0xbc, 0x6d, 0x9c, 0x6d, 0xbc, 0x6d, 0x7c, 0x65, 0x3b, 0x5d, 0x1c, 0x5d, 0x1b, 0x5d, 0xfc, 0x54, 0xfc, 0x54, 0xdc, 0x54, 0xdc, 0x54, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xba, 0x44, 0xba, 0x3c, 0x9a, 0x3c, 0xba, 0x3c, 0x9a, 0x3c, 0xf6, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb5, 0x4b, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xd2, 0x3a, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb7, 0x3b, 0xd7, 0x3b, 0xf7, 0x3b, 0xf8, 0x43, 0x18, 0x44, 0x38, 0x44, 0x59, 0x4c, 0x79, 0x4c, 0x7a, 0x4c, 0x9b, 0x54, 0xbb, 0x54, 0xbc, 0x5c, 0xdc, 0x5c, 0xfc, 0x64, 0xdc, 0x5c, 0xfc, 0x5c, 0x1c, 0x5d, 0xfc, 0x5c, 0x1c, 0x5d, 0x1c, 0x5d, 0x1c, 0x5d, 0x3c, 0x5d, 0x3c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x5c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0xfc, 0x64, 0xdc, 0x5c, 0xdc, 0x64, 0xd6, 0x4b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x43, 0x34, 0x43, 0x54, 0x3b, 0x14, 0x3b, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, + 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x96, 0x43, 0xb7, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0xf8, 0x4b, 0x18, 0x4c, 0x39, 0x4c, 0x5a, 0x54, 0x7b, 0x54, 0x9c, 0x5c, 0xbc, 0x64, 0xfc, 0x64, 0x1c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x5c, 0x75, 0x7c, 0x75, 0x9c, 0x75, 0xdc, 0x7d, 0xfc, 0x85, 0x1c, 0x7e, 0x3c, 0x7e, 0x3c, 0x76, 0xfc, 0x6d, 0xbc, 0x6d, 0x9c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x9c, 0x6d, 0x9c, 0x6d, 0x9c, 0x6d, 0xbc, 0x6d, 0x3b, 0x65, 0x3c, 0x65, 0x3c, 0x5d, 0x1c, 0x5d, 0xfc, 0x5c, 0xfc, 0x54, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0x1c, 0x65, 0x5b, 0x5d, 0x79, 0x3c, 0x9a, 0x3c, 0x9a, 0x3c, 0x78, 0x3c, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb5, 0x4b, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x43, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x32, 0x91, 0x2a, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0xb6, 0x3b, 0xb7, 0x3b, 0xd7, 0x3b, 0xd7, 0x3b, 0xf8, 0x3b, 0x18, 0x44, 0x38, 0x44, 0x59, 0x4c, 0x79, 0x4c, 0x7a, 0x4c, 0x9a, 0x54, 0x9a, 0x54, 0xbb, 0x54, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0x1c, 0x5d, 0xfc, 0x5c, 0xfc, 0x5c, 0x1c, 0x5d, 0x1c, 0x5d, 0x1c, 0x5d, 0x1c, 0x5d, 0x3c, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x1c, 0x5d, 0x1c, 0x5d, 0x1c, 0x5d, 0x1c, 0x5d, 0x1c, 0x65, 0x1c, 0x5d, 0x3c, 0x5d, 0xfc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xd6, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x30, 0x22, + 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x70, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x96, 0x3b, 0xb7, 0x43, 0xd7, 0x43, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0x18, 0x4c, 0x59, 0x54, 0x7b, 0x54, 0x9c, 0x5c, 0xbc, 0x5c, 0xdc, 0x64, 0x1c, 0x65, 0x3c, 0x6d, 0x5c, 0x6d, 0x7c, 0x6d, 0x9c, 0x75, 0xbc, 0x75, 0xdc, 0x7d, 0x1c, 0x7e, 0x1c, 0x86, 0x3c, 0x86, 0x5c, 0x7e, 0x5c, 0x76, 0x3c, 0x76, 0xbc, 0x6d, 0x9c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x9c, 0x6d, 0x7c, 0x6d, 0x9c, 0x6d, 0x9c, 0x75, 0x1b, 0x65, 0x3c, 0x5d, 0x3c, 0x5d, 0x1c, 0x5d, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0x5c, 0x5d, 0x1b, 0x55, 0x9a, 0x3c, 0xda, 0x3c, 0x79, 0x44, 0x96, 0x43, 0xd6, 0x43, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf2, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xf2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x91, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf2, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0xb6, 0x3b, 0xb7, 0x3b, 0xd7, 0x3b, 0xd7, 0x3b, 0xf8, 0x3b, 0x18, 0x44, 0x38, 0x44, 0x58, 0x44, 0x79, 0x4c, 0x79, 0x4c, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0xbb, 0x54, 0xdb, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0x1c, 0x5d, 0x1c, 0x5d, 0x1c, 0x5d, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0x1c, 0x5d, 0x1c, 0x5d, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xd6, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x50, 0x22, + 0x30, 0x22, 0x50, 0x22, 0x2f, 0x22, 0x30, 0x22, 0x91, 0x2a, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xf8, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0x18, 0x4c, 0x39, 0x4c, 0x5a, 0x54, 0x9b, 0x54, 0xbc, 0x5c, 0xdc, 0x5c, 0xfc, 0x64, 0x3c, 0x65, 0x7c, 0x6d, 0x7c, 0x6d, 0x9c, 0x75, 0xdc, 0x75, 0x1c, 0x7e, 0x3c, 0x7e, 0x3c, 0x7e, 0x5c, 0x86, 0x5c, 0x86, 0x7c, 0x7e, 0x5c, 0x76, 0x1c, 0x76, 0xbc, 0x6d, 0x9c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x5c, 0x6d, 0x9c, 0x75, 0x9c, 0x75, 0x3b, 0x65, 0x3c, 0x5d, 0x3c, 0x5d, 0x1c, 0x5d, 0xfc, 0x5c, 0xfc, 0x5c, 0xdb, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0x5c, 0x5d, 0x7c, 0x5d, 0xda, 0x44, 0x79, 0x3c, 0x17, 0x44, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf2, 0x32, 0xf2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb1, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x76, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0xb7, 0x3b, 0xd7, 0x3b, 0xd7, 0x3b, 0x17, 0x3c, 0x18, 0x44, 0x38, 0x44, 0x58, 0x4c, 0x58, 0x4c, 0x79, 0x4c, 0x79, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0xba, 0x54, 0xbb, 0x54, 0xdb, 0x5c, 0xdc, 0x54, 0xdc, 0x54, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0x1c, 0x5d, 0x1c, 0x5d, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x54, 0xdc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xd6, 0x4b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x33, 0x34, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, + 0x30, 0x22, 0x0f, 0x22, 0x50, 0x2a, 0x91, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x35, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0x39, 0x4c, 0x5a, 0x54, 0x9b, 0x54, 0xbc, 0x5c, 0xdc, 0x5c, 0x1c, 0x65, 0x3c, 0x65, 0x5c, 0x6d, 0x9c, 0x6d, 0xbc, 0x75, 0xfc, 0x75, 0x1c, 0x76, 0x5c, 0x7e, 0x7c, 0x86, 0x7b, 0x86, 0x7c, 0x8e, 0x7c, 0x86, 0x7c, 0x7e, 0x5c, 0x7e, 0x1c, 0x76, 0xbc, 0x6d, 0x7c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x7c, 0x75, 0x7c, 0x75, 0x3c, 0x65, 0x3c, 0x65, 0x1c, 0x5d, 0xfc, 0x5c, 0xfc, 0x5c, 0xdb, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdb, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0x5c, 0x5d, 0x7c, 0x5d, 0x5b, 0x5d, 0x79, 0x44, 0xf7, 0x43, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x32, 0xf2, 0x32, 0xf2, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0xb1, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf2, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0x13, 0x33, 0x13, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xd7, 0x3b, 0xd7, 0x3b, 0xf7, 0x3b, 0x18, 0x44, 0x18, 0x44, 0x38, 0x4c, 0x58, 0x4c, 0x79, 0x4c, 0x79, 0x4c, 0x79, 0x4c, 0x9a, 0x54, 0x9a, 0x54, 0xba, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xdc, 0x54, 0xdc, 0x54, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x54, 0xdc, 0x54, 0xdc, 0x54, 0xdc, 0x54, 0xbc, 0x54, 0xbc, 0x54, 0xbc, 0x5c, 0x9c, 0x54, 0xd7, 0x4b, 0x14, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x54, 0xf7, 0x53, 0xf7, 0x53, 0xf7, 0x4b, 0x18, 0x4c, 0xf7, 0x4b, 0x17, 0x54, 0x55, 0x43, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x50, 0x22, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, + 0x2f, 0x22, 0x50, 0x2a, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x14, 0x33, 0x34, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0xf8, 0x4b, 0xf7, 0x43, 0x18, 0x4c, 0x39, 0x4c, 0x5a, 0x54, 0x7b, 0x54, 0xbc, 0x5c, 0xdc, 0x5c, 0x3c, 0x65, 0x5c, 0x6d, 0x7c, 0x6d, 0xdc, 0x6d, 0xfc, 0x75, 0x1c, 0x76, 0x3c, 0x76, 0x5c, 0x7e, 0x7c, 0x7e, 0x7b, 0x86, 0x7b, 0x86, 0x7b, 0x86, 0x7c, 0x7e, 0x7c, 0x7e, 0x5c, 0x76, 0xdc, 0x6d, 0x9c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x3b, 0x65, 0x1c, 0x5d, 0x1b, 0x5d, 0xfb, 0x5c, 0xdb, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xbb, 0x54, 0xbb, 0x5c, 0xfb, 0x5c, 0x5c, 0x5d, 0x7c, 0x5d, 0x7c, 0x5d, 0xda, 0x54, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x16, 0x4c, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x74, 0x43, 0x13, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf2, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb7, 0x3b, 0xd7, 0x3b, 0xd7, 0x43, 0xf7, 0x43, 0x18, 0x4c, 0x18, 0x4c, 0x58, 0x4c, 0x58, 0x4c, 0x79, 0x4c, 0x79, 0x4c, 0x79, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9b, 0x54, 0xbb, 0x54, 0x9b, 0x54, 0xbc, 0x54, 0xdc, 0x54, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x54, 0xbc, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0x9c, 0x54, 0x9c, 0x54, 0x7b, 0x54, 0x39, 0x54, 0xf7, 0x53, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x53, 0xf7, 0x4b, 0xf7, 0x4b, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x18, 0x54, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x2f, 0x22, 0x2f, 0x22, 0x2f, 0x22, 0x30, 0x22, 0x2f, 0x22, + 0x30, 0x22, 0x92, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x96, 0x43, 0x96, 0x43, 0xb7, 0x43, 0xf7, 0x43, 0xf7, 0x4b, 0x18, 0x4c, 0x38, 0x54, 0x7a, 0x54, 0x9b, 0x54, 0xbc, 0x5c, 0xfc, 0x5c, 0x3c, 0x65, 0x5c, 0x65, 0xbc, 0x6d, 0xdc, 0x6d, 0x3c, 0x76, 0x3c, 0x76, 0x3c, 0x7e, 0x5c, 0x7e, 0x7c, 0x7e, 0x7b, 0x7e, 0x7b, 0x86, 0x7b, 0x86, 0x7b, 0x86, 0x7b, 0x7e, 0x7c, 0x76, 0x3c, 0x76, 0xdc, 0x6d, 0x7c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x5c, 0x75, 0x5c, 0x6d, 0x3b, 0x65, 0x3c, 0x65, 0x1b, 0x65, 0xfb, 0x5c, 0xfb, 0x5c, 0xdb, 0x5c, 0xbb, 0x54, 0xbb, 0x5c, 0xbb, 0x5c, 0xfb, 0x5c, 0x5c, 0x5d, 0x7c, 0x5d, 0x5c, 0x5d, 0xfa, 0x5c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x16, 0x4c, 0x16, 0x4c, 0x16, 0x4c, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x13, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x96, 0x3b, 0xb6, 0x3b, 0xb7, 0x3b, 0xd7, 0x43, 0xf7, 0x43, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x58, 0x4c, 0x58, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x7a, 0x4c, 0x7a, 0x4c, 0x7a, 0x4c, 0x9b, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0xbc, 0x54, 0xbc, 0x54, 0xbc, 0x54, 0xbc, 0x54, 0xbc, 0x54, 0xbc, 0x5c, 0xbc, 0x54, 0xbc, 0x54, 0x7b, 0x54, 0x7b, 0x54, 0x7a, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x39, 0x54, 0xb7, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x2f, 0x22, 0x2f, 0x22, 0x2f, 0x22, 0x2f, 0x22, 0x2f, 0x22, + 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x76, 0x3b, 0xb6, 0x43, 0xd7, 0x43, 0x17, 0x4c, 0xf7, 0x4b, 0x38, 0x4c, 0x59, 0x54, 0x9b, 0x5c, 0xbc, 0x5c, 0xfc, 0x5c, 0x3c, 0x65, 0x7c, 0x6d, 0xdc, 0x6d, 0x3c, 0x76, 0x5c, 0x76, 0x7c, 0x7e, 0x5c, 0x7e, 0x5c, 0x7e, 0x7c, 0x7e, 0x7c, 0x7e, 0x7b, 0x7e, 0x7b, 0x86, 0x7b, 0x86, 0x7b, 0x7e, 0x7c, 0x76, 0x3c, 0x76, 0xdc, 0x6d, 0x9c, 0x6d, 0x7c, 0x6d, 0x5c, 0x6d, 0x1c, 0x6d, 0x3c, 0x6d, 0x3c, 0x75, 0x3c, 0x6d, 0x5c, 0x6d, 0x7c, 0x6d, 0x3b, 0x65, 0x1b, 0x65, 0xfb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xbb, 0x54, 0xbb, 0x54, 0xbb, 0x5c, 0xfb, 0x5c, 0x7c, 0x5d, 0x9c, 0x5d, 0x9c, 0x65, 0xd9, 0x5c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x17, 0x54, 0x17, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x16, 0x4c, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, 0x34, 0x33, 0x55, 0x3b, 0x55, 0x33, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0xb6, 0x3b, 0xb7, 0x3b, 0xd7, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x58, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x5a, 0x4c, 0x7a, 0x4c, 0x7a, 0x4c, 0x9b, 0x54, 0x9b, 0x54, 0xbc, 0x54, 0xbc, 0x54, 0x9c, 0x54, 0xbc, 0x54, 0xbc, 0x5c, 0xdc, 0x5c, 0x9b, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x7b, 0x54, 0x3a, 0x54, 0xd7, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0x55, 0x43, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x3a, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x2f, 0x22, 0x50, 0x2a, + 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x14, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0xb7, 0x43, 0xf7, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0x59, 0x54, 0x9a, 0x5c, 0xdc, 0x5c, 0x1c, 0x65, 0x5c, 0x6d, 0xdc, 0x6d, 0x3c, 0x76, 0x7c, 0x7e, 0x7b, 0x7e, 0x7b, 0x7e, 0x7c, 0x86, 0x7c, 0x86, 0x7c, 0x86, 0x5c, 0x86, 0x7c, 0x7e, 0x7c, 0x7e, 0x7b, 0x86, 0x7b, 0x86, 0x7b, 0x7e, 0x3c, 0x76, 0xfc, 0x6d, 0x9c, 0x6d, 0x7c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x1c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x3b, 0x65, 0xfb, 0x5c, 0xdb, 0x5c, 0xbb, 0x5c, 0xbb, 0x54, 0x9b, 0x54, 0xbb, 0x54, 0xfb, 0x5c, 0x7c, 0x5d, 0x9c, 0x65, 0x5c, 0x65, 0xb9, 0x5c, 0x17, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb5, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb1, 0x32, 0xb1, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x55, 0x33, 0x96, 0x43, 0xd7, 0x4b, 0xf8, 0x4b, 0x18, 0x4c, 0x39, 0x54, 0x39, 0x54, 0x39, 0x4c, 0x39, 0x4c, 0x39, 0x4c, 0x5a, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7b, 0x54, 0x7a, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x58, 0x4c, 0x58, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x5a, 0x4c, 0x7a, 0x4c, 0x7a, 0x4c, 0x9b, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0x9c, 0x54, 0x9c, 0x54, 0x5a, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x7b, 0x54, 0x7b, 0x54, 0x7b, 0x54, 0x9c, 0x54, 0x7a, 0x54, 0xf7, 0x4b, 0xd7, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0x75, 0x43, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, + 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x76, 0x3b, 0x96, 0x3b, 0xd7, 0x43, 0x17, 0x4c, 0x38, 0x4c, 0x59, 0x54, 0x7a, 0x5c, 0xdc, 0x64, 0x3c, 0x65, 0x9c, 0x6d, 0x5c, 0x76, 0x9c, 0x7e, 0x7b, 0x86, 0x9b, 0x8e, 0x9b, 0x8e, 0x9b, 0x8e, 0x9b, 0x8e, 0x7c, 0x86, 0x7c, 0x86, 0x5c, 0x86, 0x5c, 0x86, 0x7c, 0x86, 0x7b, 0x86, 0x9b, 0x7e, 0x7b, 0x7e, 0x1d, 0x76, 0xdc, 0x6d, 0x9c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x1c, 0x6d, 0x3c, 0x6d, 0x3c, 0x75, 0x3c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x3b, 0x65, 0xfb, 0x5c, 0xdb, 0x5c, 0xbb, 0x5c, 0xbb, 0x54, 0xbb, 0x54, 0xba, 0x54, 0xfb, 0x5c, 0x7c, 0x5d, 0x7c, 0x65, 0x7b, 0x65, 0x78, 0x5c, 0x38, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x17, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x17, 0x4c, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xb5, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0xb1, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x55, 0x3b, 0x96, 0x43, 0xb7, 0x4b, 0xd7, 0x4b, 0xf8, 0x4b, 0x18, 0x4c, 0x39, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x7a, 0x5c, 0x9b, 0x5c, 0x9b, 0x54, 0x7c, 0x54, 0x7c, 0x54, 0x7c, 0x54, 0x9c, 0x54, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbb, 0x5c, 0x7a, 0x54, 0x58, 0x4c, 0x38, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x7a, 0x4c, 0x9b, 0x54, 0x39, 0x54, 0x39, 0x4c, 0x39, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0xbc, 0x5c, 0x9b, 0x5c, 0x17, 0x54, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, + 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0xb6, 0x43, 0xd7, 0x43, 0x18, 0x4c, 0x38, 0x54, 0x7a, 0x5c, 0xdc, 0x64, 0x3c, 0x6d, 0xbc, 0x75, 0x7c, 0x7e, 0x9b, 0x8e, 0x9c, 0x9e, 0x7c, 0x9e, 0x9c, 0xa6, 0x7c, 0x9e, 0x9c, 0x9e, 0x7c, 0x96, 0x9c, 0x8e, 0x7c, 0x8e, 0x7c, 0x86, 0x5c, 0x86, 0x7c, 0x86, 0x7b, 0x86, 0x7b, 0x7e, 0x5c, 0x76, 0xfc, 0x6d, 0x9c, 0x6d, 0x7c, 0x6d, 0x3c, 0x6d, 0x1c, 0x6d, 0x3c, 0x6d, 0x5c, 0x75, 0x5c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x1b, 0x65, 0xdb, 0x5c, 0xbb, 0x54, 0xbb, 0x54, 0x9a, 0x54, 0xba, 0x54, 0xfb, 0x5c, 0x7c, 0x65, 0xbc, 0x65, 0x5b, 0x65, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x17, 0x4c, 0x38, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0x95, 0x43, 0x75, 0x43, 0x74, 0x3b, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb1, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x75, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xf7, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0x39, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x7b, 0x54, 0x7b, 0x54, 0x9c, 0x54, 0x9c, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x64, 0x9b, 0x5c, 0x79, 0x54, 0x59, 0x4c, 0x38, 0x4c, 0x39, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x18, 0x4c, 0xf7, 0x4b, 0x38, 0x54, 0x39, 0x54, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0x9a, 0x64, 0x17, 0x54, 0xf7, 0x53, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x3a, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, + 0x92, 0x32, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x14, 0x33, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0xb6, 0x3b, 0xd7, 0x43, 0xf7, 0x4b, 0x38, 0x54, 0x79, 0x54, 0xdc, 0x64, 0x3c, 0x6d, 0x9c, 0x75, 0x7c, 0x86, 0x9b, 0x96, 0x9c, 0xae, 0x9c, 0xbe, 0x7c, 0xbe, 0x9c, 0xbe, 0x9c, 0xb6, 0x9c, 0xae, 0x9c, 0x9e, 0x9c, 0x8e, 0x7c, 0x8e, 0x5c, 0x86, 0x5c, 0x86, 0x5c, 0x7e, 0x7c, 0x7e, 0x7c, 0x7e, 0x3c, 0x76, 0xdc, 0x6d, 0x7c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0xfa, 0x5c, 0xba, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0xba, 0x54, 0x3b, 0x5d, 0x9c, 0x65, 0x7c, 0x6d, 0x1a, 0x65, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x58, 0x54, 0x58, 0x54, 0x37, 0x54, 0x37, 0x5c, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf6, 0x4b, 0xf6, 0x4b, 0xb5, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb1, 0x32, 0xb1, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x50, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0xd3, 0x32, 0x34, 0x3b, 0x96, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x39, 0x54, 0x5a, 0x54, 0x7b, 0x54, 0x7b, 0x54, 0xbc, 0x5c, 0xdc, 0x5c, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdd, 0x64, 0xbc, 0x5c, 0x9b, 0x5c, 0x79, 0x54, 0x18, 0x4c, 0x18, 0x4c, 0xf8, 0x4b, 0xf8, 0x4b, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x39, 0x54, 0x39, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x9a, 0x5c, 0x18, 0x54, 0xf7, 0x53, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x18, 0x54, 0xb6, 0x4b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, + 0x92, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0x35, 0x3b, 0x55, 0x3b, 0x76, 0x3b, 0xb6, 0x3b, 0xb6, 0x43, 0xd7, 0x43, 0x18, 0x4c, 0x79, 0x54, 0xbb, 0x5c, 0x1c, 0x65, 0x9c, 0x75, 0x7c, 0x86, 0x9b, 0x96, 0x9c, 0xae, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x7c, 0xae, 0x9c, 0x9e, 0x9c, 0x96, 0x5c, 0x8e, 0x3c, 0x86, 0x1c, 0x86, 0x5c, 0x7e, 0x7c, 0x7e, 0x7c, 0x7e, 0x3c, 0x76, 0xbc, 0x6d, 0x5c, 0x6d, 0x1c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x1b, 0x65, 0xba, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x3b, 0x5d, 0x9c, 0x65, 0xdc, 0x6d, 0x1a, 0x65, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x58, 0x4c, 0x58, 0x54, 0x58, 0x54, 0x58, 0x5c, 0x37, 0x54, 0x57, 0x54, 0x57, 0x54, 0x37, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf6, 0x4b, 0xb6, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x70, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x54, 0x3b, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0x39, 0x4c, 0x39, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x9b, 0x54, 0xbc, 0x5c, 0xdc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0x1c, 0x65, 0xfc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x64, 0x9b, 0x5c, 0x38, 0x54, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x39, 0x54, 0x7a, 0x5c, 0x18, 0x54, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x18, 0x54, 0x59, 0x5c, 0x54, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, + 0x91, 0x32, 0x71, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x0f, 0x22, 0x2f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x35, 0x3b, 0x55, 0x3b, 0x96, 0x3b, 0xb6, 0x43, 0xd7, 0x43, 0xf7, 0x4b, 0x38, 0x54, 0x9a, 0x5c, 0x1c, 0x65, 0x7c, 0x75, 0x3c, 0x7e, 0x9b, 0x8e, 0x9c, 0xa6, 0x9c, 0xc6, 0x7c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xb6, 0x9c, 0x9e, 0x7c, 0x96, 0x1c, 0x8e, 0x1c, 0x86, 0x3c, 0x86, 0x7c, 0x7e, 0x7c, 0x7e, 0x3c, 0x76, 0xbc, 0x6d, 0x7c, 0x6d, 0x3c, 0x6d, 0x3c, 0x65, 0x5c, 0x6d, 0x5c, 0x6d, 0x3c, 0x65, 0x3c, 0x6d, 0x3c, 0x65, 0x3c, 0x65, 0x1c, 0x65, 0xda, 0x5c, 0x7a, 0x54, 0x79, 0x54, 0xba, 0x54, 0x9c, 0x65, 0x9c, 0x6d, 0x5c, 0x6d, 0x3b, 0x65, 0x58, 0x54, 0x79, 0x54, 0x78, 0x54, 0x78, 0x54, 0x58, 0x54, 0x58, 0x4c, 0x78, 0x54, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x57, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf6, 0x4b, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb1, 0x32, 0xb1, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x71, 0x2a, 0xf3, 0x3a, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xf8, 0x4b, 0x18, 0x4c, 0x38, 0x4c, 0x59, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x9b, 0x54, 0xbb, 0x5c, 0xdc, 0x64, 0xfc, 0x64, 0x1c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xdc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbd, 0x64, 0x5a, 0x54, 0x18, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x59, 0x54, 0xf8, 0x4b, 0xb6, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0x17, 0x4c, 0x17, 0x54, 0x59, 0x5c, 0x75, 0x43, 0x54, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, + 0x91, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x35, 0x33, 0x55, 0x3b, 0x76, 0x3b, 0xb6, 0x3b, 0xb7, 0x43, 0xf7, 0x43, 0x18, 0x4c, 0x79, 0x54, 0xdc, 0x5c, 0x5c, 0x6d, 0x1c, 0x7e, 0x9c, 0x8e, 0x9c, 0xa6, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xb6, 0x7c, 0x9e, 0x5c, 0x96, 0x1c, 0x8e, 0x1c, 0x86, 0x5c, 0x86, 0x7c, 0x7e, 0x5c, 0x76, 0xdc, 0x6d, 0x5c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0x1c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x1c, 0x65, 0xfb, 0x64, 0x9a, 0x54, 0x79, 0x54, 0xfa, 0x5c, 0x9c, 0x65, 0x7c, 0x65, 0x9c, 0x6d, 0x3b, 0x65, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x78, 0x54, 0x78, 0x54, 0x58, 0x54, 0x78, 0x54, 0x78, 0x54, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x57, 0x54, 0x57, 0x54, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf6, 0x4b, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb1, 0x32, 0x92, 0x32, 0xb1, 0x32, 0xb1, 0x32, 0x91, 0x32, 0x70, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x91, 0x2a, 0x34, 0x3b, 0x55, 0x43, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0xf8, 0x4b, 0x18, 0x4c, 0x39, 0x4c, 0x59, 0x54, 0x7a, 0x54, 0x7b, 0x54, 0x9b, 0x54, 0xbc, 0x5c, 0xfc, 0x5c, 0x1c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xfc, 0x64, 0xdc, 0x64, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0xbd, 0x5c, 0x9b, 0x5c, 0x39, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0xf8, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0xb6, 0x43, 0xb6, 0x43, 0xb7, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x59, 0x5c, 0x58, 0x5c, 0x34, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x4b, 0x74, 0x4b, 0x94, 0x43, 0x74, 0x43, 0x54, 0x43, 0x34, 0x43, 0x34, 0x3b, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, + 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x51, 0x2a, 0x50, 0x2a, 0x0f, 0x1a, 0x0f, 0x1a, 0x2f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x14, 0x33, 0x55, 0x33, 0x75, 0x3b, 0x96, 0x3b, 0xb6, 0x43, 0xd7, 0x43, 0x17, 0x4c, 0x58, 0x54, 0x9a, 0x5c, 0x1c, 0x65, 0x9c, 0x75, 0x7c, 0x86, 0x9c, 0x9e, 0x9c, 0xb6, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xae, 0x7c, 0x96, 0x5c, 0x8e, 0x1c, 0x86, 0x3c, 0x86, 0x7c, 0x7e, 0x7c, 0x7e, 0xdc, 0x75, 0x7c, 0x6d, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xfc, 0x64, 0xba, 0x5c, 0x99, 0x54, 0x3b, 0x5d, 0x7c, 0x65, 0x9c, 0x6d, 0x9c, 0x6d, 0x1b, 0x65, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x58, 0x54, 0x79, 0x54, 0x78, 0x54, 0x78, 0x54, 0x78, 0x54, 0x78, 0x54, 0x58, 0x54, 0x57, 0x54, 0x37, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0xf6, 0x4b, 0xb6, 0x43, 0xb6, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x50, 0x22, 0xd2, 0x32, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf7, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x59, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0xbb, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xfc, 0x64, 0x1c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xdc, 0x64, 0xdc, 0x64, 0xbc, 0x5c, 0x9c, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0xbc, 0x5c, 0xbc, 0x64, 0x7a, 0x5c, 0x17, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0x18, 0x4c, 0x18, 0x54, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0x38, 0x54, 0x9a, 0x64, 0x55, 0x43, 0x34, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x94, 0x4b, 0x74, 0x43, 0x54, 0x43, 0x34, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x92, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, + 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x22, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x34, 0x33, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0xd6, 0x43, 0xd7, 0x43, 0x18, 0x4c, 0x79, 0x54, 0xdc, 0x5c, 0x5d, 0x65, 0x1c, 0x76, 0x9b, 0x8e, 0x9c, 0xae, 0x9c, 0xc6, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xa6, 0x7c, 0x96, 0x3c, 0x8e, 0x3c, 0x86, 0x5c, 0x7e, 0x5c, 0x7e, 0xfc, 0x75, 0x7c, 0x6d, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xfc, 0x64, 0xdb, 0x5c, 0x99, 0x54, 0x5c, 0x65, 0x7c, 0x65, 0x5c, 0x65, 0x7c, 0x6d, 0x3b, 0x65, 0x7a, 0x54, 0x9a, 0x5c, 0x79, 0x54, 0x79, 0x54, 0x99, 0x54, 0x59, 0x4c, 0x58, 0x4c, 0x78, 0x54, 0x78, 0x54, 0x78, 0x54, 0x78, 0x54, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x37, 0x54, 0x37, 0x54, 0x17, 0x4c, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb1, 0x32, 0x71, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x30, 0x22, 0x0f, 0x22, 0x50, 0x2a, 0xf3, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0xf4, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf7, 0x4b, 0x17, 0x54, 0x37, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0xdc, 0x5c, 0xfc, 0x64, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xdc, 0x64, 0xbc, 0x5c, 0x9c, 0x5c, 0x7b, 0x5c, 0x7b, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9b, 0x5c, 0x9c, 0x64, 0xbb, 0x64, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x38, 0x54, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xd6, 0x43, 0x18, 0x54, 0x59, 0x54, 0xb7, 0x4b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x43, 0x54, 0x43, 0x34, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xd2, 0x3a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, + 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x30, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x30, 0x1a, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0xb6, 0x43, 0xd7, 0x43, 0xf7, 0x4b, 0x58, 0x54, 0x9a, 0x5c, 0xfc, 0x64, 0x9c, 0x6d, 0x7c, 0x7e, 0x9c, 0x96, 0x9c, 0xb6, 0x9d, 0xc6, 0x9d, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9d, 0xbe, 0x9d, 0xbe, 0x9c, 0xb6, 0x9c, 0x9e, 0x7c, 0x8e, 0x3c, 0x86, 0x3c, 0x7e, 0x1c, 0x7e, 0xfc, 0x75, 0x9c, 0x75, 0x3c, 0x6d, 0x1c, 0x65, 0xfc, 0x64, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xdc, 0x5c, 0xba, 0x5c, 0x9c, 0x65, 0x5c, 0x65, 0x7c, 0x65, 0x9c, 0x65, 0x3b, 0x65, 0x9a, 0x5c, 0xbb, 0x5c, 0x9a, 0x54, 0x99, 0x54, 0x99, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x99, 0x54, 0x78, 0x54, 0x78, 0x54, 0x78, 0x54, 0x58, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x37, 0x54, 0x17, 0x4c, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x2f, 0x22, 0x70, 0x2a, 0xf3, 0x3a, 0x14, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf6, 0x4b, 0x17, 0x54, 0x37, 0x54, 0x58, 0x54, 0x79, 0x5c, 0x9a, 0x5c, 0xdc, 0x64, 0xfc, 0x64, 0x3c, 0x6d, 0x5c, 0x6d, 0x7c, 0x75, 0x7c, 0x75, 0x7c, 0x75, 0x5c, 0x6d, 0x5c, 0x6d, 0x1c, 0x6d, 0xdc, 0x64, 0xbc, 0x5c, 0x7b, 0x5c, 0x7a, 0x54, 0x7a, 0x5c, 0x7b, 0x5c, 0x7b, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0xbb, 0x64, 0x18, 0x54, 0xd6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0x96, 0x43, 0xb6, 0x43, 0x18, 0x4c, 0xf8, 0x4b, 0xf7, 0x4b, 0x54, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x4b, 0x74, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x3b, 0xf3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd2, 0x3a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, + 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x71, 0x2a, 0x30, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x30, 0x1a, 0x30, 0x22, 0x50, 0x22, 0x71, 0x22, 0x71, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x34, 0x33, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0x17, 0x4c, 0x59, 0x54, 0xbb, 0x5c, 0x3c, 0x65, 0xdc, 0x75, 0x9c, 0x86, 0x9c, 0x9e, 0x9d, 0xbe, 0x9d, 0xc6, 0x9d, 0xbe, 0x9c, 0xbe, 0x9d, 0xbe, 0x9d, 0xbe, 0x9d, 0xbe, 0x9c, 0xae, 0x9c, 0x96, 0x7c, 0x8e, 0x3c, 0x86, 0x3c, 0x7e, 0x1d, 0x76, 0xfc, 0x75, 0x9c, 0x75, 0x3c, 0x6d, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x5d, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x64, 0xfc, 0x64, 0x3c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x1c, 0x65, 0x9b, 0x5c, 0xbb, 0x5c, 0x9a, 0x5c, 0x9a, 0x54, 0x9a, 0x54, 0x99, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x78, 0x54, 0x78, 0x54, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x17, 0x4c, 0xd6, 0x43, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x2f, 0x22, 0x71, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x95, 0x3b, 0xb5, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xf7, 0x53, 0x17, 0x54, 0x58, 0x5c, 0x79, 0x5c, 0xda, 0x64, 0x1c, 0x65, 0x3c, 0x6d, 0x9c, 0x75, 0xdc, 0x7d, 0x3c, 0x7e, 0x5c, 0x86, 0x5c, 0x86, 0x1c, 0x7e, 0xbc, 0x7d, 0x7c, 0x75, 0x3d, 0x6d, 0xdc, 0x64, 0x9c, 0x5c, 0x7b, 0x5c, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x5c, 0x7a, 0x5c, 0x7b, 0x5c, 0x7b, 0x5c, 0x9b, 0x5c, 0x18, 0x54, 0xd6, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0xb6, 0x43, 0x76, 0x43, 0x13, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0xf3, 0x3a, 0xd3, 0x3a, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, + 0x91, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x22, 0x50, 0x22, 0x0f, 0x1a, 0x2f, 0x1a, 0x30, 0x22, 0x50, 0x22, 0x51, 0x22, 0x71, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x34, 0x33, 0x54, 0x3b, 0x55, 0x3b, 0x95, 0x3b, 0xb6, 0x43, 0xd6, 0x43, 0xf7, 0x43, 0x18, 0x4c, 0x7a, 0x54, 0xdc, 0x5c, 0x3c, 0x6d, 0x1c, 0x76, 0x9c, 0x8e, 0x9c, 0xa6, 0x9d, 0xbe, 0x9d, 0xbe, 0x9d, 0xbe, 0x9d, 0xbe, 0x9d, 0xc6, 0x9d, 0xbe, 0x9c, 0xae, 0x9c, 0x96, 0x9c, 0x8e, 0x3c, 0x86, 0x1c, 0x7e, 0xfd, 0x75, 0xdd, 0x75, 0x7c, 0x75, 0x3c, 0x6d, 0x1c, 0x65, 0xfc, 0x64, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xfc, 0x64, 0x3c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x3c, 0x65, 0xbb, 0x5c, 0xdc, 0x5c, 0xdb, 0x5c, 0x9a, 0x54, 0x9a, 0x5c, 0x9a, 0x54, 0x79, 0x54, 0x79, 0x4c, 0x99, 0x54, 0x79, 0x54, 0x79, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x0f, 0x22, 0x71, 0x2a, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x95, 0x3b, 0xb5, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0x17, 0x54, 0x37, 0x5c, 0x78, 0x5c, 0xda, 0x64, 0x1c, 0x6d, 0x7d, 0x75, 0xdc, 0x7d, 0x7c, 0x86, 0x9c, 0x8e, 0x9c, 0x96, 0x9c, 0x96, 0x9c, 0x8e, 0x7c, 0x8e, 0x3c, 0x86, 0xbd, 0x7d, 0x1c, 0x6d, 0xdc, 0x64, 0x9c, 0x5c, 0x7b, 0x5c, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x9b, 0x5c, 0x17, 0x4c, 0xb6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xb6, 0x43, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0xf3, 0x3a, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, + 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x50, 0x22, 0x50, 0x22, 0x51, 0x2a, 0x51, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x30, 0x22, 0x0f, 0x1a, 0x10, 0x1a, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x34, 0x33, 0x55, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0xb6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0x38, 0x4c, 0x7a, 0x54, 0xdc, 0x5c, 0x5c, 0x6d, 0x1c, 0x7e, 0x9c, 0x8e, 0x9c, 0x9e, 0x9c, 0xbe, 0x9d, 0xc6, 0x9d, 0xbe, 0x9d, 0xbe, 0x9d, 0xbe, 0x9c, 0xa6, 0x9c, 0x96, 0x9c, 0x8e, 0x5d, 0x7e, 0xfc, 0x7d, 0xfd, 0x75, 0xdd, 0x75, 0x7c, 0x6d, 0x3c, 0x6d, 0x1c, 0x65, 0xfc, 0x64, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xdc, 0x64, 0xfc, 0x64, 0x3c, 0x65, 0x5c, 0x65, 0x1c, 0x5d, 0x5c, 0x65, 0x5c, 0x65, 0x1c, 0x65, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xba, 0x5c, 0x9a, 0x5c, 0x9a, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x4c, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x4c, 0x78, 0x4c, 0x58, 0x54, 0x58, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x2f, 0x22, 0x91, 0x2a, 0xf3, 0x3a, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0xb5, 0x43, 0xd6, 0x4b, 0xf6, 0x4b, 0x37, 0x54, 0x58, 0x5c, 0xba, 0x64, 0x1c, 0x6d, 0x7d, 0x75, 0x3d, 0x7e, 0x7c, 0x8e, 0x9c, 0x96, 0x9c, 0x9e, 0x9c, 0xa6, 0x9c, 0xa6, 0x9c, 0x9e, 0x9c, 0x96, 0x5c, 0x86, 0x9c, 0x7d, 0x1d, 0x6d, 0xdd, 0x64, 0x9b, 0x5c, 0x5a, 0x54, 0x5a, 0x54, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x9b, 0x5c, 0xf7, 0x4b, 0xb6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0x75, 0x43, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, + 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x2a, 0x50, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x30, 0x22, 0x0f, 0x1a, 0x30, 0x1a, 0x50, 0x22, 0x51, 0x22, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x34, 0x33, 0x54, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0x17, 0x4c, 0x39, 0x54, 0x7b, 0x54, 0xfc, 0x64, 0x7d, 0x6d, 0x1c, 0x7e, 0x9c, 0x8e, 0x9c, 0x96, 0x9c, 0xa6, 0x9c, 0xae, 0x9c, 0xae, 0x9c, 0xa6, 0x9c, 0x96, 0x9b, 0x8e, 0x7c, 0x86, 0x5d, 0x7e, 0xfd, 0x75, 0xdd, 0x75, 0xbd, 0x75, 0x5d, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0x1c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x5d, 0x5c, 0x65, 0x3c, 0x65, 0xdc, 0x64, 0xdc, 0x64, 0xbc, 0x5c, 0xbb, 0x5c, 0xba, 0x54, 0x9b, 0x5c, 0x9a, 0x54, 0x79, 0x4c, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x4c, 0x79, 0x54, 0x79, 0x54, 0x78, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x71, 0x2a, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x14, 0x33, 0x35, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xd6, 0x43, 0x17, 0x4c, 0x57, 0x54, 0x99, 0x5c, 0xfc, 0x64, 0x7d, 0x6d, 0x1d, 0x7e, 0x7c, 0x8e, 0x9c, 0x96, 0x9c, 0xa6, 0x9c, 0xb6, 0x9d, 0xbe, 0x9c, 0xb6, 0x9c, 0xa6, 0x9c, 0x96, 0xfc, 0x7d, 0x7c, 0x75, 0x1c, 0x6d, 0xbc, 0x64, 0x7b, 0x5c, 0x59, 0x54, 0x39, 0x54, 0x39, 0x4c, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x5a, 0x5c, 0xd7, 0x4b, 0xd7, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0x13, 0x3b, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x2a, + 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x2f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x51, 0x22, 0x10, 0x1a, 0x30, 0x22, 0x50, 0x22, 0x51, 0x22, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0x39, 0x54, 0x7a, 0x54, 0xdc, 0x64, 0x5c, 0x6d, 0xdc, 0x75, 0x5c, 0x86, 0x9c, 0x8e, 0x9c, 0x96, 0x9c, 0x96, 0x9c, 0x96, 0x9b, 0x8e, 0x9b, 0x86, 0x9c, 0x7e, 0x1d, 0x76, 0xbc, 0x75, 0x9d, 0x75, 0x7d, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x1c, 0x65, 0xfc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xdc, 0x64, 0x1c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x1c, 0x65, 0xdc, 0x64, 0xfc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0x9b, 0x5c, 0x9b, 0x54, 0x9a, 0x54, 0x7a, 0x54, 0x79, 0x4c, 0x79, 0x4c, 0x79, 0x54, 0x79, 0x4c, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x58, 0x54, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x50, 0x22, 0x71, 0x2a, 0xd2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x34, 0x33, 0x55, 0x3b, 0x95, 0x3b, 0xd6, 0x43, 0x17, 0x4c, 0x58, 0x54, 0xba, 0x5c, 0x1c, 0x65, 0xbc, 0x75, 0x7c, 0x86, 0x9c, 0x8e, 0x9c, 0x9e, 0x9c, 0xbe, 0x9d, 0xc6, 0x9c, 0xbe, 0x9c, 0xae, 0x9c, 0x9e, 0x5c, 0x8e, 0xbd, 0x7d, 0x3d, 0x6d, 0xdc, 0x64, 0x9b, 0x5c, 0x59, 0x54, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x54, 0x18, 0x54, 0x39, 0x54, 0x7a, 0x5c, 0xf7, 0x4b, 0xd7, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0x96, 0x43, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x71, 0x2a, + 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x51, 0x22, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x22, 0x30, 0x1a, 0x50, 0x22, 0x71, 0x22, 0x71, 0x22, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0x14, 0x33, 0x34, 0x33, 0x54, 0x3b, 0x75, 0x43, 0x95, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0x38, 0x4c, 0x39, 0x54, 0x9b, 0x54, 0xdc, 0x64, 0x3c, 0x6d, 0x5c, 0x6d, 0xfc, 0x75, 0x9c, 0x86, 0x9b, 0x86, 0x7b, 0x86, 0x7b, 0x86, 0x7c, 0x86, 0x7c, 0x7e, 0x1d, 0x7e, 0xbc, 0x75, 0x7c, 0x75, 0x9d, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x1c, 0x65, 0xfc, 0x64, 0xdc, 0x64, 0xdc, 0x5c, 0xfc, 0x5c, 0xfd, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x1c, 0x65, 0xdc, 0x64, 0x1d, 0x65, 0xdc, 0x5c, 0xdc, 0x5c, 0xbb, 0x5c, 0x9b, 0x54, 0x9b, 0x54, 0x9a, 0x54, 0x7a, 0x4c, 0x7a, 0x4c, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x99, 0x54, 0x79, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0xb2, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x34, 0x33, 0x55, 0x3b, 0x95, 0x3b, 0xb6, 0x43, 0x17, 0x4c, 0x59, 0x54, 0xbb, 0x5c, 0x1c, 0x6d, 0xbc, 0x75, 0x7c, 0x86, 0x9c, 0x96, 0x9c, 0xa6, 0x9c, 0xb6, 0x9c, 0xb6, 0x9c, 0xae, 0x9c, 0x9e, 0x9c, 0x8e, 0xfd, 0x7d, 0x5d, 0x75, 0x1d, 0x6d, 0x9b, 0x5c, 0x59, 0x54, 0x18, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xd8, 0x4b, 0xf8, 0x4b, 0x19, 0x54, 0x39, 0x54, 0x59, 0x54, 0xd7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0x34, 0x3b, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x71, 0x2a, + 0x51, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x51, 0x22, 0x51, 0x22, 0x71, 0x22, 0x91, 0x22, 0x92, 0x2a, 0xb2, 0x2a, 0xd3, 0x32, 0xf3, 0x32, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x95, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0x39, 0x54, 0x9b, 0x5c, 0xdc, 0x5c, 0xfc, 0x64, 0x7d, 0x6d, 0x1d, 0x76, 0x3c, 0x7e, 0x7c, 0x7e, 0x9c, 0x86, 0x7c, 0x7e, 0x1c, 0x7e, 0xdc, 0x75, 0x7c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x1c, 0x65, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdd, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xfc, 0x5c, 0x3c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x5d, 0x1c, 0x5d, 0xdc, 0x5c, 0x1d, 0x65, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0x9b, 0x54, 0x9b, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x79, 0x54, 0x79, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x3a, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0xd2, 0x32, 0x13, 0x3b, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xd3, 0x2a, 0xd3, 0x32, 0xf4, 0x32, 0x34, 0x33, 0x55, 0x3b, 0x75, 0x3b, 0xb6, 0x43, 0xf7, 0x4b, 0x59, 0x54, 0xbb, 0x5c, 0x1c, 0x6d, 0x9c, 0x75, 0x5c, 0x86, 0x9c, 0x96, 0x9c, 0x9e, 0x9c, 0xa6, 0x9c, 0xa6, 0x9c, 0x9e, 0x7c, 0x8e, 0xfd, 0x7d, 0x5d, 0x75, 0x1d, 0x6d, 0xbb, 0x5c, 0x59, 0x54, 0x18, 0x54, 0xf7, 0x4b, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xf8, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0x5a, 0x54, 0xf8, 0x4b, 0x96, 0x43, 0xb6, 0x43, 0x13, 0x3b, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x51, 0x2a, + 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x2a, 0x71, 0x22, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x22, 0x92, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x54, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0x18, 0x4c, 0x59, 0x54, 0x7b, 0x54, 0xbc, 0x5c, 0xfc, 0x64, 0x5d, 0x6d, 0x7d, 0x6d, 0x9d, 0x75, 0xdc, 0x75, 0xfd, 0x75, 0xfd, 0x75, 0xdd, 0x75, 0xbd, 0x75, 0x5c, 0x6d, 0x5c, 0x6d, 0x1c, 0x65, 0xfd, 0x64, 0xfc, 0x64, 0xdc, 0x64, 0xdc, 0x64, 0xdc, 0x5c, 0xdd, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xbd, 0x5c, 0xdc, 0x5c, 0x3c, 0x5d, 0x1c, 0x5d, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x1c, 0x5d, 0xdc, 0x5c, 0xfd, 0x64, 0xfd, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0x9c, 0x54, 0xbb, 0x54, 0x9a, 0x54, 0x9a, 0x4c, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x79, 0x54, 0x59, 0x54, 0x59, 0x54, 0x58, 0x54, 0x39, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x13, 0x33, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x32, 0x71, 0x2a, 0xd2, 0x32, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb3, 0x2a, 0xd3, 0x2a, 0xf3, 0x32, 0x14, 0x33, 0x54, 0x3b, 0x75, 0x3b, 0xb6, 0x43, 0xf7, 0x4b, 0x38, 0x54, 0x9b, 0x5c, 0x1c, 0x65, 0x1c, 0x7e, 0x5c, 0x86, 0x9c, 0x8e, 0x9c, 0x96, 0x9c, 0x96, 0xbc, 0x96, 0x1c, 0x86, 0x9d, 0x7d, 0x5d, 0x75, 0xfd, 0x6c, 0x9b, 0x5c, 0x59, 0x54, 0x18, 0x4c, 0xd7, 0x4b, 0xb7, 0x4b, 0xb7, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb7, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0x59, 0x54, 0xd7, 0x4b, 0x35, 0x3b, 0xf3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, + 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x2f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x22, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd8, 0x43, 0x18, 0x4c, 0x39, 0x54, 0x7b, 0x54, 0xbc, 0x5c, 0xfd, 0x64, 0x1d, 0x65, 0x3c, 0x6d, 0x5d, 0x6d, 0x7d, 0x6d, 0x7d, 0x6d, 0x7d, 0x6d, 0x7d, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x5c, 0x6d, 0xfc, 0x64, 0xdc, 0x64, 0xdd, 0x64, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0x1c, 0x5d, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x64, 0x1c, 0x65, 0xfc, 0x64, 0x1c, 0x5d, 0xfc, 0x5c, 0xbc, 0x5c, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x5c, 0xbc, 0x5c, 0xbc, 0x54, 0xbc, 0x54, 0x9b, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0xba, 0x54, 0x9a, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x39, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x2a, 0xb2, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x71, 0x22, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0x14, 0x33, 0x34, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xd7, 0x4b, 0x18, 0x4c, 0xba, 0x5c, 0x3c, 0x6d, 0x7d, 0x75, 0xbc, 0x7d, 0xfc, 0x7d, 0x1c, 0x86, 0x1d, 0x86, 0x7c, 0x75, 0x3d, 0x75, 0x1d, 0x6d, 0xdc, 0x64, 0x7a, 0x5c, 0x38, 0x54, 0xf7, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xd7, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xf8, 0x4b, 0x18, 0x54, 0x55, 0x43, 0xd3, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x22, + 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x50, 0x22, 0x51, 0x22, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0x14, 0x33, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0xb7, 0x43, 0xf8, 0x43, 0x18, 0x4c, 0x39, 0x4c, 0x7b, 0x54, 0xbc, 0x5c, 0xdd, 0x5c, 0xfd, 0x64, 0xfd, 0x64, 0x1d, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x6d, 0x3d, 0x65, 0x3d, 0x6d, 0x3d, 0x6d, 0x1c, 0x65, 0xbc, 0x5c, 0xbd, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0x1c, 0x5d, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0x1d, 0x5d, 0xfc, 0x64, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x5d, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0x9c, 0x54, 0x9c, 0x54, 0xbb, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0xbb, 0x54, 0xdb, 0x54, 0xba, 0x54, 0xba, 0x54, 0xbb, 0x5c, 0x9a, 0x5c, 0x7a, 0x54, 0x9a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x59, 0x54, 0x58, 0x54, 0x38, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xd7, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xf3, 0x3a, 0x34, 0x3b, 0xf3, 0x3a, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x30, 0x22, 0x50, 0x22, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x22, 0x71, 0x22, 0x71, 0x22, 0x71, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xd3, 0x2a, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x55, 0x3b, 0x75, 0x3b, 0xb6, 0x43, 0x5a, 0x5c, 0xbc, 0x64, 0xfc, 0x64, 0x1c, 0x6d, 0x3c, 0x6d, 0x3d, 0x75, 0x3d, 0x75, 0x1c, 0x6d, 0x1d, 0x6d, 0xdc, 0x6c, 0xbb, 0x64, 0x7a, 0x5c, 0x59, 0x54, 0x38, 0x54, 0xd7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb7, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0x54, 0x43, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x50, 0x22, + 0x30, 0x22, 0x2f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x2f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x35, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb7, 0x43, 0xd7, 0x43, 0xf8, 0x43, 0xf8, 0x4b, 0x39, 0x4c, 0x7b, 0x54, 0x9c, 0x54, 0xbd, 0x5c, 0xdd, 0x5c, 0xfd, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0x1c, 0x65, 0x1c, 0x65, 0x1d, 0x65, 0x1d, 0x65, 0xfc, 0x64, 0xfc, 0x64, 0xfd, 0x64, 0xdc, 0x64, 0x9c, 0x5c, 0x9c, 0x54, 0x9b, 0x5c, 0x9c, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0x9c, 0x54, 0x9c, 0x54, 0x9c, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xbb, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x7a, 0x54, 0x7a, 0x54, 0x59, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x17, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0x34, 0x3b, 0x34, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x2f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x22, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x34, 0x3b, 0x55, 0x3b, 0x39, 0x54, 0x5a, 0x5c, 0x7a, 0x5c, 0x9a, 0x5c, 0x9b, 0x64, 0xbc, 0x64, 0xdc, 0x64, 0xbc, 0x64, 0x9a, 0x64, 0x7a, 0x5c, 0x59, 0x5c, 0x18, 0x54, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb7, 0x43, 0xb7, 0x4b, 0x14, 0x3b, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, + 0x30, 0x22, 0x2f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x1a, 0x10, 0x1a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0x14, 0x33, 0x34, 0x33, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0xb7, 0x3b, 0xb7, 0x43, 0xd8, 0x43, 0xf8, 0x4b, 0x18, 0x4c, 0x39, 0x4c, 0x5a, 0x54, 0x9c, 0x54, 0x9c, 0x5c, 0xbd, 0x5c, 0xdd, 0x5c, 0xfd, 0x64, 0xfd, 0x64, 0xfd, 0x64, 0xfd, 0x64, 0xfd, 0x64, 0xfd, 0x64, 0xfd, 0x64, 0xdc, 0x64, 0xdc, 0x64, 0xfc, 0x64, 0xdb, 0x5c, 0x7a, 0x54, 0xbb, 0x54, 0xfc, 0x54, 0xdc, 0x54, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xbc, 0x54, 0xbc, 0x54, 0xbc, 0x54, 0x9b, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xbc, 0x5c, 0xdb, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0x9b, 0x5c, 0x9a, 0x5c, 0x7a, 0x54, 0x79, 0x54, 0x59, 0x54, 0x58, 0x54, 0x38, 0x54, 0x18, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x33, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x14, 0x3b, 0x55, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x2f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x71, 0x22, 0x71, 0x22, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x75, 0x3b, 0xf7, 0x4b, 0xf8, 0x4b, 0xf7, 0x4b, 0x18, 0x54, 0x38, 0x54, 0x39, 0x54, 0x59, 0x5c, 0x59, 0x5c, 0x38, 0x54, 0x18, 0x54, 0xf7, 0x53, 0xf7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xd7, 0x4b, 0xd7, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x76, 0x43, 0x96, 0x43, 0x75, 0x43, 0xf3, 0x3a, 0xf3, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, + 0x2f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0xef, 0x19, 0xee, 0x19, 0x0f, 0x1a, 0xee, 0x19, 0xef, 0x19, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x10, 0x1a, 0x30, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x51, 0x22, 0x51, 0x2a, 0x51, 0x22, 0x51, 0x2a, 0x51, 0x22, 0x51, 0x22, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x14, 0x33, 0x34, 0x33, 0x35, 0x3b, 0x75, 0x3b, 0x76, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0xb7, 0x3b, 0xb7, 0x43, 0xf8, 0x43, 0x18, 0x4c, 0x19, 0x4c, 0x39, 0x4c, 0x3a, 0x4c, 0x7b, 0x54, 0x7c, 0x54, 0xbc, 0x5c, 0xbd, 0x5c, 0xdd, 0x5c, 0xfd, 0x5c, 0xdd, 0x5c, 0xfd, 0x5c, 0xdd, 0x5c, 0xdd, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xdd, 0x64, 0xfc, 0x64, 0xdc, 0x5c, 0xbc, 0x54, 0xdc, 0x54, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x64, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xfd, 0x5c, 0xfd, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0x9c, 0x54, 0x9c, 0x54, 0xbb, 0x54, 0xdb, 0x54, 0xbc, 0x54, 0xbb, 0x54, 0xdc, 0x54, 0xdc, 0x5c, 0xfb, 0x5c, 0xfc, 0x64, 0xdc, 0x5c, 0xdd, 0x64, 0xdc, 0x64, 0xdc, 0x64, 0xbc, 0x5c, 0xdc, 0x5c, 0xbb, 0x5c, 0x9a, 0x5c, 0x9a, 0x54, 0x79, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x33, 0xf3, 0x32, 0xd2, 0x32, 0x34, 0x3b, 0x75, 0x43, 0x54, 0x3b, 0x14, 0x3b, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x2f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0x75, 0x43, 0xd7, 0x43, 0xd6, 0x4b, 0xb7, 0x43, 0xb7, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0x96, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x76, 0x43, 0x14, 0x3b, 0xf3, 0x32, 0xf3, 0x3a, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, + 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x51, 0x22, 0x51, 0x22, 0x71, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x35, 0x3b, 0x35, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0xb7, 0x3b, 0xd7, 0x43, 0xf8, 0x43, 0x18, 0x4c, 0x19, 0x4c, 0x39, 0x4c, 0x3a, 0x4c, 0x5b, 0x4c, 0x7c, 0x54, 0xbc, 0x54, 0xbc, 0x5c, 0xdd, 0x5c, 0xdd, 0x5c, 0xdd, 0x5c, 0xdd, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xdd, 0x5c, 0xfc, 0x5c, 0x1c, 0x5d, 0xdc, 0x54, 0xdc, 0x54, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x54, 0xbc, 0x54, 0xbb, 0x54, 0xbc, 0x54, 0xbc, 0x54, 0xdb, 0x54, 0xdb, 0x54, 0xfc, 0x5c, 0x1c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xfc, 0x64, 0x1c, 0x65, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xdc, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0x9a, 0x5c, 0x79, 0x5c, 0x58, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0x54, 0x3b, 0x75, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x2f, 0x22, 0x0f, 0x22, 0x0e, 0x1a, 0xef, 0x19, 0x0e, 0x1a, 0x0e, 0x1a, 0xee, 0x19, 0xee, 0x19, 0x0f, 0x1a, 0xef, 0x19, 0xef, 0x19, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x2f, 0x1a, 0x10, 0x1a, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x22, 0x71, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x55, 0x3b, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb7, 0x43, 0x14, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, + 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xee, 0x19, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0xef, 0x19, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x10, 0x22, 0x30, 0x1a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x22, 0x72, 0x22, 0x92, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0xd4, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x34, 0x33, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x76, 0x3b, 0x96, 0x3b, 0xb7, 0x3b, 0xd7, 0x43, 0xf7, 0x43, 0xf8, 0x4b, 0x19, 0x4c, 0x3a, 0x4c, 0x3a, 0x4c, 0x5b, 0x54, 0x7c, 0x54, 0xbc, 0x5c, 0xbc, 0x5c, 0xdd, 0x5c, 0xdd, 0x5c, 0xdd, 0x5c, 0xbd, 0x5c, 0x9d, 0x5c, 0xbc, 0x5c, 0xbd, 0x5c, 0xdc, 0x5c, 0x1d, 0x5d, 0x1d, 0x5d, 0x1c, 0x65, 0xdc, 0x54, 0xdc, 0x54, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfd, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x54, 0xbc, 0x54, 0xbc, 0x54, 0xdc, 0x54, 0xdc, 0x54, 0xdc, 0x54, 0xdc, 0x5c, 0xfc, 0x5c, 0x1c, 0x65, 0x3c, 0x6d, 0x3d, 0x6d, 0x3c, 0x65, 0x3c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x1d, 0x65, 0xfc, 0x64, 0xdc, 0x64, 0xdb, 0x5c, 0x9a, 0x5c, 0x79, 0x5c, 0x59, 0x54, 0x58, 0x54, 0x38, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x33, 0x34, 0x3b, 0x95, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x3a, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0e, 0x1a, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xef, 0x19, 0x0f, 0x1a, 0x0f, 0x1a, 0x30, 0x1a, 0x30, 0x1a, 0x30, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x55, 0x3b, 0x96, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0x76, 0x3b, 0x55, 0x3b, 0x76, 0x3b, 0x96, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x76, 0x43, 0x96, 0x43, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, + 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xee, 0x19, 0xef, 0x19, 0x0f, 0x1a, 0x0f, 0x1a, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0x0f, 0x1a, 0xef, 0x19, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x22, 0x71, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0xd4, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x34, 0x33, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0xb7, 0x3b, 0xb7, 0x43, 0xd8, 0x43, 0xf8, 0x4b, 0x19, 0x4c, 0x3a, 0x4c, 0x5a, 0x4c, 0x7c, 0x54, 0xbd, 0x5c, 0xdd, 0x5c, 0xdd, 0x5c, 0xdd, 0x5c, 0xdd, 0x5c, 0xbd, 0x5c, 0x9d, 0x5c, 0xbc, 0x5c, 0x9c, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0x1c, 0x5d, 0x1c, 0x5d, 0x1c, 0x65, 0xdc, 0x5c, 0xdc, 0x54, 0xdc, 0x5c, 0xdc, 0x5c, 0xfd, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdd, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0x9c, 0x54, 0xbc, 0x54, 0xbc, 0x54, 0xdc, 0x54, 0xbc, 0x54, 0xdc, 0x54, 0xfc, 0x5c, 0x1c, 0x5d, 0x3c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x5d, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x1c, 0x6d, 0x1c, 0x65, 0xdc, 0x64, 0xbb, 0x5c, 0x9a, 0x5c, 0x79, 0x54, 0x58, 0x54, 0x38, 0x54, 0x17, 0x54, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x75, 0x43, 0x96, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x2f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0e, 0x1a, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x30, 0x1a, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x51, 0x22, 0x71, 0x2a, 0x71, 0x22, 0x55, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x96, 0x43, 0xb6, 0x4b, 0x96, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0x75, 0x43, 0x76, 0x3b, 0x75, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x50, 0x22, 0x30, 0x22, 0x50, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, + 0x10, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x19, 0x0f, 0x1a, 0x0f, 0x1a, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xef, 0x19, 0x0f, 0x1a, 0x0f, 0x1a, 0xef, 0x19, 0xce, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xce, 0x19, 0xee, 0x19, 0x0f, 0x1a, 0x0f, 0x1a, 0x30, 0x1a, 0x30, 0x22, 0x50, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x22, 0x51, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0xd3, 0x2a, 0xd3, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x34, 0x33, 0x35, 0x3b, 0x55, 0x3b, 0x76, 0x3b, 0x96, 0x3b, 0x97, 0x3b, 0xb7, 0x43, 0xb7, 0x43, 0xd8, 0x43, 0xf8, 0x43, 0x19, 0x4c, 0x5a, 0x4c, 0x7c, 0x54, 0xbd, 0x5c, 0xdd, 0x5c, 0xfd, 0x5c, 0xdd, 0x5c, 0xdd, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfd, 0x5c, 0xfc, 0x5c, 0x1c, 0x65, 0x1c, 0x65, 0xdc, 0x5c, 0xdd, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdd, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0x9c, 0x54, 0x9b, 0x54, 0xbb, 0x54, 0x9b, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xdb, 0x5c, 0x1c, 0x65, 0x5c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x9c, 0x75, 0xbc, 0x75, 0xdd, 0x75, 0xbd, 0x75, 0xbd, 0x75, 0xbc, 0x75, 0x9c, 0x75, 0x5c, 0x6d, 0x3c, 0x6d, 0x1c, 0x6d, 0xfc, 0x64, 0xbb, 0x5c, 0x9a, 0x5c, 0x79, 0x54, 0x79, 0x54, 0x58, 0x54, 0x37, 0x54, 0x17, 0x54, 0xf7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0xee, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xef, 0x19, 0x0f, 0x1a, 0x10, 0x1a, 0x30, 0x1a, 0x50, 0x22, 0x50, 0x22, 0x51, 0x22, 0x71, 0x2a, 0x35, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x76, 0x3b, 0x96, 0x43, 0x96, 0x43, 0x34, 0x3b, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, + 0x10, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xef, 0x19, 0x0f, 0x1a, 0x0f, 0x1a, 0xef, 0x19, 0xce, 0x19, 0xee, 0x19, 0xce, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xef, 0x19, 0x0f, 0x1a, 0x2f, 0x1a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x22, 0x51, 0x22, 0x92, 0x2a, 0xb2, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0x14, 0x33, 0x34, 0x33, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x76, 0x3b, 0x96, 0x3b, 0x97, 0x3b, 0xb7, 0x43, 0xd7, 0x43, 0xf8, 0x4b, 0x18, 0x4c, 0x3a, 0x4c, 0x7c, 0x54, 0xbd, 0x5c, 0xfd, 0x64, 0x1d, 0x65, 0xfd, 0x64, 0xdc, 0x64, 0xbc, 0x5c, 0x9c, 0x5c, 0xbd, 0x5c, 0xbc, 0x5c, 0xdc, 0x54, 0xdc, 0x5c, 0xdc, 0x5c, 0xdd, 0x5c, 0xfd, 0x5c, 0x1d, 0x65, 0x1c, 0x65, 0xdc, 0x5c, 0xdd, 0x5c, 0xdc, 0x5c, 0xdd, 0x5c, 0xdd, 0x5c, 0xbc, 0x5c, 0xdc, 0x54, 0xdc, 0x5c, 0xbd, 0x5c, 0xbc, 0x5c, 0xdd, 0x5c, 0xdc, 0x5c, 0xbb, 0x5c, 0x9b, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xdb, 0x5c, 0xdb, 0x5c, 0xfc, 0x64, 0x5c, 0x6d, 0x7c, 0x75, 0x7c, 0x75, 0xbc, 0x75, 0x1d, 0x7e, 0x3d, 0x7e, 0x3c, 0x7e, 0x5c, 0x7e, 0x1c, 0x7e, 0x1c, 0x7e, 0xfd, 0x75, 0x9c, 0x75, 0x5c, 0x6d, 0x3c, 0x6d, 0xfc, 0x64, 0xbb, 0x5c, 0x9a, 0x5c, 0x99, 0x5c, 0x59, 0x54, 0x58, 0x54, 0x38, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0xb6, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0e, 0x1a, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xcd, 0x19, 0xad, 0x19, 0xad, 0x19, 0xcd, 0x19, 0xcd, 0x19, 0xcd, 0x19, 0xcd, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xef, 0x19, 0x0f, 0x1a, 0x0f, 0x1a, 0x30, 0x1a, 0x30, 0x22, 0x50, 0x22, 0x72, 0x2a, 0x35, 0x3b, 0x55, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0x96, 0x43, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x71, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, + 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x1a, 0xef, 0x19, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0xee, 0x19, 0xce, 0x19, 0xee, 0x19, 0xae, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xef, 0x19, 0x0f, 0x1a, 0x0f, 0x1a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x71, 0x22, 0x71, 0x22, 0x72, 0x22, 0x92, 0x2a, 0xb2, 0x2a, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x76, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0xb7, 0x43, 0xb7, 0x43, 0xd8, 0x43, 0xf8, 0x4b, 0x39, 0x4c, 0x7b, 0x54, 0xbc, 0x5c, 0xfd, 0x64, 0x1c, 0x6d, 0xdb, 0x64, 0x9b, 0x5c, 0x9b, 0x5c, 0xbc, 0x5c, 0xbd, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0x1c, 0x65, 0x1d, 0x65, 0x1c, 0x65, 0xdc, 0x5c, 0xdc, 0x5c, 0xdd, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x54, 0xdc, 0x5c, 0xbc, 0x5c, 0xdd, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0x9b, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0x9b, 0x54, 0xdb, 0x5c, 0xfc, 0x5c, 0x1c, 0x65, 0x5c, 0x6d, 0x7c, 0x75, 0x9c, 0x75, 0xfd, 0x7d, 0x5c, 0x7e, 0x9c, 0x86, 0x9c, 0x86, 0x9c, 0x86, 0x7c, 0x86, 0x9c, 0x86, 0x5c, 0x7e, 0xfc, 0x7d, 0xbc, 0x75, 0x7c, 0x75, 0x3d, 0x6d, 0xfc, 0x64, 0xdc, 0x64, 0xdb, 0x64, 0xba, 0x5c, 0x9a, 0x5c, 0x79, 0x5c, 0x17, 0x4c, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x43, 0x54, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x75, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0xee, 0x19, 0xce, 0x19, 0xae, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xee, 0x19, 0xef, 0x19, 0x0f, 0x1a, 0x10, 0x1a, 0x30, 0x22, 0x92, 0x2a, 0x34, 0x3b, 0x55, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0xf3, 0x3a, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x2f, 0x22, 0x0f, 0x22, 0x51, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, + 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x2f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x10, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xee, 0x19, 0x0e, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x2f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x22, 0x71, 0x22, 0x71, 0x22, 0x92, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0xf3, 0x32, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x96, 0x43, 0xb7, 0x43, 0xd7, 0x43, 0xf8, 0x4b, 0x39, 0x4c, 0x5a, 0x54, 0xbc, 0x5c, 0xdb, 0x64, 0x9a, 0x5c, 0x9a, 0x5c, 0xba, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xdc, 0x64, 0xfc, 0x5c, 0x1c, 0x5d, 0xdd, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfd, 0x5c, 0x1d, 0x65, 0x1d, 0x65, 0x1c, 0x65, 0xdc, 0x5c, 0xdd, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdb, 0x54, 0xbc, 0x5c, 0xdd, 0x64, 0xdc, 0x5c, 0xdd, 0x5c, 0xbc, 0x5c, 0x9b, 0x54, 0xbb, 0x54, 0x9b, 0x54, 0xbb, 0x54, 0xdb, 0x5c, 0xfb, 0x64, 0x1c, 0x65, 0x5c, 0x6d, 0x7c, 0x75, 0xdc, 0x7d, 0x3d, 0x86, 0x7c, 0x86, 0x9c, 0x8e, 0x9c, 0x8e, 0xbc, 0x96, 0xbc, 0x96, 0x9c, 0x8e, 0x9c, 0x8e, 0x9c, 0x86, 0x5c, 0x7e, 0xfd, 0x75, 0x7c, 0x75, 0x7d, 0x75, 0x7d, 0x75, 0xdb, 0x64, 0xf7, 0x4b, 0x96, 0x43, 0x55, 0x43, 0x34, 0x3b, 0xf3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x3a, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf4, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0xee, 0x19, 0xce, 0x19, 0xae, 0x19, 0xad, 0x19, 0xad, 0x19, 0xcd, 0x19, 0xcd, 0x19, 0xcd, 0x19, 0xcd, 0x19, 0xcd, 0x19, 0xcd, 0x19, 0xad, 0x19, 0xad, 0x19, 0xcd, 0x19, 0xcd, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xef, 0x19, 0x30, 0x22, 0x30, 0x1a, 0x71, 0x2a, 0x14, 0x3b, 0x35, 0x3b, 0x14, 0x33, 0xf4, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0xf3, 0x32, 0xd3, 0x32, 0x14, 0x3b, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x55, 0x3b, 0xf3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x50, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, + 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0xef, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xee, 0x19, 0xee, 0x19, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x2f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x22, 0x71, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x14, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x76, 0x3b, 0x96, 0x3b, 0x96, 0x43, 0xb7, 0x43, 0xf8, 0x4b, 0x18, 0x4c, 0x39, 0x4c, 0x5a, 0x54, 0x59, 0x54, 0x99, 0x5c, 0x99, 0x5c, 0x9a, 0x5c, 0xba, 0x64, 0xbb, 0x64, 0xdc, 0x64, 0x1b, 0x65, 0x3c, 0x65, 0x1d, 0x5d, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x64, 0x1d, 0x65, 0x1d, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbb, 0x54, 0xdc, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xdd, 0x5c, 0xdc, 0x5c, 0x9b, 0x54, 0xbc, 0x54, 0xdb, 0x54, 0xdb, 0x5c, 0xfb, 0x5c, 0xfc, 0x64, 0x3c, 0x65, 0x5c, 0x6d, 0xbc, 0x75, 0xfc, 0x7d, 0x3c, 0x86, 0x9c, 0x86, 0xbb, 0x8e, 0x9c, 0x96, 0xbc, 0x9e, 0x9c, 0x96, 0x9c, 0x96, 0x9c, 0x96, 0x9b, 0x8e, 0x9c, 0x8e, 0x9c, 0x86, 0xdb, 0x7d, 0x77, 0x5c, 0x54, 0x43, 0xf3, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xd2, 0x32, 0xb2, 0x32, 0xf3, 0x3a, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x71, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0xee, 0x19, 0xce, 0x19, 0xae, 0x19, 0xad, 0x19, 0xad, 0x19, 0xcd, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xcd, 0x19, 0xcd, 0x19, 0xcd, 0x19, 0xcd, 0x19, 0xcd, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0x30, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0xf4, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x35, 0x3b, 0xf3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x51, 0x22, 0x50, 0x22, + 0x50, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x1a, 0xee, 0x19, 0xee, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xee, 0x19, 0xee, 0x19, 0xef, 0x19, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x2f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x35, 0x3b, 0x75, 0x3b, 0x76, 0x3b, 0x96, 0x3b, 0xb6, 0x43, 0xf7, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x78, 0x5c, 0x79, 0x5c, 0x99, 0x5c, 0x9a, 0x64, 0xba, 0x64, 0xdb, 0x64, 0x3c, 0x6d, 0x7d, 0x6d, 0x3c, 0x65, 0x1d, 0x5d, 0xfd, 0x5c, 0xfd, 0x5c, 0xfd, 0x64, 0x1d, 0x65, 0x1d, 0x65, 0x1d, 0x65, 0x1c, 0x65, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0x9b, 0x5c, 0x9b, 0x54, 0xbb, 0x54, 0xdc, 0x5c, 0xdd, 0x5c, 0xdd, 0x5c, 0xdc, 0x5c, 0x9b, 0x54, 0xbb, 0x54, 0xbc, 0x54, 0xbc, 0x5c, 0xdb, 0x5c, 0xfc, 0x64, 0x1c, 0x6d, 0x5d, 0x6d, 0xbc, 0x75, 0x1d, 0x7e, 0x5c, 0x86, 0xbc, 0x8e, 0xbc, 0x96, 0x9c, 0x9e, 0xbc, 0xa6, 0x9c, 0xa6, 0xbc, 0xa6, 0x7c, 0xa6, 0x5b, 0x96, 0x79, 0x7d, 0xb4, 0x4b, 0xf3, 0x32, 0x33, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x34, 0x3b, 0x96, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x71, 0x2a, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0e, 0x1a, 0xee, 0x19, 0xce, 0x19, 0xad, 0x19, 0xad, 0x19, 0xcd, 0x19, 0xad, 0x19, 0xac, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0xad, 0x19, 0xad, 0x19, 0xac, 0x19, 0xad, 0x19, 0xad, 0x19, 0xcd, 0x19, 0xad, 0x19, 0xce, 0x19, 0xce, 0x19, 0x30, 0x22, 0x30, 0x1a, 0x30, 0x22, 0x14, 0x33, 0x34, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x91, 0x2a, 0x91, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x2f, 0x22, 0x0f, 0x22, 0x2f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x2f, 0x22, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, + 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x1a, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0x0e, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x2f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xd7, 0x43, 0xf7, 0x4b, 0xd7, 0x43, 0xd7, 0x4b, 0x18, 0x4c, 0x58, 0x54, 0x78, 0x5c, 0x79, 0x5c, 0x99, 0x5c, 0x9a, 0x5c, 0xbb, 0x64, 0x5c, 0x75, 0x7d, 0x75, 0x7d, 0x6d, 0x3d, 0x65, 0xfc, 0x5c, 0xfd, 0x5c, 0xfd, 0x5c, 0x1d, 0x65, 0x1d, 0x65, 0x1d, 0x65, 0xfd, 0x64, 0xbc, 0x5c, 0x7b, 0x54, 0x9b, 0x5c, 0x9c, 0x54, 0xbb, 0x54, 0x9b, 0x54, 0xdb, 0x5c, 0xdd, 0x64, 0xdd, 0x64, 0xdc, 0x5c, 0x9c, 0x54, 0xbb, 0x54, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x64, 0x3c, 0x65, 0x5c, 0x6d, 0x9c, 0x75, 0x1c, 0x7e, 0x7c, 0x86, 0x9c, 0x8e, 0xbc, 0x96, 0xbc, 0xa6, 0xbd, 0xb6, 0x9c, 0xbe, 0xba, 0x9d, 0x56, 0x74, 0x74, 0x4b, 0x13, 0x43, 0x33, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x55, 0x43, 0xd7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x30, 0x22, 0xef, 0x19, 0xee, 0x19, 0xce, 0x19, 0xae, 0x19, 0xad, 0x19, 0xcd, 0x19, 0xad, 0x19, 0x8d, 0x19, 0xac, 0x19, 0xac, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0xac, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xce, 0x19, 0x10, 0x1a, 0x30, 0x22, 0xef, 0x19, 0xf3, 0x32, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x14, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x13, 0x3b, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x2f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, + 0x51, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0xee, 0x19, 0xce, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xae, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0x0e, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x2f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb7, 0x43, 0xf7, 0x4b, 0x18, 0x54, 0x58, 0x54, 0x78, 0x5c, 0x79, 0x5c, 0x9a, 0x64, 0xdb, 0x64, 0x5c, 0x75, 0x7d, 0x75, 0x7d, 0x6d, 0x5d, 0x65, 0x1c, 0x65, 0xfd, 0x64, 0xfc, 0x64, 0xfd, 0x64, 0xfd, 0x64, 0xdc, 0x5c, 0x9c, 0x54, 0xbd, 0x5c, 0x9c, 0x5c, 0x9b, 0x54, 0x9b, 0x5c, 0x7a, 0x54, 0x9a, 0x54, 0x9b, 0x54, 0xdc, 0x5c, 0xdd, 0x64, 0xdc, 0x5c, 0x9c, 0x54, 0xbc, 0x54, 0xdb, 0x5c, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0x1c, 0x65, 0x3c, 0x6d, 0x9d, 0x75, 0xfc, 0x7d, 0x3c, 0x86, 0x9c, 0x8e, 0xbc, 0x9e, 0xdd, 0xae, 0xfb, 0x9d, 0x16, 0x6c, 0x54, 0x4b, 0x13, 0x43, 0x34, 0x43, 0x54, 0x4b, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x53, 0x43, 0x33, 0x43, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xd2, 0x32, 0xd3, 0x3a, 0x95, 0x43, 0xf7, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x76, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x2a, 0xef, 0x21, 0xae, 0x19, 0xae, 0x19, 0xad, 0x19, 0xcd, 0x19, 0xcd, 0x19, 0xad, 0x19, 0xac, 0x19, 0xac, 0x19, 0xac, 0x19, 0xac, 0x19, 0xac, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xee, 0x19, 0x10, 0x1a, 0x30, 0x22, 0xef, 0x19, 0xd3, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x55, 0x3b, 0x95, 0x43, 0x96, 0x4b, 0x96, 0x43, 0x75, 0x43, 0x55, 0x43, 0x75, 0x43, 0x34, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x3a, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x2f, 0x22, 0x2f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xee, 0x19, 0xf3, 0x3a, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, + 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xee, 0x19, 0xef, 0x19, 0xef, 0x19, 0x0f, 0x1a, 0x0f, 0x22, 0x2f, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0xf7, 0x4b, 0x38, 0x54, 0x58, 0x54, 0x58, 0x5c, 0x99, 0x5c, 0xdb, 0x6c, 0x5d, 0x75, 0x5d, 0x75, 0x5d, 0x6d, 0x1d, 0x65, 0xfd, 0x64, 0xfd, 0x5c, 0xdc, 0x5c, 0xdc, 0x64, 0x9b, 0x5c, 0x9b, 0x54, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x7b, 0x54, 0xbb, 0x5c, 0xba, 0x54, 0x7a, 0x54, 0x9b, 0x54, 0xdc, 0x5c, 0xfd, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x64, 0xfd, 0x64, 0x1d, 0x65, 0x3c, 0x6d, 0x5c, 0x6d, 0xdc, 0x75, 0x7c, 0x86, 0x9c, 0x8e, 0x5b, 0x96, 0x97, 0x74, 0x13, 0x43, 0x33, 0x43, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x53, 0x43, 0x54, 0x43, 0x54, 0x43, 0x53, 0x43, 0x34, 0x43, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xd2, 0x32, 0x13, 0x3b, 0xb6, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0xf4, 0x3a, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x72, 0x32, 0x71, 0x32, 0x72, 0x32, 0x51, 0x2a, 0xee, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0x8c, 0x19, 0xac, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0xac, 0x19, 0xac, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0xad, 0x19, 0xad, 0x19, 0xed, 0x19, 0x2f, 0x22, 0x30, 0x22, 0xef, 0x19, 0xd3, 0x32, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0xf4, 0x3a, 0x14, 0x3b, 0x34, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0x96, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0x35, 0x3b, 0xf4, 0x3a, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x3a, 0x91, 0x32, 0x71, 0x32, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x2f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x2f, 0x22, 0x2f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x21, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x1a, 0x91, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, + 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xef, 0x19, 0xee, 0x19, 0x0f, 0x1a, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x93, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0x14, 0x33, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x76, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xf7, 0x4b, 0x18, 0x54, 0x38, 0x54, 0x79, 0x5c, 0xdb, 0x64, 0x5d, 0x75, 0x5d, 0x75, 0x3d, 0x6d, 0xfd, 0x64, 0xdd, 0x64, 0xbc, 0x5c, 0x9b, 0x5c, 0x59, 0x5c, 0x18, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7b, 0x54, 0x9b, 0x5c, 0x9c, 0x5c, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x9a, 0x54, 0xbb, 0x54, 0xfc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x64, 0xfc, 0x64, 0x1c, 0x65, 0x1c, 0x65, 0x1d, 0x65, 0x5c, 0x6d, 0xdd, 0x75, 0x1c, 0x7e, 0x38, 0x75, 0x94, 0x4b, 0xf3, 0x3a, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x54, 0x43, 0x54, 0x43, 0x33, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xd2, 0x32, 0x34, 0x43, 0xf7, 0x53, 0x17, 0x54, 0xf7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xb5, 0x4b, 0x95, 0x43, 0x54, 0x3b, 0x14, 0x3b, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x92, 0x32, 0x71, 0x2a, 0x30, 0x22, 0xce, 0x19, 0xad, 0x19, 0xad, 0x19, 0xac, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x6c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8d, 0x19, 0xad, 0x19, 0xcd, 0x19, 0x2f, 0x22, 0x30, 0x22, 0x0f, 0x1a, 0xb3, 0x32, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf4, 0x3a, 0x14, 0x3b, 0x34, 0x3b, 0x75, 0x43, 0x96, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0x96, 0x4b, 0x55, 0x3b, 0x14, 0x3b, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x3a, 0x91, 0x32, 0x71, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x2f, 0x22, 0x30, 0x22, 0x2f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x19, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0xf3, 0x3a, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, + 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xef, 0x19, 0x0f, 0x1a, 0x2f, 0x22, 0x2f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x51, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x72, 0x2a, 0x72, 0x2a, 0xb2, 0x2a, 0xb3, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xf7, 0x4b, 0x18, 0x54, 0x39, 0x54, 0xba, 0x64, 0x3c, 0x6d, 0x3d, 0x6d, 0x3d, 0x6d, 0xfd, 0x64, 0xdd, 0x64, 0x9c, 0x5c, 0x59, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x39, 0x54, 0x59, 0x54, 0x5a, 0x5c, 0x7b, 0x5c, 0x5a, 0x5c, 0x18, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x9a, 0x54, 0xdc, 0x5c, 0x1d, 0x65, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0x1c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0x1c, 0x65, 0x3c, 0x65, 0x7d, 0x6d, 0x5b, 0x6d, 0xf5, 0x4b, 0x54, 0x43, 0x54, 0x43, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf2, 0x3a, 0x54, 0x43, 0x17, 0x54, 0x38, 0x54, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xb6, 0x4b, 0x75, 0x43, 0x34, 0x3b, 0xf4, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x92, 0x32, 0x71, 0x2a, 0x0f, 0x22, 0xae, 0x19, 0xad, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0xac, 0x19, 0xcd, 0x19, 0x0f, 0x1a, 0x30, 0x22, 0x0f, 0x1a, 0x92, 0x2a, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x55, 0x43, 0x96, 0x4b, 0xd6, 0x4b, 0xd6, 0x53, 0xd6, 0x4b, 0xf6, 0x53, 0xb6, 0x4b, 0x75, 0x43, 0x14, 0x3b, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x71, 0x32, 0x50, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x2f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xee, 0x19, 0xee, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xef, 0x19, 0xf3, 0x3a, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, + 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0xef, 0x19, 0xee, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xee, 0x19, 0xef, 0x19, 0xef, 0x19, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x51, 0x22, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0xf4, 0x3a, 0x14, 0x3b, 0xf4, 0x3a, 0xf3, 0x3a, 0x14, 0x3b, 0x35, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0x39, 0x54, 0x9b, 0x5c, 0xdb, 0x64, 0x1d, 0x65, 0xfd, 0x6c, 0xfd, 0x64, 0xbd, 0x64, 0x7b, 0x5c, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x39, 0x54, 0x59, 0x5c, 0x5a, 0x5c, 0x7a, 0x5c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x79, 0x5c, 0x1d, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0x3d, 0x65, 0x78, 0x5c, 0x54, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x74, 0x4b, 0x54, 0x4b, 0x74, 0x4b, 0x74, 0x43, 0x54, 0x43, 0x54, 0x43, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0x74, 0x43, 0x38, 0x54, 0x58, 0x5c, 0x17, 0x54, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0x75, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x72, 0x32, 0x30, 0x22, 0xee, 0x19, 0xcd, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x6c, 0x19, 0x8c, 0x19, 0xac, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0xac, 0x19, 0xad, 0x19, 0x0f, 0x22, 0x30, 0x22, 0x2f, 0x22, 0x30, 0x22, 0x34, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x95, 0x43, 0xd6, 0x4b, 0xd6, 0x53, 0xf6, 0x53, 0x16, 0x54, 0xd6, 0x4b, 0x75, 0x43, 0x34, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x71, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x2f, 0x22, 0xef, 0x21, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x2f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xef, 0x19, 0xef, 0x19, 0xd2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, + 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0xef, 0x19, 0xef, 0x19, 0x0f, 0x1a, 0x0f, 0x1a, 0xef, 0x19, 0x0f, 0x22, 0xef, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf4, 0x3a, 0xf3, 0x3a, 0xf4, 0x3a, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0x75, 0x43, 0x38, 0x54, 0x9b, 0x5c, 0x9b, 0x5c, 0xbc, 0x5c, 0x9b, 0x5c, 0x38, 0x54, 0x38, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x39, 0x54, 0x5a, 0x5c, 0x5a, 0x5c, 0xd7, 0x4b, 0xd7, 0x4b, 0x38, 0x54, 0x38, 0x54, 0x18, 0x54, 0x39, 0x54, 0xfd, 0x64, 0xdc, 0x64, 0xfc, 0x64, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x38, 0x54, 0x54, 0x3b, 0x54, 0x43, 0x34, 0x43, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x54, 0x43, 0x54, 0x43, 0x33, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0x75, 0x43, 0x38, 0x54, 0x38, 0x5c, 0xf7, 0x53, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x4b, 0x75, 0x43, 0x55, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x30, 0x22, 0xee, 0x19, 0xce, 0x19, 0xad, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0xf3, 0x32, 0x75, 0x43, 0x75, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x75, 0x43, 0xb6, 0x4b, 0xd6, 0x53, 0xf6, 0x53, 0xf6, 0x5b, 0xf6, 0x53, 0x95, 0x43, 0x34, 0x3b, 0xf3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x51, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x2f, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0e, 0x1a, 0xce, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0x50, 0x22, 0xf3, 0x3a, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, + 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0xee, 0x19, 0xee, 0x19, 0xef, 0x19, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0x14, 0x3b, 0xf3, 0x3a, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0xd6, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0x18, 0x54, 0x18, 0x4c, 0xf8, 0x4b, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x39, 0x5c, 0x5a, 0x5c, 0xd7, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xf7, 0x53, 0x17, 0x54, 0x58, 0x54, 0xdc, 0x64, 0xdd, 0x64, 0xbc, 0x5c, 0xdc, 0x64, 0x1c, 0x65, 0xfb, 0x64, 0xf7, 0x4b, 0x33, 0x3b, 0x34, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x74, 0x4b, 0x74, 0x53, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x54, 0x43, 0x34, 0x43, 0x13, 0x43, 0xf3, 0x3a, 0x75, 0x4b, 0x18, 0x54, 0x38, 0x54, 0xf8, 0x53, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x51, 0x2a, 0xef, 0x19, 0xee, 0x19, 0xcd, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0xad, 0x19, 0xad, 0x19, 0xce, 0x19, 0x0f, 0x22, 0x30, 0x1a, 0x30, 0x22, 0xb2, 0x32, 0x54, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x14, 0x3b, 0xf4, 0x3a, 0x14, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0xb6, 0x4b, 0xd6, 0x53, 0xf5, 0x53, 0xd5, 0x53, 0x95, 0x4b, 0x55, 0x43, 0x14, 0x3b, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x50, 0x2a, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0x0f, 0x22, 0xf3, 0x3a, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x32, 0x71, 0x2a, 0x71, 0x2a, + 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x51, 0x22, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0x14, 0x3b, 0xf4, 0x3a, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xf8, 0x4b, 0xf8, 0x53, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x39, 0x54, 0x5a, 0x5c, 0x39, 0x54, 0x96, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0x79, 0x5c, 0xfd, 0x64, 0xdd, 0x64, 0xdd, 0x64, 0x7b, 0x5c, 0x75, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x4b, 0x54, 0x4b, 0x53, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x74, 0x4b, 0x74, 0x53, 0x74, 0x53, 0x74, 0x53, 0x94, 0x4b, 0x74, 0x4b, 0x54, 0x4b, 0x54, 0x43, 0x54, 0x43, 0x34, 0x43, 0x33, 0x43, 0x95, 0x4b, 0xf7, 0x53, 0x18, 0x54, 0x17, 0x54, 0xf7, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0x96, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x43, 0x55, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0xef, 0x21, 0xce, 0x19, 0xcd, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0xac, 0x19, 0xad, 0x19, 0xad, 0x19, 0x0f, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x50, 0x22, 0x34, 0x3b, 0x75, 0x43, 0x54, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0xd5, 0x53, 0xd5, 0x53, 0xb5, 0x4b, 0x95, 0x4b, 0x55, 0x3b, 0x14, 0x3b, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x50, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xce, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xee, 0x19, 0xd3, 0x32, 0xf3, 0x3a, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, + 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0xf3, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xf8, 0x53, 0x18, 0x54, 0x18, 0x54, 0x39, 0x54, 0x5a, 0x5c, 0x18, 0x54, 0xd6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x53, 0x7a, 0x5c, 0xfd, 0x64, 0x9a, 0x5c, 0x95, 0x4b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x74, 0x53, 0x74, 0x53, 0x74, 0x53, 0x94, 0x53, 0x94, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x43, 0x95, 0x4b, 0xf7, 0x53, 0x17, 0x54, 0x17, 0x54, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0x95, 0x43, 0x75, 0x43, 0x54, 0x43, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x32, 0xee, 0x21, 0xce, 0x19, 0xce, 0x19, 0x8c, 0x19, 0x6c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0xad, 0x19, 0xad, 0x19, 0xef, 0x19, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xd2, 0x32, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x14, 0x3b, 0x34, 0x3b, 0xb5, 0x4b, 0xd5, 0x53, 0xb5, 0x4b, 0x75, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x30, 0x2a, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x21, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x21, 0xef, 0x19, 0xee, 0x19, 0xce, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xce, 0x19, 0x91, 0x2a, 0x14, 0x3b, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x2a, + 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x50, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0xf4, 0x3a, 0xf4, 0x3a, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb7, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0x18, 0x54, 0x18, 0x54, 0x59, 0x54, 0x39, 0x54, 0xf8, 0x4b, 0xd7, 0x4b, 0xf7, 0x53, 0x17, 0x54, 0xf7, 0x4b, 0xf7, 0x4b, 0x18, 0x54, 0x38, 0x54, 0x75, 0x43, 0xf3, 0x3a, 0x34, 0x3b, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x53, 0x3b, 0x53, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x4b, 0x54, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x94, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x43, 0x95, 0x4b, 0xf7, 0x53, 0xf7, 0x53, 0x17, 0x54, 0x17, 0x54, 0xf7, 0x53, 0xf7, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x53, 0xf7, 0x53, 0xf6, 0x53, 0xd6, 0x4b, 0x96, 0x4b, 0x75, 0x43, 0x54, 0x3b, 0x13, 0x3b, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x0f, 0x22, 0xee, 0x19, 0xcd, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0xac, 0x19, 0xad, 0x19, 0xad, 0x19, 0xce, 0x19, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x19, 0x71, 0x2a, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x43, 0x55, 0x43, 0x34, 0x3b, 0xf3, 0x3a, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x32, 0x30, 0x2a, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xee, 0x19, 0x0f, 0x22, 0xee, 0x19, 0x14, 0x3b, 0xf3, 0x3a, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, + 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x91, 0x32, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x3a, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x53, 0x18, 0x54, 0x39, 0x54, 0x39, 0x54, 0xd7, 0x4b, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x17, 0x54, 0x54, 0x43, 0xf3, 0x32, 0x14, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x4b, 0x54, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x54, 0x43, 0x54, 0x43, 0x34, 0x43, 0x95, 0x4b, 0xf7, 0x53, 0xf7, 0x53, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0xf7, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x53, 0x18, 0x54, 0x38, 0x5c, 0x38, 0x5c, 0x38, 0x54, 0x17, 0x54, 0xd6, 0x4b, 0x96, 0x4b, 0x75, 0x43, 0x34, 0x3b, 0xf3, 0x3a, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x91, 0x32, 0x0f, 0x22, 0xee, 0x19, 0xce, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xee, 0x21, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xf3, 0x32, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0x92, 0x32, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x30, 0x2a, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x19, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x1a, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xef, 0x19, 0x0f, 0x1a, 0x71, 0x2a, 0x35, 0x43, 0xf3, 0x3a, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, + 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xd3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x91, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x3a, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x76, 0x43, 0x96, 0x43, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf8, 0x53, 0x39, 0x54, 0x17, 0x54, 0x38, 0x54, 0x58, 0x54, 0x59, 0x54, 0x18, 0x54, 0x34, 0x3b, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x53, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x43, 0x95, 0x4b, 0x17, 0x54, 0xf7, 0x53, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0x38, 0x54, 0x59, 0x5c, 0x79, 0x5c, 0x9a, 0x64, 0x99, 0x64, 0x78, 0x5c, 0x37, 0x5c, 0xd6, 0x4b, 0x95, 0x4b, 0x55, 0x43, 0x14, 0x3b, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0xef, 0x21, 0xee, 0x19, 0xcd, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x19, 0x71, 0x2a, 0xf3, 0x3a, 0xf3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x92, 0x32, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0x92, 0x32, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0xef, 0x21, 0xef, 0x19, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0x0f, 0x1a, 0xef, 0x19, 0xf3, 0x3a, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, + 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x3a, 0xf3, 0x3a, 0x13, 0x3b, 0x34, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x43, 0x34, 0x43, 0x34, 0x43, 0x13, 0x3b, 0xf3, 0x3a, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0x18, 0x54, 0x18, 0x54, 0x39, 0x54, 0x39, 0x54, 0x18, 0x54, 0xf8, 0x53, 0x18, 0x54, 0x38, 0x54, 0x78, 0x54, 0x79, 0x5c, 0xb6, 0x4b, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x33, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x94, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x54, 0x4b, 0x54, 0x43, 0x54, 0x43, 0x34, 0x43, 0x75, 0x4b, 0xf7, 0x53, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x18, 0x54, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x54, 0x38, 0x5c, 0x9a, 0x5c, 0xdb, 0x64, 0xfc, 0x6c, 0xfc, 0x6c, 0xdb, 0x6c, 0x79, 0x64, 0x38, 0x54, 0xd6, 0x4b, 0x95, 0x43, 0x34, 0x3b, 0xf3, 0x3a, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x71, 0x2a, 0xef, 0x19, 0xce, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xce, 0x19, 0x0f, 0x1a, 0x0f, 0x22, 0x10, 0x22, 0xd3, 0x32, 0xf3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0x92, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x19, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0xef, 0x19, 0x0f, 0x1a, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xee, 0x19, 0xef, 0x19, 0x0f, 0x22, 0x50, 0x2a, 0x55, 0x43, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, + 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x34, 0x43, 0x54, 0x43, 0x95, 0x4b, 0xb5, 0x53, 0xb6, 0x53, 0xb6, 0x53, 0xb5, 0x53, 0x95, 0x4b, 0x75, 0x4b, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x14, 0x3b, 0xf3, 0x3a, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xd3, 0x32, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x3a, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x76, 0x43, 0xb6, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0x18, 0x4c, 0x18, 0x54, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x5a, 0x5c, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0xd6, 0x4b, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x4b, 0x54, 0x4b, 0x54, 0x43, 0x54, 0x43, 0x34, 0x43, 0x54, 0x43, 0xd7, 0x53, 0x38, 0x54, 0x18, 0x54, 0x38, 0x54, 0x18, 0x54, 0xf7, 0x4b, 0xf7, 0x4b, 0x18, 0x54, 0x79, 0x5c, 0xbb, 0x64, 0x1d, 0x6d, 0x3d, 0x75, 0x5d, 0x75, 0x3d, 0x75, 0xfc, 0x6c, 0x99, 0x64, 0x17, 0x54, 0xb6, 0x4b, 0x75, 0x43, 0x14, 0x3b, 0xf3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0x51, 0x2a, 0xef, 0x19, 0xee, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xce, 0x19, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x2a, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x71, 0x2a, 0xf3, 0x32, 0xf4, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x21, 0x0f, 0x22, 0xef, 0x21, 0x0f, 0x22, 0x0f, 0x1a, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xef, 0x19, 0xd3, 0x32, 0x35, 0x43, 0x14, 0x3b, 0xf3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, + 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x34, 0x43, 0x75, 0x4b, 0xb5, 0x53, 0xf6, 0x53, 0x17, 0x5c, 0x37, 0x64, 0x37, 0x64, 0x37, 0x64, 0x17, 0x5c, 0xf6, 0x5b, 0x17, 0x5c, 0xf6, 0x53, 0xb5, 0x53, 0x75, 0x4b, 0x34, 0x43, 0xf3, 0x3a, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x3a, 0xd3, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x3a, 0x14, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0xf8, 0x53, 0x39, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x39, 0x54, 0x75, 0x43, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x43, 0x34, 0x43, 0x13, 0x43, 0xb6, 0x4b, 0x58, 0x5c, 0x18, 0x54, 0x38, 0x54, 0xf7, 0x53, 0xd7, 0x53, 0xf7, 0x53, 0x38, 0x54, 0x9a, 0x5c, 0xfc, 0x6c, 0x5d, 0x75, 0xbd, 0x7d, 0xdd, 0x85, 0xbd, 0x85, 0x7d, 0x7d, 0xfb, 0x6c, 0x79, 0x5c, 0xf7, 0x53, 0x95, 0x43, 0x34, 0x3b, 0xf3, 0x3a, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0x50, 0x2a, 0x0f, 0x22, 0xcd, 0x19, 0xad, 0x19, 0xae, 0x19, 0xad, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0x10, 0x22, 0x10, 0x22, 0x71, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x91, 0x2a, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xd2, 0x32, 0x91, 0x32, 0x71, 0x32, 0x91, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0xef, 0x19, 0xef, 0x19, 0x0f, 0x22, 0xef, 0x19, 0x0f, 0x22, 0x0f, 0x1a, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0x0f, 0x22, 0x95, 0x4b, 0x35, 0x3b, 0x14, 0x3b, 0xf3, 0x3a, 0xf3, 0x32, + 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0x14, 0x3b, 0x54, 0x43, 0xb5, 0x4b, 0xf6, 0x53, 0x37, 0x64, 0x79, 0x64, 0xb9, 0x6c, 0xda, 0x6c, 0xda, 0x6c, 0xba, 0x6c, 0xfb, 0x74, 0x99, 0x6c, 0x58, 0x64, 0x37, 0x5c, 0xd6, 0x53, 0x95, 0x4b, 0x34, 0x43, 0xf3, 0x3a, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x3a, 0x34, 0x3b, 0x76, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf8, 0x4b, 0x18, 0x54, 0x59, 0x54, 0x79, 0x5c, 0x7a, 0x5c, 0x7a, 0x64, 0xbb, 0x64, 0x9a, 0x64, 0xf7, 0x53, 0xd7, 0x53, 0x96, 0x43, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x43, 0x33, 0x43, 0x13, 0x43, 0x95, 0x4b, 0x38, 0x5c, 0x18, 0x54, 0x38, 0x54, 0x17, 0x54, 0xf7, 0x53, 0x17, 0x54, 0x38, 0x54, 0x9a, 0x5c, 0xfc, 0x6c, 0x7d, 0x7d, 0x1d, 0x86, 0x7d, 0x8e, 0x5d, 0x8e, 0xdd, 0x85, 0x5d, 0x75, 0xdb, 0x6c, 0x38, 0x5c, 0xb6, 0x4b, 0x55, 0x43, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x30, 0x22, 0x0e, 0x1a, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xef, 0x21, 0x30, 0x22, 0x30, 0x22, 0x92, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x91, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x72, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x32, 0x50, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x19, 0xef, 0x19, 0x0f, 0x1a, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xee, 0x19, 0xce, 0x19, 0xee, 0x19, 0xef, 0x19, 0xce, 0x19, 0xad, 0x19, 0xce, 0x19, 0xee, 0x19, 0xce, 0x19, 0x70, 0x2a, 0xb6, 0x43, 0x35, 0x3b, 0x14, 0x3b, 0xf3, 0x3a, + 0xf4, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0x14, 0x3b, 0x74, 0x43, 0xb6, 0x4b, 0x17, 0x5c, 0x78, 0x64, 0xba, 0x6c, 0x1b, 0x75, 0x3d, 0x7d, 0x5c, 0x7d, 0x9d, 0x85, 0x5d, 0x7d, 0x1c, 0x75, 0xba, 0x6c, 0x78, 0x64, 0x37, 0x5c, 0xd6, 0x53, 0x75, 0x4b, 0x34, 0x43, 0xf3, 0x3a, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xd3, 0x3a, 0xd3, 0x3a, 0xb2, 0x32, 0x50, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x35, 0x3b, 0x76, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xf8, 0x4b, 0x39, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x9a, 0x64, 0x9a, 0x64, 0x38, 0x5c, 0x17, 0x54, 0x17, 0x54, 0xf8, 0x53, 0xb6, 0x4b, 0xd3, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x43, 0x34, 0x43, 0x33, 0x43, 0x34, 0x43, 0x33, 0x43, 0x75, 0x4b, 0x17, 0x54, 0x38, 0x5c, 0x38, 0x54, 0x18, 0x54, 0xf7, 0x53, 0x17, 0x54, 0x38, 0x54, 0x7a, 0x5c, 0xfc, 0x6c, 0x9d, 0x7d, 0x3d, 0x8e, 0xbd, 0x96, 0xdc, 0x96, 0x7d, 0x96, 0xdd, 0x85, 0x1c, 0x75, 0x99, 0x64, 0xf7, 0x53, 0x95, 0x4b, 0x54, 0x3b, 0x14, 0x3b, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x71, 0x2a, 0x30, 0x22, 0xae, 0x19, 0x8d, 0x19, 0xad, 0x19, 0xad, 0x19, 0xcd, 0x19, 0xcd, 0x19, 0xee, 0x19, 0x0f, 0x22, 0x0f, 0x22, 0x50, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xb2, 0x32, 0x91, 0x32, 0x71, 0x32, 0x91, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x32, 0x50, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x19, 0x0f, 0x22, 0xef, 0x19, 0x0f, 0x22, 0x0f, 0x1a, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xee, 0x19, 0x0f, 0x1a, 0xef, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xad, 0x19, 0x13, 0x3b, 0x96, 0x43, 0x35, 0x3b, 0x14, 0x3b, + 0x35, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x3a, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x34, 0x43, 0x95, 0x4b, 0xf6, 0x53, 0x58, 0x64, 0xba, 0x6c, 0xfb, 0x74, 0x7d, 0x85, 0xfd, 0x8d, 0xdd, 0x8d, 0x9d, 0x85, 0x5d, 0x7d, 0x1c, 0x75, 0xba, 0x6c, 0x58, 0x64, 0xf7, 0x5b, 0xb5, 0x4b, 0x54, 0x43, 0x14, 0x3b, 0xf3, 0x3a, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0xd3, 0x32, 0x30, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x14, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf8, 0x4b, 0x39, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x7a, 0x5c, 0x59, 0x5c, 0xf7, 0x53, 0xf7, 0x53, 0xf7, 0x53, 0xf7, 0x53, 0x18, 0x54, 0xd7, 0x4b, 0xf3, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x3b, 0x74, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x43, 0x33, 0x43, 0x34, 0x43, 0x33, 0x43, 0x54, 0x43, 0xf7, 0x53, 0x38, 0x5c, 0x38, 0x5c, 0x38, 0x5c, 0x17, 0x54, 0x17, 0x54, 0x38, 0x54, 0x79, 0x5c, 0xdc, 0x6c, 0x7d, 0x7d, 0x5d, 0x8e, 0xbc, 0x96, 0xbc, 0x9e, 0xbc, 0x9e, 0x5d, 0x8e, 0x9d, 0x7d, 0xdb, 0x6c, 0x38, 0x5c, 0xd6, 0x4b, 0x75, 0x43, 0x34, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0x51, 0x2a, 0xce, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0x10, 0x22, 0x10, 0x22, 0xef, 0x21, 0x51, 0x2a, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x32, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xef, 0x19, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x50, 0x2a, 0x91, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xd3, 0x32, 0x55, 0x43, 0x96, 0x43, 0x55, 0x43, + 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x34, 0x3b, 0xf3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x14, 0x3b, 0x75, 0x43, 0xb6, 0x4b, 0x17, 0x5c, 0x78, 0x64, 0x1c, 0x75, 0x7d, 0x85, 0xbd, 0x85, 0xbd, 0x85, 0x9d, 0x85, 0x7d, 0x7d, 0x1d, 0x75, 0xba, 0x6c, 0x78, 0x64, 0x17, 0x5c, 0xb6, 0x4b, 0x75, 0x43, 0x34, 0x43, 0xf3, 0x3a, 0xf3, 0x3a, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xd3, 0x32, 0x10, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0x96, 0x43, 0xb7, 0x4b, 0xd7, 0x4b, 0xf8, 0x4b, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x3a, 0x54, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0x14, 0x3b, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x33, 0x3b, 0x33, 0x3b, 0x34, 0x43, 0x34, 0x43, 0x54, 0x43, 0xf7, 0x53, 0x59, 0x5c, 0x59, 0x5c, 0x59, 0x5c, 0x38, 0x5c, 0x17, 0x54, 0x17, 0x54, 0x59, 0x5c, 0xdb, 0x6c, 0x5d, 0x75, 0x3d, 0x86, 0xbc, 0x96, 0xbc, 0x9e, 0xbc, 0x9e, 0x9d, 0x96, 0xfd, 0x85, 0x1c, 0x75, 0x99, 0x64, 0x17, 0x54, 0x95, 0x4b, 0x54, 0x3b, 0x14, 0x3b, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xef, 0x21, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x71, 0x2a, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x32, 0x51, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xce, 0x19, 0xee, 0x19, 0x0f, 0x22, 0x50, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0x75, 0x43, 0x96, 0x43, + 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf4, 0x3a, 0x14, 0x3b, 0x75, 0x43, 0xb6, 0x4b, 0x58, 0x64, 0xba, 0x6c, 0xfc, 0x74, 0x3d, 0x75, 0x3c, 0x7d, 0x3d, 0x7d, 0x1c, 0x75, 0xfb, 0x74, 0x99, 0x6c, 0x58, 0x64, 0x17, 0x5c, 0xd6, 0x53, 0x95, 0x4b, 0x34, 0x43, 0x14, 0x3b, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xd2, 0x32, 0x0f, 0x22, 0xef, 0x19, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0xf8, 0x4b, 0x38, 0x54, 0x19, 0x54, 0x39, 0x54, 0xf8, 0x4b, 0x76, 0x43, 0xb6, 0x43, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xf7, 0x53, 0xd7, 0x4b, 0xf3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x33, 0x43, 0xb6, 0x4b, 0x38, 0x5c, 0x59, 0x5c, 0x79, 0x5c, 0x38, 0x5c, 0xf7, 0x53, 0x17, 0x54, 0x58, 0x5c, 0x9b, 0x64, 0x1d, 0x75, 0xfd, 0x85, 0x9c, 0x96, 0xdc, 0x9e, 0xbc, 0x9e, 0xbc, 0x9e, 0x3d, 0x8e, 0x7d, 0x7d, 0xbb, 0x6c, 0x38, 0x5c, 0xd6, 0x4b, 0x55, 0x43, 0x34, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xce, 0x19, 0xad, 0x19, 0xae, 0x19, 0xee, 0x19, 0xee, 0x19, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x22, 0x51, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xd2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x19, 0x0f, 0x1a, 0xef, 0x19, 0x0f, 0x1a, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0x96, 0x43, + 0x96, 0x43, 0xb7, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0x35, 0x3b, 0xf3, 0x3a, 0xd3, 0x3a, 0xf3, 0x3a, 0x14, 0x3b, 0x95, 0x4b, 0xf7, 0x53, 0x37, 0x5c, 0x58, 0x64, 0x79, 0x64, 0x99, 0x6c, 0xba, 0x6c, 0xba, 0x6c, 0x99, 0x64, 0x58, 0x64, 0x17, 0x5c, 0xd6, 0x53, 0xb5, 0x4b, 0x55, 0x43, 0x14, 0x3b, 0xf4, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x3a, 0x14, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xd2, 0x32, 0x30, 0x22, 0xef, 0x19, 0xef, 0x19, 0x0f, 0x1a, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0xf8, 0x53, 0x38, 0x54, 0x18, 0x4c, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x43, 0xb7, 0x4b, 0xd7, 0x4b, 0xf8, 0x53, 0xd7, 0x4b, 0xf3, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x33, 0x43, 0x75, 0x4b, 0x38, 0x5c, 0x79, 0x5c, 0x7a, 0x5c, 0x79, 0x5c, 0x38, 0x54, 0x17, 0x54, 0x38, 0x54, 0x79, 0x5c, 0xfc, 0x6c, 0x9d, 0x7d, 0x7d, 0x8e, 0xbc, 0x9e, 0xbc, 0x9e, 0xdc, 0x9e, 0x5d, 0x8e, 0x9d, 0x7d, 0xfb, 0x6c, 0x58, 0x64, 0xf6, 0x53, 0x95, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x0f, 0x22, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x0f, 0x22, 0x50, 0x2a, 0x71, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xb2, 0x32, 0x91, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0x14, 0x3b, + 0xf3, 0x32, 0x96, 0x43, 0xd7, 0x4b, 0xb7, 0x4b, 0xb6, 0x43, 0xb7, 0x4b, 0xb6, 0x43, 0xb7, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x4b, 0xb7, 0x4b, 0x96, 0x4b, 0x55, 0x43, 0x34, 0x3b, 0xf3, 0x3a, 0x55, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xd6, 0x53, 0xf7, 0x53, 0xf7, 0x5b, 0x17, 0x5c, 0x17, 0x5c, 0x17, 0x5c, 0xf7, 0x53, 0xd6, 0x53, 0x95, 0x4b, 0x55, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x3a, 0x30, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x22, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0x18, 0x54, 0x18, 0x54, 0xb6, 0x43, 0x75, 0x43, 0x76, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xb6, 0x43, 0xb7, 0x4b, 0xd7, 0x4b, 0xf8, 0x53, 0xd7, 0x4b, 0x14, 0x3b, 0xb2, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x74, 0x43, 0x18, 0x54, 0x9a, 0x5c, 0x9a, 0x5c, 0x9a, 0x5c, 0x59, 0x5c, 0x17, 0x54, 0x38, 0x54, 0x59, 0x5c, 0xbb, 0x64, 0x3d, 0x6d, 0xdd, 0x85, 0x9d, 0x8e, 0xdc, 0x96, 0xbc, 0x96, 0x5d, 0x8e, 0xbd, 0x85, 0x1c, 0x75, 0x99, 0x64, 0x17, 0x54, 0x96, 0x4b, 0x55, 0x43, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x2a, 0xef, 0x19, 0xce, 0x19, 0xee, 0x19, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x50, 0x2a, 0x30, 0x22, 0xef, 0x21, 0x30, 0x22, 0xb2, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x50, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf4, 0x3a, 0xf4, 0x3a, 0xf3, 0x32, + 0x14, 0x3b, 0x14, 0x3b, 0x96, 0x43, 0xf7, 0x4b, 0xb7, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0x55, 0x43, 0x34, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x95, 0x4b, 0x96, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x75, 0x43, 0x55, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0xf4, 0x3a, 0xf4, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0xd3, 0x32, 0x10, 0x22, 0x0f, 0x22, 0xef, 0x21, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x3a, 0x14, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb7, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb7, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xf7, 0x53, 0xb6, 0x4b, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x94, 0x4b, 0x74, 0x4b, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x13, 0x3b, 0xd7, 0x4b, 0xbb, 0x64, 0x9b, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x58, 0x5c, 0x17, 0x54, 0x38, 0x54, 0x7a, 0x5c, 0xdc, 0x6c, 0x5d, 0x75, 0xdd, 0x85, 0x5d, 0x8e, 0x7d, 0x8e, 0x1d, 0x86, 0x9d, 0x7d, 0x1c, 0x75, 0x9a, 0x64, 0x17, 0x5c, 0xb6, 0x4b, 0x75, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0x30, 0x22, 0xce, 0x19, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x50, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x50, 0x2a, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x3a, 0xb2, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x50, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x3a, 0xf4, 0x3a, + 0xf4, 0x32, 0xf4, 0x3a, 0xf4, 0x32, 0xb6, 0x4b, 0x18, 0x54, 0xf8, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x53, 0xd7, 0x4b, 0xf7, 0x53, 0x76, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x54, 0x43, 0x34, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x3a, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xb2, 0x32, 0xef, 0x21, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x2f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x4b, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf8, 0x53, 0x96, 0x43, 0xd3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x14, 0x33, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x94, 0x43, 0x94, 0x4b, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x5a, 0x5c, 0xdc, 0x64, 0x9b, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x59, 0x54, 0x39, 0x54, 0x5a, 0x5c, 0x9b, 0x64, 0xfc, 0x6c, 0x5d, 0x75, 0x9d, 0x7d, 0xdd, 0x85, 0xbd, 0x85, 0x7d, 0x7d, 0xfc, 0x74, 0x9a, 0x64, 0x17, 0x5c, 0xd6, 0x4b, 0x75, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x71, 0x32, 0x72, 0x32, 0x92, 0x32, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x3a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x3a, + 0xf3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0xf4, 0x32, 0x55, 0x3b, 0xf8, 0x4b, 0x59, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x4c, 0x18, 0x54, 0x18, 0x4c, 0xf8, 0x4b, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0xf7, 0x53, 0xf7, 0x4b, 0xd7, 0x53, 0x75, 0x43, 0x35, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x35, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0xf3, 0x3a, 0x71, 0x2a, 0xce, 0x19, 0xef, 0x19, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0x75, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x55, 0x43, 0xd3, 0x32, 0x13, 0x33, 0x14, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x94, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0xf3, 0x3a, 0x17, 0x54, 0xfc, 0x6c, 0xdd, 0x64, 0xbc, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x59, 0x54, 0x38, 0x54, 0x59, 0x5c, 0x9a, 0x64, 0xdc, 0x6c, 0x1d, 0x75, 0x5d, 0x75, 0x5d, 0x75, 0x3d, 0x75, 0xdc, 0x6c, 0x79, 0x64, 0x17, 0x54, 0xb6, 0x4b, 0x75, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x32, 0x72, 0x32, 0x71, 0x32, 0xb3, 0x32, 0x51, 0x2a, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x71, 0x2a, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, + 0xf3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x3a, 0x14, 0x3b, 0x34, 0x3b, 0xd7, 0x4b, 0x7a, 0x5c, 0x5a, 0x54, 0x19, 0x54, 0x19, 0x54, 0x18, 0x54, 0x18, 0x54, 0x39, 0x54, 0x19, 0x54, 0x19, 0x54, 0x18, 0x54, 0x18, 0x54, 0xf8, 0x53, 0x18, 0x54, 0xd7, 0x4b, 0x55, 0x43, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x55, 0x43, 0x92, 0x32, 0x0f, 0x22, 0xef, 0x19, 0x0f, 0x1a, 0xef, 0x19, 0x0f, 0x22, 0x0f, 0x1a, 0xef, 0x19, 0xef, 0x21, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xb6, 0x4b, 0x34, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x76, 0x43, 0x96, 0x43, 0x76, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x53, 0xf7, 0x4b, 0x55, 0x3b, 0xd3, 0x32, 0x14, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x94, 0x43, 0x94, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x9a, 0x5c, 0x1e, 0x6d, 0xbd, 0x5c, 0xbc, 0x5c, 0xbd, 0x5c, 0x7b, 0x5c, 0x38, 0x54, 0x38, 0x54, 0x59, 0x5c, 0x7a, 0x64, 0xbb, 0x64, 0xdc, 0x6c, 0xfc, 0x6c, 0xdc, 0x6c, 0x9a, 0x64, 0x38, 0x5c, 0xf7, 0x53, 0xb6, 0x4b, 0x75, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x72, 0x32, 0x72, 0x32, 0x92, 0x32, 0xd3, 0x32, 0x71, 0x2a, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x71, 0x2a, 0xb2, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x14, 0x3b, 0xf4, 0x3a, 0xf3, 0x32, + 0xf4, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x18, 0x54, 0x7a, 0x5c, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x19, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x18, 0x54, 0x18, 0x54, 0xb6, 0x4b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x96, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0x0f, 0x22, 0xef, 0x19, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x95, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0x75, 0x43, 0x34, 0x43, 0x34, 0x43, 0x55, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb7, 0x4b, 0xd7, 0x4b, 0xf8, 0x53, 0xd7, 0x4b, 0x34, 0x3b, 0xf3, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x94, 0x43, 0x94, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x3a, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x18, 0x4c, 0xdc, 0x64, 0xdd, 0x5c, 0xbd, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0x7a, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x5c, 0x59, 0x5c, 0x7a, 0x64, 0x9a, 0x64, 0x99, 0x5c, 0x58, 0x5c, 0x17, 0x54, 0xd6, 0x53, 0x96, 0x4b, 0x75, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0xf4, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd2, 0x32, 0x10, 0x22, 0x0f, 0x22, 0x50, 0x2a, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x51, 0x2a, 0xb2, 0x32, 0x92, 0x32, 0x72, 0x32, 0x71, 0x32, 0x71, 0x32, 0x91, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x54, 0x43, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0x14, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, + 0xf3, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf4, 0x3a, 0xf3, 0x3a, 0x14, 0x3b, 0x34, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x18, 0x54, 0x5b, 0x5c, 0x5a, 0x5c, 0x3a, 0x54, 0x3a, 0x54, 0x39, 0x54, 0x3a, 0x54, 0x5a, 0x54, 0x5a, 0x5c, 0x5a, 0x54, 0x39, 0x54, 0x38, 0x54, 0xf8, 0x53, 0xb6, 0x4b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x76, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd6, 0x53, 0xb6, 0x53, 0xb6, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0xb6, 0x4b, 0x95, 0x43, 0x14, 0x3b, 0x50, 0x2a, 0xce, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x21, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x14, 0x3b, 0x34, 0x43, 0x54, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x53, 0x96, 0x43, 0x14, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x43, 0x33, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x5a, 0x54, 0xdd, 0x64, 0xbd, 0x5c, 0xbc, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9a, 0x5c, 0x38, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x17, 0x54, 0xf7, 0x53, 0xd7, 0x53, 0xb6, 0x4b, 0x96, 0x43, 0x75, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x32, 0x72, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x71, 0x32, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x21, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x21, 0xef, 0x21, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x13, 0x3b, 0xb6, 0x4b, 0x34, 0x3b, 0xd3, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x3a, 0xf4, 0x32, 0xf3, 0x32, + 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0xb6, 0x4b, 0xf8, 0x4b, 0x19, 0x54, 0x7b, 0x5c, 0x5b, 0x5c, 0x5b, 0x54, 0x7b, 0x54, 0x7b, 0x5c, 0x7b, 0x5c, 0x5a, 0x5c, 0x39, 0x54, 0x38, 0x54, 0x18, 0x54, 0xd7, 0x4b, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x53, 0xd6, 0x53, 0xd6, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0x55, 0x43, 0xb2, 0x32, 0x91, 0x2a, 0x0f, 0x22, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xce, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xef, 0x19, 0xef, 0x19, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x75, 0x43, 0x96, 0x43, 0x55, 0x43, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x76, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xf8, 0x53, 0xf7, 0x4b, 0x55, 0x3b, 0x14, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x33, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0xf7, 0x4b, 0xbc, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0xbb, 0x5c, 0x9b, 0x64, 0x38, 0x54, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0x96, 0x4b, 0x75, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x3a, 0xf4, 0x3a, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x0f, 0x22, 0xef, 0x19, 0xef, 0x19, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x21, 0x0f, 0x22, 0xef, 0x21, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x34, 0x3b, 0x95, 0x43, 0x55, 0x43, 0xb2, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, + 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0xd7, 0x4b, 0x39, 0x54, 0x9c, 0x5c, 0xbd, 0x64, 0x9c, 0x64, 0x9c, 0x5c, 0x7b, 0x5c, 0x5a, 0x5c, 0x39, 0x5c, 0x39, 0x54, 0x18, 0x54, 0xd7, 0x4b, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x53, 0xf7, 0x53, 0x18, 0x54, 0x18, 0x54, 0x75, 0x43, 0xb2, 0x32, 0x50, 0x2a, 0x2f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xef, 0x19, 0xef, 0x19, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x35, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x76, 0x43, 0x76, 0x43, 0x76, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0x18, 0x54, 0xb6, 0x4b, 0xf3, 0x32, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x19, 0x54, 0xdd, 0x64, 0xbd, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0xbb, 0x5c, 0x7a, 0x5c, 0x38, 0x54, 0xd7, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0x71, 0x2a, 0x30, 0x2a, 0x0f, 0x22, 0xef, 0x21, 0xef, 0x19, 0xef, 0x19, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0xd2, 0x32, 0xf3, 0x3a, 0xd3, 0x3a, 0xb2, 0x32, 0x91, 0x32, 0x71, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, + 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x35, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0xb6, 0x4b, 0x38, 0x54, 0x7a, 0x5c, 0x7b, 0x5c, 0x7b, 0x5c, 0x7b, 0x5c, 0x7b, 0x5c, 0x7a, 0x5c, 0x39, 0x5c, 0xf7, 0x53, 0xf7, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0x95, 0x4b, 0x34, 0x3b, 0x71, 0x2a, 0xad, 0x19, 0xce, 0x19, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0xef, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xef, 0x19, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0xf3, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0x18, 0x54, 0x38, 0x54, 0xb6, 0x4b, 0x13, 0x33, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x7a, 0x5c, 0xde, 0x64, 0x9d, 0x5c, 0x7c, 0x5c, 0x7c, 0x5c, 0x7a, 0x5c, 0x59, 0x5c, 0x59, 0x54, 0x38, 0x54, 0xd7, 0x4b, 0x96, 0x43, 0x76, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0xf4, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0x71, 0x2a, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x21, 0xef, 0x21, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xf3, 0x3a, 0xd2, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x72, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, + 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x14, 0x33, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x4b, 0x95, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x30, 0x22, 0xae, 0x19, 0xef, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xef, 0x19, 0xef, 0x19, 0x0f, 0x22, 0xef, 0x19, 0xef, 0x21, 0x0f, 0x1a, 0xef, 0x19, 0xef, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xef, 0x19, 0xef, 0x21, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x3a, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf4, 0x3a, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x76, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0x18, 0x54, 0x39, 0x54, 0x18, 0x54, 0x54, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x74, 0x3b, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x96, 0x43, 0x7b, 0x5c, 0xdd, 0x64, 0x9c, 0x5c, 0x7b, 0x54, 0x5a, 0x54, 0x39, 0x54, 0x39, 0x54, 0x18, 0x4c, 0xd8, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0xf4, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0x71, 0x2a, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xf3, 0x3a, 0xd2, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, + 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x4b, 0x96, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x4b, 0xb2, 0x32, 0xce, 0x19, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0x8d, 0x19, 0xae, 0x19, 0xcd, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x21, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb7, 0x4b, 0xf7, 0x4b, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x79, 0x5c, 0xf7, 0x4b, 0x33, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x43, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0xf8, 0x4b, 0x9c, 0x5c, 0x9c, 0x5c, 0x7a, 0x54, 0x5a, 0x54, 0x39, 0x54, 0x18, 0x4c, 0xf8, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x76, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x71, 0x2a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x21, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x71, 0x2a, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0x14, 0x3b, 0xb2, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, + 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x76, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x96, 0x4b, 0x91, 0x2a, 0xce, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xad, 0x19, 0xad, 0x19, 0xae, 0x19, 0xad, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xef, 0x19, 0xef, 0x19, 0x0f, 0x1a, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x7a, 0x5c, 0x59, 0x5c, 0x95, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x33, 0x3b, 0xd2, 0x32, 0xf3, 0x3a, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x14, 0x33, 0x19, 0x54, 0xbc, 0x64, 0x7b, 0x54, 0x5a, 0x54, 0x39, 0x54, 0x18, 0x54, 0xf8, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x4b, 0x96, 0x43, 0x95, 0x43, 0x95, 0x4b, 0x75, 0x43, 0x75, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0xef, 0x21, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x14, 0x3b, 0x13, 0x3b, 0x92, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, + 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xf4, 0x3a, 0xf4, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x75, 0x43, 0xd7, 0x4b, 0x75, 0x43, 0x30, 0x22, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xee, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x54, 0x38, 0x54, 0x59, 0x5c, 0x9b, 0x5c, 0x7b, 0x5c, 0xb6, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x43, 0x74, 0x43, 0x94, 0x43, 0x13, 0x3b, 0x71, 0x2a, 0xb1, 0x32, 0xf3, 0x3a, 0x14, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0x14, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0xf3, 0x32, 0xf8, 0x4b, 0xbc, 0x5c, 0x5a, 0x54, 0x39, 0x54, 0x18, 0x54, 0xf8, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0x96, 0x43, 0x76, 0x43, 0x76, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x95, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0x95, 0x4b, 0x75, 0x43, 0x55, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x30, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xf3, 0x3a, 0x34, 0x3b, 0xb2, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x30, 0x2a, 0x10, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, + 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x75, 0x43, 0x55, 0x43, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb7, 0x4b, 0x55, 0x43, 0x0f, 0x22, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xcd, 0x19, 0xce, 0x19, 0xce, 0x19, 0xad, 0x19, 0xad, 0x19, 0xcd, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x53, 0x39, 0x54, 0x7a, 0x5c, 0x7a, 0x5c, 0xbb, 0x64, 0x59, 0x54, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x33, 0x3b, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0xb1, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0x34, 0x3b, 0x74, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x34, 0x3b, 0xf4, 0x3a, 0xf3, 0x32, 0xf4, 0x32, 0xd8, 0x4b, 0x7b, 0x5c, 0x5a, 0x54, 0x39, 0x54, 0x18, 0x54, 0xf7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x95, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xf7, 0x53, 0xd7, 0x53, 0xd6, 0x4b, 0x96, 0x4b, 0x75, 0x43, 0x55, 0x43, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x71, 0x2a, 0xd3, 0x32, 0xd3, 0x3a, 0xb2, 0x32, 0xf3, 0x3a, 0x55, 0x43, 0xb3, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, + 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0xf4, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x75, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb7, 0x4b, 0x96, 0x4b, 0x54, 0x43, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xcd, 0x19, 0xad, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xef, 0x19, 0xef, 0x19, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x76, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x54, 0x38, 0x54, 0x7a, 0x5c, 0x7a, 0x54, 0x79, 0x5c, 0x9b, 0x5c, 0x7a, 0x5c, 0x95, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x43, 0x54, 0x43, 0x74, 0x43, 0x54, 0x3b, 0x74, 0x3b, 0x74, 0x43, 0x13, 0x3b, 0x91, 0x2a, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0xb2, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xf4, 0x3a, 0xf4, 0x32, 0xf4, 0x32, 0xf8, 0x4b, 0x7a, 0x5c, 0x39, 0x54, 0x18, 0x54, 0xf7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x53, 0xf7, 0x53, 0x17, 0x54, 0xf7, 0x53, 0xf7, 0x53, 0xd6, 0x4b, 0x95, 0x4b, 0x75, 0x43, 0x34, 0x3b, 0xf4, 0x3a, 0xf3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb3, 0x32, 0x71, 0x2a, 0x10, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x14, 0x3b, 0x75, 0x43, 0xd3, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x71, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x22, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, + 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf4, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf4, 0x3a, 0xf4, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x75, 0x43, 0x55, 0x43, 0x35, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb7, 0x4b, 0xb7, 0x4b, 0x96, 0x4b, 0xf3, 0x3a, 0xef, 0x19, 0x0f, 0x22, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xcd, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xce, 0x19, 0xee, 0x19, 0xef, 0x19, 0xef, 0x19, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x54, 0x17, 0x54, 0x59, 0x54, 0x9a, 0x5c, 0x7a, 0x5c, 0x79, 0x5c, 0x9a, 0x5c, 0xbb, 0x64, 0x18, 0x54, 0x33, 0x3b, 0x74, 0x3b, 0x54, 0x3b, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x43, 0x74, 0x43, 0x54, 0x3b, 0xd2, 0x32, 0x91, 0x2a, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x50, 0x2a, 0x50, 0x2a, 0xb2, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x75, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x3a, 0xd3, 0x32, 0xb7, 0x4b, 0x7a, 0x5c, 0x38, 0x54, 0xf8, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x95, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xf7, 0x53, 0x17, 0x5c, 0x37, 0x5c, 0x37, 0x5c, 0x17, 0x54, 0xf7, 0x53, 0xb6, 0x4b, 0x75, 0x43, 0x55, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x22, 0x50, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x91, 0x32, 0x71, 0x32, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x14, 0x3b, 0xd7, 0x53, 0xf3, 0x3a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, + 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf4, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf4, 0x3a, 0xf4, 0x3a, 0xf4, 0x3a, 0x34, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0x55, 0x43, 0x35, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0x96, 0x4b, 0x92, 0x32, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xcf, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xef, 0x19, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0x17, 0x54, 0x17, 0x54, 0x17, 0x54, 0x17, 0x54, 0x17, 0x54, 0x17, 0x4c, 0x17, 0x54, 0x17, 0x54, 0x38, 0x54, 0x9a, 0x5c, 0x9a, 0x5c, 0x9a, 0x5c, 0x7a, 0x5c, 0x9a, 0x5c, 0xbc, 0x64, 0x7a, 0x5c, 0x94, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x13, 0x3b, 0x91, 0x32, 0x71, 0x32, 0x91, 0x32, 0x91, 0x32, 0x70, 0x2a, 0x30, 0x22, 0x30, 0x2a, 0x50, 0x2a, 0x71, 0x2a, 0xd3, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0xf4, 0x3a, 0xf4, 0x32, 0x14, 0x3b, 0xb3, 0x32, 0x96, 0x43, 0x38, 0x54, 0x18, 0x54, 0xf7, 0x4b, 0xd7, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x95, 0x43, 0xb6, 0x4b, 0xf7, 0x53, 0x17, 0x54, 0x38, 0x5c, 0x38, 0x5c, 0x37, 0x5c, 0x17, 0x5c, 0x17, 0x54, 0xd6, 0x4b, 0x96, 0x4b, 0x75, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x91, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x34, 0x3b, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x71, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x31, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, + 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x43, 0x54, 0x43, 0x54, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf4, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0x75, 0x43, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xce, 0x19, 0xee, 0x19, 0xee, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xee, 0x19, 0xef, 0x19, 0xef, 0x19, 0x0f, 0x1a, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0x17, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x37, 0x54, 0x17, 0x54, 0x17, 0x54, 0x37, 0x54, 0x59, 0x5c, 0x9b, 0x5c, 0x9a, 0x5c, 0x9a, 0x5c, 0x9a, 0x5c, 0x9a, 0x5c, 0xbb, 0x5c, 0xba, 0x5c, 0xf6, 0x4b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x43, 0xf2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x71, 0x2a, 0xb2, 0x32, 0x14, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0x34, 0x3b, 0xf7, 0x4b, 0x18, 0x54, 0xd7, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0xd6, 0x4b, 0xf7, 0x53, 0x18, 0x54, 0x38, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x37, 0x5c, 0x17, 0x5c, 0xf7, 0x53, 0xb6, 0x4b, 0x75, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0xf4, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x30, 0x22, 0x31, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, + 0xd3, 0x32, 0xf3, 0x3a, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x14, 0x3b, 0x14, 0x3b, 0x55, 0x43, 0x75, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0xb6, 0x4b, 0x96, 0x4b, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0x14, 0x3b, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0xef, 0x21, 0x0f, 0x1a, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0x14, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0x38, 0x54, 0x78, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0xb9, 0x64, 0x99, 0x5c, 0x78, 0x5c, 0x58, 0x5c, 0x38, 0x5c, 0x38, 0x54, 0x58, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9a, 0x5c, 0xba, 0x64, 0xba, 0x5c, 0xbb, 0x64, 0xdb, 0x64, 0x18, 0x54, 0x73, 0x43, 0x94, 0x43, 0x94, 0x43, 0x94, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0xf3, 0x3a, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x71, 0x2a, 0x91, 0x32, 0xd3, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb6, 0x4b, 0x18, 0x54, 0xd7, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x53, 0x18, 0x5c, 0x58, 0x5c, 0x78, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x37, 0x5c, 0x17, 0x54, 0xd6, 0x4b, 0x95, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x31, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x30, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, + 0xf3, 0x3a, 0x14, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x95, 0x4b, 0x14, 0x3b, 0x55, 0x43, 0x95, 0x4b, 0xb6, 0x4b, 0xd6, 0x53, 0xf6, 0x53, 0xf7, 0x53, 0x17, 0x54, 0xf7, 0x53, 0xd6, 0x53, 0xb6, 0x4b, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x95, 0x43, 0xb6, 0x4b, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xd7, 0x53, 0x71, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x21, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0xee, 0x19, 0xce, 0x19, 0xee, 0x19, 0xce, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0xb6, 0x4b, 0xf7, 0x4b, 0x38, 0x54, 0x79, 0x5c, 0x9a, 0x64, 0xdb, 0x64, 0xfb, 0x64, 0xfb, 0x6c, 0xda, 0x64, 0x99, 0x64, 0x79, 0x64, 0x78, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x9a, 0x5c, 0xbc, 0x64, 0xbb, 0x64, 0x9a, 0x64, 0xbb, 0x64, 0xbb, 0x64, 0xdb, 0x64, 0x79, 0x5c, 0xd5, 0x4b, 0x94, 0x4b, 0x94, 0x4b, 0x94, 0x4b, 0x74, 0x43, 0x74, 0x43, 0x54, 0x3b, 0xf3, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x71, 0x2a, 0xf3, 0x32, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x14, 0x3b, 0xb6, 0x4b, 0xd6, 0x4b, 0x96, 0x4b, 0x96, 0x43, 0x95, 0x43, 0x76, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x53, 0x38, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x38, 0x5c, 0x17, 0x54, 0xd7, 0x4b, 0x96, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xf4, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0x72, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x22, 0x31, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xf3, 0x32, + 0x14, 0x3b, 0x34, 0x3b, 0x75, 0x43, 0xb6, 0x4b, 0x75, 0x43, 0x34, 0x43, 0x95, 0x4b, 0xb6, 0x53, 0xf7, 0x5b, 0x37, 0x5c, 0x58, 0x64, 0x78, 0x64, 0x78, 0x64, 0x79, 0x64, 0x58, 0x5c, 0x17, 0x54, 0xd6, 0x4b, 0x96, 0x4b, 0x75, 0x43, 0x55, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x95, 0x43, 0xb6, 0x4b, 0x96, 0x4b, 0xb6, 0x4b, 0xf7, 0x53, 0x96, 0x4b, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xd7, 0x4b, 0x18, 0x54, 0x79, 0x5c, 0xba, 0x64, 0xfc, 0x6c, 0x3d, 0x6d, 0x5d, 0x75, 0x3d, 0x75, 0x1b, 0x6d, 0xda, 0x6c, 0xba, 0x64, 0x79, 0x64, 0x78, 0x5c, 0x78, 0x5c, 0x79, 0x5c, 0xbb, 0x64, 0xbc, 0x64, 0xbb, 0x64, 0xbb, 0x64, 0xdb, 0x64, 0xdb, 0x64, 0xba, 0x64, 0x17, 0x5c, 0xb4, 0x4b, 0xb4, 0x4b, 0xb4, 0x4b, 0x94, 0x4b, 0x94, 0x43, 0x54, 0x43, 0xf3, 0x32, 0xb2, 0x32, 0xb1, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x50, 0x2a, 0xb2, 0x32, 0xf4, 0x3a, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x14, 0x3b, 0x96, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0x96, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xf7, 0x53, 0x18, 0x54, 0x38, 0x5c, 0x59, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x58, 0x5c, 0x38, 0x5c, 0x18, 0x54, 0xf7, 0x53, 0xb6, 0x4b, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x92, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x32, 0x71, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0x91, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x22, 0x31, 0x22, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, + 0x14, 0x3b, 0x55, 0x43, 0x95, 0x4b, 0xd6, 0x53, 0x54, 0x43, 0x75, 0x43, 0xb6, 0x53, 0xf7, 0x53, 0x58, 0x5c, 0x99, 0x6c, 0xdb, 0x6c, 0xfc, 0x74, 0xfc, 0x74, 0xfb, 0x74, 0xfb, 0x6c, 0x99, 0x64, 0x38, 0x5c, 0xd6, 0x53, 0xb6, 0x4b, 0x75, 0x43, 0x55, 0x43, 0x75, 0x43, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x4b, 0x96, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xd3, 0x32, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0xb3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xf7, 0x4b, 0x58, 0x54, 0x9a, 0x5c, 0xfc, 0x6c, 0x5d, 0x75, 0x9d, 0x7d, 0xbd, 0x7d, 0xbd, 0x7d, 0x5d, 0x75, 0x1c, 0x75, 0xdb, 0x6c, 0xba, 0x6c, 0x99, 0x64, 0x79, 0x64, 0x79, 0x64, 0x9a, 0x64, 0xdc, 0x64, 0xdb, 0x64, 0xdb, 0x64, 0xdb, 0x64, 0xfc, 0x64, 0xbb, 0x64, 0x37, 0x5c, 0xb4, 0x53, 0xb5, 0x53, 0xd5, 0x4b, 0xb5, 0x4b, 0x94, 0x4b, 0x54, 0x43, 0x13, 0x3b, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x71, 0x2a, 0xb2, 0x32, 0x13, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x2a, 0xb2, 0x32, 0x14, 0x3b, 0x96, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x53, 0x18, 0x54, 0x38, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x59, 0x5c, 0x38, 0x5c, 0x18, 0x54, 0xf7, 0x53, 0xb6, 0x4b, 0x76, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xb2, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0x91, 0x32, 0x71, 0x32, 0x51, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x31, 0x2a, 0x51, 0x22, 0x31, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x3a, + 0x34, 0x3b, 0x75, 0x43, 0xb6, 0x4b, 0xf7, 0x53, 0x54, 0x43, 0x75, 0x4b, 0xd6, 0x53, 0x37, 0x5c, 0x99, 0x6c, 0xfc, 0x74, 0x5d, 0x7d, 0x7d, 0x7d, 0x7d, 0x85, 0x7d, 0x85, 0x5d, 0x7d, 0x1c, 0x75, 0xba, 0x64, 0x38, 0x5c, 0xf7, 0x53, 0x96, 0x4b, 0x75, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0x76, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0x75, 0x43, 0x71, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xd7, 0x4b, 0x38, 0x54, 0x79, 0x5c, 0xdb, 0x64, 0x3d, 0x6d, 0x9d, 0x7d, 0xfd, 0x85, 0x5d, 0x8e, 0x1d, 0x8e, 0xbd, 0x85, 0x5d, 0x7d, 0x1c, 0x75, 0xfb, 0x6c, 0xdb, 0x6c, 0x9a, 0x64, 0x79, 0x64, 0x99, 0x64, 0xbb, 0x6c, 0xdc, 0x6c, 0xdc, 0x6c, 0xdc, 0x6c, 0xfc, 0x6c, 0xdc, 0x64, 0x58, 0x5c, 0xd5, 0x53, 0xd5, 0x53, 0xd5, 0x53, 0xb5, 0x4b, 0xb5, 0x4b, 0x54, 0x43, 0x14, 0x3b, 0xf3, 0x3a, 0xd2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x0f, 0x22, 0xef, 0x21, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x2a, 0x91, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xb2, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x14, 0x3b, 0xb6, 0x4b, 0x17, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x5c, 0x59, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x59, 0x5c, 0x38, 0x5c, 0x18, 0x54, 0xf7, 0x53, 0xd7, 0x4b, 0x96, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xb2, 0x32, 0x91, 0x32, 0x71, 0x32, 0x51, 0x32, 0x30, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0x72, 0x32, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x3b, + 0x34, 0x3b, 0x75, 0x43, 0xd6, 0x4b, 0x38, 0x5c, 0x34, 0x3b, 0x95, 0x4b, 0xf6, 0x53, 0x78, 0x64, 0xdb, 0x6c, 0x3d, 0x7d, 0x9d, 0x85, 0xdd, 0x8d, 0x3d, 0x96, 0x3d, 0x96, 0xdd, 0x8d, 0x7d, 0x85, 0x3d, 0x75, 0xdb, 0x6c, 0x58, 0x5c, 0xf7, 0x53, 0x96, 0x4b, 0x75, 0x43, 0x55, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x76, 0x43, 0x96, 0x4b, 0x96, 0x4b, 0xb2, 0x32, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0xef, 0x19, 0x0f, 0x22, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x0f, 0x22, 0xef, 0x19, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0xb2, 0x2a, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0xb6, 0x4b, 0xf7, 0x4b, 0x38, 0x54, 0x9a, 0x64, 0x1c, 0x6d, 0x7d, 0x75, 0x1d, 0x86, 0x9d, 0x8e, 0xfd, 0x96, 0xbd, 0x96, 0x3d, 0x8e, 0xdd, 0x8d, 0x5d, 0x7d, 0x1c, 0x75, 0xdb, 0x6c, 0xbb, 0x6c, 0x9a, 0x64, 0x79, 0x64, 0x9a, 0x64, 0xfd, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0x1d, 0x6d, 0x1d, 0x6d, 0x99, 0x64, 0xf5, 0x5b, 0xd5, 0x5b, 0xd5, 0x53, 0xd5, 0x53, 0xb5, 0x4b, 0x54, 0x43, 0x34, 0x3b, 0x13, 0x3b, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x50, 0x2a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0xd2, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0xd3, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0x34, 0x3b, 0xb6, 0x4b, 0x18, 0x54, 0x38, 0x5c, 0x59, 0x5c, 0x79, 0x5c, 0x59, 0x5c, 0x59, 0x5c, 0x59, 0x5c, 0x38, 0x54, 0x18, 0x54, 0xf7, 0x53, 0xd6, 0x4b, 0xb6, 0x4b, 0x95, 0x4b, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x54, 0x43, 0x34, 0x43, 0x34, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0xb2, 0x32, 0x50, 0x2a, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0xb2, 0x32, 0xb3, 0x32, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0x14, 0x3b, + 0x34, 0x3b, 0x75, 0x43, 0xd6, 0x4b, 0xb6, 0x4b, 0x34, 0x43, 0x95, 0x4b, 0xf7, 0x53, 0x78, 0x64, 0xfb, 0x74, 0x5d, 0x7d, 0xdd, 0x8d, 0x5d, 0x96, 0xbd, 0x9e, 0xdd, 0x9e, 0x9d, 0x9e, 0x3d, 0x8e, 0x9d, 0x85, 0x5d, 0x7d, 0xbb, 0x6c, 0x38, 0x5c, 0xb6, 0x4b, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x76, 0x43, 0xb6, 0x4b, 0x55, 0x43, 0x50, 0x2a, 0x50, 0x2a, 0x31, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x22, 0x92, 0x2a, 0xb3, 0x2a, 0xf3, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x95, 0x43, 0xb6, 0x4b, 0xf7, 0x53, 0x59, 0x5c, 0xdb, 0x64, 0x3d, 0x75, 0xdd, 0x7d, 0x9d, 0x8e, 0xfd, 0x96, 0xdc, 0xa6, 0xfd, 0xa6, 0xdd, 0x9e, 0x5d, 0x96, 0xbd, 0x85, 0x3d, 0x7d, 0xfc, 0x74, 0xdb, 0x6c, 0xba, 0x64, 0x9a, 0x64, 0x9a, 0x64, 0xbb, 0x6c, 0xfd, 0x6c, 0xfd, 0x6c, 0x1d, 0x6d, 0x3e, 0x75, 0xbb, 0x64, 0xf6, 0x5b, 0xd5, 0x53, 0xf5, 0x53, 0xf5, 0x53, 0xb5, 0x4b, 0x54, 0x3b, 0x54, 0x3b, 0x14, 0x3b, 0xf2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x30, 0x22, 0xef, 0x21, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x2f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x50, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0x14, 0x3b, 0x54, 0x43, 0x95, 0x4b, 0xf6, 0x53, 0x38, 0x5c, 0x58, 0x5c, 0x79, 0x64, 0x79, 0x5c, 0x59, 0x5c, 0x38, 0x5c, 0x38, 0x54, 0x17, 0x54, 0xd6, 0x53, 0xb6, 0x53, 0x96, 0x4b, 0x95, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0x51, 0x2a, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x3a, + 0x34, 0x3b, 0x75, 0x43, 0xd6, 0x4b, 0x34, 0x3b, 0x34, 0x43, 0x95, 0x4b, 0xd6, 0x53, 0x78, 0x64, 0xfb, 0x74, 0x5d, 0x7d, 0xfd, 0x8d, 0x9d, 0x96, 0xdc, 0xa6, 0xfc, 0xa6, 0xfd, 0xa6, 0xbd, 0x9e, 0x1d, 0x8e, 0x9d, 0x85, 0x1d, 0x75, 0x79, 0x64, 0xf7, 0x53, 0x96, 0x4b, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x35, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x71, 0x2a, 0x50, 0x2a, 0x31, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x1a, 0xef, 0x19, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x21, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x22, 0x72, 0x22, 0x92, 0x2a, 0xd3, 0x2a, 0xf4, 0x32, 0x14, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x96, 0x43, 0xd6, 0x4b, 0x17, 0x54, 0x79, 0x5c, 0xfc, 0x6c, 0x7d, 0x75, 0x3d, 0x86, 0xdd, 0x96, 0xfd, 0xa6, 0xfd, 0xae, 0xfd, 0xb6, 0xfd, 0xae, 0xbd, 0x9e, 0x3d, 0x96, 0x7d, 0x85, 0x1c, 0x75, 0xda, 0x6c, 0xba, 0x6c, 0xba, 0x6c, 0xba, 0x64, 0xba, 0x64, 0xdc, 0x6c, 0x1d, 0x6d, 0x1d, 0x75, 0x5d, 0x75, 0xfb, 0x6c, 0x37, 0x5c, 0xf5, 0x53, 0xf5, 0x5b, 0x16, 0x5c, 0xb5, 0x4b, 0x54, 0x3b, 0x54, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x50, 0x2a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x75, 0x43, 0x96, 0x4b, 0xd6, 0x53, 0x17, 0x5c, 0x58, 0x5c, 0x58, 0x64, 0x58, 0x5c, 0x38, 0x5c, 0x17, 0x54, 0xf7, 0x53, 0xb6, 0x4b, 0x96, 0x4b, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x76, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0x71, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xd3, 0x3a, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x92, 0x32, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x3a, + 0x14, 0x3b, 0x55, 0x43, 0xb6, 0x4b, 0xf3, 0x32, 0x34, 0x3b, 0x75, 0x4b, 0xd6, 0x53, 0x58, 0x64, 0xda, 0x6c, 0x5d, 0x7d, 0xbd, 0x8d, 0x7d, 0x96, 0xfd, 0x9e, 0xfd, 0xa6, 0xfd, 0xa6, 0xfd, 0xa6, 0x9d, 0x96, 0x9d, 0x85, 0x1d, 0x75, 0x9a, 0x64, 0x17, 0x54, 0xb6, 0x4b, 0xb6, 0x4b, 0x75, 0x43, 0x76, 0x43, 0x75, 0x43, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x3b, 0x75, 0x43, 0x76, 0x43, 0x96, 0x43, 0x34, 0x43, 0xf0, 0x21, 0x31, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x21, 0x0f, 0x1a, 0x0f, 0x22, 0xef, 0x19, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x31, 0x22, 0x31, 0x22, 0x51, 0x22, 0x72, 0x22, 0x92, 0x2a, 0xd3, 0x2a, 0xf4, 0x32, 0x14, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x96, 0x4b, 0xd7, 0x4b, 0x38, 0x54, 0x9a, 0x64, 0xfc, 0x6c, 0x9d, 0x7d, 0x7d, 0x8e, 0xfd, 0x9e, 0xdd, 0xb6, 0xfd, 0xc6, 0xdd, 0xc6, 0xdd, 0xbe, 0xfd, 0xae, 0xbd, 0x9e, 0xfd, 0x8d, 0x5d, 0x7d, 0xdb, 0x74, 0xba, 0x6c, 0xba, 0x6c, 0xbb, 0x6c, 0xbb, 0x6c, 0xbb, 0x6c, 0xfc, 0x6c, 0x3d, 0x75, 0x5d, 0x75, 0x1c, 0x6d, 0x78, 0x64, 0x15, 0x5c, 0xf6, 0x53, 0x16, 0x5c, 0xd5, 0x4b, 0x54, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x50, 0x2a, 0xef, 0x21, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0x13, 0x3b, 0x34, 0x43, 0x75, 0x4b, 0xb6, 0x4b, 0xf6, 0x53, 0xf7, 0x53, 0x17, 0x5c, 0x17, 0x5c, 0xf7, 0x53, 0xd7, 0x53, 0xd6, 0x4b, 0xb6, 0x4b, 0x95, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb7, 0x4b, 0xb6, 0x4b, 0x71, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x3a, + 0x14, 0x3b, 0x55, 0x43, 0x95, 0x43, 0xd3, 0x32, 0x14, 0x3b, 0x55, 0x43, 0xb6, 0x4b, 0x17, 0x5c, 0x99, 0x64, 0x1c, 0x75, 0x7d, 0x85, 0x1d, 0x8e, 0xbd, 0x9e, 0xdd, 0xa6, 0xfd, 0xa6, 0xdc, 0xa6, 0x9d, 0x96, 0xdd, 0x85, 0x1d, 0x75, 0x99, 0x64, 0x38, 0x5c, 0xd7, 0x53, 0x96, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x55, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x4b, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0xef, 0x21, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x19, 0xef, 0x21, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x10, 0x1a, 0x31, 0x22, 0x51, 0x22, 0x72, 0x22, 0x92, 0x2a, 0xd3, 0x2a, 0x14, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x75, 0x43, 0xb6, 0x4b, 0xf7, 0x53, 0x38, 0x5c, 0x9a, 0x64, 0x1d, 0x75, 0xdd, 0x85, 0x9d, 0x8e, 0xfd, 0xa6, 0xfd, 0xbe, 0xdd, 0xce, 0xdd, 0xce, 0xfd, 0xce, 0xfd, 0xbe, 0xdd, 0xa6, 0x5d, 0x96, 0x7d, 0x85, 0xfc, 0x74, 0xba, 0x6c, 0x99, 0x64, 0xba, 0x64, 0xbb, 0x6c, 0xbb, 0x6c, 0xdb, 0x6c, 0x3d, 0x75, 0x5d, 0x75, 0x3c, 0x6d, 0x79, 0x64, 0xf6, 0x5b, 0xf6, 0x53, 0xf6, 0x53, 0x95, 0x43, 0x54, 0x3b, 0x55, 0x3b, 0x14, 0x3b, 0xd3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x30, 0x2a, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0x13, 0x3b, 0x34, 0x43, 0x75, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x96, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x43, 0x75, 0x43, 0x55, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0x96, 0x43, 0x96, 0x4b, 0xd7, 0x4b, 0x96, 0x43, 0x51, 0x2a, 0x10, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xf4, 0x3a, 0xf4, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, + 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0xd3, 0x32, 0xf3, 0x3a, 0x34, 0x43, 0x95, 0x4b, 0xd6, 0x53, 0x38, 0x5c, 0xba, 0x6c, 0x3d, 0x7d, 0x9d, 0x85, 0x3d, 0x8e, 0x9d, 0x96, 0xdd, 0x9e, 0xbd, 0x9e, 0x5d, 0x96, 0x9d, 0x85, 0xfc, 0x74, 0x79, 0x64, 0x17, 0x54, 0xd7, 0x53, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0x55, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x76, 0x43, 0x96, 0x43, 0x75, 0x43, 0xf3, 0x3a, 0x10, 0x22, 0x31, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0xef, 0x19, 0xef, 0x19, 0x10, 0x22, 0x31, 0x22, 0x51, 0x22, 0x72, 0x22, 0x92, 0x2a, 0xb3, 0x2a, 0x14, 0x33, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x96, 0x4b, 0xd7, 0x53, 0x38, 0x5c, 0x9a, 0x64, 0x1d, 0x75, 0xbd, 0x7d, 0x9d, 0x8e, 0xfd, 0xa6, 0xfd, 0xbe, 0xfd, 0xd6, 0xfd, 0xd6, 0xfd, 0xce, 0xdd, 0xc6, 0xfd, 0xae, 0x7d, 0x96, 0x9d, 0x85, 0x1d, 0x75, 0xdb, 0x6c, 0x99, 0x64, 0x79, 0x64, 0x9a, 0x64, 0xbb, 0x6c, 0xdb, 0x6c, 0x1d, 0x6d, 0x3d, 0x75, 0x1d, 0x6d, 0x79, 0x5c, 0xd6, 0x4b, 0xd6, 0x53, 0xd6, 0x53, 0x95, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0xd3, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x71, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x34, 0x43, 0x54, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x54, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x76, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0x38, 0x54, 0x34, 0x43, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0xd3, 0x32, 0x14, 0x3b, 0xf4, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x3b, + 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0xb3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x54, 0x43, 0x96, 0x4b, 0xf7, 0x53, 0x58, 0x64, 0xdb, 0x6c, 0x3d, 0x7d, 0x9d, 0x85, 0xdd, 0x8d, 0x3d, 0x96, 0x3d, 0x8e, 0xdd, 0x85, 0x3d, 0x7d, 0xdc, 0x6c, 0x59, 0x64, 0x17, 0x54, 0xd6, 0x4b, 0x96, 0x43, 0x96, 0x4b, 0xb6, 0x43, 0x75, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x76, 0x43, 0x96, 0x43, 0x76, 0x43, 0x14, 0x3b, 0x10, 0x22, 0x31, 0x22, 0x31, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0xef, 0x19, 0xae, 0x11, 0xcf, 0x11, 0x10, 0x1a, 0x10, 0x1a, 0x30, 0x22, 0x51, 0x22, 0x72, 0x22, 0x92, 0x2a, 0xd3, 0x2a, 0x14, 0x33, 0x34, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0xd6, 0x4b, 0x17, 0x54, 0x79, 0x64, 0xfc, 0x6c, 0xbd, 0x7d, 0x9d, 0x8e, 0xfd, 0x9e, 0xfd, 0xbe, 0xfd, 0xce, 0xfd, 0xd6, 0xfd, 0xd6, 0xfd, 0xce, 0xfd, 0xb6, 0x9d, 0x9e, 0xdd, 0x8d, 0x3d, 0x7d, 0xdb, 0x6c, 0xba, 0x6c, 0x99, 0x64, 0x9a, 0x64, 0xba, 0x64, 0xdb, 0x64, 0xfc, 0x6c, 0x1d, 0x6d, 0x1d, 0x6d, 0x9a, 0x5c, 0xf6, 0x4b, 0xf6, 0x53, 0xd6, 0x4b, 0xb6, 0x4b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x71, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x3a, 0xf3, 0x3a, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0x79, 0x5c, 0x92, 0x2a, 0x10, 0x1a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0xd3, 0x32, 0x14, 0x3b, 0xf4, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x3b, + 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0x14, 0x3b, 0x75, 0x43, 0xb6, 0x4b, 0xf7, 0x53, 0x78, 0x64, 0xba, 0x6c, 0x1d, 0x75, 0x5d, 0x7d, 0x7d, 0x7d, 0x7d, 0x85, 0x3d, 0x75, 0xfc, 0x74, 0x9a, 0x6c, 0x38, 0x5c, 0xf7, 0x53, 0xb6, 0x4b, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0x96, 0x43, 0x76, 0x43, 0x55, 0x43, 0x92, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x19, 0xad, 0x19, 0x8d, 0x11, 0xae, 0x11, 0xcf, 0x11, 0xef, 0x19, 0x10, 0x1a, 0x30, 0x22, 0x31, 0x22, 0x51, 0x22, 0x92, 0x2a, 0xb2, 0x2a, 0xf3, 0x32, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x4b, 0xd6, 0x4b, 0x17, 0x54, 0x79, 0x5c, 0xfc, 0x6c, 0x7d, 0x75, 0x3d, 0x86, 0xdd, 0x9e, 0xfd, 0xb6, 0xfd, 0xce, 0xfd, 0xd6, 0xfd, 0xd6, 0xfd, 0xce, 0xfd, 0xb6, 0xbd, 0x9e, 0xdd, 0x8d, 0x3d, 0x7d, 0xdc, 0x74, 0xba, 0x6c, 0x99, 0x64, 0x9a, 0x64, 0xba, 0x64, 0xdb, 0x64, 0xdc, 0x64, 0xfd, 0x64, 0x1d, 0x6d, 0x9a, 0x5c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x53, 0xb6, 0x43, 0x76, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x14, 0x33, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x71, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf4, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0xb6, 0x4b, 0xf7, 0x4b, 0x18, 0x54, 0x91, 0x2a, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0xb2, 0x32, 0xf3, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x3a, 0xf3, 0x3a, 0x14, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x51, 0x22, 0x31, 0x2a, 0x51, 0x22, 0x51, 0x22, 0x31, 0x2a, 0x71, 0x2a, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, + 0x55, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0xb6, 0x4b, 0xf7, 0x53, 0x38, 0x5c, 0x9a, 0x64, 0xdb, 0x6c, 0xfd, 0x74, 0xdc, 0x6c, 0xba, 0x6c, 0x9a, 0x64, 0x58, 0x5c, 0x17, 0x54, 0xb6, 0x4b, 0x75, 0x43, 0x55, 0x43, 0x75, 0x43, 0xf4, 0x3a, 0xf4, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x76, 0x43, 0x96, 0x4b, 0x96, 0x43, 0x75, 0x43, 0xd3, 0x3a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0xee, 0x19, 0x8d, 0x19, 0x6c, 0x11, 0x8c, 0x11, 0x8d, 0x11, 0x8e, 0x11, 0xce, 0x11, 0xef, 0x19, 0x10, 0x1a, 0x30, 0x22, 0x31, 0x22, 0x51, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0xd3, 0x32, 0x34, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xf7, 0x53, 0x59, 0x5c, 0xdc, 0x6c, 0x5d, 0x75, 0x1d, 0x86, 0xdd, 0x96, 0xfd, 0xae, 0xfd, 0xc6, 0xfd, 0xce, 0xfd, 0xd6, 0xfd, 0xce, 0xfd, 0xb6, 0xbd, 0x9e, 0xfd, 0x8d, 0x5d, 0x7d, 0xfc, 0x74, 0xba, 0x6c, 0x9a, 0x64, 0x9a, 0x64, 0xba, 0x64, 0xbb, 0x64, 0xdc, 0x64, 0xfd, 0x64, 0x1d, 0x6d, 0x9a, 0x5c, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x76, 0x43, 0x55, 0x3b, 0xf4, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0xb7, 0x4b, 0xf8, 0x53, 0x96, 0x4b, 0x71, 0x2a, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0xd3, 0x32, 0xf3, 0x3a, 0xf4, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x35, 0x3b, + 0x75, 0x3b, 0x76, 0x43, 0x55, 0x3b, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x3a, 0x14, 0x3b, 0x55, 0x43, 0x75, 0x43, 0xb6, 0x4b, 0xf7, 0x53, 0x38, 0x5c, 0x79, 0x64, 0x59, 0x5c, 0x58, 0x5c, 0x58, 0x64, 0x58, 0x5c, 0x17, 0x54, 0xd7, 0x53, 0xb6, 0x4b, 0x75, 0x43, 0x75, 0x43, 0x34, 0x3b, 0xf4, 0x3a, 0xf4, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x3a, 0xf4, 0x3a, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0x96, 0x4b, 0x96, 0x43, 0x75, 0x43, 0xf4, 0x3a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0xee, 0x19, 0x6b, 0x11, 0x4b, 0x11, 0x4b, 0x11, 0x6c, 0x11, 0x8c, 0x11, 0x8d, 0x11, 0xad, 0x11, 0xce, 0x11, 0xcf, 0x19, 0x10, 0x1a, 0x31, 0x22, 0x31, 0x22, 0x51, 0x22, 0x72, 0x22, 0x92, 0x2a, 0xd3, 0x2a, 0x34, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xf7, 0x53, 0x59, 0x5c, 0xbb, 0x64, 0x3d, 0x6d, 0xdd, 0x7d, 0x9d, 0x8e, 0xfd, 0x9e, 0xfd, 0xb6, 0xfd, 0xc6, 0xfd, 0xce, 0xfd, 0xc6, 0xfd, 0xb6, 0xbd, 0x9e, 0xfd, 0x8d, 0x5d, 0x7d, 0x1c, 0x75, 0xba, 0x6c, 0x9a, 0x64, 0x9a, 0x64, 0xba, 0x64, 0xbb, 0x5c, 0xbc, 0x5c, 0xbd, 0x64, 0xfd, 0x64, 0x7a, 0x5c, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xb7, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x14, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0xb7, 0x4b, 0x18, 0x54, 0x55, 0x43, 0x71, 0x2a, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0xd3, 0x32, 0xf4, 0x3a, 0xf4, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x34, 0x3b, 0x14, 0x43, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, + 0x96, 0x43, 0xd7, 0x4b, 0xb6, 0x4b, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf4, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x55, 0x43, 0x76, 0x43, 0xb6, 0x4b, 0xd7, 0x53, 0xd7, 0x53, 0xd7, 0x53, 0xf7, 0x53, 0xf7, 0x53, 0xd7, 0x53, 0xd7, 0x53, 0xb6, 0x4b, 0x96, 0x4b, 0x75, 0x43, 0x55, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x4b, 0x76, 0x43, 0x34, 0x3b, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0xac, 0x19, 0x4a, 0x11, 0x2a, 0x11, 0x2a, 0x11, 0x4a, 0x11, 0x4b, 0x11, 0x6c, 0x11, 0x8c, 0x11, 0x6d, 0x11, 0xad, 0x11, 0xae, 0x11, 0xcf, 0x11, 0xf0, 0x19, 0x30, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x22, 0x92, 0x2a, 0xb3, 0x2a, 0x14, 0x33, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xf7, 0x53, 0x38, 0x54, 0x9b, 0x64, 0x1d, 0x6d, 0x9d, 0x75, 0x5d, 0x86, 0xfc, 0x96, 0xfd, 0xae, 0xfd, 0xb6, 0xfd, 0xbe, 0xfd, 0xb6, 0xfd, 0xa6, 0xbd, 0x96, 0xfd, 0x85, 0x5d, 0x7d, 0x1c, 0x6d, 0xdb, 0x64, 0xba, 0x64, 0xba, 0x64, 0xba, 0x64, 0x9b, 0x5c, 0x9c, 0x5c, 0xbd, 0x5c, 0xdd, 0x64, 0x7a, 0x5c, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x14, 0x3b, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xb3, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x71, 0x32, 0x72, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0xb6, 0x43, 0x18, 0x54, 0x34, 0x3b, 0x51, 0x22, 0x30, 0x22, 0x31, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x72, 0x2a, 0xd3, 0x32, 0xf4, 0x3a, 0xf4, 0x3a, 0xf4, 0x3a, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x43, 0x33, 0x43, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x35, 0x3b, 0x76, 0x43, 0x96, 0x43, + 0xf6, 0x4b, 0x17, 0x54, 0xf6, 0x4b, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x3a, 0x14, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x76, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0x96, 0x4b, 0x95, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x3a, 0xf4, 0x32, 0xd4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x14, 0x3b, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x55, 0x43, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x0f, 0x22, 0xee, 0x21, 0xad, 0x19, 0x4a, 0x11, 0x09, 0x11, 0x29, 0x11, 0x4a, 0x11, 0x2a, 0x11, 0x4a, 0x11, 0x4a, 0x11, 0x4b, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x8d, 0x11, 0xae, 0x11, 0xcf, 0x11, 0xef, 0x19, 0x30, 0x1a, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x92, 0x2a, 0xb3, 0x2a, 0xf4, 0x32, 0x75, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xb6, 0x4b, 0xf7, 0x4b, 0x38, 0x54, 0x9a, 0x5c, 0xfd, 0x64, 0x5d, 0x75, 0xfd, 0x7d, 0xbd, 0x8e, 0xfc, 0x9e, 0xfd, 0xa6, 0xfd, 0xae, 0xfd, 0xa6, 0xfd, 0x9e, 0x9d, 0x8e, 0xdd, 0x85, 0x5d, 0x75, 0x1c, 0x6d, 0xdb, 0x64, 0xba, 0x64, 0xba, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0x9b, 0x5c, 0x9d, 0x5c, 0xdd, 0x64, 0x7b, 0x5c, 0xd7, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0xd7, 0x4b, 0x97, 0x43, 0xb7, 0x43, 0x96, 0x43, 0x55, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xb3, 0x32, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xd7, 0x4b, 0xd3, 0x32, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x51, 0x22, 0x92, 0x2a, 0xf3, 0x32, 0xf4, 0x3a, 0xf4, 0x32, 0xf4, 0x3a, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x43, 0x14, 0x43, 0x14, 0x43, 0x14, 0x3b, 0x14, 0x3b, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x92, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x76, 0x43, 0xd6, 0x4b, + 0xf6, 0x4b, 0x17, 0x54, 0xf6, 0x53, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x3a, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x34, 0x3b, 0x92, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0xee, 0x21, 0xcd, 0x21, 0xac, 0x19, 0x6b, 0x19, 0x29, 0x11, 0x29, 0x11, 0x29, 0x11, 0x29, 0x11, 0x2a, 0x11, 0x4a, 0x11, 0x4a, 0x11, 0x2a, 0x11, 0x2a, 0x11, 0x4a, 0x11, 0x2b, 0x11, 0x6b, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6d, 0x11, 0xad, 0x11, 0xce, 0x11, 0xef, 0x19, 0x10, 0x1a, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0xd3, 0x32, 0x55, 0x3b, 0x76, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0x18, 0x54, 0x7a, 0x5c, 0xbc, 0x64, 0x1d, 0x6d, 0x9d, 0x75, 0x7d, 0x86, 0xfd, 0x96, 0xfc, 0x9e, 0xfc, 0x9e, 0xfc, 0x9e, 0xdd, 0x96, 0x5d, 0x86, 0xbd, 0x7d, 0x5d, 0x75, 0x1c, 0x6d, 0xdb, 0x64, 0xbb, 0x5c, 0xbb, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9c, 0x5c, 0xbd, 0x5c, 0xdd, 0x64, 0x7b, 0x5c, 0xf7, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xf7, 0x4b, 0xb7, 0x43, 0xb7, 0x43, 0xb6, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0x75, 0x43, 0x30, 0x22, 0xef, 0x19, 0x10, 0x1a, 0x30, 0x1a, 0x30, 0x22, 0x31, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0xb2, 0x2a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x34, 0x43, 0x34, 0x43, 0x34, 0x43, 0x34, 0x43, 0x34, 0x3b, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x91, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, + 0xf6, 0x53, 0xf6, 0x53, 0xf6, 0x53, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x55, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x35, 0x3b, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0xd3, 0x32, 0x30, 0x2a, 0xce, 0x19, 0x6c, 0x11, 0x4b, 0x11, 0x4b, 0x11, 0x4a, 0x11, 0x2a, 0x11, 0x2a, 0x11, 0x2a, 0x11, 0x2a, 0x11, 0x2a, 0x11, 0x2a, 0x11, 0x2a, 0x11, 0x2a, 0x11, 0x4a, 0x11, 0x4a, 0x11, 0x2a, 0x11, 0x2b, 0x11, 0x4b, 0x11, 0x6c, 0x11, 0x8c, 0x11, 0x6d, 0x11, 0xad, 0x11, 0xae, 0x11, 0xcf, 0x11, 0x10, 0x1a, 0x31, 0x22, 0x51, 0x22, 0x51, 0x22, 0x72, 0x22, 0x92, 0x2a, 0xb3, 0x2a, 0x14, 0x33, 0x76, 0x3b, 0x76, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0xf8, 0x4b, 0x39, 0x54, 0x9c, 0x5c, 0xfd, 0x64, 0x5d, 0x75, 0xdd, 0x7d, 0x7d, 0x8e, 0xdd, 0x96, 0xfd, 0x96, 0xdd, 0x8e, 0x7d, 0x8e, 0xdd, 0x7d, 0x7d, 0x75, 0x3d, 0x6d, 0xfc, 0x64, 0xbb, 0x64, 0xbb, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0x9b, 0x5c, 0x9c, 0x5c, 0xbd, 0x5c, 0xdd, 0x64, 0x7a, 0x54, 0xd7, 0x43, 0xf8, 0x4b, 0x18, 0x4c, 0xf8, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0x76, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x43, 0x34, 0x3b, 0x30, 0x1a, 0xef, 0x19, 0x10, 0x1a, 0x10, 0x1a, 0x30, 0x22, 0x30, 0x22, 0x31, 0x22, 0x31, 0x22, 0x71, 0x22, 0x72, 0x2a, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x3a, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x34, 0x43, 0x54, 0x43, 0x34, 0x43, 0x54, 0x43, 0x14, 0x3b, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x95, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x53, + 0xf6, 0x53, 0x17, 0x54, 0xf6, 0x53, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x3a, 0xf4, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xb2, 0x32, 0x8d, 0x11, 0x8c, 0x11, 0x4c, 0x11, 0x6c, 0x11, 0x4b, 0x11, 0x2b, 0x11, 0x4a, 0x11, 0x2a, 0x11, 0x2a, 0x11, 0x2a, 0x11, 0x2a, 0x11, 0x4a, 0x11, 0x2a, 0x11, 0x4a, 0x11, 0x4a, 0x11, 0x4a, 0x11, 0x2a, 0x11, 0x4b, 0x11, 0x4b, 0x11, 0x6c, 0x11, 0x8c, 0x11, 0x6c, 0x11, 0xad, 0x11, 0xae, 0x11, 0xce, 0x11, 0xef, 0x19, 0x31, 0x22, 0x31, 0x22, 0x51, 0x22, 0x72, 0x22, 0x92, 0x2a, 0x92, 0x2a, 0xf4, 0x32, 0x96, 0x43, 0x76, 0x3b, 0x96, 0x43, 0xb7, 0x43, 0xf8, 0x4b, 0x39, 0x54, 0x9b, 0x5c, 0xbd, 0x64, 0x1d, 0x6d, 0x7d, 0x75, 0xdd, 0x7d, 0x5d, 0x86, 0x7d, 0x86, 0x5d, 0x86, 0xfd, 0x85, 0x9d, 0x7d, 0x5d, 0x6d, 0x1d, 0x6d, 0xfd, 0x64, 0xbc, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0xbd, 0x5c, 0xbd, 0x64, 0x5a, 0x54, 0xf7, 0x4b, 0xf8, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0xf8, 0x4b, 0xf8, 0x4b, 0xb7, 0x4b, 0x96, 0x43, 0x96, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0xb6, 0x43, 0xd3, 0x32, 0x0f, 0x1a, 0xef, 0x19, 0x10, 0x1a, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x22, 0x52, 0x22, 0x72, 0x2a, 0xf4, 0x3a, 0xf4, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x13, 0x3b, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0x14, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x53, 0xf6, 0x53, + 0x17, 0x54, 0x17, 0x54, 0x17, 0x5c, 0xf3, 0x32, 0xf3, 0x3a, 0x14, 0x3b, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x75, 0x43, 0x55, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x8d, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x4b, 0x11, 0x4b, 0x11, 0x2b, 0x11, 0x4a, 0x11, 0x4a, 0x11, 0x2a, 0x11, 0x2a, 0x11, 0x2a, 0x11, 0x4a, 0x11, 0x2a, 0x11, 0x4a, 0x11, 0x2a, 0x11, 0x2b, 0x11, 0x4b, 0x11, 0x6b, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x8d, 0x11, 0xae, 0x11, 0xce, 0x11, 0xcf, 0x11, 0x10, 0x1a, 0x31, 0x22, 0x51, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xd3, 0x32, 0x35, 0x3b, 0x76, 0x43, 0x96, 0x43, 0xb7, 0x43, 0xf8, 0x4b, 0x19, 0x4c, 0x5a, 0x54, 0xbc, 0x5c, 0xfe, 0x64, 0x3d, 0x6d, 0x9d, 0x75, 0xbd, 0x7d, 0xdd, 0x7d, 0xbd, 0x7d, 0x9d, 0x75, 0x3d, 0x6d, 0x1d, 0x6d, 0xfd, 0x64, 0xdd, 0x64, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9d, 0x5c, 0xbd, 0x5c, 0xbd, 0x64, 0x5a, 0x54, 0xf8, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0xf8, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0xb6, 0x4b, 0x10, 0x22, 0xcf, 0x19, 0xf0, 0x19, 0xf0, 0x19, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x72, 0x2a, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x54, 0x3b, 0x74, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xb3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x34, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xf6, 0x4b, 0x16, 0x54, 0x17, 0x54, + 0x17, 0x54, 0x17, 0x54, 0x37, 0x5c, 0xf3, 0x32, 0x13, 0x33, 0xf3, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf4, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0x14, 0x3b, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0x15, 0x33, 0x35, 0x3b, 0x35, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0xf4, 0x3a, 0xf3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x8d, 0x11, 0x8c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6b, 0x11, 0x4b, 0x11, 0x4b, 0x11, 0x2b, 0x11, 0x2b, 0x11, 0x4a, 0x11, 0x4a, 0x11, 0x2a, 0x11, 0x2a, 0x11, 0x2a, 0x11, 0x4a, 0x11, 0x4b, 0x11, 0x2b, 0x11, 0x4b, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0xae, 0x11, 0xce, 0x11, 0xcf, 0x11, 0x0f, 0x1a, 0x31, 0x22, 0x51, 0x22, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xf4, 0x32, 0x96, 0x43, 0x96, 0x43, 0xd7, 0x43, 0xf7, 0x4b, 0x18, 0x4c, 0x5a, 0x54, 0x9c, 0x5c, 0xdd, 0x64, 0x1d, 0x6d, 0x3d, 0x6d, 0x7d, 0x75, 0x7d, 0x75, 0x5d, 0x75, 0x3d, 0x6d, 0xfd, 0x6c, 0xdd, 0x64, 0xbd, 0x64, 0xbd, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9d, 0x5c, 0xbd, 0x5c, 0xde, 0x64, 0xbc, 0x5c, 0x39, 0x54, 0xf8, 0x4b, 0x18, 0x4c, 0x19, 0x4c, 0x39, 0x54, 0x39, 0x54, 0x18, 0x54, 0xf8, 0x4b, 0xd7, 0x43, 0xb7, 0x43, 0x96, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x22, 0x31, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x96, 0x43, 0xd3, 0x32, 0xef, 0x19, 0xcf, 0x11, 0xef, 0x19, 0x10, 0x1a, 0x10, 0x1a, 0x30, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x22, 0x72, 0x2a, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x3a, 0xf4, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x13, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x34, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xd6, 0x4b, 0xf6, 0x4b, 0x16, 0x54, + 0xf6, 0x4b, 0xf7, 0x4b, 0x17, 0x54, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0xf4, 0x32, 0x14, 0x33, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x15, 0x33, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0xf4, 0x32, 0xd3, 0x32, 0x14, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x8d, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6b, 0x11, 0x4b, 0x11, 0x2b, 0x11, 0x4b, 0x11, 0x4b, 0x11, 0x4b, 0x11, 0x2b, 0x11, 0x4b, 0x11, 0x2b, 0x11, 0x4b, 0x11, 0x4b, 0x11, 0x4b, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0xae, 0x11, 0xce, 0x11, 0xcf, 0x11, 0xef, 0x19, 0x30, 0x22, 0x51, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb3, 0x2a, 0xf4, 0x32, 0x76, 0x3b, 0x97, 0x43, 0xb7, 0x43, 0xf8, 0x4b, 0x19, 0x54, 0x5a, 0x54, 0x9c, 0x5c, 0xbd, 0x64, 0xfd, 0x64, 0x1d, 0x6d, 0x3d, 0x6d, 0x3d, 0x6d, 0x1d, 0x6d, 0xfd, 0x64, 0xdd, 0x64, 0xbd, 0x64, 0xbd, 0x5c, 0x9d, 0x5c, 0x9c, 0x5c, 0xbc, 0x5c, 0x9c, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xbe, 0x64, 0x9c, 0x5c, 0x39, 0x54, 0x18, 0x4c, 0x19, 0x4c, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x18, 0x4c, 0xf7, 0x4b, 0xd7, 0x43, 0xb7, 0x43, 0x76, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x22, 0x50, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x3a, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0xd7, 0x53, 0x50, 0x22, 0xce, 0x11, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0x10, 0x1a, 0x10, 0x22, 0x31, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf4, 0x3a, 0xf3, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x13, 0x33, 0x13, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x75, 0x43, 0x95, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, + 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0x54, 0x3b, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xce, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x4b, 0x11, 0x4b, 0x11, 0x4b, 0x11, 0x2b, 0x11, 0x4b, 0x11, 0x4b, 0x11, 0x4b, 0x11, 0x6b, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0xae, 0x11, 0xce, 0x11, 0xcf, 0x11, 0xef, 0x19, 0x10, 0x22, 0x51, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x35, 0x3b, 0xb7, 0x43, 0xd7, 0x4b, 0xf8, 0x4b, 0x39, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0xbd, 0x64, 0xdd, 0x64, 0xfd, 0x64, 0x1d, 0x6d, 0x1d, 0x6d, 0xdd, 0x64, 0xdd, 0x64, 0xbd, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0x9d, 0x5c, 0xbd, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xde, 0x64, 0x9c, 0x5c, 0x19, 0x54, 0x19, 0x4c, 0x39, 0x4c, 0x39, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x59, 0x54, 0x39, 0x54, 0x18, 0x4c, 0xf7, 0x4b, 0xd7, 0x43, 0x96, 0x43, 0x35, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x96, 0x43, 0xd3, 0x3a, 0xef, 0x19, 0xce, 0x11, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0x10, 0x1a, 0x10, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x22, 0x92, 0x2a, 0x35, 0x3b, 0x35, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x3a, 0xf4, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x33, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x34, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0x96, 0x43, + 0x55, 0x3b, 0x55, 0x3b, 0x76, 0x3b, 0x75, 0x43, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0xf4, 0x32, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0xf4, 0x32, 0xd4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x35, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xef, 0x21, 0x6d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6b, 0x11, 0x6b, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0xad, 0x11, 0xae, 0x11, 0xae, 0x11, 0xae, 0x11, 0xcf, 0x11, 0xef, 0x19, 0x10, 0x1a, 0x51, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x14, 0x33, 0xb7, 0x43, 0xd8, 0x4b, 0x18, 0x4c, 0x59, 0x54, 0x7a, 0x5c, 0xbb, 0x5c, 0xdd, 0x64, 0xdd, 0x64, 0xdd, 0x64, 0xfd, 0x64, 0xdd, 0x64, 0xdd, 0x64, 0xbd, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xbd, 0x64, 0xdd, 0x64, 0xdd, 0x64, 0x9c, 0x5c, 0x3a, 0x54, 0x3a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0x7a, 0x54, 0x59, 0x54, 0x38, 0x54, 0xf8, 0x4b, 0xf7, 0x4b, 0xb7, 0x43, 0x55, 0x3b, 0x14, 0x33, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x96, 0x43, 0x50, 0x22, 0xce, 0x11, 0xce, 0x11, 0xcf, 0x19, 0xef, 0x19, 0xef, 0x19, 0x10, 0x1a, 0x10, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x22, 0xb3, 0x2a, 0x35, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x3a, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x93, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb3, 0x32, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x14, 0x33, 0x14, 0x3b, 0x55, 0x3b, 0x55, 0x3b, + 0x14, 0x33, 0x34, 0x33, 0x55, 0x3b, 0x75, 0x3b, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x0f, 0x2a, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x4c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0xad, 0x11, 0xae, 0x11, 0xae, 0x11, 0xcf, 0x11, 0xef, 0x19, 0xef, 0x19, 0x10, 0x1a, 0x31, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0x93, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x76, 0x3b, 0xf8, 0x4b, 0x18, 0x4c, 0x59, 0x54, 0xba, 0x5c, 0xdb, 0x64, 0xfd, 0x6c, 0x1d, 0x6d, 0xfd, 0x6c, 0xfd, 0x64, 0xdd, 0x64, 0xdd, 0x64, 0xbd, 0x5c, 0x9d, 0x5c, 0x7d, 0x5c, 0x9d, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xdd, 0x64, 0xdd, 0x64, 0xdd, 0x64, 0xdd, 0x64, 0xdd, 0x64, 0xdd, 0x64, 0x9c, 0x5c, 0x5b, 0x54, 0x5b, 0x54, 0x5b, 0x54, 0x7b, 0x54, 0x7b, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x7a, 0x54, 0x59, 0x54, 0x18, 0x54, 0xf8, 0x4b, 0xd7, 0x43, 0x35, 0x3b, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x75, 0x43, 0xf3, 0x3a, 0xef, 0x19, 0xae, 0x11, 0xce, 0x11, 0xcf, 0x11, 0xef, 0x19, 0xef, 0x19, 0x10, 0x1a, 0x10, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0xd3, 0x32, 0x55, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x3b, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0xb3, 0x32, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xb2, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0x92, 0x2a, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, + 0x14, 0x33, 0x14, 0x33, 0x35, 0x3b, 0x55, 0x3b, 0xd4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x92, 0x2a, 0xd3, 0x32, 0x93, 0x32, 0x93, 0x2a, 0xb3, 0x32, 0xf4, 0x32, 0xd4, 0x32, 0xd4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x30, 0x2a, 0x8d, 0x11, 0xae, 0x11, 0xae, 0x11, 0xad, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0xae, 0x11, 0xce, 0x11, 0xce, 0x11, 0xef, 0x19, 0xef, 0x19, 0x10, 0x1a, 0x10, 0x1a, 0x31, 0x22, 0x51, 0x22, 0x92, 0x32, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x15, 0x3b, 0xf8, 0x4b, 0x18, 0x4c, 0x59, 0x54, 0xba, 0x64, 0xdb, 0x6c, 0xfc, 0x6c, 0x1d, 0x6d, 0x1d, 0x6d, 0x1d, 0x6d, 0xfd, 0x64, 0xdd, 0x64, 0x9d, 0x5c, 0x7c, 0x54, 0x7c, 0x54, 0x9d, 0x5c, 0xbd, 0x5c, 0xbd, 0x64, 0xdd, 0x64, 0xfd, 0x64, 0x1d, 0x65, 0x1d, 0x65, 0xfd, 0x64, 0xdd, 0x64, 0xbd, 0x64, 0x9d, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x7a, 0x54, 0x39, 0x54, 0x38, 0x4c, 0xb7, 0x43, 0x35, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x33, 0x34, 0x33, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x30, 0x2a, 0xae, 0x11, 0xae, 0x11, 0xce, 0x11, 0xce, 0x11, 0xef, 0x19, 0xef, 0x19, 0xf0, 0x19, 0x30, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0xd3, 0x32, 0x75, 0x43, 0x75, 0x43, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0xb3, 0x32, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xd3, 0x2a, 0xb3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0xd3, 0x2a, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, + 0x14, 0x33, 0x14, 0x33, 0x35, 0x33, 0x35, 0x3b, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x30, 0x2a, 0xae, 0x11, 0xce, 0x11, 0xce, 0x11, 0xce, 0x11, 0xae, 0x11, 0xae, 0x11, 0xae, 0x11, 0xae, 0x11, 0xad, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0xad, 0x11, 0xae, 0x11, 0xce, 0x11, 0xcf, 0x11, 0xef, 0x11, 0xef, 0x19, 0x0f, 0x1a, 0x10, 0x1a, 0x30, 0x22, 0x31, 0x22, 0x31, 0x22, 0x72, 0x2a, 0x93, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x96, 0x43, 0x59, 0x54, 0x79, 0x54, 0x9a, 0x5c, 0xdb, 0x6c, 0xdc, 0x6c, 0x1d, 0x75, 0x1d, 0x75, 0x1d, 0x6d, 0x1d, 0x6d, 0xdd, 0x64, 0x9d, 0x5c, 0x9d, 0x5c, 0x9d, 0x54, 0x9d, 0x54, 0x9d, 0x5c, 0xdd, 0x64, 0xfd, 0x64, 0x1d, 0x65, 0x3d, 0x6d, 0x3d, 0x6d, 0x1d, 0x6d, 0xfd, 0x64, 0xfd, 0x64, 0xfd, 0x64, 0xdd, 0x64, 0xdd, 0x64, 0xbd, 0x64, 0xbd, 0x64, 0xbd, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0x9c, 0x5c, 0x5a, 0x54, 0x38, 0x54, 0xd7, 0x43, 0x75, 0x3b, 0x35, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x14, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x3a, 0x14, 0x3b, 0x55, 0x3b, 0x14, 0x3b, 0xce, 0x19, 0xad, 0x11, 0xae, 0x11, 0xce, 0x11, 0xce, 0x11, 0xcf, 0x19, 0xef, 0x19, 0xf0, 0x19, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0xf3, 0x32, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x54, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, + 0x14, 0x33, 0x35, 0x33, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x30, 0x2a, 0xcf, 0x11, 0xcf, 0x11, 0xcf, 0x11, 0xef, 0x11, 0xcf, 0x11, 0xcf, 0x11, 0xce, 0x11, 0xce, 0x11, 0xce, 0x11, 0xae, 0x11, 0xce, 0x11, 0xae, 0x11, 0xad, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0xad, 0x11, 0xad, 0x11, 0xae, 0x11, 0xae, 0x11, 0xce, 0x11, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0x10, 0x1a, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xb3, 0x32, 0xd4, 0x32, 0xf4, 0x32, 0x55, 0x3b, 0xf8, 0x4b, 0x7a, 0x54, 0x9b, 0x5c, 0xdb, 0x64, 0xfc, 0x6c, 0xfd, 0x74, 0x1d, 0x75, 0x1d, 0x75, 0x1d, 0x6d, 0xdd, 0x64, 0xbd, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0x7d, 0x54, 0x9d, 0x5c, 0xdd, 0x64, 0xfd, 0x64, 0x1d, 0x6d, 0x3d, 0x6d, 0x3d, 0x6d, 0x3d, 0x6d, 0x3d, 0x6d, 0x5d, 0x75, 0x5d, 0x75, 0x3d, 0x6d, 0x1d, 0x6d, 0xfd, 0x6c, 0xfd, 0x64, 0xfd, 0x64, 0xdd, 0x64, 0xdd, 0x64, 0xdd, 0x5c, 0x7b, 0x54, 0x19, 0x4c, 0xd7, 0x4b, 0x96, 0x43, 0x55, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x14, 0x33, 0xf4, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x3a, 0x14, 0x3b, 0x95, 0x43, 0x0f, 0x22, 0x8d, 0x11, 0xae, 0x11, 0xce, 0x11, 0xae, 0x11, 0xce, 0x11, 0xcf, 0x11, 0xef, 0x19, 0xef, 0x19, 0x10, 0x1a, 0x10, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0xf3, 0x32, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x34, 0x43, 0x34, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x33, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, + 0x35, 0x33, 0x35, 0x33, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x14, 0x33, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x31, 0x2a, 0xef, 0x11, 0xf0, 0x19, 0xef, 0x19, 0xef, 0x11, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x11, 0xef, 0x19, 0xcf, 0x11, 0xce, 0x11, 0xce, 0x11, 0xce, 0x11, 0xae, 0x11, 0xae, 0x11, 0xae, 0x11, 0xce, 0x11, 0xce, 0x11, 0xce, 0x11, 0xcf, 0x11, 0xef, 0x19, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x30, 0x22, 0x10, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x35, 0x3b, 0x97, 0x43, 0x5a, 0x54, 0x9b, 0x5c, 0xbc, 0x64, 0xfc, 0x6c, 0xfd, 0x74, 0x1d, 0x75, 0x1d, 0x75, 0x1d, 0x6d, 0xfd, 0x64, 0xbd, 0x64, 0xbd, 0x5c, 0x7d, 0x5c, 0x7d, 0x5c, 0xbd, 0x5c, 0xdd, 0x64, 0x1d, 0x65, 0x3d, 0x6d, 0x5d, 0x6d, 0x5d, 0x6d, 0x5d, 0x6d, 0x9d, 0x75, 0xfd, 0x7d, 0xbd, 0x7d, 0x7e, 0x75, 0x5e, 0x75, 0x5d, 0x75, 0x5d, 0x75, 0x1d, 0x6d, 0x1d, 0x6d, 0x1d, 0x65, 0xfd, 0x64, 0x9c, 0x5c, 0x59, 0x54, 0x18, 0x54, 0xb7, 0x4b, 0x76, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x76, 0x3b, 0x35, 0x3b, 0x14, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x3a, 0x14, 0x3b, 0x96, 0x4b, 0x71, 0x2a, 0xad, 0x11, 0xad, 0x11, 0xae, 0x11, 0xae, 0x11, 0xae, 0x11, 0xce, 0x11, 0xcf, 0x11, 0xef, 0x19, 0xef, 0x19, 0xf0, 0x19, 0x10, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0xd3, 0x32, 0x75, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x34, 0x43, 0x34, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x2a, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xf3, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x35, 0x33, + 0x35, 0x33, 0x35, 0x33, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x14, 0x3b, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x31, 0x22, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0xf0, 0x19, 0x10, 0x1a, 0x0f, 0x1a, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xcf, 0x11, 0xce, 0x11, 0xce, 0x11, 0xce, 0x11, 0xce, 0x11, 0xae, 0x11, 0xce, 0x11, 0xcf, 0x11, 0xef, 0x19, 0xf0, 0x19, 0x10, 0x1a, 0x10, 0x22, 0x30, 0x22, 0x10, 0x22, 0x31, 0x22, 0x31, 0x22, 0x51, 0x22, 0x72, 0x2a, 0x72, 0x2a, 0x93, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x35, 0x3b, 0x35, 0x3b, 0x76, 0x3b, 0x19, 0x4c, 0x9b, 0x5c, 0xbd, 0x5c, 0xdd, 0x64, 0x1d, 0x6d, 0x1d, 0x6d, 0x1d, 0x6d, 0xfd, 0x6c, 0xfd, 0x64, 0xdd, 0x64, 0xbd, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0xdd, 0x5c, 0x1d, 0x65, 0x1d, 0x6d, 0x3d, 0x6d, 0x7d, 0x6d, 0x7d, 0x75, 0x9d, 0x75, 0x3d, 0x86, 0xdd, 0x8e, 0x5d, 0x86, 0x3d, 0x86, 0x1e, 0x86, 0xdd, 0x7d, 0x9d, 0x75, 0x5d, 0x75, 0x3d, 0x6d, 0x1d, 0x6d, 0xfd, 0x64, 0xbc, 0x5c, 0xbc, 0x5c, 0x5a, 0x54, 0xf8, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x76, 0x43, 0x75, 0x3b, 0x76, 0x3b, 0x55, 0x3b, 0x14, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x3a, 0x14, 0x3b, 0x35, 0x3b, 0xd3, 0x3a, 0xce, 0x19, 0x8d, 0x11, 0xad, 0x11, 0xae, 0x11, 0xae, 0x11, 0xce, 0x11, 0xce, 0x11, 0xcf, 0x11, 0xcf, 0x11, 0xef, 0x19, 0xf0, 0x19, 0x10, 0x1a, 0x10, 0x22, 0x51, 0x22, 0x51, 0x2a, 0xd3, 0x32, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x43, 0x55, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x2a, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0x15, 0x33, 0x35, 0x33, + 0x34, 0x33, 0x35, 0x33, 0x35, 0x33, 0x34, 0x33, 0x35, 0x33, 0x14, 0x33, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x31, 0x22, 0x30, 0x22, 0x31, 0x1a, 0x30, 0x22, 0x30, 0x1a, 0x30, 0x1a, 0x30, 0x1a, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x1a, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xce, 0x11, 0xcf, 0x11, 0xef, 0x19, 0xf0, 0x19, 0x10, 0x1a, 0x10, 0x1a, 0x30, 0x1a, 0x30, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x22, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0x14, 0x33, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0xb7, 0x43, 0x7b, 0x54, 0x9c, 0x5c, 0xdd, 0x5c, 0xdd, 0x64, 0xfd, 0x64, 0xdd, 0x5c, 0xdd, 0x64, 0xdd, 0x5c, 0xbd, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0xbd, 0x5c, 0xfd, 0x64, 0xfd, 0x64, 0x3d, 0x6d, 0x7d, 0x75, 0x9d, 0x75, 0x9d, 0x75, 0xfd, 0x7d, 0x9c, 0x8e, 0x1d, 0x9f, 0xfd, 0x96, 0xfd, 0x96, 0xdd, 0x96, 0x7d, 0x8e, 0x1e, 0x86, 0xde, 0x7d, 0x9d, 0x7d, 0x7d, 0x75, 0x1d, 0x6d, 0xfd, 0x64, 0xfd, 0x64, 0xbd, 0x5c, 0x39, 0x54, 0xf7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0x76, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x35, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x3a, 0x14, 0x3b, 0x34, 0x3b, 0x30, 0x22, 0xad, 0x11, 0xad, 0x11, 0xad, 0x11, 0xae, 0x11, 0xae, 0x11, 0xae, 0x11, 0xce, 0x11, 0xcf, 0x11, 0xcf, 0x11, 0xef, 0x19, 0x10, 0x1a, 0x10, 0x1a, 0x30, 0x1a, 0x30, 0x22, 0x51, 0x22, 0x91, 0x2a, 0x96, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x43, 0x55, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xf3, 0x2a, 0xf3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xb2, 0x2a, 0xd3, 0x2a, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, + 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x35, 0x33, 0x15, 0x33, 0x14, 0x33, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x31, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x1a, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xf0, 0x19, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x22, 0x31, 0x22, 0x31, 0x22, 0x51, 0x22, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x93, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x35, 0x3b, 0x56, 0x3b, 0x76, 0x3b, 0x96, 0x43, 0xf8, 0x4b, 0x9c, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0xbd, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xdd, 0x64, 0x1d, 0x65, 0x3d, 0x6d, 0x7d, 0x75, 0x9d, 0x75, 0xbe, 0x7d, 0x9d, 0x75, 0x1c, 0x86, 0x1d, 0xa7, 0xfd, 0xae, 0xfd, 0xae, 0xfd, 0xa6, 0x1d, 0x9f, 0xfd, 0x9e, 0xfd, 0x96, 0xdd, 0x8e, 0x9d, 0x8e, 0xfe, 0x85, 0x7d, 0x75, 0x5d, 0x75, 0x3d, 0x6d, 0x1d, 0x6d, 0x9b, 0x64, 0x39, 0x54, 0xf8, 0x53, 0xb6, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x3a, 0xf4, 0x3a, 0x14, 0x3b, 0x35, 0x43, 0x71, 0x2a, 0xae, 0x19, 0x8d, 0x11, 0xad, 0x11, 0xae, 0x11, 0xae, 0x11, 0xae, 0x11, 0xce, 0x11, 0xce, 0x11, 0xcf, 0x11, 0xcf, 0x11, 0xef, 0x19, 0xf0, 0x19, 0x10, 0x1a, 0x10, 0x1a, 0x30, 0x22, 0x51, 0x22, 0x31, 0x22, 0x96, 0x43, 0xb6, 0x4b, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xd3, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, + 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x72, 0x22, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x22, 0x51, 0x22, 0x31, 0x22, 0x30, 0x22, 0x10, 0x1a, 0xf0, 0x19, 0xef, 0x19, 0xef, 0x19, 0xf0, 0x19, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x22, 0x31, 0x22, 0x51, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0x93, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xd4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x15, 0x33, 0x35, 0x3b, 0x76, 0x43, 0xb7, 0x43, 0x96, 0x43, 0x19, 0x4c, 0xbd, 0x5c, 0x9d, 0x54, 0x7d, 0x5c, 0x9e, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0x9d, 0x5c, 0xbd, 0x5c, 0xdd, 0x64, 0xfd, 0x64, 0x1d, 0x6d, 0x5d, 0x6d, 0x9d, 0x75, 0xde, 0x7d, 0xfe, 0x7d, 0x1d, 0x86, 0x9d, 0x9e, 0x1d, 0xb7, 0xfd, 0xbe, 0xfd, 0xbe, 0x1d, 0xbf, 0x1d, 0xbf, 0xfd, 0xae, 0xfd, 0xa6, 0xfd, 0xa6, 0xfd, 0x9e, 0xdd, 0x8e, 0x5d, 0x86, 0xfe, 0x7d, 0xbe, 0x7d, 0x7d, 0x75, 0x1d, 0x6d, 0x9b, 0x5c, 0x18, 0x54, 0xb6, 0x4b, 0x75, 0x43, 0x55, 0x43, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0x96, 0x4b, 0x96, 0x4b, 0x96, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x3a, 0xf4, 0x3a, 0x14, 0x3b, 0x35, 0x3b, 0x92, 0x2a, 0xce, 0x19, 0xae, 0x11, 0xae, 0x11, 0xae, 0x11, 0xae, 0x11, 0xae, 0x11, 0xae, 0x11, 0xce, 0x11, 0xce, 0x11, 0xcf, 0x11, 0xef, 0x11, 0xef, 0x19, 0xf0, 0x19, 0x10, 0x1a, 0x10, 0x22, 0x30, 0x22, 0x31, 0x22, 0x31, 0x22, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x2a, 0xf4, 0x32, 0x14, 0x33, 0xf3, 0x2a, 0xd3, 0x2a, 0xf3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xb3, 0x2a, 0xd3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x33, + 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x2a, 0x93, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x22, 0x31, 0x22, 0x51, 0x22, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x15, 0x33, 0x15, 0x33, 0x35, 0x3b, 0x55, 0x3b, 0x76, 0x3b, 0x96, 0x43, 0xd7, 0x43, 0x5a, 0x54, 0xbe, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0xbd, 0x5c, 0xbd, 0x64, 0xdd, 0x64, 0xfd, 0x64, 0x1d, 0x65, 0x3d, 0x6d, 0x7d, 0x6d, 0xbd, 0x75, 0xfd, 0x7d, 0xfd, 0x7d, 0x3d, 0x86, 0xfd, 0xa6, 0x1d, 0xb7, 0x1d, 0xcf, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0xfe, 0xd6, 0x1d, 0xc7, 0xfd, 0xb6, 0xfd, 0xae, 0x1d, 0x9f, 0xfd, 0x96, 0xbd, 0x8e, 0x3d, 0x86, 0x1d, 0x86, 0x9d, 0x7d, 0xbb, 0x64, 0x18, 0x54, 0xd7, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x43, 0x75, 0x43, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0xd3, 0x3a, 0xef, 0x19, 0xae, 0x11, 0xce, 0x11, 0xce, 0x11, 0xce, 0x11, 0xae, 0x11, 0xae, 0x11, 0xae, 0x11, 0xce, 0x11, 0xcf, 0x11, 0xcf, 0x11, 0xef, 0x11, 0xef, 0x19, 0xf0, 0x19, 0x10, 0x1a, 0x10, 0x1a, 0x30, 0x22, 0x31, 0x22, 0x51, 0x22, 0x75, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb3, 0x32, 0xd3, 0x32, + 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xb3, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x13, 0x33, 0x13, 0x33, 0x13, 0x33, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x31, 0x22, 0x31, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x35, 0x33, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x96, 0x43, 0xb7, 0x43, 0x3a, 0x54, 0xbd, 0x64, 0xbd, 0x5c, 0x9d, 0x5c, 0x7d, 0x5c, 0x7c, 0x5c, 0x9c, 0x5c, 0xdd, 0x64, 0xdd, 0x64, 0xdd, 0x64, 0x3d, 0x6d, 0x7d, 0x75, 0xbd, 0x7d, 0xdd, 0x7d, 0x5d, 0x8e, 0x1d, 0xa7, 0x1d, 0xb7, 0x1d, 0xcf, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0x1d, 0xd7, 0xfd, 0xd6, 0xfe, 0xd6, 0x1d, 0xc7, 0x1d, 0xaf, 0xfd, 0xa6, 0x1c, 0x9f, 0xfd, 0x96, 0x7d, 0x8e, 0x7c, 0x7d, 0xdb, 0x6c, 0x59, 0x5c, 0x18, 0x54, 0xd7, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0x75, 0x43, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0x75, 0x43, 0x76, 0x43, 0x76, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x14, 0x3b, 0xf4, 0x3a, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x3a, 0xf4, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0xf3, 0x3a, 0x10, 0x22, 0xce, 0x11, 0xce, 0x11, 0xae, 0x11, 0xce, 0x11, 0xae, 0x11, 0xae, 0x11, 0xae, 0x11, 0xae, 0x11, 0xce, 0x11, 0xcf, 0x11, 0xcf, 0x11, 0xef, 0x11, 0xef, 0x11, 0xf0, 0x19, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x30, 0x22, 0x51, 0x22, 0x75, 0x43, 0xd7, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x14, 0x33, 0xf3, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xb3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xb3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, + 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0x92, 0x2a, 0x51, 0x22, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x33, 0x3b, 0x13, 0x33, 0xd3, 0x32, 0xb2, 0x32, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x51, 0x22, 0x31, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x22, 0x72, 0x22, 0x92, 0x2a, 0x93, 0x2a, 0xb3, 0x32, 0xd4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x3b, 0x35, 0x3b, 0x14, 0x33, 0x35, 0x3b, 0x55, 0x3b, 0x76, 0x3b, 0x55, 0x3b, 0x76, 0x3b, 0x3a, 0x54, 0xbd, 0x5c, 0x7c, 0x54, 0x7c, 0x54, 0x5b, 0x54, 0x7b, 0x54, 0xbd, 0x5c, 0xbe, 0x64, 0xdd, 0x64, 0x1d, 0x65, 0x7e, 0x75, 0x9d, 0x75, 0xbd, 0x7d, 0x7d, 0x8e, 0x1d, 0x9f, 0xfd, 0xae, 0x1d, 0xc7, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0xfd, 0xd6, 0x1d, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xc7, 0x1d, 0xb7, 0x1d, 0xa7, 0xdd, 0x9e, 0xfd, 0x85, 0x1c, 0x75, 0xfc, 0x6c, 0xdc, 0x6c, 0x59, 0x5c, 0x18, 0x54, 0xf7, 0x4b, 0xb7, 0x4b, 0x96, 0x43, 0x76, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x96, 0x43, 0x96, 0x4b, 0x96, 0x43, 0xb7, 0x4b, 0xb7, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0x55, 0x43, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x3a, 0xf4, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x34, 0x43, 0x51, 0x22, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xce, 0x11, 0xce, 0x11, 0xce, 0x11, 0xae, 0x11, 0xce, 0x11, 0xcf, 0x11, 0xcf, 0x11, 0xef, 0x11, 0xef, 0x11, 0xef, 0x19, 0xf0, 0x19, 0x10, 0x1a, 0x30, 0x1a, 0x30, 0x22, 0x31, 0x22, 0x51, 0x22, 0x55, 0x3b, 0xd7, 0x4b, 0xb7, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, + 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x2a, 0xb3, 0x2a, 0xb2, 0x2a, 0x71, 0x2a, 0x10, 0x22, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x15, 0x33, 0x35, 0x33, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x43, 0x13, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x93, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0xd4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, 0x33, 0x35, 0x3b, 0x35, 0x3b, 0xf4, 0x32, 0x15, 0x33, 0x35, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0xb7, 0x43, 0x7b, 0x54, 0xbe, 0x64, 0x7d, 0x5c, 0x7c, 0x54, 0x7c, 0x5c, 0xbd, 0x5c, 0xfd, 0x64, 0xfd, 0x64, 0x1d, 0x6d, 0x5d, 0x6d, 0x7d, 0x75, 0x9d, 0x75, 0x3d, 0x86, 0xfd, 0x8e, 0x1d, 0xa7, 0x1d, 0xb7, 0x1d, 0xc7, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0x1d, 0xd7, 0x1d, 0xbf, 0x1d, 0xaf, 0x7d, 0x9e, 0xbe, 0x85, 0x5d, 0x7d, 0x5d, 0x7d, 0x1d, 0x75, 0x9b, 0x64, 0x38, 0x5c, 0xf8, 0x53, 0xd7, 0x4b, 0xb7, 0x4b, 0x96, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x96, 0x43, 0xd7, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0x95, 0x43, 0x35, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x30, 0x22, 0xcf, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xcf, 0x19, 0xcf, 0x11, 0xcf, 0x11, 0xce, 0x11, 0xcf, 0x11, 0xcf, 0x11, 0xcf, 0x11, 0xcf, 0x11, 0xef, 0x11, 0xef, 0x11, 0xef, 0x19, 0xf0, 0x19, 0x10, 0x1a, 0x10, 0x1a, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0xf3, 0x32, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x33, 0x34, 0x3b, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x33, 0x34, 0x33, 0x14, 0x33, 0x34, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, + 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x30, 0x22, 0x51, 0x22, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x3a, 0xf3, 0x32, 0x55, 0x33, 0x55, 0x33, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x54, 0x43, 0x54, 0x43, 0x34, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x93, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x15, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x55, 0x3b, 0x35, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x76, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0x7b, 0x5c, 0xde, 0x64, 0xbe, 0x5c, 0x9d, 0x5c, 0xbe, 0x5c, 0xfd, 0x64, 0x1d, 0x6d, 0x3d, 0x6d, 0x3d, 0x6d, 0x3d, 0x6d, 0x7e, 0x75, 0xde, 0x7d, 0x7e, 0x86, 0x1d, 0x8f, 0x1d, 0x9f, 0x1d, 0xaf, 0x1d, 0xc7, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xcf, 0x1d, 0xbf, 0xdd, 0xa6, 0x3d, 0x96, 0xde, 0x85, 0x7e, 0x7d, 0x7d, 0x7d, 0x3d, 0x75, 0xdc, 0x64, 0x7a, 0x5c, 0x39, 0x54, 0xf8, 0x53, 0xd7, 0x4b, 0xb6, 0x43, 0x76, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x96, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xb6, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x51, 0x22, 0xf0, 0x19, 0x10, 0x22, 0x10, 0x22, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xcf, 0x19, 0xcf, 0x11, 0xcf, 0x11, 0xcf, 0x11, 0xef, 0x11, 0xef, 0x11, 0xef, 0x19, 0xef, 0x19, 0x10, 0x1a, 0x10, 0x1a, 0x30, 0x1a, 0x30, 0x22, 0x51, 0x22, 0x31, 0x22, 0x92, 0x2a, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x14, 0x3b, 0x34, 0x33, 0x34, 0x33, 0x35, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xf3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xf3, 0x2a, 0xd3, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, + 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x51, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x3a, 0x14, 0x3b, 0x56, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x96, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x43, 0x54, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x35, 0x33, 0x35, 0x33, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x14, 0x33, 0x15, 0x33, 0x35, 0x33, 0x55, 0x3b, 0x55, 0x3b, 0x56, 0x3b, 0x76, 0x3b, 0x76, 0x43, 0x97, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xf8, 0x4b, 0x9b, 0x5c, 0xfe, 0x64, 0xdd, 0x64, 0xdd, 0x64, 0xdd, 0x64, 0x3d, 0x6d, 0x5e, 0x6d, 0x3d, 0x6d, 0x1d, 0x6d, 0x3d, 0x6d, 0x9d, 0x75, 0xfd, 0x7d, 0x5d, 0x86, 0xbd, 0x86, 0xfd, 0x96, 0x1d, 0xaf, 0x1d, 0xbf, 0x1d, 0xc7, 0x1d, 0xcf, 0x1d, 0xc7, 0x1d, 0xbf, 0x1d, 0xb7, 0xdd, 0xa6, 0x5d, 0x96, 0x1e, 0x8e, 0xde, 0x85, 0x7e, 0x7d, 0x5d, 0x75, 0x3d, 0x75, 0xfd, 0x6c, 0x9b, 0x64, 0x59, 0x5c, 0x38, 0x54, 0xf8, 0x4b, 0xb7, 0x4b, 0x76, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb6, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x14, 0x3b, 0x71, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x1a, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x11, 0xcf, 0x11, 0xcf, 0x11, 0xcf, 0x11, 0xef, 0x11, 0xef, 0x19, 0xef, 0x19, 0xf0, 0x19, 0x10, 0x1a, 0x10, 0x1a, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x22, 0x75, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x76, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x33, 0x15, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xd4, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, + 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x96, 0x3b, 0xb7, 0x43, 0xb6, 0x3b, 0xb7, 0x43, 0xd7, 0x43, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x53, 0xf6, 0x53, 0xd6, 0x53, 0xd6, 0x53, 0xb5, 0x4b, 0x95, 0x4b, 0x75, 0x4b, 0x75, 0x43, 0x75, 0x43, 0x34, 0x3b, 0x14, 0x33, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x15, 0x33, 0x35, 0x33, 0x35, 0x33, 0x55, 0x3b, 0x55, 0x3b, 0x15, 0x33, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x96, 0x43, 0x97, 0x43, 0x97, 0x43, 0xb7, 0x43, 0xd7, 0x4b, 0xd8, 0x4b, 0xf8, 0x4b, 0x5a, 0x54, 0xde, 0x64, 0xde, 0x64, 0xde, 0x64, 0xfd, 0x64, 0x3e, 0x6d, 0x1d, 0x6d, 0x1d, 0x6d, 0x3d, 0x6d, 0x5d, 0x75, 0x9d, 0x75, 0xde, 0x7d, 0xfe, 0x7d, 0x5d, 0x86, 0xfd, 0x96, 0x1d, 0x9f, 0x1d, 0xa7, 0x1d, 0xaf, 0x1d, 0xa7, 0x1c, 0xa7, 0x9d, 0x9e, 0xfd, 0x8d, 0xde, 0x85, 0xbd, 0x85, 0x7e, 0x7d, 0x5d, 0x75, 0x3d, 0x75, 0x3d, 0x75, 0xfd, 0x6c, 0x9b, 0x64, 0x7a, 0x5c, 0x39, 0x54, 0xf8, 0x53, 0xb7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x76, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x76, 0x43, 0x96, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0x96, 0x43, 0x76, 0x43, 0x76, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x76, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x14, 0x3b, 0x71, 0x2a, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x1a, 0xf0, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x11, 0xef, 0x11, 0xef, 0x11, 0xef, 0x11, 0xef, 0x11, 0xef, 0x19, 0x10, 0x1a, 0x10, 0x1a, 0x30, 0x1a, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x31, 0x22, 0x51, 0x22, 0x34, 0x3b, 0xd7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x76, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, + 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x30, 0x22, 0x30, 0x22, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x76, 0x3b, 0xf8, 0x43, 0xf8, 0x43, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0x37, 0x54, 0x17, 0x54, 0x37, 0x54, 0x17, 0x54, 0xf6, 0x53, 0xf6, 0x53, 0xd6, 0x4b, 0xb6, 0x4b, 0x95, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x15, 0x33, 0x35, 0x3b, 0x35, 0x33, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x33, 0x55, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x96, 0x43, 0xb7, 0x43, 0x96, 0x43, 0x97, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xd7, 0x43, 0xd7, 0x4b, 0xd8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0x19, 0x54, 0x7b, 0x5c, 0xdd, 0x64, 0xfe, 0x64, 0xfe, 0x6c, 0x1d, 0x6d, 0xfd, 0x6c, 0xfe, 0x6c, 0x3e, 0x6d, 0x5d, 0x6d, 0x7d, 0x75, 0x7d, 0x75, 0x9d, 0x75, 0xdd, 0x7d, 0xfd, 0x7d, 0x3d, 0x86, 0x9d, 0x8e, 0xde, 0x96, 0xfd, 0x96, 0x7d, 0x8e, 0x9d, 0x7d, 0x3e, 0x75, 0x5e, 0x75, 0x5e, 0x75, 0x3e, 0x75, 0xfd, 0x6c, 0xdb, 0x64, 0xdc, 0x6c, 0xfd, 0x6c, 0x9c, 0x64, 0x7a, 0x5c, 0x39, 0x54, 0x18, 0x54, 0xf7, 0x4b, 0xb7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb7, 0x4b, 0xb7, 0x4b, 0x96, 0x43, 0x76, 0x43, 0x76, 0x43, 0xb7, 0x4b, 0xb7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x76, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x76, 0x43, 0x76, 0x43, 0x76, 0x43, 0x76, 0x43, 0x76, 0x43, 0x76, 0x43, 0x76, 0x43, 0x14, 0x3b, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0xf0, 0x19, 0xef, 0x19, 0xef, 0x11, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x31, 0x22, 0x14, 0x3b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0x96, 0x43, 0x76, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x15, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x35, 0x33, 0x34, 0x33, 0x35, 0x33, 0x35, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, + 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x31, 0x2a, 0x31, 0x22, 0x30, 0x22, 0x51, 0x2a, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xd8, 0x43, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x58, 0x54, 0x38, 0x54, 0x17, 0x54, 0xf7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0x76, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x76, 0x3b, 0x96, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xd8, 0x4b, 0xd8, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd8, 0x4b, 0xd8, 0x4b, 0xd8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0x18, 0x4c, 0x19, 0x54, 0x3a, 0x54, 0x5b, 0x54, 0x9c, 0x5c, 0xdd, 0x64, 0x1e, 0x6d, 0xfe, 0x6c, 0xfd, 0x6c, 0x1d, 0x6d, 0x1d, 0x6d, 0x5e, 0x6d, 0x7e, 0x75, 0x9d, 0x75, 0x9d, 0x7d, 0x9d, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x9e, 0x75, 0x9d, 0x7d, 0xbd, 0x7d, 0x3c, 0x75, 0xbc, 0x64, 0xdc, 0x6c, 0xdd, 0x6c, 0xdd, 0x6c, 0xdc, 0x64, 0xbb, 0x64, 0x9a, 0x5c, 0xbb, 0x64, 0xdd, 0x64, 0x9c, 0x64, 0x5a, 0x5c, 0x18, 0x54, 0xf8, 0x53, 0xf8, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb7, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0x96, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x75, 0x43, 0x76, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x96, 0x43, 0x75, 0x43, 0x14, 0x3b, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x51, 0x22, 0x31, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x1a, 0x10, 0x1a, 0xf0, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0x10, 0x1a, 0x10, 0x1a, 0x30, 0x1a, 0x30, 0x1a, 0x30, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0xd3, 0x32, 0xb6, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0xf7, 0x53, 0xf7, 0x53, 0xf7, 0x4b, 0xd7, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x15, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, + 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x30, 0x22, 0x30, 0x22, 0x71, 0x2a, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x55, 0x43, 0xbc, 0x5c, 0xbc, 0x5c, 0xbd, 0x5c, 0xfd, 0x64, 0xfd, 0x64, 0xfd, 0x64, 0xfd, 0x64, 0xfd, 0x64, 0xfd, 0x64, 0xdc, 0x64, 0xdc, 0x5c, 0xbb, 0x5c, 0x7a, 0x5c, 0x59, 0x54, 0x38, 0x54, 0x18, 0x4c, 0xf7, 0x43, 0xb7, 0x43, 0x76, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0x35, 0x33, 0x55, 0x3b, 0x76, 0x3b, 0x96, 0x43, 0xb7, 0x43, 0xd8, 0x4b, 0xf8, 0x4b, 0x19, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x19, 0x4c, 0x19, 0x4c, 0xf8, 0x4b, 0x19, 0x4c, 0x19, 0x4c, 0x19, 0x4c, 0x19, 0x54, 0x3a, 0x54, 0x5b, 0x54, 0x7c, 0x5c, 0x9c, 0x5c, 0xbd, 0x5c, 0xdd, 0x64, 0xfd, 0x6c, 0x1e, 0x6d, 0x3d, 0x6d, 0x3d, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x7e, 0x75, 0x7d, 0x75, 0x7d, 0x75, 0x7d, 0x75, 0x5d, 0x6d, 0x5d, 0x6d, 0x5d, 0x6d, 0xfb, 0x64, 0x59, 0x5c, 0x59, 0x5c, 0x79, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x59, 0x5c, 0x59, 0x5c, 0x38, 0x54, 0x39, 0x54, 0x7b, 0x5c, 0x7a, 0x5c, 0x38, 0x54, 0x18, 0x54, 0xf8, 0x4b, 0xf8, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0xd7, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0xb7, 0x43, 0x96, 0x43, 0x76, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x76, 0x43, 0x96, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x55, 0x43, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x22, 0x51, 0x22, 0x51, 0x22, 0x31, 0x22, 0x31, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x30, 0x1a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x2a, 0x31, 0x22, 0x75, 0x43, 0xf7, 0x4b, 0x18, 0x54, 0x18, 0x54, 0x17, 0x54, 0xf7, 0x53, 0xd7, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x76, 0x43, 0x75, 0x3b, 0x96, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x56, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, 0x34, 0x33, 0x35, 0x33, 0x15, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, + 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x51, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xb7, 0x43, 0x1e, 0x65, 0x1d, 0x65, 0x3d, 0x65, 0x5d, 0x6d, 0x7d, 0x75, 0x9e, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0x9d, 0x75, 0x7e, 0x75, 0x5e, 0x6d, 0x3d, 0x6d, 0x1d, 0x6d, 0xfd, 0x64, 0xbc, 0x64, 0x9a, 0x5c, 0x59, 0x54, 0x18, 0x54, 0xd7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x55, 0x3b, 0x14, 0x33, 0xb3, 0x2a, 0xd3, 0x32, 0xf4, 0x32, 0x35, 0x33, 0x35, 0x33, 0x75, 0x3b, 0x96, 0x3b, 0x97, 0x43, 0xd8, 0x43, 0xf8, 0x4b, 0x19, 0x54, 0x39, 0x54, 0x39, 0x54, 0x19, 0x54, 0x5a, 0x54, 0x3a, 0x54, 0x19, 0x4c, 0x39, 0x54, 0x3a, 0x54, 0x3a, 0x54, 0x3a, 0x54, 0x5b, 0x54, 0x7c, 0x5c, 0x9c, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0x39, 0x54, 0x18, 0x54, 0xfc, 0x6c, 0x3e, 0x6d, 0x3e, 0x6d, 0x5e, 0x75, 0x5e, 0x75, 0x5e, 0x75, 0x5e, 0x75, 0x7e, 0x75, 0x5e, 0x75, 0x5e, 0x6d, 0x5e, 0x6d, 0xfc, 0x64, 0x38, 0x54, 0x18, 0x54, 0x38, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0xf8, 0x53, 0x17, 0x54, 0xf7, 0x53, 0xf7, 0x4b, 0x19, 0x54, 0x5a, 0x54, 0x18, 0x54, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xd7, 0x4b, 0xf8, 0x4b, 0x19, 0x54, 0x19, 0x54, 0xf8, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x4b, 0x55, 0x3b, 0x35, 0x3b, 0x15, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x51, 0x22, 0x51, 0x22, 0x31, 0x22, 0x30, 0x22, 0x31, 0x22, 0x30, 0x1a, 0x10, 0x1a, 0x30, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x30, 0x1a, 0x30, 0x1a, 0x30, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x31, 0x22, 0x55, 0x43, 0xd7, 0x4b, 0x18, 0x54, 0x18, 0x4c, 0x18, 0x54, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xf7, 0x53, 0xf7, 0x53, 0xf7, 0x53, 0xf7, 0x53, 0xd7, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x56, 0x3b, 0x96, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x96, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x55, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x35, 0x33, 0x35, 0x33, 0x34, 0x33, 0x15, 0x33, 0x14, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0x14, 0x33, 0xf4, 0x32, + 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0xb2, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x51, 0x22, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x3a, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0xfb, 0x64, 0x7e, 0x6d, 0x9d, 0x6d, 0xdd, 0x75, 0x5e, 0x7e, 0x7e, 0x86, 0x7d, 0x86, 0xbd, 0x86, 0x1d, 0x8f, 0x1d, 0x8f, 0xde, 0x8e, 0x9d, 0x86, 0x3e, 0x86, 0xfe, 0x7d, 0x9e, 0x7d, 0x7e, 0x75, 0x3e, 0x6d, 0xfd, 0x64, 0x9a, 0x5c, 0x59, 0x54, 0x18, 0x54, 0xf7, 0x4b, 0xd7, 0x4b, 0x96, 0x43, 0x55, 0x3b, 0xf4, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xd4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x55, 0x3b, 0x76, 0x3b, 0x96, 0x3b, 0xd7, 0x43, 0xd8, 0x4b, 0x19, 0x4c, 0x5a, 0x54, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x3a, 0x54, 0x3a, 0x54, 0x3a, 0x54, 0x5b, 0x54, 0x5b, 0x54, 0x7c, 0x54, 0x7c, 0x5c, 0x9c, 0x5c, 0x9d, 0x5c, 0xde, 0x64, 0x5a, 0x5c, 0x96, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0x9a, 0x64, 0x5e, 0x75, 0x3e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x5e, 0x6d, 0x3e, 0x6d, 0x1e, 0x6d, 0xfd, 0x64, 0x7a, 0x5c, 0x39, 0x54, 0x39, 0x54, 0x18, 0x54, 0xf8, 0x53, 0xf7, 0x53, 0xf7, 0x53, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0x39, 0x54, 0x39, 0x54, 0x18, 0x54, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xd8, 0x4b, 0xf8, 0x4b, 0x18, 0x54, 0x18, 0x54, 0x3a, 0x54, 0x3a, 0x54, 0x19, 0x54, 0x18, 0x54, 0xf8, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x4b, 0x96, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0x55, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x55, 0x43, 0x54, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x31, 0x22, 0x30, 0x1a, 0x30, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x2a, 0x71, 0x22, 0xb2, 0x2a, 0xb7, 0x4b, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0xf7, 0x53, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xf7, 0x53, 0x18, 0x54, 0x38, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0xf8, 0x53, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x76, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x43, 0x76, 0x3b, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x34, 0x33, 0x15, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, + 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x92, 0x32, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x2a, 0xb3, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x3a, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x3a, 0xd5, 0x4b, 0x5e, 0x86, 0x3e, 0x7e, 0xbd, 0x86, 0xdd, 0x8e, 0xfd, 0x8e, 0x1d, 0x97, 0x1c, 0x97, 0x1c, 0x9f, 0x1c, 0x9f, 0x1c, 0x9f, 0x1c, 0x9f, 0x1c, 0x9f, 0x1d, 0x97, 0xfd, 0x8e, 0x7d, 0x86, 0xfe, 0x7d, 0x9e, 0x75, 0xfd, 0x6c, 0xbb, 0x64, 0x59, 0x5c, 0x17, 0x54, 0xb6, 0x4b, 0x95, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x35, 0x33, 0x76, 0x3b, 0x96, 0x3b, 0xb7, 0x43, 0xd8, 0x4b, 0xf8, 0x4b, 0x19, 0x4c, 0x39, 0x4c, 0x3a, 0x54, 0x3a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5b, 0x54, 0x5b, 0x54, 0x7c, 0x54, 0x7c, 0x5c, 0x7c, 0x5c, 0x9c, 0x5c, 0x9d, 0x5c, 0xbe, 0x64, 0x7b, 0x5c, 0xb6, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xf8, 0x53, 0x38, 0x54, 0x79, 0x5c, 0x9a, 0x64, 0x1c, 0x6d, 0x5e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x1d, 0x6d, 0xbb, 0x64, 0x39, 0x54, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x38, 0x54, 0xf8, 0x53, 0xf8, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xb6, 0x4b, 0x18, 0x4c, 0x5a, 0x54, 0x39, 0x54, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x54, 0x18, 0x54, 0x18, 0x4c, 0x18, 0x54, 0x39, 0x54, 0x7b, 0x54, 0x7b, 0x5c, 0x5a, 0x54, 0x39, 0x54, 0x19, 0x54, 0x18, 0x54, 0x18, 0x54, 0xf8, 0x53, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0x96, 0x4b, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x4b, 0x75, 0x43, 0x74, 0x43, 0x54, 0x3b, 0x14, 0x33, 0xd3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x22, 0x51, 0x22, 0x31, 0x1a, 0x31, 0x1a, 0x31, 0x1a, 0x30, 0x1a, 0x30, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x30, 0x22, 0x31, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x96, 0x4b, 0xf7, 0x53, 0x59, 0x5c, 0xf8, 0x53, 0xf7, 0x4b, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x18, 0x54, 0xf7, 0x53, 0xd7, 0x4b, 0xf7, 0x53, 0xf8, 0x53, 0x18, 0x54, 0x38, 0x5c, 0x59, 0x5c, 0x5a, 0x5c, 0x5a, 0x5c, 0x59, 0x5c, 0x39, 0x5c, 0x38, 0x54, 0xf8, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x96, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x43, 0x97, 0x43, 0x96, 0x43, 0x76, 0x3b, 0x56, 0x3b, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, + 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x51, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0xb3, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x34, 0x3b, 0xf3, 0x3a, 0x13, 0x3b, 0x9a, 0x75, 0xfe, 0x86, 0x1d, 0x97, 0x1d, 0x9f, 0x1d, 0xa7, 0x1d, 0xaf, 0x1d, 0xb7, 0x1d, 0xbf, 0x1e, 0xc7, 0x1d, 0xcf, 0x1e, 0xcf, 0x1d, 0xc7, 0x1d, 0xbf, 0x1d, 0xaf, 0x1d, 0xa7, 0xfd, 0x96, 0xbe, 0x8e, 0xfe, 0x85, 0x3d, 0x75, 0xfc, 0x6c, 0x9b, 0x64, 0x59, 0x5c, 0x17, 0x54, 0xd7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x56, 0x3b, 0x97, 0x43, 0xb7, 0x43, 0xf8, 0x4b, 0x19, 0x4c, 0x1a, 0x4c, 0x19, 0x4c, 0x3a, 0x4c, 0x3b, 0x54, 0x3b, 0x54, 0x5b, 0x54, 0x5c, 0x54, 0x7d, 0x5c, 0x9d, 0x5c, 0x7c, 0x54, 0x7c, 0x5c, 0x9d, 0x5c, 0xbd, 0x64, 0x9b, 0x5c, 0xf7, 0x4b, 0xb6, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0x18, 0x54, 0x38, 0x54, 0xd6, 0x4b, 0x95, 0x43, 0xf6, 0x4b, 0x59, 0x5c, 0x1c, 0x6d, 0x5e, 0x75, 0x3e, 0x6d, 0xfd, 0x64, 0xbb, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x59, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x59, 0x5c, 0x38, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0xf8, 0x4b, 0xd7, 0x4b, 0xf8, 0x4b, 0x5a, 0x54, 0x5a, 0x54, 0x39, 0x54, 0x19, 0x54, 0x18, 0x54, 0x39, 0x54, 0x18, 0x54, 0x39, 0x54, 0x39, 0x54, 0x5b, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x7c, 0x5c, 0x7b, 0x5c, 0x7b, 0x5c, 0x7b, 0x5c, 0x5a, 0x5c, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0xf7, 0x4b, 0xb6, 0x4b, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x96, 0x43, 0x96, 0x43, 0x76, 0x3b, 0x76, 0x3b, 0x96, 0x43, 0xb5, 0x43, 0xb5, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x43, 0x55, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xb3, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x71, 0x22, 0x71, 0x22, 0x51, 0x22, 0x31, 0x22, 0x31, 0x22, 0x31, 0x22, 0x31, 0x22, 0x31, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x92, 0x2a, 0xb2, 0x32, 0x14, 0x3b, 0xf7, 0x53, 0xf8, 0x53, 0x18, 0x54, 0xf8, 0x53, 0xf8, 0x4b, 0x18, 0x54, 0x58, 0x5c, 0x38, 0x5c, 0xf7, 0x53, 0xd7, 0x53, 0x18, 0x54, 0x18, 0x54, 0x59, 0x5c, 0x7a, 0x5c, 0x9b, 0x64, 0xbb, 0x64, 0xbc, 0x64, 0xbc, 0x64, 0x9b, 0x64, 0x7a, 0x5c, 0x59, 0x5c, 0x18, 0x54, 0x18, 0x54, 0xf8, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0x97, 0x43, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x76, 0x3b, 0x96, 0x3b, 0x97, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb7, 0x43, 0x97, 0x43, 0xb7, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x56, 0x3b, 0x35, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf3, 0x32, + 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xf3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x71, 0x2a, 0x92, 0x32, 0x72, 0x32, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x14, 0x3b, 0xf3, 0x3a, 0x94, 0x43, 0x3e, 0x8f, 0x1c, 0x97, 0x1c, 0x9f, 0x1d, 0xaf, 0x1d, 0xbf, 0x1e, 0xd7, 0x1e, 0xdf, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xdf, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xdf, 0x1e, 0xd7, 0x1d, 0xbf, 0x1d, 0xaf, 0xfd, 0x9e, 0x5e, 0x8e, 0x9e, 0x7d, 0x5e, 0x75, 0xfd, 0x6c, 0x9a, 0x64, 0x59, 0x5c, 0x17, 0x54, 0xd7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x76, 0x3b, 0x75, 0x3b, 0x76, 0x3b, 0x55, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x96, 0x3b, 0xb7, 0x43, 0xf8, 0x4b, 0x3a, 0x4c, 0x3a, 0x54, 0x5b, 0x54, 0x5b, 0x54, 0x5c, 0x54, 0x5c, 0x54, 0x7d, 0x54, 0x7d, 0x5c, 0x5c, 0x54, 0x7b, 0x5c, 0x7c, 0x5c, 0x9d, 0x5c, 0xbd, 0x5c, 0x9c, 0x5c, 0x18, 0x54, 0x96, 0x43, 0xb7, 0x43, 0xb7, 0x4b, 0xf7, 0x4b, 0x38, 0x54, 0xd7, 0x4b, 0x34, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0x37, 0x54, 0x1b, 0x6d, 0x1d, 0x6d, 0x7b, 0x5c, 0xbb, 0x64, 0xbb, 0x64, 0xbb, 0x64, 0x9b, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x59, 0x54, 0x39, 0x54, 0x58, 0x54, 0x18, 0x54, 0xf7, 0x4b, 0x5a, 0x54, 0x9c, 0x5c, 0x5b, 0x54, 0x3a, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x9c, 0x5c, 0xbe, 0x64, 0xbd, 0x5c, 0xde, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0xdd, 0x64, 0xdd, 0x64, 0x9c, 0x64, 0x59, 0x5c, 0x18, 0x54, 0xf7, 0x53, 0xd7, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb7, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0x95, 0x4b, 0x75, 0x43, 0x55, 0x3b, 0x34, 0x33, 0xf3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x72, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd7, 0x4b, 0xf7, 0x53, 0xf8, 0x53, 0x18, 0x54, 0xf8, 0x4b, 0x18, 0x54, 0x58, 0x5c, 0x58, 0x5c, 0xf7, 0x53, 0xf8, 0x53, 0x18, 0x54, 0x59, 0x5c, 0x9a, 0x64, 0xdc, 0x64, 0xdd, 0x6c, 0xfd, 0x6c, 0x1e, 0x6d, 0xfe, 0x6c, 0xfd, 0x6c, 0xbc, 0x64, 0x9b, 0x64, 0x7a, 0x5c, 0x5a, 0x5c, 0x59, 0x54, 0x18, 0x54, 0xf8, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xd7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0x97, 0x43, 0x96, 0x43, 0x96, 0x43, 0x55, 0x3b, 0x14, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, + 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x33, 0x3b, 0xfb, 0x75, 0x1d, 0x8f, 0x1c, 0x9f, 0x1d, 0xaf, 0x1e, 0xc7, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xcf, 0x1d, 0xb7, 0x1d, 0xa7, 0xde, 0x96, 0xfe, 0x85, 0x7e, 0x75, 0x1d, 0x6d, 0xbb, 0x64, 0x79, 0x5c, 0x38, 0x54, 0xf7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x97, 0x3b, 0xb7, 0x43, 0xb7, 0x43, 0xd8, 0x43, 0x19, 0x4c, 0x3a, 0x4c, 0x3a, 0x54, 0x5b, 0x54, 0x7c, 0x54, 0x7c, 0x5c, 0x7b, 0x54, 0x5b, 0x54, 0x7c, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0x18, 0x54, 0x95, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0x18, 0x54, 0x96, 0x43, 0xf3, 0x32, 0x54, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0x34, 0x3b, 0xf3, 0x3a, 0xb6, 0x4b, 0x19, 0x54, 0x7b, 0x5c, 0xdc, 0x6c, 0xfc, 0x6c, 0xdc, 0x64, 0xbb, 0x64, 0x9b, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x39, 0x54, 0xf8, 0x4b, 0x39, 0x54, 0xbc, 0x64, 0xbd, 0x5c, 0x9c, 0x5c, 0x7b, 0x5c, 0x5b, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x5a, 0x54, 0x9c, 0x5c, 0xdd, 0x64, 0xde, 0x64, 0xfe, 0x64, 0xfd, 0x64, 0xfd, 0x64, 0xbd, 0x64, 0x9c, 0x64, 0x7a, 0x5c, 0x7a, 0x5c, 0x5a, 0x5c, 0x59, 0x5c, 0x38, 0x54, 0x18, 0x54, 0xf7, 0x53, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0xd7, 0x43, 0xd7, 0x4b, 0xd7, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0x95, 0x4b, 0x95, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x34, 0x33, 0xd3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x71, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x22, 0x72, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x14, 0x3b, 0xf7, 0x53, 0xd7, 0x4b, 0x18, 0x54, 0xf8, 0x53, 0x18, 0x54, 0x38, 0x5c, 0x38, 0x5c, 0xf7, 0x53, 0x18, 0x54, 0x38, 0x5c, 0x79, 0x5c, 0xbb, 0x64, 0xfd, 0x6c, 0x3e, 0x75, 0x5e, 0x75, 0x5e, 0x7d, 0x5e, 0x7d, 0x5e, 0x75, 0x3e, 0x75, 0xfd, 0x6c, 0xdc, 0x64, 0xbc, 0x64, 0x7b, 0x5c, 0x5a, 0x54, 0x39, 0x54, 0x18, 0x4c, 0xf8, 0x4b, 0xb7, 0x43, 0xb7, 0x43, 0x97, 0x43, 0x96, 0x3b, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0xb7, 0x43, 0x97, 0x43, 0x97, 0x43, 0x96, 0x43, 0x96, 0x43, 0x35, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x54, 0x3b, 0x14, 0x33, 0xf4, 0x32, + 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x33, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x72, 0x32, 0x92, 0x32, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xb4, 0x4b, 0x9c, 0x86, 0x1c, 0x97, 0x1d, 0xa7, 0x1d, 0xbf, 0x1e, 0xd7, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xdf, 0x1e, 0xd7, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xd7, 0x1e, 0xdf, 0x1e, 0xd7, 0x1d, 0xbf, 0x1d, 0xa7, 0xfd, 0x96, 0x3e, 0x86, 0x9e, 0x7d, 0x3d, 0x6d, 0xdc, 0x64, 0x9a, 0x5c, 0x59, 0x54, 0x18, 0x54, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xd8, 0x43, 0xf8, 0x43, 0x18, 0x4c, 0x3a, 0x4c, 0x3a, 0x54, 0x5b, 0x54, 0x5b, 0x54, 0x7c, 0x54, 0x7c, 0x54, 0x7c, 0x54, 0x7c, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xf8, 0x4b, 0x96, 0x43, 0xb6, 0x43, 0xb7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0x96, 0x43, 0xf3, 0x32, 0x14, 0x33, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0xf3, 0x3a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0xb2, 0x32, 0x55, 0x43, 0xb7, 0x4b, 0xf7, 0x53, 0x59, 0x5c, 0xdb, 0x64, 0xfd, 0x6c, 0xfe, 0x64, 0xdd, 0x64, 0xbc, 0x64, 0x9b, 0x5c, 0x7a, 0x5c, 0x59, 0x5c, 0xdb, 0x64, 0x3e, 0x6d, 0x1e, 0x6d, 0xfe, 0x6c, 0xfd, 0x64, 0xfd, 0x64, 0xfe, 0x6c, 0xbc, 0x64, 0x5a, 0x5c, 0x9b, 0x5c, 0xdd, 0x64, 0xdd, 0x64, 0xdd, 0x64, 0xdd, 0x64, 0xbd, 0x64, 0xdd, 0x64, 0xdc, 0x64, 0xbc, 0x64, 0xbb, 0x64, 0xbb, 0x64, 0x9a, 0x5c, 0x7a, 0x5c, 0x59, 0x5c, 0x38, 0x54, 0x17, 0x54, 0x18, 0x54, 0x18, 0x54, 0xf7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x54, 0x3b, 0xf3, 0x32, 0xd3, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x72, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x32, 0xb2, 0x32, 0xd7, 0x4b, 0xf8, 0x53, 0xd7, 0x4b, 0xf8, 0x53, 0xf8, 0x4b, 0x18, 0x54, 0xf7, 0x53, 0xf7, 0x53, 0x18, 0x54, 0x59, 0x5c, 0x9a, 0x64, 0xdc, 0x6c, 0x1d, 0x75, 0x7e, 0x7d, 0x9e, 0x7d, 0xbe, 0x85, 0xde, 0x85, 0xbe, 0x85, 0x9e, 0x7d, 0x5e, 0x75, 0x5e, 0x75, 0x1d, 0x6d, 0xdd, 0x64, 0xbc, 0x5c, 0x7a, 0x5c, 0x59, 0x54, 0x19, 0x4c, 0xf8, 0x4b, 0xf8, 0x4b, 0xd7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xd7, 0x43, 0xd8, 0x4b, 0xf8, 0x4b, 0x18, 0x54, 0x38, 0x54, 0x18, 0x4c, 0x18, 0x4c, 0xf7, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0xb7, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0xf4, 0x32, + 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x54, 0x3b, 0x54, 0x3b, 0x13, 0x3b, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0x13, 0x3b, 0x18, 0x65, 0xfe, 0x8e, 0x1d, 0x97, 0x1d, 0xa7, 0x1d, 0xbf, 0x1e, 0xd7, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xd7, 0x1e, 0xc7, 0x1d, 0xa7, 0xfd, 0x96, 0x3e, 0x86, 0x7d, 0x7d, 0x1e, 0x6d, 0xdd, 0x64, 0x9a, 0x5c, 0x59, 0x54, 0x39, 0x54, 0x18, 0x54, 0x18, 0x4c, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xd8, 0x43, 0xf8, 0x4b, 0x19, 0x4c, 0x39, 0x4c, 0x5b, 0x54, 0x7c, 0x54, 0x7d, 0x54, 0x9d, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0xbe, 0x5c, 0xbe, 0x5c, 0xbe, 0x5c, 0xbd, 0x5c, 0x19, 0x54, 0x96, 0x43, 0xb7, 0x4b, 0xb7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x55, 0x43, 0xb3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x34, 0x3b, 0x91, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0x55, 0x3b, 0xb6, 0x4b, 0x17, 0x54, 0x18, 0x54, 0x17, 0x54, 0x38, 0x54, 0x57, 0x5c, 0xfb, 0x6c, 0x3c, 0x6d, 0xba, 0x64, 0x79, 0x5c, 0x38, 0x54, 0xd7, 0x4b, 0xb7, 0x43, 0xb7, 0x4b, 0x39, 0x54, 0x9c, 0x5c, 0xbd, 0x64, 0xde, 0x64, 0xfe, 0x6c, 0xfe, 0x6c, 0xfd, 0x64, 0xfd, 0x6c, 0xfc, 0x6c, 0x1c, 0x6d, 0x1b, 0x6d, 0xfb, 0x6c, 0xdb, 0x64, 0xdb, 0x64, 0xba, 0x64, 0x7a, 0x5c, 0x38, 0x5c, 0x59, 0x5c, 0x59, 0x5c, 0x18, 0x54, 0x18, 0x4c, 0xf7, 0x4b, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0x54, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x22, 0x72, 0x22, 0x72, 0x22, 0x72, 0x2a, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x32, 0x92, 0x32, 0x51, 0x2a, 0x34, 0x3b, 0xf8, 0x53, 0xf7, 0x4b, 0xf8, 0x53, 0xf8, 0x4b, 0xf8, 0x4b, 0xd7, 0x4b, 0xf7, 0x53, 0x18, 0x54, 0x58, 0x5c, 0x7a, 0x64, 0xfd, 0x6c, 0x3e, 0x75, 0x9e, 0x7d, 0xde, 0x85, 0x3e, 0x8e, 0x7e, 0x8e, 0x5e, 0x8e, 0x1e, 0x8e, 0xfe, 0x85, 0xbe, 0x7d, 0x5e, 0x75, 0x5e, 0x6d, 0xfe, 0x6c, 0xbc, 0x64, 0x7a, 0x5c, 0x39, 0x54, 0x39, 0x4c, 0x18, 0x4c, 0xf8, 0x4b, 0xd8, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xf8, 0x4b, 0x39, 0x4c, 0x59, 0x54, 0x79, 0x5c, 0x79, 0x54, 0x58, 0x54, 0x38, 0x54, 0x18, 0x4c, 0xf7, 0x4b, 0xd7, 0x43, 0xb7, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0xf4, 0x32, + 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x34, 0x3b, 0x74, 0x43, 0x54, 0x43, 0x54, 0x3b, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x55, 0x43, 0xdd, 0x7d, 0x5e, 0x86, 0xfe, 0x8e, 0x1c, 0x9f, 0x1d, 0xaf, 0x1e, 0xcf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xd7, 0x1d, 0xb7, 0x1d, 0x9f, 0xbe, 0x8e, 0xbe, 0x7d, 0x3e, 0x75, 0xdd, 0x6c, 0xbc, 0x64, 0x9b, 0x5c, 0x7a, 0x54, 0x5a, 0x54, 0x3a, 0x54, 0x39, 0x54, 0x3a, 0x54, 0x3a, 0x54, 0x3b, 0x54, 0x5b, 0x54, 0x7b, 0x54, 0x5b, 0x54, 0x7c, 0x54, 0x9d, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0xbe, 0x5c, 0xbe, 0x5c, 0xbe, 0x5c, 0xbe, 0x5c, 0xde, 0x64, 0xbd, 0x64, 0x39, 0x54, 0x96, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xd8, 0x4b, 0xd7, 0x4b, 0x34, 0x3b, 0xb2, 0x2a, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0xd3, 0x32, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x71, 0x2a, 0x91, 0x2a, 0x51, 0x2a, 0x13, 0x3b, 0x38, 0x54, 0x39, 0x54, 0x18, 0x54, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0xd7, 0x4b, 0x9c, 0x5c, 0xde, 0x64, 0xde, 0x64, 0x1e, 0x6d, 0x1d, 0x6d, 0x1e, 0x6d, 0x3e, 0x6d, 0x3d, 0x6d, 0x5d, 0x75, 0x5c, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x1b, 0x6d, 0xfb, 0x6c, 0xbb, 0x64, 0x7a, 0x5c, 0x9b, 0x64, 0x9b, 0x5c, 0x59, 0x54, 0x58, 0x54, 0x18, 0x4c, 0xf8, 0x4b, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x75, 0x3b, 0x14, 0x33, 0x14, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x22, 0x72, 0x22, 0x72, 0x22, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0xd7, 0x4b, 0x18, 0x54, 0xd7, 0x4b, 0xf8, 0x53, 0x18, 0x54, 0xd7, 0x4b, 0xd7, 0x4b, 0xf8, 0x53, 0x38, 0x54, 0x7a, 0x5c, 0xdd, 0x6c, 0x3e, 0x75, 0x9e, 0x7d, 0xfe, 0x85, 0x9e, 0x96, 0xde, 0x9e, 0x1e, 0x9f, 0x1e, 0x9f, 0xfe, 0x96, 0x5e, 0x8e, 0xde, 0x85, 0x7d, 0x7d, 0x5e, 0x75, 0xfd, 0x6c, 0xbc, 0x5c, 0x7a, 0x5c, 0x3a, 0x54, 0x39, 0x4c, 0x18, 0x4c, 0xf8, 0x4b, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xf8, 0x4b, 0x19, 0x4c, 0x39, 0x54, 0x79, 0x5c, 0x79, 0x5c, 0x59, 0x5c, 0x39, 0x54, 0x38, 0x54, 0x18, 0x4c, 0xd7, 0x4b, 0xd7, 0x43, 0xb7, 0x43, 0x97, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0x75, 0x3b, 0x14, 0x3b, + 0x34, 0x3b, 0xf3, 0x3a, 0x13, 0x3b, 0x75, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x71, 0x2a, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xfa, 0x64, 0x9e, 0x75, 0xfd, 0x7d, 0x9e, 0x86, 0x1d, 0x97, 0x1d, 0xa7, 0x1d, 0xbf, 0x1e, 0xd7, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xd7, 0x1d, 0xb7, 0x1d, 0x9f, 0x9e, 0x8e, 0xbe, 0x7d, 0x5e, 0x75, 0x1e, 0x6d, 0xdd, 0x64, 0x9c, 0x5c, 0x7b, 0x5c, 0x7a, 0x54, 0x5a, 0x54, 0x5b, 0x54, 0x5b, 0x54, 0x7b, 0x54, 0x7c, 0x54, 0x7d, 0x54, 0x9d, 0x5c, 0x9e, 0x5c, 0xbe, 0x5c, 0xbe, 0x5c, 0xbe, 0x5c, 0xbe, 0x5c, 0xde, 0x64, 0xde, 0x64, 0xde, 0x64, 0xde, 0x64, 0xbd, 0x64, 0x39, 0x54, 0xb7, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0xd7, 0x4b, 0x14, 0x3b, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x54, 0x3b, 0x13, 0x3b, 0x92, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x75, 0x43, 0x59, 0x5c, 0x39, 0x54, 0x18, 0x54, 0xf7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xd6, 0x4b, 0x5a, 0x5c, 0xdd, 0x64, 0xde, 0x64, 0xfe, 0x6c, 0x1e, 0x6d, 0x1e, 0x6d, 0x5e, 0x75, 0x7e, 0x75, 0x7d, 0x7d, 0x7d, 0x7d, 0x5c, 0x7d, 0x5c, 0x7d, 0x5c, 0x7d, 0x5c, 0x7d, 0x5c, 0x7d, 0x3c, 0x75, 0x1c, 0x6d, 0xdb, 0x64, 0xdc, 0x64, 0xdc, 0x64, 0x7a, 0x5c, 0x79, 0x54, 0x59, 0x54, 0x18, 0x4c, 0xf7, 0x4b, 0x96, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xb2, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0xd3, 0x32, 0x18, 0x54, 0x18, 0x54, 0xb7, 0x4b, 0x18, 0x54, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0x38, 0x54, 0x7a, 0x5c, 0xbc, 0x64, 0xfe, 0x6c, 0x7e, 0x7d, 0xfe, 0x8d, 0xbe, 0x96, 0x1d, 0x9f, 0x1d, 0xa7, 0x1d, 0xa7, 0x1d, 0xa7, 0x1d, 0x9f, 0xbe, 0x8e, 0x1e, 0x86, 0x9e, 0x7d, 0x3e, 0x6d, 0xfd, 0x64, 0xbc, 0x64, 0x7b, 0x5c, 0x5a, 0x54, 0x19, 0x4c, 0x18, 0x4c, 0xf8, 0x4b, 0xd8, 0x43, 0xd8, 0x43, 0xd8, 0x43, 0xf8, 0x4b, 0x19, 0x4c, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x38, 0x54, 0x38, 0x54, 0x18, 0x4c, 0x18, 0x4c, 0xf8, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xb7, 0x43, 0xb7, 0x43, 0x76, 0x43, + 0x96, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x75, 0x4b, 0x75, 0x4b, 0x74, 0x43, 0x74, 0x43, 0x13, 0x3b, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x32, 0x91, 0x2a, 0x92, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd6, 0x4b, 0x5e, 0x6d, 0x7e, 0x6d, 0x9e, 0x75, 0x1e, 0x7e, 0xbd, 0x86, 0x3d, 0x97, 0x1d, 0xa7, 0x1d, 0xbf, 0x1e, 0xd7, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xd7, 0x1e, 0xc7, 0x1d, 0xaf, 0x1e, 0x9f, 0xbe, 0x8e, 0xde, 0x7d, 0x5e, 0x75, 0x1e, 0x6d, 0xde, 0x64, 0xbd, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x7c, 0x5c, 0x7c, 0x5c, 0x7c, 0x5c, 0x9d, 0x5c, 0xbe, 0x5c, 0xbe, 0x5c, 0xde, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0xde, 0x64, 0xde, 0x64, 0xfe, 0x64, 0x1e, 0x65, 0xdc, 0x64, 0x38, 0x54, 0xf7, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0x39, 0x54, 0xf8, 0x4b, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0xd3, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0xb2, 0x32, 0xb7, 0x4b, 0x5a, 0x5c, 0x39, 0x54, 0x18, 0x54, 0xd7, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0x39, 0x54, 0xdd, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0x1e, 0x6d, 0x3d, 0x6d, 0x5e, 0x75, 0x7e, 0x75, 0x9e, 0x7d, 0x7d, 0x85, 0x7d, 0x85, 0x5d, 0x85, 0x5c, 0x85, 0x5c, 0x8d, 0x7d, 0x85, 0x7d, 0x85, 0x7d, 0x7d, 0x5d, 0x75, 0x1d, 0x6d, 0x1d, 0x6d, 0xfd, 0x6c, 0xdc, 0x5c, 0xbb, 0x5c, 0x79, 0x54, 0xd7, 0x4b, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x76, 0x43, 0x39, 0x54, 0xf7, 0x53, 0xd7, 0x4b, 0xf8, 0x53, 0xd7, 0x4b, 0xf7, 0x4b, 0x18, 0x54, 0x39, 0x5c, 0x7a, 0x5c, 0xdc, 0x6c, 0x5e, 0x75, 0xbe, 0x85, 0x7e, 0x96, 0x1d, 0x9f, 0x1d, 0xa7, 0x1d, 0xaf, 0x1d, 0xaf, 0x1d, 0xa7, 0x1d, 0x9f, 0xfe, 0x96, 0x3e, 0x86, 0x9e, 0x7d, 0x3e, 0x6d, 0xdd, 0x64, 0x9c, 0x5c, 0x7a, 0x5c, 0x5a, 0x54, 0x19, 0x4c, 0xf8, 0x4b, 0xd8, 0x4b, 0xd8, 0x43, 0xd8, 0x43, 0xd8, 0x43, 0xf8, 0x4b, 0x18, 0x4c, 0x19, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0xf8, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0xf7, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0xb7, 0x43, 0x96, 0x43, + 0x96, 0x43, 0x96, 0x43, 0x95, 0x4b, 0x75, 0x4b, 0x75, 0x4b, 0x74, 0x43, 0x54, 0x43, 0x14, 0x3b, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0x55, 0x43, 0xfd, 0x64, 0xfe, 0x64, 0x3e, 0x6d, 0x9e, 0x75, 0x9d, 0x75, 0x1e, 0x7e, 0x9d, 0x86, 0x1d, 0x97, 0x1d, 0x9f, 0x1d, 0xb7, 0x1e, 0xcf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x3e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xcf, 0x1d, 0xb7, 0x1d, 0xa7, 0x1d, 0x97, 0x9e, 0x86, 0xde, 0x7d, 0x5e, 0x75, 0x1e, 0x6d, 0xde, 0x64, 0xde, 0x64, 0xbd, 0x5c, 0x9d, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xbe, 0x5c, 0xbe, 0x5c, 0xbe, 0x5c, 0xfe, 0x64, 0x1e, 0x65, 0x1e, 0x6d, 0x1e, 0x6d, 0x1e, 0x65, 0x3e, 0x6d, 0xfc, 0x64, 0x18, 0x4c, 0x39, 0x54, 0x39, 0x54, 0x59, 0x54, 0x5a, 0x5c, 0x96, 0x43, 0xf3, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0xb2, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x72, 0x32, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0xf3, 0x3a, 0x19, 0x54, 0x7a, 0x5c, 0x18, 0x54, 0x18, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0x7a, 0x5c, 0xfe, 0x6c, 0xfe, 0x64, 0x1e, 0x6d, 0x1e, 0x6d, 0x3e, 0x6d, 0x7e, 0x75, 0x9e, 0x7d, 0x9e, 0x85, 0x9e, 0x85, 0x7d, 0x8d, 0x7d, 0x8d, 0x7d, 0x8d, 0x9d, 0x8d, 0x7d, 0x8d, 0x9e, 0x8d, 0xbe, 0x85, 0xbe, 0x7d, 0x7e, 0x75, 0x3d, 0x6d, 0x5e, 0x6d, 0xdc, 0x64, 0x59, 0x54, 0xd7, 0x4b, 0xb6, 0x4b, 0x95, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0xf4, 0x32, 0xd3, 0x32, 0x72, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xd7, 0x4b, 0x18, 0x54, 0xd7, 0x4b, 0xd7, 0x4b, 0xf8, 0x53, 0xf7, 0x4b, 0xf7, 0x4b, 0x18, 0x54, 0x59, 0x5c, 0xbb, 0x64, 0x1e, 0x75, 0x7e, 0x7d, 0x1e, 0x8e, 0x1d, 0x9f, 0x1d, 0xa7, 0x1d, 0xaf, 0x1d, 0xb7, 0x1d, 0xaf, 0x1d, 0xa7, 0x3d, 0x9f, 0xbe, 0x96, 0xfe, 0x85, 0x9e, 0x75, 0x3e, 0x6d, 0xdd, 0x64, 0x9b, 0x5c, 0x5a, 0x54, 0x39, 0x54, 0x39, 0x54, 0xf8, 0x4b, 0xd8, 0x43, 0xd8, 0x43, 0xd8, 0x43, 0xd8, 0x43, 0xd8, 0x43, 0xf8, 0x4b, 0xf8, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0xf8, 0x4b, 0xf8, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0xf8, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0x97, 0x43, 0x96, 0x43, + 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0x95, 0x4b, 0x75, 0x4b, 0x54, 0x43, 0x34, 0x3b, 0x13, 0x3b, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xf4, 0x3a, 0x7a, 0x54, 0xfe, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0x1d, 0x65, 0x7d, 0x75, 0x9e, 0x75, 0xde, 0x7d, 0x7e, 0x7e, 0x1d, 0x8f, 0x3d, 0x9f, 0x1d, 0xa7, 0x3d, 0xb7, 0x1e, 0xcf, 0x3e, 0xd7, 0x3e, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0x3e, 0xd7, 0x1e, 0xcf, 0x1e, 0xc7, 0x1d, 0xb7, 0x1d, 0xaf, 0x1d, 0xa7, 0x1d, 0x97, 0x9e, 0x8e, 0x1e, 0x86, 0x9e, 0x75, 0x5e, 0x6d, 0x1e, 0x6d, 0xde, 0x64, 0xde, 0x5c, 0xbe, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xbe, 0x5c, 0xbe, 0x5c, 0xde, 0x64, 0xde, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0x1e, 0x65, 0x1e, 0x65, 0x3e, 0x6d, 0x3e, 0x6d, 0x1d, 0x6d, 0x9a, 0x5c, 0xf8, 0x4b, 0x59, 0x54, 0x5a, 0x54, 0x7a, 0x5c, 0x39, 0x54, 0x95, 0x43, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x3b, 0xf3, 0x32, 0x71, 0x2a, 0x72, 0x32, 0x72, 0x2a, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x51, 0x22, 0x34, 0x3b, 0x59, 0x5c, 0x5a, 0x5c, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0xf7, 0x4b, 0x38, 0x54, 0xfc, 0x64, 0x1e, 0x6d, 0x1d, 0x6d, 0x1d, 0x6d, 0x3e, 0x6d, 0x5e, 0x75, 0xbe, 0x7d, 0xbe, 0x7d, 0x9e, 0x85, 0x9e, 0x8d, 0x9e, 0x8d, 0x9e, 0x8d, 0x9e, 0x8d, 0xbe, 0x95, 0xbe, 0x95, 0xde, 0x95, 0x1e, 0x8e, 0x1e, 0x86, 0x7c, 0x75, 0x99, 0x64, 0x59, 0x5c, 0x18, 0x54, 0xf7, 0x53, 0xd7, 0x53, 0xb6, 0x4b, 0x96, 0x4b, 0x75, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x35, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0xf3, 0x32, 0x72, 0x32, 0x71, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x35, 0x43, 0x19, 0x54, 0xf8, 0x53, 0xd7, 0x4b, 0xd7, 0x4b, 0xf8, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x18, 0x54, 0x7a, 0x5c, 0xbc, 0x64, 0x3e, 0x75, 0xde, 0x85, 0xde, 0x96, 0x1d, 0x9f, 0x1d, 0xaf, 0x1d, 0xaf, 0x3d, 0xaf, 0x1d, 0xa7, 0xfc, 0x9e, 0xfd, 0x96, 0x7e, 0x8e, 0xde, 0x7d, 0x7e, 0x75, 0x1e, 0x6d, 0xbc, 0x64, 0x9b, 0x5c, 0x59, 0x54, 0x39, 0x54, 0x19, 0x4c, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xd8, 0x4b, 0xd8, 0x43, 0xd8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0xf8, 0x4b, 0xf8, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0xb7, 0x43, 0x96, 0x43, 0x96, 0x43, + 0x76, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0x95, 0x4b, 0x54, 0x43, 0x34, 0x3b, 0x13, 0x3b, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd7, 0x4b, 0x5e, 0x6d, 0x1e, 0x65, 0x1e, 0x65, 0xfe, 0x64, 0x1e, 0x65, 0x1e, 0x65, 0x5d, 0x6d, 0x9e, 0x75, 0xde, 0x75, 0x3e, 0x7e, 0xdd, 0x86, 0x1d, 0x97, 0x1c, 0x9f, 0x3d, 0xa7, 0x3d, 0xaf, 0x3d, 0xb7, 0x3d, 0xb7, 0x1d, 0xa7, 0x3d, 0xa7, 0x3d, 0x9f, 0x3d, 0x9f, 0x1d, 0x97, 0xfd, 0x96, 0xdd, 0x8e, 0x9e, 0x86, 0x3e, 0x86, 0xde, 0x7d, 0x7e, 0x75, 0x5e, 0x6d, 0x1e, 0x6d, 0xfe, 0x64, 0xde, 0x64, 0xbe, 0x5c, 0xbe, 0x5c, 0xbe, 0x5c, 0xbe, 0x5c, 0xde, 0x64, 0xde, 0x64, 0xde, 0x64, 0xfe, 0x64, 0x1e, 0x6d, 0x3e, 0x6d, 0x5e, 0x6d, 0x3e, 0x6d, 0x1e, 0x6d, 0x3e, 0x6d, 0xfc, 0x64, 0x59, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7a, 0x5c, 0x5a, 0x54, 0xf8, 0x4b, 0x95, 0x43, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0xd3, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x51, 0x22, 0x35, 0x3b, 0x9a, 0x5c, 0x7a, 0x5c, 0x18, 0x54, 0x18, 0x54, 0x18, 0x4c, 0xd7, 0x4b, 0x7a, 0x5c, 0x1d, 0x6d, 0x3e, 0x6d, 0x1d, 0x6d, 0x3e, 0x6d, 0x5e, 0x6d, 0x7e, 0x75, 0xbe, 0x7d, 0xbe, 0x85, 0xbe, 0x8d, 0xbe, 0x8d, 0x9e, 0x8d, 0xbe, 0x95, 0xde, 0x95, 0xfe, 0x95, 0x1e, 0x9e, 0xfc, 0x95, 0x39, 0x75, 0x78, 0x64, 0x79, 0x5c, 0x59, 0x5c, 0x58, 0x5c, 0x38, 0x5c, 0x18, 0x54, 0x17, 0x54, 0xf7, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0xf4, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x31, 0x22, 0xb7, 0x4b, 0x39, 0x54, 0xf8, 0x53, 0xf8, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf8, 0x4b, 0x38, 0x54, 0x7a, 0x5c, 0xdd, 0x6c, 0x9e, 0x7d, 0x3e, 0x86, 0xde, 0x96, 0x1d, 0x9f, 0x3d, 0xa7, 0x1d, 0xaf, 0x1d, 0xaf, 0x1d, 0xa7, 0x1d, 0x97, 0x9e, 0x8e, 0xfe, 0x85, 0x9e, 0x7d, 0x5e, 0x75, 0x1e, 0x6d, 0xbc, 0x64, 0x7b, 0x5c, 0x5a, 0x54, 0x39, 0x54, 0x18, 0x4c, 0xf8, 0x4b, 0xf8, 0x4b, 0xd8, 0x43, 0xd8, 0x43, 0xd8, 0x4b, 0xd8, 0x43, 0xd8, 0x43, 0xf8, 0x4b, 0xf8, 0x4b, 0x18, 0x4c, 0xf8, 0x4b, 0xf8, 0x4b, 0xd7, 0x43, 0xb7, 0x43, 0xd7, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, + 0x96, 0x43, 0xd6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0x55, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x55, 0x3b, 0x1e, 0x65, 0x1e, 0x65, 0x3e, 0x6d, 0x3e, 0x6d, 0x5e, 0x6d, 0x3d, 0x6d, 0x3d, 0x6d, 0x1e, 0x65, 0x3e, 0x6d, 0x5e, 0x6d, 0xdd, 0x75, 0x7e, 0x7e, 0x9d, 0x7e, 0x1d, 0x8f, 0x1d, 0x8f, 0x1d, 0x8f, 0xdd, 0x8e, 0x1d, 0x8f, 0x1d, 0x87, 0xfd, 0x8e, 0x9e, 0x86, 0x5e, 0x86, 0x1e, 0x7e, 0xfe, 0x7d, 0xbe, 0x75, 0x9e, 0x75, 0x7e, 0x6d, 0x5e, 0x6d, 0x3e, 0x6d, 0x1e, 0x65, 0x1e, 0x65, 0xfe, 0x64, 0xde, 0x64, 0xde, 0x64, 0xde, 0x64, 0xde, 0x64, 0xde, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0x1e, 0x65, 0x3e, 0x6d, 0x5e, 0x75, 0x5e, 0x75, 0x5e, 0x75, 0x5e, 0x6d, 0x1d, 0x6d, 0x7a, 0x5c, 0x39, 0x54, 0x5a, 0x54, 0x7b, 0x5c, 0x7b, 0x5c, 0x18, 0x4c, 0x76, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x34, 0x3b, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x55, 0x43, 0x5a, 0x5c, 0x59, 0x5c, 0x38, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0xfc, 0x64, 0x5e, 0x6d, 0x1d, 0x6d, 0x1e, 0x6d, 0x3e, 0x6d, 0x5e, 0x6d, 0x9e, 0x75, 0xde, 0x7d, 0xde, 0x85, 0xbe, 0x8d, 0xbe, 0x95, 0xde, 0x95, 0xde, 0x95, 0x5e, 0xa6, 0x7b, 0x8d, 0x78, 0x6c, 0x78, 0x64, 0xb9, 0x64, 0xba, 0x6c, 0xba, 0x64, 0x9a, 0x64, 0x9a, 0x64, 0x79, 0x5c, 0x58, 0x5c, 0x38, 0x54, 0xf7, 0x53, 0xd6, 0x4b, 0x96, 0x4b, 0x96, 0x43, 0x34, 0x3b, 0xb2, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0x31, 0x22, 0x18, 0x54, 0x39, 0x54, 0x18, 0x54, 0xd8, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0x39, 0x54, 0xbc, 0x64, 0x1e, 0x6d, 0x7e, 0x7d, 0x1e, 0x86, 0xbe, 0x96, 0x1d, 0x9f, 0x1d, 0xa7, 0x3d, 0xa7, 0x1d, 0xa7, 0x3d, 0x9f, 0xbe, 0x96, 0x1e, 0x86, 0x9e, 0x7d, 0x7e, 0x75, 0x1e, 0x6d, 0xfe, 0x64, 0xbc, 0x64, 0x9b, 0x5c, 0x7b, 0x5c, 0x5a, 0x54, 0x19, 0x4c, 0x18, 0x4c, 0xf8, 0x4b, 0xf8, 0x4b, 0xd8, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd8, 0x43, 0xd7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0x97, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x76, 0x43, + 0x96, 0x43, 0xf7, 0x4b, 0xb6, 0x4b, 0x96, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0x16, 0x54, 0xf5, 0x53, 0x94, 0x43, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x1d, 0x6d, 0x1e, 0x65, 0x1e, 0x65, 0x1d, 0x65, 0x3d, 0x6d, 0x5e, 0x6d, 0x7e, 0x6d, 0x7e, 0x6d, 0x7e, 0x75, 0x5d, 0x6d, 0x3d, 0x6d, 0xbe, 0x75, 0xbd, 0x75, 0x1d, 0x76, 0xbe, 0x86, 0xde, 0x86, 0x3d, 0x7e, 0xfe, 0x7d, 0x3e, 0x7e, 0x5e, 0x7e, 0x1e, 0x7e, 0xde, 0x7d, 0xde, 0x75, 0x7d, 0x75, 0x7e, 0x6d, 0x7e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x1e, 0x6d, 0x3e, 0x6d, 0x3e, 0x65, 0x1e, 0x65, 0xfe, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0x1e, 0x65, 0x1e, 0x65, 0x3e, 0x6d, 0x5e, 0x6d, 0x7e, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x5d, 0x6d, 0xdb, 0x64, 0x38, 0x4c, 0x39, 0x54, 0x5a, 0x54, 0x9b, 0x5c, 0x59, 0x54, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x4b, 0x95, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x14, 0x3b, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0xb6, 0x4b, 0xdb, 0x64, 0x7a, 0x5c, 0x59, 0x54, 0x59, 0x54, 0x38, 0x54, 0x9a, 0x5c, 0x3d, 0x6d, 0x5e, 0x6d, 0x3e, 0x6d, 0x1e, 0x6d, 0x3e, 0x6d, 0x7e, 0x75, 0xbe, 0x75, 0xde, 0x7d, 0xfe, 0x85, 0xde, 0x95, 0xde, 0x95, 0x5e, 0xa6, 0xd9, 0x74, 0x37, 0x5c, 0x78, 0x64, 0xb9, 0x6c, 0xdb, 0x6c, 0x1c, 0x75, 0x1d, 0x75, 0x1d, 0x75, 0xfc, 0x6c, 0xdb, 0x64, 0x7a, 0x64, 0x58, 0x5c, 0x38, 0x5c, 0x38, 0x54, 0xf7, 0x53, 0xb6, 0x4b, 0xd3, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x5a, 0x5c, 0x5a, 0x5c, 0xf8, 0x53, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0xd7, 0x4b, 0x39, 0x54, 0x7b, 0x5c, 0xbd, 0x64, 0x1e, 0x6d, 0x5e, 0x75, 0xde, 0x85, 0x5e, 0x8e, 0xbe, 0x96, 0x1e, 0x97, 0x1e, 0x97, 0xfe, 0x96, 0xbe, 0x8e, 0x1e, 0x86, 0xde, 0x7d, 0x7e, 0x75, 0x5e, 0x75, 0x1e, 0x6d, 0xde, 0x64, 0xbd, 0x64, 0x9c, 0x5c, 0x9c, 0x5c, 0x7b, 0x54, 0x5a, 0x54, 0x39, 0x54, 0x18, 0x4c, 0xf8, 0x4b, 0x18, 0x4c, 0xf8, 0x4b, 0xf8, 0x43, 0xd7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x76, 0x43, 0x76, 0x43, 0x76, 0x3b, + 0x37, 0x54, 0x37, 0x5c, 0x36, 0x5c, 0x16, 0x5c, 0xf6, 0x53, 0xf6, 0x53, 0xb5, 0x4b, 0xf6, 0x53, 0xb5, 0x4b, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xf3, 0x32, 0xbb, 0x64, 0x1e, 0x65, 0x1e, 0x6d, 0x1e, 0x65, 0x3e, 0x6d, 0x1e, 0x65, 0x3e, 0x6d, 0x5e, 0x6d, 0x7e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0xbe, 0x75, 0xfe, 0x7d, 0xde, 0x75, 0xfe, 0x75, 0xfe, 0x75, 0xbd, 0x75, 0x9e, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x5e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x1e, 0x65, 0x1e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x3e, 0x6d, 0x3e, 0x6d, 0x5e, 0x6d, 0x7e, 0x75, 0x7e, 0x75, 0x7e, 0x7d, 0x7d, 0x75, 0x1b, 0x6d, 0x58, 0x5c, 0x37, 0x54, 0x58, 0x54, 0x58, 0x54, 0x18, 0x4c, 0x76, 0x43, 0x34, 0x33, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xb6, 0x43, 0x14, 0x3b, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x30, 0x2a, 0x96, 0x4b, 0xdc, 0x6c, 0x9a, 0x5c, 0x59, 0x54, 0x39, 0x54, 0x39, 0x54, 0xfc, 0x64, 0x7e, 0x75, 0x5e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x5e, 0x6d, 0x9e, 0x75, 0xbe, 0x7d, 0xfe, 0x85, 0xdc, 0x8d, 0x98, 0x6c, 0x37, 0x5c, 0x58, 0x64, 0x99, 0x6c, 0xda, 0x74, 0x1c, 0x75, 0x7e, 0x7d, 0x9e, 0x7d, 0x7e, 0x7d, 0x5e, 0x7d, 0x3d, 0x75, 0xfc, 0x6c, 0xbb, 0x64, 0x79, 0x5c, 0x59, 0x5c, 0x17, 0x54, 0xf3, 0x3a, 0x92, 0x32, 0x92, 0x32, 0x72, 0x32, 0x72, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0x14, 0x3b, 0x7a, 0x5c, 0x5a, 0x5c, 0x18, 0x54, 0xf8, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf8, 0x4b, 0x19, 0x54, 0x5a, 0x5c, 0x9c, 0x64, 0xfd, 0x6c, 0x5e, 0x75, 0x7e, 0x7d, 0xde, 0x85, 0x1e, 0x86, 0x7e, 0x8e, 0x7e, 0x8e, 0x5e, 0x8e, 0x1e, 0x86, 0xbe, 0x7d, 0x9e, 0x7d, 0x7e, 0x75, 0x3e, 0x6d, 0x3e, 0x6d, 0xfe, 0x64, 0xfe, 0x64, 0xdc, 0x64, 0x9b, 0x5c, 0x9a, 0x5c, 0x7a, 0x5c, 0x5a, 0x54, 0x59, 0x54, 0x39, 0x54, 0x18, 0x4c, 0xf8, 0x4b, 0xd7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x76, 0x43, 0x76, 0x3b, 0x96, 0x43, + 0x57, 0x5c, 0x36, 0x5c, 0x36, 0x5c, 0x16, 0x54, 0xf6, 0x53, 0xf6, 0x4b, 0xd6, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0x34, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb6, 0x3b, 0xf7, 0x3b, 0x79, 0x4c, 0xbb, 0x5c, 0x7e, 0x75, 0x3e, 0x6d, 0x3e, 0x6d, 0x3d, 0x6d, 0x3d, 0x6d, 0x5d, 0x6d, 0x5d, 0x6d, 0x9d, 0x75, 0x1d, 0x7e, 0x5e, 0x7e, 0x5e, 0x7e, 0x3e, 0x7e, 0xde, 0x75, 0x7d, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x5e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x5e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x5d, 0x75, 0xda, 0x6c, 0x99, 0x64, 0x78, 0x5c, 0x79, 0x5c, 0x17, 0x54, 0x14, 0x33, 0xf3, 0x32, 0xd3, 0x2a, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x76, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xf6, 0x53, 0x17, 0x54, 0x17, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0xf7, 0x4b, 0x14, 0x3b, 0xf3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x34, 0x43, 0x9a, 0x64, 0xbb, 0x64, 0x5a, 0x54, 0x39, 0x54, 0x9b, 0x5c, 0x3d, 0x6d, 0x9e, 0x75, 0x7e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x9e, 0x75, 0x5b, 0x75, 0x77, 0x5c, 0x17, 0x54, 0x37, 0x5c, 0x58, 0x64, 0xb9, 0x6c, 0xfb, 0x74, 0x5d, 0x7d, 0x9e, 0x85, 0xde, 0x85, 0xde, 0x85, 0xbe, 0x85, 0x9e, 0x7d, 0x5e, 0x7d, 0x3d, 0x75, 0xfd, 0x6c, 0x9a, 0x64, 0x54, 0x43, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0x55, 0x3b, 0xbc, 0x64, 0x7b, 0x5c, 0x19, 0x54, 0x39, 0x54, 0x18, 0x54, 0xd7, 0x4b, 0xd7, 0x4b, 0x18, 0x4c, 0x19, 0x54, 0x7b, 0x5c, 0xdd, 0x64, 0x1e, 0x6d, 0x5e, 0x75, 0x7e, 0x7d, 0xbe, 0x7d, 0xde, 0x85, 0xde, 0x85, 0xbe, 0x7d, 0x9e, 0x7d, 0x9e, 0x7d, 0x7e, 0x75, 0x5e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x1e, 0x6d, 0x1d, 0x6d, 0xfc, 0x64, 0xdb, 0x64, 0xbb, 0x64, 0xba, 0x5c, 0x7a, 0x5c, 0x59, 0x54, 0x38, 0x54, 0x18, 0x4c, 0xf7, 0x4b, 0xd7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x37, 0x54, + 0x57, 0x54, 0x36, 0x54, 0x36, 0x54, 0x16, 0x54, 0x16, 0x54, 0xf6, 0x4b, 0xd6, 0x4b, 0xd5, 0x4b, 0xd5, 0x4b, 0x54, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xd7, 0x43, 0x18, 0x44, 0x17, 0x44, 0xf7, 0x3b, 0x17, 0x3c, 0x17, 0x44, 0x99, 0x54, 0x7e, 0x75, 0x7e, 0x75, 0x5e, 0x6d, 0x5d, 0x6d, 0x5d, 0x6d, 0xdd, 0x75, 0xfe, 0x7d, 0xdd, 0x7d, 0xdd, 0x86, 0x1e, 0x8f, 0xfd, 0x7d, 0xde, 0x7d, 0x9e, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x9e, 0x75, 0x9e, 0x7d, 0x9e, 0x7d, 0x9e, 0x7d, 0x9e, 0x7d, 0x9e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x7e, 0x6d, 0x7e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x7e, 0x6d, 0x7e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x1c, 0x6d, 0x9a, 0x5c, 0x79, 0x5c, 0x9a, 0x5c, 0x59, 0x54, 0x55, 0x3b, 0xd3, 0x2a, 0x72, 0x22, 0x71, 0x22, 0x72, 0x22, 0x92, 0x2a, 0x14, 0x33, 0x96, 0x43, 0x55, 0x3b, 0x75, 0x3b, 0x76, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x53, 0x18, 0x54, 0x38, 0x54, 0x58, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0xf6, 0x4b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x33, 0x43, 0x9a, 0x64, 0xdc, 0x64, 0x7b, 0x5c, 0x5a, 0x54, 0xfc, 0x64, 0x7e, 0x75, 0x9e, 0x75, 0x7e, 0x6d, 0x5e, 0x6d, 0x3e, 0x65, 0x5e, 0x6d, 0xfb, 0x64, 0x17, 0x54, 0xd7, 0x4b, 0x17, 0x54, 0x37, 0x5c, 0x58, 0x5c, 0xb9, 0x64, 0x1c, 0x75, 0x7e, 0x7d, 0xde, 0x85, 0x3e, 0x8e, 0x5e, 0x8e, 0x5e, 0x8e, 0x3e, 0x8e, 0xde, 0x85, 0x9e, 0x85, 0x7e, 0x7d, 0x17, 0x54, 0xf3, 0x3a, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0xb3, 0x2a, 0x54, 0x3b, 0xdd, 0x64, 0x9c, 0x5c, 0x5a, 0x54, 0x19, 0x54, 0x18, 0x4c, 0xd8, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf8, 0x4b, 0x39, 0x54, 0x7a, 0x5c, 0xdc, 0x64, 0xfd, 0x6c, 0x5e, 0x75, 0x5e, 0x75, 0x7e, 0x75, 0x7e, 0x7d, 0x7e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x5e, 0x75, 0x5e, 0x75, 0x5e, 0x6d, 0x5e, 0x6d, 0x5d, 0x6d, 0x3d, 0x6d, 0x1c, 0x6d, 0xfb, 0x6c, 0xda, 0x64, 0xba, 0x64, 0x7a, 0x5c, 0x59, 0x54, 0x38, 0x54, 0x18, 0x4c, 0xd7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x3b, 0xf7, 0x4b, 0x57, 0x54, + 0x37, 0x4c, 0x37, 0x4c, 0x16, 0x4c, 0x16, 0x4c, 0x16, 0x4c, 0xf6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb5, 0x43, 0x75, 0x43, 0x14, 0x3b, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xd2, 0x32, 0xb6, 0x3b, 0x38, 0x44, 0x18, 0x4c, 0xf7, 0x3b, 0x17, 0x3c, 0x17, 0x3c, 0x17, 0x3c, 0xf7, 0x3b, 0xb6, 0x33, 0x78, 0x4c, 0x3b, 0x6d, 0xfd, 0x7d, 0x9e, 0x86, 0x3e, 0x7e, 0x1d, 0x7e, 0x3e, 0x7e, 0xbd, 0x75, 0xdd, 0x75, 0x1e, 0x7e, 0x1e, 0x7e, 0x1e, 0x7e, 0xfe, 0x7d, 0xfe, 0x7d, 0xde, 0x7d, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x5d, 0x6d, 0x1c, 0x6d, 0x7a, 0x5c, 0x39, 0x54, 0x17, 0x54, 0xb6, 0x43, 0xd2, 0x2a, 0x31, 0x1a, 0x71, 0x22, 0x72, 0x22, 0x72, 0x22, 0x92, 0x22, 0x92, 0x22, 0x72, 0x22, 0xb2, 0x2a, 0x35, 0x33, 0x96, 0x43, 0x76, 0x3b, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0x17, 0x54, 0x38, 0x54, 0x79, 0x5c, 0x99, 0x64, 0xd9, 0x64, 0xd9, 0x64, 0xb9, 0x64, 0xd6, 0x4b, 0x54, 0x43, 0x34, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x3a, 0xf4, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x51, 0x22, 0x12, 0x3b, 0x79, 0x64, 0xdc, 0x64, 0x9b, 0x5c, 0x9b, 0x5c, 0x1d, 0x65, 0x9e, 0x75, 0xbe, 0x75, 0x9e, 0x75, 0x7e, 0x6d, 0x1c, 0x65, 0x38, 0x54, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0x17, 0x54, 0x58, 0x5c, 0x99, 0x64, 0xfc, 0x6c, 0x5e, 0x75, 0xde, 0x85, 0x3e, 0x8e, 0x9e, 0x96, 0xde, 0x96, 0xde, 0x96, 0x9e, 0x96, 0x7e, 0x96, 0x1a, 0x75, 0x34, 0x43, 0xd2, 0x32, 0xd3, 0x3a, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x72, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xb3, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb6, 0x43, 0xdd, 0x64, 0xbc, 0x5c, 0x5a, 0x54, 0x18, 0x54, 0xf8, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0x18, 0x54, 0x38, 0x54, 0x7a, 0x5c, 0xbc, 0x64, 0xdd, 0x64, 0xfd, 0x6c, 0x1e, 0x6d, 0x1e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x5e, 0x6d, 0x5e, 0x75, 0x7e, 0x75, 0x7d, 0x75, 0x5d, 0x75, 0x5c, 0x75, 0x3b, 0x6d, 0x1b, 0x6d, 0xfa, 0x64, 0xb9, 0x64, 0x79, 0x5c, 0x59, 0x54, 0x18, 0x4c, 0xf8, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0x96, 0x43, 0x76, 0x43, 0x76, 0x3b, 0x76, 0x3b, 0x17, 0x4c, 0x37, 0x4c, + 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x16, 0x4c, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xf3, 0x32, 0xb7, 0x43, 0x38, 0x44, 0x18, 0x44, 0x38, 0x4c, 0x18, 0x44, 0x18, 0x44, 0x17, 0x3c, 0x17, 0x3c, 0xf7, 0x3b, 0x18, 0x44, 0xf7, 0x3b, 0xd6, 0x3b, 0xd6, 0x3b, 0x98, 0x54, 0xbb, 0x75, 0xdb, 0x75, 0x9b, 0x6d, 0xdc, 0x75, 0x5e, 0x7e, 0x3e, 0x86, 0xde, 0x7d, 0xbe, 0x7d, 0xde, 0x7d, 0x1e, 0x7e, 0xfe, 0x7d, 0xbe, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0xbe, 0x7d, 0xbe, 0x7d, 0xbe, 0x7d, 0xde, 0x7d, 0xfe, 0x7d, 0xfe, 0x7d, 0x7c, 0x75, 0x3b, 0x6d, 0xfb, 0x64, 0xba, 0x64, 0x79, 0x5c, 0x18, 0x54, 0xd7, 0x4b, 0x96, 0x4b, 0xf3, 0x32, 0x71, 0x22, 0x51, 0x22, 0x71, 0x22, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x22, 0x92, 0x2a, 0x92, 0x22, 0x92, 0x22, 0x92, 0x22, 0x72, 0x22, 0xb2, 0x2a, 0x55, 0x3b, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x38, 0x54, 0x79, 0x5c, 0xb9, 0x64, 0xf9, 0x6c, 0x1a, 0x75, 0xb8, 0x6c, 0xd6, 0x53, 0x74, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0xd7, 0x4b, 0xdc, 0x64, 0xbc, 0x64, 0xfc, 0x64, 0x5d, 0x6d, 0xbd, 0x75, 0xde, 0x75, 0x9d, 0x6d, 0x79, 0x5c, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0x17, 0x54, 0x38, 0x54, 0x79, 0x5c, 0xdb, 0x64, 0x3d, 0x75, 0xbe, 0x85, 0x1e, 0x8e, 0xbe, 0x96, 0x1e, 0x97, 0x3d, 0x9f, 0x5e, 0x9f, 0x9c, 0x96, 0xd5, 0x53, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xd3, 0x3a, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x72, 0x32, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x93, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0x75, 0x43, 0xbd, 0x64, 0x9d, 0x5c, 0x39, 0x54, 0x18, 0x54, 0xf8, 0x4b, 0xf7, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0x18, 0x54, 0x39, 0x54, 0x7a, 0x5c, 0x7b, 0x5c, 0xbc, 0x64, 0xdc, 0x64, 0xdd, 0x6c, 0xfe, 0x6c, 0x1e, 0x6d, 0x3e, 0x6d, 0x5e, 0x75, 0x5e, 0x75, 0x7d, 0x75, 0x7c, 0x75, 0x5c, 0x75, 0x5b, 0x75, 0x3b, 0x75, 0x1a, 0x6d, 0xfa, 0x64, 0xb9, 0x64, 0x79, 0x5c, 0x59, 0x54, 0x18, 0x4c, 0xd7, 0x4b, 0xb7, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x3b, 0xd7, 0x43, 0x38, 0x4c, 0x17, 0x4c, + 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x55, 0x43, 0xf4, 0x3a, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd7, 0x43, 0x39, 0x44, 0x18, 0x44, 0x18, 0x44, 0x38, 0x4c, 0x18, 0x4c, 0xf7, 0x43, 0x38, 0x44, 0x18, 0x44, 0x18, 0x44, 0x17, 0x44, 0x17, 0x44, 0x17, 0x44, 0x17, 0x44, 0xf7, 0x3b, 0xd7, 0x3b, 0x17, 0x44, 0x37, 0x4c, 0x58, 0x4c, 0x78, 0x4c, 0xb8, 0x4c, 0x1a, 0x5d, 0x19, 0x65, 0x5b, 0x6d, 0x9c, 0x75, 0x9b, 0x75, 0x3a, 0x75, 0x3a, 0x75, 0x3a, 0x75, 0x1a, 0x6d, 0xfa, 0x6c, 0x98, 0x5c, 0x37, 0x54, 0xf6, 0x4b, 0x75, 0x3b, 0x54, 0x3b, 0x33, 0x3b, 0x13, 0x33, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x22, 0x92, 0x22, 0x92, 0x22, 0x92, 0x22, 0x92, 0x22, 0xd3, 0x2a, 0x55, 0x3b, 0x96, 0x3b, 0xb6, 0x43, 0xd7, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0x38, 0x54, 0x79, 0x5c, 0xba, 0x64, 0xfa, 0x6c, 0x1a, 0x75, 0x99, 0x6c, 0xb5, 0x53, 0x74, 0x4b, 0x74, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x34, 0x3b, 0x9a, 0x5c, 0xfd, 0x6c, 0x3d, 0x6d, 0x5d, 0x6d, 0x9e, 0x75, 0xfa, 0x64, 0x38, 0x54, 0x18, 0x54, 0xf7, 0x53, 0xf7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0x18, 0x54, 0x58, 0x5c, 0x9a, 0x5c, 0xfd, 0x6c, 0x9e, 0x7d, 0xfe, 0x85, 0x7e, 0x8e, 0x1d, 0x9f, 0x3d, 0x9f, 0x7e, 0xb7, 0x96, 0x6c, 0x33, 0x43, 0x33, 0x43, 0x13, 0x43, 0x13, 0x3b, 0xf3, 0x3a, 0xd3, 0x3a, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x93, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0x55, 0x3b, 0xbc, 0x64, 0x9c, 0x5c, 0x5a, 0x54, 0x38, 0x54, 0x18, 0x4c, 0xd7, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf8, 0x53, 0x18, 0x54, 0x39, 0x54, 0x79, 0x5c, 0x7a, 0x5c, 0x9c, 0x64, 0xdd, 0x64, 0xfe, 0x6c, 0xfe, 0x6c, 0x1e, 0x6d, 0x5e, 0x75, 0x5d, 0x75, 0x7c, 0x75, 0x5c, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x1a, 0x75, 0xfa, 0x6c, 0xd9, 0x64, 0x99, 0x64, 0x79, 0x5c, 0x18, 0x54, 0xf7, 0x4b, 0xb7, 0x43, 0x96, 0x43, 0x76, 0x43, 0x76, 0x3b, 0x18, 0x4c, 0x17, 0x44, 0x17, 0x4c, + 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x39, 0x4c, 0x18, 0x44, 0x18, 0x44, 0x38, 0x4c, 0x18, 0x44, 0x58, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0xf8, 0x3b, 0x38, 0x44, 0x18, 0x44, 0x58, 0x44, 0x18, 0x44, 0xf7, 0x3b, 0x37, 0x44, 0xf7, 0x43, 0x17, 0x44, 0xf7, 0x43, 0x37, 0x44, 0x17, 0x44, 0x37, 0x44, 0x38, 0x44, 0x17, 0x44, 0x17, 0x44, 0x17, 0x44, 0x37, 0x4c, 0xb6, 0x43, 0x34, 0x33, 0x54, 0x3b, 0x14, 0x33, 0xf3, 0x32, 0x13, 0x33, 0x13, 0x33, 0x13, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x22, 0x92, 0x22, 0x92, 0x22, 0x92, 0x22, 0x92, 0x22, 0x92, 0x22, 0x92, 0x22, 0x92, 0x22, 0xb2, 0x22, 0xf3, 0x2a, 0x75, 0x3b, 0x75, 0x3b, 0x76, 0x43, 0xb6, 0x43, 0xf7, 0x4b, 0x17, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x79, 0x5c, 0xba, 0x64, 0xda, 0x64, 0xf9, 0x6c, 0x37, 0x64, 0x75, 0x4b, 0x75, 0x4b, 0x75, 0x4b, 0x75, 0x4b, 0x75, 0x43, 0x75, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x3a, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb1, 0x2a, 0xf7, 0x4b, 0x3d, 0x6d, 0x9e, 0x75, 0x1c, 0x65, 0x7a, 0x5c, 0x59, 0x54, 0x58, 0x54, 0x38, 0x54, 0xf8, 0x53, 0xf7, 0x4b, 0xf7, 0x53, 0xf7, 0x53, 0x38, 0x54, 0x79, 0x5c, 0xbc, 0x64, 0x5d, 0x75, 0xbe, 0x85, 0x5e, 0x8e, 0xfe, 0x96, 0x7e, 0xaf, 0xf8, 0x74, 0x74, 0x4b, 0x54, 0x4b, 0x34, 0x43, 0x33, 0x43, 0x33, 0x43, 0x13, 0x3b, 0xf3, 0x3a, 0xd3, 0x3a, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x93, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xd3, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd4, 0x32, 0xb2, 0x2a, 0xdc, 0x64, 0xbd, 0x5c, 0x5a, 0x54, 0x39, 0x54, 0x18, 0x4c, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0xf8, 0x53, 0x18, 0x54, 0x39, 0x54, 0x7a, 0x5c, 0x7a, 0x5c, 0xbc, 0x64, 0xdd, 0x64, 0xfe, 0x6c, 0x1d, 0x6d, 0x5d, 0x75, 0x5c, 0x75, 0x5c, 0x75, 0x5b, 0x75, 0x3b, 0x75, 0x3a, 0x75, 0x1a, 0x6d, 0xda, 0x6c, 0xb9, 0x64, 0x79, 0x5c, 0x38, 0x54, 0xf7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0x76, 0x43, 0x18, 0x4c, 0x18, 0x4c, 0xf7, 0x43, 0xf7, 0x43, + 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xb7, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x3b, 0x75, 0x3b, 0x35, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xf4, 0x32, 0xd4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0x14, 0x33, 0x75, 0x3b, 0x38, 0x44, 0x18, 0x44, 0x39, 0x44, 0x39, 0x44, 0x38, 0x44, 0x39, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x38, 0x44, 0x38, 0x44, 0x38, 0x44, 0xf7, 0x43, 0x38, 0x44, 0x38, 0x4c, 0x17, 0x44, 0x17, 0x44, 0xf7, 0x43, 0x17, 0x44, 0x58, 0x4c, 0x38, 0x4c, 0x58, 0x44, 0x37, 0x44, 0x58, 0x4c, 0x38, 0x4c, 0x58, 0x4c, 0x37, 0x4c, 0xf6, 0x43, 0x34, 0x33, 0x54, 0x3b, 0x34, 0x3b, 0xf4, 0x32, 0xf4, 0x32, 0x13, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xb3, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xd2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x22, 0xb2, 0x22, 0xb2, 0x22, 0x92, 0x22, 0x92, 0x22, 0x92, 0x22, 0xb2, 0x22, 0xf3, 0x2a, 0x96, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x38, 0x54, 0x78, 0x54, 0xb9, 0x64, 0x37, 0x54, 0x75, 0x43, 0x95, 0x4b, 0x75, 0x4b, 0x95, 0x4b, 0x75, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x3a, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0x92, 0x2a, 0x33, 0x3b, 0x79, 0x5c, 0xbb, 0x64, 0x7b, 0x5c, 0x7a, 0x5c, 0x79, 0x5c, 0x59, 0x54, 0x38, 0x54, 0x18, 0x54, 0xf7, 0x4b, 0xf7, 0x4b, 0x18, 0x54, 0x38, 0x54, 0x9a, 0x5c, 0xfd, 0x6c, 0x9e, 0x7d, 0xfe, 0x85, 0x9e, 0x96, 0x7c, 0x96, 0x56, 0x64, 0x54, 0x4b, 0x74, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x43, 0x34, 0x43, 0x13, 0x3b, 0xf3, 0x3a, 0xd3, 0x3a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x32, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x93, 0x2a, 0x93, 0x2a, 0x93, 0x2a, 0x93, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd4, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x39, 0x54, 0xbd, 0x64, 0x9c, 0x5c, 0x5a, 0x54, 0x19, 0x54, 0xf8, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0x38, 0x54, 0x39, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x9c, 0x5c, 0xdd, 0x64, 0xfd, 0x6c, 0x1d, 0x6d, 0x3c, 0x75, 0x5c, 0x75, 0x5b, 0x75, 0x3b, 0x75, 0x3a, 0x75, 0x1a, 0x6d, 0xda, 0x6c, 0xba, 0x64, 0x79, 0x5c, 0x59, 0x54, 0xf7, 0x4b, 0xd7, 0x4b, 0x96, 0x43, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x43, 0xf7, 0x43, 0xd7, 0x43, + 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xb7, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x96, 0x43, 0x96, 0x3b, 0x76, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x3a, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x34, 0x3b, 0xd7, 0x43, 0x38, 0x44, 0x38, 0x44, 0x38, 0x44, 0x18, 0x44, 0x39, 0x44, 0x38, 0x4c, 0x39, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x38, 0x44, 0x17, 0x44, 0x17, 0x44, 0xf7, 0x43, 0x17, 0x44, 0x17, 0x44, 0x17, 0x44, 0x17, 0x44, 0x17, 0x44, 0x17, 0x44, 0x17, 0x44, 0x37, 0x4c, 0x38, 0x4c, 0x18, 0x44, 0x38, 0x44, 0x38, 0x4c, 0x58, 0x4c, 0xd6, 0x43, 0x54, 0x3b, 0x55, 0x3b, 0x54, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0x13, 0x33, 0x13, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xb3, 0x2a, 0xd3, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x22, 0xb2, 0x22, 0xb2, 0x22, 0xb2, 0x22, 0xb2, 0x22, 0xb2, 0x22, 0xd2, 0x22, 0xf4, 0x32, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x38, 0x54, 0x58, 0x54, 0xf6, 0x4b, 0x95, 0x43, 0x95, 0x4b, 0x95, 0x4b, 0x75, 0x4b, 0x54, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x71, 0x2a, 0x96, 0x43, 0x7b, 0x5c, 0x9c, 0x5c, 0x9b, 0x5c, 0x59, 0x5c, 0x39, 0x54, 0x18, 0x54, 0xf7, 0x4b, 0x17, 0x54, 0x17, 0x54, 0x38, 0x54, 0x79, 0x5c, 0xdc, 0x64, 0x5e, 0x75, 0x9e, 0x7d, 0x3e, 0x8e, 0xf8, 0x6c, 0x94, 0x4b, 0x54, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x54, 0x43, 0x34, 0x43, 0x34, 0x43, 0xf3, 0x3a, 0xf3, 0x3a, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0x93, 0x2a, 0x93, 0x2a, 0x93, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd4, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x56, 0x3b, 0xdc, 0x64, 0xdd, 0x64, 0x7b, 0x5c, 0x39, 0x54, 0x18, 0x4c, 0xd7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0x18, 0x4c, 0x18, 0x54, 0x38, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0xdd, 0x64, 0xdd, 0x6c, 0xfc, 0x6c, 0x1c, 0x6d, 0x3b, 0x6d, 0x3b, 0x75, 0x1b, 0x75, 0xfa, 0x6c, 0xda, 0x6c, 0xba, 0x64, 0x99, 0x64, 0x59, 0x5c, 0xf8, 0x53, 0xd7, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0xf8, 0x4b, 0xd7, 0x43, 0xd7, 0x43, + 0xd7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x96, 0x43, 0x18, 0x44, 0x19, 0x44, 0x38, 0x44, 0x39, 0x44, 0x18, 0x44, 0x38, 0x44, 0x38, 0x44, 0x39, 0x4c, 0x39, 0x4c, 0x39, 0x4c, 0x18, 0x44, 0x17, 0x4c, 0xf7, 0x43, 0x17, 0x44, 0x38, 0x44, 0x17, 0x44, 0x38, 0x44, 0x18, 0x44, 0x17, 0x44, 0x38, 0x4c, 0x18, 0x44, 0x38, 0x4c, 0x37, 0x44, 0x58, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x78, 0x4c, 0x58, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0xd6, 0x43, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x34, 0x3b, 0x34, 0x33, 0x34, 0x3b, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x13, 0x33, 0x13, 0x33, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xb2, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb2, 0x2a, 0xb3, 0x22, 0xb3, 0x22, 0xb3, 0x22, 0xb3, 0x22, 0xb3, 0x2a, 0xb2, 0x2a, 0xf4, 0x32, 0x96, 0x43, 0xd7, 0x43, 0xd6, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0xf7, 0x4b, 0xb6, 0x4b, 0x95, 0x43, 0x95, 0x4b, 0x75, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0xd7, 0x53, 0x9b, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x39, 0x54, 0x18, 0x54, 0x18, 0x4c, 0x18, 0x54, 0x17, 0x54, 0x18, 0x54, 0x38, 0x54, 0x9a, 0x5c, 0xfd, 0x6c, 0x5e, 0x75, 0xbd, 0x85, 0xf6, 0x53, 0x54, 0x43, 0x74, 0x4b, 0x94, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x54, 0x4b, 0x54, 0x43, 0x34, 0x43, 0x13, 0x3b, 0xf3, 0x3a, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0x93, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0xf3, 0x32, 0x7a, 0x5c, 0xfd, 0x6c, 0xbc, 0x64, 0x5a, 0x54, 0x18, 0x54, 0xf8, 0x4b, 0xf8, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf8, 0x4b, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0xbc, 0x64, 0xdc, 0x64, 0xdc, 0x6c, 0xfc, 0x6c, 0xfb, 0x6c, 0xda, 0x6c, 0xda, 0x6c, 0xba, 0x64, 0xba, 0x64, 0x79, 0x5c, 0x39, 0x5c, 0x18, 0x54, 0xf8, 0x4b, 0x39, 0x4c, 0x18, 0x4c, 0xf8, 0x4b, 0xf7, 0x43, 0xd7, 0x43, 0xd7, 0x43, + 0xb7, 0x43, 0xb7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x96, 0x43, 0x76, 0x3b, 0x76, 0x43, 0x75, 0x3b, 0x76, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0xd7, 0x43, 0x39, 0x4c, 0x39, 0x4c, 0x39, 0x4c, 0x38, 0x44, 0x18, 0x44, 0x38, 0x44, 0x18, 0x44, 0x18, 0x44, 0x18, 0x4c, 0x38, 0x4c, 0xf8, 0x43, 0x18, 0x4c, 0xf7, 0x43, 0x17, 0x4c, 0x17, 0x44, 0x38, 0x44, 0x58, 0x4c, 0x38, 0x44, 0x38, 0x4c, 0x58, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x78, 0x4c, 0x78, 0x4c, 0x79, 0x4c, 0x58, 0x4c, 0x58, 0x4c, 0x58, 0x4c, 0x58, 0x4c, 0xd7, 0x43, 0x75, 0x3b, 0x96, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x13, 0x33, 0x13, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xb3, 0x22, 0xd3, 0x22, 0xd3, 0x22, 0xf3, 0x2a, 0xd3, 0x2a, 0xf3, 0x32, 0xb6, 0x43, 0xd7, 0x4b, 0xd7, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xd7, 0x4b, 0x76, 0x43, 0x96, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x54, 0x43, 0x34, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0xb2, 0x32, 0xf8, 0x53, 0x7a, 0x5c, 0x39, 0x54, 0x38, 0x54, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x54, 0x38, 0x54, 0x59, 0x54, 0xbc, 0x64, 0x5e, 0x75, 0x58, 0x5c, 0x74, 0x43, 0x54, 0x43, 0x74, 0x4b, 0x94, 0x4b, 0x94, 0x4b, 0x94, 0x4b, 0x94, 0x4b, 0x94, 0x4b, 0x74, 0x4b, 0x54, 0x43, 0x54, 0x43, 0x34, 0x43, 0x14, 0x3b, 0xf3, 0x3a, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0x93, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x72, 0x2a, 0xb2, 0x2a, 0x72, 0x2a, 0xd6, 0x4b, 0xfd, 0x6c, 0xdd, 0x64, 0x7b, 0x5c, 0x39, 0x54, 0x18, 0x4c, 0xf8, 0x4b, 0xf8, 0x4b, 0x18, 0x54, 0xf8, 0x4b, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x39, 0x54, 0x59, 0x5c, 0x7a, 0x5c, 0x9b, 0x5c, 0xbc, 0x64, 0xbc, 0x64, 0xdb, 0x64, 0xdb, 0x64, 0xba, 0x64, 0xba, 0x64, 0x7a, 0x64, 0x59, 0x5c, 0x38, 0x5c, 0x18, 0x54, 0x59, 0x54, 0x39, 0x4c, 0x18, 0x4c, 0xf8, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, + 0xb7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x96, 0x43, 0x76, 0x3b, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x54, 0x3b, 0x55, 0x43, 0x96, 0x43, 0x38, 0x4c, 0x38, 0x4c, 0x39, 0x4c, 0x59, 0x4c, 0x39, 0x4c, 0x39, 0x4c, 0x38, 0x4c, 0x18, 0x44, 0x39, 0x4c, 0x18, 0x44, 0xf8, 0x43, 0xd7, 0x43, 0x18, 0x44, 0x18, 0x44, 0x18, 0x44, 0xf7, 0x4b, 0x17, 0x4c, 0x38, 0x4c, 0x38, 0x44, 0x58, 0x4c, 0x38, 0x44, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x58, 0x4c, 0x78, 0x4c, 0x79, 0x4c, 0x99, 0x54, 0x99, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x99, 0x54, 0xf7, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x13, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x32, 0xf3, 0x2a, 0xf3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0x75, 0x3b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0xf7, 0x4b, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x33, 0xf3, 0x32, 0x13, 0x33, 0x13, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x92, 0x32, 0x30, 0x22, 0xf2, 0x3a, 0x59, 0x5c, 0x7a, 0x5c, 0x18, 0x54, 0xf8, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x7a, 0x5c, 0xdb, 0x64, 0xb6, 0x4b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x95, 0x4b, 0x95, 0x4b, 0x74, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x94, 0x4b, 0x74, 0x4b, 0x54, 0x43, 0x34, 0x43, 0x14, 0x43, 0xf3, 0x3a, 0xd3, 0x3a, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x3a, 0xf2, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0xb2, 0x2a, 0x5a, 0x5c, 0xdc, 0x64, 0xbc, 0x64, 0x5a, 0x54, 0x19, 0x54, 0x18, 0x4c, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x53, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x39, 0x54, 0x59, 0x5c, 0x5a, 0x5c, 0x9a, 0x5c, 0x9a, 0x64, 0x9b, 0x64, 0xbb, 0x64, 0x9a, 0x64, 0x7a, 0x5c, 0x59, 0x5c, 0x59, 0x5c, 0x38, 0x54, 0x79, 0x54, 0x59, 0x54, 0x39, 0x4c, 0x18, 0x4c, 0xf8, 0x4b, 0xd7, 0x43, 0xb7, 0x43, 0xd7, 0x43, + 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x55, 0x43, 0xb6, 0x43, 0x18, 0x4c, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x39, 0x4c, 0x39, 0x4c, 0x39, 0x4c, 0x38, 0x4c, 0xf8, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0x18, 0x4c, 0x18, 0x44, 0xf7, 0x4b, 0x18, 0x4c, 0x58, 0x4c, 0x38, 0x4c, 0x58, 0x4c, 0x58, 0x4c, 0x58, 0x4c, 0x78, 0x4c, 0x79, 0x4c, 0x79, 0x4c, 0x78, 0x54, 0x9a, 0x54, 0xba, 0x54, 0xba, 0x54, 0xba, 0x54, 0xba, 0x54, 0xba, 0x54, 0xdb, 0x5c, 0x38, 0x4c, 0xd7, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x33, 0xf3, 0x32, 0x13, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0x14, 0x2b, 0xf3, 0x2a, 0xf4, 0x32, 0x55, 0x3b, 0xd7, 0x43, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0xd7, 0x4b, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0x13, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x92, 0x2a, 0x39, 0x54, 0x7a, 0x5c, 0x39, 0x54, 0x18, 0x4c, 0xf7, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x18, 0x54, 0xd7, 0x4b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x54, 0x43, 0x75, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x75, 0x4b, 0x54, 0x43, 0x54, 0x43, 0x34, 0x43, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x72, 0x32, 0x92, 0x32, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x3a, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x2a, 0xb2, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xf4, 0x3a, 0x39, 0x5c, 0xdd, 0x64, 0x9b, 0x5c, 0x39, 0x54, 0x18, 0x54, 0xf8, 0x4b, 0x18, 0x54, 0x18, 0x4c, 0xf8, 0x53, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x39, 0x5c, 0x59, 0x5c, 0x59, 0x5c, 0x59, 0x5c, 0x79, 0x5c, 0x59, 0x5c, 0x9a, 0x64, 0x58, 0x5c, 0x39, 0x5c, 0x7a, 0x5c, 0x5a, 0x54, 0x39, 0x54, 0x18, 0x4c, 0xf8, 0x4b, 0xd7, 0x43, 0xd7, 0x43, 0xb7, 0x43, 0xb7, 0x43, + 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xf7, 0x4b, 0x9b, 0x5c, 0x58, 0x54, 0x39, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x39, 0x4c, 0x39, 0x54, 0x39, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0x18, 0x44, 0xf8, 0x4b, 0xf7, 0x4b, 0x38, 0x4c, 0x99, 0x4c, 0x79, 0x54, 0x58, 0x4c, 0x79, 0x54, 0x79, 0x54, 0x59, 0x4c, 0xb9, 0x54, 0x9a, 0x5c, 0xbb, 0x5c, 0xdb, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0x1c, 0x65, 0xfb, 0x5c, 0x99, 0x5c, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x13, 0x33, 0x14, 0x33, 0x14, 0x33, 0x13, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x2b, 0x14, 0x2b, 0x14, 0x2b, 0x14, 0x2b, 0xf4, 0x2a, 0x14, 0x2b, 0x14, 0x2b, 0x34, 0x33, 0x34, 0x33, 0x34, 0x33, 0x75, 0x3b, 0x18, 0x4c, 0x39, 0x4c, 0x39, 0x54, 0xf7, 0x4b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x30, 0x22, 0x71, 0x2a, 0x39, 0x54, 0x9b, 0x5c, 0x39, 0x54, 0x38, 0x54, 0xf8, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x43, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x75, 0x43, 0x95, 0x4b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x34, 0x43, 0x13, 0x3b, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x2a, 0x39, 0x54, 0xbc, 0x64, 0x5a, 0x5c, 0x39, 0x54, 0x19, 0x54, 0xf8, 0x4b, 0xf8, 0x53, 0xf8, 0x53, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x38, 0x5c, 0x38, 0x5c, 0x38, 0x5c, 0x59, 0x5c, 0x9a, 0x64, 0x38, 0x54, 0x7a, 0x5c, 0x7a, 0x54, 0x59, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0xf7, 0x4b, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xb7, 0x43, + 0x96, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb7, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xb6, 0x43, 0x38, 0x54, 0xbc, 0x5c, 0xbd, 0x5c, 0xbc, 0x5c, 0x7a, 0x5c, 0x59, 0x54, 0x39, 0x54, 0x59, 0x54, 0x39, 0x4c, 0x39, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x58, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x44, 0xd7, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xf8, 0x4b, 0xf8, 0x4b, 0xf7, 0x4b, 0x79, 0x4c, 0x59, 0x4c, 0x79, 0x4c, 0x79, 0x4c, 0x79, 0x54, 0xba, 0x54, 0xba, 0x54, 0x9a, 0x54, 0xdb, 0x5c, 0xfc, 0x5c, 0x3d, 0x65, 0x1d, 0x5d, 0x3c, 0x65, 0x3d, 0x65, 0x3d, 0x65, 0x5d, 0x6d, 0xda, 0x5c, 0x58, 0x54, 0x79, 0x54, 0x58, 0x54, 0x38, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, 0x34, 0x33, 0x14, 0x33, 0x34, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x2b, 0x14, 0x2b, 0x14, 0x2b, 0x14, 0x2b, 0x14, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x3b, 0xb6, 0x43, 0x39, 0x4c, 0xf8, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0xb2, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x22, 0xd3, 0x32, 0x18, 0x54, 0x7a, 0x54, 0x59, 0x54, 0x38, 0x54, 0xf8, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0x75, 0x43, 0x14, 0x3b, 0xf3, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x3a, 0x14, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0x93, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0x72, 0x2a, 0xb2, 0x2a, 0xd6, 0x4b, 0x7b, 0x5c, 0x59, 0x54, 0x19, 0x54, 0xf8, 0x53, 0xf8, 0x53, 0xf8, 0x53, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x39, 0x5c, 0x59, 0x5c, 0xbc, 0x5c, 0x59, 0x54, 0x59, 0x54, 0x38, 0x54, 0x38, 0x54, 0x18, 0x4c, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0xb7, 0x43, 0xb7, 0x43, + 0xd7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x4b, 0xb7, 0x4b, 0xf7, 0x4b, 0x19, 0x4c, 0x39, 0x4c, 0x7b, 0x54, 0xdc, 0x54, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0x9b, 0x5c, 0x9a, 0x5c, 0x79, 0x54, 0x59, 0x54, 0x59, 0x54, 0x39, 0x54, 0x59, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0x18, 0x4c, 0xf7, 0x4b, 0x59, 0x4c, 0x99, 0x54, 0x99, 0x54, 0x99, 0x54, 0xba, 0x54, 0xbb, 0x54, 0xba, 0x54, 0xfc, 0x5c, 0xfc, 0x5c, 0x3d, 0x65, 0x3d, 0x65, 0x7e, 0x6d, 0x7e, 0x6d, 0x7d, 0x6d, 0x9d, 0x6d, 0x7d, 0x6d, 0x1c, 0x6d, 0x9a, 0x5c, 0xba, 0x64, 0xba, 0x5c, 0x99, 0x5c, 0x58, 0x54, 0x38, 0x54, 0x17, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x2b, 0x34, 0x2b, 0x34, 0x2b, 0x54, 0x33, 0x54, 0x33, 0x54, 0x33, 0x55, 0x3b, 0x34, 0x33, 0x55, 0x3b, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xd2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0xef, 0x19, 0x71, 0x2a, 0xf8, 0x4b, 0x7a, 0x5c, 0x59, 0x54, 0x38, 0x54, 0x18, 0x54, 0xf7, 0x4b, 0x75, 0x43, 0x14, 0x3b, 0xf4, 0x3a, 0xf3, 0x3a, 0xf4, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x34, 0x3b, 0xf3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x93, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0xb2, 0x2a, 0x75, 0x43, 0x96, 0x43, 0xf7, 0x4b, 0x59, 0x5c, 0x39, 0x54, 0x38, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0xf8, 0x53, 0x38, 0x54, 0x59, 0x5c, 0x7b, 0x5c, 0x9b, 0x5c, 0x7a, 0x54, 0x38, 0x54, 0x18, 0x54, 0x18, 0x54, 0xf8, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0xb7, 0x43, + 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0x39, 0x4c, 0x39, 0x4c, 0x9a, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0xbb, 0x54, 0xbb, 0x5c, 0x9c, 0x5c, 0xbb, 0x5c, 0x9b, 0x5c, 0x9a, 0x5c, 0x9a, 0x5c, 0x79, 0x5c, 0x59, 0x54, 0x59, 0x54, 0x39, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x54, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0xf7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x38, 0x4c, 0x79, 0x54, 0x99, 0x54, 0xbb, 0x5c, 0xfb, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0x1d, 0x65, 0x3d, 0x6d, 0x7d, 0x6d, 0xbd, 0x6d, 0xbe, 0x6d, 0xbe, 0x75, 0xbd, 0x75, 0xfe, 0x75, 0x1e, 0x76, 0x9d, 0x75, 0xfd, 0x64, 0x1d, 0x6d, 0x1d, 0x65, 0xdc, 0x64, 0xba, 0x5c, 0x79, 0x5c, 0x58, 0x5c, 0x38, 0x54, 0x38, 0x54, 0x37, 0x54, 0x17, 0x54, 0x17, 0x4c, 0xd6, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x33, 0x54, 0x33, 0x55, 0x33, 0x54, 0x33, 0x54, 0x33, 0x54, 0x33, 0x54, 0x33, 0x54, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, 0x75, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x55, 0x3b, 0x14, 0x33, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x2a, 0xd2, 0x2a, 0xd2, 0x2a, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0xd2, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x30, 0x22, 0x10, 0x1a, 0x51, 0x22, 0x96, 0x4b, 0x59, 0x5c, 0x59, 0x5c, 0x58, 0x5c, 0xf7, 0x53, 0x55, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x3a, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x3a, 0xf3, 0x32, 0x14, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x3b, 0xf3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0xb3, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xd3, 0x32, 0x14, 0x3b, 0x55, 0x3b, 0xb6, 0x4b, 0x38, 0x54, 0x7a, 0x5c, 0x39, 0x5c, 0x18, 0x54, 0x59, 0x5c, 0x7a, 0x5c, 0x9a, 0x5c, 0x7a, 0x5c, 0x7a, 0x54, 0x39, 0x54, 0x18, 0x54, 0x18, 0x4c, 0xf8, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, + 0xf7, 0x4b, 0xd7, 0x43, 0xd7, 0x43, 0xf8, 0x43, 0x18, 0x44, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x59, 0x54, 0x7a, 0x54, 0x5b, 0x54, 0x9b, 0x54, 0x9b, 0x5c, 0x9b, 0x54, 0x9b, 0x5c, 0x7a, 0x5c, 0xba, 0x5c, 0x99, 0x5c, 0x9a, 0x5c, 0x79, 0x54, 0x59, 0x54, 0x59, 0x54, 0x38, 0x54, 0x38, 0x54, 0x18, 0x4c, 0x38, 0x54, 0x18, 0x4c, 0x18, 0x4c, 0xd7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0xb6, 0x43, 0xb7, 0x43, 0xb7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x38, 0x4c, 0x39, 0x54, 0x7a, 0x5c, 0xbc, 0x5c, 0x1d, 0x65, 0x5e, 0x6d, 0xbe, 0x75, 0xdd, 0x75, 0xfd, 0x7d, 0x7e, 0x7e, 0x3d, 0x7e, 0x7e, 0x86, 0xde, 0x8e, 0x5e, 0x7e, 0x5d, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x3e, 0x6d, 0x1d, 0x6d, 0xdb, 0x64, 0xbb, 0x64, 0xbb, 0x64, 0x9a, 0x5c, 0x79, 0x5c, 0x58, 0x5c, 0x58, 0x54, 0x38, 0x54, 0x17, 0x54, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xd6, 0x4b, 0xb6, 0x4b, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb5, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, 0x75, 0x33, 0x75, 0x33, 0x75, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0x92, 0x2a, 0xb2, 0x2a, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x2a, 0xd2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xd3, 0x32, 0x14, 0x3b, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x30, 0x22, 0xef, 0x19, 0xef, 0x19, 0x75, 0x43, 0x59, 0x5c, 0x59, 0x5c, 0xf7, 0x53, 0x75, 0x43, 0x54, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x34, 0x3b, 0x34, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0x93, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x55, 0x43, 0x38, 0x4c, 0x7a, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x39, 0x54, 0x38, 0x54, 0x18, 0x54, 0xf8, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, + 0xd7, 0x3b, 0xd7, 0x3b, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0x18, 0x44, 0x18, 0x4c, 0x18, 0x4c, 0x58, 0x4c, 0x5a, 0x4c, 0x7a, 0x54, 0x7a, 0x54, 0x9a, 0x54, 0x9b, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x9a, 0x5c, 0xb9, 0x64, 0x9a, 0x5c, 0x7a, 0x5c, 0x79, 0x54, 0x59, 0x54, 0x38, 0x54, 0x38, 0x54, 0xf7, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb7, 0x43, 0xb7, 0x4b, 0x18, 0x54, 0x38, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0xbc, 0x5c, 0xdd, 0x64, 0x1e, 0x6d, 0x9e, 0x75, 0xfe, 0x7d, 0x3e, 0x86, 0xdd, 0x86, 0x3d, 0x8f, 0x1c, 0x8f, 0xdd, 0x8e, 0xdd, 0x8e, 0x1e, 0x86, 0x1e, 0x86, 0xbe, 0x7d, 0xbe, 0x7d, 0xbe, 0x7d, 0x5e, 0x75, 0x3e, 0x6d, 0x1d, 0x6d, 0xfc, 0x6c, 0xdb, 0x64, 0xba, 0x64, 0xba, 0x5c, 0x58, 0x54, 0x17, 0x54, 0xf7, 0x53, 0x95, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x54, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x53, 0x38, 0x54, 0x58, 0x5c, 0x79, 0x64, 0x99, 0x64, 0x79, 0x64, 0xf7, 0x4b, 0xb6, 0x3b, 0x96, 0x3b, 0x75, 0x33, 0x55, 0x33, 0x75, 0x33, 0x75, 0x33, 0x55, 0x33, 0x75, 0x33, 0x75, 0x33, 0x75, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0xb6, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x14, 0x3b, 0xd3, 0x2a, 0xd3, 0x32, 0xd3, 0x2a, 0xd2, 0x2a, 0xd2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xf3, 0x32, 0xf3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x10, 0x22, 0xef, 0x19, 0x8d, 0x19, 0x34, 0x43, 0x59, 0x5c, 0xd7, 0x4b, 0x75, 0x43, 0x55, 0x43, 0x54, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0xf4, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x33, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb6, 0x43, 0xb5, 0x3b, 0xd6, 0x3b, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xf7, 0x43, 0xf7, 0x3b, 0xd7, 0x3b, 0x95, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, + 0xb6, 0x3b, 0xb6, 0x3b, 0xb7, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0x18, 0x4c, 0x38, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x79, 0x54, 0x7a, 0x54, 0x9a, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x9a, 0x5c, 0x98, 0x5c, 0xba, 0x5c, 0x9a, 0x5c, 0x39, 0x54, 0x18, 0x54, 0xd7, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb7, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb7, 0x4b, 0xb7, 0x4b, 0xb6, 0x43, 0xb7, 0x43, 0xd7, 0x4b, 0x38, 0x54, 0x59, 0x54, 0x79, 0x54, 0x9a, 0x5c, 0xbc, 0x5c, 0xfd, 0x64, 0x1e, 0x6d, 0x5d, 0x6d, 0xde, 0x7d, 0x3e, 0x86, 0x9e, 0x86, 0xfe, 0x8e, 0x3d, 0x97, 0x3c, 0x9f, 0x3c, 0xa7, 0x1d, 0x9f, 0xfd, 0x96, 0xfe, 0x96, 0xde, 0x8e, 0xbe, 0x8e, 0x9e, 0x8e, 0x5e, 0x86, 0xbe, 0x7d, 0x9e, 0x7d, 0x9e, 0x75, 0x7d, 0x75, 0xba, 0x64, 0xf7, 0x4b, 0x75, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0x18, 0x54, 0x58, 0x54, 0x59, 0x5c, 0x79, 0x5c, 0x9a, 0x5c, 0x9b, 0x5c, 0x5a, 0x5c, 0x39, 0x54, 0xd7, 0x43, 0x96, 0x3b, 0x75, 0x33, 0x55, 0x33, 0x75, 0x33, 0x75, 0x33, 0x76, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0xd6, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x34, 0x3b, 0x13, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xd2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xd2, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x10, 0x22, 0xef, 0x21, 0xcf, 0x19, 0xae, 0x19, 0x71, 0x2a, 0x75, 0x43, 0x96, 0x4b, 0x75, 0x43, 0x55, 0x43, 0x34, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0x55, 0x3b, 0xb6, 0x43, 0x75, 0x3b, 0x95, 0x3b, 0x96, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xd6, 0x3b, 0xb6, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x96, 0x3b, 0xb6, 0x3b, + 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb7, 0x3b, 0xd7, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0x18, 0x4c, 0x38, 0x4c, 0x59, 0x4c, 0x39, 0x54, 0x79, 0x54, 0x9a, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x9a, 0x5c, 0xb9, 0x5c, 0xd6, 0x4b, 0xb6, 0x4b, 0x18, 0x54, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb6, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb6, 0x43, 0x97, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0x38, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0xbb, 0x5c, 0xdd, 0x64, 0x1e, 0x65, 0x3e, 0x6d, 0x9e, 0x75, 0x3e, 0x86, 0x9e, 0x86, 0x3e, 0x97, 0x3d, 0x9f, 0x3d, 0x9f, 0x3d, 0xa7, 0x3d, 0xaf, 0x3d, 0xaf, 0x3d, 0xa7, 0x3d, 0xa7, 0x3d, 0xa7, 0x3d, 0xa7, 0x3d, 0x9f, 0x3d, 0x9f, 0xfd, 0x96, 0x7e, 0x8e, 0x19, 0x75, 0x14, 0x3b, 0x54, 0x43, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0x18, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7a, 0x5c, 0x9a, 0x5c, 0x9b, 0x54, 0x9b, 0x5c, 0x9b, 0x5c, 0x5a, 0x54, 0x39, 0x4c, 0xd7, 0x3b, 0x75, 0x33, 0x96, 0x33, 0x96, 0x3b, 0x96, 0x3b, 0xb6, 0x43, 0xf7, 0x4b, 0x17, 0x54, 0xf7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x34, 0x3b, 0x14, 0x33, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xd3, 0x32, 0xd3, 0x2a, 0xb2, 0x2a, 0xd2, 0x2a, 0xd2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0x14, 0x33, 0x14, 0x33, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x30, 0x22, 0x10, 0x22, 0xef, 0x21, 0xef, 0x21, 0xce, 0x19, 0x50, 0x2a, 0xd3, 0x32, 0x34, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x54, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0x92, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xf3, 0x32, 0x34, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x54, 0x33, 0x75, 0x33, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x33, 0x95, 0x3b, 0x95, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x95, 0x3b, 0x55, 0x3b, 0x75, 0x33, 0x75, 0x3b, 0x75, 0x3b, 0x96, 0x3b, + 0x75, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0xb6, 0x3b, 0xb6, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0x18, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x79, 0x5c, 0x99, 0x5c, 0x7a, 0x5c, 0x59, 0x5c, 0x59, 0x5c, 0x17, 0x54, 0x13, 0x33, 0x34, 0x3b, 0xd7, 0x4b, 0x17, 0x54, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0x7a, 0x5c, 0x7a, 0x54, 0x7a, 0x5c, 0xbc, 0x64, 0xfd, 0x64, 0x3e, 0x6d, 0x5e, 0x75, 0xfe, 0x7d, 0x9e, 0x86, 0xfe, 0x8e, 0x3c, 0x97, 0x3d, 0x9f, 0x3d, 0xaf, 0x5e, 0xb7, 0x3d, 0xbf, 0x3e, 0xc7, 0x3e, 0xbf, 0x3d, 0xb7, 0x5d, 0xb7, 0x3d, 0xb7, 0x3e, 0xb7, 0x1d, 0xb7, 0x1b, 0xa6, 0x53, 0x43, 0xf3, 0x3a, 0x33, 0x43, 0x34, 0x43, 0x54, 0x43, 0x34, 0x43, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x76, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0x18, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x7b, 0x5c, 0x7b, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0xbc, 0x5c, 0x9b, 0x54, 0x7b, 0x54, 0x5a, 0x54, 0xb7, 0x3b, 0x96, 0x33, 0xb6, 0x3b, 0xb6, 0x43, 0xf7, 0x4b, 0x17, 0x54, 0x17, 0x54, 0xf7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x14, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xd3, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0xef, 0x21, 0xcf, 0x19, 0x92, 0x32, 0xd3, 0x3a, 0x92, 0x32, 0xb2, 0x32, 0x55, 0x43, 0x75, 0x43, 0x55, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0xb3, 0x2a, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xd3, 0x32, 0x14, 0x33, 0x34, 0x33, 0x34, 0x3b, 0x55, 0x3b, 0x34, 0x33, 0x54, 0x33, 0x54, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, 0x75, 0x33, 0x75, 0x33, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x33, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, + 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x43, 0xd6, 0x43, 0xd7, 0x43, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x58, 0x54, 0x79, 0x5c, 0x38, 0x54, 0xf7, 0x4b, 0xf7, 0x53, 0x38, 0x5c, 0x13, 0x33, 0x14, 0x33, 0x34, 0x3b, 0xf7, 0x4b, 0x18, 0x54, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0x9a, 0x5c, 0x9b, 0x5c, 0xbb, 0x5c, 0xdc, 0x64, 0x1d, 0x65, 0x3d, 0x6d, 0x9e, 0x75, 0x3e, 0x86, 0xde, 0x8e, 0x1d, 0x97, 0x3c, 0x9f, 0x3d, 0xa7, 0x3d, 0xb7, 0x3d, 0xbf, 0x3e, 0xd7, 0x3e, 0xdf, 0x3e, 0xdf, 0x5e, 0xd7, 0x5e, 0xdf, 0x3e, 0xd7, 0x1b, 0xae, 0x15, 0x6c, 0x71, 0x32, 0x13, 0x43, 0x33, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0x18, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0x9c, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0x9c, 0x54, 0xbd, 0x5c, 0xbd, 0x5c, 0x5a, 0x54, 0xd7, 0x43, 0xb6, 0x43, 0x17, 0x4c, 0x18, 0x5c, 0x17, 0x54, 0xf7, 0x53, 0xf7, 0x4b, 0xd7, 0x4b, 0xb6, 0x4b, 0x95, 0x43, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0xf3, 0x32, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xb3, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0xce, 0x19, 0xb2, 0x32, 0xf3, 0x3a, 0xb3, 0x32, 0x92, 0x32, 0x71, 0x2a, 0xd3, 0x32, 0x34, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x2a, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x34, 0x33, 0x34, 0x33, 0xf3, 0x32, 0x14, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x33, 0x54, 0x33, 0x55, 0x33, 0x55, 0x33, 0x75, 0x3b, 0x55, 0x33, 0x35, 0x33, 0x55, 0x33, 0x75, 0x3b, + 0x55, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x76, 0x3b, 0x96, 0x3b, 0xb6, 0x3b, 0xd6, 0x43, 0xb6, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x54, 0xf7, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0xd7, 0x4b, 0x17, 0x54, 0x14, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0xd7, 0x4b, 0x18, 0x54, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0x9b, 0x5c, 0x9b, 0x5c, 0xbc, 0x5c, 0xfd, 0x64, 0x1e, 0x6d, 0x5e, 0x6d, 0x9e, 0x75, 0x1e, 0x86, 0xdd, 0x8e, 0x3d, 0x97, 0x3d, 0x9f, 0x3d, 0xaf, 0x3d, 0xb7, 0x3e, 0xc7, 0x3e, 0xdf, 0x5e, 0xe7, 0x5e, 0xdf, 0x5e, 0xe7, 0xdd, 0xd6, 0x56, 0x7c, 0x13, 0x4b, 0xf2, 0x42, 0x13, 0x43, 0x13, 0x4b, 0x33, 0x4b, 0x53, 0x43, 0x74, 0x4b, 0x94, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0xbc, 0x64, 0xbc, 0x5c, 0xbc, 0x5c, 0x9c, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0x9c, 0x54, 0x9d, 0x5c, 0xbd, 0x5c, 0x9c, 0x5c, 0x39, 0x4c, 0x17, 0x4c, 0x38, 0x5c, 0x38, 0x5c, 0x38, 0x54, 0xf8, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x14, 0x33, 0x55, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x22, 0x10, 0x22, 0xef, 0x21, 0xef, 0x21, 0xd3, 0x32, 0xf3, 0x3a, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0xb2, 0x32, 0x14, 0x3b, 0x35, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x3a, 0xf3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x14, 0x33, 0xf3, 0x2a, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x33, 0x54, 0x33, 0x54, 0x33, 0x34, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, + 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0xb6, 0x43, 0xb6, 0x43, 0xb7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xf7, 0x4b, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x96, 0x43, 0xd6, 0x4b, 0x34, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x34, 0x3b, 0xf7, 0x53, 0x18, 0x54, 0xf7, 0x53, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0x9b, 0x5c, 0x9b, 0x5c, 0xdd, 0x64, 0x1e, 0x65, 0x1e, 0x6d, 0x5e, 0x6d, 0xbe, 0x7d, 0x5e, 0x86, 0xfe, 0x8e, 0x3d, 0x97, 0x3d, 0x9f, 0x3d, 0xaf, 0x3d, 0xbf, 0x3e, 0xc7, 0x3e, 0xdf, 0x5e, 0xe7, 0x3e, 0xdf, 0x1b, 0xb6, 0x53, 0x53, 0xf2, 0x42, 0x13, 0x43, 0xf3, 0x42, 0x13, 0x43, 0x33, 0x4b, 0x53, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x94, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x53, 0x17, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x9a, 0x5c, 0x9c, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0x9c, 0x5c, 0x7a, 0x54, 0xbc, 0x5c, 0x9d, 0x5c, 0xbd, 0x5c, 0xde, 0x5c, 0xde, 0x64, 0xbc, 0x64, 0x59, 0x5c, 0x38, 0x5c, 0x38, 0x54, 0x18, 0x54, 0xd7, 0x4b, 0x96, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xd2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x34, 0x3b, 0x95, 0x43, 0x75, 0x43, 0x34, 0x3b, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x10, 0x22, 0xef, 0x19, 0x71, 0x2a, 0xf4, 0x3a, 0xf3, 0x3a, 0xd3, 0x32, 0xb2, 0x32, 0x72, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0x92, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x92, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x2a, 0xf3, 0x2a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, 0x54, 0x33, 0x55, 0x33, 0x55, 0x3b, 0x55, 0x33, + 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xb7, 0x43, 0xb6, 0x43, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x55, 0x43, 0x75, 0x43, 0x76, 0x43, 0xb6, 0x4b, 0x54, 0x3b, 0xd2, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x34, 0x3b, 0xf7, 0x53, 0x38, 0x54, 0xf8, 0x53, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xfd, 0x64, 0x5e, 0x6d, 0x9e, 0x75, 0xfe, 0x7d, 0x3e, 0x86, 0xfe, 0x8e, 0x1d, 0x97, 0x3d, 0x9f, 0x3d, 0xaf, 0x3d, 0xb7, 0x3e, 0xc7, 0x3e, 0xdf, 0x3e, 0xdf, 0x79, 0xa5, 0xd2, 0x42, 0xf3, 0x42, 0x13, 0x4b, 0x13, 0x4b, 0x13, 0x4b, 0x13, 0x4b, 0x33, 0x4b, 0x54, 0x4b, 0x74, 0x53, 0xb5, 0x53, 0xd5, 0x53, 0xf5, 0x53, 0xf6, 0x53, 0xf6, 0x53, 0xf6, 0x53, 0xf7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x39, 0x54, 0x39, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x9a, 0x5c, 0x9b, 0x5c, 0x9c, 0x5c, 0x7b, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x9b, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xde, 0x64, 0xfe, 0x64, 0xdd, 0x6c, 0x7a, 0x5c, 0x38, 0x54, 0x17, 0x4c, 0xd6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x33, 0x34, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf3, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xd2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x34, 0x3b, 0xb6, 0x4b, 0x95, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf3, 0x32, 0xd3, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x31, 0x2a, 0x31, 0x22, 0xcf, 0x19, 0xd3, 0x32, 0x14, 0x3b, 0xf3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x22, 0xef, 0x21, 0x72, 0x2a, 0xf4, 0x3a, 0x14, 0x33, 0x14, 0x33, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x2a, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xd2, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, 0x54, 0x3b, 0x55, 0x3b, + 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0x96, 0x43, 0x55, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0xb2, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0xf7, 0x53, 0x39, 0x5c, 0xf8, 0x53, 0xf8, 0x53, 0xf7, 0x53, 0xf7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xdc, 0x64, 0xbc, 0x5c, 0xbc, 0x64, 0xfd, 0x64, 0x3e, 0x6d, 0xbe, 0x75, 0x3e, 0x7e, 0x3e, 0x86, 0x7e, 0x8e, 0xfe, 0x96, 0x3d, 0x9f, 0x3d, 0xa7, 0x3d, 0xaf, 0x3d, 0xbf, 0xfd, 0xce, 0xd7, 0x84, 0xd2, 0x3a, 0x13, 0x43, 0x13, 0x4b, 0x33, 0x4b, 0x13, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x53, 0x4b, 0x74, 0x53, 0x94, 0x53, 0xd5, 0x53, 0xf5, 0x5b, 0x15, 0x5c, 0x16, 0x5c, 0x16, 0x5c, 0x16, 0x54, 0x17, 0x54, 0x17, 0x54, 0xd7, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0x17, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x18, 0x54, 0x38, 0x54, 0x59, 0x54, 0x39, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x39, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x7b, 0x54, 0x9c, 0x5c, 0xbe, 0x5c, 0xde, 0x5c, 0xde, 0x64, 0xfe, 0x64, 0x1e, 0x6d, 0xfd, 0x6c, 0x7a, 0x5c, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x33, 0x34, 0x33, 0x14, 0x33, 0x13, 0x33, 0xf3, 0x32, 0xf3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xb3, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x54, 0x3b, 0xb6, 0x4b, 0x96, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xf3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x10, 0x22, 0xd3, 0x32, 0x14, 0x3b, 0xf3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x2a, 0x10, 0x22, 0x10, 0x22, 0x31, 0x22, 0x92, 0x2a, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xd4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xd3, 0x2a, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x3b, 0x34, 0x3b, + 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x95, 0x3b, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0xb6, 0x4b, 0x59, 0x5c, 0x18, 0x54, 0x18, 0x54, 0xf8, 0x53, 0xf8, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x53, 0xf8, 0x53, 0xbc, 0x64, 0xdc, 0x64, 0xbd, 0x64, 0xfd, 0x64, 0x5e, 0x6d, 0x9e, 0x75, 0xde, 0x7d, 0x7e, 0x86, 0x5e, 0x86, 0xbe, 0x8e, 0xfe, 0x96, 0x5e, 0xa7, 0x5d, 0xaf, 0xdd, 0xb6, 0xf4, 0x63, 0x13, 0x43, 0x13, 0x43, 0x13, 0x43, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x54, 0x4b, 0x74, 0x53, 0xb4, 0x53, 0xd4, 0x5b, 0xd5, 0x5b, 0xf5, 0x5b, 0x15, 0x5c, 0x16, 0x5c, 0x16, 0x5c, 0x37, 0x5c, 0x17, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x18, 0x54, 0x38, 0x54, 0x18, 0x54, 0x38, 0x54, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x18, 0x54, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7b, 0x54, 0x7b, 0x5c, 0xbd, 0x5c, 0xde, 0x64, 0xde, 0x64, 0x1e, 0x6d, 0x1e, 0x6d, 0xfe, 0x64, 0xfe, 0x64, 0x7a, 0x5c, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0x96, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf3, 0x32, 0xf3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xd2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x34, 0x3b, 0xb6, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0xf3, 0x32, 0x34, 0x3b, 0xf4, 0x3a, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0xf0, 0x21, 0xef, 0x19, 0xef, 0x21, 0xef, 0x19, 0x10, 0x22, 0xb3, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb3, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xd3, 0x2a, 0xd2, 0x2a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, + 0x34, 0x3b, 0x14, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb6, 0x4b, 0x59, 0x5c, 0x39, 0x54, 0x38, 0x54, 0x18, 0x54, 0xf8, 0x53, 0x18, 0x54, 0xf8, 0x53, 0x18, 0x54, 0xfd, 0x64, 0xdd, 0x64, 0xdd, 0x64, 0x5d, 0x75, 0xde, 0x7d, 0xbe, 0x75, 0x9e, 0x75, 0xfe, 0x7d, 0x3e, 0x7e, 0x7e, 0x86, 0xbe, 0x8e, 0x3e, 0x9f, 0xfd, 0x9e, 0x56, 0x64, 0x13, 0x43, 0x13, 0x43, 0x13, 0x43, 0x13, 0x43, 0x33, 0x43, 0x33, 0x4b, 0x53, 0x4b, 0x53, 0x4b, 0x33, 0x4b, 0x53, 0x4b, 0x74, 0x4b, 0x94, 0x53, 0xb4, 0x53, 0xd5, 0x53, 0xf5, 0x53, 0xf5, 0x5b, 0xf6, 0x53, 0xf6, 0x5b, 0x16, 0x54, 0x17, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0xf8, 0x4b, 0x17, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x39, 0x54, 0x39, 0x54, 0x38, 0x4c, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7b, 0x54, 0x7b, 0x54, 0x9b, 0x5c, 0xbd, 0x5c, 0xfe, 0x64, 0x1e, 0x65, 0x3e, 0x6d, 0x1e, 0x65, 0xfe, 0x64, 0xfe, 0x64, 0x7a, 0x5c, 0xf7, 0x4b, 0xf7, 0x43, 0xd7, 0x43, 0xd6, 0x43, 0xb6, 0x3b, 0x96, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x33, 0x34, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x2a, 0xf3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd2, 0x2a, 0xd2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x34, 0x33, 0xb6, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x55, 0x3b, 0x34, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0xd3, 0x32, 0xd3, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x14, 0x3b, 0x55, 0x3b, 0x14, 0x3b, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x22, 0x10, 0x22, 0xef, 0x21, 0xef, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xef, 0x19, 0x51, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x22, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x34, 0x3b, + 0xf4, 0x32, 0x14, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x3a, 0x14, 0x3b, 0xf4, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x14, 0x3b, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x75, 0x43, 0x39, 0x54, 0x59, 0x5c, 0x39, 0x5c, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0xdd, 0x64, 0xfd, 0x64, 0x5d, 0x6d, 0xfe, 0x7d, 0xde, 0x7d, 0xfe, 0x7d, 0xde, 0x7d, 0x9e, 0x75, 0xfe, 0x7d, 0x5e, 0x7e, 0x5e, 0x86, 0x3d, 0x86, 0xb7, 0x64, 0xf2, 0x3a, 0x33, 0x43, 0x13, 0x43, 0x13, 0x43, 0x13, 0x43, 0x33, 0x43, 0x33, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x74, 0x4b, 0x94, 0x4b, 0xb4, 0x4b, 0xd5, 0x4b, 0xd5, 0x53, 0xd5, 0x53, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x53, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x39, 0x4c, 0x38, 0x54, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x7b, 0x54, 0x7b, 0x54, 0x9b, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0x1d, 0x6d, 0x5e, 0x6d, 0x3e, 0x65, 0x1e, 0x65, 0xfd, 0x64, 0x7a, 0x54, 0xf7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0x96, 0x3b, 0x75, 0x3b, 0x75, 0x33, 0x55, 0x33, 0x55, 0x33, 0x34, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xd3, 0x2a, 0xb3, 0x2a, 0xd2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x13, 0x33, 0xd6, 0x4b, 0xf7, 0x4b, 0xb7, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x14, 0x33, 0x14, 0x33, 0xd3, 0x32, 0xd3, 0x2a, 0xb3, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x34, 0x3b, 0x55, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x10, 0x22, 0xef, 0x21, 0xef, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0x8d, 0x11, 0x8e, 0x11, 0xcf, 0x19, 0x10, 0x22, 0x50, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, + 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0xd3, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x3a, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x14, 0x33, 0xf7, 0x53, 0x5a, 0x5c, 0x59, 0x5c, 0x59, 0x54, 0x38, 0x54, 0x59, 0x54, 0x1e, 0x65, 0x3e, 0x65, 0x5e, 0x6d, 0xbe, 0x7d, 0xfe, 0x85, 0xfe, 0x85, 0xfe, 0x7d, 0xde, 0x7d, 0xbe, 0x75, 0xfe, 0x7d, 0x3e, 0x7e, 0x97, 0x64, 0xb2, 0x32, 0x13, 0x3b, 0xf3, 0x3a, 0x13, 0x3b, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x74, 0x43, 0x94, 0x43, 0xb4, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xf7, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x59, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x39, 0x4c, 0x39, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x7b, 0x54, 0x9c, 0x5c, 0x9b, 0x5c, 0x7b, 0x54, 0x59, 0x54, 0x7a, 0x54, 0xbc, 0x5c, 0x1d, 0x65, 0x7e, 0x75, 0x7e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x1d, 0x65, 0x5a, 0x54, 0xd7, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xb6, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x76, 0x3b, 0x75, 0x3b, 0x55, 0x33, 0x55, 0x33, 0x54, 0x33, 0x34, 0x33, 0x34, 0x33, 0x14, 0x2b, 0x14, 0x2b, 0xf3, 0x2a, 0xf3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xb3, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x13, 0x33, 0xd6, 0x4b, 0x17, 0x4c, 0xd7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0xd3, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0x55, 0x3b, 0x75, 0x43, 0x34, 0x3b, 0x14, 0x33, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x10, 0x22, 0xef, 0x21, 0xef, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x11, 0xae, 0x11, 0x8e, 0x11, 0x8d, 0x11, 0xae, 0x11, 0xae, 0x11, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xef, 0x19, 0xef, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xef, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x0f, 0x1a, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0xf3, 0x32, + 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0xb2, 0x32, 0x92, 0x2a, 0xb2, 0x32, 0x92, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x14, 0x3b, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x3a, 0xf3, 0x3a, 0xb2, 0x32, 0x91, 0x32, 0x92, 0x32, 0xb1, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x75, 0x43, 0x9a, 0x5c, 0x7a, 0x5c, 0x59, 0x5c, 0x9b, 0x5c, 0x3e, 0x6d, 0x1e, 0x65, 0x3e, 0x6d, 0x9e, 0x75, 0xbe, 0x7d, 0xfe, 0x85, 0x1e, 0x86, 0xfe, 0x85, 0x1e, 0x7e, 0xde, 0x7d, 0x18, 0x6d, 0x91, 0x2a, 0x13, 0x3b, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x94, 0x43, 0x95, 0x43, 0x95, 0x4b, 0xb5, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0xf8, 0x43, 0x18, 0x4c, 0x18, 0x4c, 0x39, 0x4c, 0x39, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0x9b, 0x5c, 0x39, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0x9b, 0x5c, 0x9c, 0x5c, 0xbd, 0x5c, 0x9b, 0x5c, 0x79, 0x54, 0x59, 0x54, 0x59, 0x54, 0x9a, 0x54, 0xfd, 0x64, 0x7e, 0x6d, 0x7e, 0x6d, 0x9e, 0x75, 0x7e, 0x6d, 0x5e, 0x6d, 0x1d, 0x65, 0x79, 0x54, 0xd7, 0x43, 0xd7, 0x43, 0xb7, 0x43, 0xb6, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x75, 0x33, 0x55, 0x33, 0x55, 0x33, 0x54, 0x33, 0x34, 0x33, 0x34, 0x2b, 0x14, 0x2b, 0x14, 0x2b, 0x13, 0x2b, 0xf3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x13, 0x33, 0xd7, 0x4b, 0x18, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x76, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0xf4, 0x32, 0xd3, 0x2a, 0xf3, 0x32, 0x96, 0x43, 0x96, 0x43, 0x35, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0xf0, 0x21, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x11, 0xae, 0x19, 0xae, 0x11, 0xae, 0x11, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xef, 0x19, 0xef, 0x21, 0xef, 0x21, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0xef, 0x21, 0xef, 0x19, 0xef, 0x21, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x91, 0x32, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, + 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xb2, 0x32, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x38, 0x5c, 0x7a, 0x5c, 0xdc, 0x64, 0x3e, 0x6d, 0x3e, 0x6d, 0x5e, 0x6d, 0x3e, 0x6d, 0xbe, 0x75, 0xde, 0x75, 0x1e, 0x86, 0x3e, 0x7e, 0x1e, 0x7e, 0xdd, 0x75, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x54, 0x3b, 0x74, 0x43, 0x74, 0x43, 0x54, 0x3b, 0x54, 0x43, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xb7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xf8, 0x4b, 0x18, 0x4c, 0x39, 0x4c, 0x39, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0x9b, 0x5c, 0x7a, 0x54, 0x9b, 0x5c, 0xbc, 0x5c, 0xbd, 0x5c, 0xdd, 0x5c, 0xdc, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xbb, 0x54, 0x9a, 0x54, 0x7a, 0x54, 0xbb, 0x5c, 0x3d, 0x6d, 0x7e, 0x6d, 0x7e, 0x6d, 0x9e, 0x75, 0x9e, 0x75, 0x5e, 0x6d, 0xfd, 0x64, 0x59, 0x4c, 0xf7, 0x43, 0xd7, 0x43, 0xb7, 0x43, 0xb7, 0x3b, 0xb6, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x75, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x33, 0x14, 0x33, 0xf3, 0x2a, 0xd3, 0x2a, 0xf3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xf3, 0x32, 0xd7, 0x4b, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0xf7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x33, 0x14, 0x33, 0x34, 0x3b, 0x96, 0x43, 0xb7, 0x4b, 0x75, 0x43, 0x35, 0x3b, 0x14, 0x33, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x10, 0x22, 0xef, 0x21, 0xef, 0x19, 0xef, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xae, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x11, 0xae, 0x11, 0xae, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xef, 0x21, 0xef, 0x21, 0x0f, 0x22, 0xef, 0x21, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, + 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xb2, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x91, 0x32, 0x91, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x75, 0x43, 0xfc, 0x64, 0x5e, 0x6d, 0x5e, 0x6d, 0x3e, 0x6d, 0x5e, 0x6d, 0x5e, 0x75, 0x9e, 0x75, 0xde, 0x75, 0xfe, 0x7d, 0xbc, 0x75, 0x94, 0x43, 0xf3, 0x3a, 0x13, 0x3b, 0x33, 0x43, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0x13, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0x18, 0x4c, 0x39, 0x4c, 0x39, 0x4c, 0x59, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0xbc, 0x5c, 0xdd, 0x5c, 0xfd, 0x64, 0xfd, 0x64, 0x1e, 0x65, 0x1e, 0x65, 0x1d, 0x65, 0xfd, 0x64, 0xdd, 0x5c, 0xbc, 0x5c, 0xbb, 0x54, 0xfd, 0x64, 0x5e, 0x6d, 0x9e, 0x6d, 0x7e, 0x6d, 0x9e, 0x75, 0x7e, 0x6d, 0x3e, 0x6d, 0xbb, 0x5c, 0x38, 0x4c, 0x18, 0x44, 0xf7, 0x43, 0xd7, 0x43, 0xd7, 0x3b, 0xb6, 0x3b, 0x96, 0x3b, 0x96, 0x33, 0x75, 0x33, 0x75, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, 0x34, 0x33, 0x14, 0x2b, 0x14, 0x2b, 0x14, 0x2b, 0xf3, 0x2a, 0xf3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb6, 0x43, 0x58, 0x54, 0x38, 0x54, 0x17, 0x54, 0x17, 0x54, 0xf7, 0x53, 0xd7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0xd7, 0x4b, 0xf7, 0x4b, 0xb6, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0xef, 0x19, 0xef, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xef, 0x21, 0xf0, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xef, 0x19, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, + 0x92, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0x71, 0x32, 0x50, 0x2a, 0x50, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0x37, 0x54, 0xb9, 0x5c, 0x3c, 0x6d, 0x9e, 0x75, 0x7e, 0x6d, 0x9e, 0x75, 0x7e, 0x75, 0xbe, 0x75, 0x9d, 0x75, 0xb8, 0x64, 0xd2, 0x3a, 0x33, 0x43, 0x33, 0x43, 0x53, 0x43, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x13, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0xf8, 0x43, 0x18, 0x4c, 0x39, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x7b, 0x54, 0x9b, 0x5c, 0x9c, 0x5c, 0xdc, 0x5c, 0x1d, 0x65, 0x5e, 0x6d, 0x7e, 0x6d, 0x9e, 0x75, 0x7e, 0x75, 0x7e, 0x6d, 0x5e, 0x6d, 0x1d, 0x65, 0xdd, 0x5c, 0xfe, 0x64, 0x3e, 0x6d, 0x7e, 0x6d, 0x9e, 0x6d, 0x3e, 0x65, 0x7e, 0x6d, 0x9e, 0x75, 0x5e, 0x6d, 0x9a, 0x54, 0x17, 0x44, 0x18, 0x4c, 0x18, 0x44, 0xf7, 0x43, 0xd7, 0x3b, 0xb7, 0x3b, 0x96, 0x33, 0x96, 0x33, 0x96, 0x33, 0x75, 0x33, 0x75, 0x33, 0x55, 0x33, 0x55, 0x33, 0x34, 0x33, 0x34, 0x2b, 0x14, 0x2b, 0x14, 0x2b, 0xf4, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0x92, 0x22, 0x76, 0x43, 0x59, 0x54, 0x38, 0x54, 0x38, 0x54, 0x37, 0x5c, 0x17, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x18, 0x54, 0x18, 0x54, 0xd7, 0x4b, 0x96, 0x43, 0x55, 0x3b, 0x34, 0x33, 0x14, 0x33, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0xef, 0x21, 0xef, 0x19, 0xef, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xef, 0x19, 0xef, 0x21, 0xcf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x91, 0x2a, 0x92, 0x32, + 0x51, 0x2a, 0x71, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf4, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x54, 0x43, 0x34, 0x43, 0x34, 0x43, 0xf3, 0x3a, 0xb2, 0x32, 0x51, 0x2a, 0x71, 0x2a, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0x34, 0x43, 0x37, 0x54, 0x17, 0x54, 0x57, 0x54, 0xd9, 0x64, 0x9e, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0x5c, 0x75, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0xf3, 0x3a, 0xf3, 0x32, 0x13, 0x33, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0xf8, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x5a, 0x54, 0x7b, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0xbb, 0x5c, 0xfd, 0x64, 0x3e, 0x6d, 0x7e, 0x75, 0xde, 0x75, 0x3e, 0x7e, 0x7e, 0x86, 0x5e, 0x7e, 0xfe, 0x75, 0x9e, 0x6d, 0x3e, 0x65, 0x3e, 0x65, 0x3e, 0x6d, 0x1e, 0x65, 0x5e, 0x65, 0x5e, 0x6d, 0x5e, 0x6d, 0x9e, 0x75, 0xbe, 0x75, 0x3d, 0x6d, 0x99, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x44, 0xf7, 0x43, 0xd7, 0x3b, 0xd7, 0x3b, 0xb6, 0x3b, 0x96, 0x33, 0x96, 0x33, 0x96, 0x33, 0x75, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, 0x35, 0x33, 0x34, 0x2b, 0x14, 0x2b, 0x14, 0x2b, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xb3, 0x2a, 0x14, 0x33, 0x18, 0x4c, 0x59, 0x54, 0x58, 0x54, 0x38, 0x54, 0x37, 0x54, 0x17, 0x54, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x79, 0x5c, 0x59, 0x5c, 0x18, 0x54, 0xd7, 0x4b, 0x96, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0xf4, 0x32, 0xf3, 0x32, 0xb3, 0x32, 0xb3, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x10, 0x22, 0xf0, 0x19, 0xef, 0x19, 0xef, 0x21, 0xef, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xef, 0x21, 0xef, 0x21, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xef, 0x19, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x31, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x71, 0x2a, + 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf3, 0x3a, 0xf4, 0x3a, 0x14, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xf7, 0x53, 0xb6, 0x4b, 0x54, 0x43, 0x13, 0x3b, 0xf3, 0x3a, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x54, 0x43, 0x17, 0x54, 0x57, 0x54, 0x57, 0x54, 0x78, 0x5c, 0x57, 0x5c, 0xfa, 0x64, 0xbd, 0x75, 0xdd, 0x7d, 0x35, 0x5c, 0xb2, 0x32, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0x13, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf7, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x79, 0x54, 0x9b, 0x54, 0xdc, 0x5c, 0x1d, 0x5d, 0x5e, 0x6d, 0xde, 0x75, 0x7e, 0x86, 0xfd, 0x8e, 0x3d, 0x8f, 0x3d, 0x8f, 0xfe, 0x8e, 0x7e, 0x86, 0xde, 0x75, 0x7e, 0x6d, 0x7e, 0x6d, 0x3e, 0x6d, 0x1e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x9e, 0x6d, 0xfe, 0x75, 0xbe, 0x75, 0xfb, 0x5c, 0x58, 0x4c, 0x58, 0x4c, 0x58, 0x4c, 0x38, 0x44, 0x18, 0x44, 0xf7, 0x3b, 0xd7, 0x3b, 0xb7, 0x3b, 0xb6, 0x3b, 0x96, 0x33, 0x96, 0x33, 0x76, 0x33, 0x75, 0x33, 0x75, 0x33, 0x55, 0x33, 0x35, 0x33, 0x34, 0x2b, 0x34, 0x33, 0x14, 0x33, 0x14, 0x2b, 0xf4, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xf7, 0x4b, 0x7a, 0x5c, 0x59, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x5c, 0xba, 0x64, 0x9a, 0x64, 0x59, 0x54, 0x18, 0x54, 0xb7, 0x4b, 0x96, 0x43, 0x55, 0x3b, 0x35, 0x3b, 0x14, 0x33, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x10, 0x22, 0xf0, 0x19, 0xef, 0x19, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xef, 0x21, 0xcf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xef, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xf0, 0x21, 0xef, 0x19, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, + 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xd3, 0x32, 0xf3, 0x3a, 0xf4, 0x3a, 0x14, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x53, 0x18, 0x54, 0x17, 0x54, 0x95, 0x4b, 0x75, 0x4b, 0x34, 0x43, 0xb2, 0x32, 0x54, 0x43, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x57, 0x54, 0x58, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0x78, 0x5c, 0x92, 0x2a, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x43, 0x33, 0x43, 0x33, 0x3b, 0xf3, 0x3a, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x53, 0x3b, 0x53, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x59, 0x4c, 0x7a, 0x54, 0xbb, 0x54, 0xdc, 0x5c, 0x3e, 0x65, 0x7e, 0x6d, 0x1e, 0x7e, 0xde, 0x86, 0x3d, 0x97, 0x5d, 0x9f, 0x5d, 0xa7, 0x5d, 0x9f, 0x3d, 0x97, 0xbd, 0x86, 0xfe, 0x75, 0xbe, 0x75, 0x7e, 0x6d, 0x1e, 0x65, 0x1e, 0x65, 0x3e, 0x65, 0x5e, 0x65, 0xde, 0x75, 0x1e, 0x7e, 0x7d, 0x6d, 0xba, 0x5c, 0x58, 0x4c, 0x58, 0x4c, 0x58, 0x4c, 0x38, 0x44, 0x18, 0x44, 0xf8, 0x3b, 0xf7, 0x3b, 0xd7, 0x3b, 0xb7, 0x33, 0xb6, 0x33, 0xb6, 0x33, 0x96, 0x33, 0x76, 0x33, 0x75, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, 0x34, 0x33, 0x34, 0x2b, 0x14, 0x2b, 0x14, 0x2b, 0x14, 0x2b, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xb2, 0x2a, 0xb7, 0x43, 0x9a, 0x5c, 0x79, 0x54, 0x59, 0x54, 0x58, 0x4c, 0x58, 0x54, 0x59, 0x54, 0x79, 0x54, 0x59, 0x54, 0x9b, 0x54, 0xdc, 0x5c, 0xdd, 0x64, 0xdc, 0x64, 0xfc, 0x64, 0x1d, 0x6d, 0xdd, 0x6c, 0x9b, 0x64, 0x59, 0x5c, 0x38, 0x4c, 0xd7, 0x43, 0x96, 0x43, 0x55, 0x3b, 0x35, 0x3b, 0x14, 0x33, 0xf4, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0xf0, 0x21, 0xef, 0x21, 0xef, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xef, 0x21, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x21, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x10, 0x22, 0xef, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x22, 0xef, 0x21, 0xef, 0x21, 0x10, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, + 0x31, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf4, 0x3a, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xd7, 0x53, 0x17, 0x54, 0x38, 0x54, 0x58, 0x5c, 0x58, 0x5c, 0x38, 0x5c, 0x37, 0x5c, 0x16, 0x54, 0xf6, 0x53, 0x37, 0x54, 0x57, 0x54, 0x58, 0x54, 0x78, 0x5c, 0xb8, 0x64, 0x13, 0x3b, 0xb2, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x13, 0x3b, 0x33, 0x3b, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x54, 0x43, 0x74, 0x43, 0x94, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x7a, 0x54, 0x9b, 0x54, 0xbc, 0x5c, 0xfd, 0x5c, 0x3e, 0x65, 0x9e, 0x6d, 0x1e, 0x7e, 0xfd, 0x8e, 0x5c, 0x9f, 0x5d, 0xa7, 0x5d, 0xaf, 0x5d, 0xaf, 0x5d, 0xa7, 0x3d, 0x97, 0xbd, 0x86, 0x1e, 0x7e, 0xde, 0x75, 0x7e, 0x6d, 0x1e, 0x5d, 0x1e, 0x65, 0x3e, 0x65, 0x7e, 0x6d, 0xfe, 0x7d, 0xfe, 0x7d, 0x1c, 0x65, 0x79, 0x54, 0x79, 0x54, 0x58, 0x54, 0x58, 0x4c, 0x58, 0x4c, 0x38, 0x44, 0x18, 0x44, 0xf8, 0x3b, 0xf7, 0x3b, 0xd7, 0x3b, 0xd7, 0x3b, 0xb6, 0x3b, 0xb6, 0x33, 0x96, 0x33, 0x96, 0x33, 0x75, 0x33, 0x75, 0x33, 0x55, 0x33, 0x55, 0x33, 0x54, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x2a, 0x13, 0x2b, 0xf3, 0x32, 0xd3, 0x2a, 0x18, 0x4c, 0xbb, 0x5c, 0x79, 0x54, 0x59, 0x54, 0x38, 0x54, 0x79, 0x54, 0x7a, 0x54, 0x9b, 0x54, 0xbc, 0x5c, 0x1e, 0x6d, 0x5e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x5e, 0x75, 0xfd, 0x6c, 0x9b, 0x64, 0x79, 0x5c, 0x38, 0x54, 0xd7, 0x4b, 0x96, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0xf4, 0x32, 0x14, 0x33, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x10, 0x22, 0x10, 0x22, 0xf0, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xef, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xef, 0x19, 0xef, 0x21, 0xcf, 0x21, 0xae, 0x19, 0xae, 0x11, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x11, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x21, 0xef, 0x21, 0x10, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, + 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf3, 0x3a, 0x34, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x53, 0x18, 0x54, 0x18, 0x54, 0x79, 0x5c, 0x1d, 0x75, 0x1d, 0x75, 0x1c, 0x75, 0x37, 0x54, 0x57, 0x54, 0x57, 0x54, 0x78, 0x5c, 0xd6, 0x53, 0xd2, 0x32, 0xd2, 0x3a, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x3b, 0x33, 0x3b, 0x53, 0x43, 0x73, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x74, 0x43, 0x74, 0x43, 0x95, 0x4b, 0x95, 0x4b, 0xb5, 0x4b, 0xd5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0x17, 0x4c, 0x37, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x58, 0x54, 0x58, 0x54, 0x59, 0x54, 0x79, 0x54, 0x9a, 0x54, 0xdc, 0x5c, 0xdd, 0x5c, 0x1e, 0x65, 0x5e, 0x65, 0x9e, 0x6d, 0x3e, 0x7e, 0x1e, 0x8f, 0x3d, 0x9f, 0x3d, 0xaf, 0x3d, 0xb7, 0x5e, 0xbf, 0x5d, 0xbf, 0x5d, 0xa7, 0x1d, 0x8f, 0xbe, 0x86, 0x3e, 0x7e, 0x9e, 0x75, 0x3e, 0x65, 0xfe, 0x5c, 0x1e, 0x65, 0x5e, 0x6d, 0x7e, 0x6d, 0xfe, 0x7d, 0x9d, 0x75, 0xba, 0x5c, 0x79, 0x54, 0x79, 0x54, 0x79, 0x4c, 0x79, 0x4c, 0x59, 0x4c, 0x59, 0x44, 0x38, 0x44, 0x18, 0x44, 0x18, 0x3c, 0xf8, 0x3b, 0xf7, 0x3b, 0xd7, 0x3b, 0xd7, 0x3b, 0xb6, 0x3b, 0xb6, 0x33, 0x96, 0x33, 0x75, 0x33, 0x75, 0x33, 0x55, 0x33, 0x54, 0x33, 0x34, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0xf3, 0x2a, 0xd7, 0x4b, 0x9b, 0x5c, 0x9a, 0x5c, 0x79, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0xbc, 0x5c, 0xdd, 0x64, 0x5e, 0x6d, 0xde, 0x7d, 0x1e, 0x86, 0x3e, 0x86, 0xde, 0x7d, 0x9e, 0x7d, 0x5e, 0x75, 0xfd, 0x6c, 0xbc, 0x64, 0x7a, 0x5c, 0x39, 0x54, 0xf7, 0x4b, 0xb7, 0x43, 0x96, 0x3b, 0x55, 0x3b, 0x34, 0x33, 0x14, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0xef, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xef, 0x21, 0xef, 0x21, 0xef, 0x19, 0xef, 0x19, 0xef, 0x21, 0xef, 0x19, 0xef, 0x19, 0xcf, 0x19, 0xef, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xcf, 0x19, 0xef, 0x21, 0xef, 0x21, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x11, 0xae, 0x11, 0xae, 0x11, 0xae, 0x11, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xef, 0x19, 0xef, 0x19, 0xae, 0x11, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x10, 0x2a, + 0x30, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0x14, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xf7, 0x53, 0x18, 0x54, 0x79, 0x5c, 0xdc, 0x64, 0xfd, 0x64, 0x1d, 0x6d, 0x3e, 0x75, 0x1c, 0x6d, 0x99, 0x64, 0x57, 0x5c, 0x95, 0x43, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x3b, 0x53, 0x43, 0x73, 0x43, 0x73, 0x43, 0x53, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x94, 0x4b, 0x95, 0x4b, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x99, 0x54, 0xb9, 0x54, 0xba, 0x5c, 0xdb, 0x5c, 0x1d, 0x65, 0x3e, 0x65, 0x5e, 0x6d, 0x9e, 0x75, 0x5e, 0x7e, 0x1d, 0x8f, 0x5d, 0x9f, 0x3d, 0xaf, 0x5e, 0xbf, 0x5e, 0xcf, 0x5e, 0xc7, 0x5d, 0xb7, 0x5d, 0x9f, 0x1d, 0x8f, 0x9e, 0x86, 0xfe, 0x75, 0x5e, 0x6d, 0x3e, 0x65, 0xfe, 0x5c, 0x3e, 0x65, 0x7e, 0x6d, 0x9e, 0x6d, 0x9e, 0x75, 0x1c, 0x65, 0x9a, 0x5c, 0x9a, 0x5c, 0x99, 0x54, 0x79, 0x54, 0x79, 0x4c, 0x79, 0x4c, 0x79, 0x44, 0x59, 0x44, 0x39, 0x44, 0x38, 0x44, 0x18, 0x44, 0x18, 0x44, 0xf7, 0x43, 0xf7, 0x3b, 0xd7, 0x3b, 0xb7, 0x3b, 0xb6, 0x3b, 0x96, 0x3b, 0x75, 0x33, 0x75, 0x33, 0x55, 0x33, 0x54, 0x33, 0x34, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, 0x5a, 0x54, 0xbc, 0x64, 0x7a, 0x54, 0x79, 0x54, 0x9b, 0x54, 0xbc, 0x5c, 0xdd, 0x5c, 0x1e, 0x65, 0x5e, 0x75, 0x3e, 0x86, 0xfe, 0x96, 0x3e, 0x9f, 0x5e, 0x8e, 0xfe, 0x7d, 0xbe, 0x7d, 0x7e, 0x75, 0x1e, 0x65, 0xdd, 0x64, 0x9b, 0x5c, 0x59, 0x54, 0x18, 0x4c, 0xd7, 0x43, 0x96, 0x3b, 0x75, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xb3, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0xef, 0x21, 0xef, 0x21, 0x10, 0x22, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x19, 0xef, 0x19, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x11, 0xae, 0x19, 0xae, 0x19, 0xae, 0x11, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xcf, 0x21, 0xae, 0x19, 0x8d, 0x11, 0xae, 0x11, 0xae, 0x11, 0xae, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xef, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x10, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x30, 0x2a, + 0x10, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0x14, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0x79, 0x5c, 0xba, 0x5c, 0xbb, 0x64, 0xdc, 0x64, 0x1e, 0x6d, 0x3e, 0x6d, 0x3e, 0x75, 0xba, 0x64, 0xf3, 0x3a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf2, 0x32, 0xf3, 0x3a, 0x33, 0x3b, 0x33, 0x43, 0x33, 0x43, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x53, 0x53, 0x4b, 0x33, 0x43, 0x33, 0x43, 0x53, 0x4b, 0x73, 0x4b, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x54, 0x43, 0x54, 0x43, 0x74, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf7, 0x43, 0x17, 0x4c, 0x37, 0x4c, 0x57, 0x4c, 0x57, 0x54, 0x78, 0x54, 0x98, 0x54, 0xb9, 0x5c, 0xb9, 0x5c, 0xda, 0x5c, 0x1b, 0x65, 0x1c, 0x65, 0x5d, 0x65, 0x7e, 0x6d, 0xbe, 0x75, 0x5e, 0x7e, 0x1d, 0x8f, 0x5d, 0x9f, 0x3d, 0xaf, 0x5e, 0xc7, 0x5e, 0xd7, 0x5e, 0xd7, 0x5e, 0xc7, 0x5d, 0xa7, 0x3d, 0x97, 0x1e, 0x8f, 0x7e, 0x86, 0x9e, 0x6d, 0x3e, 0x65, 0xfe, 0x5c, 0xfe, 0x5c, 0x5e, 0x65, 0x7e, 0x6d, 0x9e, 0x6d, 0x3d, 0x6d, 0xbb, 0x5c, 0x9a, 0x5c, 0x9a, 0x5c, 0x9a, 0x54, 0x9a, 0x54, 0xba, 0x4c, 0xba, 0x4c, 0x9a, 0x4c, 0x7a, 0x4c, 0x7a, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x39, 0x44, 0x38, 0x44, 0x18, 0x44, 0xf7, 0x43, 0xd7, 0x43, 0xd7, 0x3b, 0xb6, 0x3b, 0x96, 0x3b, 0x75, 0x33, 0x75, 0x33, 0x55, 0x33, 0x54, 0x33, 0x34, 0x33, 0x34, 0x33, 0x13, 0x33, 0xf8, 0x4b, 0xbb, 0x5c, 0x9b, 0x54, 0x59, 0x4c, 0x9b, 0x54, 0xbc, 0x5c, 0xdd, 0x64, 0x1e, 0x6d, 0x7e, 0x75, 0x3e, 0x86, 0x1e, 0x97, 0x7d, 0xaf, 0x5d, 0x96, 0x3e, 0x86, 0x1e, 0x86, 0xbe, 0x7d, 0x7e, 0x75, 0x3e, 0x6d, 0xfd, 0x64, 0xbb, 0x5c, 0x79, 0x54, 0x18, 0x4c, 0xd7, 0x43, 0xb7, 0x43, 0x76, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x33, 0x3b, 0x14, 0x3b, 0xd3, 0x32, 0xb3, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xcf, 0x21, 0xef, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x11, 0xae, 0x11, 0xae, 0x19, 0xae, 0x11, 0xae, 0x11, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8d, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xef, 0x19, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x10, 0x22, 0x10, 0x2a, 0x10, 0x22, + 0x10, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x72, 0x32, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x95, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0x79, 0x5c, 0x79, 0x5c, 0x9a, 0x5c, 0xba, 0x5c, 0xba, 0x64, 0xbb, 0x64, 0xfc, 0x6c, 0x79, 0x5c, 0xb2, 0x32, 0xf3, 0x3a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xf2, 0x32, 0xf2, 0x3a, 0x33, 0x43, 0x53, 0x43, 0x33, 0x4b, 0x33, 0x4b, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4b, 0x33, 0x43, 0x53, 0x4b, 0x73, 0x4b, 0x73, 0x4b, 0x53, 0x43, 0x53, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf7, 0x43, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x57, 0x54, 0x78, 0x54, 0xb8, 0x54, 0xb8, 0x5c, 0xf9, 0x64, 0x19, 0x65, 0x1a, 0x65, 0x5c, 0x6d, 0x5d, 0x6d, 0x9e, 0x6d, 0xde, 0x75, 0x5e, 0x7e, 0x1e, 0x87, 0x5d, 0x97, 0x5d, 0xa7, 0x5d, 0xbf, 0x5e, 0xcf, 0x5e, 0xd7, 0x5e, 0xc7, 0x5d, 0xaf, 0x5d, 0x9f, 0x3d, 0x8f, 0xbe, 0x86, 0xde, 0x75, 0x5e, 0x6d, 0x1e, 0x65, 0xfe, 0x5c, 0xfe, 0x5c, 0x5e, 0x65, 0x9e, 0x6d, 0x9e, 0x6d, 0x3c, 0x65, 0xbb, 0x54, 0xdb, 0x5c, 0xbb, 0x5c, 0xbb, 0x54, 0xdb, 0x54, 0xdb, 0x54, 0xbb, 0x54, 0xbc, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0x9b, 0x4c, 0x9a, 0x4c, 0x7a, 0x4c, 0x59, 0x4c, 0x58, 0x4c, 0x38, 0x44, 0x18, 0x44, 0xf7, 0x43, 0xd7, 0x3b, 0xb6, 0x3b, 0x96, 0x3b, 0x95, 0x3b, 0x75, 0x33, 0x55, 0x33, 0x54, 0x33, 0x34, 0x33, 0x75, 0x3b, 0x7a, 0x54, 0xbc, 0x54, 0x9a, 0x54, 0x9c, 0x5c, 0xdd, 0x5c, 0xdd, 0x64, 0x1e, 0x65, 0x7e, 0x75, 0x3e, 0x86, 0x3e, 0x97, 0x7e, 0xb7, 0x5d, 0x9e, 0x3e, 0x96, 0x5e, 0x8e, 0x3e, 0x86, 0xde, 0x7d, 0x7e, 0x75, 0x5e, 0x6d, 0x1e, 0x65, 0xdb, 0x5c, 0x79, 0x54, 0x38, 0x54, 0xf8, 0x4b, 0xb6, 0x43, 0x96, 0x3b, 0x55, 0x3b, 0x96, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0xd3, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xef, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x11, 0xae, 0x19, 0xae, 0x11, 0xae, 0x19, 0xae, 0x11, 0xae, 0x11, 0xae, 0x19, 0xae, 0x11, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xad, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0xae, 0x11, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xef, 0x19, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x10, 0x22, + 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x72, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf4, 0x3a, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0x38, 0x54, 0x79, 0x5c, 0x9a, 0x5c, 0x9a, 0x5c, 0x9b, 0x64, 0x9a, 0x5c, 0x9b, 0x5c, 0x7a, 0x5c, 0x95, 0x4b, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xf2, 0x3a, 0x12, 0x3b, 0x53, 0x43, 0x33, 0x4b, 0x33, 0x4b, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x33, 0x4b, 0x33, 0x43, 0x53, 0x43, 0x53, 0x43, 0x54, 0x43, 0x54, 0x43, 0x53, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0x37, 0x4c, 0x57, 0x4c, 0x77, 0x54, 0x98, 0x54, 0xb8, 0x5c, 0xd8, 0x64, 0xf8, 0x64, 0xf8, 0x64, 0x39, 0x6d, 0x5b, 0x6d, 0x9c, 0x6d, 0xbd, 0x6d, 0xfe, 0x75, 0x5e, 0x7e, 0xfd, 0x86, 0x3d, 0x97, 0x5d, 0x9f, 0x5d, 0xaf, 0x5e, 0xbf, 0x5e, 0xc7, 0x5e, 0xc7, 0x5d, 0xb7, 0x5d, 0x9f, 0x3d, 0x87, 0xbe, 0x86, 0x1e, 0x7e, 0x7e, 0x6d, 0x3e, 0x65, 0x1e, 0x5d, 0x1e, 0x5d, 0x1e, 0x5d, 0x5e, 0x65, 0x9e, 0x75, 0x3d, 0x65, 0xdc, 0x54, 0xdc, 0x54, 0xdc, 0x5c, 0xdc, 0x54, 0xfc, 0x54, 0xfc, 0x54, 0xfd, 0x54, 0xfd, 0x54, 0xfd, 0x54, 0xfd, 0x54, 0xdd, 0x54, 0xdc, 0x54, 0xfc, 0x54, 0xdb, 0x54, 0x9b, 0x54, 0x9a, 0x54, 0x59, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0xf7, 0x43, 0xd7, 0x43, 0xb6, 0x3b, 0x96, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x33, 0xf3, 0x2a, 0xd7, 0x43, 0xdd, 0x54, 0xbc, 0x5c, 0xdc, 0x5c, 0xde, 0x64, 0xde, 0x64, 0xfe, 0x64, 0x3e, 0x6d, 0xde, 0x7d, 0xde, 0x8e, 0x7d, 0xa7, 0xdd, 0xa6, 0x5e, 0x9e, 0x5e, 0x96, 0x5e, 0x8e, 0x3e, 0x86, 0xde, 0x7d, 0xbe, 0x75, 0x7e, 0x6d, 0x1d, 0x6d, 0xdc, 0x64, 0x9a, 0x5c, 0x59, 0x54, 0x18, 0x4c, 0xd7, 0x43, 0xb6, 0x43, 0x75, 0x3b, 0xb6, 0x43, 0x96, 0x43, 0x76, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0xf4, 0x32, 0xd3, 0x32, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x10, 0x22, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xef, 0x21, 0x10, 0x2a, 0x0f, 0x22, 0xef, 0x21, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x11, 0x8e, 0x11, 0xae, 0x19, 0xad, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xad, 0x19, 0xae, 0x19, 0x8d, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8e, 0x19, 0xae, 0x19, 0xad, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xef, 0x21, 0xef, 0x21, 0xef, 0x19, 0xef, 0x21, + 0xef, 0x21, 0x10, 0x22, 0xf0, 0x21, 0x10, 0x2a, 0x10, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0x58, 0x5c, 0x79, 0x5c, 0x9a, 0x5c, 0xbb, 0x64, 0xbb, 0x64, 0xbb, 0x64, 0xbb, 0x64, 0xbc, 0x64, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xf2, 0x32, 0xf2, 0x3a, 0x12, 0x3b, 0x33, 0x43, 0x33, 0x4b, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x53, 0x33, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x3b, 0x33, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xf7, 0x43, 0x37, 0x4c, 0x37, 0x4c, 0x77, 0x54, 0x98, 0x54, 0xb8, 0x5c, 0xd8, 0x5c, 0xd8, 0x64, 0xf8, 0x64, 0x19, 0x6d, 0x3a, 0x6d, 0x7c, 0x75, 0x9d, 0x75, 0xde, 0x7d, 0x7e, 0x7e, 0xfe, 0x86, 0x5d, 0x8f, 0x5d, 0x9f, 0x5d, 0xa7, 0x5d, 0xb7, 0x5d, 0xb7, 0x5d, 0xb7, 0x5d, 0xaf, 0x5d, 0x9f, 0x3d, 0x8f, 0xde, 0x86, 0x5e, 0x7e, 0x9e, 0x6d, 0x5e, 0x65, 0x1e, 0x65, 0x1e, 0x5d, 0xfe, 0x5c, 0x1e, 0x65, 0x7e, 0x6d, 0x5d, 0x65, 0xfc, 0x54, 0xdc, 0x54, 0xfc, 0x54, 0xfd, 0x5c, 0xfd, 0x5c, 0x1d, 0x5d, 0x3e, 0x5d, 0x3e, 0x5d, 0x3e, 0x5d, 0x3e, 0x5d, 0x3e, 0x5d, 0x3e, 0x65, 0x3e, 0x5d, 0x1e, 0x5d, 0xfd, 0x5c, 0xdc, 0x5c, 0xbb, 0x5c, 0x9a, 0x54, 0x79, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0xf7, 0x43, 0xd6, 0x43, 0xb6, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x33, 0x54, 0x33, 0x59, 0x4c, 0xfd, 0x64, 0xdd, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0x1e, 0x65, 0x7e, 0x6d, 0x1e, 0x7e, 0x1d, 0x97, 0x7e, 0xaf, 0x7e, 0x96, 0x3e, 0x96, 0x5e, 0x96, 0x5e, 0x8e, 0x5e, 0x86, 0x1e, 0x7e, 0x9e, 0x75, 0x5e, 0x6d, 0x1e, 0x6d, 0xdc, 0x64, 0xba, 0x5c, 0x79, 0x54, 0x18, 0x4c, 0xd7, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x10, 0x2a, 0x10, 0x2a, 0x0f, 0x2a, 0xef, 0x21, 0xef, 0x21, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xae, 0x19, 0x8e, 0x19, 0xad, 0x11, 0xad, 0x19, 0xad, 0x19, 0x8d, 0x19, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0xad, 0x19, 0x8d, 0x11, 0xad, 0x11, 0xad, 0x11, 0x8d, 0x11, 0xae, 0x19, 0xae, 0x11, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xef, 0x21, + 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x10, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x75, 0x43, 0x96, 0x43, 0xf7, 0x53, 0x58, 0x5c, 0x79, 0x5c, 0xba, 0x5c, 0xda, 0x64, 0xdb, 0x64, 0xdc, 0x64, 0xdc, 0x64, 0x59, 0x5c, 0x71, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xf2, 0x3a, 0x12, 0x3b, 0x32, 0x43, 0x53, 0x4b, 0x73, 0x53, 0x73, 0x53, 0x73, 0x53, 0x54, 0x4b, 0x33, 0x43, 0x53, 0x43, 0x73, 0x43, 0x54, 0x43, 0x53, 0x3b, 0x33, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x74, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0x95, 0x43, 0x96, 0x3b, 0xb6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0x57, 0x54, 0x77, 0x54, 0x97, 0x54, 0xb8, 0x5c, 0xd8, 0x5c, 0xd8, 0x64, 0xf8, 0x64, 0xf9, 0x6c, 0x1a, 0x75, 0x5b, 0x7d, 0x7c, 0x7d, 0xbd, 0x7d, 0x1e, 0x86, 0xbe, 0x86, 0x5d, 0x8f, 0x5c, 0x97, 0x5d, 0x9f, 0x5d, 0xa7, 0x5d, 0xaf, 0x5d, 0xaf, 0x5d, 0xa7, 0x5d, 0x97, 0x1d, 0x8f, 0xde, 0x7e, 0x5e, 0x7e, 0xbe, 0x75, 0x7e, 0x6d, 0x5e, 0x65, 0x1e, 0x65, 0x1e, 0x5d, 0x1e, 0x5d, 0x1e, 0x65, 0x5e, 0x6d, 0x3d, 0x5d, 0xdd, 0x4c, 0x1d, 0x55, 0x1d, 0x5d, 0x1e, 0x5d, 0x3e, 0x5d, 0x5e, 0x5d, 0x5e, 0x5d, 0x5e, 0x65, 0x7e, 0x65, 0x9e, 0x65, 0x9e, 0x65, 0x9e, 0x65, 0x7e, 0x6d, 0x5e, 0x6d, 0x3e, 0x65, 0x1e, 0x65, 0x1d, 0x5d, 0xdc, 0x5c, 0x9a, 0x54, 0x79, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x95, 0x3b, 0x55, 0x33, 0x75, 0x3b, 0x9b, 0x5c, 0x1e, 0x6d, 0x1e, 0x6d, 0x1e, 0x6d, 0xfe, 0x64, 0x1e, 0x65, 0x3e, 0x6d, 0x7e, 0x6d, 0x5e, 0x86, 0x5e, 0x9f, 0x9e, 0x96, 0x5e, 0x8e, 0x7e, 0x96, 0x5e, 0x8e, 0x7e, 0x86, 0x3e, 0x7e, 0xfe, 0x7d, 0xbe, 0x7d, 0x7e, 0x75, 0x1d, 0x6d, 0xfc, 0x64, 0xbb, 0x5c, 0x7a, 0x54, 0x39, 0x54, 0x18, 0x4c, 0xf7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0xf4, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x0f, 0x22, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xad, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8d, 0x11, 0xae, 0x11, 0xad, 0x19, 0xad, 0x19, 0xae, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0xae, 0x19, 0x8e, 0x11, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, + 0xcf, 0x19, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x72, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0x96, 0x43, 0x17, 0x54, 0x58, 0x5c, 0x79, 0x5c, 0xb9, 0x64, 0xda, 0x64, 0xfa, 0x64, 0x1c, 0x6d, 0xfc, 0x6c, 0x75, 0x43, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf2, 0x32, 0xf2, 0x3a, 0x12, 0x3b, 0x33, 0x43, 0x33, 0x4b, 0x33, 0x53, 0x53, 0x53, 0x73, 0x53, 0x73, 0x53, 0x74, 0x4b, 0x53, 0x43, 0x53, 0x43, 0x74, 0x43, 0x53, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x74, 0x3b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0xb6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0x17, 0x4c, 0x37, 0x4c, 0x77, 0x54, 0x97, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0xd8, 0x6c, 0xd8, 0x6c, 0xd8, 0x74, 0x19, 0x7d, 0x3b, 0x7d, 0x5c, 0x85, 0x9d, 0x85, 0xbe, 0x85, 0x3e, 0x8e, 0xde, 0x8e, 0x3d, 0x97, 0x5d, 0x9f, 0x5d, 0x9f, 0x5d, 0xa7, 0x5d, 0xa7, 0x5d, 0x9f, 0x5d, 0x97, 0x1d, 0x87, 0x9e, 0x76, 0x3e, 0x76, 0xfe, 0x75, 0x9e, 0x6d, 0x7e, 0x6d, 0x5e, 0x65, 0x3e, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0x3e, 0x65, 0x1e, 0x5d, 0xfe, 0x54, 0xfe, 0x54, 0x1e, 0x55, 0x3e, 0x5d, 0x5e, 0x5d, 0x5e, 0x5d, 0x7e, 0x65, 0x7e, 0x65, 0xbe, 0x6d, 0xde, 0x75, 0xfe, 0x75, 0xfe, 0x75, 0xfe, 0x75, 0xde, 0x75, 0xbe, 0x6d, 0x9e, 0x6d, 0x7e, 0x6d, 0x5e, 0x65, 0xfd, 0x5c, 0xbb, 0x5c, 0x9a, 0x54, 0x59, 0x54, 0x38, 0x4c, 0xf7, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0xdc, 0x5c, 0x7e, 0x75, 0x5e, 0x6d, 0x3e, 0x65, 0x1e, 0x65, 0xfe, 0x64, 0x3e, 0x65, 0x9e, 0x75, 0x3e, 0x86, 0x3e, 0x86, 0x5e, 0x86, 0x9e, 0x8e, 0x7e, 0x8e, 0x9e, 0x86, 0x1e, 0x7e, 0xbe, 0x75, 0x7e, 0x6d, 0x3e, 0x6d, 0xfe, 0x64, 0xfd, 0x64, 0xfc, 0x64, 0xbc, 0x5c, 0x9b, 0x5c, 0x59, 0x54, 0x38, 0x54, 0x38, 0x54, 0x18, 0x4c, 0x18, 0x54, 0xf7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0xd3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x10, 0x2a, 0x0f, 0x22, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x30, 0x2a, 0x70, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8e, 0x11, 0xad, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0xad, 0x19, 0x8e, 0x11, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xcf, 0x19, + 0xcf, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x21, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0xb6, 0x43, 0x18, 0x54, 0x38, 0x5c, 0x38, 0x54, 0x78, 0x5c, 0x99, 0x64, 0xda, 0x64, 0xda, 0x6c, 0xfb, 0x6c, 0xfb, 0x6c, 0x34, 0x3b, 0xd3, 0x32, 0xf3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x33, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x4b, 0x33, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4b, 0x53, 0x43, 0x53, 0x43, 0x73, 0x43, 0x53, 0x43, 0x54, 0x3b, 0x33, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0xd6, 0x43, 0xf6, 0x43, 0x16, 0x4c, 0x57, 0x4c, 0x77, 0x54, 0xb7, 0x5c, 0xb8, 0x5c, 0xb8, 0x64, 0xd8, 0x6c, 0xd8, 0x74, 0xd8, 0x74, 0xf9, 0x7c, 0x1a, 0x7d, 0x3b, 0x85, 0x5c, 0x85, 0x9d, 0x8d, 0xde, 0x8d, 0x5e, 0x8e, 0xfe, 0x96, 0x5d, 0x97, 0x5d, 0x9f, 0x5d, 0x9f, 0x5c, 0x9f, 0x5c, 0x97, 0x5c, 0x8f, 0xfd, 0x7e, 0x5e, 0x76, 0x1e, 0x76, 0xde, 0x75, 0xbe, 0x75, 0x9e, 0x75, 0x7e, 0x6d, 0x3e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0x1e, 0x55, 0x1e, 0x55, 0x1e, 0x55, 0x1e, 0x5d, 0x3e, 0x5d, 0x7e, 0x65, 0x9e, 0x6d, 0xde, 0x6d, 0xfe, 0x75, 0x1e, 0x76, 0x5e, 0x7e, 0x9e, 0x7e, 0x7e, 0x7e, 0x9e, 0x7e, 0x9e, 0x7e, 0x3e, 0x7e, 0xde, 0x7d, 0xbe, 0x75, 0x7e, 0x6d, 0x5e, 0x6d, 0xfc, 0x64, 0xbb, 0x5c, 0x79, 0x54, 0x58, 0x54, 0x17, 0x4c, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x54, 0x3b, 0x18, 0x4c, 0x5d, 0x6d, 0x7e, 0x75, 0x3e, 0x6d, 0x3e, 0x6d, 0x1e, 0x65, 0x1e, 0x5d, 0x3e, 0x65, 0x7e, 0x75, 0xde, 0x7d, 0xfe, 0x7d, 0x5e, 0x86, 0x3e, 0x86, 0xfe, 0x7d, 0xde, 0x7d, 0xbe, 0x7d, 0x9e, 0x75, 0x5e, 0x6d, 0x1e, 0x6d, 0xfe, 0x64, 0xdd, 0x64, 0xdd, 0x64, 0xdd, 0x5c, 0xbc, 0x5c, 0x9b, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x59, 0x54, 0x38, 0x54, 0x38, 0x54, 0x17, 0x4c, 0xd6, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x14, 0x33, 0xd3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x0f, 0x22, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0xae, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, + 0xae, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0x0f, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x14, 0x33, 0x34, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0xb7, 0x43, 0xbd, 0x5c, 0xbc, 0x64, 0x37, 0x54, 0x78, 0x5c, 0x99, 0x5c, 0xb9, 0x64, 0xda, 0x64, 0xfb, 0x6c, 0xfb, 0x74, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x53, 0x43, 0x53, 0x43, 0x53, 0x4b, 0x53, 0x4b, 0x33, 0x4b, 0x53, 0x4b, 0x53, 0x4b, 0x53, 0x4b, 0x53, 0x43, 0x73, 0x43, 0x73, 0x43, 0x53, 0x43, 0x33, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0xb6, 0x3b, 0xf6, 0x43, 0x16, 0x4c, 0x37, 0x54, 0x77, 0x54, 0xb7, 0x5c, 0xd8, 0x64, 0xd8, 0x6c, 0xd8, 0x74, 0xd8, 0x74, 0xd9, 0x7c, 0xf9, 0x7c, 0x1a, 0x7d, 0x3b, 0x85, 0x5c, 0x85, 0x7c, 0x8d, 0xbe, 0x8d, 0xfe, 0x95, 0x7e, 0x96, 0xfe, 0x96, 0x5d, 0x97, 0x5d, 0x97, 0x5c, 0x97, 0x5c, 0x97, 0x5d, 0x8f, 0xfe, 0x86, 0x3e, 0x76, 0xde, 0x6d, 0xde, 0x6d, 0xde, 0x75, 0xfe, 0x75, 0xde, 0x75, 0x7e, 0x6d, 0x5e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x1e, 0x5d, 0x1e, 0x55, 0x1e, 0x5d, 0x1e, 0x5d, 0x3e, 0x5d, 0x7e, 0x65, 0x9e, 0x65, 0xde, 0x6d, 0x3e, 0x76, 0x7e, 0x7e, 0xfe, 0x86, 0x1e, 0x87, 0x3e, 0x8f, 0x3e, 0x8f, 0x1e, 0x8f, 0x3e, 0x8f, 0xfe, 0x86, 0x7e, 0x86, 0x1e, 0x7e, 0xbe, 0x75, 0x7e, 0x6d, 0x3d, 0x6d, 0xdc, 0x64, 0x9a, 0x5c, 0x58, 0x54, 0x18, 0x4c, 0xf7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x37, 0x54, 0x7d, 0x75, 0x9e, 0x75, 0x3e, 0x6d, 0x1e, 0x65, 0xfe, 0x64, 0x1e, 0x65, 0x3e, 0x65, 0x7e, 0x75, 0x9e, 0x75, 0xbe, 0x7d, 0xde, 0x7d, 0xde, 0x7d, 0xde, 0x7d, 0xbe, 0x7d, 0x9e, 0x75, 0x5e, 0x6d, 0x3e, 0x6d, 0x3e, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0xfe, 0x64, 0xfd, 0x64, 0xdb, 0x64, 0x9a, 0x5c, 0x79, 0x5c, 0x38, 0x54, 0x17, 0x54, 0xd7, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0x75, 0x43, 0x35, 0x3b, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x51, 0x32, 0x71, 0x32, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0xf0, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8d, 0x19, 0xad, 0x19, 0xad, 0x19, 0x8e, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8c, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0xae, 0x19, 0x8d, 0x19, 0xad, 0x19, 0xae, 0x19, 0xae, 0x19, + 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x55, 0x43, 0x38, 0x54, 0xff, 0x64, 0x1e, 0x65, 0xfc, 0x6c, 0x17, 0x54, 0x78, 0x5c, 0x99, 0x5c, 0xb9, 0x64, 0xda, 0x6c, 0xda, 0x6c, 0xd3, 0x3a, 0x14, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x33, 0x3b, 0x33, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x4b, 0x53, 0x4b, 0x53, 0x4b, 0x73, 0x4b, 0x73, 0x43, 0x73, 0x43, 0x73, 0x43, 0x53, 0x43, 0x53, 0x3b, 0x33, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x74, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0xd6, 0x43, 0xf6, 0x4b, 0x36, 0x54, 0x77, 0x5c, 0xb7, 0x64, 0xb7, 0x64, 0xd8, 0x6c, 0xd8, 0x74, 0xf8, 0x74, 0xd9, 0x7c, 0xf9, 0x7c, 0x19, 0x7d, 0x3a, 0x85, 0x5b, 0x85, 0x5c, 0x85, 0x7d, 0x8d, 0xbe, 0x8d, 0xfe, 0x95, 0x7e, 0x96, 0xfe, 0x96, 0x5d, 0x97, 0x5c, 0x97, 0x5c, 0x8f, 0x3d, 0x87, 0xde, 0x7e, 0x3e, 0x76, 0xbe, 0x6d, 0xbe, 0x6d, 0xbe, 0x6d, 0x1e, 0x7e, 0x3e, 0x7e, 0xde, 0x75, 0x5e, 0x6d, 0x3e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x1e, 0x5d, 0x3e, 0x5d, 0x1e, 0x5d, 0x1e, 0x5d, 0x3e, 0x5d, 0x7e, 0x65, 0xbe, 0x6d, 0xfe, 0x75, 0x7e, 0x7e, 0xde, 0x86, 0x1e, 0x8f, 0x3d, 0x8f, 0x3c, 0x97, 0x5d, 0x97, 0x5d, 0x9f, 0x5d, 0x97, 0x5d, 0x97, 0x3d, 0x8f, 0xfe, 0x8e, 0x7e, 0x86, 0xfe, 0x7d, 0x9e, 0x75, 0x5e, 0x6d, 0xfc, 0x64, 0xba, 0x5c, 0x59, 0x54, 0x18, 0x54, 0xf7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0x75, 0x3b, 0x78, 0x54, 0x9d, 0x75, 0x9e, 0x75, 0x3e, 0x6d, 0x3e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x5e, 0x6d, 0x7e, 0x75, 0x9e, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x7e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x3e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x1e, 0x6d, 0xdc, 0x64, 0x9a, 0x5c, 0x58, 0x5c, 0x17, 0x54, 0xf7, 0x4b, 0xd6, 0x4b, 0x96, 0x43, 0x75, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x0f, 0x22, 0xef, 0x21, 0xcf, 0x21, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0x8e, 0x19, 0xae, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6c, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6c, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6c, 0x11, 0x8c, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0xad, 0x19, 0xae, 0x19, 0xae, 0x19, + 0x8e, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x0f, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0x14, 0x33, 0x35, 0x3b, 0x55, 0x43, 0x96, 0x43, 0xdd, 0x64, 0xde, 0x64, 0xfe, 0x64, 0x1e, 0x65, 0xdb, 0x64, 0x37, 0x54, 0x78, 0x5c, 0x99, 0x5c, 0xda, 0x64, 0x58, 0x5c, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf4, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x32, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x74, 0x43, 0x53, 0x43, 0x73, 0x43, 0x73, 0x43, 0x73, 0x43, 0x53, 0x43, 0x53, 0x43, 0x34, 0x3b, 0x33, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0xb5, 0x43, 0xd5, 0x43, 0xf6, 0x4b, 0x36, 0x54, 0x56, 0x54, 0x97, 0x64, 0xb7, 0x64, 0xd8, 0x6c, 0xf8, 0x74, 0xf8, 0x74, 0xf8, 0x7c, 0xf9, 0x7c, 0x19, 0x7d, 0x1a, 0x7d, 0x3b, 0x85, 0x3c, 0x85, 0x5c, 0x85, 0x9d, 0x8d, 0xbe, 0x8d, 0xfe, 0x95, 0x7e, 0x96, 0xfe, 0x96, 0x5e, 0x8f, 0x5d, 0x8f, 0x3d, 0x87, 0xfe, 0x7e, 0x3e, 0x76, 0xbe, 0x6d, 0x9e, 0x65, 0xbe, 0x6d, 0xfe, 0x75, 0x5e, 0x7e, 0x5e, 0x7e, 0xbe, 0x6d, 0x5e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x5e, 0x65, 0x3e, 0x5d, 0x3e, 0x5d, 0x5e, 0x5d, 0x7e, 0x65, 0x7e, 0x65, 0x9e, 0x6d, 0x1e, 0x76, 0x9e, 0x7e, 0xfe, 0x86, 0x5d, 0x8f, 0x5d, 0x97, 0x5d, 0x9f, 0x5d, 0xa7, 0x5d, 0xa7, 0x5d, 0xa7, 0x5d, 0xa7, 0x5d, 0x9f, 0x5d, 0x97, 0x3e, 0x97, 0xbe, 0x86, 0x3e, 0x7e, 0xbe, 0x75, 0x5e, 0x6d, 0x1d, 0x65, 0xdb, 0x5c, 0x79, 0x5c, 0x38, 0x54, 0xf7, 0x4b, 0xd6, 0x4b, 0x96, 0x43, 0xf7, 0x4b, 0xba, 0x5c, 0x5d, 0x75, 0x9e, 0x75, 0x7e, 0x6d, 0x5e, 0x6d, 0x3e, 0x6d, 0x3e, 0x65, 0x3e, 0x6d, 0x5e, 0x6d, 0x9e, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x5e, 0x6d, 0x5e, 0x6d, 0x7e, 0x6d, 0x7e, 0x6d, 0x7e, 0x6d, 0xbe, 0x75, 0xbe, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x5e, 0x75, 0x1d, 0x6d, 0xdb, 0x64, 0x79, 0x5c, 0x37, 0x5c, 0xf7, 0x53, 0xd6, 0x4b, 0x96, 0x4b, 0x55, 0x43, 0x14, 0x3b, 0xf4, 0x32, 0xf3, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x91, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xad, 0x19, 0x8e, 0x19, 0x8d, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x8c, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0xae, 0x19, 0xae, 0x19, + 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x29, 0x10, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0x14, 0x3b, 0x38, 0x54, 0xbc, 0x5c, 0xdd, 0x64, 0xfe, 0x64, 0x1e, 0x65, 0x1d, 0x65, 0x99, 0x5c, 0x58, 0x5c, 0x79, 0x5c, 0x99, 0x5c, 0x17, 0x54, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x33, 0x3b, 0x14, 0x3b, 0x33, 0x3b, 0x53, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x54, 0x43, 0x53, 0x43, 0x73, 0x43, 0x53, 0x43, 0x53, 0x3b, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x94, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0xd5, 0x43, 0x16, 0x4c, 0x16, 0x54, 0x36, 0x5c, 0x77, 0x5c, 0x97, 0x64, 0xb7, 0x6c, 0xd8, 0x74, 0xf8, 0x74, 0x18, 0x7d, 0x19, 0x7d, 0x19, 0x7d, 0x1a, 0x7d, 0x3a, 0x85, 0x5b, 0x85, 0x5c, 0x85, 0x7d, 0x85, 0x9e, 0x8d, 0xde, 0x8d, 0x3e, 0x8e, 0xbe, 0x8e, 0x3e, 0x8f, 0x5d, 0x8f, 0x5e, 0x87, 0xfe, 0x7e, 0x5e, 0x76, 0xde, 0x6d, 0x9e, 0x65, 0x9e, 0x65, 0xbe, 0x6d, 0x1e, 0x76, 0x5e, 0x7e, 0xde, 0x75, 0x7e, 0x6d, 0x5e, 0x65, 0x3e, 0x65, 0x1e, 0x5d, 0x3e, 0x5d, 0x5e, 0x5d, 0x5e, 0x5d, 0x7e, 0x5d, 0x7e, 0x65, 0xbe, 0x6d, 0xfe, 0x75, 0x9e, 0x7e, 0x1e, 0x87, 0x3d, 0x8f, 0x5d, 0x9f, 0x5d, 0xa7, 0x5d, 0xaf, 0x5d, 0xb7, 0x5d, 0xb7, 0x5e, 0xb7, 0x7d, 0xaf, 0x7d, 0xa7, 0x5d, 0x9f, 0x5d, 0x97, 0xfe, 0x8e, 0x3e, 0x86, 0xde, 0x7d, 0x7e, 0x75, 0x1d, 0x6d, 0xbb, 0x64, 0x79, 0x5c, 0x38, 0x54, 0xf7, 0x4b, 0xb6, 0x43, 0xf7, 0x4b, 0x18, 0x4c, 0xbb, 0x5c, 0x7d, 0x75, 0xbe, 0x75, 0x7e, 0x75, 0x5e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x7e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x6d, 0x9e, 0x6d, 0x7e, 0x6d, 0x7e, 0x6d, 0x9e, 0x75, 0xde, 0x75, 0xfe, 0x7d, 0x3e, 0x7e, 0x1e, 0x86, 0x1e, 0x7e, 0xfe, 0x7d, 0xfe, 0x7d, 0xbe, 0x7d, 0x7e, 0x75, 0x5e, 0x6d, 0xfc, 0x6c, 0x99, 0x64, 0x58, 0x5c, 0x17, 0x54, 0xd6, 0x4b, 0x96, 0x43, 0x75, 0x43, 0x34, 0x3b, 0xf4, 0x32, 0xd3, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xce, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xad, 0x19, 0x8d, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x8c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0x8e, 0x19, + 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x10, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0x76, 0x43, 0x38, 0x54, 0x9a, 0x5c, 0xbc, 0x64, 0xfe, 0x64, 0x1e, 0x65, 0x3e, 0x65, 0x1c, 0x65, 0x58, 0x54, 0x78, 0x5c, 0x99, 0x5c, 0xb6, 0x4b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x53, 0x43, 0x54, 0x43, 0x53, 0x3b, 0x53, 0x3b, 0x53, 0x3b, 0x53, 0x3b, 0x73, 0x43, 0x53, 0x43, 0x53, 0x3b, 0x53, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x74, 0x3b, 0x95, 0x43, 0xb5, 0x43, 0xd5, 0x4b, 0x16, 0x4c, 0x36, 0x54, 0x56, 0x5c, 0x77, 0x64, 0x97, 0x64, 0xd7, 0x6c, 0xf8, 0x74, 0xf8, 0x74, 0x18, 0x7d, 0x19, 0x7d, 0x19, 0x7d, 0x1a, 0x7d, 0x3a, 0x85, 0x5b, 0x85, 0x5c, 0x85, 0x7d, 0x85, 0xbe, 0x85, 0xfe, 0x85, 0x7e, 0x8e, 0xfe, 0x8e, 0x3e, 0x8f, 0x5e, 0x8f, 0x3e, 0x87, 0x9e, 0x7e, 0xde, 0x6d, 0x7e, 0x65, 0x7e, 0x65, 0x9e, 0x6d, 0xde, 0x75, 0x1e, 0x76, 0xfe, 0x75, 0x9e, 0x6d, 0x5e, 0x65, 0x3e, 0x65, 0x3e, 0x5d, 0x1e, 0x55, 0x1e, 0x55, 0x5e, 0x5d, 0x7e, 0x65, 0x9e, 0x65, 0xbe, 0x6d, 0x1e, 0x76, 0x9e, 0x7e, 0x1e, 0x87, 0x5d, 0x8f, 0x5d, 0x9f, 0x5d, 0xaf, 0x5d, 0xb7, 0x5e, 0xbf, 0x5e, 0xbf, 0x5e, 0xc7, 0x5e, 0xbf, 0x5e, 0xb7, 0x5d, 0xaf, 0x5d, 0xa7, 0x5d, 0x97, 0x1e, 0x8f, 0x5e, 0x86, 0xbe, 0x7d, 0x7e, 0x75, 0x1d, 0x6d, 0xbb, 0x64, 0x59, 0x5c, 0x38, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x7a, 0x54, 0x7a, 0x54, 0x99, 0x54, 0x3c, 0x6d, 0xbe, 0x7d, 0x9e, 0x75, 0x5e, 0x6d, 0x9e, 0x75, 0xbe, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x7e, 0x6d, 0x7e, 0x6d, 0x7e, 0x75, 0x9e, 0x75, 0xde, 0x7d, 0x3e, 0x86, 0xbe, 0x8e, 0xde, 0x8e, 0xfe, 0x96, 0x1e, 0x97, 0xde, 0x96, 0x7e, 0x8e, 0x1e, 0x86, 0xde, 0x7d, 0x7e, 0x75, 0x3e, 0x6d, 0xbb, 0x64, 0x59, 0x5c, 0x18, 0x54, 0xd6, 0x4b, 0xb6, 0x4b, 0x55, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8c, 0x11, 0x6c, 0x11, 0x8c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0x8e, 0x19, + 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x10, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x35, 0x43, 0x38, 0x5c, 0x38, 0x54, 0x79, 0x5c, 0x7a, 0x5c, 0x9b, 0x5c, 0xdd, 0x64, 0x3f, 0x6d, 0x3e, 0x65, 0xfb, 0x64, 0x58, 0x54, 0x99, 0x5c, 0xb6, 0x4b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x33, 0x33, 0x33, 0x33, 0x53, 0x3b, 0x53, 0x43, 0x53, 0x3b, 0x53, 0x3b, 0x53, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x94, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x4b, 0xf5, 0x4b, 0x16, 0x54, 0x36, 0x5c, 0x56, 0x5c, 0x77, 0x64, 0xb7, 0x6c, 0xd7, 0x6c, 0xf8, 0x74, 0x18, 0x75, 0x18, 0x75, 0x19, 0x7d, 0x19, 0x7d, 0x3a, 0x85, 0x3b, 0x7d, 0x5b, 0x7d, 0x5c, 0x7d, 0x9d, 0x85, 0xde, 0x85, 0x3e, 0x86, 0x9e, 0x8e, 0xde, 0x8e, 0x1e, 0x8f, 0x1e, 0x87, 0xbe, 0x7e, 0x1e, 0x76, 0x9e, 0x6d, 0x7e, 0x65, 0x7e, 0x65, 0x9e, 0x6d, 0xfe, 0x75, 0xde, 0x6d, 0x9e, 0x6d, 0x5e, 0x65, 0x3e, 0x65, 0x1e, 0x5d, 0x3e, 0x55, 0x5e, 0x55, 0x5e, 0x5d, 0x7e, 0x5d, 0x9e, 0x65, 0x9e, 0x6d, 0xbe, 0x6d, 0x5e, 0x76, 0xfe, 0x86, 0x3d, 0x8f, 0x5c, 0x9f, 0x5d, 0xa7, 0x5d, 0xb7, 0x5e, 0xbf, 0x5e, 0xcf, 0x5e, 0xd7, 0x5e, 0xcf, 0x5e, 0xc7, 0x5e, 0xb7, 0x5d, 0xaf, 0x5d, 0xa7, 0x5d, 0x97, 0x3e, 0x8f, 0x7e, 0x86, 0xbe, 0x7d, 0x5e, 0x6d, 0x1d, 0x65, 0xdb, 0x64, 0x9a, 0x5c, 0x58, 0x54, 0x37, 0x54, 0x79, 0x54, 0xbb, 0x5c, 0x7a, 0x54, 0x59, 0x54, 0xfb, 0x64, 0x7d, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0x7e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x9e, 0x75, 0xbe, 0x7d, 0x1e, 0x86, 0xbe, 0x86, 0x5e, 0x97, 0x7d, 0x9f, 0x7d, 0x9f, 0x5d, 0xa7, 0x7d, 0x9f, 0x5d, 0x9f, 0x1e, 0x97, 0x7e, 0x8e, 0xfe, 0x85, 0x9e, 0x7d, 0x3e, 0x75, 0xdb, 0x64, 0x79, 0x5c, 0x58, 0x5c, 0xd7, 0x4b, 0x75, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xf0, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8d, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x8c, 0x11, 0x8c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0xae, 0x19, + 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xef, 0x21, 0x0f, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf7, 0x53, 0x79, 0x5c, 0x59, 0x5c, 0x7a, 0x5c, 0x9a, 0x5c, 0x9b, 0x5c, 0xbc, 0x64, 0xdd, 0x64, 0x3e, 0x6d, 0x5e, 0x6d, 0x78, 0x5c, 0x79, 0x5c, 0xb6, 0x4b, 0x55, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x74, 0x3b, 0x74, 0x3b, 0x74, 0x43, 0x74, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x53, 0x3b, 0x53, 0x3b, 0x53, 0x3b, 0x74, 0x3b, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xd5, 0x4b, 0xf6, 0x4b, 0x16, 0x54, 0x36, 0x5c, 0x57, 0x5c, 0x97, 0x64, 0xb7, 0x64, 0xd7, 0x64, 0xf8, 0x6c, 0x18, 0x6d, 0x18, 0x6d, 0x19, 0x6d, 0x1a, 0x75, 0x3a, 0x75, 0x5b, 0x75, 0x5b, 0x75, 0x7c, 0x75, 0xbd, 0x7d, 0xfe, 0x7d, 0x5e, 0x86, 0x7e, 0x8e, 0x9e, 0x8e, 0xbe, 0x86, 0xbe, 0x7e, 0x1e, 0x76, 0x9e, 0x6d, 0x7e, 0x65, 0x5e, 0x65, 0x7e, 0x65, 0x9e, 0x6d, 0xbe, 0x6d, 0x9e, 0x6d, 0x7e, 0x65, 0x5e, 0x65, 0x5e, 0x5d, 0x5e, 0x5d, 0x5e, 0x5d, 0x7e, 0x65, 0x7e, 0x65, 0x5e, 0x65, 0x9e, 0x65, 0xbe, 0x6d, 0x3e, 0x76, 0xde, 0x86, 0x3e, 0x8f, 0x7d, 0x97, 0x5d, 0xa7, 0x5d, 0xb7, 0x5e, 0xbf, 0x5e, 0xcf, 0x5e, 0xd7, 0x5e, 0xdf, 0x5e, 0xd7, 0x5e, 0xc7, 0x5e, 0xbf, 0x5d, 0xaf, 0x5d, 0xa7, 0x5d, 0x97, 0xde, 0x8e, 0x3e, 0x86, 0xde, 0x7d, 0x7e, 0x75, 0x3d, 0x65, 0xdb, 0x5c, 0x99, 0x54, 0x58, 0x54, 0x79, 0x54, 0xbc, 0x5c, 0xbc, 0x5c, 0x9a, 0x5c, 0x39, 0x54, 0xb9, 0x5c, 0x9d, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0xbe, 0x7d, 0xbe, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0xde, 0x7d, 0x3e, 0x7e, 0xfe, 0x8e, 0x5d, 0x97, 0x5d, 0xa7, 0x5e, 0xb7, 0x5e, 0xb7, 0x5e, 0xb7, 0x7d, 0xaf, 0x5d, 0xaf, 0x7e, 0x9f, 0xfe, 0x96, 0x1e, 0x86, 0x9e, 0x7d, 0x5e, 0x75, 0xdc, 0x64, 0x79, 0x5c, 0x18, 0x54, 0xd7, 0x4b, 0x96, 0x43, 0x55, 0x3b, 0x34, 0x33, 0x14, 0x33, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0xb1, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xce, 0x21, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x6c, 0x11, 0x6d, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x4c, 0x11, 0x6c, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0x8e, 0x19, + 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x21, 0xef, 0x21, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xf6, 0x4b, 0xd9, 0x6c, 0x99, 0x5c, 0xba, 0x5c, 0xba, 0x5c, 0x9a, 0x5c, 0x9a, 0x5c, 0x9b, 0x5c, 0xdc, 0x64, 0xfe, 0x64, 0x3e, 0x6d, 0x3d, 0x6d, 0x58, 0x5c, 0xd6, 0x4b, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x95, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x53, 0x3b, 0x53, 0x3b, 0x53, 0x3b, 0x54, 0x3b, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x94, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xf6, 0x4b, 0xf6, 0x4b, 0x16, 0x4c, 0x36, 0x54, 0x77, 0x54, 0x97, 0x5c, 0xb7, 0x5c, 0xd8, 0x5c, 0xf8, 0x64, 0x18, 0x65, 0x19, 0x65, 0x19, 0x65, 0x3a, 0x6d, 0x3a, 0x6d, 0x5b, 0x6d, 0x7c, 0x6d, 0x7c, 0x75, 0x9c, 0x75, 0xdd, 0x7d, 0xfe, 0x7d, 0x1e, 0x7e, 0x3e, 0x7e, 0x3e, 0x7e, 0x1e, 0x76, 0xbe, 0x6d, 0x7e, 0x65, 0x7e, 0x65, 0x5e, 0x65, 0x7e, 0x65, 0x9e, 0x6d, 0x9e, 0x6d, 0x9e, 0x6d, 0x5e, 0x65, 0x5e, 0x5d, 0x7e, 0x5d, 0x7e, 0x65, 0x7e, 0x65, 0x5e, 0x65, 0x7e, 0x65, 0x7e, 0x65, 0xbe, 0x6d, 0xde, 0x75, 0x5e, 0x7e, 0xfe, 0x86, 0xdc, 0x8e, 0x7b, 0x8e, 0x5b, 0x96, 0x3c, 0x96, 0x1c, 0x9e, 0xfc, 0x9d, 0xdd, 0x9d, 0xdd, 0x9d, 0xdd, 0x9d, 0x1d, 0x9e, 0x3e, 0x96, 0x7e, 0x96, 0xde, 0x96, 0xbe, 0x8e, 0x5e, 0x86, 0xfe, 0x7d, 0xbe, 0x75, 0x7e, 0x6d, 0x1d, 0x65, 0x9a, 0x54, 0x59, 0x4c, 0x37, 0x4c, 0x9b, 0x5c, 0xdd, 0x64, 0x9b, 0x5c, 0xdb, 0x5c, 0xfb, 0x64, 0xda, 0x5c, 0x1b, 0x65, 0x5c, 0x6d, 0x9e, 0x7d, 0xde, 0x7d, 0xbe, 0x7d, 0x7e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x9e, 0x7d, 0x9e, 0x7d, 0xde, 0x7d, 0x3e, 0x86, 0x1e, 0x8f, 0x7d, 0x9f, 0x7e, 0xaf, 0x7e, 0xc7, 0x7e, 0xd7, 0x7e, 0xd7, 0x7e, 0xcf, 0x7e, 0xbf, 0x7d, 0xaf, 0x7d, 0xa7, 0xfe, 0x9e, 0x3e, 0x8e, 0xbe, 0x7d, 0x3e, 0x75, 0xbb, 0x64, 0x59, 0x5c, 0x18, 0x54, 0xd7, 0x4b, 0x96, 0x43, 0x75, 0x3b, 0x35, 0x3b, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xce, 0x21, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0xad, 0x19, 0xae, 0x19, 0xae, 0x19, + 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xef, 0x21, 0xef, 0x21, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x71, 0x32, 0x10, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xf6, 0x53, 0xd8, 0x6c, 0xd8, 0x6c, 0xd9, 0x64, 0xfa, 0x64, 0xbb, 0x64, 0xba, 0x5c, 0x9a, 0x5c, 0x9b, 0x5c, 0xbc, 0x5c, 0xdd, 0x64, 0x1e, 0x65, 0x3e, 0x6d, 0xba, 0x64, 0xb6, 0x4b, 0xb6, 0x4b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0xb5, 0x4b, 0xb6, 0x4b, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x74, 0x3b, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x53, 0x43, 0x53, 0x43, 0x53, 0x3b, 0x74, 0x43, 0x74, 0x43, 0x94, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xd5, 0x43, 0xf6, 0x43, 0xf6, 0x43, 0x36, 0x4c, 0x36, 0x4c, 0x57, 0x4c, 0x77, 0x54, 0x97, 0x54, 0xb8, 0x5c, 0xd8, 0x5c, 0xd8, 0x5c, 0xf9, 0x5c, 0x19, 0x65, 0x3a, 0x65, 0x3a, 0x65, 0x3a, 0x65, 0x3a, 0x6d, 0x5b, 0x6d, 0x7b, 0x6d, 0x9c, 0x6d, 0xbd, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0xbe, 0x6d, 0x9e, 0x6d, 0x7e, 0x65, 0x7e, 0x65, 0x5e, 0x65, 0x5e, 0x65, 0x7e, 0x6d, 0x7e, 0x6d, 0x7e, 0x6d, 0x5e, 0x65, 0x5e, 0x65, 0x7e, 0x65, 0x9e, 0x65, 0x9e, 0x65, 0x9e, 0x65, 0xbf, 0x6d, 0x9e, 0x6d, 0x1c, 0x65, 0xfa, 0x5c, 0xfa, 0x64, 0xfa, 0x64, 0xfa, 0x64, 0xda, 0x64, 0xda, 0x6c, 0xfa, 0x6c, 0x1b, 0x75, 0x1c, 0x7d, 0x1c, 0x7d, 0x3c, 0x7d, 0x3d, 0x85, 0x5d, 0x7d, 0x7e, 0x7d, 0x7e, 0x7d, 0xbe, 0x7d, 0xbe, 0x7d, 0xde, 0x7d, 0xbe, 0x7d, 0x9e, 0x75, 0x7e, 0x75, 0x5e, 0x75, 0x5e, 0x6d, 0x3d, 0x6d, 0xfb, 0x64, 0xdb, 0x64, 0xfd, 0x5c, 0x3d, 0x65, 0x3d, 0x65, 0x3c, 0x65, 0xfb, 0x64, 0xfa, 0x5c, 0xfa, 0x64, 0x1a, 0x6d, 0x9d, 0x75, 0xbe, 0x7d, 0x9e, 0x7d, 0x7e, 0x7d, 0x7e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x9e, 0x7d, 0xde, 0x7d, 0x1e, 0x86, 0xdf, 0x8e, 0x5d, 0x97, 0x7d, 0xaf, 0x7e, 0xbf, 0x7e, 0xdf, 0x7e, 0xe7, 0x7e, 0xe7, 0x5e, 0xe7, 0x7e, 0xcf, 0x7e, 0xb7, 0x7d, 0xaf, 0x3e, 0x9f, 0x3e, 0x8e, 0x7f, 0x75, 0xdc, 0x6c, 0x9a, 0x64, 0x79, 0x5c, 0x17, 0x54, 0xd7, 0x4b, 0x96, 0x43, 0x75, 0x3b, 0x35, 0x3b, 0xf4, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x10, 0x22, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6c, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, + 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x21, 0xef, 0x21, 0xef, 0x29, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0x54, 0x43, 0xb7, 0x64, 0xd8, 0x74, 0xd8, 0x74, 0x19, 0x75, 0x3a, 0x6d, 0xfb, 0x64, 0xbb, 0x5c, 0x9a, 0x5c, 0x9a, 0x5c, 0xbb, 0x5c, 0xdd, 0x64, 0xfe, 0x64, 0x3e, 0x6d, 0x1c, 0x6d, 0xf7, 0x4b, 0xb6, 0x4b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xb5, 0x43, 0xd5, 0x4b, 0xd5, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x43, 0x53, 0x43, 0x74, 0x43, 0x74, 0x43, 0x94, 0x43, 0x94, 0x43, 0x95, 0x43, 0xd5, 0x43, 0xd5, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xf6, 0x4b, 0x37, 0x4c, 0x37, 0x4c, 0x57, 0x4c, 0x77, 0x54, 0x98, 0x54, 0xb8, 0x54, 0xd8, 0x54, 0xd8, 0x54, 0xb8, 0x54, 0xd8, 0x5c, 0x19, 0x5d, 0x19, 0x65, 0x3a, 0x65, 0x5b, 0x6d, 0x7c, 0x6d, 0x9d, 0x6d, 0x9d, 0x6d, 0x7e, 0x6d, 0x9e, 0x6d, 0x9e, 0x65, 0x7e, 0x65, 0x5e, 0x65, 0x7e, 0x65, 0x5e, 0x65, 0x3e, 0x65, 0x7e, 0x6d, 0x7e, 0x6d, 0x5e, 0x65, 0x7e, 0x65, 0x9e, 0x65, 0xbe, 0x6d, 0xbe, 0x6d, 0x1b, 0x65, 0x58, 0x54, 0x38, 0x4c, 0x59, 0x54, 0x59, 0x54, 0x79, 0x5c, 0x99, 0x5c, 0xba, 0x64, 0xfb, 0x64, 0x1b, 0x6d, 0x3b, 0x6d, 0x3b, 0x75, 0x3c, 0x7d, 0x3c, 0x7d, 0x5c, 0x85, 0x5d, 0x85, 0x7d, 0x85, 0x7e, 0x7d, 0x9e, 0x7d, 0x9e, 0x7d, 0x9e, 0x7d, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x5e, 0x6d, 0x3e, 0x6d, 0x5e, 0x6d, 0x7e, 0x75, 0x1e, 0x7e, 0xde, 0x7d, 0x7d, 0x6d, 0x3c, 0x65, 0x1c, 0x65, 0xfb, 0x64, 0xfb, 0x64, 0xfa, 0x64, 0x3b, 0x6d, 0x7d, 0x75, 0x7e, 0x7d, 0x9e, 0x7d, 0x7e, 0x7d, 0x7e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x9e, 0x7d, 0xfe, 0x85, 0x7e, 0x8e, 0x5e, 0x97, 0x7d, 0xa7, 0x7e, 0xb7, 0x7e, 0xdf, 0x7e, 0xe7, 0x7e, 0xe7, 0x7e, 0xe7, 0x7e, 0xe7, 0x7e, 0xd7, 0x7e, 0xbf, 0x7d, 0xa7, 0x9e, 0x8e, 0xbe, 0x7d, 0x3e, 0x75, 0xdb, 0x64, 0x99, 0x5c, 0x58, 0x5c, 0xf7, 0x4b, 0xb6, 0x43, 0x76, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x14, 0x33, 0xd3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8d, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0x8d, 0x11, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, + 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x21, 0xef, 0x21, 0x0f, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x51, 0x32, 0x10, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0x34, 0x3b, 0x98, 0x64, 0xd8, 0x74, 0xb8, 0x74, 0xd8, 0x7c, 0x19, 0x7d, 0x3a, 0x7d, 0x3a, 0x6d, 0xdb, 0x64, 0xbb, 0x5c, 0x9a, 0x5c, 0x9b, 0x5c, 0xbc, 0x5c, 0xfe, 0x64, 0x3e, 0x6d, 0x3e, 0x6d, 0x38, 0x54, 0xd6, 0x4b, 0x96, 0x4b, 0xb6, 0x4b, 0xb5, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0x96, 0x4b, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf6, 0x4b, 0xf7, 0x53, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x94, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xf6, 0x43, 0xf6, 0x43, 0x16, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x57, 0x4c, 0x78, 0x4c, 0x58, 0x4c, 0x57, 0x4c, 0x57, 0x4c, 0x78, 0x54, 0x98, 0x54, 0xd9, 0x5c, 0xf9, 0x64, 0xfa, 0x64, 0x1a, 0x65, 0x3b, 0x65, 0x3c, 0x65, 0x5d, 0x65, 0x7d, 0x65, 0x5e, 0x65, 0x5e, 0x65, 0x5e, 0x65, 0x3e, 0x5d, 0x3e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x5e, 0x65, 0x7e, 0x6d, 0x5e, 0x6d, 0x5d, 0x65, 0x3c, 0x65, 0x78, 0x54, 0xf7, 0x4b, 0x18, 0x54, 0x38, 0x54, 0x58, 0x54, 0x59, 0x54, 0x79, 0x54, 0x9a, 0x5c, 0x9a, 0x5c, 0x9a, 0x5c, 0xda, 0x64, 0xfa, 0x64, 0x1a, 0x6d, 0x3b, 0x6d, 0x3b, 0x75, 0x3c, 0x7d, 0x5c, 0x7d, 0x5c, 0x7d, 0x7d, 0x7d, 0x9e, 0x85, 0x9e, 0x7d, 0x9e, 0x7d, 0xbe, 0x7d, 0xbe, 0x7d, 0x9e, 0x75, 0x7e, 0x75, 0x3e, 0x6d, 0x5e, 0x6d, 0x5e, 0x75, 0x3e, 0x6d, 0x3e, 0x6d, 0x7e, 0x6d, 0xbe, 0x75, 0x3e, 0x7e, 0x3e, 0x7e, 0xfe, 0x7d, 0x9e, 0x75, 0x3c, 0x65, 0x1b, 0x65, 0x3b, 0x65, 0x3a, 0x6d, 0x7d, 0x75, 0x7e, 0x7d, 0x5e, 0x7d, 0x7e, 0x7d, 0x7e, 0x7d, 0x7e, 0x7d, 0x5e, 0x7d, 0x7e, 0x7d, 0x9e, 0x7d, 0x3e, 0x8e, 0x1e, 0x97, 0x7d, 0xa7, 0x7d, 0xb7, 0x7e, 0xcf, 0x7e, 0xe7, 0x7e, 0xe7, 0x7e, 0xe7, 0x7e, 0xe7, 0x7e, 0xdf, 0x5e, 0xc7, 0x7d, 0xaf, 0x3e, 0x9f, 0x5e, 0x8e, 0x9f, 0x7d, 0x3e, 0x75, 0xbb, 0x64, 0x79, 0x5c, 0x38, 0x54, 0xf7, 0x4b, 0x96, 0x43, 0x76, 0x3b, 0x35, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x33, 0xb3, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x71, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xf0, 0x29, 0x10, 0x22, 0xf0, 0x21, 0x0f, 0x22, 0xf0, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0x8d, 0x11, 0x8d, 0x19, 0x8d, 0x11, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, + 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0xd3, 0x32, 0x17, 0x54, 0xb8, 0x64, 0xb8, 0x6c, 0xd8, 0x74, 0xd8, 0x7c, 0xf9, 0x84, 0x1a, 0x85, 0x3a, 0x75, 0x1b, 0x6d, 0xdb, 0x64, 0xbb, 0x5c, 0x9a, 0x5c, 0xbb, 0x5c, 0xdd, 0x64, 0x3e, 0x6d, 0x5e, 0x6d, 0xba, 0x64, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x53, 0xd6, 0x53, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0x17, 0x4c, 0x17, 0x54, 0x17, 0x54, 0xf7, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0x16, 0x54, 0x16, 0x54, 0xf6, 0x53, 0xb5, 0x4b, 0xd5, 0x4b, 0xb5, 0x43, 0x95, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x94, 0x43, 0x94, 0x43, 0xb5, 0x43, 0xd5, 0x43, 0xd5, 0x43, 0xd5, 0x43, 0xf6, 0x43, 0xf6, 0x43, 0x16, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x16, 0x4c, 0xf6, 0x43, 0x17, 0x44, 0x37, 0x4c, 0x57, 0x4c, 0x58, 0x4c, 0x98, 0x54, 0xb9, 0x5c, 0xd9, 0x5c, 0xfa, 0x5c, 0xfb, 0x5c, 0x1b, 0x5d, 0x1c, 0x5d, 0x1d, 0x5d, 0x1d, 0x5d, 0x1e, 0x5d, 0x3e, 0x65, 0x1e, 0x65, 0x1e, 0x5d, 0x3e, 0x5d, 0x3e, 0x65, 0x3e, 0x65, 0xfd, 0x64, 0xbb, 0x5c, 0x38, 0x54, 0xf7, 0x4b, 0x17, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x5c, 0xba, 0x5c, 0xda, 0x5c, 0xfa, 0x64, 0x1b, 0x65, 0x3b, 0x6d, 0x3c, 0x75, 0x5c, 0x75, 0x5c, 0x7d, 0x7d, 0x7d, 0xbe, 0x85, 0xbe, 0x85, 0xbe, 0x7d, 0xbe, 0x7d, 0xbe, 0x7d, 0xbe, 0x75, 0x9e, 0x75, 0x5e, 0x6d, 0x1e, 0x6d, 0xfe, 0x64, 0x3e, 0x6d, 0x7e, 0x6d, 0x9e, 0x6d, 0x9e, 0x6d, 0x9e, 0x6d, 0xbe, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0x9e, 0x75, 0x7d, 0x75, 0x5b, 0x6d, 0x5c, 0x75, 0x7e, 0x75, 0x7e, 0x7d, 0x7e, 0x7d, 0x7e, 0x7d, 0x7e, 0x7d, 0x7e, 0x7d, 0x7e, 0x7d, 0x9e, 0x7d, 0xde, 0x8d, 0x9e, 0x96, 0x3e, 0x9f, 0x7d, 0xaf, 0x5e, 0xc7, 0x7e, 0xe7, 0x7e, 0xe7, 0x7e, 0xe7, 0x7e, 0xe7, 0x7e, 0xef, 0x7e, 0xdf, 0x7e, 0xc7, 0x7d, 0xaf, 0xfe, 0x96, 0x3e, 0x86, 0x9e, 0x7d, 0x1d, 0x6d, 0x9a, 0x5c, 0x58, 0x5c, 0x38, 0x54, 0xd7, 0x4b, 0x96, 0x43, 0x75, 0x3b, 0x35, 0x3b, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xf0, 0x21, 0xef, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x2a, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xef, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x11, 0x8d, 0x19, 0x8e, 0x19, 0x8d, 0x19, 0x8e, 0x19, + 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x21, 0xef, 0x21, 0xef, 0x21, 0x10, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0xcf, 0x21, 0x10, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0xd3, 0x32, 0xb6, 0x4b, 0x37, 0x54, 0x97, 0x64, 0xb8, 0x6c, 0xb8, 0x74, 0x3b, 0x85, 0x1a, 0x85, 0x19, 0x85, 0x3a, 0x7d, 0x3a, 0x75, 0xfb, 0x64, 0xbb, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0xfd, 0x64, 0xfe, 0x6c, 0x5e, 0x6d, 0x5d, 0x6d, 0xd6, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0x16, 0x54, 0xf6, 0x53, 0xf6, 0x53, 0x16, 0x54, 0xf6, 0x53, 0xf6, 0x53, 0xf6, 0x4b, 0xd6, 0x4b, 0x17, 0x4c, 0x17, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x54, 0x37, 0x54, 0x17, 0x54, 0x36, 0x54, 0x36, 0x54, 0xd6, 0x53, 0xd5, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x94, 0x43, 0x94, 0x43, 0x94, 0x43, 0xb5, 0x43, 0xd5, 0x43, 0xd5, 0x43, 0xd5, 0x43, 0xd5, 0x43, 0xf6, 0x43, 0x16, 0x44, 0xf6, 0x43, 0xb5, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xf6, 0x43, 0x17, 0x44, 0x37, 0x4c, 0x58, 0x4c, 0x78, 0x54, 0x98, 0x54, 0xb9, 0x5c, 0xda, 0x5c, 0xda, 0x5c, 0xda, 0x5c, 0xbb, 0x54, 0xdb, 0x5c, 0xdc, 0x5c, 0xfe, 0x5c, 0x3e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0xbc, 0x5c, 0x5a, 0x54, 0x7b, 0x5c, 0x5a, 0x54, 0x38, 0x54, 0x37, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x9a, 0x54, 0xba, 0x5c, 0xda, 0x5c, 0xfb, 0x64, 0x1b, 0x65, 0x3b, 0x6d, 0x5c, 0x6d, 0x5c, 0x75, 0x7d, 0x75, 0x9e, 0x7d, 0xbf, 0x7d, 0xde, 0x7d, 0xde, 0x7d, 0xbe, 0x7d, 0xbe, 0x75, 0x7e, 0x75, 0x3e, 0x6d, 0x3e, 0x6d, 0x7e, 0x6d, 0x9e, 0x75, 0x5e, 0x6d, 0x3e, 0x6d, 0x3e, 0x65, 0x7e, 0x6d, 0xbe, 0x75, 0xbe, 0x75, 0x9e, 0x75, 0x9e, 0x6d, 0x9e, 0x6d, 0x9e, 0x75, 0x9e, 0x75, 0xbe, 0x7d, 0xbe, 0x7d, 0x7e, 0x7d, 0x5e, 0x7d, 0x5e, 0x7d, 0x5e, 0x7d, 0x5e, 0x7d, 0x5e, 0x7d, 0x7e, 0x7d, 0x9e, 0x85, 0x1e, 0x8e, 0xfe, 0x96, 0x5d, 0xa7, 0x7e, 0xb7, 0x7e, 0xd7, 0x7e, 0xe7, 0x7e, 0xef, 0x7e, 0xe7, 0x7e, 0xe7, 0x7e, 0xef, 0x7e, 0xdf, 0x7e, 0xb7, 0x7e, 0xa7, 0xbe, 0x96, 0xde, 0x85, 0x7e, 0x75, 0xfb, 0x64, 0x79, 0x5c, 0x38, 0x54, 0xf7, 0x53, 0xb6, 0x4b, 0x76, 0x43, 0x55, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xf0, 0x29, 0xf0, 0x21, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8d, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0xad, 0x19, 0x8d, 0x11, 0xad, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, + 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x21, 0xce, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0x30, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x92, 0x2a, 0x55, 0x3b, 0xb6, 0x43, 0x17, 0x54, 0x77, 0x5c, 0xb7, 0x64, 0x19, 0x7d, 0x3b, 0x85, 0x5b, 0x85, 0x19, 0x85, 0x19, 0x85, 0x3a, 0x75, 0xfb, 0x64, 0xdb, 0x5c, 0xbb, 0x5c, 0x9b, 0x5c, 0xbc, 0x5c, 0x1e, 0x65, 0x5e, 0x6d, 0x7e, 0x75, 0x18, 0x54, 0xd7, 0x53, 0xf7, 0x53, 0xf7, 0x53, 0x17, 0x54, 0x37, 0x5c, 0x17, 0x5c, 0x16, 0x5c, 0x36, 0x5c, 0x36, 0x54, 0x16, 0x54, 0x17, 0x54, 0x37, 0x54, 0x17, 0x54, 0x37, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x57, 0x54, 0x57, 0x5c, 0x37, 0x5c, 0x16, 0x5c, 0xf6, 0x53, 0xf6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb5, 0x4b, 0x95, 0x4b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x94, 0x4b, 0x74, 0x43, 0x74, 0x43, 0xb5, 0x4b, 0xb5, 0x43, 0xb5, 0x43, 0xd5, 0x43, 0xb5, 0x43, 0xd5, 0x43, 0xd5, 0x43, 0xf6, 0x43, 0xd6, 0x43, 0xb5, 0x3b, 0xb5, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0x17, 0x44, 0x17, 0x4c, 0x37, 0x4c, 0x58, 0x54, 0x58, 0x54, 0x99, 0x54, 0x99, 0x54, 0x99, 0x54, 0xb9, 0x54, 0xba, 0x5c, 0xbb, 0x54, 0xdc, 0x5c, 0xfd, 0x5c, 0x1e, 0x5d, 0x3e, 0x65, 0xdb, 0x5c, 0x38, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x5a, 0x5c, 0x39, 0x54, 0x18, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x54, 0x9a, 0x54, 0x9a, 0x5c, 0xba, 0x5c, 0xda, 0x5c, 0xfb, 0x5c, 0x1b, 0x65, 0x3b, 0x6d, 0x5c, 0x6d, 0x7c, 0x75, 0xbe, 0x7d, 0xdf, 0x7d, 0xbe, 0x7d, 0xbe, 0x75, 0xbe, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x9e, 0x75, 0xbe, 0x75, 0x7e, 0x6d, 0x7e, 0x6d, 0x7e, 0x6d, 0x3e, 0x65, 0xfe, 0x64, 0x1e, 0x65, 0x5e, 0x65, 0xbe, 0x6d, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x6d, 0x9e, 0x75, 0x9e, 0x75, 0xbe, 0x7d, 0xde, 0x7d, 0xbe, 0x7d, 0x7e, 0x7d, 0x7e, 0x7d, 0x5e, 0x7d, 0x5e, 0x7d, 0x5e, 0x7d, 0x9e, 0x7d, 0xbe, 0x85, 0x5e, 0x8e, 0x3e, 0x97, 0x7d, 0xa7, 0x7d, 0xb7, 0x5e, 0xd7, 0x7e, 0xe7, 0x7e, 0xef, 0x7e, 0xe7, 0x7e, 0xef, 0x7e, 0xe7, 0x7e, 0xc7, 0x7d, 0xaf, 0x3e, 0x9f, 0x5e, 0x8e, 0x9e, 0x7d, 0x3d, 0x6d, 0xdb, 0x64, 0x58, 0x5c, 0x17, 0x54, 0xf7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x14, 0x33, 0xf4, 0x32, 0xf3, 0x32, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xad, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0xad, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, + 0xae, 0x19, 0xae, 0x19, 0xce, 0x21, 0xce, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x30, 0x2a, 0x50, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xef, 0x21, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x71, 0x2a, 0xf3, 0x32, 0x55, 0x3b, 0x95, 0x43, 0xf7, 0x4b, 0x57, 0x5c, 0xd8, 0x6c, 0x3a, 0x75, 0x1a, 0x85, 0x3b, 0x85, 0x5c, 0x8d, 0x3a, 0x85, 0x3a, 0x75, 0x1a, 0x6d, 0xdb, 0x64, 0xbc, 0x5c, 0x9b, 0x5c, 0xbc, 0x5c, 0x1e, 0x65, 0x3e, 0x6d, 0x7e, 0x75, 0x79, 0x5c, 0xf7, 0x4b, 0x17, 0x54, 0x17, 0x54, 0x37, 0x54, 0x57, 0x5c, 0x57, 0x5c, 0x77, 0x64, 0x57, 0x64, 0x77, 0x5c, 0x77, 0x5c, 0x57, 0x5c, 0x57, 0x54, 0x57, 0x54, 0x38, 0x54, 0x18, 0x4c, 0x38, 0x54, 0x37, 0x4c, 0x58, 0x54, 0x58, 0x54, 0x57, 0x54, 0x57, 0x54, 0x77, 0x5c, 0x57, 0x5c, 0x37, 0x5c, 0x16, 0x54, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x4b, 0x95, 0x4b, 0x94, 0x4b, 0x74, 0x43, 0x94, 0x4b, 0xb5, 0x4b, 0xd5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x3b, 0x95, 0x3b, 0x94, 0x3b, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0x16, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x58, 0x4c, 0x58, 0x4c, 0x78, 0x54, 0x98, 0x54, 0x99, 0x54, 0x9a, 0x54, 0xbb, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0x9b, 0x54, 0x58, 0x54, 0x37, 0x54, 0x58, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x5a, 0x5c, 0x59, 0x54, 0xf7, 0x4b, 0xf7, 0x4b, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x9a, 0x54, 0x9a, 0x5c, 0x9a, 0x5c, 0xba, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xfb, 0x64, 0x1c, 0x65, 0x3c, 0x6d, 0x5d, 0x6d, 0xbe, 0x75, 0xbf, 0x75, 0xbe, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0xbe, 0x75, 0xde, 0x75, 0xbe, 0x75, 0x7e, 0x6d, 0x5e, 0x6d, 0x3e, 0x65, 0x1e, 0x65, 0xfe, 0x64, 0xde, 0x64, 0xde, 0x5c, 0xfe, 0x64, 0xde, 0x64, 0x1e, 0x65, 0x3e, 0x6d, 0x5e, 0x6d, 0x7e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0xbe, 0x7d, 0xbe, 0x7d, 0xbe, 0x7d, 0x7e, 0x7d, 0x7e, 0x7d, 0x7e, 0x7d, 0x5e, 0x7d, 0x7e, 0x7d, 0x9e, 0x7d, 0xde, 0x85, 0x7e, 0x8e, 0x5e, 0x97, 0x7d, 0xa7, 0x7e, 0xb7, 0x7e, 0xcf, 0x7e, 0xe7, 0x7e, 0xe7, 0x7e, 0xef, 0x7e, 0xe7, 0x7e, 0xcf, 0x7d, 0xb7, 0x9e, 0xa7, 0xde, 0x96, 0xfe, 0x85, 0x7e, 0x75, 0x1c, 0x6d, 0x99, 0x5c, 0x17, 0x54, 0xf7, 0x53, 0xd7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0xf3, 0x32, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8d, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0x8d, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, + 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x10, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x71, 0x2a, 0xd3, 0x32, 0x13, 0x33, 0x34, 0x3b, 0x75, 0x43, 0xb6, 0x4b, 0x37, 0x54, 0xf9, 0x64, 0x19, 0x75, 0x1a, 0x7d, 0x3a, 0x85, 0x3b, 0x85, 0x5c, 0x85, 0x39, 0x75, 0x1a, 0x6d, 0xdb, 0x64, 0xbb, 0x5c, 0x9b, 0x5c, 0xbc, 0x5c, 0x1d, 0x65, 0x3e, 0x6d, 0x7e, 0x75, 0xba, 0x64, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x57, 0x5c, 0x77, 0x5c, 0x77, 0x64, 0x77, 0x64, 0x77, 0x64, 0x77, 0x64, 0x77, 0x64, 0x77, 0x5c, 0x77, 0x5c, 0x78, 0x5c, 0x78, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0x77, 0x5c, 0x77, 0x5c, 0x57, 0x5c, 0x16, 0x54, 0x16, 0x4c, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xb6, 0x4b, 0xb5, 0x43, 0xb5, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0x95, 0x4b, 0x74, 0x43, 0x74, 0x43, 0x95, 0x43, 0xb5, 0x3b, 0xd5, 0x3b, 0xb5, 0x43, 0x94, 0x43, 0x94, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd6, 0x43, 0xf6, 0x4b, 0x16, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x58, 0x4c, 0x58, 0x4c, 0x79, 0x54, 0x99, 0x54, 0xba, 0x5c, 0x7a, 0x54, 0xf8, 0x4b, 0xd7, 0x4b, 0x17, 0x54, 0x38, 0x5c, 0x58, 0x5c, 0x59, 0x5c, 0x59, 0x54, 0x7a, 0x5c, 0x39, 0x54, 0xf7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0x58, 0x54, 0x78, 0x54, 0x58, 0x54, 0x78, 0x54, 0x79, 0x5c, 0x79, 0x54, 0x99, 0x5c, 0x79, 0x54, 0x79, 0x54, 0x9a, 0x5c, 0x9a, 0x54, 0x9a, 0x5c, 0x9a, 0x54, 0xbb, 0x54, 0xdb, 0x5c, 0xdb, 0x5c, 0xfc, 0x64, 0xfc, 0x64, 0x3c, 0x6d, 0x7e, 0x6d, 0x9f, 0x75, 0xbf, 0x75, 0xbe, 0x75, 0x7d, 0x6d, 0x5d, 0x6d, 0x3e, 0x6d, 0x1e, 0x65, 0x1e, 0x65, 0xfe, 0x64, 0xde, 0x64, 0xde, 0x64, 0xde, 0x64, 0xde, 0x64, 0xbe, 0x5c, 0xbe, 0x5c, 0xde, 0x64, 0xde, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0x1e, 0x65, 0x3e, 0x6d, 0x7e, 0x6d, 0xbe, 0x75, 0x9e, 0x7d, 0x9e, 0x7d, 0xbe, 0x7d, 0xbe, 0x7d, 0x9e, 0x7d, 0x7e, 0x75, 0x7e, 0x7d, 0x9e, 0x7d, 0xfe, 0x85, 0xfe, 0x85, 0x7e, 0x86, 0x1e, 0x8f, 0x7d, 0x9f, 0x7e, 0xaf, 0x7e, 0xbf, 0x7e, 0xd7, 0x7e, 0xd7, 0x7e, 0xcf, 0x7e, 0xbf, 0x7d, 0xaf, 0x7d, 0xa7, 0xfe, 0x96, 0x1e, 0x86, 0x9f, 0x7d, 0x3d, 0x75, 0xba, 0x64, 0x58, 0x5c, 0x17, 0x54, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0x76, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0xd3, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0x10, 0x22, 0xf0, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0x8e, 0x19, 0xae, 0x19, 0x8d, 0x19, 0x8d, 0x11, 0x8d, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0x8d, 0x19, 0xae, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, + 0xce, 0x19, 0xce, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x30, 0x2a, 0x30, 0x2a, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x10, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0xb2, 0x2a, 0xd3, 0x2a, 0xd3, 0x32, 0x34, 0x33, 0x55, 0x3b, 0xb6, 0x43, 0x79, 0x5c, 0xd9, 0x64, 0x19, 0x6d, 0x1a, 0x75, 0x3a, 0x7d, 0x3b, 0x7d, 0x5c, 0x7d, 0x5b, 0x75, 0x1a, 0x6d, 0xda, 0x64, 0xbb, 0x5c, 0xbb, 0x5c, 0xdc, 0x64, 0xfd, 0x64, 0x3e, 0x6d, 0x7e, 0x75, 0x5c, 0x6d, 0x38, 0x5c, 0x38, 0x54, 0x58, 0x5c, 0x78, 0x5c, 0x78, 0x64, 0x97, 0x64, 0x97, 0x64, 0x97, 0x6c, 0x97, 0x6c, 0x97, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x5c, 0x98, 0x5c, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x78, 0x54, 0x78, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0x78, 0x64, 0x77, 0x5c, 0x16, 0x54, 0x17, 0x54, 0xf6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xd5, 0x4b, 0xd5, 0x4b, 0xd5, 0x53, 0xb5, 0x4b, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0xb5, 0x43, 0x94, 0x43, 0x94, 0x43, 0x94, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xd5, 0x43, 0xd5, 0x43, 0xf6, 0x43, 0xf6, 0x4b, 0x16, 0x4c, 0xf6, 0x43, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x58, 0x54, 0x78, 0x54, 0x79, 0x54, 0xf7, 0x4b, 0x96, 0x43, 0xb6, 0x43, 0xf7, 0x4b, 0x17, 0x54, 0x18, 0x5c, 0x38, 0x5c, 0x58, 0x5c, 0x59, 0x5c, 0x59, 0x5c, 0x18, 0x4c, 0xd7, 0x43, 0xf7, 0x4b, 0xf8, 0x4b, 0x18, 0x4c, 0x58, 0x54, 0x78, 0x54, 0x79, 0x5c, 0x79, 0x5c, 0x99, 0x5c, 0x99, 0x54, 0x99, 0x5c, 0x9a, 0x54, 0x9a, 0x5c, 0x9a, 0x54, 0x9a, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0xbb, 0x5c, 0xdb, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x64, 0x1d, 0x65, 0x1c, 0x65, 0xdb, 0x5c, 0xbc, 0x5c, 0xdd, 0x64, 0xfe, 0x64, 0x1e, 0x65, 0x3e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0xfe, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0xde, 0x64, 0xde, 0x64, 0xde, 0x5c, 0xfe, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0x3e, 0x6d, 0x7e, 0x75, 0xbe, 0x7d, 0xbe, 0x7d, 0x9e, 0x7d, 0xbe, 0x7d, 0x9e, 0x7d, 0x7e, 0x75, 0x9e, 0x75, 0xbe, 0x7d, 0x1e, 0x7e, 0xde, 0x8e, 0x1e, 0x8f, 0x3d, 0x8f, 0x5d, 0x97, 0x7d, 0xa7, 0x7e, 0xb7, 0x7e, 0xb7, 0x7e, 0xb7, 0x7e, 0xb7, 0x7d, 0xaf, 0x7e, 0x9f, 0x1e, 0x97, 0x3e, 0x86, 0x9f, 0x7d, 0x3d, 0x75, 0xfb, 0x6c, 0x79, 0x5c, 0x37, 0x54, 0xf7, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, + 0xce, 0x19, 0xce, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0xef, 0x19, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x0f, 0x22, 0x10, 0x22, 0x51, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xd3, 0x32, 0x14, 0x33, 0x54, 0x3b, 0xd6, 0x4b, 0x78, 0x5c, 0xb9, 0x64, 0xfa, 0x64, 0x1a, 0x6d, 0x3a, 0x75, 0x3a, 0x75, 0x5b, 0x75, 0x7c, 0x75, 0x1a, 0x65, 0xda, 0x64, 0xbb, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xdd, 0x64, 0x1e, 0x6d, 0x7e, 0x75, 0xde, 0x7d, 0x59, 0x5c, 0x38, 0x5c, 0x58, 0x5c, 0x98, 0x64, 0xb8, 0x64, 0x98, 0x6c, 0x98, 0x6c, 0x98, 0x6c, 0x98, 0x6c, 0x98, 0x6c, 0x98, 0x6c, 0xb8, 0x64, 0xd8, 0x64, 0xb8, 0x5c, 0x98, 0x5c, 0x99, 0x54, 0x79, 0x54, 0x78, 0x54, 0x99, 0x54, 0x99, 0x5c, 0x99, 0x5c, 0xb8, 0x5c, 0xd8, 0x64, 0xb8, 0x64, 0x98, 0x64, 0x78, 0x5c, 0x37, 0x54, 0x17, 0x54, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x53, 0xd5, 0x4b, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x74, 0x3b, 0x33, 0x3b, 0x54, 0x43, 0x94, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd5, 0x43, 0xd5, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0x17, 0x4c, 0x37, 0x4c, 0x58, 0x54, 0x37, 0x4c, 0x95, 0x43, 0x34, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0x17, 0x54, 0x38, 0x5c, 0x38, 0x5c, 0x58, 0x5c, 0x38, 0x54, 0xf7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x43, 0x18, 0x4c, 0x58, 0x54, 0x79, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x9a, 0x5c, 0xba, 0x5c, 0x9a, 0x5c, 0xbb, 0x54, 0xbb, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xbc, 0x5c, 0xbb, 0x5c, 0xbc, 0x5c, 0x9a, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x7a, 0x54, 0xbc, 0x5c, 0xbc, 0x5c, 0xdd, 0x5c, 0xfe, 0x64, 0x1e, 0x65, 0x5e, 0x6d, 0x7e, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x5e, 0x6d, 0x3e, 0x6d, 0xfe, 0x64, 0xfe, 0x64, 0xde, 0x5c, 0xde, 0x5c, 0xfe, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0x1e, 0x65, 0xfe, 0x64, 0x1e, 0x6d, 0x1e, 0x65, 0x5e, 0x6d, 0x9e, 0x75, 0xbe, 0x7d, 0xbe, 0x7d, 0xde, 0x7d, 0xbe, 0x7d, 0x7e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0xde, 0x75, 0x3e, 0x7e, 0xfe, 0x8e, 0x5d, 0x97, 0x5d, 0x97, 0x5d, 0x9f, 0x5d, 0xa7, 0x7d, 0xa7, 0x7d, 0xa7, 0x5d, 0x9f, 0x5e, 0x97, 0xff, 0x8e, 0x3e, 0x86, 0x9e, 0x7d, 0x5e, 0x75, 0xfc, 0x6c, 0x99, 0x64, 0x58, 0x5c, 0x17, 0x54, 0xf6, 0x4b, 0xb6, 0x43, 0xb6, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x14, 0x3b, 0xd3, 0x32, 0xb3, 0x32, 0x72, 0x2a, 0x51, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0x10, 0x22, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xad, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x11, 0x8d, 0x19, 0x8d, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, + 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x29, 0x30, 0x2a, 0x30, 0x2a, 0xef, 0x19, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x0f, 0x22, 0x10, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xd3, 0x2a, 0xf3, 0x32, 0x95, 0x43, 0x16, 0x54, 0x57, 0x5c, 0x99, 0x5c, 0xd9, 0x64, 0xfa, 0x64, 0x1a, 0x6d, 0x3a, 0x6d, 0x5b, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0xba, 0x5c, 0x9a, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xdc, 0x64, 0x1e, 0x65, 0x7e, 0x6d, 0xbe, 0x75, 0x1b, 0x6d, 0x59, 0x5c, 0x79, 0x5c, 0x98, 0x64, 0xb8, 0x64, 0xb8, 0x6c, 0xb8, 0x6c, 0xb8, 0x74, 0xb8, 0x74, 0xb8, 0x74, 0xb8, 0x74, 0xb8, 0x6c, 0xd8, 0x6c, 0xf9, 0x64, 0xd9, 0x64, 0xb9, 0x5c, 0xb9, 0x5c, 0x99, 0x54, 0x99, 0x54, 0xb9, 0x5c, 0x99, 0x5c, 0xb9, 0x5c, 0xd9, 0x64, 0xf9, 0x64, 0xd9, 0x64, 0xb8, 0x64, 0x78, 0x5c, 0x37, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x53, 0x16, 0x54, 0xf6, 0x4b, 0xd6, 0x43, 0xd5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x74, 0x3b, 0x74, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd5, 0x43, 0xd5, 0x43, 0xd5, 0x43, 0xb5, 0x43, 0xb5, 0x3b, 0xd6, 0x3b, 0xd6, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0xb5, 0x43, 0x14, 0x3b, 0x14, 0x33, 0x34, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xf7, 0x4b, 0x17, 0x54, 0x37, 0x54, 0x38, 0x54, 0x58, 0x5c, 0x18, 0x54, 0xf7, 0x43, 0xf7, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x58, 0x54, 0x99, 0x5c, 0xb9, 0x5c, 0xb9, 0x5c, 0xba, 0x5c, 0xba, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xdc, 0x5c, 0xbb, 0x5c, 0x7a, 0x54, 0x19, 0x54, 0xf8, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x39, 0x54, 0x7b, 0x54, 0xbc, 0x54, 0xdd, 0x5c, 0xfe, 0x5c, 0x1e, 0x65, 0x5e, 0x6d, 0xbe, 0x75, 0xbe, 0x7d, 0xbe, 0x7d, 0xbe, 0x75, 0x7e, 0x75, 0x5e, 0x6d, 0x3e, 0x6d, 0x1e, 0x65, 0x1e, 0x65, 0xfe, 0x64, 0xfe, 0x64, 0x1e, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x5e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0xbe, 0x75, 0xbe, 0x7d, 0xde, 0x7d, 0x9e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0xbe, 0x75, 0xde, 0x7d, 0x5f, 0x7e, 0xfe, 0x8e, 0x5d, 0x97, 0x7d, 0x9f, 0x5d, 0x9f, 0x5d, 0x97, 0x3e, 0x8f, 0xfe, 0x8e, 0x9f, 0x86, 0x1e, 0x86, 0xbe, 0x75, 0x5e, 0x6d, 0xfc, 0x6c, 0xba, 0x64, 0x78, 0x5c, 0x37, 0x54, 0xf7, 0x53, 0xd6, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x96, 0x43, 0x14, 0x3b, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xad, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, + 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x29, 0x10, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xef, 0x21, 0x0f, 0x22, 0x0f, 0x22, 0xf0, 0x21, 0x30, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0x34, 0x3b, 0xb5, 0x43, 0xd6, 0x4b, 0x17, 0x54, 0x58, 0x5c, 0xb9, 0x64, 0xda, 0x64, 0xfa, 0x64, 0xfa, 0x64, 0x1a, 0x65, 0x1b, 0x65, 0x1c, 0x65, 0xda, 0x5c, 0x9a, 0x5c, 0x9a, 0x5c, 0x9a, 0x5c, 0xdc, 0x64, 0xfe, 0x64, 0x5e, 0x6d, 0x9e, 0x75, 0x5d, 0x75, 0x79, 0x5c, 0x79, 0x5c, 0xb9, 0x64, 0xd8, 0x64, 0xd8, 0x6c, 0xd8, 0x74, 0xb8, 0x74, 0xb8, 0x74, 0xd8, 0x74, 0xd8, 0x74, 0xd9, 0x74, 0xf9, 0x74, 0x19, 0x75, 0x1a, 0x6d, 0xfa, 0x64, 0xda, 0x5c, 0xba, 0x5c, 0xba, 0x5c, 0xda, 0x5c, 0xda, 0x5c, 0xda, 0x64, 0xda, 0x64, 0xf9, 0x64, 0xf9, 0x64, 0xd9, 0x64, 0xd9, 0x64, 0x78, 0x5c, 0x17, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x16, 0x4c, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb5, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0xd5, 0x43, 0xb5, 0x43, 0xb5, 0x3b, 0xb5, 0x3b, 0xb5, 0x3b, 0xd6, 0x43, 0xd6, 0x43, 0x34, 0x3b, 0xb3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0x17, 0x54, 0x38, 0x54, 0x38, 0x54, 0x17, 0x4c, 0xf7, 0x43, 0xf7, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x59, 0x54, 0xb9, 0x5c, 0xda, 0x5c, 0xda, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xfc, 0x64, 0xdc, 0x5c, 0x59, 0x54, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x39, 0x4c, 0x7b, 0x54, 0xde, 0x5c, 0xfe, 0x5c, 0xfe, 0x5c, 0x3e, 0x65, 0x9e, 0x6d, 0xbe, 0x75, 0xde, 0x7d, 0xde, 0x7d, 0xff, 0x7d, 0xde, 0x75, 0x9e, 0x75, 0x7e, 0x6d, 0x5e, 0x6d, 0x3e, 0x6d, 0x1e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x1e, 0x65, 0x3e, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0x3e, 0x6d, 0x3e, 0x6d, 0x7e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0x5e, 0x6d, 0x5e, 0x6d, 0x9e, 0x75, 0xbe, 0x75, 0xff, 0x75, 0x7e, 0x7e, 0xfe, 0x8e, 0x5e, 0x97, 0x5d, 0x97, 0x7d, 0x97, 0x5e, 0x86, 0x1e, 0x7e, 0xdf, 0x75, 0x9e, 0x75, 0x5e, 0x6d, 0xfc, 0x64, 0x9a, 0x5c, 0x59, 0x5c, 0x38, 0x5c, 0x17, 0x54, 0x17, 0x4c, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x43, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0x10, 0x22, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x21, 0xcf, 0x21, + 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x29, 0x10, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x50, 0x22, 0x31, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xd3, 0x32, 0x55, 0x3b, 0x95, 0x43, 0xb6, 0x4b, 0xf6, 0x53, 0x37, 0x5c, 0x78, 0x5c, 0x99, 0x5c, 0xba, 0x5c, 0xba, 0x5c, 0xda, 0x5c, 0xdb, 0x64, 0xdb, 0x5c, 0xdc, 0x5c, 0x79, 0x54, 0x7a, 0x54, 0x9a, 0x5c, 0xbb, 0x5c, 0xfd, 0x64, 0x3e, 0x6d, 0x9e, 0x75, 0x9d, 0x75, 0x9a, 0x64, 0x9a, 0x5c, 0xb9, 0x64, 0xd9, 0x6c, 0xf9, 0x6c, 0xd9, 0x74, 0xd9, 0x74, 0xd8, 0x7c, 0xd9, 0x7c, 0xd9, 0x7c, 0xf9, 0x7c, 0x1a, 0x7d, 0x1a, 0x75, 0x3a, 0x6d, 0x3b, 0x6d, 0x1b, 0x65, 0x1b, 0x5d, 0xfb, 0x5c, 0xdb, 0x5c, 0xfb, 0x5c, 0xfb, 0x64, 0x1b, 0x6d, 0x1a, 0x65, 0x1a, 0x65, 0xfa, 0x64, 0xfa, 0x64, 0xb9, 0x5c, 0x37, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x54, 0x17, 0x54, 0x16, 0x4c, 0x16, 0x4c, 0xf6, 0x4b, 0xf6, 0x43, 0xd6, 0x43, 0x95, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x74, 0x33, 0x54, 0x33, 0x55, 0x33, 0x95, 0x33, 0xb5, 0x3b, 0xd6, 0x43, 0x95, 0x43, 0xd3, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x34, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0x17, 0x4c, 0x17, 0x54, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x59, 0x54, 0x9a, 0x5c, 0xda, 0x5c, 0xfb, 0x64, 0xfb, 0x5c, 0x79, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x58, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x5a, 0x54, 0xbd, 0x5c, 0xfe, 0x5c, 0xfe, 0x5c, 0xfe, 0x5c, 0x3e, 0x6d, 0x9e, 0x75, 0xde, 0x7d, 0x1e, 0x7e, 0x3e, 0x86, 0x3e, 0x86, 0x3e, 0x7e, 0x1e, 0x7e, 0xfe, 0x7d, 0xbe, 0x75, 0x9e, 0x75, 0x7e, 0x6d, 0x3e, 0x65, 0x3e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x3e, 0x65, 0x3e, 0x65, 0x3e, 0x6d, 0x3e, 0x6d, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0xbe, 0x75, 0x5e, 0x6d, 0x5e, 0x6d, 0x7e, 0x6d, 0x7e, 0x6d, 0x9e, 0x75, 0xfe, 0x75, 0x3e, 0x7e, 0x7e, 0x86, 0xde, 0x8e, 0x1f, 0x8f, 0x7e, 0x86, 0x9e, 0x6d, 0x5e, 0x6d, 0x3e, 0x65, 0xfc, 0x64, 0xba, 0x5c, 0x79, 0x5c, 0x58, 0x54, 0x18, 0x54, 0xf7, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0x95, 0x43, 0x14, 0x3b, 0x14, 0x3b, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x10, 0x22, 0x10, 0x22, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xcf, 0x21, 0xef, 0x21, + 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x0f, 0x2a, 0x30, 0x2a, 0xf0, 0x21, 0xef, 0x21, 0x10, 0x22, 0xf0, 0x19, 0x10, 0x1a, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xd3, 0x2a, 0x14, 0x33, 0x54, 0x3b, 0x95, 0x43, 0xb5, 0x4b, 0xd6, 0x53, 0xf7, 0x53, 0x17, 0x54, 0x58, 0x5c, 0x59, 0x54, 0x79, 0x54, 0x79, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0xbc, 0x5c, 0x7b, 0x54, 0x59, 0x54, 0x7a, 0x54, 0xbb, 0x5c, 0xdc, 0x64, 0x1e, 0x65, 0x7e, 0x75, 0xbe, 0x75, 0x1c, 0x6d, 0x9a, 0x5c, 0xda, 0x64, 0xfa, 0x64, 0xf9, 0x6c, 0xd9, 0x74, 0xf9, 0x7c, 0xd9, 0x7c, 0xd9, 0x7c, 0xf9, 0x7c, 0x1a, 0x7d, 0x1a, 0x7d, 0x3a, 0x7d, 0x5b, 0x75, 0x5b, 0x6d, 0x5c, 0x6d, 0x5c, 0x65, 0x3d, 0x65, 0x1d, 0x65, 0x1d, 0x65, 0x3d, 0x65, 0x3d, 0x6d, 0x5c, 0x6d, 0x3b, 0x6d, 0x1b, 0x65, 0x1a, 0x65, 0xda, 0x5c, 0x99, 0x54, 0x38, 0x54, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x37, 0x54, 0x17, 0x4c, 0x17, 0x54, 0x17, 0x4c, 0x16, 0x4c, 0xd6, 0x4b, 0x95, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x33, 0x54, 0x33, 0x34, 0x2b, 0x34, 0x2b, 0x34, 0x2b, 0x34, 0x2b, 0x55, 0x2b, 0x54, 0x33, 0xd2, 0x32, 0x71, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x59, 0x4c, 0x99, 0x54, 0x79, 0x54, 0xf7, 0x4b, 0xf7, 0x4b, 0x37, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x79, 0x54, 0x79, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x5a, 0x54, 0xbd, 0x5c, 0x1e, 0x5d, 0x1e, 0x5d, 0x3e, 0x65, 0x7e, 0x6d, 0xbe, 0x75, 0xfe, 0x7d, 0x5e, 0x7e, 0x9f, 0x86, 0xbe, 0x86, 0x9e, 0x86, 0x5f, 0x86, 0x3e, 0x7e, 0xfe, 0x7d, 0xbe, 0x75, 0x9e, 0x75, 0x7e, 0x6d, 0x7e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x5e, 0x6d, 0x7e, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x5e, 0x6d, 0x3e, 0x65, 0x5e, 0x65, 0x5e, 0x6d, 0x7e, 0x6d, 0xbe, 0x75, 0xde, 0x75, 0xff, 0x7d, 0x3f, 0x7e, 0x3f, 0x7e, 0x1e, 0x7e, 0x9e, 0x75, 0x1d, 0x65, 0xdc, 0x5c, 0xbb, 0x5c, 0x7a, 0x5c, 0x59, 0x54, 0x18, 0x4c, 0xf7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0xf0, 0x21, 0x10, 0x22, 0x0f, 0x2a, 0xef, 0x29, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x21, 0xcf, 0x21, 0xcf, 0x21, + 0xef, 0x21, 0xef, 0x29, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0xef, 0x21, 0xef, 0x19, 0xf0, 0x19, 0x10, 0x1a, 0x30, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x55, 0x3b, 0x75, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x53, 0xf7, 0x53, 0x17, 0x54, 0x18, 0x54, 0x18, 0x4c, 0x18, 0x4c, 0xf8, 0x4b, 0x39, 0x4c, 0x5a, 0x54, 0x7b, 0x54, 0x39, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0xdc, 0x5c, 0x1e, 0x65, 0x5e, 0x6d, 0x9e, 0x75, 0x3d, 0x6d, 0x9b, 0x5c, 0xdb, 0x64, 0xfa, 0x64, 0x1a, 0x6d, 0x1a, 0x75, 0x1a, 0x7d, 0xf9, 0x7c, 0xfa, 0x84, 0xfa, 0x84, 0x1a, 0x85, 0x1b, 0x85, 0x3b, 0x7d, 0x5c, 0x7d, 0x9c, 0x75, 0x9d, 0x75, 0xbe, 0x6d, 0x7e, 0x6d, 0x7e, 0x6d, 0x7e, 0x6d, 0x7e, 0x6d, 0x7e, 0x6d, 0x9e, 0x6d, 0x7e, 0x6d, 0x5d, 0x6d, 0x3c, 0x65, 0x1c, 0x65, 0xba, 0x5c, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x78, 0x5c, 0x58, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x17, 0x4c, 0xd6, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0xb5, 0x43, 0x94, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x74, 0x3b, 0x54, 0x33, 0x54, 0x2b, 0x34, 0x2b, 0x34, 0x23, 0x34, 0x2b, 0x14, 0x2b, 0x54, 0x2b, 0x34, 0x33, 0x91, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0xd6, 0x4b, 0xd7, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x58, 0x4c, 0x38, 0x4c, 0xf7, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xf7, 0x4b, 0x37, 0x54, 0x37, 0x54, 0x38, 0x54, 0x58, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x99, 0x5c, 0xba, 0x5c, 0x9a, 0x5c, 0x9b, 0x5c, 0x9b, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0x9c, 0x54, 0xde, 0x5c, 0x3e, 0x65, 0x3e, 0x65, 0x5e, 0x65, 0xbe, 0x75, 0xfe, 0x75, 0x3e, 0x7e, 0x9e, 0x86, 0xde, 0x8e, 0x1e, 0x8f, 0xfe, 0x8e, 0xbe, 0x86, 0x9f, 0x86, 0x5e, 0x86, 0x1e, 0x7e, 0xde, 0x75, 0x9e, 0x75, 0x9e, 0x6d, 0x7e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x5e, 0x6d, 0x7e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x5e, 0x6d, 0x3e, 0x65, 0x3e, 0x65, 0x5e, 0x6d, 0x7e, 0x6d, 0x7e, 0x6d, 0x9e, 0x75, 0xbe, 0x75, 0x9e, 0x75, 0xbe, 0x75, 0xbf, 0x75, 0x7e, 0x6d, 0x1d, 0x65, 0x9b, 0x5c, 0x5a, 0x54, 0x38, 0x54, 0x17, 0x4c, 0xd7, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0x59, 0x4c, 0x75, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x0f, 0x2a, 0x0f, 0x2a, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, + 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0xef, 0x21, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xf0, 0x21, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd7, 0x53, 0x17, 0x54, 0x38, 0x54, 0x19, 0x4c, 0x19, 0x4c, 0x39, 0x54, 0x39, 0x54, 0x3a, 0x54, 0x5b, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0xdd, 0x64, 0x1e, 0x65, 0x5e, 0x75, 0xbe, 0x7d, 0x9e, 0x75, 0xbb, 0x64, 0xbb, 0x64, 0xfb, 0x6c, 0x3b, 0x6d, 0x3a, 0x75, 0x1a, 0x7d, 0x1a, 0x7d, 0x1a, 0x85, 0x1a, 0x85, 0x1a, 0x85, 0x3b, 0x85, 0x5c, 0x85, 0x7d, 0x85, 0x9e, 0x7d, 0xfe, 0x7d, 0x1e, 0x7e, 0x1e, 0x7e, 0xfe, 0x7d, 0xde, 0x7d, 0xbe, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0xde, 0x75, 0xbe, 0x75, 0x7e, 0x6d, 0x5d, 0x65, 0x3d, 0x65, 0x9a, 0x5c, 0x38, 0x54, 0x58, 0x54, 0x78, 0x5c, 0x79, 0x5c, 0x58, 0x5c, 0x78, 0x54, 0x58, 0x54, 0x57, 0x54, 0x17, 0x4c, 0xd6, 0x4b, 0xd5, 0x4b, 0xd5, 0x4b, 0x95, 0x4b, 0x95, 0x43, 0x75, 0x3b, 0x74, 0x33, 0x54, 0x33, 0x34, 0x33, 0x34, 0x2b, 0x34, 0x2b, 0x34, 0x23, 0x34, 0x23, 0x55, 0x2b, 0x14, 0x2b, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xf6, 0x4b, 0xf6, 0x43, 0xf6, 0x43, 0xf6, 0x43, 0xd7, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0xf7, 0x43, 0x96, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0x37, 0x54, 0x37, 0x5c, 0x58, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x99, 0x5c, 0xba, 0x5c, 0xba, 0x5c, 0xbb, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xde, 0x5c, 0x1e, 0x5d, 0x5e, 0x65, 0x7e, 0x6d, 0xbe, 0x75, 0x3e, 0x7e, 0x7e, 0x86, 0xbf, 0x86, 0xfe, 0x8e, 0x1e, 0x8f, 0x5e, 0x8f, 0x3e, 0x8f, 0x3e, 0x8f, 0x1e, 0x8f, 0xbe, 0x86, 0x5e, 0x7e, 0xfe, 0x7d, 0xbe, 0x75, 0x9e, 0x75, 0x9e, 0x6d, 0x9e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x9e, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x9e, 0x75, 0x5e, 0x6d, 0x1e, 0x65, 0x1e, 0x65, 0x3e, 0x65, 0x5e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x7e, 0x6d, 0x5e, 0x6d, 0x5f, 0x6d, 0x3e, 0x6d, 0x79, 0x54, 0x18, 0x4c, 0xf7, 0x4b, 0x59, 0x4c, 0x9a, 0x54, 0x7a, 0x4c, 0x59, 0x4c, 0x75, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xce, 0x19, 0xce, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x0f, 0x22, 0x10, 0x2a, 0x10, 0x2a, + 0x30, 0x2a, 0x10, 0x22, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb3, 0x32, 0xb3, 0x32, 0xf4, 0x32, 0x35, 0x33, 0x75, 0x3b, 0x95, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0x19, 0x4c, 0x3a, 0x4c, 0x5a, 0x54, 0x5b, 0x54, 0x7b, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x7b, 0x54, 0xbc, 0x5c, 0xfe, 0x64, 0x5e, 0x6d, 0x9e, 0x75, 0xdf, 0x7d, 0xbe, 0x7d, 0x1d, 0x6d, 0x1c, 0x6d, 0x3b, 0x6d, 0x3b, 0x75, 0x3b, 0x75, 0x3a, 0x7d, 0x3a, 0x85, 0x3b, 0x85, 0x3b, 0x85, 0x5b, 0x8d, 0x7c, 0x8d, 0x9d, 0x85, 0xbe, 0x85, 0x1f, 0x86, 0x7f, 0x86, 0x7e, 0x86, 0x9e, 0x86, 0x9e, 0x86, 0x7e, 0x86, 0x7f, 0x86, 0x7e, 0x7e, 0x5e, 0x7e, 0x5f, 0x7e, 0x1e, 0x7e, 0xbe, 0x75, 0x9e, 0x6d, 0x1d, 0x65, 0x9a, 0x54, 0x79, 0x5c, 0xba, 0x5c, 0xd9, 0x64, 0x99, 0x5c, 0x78, 0x54, 0x58, 0x54, 0x57, 0x54, 0x16, 0x4c, 0xf6, 0x4b, 0xf6, 0x53, 0xd6, 0x4b, 0xb5, 0x43, 0x75, 0x3b, 0x55, 0x33, 0x54, 0x2b, 0x34, 0x2b, 0x34, 0x2b, 0x34, 0x2b, 0x34, 0x23, 0x34, 0x23, 0x34, 0x2b, 0xf3, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0x13, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x95, 0x43, 0xb5, 0x4b, 0xd5, 0x4b, 0xf6, 0x43, 0xf6, 0x43, 0xf6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0xd6, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf6, 0x4b, 0xf7, 0x4b, 0x37, 0x54, 0x58, 0x5c, 0x58, 0x5c, 0x78, 0x64, 0x99, 0x64, 0xb9, 0x64, 0xda, 0x64, 0xfb, 0x64, 0xdc, 0x64, 0xfc, 0x64, 0xfd, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0xfe, 0x5c, 0x1e, 0x65, 0x3e, 0x65, 0x5e, 0x65, 0xbe, 0x75, 0xde, 0x75, 0x9e, 0x7e, 0x1e, 0x87, 0x5e, 0x8f, 0x7d, 0x97, 0x7d, 0x97, 0x7d, 0x9f, 0x7d, 0x9f, 0x7d, 0x97, 0x7e, 0x97, 0xfe, 0x8e, 0x7e, 0x86, 0x3e, 0x7e, 0xde, 0x7d, 0xbe, 0x75, 0xbe, 0x75, 0x9e, 0x75, 0x7e, 0x6d, 0x7e, 0x6d, 0x7e, 0x6d, 0x7e, 0x6d, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x7e, 0x6d, 0x7e, 0x75, 0x3e, 0x6d, 0x1e, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0x3e, 0x65, 0x5e, 0x6d, 0x3e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0x5f, 0x6d, 0xbb, 0x5c, 0xbc, 0x5c, 0xbd, 0x54, 0x9b, 0x54, 0x9a, 0x54, 0xf8, 0x4b, 0x34, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xf0, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x0f, 0x2a, 0x10, 0x2a, 0x10, 0x2a, + 0x0f, 0x22, 0xae, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x52, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0x14, 0x33, 0x35, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0x19, 0x4c, 0x39, 0x4c, 0x7a, 0x54, 0x7a, 0x54, 0x7b, 0x5c, 0x7a, 0x54, 0x5a, 0x54, 0x7b, 0x54, 0x9b, 0x54, 0xdd, 0x5c, 0xfe, 0x64, 0x5e, 0x6d, 0x9e, 0x75, 0xbe, 0x7d, 0x5d, 0x6d, 0x3d, 0x75, 0x5c, 0x75, 0x5c, 0x75, 0x5c, 0x75, 0x5b, 0x7d, 0x5b, 0x85, 0x5b, 0x85, 0x3b, 0x8d, 0x5c, 0x8d, 0x7d, 0x8d, 0x9e, 0x8d, 0xdf, 0x85, 0x5e, 0x86, 0xde, 0x86, 0x3e, 0x8f, 0x5e, 0x97, 0x5e, 0x97, 0x5e, 0x97, 0x3e, 0x97, 0x5e, 0x97, 0x5e, 0x8f, 0x1e, 0x8f, 0xff, 0x86, 0x7f, 0x86, 0xfe, 0x75, 0x9e, 0x75, 0xfc, 0x64, 0xdb, 0x5c, 0x1c, 0x6d, 0xdb, 0x64, 0xda, 0x5c, 0x99, 0x54, 0x78, 0x54, 0x58, 0x54, 0x17, 0x54, 0x17, 0x54, 0xf6, 0x4b, 0xd6, 0x43, 0xb6, 0x3b, 0x95, 0x33, 0x75, 0x2b, 0x55, 0x2b, 0x35, 0x2b, 0x34, 0x2b, 0x34, 0x2b, 0x34, 0x2b, 0x34, 0x2b, 0xf3, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x95, 0x43, 0xb5, 0x4b, 0xd5, 0x4b, 0xd5, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xd6, 0x43, 0x75, 0x3b, 0x34, 0x33, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0x37, 0x54, 0x58, 0x5c, 0x78, 0x64, 0x98, 0x64, 0xb9, 0x64, 0xd9, 0x64, 0xfa, 0x64, 0xfb, 0x64, 0xfc, 0x64, 0x1d, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0xfe, 0x64, 0x3e, 0x65, 0x5e, 0x65, 0x7e, 0x6d, 0xbe, 0x75, 0x1e, 0x7e, 0xbe, 0x86, 0x5e, 0x8f, 0x7d, 0x97, 0x7d, 0x9f, 0x7d, 0xa7, 0x7d, 0xa7, 0x7d, 0xa7, 0x9d, 0xa7, 0x7d, 0xa7, 0x7d, 0x9f, 0x5e, 0x97, 0xfe, 0x8e, 0x7e, 0x86, 0x1e, 0x7e, 0xde, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0x9e, 0x75, 0x7e, 0x6d, 0x7e, 0x6d, 0x5e, 0x6d, 0x9e, 0x75, 0xbe, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x3e, 0x6d, 0x1e, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x1f, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0xfe, 0x64, 0xfe, 0x64, 0x3e, 0x65, 0x7f, 0x6d, 0x3e, 0x65, 0xdd, 0x5c, 0xbc, 0x54, 0x7b, 0x54, 0xf7, 0x4b, 0x55, 0x3b, 0x14, 0x33, 0xf4, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xef, 0x29, 0x0f, 0x2a, 0x10, 0x2a, 0x10, 0x2a, + 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xf4, 0x32, 0x35, 0x3b, 0x76, 0x3b, 0x96, 0x43, 0xb7, 0x43, 0xd7, 0x43, 0xf8, 0x4b, 0x18, 0x4c, 0x39, 0x4c, 0x5a, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0x9b, 0x5c, 0x79, 0x5c, 0x9a, 0x5c, 0x9b, 0x54, 0xbc, 0x5c, 0xfe, 0x64, 0x3f, 0x6d, 0x7e, 0x6d, 0x9e, 0x75, 0xbe, 0x7d, 0x1d, 0x6d, 0x5d, 0x75, 0x7d, 0x75, 0x7c, 0x7d, 0x7c, 0x85, 0x5c, 0x85, 0x5c, 0x85, 0x5c, 0x85, 0x7d, 0x8d, 0x9d, 0x8d, 0xbe, 0x8d, 0xff, 0x8d, 0x7f, 0x8e, 0x1f, 0x8f, 0x7e, 0x97, 0x7d, 0x9f, 0x7d, 0xa7, 0x7d, 0xa7, 0x7d, 0xa7, 0x9d, 0xa7, 0x7d, 0xa7, 0x7d, 0x9f, 0x7d, 0x9f, 0x5e, 0x97, 0x1f, 0x8f, 0x5f, 0x7e, 0xbe, 0x75, 0x7d, 0x75, 0x5d, 0x6d, 0x1c, 0x6d, 0xfb, 0x64, 0xfa, 0x64, 0x99, 0x54, 0x78, 0x54, 0x37, 0x54, 0x37, 0x4c, 0xf7, 0x43, 0xd6, 0x3b, 0xb6, 0x33, 0x95, 0x2b, 0x75, 0x2b, 0x55, 0x2b, 0x55, 0x2b, 0x34, 0x2b, 0x34, 0x2b, 0x34, 0x2b, 0x14, 0x2b, 0x91, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x14, 0x3b, 0x54, 0x43, 0x95, 0x43, 0xd5, 0x4b, 0xb5, 0x43, 0xd5, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xf6, 0x43, 0xf6, 0x43, 0x95, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0x37, 0x54, 0x37, 0x5c, 0x78, 0x5c, 0xb8, 0x64, 0xb9, 0x64, 0xda, 0x64, 0xfa, 0x64, 0xfb, 0x64, 0xfc, 0x64, 0x1e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x5e, 0x65, 0x7e, 0x6d, 0xde, 0x75, 0x1e, 0x76, 0x3f, 0x7e, 0xde, 0x86, 0x7e, 0x8f, 0x7d, 0x9f, 0x7d, 0xa7, 0x7d, 0xaf, 0x7e, 0xaf, 0x7e, 0xb7, 0x7d, 0xb7, 0x9d, 0xb7, 0x7d, 0xaf, 0x7d, 0xa7, 0x7d, 0x9f, 0x3e, 0x97, 0xdf, 0x86, 0x5e, 0x86, 0x1e, 0x7e, 0xde, 0x7d, 0xdf, 0x75, 0xbe, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0xbe, 0x7d, 0xbe, 0x7d, 0x9e, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x7f, 0x75, 0x1e, 0x65, 0x1e, 0x65, 0x3e, 0x6d, 0x3f, 0x65, 0x3e, 0x65, 0x1e, 0x65, 0xfe, 0x64, 0x1e, 0x65, 0x3e, 0x65, 0x5e, 0x65, 0x5f, 0x65, 0x3f, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0xdd, 0x5c, 0x7b, 0x4c, 0x96, 0x43, 0x55, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x0f, 0x2a, 0x0f, 0x2a, 0x0f, 0x2a, 0x10, 0x2a, 0xcf, 0x21, + 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xef, 0x19, 0xef, 0x19, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x31, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x93, 0x2a, 0xb3, 0x32, 0xd4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x55, 0x33, 0x76, 0x3b, 0xb7, 0x43, 0xd7, 0x43, 0xf8, 0x4b, 0x19, 0x4c, 0x39, 0x4c, 0x5a, 0x4c, 0x7a, 0x54, 0x9b, 0x5c, 0x79, 0x54, 0xba, 0x5c, 0xbb, 0x5c, 0xdc, 0x5c, 0x1d, 0x65, 0x1e, 0x65, 0x5e, 0x65, 0x7e, 0x6d, 0xdf, 0x75, 0xbe, 0x75, 0x3e, 0x6d, 0x9e, 0x75, 0x9d, 0x7d, 0x7d, 0x85, 0x7d, 0x8d, 0x7d, 0x8d, 0x7d, 0x8d, 0x7d, 0x8d, 0xbe, 0x8d, 0xdf, 0x8d, 0x1f, 0x8e, 0x9f, 0x8e, 0x3e, 0x97, 0x7d, 0x97, 0x7d, 0x9f, 0x7d, 0xaf, 0x7e, 0xb7, 0x9e, 0xbf, 0x9e, 0xbf, 0x7e, 0xbf, 0x9e, 0xb7, 0x7e, 0xb7, 0x7d, 0xaf, 0x7d, 0x9f, 0x3e, 0x97, 0x9e, 0x86, 0xfd, 0x7d, 0xbe, 0x7d, 0x5d, 0x6d, 0x3d, 0x6d, 0x1c, 0x65, 0xba, 0x54, 0x78, 0x54, 0x37, 0x4c, 0x17, 0x44, 0xf7, 0x3b, 0xb7, 0x33, 0xb6, 0x2b, 0x96, 0x2b, 0x96, 0x2b, 0x95, 0x2b, 0x55, 0x2b, 0x55, 0x2b, 0x35, 0x2b, 0x14, 0x2b, 0x72, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x14, 0x3b, 0x74, 0x43, 0xb5, 0x43, 0xb5, 0x4b, 0xd5, 0x4b, 0xb5, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0x75, 0x3b, 0xf3, 0x32, 0x14, 0x33, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x58, 0x54, 0x78, 0x5c, 0x99, 0x64, 0xb9, 0x64, 0xda, 0x64, 0xfb, 0x64, 0xfc, 0x64, 0x1d, 0x65, 0x3e, 0x6d, 0x7e, 0x6d, 0x9e, 0x6d, 0x9e, 0x6d, 0xbe, 0x75, 0xfe, 0x7d, 0x7f, 0x7e, 0x1f, 0x87, 0x7e, 0x97, 0x7d, 0x9f, 0x7d, 0xaf, 0x7e, 0xb7, 0x9e, 0xbf, 0x7e, 0xc7, 0x7e, 0xc7, 0x7e, 0xc7, 0x7e, 0xbf, 0x7e, 0xb7, 0x9e, 0xaf, 0x9d, 0xa7, 0x5d, 0x97, 0x3e, 0x8f, 0xde, 0x86, 0x5f, 0x86, 0x1f, 0x7e, 0xfe, 0x7d, 0x1e, 0x7e, 0xff, 0x7d, 0xdf, 0x7d, 0xde, 0x7d, 0xde, 0x7d, 0xbf, 0x7d, 0x9e, 0x75, 0x7e, 0x75, 0x7f, 0x75, 0x7f, 0x75, 0x5f, 0x6d, 0x3e, 0x6d, 0x3f, 0x6d, 0x3f, 0x6d, 0x1e, 0x65, 0x3e, 0x65, 0x5e, 0x6d, 0x7e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x5e, 0x65, 0x3e, 0x65, 0x1e, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x5a, 0x54, 0x76, 0x43, 0x96, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xce, 0x19, 0xae, 0x19, + 0x8d, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x30, 0x22, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x93, 0x2a, 0xb3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x35, 0x33, 0x55, 0x3b, 0x76, 0x3b, 0xb7, 0x43, 0xf8, 0x43, 0x19, 0x4c, 0x39, 0x4c, 0x5a, 0x4c, 0x5a, 0x54, 0x9b, 0x54, 0x59, 0x4c, 0x79, 0x54, 0xba, 0x5c, 0xfb, 0x5c, 0x1c, 0x65, 0x3e, 0x65, 0x5e, 0x65, 0x5e, 0x65, 0x9e, 0x75, 0xde, 0x7d, 0x9e, 0x75, 0x9f, 0x75, 0x9e, 0x7d, 0x9e, 0x7d, 0x9e, 0x85, 0x9d, 0x8d, 0x9e, 0x8d, 0x9e, 0x8d, 0xbe, 0x8d, 0xff, 0x8d, 0x3f, 0x8e, 0x9f, 0x8e, 0x3e, 0x97, 0x9d, 0x9f, 0x7d, 0x9f, 0x9d, 0xaf, 0x7e, 0xbf, 0x9e, 0xcf, 0x7e, 0xdf, 0x9f, 0xe7, 0x7e, 0xdf, 0x9e, 0xd7, 0x7e, 0xc7, 0x7e, 0xb7, 0x9d, 0xaf, 0x7d, 0x9f, 0x1e, 0x97, 0x5e, 0x86, 0xbd, 0x7d, 0x7d, 0x6d, 0x5d, 0x65, 0xfb, 0x5c, 0x79, 0x4c, 0x38, 0x3c, 0x18, 0x34, 0x17, 0x34, 0xf7, 0x33, 0xd7, 0x33, 0xd7, 0x33, 0xb6, 0x2b, 0x96, 0x2b, 0x75, 0x2b, 0x75, 0x2b, 0x55, 0x2b, 0xd2, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x34, 0x3b, 0x94, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x34, 0x3b, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf7, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0x37, 0x54, 0x58, 0x54, 0x78, 0x5c, 0x98, 0x5c, 0xb9, 0x5c, 0xba, 0x64, 0xdb, 0x64, 0x1c, 0x6d, 0x3e, 0x6d, 0x7e, 0x6d, 0x7e, 0x75, 0x9e, 0x75, 0xbe, 0x75, 0x1e, 0x7e, 0x7f, 0x7e, 0x1f, 0x87, 0x7d, 0x97, 0x9d, 0x9f, 0x7e, 0xaf, 0x7e, 0xbf, 0x7e, 0xcf, 0x7e, 0xd7, 0x9f, 0xdf, 0x7e, 0xdf, 0x7f, 0xd7, 0x9f, 0xcf, 0x9e, 0xbf, 0x7d, 0xb7, 0x7d, 0xa7, 0x7d, 0x9f, 0x3e, 0x97, 0xde, 0x8e, 0xbf, 0x86, 0x5e, 0x86, 0x1f, 0x7e, 0xff, 0x7d, 0x1f, 0x7e, 0x1f, 0x7e, 0xff, 0x7d, 0xde, 0x7d, 0xbf, 0x7d, 0x9f, 0x75, 0x7f, 0x75, 0x5f, 0x75, 0x5e, 0x6d, 0x5e, 0x6d, 0x3e, 0x6d, 0x5e, 0x65, 0x7e, 0x6d, 0x9e, 0x6d, 0x9e, 0x6d, 0x7e, 0x6d, 0x5e, 0x6d, 0x3f, 0x6d, 0x3e, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0xd7, 0x4b, 0x96, 0x43, 0x76, 0x43, 0x55, 0x43, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, + 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0xcf, 0x21, 0x10, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd4, 0x32, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xf4, 0x32, 0x35, 0x3b, 0x96, 0x3b, 0x97, 0x43, 0xd8, 0x43, 0xf8, 0x43, 0x19, 0x4c, 0x5a, 0x4c, 0x5a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x7a, 0x54, 0x9a, 0x54, 0xbb, 0x5c, 0xfc, 0x5c, 0x1d, 0x65, 0x5e, 0x65, 0x7e, 0x6d, 0x9e, 0x6d, 0xbf, 0x75, 0xde, 0x7d, 0x7e, 0x75, 0xbf, 0x75, 0xbe, 0x7d, 0xbe, 0x7d, 0x9e, 0x85, 0xbe, 0x85, 0xbe, 0x8d, 0xbf, 0x8d, 0xdf, 0x8d, 0x1e, 0x8e, 0x7f, 0x8e, 0x1e, 0x8f, 0x9d, 0x97, 0x7d, 0x9f, 0x7d, 0xaf, 0x7e, 0xbf, 0x7e, 0xd7, 0x7f, 0xef, 0x9f, 0xef, 0x9f, 0xef, 0x9f, 0xef, 0x9f, 0xe7, 0x9f, 0xd7, 0x7e, 0xcf, 0x7e, 0xbf, 0x7e, 0xa7, 0xfe, 0x8e, 0x5e, 0x7e, 0xbe, 0x6d, 0x7e, 0x65, 0xfc, 0x54, 0x7a, 0x44, 0x39, 0x34, 0x38, 0x34, 0x18, 0x34, 0xf8, 0x33, 0xf7, 0x33, 0xf7, 0x33, 0xd7, 0x33, 0xb6, 0x2b, 0xb6, 0x2b, 0x96, 0x2b, 0xf3, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x91, 0x2a, 0x92, 0x32, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x54, 0x3b, 0x74, 0x43, 0x74, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x13, 0x3b, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x14, 0x33, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0x37, 0x54, 0x58, 0x54, 0x78, 0x5c, 0x78, 0x5c, 0x99, 0x5c, 0xb9, 0x5c, 0xdb, 0x64, 0xfc, 0x64, 0x3e, 0x6d, 0x5e, 0x6d, 0x7e, 0x6d, 0x9e, 0x75, 0xde, 0x75, 0x5e, 0x7e, 0x1e, 0x8f, 0x7d, 0x97, 0x7d, 0xa7, 0x9e, 0xaf, 0x9e, 0xbf, 0x9e, 0xd7, 0x7f, 0xe7, 0x7f, 0xef, 0x9f, 0xef, 0x7f, 0xef, 0x9f, 0xe7, 0x7e, 0xd7, 0x7e, 0xc7, 0x7d, 0xb7, 0x9d, 0xaf, 0x7d, 0x9f, 0x7e, 0x97, 0x1e, 0x8f, 0xdf, 0x8e, 0x9e, 0x86, 0x5f, 0x86, 0x1e, 0x7e, 0x3e, 0x7e, 0x1f, 0x7e, 0xff, 0x7d, 0xdf, 0x7d, 0xbe, 0x7d, 0x9e, 0x75, 0x7f, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x7f, 0x75, 0x7e, 0x6d, 0x7f, 0x6d, 0x7e, 0x6d, 0x7e, 0x6d, 0x5f, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x3f, 0x6d, 0x1e, 0x65, 0x1e, 0x65, 0x1f, 0x65, 0xfe, 0x64, 0xb7, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x14, 0x3b, 0xf4, 0x3a, 0x14, 0x3b, 0xf4, 0x3a, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0xcf, 0x21, 0x8e, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x11, + 0x6d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x4c, 0x11, 0x6d, 0x11, 0xae, 0x19, 0xcf, 0x21, 0x50, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xd3, 0x32, 0xd3, 0x3a, 0xf3, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x43, 0x35, 0x43, 0x55, 0x43, 0x55, 0x43, 0x76, 0x43, 0x96, 0x43, 0xb7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xb7, 0x43, 0xb7, 0x43, 0xd7, 0x43, 0xb7, 0x43, 0xd8, 0x43, 0x19, 0x4c, 0x19, 0x4c, 0x3a, 0x4c, 0x9a, 0x54, 0xba, 0x54, 0x9b, 0x54, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0x1c, 0x65, 0x3e, 0x65, 0x7f, 0x6d, 0xbf, 0x6d, 0xde, 0x75, 0xde, 0x7d, 0xde, 0x7d, 0x9e, 0x7d, 0xde, 0x7d, 0xdf, 0x7d, 0xdf, 0x85, 0xbf, 0x85, 0xdf, 0x85, 0xdf, 0x8d, 0xff, 0x8d, 0x1f, 0x8e, 0x5f, 0x8e, 0xfe, 0x8e, 0x3e, 0x8f, 0x7d, 0x9f, 0x7d, 0xa7, 0x7e, 0xb7, 0x7e, 0xc7, 0x7e, 0xe7, 0x9f, 0xef, 0x9f, 0xef, 0x9f, 0xef, 0x9f, 0xef, 0x9f, 0xef, 0x7f, 0xe7, 0x7e, 0xd7, 0x7d, 0xaf, 0x3d, 0x8f, 0x9e, 0x7e, 0xfe, 0x6d, 0xbe, 0x5d, 0x1d, 0x55, 0x9b, 0x44, 0x7a, 0x3c, 0x59, 0x3c, 0x39, 0x3c, 0x18, 0x34, 0x18, 0x34, 0xf7, 0x33, 0xd7, 0x33, 0xd7, 0x33, 0xb6, 0x2b, 0x34, 0x2b, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x13, 0x3b, 0x74, 0x3b, 0x74, 0x43, 0x74, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x34, 0x33, 0x34, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd7, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x37, 0x4c, 0x38, 0x54, 0x78, 0x5c, 0x99, 0x5c, 0xba, 0x5c, 0xdc, 0x64, 0x1e, 0x65, 0x3e, 0x6d, 0x7e, 0x6d, 0xde, 0x75, 0x5f, 0x7e, 0xff, 0x8e, 0x7e, 0x97, 0x9d, 0x9f, 0x7d, 0xaf, 0x7e, 0xbf, 0x7e, 0xcf, 0x7f, 0xe7, 0x9f, 0xef, 0x9f, 0xef, 0x9f, 0xef, 0x9f, 0xef, 0x9f, 0xef, 0x9e, 0xd7, 0x9e, 0xc7, 0x7e, 0xb7, 0x9d, 0xaf, 0x7d, 0x9f, 0x7e, 0x97, 0x3e, 0x8f, 0xff, 0x8e, 0xbf, 0x86, 0x5e, 0x86, 0x1f, 0x86, 0x1e, 0x7e, 0x3e, 0x7e, 0x3e, 0x7e, 0x7e, 0x86, 0x7e, 0x86, 0x1e, 0x7e, 0xbe, 0x7d, 0x9e, 0x75, 0x7f, 0x75, 0x5e, 0x75, 0x7f, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x5e, 0x65, 0x5f, 0x6d, 0x5e, 0x6d, 0x3f, 0x6d, 0x1e, 0x65, 0x1f, 0x65, 0x3f, 0x65, 0x7a, 0x54, 0xb7, 0x4b, 0x96, 0x4b, 0x96, 0x4b, 0x96, 0x43, 0x75, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x0f, 0x2a, 0xae, 0x19, 0x8e, 0x19, 0x8d, 0x19, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, + 0x8d, 0x11, 0x4d, 0x09, 0xef, 0x21, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf4, 0x3a, 0xf4, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x76, 0x43, 0x96, 0x43, 0x97, 0x4b, 0x97, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0x18, 0x54, 0x7b, 0x5c, 0x9c, 0x5c, 0xdd, 0x64, 0x9b, 0x5c, 0x18, 0x4c, 0x39, 0x4c, 0x39, 0x4c, 0x5a, 0x4c, 0x7a, 0x54, 0x9b, 0x5c, 0xbb, 0x5c, 0xfc, 0x5c, 0x1d, 0x65, 0x3e, 0x65, 0x1d, 0x65, 0x3e, 0x65, 0x9e, 0x6d, 0xbe, 0x75, 0x1f, 0x7e, 0x1e, 0x7e, 0x1f, 0x7e, 0xbe, 0x7d, 0xdf, 0x7d, 0xff, 0x7d, 0xdf, 0x7d, 0xdf, 0x85, 0xfe, 0x85, 0x1f, 0x8e, 0x3f, 0x8e, 0x5f, 0x8e, 0x9e, 0x8e, 0x3f, 0x8f, 0x5e, 0x8f, 0x7d, 0x9f, 0x9d, 0xa7, 0x7e, 0xb7, 0x7e, 0xcf, 0x7f, 0xe7, 0x9f, 0xef, 0x9f, 0xef, 0x7f, 0xef, 0x7e, 0xef, 0x9f, 0xef, 0x9e, 0xdf, 0x7e, 0xb7, 0x5d, 0x8f, 0xfe, 0x7e, 0x1e, 0x66, 0x9e, 0x5d, 0x3e, 0x55, 0xdd, 0x44, 0x9c, 0x44, 0x7a, 0x3c, 0x9a, 0x3c, 0x39, 0x3c, 0x38, 0x34, 0x18, 0x34, 0x18, 0x34, 0xf7, 0x33, 0x96, 0x33, 0xf3, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0x13, 0x3b, 0x74, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x74, 0x43, 0x95, 0x43, 0x54, 0x43, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x14, 0x33, 0x34, 0x33, 0x14, 0x33, 0x54, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x9a, 0x5c, 0xdb, 0x5c, 0xfd, 0x64, 0x3e, 0x65, 0x5e, 0x6d, 0x9e, 0x6d, 0xbe, 0x6d, 0x7e, 0x7e, 0x3e, 0x8f, 0x7d, 0x9f, 0x9d, 0xa7, 0x9e, 0xb7, 0x7e, 0xc7, 0x7e, 0xdf, 0x9f, 0xef, 0x9f, 0xef, 0x9f, 0xef, 0x9f, 0xef, 0x9f, 0xef, 0x7f, 0xe7, 0x7e, 0xd7, 0x9e, 0xc7, 0x7d, 0xb7, 0x9d, 0xaf, 0x7d, 0xa7, 0x7e, 0x97, 0x5e, 0x97, 0x3e, 0x8f, 0xfe, 0x8e, 0xff, 0x8e, 0xdf, 0x8e, 0xbe, 0x8e, 0xdf, 0x8e, 0xbe, 0x8e, 0x9e, 0x86, 0x5f, 0x86, 0x7e, 0x86, 0xde, 0x7d, 0x9e, 0x75, 0x7f, 0x75, 0x7e, 0x75, 0x5e, 0x6d, 0x5e, 0x6d, 0x3f, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x3f, 0x6d, 0xd8, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0xb7, 0x4b, 0xb6, 0x4b, 0x55, 0x43, 0x34, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0xf4, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x32, 0x71, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8d, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, + 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x72, 0x32, 0x92, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x76, 0x43, 0x96, 0x43, 0xd7, 0x4b, 0xf8, 0x53, 0x39, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x9b, 0x5c, 0xbd, 0x5c, 0xfe, 0x64, 0xdd, 0x64, 0xbc, 0x5c, 0x9b, 0x54, 0x9b, 0x54, 0xbb, 0x54, 0xbb, 0x5c, 0xdb, 0x64, 0x1d, 0x65, 0x1d, 0x65, 0x3e, 0x65, 0x5e, 0x65, 0x5e, 0x65, 0x9e, 0x6d, 0xde, 0x75, 0x3f, 0x7e, 0x5e, 0x7e, 0x1e, 0x7e, 0xde, 0x7d, 0x1e, 0x7e, 0x1f, 0x7e, 0xff, 0x7d, 0x1f, 0x86, 0x1e, 0x86, 0x5f, 0x8e, 0x7f, 0x8e, 0xbf, 0x8e, 0xff, 0x8e, 0x3e, 0x8f, 0x3e, 0x8f, 0x5d, 0x97, 0x7d, 0xa7, 0x9e, 0xb7, 0x9e, 0xc7, 0x9f, 0xdf, 0x9f, 0xef, 0x9f, 0xef, 0x9f, 0xef, 0x9f, 0xe7, 0x9e, 0xcf, 0x7d, 0xaf, 0x7d, 0x8f, 0x1e, 0x77, 0x7e, 0x6e, 0xfe, 0x5d, 0x7e, 0x55, 0x1e, 0x4d, 0xfd, 0x4c, 0xbc, 0x44, 0x7a, 0x3c, 0x79, 0x3c, 0x59, 0x3c, 0x38, 0x34, 0x18, 0x34, 0xf7, 0x33, 0x34, 0x33, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xf3, 0x3a, 0x53, 0x3b, 0x54, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x43, 0x54, 0x3b, 0xd2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x34, 0x33, 0x34, 0x33, 0x54, 0x3b, 0x74, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x9a, 0x5c, 0xfc, 0x64, 0x1d, 0x65, 0x5e, 0x6d, 0x7e, 0x6d, 0xbe, 0x6d, 0x1e, 0x76, 0xde, 0x7e, 0x5d, 0x87, 0x7d, 0x97, 0x7d, 0xa7, 0x7e, 0xaf, 0x9e, 0xc7, 0x7e, 0xd7, 0x7f, 0xe7, 0x9f, 0xef, 0x7f, 0xef, 0x7f, 0xe7, 0x7f, 0xe7, 0x7e, 0xdf, 0x7e, 0xc7, 0x7e, 0xb7, 0x7d, 0xaf, 0x7d, 0xa7, 0x7d, 0xa7, 0x7d, 0xa7, 0x5e, 0x9f, 0x1e, 0x9f, 0xfe, 0x9e, 0xbe, 0x96, 0x9f, 0x96, 0x9f, 0x96, 0x9e, 0x96, 0xbf, 0x8e, 0xbe, 0x8e, 0xde, 0x86, 0x9e, 0x86, 0x1e, 0x7e, 0xbe, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x5e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x3e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x3f, 0x65, 0x3e, 0x65, 0xf8, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0x96, 0x43, 0x55, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0xef, 0x21, 0xae, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8e, 0x19, 0x30, 0x2a, + 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x3a, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x56, 0x43, 0x96, 0x43, 0xd7, 0x4b, 0xf8, 0x4b, 0x19, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7b, 0x5c, 0x7b, 0x5c, 0x5a, 0x54, 0x9b, 0x5c, 0xbc, 0x5c, 0xbd, 0x64, 0xde, 0x64, 0xdd, 0x5c, 0xfd, 0x64, 0xdc, 0x64, 0xfc, 0x64, 0x1d, 0x65, 0x1e, 0x65, 0x3f, 0x65, 0x7f, 0x6d, 0x9e, 0x6d, 0xbe, 0x75, 0xfe, 0x75, 0x5f, 0x7e, 0x5e, 0x7e, 0x1e, 0x86, 0x1f, 0x7e, 0x1e, 0x7e, 0x1f, 0x7e, 0x3f, 0x7e, 0x3f, 0x7e, 0x5f, 0x86, 0x7f, 0x86, 0xbf, 0x86, 0xdf, 0x86, 0xff, 0x86, 0x1f, 0x87, 0x1e, 0x87, 0x3e, 0x8f, 0x9d, 0x9f, 0x9d, 0xaf, 0x9e, 0xbf, 0x9e, 0xcf, 0x7e, 0xcf, 0x7e, 0xcf, 0x9e, 0xc7, 0x7d, 0xb7, 0x7d, 0xa7, 0x5d, 0x8f, 0x1e, 0x6f, 0xbe, 0x6e, 0xfe, 0x65, 0x9e, 0x5d, 0x3e, 0x55, 0xdd, 0x4c, 0xbc, 0x44, 0x9b, 0x44, 0x9a, 0x44, 0x59, 0x3c, 0x59, 0x3c, 0x38, 0x34, 0x96, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xf3, 0x3a, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0xd2, 0x32, 0x91, 0x2a, 0xb1, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0x58, 0x54, 0x7a, 0x54, 0xbb, 0x5c, 0xdc, 0x64, 0x1e, 0x65, 0x5e, 0x6d, 0x9e, 0x6d, 0xde, 0x75, 0x3e, 0x76, 0xfe, 0x86, 0x5d, 0x8f, 0x7c, 0x97, 0x7d, 0xa7, 0x7d, 0xb7, 0x7e, 0xc7, 0x7e, 0xd7, 0x9e, 0xdf, 0x7e, 0xdf, 0x9e, 0xe7, 0x9e, 0xdf, 0x7e, 0xd7, 0x7e, 0xc7, 0x7e, 0xbf, 0x7d, 0xaf, 0x7d, 0xaf, 0x7d, 0xa7, 0x7d, 0xa7, 0x7e, 0xa7, 0x3e, 0x9f, 0xde, 0x9e, 0xbe, 0x9e, 0x9e, 0x9e, 0x7e, 0x9e, 0x7f, 0x9e, 0x7e, 0x96, 0xff, 0x96, 0xfe, 0x96, 0xde, 0x8e, 0x9e, 0x86, 0x3e, 0x7e, 0xfe, 0x7d, 0xbe, 0x75, 0x7e, 0x6d, 0x5e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x3e, 0x65, 0x3e, 0x65, 0x3f, 0x65, 0xdc, 0x5c, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0xf4, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x30, 0x22, 0x30, 0x22, 0xcf, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0xef, 0x21, 0x10, 0x22, 0x31, 0x2a, 0x72, 0x32, 0x51, 0x2a, + 0x31, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x96, 0x43, 0xd7, 0x4b, 0x18, 0x54, 0x39, 0x54, 0x19, 0x54, 0x59, 0x54, 0x7b, 0x5c, 0x7b, 0x5c, 0x5a, 0x54, 0x5a, 0x54, 0x7c, 0x5c, 0x9c, 0x5c, 0xbd, 0x5c, 0xde, 0x64, 0x1e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x3d, 0x65, 0x1d, 0x5d, 0x3e, 0x5d, 0x5f, 0x65, 0x9f, 0x6d, 0xbe, 0x75, 0xdf, 0x75, 0x3e, 0x7e, 0x5f, 0x7e, 0x5e, 0x7e, 0x3e, 0x7e, 0x7f, 0x86, 0x5f, 0x86, 0x3e, 0x86, 0x5f, 0x7e, 0x5f, 0x7e, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x5e, 0x7e, 0x7f, 0x7e, 0xbf, 0x7e, 0xff, 0x86, 0xbe, 0x86, 0xff, 0x8e, 0x7e, 0x9f, 0x9d, 0xa7, 0x9d, 0xa7, 0x9d, 0xa7, 0x7d, 0xa7, 0x7d, 0xa7, 0x9d, 0x9f, 0x5d, 0x8f, 0xde, 0x6e, 0x9e, 0x6e, 0xde, 0x65, 0x9e, 0x5d, 0x3e, 0x55, 0xdd, 0x4c, 0xfd, 0x4c, 0xbc, 0x44, 0x9b, 0x44, 0x7a, 0x3c, 0x7a, 0x3c, 0x18, 0x3c, 0x35, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0xd2, 0x32, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0xb1, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x14, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x9a, 0x54, 0xbb, 0x5c, 0xfd, 0x64, 0x1e, 0x65, 0x5e, 0x6d, 0x9e, 0x6d, 0xde, 0x75, 0x7e, 0x7e, 0x3e, 0x87, 0x9d, 0x8f, 0x7d, 0x9f, 0x7d, 0xa7, 0x9e, 0xb7, 0x9e, 0xc7, 0x7e, 0xcf, 0x9e, 0xdf, 0x9e, 0xdf, 0x7e, 0xd7, 0x9e, 0xcf, 0x9e, 0xc7, 0x7e, 0xbf, 0x7e, 0xb7, 0x7d, 0xaf, 0x9d, 0xa7, 0x7d, 0x9f, 0x7d, 0x9f, 0x5e, 0x9f, 0xff, 0xa6, 0x9f, 0xa6, 0x7f, 0xa6, 0x7f, 0xa6, 0x5f, 0xa6, 0x9e, 0x9e, 0xff, 0x9e, 0xfe, 0x96, 0xfe, 0x8e, 0xbe, 0x8e, 0x5e, 0x86, 0x5f, 0x7e, 0xfe, 0x7d, 0x1e, 0x76, 0xbe, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x3e, 0x6d, 0x3e, 0x65, 0x5f, 0x6d, 0x7a, 0x5c, 0xf8, 0x53, 0xf7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0x96, 0x4b, 0x96, 0x43, 0x76, 0x43, 0x55, 0x43, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x3a, 0xf3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0x71, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x10, 0x22, 0xcf, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x6d, 0x11, 0x8d, 0x11, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, + 0x10, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x93, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x34, 0x3b, 0x55, 0x3b, 0x96, 0x43, 0xd7, 0x4b, 0x18, 0x4c, 0x19, 0x54, 0x5a, 0x54, 0x39, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x59, 0x54, 0x5a, 0x5c, 0x7b, 0x5c, 0x9c, 0x5c, 0x9d, 0x5c, 0xbd, 0x64, 0xde, 0x64, 0x1e, 0x6d, 0x3e, 0x6d, 0x5f, 0x6d, 0x5e, 0x6d, 0x3e, 0x65, 0x5e, 0x65, 0x7e, 0x65, 0xbe, 0x6d, 0xff, 0x75, 0x3e, 0x7e, 0x3f, 0x7e, 0x7f, 0x7e, 0x5e, 0x86, 0x9f, 0x86, 0x1f, 0x8f, 0xfe, 0x86, 0xbf, 0x86, 0x5f, 0x7e, 0x3e, 0x7e, 0x1e, 0x76, 0x3f, 0x76, 0x3f, 0x76, 0x3f, 0x76, 0x3e, 0x7e, 0x5e, 0x7e, 0x3e, 0x7e, 0xde, 0x7d, 0x9e, 0x7e, 0xfe, 0x7e, 0x5e, 0x87, 0x7e, 0x8f, 0x5d, 0x8f, 0x7d, 0x8f, 0x7e, 0x8f, 0x3e, 0x7f, 0xbe, 0x6e, 0x1e, 0x66, 0xfe, 0x5d, 0x9e, 0x5d, 0x5e, 0x55, 0x3e, 0x4d, 0xde, 0x44, 0xdd, 0x44, 0xbc, 0x44, 0x9b, 0x3c, 0x5a, 0x3c, 0xb7, 0x3b, 0x34, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xd3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x33, 0x13, 0x33, 0x13, 0x33, 0x33, 0x3b, 0xb2, 0x32, 0x30, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xd2, 0x2a, 0xd2, 0x2a, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x14, 0x33, 0x34, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x79, 0x54, 0xbb, 0x5c, 0xfd, 0x5c, 0x1e, 0x5d, 0x3e, 0x65, 0x9e, 0x65, 0xde, 0x6d, 0x9f, 0x7e, 0x5e, 0x87, 0x7d, 0x97, 0x7d, 0x9f, 0x9d, 0xa7, 0x9e, 0xb7, 0x7e, 0xbf, 0x7e, 0xc7, 0x7e, 0xcf, 0x7e, 0xcf, 0x7e, 0xc7, 0x7e, 0xc7, 0x9e, 0xbf, 0x9e, 0xb7, 0x7e, 0xaf, 0x7d, 0xa7, 0x7d, 0x9f, 0x7d, 0x9f, 0x7e, 0x9f, 0xfe, 0x9e, 0x9f, 0xa6, 0x7f, 0xa6, 0x5f, 0xa6, 0x9e, 0xa6, 0xff, 0xae, 0xfe, 0xa6, 0xff, 0xa6, 0xdf, 0x9e, 0xbf, 0x96, 0xbe, 0x8e, 0x7e, 0x86, 0x1e, 0x7e, 0xde, 0x75, 0x1e, 0x7e, 0x1e, 0x76, 0xfe, 0x75, 0x9e, 0x6d, 0x5e, 0x6d, 0x7f, 0x6d, 0x59, 0x54, 0x18, 0x54, 0xf8, 0x53, 0xf7, 0x53, 0xd7, 0x53, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0x96, 0x43, 0x76, 0x43, 0x75, 0x43, 0x35, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x72, 0x2a, 0x10, 0x22, 0x30, 0x1a, 0x10, 0x22, 0x30, 0x22, 0xef, 0x21, 0xae, 0x19, 0x8e, 0x19, 0xae, 0x19, 0x10, 0x22, 0x71, 0x32, 0x31, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, + 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xf0, 0x29, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x55, 0x3b, 0x96, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0x19, 0x4c, 0x5a, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7b, 0x5c, 0x9c, 0x5c, 0xbd, 0x5c, 0xde, 0x5c, 0xde, 0x64, 0xfe, 0x64, 0x3f, 0x6d, 0x5f, 0x6d, 0x5f, 0x75, 0x7f, 0x75, 0x7e, 0x75, 0x7e, 0x6d, 0x9f, 0x6d, 0xde, 0x6d, 0x1f, 0x7e, 0x5f, 0x7e, 0x5f, 0x7e, 0x7e, 0x7e, 0x3e, 0x7e, 0x9e, 0x86, 0x7e, 0x97, 0x3e, 0x8f, 0x9e, 0x86, 0x3e, 0x7e, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xde, 0x75, 0xbe, 0x6d, 0xbe, 0x6d, 0x1e, 0x76, 0x7f, 0x76, 0x5f, 0x76, 0x9f, 0x76, 0x7e, 0x7e, 0x5e, 0x76, 0x3e, 0x66, 0xbe, 0x5d, 0x9e, 0x55, 0x9e, 0x55, 0x1e, 0x55, 0x1e, 0x4d, 0xfe, 0x4c, 0xdd, 0x44, 0xdd, 0x44, 0xbd, 0x44, 0x5b, 0x44, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x34, 0x43, 0x34, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0xb2, 0x32, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xd2, 0x2a, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0x38, 0x4c, 0x59, 0x54, 0x79, 0x54, 0xbb, 0x54, 0xfd, 0x5c, 0x1e, 0x5d, 0x3e, 0x5d, 0x7e, 0x65, 0xff, 0x6d, 0x7f, 0x76, 0x3e, 0x87, 0x7d, 0x8f, 0x7d, 0x9f, 0x7d, 0xa7, 0x7d, 0xaf, 0x7e, 0xb7, 0x7e, 0xbf, 0x9e, 0xbf, 0x7e, 0xbf, 0x7e, 0xbf, 0x7d, 0xb7, 0x7d, 0xaf, 0x7d, 0xaf, 0x7d, 0xa7, 0x7d, 0xa7, 0x7d, 0x9f, 0x7d, 0x9f, 0x1e, 0x9f, 0x9f, 0x9e, 0x7e, 0x9e, 0xbf, 0xa6, 0x1f, 0xaf, 0x1f, 0xaf, 0xff, 0xae, 0xff, 0xa6, 0xdf, 0x9e, 0xbf, 0x96, 0xbf, 0x8e, 0x9e, 0x86, 0x7e, 0x86, 0x1e, 0x7e, 0xbe, 0x86, 0x9e, 0x7e, 0x1e, 0x76, 0xfe, 0x6d, 0xde, 0x6d, 0x7d, 0x65, 0xb6, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb6, 0x43, 0xd6, 0x4b, 0xd7, 0x4b, 0xd7, 0x53, 0xd7, 0x53, 0xb6, 0x4b, 0x96, 0x4b, 0x96, 0x4b, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x72, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0xef, 0x21, 0xae, 0x19, 0xce, 0x21, 0xef, 0x21, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, + 0xef, 0x29, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x21, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xd3, 0x32, 0x14, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0x19, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7b, 0x54, 0x9c, 0x5c, 0xbc, 0x5c, 0xdd, 0x5c, 0xfe, 0x64, 0x1f, 0x65, 0x3f, 0x6d, 0x5f, 0x6d, 0x5f, 0x6d, 0x7e, 0x6d, 0x9f, 0x75, 0x9f, 0x75, 0x9f, 0x75, 0xbe, 0x6d, 0xde, 0x75, 0x1f, 0x7e, 0x5e, 0x86, 0x5f, 0x7e, 0x5f, 0x7e, 0xfe, 0x75, 0x3e, 0x7e, 0x1e, 0x8f, 0x7f, 0x8f, 0x9f, 0x7e, 0x3e, 0x7e, 0xff, 0x75, 0xff, 0x75, 0xde, 0x75, 0xbe, 0x6d, 0xbf, 0x6d, 0xbf, 0x6d, 0xbe, 0x6d, 0x9e, 0x6d, 0x7e, 0x65, 0x7e, 0x65, 0x9e, 0x65, 0xbe, 0x6d, 0xde, 0x6d, 0xde, 0x6d, 0xde, 0x6d, 0xde, 0x65, 0x9e, 0x55, 0x5f, 0x55, 0x5e, 0x55, 0x3f, 0x55, 0x1e, 0x4d, 0xfe, 0x4c, 0xfe, 0x44, 0xde, 0x44, 0xdd, 0x44, 0x38, 0x44, 0x96, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x4b, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x43, 0x34, 0x43, 0x14, 0x43, 0x13, 0x43, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x13, 0x33, 0xd2, 0x32, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x14, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x95, 0x43, 0xb5, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x59, 0x54, 0x7a, 0x54, 0x9b, 0x54, 0xbd, 0x54, 0xfe, 0x54, 0x3e, 0x5d, 0x7e, 0x65, 0xdf, 0x6d, 0x3e, 0x76, 0xfe, 0x86, 0x7d, 0x8f, 0x7d, 0x97, 0x7d, 0xa7, 0x7d, 0xaf, 0x7e, 0xaf, 0x7d, 0xb7, 0x7d, 0xb7, 0x7d, 0xb7, 0x9d, 0xaf, 0x7d, 0xaf, 0x7d, 0xa7, 0x7d, 0xa7, 0x7d, 0x9f, 0x7d, 0x9f, 0x7d, 0x9f, 0x3e, 0x97, 0x1e, 0x97, 0x1f, 0x9f, 0xdf, 0xa6, 0x9f, 0xa6, 0x9f, 0xa6, 0xdf, 0xae, 0xff, 0xae, 0xff, 0xa6, 0xde, 0x9e, 0xbf, 0x96, 0xbf, 0x8e, 0xbf, 0x86, 0x7f, 0x86, 0xfe, 0x7d, 0x7e, 0x7e, 0x5e, 0x76, 0x1e, 0x76, 0x1e, 0x6e, 0x5c, 0x65, 0x34, 0x3b, 0xd2, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x3a, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0xce, 0x21, 0x10, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, + 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x29, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x52, 0x2a, 0x92, 0x2a, 0xd4, 0x32, 0x14, 0x33, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf8, 0x4b, 0x18, 0x4c, 0x39, 0x54, 0x5a, 0x54, 0x39, 0x54, 0x59, 0x54, 0x7b, 0x54, 0x9c, 0x5c, 0xbd, 0x5c, 0xdd, 0x64, 0x1e, 0x65, 0x1e, 0x65, 0x5f, 0x6d, 0x7e, 0x6d, 0x7f, 0x6d, 0x7e, 0x6d, 0x7e, 0x75, 0xbf, 0x75, 0xbf, 0x75, 0x9f, 0x75, 0xdf, 0x75, 0xfe, 0x75, 0x3e, 0x7e, 0x7f, 0x86, 0x5f, 0x7e, 0x3e, 0x76, 0xbe, 0x6d, 0xfe, 0x6d, 0x9e, 0x7e, 0x1f, 0x8f, 0x5f, 0x7e, 0x1f, 0x76, 0xff, 0x75, 0xdf, 0x75, 0xde, 0x6d, 0xbf, 0x65, 0x9f, 0x6d, 0xbf, 0x6d, 0xbe, 0x6d, 0x9e, 0x6d, 0x5e, 0x65, 0x5e, 0x65, 0x7e, 0x65, 0x9e, 0x65, 0x9e, 0x65, 0xbe, 0x65, 0x7e, 0x5d, 0x7e, 0x55, 0x9e, 0x55, 0x5f, 0x55, 0x3e, 0x4d, 0x1e, 0x4d, 0x1e, 0x4d, 0x1e, 0x45, 0x1e, 0x4d, 0x9b, 0x4c, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x53, 0xf6, 0x53, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0x95, 0x4b, 0x75, 0x4b, 0x75, 0x4b, 0x75, 0x43, 0x55, 0x43, 0x34, 0x43, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0xd2, 0x32, 0x50, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x34, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x75, 0x43, 0xb5, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0x38, 0x4c, 0x59, 0x4c, 0x7a, 0x54, 0x7b, 0x54, 0xbc, 0x54, 0xfe, 0x54, 0x1e, 0x55, 0x7f, 0x65, 0xbf, 0x6d, 0x3e, 0x76, 0xdf, 0x7e, 0x7d, 0x8f, 0x7d, 0x97, 0x7d, 0x9f, 0x7d, 0x9f, 0x7d, 0xa7, 0x7d, 0xa7, 0x7d, 0xa7, 0x7d, 0xa7, 0x7d, 0xa7, 0x7d, 0x9f, 0x7d, 0x97, 0x7d, 0x97, 0x7c, 0x97, 0x7d, 0x97, 0x7d, 0x97, 0x7e, 0x9f, 0x3e, 0x97, 0xdf, 0x9e, 0x9f, 0x9e, 0x5f, 0x9e, 0x5f, 0x9e, 0xbf, 0xa6, 0xff, 0xae, 0xff, 0xa6, 0xbf, 0x9e, 0xbf, 0x96, 0xbf, 0x8e, 0x9f, 0x86, 0x1f, 0x7e, 0xfe, 0x75, 0xfe, 0x75, 0x3e, 0x6e, 0xfe, 0x75, 0x3b, 0x65, 0x33, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x50, 0x22, 0x30, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x0f, 0x2a, 0xef, 0x29, 0x0f, 0x2a, 0xef, 0x29, 0xef, 0x29, 0xef, 0x29, + 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x21, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x93, 0x2a, 0xb3, 0x32, 0xf4, 0x32, 0x35, 0x3b, 0x75, 0x43, 0x95, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0x19, 0x4c, 0x5a, 0x54, 0x5a, 0x54, 0x59, 0x54, 0x7b, 0x54, 0x9c, 0x5c, 0xbd, 0x5c, 0x1d, 0x65, 0x1e, 0x65, 0x3e, 0x65, 0x7f, 0x6d, 0x9f, 0x75, 0xbf, 0x75, 0xbf, 0x75, 0x9e, 0x75, 0x9f, 0x75, 0x9e, 0x75, 0xbf, 0x75, 0xdf, 0x75, 0xff, 0x75, 0x1e, 0x7e, 0x5e, 0x7e, 0x7f, 0x7e, 0x5e, 0x76, 0x1f, 0x76, 0x9e, 0x65, 0x9e, 0x65, 0xfe, 0x75, 0x7f, 0x86, 0x3e, 0x7e, 0x1f, 0x76, 0xff, 0x75, 0xde, 0x6d, 0xbf, 0x6d, 0x9f, 0x6d, 0xbf, 0x6d, 0xbf, 0x6d, 0xbe, 0x75, 0xbe, 0x75, 0x7e, 0x65, 0x5e, 0x5d, 0x7e, 0x5d, 0x7e, 0x65, 0x7e, 0x5d, 0x7e, 0x5d, 0x3e, 0x4d, 0x5e, 0x55, 0x5e, 0x55, 0x3e, 0x55, 0x1e, 0x55, 0xfe, 0x4c, 0x1e, 0x4d, 0xfe, 0x4c, 0x59, 0x4c, 0x17, 0x54, 0x37, 0x54, 0x37, 0x5c, 0x17, 0x5c, 0x17, 0x5c, 0x17, 0x5c, 0xf7, 0x53, 0xd6, 0x53, 0xb6, 0x53, 0xb6, 0x4b, 0xb5, 0x4b, 0x75, 0x4b, 0x34, 0x43, 0x13, 0x43, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x13, 0x33, 0x13, 0x33, 0xf3, 0x3a, 0x91, 0x32, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x39, 0x4c, 0x7a, 0x4c, 0x9b, 0x54, 0x9c, 0x4c, 0xbd, 0x4c, 0xfe, 0x54, 0x5e, 0x5d, 0x9e, 0x65, 0x1e, 0x6e, 0x9e, 0x7e, 0x3e, 0x87, 0x7d, 0x8f, 0x9d, 0x97, 0x9d, 0x97, 0x7d, 0x97, 0x7d, 0x9f, 0x7c, 0x97, 0x7d, 0x9f, 0x7c, 0x9f, 0x7d, 0x97, 0x7c, 0x97, 0x7c, 0x97, 0x7c, 0x97, 0x7c, 0x97, 0x9d, 0x97, 0x3e, 0x97, 0xff, 0x96, 0xbf, 0x96, 0x3f, 0x96, 0x3f, 0x96, 0x1f, 0x9e, 0x7e, 0xa6, 0xdf, 0xa6, 0xdf, 0x9e, 0xbf, 0x96, 0xbf, 0x8e, 0xbf, 0x86, 0x7e, 0x86, 0xde, 0x75, 0xfe, 0x75, 0xbe, 0x6d, 0xbe, 0x65, 0x1b, 0x5d, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x30, 0x2a, 0x0f, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x0f, 0x2a, 0x0f, 0x2a, 0xef, 0x21, 0xef, 0x21, 0xef, 0x29, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, + 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x21, 0xf0, 0x29, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xf3, 0x32, 0x34, 0x33, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd8, 0x43, 0xf8, 0x4b, 0x39, 0x4c, 0x5a, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x9c, 0x5c, 0xdd, 0x5c, 0x1d, 0x65, 0x3e, 0x65, 0x5f, 0x6d, 0x7f, 0x6d, 0x9f, 0x6d, 0xbf, 0x75, 0xbf, 0x75, 0xdf, 0x75, 0xbe, 0x75, 0xbf, 0x75, 0xbf, 0x75, 0xdf, 0x75, 0xdf, 0x75, 0x1f, 0x76, 0x3e, 0x7e, 0x9e, 0x7e, 0x7e, 0x76, 0x3e, 0x76, 0xfe, 0x6d, 0xbf, 0x65, 0x9e, 0x65, 0xde, 0x6d, 0x1e, 0x76, 0x3e, 0x7e, 0x5f, 0x76, 0x1e, 0x76, 0xbe, 0x6d, 0xbe, 0x6d, 0xbe, 0x6d, 0xde, 0x75, 0xde, 0x75, 0xbe, 0x6d, 0x9e, 0x6d, 0x5f, 0x65, 0x1e, 0x5d, 0x5f, 0x5d, 0x5e, 0x65, 0x5e, 0x5d, 0x5e, 0x55, 0x5e, 0x55, 0x3e, 0x55, 0x3e, 0x4d, 0x3e, 0x55, 0x5e, 0x55, 0x3e, 0x4d, 0xdc, 0x54, 0x38, 0x4c, 0x38, 0x54, 0x58, 0x5c, 0x58, 0x64, 0x38, 0x64, 0x37, 0x64, 0x37, 0x5c, 0x17, 0x5c, 0x17, 0x5c, 0xf7, 0x53, 0xb6, 0x53, 0x74, 0x4b, 0x33, 0x43, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0x13, 0x33, 0x13, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x91, 0x32, 0x30, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0x39, 0x4c, 0x59, 0x4c, 0x5a, 0x4c, 0x9c, 0x4c, 0xbd, 0x4c, 0xfe, 0x54, 0x5f, 0x5d, 0x7e, 0x65, 0xde, 0x6d, 0x5e, 0x76, 0xbe, 0x7e, 0x3e, 0x87, 0x9e, 0x8f, 0x9d, 0x97, 0x7d, 0x97, 0x7d, 0x97, 0x7c, 0x8f, 0x7c, 0x8f, 0x7d, 0x8f, 0x7d, 0x8f, 0x7c, 0x8f, 0x7c, 0x8f, 0x7d, 0x8f, 0x7e, 0x8f, 0x5e, 0x8f, 0x1e, 0x8f, 0xdf, 0x8e, 0x5f, 0x8e, 0x3e, 0x96, 0x3f, 0x96, 0x1f, 0x96, 0x3f, 0x96, 0x9e, 0x96, 0xdf, 0x96, 0xdf, 0x8e, 0xbf, 0x86, 0x9f, 0x86, 0xfe, 0x7d, 0xfe, 0x75, 0xde, 0x6d, 0xbe, 0x6d, 0xda, 0x5c, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0x13, 0x33, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, + 0xcf, 0x21, 0xcf, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0xf4, 0x32, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x76, 0x3b, 0x96, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xf8, 0x43, 0x19, 0x4c, 0x39, 0x4c, 0x7a, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0xdc, 0x5c, 0x1d, 0x65, 0x3d, 0x6d, 0x5e, 0x6d, 0x9f, 0x6d, 0x9f, 0x75, 0x9f, 0x75, 0xbf, 0x75, 0xde, 0x7d, 0xde, 0x7d, 0xdf, 0x75, 0xdf, 0x75, 0xdf, 0x75, 0xdf, 0x75, 0x1f, 0x76, 0x3f, 0x7e, 0x7f, 0x7e, 0xbf, 0x7e, 0x7f, 0x76, 0xfe, 0x6d, 0xde, 0x6d, 0x9e, 0x65, 0x9f, 0x65, 0x9e, 0x5d, 0xde, 0x65, 0xde, 0x65, 0xde, 0x75, 0xde, 0x75, 0xbe, 0x75, 0x9e, 0x75, 0x9e, 0x6d, 0x9e, 0x6d, 0x9f, 0x6d, 0x9e, 0x6d, 0x7e, 0x6d, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x3e, 0x5d, 0x1e, 0x55, 0x1e, 0x55, 0x3e, 0x55, 0x1e, 0x55, 0x1e, 0x4d, 0x3e, 0x55, 0x3e, 0x55, 0x9b, 0x54, 0x39, 0x54, 0x38, 0x54, 0x59, 0x5c, 0x78, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x17, 0x5c, 0x74, 0x43, 0x33, 0x43, 0x13, 0x3b, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x33, 0xd2, 0x32, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x74, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0x18, 0x44, 0x18, 0x44, 0x39, 0x44, 0x7a, 0x44, 0x9b, 0x44, 0xbc, 0x4c, 0xde, 0x4c, 0x3e, 0x5d, 0x9e, 0x65, 0xde, 0x6d, 0x1f, 0x76, 0x5e, 0x7e, 0xfe, 0x86, 0x3e, 0x8f, 0x5e, 0x8f, 0x7e, 0x8f, 0x7e, 0x87, 0x7e, 0x87, 0x7e, 0x87, 0x7e, 0x87, 0x5d, 0x87, 0x7d, 0x87, 0x7d, 0x87, 0x7e, 0x87, 0x5e, 0x8f, 0x3f, 0x8f, 0xff, 0x8e, 0x7e, 0x8e, 0x5e, 0x8e, 0x3f, 0x86, 0x3e, 0x8e, 0x1e, 0x8e, 0x3e, 0x86, 0x5e, 0x8e, 0xbe, 0x8e, 0xbe, 0x86, 0x7f, 0x86, 0x1e, 0x7e, 0xde, 0x75, 0xde, 0x6d, 0xdf, 0x6d, 0xda, 0x5c, 0xd3, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x33, 0xf3, 0x32, 0x13, 0x33, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x22, 0x51, 0x22, 0x51, 0x22, 0x30, 0x2a, 0x10, 0x2a, 0x0f, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x0f, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xf0, 0x29, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xaf, 0x19, + 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x10, 0x22, 0x10, 0x22, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xb3, 0x32, 0xf4, 0x32, 0x35, 0x3b, 0x55, 0x3b, 0x56, 0x3b, 0x96, 0x3b, 0x97, 0x43, 0x97, 0x43, 0xd8, 0x43, 0xf8, 0x43, 0x19, 0x4c, 0x5a, 0x54, 0x7b, 0x54, 0x9b, 0x54, 0xdc, 0x5c, 0x1d, 0x65, 0x3d, 0x6d, 0x7e, 0x75, 0xbf, 0x75, 0x9f, 0x75, 0xbf, 0x7d, 0xbf, 0x7d, 0xde, 0x7d, 0xdf, 0x7d, 0xff, 0x7d, 0xde, 0x7d, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0x3f, 0x7e, 0x3e, 0x7e, 0x9f, 0x86, 0xbf, 0x86, 0x1e, 0x76, 0xfe, 0x6d, 0xbe, 0x65, 0xde, 0x65, 0xde, 0x65, 0xbe, 0x5d, 0x9e, 0x5d, 0x7e, 0x5d, 0x5e, 0x65, 0x9e, 0x6d, 0x9e, 0x75, 0x9e, 0x6d, 0x9e, 0x6d, 0x9e, 0x6d, 0x7f, 0x6d, 0x7f, 0x6d, 0x5e, 0x6d, 0x1e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x3e, 0x55, 0x3e, 0x55, 0x1e, 0x55, 0x3e, 0x55, 0x3e, 0x55, 0x3e, 0x55, 0xfe, 0x54, 0x7b, 0x54, 0x7a, 0x5c, 0x7a, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x58, 0x5c, 0x17, 0x54, 0x95, 0x4b, 0x13, 0x3b, 0x33, 0x43, 0x33, 0x43, 0x13, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0x91, 0x32, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x10, 0x22, 0xef, 0x21, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0x18, 0x44, 0x18, 0x44, 0x39, 0x3c, 0x7a, 0x3c, 0xbc, 0x44, 0xdd, 0x4c, 0x1e, 0x55, 0x7e, 0x5d, 0xbe, 0x65, 0xde, 0x6d, 0xfe, 0x75, 0x5f, 0x7e, 0x7e, 0x7e, 0xbe, 0x86, 0x1e, 0x87, 0x1e, 0x87, 0x1e, 0x7f, 0x1e, 0x7f, 0x1e, 0x7f, 0x1e, 0x7f, 0x3e, 0x7f, 0x5e, 0x7f, 0x5e, 0x87, 0x5e, 0x87, 0x3f, 0x87, 0xbf, 0x86, 0x3f, 0x86, 0x1e, 0x86, 0x1f, 0x7e, 0x3f, 0x7e, 0x3f, 0x7e, 0x3f, 0x86, 0x3e, 0x7e, 0x7f, 0x7e, 0x5e, 0x7e, 0x1e, 0x7e, 0xbe, 0x75, 0xde, 0x6d, 0xbe, 0x6d, 0x79, 0x54, 0xd3, 0x32, 0x92, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0xb1, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x22, 0x51, 0x22, 0x30, 0x2a, 0x0f, 0x2a, 0x0f, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x0f, 0x2a, 0x0f, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x0f, 0x2a, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xce, 0x19, 0xaf, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, + 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xcf, 0x19, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xd3, 0x32, 0x35, 0x3b, 0x96, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xf8, 0x4b, 0x18, 0x4c, 0x39, 0x54, 0x5b, 0x5c, 0x9c, 0x5c, 0x9d, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xdd, 0x64, 0x1d, 0x65, 0x3d, 0x6d, 0x7e, 0x75, 0x9f, 0x75, 0xbf, 0x7d, 0xbf, 0x7d, 0xbf, 0x85, 0xbf, 0x7d, 0xdf, 0x85, 0xff, 0x7d, 0xff, 0x7d, 0x1f, 0x7e, 0x1f, 0x7e, 0x1f, 0x7e, 0x1f, 0x76, 0x3f, 0x7e, 0x7f, 0x7e, 0xbf, 0x86, 0xff, 0x86, 0x3e, 0x76, 0xfe, 0x65, 0xde, 0x65, 0xfe, 0x65, 0xde, 0x5d, 0xbe, 0x5d, 0x3e, 0x5d, 0x7e, 0x5d, 0x5e, 0x5d, 0x5e, 0x5d, 0x7e, 0x6d, 0x9e, 0x6d, 0x7e, 0x6d, 0x9e, 0x6d, 0x9f, 0x75, 0x7f, 0x6d, 0x5e, 0x6d, 0x3f, 0x65, 0x5f, 0x65, 0x5e, 0x5d, 0x5e, 0x5d, 0x3e, 0x5d, 0x5e, 0x5d, 0x5e, 0x5d, 0x5f, 0x5d, 0xfd, 0x5c, 0x9c, 0x5c, 0x9b, 0x5c, 0x7a, 0x5c, 0x59, 0x5c, 0x59, 0x5c, 0xf7, 0x53, 0x54, 0x43, 0x13, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x34, 0x43, 0x34, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0xb2, 0x32, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x95, 0x3b, 0xb6, 0x3b, 0xb6, 0x43, 0xb7, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0xf8, 0x3b, 0x18, 0x3c, 0x39, 0x3c, 0x7a, 0x3c, 0x9b, 0x44, 0xdc, 0x44, 0x1d, 0x55, 0x5e, 0x5d, 0x7e, 0x65, 0x9e, 0x6d, 0xde, 0x6d, 0xde, 0x75, 0x1e, 0x76, 0x3f, 0x76, 0x7e, 0x7e, 0xbe, 0x76, 0x9e, 0x76, 0x7e, 0x76, 0x9e, 0x76, 0xbe, 0x76, 0xde, 0x76, 0x1e, 0x77, 0x1f, 0x7f, 0x3e, 0x7f, 0xff, 0x7e, 0x5e, 0x7e, 0x1f, 0x76, 0x1f, 0x7e, 0x3f, 0x7e, 0x3f, 0x7e, 0x3e, 0x76, 0x3f, 0x7e, 0x3f, 0x76, 0x1e, 0x76, 0x1e, 0x76, 0x9e, 0x6d, 0x9e, 0x75, 0xbe, 0x65, 0x37, 0x4c, 0xd2, 0x32, 0xb2, 0x2a, 0xd3, 0x32, 0xd3, 0x2a, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0xb1, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x0f, 0x2a, 0x0f, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xef, 0x29, 0xef, 0x29, 0x0f, 0x2a, 0xef, 0x29, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, + 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xf0, 0x21, 0x51, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x3a, 0xf4, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x76, 0x43, 0xb7, 0x43, 0xd7, 0x4b, 0xd8, 0x4b, 0x19, 0x54, 0x7c, 0x5c, 0xde, 0x5c, 0x1f, 0x65, 0x1e, 0x6d, 0x3e, 0x6d, 0xfe, 0x6c, 0x1e, 0x6d, 0x3e, 0x6d, 0x7e, 0x75, 0x9e, 0x7d, 0xbf, 0x85, 0xbf, 0x85, 0xdf, 0x85, 0xdf, 0x85, 0xff, 0x85, 0xff, 0x85, 0x1f, 0x86, 0x3f, 0x86, 0x3f, 0x7e, 0x1f, 0x7e, 0x3f, 0x76, 0x3f, 0x7e, 0x5f, 0x7e, 0x7f, 0x7e, 0xbf, 0x86, 0xbe, 0x7e, 0x3e, 0x76, 0xfe, 0x65, 0x1e, 0x66, 0xfe, 0x65, 0x9e, 0x65, 0x5e, 0x5d, 0x5e, 0x5d, 0x3e, 0x5d, 0x5e, 0x5d, 0x5e, 0x5d, 0x3e, 0x5d, 0x5e, 0x5d, 0x9f, 0x6d, 0x9f, 0x6d, 0x7f, 0x6d, 0x7f, 0x6d, 0x5e, 0x6d, 0x3e, 0x65, 0x5e, 0x5d, 0x5e, 0x5d, 0x5e, 0x5d, 0x7e, 0x5d, 0x5e, 0x55, 0xfc, 0x4c, 0x59, 0x4c, 0xd8, 0x43, 0xd7, 0x43, 0xb6, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0xf2, 0x3a, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x0f, 0x22, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x96, 0x3b, 0xb6, 0x3b, 0xd6, 0x3b, 0xd7, 0x3b, 0xd7, 0x3b, 0xf8, 0x3b, 0x18, 0x3c, 0x39, 0x3c, 0x79, 0x3c, 0x9a, 0x44, 0xbb, 0x4c, 0x1c, 0x4d, 0x3e, 0x55, 0x5e, 0x5d, 0x7e, 0x65, 0x9f, 0x6d, 0x9f, 0x6d, 0xbe, 0x6d, 0xde, 0x75, 0x1e, 0x6e, 0x3e, 0x6e, 0x1e, 0x6e, 0x1e, 0x6e, 0x3e, 0x6e, 0x5e, 0x6e, 0x7e, 0x76, 0xbe, 0x76, 0xde, 0x76, 0xfe, 0x76, 0x9e, 0x76, 0x3f, 0x76, 0x1e, 0x76, 0x3f, 0x76, 0x3f, 0x76, 0x3f, 0x6e, 0x1e, 0x6e, 0x1e, 0x6e, 0xfe, 0x75, 0xde, 0x6d, 0x7e, 0x6d, 0x5f, 0x6d, 0x9e, 0x65, 0xf6, 0x4b, 0xd2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x3a, 0xb2, 0x32, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x0f, 0x2a, 0x0f, 0x2a, 0x10, 0x2a, 0x0f, 0x2a, 0xef, 0x21, 0xef, 0x29, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, + 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xaf, 0x19, 0x71, 0x32, 0x72, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0x97, 0x43, 0xb7, 0x4b, 0x18, 0x4c, 0x39, 0x54, 0x39, 0x54, 0x7b, 0x54, 0x9b, 0x5c, 0x9c, 0x5c, 0xde, 0x64, 0xff, 0x64, 0x1f, 0x6d, 0x3f, 0x6d, 0x7f, 0x75, 0xbf, 0x7d, 0xbf, 0x7d, 0xbf, 0x85, 0xdf, 0x8d, 0x1f, 0x8e, 0x1f, 0x8e, 0x1f, 0x8e, 0x3f, 0x8e, 0x5f, 0x86, 0x5f, 0x86, 0x3f, 0x7e, 0x1f, 0x76, 0x1f, 0x76, 0x5f, 0x76, 0x5f, 0x7e, 0x7e, 0x7e, 0x9f, 0x7e, 0x9f, 0x86, 0x9e, 0x7e, 0xff, 0x65, 0x1f, 0x66, 0xbe, 0x65, 0x5e, 0x5d, 0x7e, 0x5d, 0x5e, 0x5d, 0x3e, 0x5d, 0x3e, 0x5d, 0x3e, 0x5d, 0x3e, 0x5d, 0x9f, 0x65, 0x7f, 0x65, 0x7f, 0x6d, 0x7f, 0x6d, 0x5e, 0x65, 0x1e, 0x5d, 0xfc, 0x44, 0xdb, 0x34, 0xfb, 0x3c, 0xdc, 0x34, 0xfc, 0x34, 0xdb, 0x44, 0x14, 0x33, 0x75, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x4b, 0x95, 0x4b, 0x74, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0x91, 0x32, 0x50, 0x2a, 0x50, 0x32, 0x50, 0x32, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0x0f, 0x22, 0x2f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x50, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xd7, 0x3b, 0xd7, 0x3b, 0xd7, 0x3b, 0xf8, 0x3b, 0x18, 0x3c, 0x39, 0x3c, 0x59, 0x3c, 0xba, 0x44, 0xdb, 0x4c, 0xfc, 0x54, 0x3d, 0x5d, 0x1e, 0x5d, 0x5e, 0x65, 0x7e, 0x6d, 0xbf, 0x6d, 0xbe, 0x6d, 0xbe, 0x65, 0xde, 0x65, 0xde, 0x65, 0xde, 0x65, 0xde, 0x6d, 0xfe, 0x6d, 0x1e, 0x6e, 0x3e, 0x6e, 0x9e, 0x6e, 0x3e, 0x76, 0x1e, 0x6e, 0xfe, 0x6d, 0xfe, 0x6d, 0xfe, 0x6d, 0xfe, 0x6d, 0xfe, 0x6d, 0xde, 0x6d, 0xdf, 0x6d, 0xbf, 0x65, 0x7e, 0x65, 0x5e, 0x65, 0x3f, 0x65, 0xd6, 0x43, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xd3, 0x3a, 0x92, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x0f, 0x2a, 0x10, 0x2a, 0x0f, 0x2a, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8d, 0x19, + 0x6d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x19, 0x6d, 0x11, 0xae, 0x19, 0x30, 0x2a, 0x71, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0x97, 0x43, 0xd7, 0x4b, 0x19, 0x4c, 0x5a, 0x54, 0x7b, 0x54, 0x39, 0x4c, 0x5a, 0x54, 0x9c, 0x5c, 0xde, 0x64, 0xff, 0x6c, 0x3f, 0x6d, 0x7e, 0x75, 0x9f, 0x75, 0xbf, 0x7d, 0xdf, 0x85, 0xff, 0x85, 0x1f, 0x8e, 0x5f, 0x8e, 0x5f, 0x96, 0x7f, 0x96, 0x7f, 0x8e, 0x9f, 0x86, 0x7f, 0x7e, 0x5f, 0x76, 0x3f, 0x76, 0x3f, 0x76, 0x3f, 0x76, 0x1f, 0x7e, 0x5f, 0x7e, 0x7f, 0x86, 0x5e, 0x7e, 0x9e, 0x7e, 0xfe, 0x65, 0xbd, 0x65, 0x9e, 0x65, 0x7e, 0x5d, 0x5e, 0x5d, 0x5e, 0x5d, 0x5e, 0x5d, 0x3e, 0x5d, 0x7f, 0x5d, 0x5f, 0x65, 0x5e, 0x65, 0x5e, 0x65, 0x7e, 0x65, 0x5f, 0x6d, 0x3e, 0x65, 0xfc, 0x44, 0x3c, 0x3d, 0xdb, 0x34, 0xfc, 0x34, 0xfc, 0x34, 0xf7, 0x33, 0x55, 0x3b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0x95, 0x4b, 0xb5, 0x43, 0xb5, 0x4b, 0x95, 0x4b, 0x74, 0x43, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0xf2, 0x3a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x32, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x2a, 0x50, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x32, 0xb1, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf2, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0xb7, 0x3b, 0xd7, 0x3b, 0xf8, 0x3b, 0x18, 0x3c, 0x19, 0x3c, 0x59, 0x44, 0x9a, 0x4c, 0xbb, 0x4c, 0xdc, 0x54, 0xdd, 0x5c, 0x1e, 0x5d, 0x3e, 0x65, 0x3e, 0x65, 0x5e, 0x65, 0x5f, 0x65, 0x7f, 0x65, 0x9e, 0x65, 0x7e, 0x65, 0xbe, 0x65, 0x9e, 0x65, 0x9e, 0x65, 0xdf, 0x65, 0xdf, 0x6d, 0xff, 0x75, 0xfe, 0x75, 0xff, 0x75, 0xde, 0x75, 0xde, 0x75, 0xde, 0x75, 0xde, 0x75, 0xdf, 0x75, 0xdf, 0x75, 0xdf, 0x75, 0xdf, 0x6d, 0x7f, 0x6d, 0x3f, 0x6d, 0x5f, 0x6d, 0xd5, 0x4b, 0xd2, 0x32, 0xb2, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x2a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x0f, 0x2a, 0xef, 0x29, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8d, 0x19, 0x8d, 0x11, 0x8d, 0x19, 0x8d, 0x19, 0x6d, 0x11, + 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0xae, 0x19, 0xef, 0x21, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x35, 0x3b, 0x56, 0x3b, 0x97, 0x43, 0xd8, 0x4b, 0xf8, 0x4b, 0x39, 0x54, 0x18, 0x4c, 0x19, 0x4c, 0x3a, 0x54, 0x5b, 0x54, 0xbd, 0x5c, 0xde, 0x64, 0x1f, 0x6d, 0x5f, 0x75, 0xbf, 0x7d, 0xbf, 0x7d, 0xdf, 0x85, 0xff, 0x85, 0x3f, 0x8e, 0x5f, 0x8e, 0xbf, 0x96, 0xdf, 0x96, 0xdf, 0x96, 0x1f, 0x8f, 0x1f, 0x87, 0xbf, 0x7e, 0x5f, 0x76, 0x5f, 0x76, 0x1f, 0x7e, 0x3f, 0x7e, 0x3f, 0x7e, 0x5f, 0x7e, 0x5f, 0x7e, 0x5f, 0x7e, 0x7e, 0x76, 0xbd, 0x6d, 0xbe, 0x65, 0xbe, 0x65, 0x9e, 0x65, 0x7e, 0x5d, 0x5e, 0x5d, 0x5f, 0x5d, 0x5e, 0x65, 0x5f, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x5e, 0x65, 0x3e, 0x65, 0x7e, 0x6d, 0x9d, 0x5d, 0xbb, 0x34, 0xdc, 0x34, 0xfc, 0x34, 0x99, 0x34, 0x96, 0x3b, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb5, 0x4b, 0xb5, 0x4b, 0xb5, 0x43, 0xb5, 0x4b, 0x95, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x74, 0x3b, 0x74, 0x3b, 0x74, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0xb2, 0x32, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x51, 0x2a, 0x50, 0x2a, 0x70, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0xef, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, 0x76, 0x33, 0x96, 0x33, 0x97, 0x33, 0xb7, 0x33, 0xd8, 0x3b, 0xf8, 0x3b, 0x19, 0x3c, 0x39, 0x44, 0x7a, 0x44, 0x9b, 0x4c, 0xbb, 0x54, 0xdc, 0x54, 0xdd, 0x5c, 0x1d, 0x65, 0x3e, 0x65, 0x5e, 0x65, 0x7f, 0x65, 0x7f, 0x65, 0x7f, 0x65, 0x5f, 0x65, 0x7f, 0x65, 0x7f, 0x65, 0x7e, 0x65, 0x9f, 0x65, 0xbf, 0x6d, 0xde, 0x6d, 0xbe, 0x6d, 0xbf, 0x6d, 0xbf, 0x6d, 0x9e, 0x6d, 0xbf, 0x6d, 0x9f, 0x65, 0x9e, 0x6d, 0x9f, 0x6d, 0xbf, 0x6d, 0x7f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0xb5, 0x43, 0xd2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xd3, 0x3a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x0f, 0x2a, 0x10, 0x2a, 0xef, 0x29, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x6d, 0x19, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, + 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x19, 0xcf, 0x21, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xb3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x35, 0x3b, 0x96, 0x43, 0xd7, 0x43, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xf9, 0x4b, 0x19, 0x54, 0x5b, 0x54, 0x9c, 0x5c, 0xde, 0x5c, 0xff, 0x64, 0x5f, 0x6d, 0x9f, 0x75, 0xbe, 0x7d, 0xdf, 0x7d, 0xff, 0x85, 0x5f, 0x86, 0x5f, 0x8e, 0xbf, 0x96, 0xff, 0x96, 0x1f, 0x9f, 0x3f, 0x9f, 0x5f, 0x97, 0x3f, 0x87, 0xff, 0x7e, 0x7f, 0x7e, 0x3f, 0x7e, 0x3f, 0x7e, 0x1e, 0x7e, 0x3f, 0x7e, 0x3f, 0x7e, 0x3f, 0x7e, 0x5f, 0x86, 0x1e, 0x7e, 0x9d, 0x6d, 0xde, 0x6d, 0x9e, 0x65, 0x7e, 0x65, 0x5e, 0x5d, 0x5f, 0x5d, 0x5e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x5e, 0x65, 0x3e, 0x65, 0x7e, 0x65, 0xfe, 0x65, 0x5c, 0x4d, 0xbc, 0x34, 0x1c, 0x35, 0xba, 0x3c, 0x75, 0x3b, 0xb6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb5, 0x4b, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x74, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x33, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0xb2, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xce, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x50, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x13, 0x33, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x35, 0x33, 0x35, 0x33, 0x55, 0x33, 0x76, 0x33, 0x76, 0x33, 0x97, 0x33, 0xb7, 0x33, 0xd7, 0x33, 0xf8, 0x3b, 0x18, 0x3c, 0x59, 0x44, 0x79, 0x44, 0x9a, 0x4c, 0xbb, 0x54, 0xdb, 0x54, 0xdc, 0x5c, 0xfc, 0x5c, 0x1d, 0x5d, 0x3e, 0x65, 0x5f, 0x65, 0x7f, 0x65, 0x5f, 0x65, 0x7f, 0x65, 0x7f, 0x65, 0x7f, 0x65, 0x9e, 0x65, 0x7e, 0x65, 0x9e, 0x65, 0x7f, 0x65, 0x7f, 0x6d, 0x7f, 0x65, 0x7f, 0x65, 0x9f, 0x65, 0x7e, 0x65, 0x9f, 0x65, 0x7f, 0x65, 0x7f, 0x65, 0x5f, 0x65, 0x1f, 0x65, 0xff, 0x64, 0xb6, 0x43, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xd3, 0x3a, 0xd3, 0x3a, 0x71, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xf0, 0x29, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8d, 0x19, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, + 0x6c, 0x11, 0x6c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x8d, 0x19, 0x0f, 0x2a, 0xef, 0x29, 0xef, 0x29, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x55, 0x3b, 0x96, 0x3b, 0xb7, 0x43, 0xd7, 0x43, 0xf8, 0x4b, 0xd8, 0x43, 0xf8, 0x4b, 0x19, 0x4c, 0x3a, 0x4c, 0x7c, 0x54, 0xbe, 0x5c, 0x1f, 0x65, 0x3f, 0x6d, 0x7f, 0x6d, 0xdf, 0x75, 0xff, 0x7d, 0x1f, 0x7e, 0x5f, 0x86, 0xbf, 0x86, 0xff, 0x8e, 0x3f, 0x97, 0x3e, 0x9f, 0x5f, 0xa7, 0x7f, 0x9f, 0x7f, 0x97, 0x5f, 0x87, 0xff, 0x86, 0x7f, 0x7e, 0x3f, 0x7e, 0x3f, 0x7e, 0x3f, 0x7e, 0x3f, 0x7e, 0x1f, 0x7e, 0xff, 0x7d, 0x5f, 0x86, 0x3e, 0x7e, 0x9d, 0x6d, 0xbe, 0x65, 0xbe, 0x65, 0x7e, 0x5d, 0x5e, 0x5d, 0x5e, 0x65, 0x3e, 0x5d, 0x3e, 0x5d, 0x3e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x5e, 0x65, 0xfe, 0x6d, 0xfe, 0x5d, 0xfa, 0x34, 0xbb, 0x34, 0x38, 0x3c, 0x96, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb5, 0x4b, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x74, 0x43, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0xf3, 0x3a, 0x91, 0x2a, 0x91, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x0f, 0x22, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xce, 0x19, 0xce, 0x19, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x32, 0x91, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x34, 0x33, 0x34, 0x33, 0x35, 0x33, 0x55, 0x33, 0x76, 0x33, 0x76, 0x33, 0x97, 0x33, 0xb7, 0x33, 0xd7, 0x33, 0x18, 0x3c, 0x38, 0x3c, 0x58, 0x44, 0x79, 0x4c, 0x99, 0x4c, 0x9a, 0x54, 0xba, 0x54, 0xbb, 0x54, 0xdb, 0x5c, 0x1c, 0x5d, 0x3d, 0x5d, 0x5e, 0x5d, 0x3e, 0x5d, 0x3f, 0x5d, 0x5f, 0x65, 0x5e, 0x65, 0x7f, 0x65, 0x7f, 0x65, 0x9f, 0x65, 0x7e, 0x65, 0x5f, 0x65, 0x5f, 0x65, 0x3e, 0x5d, 0x5f, 0x65, 0x5f, 0x65, 0x5f, 0x65, 0x5e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0xff, 0x64, 0xfe, 0x64, 0xb6, 0x43, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8d, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6c, 0x11, 0x6c, 0x11, + 0x6c, 0x11, 0x4c, 0x09, 0x6c, 0x11, 0xae, 0x19, 0x30, 0x2a, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xd3, 0x32, 0x35, 0x3b, 0x55, 0x43, 0x76, 0x43, 0x96, 0x43, 0xb7, 0x43, 0xd8, 0x43, 0xd8, 0x43, 0xf8, 0x4b, 0x19, 0x4c, 0x3a, 0x54, 0x7b, 0x54, 0xdd, 0x5c, 0x1f, 0x65, 0x5f, 0x65, 0x7f, 0x6d, 0xbf, 0x75, 0x1f, 0x76, 0x5f, 0x7e, 0x7f, 0x86, 0xbf, 0x86, 0x1f, 0x8f, 0x7f, 0x97, 0x9e, 0x97, 0x9e, 0x9f, 0x7e, 0xa7, 0x9e, 0x9f, 0x9f, 0x97, 0x7f, 0x8f, 0xff, 0x86, 0x7f, 0x7e, 0x1f, 0x7e, 0xff, 0x7d, 0xff, 0x7d, 0x1f, 0x7e, 0xdf, 0x7d, 0xff, 0x7d, 0x3f, 0x86, 0x3e, 0x7e, 0xbe, 0x6d, 0xbe, 0x65, 0x7e, 0x65, 0x5e, 0x65, 0x5e, 0x65, 0x5e, 0x5d, 0x3e, 0x5d, 0x1e, 0x5d, 0x1e, 0x5d, 0x1e, 0x5d, 0x7e, 0x65, 0xfe, 0x65, 0x1e, 0x6e, 0xdd, 0x5d, 0x79, 0x3c, 0xb6, 0x3b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x53, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb5, 0x43, 0xb5, 0x4b, 0xb5, 0x43, 0x95, 0x43, 0x75, 0x43, 0x74, 0x3b, 0x74, 0x3b, 0x74, 0x3b, 0x33, 0x3b, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xee, 0x21, 0xee, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x10, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x32, 0xb1, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x34, 0x33, 0x35, 0x33, 0x55, 0x33, 0x76, 0x33, 0x96, 0x33, 0x96, 0x33, 0xb7, 0x33, 0xb7, 0x33, 0xf8, 0x3b, 0x18, 0x44, 0x38, 0x44, 0x59, 0x4c, 0x79, 0x4c, 0x9a, 0x4c, 0xba, 0x54, 0xba, 0x54, 0xdb, 0x54, 0xfc, 0x54, 0xfc, 0x54, 0xfd, 0x54, 0xfe, 0x54, 0x1e, 0x5d, 0x1e, 0x5d, 0x5f, 0x5d, 0x7f, 0x65, 0x7f, 0x65, 0x7f, 0x65, 0x5f, 0x65, 0x3f, 0x65, 0x3e, 0x5d, 0x1f, 0x5d, 0x3e, 0x5d, 0x3f, 0x5d, 0x3f, 0x5d, 0x1e, 0x5d, 0xfe, 0x5c, 0x1f, 0x5d, 0xfe, 0x5c, 0xb7, 0x4b, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0xf4, 0x32, 0x35, 0x3b, 0x76, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xb6, 0x4b, 0x96, 0x4b, 0x75, 0x43, 0x35, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0xf3, 0x3a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xf0, 0x29, 0xef, 0x29, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8d, 0x19, 0x6d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, + 0x4c, 0x11, 0x4c, 0x11, 0xce, 0x21, 0x10, 0x2a, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xae, 0x21, 0xaf, 0x21, 0xae, 0x19, 0xaf, 0x21, 0xaf, 0x21, 0xaf, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x21, 0x10, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x52, 0x2a, 0x92, 0x2a, 0xd3, 0x32, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x76, 0x3b, 0x97, 0x3b, 0xb7, 0x43, 0xf8, 0x4b, 0xd8, 0x43, 0x19, 0x4c, 0x59, 0x4c, 0x7b, 0x54, 0xbd, 0x5c, 0xff, 0x5c, 0x3f, 0x65, 0x9f, 0x6d, 0xdf, 0x75, 0x1f, 0x7e, 0x9f, 0x7e, 0xdf, 0x86, 0xff, 0x86, 0x1f, 0x8f, 0x7f, 0x97, 0xbe, 0x97, 0x9d, 0x9f, 0x9d, 0xa7, 0x9d, 0xa7, 0x9e, 0x97, 0x9f, 0x97, 0x3f, 0x8f, 0x9f, 0x7e, 0x3f, 0x7e, 0xff, 0x7d, 0xff, 0x7d, 0xfe, 0x7d, 0xbf, 0x7d, 0xdf, 0x7d, 0xff, 0x85, 0x1e, 0x86, 0xfe, 0x75, 0xbe, 0x6d, 0x9e, 0x65, 0x9e, 0x65, 0x5e, 0x65, 0x3e, 0x5d, 0x3e, 0x5d, 0x1d, 0x5d, 0x1d, 0x5d, 0x1e, 0x5d, 0x5e, 0x65, 0xfe, 0x65, 0x1e, 0x66, 0x1e, 0x66, 0x1b, 0x55, 0xd7, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x16, 0x4c, 0xf6, 0x53, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd5, 0x43, 0xb5, 0x43, 0xb5, 0x4b, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x74, 0x3b, 0x74, 0x43, 0x33, 0x3b, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x0f, 0x2a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xce, 0x21, 0xce, 0x21, 0xce, 0x21, 0xce, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x0f, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x35, 0x33, 0x55, 0x33, 0x75, 0x33, 0x76, 0x33, 0x76, 0x33, 0x96, 0x33, 0x97, 0x33, 0xb7, 0x33, 0xd7, 0x3b, 0xf8, 0x43, 0x18, 0x44, 0x38, 0x4c, 0x79, 0x4c, 0x99, 0x4c, 0x99, 0x4c, 0xba, 0x54, 0xba, 0x54, 0xdb, 0x54, 0xdc, 0x54, 0xdc, 0x54, 0xdd, 0x54, 0xfd, 0x54, 0xfe, 0x54, 0x3e, 0x5d, 0x3f, 0x5d, 0x5f, 0x5d, 0x3f, 0x5d, 0x3f, 0x65, 0x3f, 0x65, 0x1f, 0x5d, 0x1f, 0x55, 0x1f, 0x5d, 0xfe, 0x5c, 0xfd, 0x54, 0xde, 0x5c, 0xfe, 0x5c, 0xdd, 0x5c, 0x19, 0x54, 0x75, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf8, 0x53, 0xf8, 0x53, 0xf8, 0x53, 0xf8, 0x53, 0x18, 0x54, 0xf8, 0x53, 0x18, 0x54, 0x39, 0x54, 0x5a, 0x5c, 0x7a, 0x5c, 0x79, 0x5c, 0xf3, 0x3a, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8d, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, + 0x4c, 0x11, 0xef, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xce, 0x21, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x31, 0x2a, 0x52, 0x2a, 0x92, 0x2a, 0xd3, 0x32, 0xf4, 0x32, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x76, 0x3b, 0x97, 0x3b, 0xd8, 0x43, 0xd8, 0x43, 0x18, 0x4c, 0x59, 0x54, 0x9b, 0x54, 0xbd, 0x5c, 0xff, 0x5c, 0x3f, 0x65, 0xbf, 0x6d, 0xff, 0x75, 0x5f, 0x7e, 0xbf, 0x7e, 0x1f, 0x87, 0x3f, 0x8f, 0x3f, 0x8f, 0x5f, 0x8f, 0x7e, 0x97, 0x9d, 0x9f, 0x9d, 0x9f, 0x9d, 0xa7, 0x9d, 0x9f, 0x9d, 0x97, 0x9e, 0x8f, 0x1f, 0x87, 0x9f, 0x7e, 0x1f, 0x7e, 0xff, 0x7d, 0xdf, 0x7d, 0xbf, 0x7d, 0xdf, 0x7d, 0xdf, 0x85, 0xdf, 0x85, 0xfe, 0x7d, 0xbd, 0x6d, 0xbe, 0x6d, 0x9e, 0x65, 0x5d, 0x65, 0x5d, 0x65, 0x1d, 0x5d, 0x1d, 0x5d, 0x1d, 0x5d, 0x1d, 0x5d, 0x5d, 0x65, 0xfe, 0x65, 0x1f, 0x66, 0xfe, 0x65, 0x5b, 0x65, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x17, 0x54, 0x16, 0x54, 0xf6, 0x4b, 0x16, 0x4c, 0x16, 0x4c, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd5, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x3b, 0x74, 0x43, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x10, 0x2a, 0x0f, 0x2a, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xce, 0x21, 0xce, 0x21, 0xce, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x34, 0x33, 0x35, 0x33, 0x55, 0x33, 0x55, 0x33, 0x56, 0x33, 0x76, 0x33, 0x96, 0x33, 0xb7, 0x3b, 0xd7, 0x3b, 0xf8, 0x43, 0x18, 0x4c, 0x18, 0x4c, 0x58, 0x4c, 0x78, 0x4c, 0x79, 0x4c, 0x99, 0x4c, 0x9a, 0x4c, 0x9a, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xbc, 0x54, 0xdd, 0x54, 0xfe, 0x54, 0xfe, 0x54, 0xfe, 0x5c, 0x1f, 0x5d, 0x3e, 0x5d, 0x1f, 0x5d, 0x1f, 0x5d, 0x1f, 0x5d, 0x1f, 0x5d, 0xfe, 0x5c, 0xbd, 0x54, 0xbd, 0x54, 0xbc, 0x54, 0x7b, 0x5c, 0x9c, 0x5c, 0x3a, 0x54, 0xb7, 0x4b, 0x96, 0x4b, 0x96, 0x43, 0x96, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0x14, 0x3b, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x30, 0x2a, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xae, 0x21, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8d, 0x11, 0x6d, 0x19, 0x6d, 0x11, 0x4d, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, + 0xcf, 0x29, 0xcf, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xce, 0x21, 0xae, 0x19, 0xae, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xcf, 0x21, 0xcf, 0x19, 0xef, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0x11, 0x22, 0x51, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x35, 0x3b, 0x55, 0x3b, 0x96, 0x3b, 0xd7, 0x43, 0x18, 0x4c, 0xf8, 0x4b, 0x39, 0x54, 0x9a, 0x54, 0xbd, 0x5c, 0x1e, 0x65, 0x5e, 0x6d, 0xbf, 0x6d, 0x1f, 0x76, 0xbf, 0x86, 0x1f, 0x87, 0x3f, 0x87, 0x7f, 0x8f, 0x5f, 0x97, 0x5f, 0x97, 0x9f, 0x97, 0x9e, 0x97, 0x9d, 0x97, 0x9d, 0x9f, 0x9d, 0x9f, 0x9d, 0x8f, 0x9e, 0x8f, 0x3f, 0x87, 0xbf, 0x7e, 0x5f, 0x7e, 0x1f, 0x7e, 0xff, 0x7d, 0xbf, 0x75, 0xbf, 0x75, 0xdf, 0x85, 0xdf, 0x85, 0xff, 0x85, 0x1e, 0x7e, 0xbd, 0x6d, 0x9d, 0x6d, 0x5d, 0x65, 0x3d, 0x65, 0x3d, 0x5d, 0x1d, 0x5d, 0xfd, 0x5c, 0x1d, 0x5d, 0x5d, 0x65, 0xfe, 0x65, 0x1e, 0x66, 0x3e, 0x6e, 0x5a, 0x65, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x17, 0x54, 0x37, 0x54, 0x16, 0x54, 0x16, 0x4c, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd5, 0x4b, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x54, 0x3b, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x51, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x0f, 0x2a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xce, 0x21, 0xee, 0x21, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x35, 0x33, 0x55, 0x33, 0x76, 0x33, 0x96, 0x3b, 0xb7, 0x3b, 0xd7, 0x3b, 0xf7, 0x43, 0x18, 0x44, 0x18, 0x4c, 0x38, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x79, 0x4c, 0x7a, 0x4c, 0x9a, 0x4c, 0x9b, 0x4c, 0x9b, 0x4c, 0x9c, 0x54, 0xbc, 0x54, 0xdd, 0x54, 0xfe, 0x54, 0xfe, 0x54, 0xfe, 0x5c, 0xfe, 0x5c, 0x1f, 0x5d, 0x1f, 0x5d, 0x1f, 0x5d, 0xfe, 0x5c, 0x9b, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x7b, 0x5c, 0xbd, 0x54, 0x5b, 0x54, 0xb7, 0x4b, 0x96, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xb7, 0x4b, 0x75, 0x43, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x32, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xf0, 0x29, 0x30, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xef, 0x29, 0xef, 0x29, 0xcf, 0x21, 0x8e, 0x19, 0x4c, 0x11, 0x2b, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x4c, 0x11, + 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xce, 0x21, 0xae, 0x21, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x6d, 0x19, 0x6d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xf0, 0x21, 0x10, 0x22, 0x31, 0x2a, 0x52, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x35, 0x33, 0x55, 0x3b, 0x97, 0x3b, 0xf7, 0x4b, 0x18, 0x4c, 0x38, 0x4c, 0x7a, 0x5c, 0xdc, 0x64, 0x1f, 0x65, 0x9f, 0x6d, 0xdf, 0x75, 0x5f, 0x7e, 0x1f, 0x87, 0x9e, 0x8f, 0x9d, 0x97, 0xbe, 0x97, 0x9e, 0x97, 0x7e, 0x9f, 0x7f, 0x9f, 0x7f, 0x97, 0x9e, 0x97, 0x9e, 0x97, 0x9d, 0x9f, 0x9d, 0x9f, 0x7d, 0x8f, 0x3f, 0x87, 0xbf, 0x7e, 0x7f, 0x7e, 0x3f, 0x7e, 0xff, 0x7d, 0xbf, 0x75, 0x9f, 0x75, 0xbf, 0x7d, 0xdf, 0x85, 0xdf, 0x7d, 0xff, 0x7d, 0xfe, 0x7d, 0x9d, 0x6d, 0x5d, 0x65, 0x3d, 0x5d, 0x1d, 0x5d, 0xfd, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0x5d, 0x5d, 0x1e, 0x66, 0x7f, 0x6e, 0x1e, 0x76, 0x1a, 0x65, 0x17, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x17, 0x4c, 0x16, 0x4c, 0xf6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb5, 0x43, 0x95, 0x43, 0x54, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x91, 0x32, 0x91, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x0f, 0x2a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x21, 0xef, 0x21, 0xce, 0x21, 0xce, 0x21, 0xce, 0x21, 0xce, 0x19, 0xce, 0x21, 0xce, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xef, 0x21, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xd3, 0x2a, 0x14, 0x33, 0x35, 0x3b, 0x76, 0x3b, 0x96, 0x43, 0xb7, 0x43, 0xd8, 0x43, 0xd8, 0x43, 0xf8, 0x43, 0x19, 0x44, 0x19, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x5a, 0x54, 0x5a, 0x54, 0x59, 0x4c, 0x58, 0x4c, 0x58, 0x4c, 0x59, 0x4c, 0x79, 0x4c, 0x7a, 0x4c, 0x7a, 0x4c, 0x7b, 0x4c, 0x9b, 0x4c, 0x9c, 0x4c, 0xbc, 0x54, 0xdd, 0x54, 0xdd, 0x54, 0xdd, 0x54, 0xde, 0x54, 0xfe, 0x5c, 0xdd, 0x5c, 0x7b, 0x54, 0x9b, 0x5c, 0x9c, 0x5c, 0x9d, 0x5c, 0x9d, 0x54, 0xbd, 0x5c, 0x7b, 0x54, 0xd7, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x4b, 0x96, 0x4b, 0x76, 0x43, 0x76, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x75, 0x43, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xd3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xf0, 0x29, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x29, 0x10, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0xef, 0x21, 0xae, 0x19, 0xef, 0x29, + 0x10, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xcf, 0x21, 0xae, 0x19, 0x8e, 0x19, 0x8d, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xf0, 0x21, 0x10, 0x22, 0x31, 0x22, 0x72, 0x2a, 0x72, 0x2a, 0xb3, 0x2a, 0xf4, 0x32, 0x14, 0x33, 0x15, 0x33, 0x55, 0x33, 0x76, 0x3b, 0xb7, 0x43, 0x18, 0x4c, 0x38, 0x4c, 0x7a, 0x54, 0xbc, 0x64, 0x3e, 0x6d, 0x9f, 0x75, 0x1f, 0x7e, 0x1f, 0x87, 0x9e, 0x97, 0x9d, 0x9f, 0xbd, 0x9f, 0xbd, 0x9f, 0xbd, 0xa7, 0xbd, 0xa7, 0x9e, 0x9f, 0x7f, 0x9f, 0x7f, 0x9f, 0x7f, 0x9f, 0x9e, 0x9f, 0x9d, 0x9f, 0x9d, 0x97, 0x7e, 0x8f, 0xff, 0x7e, 0x7f, 0x7e, 0x3f, 0x7e, 0xff, 0x75, 0xbf, 0x75, 0x9f, 0x75, 0x9f, 0x7d, 0xdf, 0x85, 0xdf, 0x7d, 0xdf, 0x7d, 0xfe, 0x7d, 0xdd, 0x75, 0x5c, 0x65, 0x3d, 0x65, 0x1d, 0x5d, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0x7d, 0x5d, 0x1e, 0x66, 0x1e, 0x6e, 0xfd, 0x75, 0xd9, 0x5c, 0x38, 0x54, 0x38, 0x54, 0x17, 0x4c, 0x38, 0x4c, 0x57, 0x54, 0x57, 0x54, 0x57, 0x5c, 0x57, 0x5c, 0x37, 0x54, 0x37, 0x54, 0x37, 0x4c, 0xf7, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x14, 0x3b, 0x13, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x0f, 0x22, 0xef, 0x29, 0xef, 0x29, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xce, 0x21, 0xce, 0x21, 0xce, 0x21, 0xce, 0x21, 0xce, 0x21, 0xce, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xce, 0x19, 0xce, 0x19, 0xee, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0x10, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0xd3, 0x32, 0x35, 0x3b, 0x55, 0x3b, 0x96, 0x43, 0xd8, 0x4b, 0x19, 0x54, 0x5a, 0x54, 0x9a, 0x5c, 0xbb, 0x64, 0xbc, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xbe, 0x5c, 0xbe, 0x5c, 0xde, 0x5c, 0xde, 0x64, 0xdd, 0x5c, 0xbd, 0x5c, 0xbc, 0x5c, 0xbb, 0x5c, 0x9a, 0x54, 0x59, 0x4c, 0x59, 0x4c, 0x7a, 0x4c, 0x7a, 0x4c, 0x7b, 0x4c, 0x7b, 0x4c, 0x9b, 0x4c, 0xbc, 0x54, 0xdd, 0x54, 0x9b, 0x54, 0x5b, 0x54, 0x5a, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0x9c, 0x5c, 0xbc, 0x5c, 0xdd, 0x5c, 0xfe, 0x64, 0xbc, 0x64, 0x18, 0x54, 0xb7, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xf0, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xf0, 0x21, 0x10, 0x2a, 0x10, 0x2a, + 0x0f, 0x2a, 0xf0, 0x29, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x8e, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xf0, 0x21, 0x10, 0x22, 0x31, 0x22, 0x52, 0x2a, 0x72, 0x2a, 0xb3, 0x2a, 0xf4, 0x32, 0x14, 0x33, 0x35, 0x33, 0x55, 0x3b, 0x96, 0x3b, 0xd7, 0x43, 0x18, 0x4c, 0x59, 0x54, 0xbb, 0x64, 0x3e, 0x6d, 0xbf, 0x75, 0x7f, 0x86, 0x9e, 0x97, 0xbd, 0xa7, 0x9e, 0xb7, 0x9e, 0xbf, 0xbe, 0xbf, 0x9e, 0xb7, 0x9e, 0xb7, 0x9d, 0xaf, 0x9e, 0xa7, 0x7f, 0xa7, 0x7f, 0xa7, 0x7e, 0x9f, 0x9e, 0x9f, 0x9d, 0x9f, 0x9d, 0x97, 0x5f, 0x8f, 0xdf, 0x7e, 0x5f, 0x7e, 0xff, 0x7d, 0xbf, 0x75, 0x9f, 0x75, 0x9f, 0x75, 0xff, 0x85, 0xdf, 0x7d, 0xdf, 0x7d, 0xff, 0x7d, 0xfe, 0x7d, 0x7c, 0x6d, 0x3c, 0x5d, 0x1c, 0x5d, 0xfc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0x5d, 0x5d, 0x1f, 0x6e, 0x7e, 0x76, 0x1c, 0x76, 0x78, 0x5c, 0x58, 0x54, 0x58, 0x54, 0x18, 0x4c, 0x38, 0x4c, 0x58, 0x54, 0x57, 0x54, 0x57, 0x5c, 0x57, 0x5c, 0x57, 0x5c, 0x57, 0x54, 0x37, 0x54, 0x17, 0x4c, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0x75, 0x43, 0x34, 0x3b, 0x33, 0x3b, 0x13, 0x33, 0xf3, 0x32, 0xf3, 0x3a, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0x10, 0x22, 0x10, 0x2a, 0xef, 0x29, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xce, 0x21, 0xce, 0x21, 0xce, 0x21, 0xce, 0x21, 0xce, 0x21, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x2a, 0xf3, 0x32, 0x76, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb7, 0x43, 0xf8, 0x4b, 0x19, 0x54, 0x3a, 0x54, 0x5a, 0x54, 0x7b, 0x54, 0x9c, 0x5c, 0xbd, 0x5c, 0xbe, 0x5c, 0xbe, 0x5c, 0xdf, 0x5c, 0xff, 0x64, 0xff, 0x64, 0xff, 0x64, 0xff, 0x64, 0xff, 0x64, 0xff, 0x64, 0xff, 0x64, 0x1f, 0x65, 0x3e, 0x6d, 0xdb, 0x5c, 0x79, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x5a, 0x4c, 0x5a, 0x4c, 0x7b, 0x4c, 0x39, 0x4c, 0xf8, 0x4b, 0x59, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x7b, 0x54, 0x9b, 0x5c, 0xbc, 0x5c, 0xdd, 0x6c, 0xbc, 0x6c, 0x17, 0x5c, 0xf7, 0x53, 0xd7, 0x4b, 0xb7, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0x14, 0x3b, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x72, 0x2a, 0x30, 0x22, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0x10, 0x2a, 0x10, 0x2a, 0xef, 0x29, + 0x10, 0x2a, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0x6d, 0x11, 0x4c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x4d, 0x11, 0x6d, 0x11, 0x8e, 0x19, 0xae, 0x19, 0xcf, 0x19, 0xef, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x11, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xd4, 0x2a, 0xf4, 0x32, 0x35, 0x33, 0x75, 0x3b, 0x76, 0x3b, 0xb6, 0x43, 0xf8, 0x4b, 0x39, 0x54, 0x9b, 0x5c, 0x1e, 0x6d, 0x9f, 0x7d, 0x5f, 0x86, 0xbf, 0x9f, 0x9d, 0xb7, 0xbf, 0xcf, 0xbf, 0xe7, 0xbf, 0xef, 0xbf, 0xe7, 0xbf, 0xd7, 0xbf, 0xc7, 0xbe, 0xb7, 0x9e, 0xaf, 0x7f, 0xa7, 0x5f, 0x9f, 0x7f, 0x9f, 0x7e, 0x9f, 0x9e, 0x97, 0x9e, 0x97, 0x1f, 0x87, 0x7f, 0x7e, 0x1f, 0x7e, 0xdf, 0x75, 0xbf, 0x75, 0xdf, 0x7d, 0xff, 0x85, 0xdf, 0x7d, 0xdf, 0x7d, 0xdf, 0x7d, 0xfe, 0x7d, 0xbd, 0x75, 0x3c, 0x5d, 0x1c, 0x5d, 0xfc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0x9d, 0x65, 0x3e, 0x6e, 0x3e, 0x76, 0x9c, 0x6d, 0x78, 0x54, 0x79, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x58, 0x54, 0x78, 0x54, 0x57, 0x5c, 0x57, 0x5c, 0x57, 0x5c, 0x37, 0x5c, 0x37, 0x54, 0x37, 0x4c, 0x17, 0x4c, 0x16, 0x4c, 0x16, 0x4c, 0xf6, 0x4b, 0xd6, 0x4b, 0x75, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x33, 0x13, 0x33, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x0f, 0x2a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x21, 0xef, 0x21, 0xce, 0x21, 0xce, 0x21, 0xce, 0x21, 0xce, 0x21, 0xce, 0x21, 0xae, 0x19, 0xad, 0x19, 0x8d, 0x19, 0xae, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xef, 0x21, 0xef, 0x21, 0x10, 0x22, 0x51, 0x22, 0x34, 0x3b, 0x96, 0x4b, 0xb6, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xb7, 0x43, 0xd7, 0x43, 0xd8, 0x4b, 0xf8, 0x4b, 0x39, 0x54, 0x5a, 0x54, 0x5b, 0x54, 0x9c, 0x54, 0x9d, 0x5c, 0xde, 0x5c, 0x1e, 0x65, 0x3f, 0x6d, 0x5f, 0x6d, 0x5f, 0x6d, 0x5f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x3f, 0x6d, 0xfd, 0x64, 0x7a, 0x54, 0x59, 0x4c, 0x59, 0x4c, 0x18, 0x4c, 0xf7, 0x4b, 0xd8, 0x4b, 0x18, 0x4c, 0x39, 0x54, 0x38, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x9b, 0x5c, 0xdc, 0x64, 0xdc, 0x64, 0x18, 0x5c, 0xf7, 0x53, 0xf7, 0x53, 0xd7, 0x4b, 0xb7, 0x43, 0xb6, 0x43, 0xb7, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0x17, 0x54, 0x76, 0x4b, 0xb2, 0x3a, 0xd2, 0x3a, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xef, 0x29, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, + 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xae, 0x19, 0x8d, 0x19, 0x6d, 0x11, 0x4c, 0x11, 0x6d, 0x11, 0x4c, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xf0, 0x21, 0x10, 0x22, 0x31, 0x22, 0x52, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xf4, 0x2a, 0x15, 0x33, 0x35, 0x33, 0x76, 0x3b, 0x96, 0x3b, 0xd7, 0x43, 0x38, 0x4c, 0x9a, 0x5c, 0x1d, 0x65, 0x9f, 0x75, 0x3f, 0x86, 0x9f, 0x9f, 0xbe, 0xb7, 0xbf, 0xdf, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0x9f, 0xef, 0x9f, 0xcf, 0xbe, 0xb7, 0x9e, 0xaf, 0x7f, 0xa7, 0x3f, 0x9f, 0x1f, 0x97, 0x5f, 0x97, 0x9e, 0x97, 0x7e, 0x8f, 0x1f, 0x87, 0x3f, 0x7e, 0xdf, 0x75, 0xbf, 0x75, 0xbf, 0x7d, 0xff, 0x7d, 0xff, 0x7d, 0xff, 0x7d, 0xff, 0x7d, 0xff, 0x7d, 0xdf, 0x75, 0x7d, 0x6d, 0xfc, 0x5c, 0xdc, 0x5c, 0xdb, 0x5c, 0xfb, 0x5c, 0xbd, 0x65, 0x3e, 0x76, 0x5e, 0x7e, 0x7c, 0x6d, 0x98, 0x5c, 0x79, 0x5c, 0x79, 0x54, 0x79, 0x54, 0x58, 0x4c, 0x78, 0x54, 0x78, 0x54, 0x78, 0x5c, 0x78, 0x5c, 0x58, 0x5c, 0x77, 0x5c, 0x57, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x17, 0x4c, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0x95, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x33, 0x3b, 0x13, 0x33, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x0f, 0x2a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xce, 0x21, 0xce, 0x21, 0xce, 0x21, 0xae, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0xad, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xae, 0x19, 0xef, 0x19, 0x51, 0x2a, 0x14, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x4b, 0x96, 0x4b, 0x96, 0x4b, 0x96, 0x4b, 0xb6, 0x4b, 0xb7, 0x4b, 0xb7, 0x43, 0xb7, 0x43, 0xd8, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x59, 0x54, 0x5a, 0x54, 0x7b, 0x54, 0x9c, 0x5c, 0xdd, 0x5c, 0x1e, 0x65, 0x3f, 0x6d, 0x5f, 0x75, 0x7f, 0x75, 0x7f, 0x6d, 0x5f, 0x65, 0x3f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x3f, 0x6d, 0x3f, 0x6d, 0xfd, 0x64, 0x7a, 0x5c, 0x38, 0x54, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x39, 0x4c, 0x38, 0x54, 0x39, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x7a, 0x5c, 0xbc, 0x64, 0x38, 0x54, 0xf6, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0x18, 0x54, 0x79, 0x64, 0x34, 0x43, 0xf3, 0x3a, 0xf3, 0x3a, 0x13, 0x3b, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0xcf, 0x21, 0x10, 0x2a, 0x0f, 0x2a, 0xef, 0x29, 0xef, 0x29, + 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8d, 0x11, 0x2c, 0x09, 0x4c, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0xaf, 0x19, 0xcf, 0x19, 0xf0, 0x21, 0x11, 0x22, 0x51, 0x22, 0x72, 0x2a, 0x72, 0x2a, 0x93, 0x2a, 0xb3, 0x2a, 0xf4, 0x32, 0x15, 0x33, 0x56, 0x3b, 0x96, 0x3b, 0xd7, 0x43, 0xf7, 0x43, 0x59, 0x54, 0xfc, 0x64, 0x9f, 0x75, 0x3f, 0x86, 0x5f, 0x97, 0xbd, 0xb7, 0xbf, 0xd7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xef, 0xbf, 0xdf, 0xbe, 0xbf, 0x7e, 0xaf, 0xff, 0xa6, 0x1f, 0x9f, 0x5f, 0x9f, 0x9f, 0x97, 0x9f, 0x97, 0x3f, 0x87, 0x7f, 0x7e, 0xff, 0x75, 0xbf, 0x75, 0xbf, 0x75, 0xff, 0x7d, 0xff, 0x7d, 0xdf, 0x75, 0xdf, 0x7d, 0xbf, 0x75, 0xdf, 0x75, 0x9e, 0x75, 0x1c, 0x5d, 0xbb, 0x5c, 0xbb, 0x54, 0xfb, 0x5c, 0x3f, 0x6e, 0x3e, 0x76, 0x1e, 0x76, 0xbc, 0x75, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x54, 0x99, 0x54, 0x59, 0x54, 0x58, 0x54, 0x98, 0x54, 0x98, 0x5c, 0x78, 0x5c, 0x58, 0x5c, 0x78, 0x5c, 0x57, 0x54, 0x57, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xd6, 0x4b, 0x75, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x33, 0x13, 0x33, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xce, 0x21, 0xae, 0x19, 0x8d, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0x8d, 0x19, 0x8e, 0x19, 0x8d, 0x19, 0x8d, 0x11, 0x8e, 0x11, 0x30, 0x2a, 0xf3, 0x32, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x43, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x97, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xd8, 0x43, 0xf8, 0x4b, 0x39, 0x4c, 0x39, 0x54, 0x5a, 0x54, 0x7b, 0x54, 0xbc, 0x54, 0xdd, 0x5c, 0x1e, 0x65, 0x5f, 0x6d, 0x5f, 0x75, 0x9f, 0x75, 0x9f, 0x6d, 0x5f, 0x6d, 0x3f, 0x6d, 0x1f, 0x65, 0x1f, 0x65, 0x1e, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0xff, 0x6c, 0xfe, 0x6c, 0xde, 0x64, 0x39, 0x54, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x39, 0x54, 0x59, 0x54, 0x7b, 0x54, 0x18, 0x4c, 0xb6, 0x43, 0xb7, 0x43, 0xb7, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xf7, 0x4b, 0x17, 0x54, 0x79, 0x5c, 0x96, 0x4b, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x13, 0x43, 0xf3, 0x3a, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x10, 0x22, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0xaf, 0x21, 0x10, 0x2a, 0x0f, 0x2a, 0x0f, 0x2a, 0xef, 0x29, 0xef, 0x21, + 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8d, 0x19, 0x6d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8e, 0x19, 0xae, 0x19, 0x4c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4d, 0x09, 0x6d, 0x11, 0x8d, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0xaf, 0x19, 0xf0, 0x21, 0x10, 0x22, 0x31, 0x22, 0x51, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xd4, 0x2a, 0x14, 0x33, 0x35, 0x33, 0x76, 0x3b, 0xb7, 0x3b, 0xf7, 0x43, 0x38, 0x4c, 0xda, 0x5c, 0x5e, 0x6d, 0xff, 0x85, 0xfe, 0x8e, 0xbe, 0xa7, 0xbf, 0xcf, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xdf, 0x9f, 0xbf, 0x5f, 0xaf, 0xff, 0xa6, 0x1f, 0x9f, 0x5f, 0x97, 0x9e, 0x97, 0x5f, 0x8f, 0xbf, 0x7e, 0xff, 0x75, 0x9f, 0x75, 0x7f, 0x6d, 0x7f, 0x6d, 0xbf, 0x75, 0xbf, 0x75, 0xbf, 0x75, 0xbf, 0x75, 0xbf, 0x75, 0x9f, 0x75, 0x5d, 0x6d, 0xbb, 0x54, 0x9b, 0x5c, 0x3c, 0x5d, 0x5f, 0x76, 0x1e, 0x76, 0x1e, 0x7e, 0xbd, 0x75, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x54, 0x99, 0x5c, 0x79, 0x54, 0x79, 0x54, 0x99, 0x54, 0x98, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x57, 0x54, 0x57, 0x4c, 0x37, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0xd6, 0x4b, 0x75, 0x43, 0x75, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x33, 0x3b, 0x13, 0x33, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x2a, 0xef, 0x29, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xae, 0x19, 0x8d, 0x11, 0x8d, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x91, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x76, 0x3b, 0x96, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xd8, 0x43, 0x18, 0x4c, 0x19, 0x4c, 0x59, 0x4c, 0x7a, 0x54, 0xbb, 0x54, 0xbc, 0x5c, 0xfd, 0x5c, 0x3e, 0x65, 0x5f, 0x6d, 0x9f, 0x75, 0x9f, 0x75, 0x7f, 0x6d, 0x5f, 0x6d, 0x3f, 0x6d, 0x1f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0xde, 0x64, 0xbe, 0x64, 0xdf, 0x64, 0xff, 0x64, 0xff, 0x6c, 0xbc, 0x64, 0x18, 0x4c, 0xf7, 0x4b, 0xf8, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0x18, 0x4c, 0x18, 0x4c, 0x39, 0x54, 0x39, 0x54, 0xf9, 0x4b, 0x76, 0x43, 0x96, 0x43, 0x97, 0x43, 0xb7, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0x18, 0x54, 0x1b, 0x75, 0xf3, 0x3a, 0xf3, 0x3a, 0x13, 0x43, 0x33, 0x43, 0x33, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x13, 0x43, 0x13, 0x43, 0xd3, 0x3a, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x10, 0x22, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xae, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xef, 0x21, 0x30, 0x2a, 0x10, 0x2a, 0xef, 0x29, 0xef, 0x29, 0xef, 0x21, + 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8e, 0x11, 0xae, 0x19, 0x4c, 0x11, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x6d, 0x09, 0x6d, 0x09, 0x6e, 0x11, 0x8e, 0x11, 0xaf, 0x11, 0xcf, 0x19, 0xf0, 0x21, 0x10, 0x22, 0x31, 0x22, 0x51, 0x22, 0x72, 0x2a, 0x93, 0x2a, 0xb3, 0x2a, 0xf4, 0x2a, 0x14, 0x33, 0x55, 0x33, 0x96, 0x3b, 0xb7, 0x43, 0x18, 0x4c, 0x79, 0x54, 0xfd, 0x64, 0x9f, 0x6d, 0x9f, 0x86, 0xbe, 0x9f, 0xbe, 0xbf, 0xbf, 0xef, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xef, 0xbf, 0xd7, 0x9f, 0xb7, 0x1f, 0xaf, 0x1f, 0x9f, 0x1f, 0x9f, 0x9f, 0x97, 0x9e, 0x8f, 0xbf, 0x86, 0xff, 0x75, 0x9f, 0x75, 0x7f, 0x75, 0x9f, 0x6d, 0xbf, 0x75, 0xbf, 0x75, 0xbf, 0x75, 0xbf, 0x75, 0xbf, 0x75, 0x7f, 0x6d, 0x5e, 0x6d, 0xdb, 0x5c, 0xda, 0x5c, 0x9d, 0x65, 0x1f, 0x76, 0x3e, 0x76, 0x7f, 0x76, 0xbd, 0x6d, 0x9a, 0x5c, 0xba, 0x5c, 0x9a, 0x5c, 0xba, 0x5c, 0x99, 0x54, 0x79, 0x54, 0xb9, 0x54, 0xb9, 0x54, 0x98, 0x5c, 0x78, 0x5c, 0x98, 0x5c, 0x98, 0x54, 0x78, 0x54, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x37, 0x54, 0xd6, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x33, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x0f, 0x22, 0xef, 0x21, 0x0f, 0x22, 0x0f, 0x22, 0xae, 0x21, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0xef, 0x21, 0xd3, 0x3a, 0xf3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x35, 0x33, 0x55, 0x3b, 0x76, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0xf7, 0x4b, 0xf8, 0x4b, 0x18, 0x4c, 0x39, 0x4c, 0x5a, 0x54, 0x9b, 0x54, 0xbc, 0x5c, 0xfd, 0x5c, 0xfe, 0x64, 0x3f, 0x65, 0x7f, 0x6d, 0x7f, 0x6d, 0x7f, 0x6d, 0x5f, 0x6d, 0x3f, 0x6d, 0x1f, 0x6d, 0x1f, 0x6d, 0xde, 0x64, 0xbd, 0x64, 0xbd, 0x64, 0xbd, 0x64, 0xbe, 0x64, 0xde, 0x64, 0xff, 0x64, 0xfe, 0x6c, 0x59, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xd7, 0x4b, 0xf8, 0x4b, 0x18, 0x4c, 0x19, 0x4c, 0x19, 0x54, 0x76, 0x43, 0x76, 0x43, 0x96, 0x43, 0xb7, 0x43, 0xd7, 0x4b, 0xf8, 0x53, 0xfd, 0x6c, 0xf4, 0x3a, 0xd3, 0x3a, 0xf3, 0x3a, 0x33, 0x43, 0x33, 0x43, 0x53, 0x43, 0x33, 0x4b, 0x33, 0x4b, 0x53, 0x43, 0x53, 0x43, 0x13, 0x43, 0xf3, 0x3a, 0xd3, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0xf0, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0x50, 0x2a, 0x30, 0x2a, 0x0f, 0x2a, 0xef, 0x29, 0xef, 0x21, 0xef, 0x21, + 0xcf, 0x21, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8e, 0x19, 0x6d, 0x11, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4d, 0x09, 0x6d, 0x11, 0x8d, 0x11, 0x8e, 0x11, 0xaf, 0x19, 0xcf, 0x19, 0xf0, 0x19, 0x10, 0x22, 0x31, 0x22, 0x52, 0x22, 0x92, 0x2a, 0xb3, 0x2a, 0xd3, 0x2a, 0x14, 0x33, 0x35, 0x33, 0x76, 0x3b, 0xb6, 0x3b, 0xd7, 0x43, 0x59, 0x4c, 0xbb, 0x5c, 0x5e, 0x65, 0xff, 0x75, 0x3e, 0x97, 0xbe, 0xaf, 0xbf, 0xdf, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xef, 0xbf, 0xcf, 0x9f, 0xb7, 0x1f, 0xa7, 0x3f, 0x9f, 0x7f, 0x97, 0x7f, 0x97, 0xbf, 0x86, 0x1f, 0x7e, 0x9f, 0x75, 0x7f, 0x75, 0x7f, 0x6d, 0xbf, 0x6d, 0xbf, 0x6d, 0x9f, 0x6d, 0x9f, 0x6d, 0x9f, 0x6d, 0x5f, 0x6d, 0x5f, 0x6d, 0x1d, 0x65, 0xda, 0x5c, 0xdd, 0x6d, 0x3f, 0x76, 0x1e, 0x76, 0x1e, 0x76, 0xbd, 0x6d, 0xbb, 0x5c, 0xdb, 0x5c, 0xba, 0x5c, 0xba, 0x5c, 0xba, 0x5c, 0x79, 0x54, 0x99, 0x54, 0x99, 0x54, 0x99, 0x54, 0xb8, 0x5c, 0xb8, 0x5c, 0x98, 0x54, 0x78, 0x54, 0x58, 0x54, 0x38, 0x54, 0x57, 0x54, 0x37, 0x4c, 0xd6, 0x4b, 0x95, 0x43, 0x95, 0x4b, 0x95, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x13, 0x33, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x2a, 0xce, 0x21, 0xad, 0x19, 0x8d, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4c, 0x09, 0x6d, 0x11, 0x30, 0x22, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x35, 0x33, 0x55, 0x3b, 0x76, 0x3b, 0xb6, 0x43, 0xd6, 0x4b, 0xf7, 0x4b, 0x17, 0x4c, 0x38, 0x4c, 0x59, 0x54, 0x7a, 0x54, 0xbb, 0x5c, 0xdc, 0x5c, 0x1e, 0x65, 0x5f, 0x65, 0x7f, 0x6d, 0x7f, 0x6d, 0x9f, 0x6d, 0x9f, 0x75, 0x7f, 0x75, 0x5f, 0x6d, 0x1f, 0x6d, 0xff, 0x6c, 0xde, 0x64, 0xbd, 0x5c, 0xbd, 0x64, 0xbd, 0x64, 0xdd, 0x64, 0xde, 0x64, 0xfe, 0x64, 0xde, 0x64, 0xde, 0x6c, 0xbb, 0x64, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0x39, 0x54, 0x75, 0x43, 0x55, 0x3b, 0x76, 0x43, 0x96, 0x43, 0xf8, 0x4b, 0x7a, 0x5c, 0xf8, 0x53, 0xf3, 0x3a, 0xd3, 0x32, 0xf3, 0x3a, 0x13, 0x43, 0x33, 0x43, 0x53, 0x43, 0x33, 0x4b, 0x33, 0x4b, 0x53, 0x4b, 0x33, 0x4b, 0x13, 0x43, 0x13, 0x43, 0xd3, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, + 0xcf, 0x21, 0xaf, 0x21, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x4d, 0x11, 0x6d, 0x11, 0x4c, 0x11, 0x4d, 0x09, 0x4c, 0x09, 0x4d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0x2c, 0x09, 0x2b, 0x09, 0x2c, 0x09, 0x4d, 0x09, 0x6d, 0x09, 0x8e, 0x11, 0x8e, 0x11, 0xcf, 0x19, 0xef, 0x19, 0xf0, 0x19, 0x10, 0x22, 0x51, 0x22, 0x72, 0x2a, 0x93, 0x2a, 0xb3, 0x2a, 0xf3, 0x32, 0x14, 0x33, 0x55, 0x3b, 0x96, 0x3b, 0xb7, 0x43, 0x18, 0x4c, 0x79, 0x54, 0xfc, 0x5c, 0x9f, 0x6d, 0x7f, 0x86, 0x9e, 0x9f, 0xbe, 0xbf, 0xbf, 0xef, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xdf, 0xbe, 0xbf, 0x7f, 0xaf, 0x3f, 0x9f, 0x3f, 0x97, 0x1f, 0x8f, 0xff, 0x8e, 0x3f, 0x86, 0xbf, 0x75, 0x9f, 0x75, 0x7f, 0x6d, 0xbf, 0x6d, 0x9f, 0x6d, 0x7f, 0x6d, 0x7f, 0x6d, 0x7f, 0x6d, 0x5f, 0x6d, 0x5f, 0x6d, 0x3e, 0x6d, 0xfb, 0x5c, 0x3f, 0x6e, 0xfe, 0x6d, 0xfe, 0x75, 0x3e, 0x76, 0xde, 0x6d, 0xbc, 0x5c, 0xfc, 0x64, 0xba, 0x5c, 0xba, 0x5c, 0xba, 0x5c, 0x9a, 0x54, 0x9a, 0x54, 0x99, 0x54, 0xb9, 0x54, 0xb9, 0x54, 0x98, 0x54, 0x98, 0x54, 0x78, 0x54, 0x58, 0x4c, 0x58, 0x54, 0x58, 0x54, 0x17, 0x4c, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x4b, 0xb5, 0x43, 0x95, 0x43, 0x75, 0x43, 0x74, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x0f, 0x2a, 0xee, 0x21, 0xae, 0x19, 0xae, 0x19, 0x8d, 0x19, 0x6d, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x19, 0x6d, 0x19, 0x6d, 0x11, 0x2b, 0x09, 0x8d, 0x11, 0x51, 0x2a, 0x92, 0x32, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x33, 0x55, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0xb6, 0x4b, 0xd6, 0x53, 0x17, 0x54, 0x38, 0x54, 0x78, 0x5c, 0x9a, 0x5c, 0xdb, 0x64, 0x1e, 0x65, 0x5f, 0x6d, 0x9f, 0x75, 0xbf, 0x7d, 0xdf, 0x7d, 0xdf, 0x7d, 0xdf, 0x7d, 0xdf, 0x7d, 0xbf, 0x7d, 0x7f, 0x75, 0x3f, 0x6d, 0xfe, 0x64, 0xbc, 0x64, 0x9c, 0x5c, 0xbc, 0x5c, 0xbd, 0x64, 0xbd, 0x64, 0xbd, 0x64, 0xbd, 0x64, 0xdd, 0x64, 0xdd, 0x64, 0xdd, 0x6c, 0xd7, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0x18, 0x54, 0xb6, 0x4b, 0x55, 0x43, 0x75, 0x3b, 0xf8, 0x4b, 0x18, 0x54, 0x18, 0x54, 0x14, 0x3b, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf3, 0x3a, 0x13, 0x3b, 0x33, 0x43, 0x53, 0x43, 0x33, 0x43, 0x53, 0x4b, 0x33, 0x43, 0x13, 0x43, 0xf3, 0x3a, 0xd2, 0x32, 0x92, 0x32, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x32, 0x30, 0x2a, 0x10, 0x2a, 0x0f, 0x2a, 0xef, 0x29, 0xef, 0x21, 0xcf, 0x21, + 0xcf, 0x21, 0xcf, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x6d, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0xae, 0x19, 0x2c, 0x09, 0x2b, 0x09, 0x2c, 0x09, 0x4d, 0x09, 0x6d, 0x09, 0x6e, 0x11, 0xaf, 0x11, 0xcf, 0x19, 0xd0, 0x19, 0x10, 0x22, 0x31, 0x22, 0x51, 0x22, 0x72, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0x14, 0x33, 0x34, 0x33, 0x55, 0x3b, 0x96, 0x43, 0xd7, 0x43, 0x18, 0x4c, 0x9b, 0x54, 0x3d, 0x65, 0xdf, 0x75, 0xff, 0x8e, 0xbd, 0xa7, 0xbe, 0xcf, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xdf, 0xbe, 0xbf, 0x7f, 0xa7, 0x1f, 0x9f, 0x3f, 0x97, 0xff, 0x8e, 0xdf, 0x86, 0x5f, 0x86, 0xbf, 0x75, 0x7f, 0x75, 0x7f, 0x6d, 0x9f, 0x6d, 0x9f, 0x6d, 0x7f, 0x6d, 0x7f, 0x6d, 0x5f, 0x6d, 0x3f, 0x65, 0x5f, 0x6d, 0x5f, 0x6d, 0x9e, 0x6d, 0xde, 0x6d, 0xde, 0x75, 0xfe, 0x75, 0x1f, 0x6e, 0x9e, 0x6d, 0xdc, 0x64, 0xfd, 0x64, 0xdb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xba, 0x5c, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x99, 0x54, 0xb9, 0x54, 0xb9, 0x54, 0x99, 0x54, 0x78, 0x54, 0x58, 0x54, 0x78, 0x54, 0x37, 0x4c, 0xb6, 0x43, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x55, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x0f, 0x22, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x6c, 0x11, 0x4c, 0x09, 0xad, 0x19, 0x50, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x54, 0x3b, 0x75, 0x43, 0x95, 0x4b, 0xb6, 0x4b, 0xf6, 0x53, 0x17, 0x5c, 0x58, 0x64, 0xba, 0x64, 0xfc, 0x64, 0x5e, 0x6d, 0x9f, 0x75, 0x1f, 0x7e, 0x7f, 0x86, 0xbf, 0x8e, 0xff, 0x8e, 0xff, 0x8e, 0x9f, 0x8e, 0x3f, 0x8e, 0xff, 0x85, 0x9f, 0x7d, 0x3f, 0x6d, 0xde, 0x64, 0x9c, 0x5c, 0x9b, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0xbc, 0x5c, 0xbc, 0x64, 0xbc, 0x64, 0xbc, 0x64, 0xbd, 0x64, 0xbd, 0x64, 0xd7, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x53, 0x75, 0x43, 0xd7, 0x4b, 0x38, 0x4c, 0x96, 0x43, 0x75, 0x43, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x43, 0x13, 0x43, 0x13, 0x43, 0xf3, 0x3a, 0xd2, 0x3a, 0xb2, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0xf0, 0x29, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x91, 0x32, 0x51, 0x32, 0x51, 0x32, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0xef, 0x29, 0xef, 0x29, 0xef, 0x21, + 0xcf, 0x21, 0xcf, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x6d, 0x19, 0x6d, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0x4c, 0x09, 0x2b, 0x09, 0x2c, 0x09, 0x4d, 0x09, 0x6d, 0x11, 0x8e, 0x11, 0xcf, 0x11, 0xcf, 0x19, 0xf0, 0x19, 0x30, 0x22, 0x51, 0x22, 0x72, 0x22, 0x92, 0x2a, 0xd3, 0x2a, 0xf3, 0x32, 0x14, 0x33, 0x54, 0x3b, 0x75, 0x3b, 0xb6, 0x43, 0xd7, 0x43, 0x39, 0x4c, 0xbc, 0x5c, 0x3e, 0x6d, 0xff, 0x7d, 0x5f, 0x8f, 0xbe, 0xaf, 0xbf, 0xd7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xdf, 0xbe, 0xb7, 0x9f, 0xa7, 0x3f, 0x9f, 0xff, 0x96, 0xdf, 0x8e, 0xdf, 0x86, 0x1f, 0x86, 0xbf, 0x7d, 0x9f, 0x6d, 0x7f, 0x6d, 0x7f, 0x6d, 0x5f, 0x65, 0x5f, 0x65, 0x5f, 0x65, 0x5f, 0x65, 0x1f, 0x65, 0x3f, 0x65, 0x5f, 0x6d, 0xbf, 0x75, 0xfe, 0x6d, 0xff, 0x6d, 0xff, 0x6d, 0xde, 0x75, 0xbe, 0x6d, 0xfd, 0x64, 0x1e, 0x65, 0xfd, 0x64, 0xdb, 0x5c, 0xdb, 0x5c, 0xbb, 0x5c, 0x9a, 0x54, 0xba, 0x54, 0xba, 0x54, 0xba, 0x54, 0x99, 0x54, 0x99, 0x54, 0x99, 0x54, 0x99, 0x54, 0x98, 0x54, 0x78, 0x54, 0x17, 0x4c, 0xd7, 0x43, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x74, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0xcf, 0x21, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x6d, 0x11, 0x4c, 0x11, 0x8d, 0x11, 0x10, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x54, 0x3b, 0x95, 0x43, 0xb5, 0x4b, 0xd6, 0x53, 0x17, 0x5c, 0x58, 0x64, 0xb9, 0x64, 0x1c, 0x6d, 0x9f, 0x7d, 0xff, 0x85, 0x9f, 0x96, 0x5f, 0x9f, 0xbe, 0xa7, 0xbe, 0xaf, 0xbe, 0xaf, 0xbe, 0xa7, 0x3f, 0x9f, 0xbf, 0x96, 0x3f, 0x86, 0x5f, 0x75, 0x1f, 0x6d, 0xdd, 0x64, 0x9c, 0x5c, 0x9b, 0x5c, 0x9b, 0x54, 0x7b, 0x5c, 0x9b, 0x5c, 0x9c, 0x5c, 0xbc, 0x64, 0x9c, 0x64, 0xbc, 0x64, 0x9b, 0x5c, 0xd7, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0x76, 0x43, 0xd3, 0x32, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xd3, 0x3a, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x71, 0x32, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xf0, 0x29, 0xef, 0x21, + 0xaf, 0x21, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x6d, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x8e, 0x19, 0x4c, 0x09, 0x2c, 0x09, 0x4d, 0x09, 0x6d, 0x11, 0x8e, 0x11, 0xae, 0x11, 0xcf, 0x19, 0xcf, 0x19, 0x10, 0x22, 0x31, 0x22, 0x51, 0x22, 0x92, 0x2a, 0xb3, 0x2a, 0xf3, 0x2a, 0x14, 0x33, 0x34, 0x33, 0x55, 0x3b, 0x95, 0x43, 0xd6, 0x43, 0xf8, 0x43, 0x59, 0x54, 0xdc, 0x5c, 0x7f, 0x6d, 0x3f, 0x86, 0x5f, 0x97, 0xbe, 0xb7, 0xbf, 0xd7, 0xbf, 0xef, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xef, 0xbe, 0xcf, 0xbe, 0xb7, 0xbe, 0xa7, 0x5f, 0x97, 0xdf, 0x8e, 0xbf, 0x8e, 0x9f, 0x86, 0x1f, 0x86, 0xdf, 0x7d, 0x7f, 0x75, 0x5f, 0x6d, 0x7f, 0x65, 0x5f, 0x65, 0x5f, 0x65, 0x5f, 0x65, 0x3f, 0x65, 0x1f, 0x65, 0x3f, 0x6d, 0x3f, 0x6d, 0xbf, 0x75, 0xdf, 0x75, 0xbe, 0x65, 0xde, 0x6d, 0xde, 0x6d, 0x9e, 0x75, 0x1e, 0x65, 0x3e, 0x65, 0x1e, 0x65, 0xdc, 0x5c, 0xdc, 0x5c, 0xbb, 0x5c, 0x9a, 0x54, 0xba, 0x54, 0xba, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0xba, 0x54, 0x99, 0x54, 0x99, 0x54, 0x78, 0x54, 0x78, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x0f, 0x22, 0xcf, 0x21, 0xce, 0x21, 0xae, 0x19, 0xae, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x4c, 0x11, 0xae, 0x19, 0x30, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0xf0, 0x29, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0x10, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x52, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0x14, 0x33, 0x54, 0x3b, 0x95, 0x43, 0xb5, 0x4b, 0xf6, 0x53, 0x37, 0x5c, 0x99, 0x64, 0x1b, 0x6d, 0x9e, 0x7d, 0x1f, 0x86, 0xff, 0x96, 0x9e, 0xa7, 0xbe, 0xb7, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xb7, 0xbe, 0xaf, 0x1f, 0x9f, 0x1f, 0x8e, 0x7f, 0x7d, 0x1f, 0x6d, 0xdd, 0x64, 0x7b, 0x5c, 0x7b, 0x54, 0x5a, 0x54, 0x7b, 0x54, 0x9b, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0xbc, 0x5c, 0xbc, 0x64, 0xb6, 0x43, 0x75, 0x3b, 0xb6, 0x43, 0xf7, 0x4b, 0x17, 0x4c, 0xf7, 0x4b, 0xd7, 0x43, 0x55, 0x43, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x91, 0x2a, 0x92, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x0f, 0x2a, 0xcf, 0x21, + 0xaf, 0x19, 0x8e, 0x19, 0x6e, 0x19, 0x6d, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x6e, 0x19, 0x6e, 0x11, 0x8e, 0x11, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0xae, 0x19, 0x4c, 0x09, 0x2c, 0x09, 0x4d, 0x09, 0x6e, 0x11, 0x8e, 0x11, 0xae, 0x19, 0xcf, 0x19, 0x0f, 0x1a, 0x10, 0x22, 0x31, 0x22, 0x51, 0x2a, 0xb2, 0x2a, 0xd3, 0x2a, 0x13, 0x33, 0x34, 0x33, 0x54, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0xd7, 0x43, 0x18, 0x4c, 0x7a, 0x54, 0xdd, 0x5c, 0x9f, 0x75, 0x3f, 0x86, 0x5f, 0x97, 0xbe, 0xaf, 0xbe, 0xc7, 0xbf, 0xdf, 0xbf, 0xe7, 0xbf, 0xdf, 0xbf, 0xd7, 0xbe, 0xbf, 0xbe, 0xaf, 0x9e, 0x9f, 0x5f, 0x97, 0xdf, 0x8e, 0xbf, 0x86, 0x7f, 0x86, 0xff, 0x7d, 0xbf, 0x7d, 0x9f, 0x75, 0x5f, 0x6d, 0x7f, 0x6d, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x1f, 0x65, 0x3f, 0x65, 0x7e, 0x6d, 0xdf, 0x75, 0xbf, 0x75, 0xbe, 0x6d, 0xbe, 0x6d, 0xde, 0x6d, 0xbe, 0x6d, 0x1e, 0x6d, 0x3f, 0x65, 0x1e, 0x65, 0x1d, 0x65, 0xdc, 0x5c, 0xdc, 0x5c, 0xbb, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0xba, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0xb9, 0x54, 0xb9, 0x54, 0x99, 0x54, 0x58, 0x54, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x30, 0x2a, 0xef, 0x21, 0xef, 0x21, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8d, 0x19, 0x6c, 0x11, 0xae, 0x19, 0x30, 0x2a, 0x51, 0x2a, 0x10, 0x2a, 0xf0, 0x29, 0xf0, 0x29, 0xf0, 0x29, 0xf0, 0x29, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x30, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xd3, 0x2a, 0xf4, 0x32, 0x54, 0x3b, 0x95, 0x3b, 0xd6, 0x43, 0x17, 0x54, 0x78, 0x5c, 0xfa, 0x64, 0x7e, 0x75, 0x1f, 0x86, 0x1f, 0x97, 0x9e, 0xa7, 0xbe, 0xbf, 0xbf, 0xd7, 0xbf, 0xdf, 0xbf, 0xe7, 0xbf, 0xd7, 0xbe, 0xc7, 0xbe, 0xaf, 0x9f, 0x96, 0xff, 0x85, 0x9f, 0x7d, 0x1f, 0x6d, 0x9c, 0x5c, 0x5a, 0x5c, 0x5a, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x5b, 0x54, 0x5b, 0x54, 0x5b, 0x54, 0x7b, 0x5c, 0x7b, 0x5c, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0x17, 0x4c, 0xd7, 0x4b, 0x96, 0x43, 0xd3, 0x32, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xcf, 0x21, 0xcf, 0x21, + 0xae, 0x19, 0x8e, 0x19, 0x6d, 0x11, 0x6d, 0x19, 0x6d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x8e, 0x11, 0x6e, 0x19, 0x8e, 0x19, 0x8e, 0x11, 0x8e, 0x11, 0xaf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0x4c, 0x09, 0x4c, 0x09, 0x6d, 0x09, 0x8e, 0x11, 0xae, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xf0, 0x21, 0x10, 0x22, 0x51, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xf3, 0x32, 0x13, 0x33, 0x34, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0xd7, 0x43, 0x18, 0x4c, 0x7a, 0x54, 0xdd, 0x64, 0x7f, 0x75, 0x3f, 0x86, 0x3f, 0x8f, 0x9d, 0xa7, 0xbe, 0xb7, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xb7, 0xbe, 0xaf, 0xbd, 0xa7, 0x9e, 0x97, 0x3f, 0x8f, 0x9f, 0x86, 0x7f, 0x86, 0x3f, 0x7e, 0xff, 0x7d, 0xbf, 0x75, 0x9f, 0x75, 0x5f, 0x65, 0x3f, 0x65, 0x5f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x1f, 0x65, 0x3f, 0x65, 0x9f, 0x6d, 0xbf, 0x6d, 0xbe, 0x75, 0xbe, 0x6d, 0xbe, 0x6d, 0xdf, 0x6d, 0x7e, 0x6d, 0x3e, 0x6d, 0x7f, 0x6d, 0x3f, 0x65, 0x1e, 0x65, 0xfc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xba, 0x54, 0xba, 0x4c, 0x9a, 0x54, 0xba, 0x54, 0x9a, 0x54, 0xba, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x79, 0x54, 0x18, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x10, 0x22, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xce, 0x19, 0xae, 0x19, 0xad, 0x19, 0xad, 0x19, 0x6d, 0x11, 0x8e, 0x19, 0x30, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xef, 0x29, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xf4, 0x2a, 0x34, 0x33, 0x75, 0x3b, 0xd6, 0x43, 0x37, 0x54, 0x99, 0x5c, 0x3c, 0x6d, 0xdf, 0x7d, 0xbf, 0x8e, 0x9e, 0x9f, 0xbe, 0xaf, 0xbe, 0xc7, 0xbf, 0xef, 0xbf, 0xf7, 0xbf, 0xef, 0xbe, 0xd7, 0xbe, 0xbf, 0x3f, 0xa7, 0x5f, 0x8e, 0x9f, 0x7d, 0x1e, 0x6d, 0xbd, 0x64, 0x7b, 0x5c, 0x39, 0x54, 0x39, 0x4c, 0x19, 0x4c, 0x19, 0x54, 0x3a, 0x54, 0x3a, 0x54, 0x3a, 0x54, 0x3a, 0x54, 0x5a, 0x5c, 0x7b, 0x5c, 0xd7, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0xb6, 0x43, 0x76, 0x43, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0xef, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0x10, 0x22, 0xef, 0x21, 0xf0, 0x21, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0xcf, 0x21, 0xaf, 0x21, + 0x8e, 0x19, 0x8d, 0x19, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4d, 0x09, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x8e, 0x19, 0xaf, 0x19, 0x8e, 0x11, 0x8e, 0x11, 0xae, 0x11, 0xaf, 0x19, 0xcf, 0x19, 0xf0, 0x21, 0x8e, 0x11, 0x8d, 0x11, 0x4d, 0x09, 0x8e, 0x11, 0xae, 0x19, 0xcf, 0x19, 0xef, 0x19, 0x10, 0x22, 0x31, 0x22, 0x71, 0x2a, 0xb2, 0x2a, 0xd2, 0x2a, 0x13, 0x33, 0x34, 0x3b, 0x54, 0x43, 0x75, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0x18, 0x4c, 0x3a, 0x54, 0xbc, 0x5c, 0x1e, 0x65, 0x9f, 0x75, 0x1f, 0x7e, 0xff, 0x8e, 0xde, 0xa7, 0xbd, 0xa7, 0x9d, 0xa7, 0x9d, 0xa7, 0x9d, 0x9f, 0x9e, 0x97, 0x5f, 0x8f, 0xbf, 0x86, 0x3f, 0x86, 0x3f, 0x7e, 0xff, 0x7d, 0x9f, 0x7d, 0x9f, 0x75, 0x7f, 0x75, 0x5f, 0x6d, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x1f, 0x65, 0x3f, 0x6d, 0xbf, 0x6d, 0xbf, 0x6d, 0xbf, 0x6d, 0xbf, 0x75, 0xbf, 0x6d, 0xbe, 0x6d, 0x7e, 0x6d, 0x3e, 0x6d, 0x7f, 0x6d, 0x3f, 0x65, 0x3e, 0x65, 0xfd, 0x5c, 0xdd, 0x5c, 0xdc, 0x5c, 0xbb, 0x54, 0x9a, 0x4c, 0x9b, 0x54, 0xbb, 0x54, 0xba, 0x54, 0xba, 0x54, 0xba, 0x54, 0xba, 0x54, 0x99, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x51, 0x2a, 0x10, 0x22, 0x10, 0x22, 0xef, 0x21, 0xcf, 0x21, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xad, 0x19, 0x8d, 0x19, 0x0f, 0x22, 0x71, 0x2a, 0x51, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xf0, 0x29, 0xef, 0x29, 0xcf, 0x21, 0xaf, 0x21, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x22, 0x72, 0x2a, 0x93, 0x2a, 0xd3, 0x2a, 0x14, 0x33, 0x55, 0x3b, 0xb6, 0x43, 0x38, 0x54, 0xba, 0x5c, 0x3d, 0x6d, 0xdf, 0x7d, 0xdf, 0x8e, 0x9e, 0x9f, 0xbe, 0xb7, 0xbf, 0xdf, 0xbf, 0xef, 0xbf, 0xef, 0xbf, 0xdf, 0xbe, 0xc7, 0x9f, 0xa7, 0xbf, 0x96, 0xff, 0x85, 0x5f, 0x75, 0xbc, 0x64, 0x5a, 0x54, 0x18, 0x4c, 0xf8, 0x4b, 0xd8, 0x43, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0x18, 0x4c, 0x39, 0x54, 0x7c, 0x5c, 0x3a, 0x54, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xf3, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x22, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xef, 0x29, 0xcf, 0x21, 0xae, 0x19, + 0x8e, 0x19, 0x6d, 0x19, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0xaf, 0x19, 0xaf, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xf0, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0x8e, 0x11, 0x8e, 0x11, 0xaf, 0x19, 0xef, 0x19, 0xef, 0x19, 0x10, 0x22, 0x31, 0x2a, 0x92, 0x2a, 0xf3, 0x32, 0x14, 0x33, 0x34, 0x3b, 0x55, 0x43, 0x95, 0x4b, 0xb6, 0x4b, 0xf7, 0x4b, 0x18, 0x4c, 0x19, 0x4c, 0x7b, 0x54, 0xfe, 0x64, 0x5f, 0x6d, 0x7f, 0x75, 0x3f, 0x86, 0x5f, 0x97, 0x7e, 0x97, 0x9f, 0x9f, 0xbd, 0x9f, 0x9e, 0x97, 0x1f, 0x8f, 0x9f, 0x86, 0x1f, 0x7e, 0xff, 0x7d, 0xff, 0x7d, 0xdf, 0x7d, 0x9f, 0x75, 0x5f, 0x75, 0x5f, 0x6d, 0x5f, 0x6d, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0xff, 0x64, 0x5e, 0x65, 0xbf, 0x6d, 0x9f, 0x6d, 0x9f, 0x6d, 0x7f, 0x6d, 0x9f, 0x6d, 0xbe, 0x65, 0x7e, 0x65, 0x3e, 0x6d, 0x7f, 0x75, 0x3f, 0x65, 0x3e, 0x65, 0xfe, 0x5c, 0xdd, 0x5c, 0xdd, 0x5c, 0xbb, 0x54, 0xdb, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xdb, 0x54, 0xdb, 0x54, 0xba, 0x54, 0x9a, 0x54, 0x59, 0x54, 0x39, 0x54, 0x59, 0x54, 0x38, 0x54, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0x95, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0xf3, 0x3a, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x91, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xce, 0x19, 0xae, 0x19, 0x6d, 0x11, 0x0f, 0x22, 0x92, 0x32, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xef, 0x21, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x31, 0x22, 0x51, 0x22, 0x52, 0x22, 0x92, 0x2a, 0xd3, 0x2a, 0x14, 0x33, 0x55, 0x3b, 0xb6, 0x43, 0x38, 0x4c, 0x9a, 0x5c, 0x3e, 0x6d, 0xdf, 0x7d, 0xbf, 0x8e, 0x7e, 0xa7, 0xbe, 0xbf, 0xbe, 0xcf, 0xbf, 0xcf, 0xbf, 0xcf, 0xbe, 0xbf, 0x9f, 0xaf, 0xdf, 0x96, 0x1f, 0x86, 0x7f, 0x75, 0xfd, 0x64, 0x7a, 0x5c, 0x18, 0x54, 0xf7, 0x4b, 0xd7, 0x43, 0xb7, 0x43, 0xd7, 0x43, 0xb7, 0x4b, 0x97, 0x4b, 0xd8, 0x4b, 0x19, 0x4c, 0x19, 0x54, 0x7b, 0x5c, 0xd8, 0x4b, 0x76, 0x3b, 0xb6, 0x3b, 0xb2, 0x32, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0xf0, 0x21, 0xef, 0x21, 0xf0, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x0f, 0x2a, 0x0f, 0x2a, 0xef, 0x21, 0xcf, 0x21, 0xae, 0x19, + 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4c, 0x11, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x6d, 0x09, 0x4d, 0x11, 0x6d, 0x11, 0x8e, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0x8f, 0x11, 0xaf, 0x19, 0xaf, 0x11, 0xaf, 0x11, 0xcf, 0x19, 0xf0, 0x19, 0xf0, 0x21, 0xcf, 0x19, 0x10, 0x22, 0xcf, 0x19, 0xae, 0x11, 0xcf, 0x11, 0xef, 0x19, 0x10, 0x22, 0x31, 0x22, 0x72, 0x2a, 0xb3, 0x2a, 0xf3, 0x32, 0x34, 0x3b, 0x54, 0x43, 0x75, 0x43, 0x95, 0x4b, 0xb6, 0x43, 0xf7, 0x43, 0xf8, 0x43, 0x19, 0x4c, 0x9c, 0x54, 0xde, 0x5c, 0x3f, 0x65, 0x7f, 0x6d, 0x3f, 0x7e, 0x5f, 0x86, 0x7f, 0x86, 0xdf, 0x8e, 0x1f, 0x8f, 0x1f, 0x8f, 0xdf, 0x8e, 0x5f, 0x86, 0xbf, 0x75, 0xbf, 0x75, 0x9f, 0x75, 0x7f, 0x75, 0x5f, 0x75, 0x3f, 0x6d, 0x3f, 0x6d, 0x3f, 0x65, 0x3f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x9f, 0x65, 0x9f, 0x65, 0x9f, 0x6d, 0x7f, 0x6d, 0x9f, 0x6d, 0x9e, 0x6d, 0xbf, 0x6d, 0x7e, 0x65, 0x1e, 0x65, 0x9f, 0x6d, 0x5f, 0x65, 0x3f, 0x65, 0xfe, 0x5c, 0xde, 0x5c, 0xfd, 0x54, 0xdc, 0x54, 0xdb, 0x54, 0xbb, 0x54, 0xdc, 0x54, 0xdb, 0x54, 0xdb, 0x54, 0xbb, 0x5c, 0xdb, 0x5c, 0xba, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xf6, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x0f, 0x22, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0x8e, 0x19, 0x0f, 0x2a, 0x92, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0x0f, 0x2a, 0xef, 0x21, 0xcf, 0x21, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x6d, 0x19, 0x8d, 0x11, 0x6d, 0x19, 0x6d, 0x19, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0xae, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xef, 0x19, 0xf0, 0x19, 0x10, 0x22, 0x31, 0x22, 0x72, 0x22, 0x92, 0x2a, 0xb3, 0x2a, 0x14, 0x33, 0x55, 0x3b, 0x96, 0x43, 0x18, 0x4c, 0x7a, 0x5c, 0x1d, 0x6d, 0xbf, 0x7d, 0x3f, 0x9f, 0xbe, 0xaf, 0xbe, 0xb7, 0xbe, 0xb7, 0xbe, 0xb7, 0xde, 0xb7, 0x1f, 0xa7, 0x7f, 0x96, 0xdf, 0x85, 0x5f, 0x75, 0xdd, 0x64, 0x7a, 0x5c, 0x18, 0x54, 0xd7, 0x4b, 0xb7, 0x43, 0x97, 0x43, 0x97, 0x43, 0x76, 0x43, 0x97, 0x43, 0xb7, 0x4b, 0xd8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0x7b, 0x5c, 0x96, 0x3b, 0x14, 0x33, 0x71, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0xf0, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0xaf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xae, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xaf, 0x19, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x0f, 0x2a, 0xef, 0x21, 0xcf, 0x21, 0xae, 0x19, 0x8e, 0x19, + 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4d, 0x09, 0x4d, 0x09, 0x4d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0x8f, 0x11, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x11, 0xcf, 0x19, 0xf0, 0x21, 0xef, 0x19, 0xf0, 0x19, 0xf0, 0x21, 0xef, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xf0, 0x19, 0x10, 0x22, 0x51, 0x22, 0x92, 0x2a, 0xd3, 0x32, 0x34, 0x33, 0x34, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xd8, 0x43, 0x19, 0x4c, 0x7b, 0x54, 0xbe, 0x5c, 0xff, 0x64, 0x7f, 0x6d, 0x9f, 0x75, 0xdf, 0x7d, 0x1f, 0x7e, 0x3f, 0x7e, 0x3f, 0x7e, 0x1f, 0x7e, 0x3f, 0x7e, 0x3f, 0x7e, 0x1f, 0x7e, 0xbf, 0x75, 0x5f, 0x6d, 0x3f, 0x6d, 0x1f, 0x6d, 0x1f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0xff, 0x64, 0xff, 0x64, 0xff, 0x64, 0x1e, 0x65, 0x9f, 0x65, 0x7f, 0x65, 0x7e, 0x65, 0x7f, 0x65, 0x7f, 0x6d, 0x7f, 0x6d, 0x9e, 0x65, 0x7e, 0x65, 0x1e, 0x65, 0x5f, 0x6d, 0x5f, 0x6d, 0x5f, 0x65, 0x1e, 0x5d, 0xde, 0x5c, 0xde, 0x5c, 0xdd, 0x54, 0xdc, 0x54, 0xdc, 0x54, 0xdc, 0x54, 0xdb, 0x54, 0xdb, 0x54, 0xdc, 0x54, 0xdb, 0x5c, 0xdb, 0x5c, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x59, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0x96, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x33, 0xf3, 0x32, 0xd2, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xef, 0x21, 0x91, 0x32, 0xb2, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xef, 0x21, 0xaf, 0x21, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8d, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0xae, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xf0, 0x19, 0x10, 0x1a, 0x31, 0x22, 0x51, 0x22, 0x72, 0x2a, 0xb3, 0x2a, 0xf3, 0x32, 0x34, 0x33, 0x96, 0x43, 0xf7, 0x4b, 0x59, 0x54, 0x1c, 0x6d, 0x1f, 0x86, 0x9f, 0x8e, 0xff, 0x96, 0x3f, 0x9f, 0x7f, 0xa7, 0x9f, 0xa7, 0x5f, 0x96, 0xdf, 0x85, 0x9f, 0x7d, 0x3f, 0x75, 0xdc, 0x64, 0x59, 0x5c, 0xf8, 0x53, 0xb7, 0x4b, 0xb7, 0x43, 0x96, 0x43, 0x76, 0x3b, 0x76, 0x3b, 0x97, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x4b, 0xd8, 0x4b, 0xf8, 0x53, 0x39, 0x54, 0xd3, 0x32, 0x51, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0x10, 0x22, 0xf0, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xaf, 0x21, 0xaf, 0x19, 0xcf, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xf0, 0x21, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x0f, 0x2a, 0xef, 0x21, 0xae, 0x21, 0x8e, 0x19, 0x6d, 0x11, + 0x6d, 0x11, 0x6d, 0x11, 0x4c, 0x11, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4d, 0x09, 0x4d, 0x09, 0x6d, 0x09, 0x6d, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0x8f, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x11, 0xcf, 0x19, 0xcf, 0x21, 0x8e, 0x11, 0x8e, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xf0, 0x19, 0x31, 0x22, 0x51, 0x22, 0x92, 0x2a, 0xd3, 0x32, 0x14, 0x33, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0xb6, 0x43, 0xb7, 0x3b, 0xb7, 0x43, 0xf8, 0x43, 0x39, 0x4c, 0x5b, 0x54, 0xbe, 0x5c, 0x1f, 0x65, 0x5f, 0x6d, 0x7f, 0x6d, 0x9f, 0x6d, 0xbf, 0x75, 0xbf, 0x75, 0xdf, 0x75, 0xdf, 0x75, 0xdf, 0x75, 0xdf, 0x75, 0xdf, 0x7d, 0xbf, 0x75, 0x5f, 0x75, 0xff, 0x6c, 0xff, 0x64, 0xff, 0x5c, 0xfe, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0x1e, 0x65, 0x7f, 0x65, 0x7e, 0x65, 0x7f, 0x65, 0x5f, 0x65, 0x7f, 0x6d, 0x7f, 0x6d, 0x7f, 0x6d, 0x7e, 0x65, 0x7e, 0x65, 0x1e, 0x65, 0x5f, 0x65, 0x5f, 0x6d, 0x3f, 0x65, 0x1e, 0x65, 0xdf, 0x5c, 0xfe, 0x5c, 0xdd, 0x5c, 0xdc, 0x54, 0xdc, 0x54, 0xfd, 0x54, 0xfc, 0x54, 0xdc, 0x54, 0xdc, 0x54, 0x1c, 0x5d, 0xdc, 0x5c, 0x9b, 0x5c, 0xbb, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x7a, 0x5c, 0x79, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0xf7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x74, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xd2, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x10, 0x22, 0xef, 0x21, 0x71, 0x2a, 0xd2, 0x32, 0x92, 0x32, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xae, 0x19, 0xae, 0x19, 0x8d, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0xae, 0x11, 0xaf, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xef, 0x19, 0xf0, 0x19, 0x10, 0x22, 0x31, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0xd3, 0x2a, 0x14, 0x33, 0x55, 0x3b, 0xb6, 0x43, 0x9b, 0x5c, 0x3e, 0x75, 0x7f, 0x7d, 0xbf, 0x7d, 0xff, 0x85, 0x1f, 0x86, 0x1f, 0x8e, 0xbf, 0x85, 0x9f, 0x7d, 0x5f, 0x75, 0xfe, 0x6c, 0xbc, 0x64, 0x5a, 0x5c, 0x18, 0x54, 0xb7, 0x4b, 0x96, 0x43, 0x56, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x97, 0x43, 0xb7, 0x43, 0xd7, 0x4b, 0xf8, 0x53, 0x14, 0x3b, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0x10, 0x22, 0xf0, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xcf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xf0, 0x21, 0x10, 0x22, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xcf, 0x21, 0x8e, 0x19, 0x8d, 0x11, 0x6d, 0x11, + 0x6d, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x4c, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x2d, 0x09, 0x4d, 0x09, 0x6d, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0xcf, 0x19, 0xf0, 0x19, 0xf0, 0x21, 0xf0, 0x21, 0x8e, 0x11, 0x6d, 0x09, 0x8e, 0x11, 0x8e, 0x11, 0xae, 0x19, 0xcf, 0x19, 0xf0, 0x19, 0xf0, 0x21, 0xd0, 0x19, 0xf0, 0x19, 0x31, 0x22, 0x72, 0x2a, 0xb3, 0x2a, 0xd4, 0x32, 0x34, 0x33, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x97, 0x3b, 0xb7, 0x3b, 0xf8, 0x43, 0x19, 0x4c, 0x5b, 0x54, 0xbd, 0x5c, 0xff, 0x5c, 0x1f, 0x65, 0x3f, 0x6d, 0x7f, 0x6d, 0x7f, 0x6d, 0x7f, 0x6d, 0x9f, 0x75, 0xbf, 0x75, 0xbf, 0x75, 0x9f, 0x75, 0x7f, 0x75, 0x7f, 0x75, 0x7f, 0x75, 0x3f, 0x6d, 0xde, 0x5c, 0xfe, 0x5c, 0xfe, 0x64, 0xfe, 0x5c, 0x3e, 0x5d, 0x5f, 0x5d, 0x5f, 0x65, 0x5f, 0x65, 0x5f, 0x65, 0x7f, 0x65, 0x7f, 0x6d, 0x5f, 0x6d, 0x7e, 0x6d, 0x7e, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x5f, 0x6d, 0x3f, 0x65, 0x1f, 0x65, 0xde, 0x5c, 0xff, 0x5c, 0xde, 0x5c, 0xfd, 0x54, 0xfd, 0x54, 0xdc, 0x54, 0xdc, 0x54, 0xfd, 0x5c, 0x1d, 0x5d, 0xfc, 0x5c, 0xfc, 0x64, 0xdd, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0x9b, 0x5c, 0x9a, 0x5c, 0x99, 0x5c, 0x79, 0x54, 0x38, 0x54, 0x38, 0x54, 0x17, 0x54, 0x17, 0x4c, 0xd7, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x54, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0xf3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x30, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0x8e, 0x19, 0x8d, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4d, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4d, 0x09, 0x6d, 0x09, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0xaf, 0x11, 0xaf, 0x11, 0xcf, 0x19, 0xf0, 0x19, 0x10, 0x1a, 0x31, 0x22, 0x72, 0x22, 0x72, 0x2a, 0xb3, 0x2a, 0xf4, 0x32, 0x14, 0x33, 0x7a, 0x5c, 0xbc, 0x64, 0xdd, 0x64, 0xfd, 0x6c, 0x1e, 0x6d, 0x3f, 0x75, 0x5f, 0x75, 0x3f, 0x75, 0xfd, 0x6c, 0xdc, 0x6c, 0x9b, 0x64, 0x59, 0x5c, 0x18, 0x54, 0xd8, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0x76, 0x43, 0x76, 0x43, 0x97, 0x43, 0xb7, 0x4b, 0xd3, 0x32, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x10, 0x22, 0xf0, 0x21, 0xf0, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x11, 0xaf, 0x19, 0xef, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x30, 0x2a, 0x10, 0x2a, 0xf0, 0x29, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xcf, 0x21, 0xae, 0x19, 0x8e, 0x11, 0x6d, 0x11, 0x6d, 0x11, + 0x4c, 0x11, 0x4c, 0x11, 0x2c, 0x09, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4d, 0x09, 0x6d, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0xaf, 0x11, 0xcf, 0x19, 0xcf, 0x19, 0x8e, 0x11, 0xcf, 0x19, 0xaf, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0xaf, 0x19, 0xd0, 0x19, 0x10, 0x22, 0x31, 0x22, 0x31, 0x22, 0x31, 0x22, 0x52, 0x2a, 0x93, 0x2a, 0xd3, 0x2a, 0xf4, 0x32, 0x34, 0x33, 0x35, 0x33, 0x75, 0x3b, 0x76, 0x3b, 0x97, 0x3b, 0xb7, 0x43, 0xb8, 0x43, 0xd8, 0x43, 0x39, 0x4c, 0x7b, 0x54, 0x9d, 0x54, 0xdf, 0x5c, 0xff, 0x64, 0x1f, 0x65, 0x5f, 0x6d, 0x5f, 0x6d, 0x5f, 0x6d, 0x7f, 0x6d, 0x7f, 0x6d, 0x5f, 0x6d, 0x5f, 0x6d, 0x5f, 0x6d, 0x5f, 0x6d, 0x3f, 0x6d, 0x3e, 0x6d, 0xdd, 0x5c, 0xbd, 0x5c, 0xdd, 0x5c, 0x5f, 0x5d, 0x5f, 0x5d, 0x3f, 0x5d, 0x5f, 0x65, 0x5f, 0x65, 0x5f, 0x65, 0x5f, 0x6d, 0x5f, 0x6d, 0x7f, 0x65, 0x7e, 0x65, 0x3e, 0x65, 0x1f, 0x65, 0x3f, 0x65, 0x5f, 0x65, 0x3f, 0x65, 0xff, 0x5c, 0xde, 0x5c, 0xde, 0x54, 0xdd, 0x54, 0xfd, 0x54, 0xfd, 0x54, 0xfd, 0x54, 0xfd, 0x5c, 0x1d, 0x5d, 0x1d, 0x5d, 0x3e, 0x65, 0xfe, 0x64, 0xfe, 0x64, 0xfd, 0x64, 0xfd, 0x64, 0xdd, 0x5c, 0xbb, 0x5c, 0x9a, 0x5c, 0x7a, 0x5c, 0x79, 0x5c, 0x58, 0x54, 0x38, 0x54, 0x18, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x55, 0x43, 0x54, 0x3b, 0x13, 0x33, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0xb2, 0x32, 0xf4, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0xcf, 0x21, 0xcf, 0x21, 0xae, 0x19, 0xae, 0x19, 0x6e, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4d, 0x09, 0x6d, 0x09, 0x6d, 0x09, 0x6d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0xaf, 0x11, 0xcf, 0x11, 0xf0, 0x19, 0xf0, 0x19, 0x10, 0x22, 0x51, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0x14, 0x33, 0xf8, 0x4b, 0x18, 0x54, 0x18, 0x54, 0x39, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x9b, 0x64, 0xbb, 0x64, 0x7a, 0x64, 0x39, 0x5c, 0x18, 0x54, 0xf7, 0x53, 0xd7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x76, 0x43, 0x97, 0x43, 0x76, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x76, 0x43, 0x76, 0x43, 0x71, 0x32, 0x71, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x10, 0x22, 0xf0, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x21, 0xce, 0x19, 0xae, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x2a, 0x10, 0x2a, 0xf0, 0x29, 0x10, 0x2a, 0x0f, 0x2a, 0xef, 0x21, 0xcf, 0x21, 0x8e, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x6c, 0x11, + 0x4c, 0x11, 0x4c, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x4d, 0x09, 0x6d, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0xaf, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x11, 0x8e, 0x19, 0xcf, 0x19, 0xf0, 0x19, 0x10, 0x22, 0x31, 0x22, 0x31, 0x22, 0x31, 0x22, 0x72, 0x2a, 0x93, 0x2a, 0xd4, 0x32, 0xf4, 0x32, 0x34, 0x33, 0x35, 0x33, 0x56, 0x33, 0x76, 0x33, 0x97, 0x3b, 0xb8, 0x43, 0xf8, 0x43, 0x18, 0x44, 0x39, 0x4c, 0x5a, 0x4c, 0x7c, 0x54, 0x9e, 0x54, 0xde, 0x5c, 0xff, 0x64, 0x1f, 0x65, 0x3f, 0x65, 0x5f, 0x65, 0x3f, 0x65, 0x5f, 0x65, 0x5f, 0x6d, 0x3f, 0x6d, 0x1f, 0x65, 0x1f, 0x65, 0x5f, 0x6d, 0x7f, 0x6d, 0xfd, 0x5c, 0x1e, 0x5d, 0x3f, 0x5d, 0x1f, 0x5d, 0x3f, 0x5d, 0x5f, 0x65, 0x5f, 0x65, 0x5f, 0x65, 0x5f, 0x65, 0x5f, 0x6d, 0x5f, 0x65, 0x5e, 0x65, 0x5e, 0x65, 0x1f, 0x65, 0x5f, 0x65, 0x5f, 0x65, 0x3f, 0x65, 0x1e, 0x5d, 0xff, 0x5c, 0xfe, 0x5c, 0xfd, 0x54, 0x1d, 0x55, 0x1e, 0x5d, 0x3d, 0x5d, 0x1d, 0x5d, 0x1e, 0x5d, 0x5e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x5f, 0x65, 0x3f, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0x1d, 0x65, 0xfc, 0x5c, 0xdb, 0x5c, 0xba, 0x5c, 0x99, 0x5c, 0x79, 0x5c, 0x58, 0x54, 0x18, 0x54, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb5, 0x43, 0x95, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x14, 0x33, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x31, 0x2a, 0x71, 0x2a, 0xf3, 0x3a, 0x14, 0x3b, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xae, 0x19, 0x8e, 0x19, 0x6e, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x4b, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4d, 0x09, 0x6d, 0x09, 0x6d, 0x09, 0x6e, 0x09, 0x8e, 0x11, 0xae, 0x11, 0xcf, 0x11, 0xef, 0x19, 0x10, 0x1a, 0x10, 0x22, 0x51, 0x22, 0x51, 0x22, 0x34, 0x3b, 0xb7, 0x43, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0x18, 0x54, 0x18, 0x54, 0xf7, 0x53, 0xd7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0x76, 0x43, 0x76, 0x3b, 0x97, 0x43, 0xb7, 0x43, 0x97, 0x43, 0x76, 0x43, 0x97, 0x43, 0x76, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x36, 0x3b, 0xd3, 0x32, 0x71, 0x2a, 0x92, 0x32, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x10, 0x22, 0xf0, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xaf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0x10, 0x2a, 0x10, 0x2a, 0xf0, 0x21, 0x0f, 0x2a, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0x8e, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x4c, 0x11, + 0x4c, 0x11, 0x2c, 0x09, 0x2c, 0x11, 0x4d, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x01, 0xea, 0x00, 0x0a, 0x01, 0xeb, 0x00, 0xeb, 0x00, 0x2b, 0x09, 0x2b, 0x09, 0x2c, 0x01, 0x2c, 0x09, 0x4c, 0x09, 0x6d, 0x09, 0x6d, 0x11, 0x4d, 0x09, 0x4d, 0x09, 0x6e, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0x8e, 0x11, 0xaf, 0x11, 0xcf, 0x19, 0xf0, 0x19, 0x11, 0x22, 0x31, 0x22, 0x52, 0x22, 0x31, 0x22, 0x72, 0x2a, 0xb3, 0x2a, 0xd4, 0x2a, 0xf4, 0x32, 0x35, 0x33, 0x55, 0x33, 0x55, 0x3b, 0x56, 0x33, 0x97, 0x3b, 0xd8, 0x43, 0xf8, 0x43, 0x19, 0x4c, 0x3a, 0x4c, 0x3a, 0x4c, 0x5b, 0x4c, 0x7d, 0x54, 0xbe, 0x54, 0xff, 0x5c, 0x1f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0xff, 0x64, 0xff, 0x64, 0x1f, 0x6d, 0x3f, 0x65, 0x5f, 0x6d, 0x5e, 0x65, 0x1f, 0x5d, 0x3f, 0x5d, 0x3f, 0x5d, 0x3f, 0x65, 0x5f, 0x65, 0x5f, 0x65, 0x5f, 0x65, 0x3f, 0x65, 0x3f, 0x6d, 0x7e, 0x65, 0x5e, 0x65, 0x1f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0xff, 0x5c, 0xfe, 0x5c, 0xfd, 0x54, 0xfe, 0x54, 0xfe, 0x54, 0x1d, 0x55, 0x3d, 0x5d, 0x5e, 0x65, 0x7e, 0x6d, 0x7e, 0x6d, 0x5f, 0x6d, 0x5f, 0x6d, 0x5f, 0x6d, 0x5f, 0x6d, 0x5f, 0x6d, 0x3f, 0x6d, 0x1e, 0x65, 0xfd, 0x64, 0xfc, 0x64, 0xdb, 0x5c, 0x9a, 0x5c, 0x79, 0x5c, 0x58, 0x54, 0x38, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x54, 0x43, 0x34, 0x3b, 0x14, 0x33, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0xf3, 0x3a, 0x34, 0x3b, 0xf3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xae, 0x19, 0x8e, 0x19, 0x8d, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x2b, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0x2b, 0x01, 0x2b, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4d, 0x09, 0x4d, 0x09, 0x6e, 0x09, 0x8e, 0x11, 0xae, 0x11, 0xaf, 0x11, 0xcf, 0x19, 0xf0, 0x19, 0x10, 0x22, 0x10, 0x22, 0x14, 0x3b, 0x76, 0x43, 0x76, 0x3b, 0x76, 0x43, 0x75, 0x3b, 0x76, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x76, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0x76, 0x43, 0x56, 0x3b, 0x76, 0x3b, 0x76, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0x76, 0x43, 0x76, 0x43, 0xb2, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0x10, 0x22, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xae, 0x21, 0xae, 0x21, 0xaf, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xef, 0x21, 0x10, 0x2a, 0x10, 0x22, 0xf0, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xae, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4c, 0x11, + 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0a, 0x01, 0xca, 0x00, 0xca, 0x00, 0xea, 0x00, 0xcb, 0x00, 0xeb, 0x00, 0x0b, 0x01, 0x2b, 0x09, 0x2b, 0x09, 0x2c, 0x01, 0x2c, 0x09, 0x4d, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4d, 0x09, 0x4d, 0x09, 0x6d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0xae, 0x11, 0x8e, 0x11, 0xaf, 0x11, 0xcf, 0x19, 0x10, 0x1a, 0x31, 0x22, 0x52, 0x22, 0x52, 0x2a, 0x31, 0x22, 0x72, 0x2a, 0x93, 0x2a, 0xd3, 0x2a, 0xf4, 0x32, 0x15, 0x33, 0x35, 0x33, 0x35, 0x3b, 0x76, 0x3b, 0x97, 0x3b, 0xb7, 0x43, 0xd8, 0x43, 0x19, 0x44, 0x3a, 0x4c, 0x5b, 0x4c, 0x5b, 0x4c, 0x7d, 0x54, 0xbf, 0x54, 0xff, 0x5c, 0x1f, 0x65, 0x1f, 0x65, 0x3f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0xff, 0x64, 0xff, 0x64, 0xff, 0x64, 0x3f, 0x65, 0x7f, 0x65, 0x9f, 0x6d, 0x7f, 0x65, 0x1e, 0x5d, 0x3f, 0x5d, 0x3f, 0x5d, 0x3f, 0x5d, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x6d, 0x3f, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x1f, 0x65, 0x3f, 0x6d, 0x3f, 0x65, 0x3f, 0x65, 0x1f, 0x65, 0x1f, 0x5d, 0xfe, 0x5c, 0x1e, 0x55, 0x1e, 0x55, 0x3e, 0x5d, 0x3e, 0x55, 0x5e, 0x5d, 0x7e, 0x65, 0x7e, 0x6d, 0xbf, 0x75, 0x9f, 0x75, 0x9f, 0x75, 0xbf, 0x75, 0xbf, 0x75, 0x9f, 0x75, 0x9f, 0x75, 0x7f, 0x6d, 0x5f, 0x6d, 0x3e, 0x6d, 0xfd, 0x64, 0xdb, 0x64, 0xba, 0x5c, 0x79, 0x5c, 0x58, 0x54, 0x38, 0x54, 0x17, 0x4c, 0xf7, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0x75, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0xd2, 0x32, 0x34, 0x3b, 0x34, 0x3b, 0xf3, 0x3a, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x31, 0x2a, 0x10, 0x22, 0xef, 0x21, 0xcf, 0x21, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0xeb, 0x08, 0xca, 0x00, 0xea, 0x00, 0xea, 0x00, 0x0a, 0x01, 0x0a, 0x01, 0x0b, 0x01, 0x0a, 0x01, 0xea, 0x00, 0x0b, 0x01, 0x2c, 0x01, 0x2c, 0x01, 0x4c, 0x09, 0x4c, 0x09, 0x6d, 0x09, 0x6d, 0x09, 0x8e, 0x11, 0x8e, 0x11, 0xaf, 0x11, 0xcf, 0x19, 0xef, 0x19, 0xcf, 0x19, 0xf4, 0x32, 0x55, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x14, 0x33, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x95, 0x4b, 0x95, 0x4b, 0xd6, 0x4b, 0x96, 0x43, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x15, 0x33, 0x35, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0x92, 0x32, 0x71, 0x2a, 0x72, 0x32, 0x72, 0x32, 0x10, 0x22, 0xf0, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xae, 0x21, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x6e, 0x19, 0x8d, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xef, 0x21, 0x10, 0x2a, 0xf0, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xae, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x4c, 0x11, 0x4c, 0x11, + 0x2c, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0a, 0x01, 0xca, 0x00, 0xea, 0x00, 0x0a, 0x01, 0xea, 0x00, 0xcb, 0x00, 0xeb, 0x00, 0x0b, 0x01, 0x2b, 0x09, 0x2c, 0x01, 0x2c, 0x09, 0x0b, 0x01, 0x2b, 0x09, 0x0b, 0x01, 0x2b, 0x09, 0x0c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4d, 0x09, 0x6d, 0x09, 0x6e, 0x11, 0x8e, 0x11, 0xaf, 0x11, 0xaf, 0x11, 0xaf, 0x11, 0xf0, 0x19, 0xf0, 0x21, 0x31, 0x22, 0x52, 0x22, 0x72, 0x22, 0x52, 0x22, 0x72, 0x2a, 0xb3, 0x2a, 0xf4, 0x2a, 0xf4, 0x32, 0x14, 0x33, 0x35, 0x33, 0x76, 0x3b, 0x76, 0x3b, 0x97, 0x3b, 0xb7, 0x3b, 0xd8, 0x43, 0x19, 0x44, 0x3a, 0x4c, 0x5b, 0x4c, 0x7c, 0x4c, 0x9e, 0x5c, 0xff, 0x5c, 0x1f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0xff, 0x64, 0xff, 0x64, 0xff, 0x64, 0xdf, 0x64, 0x1f, 0x65, 0x5f, 0x65, 0x7f, 0x65, 0xbf, 0x6d, 0x9f, 0x6d, 0x1e, 0x5d, 0x3f, 0x5d, 0x3f, 0x65, 0x3f, 0x65, 0x5f, 0x65, 0x3f, 0x65, 0x1f, 0x65, 0x1e, 0x65, 0x3e, 0x5d, 0x3f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0xff, 0x5c, 0xfe, 0x5c, 0xfd, 0x54, 0x1e, 0x55, 0x3e, 0x5d, 0x3e, 0x5d, 0x3e, 0x5d, 0x5d, 0x65, 0xbe, 0x75, 0xdf, 0x75, 0xbf, 0x7d, 0xdf, 0x7d, 0xff, 0x7d, 0xdf, 0x7d, 0xdf, 0x7d, 0xdf, 0x7d, 0xbf, 0x7d, 0x9f, 0x75, 0x7f, 0x75, 0x5e, 0x6d, 0x1d, 0x6d, 0xdc, 0x64, 0x9a, 0x5c, 0x99, 0x5c, 0x59, 0x54, 0x38, 0x54, 0x17, 0x54, 0x17, 0x54, 0xf7, 0x4b, 0xb6, 0x4b, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x14, 0x3b, 0x75, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0xea, 0x08, 0xca, 0x00, 0xca, 0x00, 0xea, 0x00, 0xea, 0x00, 0xea, 0x00, 0xea, 0x00, 0xea, 0x00, 0xea, 0x00, 0xeb, 0x00, 0xeb, 0x00, 0x0b, 0x01, 0x2b, 0x01, 0x2c, 0x09, 0x4c, 0x09, 0x4d, 0x09, 0x6d, 0x09, 0x6d, 0x09, 0x8e, 0x11, 0xae, 0x11, 0xcf, 0x19, 0x8e, 0x11, 0xf4, 0x32, 0x35, 0x3b, 0x14, 0x33, 0xf4, 0x32, 0xd4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x35, 0x3b, 0x95, 0x43, 0xb6, 0x4b, 0x76, 0x43, 0x15, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x35, 0x3b, 0x35, 0x3b, 0x15, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x51, 0x2a, 0xf0, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x11, 0x6e, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6e, 0x19, 0x8e, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8e, 0x19, 0xcf, 0x21, 0x10, 0x2a, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0xae, 0x19, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x2c, 0x09, + 0x4c, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x01, 0xea, 0x00, 0xea, 0x00, 0xea, 0x00, 0xea, 0x00, 0xeb, 0x00, 0x0b, 0x09, 0x0b, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0xea, 0x00, 0xea, 0x00, 0xca, 0x00, 0xca, 0x00, 0x0b, 0x01, 0xeb, 0x00, 0x0b, 0x09, 0x2b, 0x09, 0x2c, 0x09, 0x4d, 0x09, 0x6d, 0x09, 0x6d, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0xaf, 0x11, 0xaf, 0x11, 0xaf, 0x11, 0xd0, 0x19, 0x10, 0x1a, 0x31, 0x22, 0x52, 0x22, 0x52, 0x2a, 0x72, 0x22, 0x93, 0x2a, 0xb3, 0x2a, 0xd3, 0x2a, 0xf4, 0x32, 0x15, 0x33, 0x35, 0x33, 0x76, 0x33, 0x76, 0x3b, 0x97, 0x3b, 0xb7, 0x43, 0xd8, 0x43, 0xf9, 0x43, 0x3a, 0x4c, 0x7c, 0x4c, 0xbe, 0x54, 0xff, 0x5c, 0x3f, 0x65, 0x5f, 0x65, 0x3f, 0x65, 0x1f, 0x65, 0xff, 0x64, 0xff, 0x64, 0xff, 0x64, 0xde, 0x64, 0x3f, 0x5d, 0x3f, 0x65, 0x7f, 0x65, 0x7f, 0x65, 0x9f, 0x6d, 0x9f, 0x6d, 0x3e, 0x5d, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x3e, 0x5d, 0x1f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x3f, 0x65, 0x1f, 0x65, 0xde, 0x5c, 0xdd, 0x5c, 0xfd, 0x5c, 0xfd, 0x5c, 0xfd, 0x54, 0xfd, 0x5c, 0x5e, 0x65, 0x9e, 0x6d, 0xde, 0x75, 0xff, 0x7d, 0xff, 0x7d, 0x3f, 0x86, 0x5f, 0x86, 0x5f, 0x86, 0x5f, 0x86, 0x3f, 0x86, 0x3f, 0x86, 0x1f, 0x7e, 0xdf, 0x7d, 0xbf, 0x75, 0x7f, 0x75, 0x3e, 0x6d, 0xfc, 0x64, 0xbb, 0x5c, 0x9a, 0x5c, 0x79, 0x5c, 0x58, 0x5c, 0x17, 0x54, 0x17, 0x54, 0xd6, 0x4b, 0x96, 0x43, 0x95, 0x43, 0x75, 0x43, 0x54, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0x14, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x35, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0xef, 0x21, 0xaf, 0x21, 0xae, 0x19, 0x8e, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4c, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x0b, 0x01, 0xea, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x00, 0xeb, 0x00, 0x0b, 0x01, 0x0b, 0x01, 0x0c, 0x01, 0x2c, 0x01, 0x4c, 0x09, 0x6d, 0x09, 0x8d, 0x09, 0x8e, 0x11, 0x8e, 0x11, 0xaf, 0x19, 0xf4, 0x32, 0x14, 0x33, 0xf4, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0xf4, 0x32, 0xd4, 0x32, 0xf4, 0x32, 0x15, 0x33, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0xd3, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0xef, 0x21, 0xcf, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x6e, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0xcf, 0x21, 0x10, 0x2a, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0x8e, 0x19, 0x8e, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, + 0x4c, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x0c, 0x09, 0x2b, 0x09, 0x0c, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0xeb, 0x00, 0xeb, 0x00, 0x0b, 0x01, 0x0b, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0xca, 0x00, 0xea, 0x00, 0xca, 0x00, 0xea, 0x00, 0xea, 0x00, 0xca, 0x00, 0xca, 0x00, 0xeb, 0x00, 0x0b, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4d, 0x09, 0x6d, 0x09, 0x6e, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0x8f, 0x11, 0xaf, 0x11, 0xaf, 0x11, 0xf0, 0x19, 0x11, 0x22, 0x31, 0x22, 0x52, 0x22, 0x72, 0x2a, 0x52, 0x2a, 0x93, 0x2a, 0xd3, 0x2a, 0xf4, 0x2a, 0xf4, 0x32, 0x15, 0x33, 0x55, 0x33, 0x76, 0x3b, 0x77, 0x3b, 0x97, 0x3b, 0xb7, 0x43, 0xd8, 0x43, 0x19, 0x4c, 0x5b, 0x4c, 0x9e, 0x5c, 0xff, 0x5c, 0x3f, 0x6d, 0x7f, 0x6d, 0x5f, 0x6d, 0x3f, 0x6d, 0xfe, 0x64, 0xde, 0x64, 0xff, 0x64, 0xfe, 0x5c, 0x3f, 0x5d, 0x3f, 0x5d, 0x3f, 0x5d, 0x5f, 0x65, 0x7f, 0x65, 0x9f, 0x6d, 0x7f, 0x6d, 0x1f, 0x5d, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x3e, 0x5d, 0x3e, 0x65, 0x1f, 0x65, 0xff, 0x64, 0x3f, 0x65, 0x1e, 0x65, 0xfd, 0x5c, 0xbd, 0x5c, 0xfd, 0x54, 0xfc, 0x54, 0x1d, 0x5d, 0x1d, 0x5d, 0x3d, 0x65, 0x5d, 0x6d, 0xde, 0x7d, 0x1f, 0x86, 0x1f, 0x86, 0x7f, 0x86, 0xff, 0x8e, 0xff, 0x8e, 0xff, 0x8e, 0x1f, 0x8f, 0xdf, 0x8e, 0xbf, 0x8e, 0x7f, 0x86, 0x1f, 0x86, 0xdf, 0x7d, 0x9f, 0x75, 0x3e, 0x6d, 0xfd, 0x64, 0xdb, 0x64, 0xba, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x38, 0x54, 0xf7, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0x95, 0x4b, 0x95, 0x43, 0x75, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x95, 0x43, 0x75, 0x43, 0x55, 0x43, 0x34, 0x3b, 0xf4, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0xf0, 0x21, 0xcf, 0x21, 0xae, 0x21, 0xae, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x2c, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x0a, 0x01, 0xca, 0x00, 0xca, 0x00, 0xc9, 0x00, 0xa9, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xaa, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x00, 0xea, 0x00, 0xeb, 0x00, 0x2b, 0x01, 0x2c, 0x01, 0x4c, 0x09, 0x4d, 0x09, 0x6d, 0x09, 0x8e, 0x11, 0xcf, 0x19, 0xd4, 0x32, 0x14, 0x33, 0xd3, 0x32, 0xb3, 0x2a, 0x93, 0x2a, 0x93, 0x2a, 0x92, 0x2a, 0x93, 0x2a, 0x93, 0x2a, 0xb3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x93, 0x2a, 0xd4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xf4, 0x32, 0x15, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0x92, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x10, 0x22, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xaf, 0x19, 0x8e, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x2c, 0x09, 0xae, 0x21, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0x10, 0x22, 0xcf, 0x21, 0xaf, 0x21, 0xae, 0x19, 0x8e, 0x11, 0x6e, 0x11, 0x6d, 0x11, 0x6d, 0x11, + 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x2c, 0x09, 0xca, 0x00, 0xca, 0x00, 0x0a, 0x01, 0xaa, 0x00, 0xaa, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x00, 0x0b, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x6e, 0x11, 0x8f, 0x11, 0xaf, 0x11, 0xaf, 0x11, 0xcf, 0x19, 0xf0, 0x19, 0x11, 0x22, 0x31, 0x22, 0x72, 0x2a, 0x93, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xd3, 0x2a, 0xf4, 0x32, 0x14, 0x33, 0x15, 0x33, 0x76, 0x3b, 0x76, 0x3b, 0x77, 0x3b, 0x97, 0x43, 0xd8, 0x43, 0xf9, 0x4b, 0x3a, 0x4c, 0x9d, 0x54, 0xff, 0x64, 0x5f, 0x6d, 0x9f, 0x75, 0x5e, 0x6d, 0xdd, 0x64, 0xdd, 0x64, 0xde, 0x64, 0x1f, 0x65, 0x1f, 0x65, 0x3f, 0x5d, 0x3f, 0x5d, 0x3f, 0x5d, 0x3f, 0x65, 0x7f, 0x65, 0x7f, 0x6d, 0x9f, 0x6d, 0x9f, 0x6d, 0x3f, 0x5d, 0x1f, 0x65, 0x3f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x1e, 0x5d, 0x1e, 0x5d, 0x3f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x1f, 0x6d, 0xfd, 0x5c, 0xbd, 0x5c, 0xfd, 0x5c, 0x1d, 0x55, 0xfc, 0x5c, 0x1d, 0x5d, 0x3e, 0x65, 0x9f, 0x6d, 0xde, 0x75, 0x1e, 0x7e, 0x3f, 0x8e, 0x9f, 0x8e, 0x1f, 0x97, 0x9f, 0x9f, 0xbf, 0x9f, 0x9e, 0x9f, 0x9e, 0x9f, 0x7f, 0x9f, 0x3f, 0x97, 0x9f, 0x8e, 0x3f, 0x86, 0xff, 0x7d, 0xbf, 0x75, 0x5f, 0x6d, 0x1e, 0x6d, 0x1d, 0x65, 0xdb, 0x64, 0x9a, 0x5c, 0x58, 0x5c, 0x18, 0x54, 0xf7, 0x4b, 0xf6, 0x4b, 0xb6, 0x4b, 0x75, 0x43, 0x54, 0x43, 0x34, 0x3b, 0x13, 0x3b, 0x55, 0x43, 0x96, 0x43, 0x75, 0x43, 0x55, 0x43, 0x35, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0xf0, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x6d, 0x11, 0x4d, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0xea, 0x08, 0xca, 0x00, 0xca, 0x00, 0xa9, 0x00, 0xc9, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xeb, 0x00, 0x0b, 0x01, 0x2b, 0x01, 0x2c, 0x01, 0x4d, 0x09, 0x4d, 0x09, 0xcf, 0x19, 0xd3, 0x32, 0xf4, 0x32, 0xb3, 0x2a, 0x93, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x93, 0x2a, 0xb3, 0x2a, 0x93, 0x2a, 0x93, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0xb3, 0x2a, 0x93, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x93, 0x2a, 0xb3, 0x32, 0xb3, 0x32, 0x14, 0x33, 0x35, 0x3b, 0x72, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x30, 0x2a, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0xae, 0x21, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xcf, 0x21, 0xcf, 0x21, 0xae, 0x19, 0x8e, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, + 0x6d, 0x11, 0x6d, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x0b, 0x01, 0x0a, 0x01, 0xea, 0x00, 0xeb, 0x00, 0xca, 0x00, 0xca, 0x00, 0xaa, 0x00, 0xca, 0x00, 0xea, 0x00, 0x0a, 0x01, 0x0b, 0x09, 0x2b, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x6e, 0x11, 0x8f, 0x11, 0xaf, 0x11, 0xaf, 0x11, 0xd0, 0x19, 0x10, 0x1a, 0x11, 0x22, 0x51, 0x22, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xf4, 0x32, 0xf4, 0x32, 0x15, 0x33, 0x55, 0x3b, 0x56, 0x3b, 0x76, 0x3b, 0x96, 0x3b, 0xb7, 0x43, 0xf8, 0x43, 0x3a, 0x4c, 0x7c, 0x54, 0xde, 0x5c, 0x3e, 0x6d, 0x1d, 0x6d, 0xba, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0x1d, 0x65, 0x3f, 0x6d, 0x3e, 0x65, 0x7f, 0x65, 0x5f, 0x5d, 0x3f, 0x5d, 0x3f, 0x65, 0x5f, 0x65, 0x7f, 0x65, 0x9f, 0x6d, 0x9f, 0x6d, 0x5f, 0x6d, 0x3f, 0x65, 0x3f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x3e, 0x5d, 0x3e, 0x5d, 0x1e, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x3f, 0x65, 0xfe, 0x64, 0xdd, 0x5c, 0xfd, 0x54, 0xfc, 0x54, 0xfc, 0x5c, 0x3d, 0x65, 0x5e, 0x6d, 0x7e, 0x75, 0xff, 0x7d, 0x3f, 0x86, 0x7f, 0x8e, 0x3f, 0x97, 0x7f, 0x9f, 0xbe, 0x9f, 0xbd, 0xa7, 0xbe, 0xaf, 0xbd, 0xaf, 0xbe, 0xa7, 0xbe, 0x9f, 0x7e, 0x9f, 0x1f, 0x8f, 0x7f, 0x86, 0xff, 0x85, 0xbf, 0x7d, 0xbf, 0x7d, 0x3d, 0x6d, 0x9a, 0x64, 0x59, 0x5c, 0x18, 0x54, 0x55, 0x43, 0xb2, 0x32, 0x51, 0x2a, 0x31, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x14, 0x3b, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x14, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0xf0, 0x21, 0xcf, 0x19, 0xaf, 0x19, 0x8e, 0x19, 0x8d, 0x11, 0x6d, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x0a, 0x09, 0xca, 0x00, 0xaa, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xc9, 0x00, 0xc8, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xaa, 0x00, 0xca, 0x00, 0xea, 0x00, 0x0b, 0x01, 0x2b, 0x01, 0x4c, 0x09, 0x4d, 0x09, 0xcf, 0x19, 0xd3, 0x32, 0xf4, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x93, 0x2a, 0xb3, 0x32, 0x93, 0x2a, 0x93, 0x2a, 0x92, 0x2a, 0x52, 0x2a, 0x51, 0x2a, 0x93, 0x2a, 0x93, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0x14, 0x3b, 0x72, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xae, 0x19, 0x8e, 0x19, 0x8d, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4c, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4d, 0x11, 0x4c, 0x09, 0x4c, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x8e, 0x19, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xcf, 0x21, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x11, 0x6e, 0x11, 0x6d, 0x11, + 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4d, 0x09, 0x4d, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x0a, 0x01, 0xea, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xaa, 0x00, 0xea, 0x00, 0x0a, 0x01, 0x2b, 0x09, 0x2b, 0x09, 0x4c, 0x09, 0x4c, 0x11, 0x4c, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0xaf, 0x11, 0xaf, 0x11, 0xaf, 0x11, 0xf0, 0x19, 0x10, 0x22, 0x31, 0x22, 0x52, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0xb2, 0x2a, 0xd3, 0x32, 0xd4, 0x32, 0x14, 0x33, 0x15, 0x33, 0x35, 0x3b, 0x55, 0x3b, 0x76, 0x3b, 0xb7, 0x43, 0xf8, 0x43, 0x19, 0x4c, 0x7b, 0x54, 0xbd, 0x5c, 0x9b, 0x5c, 0xb9, 0x5c, 0xda, 0x64, 0xfb, 0x64, 0xfb, 0x6c, 0x1d, 0x6d, 0x3f, 0x6d, 0x7e, 0x6d, 0xbf, 0x6d, 0x7f, 0x65, 0x3f, 0x5d, 0x3f, 0x65, 0x5f, 0x65, 0x7f, 0x6d, 0x7f, 0x6d, 0x9f, 0x6d, 0x9f, 0x6d, 0x5f, 0x6d, 0x1f, 0x5d, 0x1f, 0x65, 0xff, 0x64, 0x1e, 0x5d, 0x1d, 0x5d, 0x1e, 0x5d, 0x1f, 0x6d, 0x1f, 0x65, 0x3f, 0x6d, 0x1e, 0x65, 0xdd, 0x5c, 0xfd, 0x5c, 0xfd, 0x54, 0x1d, 0x5d, 0x3d, 0x65, 0x5d, 0x6d, 0xbe, 0x75, 0xff, 0x7d, 0x5f, 0x86, 0xdf, 0x8e, 0x1f, 0x97, 0x7e, 0xa7, 0xbe, 0xaf, 0xbe, 0xb7, 0xde, 0xb7, 0xbe, 0xb7, 0xbe, 0xb7, 0xbe, 0xb7, 0xbd, 0xaf, 0xbe, 0xa7, 0xbf, 0x9f, 0xbe, 0x96, 0x5a, 0x75, 0x17, 0x54, 0x55, 0x43, 0xf3, 0x3a, 0x92, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x71, 0x32, 0x34, 0x3b, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x35, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0xef, 0x21, 0xae, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0xea, 0x00, 0xaa, 0x00, 0xa9, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xc8, 0x00, 0xa8, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xaa, 0x00, 0xca, 0x00, 0xea, 0x00, 0xea, 0x00, 0x4d, 0x11, 0x4d, 0x09, 0xae, 0x19, 0xb3, 0x32, 0xf3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x93, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x52, 0x2a, 0x72, 0x2a, 0x52, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x93, 0x2a, 0xd4, 0x32, 0x71, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0xcf, 0x21, 0xcf, 0x21, 0xce, 0x21, 0xaf, 0x21, 0xae, 0x19, 0x8e, 0x19, 0x6d, 0x19, 0x6d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x2c, 0x09, 0x4c, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x6d, 0x11, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xf0, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0xaf, 0x19, 0x8e, 0x11, 0x8e, 0x11, 0x6d, 0x11, + 0x6e, 0x19, 0x6d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x2c, 0x11, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4d, 0x09, 0x4d, 0x11, 0x4d, 0x09, 0x4c, 0x09, 0xeb, 0x00, 0xea, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xaa, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x00, 0x0a, 0x01, 0x0b, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x4c, 0x09, 0x4c, 0x11, 0x6d, 0x11, 0x6c, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0xaf, 0x11, 0xaf, 0x11, 0xaf, 0x19, 0xd0, 0x19, 0x11, 0x22, 0x31, 0x22, 0x52, 0x22, 0x72, 0x2a, 0x72, 0x2a, 0x93, 0x2a, 0xd3, 0x2a, 0xb3, 0x2a, 0xf4, 0x32, 0x15, 0x33, 0x55, 0x3b, 0x55, 0x3b, 0x96, 0x43, 0xf7, 0x4b, 0x18, 0x4c, 0x3a, 0x4c, 0x39, 0x4c, 0x59, 0x54, 0x99, 0x5c, 0xba, 0x64, 0xba, 0x64, 0xdb, 0x6c, 0xfc, 0x6c, 0x1e, 0x6d, 0xbe, 0x75, 0x1f, 0x76, 0xbf, 0x6d, 0x7f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x5f, 0x6d, 0x9f, 0x6d, 0x9f, 0x6d, 0x7f, 0x6d, 0x7f, 0x6d, 0x3f, 0x65, 0x1f, 0x65, 0xfe, 0x5c, 0xde, 0x5c, 0xfc, 0x5c, 0x1d, 0x5d, 0x1e, 0x65, 0x1f, 0x65, 0x3f, 0x65, 0x3e, 0x65, 0xdd, 0x5c, 0xfd, 0x54, 0xfe, 0x5c, 0xfd, 0x5c, 0x3d, 0x65, 0x5e, 0x6d, 0x7e, 0x75, 0xff, 0x7d, 0x7f, 0x86, 0xdf, 0x8e, 0x5f, 0x9f, 0xde, 0xa7, 0xbd, 0xaf, 0xbe, 0xbf, 0xdf, 0xc7, 0xbe, 0xc7, 0xbe, 0xc7, 0xde, 0xbf, 0xff, 0xc7, 0xfc, 0xae, 0x55, 0x64, 0xf2, 0x32, 0xf2, 0x3a, 0xd2, 0x3a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0xb2, 0x32, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x35, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x11, 0x2a, 0xf0, 0x21, 0x8e, 0x11, 0x4d, 0x09, 0x4c, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0xea, 0x00, 0xca, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xc9, 0x00, 0xc8, 0x00, 0xa8, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0xa8, 0x00, 0xc9, 0x00, 0xa8, 0x00, 0xc8, 0x00, 0xa9, 0x00, 0xc9, 0x00, 0xa9, 0x00, 0xca, 0x00, 0xea, 0x00, 0x4d, 0x09, 0x4d, 0x09, 0x6e, 0x11, 0x92, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x92, 0x2a, 0xb3, 0x32, 0x93, 0x2a, 0x72, 0x2a, 0x52, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x52, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xae, 0x19, 0x8e, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x09, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x11, 0x30, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, + 0x8e, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4d, 0x11, 0x2c, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x2b, 0x09, 0x0b, 0x09, 0x0a, 0x01, 0xaa, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x00, 0x0a, 0x01, 0xeb, 0x00, 0x0b, 0x01, 0x2b, 0x09, 0x2b, 0x09, 0x4c, 0x11, 0x4c, 0x11, 0x6c, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8f, 0x11, 0xaf, 0x11, 0xcf, 0x19, 0xf0, 0x19, 0x11, 0x22, 0x31, 0x22, 0x31, 0x22, 0x51, 0x2a, 0x93, 0x2a, 0x93, 0x2a, 0xb4, 0x32, 0xf4, 0x32, 0x35, 0x3b, 0x34, 0x3b, 0x76, 0x3b, 0xb7, 0x43, 0xf8, 0x4b, 0xd7, 0x43, 0xd7, 0x43, 0x38, 0x54, 0x79, 0x5c, 0xb9, 0x64, 0xba, 0x64, 0xba, 0x64, 0xdc, 0x6c, 0x1d, 0x75, 0xde, 0x85, 0xff, 0x7d, 0x1f, 0x76, 0x9f, 0x6d, 0x7f, 0x65, 0x5f, 0x65, 0x5f, 0x65, 0x7f, 0x6d, 0x9f, 0x6d, 0x9f, 0x6d, 0x7f, 0x6d, 0x1e, 0x65, 0xbd, 0x5c, 0xde, 0x5c, 0xfd, 0x5c, 0xfc, 0x54, 0xfd, 0x54, 0x1e, 0x65, 0x3f, 0x6d, 0x3f, 0x6d, 0x1f, 0x65, 0xde, 0x5c, 0x1d, 0x5d, 0x3d, 0x5d, 0x5e, 0x65, 0x3d, 0x65, 0x7f, 0x6d, 0xbf, 0x75, 0xdf, 0x7d, 0x5e, 0x86, 0x1f, 0x97, 0x5f, 0x9f, 0xbe, 0xa7, 0xde, 0xbf, 0xbe, 0xc7, 0xdf, 0xd7, 0xbf, 0xdf, 0x9f, 0xe7, 0x3b, 0xbe, 0xb4, 0x63, 0xb1, 0x3a, 0xd2, 0x3a, 0xf2, 0x42, 0xf2, 0x3a, 0xf2, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xd2, 0x3a, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x10, 0x2a, 0xf3, 0x3a, 0xb7, 0x4b, 0x76, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x15, 0x3b, 0x14, 0x3b, 0xf4, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0xf0, 0x21, 0x6d, 0x11, 0x2c, 0x09, 0x0b, 0x09, 0x0a, 0x01, 0xca, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xc9, 0x00, 0xa8, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0xc8, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xca, 0x00, 0x4c, 0x09, 0x4d, 0x09, 0x2c, 0x09, 0x72, 0x2a, 0xd3, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0x93, 0x32, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0xee, 0x21, 0xce, 0x21, 0xae, 0x21, 0xae, 0x19, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4c, 0x11, 0x2c, 0x09, 0x4d, 0x09, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x2c, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x4c, 0x11, 0x51, 0x2a, 0x10, 0x2a, 0xf0, 0x29, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, + 0x8e, 0x11, 0x6e, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x4c, 0x09, 0x2b, 0x09, 0x0b, 0x01, 0xeb, 0x00, 0x0a, 0x01, 0xea, 0x00, 0xca, 0x00, 0xaa, 0x00, 0xea, 0x00, 0xea, 0x00, 0x0a, 0x01, 0x0a, 0x01, 0x0b, 0x01, 0x2b, 0x09, 0x2b, 0x09, 0x2c, 0x11, 0x4c, 0x11, 0x6c, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0xaf, 0x19, 0xd0, 0x19, 0xf0, 0x21, 0x11, 0x22, 0x31, 0x22, 0x31, 0x22, 0x31, 0x2a, 0x72, 0x2a, 0xb3, 0x2a, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x3b, 0x35, 0x3b, 0x96, 0x43, 0x96, 0x43, 0x76, 0x3b, 0x97, 0x43, 0xf8, 0x4b, 0x58, 0x54, 0x79, 0x5c, 0x99, 0x5c, 0xba, 0x64, 0xdb, 0x6c, 0x1c, 0x75, 0xdf, 0x85, 0x1f, 0x86, 0x1f, 0x76, 0xdf, 0x6d, 0x7f, 0x6d, 0x7f, 0x65, 0x5f, 0x6d, 0x5f, 0x6d, 0x7f, 0x6d, 0x5f, 0x6d, 0xff, 0x64, 0xdf, 0x64, 0xdd, 0x5c, 0xdd, 0x5c, 0xdd, 0x5c, 0xdc, 0x54, 0xdc, 0x54, 0xfc, 0x5c, 0x3e, 0x6d, 0x3f, 0x6d, 0x1f, 0x65, 0xfe, 0x5c, 0x1e, 0x5d, 0x3e, 0x65, 0x3e, 0x65, 0x5e, 0x6d, 0x7e, 0x6d, 0x7e, 0x6d, 0xde, 0x7d, 0x5f, 0x86, 0xdf, 0x8e, 0x5e, 0x9f, 0xbe, 0xaf, 0xde, 0xbf, 0xdf, 0xcf, 0x5e, 0xd7, 0xda, 0xad, 0xd4, 0x6b, 0x91, 0x3a, 0xb2, 0x3a, 0xf2, 0x42, 0xf2, 0x42, 0x12, 0x43, 0x12, 0x43, 0xf2, 0x42, 0xf2, 0x3a, 0xf2, 0x3a, 0xd2, 0x3a, 0xb2, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x51, 0x2a, 0x30, 0x2a, 0x35, 0x43, 0xf7, 0x53, 0x76, 0x43, 0x76, 0x43, 0x76, 0x43, 0x76, 0x43, 0x55, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xcf, 0x19, 0x6d, 0x11, 0x0b, 0x09, 0xca, 0x00, 0xca, 0x00, 0xa9, 0x00, 0xc9, 0x00, 0xa8, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0xa8, 0x00, 0x88, 0x00, 0xa8, 0x00, 0xa9, 0x00, 0xa8, 0x00, 0xea, 0x00, 0x4c, 0x09, 0x4d, 0x09, 0xeb, 0x00, 0x51, 0x2a, 0xd3, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x14, 0x3b, 0xf4, 0x3a, 0x14, 0x3b, 0xd3, 0x32, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x31, 0x22, 0x11, 0x22, 0x11, 0x22, 0x31, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0xce, 0x21, 0xce, 0x21, 0xae, 0x21, 0x8e, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x2c, 0x09, 0x4c, 0x09, 0x4d, 0x09, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x2c, 0x09, 0x2b, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x71, 0x32, 0x10, 0x2a, 0xf0, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, + 0x8e, 0x19, 0x8e, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0xeb, 0x00, 0x0a, 0x01, 0xca, 0x00, 0xca, 0x00, 0xea, 0x00, 0x0a, 0x01, 0x0a, 0x01, 0xea, 0x00, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x2b, 0x09, 0x4c, 0x09, 0x4c, 0x11, 0x6d, 0x11, 0x6d, 0x19, 0x6d, 0x11, 0x6d, 0x19, 0x8d, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0xae, 0x11, 0xaf, 0x19, 0xd0, 0x19, 0xf0, 0x21, 0x11, 0x22, 0x31, 0x22, 0x31, 0x22, 0x52, 0x2a, 0x92, 0x2a, 0xd3, 0x2a, 0xf4, 0x32, 0x14, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x76, 0x43, 0xb7, 0x43, 0xf8, 0x4b, 0x59, 0x54, 0x79, 0x5c, 0x79, 0x5c, 0xbb, 0x64, 0x3d, 0x75, 0xdf, 0x8d, 0xff, 0x85, 0xff, 0x7d, 0xbf, 0x75, 0x7f, 0x6d, 0x5f, 0x6d, 0x5f, 0x6d, 0x5f, 0x6d, 0x1e, 0x65, 0xde, 0x5c, 0xde, 0x5c, 0xdf, 0x64, 0xde, 0x64, 0xbc, 0x5c, 0xfd, 0x5c, 0xdc, 0x54, 0xbc, 0x54, 0xdc, 0x54, 0x3e, 0x65, 0x5f, 0x6d, 0x1f, 0x65, 0x1e, 0x5d, 0x5e, 0x5d, 0x5e, 0x65, 0x5e, 0x65, 0x5e, 0x6d, 0x5f, 0x6d, 0x9f, 0x6d, 0xbe, 0x75, 0x1f, 0x86, 0xbf, 0x8e, 0x7e, 0x9f, 0xbf, 0xaf, 0x9e, 0xc7, 0xda, 0xa5, 0x94, 0x5b, 0xd2, 0x42, 0xd2, 0x42, 0xf2, 0x4a, 0xf2, 0x4a, 0xf2, 0x4a, 0xf2, 0x4a, 0xf2, 0x42, 0xf2, 0x42, 0xf2, 0x42, 0xf2, 0x3a, 0xf2, 0x3a, 0xd2, 0x3a, 0xb2, 0x32, 0xb1, 0x32, 0x91, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x32, 0x51, 0x2a, 0x92, 0x32, 0x76, 0x4b, 0xd7, 0x53, 0xb7, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x54, 0x43, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x10, 0x22, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xae, 0x21, 0x4d, 0x11, 0xca, 0x08, 0xa9, 0x00, 0xa9, 0x00, 0xa8, 0x00, 0x88, 0x00, 0x88, 0x00, 0xa7, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0xc8, 0x00, 0xa8, 0x00, 0xe9, 0x00, 0x4c, 0x11, 0x4d, 0x09, 0x0b, 0x01, 0x51, 0x22, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0xb3, 0x32, 0x14, 0x3b, 0x75, 0x43, 0x95, 0x4b, 0x95, 0x4b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x3b, 0xd3, 0x32, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x71, 0x32, 0xce, 0x21, 0xce, 0x21, 0xae, 0x19, 0x6d, 0x19, 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x2c, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x11, 0x2c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x2c, 0x09, 0x0b, 0x01, 0x10, 0x2a, 0x51, 0x2a, 0x10, 0x2a, 0xf0, 0x29, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, + 0xae, 0x19, 0x8e, 0x19, 0x6e, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x2c, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x0a, 0x01, 0x0a, 0x01, 0xea, 0x00, 0x0a, 0x01, 0x0b, 0x09, 0x0a, 0x01, 0xeb, 0x00, 0xeb, 0x00, 0x0b, 0x09, 0x0b, 0x09, 0x2b, 0x09, 0x2c, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x19, 0x6d, 0x11, 0x6d, 0x19, 0x8d, 0x19, 0x8d, 0x11, 0x8e, 0x11, 0x6e, 0x11, 0x6e, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0xaf, 0x19, 0xd0, 0x19, 0x10, 0x22, 0x11, 0x22, 0x11, 0x22, 0x11, 0x22, 0x72, 0x2a, 0x93, 0x2a, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x35, 0x3b, 0x56, 0x3b, 0x76, 0x3b, 0xb7, 0x43, 0xf7, 0x4b, 0x18, 0x54, 0x59, 0x5c, 0x9a, 0x64, 0x3d, 0x75, 0xff, 0x85, 0xdf, 0x85, 0xbf, 0x7d, 0x5f, 0x75, 0x3f, 0x6d, 0x1f, 0x6d, 0xfe, 0x6c, 0xbc, 0x64, 0x39, 0x5c, 0x5a, 0x5c, 0x9c, 0x5c, 0xbd, 0x5c, 0xde, 0x64, 0xdf, 0x64, 0xdd, 0x5c, 0xbb, 0x54, 0x9b, 0x54, 0xbc, 0x54, 0xfd, 0x5c, 0x7f, 0x75, 0x3f, 0x65, 0x1e, 0x5d, 0x3e, 0x5d, 0x5e, 0x65, 0x3e, 0x6d, 0x5e, 0x6d, 0x7f, 0x6d, 0x7e, 0x75, 0x9f, 0x6d, 0xff, 0x7d, 0x9e, 0x86, 0x3f, 0x97, 0xdc, 0x9e, 0x14, 0x64, 0x91, 0x3a, 0x13, 0x4b, 0x13, 0x4b, 0x13, 0x4b, 0x13, 0x4b, 0x13, 0x4b, 0x13, 0x4b, 0xf2, 0x4a, 0xf2, 0x4a, 0xf2, 0x42, 0xf2, 0x42, 0xf2, 0x42, 0xf2, 0x3a, 0xf2, 0x3a, 0xf2, 0x3a, 0xd2, 0x3a, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x71, 0x32, 0x50, 0x2a, 0xd2, 0x3a, 0xb6, 0x4b, 0xf8, 0x53, 0xd7, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0x76, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x4b, 0x75, 0x43, 0x74, 0x43, 0x34, 0x3b, 0xd3, 0x32, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x10, 0x22, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xae, 0x19, 0x2b, 0x09, 0xc9, 0x00, 0xa9, 0x00, 0xa8, 0x00, 0x88, 0x00, 0x67, 0x00, 0x68, 0x00, 0x68, 0x00, 0x67, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0xa8, 0x00, 0xa8, 0x00, 0xe9, 0x08, 0x4c, 0x09, 0x4d, 0x09, 0x2b, 0x09, 0x31, 0x22, 0xd3, 0x32, 0xd3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xd3, 0x32, 0x34, 0x3b, 0x75, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0x95, 0x4b, 0xb6, 0x4b, 0x75, 0x43, 0xf4, 0x3a, 0x92, 0x32, 0x51, 0x2a, 0x11, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x31, 0x22, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x32, 0xef, 0x21, 0xae, 0x21, 0x8e, 0x19, 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x2c, 0x09, 0x4c, 0x11, 0x4c, 0x11, 0x2c, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x2c, 0x11, 0x4b, 0x11, 0x2b, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0x4d, 0x11, 0x51, 0x32, 0x10, 0x2a, 0xf0, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0x8e, 0x19, + 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x6e, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x2b, 0x09, 0xeb, 0x08, 0xeb, 0x08, 0xeb, 0x08, 0x0a, 0x01, 0xeb, 0x00, 0xeb, 0x08, 0xeb, 0x08, 0x0b, 0x01, 0xea, 0x00, 0xea, 0x00, 0xeb, 0x00, 0xeb, 0x00, 0x0b, 0x09, 0x2c, 0x09, 0x4c, 0x11, 0x6c, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0x8d, 0x19, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0xaf, 0x19, 0xcf, 0x19, 0xf0, 0x19, 0x11, 0x22, 0x31, 0x22, 0x11, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0xb3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x14, 0x3b, 0x35, 0x3b, 0x76, 0x43, 0xb7, 0x4b, 0xd7, 0x4b, 0x18, 0x54, 0x79, 0x5c, 0x1c, 0x6d, 0xdf, 0x7d, 0xdf, 0x7d, 0xbf, 0x75, 0x5f, 0x75, 0x3f, 0x6d, 0xfe, 0x64, 0x9b, 0x5c, 0x18, 0x54, 0x19, 0x54, 0x39, 0x5c, 0x5a, 0x5c, 0x5b, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x7b, 0x5c, 0x59, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0xdc, 0x54, 0x5e, 0x6d, 0x5f, 0x6d, 0x5e, 0x65, 0x7e, 0x65, 0x5e, 0x6d, 0x7e, 0x6d, 0x7f, 0x6d, 0x7e, 0x6d, 0x7f, 0x6d, 0xbf, 0x75, 0xdf, 0x7d, 0x3e, 0x86, 0x39, 0x6d, 0x73, 0x4b, 0xf2, 0x3a, 0x13, 0x4b, 0x13, 0x4b, 0x12, 0x4b, 0x13, 0x4b, 0x13, 0x4b, 0x13, 0x4b, 0x13, 0x4b, 0x12, 0x4b, 0xf2, 0x4a, 0x12, 0x4b, 0x12, 0x4b, 0x12, 0x4b, 0xf2, 0x42, 0x12, 0x43, 0xf2, 0x42, 0xf2, 0x3a, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x70, 0x2a, 0xf3, 0x3a, 0x17, 0x5c, 0x38, 0x5c, 0xf7, 0x4b, 0xb7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x96, 0x43, 0xb5, 0x4b, 0x95, 0x4b, 0x75, 0x4b, 0xf3, 0x3a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x10, 0x22, 0x10, 0x22, 0xf0, 0x21, 0xf0, 0x21, 0xd0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xf0, 0x29, 0x4d, 0x11, 0xeb, 0x08, 0xa9, 0x00, 0x88, 0x00, 0x88, 0x00, 0x68, 0x00, 0x68, 0x00, 0x68, 0x00, 0x67, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0xc9, 0x00, 0x4c, 0x09, 0x4d, 0x11, 0x2c, 0x09, 0x10, 0x22, 0xd3, 0x32, 0xf3, 0x32, 0xb3, 0x32, 0x93, 0x32, 0x92, 0x32, 0xb3, 0x32, 0x14, 0x3b, 0x75, 0x4b, 0xb5, 0x4b, 0xd6, 0x53, 0xb6, 0x4b, 0xd6, 0x53, 0x95, 0x4b, 0x14, 0x3b, 0xb2, 0x32, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x11, 0x22, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0xcf, 0x21, 0x8e, 0x19, 0x6d, 0x19, 0x6d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x2c, 0x09, 0x2c, 0x11, 0x2c, 0x11, 0x2c, 0x09, 0x4c, 0x11, 0x2c, 0x09, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x2c, 0x11, 0x2b, 0x11, 0x2b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0x71, 0x32, 0x10, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xaf, 0x21, 0xaf, 0x19, 0x8e, 0x19, 0x8e, 0x19, + 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4c, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0xeb, 0x08, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0xea, 0x00, 0x0a, 0x01, 0xca, 0x00, 0xea, 0x00, 0xeb, 0x08, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4c, 0x11, 0x6c, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8f, 0x19, 0x8f, 0x11, 0xaf, 0x19, 0xd0, 0x19, 0xf0, 0x21, 0x31, 0x22, 0x11, 0x22, 0x31, 0x22, 0x52, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x3a, 0x35, 0x3b, 0x76, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0x5a, 0x5c, 0xfc, 0x6c, 0x5e, 0x6d, 0x9f, 0x75, 0x7f, 0x75, 0x5f, 0x75, 0x1f, 0x6d, 0xbd, 0x64, 0x39, 0x54, 0x18, 0x54, 0x18, 0x54, 0x19, 0x54, 0x19, 0x5c, 0x3a, 0x5c, 0x7b, 0x5c, 0x9c, 0x64, 0x9c, 0x64, 0xf7, 0x53, 0x18, 0x4c, 0x38, 0x54, 0x79, 0x54, 0xdb, 0x64, 0x9f, 0x75, 0x7e, 0x65, 0x7e, 0x6d, 0x7e, 0x6d, 0x7f, 0x6d, 0x5f, 0x6d, 0x5f, 0x6d, 0x7f, 0x6d, 0xbf, 0x75, 0x5c, 0x6d, 0xd5, 0x4b, 0xd2, 0x3a, 0xd2, 0x3a, 0x12, 0x43, 0x12, 0x43, 0xf2, 0x42, 0xf2, 0x4a, 0xf2, 0x4a, 0xf2, 0x4a, 0x12, 0x4b, 0x12, 0x4b, 0x12, 0x4b, 0x12, 0x4b, 0x12, 0x4b, 0x12, 0x4b, 0x12, 0x4b, 0x12, 0x4b, 0x12, 0x43, 0x13, 0x43, 0x13, 0x43, 0xf2, 0x3a, 0xb2, 0x3a, 0x91, 0x32, 0x91, 0x32, 0x71, 0x32, 0x13, 0x3b, 0x38, 0x5c, 0x58, 0x5c, 0xf8, 0x53, 0xb7, 0x4b, 0xb7, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xd6, 0x4b, 0x55, 0x43, 0xd3, 0x3a, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x10, 0x22, 0x10, 0x22, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xf0, 0x21, 0xae, 0x19, 0x0b, 0x09, 0xca, 0x00, 0xc9, 0x00, 0x68, 0x00, 0x68, 0x00, 0x68, 0x00, 0x67, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0xa8, 0x00, 0xa8, 0x00, 0x2c, 0x09, 0x4d, 0x09, 0x4c, 0x09, 0x6d, 0x11, 0xf3, 0x3a, 0x14, 0x3b, 0xf4, 0x32, 0xd3, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xf4, 0x3a, 0x55, 0x43, 0xb5, 0x53, 0xd5, 0x53, 0xd5, 0x53, 0xf5, 0x5b, 0xb5, 0x53, 0x34, 0x43, 0xb3, 0x32, 0x72, 0x2a, 0x31, 0x2a, 0x10, 0x22, 0x10, 0x22, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0x31, 0x22, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0xcf, 0x21, 0x8d, 0x19, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x2c, 0x09, 0x4c, 0x11, 0x2c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x2b, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0xeb, 0x08, 0xeb, 0x08, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xaf, 0x21, 0xaf, 0x19, 0xae, 0x19, + 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x6d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0xea, 0x08, 0xca, 0x00, 0xea, 0x00, 0xeb, 0x00, 0x2b, 0x09, 0x2b, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x11, 0x4c, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6e, 0x11, 0x6e, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8f, 0x11, 0x8e, 0x11, 0x8f, 0x11, 0xaf, 0x19, 0xaf, 0x19, 0xcf, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x72, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x3a, 0xf3, 0x3a, 0x14, 0x3b, 0x35, 0x43, 0x96, 0x4b, 0x96, 0x43, 0x9b, 0x64, 0x3f, 0x6d, 0x3f, 0x6d, 0x3f, 0x6d, 0xfe, 0x64, 0x5a, 0x5c, 0x39, 0x54, 0x18, 0x54, 0x18, 0x54, 0x19, 0x54, 0x19, 0x54, 0x39, 0x5c, 0x5a, 0x5c, 0x7b, 0x5c, 0x7b, 0x5c, 0xd6, 0x4b, 0xd7, 0x4b, 0x38, 0x54, 0x58, 0x5c, 0x38, 0x5c, 0x7b, 0x5c, 0x5f, 0x6d, 0x3e, 0x6d, 0x7f, 0x6d, 0x7f, 0x6d, 0x7f, 0x6d, 0x7f, 0x6d, 0x7e, 0x6d, 0xda, 0x64, 0x54, 0x3b, 0xd2, 0x3a, 0xf3, 0x3a, 0xd2, 0x3a, 0xf2, 0x3a, 0xf2, 0x3a, 0xf2, 0x42, 0xf2, 0x4a, 0x12, 0x4b, 0x12, 0x4b, 0x12, 0x4b, 0x12, 0x4b, 0x12, 0x4b, 0x13, 0x4b, 0x13, 0x4b, 0x12, 0x4b, 0x13, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x43, 0xf3, 0x42, 0xd2, 0x3a, 0xb2, 0x3a, 0x91, 0x32, 0x71, 0x32, 0x34, 0x43, 0x38, 0x5c, 0x58, 0x5c, 0xf8, 0x53, 0xd7, 0x4b, 0xb7, 0x4b, 0xb6, 0x4b, 0xb7, 0x43, 0xb7, 0x43, 0x96, 0x4b, 0x55, 0x43, 0x14, 0x3b, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0xf0, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0x2c, 0x09, 0xea, 0x00, 0xc9, 0x00, 0x88, 0x00, 0x47, 0x00, 0x68, 0x00, 0x68, 0x00, 0x88, 0x00, 0x68, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0x2c, 0x11, 0x4d, 0x09, 0x4c, 0x11, 0x2c, 0x09, 0xb2, 0x32, 0x34, 0x3b, 0x14, 0x3b, 0xd3, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0x34, 0x43, 0x95, 0x4b, 0xd5, 0x53, 0xd5, 0x53, 0xf5, 0x5b, 0xd5, 0x53, 0x55, 0x43, 0xd3, 0x32, 0x72, 0x2a, 0x31, 0x2a, 0x30, 0x22, 0x10, 0x22, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x31, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xf0, 0x29, 0x10, 0x2a, 0x10, 0x2a, 0xae, 0x21, 0x6d, 0x19, 0x4d, 0x11, 0x4c, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x2b, 0x11, 0x2b, 0x09, 0x2b, 0x09, 0xeb, 0x08, 0xeb, 0x08, 0xea, 0x00, 0xeb, 0x00, 0x0b, 0x09, 0x0a, 0x09, 0xeb, 0x08, 0x0b, 0x09, 0xce, 0x19, 0x72, 0x32, 0x31, 0x2a, 0x10, 0x2a, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xaf, 0x21, 0xae, 0x19, + 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0xea, 0x00, 0xeb, 0x00, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x6d, 0x09, 0x4d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xaf, 0x19, 0xcf, 0x21, 0xef, 0x21, 0x10, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x3a, 0x14, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x14, 0x3b, 0xf4, 0x3a, 0x14, 0x3b, 0x96, 0x43, 0x18, 0x54, 0x5a, 0x5c, 0x39, 0x54, 0x19, 0x54, 0x18, 0x54, 0xf8, 0x53, 0x18, 0x54, 0x19, 0x54, 0x39, 0x5c, 0x39, 0x5c, 0x7b, 0x5c, 0x7b, 0x5c, 0x97, 0x4b, 0x96, 0x4b, 0x96, 0x4b, 0x18, 0x54, 0x58, 0x5c, 0x59, 0x5c, 0x3e, 0x6d, 0x1f, 0x6d, 0xfe, 0x64, 0x3e, 0x6d, 0x7e, 0x6d, 0xbf, 0x75, 0xda, 0x64, 0xd2, 0x32, 0xf2, 0x3a, 0xd3, 0x3a, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf2, 0x3a, 0x12, 0x43, 0x12, 0x43, 0xf2, 0x4a, 0xf2, 0x4a, 0xf2, 0x4a, 0xf2, 0x4a, 0x12, 0x4b, 0x12, 0x4b, 0x13, 0x4b, 0x13, 0x4b, 0x33, 0x4b, 0x33, 0x53, 0x53, 0x4b, 0x53, 0x4b, 0x33, 0x4b, 0x13, 0x43, 0xf2, 0x42, 0xf2, 0x3a, 0xb2, 0x3a, 0x91, 0x32, 0x54, 0x43, 0x38, 0x5c, 0x38, 0x5c, 0xf8, 0x53, 0xd7, 0x4b, 0xb6, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0x76, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0xf3, 0x3a, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x10, 0x22, 0x10, 0x22, 0xf0, 0x21, 0xf0, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0xaf, 0x19, 0xcf, 0x21, 0x6d, 0x11, 0xea, 0x08, 0xea, 0x00, 0xa8, 0x00, 0x68, 0x00, 0x68, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0xa8, 0x00, 0xa8, 0x00, 0x0a, 0x09, 0x4d, 0x11, 0x4c, 0x09, 0x4d, 0x11, 0x30, 0x22, 0x14, 0x3b, 0x34, 0x3b, 0xf3, 0x3a, 0xb2, 0x32, 0x92, 0x2a, 0xb3, 0x32, 0x14, 0x3b, 0x75, 0x43, 0x95, 0x4b, 0xd5, 0x5b, 0xf5, 0x5b, 0xb5, 0x53, 0x75, 0x43, 0xf3, 0x3a, 0x92, 0x2a, 0x51, 0x2a, 0x10, 0x22, 0x10, 0x22, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xef, 0x29, 0xef, 0x29, 0xef, 0x29, 0xef, 0x29, 0x8e, 0x19, 0x6d, 0x11, 0x4c, 0x11, 0x2c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x4d, 0x11, 0x4d, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0xeb, 0x08, 0x0a, 0x09, 0xea, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x08, 0xeb, 0x08, 0xea, 0x08, 0x2c, 0x11, 0x72, 0x32, 0x31, 0x2a, 0x10, 0x2a, 0xf0, 0x29, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x21, + 0xaf, 0x19, 0xaf, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0x8f, 0x19, 0xaf, 0x19, 0x8e, 0x19, 0x4d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x4d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xaf, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x55, 0x43, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x35, 0x43, 0x76, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xf8, 0x53, 0xf8, 0x53, 0x18, 0x54, 0x19, 0x5c, 0x39, 0x5c, 0x5a, 0x5c, 0x7b, 0x64, 0x19, 0x5c, 0x76, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb7, 0x4b, 0x38, 0x54, 0xfb, 0x64, 0x5f, 0x6d, 0x1f, 0x6d, 0x1f, 0x6d, 0x1e, 0x6d, 0xf7, 0x4b, 0xb1, 0x32, 0xf3, 0x3a, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x3a, 0xf2, 0x3a, 0xf2, 0x42, 0xf2, 0x42, 0xf2, 0x4a, 0xf2, 0x4a, 0xf2, 0x4a, 0x12, 0x4b, 0xf2, 0x4a, 0x13, 0x4b, 0x13, 0x4b, 0x33, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4b, 0x33, 0x4b, 0x13, 0x4b, 0xf3, 0x42, 0xd3, 0x42, 0xd2, 0x3a, 0xb2, 0x3a, 0x54, 0x43, 0x18, 0x54, 0x18, 0x5c, 0x18, 0x54, 0xd7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x54, 0x43, 0x34, 0x43, 0x14, 0x3b, 0xd3, 0x3a, 0xb2, 0x32, 0x92, 0x32, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xcf, 0x21, 0x8e, 0x19, 0xeb, 0x08, 0xea, 0x00, 0x89, 0x00, 0x68, 0x00, 0x68, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0xa8, 0x00, 0xa9, 0x00, 0x2c, 0x09, 0x4d, 0x09, 0x4c, 0x09, 0xaf, 0x19, 0xd3, 0x3a, 0x34, 0x43, 0xf3, 0x3a, 0xb3, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0x14, 0x3b, 0x54, 0x43, 0xb5, 0x53, 0xd5, 0x5b, 0xb5, 0x4b, 0x74, 0x43, 0xf3, 0x3a, 0x92, 0x32, 0x51, 0x2a, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x31, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0x8e, 0x19, 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x11, 0x4d, 0x11, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0xeb, 0x08, 0xea, 0x08, 0xca, 0x00, 0xca, 0x00, 0xea, 0x00, 0xca, 0x00, 0xea, 0x00, 0x0b, 0x09, 0xeb, 0x08, 0x2b, 0x09, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0xf0, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, + 0xaf, 0x21, 0xaf, 0x21, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0x8e, 0x19, 0x6d, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8e, 0x19, 0x6e, 0x19, 0x8d, 0x11, 0x6e, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0x8e, 0x19, 0xaf, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf4, 0x3a, 0x14, 0x3b, 0xb3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x76, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x4b, 0xb7, 0x4b, 0xf7, 0x53, 0x18, 0x54, 0x19, 0x54, 0x19, 0x54, 0x3a, 0x5c, 0x7b, 0x5c, 0x39, 0x5c, 0x96, 0x43, 0xb7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0x38, 0x54, 0xdc, 0x6c, 0x5f, 0x6d, 0x1e, 0x6d, 0xd7, 0x53, 0xb2, 0x32, 0xd3, 0x3a, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x3a, 0xf2, 0x3a, 0xf2, 0x42, 0xf2, 0x42, 0xf2, 0x4a, 0xf2, 0x4a, 0xf2, 0x4a, 0x13, 0x4b, 0x13, 0x4b, 0x33, 0x53, 0x33, 0x53, 0x33, 0x53, 0x53, 0x53, 0x53, 0x4b, 0x33, 0x4b, 0x13, 0x4b, 0x13, 0x43, 0xf3, 0x42, 0xf3, 0x42, 0xd2, 0x3a, 0x55, 0x4b, 0xf7, 0x53, 0x18, 0x54, 0x18, 0x54, 0xf7, 0x53, 0xd7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0x96, 0x4b, 0x75, 0x43, 0x96, 0x4b, 0x96, 0x4b, 0x75, 0x4b, 0x75, 0x4b, 0x34, 0x43, 0x14, 0x3b, 0xd3, 0x3a, 0xb2, 0x32, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x22, 0xf0, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xae, 0x21, 0xea, 0x08, 0xca, 0x00, 0xc9, 0x00, 0x88, 0x00, 0x68, 0x00, 0x88, 0x00, 0x88, 0x00, 0xa8, 0x00, 0xa9, 0x00, 0x2b, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x4d, 0x11, 0x71, 0x2a, 0x13, 0x3b, 0xf3, 0x32, 0xb2, 0x32, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xf3, 0x3a, 0x95, 0x4b, 0xb4, 0x53, 0x94, 0x4b, 0x34, 0x43, 0xf3, 0x3a, 0x92, 0x32, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x31, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xf0, 0x29, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0x6d, 0x19, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4d, 0x11, 0x2c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0xeb, 0x08, 0x2b, 0x09, 0xea, 0x08, 0xca, 0x00, 0xca, 0x00, 0xea, 0x00, 0xca, 0x00, 0xea, 0x00, 0xeb, 0x08, 0xeb, 0x08, 0xea, 0x00, 0x10, 0x22, 0x92, 0x32, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0xf0, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, + 0xcf, 0x21, 0xaf, 0x21, 0xaf, 0x21, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x6e, 0x19, 0x4d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x2c, 0x11, 0x2c, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x09, 0x4d, 0x09, 0x4d, 0x11, 0x6d, 0x11, 0x8e, 0x19, 0x8e, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xcf, 0x19, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xb3, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x96, 0x4b, 0xb7, 0x4b, 0xf7, 0x53, 0x18, 0x54, 0x39, 0x5c, 0x5a, 0x5c, 0x39, 0x5c, 0xd7, 0x4b, 0xb7, 0x4b, 0xf7, 0x53, 0xf7, 0x53, 0xd7, 0x4b, 0xf7, 0x53, 0x38, 0x54, 0x9a, 0x5c, 0xd6, 0x53, 0x92, 0x32, 0xd3, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xf2, 0x3a, 0xf2, 0x3a, 0x12, 0x43, 0x12, 0x43, 0x12, 0x43, 0x12, 0x4b, 0x12, 0x4b, 0x33, 0x4b, 0x33, 0x53, 0x33, 0x53, 0x53, 0x53, 0x53, 0x53, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x13, 0x43, 0x13, 0x43, 0xf3, 0x42, 0xd2, 0x3a, 0x74, 0x4b, 0x17, 0x5c, 0xf7, 0x53, 0x18, 0x54, 0x18, 0x54, 0xf7, 0x53, 0xf7, 0x53, 0xb6, 0x4b, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xd7, 0x53, 0xd6, 0x53, 0xd6, 0x4b, 0x95, 0x4b, 0x55, 0x43, 0x14, 0x3b, 0xd3, 0x32, 0x92, 0x32, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0xf0, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xeb, 0x08, 0xea, 0x00, 0xa9, 0x00, 0x88, 0x00, 0x88, 0x00, 0xa8, 0x00, 0x88, 0x00, 0xa8, 0x00, 0xea, 0x08, 0x2c, 0x11, 0x4c, 0x11, 0x2c, 0x09, 0xef, 0x19, 0xb3, 0x32, 0xd3, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x74, 0x4b, 0x94, 0x4b, 0x74, 0x43, 0x14, 0x3b, 0xd3, 0x32, 0x92, 0x32, 0x51, 0x2a, 0x31, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x31, 0x2a, 0x31, 0x2a, 0xf0, 0x29, 0xf0, 0x29, 0x10, 0x2a, 0xf0, 0x29, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0x6d, 0x19, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x4c, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0xeb, 0x08, 0xeb, 0x08, 0x2b, 0x09, 0xeb, 0x08, 0xea, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x08, 0x0b, 0x09, 0x0b, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0xb2, 0x32, 0x71, 0x32, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0xf0, 0x21, 0xf0, 0x21, 0xef, 0x21, + 0xf0, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xaf, 0x21, 0xaf, 0x21, 0xaf, 0x21, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xae, 0x19, 0x8e, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0xae, 0x19, 0x8e, 0x19, 0x6e, 0x19, 0x6e, 0x19, 0x6d, 0x19, 0x4d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x6d, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0x8e, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xcf, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x2a, 0xf0, 0x21, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x72, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x76, 0x43, 0x96, 0x43, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xf8, 0x53, 0x5a, 0x5c, 0x5a, 0x5c, 0x39, 0x54, 0xb6, 0x4b, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x18, 0x54, 0x38, 0x54, 0x95, 0x4b, 0x51, 0x2a, 0xb2, 0x32, 0x92, 0x32, 0x72, 0x32, 0x72, 0x32, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf2, 0x3a, 0x12, 0x3b, 0x12, 0x43, 0x12, 0x43, 0x12, 0x43, 0x13, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x53, 0x4b, 0x53, 0x53, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x13, 0x43, 0x13, 0x43, 0x13, 0x43, 0xd2, 0x3a, 0x55, 0x4b, 0xf7, 0x5b, 0xf8, 0x53, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0xd7, 0x4b, 0xb6, 0x4b, 0xb7, 0x4b, 0xf7, 0x53, 0x18, 0x5c, 0x38, 0x5c, 0x38, 0x5c, 0x17, 0x5c, 0xf7, 0x53, 0xb6, 0x4b, 0x55, 0x43, 0x13, 0x3b, 0xb3, 0x32, 0x72, 0x2a, 0x31, 0x2a, 0x11, 0x2a, 0x10, 0x22, 0xf0, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0x2b, 0x09, 0x2b, 0x01, 0xa9, 0x00, 0x68, 0x00, 0xa8, 0x00, 0xa8, 0x00, 0xa8, 0x00, 0xa9, 0x00, 0x2b, 0x09, 0x4c, 0x11, 0x2c, 0x09, 0x8d, 0x11, 0x92, 0x2a, 0x92, 0x32, 0x72, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x34, 0x43, 0x54, 0x43, 0x14, 0x3b, 0xd3, 0x32, 0xb3, 0x32, 0x72, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x11, 0x2a, 0x51, 0x2a, 0xf0, 0x29, 0xef, 0x21, 0x10, 0x2a, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0x6d, 0x19, 0x4d, 0x11, 0x4c, 0x11, 0x2c, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x4c, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x2b, 0x09, 0xeb, 0x08, 0xeb, 0x08, 0xea, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x00, 0xca, 0x00, 0xea, 0x00, 0xca, 0x00, 0xca, 0x00, 0xeb, 0x08, 0xeb, 0x08, 0x2b, 0x09, 0x2b, 0x09, 0x50, 0x2a, 0xb3, 0x32, 0x71, 0x32, 0x51, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0xf0, 0x21, + 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xae, 0x19, 0xaf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x29, 0xf0, 0x29, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0xef, 0x29, 0xcf, 0x21, 0xae, 0x21, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xaf, 0x21, 0xcf, 0x21, 0xae, 0x19, 0x8e, 0x19, 0x6d, 0x19, 0x6d, 0x19, 0x6d, 0x19, 0x6e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xaf, 0x21, 0xcf, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x2a, 0x10, 0x22, 0x10, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x52, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x93, 0x32, 0x93, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x35, 0x43, 0x55, 0x43, 0x76, 0x43, 0x97, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x53, 0xf8, 0x53, 0x19, 0x54, 0x5a, 0x5c, 0xf7, 0x53, 0x38, 0x54, 0x59, 0x5c, 0x79, 0x5c, 0x59, 0x5c, 0x55, 0x43, 0x71, 0x2a, 0x92, 0x32, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x92, 0x2a, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf2, 0x32, 0xf2, 0x3a, 0x12, 0x3b, 0x12, 0x43, 0x12, 0x43, 0x33, 0x43, 0x33, 0x4b, 0x53, 0x4b, 0x53, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x43, 0x13, 0x43, 0xf3, 0x42, 0xb2, 0x3a, 0x74, 0x4b, 0x17, 0x5c, 0xf7, 0x53, 0x18, 0x5c, 0x18, 0x54, 0x18, 0x54, 0xd7, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0x18, 0x54, 0x59, 0x5c, 0x9a, 0x64, 0xba, 0x6c, 0x9a, 0x64, 0x58, 0x64, 0x17, 0x5c, 0xb6, 0x4b, 0x55, 0x43, 0xf3, 0x3a, 0x92, 0x32, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xcf, 0x21, 0xf0, 0x21, 0x8e, 0x19, 0x0b, 0x09, 0x0b, 0x09, 0xc9, 0x00, 0xa8, 0x00, 0xa8, 0x00, 0xa8, 0x00, 0x88, 0x00, 0xc9, 0x08, 0x2c, 0x09, 0x4c, 0x09, 0x0b, 0x09, 0x10, 0x22, 0x92, 0x32, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x10, 0x22, 0xf3, 0x3a, 0xf4, 0x3a, 0xd3, 0x32, 0xb3, 0x32, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xef, 0x29, 0xef, 0x29, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0x6d, 0x19, 0x4c, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x4c, 0x11, 0x2b, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x00, 0xeb, 0x08, 0xeb, 0x08, 0x0b, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0xd3, 0x3a, 0x92, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0x10, 0x22, + 0x10, 0x22, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xae, 0x19, 0xaf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0x10, 0x2a, 0x10, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x71, 0x32, 0xb2, 0x32, 0xd2, 0x3a, 0xd2, 0x3a, 0xb2, 0x3a, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x32, 0x51, 0x2a, 0x30, 0x2a, 0xef, 0x21, 0x10, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xae, 0x21, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x6d, 0x19, 0x6e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0xf0, 0x21, 0x10, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x92, 0x32, 0x72, 0x32, 0xf0, 0x21, 0x11, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x93, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x96, 0x43, 0x97, 0x4b, 0xd7, 0x4b, 0xf8, 0x53, 0x19, 0x54, 0x39, 0x5c, 0x39, 0x5c, 0x18, 0x54, 0xf8, 0x53, 0xf8, 0x53, 0x38, 0x54, 0x99, 0x5c, 0xba, 0x64, 0xd7, 0x4b, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf2, 0x32, 0x12, 0x3b, 0x12, 0x3b, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x53, 0x4b, 0x53, 0x4b, 0x53, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x43, 0x13, 0x43, 0x13, 0x43, 0xd2, 0x3a, 0x34, 0x4b, 0xf7, 0x53, 0x18, 0x5c, 0x18, 0x54, 0x38, 0x54, 0x18, 0x54, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x53, 0x59, 0x5c, 0xbb, 0x64, 0xfd, 0x6c, 0x3e, 0x75, 0x3d, 0x75, 0xfb, 0x6c, 0x99, 0x64, 0x17, 0x5c, 0xb6, 0x4b, 0x34, 0x43, 0xd3, 0x32, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x22, 0xf0, 0x21, 0xd0, 0x21, 0xcf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xaf, 0x21, 0xaf, 0x19, 0xaf, 0x21, 0xcf, 0x21, 0xf0, 0x21, 0x8d, 0x19, 0x0b, 0x09, 0xea, 0x00, 0xa9, 0x00, 0xa8, 0x00, 0xa8, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xea, 0x00, 0x2c, 0x09, 0x2c, 0x09, 0x4d, 0x11, 0x72, 0x32, 0x92, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x31, 0x2a, 0xef, 0x21, 0xb3, 0x32, 0xb3, 0x32, 0x93, 0x32, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x10, 0x2a, 0xcf, 0x21, 0xef, 0x29, 0xef, 0x29, 0xef, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0x6d, 0x11, 0x4d, 0x11, 0x2c, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0xeb, 0x08, 0x0b, 0x09, 0xea, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xaa, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x00, 0xeb, 0x08, 0xeb, 0x08, 0x0b, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0xcf, 0x21, 0x14, 0x3b, 0x92, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x11, 0x2a, + 0x10, 0x2a, 0x10, 0x2a, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xf0, 0x21, 0x10, 0x2a, 0x31, 0x2a, 0x71, 0x32, 0x72, 0x32, 0xd2, 0x3a, 0xf3, 0x42, 0x13, 0x43, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x33, 0x43, 0x13, 0x43, 0xd2, 0x3a, 0xb2, 0x32, 0xd3, 0x3a, 0xb2, 0x32, 0x51, 0x2a, 0x10, 0x2a, 0xef, 0x29, 0xaf, 0x21, 0xae, 0x21, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8d, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xaf, 0x21, 0xd0, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x31, 0x2a, 0x31, 0x2a, 0x10, 0x22, 0xef, 0x21, 0xf0, 0x21, 0x10, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x32, 0x51, 0x2a, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x3a, 0x14, 0x3b, 0x35, 0x43, 0x76, 0x43, 0xd7, 0x4b, 0xf8, 0x53, 0x18, 0x54, 0x19, 0x54, 0x3a, 0x5c, 0x5a, 0x5c, 0x5b, 0x5c, 0x5b, 0x5c, 0x59, 0x5c, 0x59, 0x5c, 0x79, 0x5c, 0xf7, 0x53, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf2, 0x3a, 0x13, 0x3b, 0x33, 0x43, 0x53, 0x43, 0x53, 0x43, 0x33, 0x43, 0x53, 0x43, 0x53, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x4b, 0x13, 0x43, 0xf3, 0x42, 0xf3, 0x42, 0xd2, 0x42, 0x13, 0x43, 0xd7, 0x53, 0x38, 0x5c, 0x18, 0x5c, 0x38, 0x5c, 0x18, 0x54, 0xd7, 0x4b, 0xd7, 0x4b, 0x18, 0x54, 0x79, 0x64, 0xfc, 0x6c, 0x7f, 0x7d, 0xbf, 0x85, 0xbf, 0x85, 0x7f, 0x85, 0x1d, 0x75, 0x99, 0x64, 0xf7, 0x53, 0x75, 0x4b, 0x14, 0x3b, 0xb2, 0x32, 0x72, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0xf0, 0x21, 0xf0, 0x21, 0xcf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x21, 0xaf, 0x19, 0xaf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0x10, 0x2a, 0x6d, 0x11, 0x0b, 0x09, 0xea, 0x08, 0xa9, 0x00, 0x88, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0x0b, 0x09, 0x2c, 0x09, 0x4c, 0x11, 0x8e, 0x19, 0x71, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0xcf, 0x21, 0x72, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x72, 0x2a, 0x10, 0x2a, 0xcf, 0x21, 0xef, 0x29, 0xef, 0x29, 0xef, 0x21, 0xaf, 0x21, 0xaf, 0x21, 0xaf, 0x21, 0x4d, 0x11, 0x4d, 0x11, 0x2c, 0x11, 0x2b, 0x09, 0x0b, 0x09, 0x2c, 0x09, 0x0c, 0x09, 0x0c, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0xeb, 0x08, 0x0b, 0x09, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xaa, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x00, 0xea, 0x08, 0xeb, 0x08, 0x2b, 0x09, 0x2b, 0x09, 0xeb, 0x08, 0x0b, 0x09, 0x72, 0x32, 0xd3, 0x3a, 0x92, 0x32, 0x72, 0x32, 0x51, 0x2a, 0x31, 0x2a, + 0x51, 0x2a, 0x11, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xf0, 0x21, 0x10, 0x2a, 0x50, 0x2a, 0x71, 0x32, 0x92, 0x32, 0xf3, 0x3a, 0x33, 0x43, 0x75, 0x4b, 0xb5, 0x53, 0xf6, 0x5b, 0x17, 0x64, 0x37, 0x64, 0x16, 0x64, 0xf6, 0x5b, 0xb5, 0x53, 0xd6, 0x5b, 0xb5, 0x53, 0x54, 0x4b, 0x13, 0x43, 0xb2, 0x3a, 0x71, 0x32, 0x30, 0x2a, 0x10, 0x2a, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xaf, 0x21, 0xd0, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x31, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x51, 0x32, 0x51, 0x2a, 0x10, 0x2a, 0xaf, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x2a, 0x11, 0x2a, 0x31, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x55, 0x43, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf8, 0x4b, 0x19, 0x54, 0x3a, 0x54, 0x7a, 0x5c, 0x7b, 0x5c, 0x9b, 0x64, 0x7b, 0x5c, 0x9b, 0x5c, 0x5a, 0x5c, 0x34, 0x43, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xf2, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x43, 0x33, 0x43, 0x53, 0x43, 0x53, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x13, 0x43, 0x13, 0x43, 0xf3, 0x42, 0xd2, 0x42, 0xb2, 0x3a, 0xb6, 0x53, 0x59, 0x5c, 0x18, 0x5c, 0x38, 0x5c, 0xf8, 0x53, 0xd7, 0x53, 0xf7, 0x53, 0x38, 0x5c, 0xba, 0x64, 0x3e, 0x75, 0xbf, 0x85, 0x1f, 0x96, 0x5f, 0x96, 0x3f, 0x96, 0xdf, 0x8d, 0x3d, 0x75, 0x79, 0x64, 0xd6, 0x53, 0x54, 0x43, 0xd3, 0x32, 0x72, 0x32, 0x51, 0x2a, 0x30, 0x2a, 0xf0, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xf0, 0x21, 0x10, 0x2a, 0x6d, 0x11, 0x2b, 0x09, 0xa9, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xc9, 0x00, 0xea, 0x00, 0xca, 0x00, 0x0b, 0x09, 0x4d, 0x11, 0x4d, 0x11, 0x10, 0x22, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0xcf, 0x21, 0x71, 0x2a, 0x92, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x22, 0x10, 0x22, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x32, 0x30, 0x2a, 0xef, 0x21, 0xcf, 0x21, 0xef, 0x29, 0xef, 0x21, 0xaf, 0x21, 0xaf, 0x21, 0xae, 0x21, 0x6d, 0x11, 0x4d, 0x11, 0x2c, 0x11, 0x2c, 0x09, 0x2b, 0x09, 0x2c, 0x11, 0x0c, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0xea, 0x08, 0xeb, 0x08, 0xeb, 0x08, 0x0b, 0x09, 0xea, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x00, 0xea, 0x00, 0xeb, 0x08, 0xeb, 0x08, 0x2b, 0x09, 0xeb, 0x08, 0x0a, 0x09, 0xea, 0x00, 0xae, 0x19, 0x34, 0x43, 0xd3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x2a, + 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x22, 0xf0, 0x21, 0xd0, 0x21, 0xcf, 0x21, 0xef, 0x21, 0x10, 0x22, 0x10, 0x2a, 0x31, 0x2a, 0x71, 0x32, 0xb2, 0x32, 0x13, 0x43, 0x75, 0x4b, 0xd6, 0x5b, 0x37, 0x64, 0x99, 0x6c, 0xda, 0x74, 0xda, 0x7c, 0xfa, 0x74, 0xb9, 0x74, 0xda, 0x74, 0xb9, 0x74, 0x58, 0x64, 0x17, 0x64, 0x95, 0x53, 0x14, 0x43, 0xb2, 0x3a, 0x71, 0x32, 0x30, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x21, 0xcf, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x50, 0x2a, 0x51, 0x32, 0x10, 0x2a, 0x8e, 0x19, 0xcf, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x31, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x93, 0x32, 0xd3, 0x32, 0x35, 0x3b, 0x76, 0x43, 0x96, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xf8, 0x4b, 0x19, 0x54, 0x5a, 0x5c, 0x9a, 0x5c, 0x9b, 0x64, 0xbc, 0x6c, 0xfd, 0x6c, 0xbc, 0x64, 0x18, 0x54, 0x96, 0x4b, 0xf3, 0x3a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xf2, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x13, 0x43, 0xf2, 0x42, 0xf2, 0x42, 0xd2, 0x42, 0xb2, 0x3a, 0x75, 0x4b, 0x59, 0x5c, 0x18, 0x5c, 0x38, 0x5c, 0x18, 0x54, 0xd7, 0x53, 0xf7, 0x53, 0x58, 0x5c, 0xdb, 0x64, 0x5e, 0x75, 0x1f, 0x8e, 0xbf, 0x9e, 0x3f, 0xa7, 0x1f, 0xa7, 0x7f, 0x9e, 0xbf, 0x85, 0xfb, 0x74, 0x37, 0x5c, 0x95, 0x4b, 0x14, 0x3b, 0x92, 0x32, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xd0, 0x21, 0xf0, 0x21, 0x10, 0x22, 0xef, 0x21, 0x6d, 0x11, 0x0a, 0x09, 0xa9, 0x00, 0xaa, 0x00, 0xc9, 0x00, 0xca, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0x2c, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0xcf, 0x21, 0x31, 0x2a, 0x52, 0x2a, 0x51, 0x2a, 0x11, 0x22, 0x10, 0x22, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x92, 0x32, 0x10, 0x2a, 0xef, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xaf, 0x21, 0x8e, 0x19, 0x6d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x2c, 0x09, 0x2b, 0x09, 0x2c, 0x11, 0x0c, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0xeb, 0x08, 0xea, 0x08, 0xeb, 0x08, 0xeb, 0x08, 0xea, 0x08, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x00, 0xca, 0x00, 0xea, 0x00, 0x0a, 0x01, 0xea, 0x00, 0xea, 0x08, 0xeb, 0x08, 0xeb, 0x08, 0xca, 0x00, 0xea, 0x00, 0x0a, 0x01, 0xc9, 0x00, 0x71, 0x32, 0x55, 0x43, 0xd3, 0x32, 0x93, 0x32, 0x72, 0x32, + 0x92, 0x32, 0x72, 0x2a, 0x51, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x72, 0x32, 0xb2, 0x32, 0x34, 0x43, 0x95, 0x4b, 0x16, 0x5c, 0x78, 0x6c, 0xfa, 0x7c, 0x5d, 0x85, 0x7e, 0x8d, 0x9e, 0x8d, 0xff, 0x9d, 0xbf, 0x8d, 0x3d, 0x85, 0xfa, 0x74, 0x78, 0x6c, 0x17, 0x64, 0xb5, 0x53, 0x14, 0x43, 0xd3, 0x3a, 0x72, 0x32, 0x51, 0x2a, 0x10, 0x2a, 0xf0, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xaf, 0x21, 0xaf, 0x21, 0xae, 0x21, 0xaf, 0x21, 0xaf, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x8e, 0x19, 0x8e, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x22, 0x31, 0x2a, 0x52, 0x2a, 0x72, 0x2a, 0x93, 0x2a, 0xd4, 0x32, 0x35, 0x3b, 0x76, 0x43, 0x96, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xd8, 0x4b, 0xf8, 0x53, 0x5a, 0x5c, 0x9a, 0x5c, 0x9b, 0x64, 0xbc, 0x6c, 0xdc, 0x6c, 0x7a, 0x64, 0xf7, 0x5b, 0xf7, 0x53, 0xf7, 0x53, 0x34, 0x43, 0x10, 0x22, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x43, 0x13, 0x43, 0xf2, 0x42, 0xd2, 0x3a, 0xd2, 0x3a, 0xd2, 0x3a, 0x54, 0x4b, 0x18, 0x5c, 0x39, 0x5c, 0x39, 0x5c, 0x18, 0x5c, 0xf7, 0x53, 0xf7, 0x53, 0x38, 0x5c, 0xbb, 0x64, 0x7e, 0x7d, 0x3f, 0x8e, 0x1f, 0xa7, 0xbf, 0xaf, 0xdf, 0xb7, 0x5f, 0xaf, 0x5f, 0x96, 0x5e, 0x7d, 0x99, 0x6c, 0xf6, 0x53, 0x54, 0x43, 0xf3, 0x32, 0x92, 0x32, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x22, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xd0, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x2a, 0xae, 0x19, 0x6c, 0x11, 0xaa, 0x00, 0x89, 0x00, 0xa9, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0x0b, 0x09, 0x4c, 0x11, 0x2c, 0x11, 0xcf, 0x21, 0x31, 0x2a, 0x51, 0x2a, 0x10, 0x2a, 0xf0, 0x21, 0x11, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x22, 0x10, 0x22, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x10, 0x2a, 0xef, 0x29, 0xcf, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xaf, 0x21, 0x8e, 0x19, 0x6d, 0x11, 0x4d, 0x11, 0x2c, 0x11, 0x2c, 0x11, 0x0c, 0x09, 0x4c, 0x11, 0x0c, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0xea, 0x08, 0xea, 0x08, 0xea, 0x08, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xaa, 0x00, 0xca, 0x00, 0xea, 0x08, 0x0a, 0x09, 0xea, 0x00, 0x0a, 0x01, 0xeb, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0xa9, 0x00, 0x68, 0x00, 0xf3, 0x3a, 0x55, 0x43, 0xd3, 0x32, 0x93, 0x32, + 0xb3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0x31, 0x2a, 0x11, 0x2a, 0x31, 0x2a, 0x72, 0x2a, 0xb2, 0x32, 0x13, 0x3b, 0x75, 0x4b, 0xf6, 0x5b, 0x78, 0x6c, 0x1b, 0x7d, 0x7e, 0x8d, 0xff, 0x95, 0xbf, 0xa6, 0x7f, 0xa6, 0x3f, 0x9e, 0xdf, 0x95, 0x5e, 0x85, 0xda, 0x74, 0x58, 0x6c, 0xf6, 0x5b, 0x75, 0x4b, 0x13, 0x43, 0xb2, 0x32, 0x71, 0x32, 0x30, 0x2a, 0x10, 0x2a, 0xf0, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xf0, 0x21, 0x10, 0x22, 0xf0, 0x29, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0x71, 0x2a, 0xaf, 0x21, 0x4d, 0x11, 0x8e, 0x19, 0x8e, 0x19, 0xaf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x31, 0x22, 0x31, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x14, 0x33, 0x35, 0x3b, 0x55, 0x43, 0x76, 0x43, 0xb6, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xf8, 0x4b, 0x3a, 0x54, 0x5b, 0x5c, 0x9b, 0x5c, 0xbc, 0x64, 0xbb, 0x64, 0x17, 0x5c, 0xf7, 0x53, 0x17, 0x54, 0xf7, 0x53, 0x18, 0x54, 0x75, 0x4b, 0xf0, 0x21, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x33, 0x3b, 0x33, 0x43, 0x33, 0x43, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf2, 0x3a, 0xd2, 0x3a, 0xd2, 0x3a, 0xd2, 0x3a, 0x13, 0x43, 0xf7, 0x53, 0x59, 0x5c, 0x59, 0x5c, 0x38, 0x5c, 0x17, 0x5c, 0x17, 0x5c, 0x38, 0x5c, 0x9b, 0x64, 0x5e, 0x7d, 0x1f, 0x8e, 0x3f, 0xa7, 0xde, 0xb7, 0xde, 0xbf, 0xdf, 0xb7, 0x1f, 0xa7, 0x1f, 0x8e, 0x1c, 0x75, 0x38, 0x5c, 0x95, 0x4b, 0x14, 0x3b, 0xb3, 0x32, 0x72, 0x2a, 0x31, 0x2a, 0x10, 0x22, 0x10, 0x22, 0xf0, 0x21, 0xcf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x31, 0x2a, 0x6d, 0x11, 0xca, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x00, 0x4c, 0x11, 0x4d, 0x11, 0x0c, 0x09, 0xef, 0x21, 0x31, 0x2a, 0x10, 0x2a, 0xcf, 0x21, 0xf0, 0x21, 0x51, 0x2a, 0x31, 0x2a, 0x11, 0x2a, 0x10, 0x22, 0x10, 0x22, 0xf0, 0x21, 0x10, 0x22, 0x11, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x92, 0x32, 0x30, 0x2a, 0xef, 0x29, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xae, 0x21, 0x8e, 0x19, 0x6d, 0x19, 0x4d, 0x11, 0x4c, 0x11, 0x2c, 0x11, 0x2c, 0x09, 0x2c, 0x11, 0x2c, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0xeb, 0x08, 0xeb, 0x08, 0x0a, 0x09, 0xea, 0x08, 0xaa, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x00, 0xea, 0x00, 0x0a, 0x09, 0x2b, 0x09, 0x8d, 0x19, 0xef, 0x29, 0x10, 0x2a, 0x31, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x32, 0x71, 0x32, 0x30, 0x2a, 0x14, 0x43, 0x14, 0x3b, 0xd3, 0x32, + 0x55, 0x43, 0x35, 0x43, 0x35, 0x43, 0x14, 0x3b, 0xb3, 0x32, 0x72, 0x32, 0x31, 0x2a, 0x11, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xd3, 0x3a, 0x34, 0x43, 0xb5, 0x53, 0x37, 0x64, 0xda, 0x74, 0x5d, 0x85, 0x5f, 0x9e, 0x9f, 0xa6, 0x7f, 0xa6, 0x5f, 0x9e, 0x1f, 0x96, 0x9f, 0x8d, 0x1c, 0x7d, 0x99, 0x6c, 0xf7, 0x5b, 0x95, 0x53, 0x34, 0x43, 0xd3, 0x3a, 0x92, 0x32, 0x51, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x71, 0x32, 0xae, 0x19, 0x2c, 0x09, 0x6d, 0x11, 0x8e, 0x19, 0x8e, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xcf, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x22, 0x31, 0x2a, 0x72, 0x2a, 0xb3, 0x2a, 0xf4, 0x32, 0x15, 0x33, 0x35, 0x3b, 0x55, 0x43, 0x76, 0x43, 0x97, 0x43, 0xb7, 0x4b, 0xd8, 0x4b, 0x39, 0x54, 0x5a, 0x54, 0x5b, 0x5c, 0x5b, 0x5c, 0xf8, 0x53, 0xb6, 0x4b, 0xd7, 0x4b, 0xd7, 0x53, 0xf7, 0x53, 0xd7, 0x4b, 0xd7, 0x53, 0x75, 0x43, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x13, 0x43, 0x13, 0x43, 0x13, 0x43, 0x13, 0x43, 0x13, 0x43, 0x33, 0x43, 0x33, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf2, 0x3a, 0xd2, 0x3a, 0xf2, 0x3a, 0xd2, 0x3a, 0xf3, 0x42, 0xf7, 0x5b, 0x79, 0x64, 0x79, 0x64, 0x79, 0x64, 0x38, 0x5c, 0x17, 0x5c, 0x38, 0x5c, 0x9a, 0x64, 0x3d, 0x75, 0xff, 0x8d, 0x3f, 0xa7, 0xff, 0xb7, 0xfe, 0xc7, 0xff, 0xbf, 0x9f, 0xaf, 0x9f, 0x9e, 0x7e, 0x85, 0x99, 0x6c, 0xf6, 0x53, 0x55, 0x43, 0xf3, 0x3a, 0x92, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x22, 0xf0, 0x21, 0xd0, 0x21, 0xcf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x2a, 0x2b, 0x09, 0xa9, 0x00, 0xc9, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x00, 0x4c, 0x11, 0x4c, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0xef, 0x21, 0x30, 0x2a, 0xf0, 0x29, 0xcf, 0x21, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x10, 0x22, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x10, 0x2a, 0xef, 0x29, 0xcf, 0x21, 0xaf, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0x8e, 0x19, 0x6d, 0x19, 0x4d, 0x11, 0x4d, 0x11, 0x2c, 0x11, 0x2c, 0x09, 0x2c, 0x11, 0x4c, 0x11, 0x2c, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x11, 0x2c, 0x11, 0x8e, 0x19, 0xcf, 0x21, 0xf0, 0x29, 0x10, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x55, 0x43, 0x55, 0x43, + 0x76, 0x43, 0x55, 0x43, 0x55, 0x43, 0x76, 0x43, 0x76, 0x43, 0x55, 0x43, 0x14, 0x43, 0x14, 0x3b, 0xd3, 0x3a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xd3, 0x3a, 0x54, 0x4b, 0xb6, 0x53, 0x99, 0x6c, 0x3c, 0x7d, 0x9f, 0x8d, 0xdf, 0x95, 0xff, 0x95, 0xff, 0x95, 0xbf, 0x8d, 0x5e, 0x85, 0xfb, 0x7c, 0x99, 0x6c, 0xf7, 0x5b, 0xb5, 0x53, 0x54, 0x43, 0xf3, 0x3a, 0x92, 0x32, 0x72, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x11, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x71, 0x32, 0x8e, 0x11, 0x0c, 0x09, 0x4c, 0x11, 0x4d, 0x11, 0x6e, 0x11, 0x8e, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xef, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x31, 0x22, 0x52, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x15, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0x96, 0x43, 0xb7, 0x4b, 0xf8, 0x4b, 0x39, 0x54, 0x39, 0x54, 0x3a, 0x54, 0x19, 0x54, 0x56, 0x43, 0x96, 0x43, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xf8, 0x53, 0x96, 0x4b, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf2, 0x3a, 0xd2, 0x32, 0xd2, 0x3a, 0xf2, 0x3a, 0xf2, 0x3a, 0xf2, 0x3a, 0xb6, 0x53, 0x59, 0x64, 0x7a, 0x64, 0x9a, 0x64, 0x59, 0x5c, 0x17, 0x5c, 0x18, 0x5c, 0x79, 0x5c, 0xfd, 0x6c, 0xbf, 0x85, 0xdf, 0x9e, 0xbf, 0xb7, 0xfe, 0xc7, 0xff, 0xc7, 0xdf, 0xbf, 0xff, 0xa6, 0xdf, 0x8d, 0xfc, 0x74, 0x58, 0x5c, 0x95, 0x4b, 0x14, 0x3b, 0xd3, 0x32, 0x72, 0x2a, 0x51, 0x2a, 0x11, 0x22, 0xf0, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0xcf, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xef, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x31, 0x2a, 0xae, 0x19, 0xca, 0x08, 0xa9, 0x00, 0xca, 0x00, 0xea, 0x00, 0x0a, 0x09, 0x2b, 0x09, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x19, 0x6d, 0x19, 0x6d, 0x19, 0xcf, 0x19, 0xf0, 0x21, 0xcf, 0x21, 0x31, 0x2a, 0x31, 0x2a, 0x10, 0x22, 0x10, 0x22, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x50, 0x2a, 0xef, 0x29, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xae, 0x19, 0x8e, 0x19, 0x6d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x2c, 0x11, 0x2c, 0x11, 0x2c, 0x11, 0x2c, 0x11, 0x2c, 0x09, 0x0b, 0x09, 0x2b, 0x09, 0xeb, 0x08, 0x0b, 0x09, 0x8d, 0x19, 0x8e, 0x19, 0x8e, 0x21, 0xcf, 0x21, 0xef, 0x29, 0xef, 0x21, 0xef, 0x29, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x11, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0xb2, 0x32, 0x76, 0x43, + 0xb7, 0x4b, 0x76, 0x43, 0x76, 0x43, 0x55, 0x43, 0x55, 0x43, 0x56, 0x43, 0x76, 0x4b, 0x76, 0x4b, 0x76, 0x4b, 0x76, 0x43, 0x15, 0x43, 0x92, 0x32, 0x31, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xd3, 0x3a, 0x55, 0x4b, 0x17, 0x5c, 0x78, 0x6c, 0xda, 0x74, 0xfb, 0x74, 0x1b, 0x7d, 0x3d, 0x7d, 0x3c, 0x7d, 0xdb, 0x74, 0xb9, 0x6c, 0x38, 0x64, 0xf6, 0x5b, 0x95, 0x4b, 0x34, 0x43, 0xd3, 0x3a, 0x92, 0x32, 0x52, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x32, 0x72, 0x2a, 0x72, 0x32, 0x51, 0x2a, 0x8d, 0x19, 0x0b, 0x01, 0x2c, 0x09, 0x4c, 0x09, 0x4d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x8e, 0x19, 0x8e, 0x19, 0xaf, 0x19, 0xcf, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x31, 0x2a, 0x72, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xd4, 0x32, 0x14, 0x33, 0x35, 0x3b, 0x56, 0x43, 0x76, 0x43, 0xb7, 0x43, 0xf8, 0x4b, 0x18, 0x54, 0x39, 0x54, 0x19, 0x54, 0x76, 0x43, 0x55, 0x43, 0x76, 0x43, 0x96, 0x43, 0x97, 0x43, 0x97, 0x4b, 0x96, 0x43, 0x96, 0x4b, 0xb7, 0x4b, 0x18, 0x54, 0x76, 0x4b, 0x10, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0x13, 0x3b, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x13, 0x43, 0x33, 0x43, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xf2, 0x32, 0xf2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf2, 0x32, 0x12, 0x3b, 0xd2, 0x3a, 0x54, 0x4b, 0x59, 0x5c, 0x9a, 0x64, 0x9b, 0x64, 0x7a, 0x64, 0x18, 0x5c, 0x17, 0x54, 0x38, 0x5c, 0xbb, 0x64, 0x5f, 0x7d, 0x5f, 0x96, 0x7f, 0xaf, 0xfe, 0xbf, 0xde, 0xc7, 0xff, 0xbf, 0x5f, 0xaf, 0x3f, 0x96, 0x3d, 0x7d, 0x79, 0x64, 0xb6, 0x53, 0x54, 0x43, 0xd3, 0x32, 0x92, 0x32, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x22, 0x10, 0x22, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0xf0, 0x21, 0x2c, 0x09, 0xea, 0x00, 0xea, 0x00, 0xea, 0x08, 0xea, 0x00, 0x6d, 0x11, 0x6e, 0x19, 0x4d, 0x11, 0x4d, 0x11, 0x6d, 0x19, 0x8d, 0x11, 0x4c, 0x11, 0xcf, 0x21, 0xcf, 0x21, 0x31, 0x2a, 0x31, 0x2a, 0x10, 0x22, 0xf0, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x21, 0xf0, 0x29, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x10, 0x2a, 0xef, 0x21, 0xef, 0x21, 0xef, 0x29, 0xcf, 0x21, 0xef, 0x29, 0xcf, 0x21, 0xae, 0x21, 0xae, 0x21, 0x8e, 0x19, 0x6d, 0x19, 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x2c, 0x09, 0x4c, 0x11, 0x2c, 0x11, 0x0b, 0x09, 0x6d, 0x11, 0xae, 0x21, 0xce, 0x21, 0xaf, 0x21, 0xae, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0x10, 0x2a, 0x10, 0x2a, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x32, 0x72, 0x32, 0xd3, 0x32, + 0xb2, 0x32, 0xb7, 0x4b, 0x97, 0x43, 0x96, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb7, 0x4b, 0xb7, 0x4b, 0x96, 0x4b, 0x96, 0x4b, 0x55, 0x43, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x34, 0x43, 0x75, 0x4b, 0xb6, 0x53, 0xf7, 0x5b, 0x17, 0x5c, 0x37, 0x64, 0x58, 0x6c, 0x58, 0x6c, 0x38, 0x64, 0x17, 0x64, 0xf6, 0x5b, 0x95, 0x4b, 0x34, 0x43, 0xf3, 0x3a, 0xb2, 0x32, 0x72, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xd2, 0x32, 0xb3, 0x32, 0xb3, 0x2a, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x93, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xcf, 0x21, 0x2c, 0x11, 0x4c, 0x11, 0x2c, 0x09, 0x2c, 0x11, 0x4d, 0x09, 0x6d, 0x11, 0x6d, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0xaf, 0x19, 0xcf, 0x21, 0xd0, 0x21, 0xf0, 0x21, 0x31, 0x22, 0x72, 0x2a, 0x93, 0x2a, 0xb3, 0x32, 0xd4, 0x32, 0xf4, 0x32, 0x35, 0x3b, 0x55, 0x3b, 0x96, 0x43, 0xb7, 0x4b, 0xf7, 0x4b, 0x18, 0x54, 0x39, 0x54, 0xd7, 0x4b, 0x15, 0x3b, 0x35, 0x43, 0x55, 0x43, 0x96, 0x43, 0xb7, 0x4b, 0xb7, 0x4b, 0x97, 0x43, 0x96, 0x43, 0xb7, 0x4b, 0xb7, 0x4b, 0x18, 0x54, 0xb7, 0x4b, 0x51, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0x13, 0x43, 0x33, 0x43, 0x13, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xf2, 0x32, 0xf2, 0x32, 0x12, 0x3b, 0x13, 0x3b, 0xf2, 0x3a, 0x33, 0x43, 0x38, 0x5c, 0xbb, 0x64, 0xbb, 0x64, 0xbb, 0x64, 0x79, 0x5c, 0x17, 0x54, 0x38, 0x5c, 0x9a, 0x64, 0x1d, 0x6d, 0xdf, 0x85, 0xff, 0x9e, 0xbf, 0xb7, 0xfe, 0xbf, 0xdf, 0xb7, 0x5f, 0xaf, 0x5f, 0x96, 0x7e, 0x85, 0xba, 0x6c, 0xf7, 0x5b, 0x75, 0x4b, 0x13, 0x3b, 0xb2, 0x32, 0x72, 0x2a, 0x31, 0x2a, 0x11, 0x22, 0xf0, 0x21, 0xd0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xaf, 0x19, 0xaf, 0x21, 0xcf, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x10, 0x22, 0x31, 0x2a, 0xf0, 0x21, 0xf0, 0x29, 0x8e, 0x19, 0x0b, 0x09, 0xea, 0x00, 0x0a, 0x09, 0x2c, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x8d, 0x19, 0x6d, 0x11, 0x2c, 0x09, 0xae, 0x19, 0x31, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0xf0, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x21, 0x10, 0x2a, 0x31, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x0f, 0x2a, 0xcf, 0x21, 0xef, 0x29, 0xcf, 0x29, 0xcf, 0x21, 0xef, 0x29, 0xcf, 0x21, 0xcf, 0x21, 0xce, 0x21, 0xae, 0x19, 0x8e, 0x19, 0x6d, 0x19, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x6d, 0x19, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, + 0x92, 0x2a, 0xb3, 0x32, 0x97, 0x4b, 0xb7, 0x4b, 0x96, 0x43, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0x96, 0x4b, 0x75, 0x4b, 0x14, 0x3b, 0xf4, 0x3a, 0xf3, 0x3a, 0x14, 0x43, 0x55, 0x43, 0x75, 0x4b, 0x95, 0x4b, 0x95, 0x53, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x55, 0x43, 0x34, 0x43, 0xf3, 0x3a, 0xb3, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x52, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0xcf, 0x21, 0x2c, 0x09, 0x2c, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0xae, 0x19, 0xaf, 0x19, 0xd0, 0x21, 0xf0, 0x21, 0x31, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0x93, 0x32, 0xb3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x55, 0x43, 0x76, 0x43, 0x96, 0x4b, 0xd7, 0x4b, 0x18, 0x54, 0xf7, 0x4b, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb7, 0x4b, 0xd7, 0x4b, 0xf8, 0x53, 0x55, 0x43, 0x51, 0x22, 0x52, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x13, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x53, 0x43, 0x53, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf2, 0x32, 0x13, 0x3b, 0x13, 0x3b, 0xd2, 0x3a, 0xd7, 0x53, 0xfd, 0x6c, 0xdc, 0x64, 0xbc, 0x64, 0x9b, 0x64, 0x59, 0x5c, 0x38, 0x54, 0x59, 0x5c, 0xbc, 0x64, 0x5e, 0x75, 0xff, 0x8d, 0xff, 0x9e, 0x9f, 0xaf, 0xbf, 0xaf, 0x1f, 0xa7, 0x5f, 0x96, 0x7f, 0x85, 0xdb, 0x6c, 0x17, 0x5c, 0x95, 0x4b, 0x34, 0x43, 0xd3, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x11, 0x22, 0xf0, 0x21, 0xd0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xd0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x11, 0x2a, 0x10, 0x2a, 0x11, 0x2a, 0x10, 0x22, 0xd0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0x4c, 0x11, 0xeb, 0x08, 0x2c, 0x09, 0x4d, 0x11, 0x6d, 0x19, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x8d, 0x19, 0x6d, 0x11, 0x4c, 0x11, 0x2c, 0x11, 0xae, 0x21, 0x31, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0xf0, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xf0, 0x21, 0xf0, 0x29, 0x31, 0x2a, 0x31, 0x2a, 0x71, 0x2a, 0x10, 0x2a, 0xcf, 0x29, 0xef, 0x29, 0xef, 0x29, 0xcf, 0x21, 0xef, 0x29, 0xef, 0x29, 0xcf, 0x21, 0xcf, 0x21, 0xae, 0x21, 0xae, 0x19, 0x8e, 0x19, 0x6d, 0x19, 0x4c, 0x11, 0x6d, 0x19, 0x6d, 0x19, 0xce, 0x21, 0xce, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, + 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xd7, 0x4b, 0x19, 0x54, 0xd7, 0x4b, 0xd7, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xd8, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xd7, 0x53, 0xb7, 0x4b, 0x96, 0x4b, 0x14, 0x43, 0xb3, 0x32, 0xd3, 0x3a, 0xf4, 0x3a, 0x14, 0x43, 0x34, 0x43, 0x34, 0x43, 0x14, 0x43, 0xf4, 0x3a, 0xf3, 0x3a, 0xd3, 0x32, 0xb3, 0x32, 0x93, 0x32, 0x93, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x93, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x71, 0x32, 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x2c, 0x09, 0x4c, 0x09, 0x4d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xaf, 0x19, 0xcf, 0x21, 0xf0, 0x21, 0x31, 0x22, 0x52, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x35, 0x3b, 0x75, 0x43, 0x96, 0x4b, 0xd7, 0x4b, 0xd7, 0x53, 0x96, 0x4b, 0x14, 0x43, 0x35, 0x43, 0x55, 0x43, 0x55, 0x43, 0x56, 0x43, 0x76, 0x43, 0x76, 0x43, 0x96, 0x43, 0x76, 0x43, 0x76, 0x43, 0x97, 0x43, 0xb7, 0x4b, 0xf7, 0x53, 0xf8, 0x53, 0x35, 0x3b, 0x51, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xd3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x53, 0x43, 0x53, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf2, 0x3a, 0xf3, 0x3a, 0xb2, 0x32, 0x34, 0x3b, 0x9c, 0x64, 0x1e, 0x6d, 0xbc, 0x64, 0xbb, 0x64, 0x9b, 0x5c, 0x59, 0x5c, 0x59, 0x5c, 0x9b, 0x64, 0xfd, 0x6c, 0x7f, 0x7d, 0xff, 0x8d, 0x9f, 0x9e, 0xdf, 0x9e, 0x9f, 0x9e, 0x1f, 0x8e, 0x7f, 0x85, 0xbb, 0x6c, 0x38, 0x5c, 0xb6, 0x4b, 0x54, 0x43, 0xf3, 0x32, 0x92, 0x32, 0x52, 0x2a, 0x31, 0x2a, 0x10, 0x22, 0xf0, 0x21, 0xd0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xd0, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x11, 0x22, 0x10, 0x22, 0xd0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0x10, 0x2a, 0x4d, 0x11, 0x2c, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x2c, 0x09, 0x2c, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4c, 0x11, 0x2c, 0x11, 0x6d, 0x11, 0x10, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xef, 0x29, 0xef, 0x29, 0xcf, 0x21, 0xef, 0x29, 0x10, 0x2a, 0x10, 0x22, 0xcf, 0x21, 0xcf, 0x21, 0xae, 0x21, 0x8e, 0x19, 0x6d, 0x19, 0x8e, 0x19, 0xce, 0x21, 0xaf, 0x21, 0xae, 0x21, 0xae, 0x21, 0x8e, 0x21, 0xae, 0x21, 0x8e, 0x21, 0xae, 0x21, 0xce, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xf0, 0x21, 0x10, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x52, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, + 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x93, 0x32, 0x35, 0x3b, 0x5a, 0x54, 0x39, 0x54, 0x18, 0x54, 0x19, 0x54, 0x19, 0x4c, 0x18, 0x54, 0xf8, 0x4b, 0xd8, 0x4b, 0x18, 0x54, 0x18, 0x54, 0xf8, 0x53, 0xd7, 0x53, 0xb7, 0x4b, 0xb7, 0x53, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x3a, 0xf4, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0x93, 0x32, 0x93, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd4, 0x32, 0xf4, 0x32, 0xf4, 0x3a, 0xf4, 0x3a, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x51, 0x2a, 0xeb, 0x00, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x11, 0x2c, 0x11, 0x2c, 0x09, 0x4c, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0xaf, 0x19, 0xcf, 0x21, 0xf0, 0x21, 0x11, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xd3, 0x32, 0xf3, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x96, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0x55, 0x43, 0x14, 0x43, 0x34, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x76, 0x43, 0x56, 0x43, 0x56, 0x3b, 0x56, 0x43, 0x76, 0x43, 0x76, 0x43, 0x96, 0x4b, 0xb7, 0x4b, 0xf8, 0x53, 0xb7, 0x4b, 0xb3, 0x32, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x53, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0xf2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0x91, 0x32, 0x59, 0x5c, 0x7f, 0x75, 0xfe, 0x64, 0xfd, 0x64, 0xdd, 0x64, 0xbc, 0x64, 0x5a, 0x5c, 0x59, 0x5c, 0x9a, 0x64, 0xfd, 0x6c, 0x7f, 0x7d, 0xdf, 0x85, 0xff, 0x8d, 0xff, 0x8d, 0xbf, 0x85, 0x3e, 0x7d, 0xba, 0x6c, 0x37, 0x5c, 0x96, 0x53, 0x34, 0x43, 0xf3, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x10, 0x22, 0xf0, 0x21, 0xd0, 0x21, 0xcf, 0x21, 0xd0, 0x21, 0xd0, 0x21, 0xd0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x11, 0x22, 0x31, 0x2a, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0x10, 0x2a, 0x8e, 0x19, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x09, 0x4c, 0x11, 0x2c, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x2c, 0x09, 0x4c, 0x11, 0xcf, 0x21, 0x10, 0x2a, 0x10, 0x22, 0x10, 0x2a, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x10, 0x2a, 0xef, 0x29, 0xef, 0x29, 0xef, 0x29, 0xcf, 0x29, 0x10, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xae, 0x21, 0xcf, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0x8e, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0x8e, 0x21, 0xae, 0x21, 0xaf, 0x21, 0xaf, 0x21, 0xaf, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x11, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x52, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, + 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0x14, 0x3b, 0x3a, 0x54, 0x5b, 0x5c, 0x5a, 0x5c, 0x19, 0x54, 0x1a, 0x54, 0x19, 0x54, 0x19, 0x54, 0x39, 0x54, 0x19, 0x54, 0x19, 0x54, 0x19, 0x54, 0x18, 0x54, 0xf8, 0x53, 0xf7, 0x53, 0x55, 0x43, 0xf4, 0x3a, 0xd4, 0x32, 0xf4, 0x3a, 0xf4, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x34, 0x43, 0x34, 0x43, 0x54, 0x43, 0x14, 0x3b, 0xf4, 0x3a, 0x14, 0x3b, 0xf4, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x92, 0x32, 0x8e, 0x19, 0x0b, 0x01, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xd0, 0x21, 0x11, 0x22, 0x31, 0x2a, 0x52, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x43, 0x96, 0x4b, 0xb7, 0x4b, 0x96, 0x4b, 0xf3, 0x3a, 0x14, 0x43, 0x34, 0x43, 0x35, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x55, 0x43, 0x76, 0x43, 0x96, 0x4b, 0xb7, 0x4b, 0x18, 0x54, 0xd7, 0x4b, 0xb3, 0x2a, 0x72, 0x2a, 0xb2, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x43, 0x33, 0x43, 0x33, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0xf2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x54, 0x43, 0xfc, 0x6c, 0x7f, 0x75, 0xfe, 0x64, 0xde, 0x64, 0xde, 0x64, 0x7b, 0x5c, 0x39, 0x54, 0x59, 0x5c, 0x9a, 0x64, 0xdc, 0x6c, 0x3e, 0x75, 0x7f, 0x7d, 0x7f, 0x7d, 0x5e, 0x7d, 0xfc, 0x74, 0x79, 0x64, 0xf7, 0x53, 0x95, 0x4b, 0x34, 0x43, 0xf3, 0x3a, 0x93, 0x32, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x11, 0x22, 0x10, 0x22, 0x10, 0x22, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x22, 0x31, 0x22, 0xf0, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xf0, 0x21, 0x51, 0x2a, 0xcf, 0x21, 0x4c, 0x11, 0x4c, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x2c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x2c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0xcf, 0x21, 0x10, 0x2a, 0xf0, 0x21, 0xd0, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xef, 0x29, 0x31, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0xf0, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0x8e, 0x21, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x2a, + 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0x14, 0x3b, 0xb7, 0x4b, 0x3a, 0x54, 0x7b, 0x5c, 0x3a, 0x54, 0x19, 0x54, 0x3a, 0x54, 0x3a, 0x54, 0x3a, 0x54, 0x39, 0x54, 0x3a, 0x54, 0x3a, 0x54, 0x39, 0x54, 0x39, 0x54, 0x18, 0x5c, 0xb7, 0x4b, 0x55, 0x43, 0xf4, 0x32, 0xd4, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd4, 0x32, 0xf4, 0x3a, 0x34, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x4b, 0x75, 0x4b, 0x55, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x43, 0x55, 0x43, 0xae, 0x19, 0x2c, 0x09, 0x0b, 0x09, 0x0c, 0x09, 0x0b, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x2c, 0x09, 0x2c, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x6d, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xaf, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x31, 0x2a, 0x52, 0x2a, 0x92, 0x2a, 0x93, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x55, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0x55, 0x43, 0xd3, 0x3a, 0xf4, 0x3a, 0x14, 0x43, 0x34, 0x43, 0x35, 0x43, 0x35, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x56, 0x43, 0x96, 0x43, 0xb7, 0x4b, 0xd7, 0x4b, 0xf8, 0x53, 0x96, 0x4b, 0x92, 0x2a, 0x92, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x53, 0x43, 0x53, 0x43, 0x33, 0x43, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0xf2, 0x3a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0x14, 0x33, 0x39, 0x54, 0x5f, 0x75, 0x1f, 0x65, 0xff, 0x64, 0xff, 0x64, 0xde, 0x64, 0x7a, 0x5c, 0x38, 0x54, 0x59, 0x5c, 0x79, 0x64, 0x9a, 0x6c, 0xdc, 0x6c, 0xfc, 0x74, 0xdb, 0x6c, 0x79, 0x64, 0x38, 0x5c, 0xd6, 0x53, 0x75, 0x4b, 0x34, 0x43, 0xd3, 0x3a, 0xb3, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x22, 0x31, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x11, 0x22, 0x11, 0x22, 0xf0, 0x21, 0xf0, 0x21, 0xd0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0x10, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0x2c, 0x09, 0x4c, 0x11, 0x6d, 0x19, 0x4d, 0x11, 0x4c, 0x11, 0x2c, 0x11, 0x2c, 0x11, 0x2c, 0x11, 0x4c, 0x11, 0x2c, 0x11, 0x4c, 0x11, 0x2c, 0x09, 0xae, 0x19, 0x10, 0x22, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xf0, 0x21, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0xef, 0x21, 0xb2, 0x32, 0x30, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0xcf, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0x8e, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0x8e, 0x21, 0x8e, 0x21, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xaf, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, + 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xf4, 0x3a, 0x34, 0x3b, 0x35, 0x43, 0x96, 0x43, 0x5a, 0x5c, 0x9d, 0x5c, 0x5b, 0x5c, 0x3a, 0x5c, 0x5b, 0x54, 0x5a, 0x5c, 0x3a, 0x5c, 0x5b, 0x5c, 0x5b, 0x5c, 0x5a, 0x5c, 0x39, 0x5c, 0x39, 0x5c, 0xf8, 0x53, 0x56, 0x43, 0xd4, 0x3a, 0xf4, 0x3a, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x96, 0x4b, 0xb5, 0x4b, 0x95, 0x53, 0x95, 0x4b, 0x75, 0x4b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x14, 0x3b, 0xef, 0x21, 0x2b, 0x09, 0x0b, 0x01, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0c, 0x09, 0x0c, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x0c, 0x09, 0x2c, 0x09, 0x4d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xaf, 0x21, 0xcf, 0x21, 0x10, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0x14, 0x3b, 0x55, 0x3b, 0x96, 0x43, 0x55, 0x43, 0xb2, 0x32, 0xd3, 0x3a, 0xf4, 0x3a, 0x14, 0x3b, 0x34, 0x43, 0x54, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x76, 0x43, 0x96, 0x4b, 0xb7, 0x4b, 0xd7, 0x53, 0xd8, 0x53, 0x35, 0x3b, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x53, 0x43, 0x53, 0x3b, 0x53, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xf4, 0x32, 0x14, 0x3b, 0x14, 0x3b, 0x75, 0x43, 0x9c, 0x5c, 0x3f, 0x6d, 0xff, 0x64, 0xff, 0x64, 0xde, 0x64, 0xde, 0x64, 0x9b, 0x5c, 0x38, 0x54, 0x18, 0x54, 0x39, 0x5c, 0x39, 0x5c, 0x58, 0x5c, 0x38, 0x5c, 0x18, 0x5c, 0xd7, 0x53, 0xb6, 0x4b, 0x75, 0x43, 0x34, 0x3b, 0xf3, 0x3a, 0xb3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x11, 0x2a, 0x11, 0x2a, 0xf0, 0x21, 0xf0, 0x21, 0x10, 0x22, 0xd0, 0x21, 0xcf, 0x21, 0xd0, 0x21, 0xd0, 0x21, 0x10, 0x2a, 0x11, 0x2a, 0x31, 0x2a, 0xae, 0x21, 0x6d, 0x19, 0x8d, 0x19, 0x6d, 0x11, 0x4d, 0x11, 0x2c, 0x11, 0x2c, 0x11, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x11, 0x2c, 0x11, 0x2c, 0x09, 0x2c, 0x11, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0x10, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x71, 0x32, 0x75, 0x43, 0xb2, 0x32, 0x51, 0x2a, 0x10, 0x2a, 0xcf, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0x8e, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xaf, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xf0, 0x21, 0x10, 0x22, 0x10, 0x22, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x2a, +#endif +#if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP != 0 + /*Pixel format: Red: 5 bit, Green: 6 bit, Blue: 5 bit BUT the 2 bytes are swapped*/ + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, + 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, + 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, + 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, + 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, + 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, + 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, + 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, + 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, + 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, + 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, + 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, + 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, + 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, + 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, + 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, + 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, + 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4c, 0x37, 0x4c, 0x38, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x58, 0x54, 0x57, 0x54, 0x57, 0x54, 0x57, 0x54, 0x57, 0x54, 0x57, 0x54, 0x57, 0x54, 0x57, 0x54, 0x57, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, + 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4c, 0x17, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x57, 0x54, 0x57, 0x54, 0x57, 0x54, 0x57, 0x54, 0x57, 0x54, 0x57, 0x54, 0x57, 0x54, 0x77, 0x54, 0x57, 0x54, 0x57, 0x54, 0x57, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, + 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x54, 0x37, 0x54, 0x78, 0x54, 0x77, 0x54, 0x77, 0x54, 0x78, 0x54, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x54, 0x78, 0x54, 0x78, 0x54, 0x78, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, + 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4c, 0x17, 0x54, 0x78, 0x54, 0x77, 0x54, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x54, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, + 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x54, 0x57, 0x54, 0x78, 0x54, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x54, 0x78, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4c, 0x37, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xd6, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xd6, + 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4c, 0x16, 0x54, 0x78, 0x54, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x64, 0x78, 0x64, 0x78, 0x64, 0x78, 0x64, 0x78, 0x64, 0x78, 0x64, 0x78, 0x64, 0x78, 0x64, 0x78, 0x64, 0x78, 0x64, 0x78, 0x64, 0x78, 0x64, 0x78, 0x64, 0x78, 0x64, 0x78, 0x64, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x54, 0x78, 0x54, 0x78, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x18, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x43, 0xd6, + 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x54, 0x37, 0x54, 0x78, 0x54, 0x78, 0x5c, 0x98, 0x5c, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x5c, 0x98, 0x5c, 0x98, 0x54, 0x78, 0x54, 0x78, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x78, 0x54, 0x78, 0x54, 0x78, 0x54, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x43, 0xd6, + 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xf7, 0x54, 0x58, 0x54, 0x78, 0x54, 0x78, 0x5c, 0x98, 0x5c, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x5c, 0x98, 0x5c, 0x98, 0x54, 0x78, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0x98, 0x54, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, + 0x4b, 0xf6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x98, 0x5c, 0x98, 0x5c, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x5c, 0x98, 0x5c, 0x98, 0x54, 0x78, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0x98, 0x54, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, + 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x98, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0xb8, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0xb8, 0x64, 0x98, 0x64, 0x98, 0x64, 0xb8, 0x64, 0x98, 0x64, 0x98, 0x5c, 0x98, 0x5c, 0xb8, 0x54, 0x98, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xf6, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x5c, 0x78, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0x98, 0x54, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, + 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xf7, 0x54, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x98, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x64, 0xb8, 0x64, 0xb8, 0x6c, 0xb8, 0x6c, 0xb8, 0x6c, 0xb8, 0x6c, 0xb8, 0x6c, 0xb8, 0x6c, 0xb8, 0x6c, 0xb8, 0x6c, 0xb8, 0x6c, 0xb8, 0x6c, 0xb8, 0x64, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x54, 0x98, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x78, 0x54, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x4c, 0x38, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x18, 0x54, 0x38, 0x54, 0x58, 0x54, 0x78, 0x5c, 0xb8, 0x5c, 0xb8, 0x64, 0xb8, 0x64, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0x98, 0x54, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, + 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x78, 0x54, 0x98, 0x5c, 0xb8, 0x5c, 0xb8, 0x64, 0xb8, 0x64, 0xb8, 0x64, 0xb8, 0x6c, 0xb8, 0x6c, 0xb8, 0x64, 0xb8, 0x64, 0xb8, 0x64, 0xb8, 0x64, 0xb8, 0x64, 0xb8, 0x64, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x54, 0x98, 0x54, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb6, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x58, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x98, 0x5c, 0x78, 0x54, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x38, 0x54, 0x78, 0x5c, 0x98, 0x5c, 0xb8, 0x64, 0xb8, 0x64, 0xb8, 0x64, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0x98, 0x54, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, + 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4c, 0x17, 0x54, 0x59, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x98, 0x54, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0xd8, 0x5c, 0xb8, 0x64, 0xd8, 0x5c, 0xd8, 0x5c, 0xd8, 0x5c, 0xd8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0x98, 0x54, 0x98, 0x54, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0xb5, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb6, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x98, 0x5c, 0x58, 0x54, 0x37, 0x54, 0x37, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x4b, 0xd6, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x58, 0x54, 0x78, 0x5c, 0x98, 0x5c, 0xb8, 0x64, 0xb8, 0x64, 0xb8, 0x64, 0xb8, 0x5c, 0xd8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, + 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0xb5, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xf7, 0x54, 0x59, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x98, 0x54, 0x98, 0x5c, 0xd8, 0x5c, 0xd8, 0x5c, 0xd8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0x98, 0x54, 0x78, 0x54, 0x78, 0x54, 0x78, 0x54, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x59, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0xd6, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x59, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x59, 0x54, 0x79, 0x5c, 0x79, 0x5c, 0x78, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x98, 0x54, 0x57, 0x54, 0x17, 0x54, 0x17, 0x54, 0x37, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x58, 0x54, 0x58, 0x5c, 0x79, 0x5c, 0x99, 0x5c, 0xd8, 0x5c, 0xd8, 0x5c, 0xd8, 0x5c, 0xd8, 0x5c, 0xd8, 0x5c, 0xb8, 0x5c, 0x99, 0x54, 0x79, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xf7, + 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x16, 0x4c, 0x16, 0x4b, 0xf6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xf7, 0x54, 0x59, 0x54, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x54, 0x59, 0x54, 0x58, 0x54, 0x79, 0x54, 0x78, 0x54, 0x98, 0x54, 0xb9, 0x5c, 0xb9, 0x54, 0x79, 0x54, 0x79, 0x54, 0x99, 0x54, 0x99, 0x54, 0x99, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x59, 0x54, 0x79, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x54, 0x58, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x4b, 0xd6, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x58, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x99, 0x5c, 0x78, 0x54, 0x37, 0x4c, 0x17, 0x54, 0x17, 0x54, 0x37, 0x54, 0x38, 0x54, 0x58, 0x54, 0x59, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x18, 0x54, 0x38, 0x54, 0x58, 0x54, 0x59, 0x5c, 0x79, 0x5c, 0x99, 0x5c, 0xb9, 0x5c, 0xb9, 0x5c, 0xd9, 0x5c, 0xd9, 0x5c, 0xb9, 0x5c, 0x99, 0x5c, 0x79, 0x54, 0x79, 0x54, 0x59, 0x54, 0x59, 0x54, 0x39, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd6, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x4c, 0x37, 0x54, 0x58, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x99, 0x54, 0x99, 0x54, 0x99, 0x54, 0x99, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x5c, 0x79, 0x54, 0x58, 0x54, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x54, 0x17, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x79, 0x54, 0x79, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x5c, 0x99, 0x5c, 0x58, 0x54, 0x17, 0x4c, 0x17, 0x54, 0x17, 0x54, 0x37, 0x54, 0x38, 0x54, 0x58, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x79, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4b, 0xf7, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x39, 0x54, 0x59, 0x54, 0x59, 0x5c, 0x79, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0xb9, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x79, 0x54, 0x79, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xf7, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x4b, 0xf7, 0x43, 0xf7, 0x44, 0x17, 0x4c, 0x17, 0x54, 0x79, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x59, 0x54, 0x79, 0x5c, 0xb9, 0x5c, 0xb9, 0x5c, 0xb9, 0x5c, 0xb9, 0x5c, 0x99, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x5c, 0x79, 0x54, 0x79, 0x5c, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x58, 0x54, 0x37, 0x54, 0x17, 0x54, 0x17, 0x4c, 0x37, 0x4b, 0xf7, 0x3b, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4b, 0xf7, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x54, 0x17, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x58, 0x54, 0x79, 0x54, 0x79, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x17, 0x54, 0x37, 0x54, 0x58, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x79, 0x5c, 0x79, 0x54, 0x79, 0x54, 0x59, 0x54, 0x17, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x18, 0x54, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x79, 0x54, 0x79, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0xd6, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x16, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x4c, 0x17, 0x4c, 0x17, 0x44, 0x17, 0x44, 0x17, 0x43, 0xf7, 0x43, 0xf7, 0x4c, 0x17, 0x54, 0x58, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0xd9, 0x5c, 0xd9, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x54, 0x99, 0x54, 0x99, 0x5c, 0x99, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x99, 0x5c, 0x79, 0x5c, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x58, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x43, 0xb6, 0x43, 0x95, 0x3b, 0x75, 0x43, 0x95, 0x3b, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x4b, 0xd7, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x4c, 0x17, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x18, 0x54, 0x38, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x59, 0x54, 0x79, 0x54, 0x38, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x17, 0x54, 0x38, 0x54, 0x58, 0x5c, 0x79, 0x5c, 0x99, 0x5c, 0xb9, 0x64, 0xb9, 0x5c, 0xd9, 0x5c, 0xb9, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x79, 0x4b, 0xf7, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xb6, 0x54, 0x38, 0x54, 0x39, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xd7, 0x4b, 0xd7, 0x43, 0xd6, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x44, 0x17, 0x44, 0x17, 0x44, 0x17, 0x43, 0xf7, 0x43, 0xf7, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x58, 0x5c, 0xb8, 0x5c, 0xd9, 0x5c, 0xd9, 0x5c, 0xb9, 0x5c, 0xb9, 0x5c, 0xb9, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0xb9, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x58, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0xb6, 0x4b, 0xf7, 0x43, 0xd7, 0x43, 0xd6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x37, 0x54, 0x37, 0x54, 0x58, 0x54, 0x58, 0x54, 0x37, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x4b, 0xf7, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x59, 0x54, 0x79, 0x5c, 0x99, 0x54, 0x99, 0x54, 0x79, 0x54, 0x58, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x37, 0x54, 0x58, 0x5c, 0x79, 0x5c, 0x99, 0x5c, 0xb9, 0x64, 0xd9, 0x64, 0xf9, 0x64, 0xf9, 0x64, 0xf9, 0x64, 0xf9, 0x54, 0x37, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xd6, 0x54, 0x38, 0x54, 0x39, 0x4c, 0x18, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x5c, 0x79, 0x54, 0x79, 0x5c, 0x79, 0x54, 0x78, 0x54, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd6, 0x43, 0xd7, 0x4c, 0x17, 0x4c, 0x17, + 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x43, 0xf7, 0x44, 0x17, 0x44, 0x17, 0x44, 0x17, 0x44, 0x17, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x57, 0x54, 0x58, 0x54, 0x78, 0x5c, 0xd9, 0x64, 0xf9, 0x5c, 0xb9, 0x5c, 0x99, 0x5c, 0xb9, 0x5c, 0xb9, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0xb9, 0x5c, 0xb9, 0x5c, 0xb9, 0x54, 0x78, 0x54, 0x37, 0x4c, 0x17, 0x4b, 0xf6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x3b, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0xb6, 0x4b, 0xd7, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x37, 0x54, 0x38, 0x54, 0x58, 0x5c, 0x58, 0x54, 0x37, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0xb6, 0x54, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x5c, 0x99, 0x5c, 0x99, 0x54, 0x79, 0x4c, 0x37, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x17, 0x54, 0x38, 0x54, 0x79, 0x5c, 0x99, 0x64, 0xb9, 0x64, 0xd9, 0x64, 0xf9, 0x65, 0x19, 0x6d, 0x19, 0x5c, 0x98, 0x4b, 0xd6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x54, 0x38, 0x54, 0x39, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, + 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x44, 0x17, 0x44, 0x17, 0x44, 0x17, 0x44, 0x17, 0x44, 0x17, 0x43, 0xf7, 0x4c, 0x17, 0x43, 0xf7, 0x4c, 0x17, 0x44, 0x17, 0x43, 0xf7, 0x43, 0xf7, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x58, 0x54, 0x78, 0x54, 0x78, 0x54, 0x57, 0x54, 0x57, 0x54, 0x57, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x16, 0x43, 0xd6, 0x43, 0xb5, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x5c, 0x58, 0x54, 0x37, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x4c, 0x17, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x5c, 0x99, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x59, 0x5c, 0x99, 0x5c, 0xb9, 0x64, 0xd9, 0x65, 0x19, 0x6d, 0x19, 0x6d, 0x39, 0x54, 0x16, 0x4b, 0xb5, 0x4b, 0xb6, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x54, 0x38, 0x54, 0x39, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x99, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x37, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xd6, 0x43, 0xd7, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, + 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0xd6, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x44, 0x17, 0x4c, 0x17, 0x44, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x43, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0x95, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x17, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x4b, 0xd6, 0x54, 0x38, 0x5c, 0x99, 0x54, 0x59, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x58, 0x5c, 0x79, 0x5c, 0x99, 0x64, 0xd9, 0x65, 0x19, 0x6d, 0x39, 0x54, 0x37, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x75, 0x54, 0x18, 0x54, 0x59, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xd7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, + 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x44, 0x17, 0x4c, 0x17, 0x44, 0x17, 0x43, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x44, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x17, 0x4b, 0xf7, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0xd6, 0x4b, 0xd7, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x37, 0x4c, 0x17, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x4b, 0xd6, 0x54, 0x38, 0x54, 0x39, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x59, 0x5c, 0x99, 0x5c, 0xb9, 0x64, 0xfa, 0x64, 0xd8, 0x54, 0x16, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x75, 0x43, 0xd6, 0x54, 0x59, 0x54, 0x59, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, + 0x43, 0xf7, 0x43, 0xf7, 0x4b, 0xf7, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x44, 0x17, 0x43, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0xb6, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x75, 0x43, 0xb5, 0x4c, 0x18, 0x54, 0x59, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x37, 0x54, 0x58, 0x5c, 0x79, 0x5c, 0x9a, 0x5c, 0xb9, 0x54, 0x37, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x55, 0x54, 0x58, 0x54, 0x59, 0x54, 0x39, 0x4c, 0x18, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x18, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, + 0x4b, 0xf7, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x43, 0xf7, 0x4c, 0x17, 0x44, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0x96, 0x43, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x54, 0x4b, 0xd6, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x59, 0x5c, 0x9a, 0x5c, 0x99, 0x4b, 0xf6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x4b, 0xf7, 0x54, 0x59, 0x54, 0x59, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, + 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0x95, 0x43, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x4b, 0xf7, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x59, 0x5c, 0x79, 0x4c, 0x17, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0xb6, 0x54, 0x18, 0x5c, 0x79, 0x54, 0x59, 0x4c, 0x18, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, + 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x38, 0x4c, 0x58, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x58, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x17, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0xb6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x4c, 0x17, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x38, 0x4b, 0xd6, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x95, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0xb6, 0x54, 0x38, 0x54, 0x59, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x17, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, + 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4b, 0xf7, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x38, 0x4c, 0x37, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x58, 0x4c, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x79, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xd6, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x4b, 0xf7, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x4b, 0xf6, 0x54, 0x59, 0x54, 0x39, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x17, 0x54, 0x18, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x43, 0xf7, 0x43, 0xf7, + 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd6, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4c, 0x18, 0x54, 0x59, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x37, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x58, 0x54, 0x58, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x58, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x3b, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb6, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x18, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x4b, 0xf7, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x4b, 0xd7, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x4c, 0x18, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x17, 0x4c, 0x17, 0x54, 0x17, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x43, 0xf7, 0x4b, 0xd7, + 0x4b, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x58, 0x4c, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x59, 0x54, 0x79, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x79, 0x54, 0x79, 0x5c, 0x9a, 0x5c, 0x99, 0x54, 0x59, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x4b, 0xf7, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0xb6, 0x4b, 0xd7, 0x54, 0x18, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x18, 0x54, 0x38, 0x54, 0x59, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, + 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x37, 0x4c, 0x38, 0x4c, 0x58, 0x4c, 0x38, 0x54, 0x58, 0x54, 0x79, 0x54, 0x58, 0x54, 0x59, 0x54, 0x79, 0x54, 0x9a, 0x54, 0x99, 0x5c, 0x9a, 0x5c, 0xda, 0x5c, 0xba, 0x5c, 0xba, 0x5c, 0xba, 0x5c, 0x99, 0x54, 0x59, 0x54, 0x79, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x17, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xb6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x74, 0x3b, 0x74, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x33, 0x13, 0x4b, 0xd6, 0x54, 0x38, 0x54, 0x38, 0x54, 0x17, 0x54, 0x17, 0x4b, 0xf7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x75, 0x4b, 0xd6, 0x54, 0x38, 0x54, 0x18, 0x54, 0x18, 0x54, 0x17, 0x4c, 0x17, 0x54, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x39, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, + 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x39, 0x4c, 0x59, 0x4c, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x38, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x79, 0x54, 0x59, 0x54, 0x79, 0x54, 0x9a, 0x5c, 0x9a, 0x5c, 0xb9, 0x5c, 0xda, 0x5c, 0xda, 0x5c, 0xda, 0x5c, 0xda, 0x64, 0xfa, 0x64, 0xfa, 0x5c, 0xda, 0x5c, 0x7a, 0x5c, 0x9a, 0x5c, 0x9a, 0x54, 0x79, 0x54, 0x59, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x37, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x74, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x54, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x33, 0x13, 0x43, 0x95, 0x54, 0x18, 0x54, 0x38, 0x54, 0x37, 0x4c, 0x17, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x95, 0x43, 0xb6, 0x4b, 0xf7, 0x54, 0x18, 0x54, 0x17, 0x54, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, + 0x4b, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x39, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x58, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x54, 0x38, 0x54, 0x59, 0x54, 0x79, 0x5c, 0x9a, 0x5c, 0xda, 0x5c, 0xda, 0x64, 0xfa, 0x65, 0x3a, 0x65, 0x3a, 0x65, 0x3a, 0x65, 0x5a, 0x65, 0x3a, 0x5c, 0xba, 0x5c, 0xba, 0x5c, 0xba, 0x5c, 0x9a, 0x5c, 0x9a, 0x5c, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x75, 0x3b, 0x74, 0x3b, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x33, 0x14, 0x33, 0x13, 0x43, 0x75, 0x54, 0x17, 0x54, 0x38, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0xb6, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, + 0x43, 0xd7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x59, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x59, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x9a, 0x5c, 0xba, 0x64, 0xfa, 0x65, 0x1a, 0x65, 0x5a, 0x6d, 0x7a, 0x6d, 0x79, 0x6d, 0x7a, 0x6d, 0x5a, 0x65, 0x1a, 0x65, 0x1a, 0x64, 0xfa, 0x64, 0xda, 0x64, 0xda, 0x5c, 0xba, 0x5c, 0xba, 0x5c, 0x9a, 0x5c, 0x9a, 0x5c, 0x79, 0x54, 0x79, 0x5c, 0x79, 0x54, 0x17, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x54, 0x37, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x33, 0x14, 0x33, 0x13, 0x32, 0xf3, 0x3b, 0x34, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xf6, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, + 0x43, 0xd6, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x37, 0x54, 0x58, 0x54, 0x58, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x39, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x9a, 0x5c, 0x9a, 0x64, 0xfa, 0x65, 0x1a, 0x6d, 0x5a, 0x6d, 0x9a, 0x6d, 0x7a, 0x75, 0x9a, 0x75, 0x99, 0x75, 0x9a, 0x75, 0x9a, 0x6d, 0x7a, 0x6d, 0x7a, 0x6d, 0x7a, 0x6d, 0x7a, 0x6d, 0x5a, 0x64, 0xfa, 0x64, 0xda, 0x64, 0xda, 0x64, 0xba, 0x54, 0x37, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x4c, 0x18, 0x43, 0xf7, 0x43, 0xd6, 0x3b, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x33, 0x14, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x43, 0x95, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x95, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, + 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x4c, 0x18, 0x54, 0x38, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x43, 0xd6, 0x43, 0xb6, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x9a, 0x5c, 0x9a, 0x64, 0xda, 0x65, 0x1a, 0x6d, 0x5a, 0x6d, 0x9a, 0x75, 0x99, 0x75, 0x9a, 0x7d, 0x9a, 0x7d, 0x9a, 0x7d, 0x9a, 0x7d, 0x9a, 0x75, 0x9a, 0x75, 0x9a, 0x7d, 0x9a, 0x75, 0x9a, 0x75, 0x9a, 0x75, 0x7a, 0x64, 0xf9, 0x54, 0x37, 0x3b, 0x74, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x39, 0x54, 0x39, 0x54, 0x59, 0x54, 0x39, 0x54, 0x38, 0x4c, 0x17, 0x43, 0xd7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd7, 0x4b, 0xf7, 0x54, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x34, 0x43, 0x75, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, + 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf7, 0x43, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x17, 0x54, 0x17, 0x3b, 0x95, 0x43, 0x95, 0x4b, 0xd6, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x54, 0x38, 0x54, 0x38, 0x54, 0x59, 0x54, 0x79, 0x5c, 0x7a, 0x5c, 0x9a, 0x5c, 0xba, 0x65, 0x1a, 0x6d, 0x5a, 0x6d, 0x7a, 0x75, 0x9a, 0x75, 0x9a, 0x7d, 0x9a, 0x85, 0x9a, 0x85, 0x9a, 0x8d, 0x9a, 0x8d, 0x9a, 0x85, 0x9a, 0x85, 0x9a, 0x85, 0x9a, 0x85, 0x9a, 0x75, 0x39, 0x5c, 0x57, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x38, 0x54, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x59, 0x54, 0x39, 0x54, 0x39, 0x4c, 0x18, 0x43, 0xf7, 0x43, 0xd6, 0x43, 0xd7, 0x4b, 0xf7, 0x54, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x13, 0x33, 0x13, 0x32, 0xf3, 0x3b, 0x54, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x43, 0x75, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, + 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd7, 0x43, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x38, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xf7, 0x54, 0x17, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x95, 0x4b, 0xd6, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x54, 0x59, 0x54, 0x39, 0x54, 0x59, 0x54, 0x79, 0x5c, 0x7a, 0x5c, 0x9a, 0x64, 0xda, 0x65, 0x1a, 0x6d, 0x7a, 0x6d, 0x9a, 0x75, 0x9a, 0x7d, 0x9a, 0x7d, 0x9a, 0x85, 0x9a, 0x95, 0x9a, 0x95, 0xba, 0x95, 0xba, 0x95, 0x9a, 0x95, 0xbb, 0x8d, 0x7a, 0x64, 0x57, 0x4b, 0xb5, 0x43, 0x74, 0x4b, 0x95, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xb6, 0x43, 0xb6, 0x4b, 0xb6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x59, 0x4c, 0x18, 0x43, 0xd7, 0x4c, 0x17, 0x54, 0x17, 0x54, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x33, 0x13, 0x33, 0x13, 0x32, 0xd2, 0x3b, 0x55, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x43, 0x75, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, + 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xf7, 0x43, 0x95, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x95, 0x4b, 0xd6, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x5c, 0x7a, 0x5c, 0x9a, 0x5c, 0xba, 0x64, 0xda, 0x65, 0x1a, 0x6d, 0x7a, 0x75, 0xba, 0x75, 0xba, 0x7d, 0xba, 0x85, 0xba, 0x8d, 0xba, 0x95, 0xba, 0x95, 0xbb, 0x95, 0xbb, 0x9d, 0xbb, 0x8d, 0x39, 0x4b, 0x95, 0x43, 0x75, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xd5, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x59, 0x4c, 0x17, 0x54, 0x17, 0x54, 0x17, 0x54, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x33, 0x13, 0x32, 0xf3, 0x3b, 0x13, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x43, 0x75, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0x95, 0x3b, 0xb5, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, + 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xf7, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x54, 0x59, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x9a, 0x5c, 0xba, 0x5c, 0xba, 0x64, 0xfa, 0x6d, 0x3a, 0x6d, 0x9b, 0x75, 0xba, 0x75, 0xba, 0x7d, 0xba, 0x85, 0xba, 0x8d, 0xba, 0x9d, 0xbb, 0x9d, 0xbb, 0x95, 0x9a, 0x6c, 0x97, 0x43, 0x74, 0x43, 0x75, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0xb5, 0x4b, 0xd5, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x7b, 0x5c, 0x7a, 0x54, 0x58, 0x54, 0x38, 0x54, 0x37, 0x4c, 0x17, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x95, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x13, 0x32, 0xf3, 0x3b, 0x54, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3a, 0xf3, 0x3b, 0x34, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0x95, 0x3b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, + 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x43, 0xb6, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x4b, 0xd6, 0x54, 0x38, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x54, 0x79, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x7a, 0x5c, 0xbb, 0x64, 0xda, 0x65, 0x1a, 0x6d, 0x3a, 0x6d, 0x7a, 0x75, 0xba, 0x75, 0xba, 0x7d, 0xba, 0x85, 0xba, 0x85, 0xba, 0x95, 0xbb, 0x95, 0x9a, 0x64, 0x36, 0x43, 0x74, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xd6, 0x4b, 0xf6, 0x53, 0xf6, 0x53, 0xf6, 0x53, 0xf6, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x17, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x59, 0x54, 0x59, 0x4c, 0x38, 0x4c, 0x18, 0x54, 0x38, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x7b, 0x5c, 0x7b, 0x5c, 0x9a, 0x54, 0x59, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x43, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0xb5, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x32, 0xf3, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x33, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, + 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x4b, 0xb6, 0x54, 0x38, 0x54, 0x17, 0x54, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x5c, 0x7a, 0x5c, 0x9a, 0x64, 0xfb, 0x65, 0x3b, 0x6d, 0x3b, 0x6d, 0x3a, 0x75, 0x7a, 0x75, 0xba, 0x7d, 0xba, 0x7d, 0xba, 0x85, 0xba, 0x8d, 0x7a, 0x53, 0xb5, 0x43, 0x74, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0xb5, 0x53, 0xd5, 0x53, 0xf6, 0x53, 0xf6, 0x54, 0x16, 0x54, 0x16, 0x54, 0x16, 0x54, 0x16, 0x54, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x54, 0x17, 0x4c, 0x17, 0x54, 0x18, 0x54, 0x18, 0x4c, 0x17, 0x54, 0x18, 0x54, 0x18, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x7b, 0x54, 0x7b, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9b, 0x54, 0x59, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0xb5, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x13, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x34, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x95, 0x3b, 0x95, 0x43, 0x95, 0x43, 0x95, + 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xb6, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0xb6, 0x54, 0x38, 0x54, 0x18, 0x54, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x5c, 0x9a, 0x5c, 0xdb, 0x64, 0xdb, 0x64, 0xfb, 0x6d, 0x5b, 0x6d, 0x3a, 0x6d, 0x7b, 0x75, 0x9b, 0x75, 0xdb, 0x7d, 0xda, 0x7d, 0x7a, 0x43, 0x74, 0x43, 0x75, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0xb5, 0x4b, 0xb5, 0x53, 0xd5, 0x53, 0xf5, 0x53, 0xf6, 0x53, 0xf6, 0x54, 0x16, 0x53, 0xf6, 0x54, 0x16, 0x54, 0x17, 0x54, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x17, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7b, 0x5c, 0x7b, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9b, 0x54, 0x59, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x43, 0xf6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0x96, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x95, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x43, 0x75, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x95, 0x3b, 0x95, 0x43, 0x95, + 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x43, 0x96, 0x54, 0x18, 0x54, 0x38, 0x54, 0x18, 0x54, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x5c, 0x9a, 0x5c, 0x7a, 0x5c, 0x9a, 0x64, 0xfa, 0x64, 0xfb, 0x64, 0xfb, 0x64, 0xfb, 0x64, 0xfb, 0x65, 0x3b, 0x6d, 0x5a, 0x6d, 0x5b, 0x75, 0xbb, 0x75, 0x59, 0x4b, 0xd5, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x4b, 0x75, 0x43, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xd5, 0x4b, 0xf5, 0x53, 0xf6, 0x53, 0xf6, 0x53, 0xf6, 0x53, 0xf6, 0x53, 0xf6, 0x53, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x7b, 0x54, 0x9a, 0x5c, 0xbb, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9b, 0x54, 0x59, 0x4c, 0x17, 0x4b, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0xb6, 0x3b, 0x96, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x95, 0x4b, 0xf7, 0x4b, 0xf7, 0x43, 0xd7, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x43, 0x95, 0x43, 0xb6, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x2a, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x33, 0x13, 0x33, 0x13, 0x33, 0x13, 0x33, 0x13, 0x33, 0x13, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, + 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x95, 0x4b, 0xd7, 0x54, 0x59, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x7a, 0x5c, 0x9a, 0x5c, 0xda, 0x65, 0x1b, 0x6d, 0x1b, 0x6d, 0x1b, 0x65, 0x1b, 0x64, 0xda, 0x64, 0xfb, 0x65, 0x3b, 0x6d, 0x5b, 0x64, 0xfa, 0x4b, 0xd5, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xd5, 0x4b, 0xd5, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x9a, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0x9b, 0x5c, 0x9b, 0x54, 0x59, 0x4b, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0xb6, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x33, 0x14, 0x33, 0x13, 0x33, 0x14, 0x33, 0x14, 0x33, 0x13, 0x33, 0x13, 0x33, 0x13, 0x32, 0xf3, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x33, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, + 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x75, 0x4b, 0xb6, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xbb, 0x64, 0xfb, 0x6d, 0x1b, 0x6d, 0x1b, 0x6d, 0x1b, 0x65, 0x1b, 0x64, 0xfa, 0x65, 0x1b, 0x65, 0x1a, 0x54, 0x16, 0x3b, 0x54, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x4b, 0xb5, 0x4b, 0xd5, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x43, 0xf7, 0x43, 0xd7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x39, 0x54, 0x39, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x39, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x59, 0x5c, 0x9b, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xbb, 0x54, 0x59, 0x43, 0xf7, 0x4b, 0xf7, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x55, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x2a, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x75, + 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x54, 0x43, 0x95, 0x54, 0x18, 0x54, 0x39, 0x54, 0x38, 0x54, 0x59, 0x5c, 0xbb, 0x5c, 0x9b, 0x5c, 0xbb, 0x5c, 0xdb, 0x64, 0xfb, 0x6d, 0x1b, 0x6d, 0x3b, 0x6d, 0x3b, 0x65, 0x3b, 0x65, 0x1a, 0x54, 0x56, 0x3b, 0x34, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x4b, 0xb5, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd7, 0x43, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x59, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x59, 0x54, 0x9a, 0x5c, 0xbb, 0x5c, 0xdb, 0x64, 0xdb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xbb, 0x54, 0x59, 0x4b, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x2a, 0xd2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xd2, 0x2a, 0xd2, 0x2a, 0xb2, 0x2a, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, + 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x4b, 0xd6, 0x54, 0x38, 0x5c, 0x9a, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xbb, 0x64, 0xdb, 0x64, 0xfb, 0x65, 0x3b, 0x65, 0x3b, 0x65, 0x1b, 0x5c, 0x98, 0x3b, 0x54, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x39, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x79, 0x54, 0x59, 0x54, 0x59, 0x5c, 0xba, 0x5c, 0xdb, 0x5c, 0xdb, 0x64, 0xdb, 0x64, 0xfb, 0x5c, 0xdb, 0x5c, 0x9a, 0x4c, 0x38, 0x4b, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x43, 0xd7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x75, 0x43, 0x96, 0x4b, 0xd7, 0x4b, 0xf7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x2a, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xd2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, + 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x33, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x54, 0x3b, 0x55, 0x5c, 0x78, 0x5c, 0xdb, 0x64, 0xdb, 0x5c, 0xbb, 0x64, 0xdb, 0x5c, 0xdb, 0x64, 0xdb, 0x64, 0xfb, 0x65, 0x1b, 0x64, 0xda, 0x43, 0xb5, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x9a, 0x5c, 0x9b, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0x9b, 0x54, 0x9a, 0x54, 0x7a, 0x54, 0x7a, 0x5c, 0x9a, 0x5c, 0xbb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xdb, 0x54, 0x7a, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xd6, 0x43, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0x96, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x43, 0xd7, 0x54, 0x38, 0x4c, 0x17, 0x54, 0x17, 0x54, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xd2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, + 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3a, 0xf3, 0x3b, 0x13, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x75, 0x54, 0x17, 0x54, 0x37, 0x5c, 0x99, 0x64, 0xfb, 0x64, 0xdb, 0x64, 0xfb, 0x64, 0xdb, 0x64, 0xfb, 0x64, 0xfa, 0x54, 0x37, 0x43, 0x54, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x38, 0x4c, 0x39, 0x4c, 0x39, 0x54, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0xbb, 0x5c, 0xdb, 0x64, 0xfb, 0x64, 0xfb, 0x64, 0xfb, 0x64, 0xfb, 0x5c, 0xdb, 0x5c, 0xbb, 0x54, 0x9b, 0x5c, 0x9b, 0x5c, 0xbb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xbb, 0x5c, 0xdb, 0x64, 0xfb, 0x64, 0xdb, 0x54, 0x79, 0x4c, 0x17, 0x4c, 0x17, 0x44, 0x17, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xd7, 0x3b, 0xd6, 0x3b, 0xd6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x33, 0x34, 0x43, 0xb6, 0x54, 0x38, 0x4c, 0x38, 0x54, 0x37, 0x54, 0x17, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xf7, 0x54, 0x18, 0x4c, 0x18, 0x4b, 0xf7, 0x43, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, + 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x95, 0x54, 0x17, 0x4c, 0x17, 0x54, 0x37, 0x54, 0x58, 0x5c, 0xba, 0x64, 0xdb, 0x65, 0x1b, 0x65, 0x1b, 0x64, 0xb9, 0x3b, 0x54, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x39, 0x4c, 0x38, 0x4c, 0x58, 0x54, 0x79, 0x54, 0x9a, 0x5c, 0xbb, 0x64, 0xfb, 0x65, 0x1b, 0x6d, 0x7b, 0x6d, 0x9b, 0x6d, 0x9b, 0x6d, 0x5b, 0x64, 0xfb, 0x5c, 0xdb, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xdb, 0x5c, 0xbb, 0x64, 0xfb, 0x65, 0x1b, 0x5c, 0xdb, 0x54, 0x79, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x44, 0x17, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xd7, 0x3b, 0xd6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x75, 0x4b, 0xf7, 0x54, 0x38, 0x4c, 0x38, 0x54, 0x37, 0x54, 0x17, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x37, 0x54, 0x58, 0x54, 0x38, 0x54, 0x18, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, + 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xd6, 0x43, 0x95, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0xb5, 0x54, 0x17, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x78, 0x5c, 0xb9, 0x64, 0xda, 0x43, 0xb5, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x7a, 0x54, 0xbb, 0x5c, 0xdb, 0x65, 0x1b, 0x6d, 0x7b, 0x75, 0xdb, 0x75, 0xfa, 0x75, 0xfa, 0x75, 0xdb, 0x6d, 0x9b, 0x65, 0x3b, 0x64, 0xfb, 0x64, 0xdb, 0x5c, 0xbb, 0x5c, 0x9b, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xdb, 0x65, 0x1b, 0x65, 0x1b, 0x5c, 0x9a, 0x4c, 0x58, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x44, 0x17, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xd7, 0x3b, 0xd6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x55, 0x33, 0x54, 0x4b, 0xf7, 0x54, 0x59, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x58, 0x5c, 0x79, 0x5c, 0x79, 0x54, 0x38, 0x54, 0x18, 0x4b, 0xf7, 0x43, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x13, + 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x53, 0xf7, 0x54, 0x17, 0x54, 0x37, 0x54, 0x17, 0x4b, 0xd6, 0x3b, 0x34, 0x43, 0x95, 0x54, 0x17, 0x54, 0x17, 0x54, 0x17, 0x54, 0x37, 0x54, 0x37, 0x54, 0x57, 0x54, 0x58, 0x54, 0x17, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x74, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x79, 0x54, 0x7a, 0x5c, 0xbb, 0x5c, 0xdb, 0x65, 0x3b, 0x6d, 0xbb, 0x75, 0xfa, 0x7d, 0xfa, 0x7d, 0xfa, 0x7d, 0xfa, 0x7d, 0xfa, 0x6d, 0xbb, 0x65, 0x5b, 0x65, 0x1b, 0x64, 0xfb, 0x5c, 0xbb, 0x54, 0x9b, 0x5c, 0xbb, 0x5c, 0xdb, 0x64, 0xfb, 0x65, 0x3b, 0x64, 0xfb, 0x54, 0x79, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x37, 0x44, 0x17, 0x44, 0x17, 0x44, 0x17, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0xd6, 0x3b, 0xd6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0x96, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x43, 0xb6, 0x54, 0x38, 0x54, 0x59, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x37, 0x54, 0x38, 0x54, 0x58, 0x54, 0x59, 0x54, 0x59, 0x5c, 0x9a, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9a, 0x64, 0xbb, 0x5c, 0x9b, 0x5c, 0x7a, 0x54, 0x38, 0x54, 0x38, 0x4b, 0xf7, 0x43, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, + 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x54, 0x17, 0x54, 0x37, 0x5c, 0x38, 0x5c, 0x58, 0x5c, 0x58, 0x54, 0x37, 0x54, 0x17, 0x54, 0x17, 0x54, 0x37, 0x54, 0x37, 0x54, 0x38, 0x54, 0x58, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x94, 0x43, 0x94, 0x43, 0x94, 0x43, 0x94, 0x43, 0x94, 0x43, 0x74, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x39, 0x54, 0x79, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0xdb, 0x5c, 0xfb, 0x6d, 0x5b, 0x75, 0xbb, 0x7d, 0xfa, 0x85, 0xfa, 0x85, 0xfb, 0x8d, 0xfb, 0x85, 0xfb, 0x7d, 0xfa, 0x6d, 0xbb, 0x6d, 0x5b, 0x65, 0x1b, 0x5c, 0xdb, 0x54, 0xbb, 0x54, 0x9b, 0x5c, 0xbb, 0x5c, 0xdb, 0x65, 0x1b, 0x65, 0x3b, 0x5c, 0xba, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x44, 0x17, 0x44, 0x17, 0x44, 0x17, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xd7, 0x3b, 0xd6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x33, 0x54, 0x4b, 0xf8, 0x54, 0x79, 0x54, 0x58, 0x4c, 0x38, 0x4c, 0x18, 0x54, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0xbb, 0x64, 0xdb, 0x64, 0xfb, 0x64, 0xfb, 0x64, 0xfb, 0x64, 0xdb, 0x5c, 0x9b, 0x5c, 0x7a, 0x54, 0x59, 0x54, 0x18, 0x4b, 0xf7, 0x43, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb1, 0x2a, 0x91, 0x2a, 0xb1, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, + 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x54, 0x17, 0x54, 0x17, 0x54, 0x38, 0x5c, 0x9a, 0x64, 0xbb, 0x64, 0xba, 0x5c, 0x58, 0x54, 0x58, 0x54, 0x37, 0x54, 0x37, 0x4b, 0xd6, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x75, 0x43, 0x75, 0x43, 0x74, 0x43, 0x94, 0x43, 0x94, 0x43, 0x94, 0x43, 0x94, 0x43, 0x94, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x38, 0x4c, 0x58, 0x54, 0x58, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0xbb, 0x5c, 0xdb, 0x64, 0xfb, 0x6d, 0x5b, 0x75, 0xdb, 0x7d, 0xfa, 0x85, 0xfb, 0x8d, 0xfb, 0x95, 0xfb, 0x8d, 0xfb, 0x85, 0xfb, 0x75, 0xfa, 0x6d, 0xbb, 0x6d, 0x5b, 0x65, 0x1b, 0x5c, 0xdb, 0x54, 0x9b, 0x5c, 0xbb, 0x5c, 0xdb, 0x5c, 0xdb, 0x65, 0x1b, 0x64, 0xfb, 0x5c, 0x99, 0x54, 0x58, 0x54, 0x58, 0x4c, 0x58, 0x4c, 0x58, 0x4c, 0x38, 0x4c, 0x38, 0x44, 0x38, 0x44, 0x18, 0x44, 0x17, 0x44, 0x17, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xd6, 0x43, 0xb6, 0x3b, 0xb6, 0x3b, 0x96, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0xd6, 0x54, 0x59, 0x54, 0x79, 0x54, 0x58, 0x54, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x9b, 0x64, 0xdb, 0x6d, 0x3b, 0x6d, 0x7b, 0x75, 0x7b, 0x6d, 0x3b, 0x65, 0x1b, 0x64, 0xdb, 0x5c, 0xbb, 0x5c, 0x9a, 0x54, 0x59, 0x54, 0x38, 0x4b, 0xf7, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0x96, 0x3b, 0x96, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x74, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x34, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0xb1, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb1, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0x91, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, + 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xf7, 0x54, 0x38, 0x5c, 0x9a, 0x5c, 0x9a, 0x5c, 0x9b, 0x5c, 0xbb, 0x64, 0xbb, 0x5c, 0xba, 0x54, 0x57, 0x43, 0xb5, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x54, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x94, 0x4b, 0x94, 0x4b, 0x94, 0x4b, 0x74, 0x4b, 0x94, 0x4b, 0x95, 0x43, 0x75, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0xb5, 0x4b, 0x95, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x79, 0x54, 0x99, 0x5c, 0xba, 0x5c, 0xbb, 0x5c, 0xdb, 0x65, 0x1b, 0x6d, 0x7b, 0x75, 0xdb, 0x7d, 0xfa, 0x85, 0xfb, 0x95, 0xfb, 0x9d, 0xfb, 0x9d, 0xfb, 0x8d, 0xfb, 0x7d, 0xfa, 0x75, 0xfb, 0x6d, 0x9b, 0x6d, 0x3b, 0x5c, 0xdb, 0x5c, 0xbb, 0x54, 0x9b, 0x5c, 0xbb, 0x5c, 0xdb, 0x5c, 0xfb, 0x64, 0xfb, 0x5c, 0xba, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x4c, 0x58, 0x4c, 0x58, 0x4c, 0x58, 0x4c, 0x58, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x44, 0x18, 0x44, 0x18, 0x44, 0x17, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0xb6, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x95, 0x4c, 0x18, 0x54, 0x7a, 0x4c, 0x59, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x9a, 0x5c, 0xbb, 0x64, 0xdb, 0x6d, 0x5b, 0x75, 0xdb, 0x7e, 0x1b, 0x75, 0x7b, 0x6d, 0x5b, 0x6d, 0x1b, 0x64, 0xfb, 0x5c, 0xbb, 0x5c, 0x9b, 0x54, 0x79, 0x54, 0x59, 0x4c, 0x18, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x34, 0x3b, 0x34, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb1, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0xb1, 0x2a, 0xb1, 0x2a, 0xb1, 0x2a, 0x91, 0x2a, 0xb1, 0x2a, 0x91, 0x2a, 0xb1, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, + 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd7, 0x54, 0x58, 0x54, 0x58, 0x54, 0x59, 0x5c, 0x7a, 0x5c, 0xbb, 0x5c, 0xbb, 0x64, 0xbb, 0x5c, 0x79, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x74, 0x43, 0x94, 0x4b, 0x94, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x94, 0x4b, 0x95, 0x4b, 0x95, 0x43, 0x75, 0x4b, 0x95, 0x4b, 0xb5, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x78, 0x54, 0x98, 0x5c, 0xb9, 0x5c, 0xba, 0x5c, 0xda, 0x5c, 0xfb, 0x65, 0x1b, 0x6d, 0x7b, 0x75, 0xdb, 0x7e, 0x1a, 0x85, 0xfb, 0x96, 0x1b, 0x9e, 0x1b, 0x9e, 0x1b, 0x96, 0x1b, 0x85, 0xfb, 0x75, 0xfa, 0x75, 0xfb, 0x6d, 0x9b, 0x64, 0xfb, 0x5c, 0xbb, 0x54, 0x9b, 0x54, 0x9b, 0x5c, 0xbb, 0x64, 0xfb, 0x64, 0xfb, 0x5c, 0xdb, 0x54, 0x7a, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x4c, 0x79, 0x4c, 0x79, 0x4c, 0x79, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x44, 0x17, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0xf7, 0x54, 0x5a, 0x4c, 0x5a, 0x4c, 0x39, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0xbb, 0x64, 0xfb, 0x6d, 0x5b, 0x7d, 0xdb, 0x86, 0x1b, 0x7d, 0x7b, 0x75, 0x5b, 0x6d, 0x5b, 0x6d, 0x1b, 0x64, 0xfb, 0x5c, 0xbb, 0x5c, 0xbb, 0x54, 0x9a, 0x54, 0x59, 0x4c, 0x18, 0x4b, 0xf7, 0x43, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb1, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0xb1, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0xb1, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd2, + 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x55, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x54, 0x58, 0x54, 0x58, 0x54, 0x59, 0x54, 0x79, 0x54, 0x59, 0x54, 0x59, 0x5c, 0x9a, 0x54, 0x17, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x4b, 0x95, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x43, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x57, 0x54, 0x78, 0x54, 0x78, 0x5c, 0x98, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0xda, 0x5c, 0xfa, 0x64, 0xfb, 0x65, 0x3b, 0x6d, 0x7b, 0x75, 0xdb, 0x76, 0x1a, 0x86, 0x1b, 0x8e, 0x1b, 0x96, 0x1b, 0x9e, 0x1b, 0x96, 0x1b, 0x8e, 0x1b, 0x7d, 0xfa, 0x75, 0xfb, 0x6d, 0xbb, 0x65, 0x3b, 0x5c, 0xdb, 0x5c, 0xbb, 0x54, 0xbb, 0x54, 0x9b, 0x5c, 0xdb, 0x5c, 0xfb, 0x64, 0xfb, 0x5c, 0xba, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x99, 0x54, 0x9a, 0x4c, 0x7a, 0x4c, 0x7a, 0x4c, 0x7a, 0x4c, 0x7a, 0x4c, 0x7a, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x3b, 0xb6, 0x3b, 0x96, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x4c, 0x39, 0x54, 0x7a, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x7b, 0x5c, 0x7b, 0x5c, 0x9b, 0x64, 0xdb, 0x6d, 0x5b, 0x75, 0xfb, 0x86, 0x1b, 0x7d, 0x7b, 0x75, 0x5b, 0x75, 0x7b, 0x75, 0x5b, 0x6d, 0x3b, 0x64, 0xfb, 0x64, 0xdb, 0x5c, 0xbb, 0x5c, 0x9a, 0x54, 0x59, 0x54, 0x38, 0x4c, 0x18, 0x4b, 0xd7, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb1, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, + 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd7, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x59, 0x5c, 0x79, 0x54, 0x59, 0x5c, 0x59, 0x54, 0x59, 0x43, 0x95, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x4b, 0x94, 0x4b, 0x94, 0x4b, 0x95, 0x53, 0x95, 0x53, 0xb5, 0x4b, 0x95, 0x43, 0x75, 0x4b, 0x95, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x57, 0x54, 0x57, 0x54, 0x78, 0x54, 0x78, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0xb8, 0x64, 0xd9, 0x64, 0xfa, 0x65, 0x1b, 0x65, 0x3b, 0x6d, 0x7b, 0x6d, 0xdb, 0x76, 0x1a, 0x7e, 0x1b, 0x86, 0x1b, 0x8e, 0x1b, 0x96, 0x1b, 0x96, 0x1b, 0x8e, 0x1b, 0x7e, 0x1a, 0x6d, 0xfb, 0x6d, 0xbb, 0x6d, 0x5b, 0x64, 0xfb, 0x5c, 0xbb, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xbb, 0x5c, 0xdb, 0x64, 0xfb, 0x5c, 0xdb, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9b, 0x54, 0xbb, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0x9a, 0x54, 0x7a, 0x54, 0x79, 0x4c, 0x58, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x43, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x3b, 0xb6, 0x3b, 0x96, 0x3b, 0x75, 0x43, 0xd6, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0x7a, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0xbb, 0x65, 0x1b, 0x75, 0x9b, 0x7e, 0x1b, 0x85, 0xdb, 0x7d, 0x7b, 0x7d, 0x7b, 0x75, 0x7b, 0x6d, 0x5b, 0x6d, 0x3b, 0x65, 0x1b, 0x64, 0xfb, 0x5c, 0xbb, 0x5c, 0x9a, 0x54, 0x79, 0x54, 0x58, 0x4c, 0x18, 0x4b, 0xf7, 0x43, 0xd7, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd7, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, + 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x43, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xd7, 0x54, 0x38, 0x54, 0x58, 0x54, 0x79, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x7a, 0x32, 0xf3, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x4b, 0x74, 0x4b, 0x95, 0x4b, 0x95, 0x53, 0x95, 0x53, 0xb5, 0x4b, 0x95, 0x43, 0x95, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x57, 0x54, 0x57, 0x54, 0x77, 0x54, 0x77, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0xb8, 0x64, 0xb9, 0x64, 0xda, 0x64, 0xfa, 0x6d, 0x3b, 0x6d, 0x7c, 0x6d, 0xdb, 0x76, 0x1b, 0x7e, 0x1a, 0x86, 0x1b, 0x8e, 0x1b, 0x8e, 0x1b, 0x8e, 0x1b, 0x86, 0x1b, 0x7e, 0x1a, 0x75, 0xfb, 0x6d, 0xbb, 0x6d, 0x7b, 0x65, 0x1b, 0x5c, 0xdb, 0x5c, 0xbb, 0x54, 0xbb, 0x54, 0x9b, 0x54, 0x9b, 0x5c, 0xdb, 0x5c, 0xdb, 0x54, 0xba, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xdb, 0x54, 0xdb, 0x5c, 0xbb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xdb, 0x54, 0xbb, 0x54, 0x9b, 0x54, 0x9a, 0x54, 0x79, 0x54, 0x58, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x43, 0xf7, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0xb6, 0x3b, 0x75, 0x4b, 0xf7, 0x54, 0x9a, 0x5c, 0x9b, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0x9b, 0x5c, 0xbb, 0x64, 0xdb, 0x65, 0x3b, 0x75, 0xdb, 0x86, 0x3b, 0x7d, 0x9b, 0x75, 0x7b, 0x7d, 0x7b, 0x75, 0x7b, 0x6d, 0x7b, 0x6d, 0x5b, 0x65, 0x1b, 0x64, 0xdb, 0x5c, 0xbb, 0x5c, 0x9a, 0x5c, 0x79, 0x54, 0x59, 0x4c, 0x38, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x3a, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0xb1, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, + 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x54, 0x17, 0x54, 0x38, 0x54, 0x58, 0x54, 0x78, 0x5c, 0x79, 0x5c, 0x99, 0x5c, 0x9a, 0x5c, 0x9a, 0x54, 0x17, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x4b, 0x94, 0x4b, 0x95, 0x53, 0x95, 0x53, 0x95, 0x4b, 0x95, 0x43, 0x75, 0x4b, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf6, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x57, 0x54, 0x57, 0x54, 0x77, 0x5c, 0x77, 0x5c, 0x98, 0x5c, 0x98, 0x64, 0x98, 0x64, 0xb9, 0x6c, 0xd9, 0x6c, 0xfa, 0x6d, 0x1b, 0x6d, 0x3b, 0x75, 0x9b, 0x76, 0x1b, 0x76, 0x1a, 0x7e, 0x1a, 0x86, 0x1b, 0x86, 0x1b, 0x86, 0x1b, 0x86, 0x1b, 0x7e, 0x1a, 0x75, 0xfb, 0x6d, 0xbb, 0x6d, 0x7b, 0x65, 0x3b, 0x5c, 0xfb, 0x5c, 0xdb, 0x5c, 0xbb, 0x54, 0xbb, 0x54, 0xbb, 0x5c, 0xbb, 0x5c, 0xdb, 0x5c, 0xdb, 0x4c, 0x7b, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xdb, 0x54, 0xdb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xfb, 0x5d, 0x1b, 0x5c, 0xfb, 0x5d, 0x1b, 0x5d, 0x1b, 0x5c, 0xfb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xdb, 0x54, 0x9a, 0x54, 0x79, 0x54, 0x58, 0x4c, 0x38, 0x4c, 0x17, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0x95, 0x54, 0x39, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xbb, 0x64, 0xdb, 0x6d, 0x5b, 0x75, 0xfb, 0x75, 0x9b, 0x75, 0x7c, 0x75, 0x9b, 0x75, 0x7b, 0x75, 0x9b, 0x6d, 0x7c, 0x6d, 0x3b, 0x6d, 0x1b, 0x64, 0xfb, 0x64, 0xbb, 0x5c, 0x9a, 0x54, 0x7a, 0x54, 0x59, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xf2, 0x3a, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x70, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, + 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xd6, 0x54, 0x17, 0x54, 0x38, 0x54, 0x58, 0x5c, 0x78, 0x5c, 0x79, 0x5c, 0x99, 0x5c, 0xba, 0x5c, 0xba, 0x43, 0x95, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x94, 0x4b, 0x94, 0x4b, 0x94, 0x4b, 0x94, 0x53, 0x95, 0x53, 0xb5, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf6, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x57, 0x54, 0x57, 0x54, 0x77, 0x5c, 0x77, 0x5c, 0x78, 0x64, 0x78, 0x64, 0x98, 0x6c, 0xb8, 0x6c, 0xb9, 0x6c, 0xda, 0x6c, 0xfa, 0x75, 0x1b, 0x75, 0x5b, 0x75, 0xbc, 0x7e, 0x1b, 0x7e, 0x1b, 0x7e, 0x1b, 0x86, 0x1b, 0x86, 0x1a, 0x7e, 0x1a, 0x76, 0x1a, 0x6d, 0xfb, 0x65, 0x9b, 0x65, 0x5b, 0x65, 0x3b, 0x65, 0x1b, 0x5c, 0xfb, 0x5c, 0xdb, 0x5c, 0xbc, 0x5c, 0xbb, 0x5c, 0xbc, 0x5c, 0xbb, 0x54, 0xbb, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0xbb, 0x54, 0xdb, 0x54, 0xdb, 0x5c, 0xdb, 0x5c, 0xfb, 0x5c, 0xfb, 0x65, 0x1b, 0x65, 0x3b, 0x65, 0x3b, 0x65, 0x5b, 0x65, 0x5b, 0x65, 0x3b, 0x65, 0x3b, 0x65, 0x1b, 0x64, 0xfb, 0x5c, 0xfc, 0x5c, 0xbb, 0x54, 0x9a, 0x54, 0x79, 0x54, 0x58, 0x4c, 0x37, 0x4b, 0xf7, 0x43, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x54, 0x79, 0x64, 0xfc, 0x64, 0xdb, 0x5c, 0xdb, 0x5c, 0xbb, 0x5c, 0x9b, 0x5c, 0xbb, 0x64, 0xfb, 0x6d, 0x3b, 0x6d, 0x5b, 0x6d, 0x7b, 0x75, 0x9c, 0x75, 0x9b, 0x6d, 0x9b, 0x6d, 0x5b, 0x65, 0x1b, 0x64, 0xfb, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0x9b, 0x5c, 0x9b, 0x54, 0x7a, 0x54, 0x79, 0x54, 0x59, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x54, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x3b, 0x13, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0xb2, + 0x2a, 0x91, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd7, 0x54, 0x59, 0x54, 0x38, 0x54, 0x17, 0x54, 0x58, 0x5c, 0x78, 0x5c, 0x79, 0x5c, 0x99, 0x64, 0x99, 0x64, 0x9a, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x74, 0x43, 0x94, 0x4b, 0x95, 0x4b, 0x94, 0x4b, 0x94, 0x4b, 0x94, 0x4b, 0x94, 0x4b, 0x95, 0x4b, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf6, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x57, 0x54, 0x77, 0x5c, 0x77, 0x5c, 0x78, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x6c, 0x98, 0x6c, 0xb9, 0x6c, 0xda, 0x74, 0xfa, 0x74, 0xfb, 0x75, 0x1b, 0x75, 0x7c, 0x7d, 0xdc, 0x7e, 0x1b, 0x7e, 0x1b, 0x7e, 0x1b, 0x7e, 0x1a, 0x7e, 0x1a, 0x76, 0x1b, 0x6d, 0xdb, 0x65, 0x7b, 0x65, 0x3b, 0x65, 0x3b, 0x65, 0x1c, 0x65, 0x1b, 0x65, 0x1b, 0x5c, 0xdb, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xbc, 0x5c, 0xbb, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xdb, 0x5c, 0xfb, 0x5c, 0xfb, 0x65, 0x1b, 0x65, 0x3b, 0x65, 0x7b, 0x6d, 0xbb, 0x6d, 0xdb, 0x6d, 0xdb, 0x6d, 0xdc, 0x6d, 0xbc, 0x6d, 0x9c, 0x6d, 0x5b, 0x65, 0x3b, 0x65, 0x1c, 0x64, 0xfb, 0x5c, 0xbb, 0x5c, 0x9a, 0x54, 0x59, 0x54, 0x38, 0x4c, 0x17, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x64, 0xba, 0x64, 0xfc, 0x64, 0xdb, 0x5c, 0xbb, 0x5c, 0xbc, 0x54, 0xbb, 0x5c, 0xbb, 0x64, 0xdb, 0x6d, 0x1b, 0x6d, 0x3c, 0x6d, 0x5b, 0x6d, 0x5b, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x3b, 0x65, 0x1c, 0x5c, 0xdb, 0x5c, 0xbb, 0x5c, 0x9c, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9b, 0x54, 0x9b, 0x5c, 0x7a, 0x54, 0x7a, 0x54, 0x79, 0x54, 0x58, 0x54, 0x38, 0x54, 0x37, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, + 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x3a, 0xf3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x4b, 0xd7, 0x5c, 0x9b, 0x5c, 0x9b, 0x54, 0x37, 0x54, 0x38, 0x54, 0x58, 0x5c, 0x78, 0x5c, 0x99, 0x64, 0x99, 0x64, 0xba, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x55, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x94, 0x43, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x94, 0x4b, 0x94, 0x4b, 0x94, 0x4b, 0x95, 0x43, 0x94, 0x43, 0xb5, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x74, 0x43, 0x75, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf6, 0x4c, 0x16, 0x4c, 0x37, 0x54, 0x57, 0x5c, 0x77, 0x5c, 0x77, 0x5c, 0x98, 0x64, 0x98, 0x64, 0x98, 0x6c, 0x98, 0x6c, 0x98, 0x6c, 0xb9, 0x6c, 0xd9, 0x74, 0xda, 0x74, 0xfa, 0x75, 0x1b, 0x75, 0x3c, 0x7d, 0x7c, 0x7d, 0xdc, 0x7e, 0x1b, 0x7e, 0x1a, 0x7e, 0x3a, 0x76, 0x1a, 0x76, 0x1b, 0x6d, 0xfb, 0x65, 0x7b, 0x65, 0x3b, 0x65, 0x3b, 0x65, 0x3c, 0x65, 0x5c, 0x65, 0x5c, 0x64, 0xfb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xdc, 0x5c, 0xbc, 0x54, 0xbb, 0x54, 0xbc, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xbb, 0x5c, 0xfc, 0x5d, 0x1b, 0x65, 0x3c, 0x65, 0x7c, 0x6d, 0xbb, 0x75, 0xfb, 0x76, 0x1b, 0x76, 0x1b, 0x76, 0x3b, 0x76, 0x3b, 0x76, 0x1b, 0x76, 0x1b, 0x75, 0xdc, 0x6d, 0x7b, 0x65, 0x3b, 0x65, 0x1c, 0x5c, 0xdb, 0x5c, 0xba, 0x54, 0x79, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb5, 0x5c, 0xba, 0x65, 0x1c, 0x64, 0xdb, 0x5c, 0xbb, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xdc, 0x64, 0xfb, 0x64, 0xfc, 0x65, 0x1b, 0x6d, 0x1b, 0x6d, 0x1b, 0x6d, 0x3b, 0x65, 0x1c, 0x65, 0x1c, 0x64, 0xfb, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbb, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbb, 0x5c, 0xbc, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0x9a, 0x5c, 0x79, 0x54, 0x58, 0x54, 0x38, 0x54, 0x17, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, + 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x54, 0x39, 0x5c, 0x9c, 0x5c, 0xbc, 0x64, 0xdb, 0x54, 0x17, 0x54, 0x58, 0x54, 0x58, 0x5c, 0x78, 0x5c, 0x99, 0x5c, 0x78, 0x43, 0x54, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x75, 0x43, 0x94, 0x43, 0x94, 0x4b, 0x94, 0x4b, 0x94, 0x4b, 0x95, 0x4b, 0x94, 0x4b, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x4b, 0xb5, 0x43, 0x94, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf6, 0x4c, 0x36, 0x54, 0x57, 0x5c, 0x77, 0x5c, 0x77, 0x64, 0x97, 0x64, 0x98, 0x64, 0x98, 0x6c, 0x98, 0x6c, 0x98, 0x6c, 0xb8, 0x6c, 0xb9, 0x6c, 0xda, 0x74, 0xda, 0x74, 0xfb, 0x75, 0x1b, 0x7d, 0x3c, 0x7d, 0x9c, 0x7d, 0xdc, 0x7e, 0x1b, 0x7e, 0x3a, 0x76, 0x3a, 0x76, 0x1b, 0x6d, 0xdb, 0x65, 0x7b, 0x5d, 0x1b, 0x5d, 0x1b, 0x65, 0x1b, 0x6d, 0x5c, 0x6d, 0x7c, 0x65, 0x5c, 0x5c, 0xfb, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x54, 0xdc, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xdb, 0x54, 0xdb, 0x5c, 0xfc, 0x65, 0x1c, 0x65, 0x3b, 0x6d, 0x9c, 0x6d, 0xfc, 0x76, 0x1b, 0x7e, 0x1b, 0x7e, 0x1a, 0x7e, 0x3b, 0x7e, 0x3b, 0x7e, 0x3a, 0x7e, 0x3a, 0x7e, 0x3b, 0x76, 0x1b, 0x75, 0xdc, 0x6d, 0x7b, 0x65, 0x1c, 0x64, 0xfc, 0x5c, 0xbb, 0x5c, 0x9a, 0x54, 0x58, 0x54, 0x37, 0x4c, 0x17, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0x96, 0x4c, 0x17, 0x64, 0xdb, 0x64, 0xfc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x64, 0xdb, 0x64, 0xfc, 0x64, 0xfb, 0x65, 0x1b, 0x65, 0x1b, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x64, 0xfb, 0x64, 0xfb, 0x64, 0xdb, 0x64, 0xfb, 0x64, 0xfb, 0x64, 0xfb, 0x64, 0xfc, 0x64, 0xdc, 0x5c, 0x9b, 0x5c, 0x79, 0x54, 0x58, 0x54, 0x37, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x70, 0x22, 0x70, 0x22, 0x70, 0x22, 0x70, 0x22, 0x70, 0x2a, 0x70, 0x22, 0x70, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x70, 0x22, 0x70, 0x22, 0x70, 0x22, 0x70, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, + 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x95, 0x4b, 0xd7, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0xbc, 0x5c, 0xbb, 0x5c, 0x9a, 0x54, 0x37, 0x54, 0x58, 0x54, 0x58, 0x5c, 0x79, 0x54, 0x37, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x74, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x94, 0x43, 0x95, 0x43, 0x95, 0x43, 0x94, 0x43, 0x94, 0x43, 0xb4, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x94, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xf6, 0x4c, 0x16, 0x54, 0x36, 0x5c, 0x57, 0x5c, 0x77, 0x5c, 0x97, 0x64, 0x97, 0x64, 0x98, 0x6c, 0xb8, 0x6c, 0xb8, 0x6c, 0xb8, 0x6c, 0xb9, 0x6c, 0xd9, 0x74, 0xda, 0x74, 0xfa, 0x74, 0xfb, 0x75, 0x1c, 0x7d, 0x5c, 0x7d, 0x9c, 0x7d, 0xfc, 0x76, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x6d, 0xfc, 0x65, 0x7c, 0x5d, 0x3c, 0x5d, 0x1b, 0x5d, 0x1c, 0x65, 0x3b, 0x6d, 0x7c, 0x6d, 0x9c, 0x65, 0x3c, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdb, 0x54, 0xdb, 0x54, 0xdc, 0x54, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5d, 0x1c, 0x65, 0x5b, 0x6d, 0xbc, 0x75, 0xfb, 0x76, 0x3b, 0x7e, 0x3b, 0x86, 0x3b, 0x86, 0x3b, 0x8e, 0x3b, 0x8e, 0x3b, 0x86, 0x3b, 0x86, 0x3b, 0x7e, 0x3b, 0x7e, 0x3b, 0x75, 0xfb, 0x75, 0x9c, 0x6d, 0x3b, 0x64, 0xfc, 0x5c, 0xdb, 0x5c, 0x9a, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x17, 0x4b, 0xf7, 0x43, 0xd6, 0x4b, 0xf7, 0x54, 0x38, 0x64, 0xda, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x64, 0xdc, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xfc, 0x5c, 0xdc, 0x64, 0xfb, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x1c, 0x6d, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xdb, 0x5c, 0x9a, 0x5c, 0x58, 0x54, 0x37, 0x54, 0x17, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x22, 0x70, 0x22, 0x50, 0x22, 0x70, 0x22, 0x70, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x70, 0x2a, 0x50, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, + 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x91, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x3a, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x54, 0x38, 0x54, 0x7a, 0x5c, 0x7b, 0x5c, 0x9c, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0x79, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x4b, 0xf7, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x94, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x94, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4c, 0x16, 0x54, 0x36, 0x54, 0x37, 0x5c, 0x57, 0x5c, 0x77, 0x64, 0x97, 0x64, 0x97, 0x6c, 0xb8, 0x6c, 0xb8, 0x6c, 0xb8, 0x6c, 0xb9, 0x6c, 0xb9, 0x6c, 0xd9, 0x74, 0xda, 0x74, 0xfb, 0x75, 0x1b, 0x75, 0x3c, 0x75, 0x5c, 0x75, 0xbc, 0x76, 0x1b, 0x76, 0x3b, 0x76, 0x3b, 0x6d, 0xfb, 0x65, 0x7b, 0x65, 0x3c, 0x5d, 0x1c, 0x5d, 0x1b, 0x65, 0x1b, 0x65, 0x5c, 0x6d, 0x7c, 0x65, 0x5c, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x65, 0x1b, 0x65, 0x5b, 0x6d, 0xbc, 0x76, 0x1b, 0x7e, 0x1b, 0x86, 0x3b, 0x86, 0x3b, 0x8e, 0x3b, 0x8e, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x8e, 0x3b, 0x8e, 0x3b, 0x86, 0x3b, 0x7e, 0x3b, 0x7e, 0x1b, 0x75, 0xbc, 0x6d, 0x5c, 0x65, 0x1c, 0x64, 0xdb, 0x5c, 0x9a, 0x54, 0x59, 0x54, 0x38, 0x4c, 0x17, 0x4b, 0xf6, 0x4b, 0xf7, 0x4c, 0x39, 0x54, 0x59, 0x64, 0xda, 0x6d, 0x1b, 0x65, 0x1c, 0x64, 0xfc, 0x5c, 0xdc, 0x64, 0xdc, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x6d, 0x1c, 0x6d, 0x5c, 0x6d, 0x7c, 0x75, 0x7c, 0x75, 0x9c, 0x6d, 0x7c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x1c, 0x64, 0xfc, 0x64, 0xbb, 0x5c, 0x79, 0x54, 0x58, 0x54, 0x17, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0x95, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3a, 0xf3, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x22, 0x70, 0x22, 0x70, 0x2a, 0x70, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x70, 0x22, 0x70, 0x2a, 0x70, 0x22, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, + 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x4b, 0xd6, 0x54, 0x38, 0x54, 0x59, 0x5c, 0x79, 0x5c, 0xbb, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdb, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x4b, 0xd6, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x94, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf6, 0x4c, 0x16, 0x54, 0x16, 0x54, 0x36, 0x5c, 0x57, 0x5c, 0x77, 0x64, 0x97, 0x64, 0x97, 0x64, 0xb8, 0x6c, 0xb8, 0x6c, 0xb8, 0x6c, 0xb8, 0x6c, 0xb9, 0x6c, 0xd9, 0x74, 0xda, 0x74, 0xfa, 0x74, 0xfb, 0x75, 0x1b, 0x75, 0x5c, 0x75, 0x9c, 0x75, 0xdc, 0x7e, 0x1c, 0x76, 0x3c, 0x76, 0x3b, 0x6d, 0xdc, 0x65, 0x5c, 0x5d, 0x1b, 0x5c, 0xfb, 0x5c, 0xfb, 0x65, 0x1c, 0x65, 0x5c, 0x65, 0x3c, 0x5d, 0x1c, 0x5c, 0xfc, 0x5c, 0xdc, 0x54, 0xdc, 0x54, 0xdc, 0x54, 0xbc, 0x54, 0xdc, 0x5c, 0xfc, 0x5d, 0x1c, 0x65, 0x3c, 0x65, 0x5c, 0x6d, 0x9c, 0x75, 0xfb, 0x7e, 0x3b, 0x86, 0x3b, 0x8e, 0x3b, 0x8e, 0x3b, 0x96, 0x3b, 0x9e, 0x3c, 0x9e, 0x3c, 0x9e, 0x3b, 0x96, 0x3b, 0x8e, 0x3b, 0x86, 0x3b, 0x86, 0x5b, 0x7e, 0x3b, 0x75, 0xbc, 0x6d, 0x3c, 0x64, 0xfc, 0x64, 0xdb, 0x5c, 0x9a, 0x54, 0x58, 0x54, 0x38, 0x54, 0x17, 0x4c, 0x17, 0x54, 0x59, 0x54, 0x79, 0x4c, 0x38, 0x5c, 0xb9, 0x6d, 0x1b, 0x65, 0x1c, 0x64, 0xfc, 0x65, 0x3c, 0x6d, 0x3c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x6d, 0x1c, 0x6d, 0x5c, 0x75, 0x9c, 0x75, 0xfc, 0x7e, 0x1c, 0x7e, 0x3b, 0x7e, 0x3b, 0x7e, 0x3c, 0x7d, 0xdc, 0x75, 0x9c, 0x6d, 0x5c, 0x6d, 0x1c, 0x64, 0xdc, 0x5c, 0x9a, 0x5c, 0x58, 0x54, 0x18, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x70, 0x22, 0x70, 0x2a, 0x70, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x70, 0x22, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, + 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x43, 0x96, 0x54, 0x58, 0x54, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x5c, 0x9a, 0x5c, 0xdc, 0x5c, 0xdc, 0x64, 0xda, 0x54, 0x37, 0x54, 0x58, 0x4b, 0xd6, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x94, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x4b, 0xd6, 0x4b, 0xf6, 0x4c, 0x16, 0x54, 0x16, 0x54, 0x37, 0x5c, 0x57, 0x5c, 0x77, 0x64, 0x97, 0x64, 0x97, 0x64, 0xb8, 0x64, 0xb8, 0x6c, 0xb8, 0x6c, 0xb8, 0x6c, 0xd9, 0x6c, 0xd9, 0x6c, 0xda, 0x6c, 0xfa, 0x6d, 0x1b, 0x6d, 0x3c, 0x75, 0x7c, 0x75, 0xbc, 0x75, 0xdc, 0x75, 0xfc, 0x75, 0xfc, 0x6d, 0xdc, 0x65, 0x7c, 0x5d, 0x1c, 0x5c, 0xfc, 0x5c, 0xfc, 0x5d, 0x1b, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x1c, 0x5c, 0xfc, 0x5c, 0xdc, 0x54, 0xdc, 0x54, 0xdc, 0x54, 0xfc, 0x54, 0xfc, 0x5c, 0xfc, 0x5d, 0x1c, 0x5d, 0x1c, 0x65, 0x3c, 0x6d, 0x9c, 0x75, 0xfc, 0x76, 0x3b, 0x86, 0x3b, 0x86, 0x3b, 0x8e, 0x3b, 0x9e, 0x5c, 0xa6, 0x5c, 0xae, 0x3c, 0xa6, 0x5c, 0x9e, 0x3c, 0x96, 0x5b, 0x8e, 0x3b, 0x86, 0x3b, 0x86, 0x5b, 0x7e, 0x3c, 0x75, 0xbc, 0x6d, 0x3c, 0x64, 0xfc, 0x5c, 0xdb, 0x5c, 0x9a, 0x54, 0x79, 0x54, 0x58, 0x4c, 0x37, 0x54, 0x58, 0x54, 0x7a, 0x54, 0x79, 0x54, 0x38, 0x54, 0x79, 0x64, 0xda, 0x6d, 0x3b, 0x65, 0x1c, 0x64, 0xfc, 0x65, 0x1c, 0x6d, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x65, 0x1c, 0x6d, 0x3c, 0x6d, 0x7c, 0x75, 0xfc, 0x7e, 0x3b, 0x86, 0x5b, 0x86, 0x5b, 0x8e, 0x3b, 0x86, 0x5b, 0x86, 0x5b, 0x86, 0x3b, 0x7d, 0xdc, 0x75, 0x7c, 0x6d, 0x1c, 0x64, 0xfc, 0x5c, 0x9a, 0x5c, 0x59, 0x54, 0x38, 0x4b, 0xf7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x22, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x70, 0x22, 0x50, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, + 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x5c, 0x7a, 0x5c, 0x9b, 0x5c, 0xbc, 0x64, 0xdc, 0x5c, 0x99, 0x54, 0x58, 0x4b, 0xd6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x94, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4c, 0x16, 0x54, 0x16, 0x54, 0x37, 0x54, 0x57, 0x5c, 0x77, 0x5c, 0x97, 0x5c, 0xb7, 0x5c, 0xb8, 0x64, 0xb8, 0x64, 0xb8, 0x64, 0xb9, 0x64, 0xd9, 0x64, 0xd9, 0x64, 0xfa, 0x64, 0xfa, 0x6d, 0x1b, 0x6d, 0x3b, 0x75, 0x7c, 0x75, 0x9c, 0x75, 0xbc, 0x75, 0xbc, 0x6d, 0xbc, 0x65, 0x7c, 0x65, 0x1c, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5d, 0x1c, 0x65, 0x3c, 0x65, 0x1c, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x54, 0xfc, 0x54, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5d, 0x1c, 0x65, 0x3c, 0x65, 0x5b, 0x6d, 0xbc, 0x76, 0x3c, 0x7e, 0x5b, 0x86, 0x5b, 0x96, 0x5b, 0x96, 0x3c, 0x9e, 0x3b, 0xa6, 0x1c, 0xa5, 0xfc, 0x9d, 0xfb, 0x9d, 0xfc, 0x96, 0x1c, 0x8e, 0x1b, 0x86, 0x3b, 0x7e, 0x3b, 0x7e, 0x1c, 0x75, 0xbc, 0x6d, 0x5c, 0x65, 0x1c, 0x5c, 0xdb, 0x54, 0x9a, 0x54, 0x79, 0x54, 0x38, 0x54, 0x38, 0x54, 0x7a, 0x5c, 0x9a, 0x54, 0x59, 0x54, 0x38, 0x54, 0x79, 0x5c, 0xda, 0x64, 0xfb, 0x65, 0x1c, 0x6d, 0x1c, 0x6d, 0x3c, 0x6d, 0x3c, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x65, 0x1c, 0x6d, 0x1c, 0x6d, 0x3c, 0x6d, 0x7c, 0x76, 0x1c, 0x7e, 0x3b, 0x8e, 0x5b, 0x96, 0x5c, 0x96, 0x3c, 0x96, 0x5b, 0x96, 0x5b, 0x8e, 0x5b, 0x86, 0x5b, 0x7e, 0x1c, 0x75, 0x9c, 0x6d, 0x1c, 0x64, 0xfc, 0x64, 0xbb, 0x5c, 0x59, 0x54, 0x17, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x22, 0x70, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x50, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, + 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x3a, 0xf3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x5c, 0x57, 0x5c, 0x98, 0x5c, 0x78, 0x5c, 0x79, 0x5c, 0x79, 0x54, 0x79, 0x54, 0x59, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x9b, 0x5c, 0xdc, 0x5c, 0xbb, 0x54, 0x37, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd5, 0x43, 0xd5, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4c, 0x16, 0x4c, 0x36, 0x54, 0x37, 0x54, 0x57, 0x54, 0x77, 0x54, 0x97, 0x54, 0x98, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0xb8, 0x64, 0xd9, 0x64, 0xf9, 0x64, 0xfa, 0x64, 0xfa, 0x64, 0xfa, 0x65, 0x1a, 0x6d, 0x3b, 0x6d, 0x3c, 0x65, 0x5c, 0x65, 0x3c, 0x65, 0x3b, 0x65, 0x1b, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xfc, 0x65, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5d, 0x1c, 0x5c, 0xfc, 0x5c, 0xfc, 0x5d, 0x1c, 0x5c, 0xfc, 0x5d, 0x1c, 0x65, 0x3c, 0x6d, 0x9c, 0x75, 0xdb, 0x6d, 0x7a, 0x64, 0xf9, 0x64, 0xb8, 0x6c, 0xd9, 0x6c, 0xd9, 0x74, 0xda, 0x74, 0xda, 0x74, 0xda, 0x74, 0xfb, 0x74, 0xfb, 0x75, 0x1b, 0x75, 0x5c, 0x75, 0x9c, 0x75, 0x9c, 0x6d, 0x5c, 0x6d, 0x1c, 0x6d, 0x1c, 0x64, 0xfc, 0x64, 0xdb, 0x54, 0x79, 0x4c, 0x38, 0x4c, 0x17, 0x54, 0x5a, 0x5c, 0x9b, 0x54, 0x7a, 0x5c, 0xba, 0x5c, 0xba, 0x5c, 0xba, 0x54, 0x99, 0x5c, 0xb9, 0x6d, 0x1b, 0x6d, 0x3c, 0x6d, 0x1c, 0x6d, 0x1c, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x6c, 0xfc, 0x6d, 0x1c, 0x6d, 0x3c, 0x6d, 0x7c, 0x76, 0x1c, 0x7e, 0x3b, 0x8e, 0x5b, 0x9e, 0x5c, 0xae, 0x5c, 0xb6, 0x5c, 0xae, 0x5c, 0x9e, 0x5c, 0x96, 0x3b, 0x8e, 0x5b, 0x86, 0x3c, 0x75, 0xbc, 0x6d, 0x3c, 0x64, 0xdc, 0x5c, 0x9a, 0x5c, 0x59, 0x54, 0x17, 0x4b, 0xf7, 0x43, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x70, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, + 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xb2, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x5c, 0x57, 0x64, 0x98, 0x64, 0x98, 0x64, 0xb8, 0x5c, 0xb9, 0x5c, 0x9a, 0x5c, 0x79, 0x54, 0x79, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0xbc, 0x64, 0xdc, 0x5c, 0x9a, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4c, 0x16, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x57, 0x54, 0x77, 0x54, 0x98, 0x54, 0x98, 0x54, 0x98, 0x5c, 0xb8, 0x5c, 0xd9, 0x5c, 0xd9, 0x5c, 0xb8, 0x5c, 0xd9, 0x64, 0xd9, 0x64, 0xfa, 0x65, 0x1a, 0x65, 0x1b, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x1c, 0x5d, 0x1c, 0x5c, 0xfc, 0x5c, 0xfb, 0x5c, 0xfb, 0x5c, 0xfc, 0x5c, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5d, 0x1c, 0x5d, 0x1c, 0x5d, 0x1c, 0x5d, 0x1c, 0x5d, 0x1c, 0x5c, 0xfb, 0x54, 0x99, 0x54, 0x78, 0x54, 0x58, 0x54, 0x58, 0x5c, 0x79, 0x5c, 0x99, 0x64, 0xb9, 0x64, 0xba, 0x64, 0xda, 0x6c, 0xda, 0x6c, 0xda, 0x6c, 0xda, 0x74, 0xdb, 0x6c, 0xfb, 0x6c, 0xfb, 0x6c, 0xfc, 0x6d, 0x1c, 0x6d, 0x1c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x1c, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xdb, 0x5c, 0xba, 0x5c, 0xbb, 0x5c, 0xfb, 0x5c, 0xdb, 0x5c, 0xda, 0x5c, 0xba, 0x5c, 0xb9, 0x5c, 0xb9, 0x5c, 0x98, 0x64, 0xfb, 0x6d, 0x1c, 0x6d, 0x1c, 0x6d, 0x1c, 0x6c, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x6d, 0x1c, 0x6d, 0x3c, 0x75, 0x5c, 0x75, 0xdc, 0x7e, 0x3b, 0x86, 0x5b, 0x96, 0x5c, 0xae, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xa6, 0x5c, 0x96, 0x5c, 0x8e, 0x3b, 0x86, 0x3c, 0x75, 0x9c, 0x6c, 0xfc, 0x64, 0x9b, 0x5c, 0x79, 0x54, 0x58, 0x54, 0x17, 0x4b, 0xf7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x70, 0x22, 0x70, 0x2a, 0x70, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, + 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x91, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x3a, 0xd2, 0x3a, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x4b, 0xd6, 0x64, 0x77, 0x64, 0x77, 0x64, 0x98, 0x6c, 0xb8, 0x64, 0xd9, 0x5c, 0xb9, 0x5c, 0x7a, 0x54, 0x79, 0x54, 0x59, 0x5c, 0x7a, 0x5c, 0x9b, 0x5c, 0xbc, 0x5c, 0xdc, 0x64, 0xdb, 0x54, 0x17, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd5, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xf6, 0x4b, 0xf6, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x57, 0x4c, 0x57, 0x54, 0x78, 0x54, 0x78, 0x54, 0x78, 0x54, 0x77, 0x54, 0x98, 0x5c, 0xb8, 0x5c, 0xb8, 0x5c, 0xd9, 0x5c, 0xda, 0x5c, 0xfa, 0x5c, 0xfb, 0x5c, 0xfb, 0x5c, 0xfb, 0x5d, 0x1c, 0x5d, 0x1c, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x64, 0xfc, 0x64, 0xfc, 0x5c, 0xfc, 0x5d, 0x1c, 0x5d, 0x1c, 0x5c, 0xfb, 0x5c, 0xba, 0x54, 0x99, 0x4c, 0x37, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x38, 0x54, 0x59, 0x54, 0x79, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0xb9, 0x64, 0xda, 0x64, 0xda, 0x6c, 0xda, 0x6c, 0xda, 0x6c, 0xdb, 0x6c, 0xfb, 0x6c, 0xfb, 0x6c, 0xfb, 0x6d, 0x1c, 0x6d, 0x1c, 0x6d, 0x1c, 0x6d, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xdc, 0x5c, 0xdc, 0x64, 0xfc, 0x6d, 0x5c, 0x6d, 0x5c, 0x65, 0x3b, 0x64, 0xfb, 0x64, 0xda, 0x5c, 0xba, 0x5c, 0xb9, 0x5c, 0xb9, 0x64, 0xd9, 0x64, 0xfb, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0xfc, 0x64, 0xfc, 0x6c, 0xfc, 0x6d, 0x1c, 0x6d, 0x3c, 0x75, 0x9c, 0x7e, 0x3c, 0x86, 0x5b, 0x96, 0x5b, 0xae, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xae, 0x5c, 0x96, 0x5b, 0x8e, 0x5b, 0x7d, 0xdc, 0x75, 0x5c, 0x64, 0xfc, 0x5c, 0xba, 0x5c, 0x59, 0x54, 0x58, 0x4c, 0x17, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x13, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x22, 0x70, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x70, 0x2a, 0x70, 0x22, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, + 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x32, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x3a, 0xf3, 0x3a, 0xd3, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x4b, 0xb5, 0x5c, 0x78, 0x64, 0x98, 0x64, 0x98, 0x6c, 0x98, 0x6c, 0xb8, 0x6c, 0xb9, 0x64, 0xd9, 0x5c, 0x99, 0x5c, 0x7a, 0x54, 0x79, 0x54, 0x79, 0x5c, 0x7a, 0x5c, 0x9b, 0x5c, 0xdc, 0x64, 0xdc, 0x54, 0x38, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd5, 0x43, 0xd5, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x4b, 0xf6, 0x4c, 0x16, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x57, 0x54, 0x58, 0x54, 0x78, 0x5c, 0x98, 0x5c, 0xb9, 0x5c, 0xb9, 0x5c, 0xda, 0x5c, 0xda, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xdb, 0x54, 0x99, 0x54, 0x78, 0x54, 0x37, 0x4c, 0x17, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x59, 0x54, 0x79, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0xb9, 0x64, 0xd9, 0x64, 0xda, 0x6c, 0xda, 0x6c, 0xda, 0x6c, 0xdb, 0x6c, 0xfb, 0x6d, 0x1c, 0x6d, 0x1c, 0x6d, 0x1c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x1c, 0x64, 0xfc, 0x64, 0xdc, 0x64, 0xdc, 0x64, 0xdc, 0x64, 0xbb, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x3c, 0x65, 0x1b, 0x64, 0xfb, 0x5c, 0xda, 0x5c, 0xd9, 0x64, 0xfa, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0xfc, 0x6d, 0x1c, 0x75, 0x7c, 0x7d, 0xfc, 0x86, 0x3b, 0x8e, 0x5b, 0x9e, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xa6, 0x5c, 0x96, 0x5b, 0x86, 0x3b, 0x75, 0xbc, 0x6d, 0x3c, 0x64, 0xdc, 0x5c, 0x9a, 0x54, 0x58, 0x54, 0x38, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x22, 0x50, 0x22, 0x50, 0x22, 0x70, 0x22, 0x70, 0x22, 0x70, 0x22, 0x50, 0x2a, 0x70, 0x22, 0x50, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, + 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x32, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x3a, 0xd2, 0x3a, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x75, 0x54, 0x37, 0x5c, 0x57, 0x64, 0x77, 0x6c, 0x78, 0x6c, 0x98, 0x6c, 0xb8, 0x6c, 0xb9, 0x6c, 0xd9, 0x64, 0xb9, 0x5c, 0x9a, 0x5c, 0x7a, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0xdc, 0x64, 0xdc, 0x5c, 0xb9, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xf6, 0x53, 0xf6, 0x53, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x54, 0x17, 0x54, 0x16, 0x53, 0xf6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0xb5, 0x4b, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd5, 0x43, 0xd5, 0x43, 0xd6, 0x43, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x43, 0xf6, 0x4b, 0xf6, 0x44, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x58, 0x54, 0x78, 0x54, 0x98, 0x54, 0x99, 0x54, 0x99, 0x54, 0xba, 0x54, 0xba, 0x54, 0xba, 0x54, 0xbb, 0x54, 0xbb, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbb, 0x54, 0x7a, 0x54, 0x59, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x17, 0x54, 0x38, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x59, 0x54, 0x79, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0xb9, 0x64, 0xda, 0x64, 0xda, 0x64, 0xda, 0x6c, 0xfa, 0x6c, 0xfb, 0x6d, 0x1c, 0x6d, 0x3c, 0x6d, 0x1c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xdc, 0x5c, 0xbb, 0x64, 0xdc, 0x64, 0xfb, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x64, 0xfb, 0x64, 0xfa, 0x6c, 0xfb, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0xfc, 0x6d, 0x1c, 0x75, 0x3c, 0x7d, 0x9c, 0x86, 0x1c, 0x8e, 0x5b, 0x9e, 0x5b, 0xae, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0x9e, 0x5c, 0x8e, 0x5b, 0x86, 0x1b, 0x75, 0x9c, 0x6d, 0x1c, 0x64, 0xdb, 0x5c, 0x79, 0x54, 0x38, 0x54, 0x38, 0x4b, 0xf7, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0x96, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x70, 0x2a, 0x70, 0x22, 0x70, 0x2a, 0x70, 0x22, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, + 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x54, 0x4b, 0xf7, 0x54, 0x17, 0x5c, 0x57, 0x64, 0x77, 0x64, 0x98, 0x74, 0xda, 0x74, 0xb9, 0x74, 0xb8, 0x6c, 0xb9, 0x64, 0xd9, 0x5c, 0xba, 0x5c, 0x9a, 0x54, 0x7a, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0xbc, 0x64, 0xfc, 0x64, 0xfb, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x54, 0x17, 0x54, 0x17, 0x54, 0x17, 0x54, 0x17, 0x53, 0xf6, 0x54, 0x17, 0x4b, 0xf6, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x37, 0x54, 0x17, 0x54, 0x37, 0x54, 0x17, 0x53, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x4b, 0xb5, 0x43, 0xb5, 0x4b, 0xb5, 0x43, 0xd5, 0x43, 0xd5, 0x43, 0xd5, 0x4b, 0xd5, 0x4b, 0xf6, 0x43, 0xf6, 0x43, 0xf6, 0x4b, 0xf6, 0x43, 0xf6, 0x43, 0xf6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xf7, 0x44, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x99, 0x54, 0x99, 0x54, 0x79, 0x54, 0x79, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0xbb, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbb, 0x54, 0x79, 0x54, 0x39, 0x54, 0x59, 0x54, 0x39, 0x4c, 0x18, 0x54, 0x17, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x79, 0x54, 0x79, 0x5c, 0x99, 0x5c, 0xb9, 0x5c, 0xba, 0x5c, 0xda, 0x64, 0xda, 0x64, 0xfa, 0x64, 0xfb, 0x6d, 0x1b, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x3c, 0x64, 0xfc, 0x64, 0xdc, 0x64, 0xdb, 0x65, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x1c, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0xdc, 0x6c, 0xfc, 0x6c, 0xfc, 0x6d, 0x1c, 0x75, 0x5c, 0x7d, 0xfc, 0x86, 0x3b, 0x8e, 0x5b, 0xa6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xae, 0x5c, 0x96, 0x5b, 0x86, 0x5b, 0x7d, 0xfb, 0x75, 0x5c, 0x6c, 0xfc, 0x5c, 0xba, 0x54, 0x58, 0x54, 0x18, 0x54, 0x17, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x22, 0x71, 0x2a, 0x50, 0x2a, 0x70, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x70, 0x2a, 0x50, 0x22, 0x50, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, + 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x34, 0x43, 0x95, 0x4b, 0xd6, 0x4c, 0x17, 0x54, 0x57, 0x5c, 0x77, 0x6c, 0xb9, 0x74, 0xd9, 0x74, 0xda, 0x74, 0xd9, 0x6c, 0xb8, 0x6c, 0xd9, 0x5c, 0xb9, 0x5c, 0x9a, 0x54, 0x7a, 0x54, 0x7a, 0x5c, 0x7a, 0x5c, 0xbc, 0x64, 0xfc, 0x65, 0x1b, 0x54, 0x18, 0x4b, 0xf7, 0x53, 0xf7, 0x54, 0x17, 0x54, 0x17, 0x54, 0x17, 0x54, 0x17, 0x5c, 0x37, 0x5c, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x17, 0x54, 0x17, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x17, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xd5, 0x4b, 0xd5, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xd6, 0x43, 0xb5, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xf6, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x79, 0x54, 0x79, 0x54, 0x7a, 0x54, 0x9a, 0x54, 0x9b, 0x54, 0xbc, 0x5c, 0x9a, 0x54, 0x59, 0x54, 0x38, 0x54, 0x38, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x37, 0x54, 0x37, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x54, 0x99, 0x5c, 0x99, 0x5c, 0xba, 0x5c, 0xda, 0x64, 0xda, 0x64, 0xfa, 0x6d, 0x1b, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x3c, 0x65, 0x1c, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xfc, 0x5c, 0xdc, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0xdc, 0x64, 0xfc, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x6d, 0x1c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x1c, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0xfc, 0x6d, 0x1c, 0x6d, 0x1c, 0x75, 0x7c, 0x7e, 0x1c, 0x86, 0x5b, 0x8e, 0x5b, 0x9e, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0x9e, 0x5c, 0x8e, 0x5b, 0x86, 0x3c, 0x75, 0xbc, 0x6d, 0x3c, 0x64, 0xdb, 0x5c, 0x9a, 0x54, 0x58, 0x54, 0x17, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x22, 0x50, 0x22, 0x70, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x50, 0x2a, 0x70, 0x2a, 0x50, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, + 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x91, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x3a, 0xf3, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x3b, 0x14, 0x3b, 0x55, 0x43, 0x95, 0x43, 0xb6, 0x4b, 0xf7, 0x54, 0x17, 0x64, 0x98, 0x6c, 0xb9, 0x6c, 0xb9, 0x74, 0xd9, 0x74, 0xda, 0x74, 0xd9, 0x6c, 0xb8, 0x64, 0xb9, 0x5c, 0x9a, 0x54, 0x9a, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0xbb, 0x64, 0xdc, 0x65, 0x1c, 0x5c, 0x78, 0x53, 0xf7, 0x54, 0x17, 0x54, 0x17, 0x54, 0x17, 0x54, 0x37, 0x5c, 0x57, 0x5c, 0x57, 0x5c, 0x37, 0x5c, 0x57, 0x54, 0x57, 0x54, 0x57, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x57, 0x54, 0x37, 0x54, 0x37, 0x54, 0x57, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x53, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb5, 0x4b, 0xd5, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xd5, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xf6, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x38, 0x4c, 0x58, 0x54, 0x78, 0x54, 0x79, 0x54, 0x79, 0x54, 0x9a, 0x54, 0x7a, 0x4c, 0x38, 0x4c, 0x17, 0x54, 0x37, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x39, 0x54, 0x38, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x58, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x9a, 0x5c, 0x9a, 0x5c, 0xba, 0x5c, 0xda, 0x64, 0xdb, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x5c, 0x65, 0x1b, 0x5c, 0xdb, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0xbc, 0x5c, 0x9b, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0xbc, 0x5c, 0xbb, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x6d, 0x3c, 0x6d, 0x1c, 0x6d, 0x1c, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0xfc, 0x6d, 0x1c, 0x6d, 0x3c, 0x75, 0x7c, 0x7e, 0x1c, 0x86, 0x5b, 0x8e, 0x5b, 0x9e, 0x5c, 0xae, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xae, 0x5c, 0x9e, 0x5c, 0x8e, 0x5b, 0x86, 0x5b, 0x7d, 0xfc, 0x75, 0x7c, 0x6d, 0x1c, 0x64, 0xba, 0x5c, 0x79, 0x54, 0x37, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x34, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x50, 0x2a, 0x70, 0x22, 0x50, 0x2a, 0x50, 0x2a, 0x70, 0x2a, 0x50, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, + 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x33, 0x13, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x4b, 0xd6, 0x54, 0x37, 0x5c, 0x98, 0x64, 0xb8, 0x6c, 0xb9, 0x6c, 0xd9, 0x6c, 0xda, 0x6c, 0xfa, 0x6c, 0xd9, 0x5c, 0xb9, 0x5c, 0x99, 0x5c, 0x9a, 0x54, 0x7a, 0x5c, 0x9a, 0x5c, 0xbb, 0x64, 0xdc, 0x65, 0x1c, 0x5c, 0x99, 0x54, 0x38, 0x54, 0x18, 0x54, 0x17, 0x54, 0x37, 0x5c, 0x57, 0x5c, 0x57, 0x5c, 0x57, 0x5c, 0x57, 0x5c, 0x57, 0x5c, 0x57, 0x5c, 0x57, 0x54, 0x57, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x78, 0x54, 0x57, 0x5c, 0x57, 0x5c, 0x37, 0x54, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd5, 0x4b, 0xd5, 0x4b, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd5, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x79, 0x54, 0x38, 0x4b, 0xd7, 0x4b, 0xf7, 0x4c, 0x17, 0x54, 0x37, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x59, 0x4c, 0x38, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x9a, 0x54, 0x9a, 0x5c, 0x9a, 0x5c, 0xba, 0x5c, 0xda, 0x64, 0xfb, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x1b, 0x5c, 0xdb, 0x5c, 0xbb, 0x5c, 0x9c, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x7b, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x64, 0xfc, 0x65, 0x1c, 0x6d, 0x1c, 0x6d, 0x1c, 0x6d, 0x1c, 0x6d, 0x3c, 0x6d, 0x1c, 0x6c, 0xfc, 0x6d, 0x1c, 0x6d, 0x3c, 0x75, 0x5c, 0x6d, 0x5c, 0x75, 0x7b, 0x76, 0x1c, 0x7e, 0x5b, 0x8e, 0x5b, 0x96, 0x5b, 0x9e, 0x5c, 0xa6, 0x5c, 0x9e, 0x5c, 0x96, 0x5c, 0x8e, 0x5b, 0x86, 0x5b, 0x7e, 0x1c, 0x75, 0x7c, 0x6d, 0x1c, 0x64, 0xdb, 0x5c, 0x79, 0x54, 0x38, 0x54, 0x17, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x96, 0x43, 0x96, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x70, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, + 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xf3, 0x33, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x75, 0x43, 0x95, 0x4b, 0xd6, 0x54, 0x58, 0x5c, 0x99, 0x64, 0xb9, 0x64, 0xd9, 0x6c, 0xd9, 0x6c, 0xd9, 0x6c, 0xfa, 0x6c, 0xfa, 0x5c, 0xb9, 0x5c, 0x99, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x9a, 0x5c, 0x9b, 0x64, 0xdc, 0x64, 0xfc, 0x65, 0x1b, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x5c, 0x57, 0x5c, 0x77, 0x5c, 0x57, 0x64, 0x57, 0x64, 0x57, 0x5c, 0x57, 0x5c, 0x77, 0x5c, 0x77, 0x54, 0x78, 0x54, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x58, 0x5c, 0x57, 0x54, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x58, 0x4c, 0x37, 0x43, 0xd6, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xf7, 0x54, 0x17, 0x54, 0x17, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x58, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x9a, 0x54, 0x9a, 0x5c, 0x9a, 0x54, 0x7a, 0x5c, 0x9a, 0x5c, 0x9a, 0x54, 0x7a, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0x9c, 0x5c, 0xbc, 0x64, 0xdc, 0x64, 0xdc, 0x64, 0xdc, 0x64, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0x9c, 0x5c, 0xbc, 0x64, 0xfc, 0x6d, 0x1c, 0x6d, 0x1c, 0x6d, 0x1c, 0x6d, 0x3c, 0x6d, 0x1c, 0x6d, 0x1c, 0x64, 0xfc, 0x6d, 0x1c, 0x6d, 0x5c, 0x75, 0xbc, 0x75, 0xfc, 0x76, 0x1b, 0x7e, 0x5b, 0x86, 0x3b, 0x8e, 0x5b, 0x8e, 0x5b, 0x96, 0x5b, 0x8e, 0x5b, 0x8e, 0x5b, 0x86, 0x5b, 0x7e, 0x1c, 0x75, 0x7c, 0x6d, 0x1c, 0x64, 0xdb, 0x64, 0xba, 0x5c, 0x58, 0x54, 0x37, 0x4c, 0x17, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, + 0x2a, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x33, 0x14, 0x3b, 0x54, 0x3b, 0x55, 0x43, 0x95, 0x4c, 0x17, 0x54, 0x58, 0x5c, 0x78, 0x5c, 0x99, 0x5c, 0xb9, 0x64, 0xd9, 0x64, 0xd9, 0x64, 0xfa, 0x65, 0x1a, 0x5c, 0xb9, 0x5c, 0x99, 0x54, 0x79, 0x54, 0x7a, 0x5c, 0x7a, 0x5c, 0x9b, 0x5c, 0xdc, 0x64, 0xfc, 0x6d, 0x3c, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x5c, 0x58, 0x5c, 0x78, 0x5c, 0x78, 0x64, 0x77, 0x64, 0x77, 0x64, 0x77, 0x64, 0x77, 0x64, 0x78, 0x5c, 0x78, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0x78, 0x54, 0x78, 0x54, 0x78, 0x54, 0x58, 0x54, 0x78, 0x54, 0x78, 0x54, 0x58, 0x5c, 0x78, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0x78, 0x5c, 0x58, 0x54, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x53, 0xf6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xd5, 0x43, 0xd5, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xf6, 0x4b, 0xf7, 0x4c, 0x37, 0x4c, 0x17, 0x4b, 0xd6, 0x43, 0x75, 0x43, 0x75, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd7, 0x4c, 0x17, 0x54, 0x17, 0x54, 0x17, 0x54, 0x38, 0x54, 0x38, 0x54, 0x18, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x58, 0x54, 0x78, 0x54, 0x78, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x59, 0x54, 0x39, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x54, 0x39, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0xbc, 0x5c, 0xbc, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0x9c, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xdc, 0x64, 0xdc, 0x65, 0x1c, 0x6d, 0x1c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x6d, 0x5c, 0x75, 0xbc, 0x76, 0x1c, 0x7e, 0x5b, 0x86, 0x5b, 0x86, 0x3b, 0x86, 0x3b, 0x86, 0x5b, 0x86, 0x5b, 0x7e, 0x3c, 0x75, 0xdc, 0x75, 0x7c, 0x6d, 0x1c, 0x64, 0xdc, 0x5c, 0x9a, 0x5c, 0x78, 0x54, 0x38, 0x54, 0x17, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x3b, 0x75, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3a, 0xf3, 0x3b, 0x14, 0x3b, 0x13, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, + 0x32, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x4b, 0xd6, 0x4b, 0xf6, 0x54, 0x17, 0x5c, 0x58, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0xb9, 0x64, 0xd9, 0x64, 0xd9, 0x64, 0xda, 0x64, 0xdb, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x7a, 0x5c, 0x9a, 0x5c, 0xdc, 0x64, 0xfc, 0x6d, 0x1c, 0x64, 0xda, 0x54, 0x38, 0x5c, 0x58, 0x5c, 0x78, 0x5c, 0x78, 0x64, 0x98, 0x64, 0x78, 0x64, 0x78, 0x64, 0x78, 0x64, 0x78, 0x64, 0x78, 0x64, 0x78, 0x64, 0x98, 0x5c, 0xb8, 0x5c, 0xb8, 0x54, 0x99, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x5c, 0x79, 0x5c, 0x98, 0x5c, 0xb8, 0x5c, 0x98, 0x5c, 0x78, 0x5c, 0x78, 0x54, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x16, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xd5, 0x4b, 0xd6, 0x4b, 0xf6, 0x43, 0xf6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x4c, 0x17, 0x4b, 0xf6, 0x43, 0x95, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0xf7, 0x54, 0x17, 0x54, 0x17, 0x54, 0x37, 0x54, 0x38, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x58, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x99, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x79, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x7b, 0x54, 0x9b, 0x54, 0x9c, 0x5c, 0xbc, 0x64, 0xfc, 0x65, 0x1c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x3c, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x64, 0xdb, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x6d, 0x1c, 0x6d, 0x3c, 0x6d, 0x3c, 0x64, 0xfc, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x3c, 0x6d, 0x7c, 0x6d, 0xbc, 0x76, 0x1c, 0x86, 0x5b, 0x86, 0x5b, 0x7e, 0x3b, 0x76, 0x1c, 0x75, 0xdc, 0x75, 0x9c, 0x6d, 0x5c, 0x65, 0x1c, 0x64, 0xdc, 0x5c, 0xba, 0x5c, 0x79, 0x54, 0x58, 0x54, 0x37, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, + 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x33, 0x14, 0x3b, 0x34, 0x43, 0x95, 0x43, 0xb6, 0x4b, 0xd6, 0x54, 0x17, 0x54, 0x38, 0x5c, 0x78, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0xb9, 0x5c, 0xba, 0x5c, 0xba, 0x54, 0x9a, 0x54, 0x79, 0x54, 0x59, 0x54, 0x59, 0x5c, 0x9a, 0x5c, 0xbb, 0x64, 0xdc, 0x65, 0x1c, 0x64, 0xfb, 0x54, 0x59, 0x5c, 0x59, 0x5c, 0x78, 0x5c, 0x98, 0x64, 0x98, 0x64, 0x98, 0x64, 0x98, 0x6c, 0x98, 0x6c, 0x98, 0x6c, 0x98, 0x6c, 0x98, 0x64, 0xb8, 0x64, 0xb9, 0x64, 0xb9, 0x5c, 0xb9, 0x54, 0x99, 0x54, 0x79, 0x54, 0x99, 0x54, 0x99, 0x54, 0x99, 0x5c, 0x99, 0x5c, 0xb9, 0x5c, 0xb9, 0x5c, 0xb9, 0x5c, 0xb8, 0x5c, 0x98, 0x54, 0x58, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xf6, 0x43, 0xd6, 0x43, 0xb5, 0x43, 0x95, 0x4b, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xb6, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x54, 0x17, 0x54, 0x17, 0x54, 0x18, 0x4c, 0x17, 0x43, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x78, 0x54, 0x99, 0x54, 0x99, 0x5c, 0x99, 0x5c, 0x9a, 0x5c, 0x9a, 0x54, 0x79, 0x4c, 0x18, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x54, 0x5a, 0x54, 0x9b, 0x54, 0x9c, 0x5c, 0xbc, 0x5c, 0xdc, 0x64, 0xfc, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x7c, 0x6d, 0x5c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x1c, 0x64, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x64, 0xfc, 0x6d, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x6d, 0x3c, 0x6d, 0x3c, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x3c, 0x6d, 0x7c, 0x75, 0xdc, 0x76, 0x1c, 0x7e, 0x3b, 0x7e, 0x5b, 0x6d, 0x9b, 0x6d, 0x5c, 0x65, 0x3c, 0x65, 0x1c, 0x64, 0xfc, 0x5c, 0xbb, 0x5c, 0x79, 0x54, 0x38, 0x54, 0x38, 0x54, 0x17, 0x4c, 0x17, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x91, + 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x33, 0x14, 0x3b, 0x54, 0x3b, 0x95, 0x43, 0xb5, 0x4b, 0xd6, 0x4b, 0xf6, 0x54, 0x17, 0x54, 0x38, 0x54, 0x58, 0x54, 0x79, 0x54, 0x79, 0x54, 0x99, 0x5c, 0x99, 0x5c, 0x9a, 0x54, 0x9b, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0xbb, 0x64, 0xdc, 0x65, 0x1c, 0x6d, 0x1b, 0x5c, 0x9a, 0x5c, 0x59, 0x5c, 0x99, 0x5c, 0x98, 0x64, 0x98, 0x64, 0x98, 0x6c, 0x98, 0x6c, 0x98, 0x6c, 0x98, 0x6c, 0x98, 0x6c, 0xb9, 0x6c, 0xb9, 0x64, 0xd9, 0x64, 0xd9, 0x5c, 0xda, 0x5c, 0xda, 0x5c, 0xda, 0x5c, 0xba, 0x54, 0x9a, 0x5c, 0xba, 0x5c, 0xba, 0x5c, 0xba, 0x5c, 0xba, 0x5c, 0xb9, 0x5c, 0xb9, 0x5c, 0xb9, 0x54, 0x78, 0x54, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x3b, 0x95, 0x3b, 0x95, 0x33, 0x75, 0x33, 0x95, 0x3b, 0x95, 0x3b, 0xb6, 0x43, 0xd6, 0x43, 0x95, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x59, 0x5c, 0x99, 0x5c, 0x99, 0x54, 0x79, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x9c, 0x54, 0xbc, 0x5c, 0xbc, 0x5c, 0xdc, 0x65, 0x1c, 0x6d, 0x3c, 0x6d, 0x5c, 0x75, 0x9c, 0x75, 0x9c, 0x6d, 0x9c, 0x6d, 0x7c, 0x6d, 0x5c, 0x6d, 0x3c, 0x65, 0x3c, 0x64, 0xfc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x5c, 0xdc, 0x5c, 0xfc, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x3c, 0x6d, 0x5c, 0x6d, 0x9c, 0x75, 0xbc, 0x75, 0xfc, 0x75, 0xbc, 0x65, 0x3c, 0x64, 0xfc, 0x5c, 0xdb, 0x5c, 0xbb, 0x54, 0x79, 0x54, 0x59, 0x54, 0x38, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x91, 0x32, 0x92, + 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x3b, 0x14, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x53, 0xf7, 0x53, 0xf7, 0x54, 0x17, 0x54, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x59, 0x54, 0x38, 0x54, 0x59, 0x54, 0x79, 0x5c, 0x9b, 0x5c, 0xdc, 0x64, 0xfc, 0x65, 0x1c, 0x64, 0xda, 0x5c, 0x79, 0x5c, 0x99, 0x5c, 0x99, 0x64, 0xb9, 0x64, 0x98, 0x6c, 0xb8, 0x6c, 0x98, 0x6c, 0x98, 0x6c, 0x98, 0x6c, 0xb9, 0x6c, 0xd9, 0x6c, 0xd9, 0x6c, 0xfa, 0x64, 0xfa, 0x64, 0xfa, 0x5c, 0xfb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xdb, 0x64, 0xdb, 0x64, 0xfb, 0x5c, 0xda, 0x5c, 0xda, 0x5c, 0xba, 0x5c, 0x99, 0x54, 0x78, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x37, 0x4c, 0x37, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf6, 0x43, 0xb5, 0x4b, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0xb5, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x33, 0x75, 0x33, 0x75, 0x33, 0x75, 0x33, 0x75, 0x3b, 0x95, 0x3b, 0x54, 0x3b, 0x13, 0x3a, 0xf3, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x58, 0x4c, 0x38, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x54, 0x37, 0x54, 0x37, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x7a, 0x54, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x64, 0xfc, 0x65, 0x1c, 0x6d, 0x5c, 0x6d, 0x7c, 0x75, 0xbc, 0x75, 0xdc, 0x75, 0xdc, 0x75, 0xbc, 0x75, 0x9c, 0x6d, 0x5c, 0x6d, 0x5c, 0x65, 0x3c, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x65, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x3c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x3c, 0x5c, 0xdb, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x59, 0x4c, 0x38, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xb6, 0x4c, 0x17, 0x43, 0xd6, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x92, + 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd6, 0x53, 0xf7, 0x53, 0xf7, 0x54, 0x17, 0x54, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x39, 0x54, 0x59, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0xbc, 0x5c, 0xdc, 0x64, 0xfc, 0x64, 0xdb, 0x5c, 0x7a, 0x5c, 0x9a, 0x5c, 0xb9, 0x64, 0xb9, 0x64, 0xb9, 0x6c, 0xb9, 0x6c, 0xb9, 0x6c, 0xb9, 0x74, 0xb9, 0x74, 0xb9, 0x74, 0xd9, 0x6c, 0xda, 0x6c, 0xfa, 0x6d, 0x1b, 0x65, 0x3b, 0x65, 0x3c, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1b, 0x5c, 0xdb, 0x5c, 0xba, 0x54, 0x9a, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x58, 0x54, 0x58, 0x4c, 0x37, 0x54, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x33, 0x75, 0x33, 0x75, 0x33, 0x75, 0x33, 0x75, 0x33, 0x75, 0x33, 0x95, 0x3b, 0x54, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x38, 0x4c, 0x38, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf7, 0x4c, 0x17, 0x54, 0x37, 0x54, 0x37, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x79, 0x54, 0x79, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xfc, 0x65, 0x3c, 0x6d, 0x5c, 0x6d, 0x9c, 0x75, 0xdc, 0x75, 0xfc, 0x76, 0x1c, 0x76, 0x1c, 0x75, 0xfc, 0x75, 0xfc, 0x75, 0xbc, 0x6d, 0x7c, 0x6d, 0x5c, 0x65, 0x3c, 0x65, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xdc, 0x64, 0xdc, 0x64, 0xdc, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x64, 0xfb, 0x54, 0x7a, 0x54, 0x39, 0x4c, 0x18, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x39, 0x4c, 0x39, 0x43, 0x96, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, + 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x39, 0x4c, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x39, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0xbc, 0x64, 0xdc, 0x6d, 0x1c, 0x6d, 0x1c, 0x5c, 0x9a, 0x5c, 0x9a, 0x64, 0xba, 0x64, 0xda, 0x64, 0xd9, 0x6c, 0xd9, 0x6c, 0xb9, 0x6c, 0xb9, 0x74, 0xb9, 0x74, 0xd9, 0x74, 0xda, 0x74, 0xfa, 0x74, 0xfb, 0x6d, 0x1c, 0x6d, 0x5c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x65, 0x5c, 0x65, 0x5c, 0x6d, 0x5c, 0x65, 0x1c, 0x64, 0xfc, 0x5c, 0xdb, 0x54, 0x9a, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x57, 0x4c, 0x37, 0x4c, 0x17, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb5, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x33, 0x75, 0x33, 0x75, 0x33, 0x75, 0x33, 0x75, 0x33, 0x95, 0x3b, 0x54, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xf6, 0x43, 0xf6, 0x43, 0xf6, 0x4b, 0xf7, 0x43, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x43, 0xd7, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd7, 0x4b, 0xf7, 0x54, 0x17, 0x54, 0x37, 0x54, 0x37, 0x54, 0x58, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x79, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x9a, 0x54, 0x9a, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0x9c, 0x54, 0xbc, 0x5c, 0xdc, 0x64, 0xfc, 0x65, 0x3c, 0x6d, 0x7c, 0x6d, 0xbc, 0x75, 0xfc, 0x76, 0x1c, 0x76, 0x3c, 0x7e, 0x3c, 0x7e, 0x3c, 0x7e, 0x3c, 0x76, 0x3c, 0x75, 0xfc, 0x75, 0xbc, 0x6d, 0x7c, 0x6d, 0x3c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xdc, 0x65, 0x1c, 0x6d, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xfc, 0x65, 0x1c, 0x64, 0xfc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x64, 0xdc, 0x64, 0xfc, 0x64, 0xdc, 0x64, 0xfc, 0x64, 0xdc, 0x64, 0xdc, 0x64, 0xdc, 0x54, 0x79, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x59, 0x54, 0x7a, 0x4c, 0x59, 0x4c, 0x38, 0x43, 0x95, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3a, 0xf3, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, + 0x32, 0xd2, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x39, 0x54, 0x39, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x39, 0x54, 0x39, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0xdc, 0x65, 0x1c, 0x6d, 0x3c, 0x6d, 0x3c, 0x64, 0xbb, 0x64, 0xda, 0x64, 0xda, 0x64, 0xda, 0x64, 0xda, 0x6c, 0xda, 0x74, 0xd9, 0x74, 0xda, 0x74, 0xda, 0x74, 0xfa, 0x74, 0xfb, 0x75, 0x1b, 0x75, 0x3c, 0x75, 0x7c, 0x75, 0xbc, 0x75, 0xdc, 0x75, 0xfc, 0x75, 0xfc, 0x75, 0xdc, 0x75, 0xdc, 0x75, 0xdc, 0x75, 0xdc, 0x6d, 0xbc, 0x6d, 0x9c, 0x65, 0x5c, 0x65, 0x1c, 0x5c, 0xdb, 0x54, 0x79, 0x54, 0x59, 0x5c, 0x99, 0x5c, 0x99, 0x54, 0x78, 0x54, 0x58, 0x54, 0x38, 0x54, 0x57, 0x54, 0x17, 0x4b, 0xf6, 0x53, 0xf6, 0x4b, 0xf6, 0x43, 0xd6, 0x43, 0xb6, 0x3b, 0xb6, 0x33, 0x95, 0x33, 0x75, 0x33, 0x75, 0x33, 0x75, 0x33, 0x75, 0x33, 0x75, 0x33, 0x75, 0x33, 0x34, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x43, 0xf6, 0x43, 0xf6, 0x43, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x43, 0xf7, 0x43, 0xb6, 0x3b, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xf7, 0x4c, 0x17, 0x54, 0x17, 0x54, 0x37, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x9a, 0x5c, 0xba, 0x5c, 0xbb, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x65, 0x3c, 0x6d, 0x5c, 0x6d, 0xbc, 0x76, 0x1c, 0x7e, 0x5b, 0x7e, 0x5b, 0x86, 0x5b, 0x86, 0x5b, 0x86, 0x5b, 0x86, 0x5b, 0x7e, 0x5b, 0x7e, 0x3c, 0x75, 0xdc, 0x75, 0x9c, 0x6d, 0x5c, 0x6d, 0x3c, 0x65, 0x3c, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x64, 0xdc, 0x5c, 0xbb, 0x5c, 0x9b, 0x54, 0x9b, 0x4c, 0x7a, 0x4c, 0x59, 0x4b, 0xf7, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x3b, 0x14, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, + 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x79, 0x54, 0x59, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x7b, 0x5c, 0xbc, 0x64, 0xfc, 0x65, 0x1c, 0x6d, 0x1c, 0x65, 0x1b, 0x64, 0xdb, 0x64, 0xfb, 0x6c, 0xfb, 0x6c, 0xfa, 0x6c, 0xda, 0x6c, 0xda, 0x74, 0xfa, 0x74, 0xda, 0x74, 0xfa, 0x75, 0x1b, 0x75, 0x3c, 0x75, 0x5c, 0x75, 0x9c, 0x75, 0xfc, 0x7e, 0x3c, 0x7e, 0x5b, 0x7e, 0x5b, 0x86, 0x5b, 0x86, 0x5b, 0x7e, 0x5b, 0x7e, 0x5b, 0x7e, 0x3b, 0x76, 0x3c, 0x75, 0xfc, 0x6d, 0x7c, 0x65, 0x3c, 0x5c, 0xbb, 0x5c, 0xba, 0x64, 0xda, 0x5c, 0x9a, 0x5c, 0x99, 0x54, 0x78, 0x54, 0x58, 0x54, 0x37, 0x54, 0x17, 0x54, 0x17, 0x4b, 0xf6, 0x43, 0xd6, 0x43, 0xd6, 0x3b, 0xb6, 0x3b, 0xb6, 0x33, 0x96, 0x33, 0x95, 0x33, 0x75, 0x33, 0x75, 0x33, 0x75, 0x33, 0x75, 0x33, 0x34, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x43, 0xf6, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xb6, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x37, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x78, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0xba, 0x5c, 0xba, 0x5c, 0xbb, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xfc, 0x65, 0x1c, 0x65, 0x3c, 0x6d, 0x7c, 0x6d, 0xdc, 0x76, 0x3c, 0x7e, 0x5b, 0x86, 0x5b, 0x8e, 0x5b, 0x8e, 0x5b, 0x8e, 0x5b, 0x8e, 0x5b, 0x8e, 0x5b, 0x86, 0x5b, 0x7e, 0x5b, 0x7e, 0x3c, 0x75, 0xdc, 0x6d, 0x7c, 0x6d, 0x3c, 0x6d, 0x3c, 0x65, 0x3c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x6d, 0x1c, 0x6d, 0x3c, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0x9c, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0x9b, 0x54, 0x7a, 0x4c, 0x59, 0x4b, 0xd7, 0x43, 0x96, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, + 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb7, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4c, 0x18, 0x54, 0x39, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x54, 0x59, 0x54, 0x79, 0x54, 0x7a, 0x54, 0x9a, 0x5c, 0xbb, 0x5c, 0xdc, 0x64, 0xfc, 0x65, 0x1c, 0x6d, 0x3c, 0x64, 0xdb, 0x64, 0xfb, 0x6d, 0x1b, 0x6d, 0x1b, 0x74, 0xfb, 0x74, 0xfb, 0x74, 0xfa, 0x74, 0xfb, 0x75, 0x1b, 0x75, 0x1b, 0x75, 0x3c, 0x75, 0x5c, 0x75, 0xbc, 0x7e, 0x3c, 0x7e, 0x5b, 0x86, 0x5b, 0x86, 0x5b, 0x8e, 0x5b, 0x8e, 0x5b, 0x8e, 0x5b, 0x8e, 0x5b, 0x8e, 0x5b, 0x86, 0x5b, 0x7e, 0x5b, 0x7e, 0x5c, 0x75, 0xdc, 0x6d, 0x5c, 0x65, 0x1b, 0x64, 0xfb, 0x64, 0xdb, 0x64, 0xba, 0x5c, 0xb9, 0x54, 0x78, 0x54, 0x58, 0x4c, 0x37, 0x4c, 0x37, 0x43, 0xf7, 0x3b, 0xd7, 0x3b, 0xd6, 0x33, 0xb6, 0x33, 0xb6, 0x33, 0x96, 0x33, 0x96, 0x33, 0x75, 0x33, 0x75, 0x33, 0x75, 0x33, 0x34, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x75, 0x43, 0x95, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x43, 0xd6, 0x4b, 0xf6, 0x43, 0xf6, 0x43, 0x95, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4c, 0x17, 0x54, 0x37, 0x54, 0x17, 0x54, 0x58, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x79, 0x5c, 0x99, 0x5c, 0x9a, 0x5c, 0xba, 0x5c, 0xbb, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x65, 0x1c, 0x65, 0x3c, 0x6d, 0x7c, 0x6d, 0x9c, 0x75, 0xfc, 0x7e, 0x5b, 0x86, 0x5b, 0x8e, 0x5b, 0x8e, 0x5b, 0x96, 0x5b, 0x96, 0x5b, 0x96, 0x5b, 0x96, 0x5b, 0x96, 0x5b, 0x8e, 0x5b, 0x86, 0x5b, 0x7e, 0x5b, 0x76, 0x1c, 0x75, 0xbc, 0x6d, 0x9c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x3c, 0x65, 0x3c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x1c, 0x6d, 0x3c, 0x6d, 0x3c, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x5c, 0xdc, 0x5c, 0xbc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0x9c, 0x5c, 0xdc, 0x64, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x4c, 0x5a, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3a, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x71, + 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xd7, 0x43, 0xd7, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x39, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x58, 0x54, 0x79, 0x54, 0x79, 0x5c, 0x9a, 0x5c, 0xbb, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xfc, 0x65, 0x3c, 0x6d, 0x3c, 0x64, 0xfc, 0x65, 0x1c, 0x6d, 0x1c, 0x6d, 0x1b, 0x75, 0x1b, 0x75, 0x1b, 0x7d, 0x1b, 0x75, 0x1b, 0x75, 0x3c, 0x75, 0x5c, 0x75, 0x7c, 0x7d, 0xbc, 0x7e, 0x3c, 0x7e, 0x5b, 0x86, 0x5b, 0x8e, 0x5b, 0x96, 0x5b, 0x9e, 0x5c, 0x9e, 0x5c, 0x9e, 0x5c, 0x9e, 0x5c, 0x96, 0x5c, 0x96, 0x5b, 0x86, 0x5b, 0x7e, 0x5c, 0x7d, 0xfc, 0x75, 0x9b, 0x6d, 0x5c, 0x64, 0xfb, 0x64, 0xfb, 0x5c, 0xda, 0x54, 0x99, 0x4c, 0x58, 0x4c, 0x17, 0x44, 0x17, 0x3b, 0xf7, 0x3b, 0xd7, 0x33, 0xd6, 0x33, 0xd6, 0x33, 0xd6, 0x33, 0xb6, 0x33, 0x96, 0x33, 0x96, 0x33, 0x96, 0x33, 0x55, 0x32, 0xf3, 0x32, 0xd3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x95, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xd6, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x37, 0x54, 0x58, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0xba, 0x5c, 0xbb, 0x64, 0xdc, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x6d, 0x5c, 0x6d, 0xbc, 0x76, 0x1c, 0x7e, 0x5b, 0x86, 0x5b, 0x8e, 0x5b, 0x96, 0x5b, 0x9e, 0x5c, 0x9e, 0x5c, 0xa6, 0x5c, 0xa6, 0x5c, 0x9e, 0x5c, 0x96, 0x5c, 0x8e, 0x5b, 0x86, 0x5b, 0x86, 0x5b, 0x7e, 0x3c, 0x76, 0x1c, 0x75, 0xbc, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x64, 0xfc, 0x65, 0x1c, 0x64, 0xfc, 0x5c, 0xfc, 0x64, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x54, 0x38, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3a, 0xf3, 0x3b, 0x13, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x71, 0x2a, 0x71, + 0x2a, 0x50, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xb7, 0x43, 0xd7, 0x43, 0xf8, 0x4b, 0xf8, 0x4c, 0x19, 0x4c, 0x39, 0x54, 0x59, 0x54, 0x7a, 0x4c, 0x59, 0x4c, 0x58, 0x54, 0x79, 0x5c, 0x9a, 0x5c, 0xba, 0x5c, 0xdb, 0x5c, 0xdc, 0x5c, 0xfc, 0x64, 0xfc, 0x6d, 0x3c, 0x6d, 0x1c, 0x64, 0xfc, 0x6d, 0x1c, 0x6d, 0x1c, 0x75, 0x1c, 0x75, 0x1b, 0x75, 0x1b, 0x7d, 0x1c, 0x7d, 0x3c, 0x75, 0x5c, 0x75, 0x7c, 0x7d, 0xbc, 0x7e, 0x1c, 0x86, 0x7b, 0x86, 0x5b, 0x8e, 0x7b, 0x96, 0x5c, 0xa6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x7c, 0xa6, 0x7c, 0x96, 0x5c, 0x96, 0x7b, 0x8e, 0x5b, 0x7e, 0x3c, 0x75, 0xbc, 0x6d, 0x5b, 0x65, 0x1b, 0x5c, 0xdb, 0x54, 0x9a, 0x4c, 0x58, 0x44, 0x38, 0x3c, 0x18, 0x3c, 0x17, 0x3b, 0xf7, 0x3b, 0xd7, 0x3b, 0xf7, 0x3b, 0xd7, 0x33, 0xb6, 0x33, 0xb6, 0x33, 0xb6, 0x33, 0x75, 0x33, 0x13, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x3b, 0x75, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x57, 0x54, 0x58, 0x5c, 0x78, 0x5c, 0x99, 0x5c, 0x9a, 0x64, 0xba, 0x64, 0xdb, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x6d, 0x7c, 0x6d, 0x9c, 0x76, 0x1c, 0x7e, 0x5b, 0x86, 0x5b, 0x8e, 0x5c, 0x9e, 0x7c, 0xa6, 0x5c, 0xae, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xae, 0x5c, 0xa6, 0x5c, 0x9e, 0x5c, 0x96, 0x5b, 0x8e, 0x5b, 0x86, 0x5b, 0x7e, 0x5c, 0x76, 0x1c, 0x75, 0xdc, 0x75, 0xbc, 0x6d, 0x9c, 0x6d, 0x5c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xdc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3a, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf3, 0x3a, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, + 0x2a, 0x50, 0x22, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x22, 0x71, 0x22, 0x50, 0x22, 0x51, 0x32, 0x92, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x35, 0x3b, 0x35, 0x33, 0x14, 0x3b, 0x55, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0xd7, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x19, 0x4c, 0x39, 0x54, 0x79, 0x54, 0x79, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x79, 0x54, 0xba, 0x5c, 0xdb, 0x5c, 0xfc, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x3c, 0x6d, 0x5c, 0x65, 0x1c, 0x6d, 0x1c, 0x6d, 0x3c, 0x6d, 0x3c, 0x75, 0x1c, 0x75, 0x3c, 0x75, 0x3c, 0x75, 0x3c, 0x7d, 0x5c, 0x7d, 0x5c, 0x7d, 0x9c, 0x76, 0x1c, 0x7e, 0x5b, 0x86, 0x5b, 0x8e, 0x5b, 0x96, 0x7c, 0xa6, 0x5c, 0xb6, 0x5c, 0xb6, 0x7c, 0xb6, 0x7c, 0xb6, 0x7c, 0xb6, 0x7c, 0xb6, 0x5c, 0xa6, 0x7c, 0x9e, 0x5c, 0x8e, 0x5b, 0x7e, 0x1b, 0x6d, 0x9c, 0x65, 0x3b, 0x5d, 0x1c, 0x54, 0xdb, 0x44, 0x79, 0x3c, 0x38, 0x3c, 0x38, 0x3c, 0x18, 0x3c, 0x18, 0x3c, 0x17, 0x3b, 0xf7, 0x3b, 0xf7, 0x3b, 0xd6, 0x3b, 0xd6, 0x3b, 0xb6, 0x33, 0x34, 0x33, 0x13, 0x33, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd6, 0x43, 0xb5, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x37, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x5c, 0x79, 0x5c, 0x9a, 0x5c, 0xbb, 0x64, 0xdc, 0x64, 0xfc, 0x65, 0x1c, 0x6d, 0x3c, 0x6d, 0x9c, 0x76, 0x1c, 0x7e, 0x5b, 0x86, 0x5b, 0x8e, 0x5b, 0x9e, 0x5c, 0xa6, 0x7c, 0xb6, 0x7c, 0xb6, 0x7c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xae, 0x7c, 0x9e, 0x5c, 0x96, 0x5b, 0x8e, 0x5b, 0x86, 0x5b, 0x7e, 0x5c, 0x7e, 0x3c, 0x75, 0xfc, 0x75, 0xdc, 0x75, 0xbc, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x1c, 0x6d, 0x1c, 0x6d, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbb, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x75, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, + 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x71, 0x2a, 0x91, 0x32, 0xb2, 0x3a, 0xf3, 0x43, 0x54, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x53, 0xf7, 0x54, 0x18, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x39, 0x4c, 0x59, 0x54, 0x79, 0x54, 0x79, 0x54, 0x9a, 0x5c, 0xbb, 0x54, 0xbb, 0x5c, 0xbb, 0x5c, 0xdb, 0x5c, 0xfc, 0x65, 0x1c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x3c, 0x75, 0x3c, 0x75, 0x3c, 0x75, 0x5c, 0x7d, 0x7c, 0x7d, 0x9c, 0x7d, 0xfc, 0x7e, 0x3c, 0x7e, 0x5b, 0x86, 0x5b, 0x96, 0x5c, 0x9e, 0x7c, 0xae, 0x5c, 0xbe, 0x7c, 0xbe, 0x7c, 0xb6, 0x7c, 0xb6, 0x7c, 0xb6, 0x7c, 0xb6, 0x7c, 0xae, 0x5c, 0x96, 0x5b, 0x76, 0x3b, 0x6d, 0xdb, 0x5d, 0x5c, 0x55, 0x3b, 0x4c, 0xdb, 0x44, 0x7a, 0x44, 0x59, 0x44, 0x59, 0x3c, 0x38, 0x3c, 0x18, 0x3c, 0x18, 0x3b, 0xf7, 0x3b, 0xf7, 0x3b, 0xf7, 0x3b, 0xd6, 0x33, 0x55, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0x95, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x58, 0x54, 0x58, 0x5c, 0x79, 0x5c, 0x9a, 0x5c, 0xbb, 0x64, 0xdc, 0x64, 0xfc, 0x65, 0x3c, 0x6d, 0x7c, 0x75, 0xfc, 0x7e, 0x5c, 0x86, 0x7b, 0x8e, 0x5b, 0x96, 0x5c, 0xa6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x7c, 0xb6, 0x7c, 0xb6, 0x7c, 0xbe, 0x7c, 0xae, 0x7c, 0x9e, 0x7c, 0x96, 0x5b, 0x8e, 0x7b, 0x86, 0x5b, 0x86, 0x5b, 0x7e, 0x3c, 0x76, 0x1c, 0x75, 0xfc, 0x75, 0xbc, 0x75, 0x9c, 0x75, 0x9c, 0x75, 0x9c, 0x75, 0x9c, 0x75, 0xdc, 0x75, 0xdc, 0x6d, 0x9c, 0x6d, 0x3c, 0x6d, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xdc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x54, 0x38, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, + 0x2a, 0x91, 0x2a, 0x91, 0x32, 0xd3, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xf7, 0x54, 0x18, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0x7b, 0x54, 0x5a, 0x54, 0x59, 0x4c, 0x59, 0x4c, 0x39, 0x4c, 0x59, 0x54, 0x79, 0x54, 0x7a, 0x5c, 0x9a, 0x5c, 0xbb, 0x5c, 0xdc, 0x5c, 0xdb, 0x5c, 0xdc, 0x5d, 0x1c, 0x65, 0x3c, 0x6d, 0x5c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x75, 0x5c, 0x75, 0x7c, 0x75, 0x9c, 0x7d, 0x9c, 0x7d, 0xdc, 0x7e, 0x1c, 0x7e, 0x5c, 0x7e, 0x5b, 0x86, 0x5b, 0x8e, 0x5b, 0x9e, 0x7c, 0xae, 0x7c, 0xbe, 0x7c, 0xbe, 0x7c, 0xbe, 0x7c, 0xbe, 0x7c, 0xb6, 0x7c, 0xae, 0x7c, 0x96, 0x5b, 0x7e, 0x5b, 0x6e, 0x1c, 0x5d, 0x9c, 0x55, 0x3b, 0x4c, 0xfc, 0x4c, 0xbb, 0x44, 0x9b, 0x44, 0x59, 0x44, 0x59, 0x44, 0x38, 0x3c, 0x38, 0x3c, 0x18, 0x3c, 0x17, 0x3b, 0xf7, 0x3b, 0xb6, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x43, 0x74, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x37, 0x54, 0x38, 0x54, 0x59, 0x5c, 0x9a, 0x5c, 0xbb, 0x5c, 0xdc, 0x64, 0xfc, 0x5d, 0x1c, 0x65, 0x1c, 0x6d, 0x9c, 0x76, 0x1c, 0x7e, 0x5b, 0x86, 0x5b, 0x8e, 0x7b, 0x9e, 0x5c, 0xae, 0x5c, 0xb6, 0x5c, 0xb6, 0x7c, 0xb6, 0x7c, 0xbe, 0x7c, 0xb6, 0x5c, 0xb6, 0x7c, 0xae, 0x5c, 0x9e, 0x5c, 0x96, 0x5b, 0x8e, 0x5b, 0x86, 0x5b, 0x86, 0x5b, 0x7e, 0x5b, 0x7e, 0x3c, 0x7e, 0x1c, 0x7e, 0x1c, 0x7d, 0xdc, 0x7d, 0xdc, 0x75, 0xfc, 0x75, 0xdc, 0x75, 0xdc, 0x75, 0xbc, 0x75, 0xdc, 0x6d, 0x7c, 0x6d, 0x3c, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x71, + 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xf7, 0x4b, 0xf8, 0x54, 0x18, 0x54, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7b, 0x5c, 0x7a, 0x54, 0x7a, 0x5c, 0x7b, 0x5c, 0x7b, 0x54, 0x7b, 0x54, 0x79, 0x5c, 0x79, 0x5c, 0x9a, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x65, 0x1c, 0x65, 0x3c, 0x6d, 0x7c, 0x6d, 0xbc, 0x6d, 0x7c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x7c, 0x75, 0x5c, 0x75, 0x9c, 0x75, 0xbc, 0x75, 0xdc, 0x75, 0xfc, 0x76, 0x3c, 0x76, 0x3c, 0x76, 0x3c, 0x86, 0x5b, 0x8e, 0x5b, 0x9e, 0x7c, 0xa6, 0x7c, 0xb6, 0x7c, 0xb6, 0x5c, 0xb6, 0x7c, 0xae, 0x7c, 0x9e, 0x5c, 0x8e, 0x5b, 0x7e, 0x5b, 0x66, 0x1c, 0x65, 0xbc, 0x5d, 0x5c, 0x54, 0xfc, 0x4c, 0xbc, 0x4c, 0xbb, 0x44, 0x7a, 0x44, 0x59, 0x44, 0x59, 0x44, 0x38, 0x3c, 0x38, 0x3c, 0x18, 0x3b, 0xf7, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x43, 0x54, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x74, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x18, 0x54, 0x58, 0x54, 0x79, 0x5c, 0x9a, 0x5c, 0xbb, 0x64, 0xdc, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x5c, 0x6d, 0xdc, 0x76, 0x3c, 0x7e, 0x5b, 0x86, 0x5b, 0x8e, 0x5b, 0x9e, 0x5c, 0xa6, 0x5c, 0xae, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xb6, 0x5c, 0xae, 0x5c, 0x9e, 0x5c, 0x96, 0x5c, 0x8e, 0x5b, 0x8e, 0x5b, 0x86, 0x5b, 0x86, 0x5b, 0x86, 0x5c, 0x86, 0x1c, 0x86, 0x1c, 0x85, 0xdc, 0x7d, 0xbc, 0x7d, 0xbc, 0x7d, 0xbc, 0x7d, 0xbc, 0x75, 0xfc, 0x75, 0xfc, 0x75, 0xdc, 0x6d, 0x9c, 0x6d, 0x5c, 0x6d, 0x1c, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbb, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd6, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xb2, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x30, 0x2a, 0x50, 0x2a, 0x91, 0x32, 0xd2, 0x3a, 0xf3, + 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x54, 0x18, 0x54, 0x38, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7a, 0x5c, 0x7b, 0x5c, 0x9b, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbb, 0x5c, 0xba, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xdc, 0x5c, 0xfc, 0x65, 0x1c, 0x65, 0x3c, 0x6d, 0x5c, 0x6d, 0x7c, 0x6d, 0x9c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x9c, 0x75, 0xbc, 0x75, 0xdc, 0x6d, 0xdc, 0x6d, 0xfc, 0x6e, 0x1c, 0x76, 0x1c, 0x76, 0x1c, 0x7e, 0x7b, 0x86, 0x7b, 0x8e, 0x5b, 0x96, 0x5c, 0x9e, 0x5c, 0x9e, 0x5c, 0x96, 0x5b, 0x8e, 0x5b, 0x86, 0x5b, 0x7e, 0x5b, 0x66, 0x1c, 0x5d, 0xdc, 0x5d, 0x5b, 0x55, 0x3c, 0x4c, 0xdc, 0x4c, 0x9b, 0x44, 0x7a, 0x44, 0x7a, 0x44, 0x5a, 0x44, 0x59, 0x44, 0x38, 0x3c, 0x18, 0x3b, 0x96, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x74, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x79, 0x5c, 0x9a, 0x5c, 0xbb, 0x5c, 0xdc, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x7c, 0x6d, 0xfc, 0x76, 0x3b, 0x7e, 0x5b, 0x86, 0x5b, 0x8e, 0x5b, 0x9e, 0x5c, 0xa6, 0x5c, 0xae, 0x7c, 0xae, 0x5c, 0xae, 0x5c, 0xae, 0x5c, 0xae, 0x7c, 0x9e, 0x5c, 0x96, 0x5b, 0x96, 0x5b, 0x8e, 0x5b, 0x86, 0x5b, 0x86, 0x5b, 0x86, 0x5c, 0x86, 0x3c, 0x85, 0xdc, 0x85, 0xdc, 0x85, 0xdc, 0x85, 0xbc, 0x85, 0xbc, 0x85, 0xbc, 0x7d, 0xfc, 0x7e, 0x1c, 0x75, 0xfc, 0x75, 0xdc, 0x75, 0x9c, 0x6d, 0x7c, 0x6d, 0x5c, 0x65, 0x1c, 0x64, 0xfc, 0x5c, 0xfc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0x7a, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3a, 0xf3, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x71, 0x2a, 0x71, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x32, 0xd2, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, + 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x76, 0x43, 0xb6, 0x4b, 0xf7, 0x4c, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x7b, 0x5c, 0x9b, 0x5c, 0xbc, 0x64, 0xdc, 0x64, 0xdc, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xfc, 0x5d, 0x1c, 0x65, 0x3c, 0x65, 0x5c, 0x6d, 0x7c, 0x6d, 0x9c, 0x6d, 0x9c, 0x6d, 0x9c, 0x75, 0xdc, 0x75, 0xdc, 0x75, 0x9c, 0x6d, 0x9c, 0x6d, 0x9c, 0x6d, 0x9c, 0x6d, 0xbc, 0x6d, 0x9c, 0x6d, 0x9c, 0x6d, 0x9c, 0x6d, 0xdc, 0x6d, 0xfc, 0x6d, 0xbc, 0x75, 0xdc, 0x7e, 0x3c, 0x7e, 0x5b, 0x86, 0x7b, 0x86, 0x7b, 0x86, 0x5b, 0x86, 0x5b, 0x7e, 0x7b, 0x76, 0x3b, 0x65, 0xdc, 0x5d, 0xbc, 0x5d, 0x5c, 0x55, 0x1c, 0x54, 0xfc, 0x4c, 0xbb, 0x4c, 0xbb, 0x44, 0x9a, 0x44, 0x7a, 0x44, 0x59, 0x44, 0x59, 0x3b, 0xf7, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x74, 0x3b, 0x74, 0x43, 0x75, 0x43, 0x74, 0x3b, 0x13, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x54, 0x58, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0xbb, 0x5c, 0xdc, 0x5d, 0x1c, 0x65, 0x3c, 0x6d, 0x9c, 0x6e, 0x1c, 0x76, 0x7b, 0x86, 0x5b, 0x86, 0x5b, 0x8e, 0x5b, 0x96, 0x5c, 0xa6, 0x5c, 0xae, 0x5c, 0xae, 0x7c, 0xa6, 0x5c, 0xa6, 0x7c, 0x9e, 0x5c, 0x96, 0x7c, 0x96, 0x5b, 0x8e, 0x5b, 0x86, 0x7b, 0x86, 0x5b, 0x86, 0x7b, 0x86, 0x5c, 0x85, 0xfc, 0x85, 0xbc, 0x85, 0xbc, 0x85, 0x9c, 0x85, 0x9c, 0x85, 0xdc, 0x85, 0xfc, 0x7e, 0x1c, 0x7d, 0xfc, 0x75, 0xdc, 0x75, 0xbc, 0x6d, 0x9c, 0x6d, 0x5c, 0x6d, 0x7c, 0x65, 0x3b, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xfc, 0x5c, 0xdc, 0x64, 0xfc, 0x54, 0x59, 0x4b, 0xf8, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xd2, 0x2a, 0xb2, 0x32, 0xb2, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x70, 0x2a, 0x71, 0x3a, 0xd3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, + 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4c, 0x18, 0x54, 0x39, 0x54, 0x39, 0x54, 0x38, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x7b, 0x5c, 0x9b, 0x5c, 0x9c, 0x5c, 0xbc, 0x64, 0xdc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x65, 0x1c, 0x65, 0x5c, 0x6d, 0x9c, 0x6d, 0x9c, 0x6d, 0xbc, 0x6d, 0x9c, 0x6d, 0x9c, 0x7e, 0x1c, 0x7e, 0x3c, 0x75, 0xdc, 0x6d, 0x9c, 0x6d, 0x7c, 0x6d, 0x7c, 0x65, 0x7c, 0x65, 0x7c, 0x65, 0x7c, 0x6d, 0x7c, 0x6d, 0x9c, 0x6d, 0x7c, 0x6d, 0x3c, 0x6d, 0x9c, 0x6d, 0xbc, 0x6d, 0xfc, 0x76, 0x3c, 0x76, 0x1b, 0x76, 0x3c, 0x76, 0x3c, 0x6d, 0xfc, 0x65, 0xdc, 0x5d, 0x5b, 0x55, 0x3c, 0x55, 0x1c, 0x54, 0xdc, 0x4c, 0xdc, 0x4c, 0x9b, 0x44, 0x9b, 0x44, 0x7a, 0x44, 0x7a, 0x44, 0x39, 0x43, 0xd7, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x43, 0x54, 0x43, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x54, 0x3b, 0x13, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x33, 0x13, 0x33, 0x13, 0x3b, 0x34, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x54, 0x59, 0x54, 0x79, 0x54, 0x9b, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xfc, 0x65, 0x3c, 0x6d, 0xbc, 0x6e, 0x1c, 0x7e, 0x5b, 0x86, 0x5b, 0x86, 0x7b, 0x8e, 0x7b, 0x96, 0x7c, 0x9e, 0x7c, 0xa6, 0x7c, 0xa6, 0x7c, 0x9e, 0x5c, 0x9e, 0x5c, 0x96, 0x7b, 0x96, 0x5b, 0x8e, 0x5b, 0x8e, 0x5b, 0x86, 0x7b, 0x86, 0x5b, 0x86, 0x5c, 0x86, 0x1c, 0x85, 0xdc, 0x85, 0x9c, 0x85, 0xbc, 0x8d, 0xfc, 0x8e, 0x1c, 0x8d, 0xfc, 0x85, 0xfc, 0x85, 0xfc, 0x7d, 0xdc, 0x75, 0xdc, 0x75, 0xbc, 0x6d, 0x7c, 0x6d, 0x5c, 0x6d, 0xbc, 0x6d, 0x9c, 0x65, 0x5c, 0x65, 0x3c, 0x65, 0x1c, 0x65, 0x1c, 0x54, 0x18, 0x54, 0x38, 0x54, 0x18, 0x53, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x32, 0xf4, 0x33, 0x13, 0x32, 0xf3, 0x2a, 0xd2, 0x2a, 0xd2, 0x2a, 0xb2, 0x32, 0xd2, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0xb2, 0x32, 0xd2, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, + 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x18, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x38, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0xbc, 0x5c, 0xdc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x6d, 0x7c, 0x6d, 0x9c, 0x6d, 0x9c, 0x6d, 0xbc, 0x6d, 0x7c, 0x6d, 0x9c, 0x7e, 0x3c, 0x7e, 0x5c, 0x75, 0xdc, 0x6d, 0x7c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x5d, 0x1c, 0x65, 0x3c, 0x65, 0x7c, 0x65, 0x7c, 0x65, 0x7c, 0x65, 0x9c, 0x65, 0x9c, 0x5d, 0x5c, 0x55, 0x1c, 0x55, 0x1c, 0x55, 0x1c, 0x4c, 0xdc, 0x4c, 0xbc, 0x4c, 0xbb, 0x4c, 0xbb, 0x44, 0x9b, 0x44, 0x7b, 0x44, 0x59, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x13, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x33, 0x13, 0x3b, 0x13, 0x33, 0x13, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x7a, 0x54, 0x9b, 0x54, 0xbc, 0x5c, 0xdc, 0x5d, 0x1c, 0x5d, 0x3c, 0x65, 0x7c, 0x6d, 0xfc, 0x76, 0x3b, 0x7e, 0x5b, 0x86, 0x5b, 0x8e, 0x7b, 0x8e, 0x5b, 0x96, 0x5b, 0x96, 0x7c, 0x96, 0x7c, 0x96, 0x7b, 0x96, 0x5b, 0x8e, 0x5b, 0x8e, 0x7b, 0x86, 0x5b, 0x86, 0x7b, 0x86, 0x7b, 0x86, 0x5b, 0x7e, 0x1c, 0x85, 0xdc, 0x85, 0xdc, 0x85, 0xfc, 0x8d, 0xfc, 0x8d, 0xfc, 0x8e, 0x1c, 0x8d, 0xfc, 0x85, 0xfc, 0x85, 0xdc, 0x7d, 0xdc, 0x75, 0xdc, 0x75, 0xbc, 0x6d, 0x7c, 0x6d, 0x9c, 0x6d, 0xdc, 0x65, 0x9c, 0x65, 0x5c, 0x65, 0x5c, 0x5c, 0xfa, 0x43, 0xb5, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0xb6, 0x4b, 0xd7, 0x53, 0xf7, 0x54, 0x17, 0x53, 0xf7, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x34, 0x33, 0x14, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x2a, 0x91, 0x2a, 0x71, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, + 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4c, 0x18, 0x54, 0x39, 0x54, 0x39, 0x54, 0x38, 0x54, 0x39, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x7b, 0x5c, 0x9b, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xdc, 0x64, 0xdc, 0x64, 0xfc, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x3c, 0x6d, 0x5c, 0x6d, 0x9c, 0x6d, 0x9c, 0x6d, 0x9c, 0x65, 0x5c, 0x65, 0x5c, 0x75, 0xfc, 0x7e, 0x7c, 0x75, 0xfc, 0x6d, 0x9c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x1c, 0x5d, 0x1c, 0x5c, 0xfc, 0x5d, 0x1c, 0x5d, 0x1c, 0x5d, 0x3c, 0x5d, 0x3c, 0x5d, 0x3c, 0x5d, 0x3c, 0x55, 0x1c, 0x54, 0xfc, 0x54, 0xdc, 0x4c, 0xdc, 0x4c, 0xbc, 0x4c, 0xbc, 0x4c, 0x9c, 0x4c, 0x9c, 0x4c, 0x9b, 0x44, 0x17, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x74, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x33, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf2, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x33, 0x13, 0x33, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x13, 0x32, 0xf3, 0x33, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0xb5, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x39, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x9b, 0x54, 0xbc, 0x5c, 0xfc, 0x5d, 0x3c, 0x65, 0x7c, 0x6d, 0xfc, 0x76, 0x5b, 0x7e, 0x5b, 0x86, 0x5b, 0x8e, 0x7b, 0x8e, 0x7b, 0x8e, 0x7b, 0x8e, 0x7b, 0x8e, 0x7b, 0x8e, 0x7b, 0x8e, 0x5b, 0x86, 0x5b, 0x86, 0x5b, 0x86, 0x7b, 0x7e, 0x5b, 0x86, 0x7b, 0x7e, 0x3c, 0x7e, 0x3c, 0x86, 0x3c, 0x85, 0xfc, 0x85, 0xbc, 0x85, 0x9c, 0x8d, 0xfc, 0x8e, 0x1c, 0x8e, 0x1c, 0x85, 0xfc, 0x7d, 0xdc, 0x7d, 0xdc, 0x75, 0xdc, 0x6d, 0xbc, 0x6d, 0x5c, 0x6d, 0x9c, 0x6d, 0x9c, 0x6d, 0x7c, 0x65, 0x7c, 0x5c, 0xfa, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x14, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x91, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, + 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x95, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x19, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7a, 0x5c, 0x7b, 0x5c, 0xbb, 0x5c, 0xbc, 0x5c, 0xdc, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x1c, 0x6d, 0x3c, 0x65, 0x5c, 0x6d, 0x7c, 0x75, 0xbc, 0x6d, 0xbc, 0x65, 0x9c, 0x65, 0x3c, 0x5d, 0x3c, 0x6d, 0x7c, 0x75, 0xfc, 0x6d, 0xbc, 0x6d, 0x7c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x3c, 0x5d, 0x3c, 0x5d, 0x1c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5d, 0x1c, 0x5d, 0x1c, 0x5d, 0x1c, 0x54, 0xfc, 0x4c, 0xfc, 0x4c, 0xfc, 0x4c, 0xfc, 0x4c, 0xdc, 0x4c, 0xdc, 0x4c, 0xbc, 0x4c, 0xbc, 0x4c, 0xbc, 0x4c, 0x79, 0x4b, 0xf7, 0x54, 0x17, 0x54, 0x17, 0x54, 0x17, 0x53, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x33, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x59, 0x4c, 0x59, 0x54, 0x7a, 0x54, 0x9b, 0x54, 0xbc, 0x54, 0xdc, 0x5d, 0x1c, 0x65, 0x5c, 0x6d, 0xdc, 0x76, 0x3c, 0x7e, 0x5b, 0x7e, 0x7b, 0x86, 0x7b, 0x86, 0x5b, 0x86, 0x7b, 0x86, 0x5b, 0x86, 0x5b, 0x86, 0x5b, 0x86, 0x5b, 0x7e, 0x7b, 0x7e, 0x5b, 0x7e, 0x5b, 0x7e, 0x5b, 0x7e, 0x7b, 0x86, 0x7b, 0x7e, 0x3c, 0x85, 0xfc, 0x85, 0xdc, 0x85, 0x9c, 0x85, 0x9c, 0x85, 0xbc, 0x8d, 0xfc, 0x8d, 0xfc, 0x85, 0xdc, 0x7d, 0xdc, 0x75, 0xdc, 0x75, 0xdc, 0x6d, 0x9c, 0x6d, 0x5c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x5c, 0x5c, 0xda, 0x43, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, + 0x32, 0x92, 0x2a, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x39, 0x54, 0x59, 0x54, 0x39, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0xbb, 0x5c, 0xbc, 0x5c, 0xdc, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x5c, 0x6d, 0x7c, 0x6d, 0x9c, 0x6d, 0xbc, 0x65, 0x9c, 0x65, 0x7c, 0x5d, 0x3c, 0x5d, 0x3c, 0x65, 0x3c, 0x6d, 0x7c, 0x6d, 0x9c, 0x6d, 0x7c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x5d, 0x1c, 0x54, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x54, 0xfc, 0x54, 0xfc, 0x54, 0xfc, 0x4c, 0xdc, 0x4c, 0xdc, 0x4c, 0xdc, 0x4c, 0xdc, 0x4c, 0xbc, 0x4c, 0x9b, 0x4c, 0x38, 0x54, 0x17, 0x54, 0x37, 0x5c, 0x17, 0x5c, 0x17, 0x5c, 0x17, 0x54, 0x17, 0x54, 0x17, 0x53, 0xf7, 0x53, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0x95, 0x43, 0x74, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x34, 0x32, 0xf2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x59, 0x4c, 0x5a, 0x4c, 0x7b, 0x4c, 0x9c, 0x54, 0xdc, 0x5d, 0x1c, 0x65, 0x5c, 0x6d, 0x9c, 0x6d, 0xfc, 0x76, 0x5b, 0x7e, 0x7b, 0x7e, 0x7b, 0x7e, 0x7b, 0x7e, 0x7b, 0x7e, 0x5b, 0x7e, 0x5b, 0x7e, 0x5b, 0x7e, 0x7b, 0x7e, 0x5b, 0x7e, 0x5b, 0x7e, 0x5a, 0x7e, 0x5b, 0x7e, 0x5b, 0x7e, 0x5c, 0x7e, 0x1c, 0x7d, 0xfc, 0x7d, 0x9c, 0x7d, 0x7c, 0x85, 0x7c, 0x85, 0x9c, 0x85, 0xdc, 0x85, 0xfc, 0x7d, 0xfc, 0x75, 0xdc, 0x75, 0xdc, 0x75, 0xbc, 0x6d, 0x5c, 0x65, 0x5c, 0x65, 0x3c, 0x5d, 0x3c, 0x54, 0xba, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, + 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x76, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xf7, 0x4b, 0xf8, 0x4c, 0x19, 0x54, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0xbb, 0x5c, 0xdb, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x6d, 0x3c, 0x6d, 0x5c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x5c, 0x6d, 0x5c, 0x6d, 0x7c, 0x6d, 0xdc, 0x6d, 0xbc, 0x65, 0x9c, 0x65, 0x5c, 0x5d, 0x1c, 0x5d, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x7c, 0x6d, 0xbc, 0x65, 0x7c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x1c, 0x65, 0x1c, 0x5c, 0xfc, 0x54, 0xbc, 0x5c, 0xbc, 0x5c, 0xdc, 0x54, 0xdc, 0x4c, 0xdc, 0x4c, 0xdc, 0x4c, 0xdc, 0x4c, 0xdc, 0x4c, 0xdc, 0x4c, 0xdc, 0x4c, 0xdc, 0x4c, 0x9a, 0x4c, 0x18, 0x54, 0x38, 0x54, 0x38, 0x5c, 0x38, 0x5c, 0x38, 0x5c, 0x37, 0x5c, 0x37, 0x54, 0x17, 0x54, 0x17, 0x54, 0x17, 0x4b, 0xd6, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x13, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x4b, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x39, 0x4c, 0x5a, 0x4c, 0x7b, 0x4c, 0x9c, 0x54, 0xdc, 0x5c, 0xfc, 0x5d, 0x3c, 0x65, 0x7c, 0x6d, 0xbc, 0x6d, 0xfc, 0x76, 0x5c, 0x7e, 0x7c, 0x7e, 0x5b, 0x7e, 0x5b, 0x7e, 0x5b, 0x76, 0x5b, 0x76, 0x5b, 0x76, 0x5b, 0x76, 0x5b, 0x76, 0x5b, 0x76, 0x5b, 0x76, 0x5b, 0x7e, 0x5c, 0x7e, 0x3c, 0x7d, 0xfc, 0x7d, 0x9c, 0x7d, 0x7c, 0x7d, 0x7c, 0x7d, 0x7c, 0x7d, 0x7c, 0x7d, 0xbc, 0x7d, 0xdc, 0x75, 0xfc, 0x75, 0xdc, 0x6d, 0xdc, 0x6d, 0x5c, 0x65, 0x5c, 0x65, 0x5c, 0x5d, 0x3c, 0x54, 0x99, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x33, 0x13, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, + 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x96, 0x3b, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xf7, 0x4b, 0xf8, 0x4c, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x9a, 0x5c, 0xbb, 0x5c, 0xdb, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x5c, 0x65, 0x3c, 0x6d, 0x5c, 0x6d, 0x7c, 0x6d, 0x9c, 0x6d, 0xdc, 0x6d, 0xbc, 0x65, 0x5c, 0x65, 0x3c, 0x5d, 0x1c, 0x5d, 0x1c, 0x5d, 0x1c, 0x55, 0x3c, 0x5d, 0x1c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x54, 0xdc, 0x54, 0xdc, 0x54, 0xdc, 0x54, 0xbc, 0x4c, 0xdc, 0x54, 0xdc, 0x54, 0xdb, 0x54, 0x7a, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x5c, 0x38, 0x54, 0x38, 0x54, 0x38, 0x53, 0xf7, 0x43, 0x95, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x13, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0xf7, 0x44, 0x18, 0x44, 0x18, 0x44, 0x39, 0x44, 0x5a, 0x44, 0x7a, 0x4c, 0x9b, 0x54, 0xdc, 0x5c, 0xfc, 0x5d, 0x3c, 0x65, 0x5c, 0x6d, 0x7c, 0x6d, 0xdc, 0x76, 0x1c, 0x76, 0x3c, 0x76, 0x5c, 0x76, 0x5c, 0x76, 0x5c, 0x76, 0x5c, 0x6e, 0x5c, 0x76, 0x5c, 0x6e, 0x5b, 0x6e, 0x5b, 0x76, 0x5c, 0x76, 0x5c, 0x76, 0x3c, 0x76, 0x1c, 0x75, 0xbc, 0x75, 0x9c, 0x75, 0x7c, 0x75, 0x9c, 0x75, 0x7c, 0x75, 0x7c, 0x75, 0x9c, 0x75, 0xbc, 0x75, 0xdc, 0x75, 0xbc, 0x6d, 0x7c, 0x65, 0x3c, 0x65, 0x3b, 0x65, 0x3c, 0x54, 0x99, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x33, 0x13, 0x33, 0x13, 0x33, 0x13, 0x33, 0x13, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, + 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x33, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x76, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x39, 0x4c, 0x39, 0x54, 0x39, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x9a, 0x5c, 0xbb, 0x64, 0xdb, 0x64, 0xfc, 0x65, 0x3c, 0x6d, 0x1c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x65, 0x5c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0xbc, 0x75, 0xdc, 0x6d, 0xbc, 0x65, 0x5c, 0x5d, 0x3c, 0x5d, 0x3c, 0x5d, 0x5c, 0x5d, 0x3c, 0x55, 0x3c, 0x54, 0xfc, 0x5c, 0xfc, 0x5d, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x54, 0xdc, 0x54, 0xdc, 0x54, 0xdc, 0x54, 0xdc, 0x54, 0xdc, 0x54, 0xdc, 0x54, 0x9b, 0x54, 0x5a, 0x54, 0x59, 0x54, 0x59, 0x5c, 0x79, 0x5c, 0x79, 0x54, 0x58, 0x53, 0xf7, 0x4b, 0xd6, 0x43, 0x95, 0x43, 0x74, 0x43, 0x75, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3a, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xf7, 0x44, 0x17, 0x44, 0x18, 0x44, 0x38, 0x44, 0x39, 0x44, 0x7a, 0x4c, 0x9a, 0x4c, 0xbb, 0x54, 0xfc, 0x5d, 0x1c, 0x5d, 0x3c, 0x65, 0x5c, 0x65, 0x7c, 0x6d, 0x9c, 0x6d, 0xbc, 0x6d, 0xfc, 0x6e, 0x1c, 0x6e, 0x1c, 0x6d, 0xfc, 0x6d, 0xfc, 0x6e, 0x1c, 0x6e, 0x1c, 0x6e, 0x3c, 0x6e, 0x5c, 0x76, 0x3c, 0x76, 0x3c, 0x75, 0xdc, 0x6d, 0x9c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x9c, 0x6d, 0x9c, 0x6d, 0x7c, 0x6d, 0x9c, 0x6d, 0xbc, 0x6d, 0x9c, 0x6d, 0x7c, 0x65, 0x1c, 0x65, 0x3c, 0x5d, 0x3c, 0x54, 0x58, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x33, 0x13, 0x33, 0x13, 0x33, 0x13, 0x33, 0x13, 0x33, 0x13, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, + 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf8, 0x54, 0x19, 0x54, 0x39, 0x54, 0x7b, 0x5c, 0x7c, 0x5c, 0xbc, 0x64, 0xdc, 0x64, 0xbb, 0x64, 0xbb, 0x5c, 0xbb, 0x64, 0xdb, 0x64, 0xfc, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x3c, 0x75, 0x3c, 0x6d, 0x3c, 0x75, 0x3c, 0x75, 0x5c, 0x75, 0x7c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x9c, 0x6d, 0xdc, 0x75, 0xfc, 0x6d, 0xbc, 0x5d, 0x5c, 0x5d, 0x5c, 0x5d, 0x5c, 0x5d, 0x5c, 0x5d, 0x3c, 0x54, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x54, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x54, 0xfc, 0x5c, 0xfc, 0x54, 0xfc, 0x54, 0xfc, 0x54, 0xdc, 0x5c, 0xdc, 0x5c, 0x9b, 0x5c, 0x7a, 0x54, 0x38, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x74, 0x3b, 0x74, 0x3b, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x54, 0x3b, 0x13, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0x92, 0x32, 0x91, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x44, 0x18, 0x44, 0x38, 0x44, 0x58, 0x44, 0x59, 0x44, 0x7a, 0x4c, 0xbb, 0x54, 0xdc, 0x54, 0xfc, 0x5d, 0x1c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x5c, 0x6d, 0x7c, 0x6d, 0x9c, 0x65, 0xbc, 0x65, 0xbc, 0x65, 0x9c, 0x65, 0x9c, 0x65, 0xbc, 0x65, 0xdc, 0x65, 0xfc, 0x6e, 0x1c, 0x6e, 0x3c, 0x6e, 0x1c, 0x6d, 0x9c, 0x65, 0x7c, 0x6d, 0x7c, 0x65, 0x9c, 0x6d, 0x7c, 0x65, 0x9c, 0x65, 0x9c, 0x65, 0x9c, 0x65, 0x7c, 0x65, 0x5c, 0x65, 0x1c, 0x65, 0x1c, 0x5d, 0x3c, 0x4c, 0x17, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x33, 0x13, 0x33, 0x13, 0x33, 0x13, 0x33, 0x13, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, + 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x3a, 0xf3, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4c, 0x18, 0x54, 0x5a, 0x5c, 0x9b, 0x5c, 0x9c, 0x5c, 0x9b, 0x5c, 0xbb, 0x5c, 0x9c, 0x64, 0xdc, 0x64, 0xdc, 0x64, 0xfc, 0x6d, 0x1c, 0x6d, 0x3c, 0x75, 0x3c, 0x75, 0x5c, 0x75, 0x5c, 0x75, 0x5c, 0x75, 0x7c, 0x75, 0x7c, 0x75, 0x7c, 0x6d, 0x9c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x9c, 0x6d, 0x9c, 0x6d, 0xbc, 0x6d, 0xdc, 0x6d, 0xdc, 0x6d, 0xbc, 0x5d, 0x5c, 0x5d, 0x7c, 0x5d, 0x5c, 0x5d, 0x1c, 0x5c, 0xfc, 0x5c, 0xfc, 0x54, 0xdc, 0x54, 0xfc, 0x54, 0xfc, 0x54, 0xdc, 0x54, 0xfc, 0x5d, 0x1c, 0x5c, 0xfc, 0x5c, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x5c, 0xdc, 0x54, 0xdc, 0x54, 0xdb, 0x54, 0xfb, 0x54, 0xfb, 0x4c, 0xdc, 0x44, 0x9a, 0x43, 0xf7, 0x3b, 0x95, 0x43, 0x95, 0x4b, 0xb6, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x3b, 0x95, 0x43, 0x75, 0x43, 0x74, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x54, 0x43, 0x74, 0x3b, 0x34, 0x32, 0xd2, 0x32, 0xd2, 0x3a, 0xf2, 0x32, 0xf2, 0x32, 0xf2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd7, 0x43, 0xf7, 0x3b, 0xf7, 0x3c, 0x18, 0x3c, 0x18, 0x44, 0x38, 0x44, 0x59, 0x4c, 0x79, 0x4c, 0x9a, 0x4c, 0xdb, 0x54, 0xdb, 0x5c, 0xdc, 0x5c, 0xfc, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x7c, 0x65, 0x7c, 0x65, 0x7c, 0x65, 0x9c, 0x65, 0xbc, 0x65, 0xdc, 0x65, 0xdc, 0x6d, 0xdc, 0x65, 0x9c, 0x65, 0x7c, 0x65, 0x7c, 0x65, 0x9c, 0x65, 0x7c, 0x65, 0x7c, 0x65, 0x7c, 0x65, 0x5c, 0x65, 0x3c, 0x5c, 0xfc, 0x64, 0xdc, 0x5d, 0x1c, 0x4b, 0xf6, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x33, 0x13, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, + 0x22, 0x50, 0x22, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x3b, 0x13, 0x3a, 0xf4, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb7, 0x4b, 0xd7, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x5a, 0x5c, 0x7b, 0x5c, 0x9c, 0x64, 0xbc, 0x64, 0xdc, 0x64, 0xfc, 0x6d, 0x1c, 0x6d, 0x3c, 0x75, 0x3c, 0x75, 0x5c, 0x75, 0x7c, 0x75, 0x7c, 0x75, 0x7c, 0x7d, 0x9c, 0x75, 0x9c, 0x75, 0x9c, 0x6d, 0x9c, 0x6d, 0x7c, 0x65, 0x7c, 0x65, 0x9c, 0x6d, 0x9c, 0x6d, 0x9c, 0x6d, 0xbc, 0x6d, 0xdc, 0x6d, 0xdc, 0x65, 0x7c, 0x5d, 0x5c, 0x5d, 0x3c, 0x5c, 0xfc, 0x55, 0x1c, 0x54, 0xfc, 0x54, 0xdc, 0x54, 0xdc, 0x54, 0xdc, 0x5c, 0xfc, 0x5d, 0x1c, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x54, 0xdc, 0x44, 0x9a, 0x3c, 0xba, 0x3c, 0x99, 0x3c, 0x9a, 0x3c, 0xba, 0x44, 0x79, 0x3b, 0x55, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb5, 0x4b, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x74, 0x43, 0x75, 0x43, 0x74, 0x3b, 0x74, 0x3b, 0x54, 0x3a, 0xf3, 0x32, 0xd2, 0x3a, 0xf2, 0x3a, 0xf2, 0x3a, 0xf3, 0x32, 0xf2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xd7, 0x3b, 0xd7, 0x3b, 0xf7, 0x3c, 0x18, 0x3c, 0x18, 0x3c, 0x38, 0x44, 0x38, 0x44, 0x79, 0x4c, 0x9a, 0x54, 0x9a, 0x54, 0xbb, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xfc, 0x65, 0x1c, 0x5d, 0x1c, 0x5d, 0x1c, 0x5d, 0x3c, 0x5d, 0x3c, 0x5d, 0x3c, 0x5d, 0x3c, 0x5d, 0x3c, 0x5d, 0x5c, 0x65, 0x7c, 0x65, 0xbc, 0x65, 0x7c, 0x65, 0x7c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x43, 0xf6, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x34, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x33, 0x13, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x50, + 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x30, 0x2a, 0x51, 0x32, 0x92, 0x32, 0xd2, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb7, 0x4b, 0xd7, 0x4c, 0x18, 0x54, 0x39, 0x54, 0x39, 0x4c, 0x18, 0x54, 0x39, 0x54, 0x5a, 0x5c, 0x9b, 0x5c, 0xbc, 0x64, 0xdc, 0x64, 0xfc, 0x6d, 0x1c, 0x6d, 0x3c, 0x6d, 0x3c, 0x75, 0x5c, 0x75, 0x7c, 0x7d, 0x9c, 0x7d, 0xbc, 0x7d, 0xdc, 0x7d, 0xdc, 0x75, 0xdc, 0x6d, 0xdc, 0x65, 0xbc, 0x65, 0x9c, 0x65, 0x9c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x9c, 0x6d, 0xbc, 0x6d, 0x9c, 0x6d, 0xbc, 0x65, 0x7c, 0x5d, 0x3b, 0x5d, 0x1c, 0x5d, 0x1b, 0x54, 0xfc, 0x54, 0xfc, 0x54, 0xdc, 0x54, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x44, 0xba, 0x3c, 0xba, 0x3c, 0x9a, 0x3c, 0xba, 0x3c, 0x9a, 0x3b, 0xf6, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x54, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x3a, 0xd2, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x96, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb7, 0x3b, 0xd7, 0x3b, 0xf7, 0x43, 0xf8, 0x44, 0x18, 0x44, 0x38, 0x4c, 0x59, 0x4c, 0x79, 0x4c, 0x7a, 0x54, 0x9b, 0x54, 0xbb, 0x5c, 0xbc, 0x5c, 0xdc, 0x64, 0xfc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5d, 0x1c, 0x5c, 0xfc, 0x5d, 0x1c, 0x5d, 0x1c, 0x5d, 0x1c, 0x5d, 0x3c, 0x65, 0x3c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x5c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x64, 0xfc, 0x5c, 0xdc, 0x64, 0xdc, 0x4b, 0xd6, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x43, 0x34, 0x43, 0x34, 0x3b, 0x54, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, + 0x22, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x30, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x96, 0x43, 0xb7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x18, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x39, 0x54, 0x5a, 0x54, 0x7b, 0x5c, 0x9c, 0x64, 0xbc, 0x64, 0xfc, 0x6d, 0x1c, 0x6d, 0x3c, 0x6d, 0x5c, 0x75, 0x5c, 0x75, 0x7c, 0x75, 0x9c, 0x7d, 0xdc, 0x85, 0xfc, 0x7e, 0x1c, 0x7e, 0x3c, 0x76, 0x3c, 0x6d, 0xfc, 0x6d, 0xbc, 0x6d, 0x9c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x9c, 0x6d, 0x9c, 0x6d, 0x9c, 0x6d, 0xbc, 0x65, 0x3b, 0x65, 0x3c, 0x5d, 0x3c, 0x5d, 0x1c, 0x5c, 0xfc, 0x54, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xdc, 0x65, 0x1c, 0x5d, 0x5b, 0x3c, 0x79, 0x3c, 0x9a, 0x3c, 0x9a, 0x3c, 0x78, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x92, 0x2a, 0x91, 0x32, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0xb6, 0x3b, 0xb7, 0x3b, 0xd7, 0x3b, 0xd7, 0x3b, 0xf8, 0x44, 0x18, 0x44, 0x38, 0x4c, 0x59, 0x4c, 0x79, 0x4c, 0x7a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0xbb, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5d, 0x1c, 0x5c, 0xfc, 0x5c, 0xfc, 0x5d, 0x1c, 0x5d, 0x1c, 0x5d, 0x1c, 0x5d, 0x1c, 0x65, 0x3c, 0x65, 0x1c, 0x65, 0x3c, 0x5d, 0x1c, 0x5d, 0x1c, 0x5d, 0x1c, 0x5d, 0x1c, 0x65, 0x1c, 0x5d, 0x1c, 0x5d, 0x3c, 0x5c, 0xfc, 0x5c, 0xbc, 0x5c, 0xbc, 0x43, 0xd6, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x50, 0x22, 0x30, + 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x70, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x96, 0x43, 0xb7, 0x43, 0xd7, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4c, 0x18, 0x54, 0x59, 0x54, 0x7b, 0x5c, 0x9c, 0x5c, 0xbc, 0x64, 0xdc, 0x65, 0x1c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x7c, 0x75, 0x9c, 0x75, 0xbc, 0x7d, 0xdc, 0x7e, 0x1c, 0x86, 0x1c, 0x86, 0x3c, 0x7e, 0x5c, 0x76, 0x5c, 0x76, 0x3c, 0x6d, 0xbc, 0x6d, 0x9c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x9c, 0x6d, 0x7c, 0x6d, 0x9c, 0x75, 0x9c, 0x65, 0x1b, 0x5d, 0x3c, 0x5d, 0x3c, 0x5d, 0x1c, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5d, 0x5c, 0x55, 0x1b, 0x3c, 0x9a, 0x3c, 0xda, 0x44, 0x79, 0x43, 0x96, 0x43, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf2, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xf2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf2, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0xb6, 0x3b, 0xb7, 0x3b, 0xd7, 0x3b, 0xd7, 0x3b, 0xf8, 0x44, 0x18, 0x44, 0x38, 0x44, 0x58, 0x4c, 0x79, 0x4c, 0x79, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0xbb, 0x5c, 0xdb, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5d, 0x1c, 0x5d, 0x1c, 0x5d, 0x1c, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5d, 0x1c, 0x5d, 0x1c, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x43, 0xd6, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x50, + 0x22, 0x30, 0x22, 0x50, 0x22, 0x2f, 0x22, 0x30, 0x2a, 0x91, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0xd7, 0x4b, 0xf8, 0x4b, 0xf7, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x39, 0x54, 0x5a, 0x54, 0x9b, 0x5c, 0xbc, 0x5c, 0xdc, 0x64, 0xfc, 0x65, 0x3c, 0x6d, 0x7c, 0x6d, 0x7c, 0x75, 0x9c, 0x75, 0xdc, 0x7e, 0x1c, 0x7e, 0x3c, 0x7e, 0x3c, 0x86, 0x5c, 0x86, 0x5c, 0x7e, 0x7c, 0x76, 0x5c, 0x76, 0x1c, 0x6d, 0xbc, 0x6d, 0x9c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x5c, 0x75, 0x9c, 0x75, 0x9c, 0x65, 0x3b, 0x5d, 0x3c, 0x5d, 0x3c, 0x5d, 0x1c, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xdb, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5d, 0x5c, 0x5d, 0x7c, 0x44, 0xda, 0x3c, 0x79, 0x44, 0x17, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf2, 0x32, 0xf2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb1, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x76, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0xb7, 0x3b, 0xd7, 0x3b, 0xd7, 0x3c, 0x17, 0x44, 0x18, 0x44, 0x38, 0x4c, 0x58, 0x4c, 0x58, 0x4c, 0x79, 0x54, 0x79, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0xba, 0x54, 0xbb, 0x5c, 0xdb, 0x54, 0xdc, 0x54, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5d, 0x1c, 0x5d, 0x1c, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x54, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x4b, 0xd6, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, + 0x22, 0x30, 0x22, 0x0f, 0x2a, 0x50, 0x32, 0x91, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x33, 0x14, 0x3b, 0x35, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x39, 0x54, 0x5a, 0x54, 0x9b, 0x5c, 0xbc, 0x5c, 0xdc, 0x65, 0x1c, 0x65, 0x3c, 0x6d, 0x5c, 0x6d, 0x9c, 0x75, 0xbc, 0x75, 0xfc, 0x76, 0x1c, 0x7e, 0x5c, 0x86, 0x7c, 0x86, 0x7b, 0x8e, 0x7c, 0x86, 0x7c, 0x7e, 0x7c, 0x7e, 0x5c, 0x76, 0x1c, 0x6d, 0xbc, 0x6d, 0x7c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x5c, 0x75, 0x7c, 0x75, 0x7c, 0x65, 0x3c, 0x65, 0x3c, 0x5d, 0x1c, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xdb, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdb, 0x5c, 0xdc, 0x5c, 0xfc, 0x5d, 0x5c, 0x5d, 0x7c, 0x5d, 0x5b, 0x44, 0x79, 0x43, 0xf7, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf2, 0x32, 0xf2, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0xb1, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf2, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x32, 0xf3, 0x33, 0x13, 0x33, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xd7, 0x3b, 0xd7, 0x3b, 0xf7, 0x44, 0x18, 0x44, 0x18, 0x4c, 0x38, 0x4c, 0x58, 0x4c, 0x79, 0x4c, 0x79, 0x4c, 0x79, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0xba, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xdc, 0x54, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x54, 0xbc, 0x54, 0xdc, 0x54, 0xdc, 0x54, 0xdc, 0x54, 0xbc, 0x54, 0xbc, 0x5c, 0xbc, 0x54, 0x9c, 0x4b, 0xd7, 0x3b, 0x14, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x54, 0x17, 0x53, 0xf7, 0x53, 0xf7, 0x4b, 0xf7, 0x4c, 0x18, 0x4b, 0xf7, 0x54, 0x17, 0x43, 0x55, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x50, 0x22, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, + 0x22, 0x2f, 0x2a, 0x50, 0x32, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0xf8, 0x43, 0xf7, 0x4c, 0x18, 0x4c, 0x39, 0x54, 0x5a, 0x54, 0x7b, 0x5c, 0xbc, 0x5c, 0xdc, 0x65, 0x3c, 0x6d, 0x5c, 0x6d, 0x7c, 0x6d, 0xdc, 0x75, 0xfc, 0x76, 0x1c, 0x76, 0x3c, 0x7e, 0x5c, 0x7e, 0x7c, 0x86, 0x7b, 0x86, 0x7b, 0x86, 0x7b, 0x7e, 0x7c, 0x7e, 0x7c, 0x76, 0x5c, 0x6d, 0xdc, 0x6d, 0x9c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x65, 0x3b, 0x5d, 0x1c, 0x5d, 0x1b, 0x5c, 0xfb, 0x5c, 0xdb, 0x5c, 0xbb, 0x5c, 0xbb, 0x54, 0xbb, 0x5c, 0xbb, 0x5c, 0xfb, 0x5d, 0x5c, 0x5d, 0x7c, 0x5d, 0x7c, 0x54, 0xda, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x16, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x74, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf2, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb7, 0x3b, 0xd7, 0x43, 0xd7, 0x43, 0xf7, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x58, 0x4c, 0x58, 0x4c, 0x79, 0x4c, 0x79, 0x54, 0x79, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9b, 0x54, 0xbb, 0x54, 0x9b, 0x54, 0xbc, 0x54, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x54, 0xbc, 0x54, 0xbc, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0x9c, 0x54, 0x9c, 0x54, 0x7b, 0x54, 0x39, 0x53, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x53, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x18, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3a, 0xf3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x2f, 0x22, 0x2f, 0x22, 0x2f, 0x22, 0x30, 0x22, 0x2f, + 0x22, 0x30, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb7, 0x43, 0xf7, 0x4b, 0xf7, 0x4c, 0x18, 0x54, 0x38, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0xbc, 0x5c, 0xfc, 0x65, 0x3c, 0x65, 0x5c, 0x6d, 0xbc, 0x6d, 0xdc, 0x76, 0x3c, 0x76, 0x3c, 0x7e, 0x3c, 0x7e, 0x5c, 0x7e, 0x7c, 0x7e, 0x7b, 0x86, 0x7b, 0x86, 0x7b, 0x86, 0x7b, 0x7e, 0x7b, 0x76, 0x7c, 0x76, 0x3c, 0x6d, 0xdc, 0x6d, 0x7c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x5c, 0x75, 0x5c, 0x6d, 0x5c, 0x65, 0x3b, 0x65, 0x3c, 0x65, 0x1b, 0x5c, 0xfb, 0x5c, 0xfb, 0x5c, 0xdb, 0x54, 0xbb, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xfb, 0x5d, 0x5c, 0x5d, 0x7c, 0x5d, 0x5c, 0x5c, 0xfa, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x16, 0x4c, 0x16, 0x4c, 0x16, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x33, 0x13, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x96, 0x3b, 0xb6, 0x3b, 0xb7, 0x43, 0xd7, 0x43, 0xf7, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x58, 0x4c, 0x58, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x7a, 0x4c, 0x7a, 0x4c, 0x7a, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0xbc, 0x54, 0xbc, 0x54, 0xbc, 0x54, 0xbc, 0x54, 0xbc, 0x5c, 0xbc, 0x54, 0xbc, 0x54, 0xbc, 0x54, 0x7b, 0x54, 0x7b, 0x54, 0x7a, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x39, 0x4b, 0xb7, 0x4b, 0xb6, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x2f, 0x22, 0x2f, 0x22, 0x2f, 0x22, 0x2f, 0x22, 0x2f, + 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x76, 0x43, 0xb6, 0x43, 0xd7, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x38, 0x54, 0x59, 0x5c, 0x9b, 0x5c, 0xbc, 0x5c, 0xfc, 0x65, 0x3c, 0x6d, 0x7c, 0x6d, 0xdc, 0x76, 0x3c, 0x76, 0x5c, 0x7e, 0x7c, 0x7e, 0x5c, 0x7e, 0x5c, 0x7e, 0x7c, 0x7e, 0x7c, 0x7e, 0x7b, 0x86, 0x7b, 0x86, 0x7b, 0x7e, 0x7b, 0x76, 0x7c, 0x76, 0x3c, 0x6d, 0xdc, 0x6d, 0x9c, 0x6d, 0x7c, 0x6d, 0x5c, 0x6d, 0x1c, 0x6d, 0x3c, 0x75, 0x3c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x7c, 0x65, 0x3b, 0x65, 0x1b, 0x5c, 0xfb, 0x5c, 0xdb, 0x5c, 0xdb, 0x54, 0xbb, 0x54, 0xbb, 0x5c, 0xbb, 0x5c, 0xfb, 0x5d, 0x7c, 0x5d, 0x9c, 0x65, 0x9c, 0x5c, 0xd9, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x37, 0x54, 0x17, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x16, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb5, 0x43, 0x95, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, 0x34, 0x3b, 0x55, 0x33, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0xb6, 0x3b, 0xb7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x58, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x5a, 0x4c, 0x7a, 0x4c, 0x7a, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0xbc, 0x54, 0xbc, 0x54, 0x9c, 0x54, 0xbc, 0x5c, 0xbc, 0x5c, 0xdc, 0x54, 0x9b, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x7b, 0x54, 0x3a, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd7, 0x43, 0x55, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x2f, 0x2a, 0x50, + 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xb7, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x18, 0x54, 0x59, 0x5c, 0x9a, 0x5c, 0xdc, 0x65, 0x1c, 0x6d, 0x5c, 0x6d, 0xdc, 0x76, 0x3c, 0x7e, 0x7c, 0x7e, 0x7b, 0x7e, 0x7b, 0x86, 0x7c, 0x86, 0x7c, 0x86, 0x7c, 0x86, 0x5c, 0x7e, 0x7c, 0x7e, 0x7c, 0x86, 0x7b, 0x86, 0x7b, 0x7e, 0x7b, 0x76, 0x3c, 0x6d, 0xfc, 0x6d, 0x9c, 0x6d, 0x7c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x1c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x65, 0x3b, 0x5c, 0xfb, 0x5c, 0xdb, 0x5c, 0xbb, 0x54, 0xbb, 0x54, 0x9b, 0x54, 0xbb, 0x5c, 0xfb, 0x5d, 0x7c, 0x65, 0x9c, 0x65, 0x5c, 0x5c, 0xb9, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb5, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb1, 0x32, 0xb1, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x55, 0x43, 0x96, 0x4b, 0xd7, 0x4b, 0xf8, 0x4c, 0x18, 0x54, 0x39, 0x54, 0x39, 0x4c, 0x39, 0x4c, 0x39, 0x4c, 0x39, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7b, 0x54, 0x7a, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x58, 0x4c, 0x58, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x5a, 0x4c, 0x7a, 0x4c, 0x7a, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0x9c, 0x54, 0x9c, 0x54, 0x5a, 0x54, 0x59, 0x5c, 0x7a, 0x54, 0x7b, 0x54, 0x7b, 0x54, 0x7b, 0x54, 0x9c, 0x54, 0x7a, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd7, 0x43, 0x75, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, + 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x76, 0x3b, 0x96, 0x43, 0xd7, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x59, 0x5c, 0x7a, 0x64, 0xdc, 0x65, 0x3c, 0x6d, 0x9c, 0x76, 0x5c, 0x7e, 0x9c, 0x86, 0x7b, 0x8e, 0x9b, 0x8e, 0x9b, 0x8e, 0x9b, 0x8e, 0x9b, 0x86, 0x7c, 0x86, 0x7c, 0x86, 0x5c, 0x86, 0x5c, 0x86, 0x7c, 0x86, 0x7b, 0x7e, 0x9b, 0x7e, 0x7b, 0x76, 0x1d, 0x6d, 0xdc, 0x6d, 0x9c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x1c, 0x6d, 0x3c, 0x75, 0x3c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x5c, 0x65, 0x3b, 0x5c, 0xfb, 0x5c, 0xdb, 0x5c, 0xbb, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xba, 0x5c, 0xfb, 0x5d, 0x7c, 0x65, 0x7c, 0x65, 0x7b, 0x5c, 0x78, 0x54, 0x38, 0x54, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x17, 0x54, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x43, 0xb5, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0xb1, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x55, 0x43, 0x96, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xf8, 0x4c, 0x18, 0x54, 0x39, 0x54, 0x59, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x9b, 0x54, 0x9b, 0x54, 0x7c, 0x54, 0x7c, 0x54, 0x7c, 0x54, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbb, 0x54, 0x7a, 0x4c, 0x58, 0x4c, 0x38, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x7a, 0x54, 0x9b, 0x54, 0x39, 0x4c, 0x39, 0x54, 0x39, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0xbc, 0x5c, 0x9b, 0x54, 0x17, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0xb6, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x13, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, + 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x4c, 0x18, 0x54, 0x38, 0x5c, 0x7a, 0x64, 0xdc, 0x6d, 0x3c, 0x75, 0xbc, 0x7e, 0x7c, 0x8e, 0x9b, 0x9e, 0x9c, 0x9e, 0x7c, 0xa6, 0x9c, 0x9e, 0x7c, 0x9e, 0x9c, 0x96, 0x7c, 0x8e, 0x9c, 0x8e, 0x7c, 0x86, 0x7c, 0x86, 0x5c, 0x86, 0x7c, 0x86, 0x7b, 0x7e, 0x7b, 0x76, 0x5c, 0x6d, 0xfc, 0x6d, 0x9c, 0x6d, 0x7c, 0x6d, 0x3c, 0x6d, 0x1c, 0x6d, 0x3c, 0x75, 0x5c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x5c, 0x65, 0x1b, 0x5c, 0xdb, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0x9a, 0x54, 0xba, 0x5c, 0xfb, 0x65, 0x7c, 0x65, 0xbc, 0x65, 0x5b, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x74, 0x3b, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb1, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xf3, 0x3b, 0x14, 0x43, 0x75, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd6, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x18, 0x54, 0x39, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x7b, 0x54, 0x7b, 0x54, 0x9c, 0x5c, 0x9c, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xdc, 0x64, 0xdc, 0x5c, 0x9b, 0x54, 0x79, 0x4c, 0x59, 0x4c, 0x38, 0x4c, 0x39, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x18, 0x4b, 0xf7, 0x54, 0x38, 0x54, 0x39, 0x54, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x5a, 0x5c, 0x7a, 0x5c, 0x9b, 0x64, 0x9a, 0x54, 0x17, 0x53, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xd7, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x91, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x71, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, + 0x32, 0x92, 0x32, 0x91, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0xb6, 0x43, 0xd7, 0x4b, 0xf7, 0x54, 0x38, 0x54, 0x79, 0x64, 0xdc, 0x6d, 0x3c, 0x75, 0x9c, 0x86, 0x7c, 0x96, 0x9b, 0xae, 0x9c, 0xbe, 0x9c, 0xbe, 0x7c, 0xbe, 0x9c, 0xb6, 0x9c, 0xae, 0x9c, 0x9e, 0x9c, 0x8e, 0x9c, 0x8e, 0x7c, 0x86, 0x5c, 0x86, 0x5c, 0x7e, 0x5c, 0x7e, 0x7c, 0x7e, 0x7c, 0x76, 0x3c, 0x6d, 0xdc, 0x6d, 0x7c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x3c, 0x5c, 0xfa, 0x54, 0xba, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0xba, 0x5d, 0x3b, 0x65, 0x9c, 0x6d, 0x7c, 0x65, 0x1a, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x37, 0x5c, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf6, 0x4b, 0xf6, 0x43, 0xb5, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb1, 0x32, 0xb1, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x70, 0x2a, 0x50, 0x2a, 0x70, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0xd3, 0x3b, 0x34, 0x43, 0x96, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7b, 0x54, 0x7b, 0x5c, 0xbc, 0x5c, 0xdc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xdc, 0x64, 0xdd, 0x5c, 0xbc, 0x5c, 0x9b, 0x54, 0x79, 0x4c, 0x18, 0x4c, 0x18, 0x4b, 0xf8, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x39, 0x54, 0x39, 0x54, 0x59, 0x5c, 0x7a, 0x5c, 0x9a, 0x54, 0x18, 0x53, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x54, 0x18, 0x4b, 0xb6, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, + 0x32, 0x92, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x76, 0x3b, 0xb6, 0x43, 0xb6, 0x43, 0xd7, 0x4c, 0x18, 0x54, 0x79, 0x5c, 0xbb, 0x65, 0x1c, 0x75, 0x9c, 0x86, 0x7c, 0x96, 0x9b, 0xae, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xae, 0x7c, 0x9e, 0x9c, 0x96, 0x9c, 0x8e, 0x5c, 0x86, 0x3c, 0x86, 0x1c, 0x7e, 0x5c, 0x7e, 0x7c, 0x7e, 0x7c, 0x76, 0x3c, 0x6d, 0xbc, 0x6d, 0x5c, 0x6d, 0x1c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x5c, 0x65, 0x1b, 0x54, 0xba, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x5d, 0x3b, 0x65, 0x9c, 0x6d, 0xdc, 0x65, 0x1a, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x4c, 0x38, 0x4c, 0x58, 0x54, 0x58, 0x54, 0x58, 0x5c, 0x58, 0x54, 0x37, 0x54, 0x57, 0x54, 0x57, 0x54, 0x37, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf6, 0x43, 0xb6, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x50, 0x22, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x50, 0x2a, 0x70, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x3b, 0x54, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0xd7, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0xbc, 0x64, 0xdc, 0x64, 0xfc, 0x64, 0xfc, 0x65, 0x1c, 0x64, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x64, 0xbc, 0x5c, 0x9b, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x59, 0x54, 0x39, 0x5c, 0x7a, 0x54, 0x18, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x54, 0x18, 0x5c, 0x59, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, + 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x0f, 0x22, 0x2f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0xf7, 0x54, 0x38, 0x5c, 0x9a, 0x65, 0x1c, 0x75, 0x7c, 0x7e, 0x3c, 0x8e, 0x9b, 0xa6, 0x9c, 0xc6, 0x9c, 0xbe, 0x7c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xb6, 0x9c, 0x9e, 0x9c, 0x96, 0x7c, 0x8e, 0x1c, 0x86, 0x1c, 0x86, 0x3c, 0x7e, 0x7c, 0x7e, 0x7c, 0x76, 0x3c, 0x6d, 0xbc, 0x6d, 0x7c, 0x6d, 0x3c, 0x65, 0x3c, 0x6d, 0x5c, 0x6d, 0x5c, 0x65, 0x3c, 0x6d, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x1c, 0x5c, 0xda, 0x54, 0x7a, 0x54, 0x79, 0x54, 0xba, 0x65, 0x9c, 0x6d, 0x9c, 0x6d, 0x5c, 0x65, 0x3b, 0x54, 0x58, 0x54, 0x79, 0x54, 0x78, 0x54, 0x78, 0x54, 0x58, 0x4c, 0x58, 0x54, 0x78, 0x54, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x57, 0x54, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb1, 0x32, 0xb1, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x71, 0x3a, 0xf3, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0xbb, 0x64, 0xdc, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x64, 0xbd, 0x54, 0x5a, 0x4c, 0x18, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x59, 0x4b, 0xf8, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x4b, 0xd7, 0x4c, 0x17, 0x54, 0x17, 0x5c, 0x59, 0x43, 0x75, 0x43, 0x54, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, + 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x71, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x35, 0x3b, 0x55, 0x3b, 0x76, 0x3b, 0xb6, 0x43, 0xb7, 0x43, 0xf7, 0x4c, 0x18, 0x54, 0x79, 0x5c, 0xdc, 0x6d, 0x5c, 0x7e, 0x1c, 0x8e, 0x9c, 0xa6, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xb6, 0x9c, 0x9e, 0x7c, 0x96, 0x5c, 0x8e, 0x1c, 0x86, 0x1c, 0x86, 0x5c, 0x7e, 0x7c, 0x76, 0x5c, 0x6d, 0xdc, 0x65, 0x5c, 0x65, 0x1c, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x1c, 0x64, 0xfb, 0x54, 0x9a, 0x54, 0x79, 0x5c, 0xfa, 0x65, 0x9c, 0x65, 0x7c, 0x6d, 0x9c, 0x65, 0x3b, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x78, 0x54, 0x78, 0x54, 0x58, 0x54, 0x78, 0x54, 0x78, 0x54, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x57, 0x54, 0x57, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb1, 0x32, 0x92, 0x32, 0xb1, 0x32, 0xb1, 0x32, 0x91, 0x2a, 0x70, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x91, 0x3b, 0x34, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xf7, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x39, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x7b, 0x54, 0x9b, 0x5c, 0xbc, 0x5c, 0xfc, 0x65, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0xbd, 0x5c, 0x9b, 0x54, 0x39, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x18, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x5c, 0x59, 0x5c, 0x58, 0x3b, 0x34, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x43, 0x94, 0x43, 0x74, 0x43, 0x54, 0x43, 0x34, 0x3b, 0x34, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, + 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x51, 0x2a, 0x50, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x2f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x33, 0x14, 0x33, 0x14, 0x33, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x4c, 0x17, 0x54, 0x58, 0x5c, 0x9a, 0x65, 0x1c, 0x75, 0x9c, 0x86, 0x7c, 0x9e, 0x9c, 0xb6, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xae, 0x9c, 0x96, 0x7c, 0x8e, 0x5c, 0x86, 0x1c, 0x86, 0x3c, 0x7e, 0x7c, 0x7e, 0x7c, 0x75, 0xdc, 0x6d, 0x7c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xfc, 0x5c, 0xba, 0x54, 0x99, 0x5d, 0x3b, 0x65, 0x7c, 0x6d, 0x9c, 0x6d, 0x9c, 0x65, 0x1b, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x58, 0x54, 0x79, 0x54, 0x78, 0x54, 0x78, 0x54, 0x78, 0x54, 0x78, 0x54, 0x58, 0x54, 0x57, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x37, 0x4b, 0xf6, 0x43, 0xb6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x50, 0x32, 0xd2, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x7a, 0x5c, 0xbb, 0x5c, 0xbc, 0x5c, 0xdc, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xdc, 0x64, 0xdc, 0x5c, 0xbc, 0x5c, 0x9c, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0xbc, 0x64, 0xbc, 0x5c, 0x7a, 0x54, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4c, 0x18, 0x54, 0x18, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xd7, 0x54, 0x38, 0x64, 0x9a, 0x43, 0x55, 0x3b, 0x34, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x94, 0x43, 0x74, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x92, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, + 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xd6, 0x43, 0xd7, 0x4c, 0x18, 0x54, 0x79, 0x5c, 0xdc, 0x65, 0x5d, 0x76, 0x1c, 0x8e, 0x9b, 0xae, 0x9c, 0xc6, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xa6, 0x9c, 0x96, 0x7c, 0x8e, 0x3c, 0x86, 0x3c, 0x7e, 0x5c, 0x7e, 0x5c, 0x75, 0xfc, 0x6d, 0x7c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xfc, 0x5c, 0xdb, 0x54, 0x99, 0x65, 0x5c, 0x65, 0x7c, 0x65, 0x5c, 0x6d, 0x7c, 0x65, 0x3b, 0x54, 0x7a, 0x5c, 0x9a, 0x54, 0x79, 0x54, 0x79, 0x54, 0x99, 0x4c, 0x59, 0x4c, 0x58, 0x54, 0x78, 0x54, 0x78, 0x54, 0x78, 0x54, 0x78, 0x54, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x17, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb1, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x70, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x0f, 0x2a, 0x50, 0x3a, 0xf3, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xf7, 0x54, 0x17, 0x4c, 0x37, 0x54, 0x38, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0xdc, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xdc, 0x5c, 0xbc, 0x5c, 0x9c, 0x5c, 0x7b, 0x5c, 0x7b, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9b, 0x64, 0x9c, 0x64, 0xbb, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x54, 0x38, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xd6, 0x54, 0x18, 0x54, 0x59, 0x4b, 0xb7, 0x3b, 0x34, 0x3b, 0x34, 0x43, 0x34, 0x43, 0x54, 0x43, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x43, 0x74, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x3a, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, + 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x22, 0x30, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0xf7, 0x54, 0x58, 0x5c, 0x9a, 0x64, 0xfc, 0x6d, 0x9c, 0x7e, 0x7c, 0x96, 0x9c, 0xb6, 0x9c, 0xc6, 0x9d, 0xbe, 0x9d, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9c, 0xbe, 0x9d, 0xbe, 0x9d, 0xb6, 0x9c, 0x9e, 0x9c, 0x8e, 0x7c, 0x86, 0x3c, 0x7e, 0x3c, 0x7e, 0x1c, 0x75, 0xfc, 0x75, 0x9c, 0x6d, 0x3c, 0x65, 0x1c, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x5c, 0xdc, 0x5c, 0xba, 0x65, 0x9c, 0x65, 0x5c, 0x65, 0x7c, 0x65, 0x9c, 0x65, 0x3b, 0x5c, 0x9a, 0x5c, 0xbb, 0x54, 0x9a, 0x54, 0x99, 0x54, 0x99, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x99, 0x54, 0x78, 0x54, 0x78, 0x54, 0x78, 0x4c, 0x58, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x37, 0x4c, 0x17, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x2f, 0x2a, 0x70, 0x3a, 0xf3, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xf6, 0x54, 0x17, 0x54, 0x37, 0x54, 0x58, 0x5c, 0x79, 0x5c, 0x9a, 0x64, 0xdc, 0x64, 0xfc, 0x6d, 0x3c, 0x6d, 0x5c, 0x75, 0x7c, 0x75, 0x7c, 0x75, 0x7c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x1c, 0x64, 0xdc, 0x5c, 0xbc, 0x5c, 0x7b, 0x54, 0x7a, 0x5c, 0x7a, 0x5c, 0x7b, 0x5c, 0x7b, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9b, 0x64, 0xbb, 0x54, 0x18, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x43, 0x96, 0x43, 0xb6, 0x4c, 0x18, 0x4b, 0xf8, 0x4b, 0xf7, 0x3b, 0x54, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x4b, 0x74, 0x43, 0x74, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x34, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd3, 0x3a, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, + 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x71, 0x22, 0x30, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x33, 0x14, 0x33, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x4c, 0x17, 0x54, 0x59, 0x5c, 0xbb, 0x65, 0x3c, 0x75, 0xdc, 0x86, 0x9c, 0x9e, 0x9c, 0xbe, 0x9d, 0xc6, 0x9d, 0xbe, 0x9d, 0xbe, 0x9c, 0xbe, 0x9d, 0xbe, 0x9d, 0xbe, 0x9d, 0xae, 0x9c, 0x96, 0x9c, 0x8e, 0x7c, 0x86, 0x3c, 0x7e, 0x3c, 0x76, 0x1d, 0x75, 0xfc, 0x75, 0x9c, 0x6d, 0x3c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x5d, 0x1c, 0x64, 0xfc, 0x64, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x64, 0xdc, 0x64, 0xfc, 0x65, 0x3c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x1c, 0x5c, 0x9b, 0x5c, 0xbb, 0x5c, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x99, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x78, 0x54, 0x78, 0x54, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x4c, 0x17, 0x43, 0xd6, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x2f, 0x2a, 0x71, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x95, 0x43, 0xb5, 0x4b, 0xb6, 0x4b, 0xd6, 0x53, 0xf7, 0x54, 0x17, 0x5c, 0x58, 0x5c, 0x79, 0x64, 0xda, 0x65, 0x1c, 0x6d, 0x3c, 0x75, 0x9c, 0x7d, 0xdc, 0x7e, 0x3c, 0x86, 0x5c, 0x86, 0x5c, 0x7e, 0x1c, 0x7d, 0xbc, 0x75, 0x7c, 0x6d, 0x3d, 0x64, 0xdc, 0x5c, 0x9c, 0x5c, 0x7b, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x7b, 0x5c, 0x7b, 0x5c, 0x9b, 0x54, 0x18, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xf7, 0x4c, 0x18, 0x43, 0xb6, 0x43, 0x76, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, + 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x22, 0x50, 0x1a, 0x0f, 0x1a, 0x2f, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x22, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x33, 0x14, 0x33, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x95, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf7, 0x4c, 0x18, 0x54, 0x7a, 0x5c, 0xdc, 0x6d, 0x3c, 0x76, 0x1c, 0x8e, 0x9c, 0xa6, 0x9c, 0xbe, 0x9d, 0xbe, 0x9d, 0xbe, 0x9d, 0xbe, 0x9d, 0xc6, 0x9d, 0xbe, 0x9d, 0xae, 0x9c, 0x96, 0x9c, 0x8e, 0x9c, 0x86, 0x3c, 0x7e, 0x1c, 0x75, 0xfd, 0x75, 0xdd, 0x75, 0x7c, 0x6d, 0x3c, 0x65, 0x1c, 0x64, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xdc, 0x64, 0xfc, 0x65, 0x3c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x3c, 0x5c, 0xbb, 0x5c, 0xdc, 0x5c, 0xdb, 0x54, 0x9a, 0x5c, 0x9a, 0x54, 0x9a, 0x54, 0x79, 0x4c, 0x79, 0x54, 0x99, 0x54, 0x79, 0x54, 0x79, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x0f, 0x2a, 0x71, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x95, 0x43, 0xb5, 0x4b, 0xb6, 0x4b, 0xd6, 0x54, 0x17, 0x5c, 0x37, 0x5c, 0x78, 0x64, 0xda, 0x6d, 0x1c, 0x75, 0x7d, 0x7d, 0xdc, 0x86, 0x7c, 0x8e, 0x9c, 0x96, 0x9c, 0x96, 0x9c, 0x8e, 0x9c, 0x8e, 0x7c, 0x86, 0x3c, 0x7d, 0xbd, 0x6d, 0x1c, 0x64, 0xdc, 0x5c, 0x9c, 0x5c, 0x7b, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x7a, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x9b, 0x4c, 0x17, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x43, 0xb6, 0x3a, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3a, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, + 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x51, 0x22, 0x51, 0x22, 0x50, 0x22, 0x51, 0x2a, 0x51, 0x22, 0x30, 0x1a, 0x0f, 0x1a, 0x10, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf7, 0x4c, 0x38, 0x54, 0x7a, 0x5c, 0xdc, 0x6d, 0x5c, 0x7e, 0x1c, 0x8e, 0x9c, 0x9e, 0x9c, 0xbe, 0x9c, 0xc6, 0x9d, 0xbe, 0x9d, 0xbe, 0x9d, 0xbe, 0x9d, 0xa6, 0x9c, 0x96, 0x9c, 0x8e, 0x9c, 0x7e, 0x5d, 0x7d, 0xfc, 0x75, 0xfd, 0x75, 0xdd, 0x6d, 0x7c, 0x6d, 0x3c, 0x65, 0x1c, 0x64, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xbc, 0x64, 0xdc, 0x64, 0xfc, 0x65, 0x3c, 0x65, 0x5c, 0x5d, 0x1c, 0x65, 0x5c, 0x65, 0x5c, 0x65, 0x1c, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xba, 0x5c, 0x9a, 0x54, 0x9a, 0x54, 0x79, 0x54, 0x79, 0x4c, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x4c, 0x79, 0x4c, 0x78, 0x54, 0x58, 0x54, 0x58, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x2f, 0x2a, 0x91, 0x3a, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0xb5, 0x4b, 0xd6, 0x4b, 0xf6, 0x54, 0x37, 0x5c, 0x58, 0x64, 0xba, 0x6d, 0x1c, 0x75, 0x7d, 0x7e, 0x3d, 0x8e, 0x7c, 0x96, 0x9c, 0x9e, 0x9c, 0xa6, 0x9c, 0xa6, 0x9c, 0x9e, 0x9c, 0x96, 0x9c, 0x86, 0x5c, 0x7d, 0x9c, 0x6d, 0x1d, 0x64, 0xdd, 0x5c, 0x9b, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x5c, 0x9b, 0x4b, 0xf7, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0x75, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, + 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x2a, 0x51, 0x22, 0x50, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x22, 0x30, 0x1a, 0x0f, 0x1a, 0x30, 0x22, 0x50, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xf3, 0x33, 0x14, 0x33, 0x34, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xd7, 0x4c, 0x17, 0x54, 0x39, 0x54, 0x7b, 0x64, 0xfc, 0x6d, 0x7d, 0x7e, 0x1c, 0x8e, 0x9c, 0x96, 0x9c, 0xa6, 0x9c, 0xae, 0x9c, 0xae, 0x9c, 0xa6, 0x9c, 0x96, 0x9c, 0x8e, 0x9b, 0x86, 0x7c, 0x7e, 0x5d, 0x75, 0xfd, 0x75, 0xdd, 0x75, 0xbd, 0x6d, 0x5d, 0x6d, 0x3c, 0x6d, 0x3c, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xdc, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x5d, 0x3c, 0x65, 0x5c, 0x65, 0x3c, 0x64, 0xdc, 0x64, 0xdc, 0x5c, 0xbc, 0x5c, 0xbb, 0x54, 0xba, 0x5c, 0x9b, 0x54, 0x9a, 0x4c, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x4c, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x78, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x33, 0x3b, 0x13, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x30, 0x2a, 0x71, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x35, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xd6, 0x4c, 0x17, 0x54, 0x57, 0x5c, 0x99, 0x64, 0xfc, 0x6d, 0x7d, 0x7e, 0x1d, 0x8e, 0x7c, 0x96, 0x9c, 0xa6, 0x9c, 0xb6, 0x9c, 0xbe, 0x9d, 0xb6, 0x9c, 0xa6, 0x9c, 0x96, 0x9c, 0x7d, 0xfc, 0x75, 0x7c, 0x6d, 0x1c, 0x64, 0xbc, 0x5c, 0x7b, 0x54, 0x59, 0x54, 0x39, 0x4c, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x59, 0x54, 0x59, 0x5c, 0x5a, 0x4b, 0xd7, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xb6, 0x3b, 0x13, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, + 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x2f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x50, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x22, 0x51, 0x1a, 0x10, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x33, 0x14, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf7, 0x54, 0x39, 0x54, 0x7a, 0x64, 0xdc, 0x6d, 0x5c, 0x75, 0xdc, 0x86, 0x5c, 0x8e, 0x9c, 0x96, 0x9c, 0x96, 0x9c, 0x96, 0x9c, 0x8e, 0x9b, 0x86, 0x9b, 0x7e, 0x9c, 0x76, 0x1d, 0x75, 0xbc, 0x75, 0x9d, 0x6d, 0x7d, 0x6d, 0x3c, 0x6d, 0x3c, 0x65, 0x1c, 0x64, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xbc, 0x64, 0xdc, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x1c, 0x64, 0xdc, 0x64, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0x9b, 0x54, 0x9b, 0x54, 0x9a, 0x54, 0x7a, 0x4c, 0x79, 0x4c, 0x79, 0x54, 0x79, 0x4c, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x58, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x70, 0x2a, 0x70, 0x22, 0x50, 0x2a, 0x71, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x14, 0x33, 0x34, 0x3b, 0x55, 0x3b, 0x95, 0x43, 0xd6, 0x4c, 0x17, 0x54, 0x58, 0x5c, 0xba, 0x65, 0x1c, 0x75, 0xbc, 0x86, 0x7c, 0x8e, 0x9c, 0x9e, 0x9c, 0xbe, 0x9c, 0xc6, 0x9d, 0xbe, 0x9c, 0xae, 0x9c, 0x9e, 0x9c, 0x8e, 0x5c, 0x7d, 0xbd, 0x6d, 0x3d, 0x64, 0xdc, 0x5c, 0x9b, 0x54, 0x59, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x39, 0x5c, 0x7a, 0x4b, 0xf7, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0x96, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x2a, 0x71, + 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x22, 0x51, 0x1a, 0x30, 0x22, 0x50, 0x22, 0x71, 0x22, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x33, 0x14, 0x33, 0x34, 0x3b, 0x54, 0x43, 0x75, 0x43, 0x95, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4c, 0x38, 0x54, 0x39, 0x54, 0x9b, 0x64, 0xdc, 0x6d, 0x3c, 0x6d, 0x5c, 0x75, 0xfc, 0x86, 0x9c, 0x86, 0x9b, 0x86, 0x7b, 0x86, 0x7b, 0x86, 0x7c, 0x7e, 0x7c, 0x7e, 0x1d, 0x75, 0xbc, 0x75, 0x7c, 0x6d, 0x9d, 0x6d, 0x5c, 0x6d, 0x3c, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xfd, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xdc, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x3c, 0x65, 0x1c, 0x64, 0xdc, 0x65, 0x1d, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbb, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0x9a, 0x4c, 0x7a, 0x4c, 0x7a, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x99, 0x54, 0x79, 0x54, 0x58, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x51, 0x32, 0xb2, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x33, 0x14, 0x33, 0x34, 0x3b, 0x55, 0x3b, 0x95, 0x43, 0xb6, 0x4c, 0x17, 0x54, 0x59, 0x5c, 0xbb, 0x6d, 0x1c, 0x75, 0xbc, 0x86, 0x7c, 0x96, 0x9c, 0xa6, 0x9c, 0xb6, 0x9c, 0xb6, 0x9c, 0xae, 0x9c, 0x9e, 0x9c, 0x8e, 0x9c, 0x7d, 0xfd, 0x75, 0x5d, 0x6d, 0x1d, 0x5c, 0x9b, 0x54, 0x59, 0x4c, 0x18, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xd8, 0x4b, 0xf8, 0x54, 0x19, 0x54, 0x39, 0x54, 0x59, 0x43, 0xd7, 0x43, 0xd6, 0x43, 0xd6, 0x3b, 0x34, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x71, + 0x22, 0x51, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x32, 0x92, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x22, 0x91, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x95, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x18, 0x54, 0x39, 0x5c, 0x9b, 0x5c, 0xdc, 0x64, 0xfc, 0x6d, 0x7d, 0x76, 0x1d, 0x7e, 0x3c, 0x7e, 0x7c, 0x86, 0x9c, 0x7e, 0x7c, 0x7e, 0x1c, 0x75, 0xdc, 0x6d, 0x7c, 0x6d, 0x5c, 0x6d, 0x5c, 0x6d, 0x3c, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdd, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xfc, 0x65, 0x3c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x5d, 0x3c, 0x5d, 0x1c, 0x5c, 0xdc, 0x65, 0x1d, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x79, 0x54, 0x79, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3a, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x32, 0xd2, 0x3b, 0x13, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x33, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0xb6, 0x4b, 0xf7, 0x54, 0x59, 0x5c, 0xbb, 0x6d, 0x1c, 0x75, 0x9c, 0x86, 0x5c, 0x96, 0x9c, 0x9e, 0x9c, 0xa6, 0x9c, 0xa6, 0x9c, 0x9e, 0x9c, 0x8e, 0x7c, 0x7d, 0xfd, 0x75, 0x5d, 0x6d, 0x1d, 0x5c, 0xbb, 0x54, 0x59, 0x54, 0x18, 0x4b, 0xf7, 0x43, 0xd7, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x18, 0x54, 0x5a, 0x4b, 0xf8, 0x43, 0x96, 0x43, 0xb6, 0x3b, 0x13, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x51, + 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x71, 0x22, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x22, 0x71, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x33, 0x14, 0x3b, 0x54, 0x43, 0x75, 0x43, 0x75, 0x4b, 0x96, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xf7, 0x43, 0xd7, 0x4c, 0x18, 0x54, 0x59, 0x54, 0x7b, 0x5c, 0xbc, 0x64, 0xfc, 0x6d, 0x5d, 0x6d, 0x7d, 0x75, 0x9d, 0x75, 0xdc, 0x75, 0xfd, 0x75, 0xfd, 0x75, 0xdd, 0x75, 0xbd, 0x6d, 0x5c, 0x6d, 0x5c, 0x65, 0x1c, 0x64, 0xfd, 0x64, 0xfc, 0x64, 0xdc, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xdd, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xbd, 0x5c, 0xdc, 0x5d, 0x3c, 0x5d, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x3c, 0x5d, 0x1c, 0x5c, 0xdc, 0x64, 0xfd, 0x5c, 0xfd, 0x5c, 0xdc, 0x5c, 0xbc, 0x54, 0x9c, 0x54, 0xbb, 0x54, 0x9a, 0x4c, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x79, 0x54, 0x59, 0x54, 0x59, 0x54, 0x58, 0x54, 0x39, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x33, 0x13, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x71, 0x32, 0xd2, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0xf3, 0x33, 0x14, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0xb6, 0x4b, 0xf7, 0x54, 0x38, 0x5c, 0x9b, 0x65, 0x1c, 0x7e, 0x1c, 0x86, 0x5c, 0x8e, 0x9c, 0x96, 0x9c, 0x96, 0x9c, 0x96, 0xbc, 0x86, 0x1c, 0x7d, 0x9d, 0x75, 0x5d, 0x6c, 0xfd, 0x5c, 0x9b, 0x54, 0x59, 0x4c, 0x18, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0xb7, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0xf8, 0x54, 0x59, 0x4b, 0xd7, 0x3b, 0x35, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, + 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x2f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x22, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd8, 0x4c, 0x18, 0x54, 0x39, 0x54, 0x7b, 0x5c, 0xbc, 0x64, 0xfd, 0x65, 0x1d, 0x6d, 0x3c, 0x6d, 0x5d, 0x6d, 0x7d, 0x6d, 0x7d, 0x6d, 0x7d, 0x6d, 0x7d, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x5c, 0x64, 0xfc, 0x64, 0xdc, 0x64, 0xdd, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5d, 0x1c, 0x5c, 0xfc, 0x5c, 0xfc, 0x64, 0xfc, 0x65, 0x1c, 0x64, 0xfc, 0x5d, 0x1c, 0x5c, 0xfc, 0x5c, 0xbc, 0x64, 0xfc, 0x64, 0xfc, 0x5c, 0xfc, 0x5c, 0xbc, 0x54, 0xbc, 0x54, 0xbc, 0x54, 0x9b, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0xba, 0x54, 0x9a, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x39, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, 0x32, 0xb2, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x51, 0x22, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x75, 0x43, 0x96, 0x4b, 0xd7, 0x4c, 0x18, 0x5c, 0xba, 0x6d, 0x3c, 0x75, 0x7d, 0x7d, 0xbc, 0x7d, 0xfc, 0x86, 0x1c, 0x86, 0x1d, 0x75, 0x7c, 0x75, 0x3d, 0x6d, 0x1d, 0x64, 0xdc, 0x5c, 0x7a, 0x54, 0x38, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xb7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf8, 0x54, 0x18, 0x43, 0x55, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x30, + 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x22, 0x50, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0xb7, 0x43, 0xf8, 0x4c, 0x18, 0x4c, 0x39, 0x54, 0x7b, 0x5c, 0xbc, 0x5c, 0xdd, 0x64, 0xfd, 0x64, 0xfd, 0x65, 0x1d, 0x65, 0x1c, 0x65, 0x3c, 0x65, 0x3c, 0x6d, 0x3c, 0x65, 0x3d, 0x6d, 0x3d, 0x6d, 0x3d, 0x65, 0x1c, 0x5c, 0xbc, 0x5c, 0xbd, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5d, 0x1c, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5d, 0x1d, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x1c, 0x5d, 0x1c, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xbc, 0x54, 0x9c, 0x54, 0x9c, 0x54, 0xbb, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0xbb, 0x54, 0xdb, 0x54, 0xba, 0x54, 0xba, 0x5c, 0xbb, 0x5c, 0x9a, 0x54, 0x7a, 0x54, 0x9a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x59, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xd7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x3a, 0xf3, 0x3b, 0x34, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x30, 0x22, 0x50, 0x22, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x22, 0x71, 0x22, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0xb6, 0x5c, 0x5a, 0x64, 0xbc, 0x64, 0xfc, 0x6d, 0x1c, 0x6d, 0x3c, 0x75, 0x3d, 0x75, 0x3d, 0x6d, 0x1c, 0x6d, 0x1d, 0x6c, 0xdc, 0x64, 0xbb, 0x5c, 0x7a, 0x54, 0x59, 0x54, 0x38, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb7, 0x4b, 0xd7, 0x4b, 0xf7, 0x43, 0x54, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x50, 0x22, 0x50, + 0x22, 0x30, 0x22, 0x2f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x2f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x22, 0x51, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x35, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb7, 0x43, 0xd7, 0x43, 0xf8, 0x4b, 0xf8, 0x4c, 0x39, 0x54, 0x7b, 0x54, 0x9c, 0x5c, 0xbd, 0x5c, 0xdd, 0x64, 0xfd, 0x64, 0xfc, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1d, 0x65, 0x1d, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfd, 0x64, 0xdc, 0x5c, 0x9c, 0x54, 0x9c, 0x5c, 0x9b, 0x5c, 0x9c, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x54, 0x9c, 0x54, 0x9c, 0x54, 0x9c, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xbb, 0x5c, 0xbb, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9b, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x59, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x3b, 0x34, 0x3b, 0x34, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x2f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x54, 0x39, 0x5c, 0x5a, 0x5c, 0x7a, 0x5c, 0x9a, 0x64, 0x9b, 0x64, 0xbc, 0x64, 0xdc, 0x64, 0xbc, 0x64, 0x9a, 0x5c, 0x7a, 0x5c, 0x59, 0x54, 0x18, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb7, 0x4b, 0xb7, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x2a, 0x71, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, + 0x22, 0x30, 0x22, 0x2f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0x71, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x33, 0x14, 0x33, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0xb7, 0x43, 0xb7, 0x43, 0xd8, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x39, 0x54, 0x5a, 0x54, 0x9c, 0x5c, 0x9c, 0x5c, 0xbd, 0x5c, 0xdd, 0x64, 0xfd, 0x64, 0xfd, 0x64, 0xfd, 0x64, 0xfd, 0x64, 0xfd, 0x64, 0xfd, 0x64, 0xfd, 0x64, 0xdc, 0x64, 0xdc, 0x64, 0xfc, 0x5c, 0xdb, 0x54, 0x7a, 0x54, 0xbb, 0x54, 0xfc, 0x54, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x54, 0xbc, 0x54, 0xbc, 0x54, 0xbc, 0x54, 0x9b, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xbb, 0x5c, 0xbc, 0x5c, 0xdb, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0x9b, 0x5c, 0x9a, 0x54, 0x7a, 0x54, 0x79, 0x54, 0x59, 0x54, 0x58, 0x54, 0x38, 0x54, 0x18, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x3b, 0x14, 0x3b, 0x55, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x2f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x71, 0x22, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x75, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0xf7, 0x54, 0x18, 0x54, 0x38, 0x54, 0x39, 0x5c, 0x59, 0x5c, 0x59, 0x54, 0x38, 0x54, 0x18, 0x53, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x4b, 0xd7, 0x43, 0xd7, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x76, 0x43, 0x96, 0x43, 0x75, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, + 0x22, 0x2f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x19, 0xef, 0x19, 0xee, 0x1a, 0x0f, 0x19, 0xee, 0x19, 0xef, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x22, 0x50, 0x22, 0x51, 0x2a, 0x51, 0x22, 0x51, 0x2a, 0x51, 0x22, 0x51, 0x2a, 0x51, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x33, 0x14, 0x33, 0x34, 0x3b, 0x35, 0x3b, 0x75, 0x3b, 0x76, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0xb7, 0x43, 0xb7, 0x43, 0xf8, 0x4c, 0x18, 0x4c, 0x19, 0x4c, 0x39, 0x4c, 0x3a, 0x54, 0x7b, 0x54, 0x7c, 0x5c, 0xbc, 0x5c, 0xbd, 0x5c, 0xdd, 0x5c, 0xfd, 0x5c, 0xdd, 0x5c, 0xfd, 0x5c, 0xdd, 0x5c, 0xdd, 0x5c, 0xbd, 0x5c, 0xbd, 0x64, 0xdd, 0x64, 0xfc, 0x5c, 0xdc, 0x54, 0xbc, 0x54, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x64, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xfd, 0x5c, 0xfd, 0x5c, 0xdc, 0x5c, 0xdc, 0x54, 0x9c, 0x54, 0x9c, 0x54, 0xbb, 0x54, 0xdb, 0x54, 0xbc, 0x54, 0xbb, 0x54, 0xdc, 0x5c, 0xdc, 0x5c, 0xfb, 0x64, 0xfc, 0x5c, 0xdc, 0x64, 0xdd, 0x64, 0xdc, 0x64, 0xdc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xbb, 0x5c, 0x9a, 0x54, 0x9a, 0x54, 0x79, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xd2, 0x3b, 0x34, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x14, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x2f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x43, 0x75, 0x43, 0xd7, 0x4b, 0xd6, 0x43, 0xb7, 0x43, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xb7, 0x43, 0x96, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x76, 0x3b, 0x14, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x71, 0x22, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, + 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x19, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0xb7, 0x43, 0xd7, 0x43, 0xf8, 0x4c, 0x18, 0x4c, 0x19, 0x4c, 0x39, 0x4c, 0x3a, 0x4c, 0x5b, 0x54, 0x7c, 0x54, 0xbc, 0x5c, 0xbc, 0x5c, 0xdd, 0x5c, 0xdd, 0x5c, 0xdd, 0x5c, 0xdd, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xdd, 0x5c, 0xfc, 0x5d, 0x1c, 0x54, 0xdc, 0x54, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x54, 0xbc, 0x54, 0xbc, 0x54, 0xbb, 0x54, 0xbc, 0x54, 0xbc, 0x54, 0xdb, 0x54, 0xdb, 0x5c, 0xfc, 0x65, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xfc, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x5c, 0xdc, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0x9a, 0x5c, 0x79, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x54, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x2f, 0x22, 0x0f, 0x1a, 0x0e, 0x19, 0xef, 0x1a, 0x0e, 0x1a, 0x0e, 0x19, 0xee, 0x19, 0xee, 0x1a, 0x0f, 0x19, 0xef, 0x19, 0xef, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x2f, 0x1a, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0x92, 0x3b, 0x55, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb7, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, + 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xee, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x19, 0xef, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x10, 0x1a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xd4, 0x32, 0xd3, 0x32, 0xf3, 0x33, 0x14, 0x33, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x76, 0x3b, 0x96, 0x3b, 0xb7, 0x43, 0xd7, 0x43, 0xf7, 0x4b, 0xf8, 0x4c, 0x19, 0x4c, 0x3a, 0x4c, 0x3a, 0x54, 0x5b, 0x54, 0x7c, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xdd, 0x5c, 0xdd, 0x5c, 0xdd, 0x5c, 0xbd, 0x5c, 0x9d, 0x5c, 0xbc, 0x5c, 0xbd, 0x5c, 0xdc, 0x5d, 0x1d, 0x5d, 0x1d, 0x65, 0x1c, 0x54, 0xdc, 0x54, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfd, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x54, 0xbc, 0x54, 0xbc, 0x54, 0xbc, 0x54, 0xdc, 0x54, 0xdc, 0x54, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x65, 0x1c, 0x6d, 0x3c, 0x6d, 0x3d, 0x65, 0x3c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x3c, 0x6d, 0x3c, 0x65, 0x1d, 0x64, 0xfc, 0x64, 0xdc, 0x5c, 0xdb, 0x5c, 0x9a, 0x5c, 0x79, 0x54, 0x59, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x33, 0x13, 0x3b, 0x34, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x0e, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xef, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x30, 0x1a, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x71, 0x3b, 0x55, 0x43, 0x96, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x43, 0xb6, 0x3b, 0x76, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0x96, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x76, 0x43, 0x96, 0x3a, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x51, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, + 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x19, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xee, 0x19, 0xef, 0x1a, 0x0f, 0x1a, 0x0f, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x1a, 0x0f, 0x19, 0xef, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x22, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xd4, 0x32, 0xd3, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0xb7, 0x43, 0xb7, 0x43, 0xd8, 0x4b, 0xf8, 0x4c, 0x19, 0x4c, 0x3a, 0x4c, 0x5a, 0x54, 0x7c, 0x5c, 0xbd, 0x5c, 0xdd, 0x5c, 0xdd, 0x5c, 0xdd, 0x5c, 0xdd, 0x5c, 0xbd, 0x5c, 0x9d, 0x5c, 0xbc, 0x5c, 0x9c, 0x5c, 0xdc, 0x5c, 0xfc, 0x5d, 0x1c, 0x5d, 0x1c, 0x65, 0x1c, 0x5c, 0xdc, 0x54, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfd, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdd, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x54, 0x9c, 0x54, 0xbc, 0x54, 0xbc, 0x54, 0xdc, 0x54, 0xbc, 0x54, 0xdc, 0x5c, 0xfc, 0x5d, 0x1c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x5c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x7c, 0x6d, 0x5d, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x1c, 0x65, 0x1c, 0x64, 0xdc, 0x5c, 0xbb, 0x5c, 0x9a, 0x54, 0x79, 0x54, 0x58, 0x54, 0x38, 0x54, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x43, 0x75, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x2f, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x0e, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x51, 0x2a, 0x71, 0x22, 0x71, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x96, 0x4b, 0xb6, 0x43, 0x96, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x76, 0x3b, 0x75, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0x92, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x50, 0x22, 0x30, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, + 0x22, 0x10, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x19, 0xef, 0x1a, 0x0f, 0x1a, 0x0f, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xef, 0x1a, 0x0f, 0x1a, 0x0f, 0x19, 0xef, 0x19, 0xce, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xce, 0x19, 0xee, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x76, 0x3b, 0x96, 0x3b, 0x97, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xd8, 0x43, 0xf8, 0x4c, 0x19, 0x4c, 0x5a, 0x54, 0x7c, 0x5c, 0xbd, 0x5c, 0xdd, 0x5c, 0xfd, 0x5c, 0xdd, 0x5c, 0xdd, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfd, 0x5c, 0xfc, 0x65, 0x1c, 0x65, 0x1c, 0x5c, 0xdc, 0x5c, 0xdd, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdd, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x54, 0x9c, 0x54, 0x9b, 0x54, 0xbb, 0x54, 0x9b, 0x54, 0xbb, 0x54, 0xbb, 0x5c, 0xdb, 0x65, 0x1c, 0x6d, 0x5c, 0x6d, 0x7c, 0x6d, 0x7c, 0x75, 0x9c, 0x75, 0xbc, 0x75, 0xdd, 0x75, 0xbd, 0x75, 0xbd, 0x75, 0xbc, 0x75, 0x9c, 0x6d, 0x5c, 0x6d, 0x3c, 0x6d, 0x1c, 0x64, 0xfc, 0x5c, 0xbb, 0x5c, 0x9a, 0x54, 0x79, 0x54, 0x79, 0x54, 0x58, 0x54, 0x37, 0x54, 0x17, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x55, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x19, 0xee, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xef, 0x1a, 0x0f, 0x1a, 0x10, 0x1a, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x51, 0x2a, 0x71, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x35, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x34, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x32, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, + 0x22, 0x10, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x19, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xef, 0x1a, 0x0f, 0x1a, 0x0f, 0x19, 0xef, 0x19, 0xce, 0x19, 0xee, 0x19, 0xce, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xef, 0x1a, 0x0f, 0x1a, 0x2f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x22, 0x51, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xd3, 0x33, 0x14, 0x33, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x76, 0x3b, 0x96, 0x3b, 0x97, 0x43, 0xb7, 0x43, 0xd7, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x3a, 0x54, 0x7c, 0x5c, 0xbd, 0x64, 0xfd, 0x65, 0x1d, 0x64, 0xfd, 0x64, 0xdc, 0x5c, 0xbc, 0x5c, 0x9c, 0x5c, 0xbd, 0x5c, 0xbc, 0x54, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdd, 0x5c, 0xfd, 0x65, 0x1d, 0x65, 0x1c, 0x5c, 0xdc, 0x5c, 0xdd, 0x5c, 0xdc, 0x5c, 0xdd, 0x5c, 0xdd, 0x5c, 0xbc, 0x54, 0xdc, 0x5c, 0xdc, 0x5c, 0xbd, 0x5c, 0xbc, 0x5c, 0xdd, 0x5c, 0xdc, 0x5c, 0xbb, 0x54, 0x9b, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xbb, 0x5c, 0xdb, 0x5c, 0xdb, 0x64, 0xfc, 0x6d, 0x5c, 0x75, 0x7c, 0x75, 0x7c, 0x75, 0xbc, 0x7e, 0x1d, 0x7e, 0x3d, 0x7e, 0x3c, 0x7e, 0x5c, 0x7e, 0x1c, 0x7e, 0x1c, 0x75, 0xfd, 0x75, 0x9c, 0x6d, 0x5c, 0x6d, 0x3c, 0x64, 0xfc, 0x5c, 0xbb, 0x5c, 0x9a, 0x5c, 0x99, 0x54, 0x59, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0e, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xcd, 0x19, 0xad, 0x19, 0xad, 0x19, 0xcd, 0x19, 0xcd, 0x19, 0xcd, 0x19, 0xcd, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xef, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x30, 0x22, 0x30, 0x22, 0x50, 0x2a, 0x72, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x76, 0x43, 0x96, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x32, 0x71, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, + 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x19, 0xef, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x19, 0xee, 0x19, 0xce, 0x19, 0xee, 0x19, 0xae, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xef, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x71, 0x22, 0x71, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x76, 0x3b, 0x96, 0x3b, 0x96, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xd8, 0x4b, 0xf8, 0x4c, 0x39, 0x54, 0x7b, 0x5c, 0xbc, 0x64, 0xfd, 0x6d, 0x1c, 0x64, 0xdb, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0xbc, 0x5c, 0xbd, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x65, 0x1c, 0x65, 0x1d, 0x65, 0x1c, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdd, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xdc, 0x54, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xdd, 0x5c, 0xdc, 0x5c, 0xbc, 0x54, 0x9b, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0x9b, 0x5c, 0xdb, 0x5c, 0xfc, 0x65, 0x1c, 0x6d, 0x5c, 0x75, 0x7c, 0x75, 0x9c, 0x7d, 0xfd, 0x7e, 0x5c, 0x86, 0x9c, 0x86, 0x9c, 0x86, 0x9c, 0x86, 0x7c, 0x86, 0x9c, 0x7e, 0x5c, 0x7d, 0xfc, 0x75, 0xbc, 0x75, 0x7c, 0x6d, 0x3d, 0x64, 0xfc, 0x64, 0xdc, 0x64, 0xdb, 0x5c, 0xba, 0x5c, 0x9a, 0x5c, 0x79, 0x4c, 0x17, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x43, 0x75, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x19, 0xee, 0x19, 0xce, 0x19, 0xae, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xee, 0x19, 0xef, 0x1a, 0x0f, 0x1a, 0x10, 0x22, 0x30, 0x2a, 0x92, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x55, 0x43, 0x75, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd2, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x2f, 0x22, 0x0f, 0x2a, 0x51, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, + 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x2f, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x10, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xee, 0x1a, 0x0e, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x2f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x22, 0x71, 0x22, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x33, 0x14, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x76, 0x3b, 0x76, 0x43, 0x96, 0x43, 0xb7, 0x43, 0xd7, 0x4b, 0xf8, 0x4c, 0x39, 0x54, 0x5a, 0x5c, 0xbc, 0x64, 0xdb, 0x5c, 0x9a, 0x5c, 0x9a, 0x5c, 0xba, 0x5c, 0xbb, 0x5c, 0xbb, 0x64, 0xdc, 0x5c, 0xfc, 0x5d, 0x1c, 0x5c, 0xdd, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfd, 0x65, 0x1d, 0x65, 0x1d, 0x65, 0x1c, 0x5c, 0xdc, 0x5c, 0xdd, 0x5c, 0xbc, 0x5c, 0xdc, 0x5c, 0xdc, 0x54, 0xdb, 0x5c, 0xbc, 0x64, 0xdd, 0x5c, 0xdc, 0x5c, 0xdd, 0x5c, 0xbc, 0x54, 0x9b, 0x54, 0xbb, 0x54, 0x9b, 0x54, 0xbb, 0x5c, 0xdb, 0x64, 0xfb, 0x65, 0x1c, 0x6d, 0x5c, 0x75, 0x7c, 0x7d, 0xdc, 0x86, 0x3d, 0x86, 0x7c, 0x8e, 0x9c, 0x8e, 0x9c, 0x96, 0xbc, 0x96, 0xbc, 0x8e, 0x9c, 0x8e, 0x9c, 0x86, 0x9c, 0x7e, 0x5c, 0x75, 0xfd, 0x75, 0x7c, 0x75, 0x7d, 0x75, 0x7d, 0x64, 0xdb, 0x4b, 0xf7, 0x43, 0x96, 0x43, 0x55, 0x3b, 0x34, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x3a, 0xd3, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3a, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x50, 0x22, 0x30, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x19, 0xee, 0x19, 0xce, 0x19, 0xae, 0x19, 0xad, 0x19, 0xad, 0x19, 0xcd, 0x19, 0xcd, 0x19, 0xcd, 0x19, 0xcd, 0x19, 0xcd, 0x19, 0xcd, 0x19, 0xad, 0x19, 0xad, 0x19, 0xcd, 0x19, 0xcd, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xef, 0x22, 0x30, 0x1a, 0x30, 0x2a, 0x71, 0x3b, 0x14, 0x3b, 0x35, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x3b, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x55, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x2a, 0x50, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x50, 0x22, 0x50, 0x22, 0x30, + 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x19, 0xef, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xee, 0x19, 0xee, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x2f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x22, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf3, 0x33, 0x13, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x76, 0x3b, 0x96, 0x43, 0x96, 0x43, 0xb7, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x39, 0x54, 0x5a, 0x54, 0x59, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x9a, 0x64, 0xba, 0x64, 0xbb, 0x64, 0xdc, 0x65, 0x1b, 0x65, 0x3c, 0x5d, 0x1d, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x64, 0xfc, 0x65, 0x1d, 0x65, 0x1d, 0x65, 0x1c, 0x64, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x54, 0xbb, 0x5c, 0xdc, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xdd, 0x5c, 0xdc, 0x54, 0x9b, 0x54, 0xbc, 0x54, 0xdb, 0x5c, 0xdb, 0x5c, 0xfb, 0x64, 0xfc, 0x65, 0x3c, 0x6d, 0x5c, 0x75, 0xbc, 0x7d, 0xfc, 0x86, 0x3c, 0x86, 0x9c, 0x8e, 0xbb, 0x96, 0x9c, 0x9e, 0xbc, 0x96, 0x9c, 0x96, 0x9c, 0x96, 0x9c, 0x8e, 0x9b, 0x8e, 0x9c, 0x86, 0x9c, 0x7d, 0xdb, 0x5c, 0x77, 0x43, 0x54, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x14, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x3a, 0xf3, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x71, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x1a, 0x0f, 0x1a, 0x0f, 0x19, 0xee, 0x19, 0xce, 0x19, 0xae, 0x19, 0xad, 0x19, 0xad, 0x19, 0xcd, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xcd, 0x19, 0xcd, 0x19, 0xcd, 0x19, 0xcd, 0x19, 0xcd, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x3b, 0x14, 0x3b, 0x34, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x35, 0x32, 0xf3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x22, 0x51, 0x22, 0x51, 0x22, 0x50, + 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x1a, 0x0f, 0x19, 0xee, 0x19, 0xee, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xee, 0x19, 0xee, 0x19, 0xef, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x2f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x35, 0x3b, 0x75, 0x3b, 0x76, 0x3b, 0x96, 0x43, 0xb6, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x54, 0x38, 0x5c, 0x78, 0x5c, 0x79, 0x5c, 0x99, 0x64, 0x9a, 0x64, 0xba, 0x64, 0xdb, 0x6d, 0x3c, 0x6d, 0x7d, 0x65, 0x3c, 0x5d, 0x1d, 0x5c, 0xfd, 0x5c, 0xfd, 0x64, 0xfd, 0x65, 0x1d, 0x65, 0x1d, 0x65, 0x1d, 0x65, 0x1c, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0x9b, 0x54, 0x9b, 0x54, 0xbb, 0x5c, 0xdc, 0x5c, 0xdd, 0x5c, 0xdd, 0x5c, 0xdc, 0x54, 0x9b, 0x54, 0xbb, 0x54, 0xbc, 0x5c, 0xbc, 0x5c, 0xdb, 0x64, 0xfc, 0x6d, 0x1c, 0x6d, 0x5d, 0x75, 0xbc, 0x7e, 0x1d, 0x86, 0x5c, 0x8e, 0xbc, 0x96, 0xbc, 0x9e, 0x9c, 0xa6, 0xbc, 0xa6, 0x9c, 0xa6, 0xbc, 0xa6, 0x7c, 0x96, 0x5b, 0x7d, 0x79, 0x4b, 0xb4, 0x32, 0xf3, 0x3b, 0x33, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x3b, 0x34, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x71, 0x22, 0x30, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x0e, 0x19, 0xee, 0x19, 0xce, 0x19, 0xad, 0x19, 0xad, 0x19, 0xcd, 0x19, 0xad, 0x19, 0xac, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0xad, 0x19, 0xad, 0x19, 0xac, 0x19, 0xad, 0x19, 0xad, 0x19, 0xcd, 0x19, 0xad, 0x19, 0xce, 0x19, 0xce, 0x22, 0x30, 0x1a, 0x30, 0x22, 0x30, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0x91, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x2f, 0x22, 0x0f, 0x22, 0x2f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x2f, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, + 0x22, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x1a, 0x0f, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x1a, 0x0e, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x2f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xd7, 0x4b, 0xf7, 0x43, 0xd7, 0x4b, 0xd7, 0x4c, 0x18, 0x54, 0x58, 0x5c, 0x78, 0x5c, 0x79, 0x5c, 0x99, 0x5c, 0x9a, 0x64, 0xbb, 0x75, 0x5c, 0x75, 0x7d, 0x6d, 0x7d, 0x65, 0x3d, 0x5c, 0xfc, 0x5c, 0xfd, 0x5c, 0xfd, 0x65, 0x1d, 0x65, 0x1d, 0x65, 0x1d, 0x64, 0xfd, 0x5c, 0xbc, 0x54, 0x7b, 0x5c, 0x9b, 0x54, 0x9c, 0x54, 0xbb, 0x54, 0x9b, 0x5c, 0xdb, 0x64, 0xdd, 0x64, 0xdd, 0x5c, 0xdc, 0x54, 0x9c, 0x54, 0xbb, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xdc, 0x64, 0xfc, 0x65, 0x3c, 0x6d, 0x5c, 0x75, 0x9c, 0x7e, 0x1c, 0x86, 0x7c, 0x8e, 0x9c, 0x96, 0xbc, 0xa6, 0xbc, 0xb6, 0xbd, 0xbe, 0x9c, 0x9d, 0xba, 0x74, 0x56, 0x4b, 0x74, 0x43, 0x13, 0x43, 0x33, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x43, 0x55, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, 0x22, 0x30, 0x19, 0xef, 0x19, 0xee, 0x19, 0xce, 0x19, 0xae, 0x19, 0xad, 0x19, 0xcd, 0x19, 0xad, 0x19, 0x8d, 0x19, 0xac, 0x19, 0xac, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0xac, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xce, 0x1a, 0x10, 0x22, 0x30, 0x19, 0xef, 0x32, 0xf3, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x54, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x3b, 0x13, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x2f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, + 0x2a, 0x51, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x1a, 0x0f, 0x19, 0xee, 0x19, 0xce, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xae, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x1a, 0x0e, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x2f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb7, 0x4b, 0xf7, 0x54, 0x18, 0x54, 0x58, 0x5c, 0x78, 0x5c, 0x79, 0x64, 0x9a, 0x64, 0xdb, 0x75, 0x5c, 0x75, 0x7d, 0x6d, 0x7d, 0x65, 0x5d, 0x65, 0x1c, 0x64, 0xfd, 0x64, 0xfc, 0x64, 0xfd, 0x64, 0xfd, 0x5c, 0xdc, 0x54, 0x9c, 0x5c, 0xbd, 0x5c, 0x9c, 0x54, 0x9b, 0x5c, 0x9b, 0x54, 0x7a, 0x54, 0x9a, 0x54, 0x9b, 0x5c, 0xdc, 0x64, 0xdd, 0x5c, 0xdc, 0x54, 0x9c, 0x54, 0xbc, 0x5c, 0xdb, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x65, 0x1c, 0x6d, 0x3c, 0x75, 0x9d, 0x7d, 0xfc, 0x86, 0x3c, 0x8e, 0x9c, 0x9e, 0xbc, 0xae, 0xdd, 0x9d, 0xfb, 0x6c, 0x16, 0x4b, 0x54, 0x43, 0x13, 0x43, 0x34, 0x4b, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x53, 0x43, 0x33, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xd2, 0x3a, 0xd3, 0x43, 0x95, 0x4b, 0xf7, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x76, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x21, 0xef, 0x19, 0xae, 0x19, 0xae, 0x19, 0xad, 0x19, 0xcd, 0x19, 0xcd, 0x19, 0xad, 0x19, 0xac, 0x19, 0xac, 0x19, 0xac, 0x19, 0xac, 0x19, 0xac, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xee, 0x1a, 0x10, 0x22, 0x30, 0x19, 0xef, 0x32, 0xd3, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x55, 0x43, 0x95, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x55, 0x43, 0x75, 0x3b, 0x34, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x3a, 0xd2, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x2f, 0x22, 0x2f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x19, 0xee, 0x3a, 0xf3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, + 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x1a, 0x0f, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xee, 0x19, 0xef, 0x19, 0xef, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x2f, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0xf7, 0x54, 0x38, 0x54, 0x58, 0x5c, 0x58, 0x5c, 0x99, 0x6c, 0xdb, 0x75, 0x5d, 0x75, 0x5d, 0x6d, 0x5d, 0x65, 0x1d, 0x64, 0xfd, 0x5c, 0xfd, 0x5c, 0xdc, 0x64, 0xdc, 0x5c, 0x9b, 0x54, 0x9b, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x54, 0x7b, 0x5c, 0xbb, 0x54, 0xba, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0xdc, 0x64, 0xfd, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x64, 0xfc, 0x64, 0xfd, 0x65, 0x1d, 0x6d, 0x3c, 0x6d, 0x5c, 0x75, 0xdc, 0x86, 0x7c, 0x8e, 0x9c, 0x96, 0x5b, 0x74, 0x97, 0x43, 0x13, 0x43, 0x33, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x43, 0x53, 0x43, 0x54, 0x43, 0x54, 0x43, 0x53, 0x43, 0x34, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xd2, 0x3b, 0x13, 0x4b, 0xb6, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3a, 0xf4, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x72, 0x32, 0x71, 0x32, 0x72, 0x2a, 0x51, 0x19, 0xee, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0x8c, 0x19, 0xac, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0xac, 0x19, 0xac, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0xad, 0x19, 0xad, 0x19, 0xed, 0x22, 0x2f, 0x22, 0x30, 0x19, 0xef, 0x32, 0xd3, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0x96, 0x4b, 0xb6, 0x43, 0x96, 0x3b, 0x35, 0x3a, 0xf4, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x3a, 0xd3, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x2f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x2f, 0x22, 0x2f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x21, 0xef, 0x1a, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x32, 0x91, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, + 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x1a, 0x0f, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xef, 0x19, 0xee, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x93, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x76, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xf7, 0x54, 0x18, 0x54, 0x38, 0x5c, 0x79, 0x64, 0xdb, 0x75, 0x5d, 0x75, 0x5d, 0x6d, 0x3d, 0x64, 0xfd, 0x64, 0xdd, 0x5c, 0xbc, 0x5c, 0x9b, 0x5c, 0x59, 0x54, 0x18, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7b, 0x5c, 0x9b, 0x5c, 0x9c, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x9a, 0x54, 0xbb, 0x64, 0xfc, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1d, 0x6d, 0x5c, 0x75, 0xdd, 0x7e, 0x1c, 0x75, 0x38, 0x4b, 0x94, 0x3a, 0xf3, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x33, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xd2, 0x43, 0x34, 0x53, 0xf7, 0x54, 0x17, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb5, 0x43, 0x95, 0x3b, 0x54, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x32, 0x92, 0x2a, 0x71, 0x22, 0x30, 0x19, 0xce, 0x19, 0xad, 0x19, 0xad, 0x19, 0xac, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x6c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8d, 0x19, 0xad, 0x19, 0xcd, 0x22, 0x2f, 0x22, 0x30, 0x1a, 0x0f, 0x32, 0xb3, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x75, 0x4b, 0x96, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0x96, 0x3b, 0x55, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x3a, 0xd2, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x2f, 0x22, 0x30, 0x22, 0x2f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x19, 0xef, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x3a, 0xf3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, + 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x1a, 0x0f, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xef, 0x1a, 0x0f, 0x22, 0x2f, 0x22, 0x2f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x51, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0xb2, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xf7, 0x54, 0x18, 0x54, 0x39, 0x64, 0xba, 0x6d, 0x3c, 0x6d, 0x3d, 0x6d, 0x3d, 0x64, 0xfd, 0x64, 0xdd, 0x5c, 0x9c, 0x54, 0x59, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x39, 0x54, 0x59, 0x5c, 0x5a, 0x5c, 0x7b, 0x5c, 0x5a, 0x4c, 0x18, 0x54, 0x38, 0x54, 0x59, 0x54, 0x9a, 0x5c, 0xdc, 0x65, 0x1d, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x65, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x3c, 0x6d, 0x7d, 0x6d, 0x5b, 0x4b, 0xf5, 0x43, 0x54, 0x43, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf2, 0x43, 0x54, 0x54, 0x17, 0x54, 0x38, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0x75, 0x3b, 0x34, 0x3a, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x32, 0x92, 0x2a, 0x71, 0x22, 0x0f, 0x19, 0xae, 0x19, 0xad, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0xac, 0x19, 0xcd, 0x1a, 0x0f, 0x22, 0x30, 0x1a, 0x0f, 0x2a, 0x92, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x43, 0x55, 0x4b, 0x96, 0x4b, 0xd6, 0x53, 0xd6, 0x4b, 0xd6, 0x53, 0xf6, 0x4b, 0xb6, 0x43, 0x75, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x71, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x2f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x19, 0xee, 0x19, 0xee, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xef, 0x3a, 0xf3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, + 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x1a, 0x0f, 0x19, 0xef, 0x19, 0xee, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xee, 0x19, 0xef, 0x19, 0xef, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x51, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf4, 0x33, 0x14, 0x3a, 0xf4, 0x3b, 0x14, 0x3a, 0xf4, 0x3a, 0xf3, 0x3b, 0x14, 0x3b, 0x35, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x54, 0x39, 0x5c, 0x9b, 0x64, 0xdb, 0x65, 0x1d, 0x6c, 0xfd, 0x64, 0xfd, 0x64, 0xbd, 0x5c, 0x7b, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x39, 0x5c, 0x59, 0x5c, 0x5a, 0x5c, 0x7a, 0x4c, 0x17, 0x4c, 0x18, 0x54, 0x38, 0x54, 0x38, 0x5c, 0x79, 0x65, 0x1d, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x64, 0xfc, 0x64, 0xfc, 0x64, 0xfc, 0x65, 0x3d, 0x5c, 0x78, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x74, 0x4b, 0x54, 0x4b, 0x74, 0x43, 0x74, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x43, 0x74, 0x54, 0x38, 0x5c, 0x58, 0x54, 0x17, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xd7, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x72, 0x22, 0x30, 0x19, 0xee, 0x19, 0xcd, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x6c, 0x19, 0x8c, 0x19, 0xac, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0xac, 0x19, 0xad, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x2f, 0x22, 0x30, 0x3b, 0x34, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x95, 0x4b, 0xd6, 0x53, 0xd6, 0x53, 0xf6, 0x54, 0x16, 0x4b, 0xd6, 0x43, 0x75, 0x3b, 0x34, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x71, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x2f, 0x21, 0xef, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x2f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xef, 0x19, 0xef, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, + 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x1a, 0x0f, 0x19, 0xef, 0x19, 0xef, 0x1a, 0x0f, 0x1a, 0x0f, 0x19, 0xef, 0x22, 0x0f, 0x19, 0xef, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf4, 0x3a, 0xf3, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x43, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0x75, 0x54, 0x38, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0xbc, 0x5c, 0x9b, 0x54, 0x38, 0x54, 0x38, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x39, 0x5c, 0x5a, 0x5c, 0x5a, 0x4b, 0xd7, 0x4b, 0xd7, 0x54, 0x38, 0x54, 0x38, 0x54, 0x18, 0x54, 0x39, 0x64, 0xfd, 0x64, 0xdc, 0x64, 0xfc, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x65, 0x1c, 0x54, 0x38, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x33, 0x3b, 0x13, 0x3a, 0xf3, 0x43, 0x75, 0x54, 0x38, 0x5c, 0x38, 0x53, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x22, 0x30, 0x19, 0xee, 0x19, 0xce, 0x19, 0xad, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x32, 0xf3, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x75, 0x4b, 0xb6, 0x53, 0xd6, 0x53, 0xf6, 0x5b, 0xf6, 0x53, 0xf6, 0x43, 0x95, 0x3b, 0x34, 0x32, 0xf3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x10, 0x22, 0x2f, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0e, 0x19, 0xce, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x22, 0x50, 0x3a, 0xf3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, + 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x51, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x19, 0xee, 0x19, 0xee, 0x19, 0xef, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x22, 0x50, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf3, 0x3b, 0x14, 0x3a, 0xf3, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf8, 0x54, 0x18, 0x4c, 0x18, 0x4b, 0xf8, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x5c, 0x39, 0x5c, 0x5a, 0x4b, 0xd7, 0x4b, 0xb6, 0x4b, 0xb6, 0x53, 0xf7, 0x54, 0x17, 0x54, 0x58, 0x64, 0xdc, 0x64, 0xdd, 0x5c, 0xbc, 0x64, 0xdc, 0x65, 0x1c, 0x64, 0xfb, 0x4b, 0xf7, 0x3b, 0x33, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x33, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x74, 0x53, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x43, 0x54, 0x43, 0x34, 0x43, 0x13, 0x3a, 0xf3, 0x4b, 0x75, 0x54, 0x18, 0x54, 0x38, 0x53, 0xf8, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x72, 0x2a, 0x51, 0x19, 0xef, 0x19, 0xee, 0x19, 0xcd, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0xad, 0x19, 0xad, 0x19, 0xce, 0x22, 0x0f, 0x1a, 0x30, 0x22, 0x30, 0x32, 0xb2, 0x43, 0x54, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x14, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x54, 0x43, 0x75, 0x4b, 0xb6, 0x53, 0xd6, 0x53, 0xf5, 0x53, 0xd5, 0x4b, 0x95, 0x43, 0x55, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x22, 0x0f, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x71, 0x2a, 0x71, + 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x50, 0x22, 0x51, 0x22, 0x30, 0x22, 0x50, 0x22, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf3, 0x3b, 0x14, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x55, 0x43, 0x75, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xf8, 0x53, 0xf8, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x39, 0x5c, 0x5a, 0x54, 0x39, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xf7, 0x5c, 0x79, 0x64, 0xfd, 0x64, 0xdd, 0x64, 0xdd, 0x5c, 0x7b, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x4b, 0x53, 0x4b, 0x54, 0x4b, 0x53, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x74, 0x53, 0x74, 0x53, 0x74, 0x53, 0x74, 0x4b, 0x94, 0x4b, 0x74, 0x4b, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x43, 0x33, 0x4b, 0x95, 0x53, 0xf7, 0x54, 0x18, 0x54, 0x17, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x21, 0xef, 0x19, 0xce, 0x19, 0xcd, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0xac, 0x19, 0xad, 0x19, 0xad, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x50, 0x3b, 0x34, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x55, 0x43, 0x75, 0x53, 0xd5, 0x53, 0xd5, 0x4b, 0xb5, 0x4b, 0x95, 0x3b, 0x55, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xce, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xee, 0x32, 0xd3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x71, + 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x50, 0x22, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x13, 0x3a, 0xf3, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xd7, 0x53, 0xf8, 0x54, 0x18, 0x54, 0x18, 0x54, 0x39, 0x5c, 0x5a, 0x54, 0x18, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x53, 0xf7, 0x5c, 0x7a, 0x64, 0xfd, 0x5c, 0x9a, 0x4b, 0x95, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x33, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x53, 0x74, 0x53, 0x74, 0x53, 0x74, 0x53, 0x94, 0x4b, 0x94, 0x4b, 0x74, 0x4b, 0x74, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x4b, 0x95, 0x53, 0xf7, 0x54, 0x17, 0x54, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x91, 0x21, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0x8c, 0x19, 0x6c, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0xad, 0x19, 0xad, 0x19, 0xef, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x32, 0xd2, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x14, 0x3b, 0x34, 0x4b, 0xb5, 0x53, 0xd5, 0x4b, 0xb5, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x21, 0xef, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x21, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xce, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xce, 0x2a, 0x91, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, + 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x50, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3a, 0xf4, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb7, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x54, 0x18, 0x54, 0x18, 0x54, 0x59, 0x54, 0x39, 0x4b, 0xf8, 0x4b, 0xd7, 0x53, 0xf7, 0x54, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x54, 0x18, 0x54, 0x38, 0x43, 0x75, 0x3a, 0xf3, 0x3b, 0x34, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x53, 0x43, 0x53, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x94, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x43, 0x74, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x4b, 0x95, 0x53, 0xf7, 0x53, 0xf7, 0x54, 0x17, 0x54, 0x17, 0x53, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x53, 0xf7, 0x53, 0xf7, 0x53, 0xf6, 0x4b, 0xd6, 0x4b, 0x96, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x13, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x22, 0x0f, 0x19, 0xee, 0x19, 0xcd, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0xac, 0x19, 0xad, 0x19, 0xad, 0x19, 0xce, 0x22, 0x0f, 0x22, 0x0f, 0x19, 0xef, 0x2a, 0x71, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x4b, 0x95, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x55, 0x3b, 0x34, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xee, 0x22, 0x0f, 0x19, 0xee, 0x3b, 0x14, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, + 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x91, 0x32, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xf4, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x53, 0xf7, 0x54, 0x18, 0x54, 0x39, 0x54, 0x39, 0x4b, 0xd7, 0x54, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x17, 0x43, 0x54, 0x32, 0xf3, 0x3b, 0x14, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x4b, 0x95, 0x53, 0xf7, 0x53, 0xf7, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x4b, 0xf7, 0x4b, 0xb6, 0x4b, 0xd7, 0x53, 0xf7, 0x54, 0x18, 0x5c, 0x38, 0x5c, 0x38, 0x54, 0x38, 0x54, 0x17, 0x4b, 0xd6, 0x4b, 0x96, 0x43, 0x75, 0x3b, 0x34, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x91, 0x22, 0x0f, 0x19, 0xee, 0x19, 0xce, 0x19, 0x8c, 0x19, 0x8c, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x21, 0xee, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x32, 0xf3, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0x92, 0x32, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x19, 0xef, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xef, 0x1a, 0x0f, 0x2a, 0x71, 0x43, 0x35, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, + 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x76, 0x43, 0x96, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x53, 0xf8, 0x54, 0x39, 0x54, 0x17, 0x54, 0x38, 0x54, 0x58, 0x54, 0x59, 0x54, 0x18, 0x3b, 0x34, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x53, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x43, 0x74, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x4b, 0x95, 0x54, 0x17, 0x53, 0xf7, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x54, 0x38, 0x5c, 0x59, 0x5c, 0x79, 0x64, 0x9a, 0x64, 0x99, 0x5c, 0x78, 0x5c, 0x37, 0x4b, 0xd6, 0x4b, 0x95, 0x43, 0x55, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x91, 0x21, 0xef, 0x19, 0xee, 0x19, 0xcd, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x22, 0x0f, 0x22, 0x0f, 0x19, 0xef, 0x2a, 0x71, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x92, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0x92, 0x32, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x21, 0xef, 0x19, 0xef, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x1a, 0x0f, 0x19, 0xef, 0x3a, 0xf3, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, + 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x3a, 0xd3, 0x3a, 0xf3, 0x3b, 0x13, 0x43, 0x34, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x43, 0x34, 0x43, 0x34, 0x3b, 0x13, 0x3a, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x43, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xd7, 0x54, 0x18, 0x54, 0x18, 0x54, 0x39, 0x54, 0x39, 0x54, 0x18, 0x53, 0xf8, 0x54, 0x18, 0x54, 0x38, 0x54, 0x78, 0x5c, 0x79, 0x4b, 0xb6, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x4b, 0x94, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x4b, 0x75, 0x53, 0xf7, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x18, 0x4b, 0xf7, 0x4b, 0xf7, 0x54, 0x17, 0x5c, 0x38, 0x5c, 0x9a, 0x64, 0xdb, 0x6c, 0xfc, 0x6c, 0xfc, 0x6c, 0xdb, 0x64, 0x79, 0x54, 0x38, 0x4b, 0xd6, 0x43, 0x95, 0x3b, 0x34, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x2a, 0x71, 0x19, 0xef, 0x19, 0xce, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xce, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x32, 0xd3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0x92, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x19, 0xef, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x19, 0xef, 0x1a, 0x0f, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xee, 0x19, 0xef, 0x22, 0x0f, 0x2a, 0x50, 0x43, 0x55, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, + 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x3a, 0xf3, 0x3b, 0x13, 0x43, 0x34, 0x43, 0x54, 0x4b, 0x95, 0x53, 0xb5, 0x53, 0xb6, 0x53, 0xb6, 0x53, 0xb5, 0x4b, 0x95, 0x4b, 0x75, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x14, 0x3a, 0xf3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x43, 0x55, 0x43, 0x76, 0x4b, 0xb6, 0x4b, 0xf7, 0x4b, 0xf8, 0x4c, 0x18, 0x54, 0x18, 0x54, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x5c, 0x5a, 0x54, 0x39, 0x54, 0x59, 0x54, 0x59, 0x4b, 0xd6, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x4b, 0x74, 0x4b, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x43, 0x54, 0x53, 0xd7, 0x54, 0x38, 0x54, 0x18, 0x54, 0x38, 0x54, 0x18, 0x4b, 0xf7, 0x4b, 0xf7, 0x54, 0x18, 0x5c, 0x79, 0x64, 0xbb, 0x6d, 0x1d, 0x75, 0x3d, 0x75, 0x5d, 0x75, 0x3d, 0x6c, 0xfc, 0x64, 0x99, 0x54, 0x17, 0x4b, 0xb6, 0x43, 0x75, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x2a, 0x51, 0x19, 0xef, 0x19, 0xee, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xce, 0x22, 0x0f, 0x22, 0x10, 0x2a, 0x30, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x71, 0x32, 0xf3, 0x3a, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x21, 0xef, 0x22, 0x0f, 0x21, 0xef, 0x22, 0x0f, 0x1a, 0x0f, 0x19, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xef, 0x32, 0xd3, 0x43, 0x35, 0x3b, 0x14, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, + 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x72, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x3a, 0xf3, 0x3b, 0x13, 0x43, 0x34, 0x4b, 0x75, 0x53, 0xb5, 0x53, 0xf6, 0x5c, 0x17, 0x64, 0x37, 0x64, 0x37, 0x64, 0x37, 0x5c, 0x17, 0x5b, 0xf6, 0x5c, 0x17, 0x53, 0xf6, 0x53, 0xb5, 0x4b, 0x75, 0x43, 0x34, 0x3a, 0xf3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x3a, 0xd3, 0x32, 0xd3, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf8, 0x53, 0xf8, 0x54, 0x39, 0x54, 0x59, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x7a, 0x54, 0x39, 0x43, 0x75, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x43, 0x34, 0x43, 0x13, 0x4b, 0xb6, 0x5c, 0x58, 0x54, 0x18, 0x54, 0x38, 0x53, 0xf7, 0x53, 0xd7, 0x53, 0xf7, 0x54, 0x38, 0x5c, 0x9a, 0x6c, 0xfc, 0x75, 0x5d, 0x7d, 0xbd, 0x85, 0xdd, 0x85, 0xbd, 0x7d, 0x7d, 0x6c, 0xfb, 0x5c, 0x79, 0x53, 0xf7, 0x43, 0x95, 0x3b, 0x34, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x2a, 0x50, 0x22, 0x0f, 0x19, 0xcd, 0x19, 0xad, 0x19, 0xae, 0x19, 0xad, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x71, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x91, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf3, 0x32, 0xd2, 0x32, 0x91, 0x32, 0x71, 0x32, 0x91, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x19, 0xef, 0x19, 0xef, 0x22, 0x0f, 0x19, 0xef, 0x22, 0x0f, 0x1a, 0x0f, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x22, 0x0f, 0x4b, 0x95, 0x3b, 0x35, 0x3b, 0x14, 0x3a, 0xf3, 0x32, 0xf3, + 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x3a, 0xf3, 0x3b, 0x14, 0x43, 0x54, 0x4b, 0xb5, 0x53, 0xf6, 0x64, 0x37, 0x64, 0x79, 0x6c, 0xb9, 0x6c, 0xda, 0x6c, 0xda, 0x6c, 0xba, 0x74, 0xfb, 0x6c, 0x99, 0x64, 0x58, 0x5c, 0x37, 0x53, 0xd6, 0x4b, 0x95, 0x43, 0x34, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0x92, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xf3, 0x32, 0xf4, 0x3a, 0xf4, 0x3b, 0x34, 0x43, 0x76, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf8, 0x54, 0x18, 0x54, 0x59, 0x5c, 0x79, 0x5c, 0x7a, 0x64, 0x7a, 0x64, 0xbb, 0x64, 0x9a, 0x53, 0xf7, 0x53, 0xd7, 0x43, 0x96, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x43, 0x33, 0x43, 0x13, 0x4b, 0x95, 0x5c, 0x38, 0x54, 0x18, 0x54, 0x38, 0x54, 0x17, 0x53, 0xf7, 0x54, 0x17, 0x54, 0x38, 0x5c, 0x9a, 0x6c, 0xfc, 0x7d, 0x7d, 0x86, 0x1d, 0x8e, 0x7d, 0x8e, 0x5d, 0x85, 0xdd, 0x75, 0x5d, 0x6c, 0xdb, 0x5c, 0x38, 0x4b, 0xb6, 0x43, 0x55, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x22, 0x30, 0x1a, 0x0e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x21, 0xef, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x92, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x91, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf3, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x72, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x19, 0xef, 0x19, 0xef, 0x1a, 0x0f, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xee, 0x19, 0xce, 0x19, 0xee, 0x19, 0xef, 0x19, 0xce, 0x19, 0xad, 0x19, 0xce, 0x19, 0xee, 0x19, 0xce, 0x2a, 0x70, 0x43, 0xb6, 0x3b, 0x35, 0x3b, 0x14, 0x3a, 0xf3, + 0x3a, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x3a, 0xf3, 0x3b, 0x14, 0x43, 0x74, 0x4b, 0xb6, 0x5c, 0x17, 0x64, 0x78, 0x6c, 0xba, 0x75, 0x1b, 0x7d, 0x3d, 0x7d, 0x5c, 0x85, 0x9d, 0x7d, 0x5d, 0x75, 0x1c, 0x6c, 0xba, 0x64, 0x78, 0x5c, 0x37, 0x53, 0xd6, 0x4b, 0x75, 0x43, 0x34, 0x3a, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xd3, 0x3a, 0xd3, 0x32, 0xb2, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x35, 0x43, 0x76, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xf8, 0x54, 0x39, 0x54, 0x59, 0x5c, 0x7a, 0x64, 0x9a, 0x64, 0x9a, 0x5c, 0x38, 0x54, 0x17, 0x54, 0x17, 0x53, 0xf8, 0x4b, 0xb6, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x43, 0x34, 0x43, 0x33, 0x43, 0x34, 0x43, 0x33, 0x4b, 0x75, 0x54, 0x17, 0x5c, 0x38, 0x54, 0x38, 0x54, 0x18, 0x53, 0xf7, 0x54, 0x17, 0x54, 0x38, 0x5c, 0x7a, 0x6c, 0xfc, 0x7d, 0x9d, 0x8e, 0x3d, 0x96, 0xbd, 0x96, 0xdc, 0x96, 0x7d, 0x85, 0xdd, 0x75, 0x1c, 0x64, 0x99, 0x53, 0xf7, 0x4b, 0x95, 0x3b, 0x54, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x2a, 0x71, 0x22, 0x30, 0x19, 0xae, 0x19, 0x8d, 0x19, 0xad, 0x19, 0xad, 0x19, 0xcd, 0x19, 0xcd, 0x19, 0xee, 0x22, 0x0f, 0x22, 0x0f, 0x2a, 0x50, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x71, 0x32, 0x91, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x19, 0xef, 0x22, 0x0f, 0x19, 0xef, 0x22, 0x0f, 0x1a, 0x0f, 0x19, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xee, 0x1a, 0x0f, 0x19, 0xef, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xad, 0x3b, 0x13, 0x43, 0x96, 0x3b, 0x35, 0x3b, 0x14, + 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x14, 0x3a, 0xf3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x14, 0x43, 0x34, 0x4b, 0x95, 0x53, 0xf6, 0x64, 0x58, 0x6c, 0xba, 0x74, 0xfb, 0x85, 0x7d, 0x8d, 0xfd, 0x8d, 0xdd, 0x85, 0x9d, 0x7d, 0x5d, 0x75, 0x1c, 0x6c, 0xba, 0x64, 0x58, 0x5b, 0xf7, 0x4b, 0xb5, 0x43, 0x54, 0x3b, 0x14, 0x3a, 0xf3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x32, 0xd3, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x3b, 0x14, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x96, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf8, 0x54, 0x39, 0x54, 0x59, 0x54, 0x5a, 0x5c, 0x7a, 0x5c, 0x59, 0x53, 0xf7, 0x53, 0xf7, 0x53, 0xf7, 0x53, 0xf7, 0x54, 0x18, 0x4b, 0xd7, 0x32, 0xf3, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x54, 0x3b, 0x74, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x43, 0x33, 0x43, 0x34, 0x43, 0x33, 0x43, 0x54, 0x53, 0xf7, 0x5c, 0x38, 0x5c, 0x38, 0x5c, 0x38, 0x54, 0x17, 0x54, 0x17, 0x54, 0x38, 0x5c, 0x79, 0x6c, 0xdc, 0x7d, 0x7d, 0x8e, 0x5d, 0x96, 0xbc, 0x9e, 0xbc, 0x9e, 0xbc, 0x8e, 0x5d, 0x7d, 0x9d, 0x6c, 0xdb, 0x5c, 0x38, 0x4b, 0xd6, 0x43, 0x75, 0x3b, 0x34, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x2a, 0x51, 0x19, 0xce, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x22, 0x10, 0x22, 0x10, 0x21, 0xef, 0x2a, 0x51, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x19, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xef, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x2a, 0x50, 0x32, 0x91, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x43, 0x55, 0x43, 0x96, 0x43, 0x55, + 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x34, 0x32, 0xf3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x14, 0x43, 0x75, 0x4b, 0xb6, 0x5c, 0x17, 0x64, 0x78, 0x75, 0x1c, 0x85, 0x7d, 0x85, 0xbd, 0x85, 0xbd, 0x85, 0x9d, 0x7d, 0x7d, 0x75, 0x1d, 0x6c, 0xba, 0x64, 0x78, 0x5c, 0x17, 0x4b, 0xb6, 0x43, 0x75, 0x43, 0x34, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x43, 0x96, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xf8, 0x54, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x3a, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x3b, 0x14, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x54, 0x43, 0x54, 0x3b, 0x33, 0x3b, 0x33, 0x43, 0x34, 0x43, 0x34, 0x43, 0x54, 0x53, 0xf7, 0x5c, 0x59, 0x5c, 0x59, 0x5c, 0x59, 0x5c, 0x38, 0x54, 0x17, 0x54, 0x17, 0x5c, 0x59, 0x6c, 0xdb, 0x75, 0x5d, 0x86, 0x3d, 0x96, 0xbc, 0x9e, 0xbc, 0x9e, 0xbc, 0x96, 0x9d, 0x85, 0xfd, 0x75, 0x1c, 0x64, 0x99, 0x54, 0x17, 0x4b, 0x95, 0x3b, 0x54, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x21, 0xef, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x71, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xce, 0x19, 0xee, 0x22, 0x0f, 0x2a, 0x50, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x43, 0x75, 0x43, 0x96, + 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x3a, 0xf4, 0x3b, 0x14, 0x43, 0x75, 0x4b, 0xb6, 0x64, 0x58, 0x6c, 0xba, 0x74, 0xfc, 0x75, 0x3d, 0x7d, 0x3c, 0x7d, 0x3d, 0x75, 0x1c, 0x74, 0xfb, 0x6c, 0x99, 0x64, 0x58, 0x5c, 0x17, 0x53, 0xd6, 0x4b, 0x95, 0x43, 0x34, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0xd2, 0x22, 0x0f, 0x19, 0xef, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x76, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xf8, 0x54, 0x38, 0x54, 0x19, 0x54, 0x39, 0x4b, 0xf8, 0x43, 0x76, 0x43, 0xb6, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xd7, 0x53, 0xf7, 0x4b, 0xd7, 0x32, 0xf3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x33, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x33, 0x4b, 0xb6, 0x5c, 0x38, 0x5c, 0x59, 0x5c, 0x79, 0x5c, 0x38, 0x53, 0xf7, 0x54, 0x17, 0x5c, 0x58, 0x64, 0x9b, 0x75, 0x1d, 0x85, 0xfd, 0x96, 0x9c, 0x9e, 0xdc, 0x9e, 0xbc, 0x9e, 0xbc, 0x8e, 0x3d, 0x7d, 0x7d, 0x6c, 0xbb, 0x5c, 0x38, 0x4b, 0xd6, 0x43, 0x55, 0x3b, 0x34, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x19, 0xce, 0x19, 0xad, 0x19, 0xae, 0x19, 0xee, 0x19, 0xee, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xd2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x19, 0xef, 0x1a, 0x0f, 0x19, 0xef, 0x1a, 0x0f, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x43, 0x96, + 0x43, 0x96, 0x43, 0xb7, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0x96, 0x3b, 0x35, 0x3a, 0xf3, 0x3a, 0xd3, 0x3a, 0xf3, 0x3b, 0x14, 0x4b, 0x95, 0x53, 0xf7, 0x5c, 0x37, 0x64, 0x58, 0x64, 0x79, 0x6c, 0x99, 0x6c, 0xba, 0x6c, 0xba, 0x64, 0x99, 0x64, 0x58, 0x5c, 0x17, 0x53, 0xd6, 0x4b, 0xb5, 0x43, 0x55, 0x3b, 0x14, 0x3a, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3a, 0xf4, 0x3b, 0x14, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xd2, 0x22, 0x30, 0x19, 0xef, 0x19, 0xef, 0x1a, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x76, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x53, 0xf8, 0x54, 0x38, 0x4c, 0x18, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xb7, 0x4b, 0xb7, 0x43, 0xb7, 0x4b, 0xb7, 0x4b, 0xd7, 0x53, 0xf8, 0x4b, 0xd7, 0x32, 0xf3, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x33, 0x4b, 0x75, 0x5c, 0x38, 0x5c, 0x79, 0x5c, 0x7a, 0x5c, 0x79, 0x54, 0x38, 0x54, 0x17, 0x54, 0x38, 0x5c, 0x79, 0x6c, 0xfc, 0x7d, 0x9d, 0x8e, 0x7d, 0x9e, 0xbc, 0x9e, 0xbc, 0x9e, 0xdc, 0x8e, 0x5d, 0x7d, 0x9d, 0x6c, 0xfb, 0x64, 0x58, 0x53, 0xf6, 0x43, 0x95, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x22, 0x0f, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x22, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x0f, 0x2a, 0x50, 0x32, 0x71, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x2a, 0x30, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3b, 0x14, + 0x32, 0xf3, 0x43, 0x96, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0xb6, 0x4b, 0xb7, 0x43, 0xb6, 0x43, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x4b, 0xb7, 0x4b, 0x96, 0x43, 0x55, 0x3b, 0x34, 0x3a, 0xf3, 0x43, 0x55, 0x43, 0x75, 0x4b, 0x96, 0x53, 0xd6, 0x53, 0xf7, 0x5b, 0xf7, 0x5c, 0x17, 0x5c, 0x17, 0x5c, 0x17, 0x53, 0xf7, 0x53, 0xd6, 0x4b, 0x95, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3a, 0xf3, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xf3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x54, 0x18, 0x54, 0x18, 0x43, 0xb6, 0x43, 0x75, 0x43, 0x76, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0xb6, 0x4b, 0xb7, 0x4b, 0xd7, 0x53, 0xf8, 0x4b, 0xd7, 0x3b, 0x14, 0x32, 0xb2, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x74, 0x54, 0x18, 0x5c, 0x9a, 0x5c, 0x9a, 0x5c, 0x9a, 0x5c, 0x59, 0x54, 0x17, 0x54, 0x38, 0x5c, 0x59, 0x64, 0xbb, 0x6d, 0x3d, 0x85, 0xdd, 0x8e, 0x9d, 0x96, 0xdc, 0x96, 0xbc, 0x8e, 0x5d, 0x85, 0xbd, 0x75, 0x1c, 0x64, 0x99, 0x54, 0x17, 0x4b, 0x96, 0x43, 0x55, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x19, 0xef, 0x19, 0xce, 0x19, 0xee, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x50, 0x22, 0x30, 0x21, 0xef, 0x22, 0x30, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x3a, 0xf3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x0f, 0x2a, 0x50, 0x2a, 0x51, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf4, 0x3a, 0xf4, 0x32, 0xf3, + 0x3b, 0x14, 0x3b, 0x14, 0x43, 0x96, 0x4b, 0xf7, 0x43, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0x55, 0x3b, 0x34, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x4b, 0x95, 0x4b, 0x96, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3a, 0xf4, 0x3a, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x32, 0xd3, 0x22, 0x10, 0x22, 0x0f, 0x21, 0xef, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xf3, 0x32, 0xf4, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x4c, 0x17, 0x4b, 0xf7, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb7, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xd7, 0x53, 0xf7, 0x4b, 0xb6, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x33, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x4b, 0x94, 0x4b, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x54, 0x3b, 0x13, 0x4b, 0xd7, 0x64, 0xbb, 0x5c, 0x9b, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x58, 0x54, 0x17, 0x54, 0x38, 0x5c, 0x7a, 0x6c, 0xdc, 0x75, 0x5d, 0x85, 0xdd, 0x8e, 0x5d, 0x8e, 0x7d, 0x86, 0x1d, 0x7d, 0x9d, 0x75, 0x1c, 0x64, 0x9a, 0x5c, 0x17, 0x4b, 0xb6, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x22, 0x30, 0x19, 0xce, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x50, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x2a, 0x50, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x3a, 0xd3, 0x32, 0xb2, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x10, 0x2a, 0x50, 0x2a, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x3a, 0xf4, 0x3a, 0xf4, + 0x32, 0xf4, 0x3a, 0xf4, 0x32, 0xf4, 0x4b, 0xb6, 0x54, 0x18, 0x4b, 0xf8, 0x4b, 0xf7, 0x4c, 0x18, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x53, 0xf7, 0x4b, 0xd7, 0x53, 0xf7, 0x43, 0x76, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x54, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xb2, 0x21, 0xef, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x2f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x53, 0xf8, 0x43, 0x96, 0x32, 0xd3, 0x32, 0xf3, 0x33, 0x13, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x94, 0x4b, 0x94, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x5c, 0x5a, 0x64, 0xdc, 0x5c, 0x9b, 0x5c, 0x7a, 0x5c, 0x7a, 0x54, 0x59, 0x54, 0x39, 0x5c, 0x5a, 0x64, 0x9b, 0x6c, 0xfc, 0x75, 0x5d, 0x7d, 0x9d, 0x85, 0xdd, 0x85, 0xbd, 0x7d, 0x7d, 0x74, 0xfc, 0x64, 0x9a, 0x5c, 0x17, 0x4b, 0xd6, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x72, 0x32, 0x71, 0x32, 0x72, 0x32, 0x92, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x3a, 0xd3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf4, + 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x14, 0x32, 0xf4, 0x3b, 0x55, 0x4b, 0xf8, 0x54, 0x59, 0x54, 0x18, 0x54, 0x18, 0x4c, 0x18, 0x54, 0x18, 0x4c, 0x18, 0x4b, 0xf8, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x53, 0xf7, 0x4b, 0xf7, 0x53, 0xd7, 0x43, 0x75, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3a, 0xf3, 0x2a, 0x71, 0x19, 0xce, 0x19, 0xef, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0x75, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x43, 0x55, 0x32, 0xd3, 0x33, 0x13, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x94, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x14, 0x3b, 0x34, 0x3a, 0xf3, 0x54, 0x17, 0x6c, 0xfc, 0x64, 0xdd, 0x5c, 0xbc, 0x5c, 0x9b, 0x5c, 0x9b, 0x54, 0x59, 0x54, 0x38, 0x5c, 0x59, 0x64, 0x9a, 0x6c, 0xdc, 0x75, 0x1d, 0x75, 0x5d, 0x75, 0x5d, 0x75, 0x3d, 0x6c, 0xdc, 0x64, 0x79, 0x54, 0x17, 0x4b, 0xb6, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x72, 0x32, 0x72, 0x32, 0x72, 0x32, 0x71, 0x32, 0xb3, 0x2a, 0x51, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x2a, 0x71, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, + 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf4, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x4b, 0xd7, 0x5c, 0x7a, 0x54, 0x5a, 0x54, 0x19, 0x54, 0x19, 0x54, 0x18, 0x54, 0x18, 0x54, 0x39, 0x54, 0x19, 0x54, 0x19, 0x54, 0x18, 0x54, 0x18, 0x53, 0xf8, 0x54, 0x18, 0x4b, 0xd7, 0x43, 0x55, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x55, 0x32, 0x92, 0x22, 0x0f, 0x19, 0xef, 0x1a, 0x0f, 0x19, 0xef, 0x22, 0x0f, 0x1a, 0x0f, 0x19, 0xef, 0x21, 0xef, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0x34, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x76, 0x43, 0x96, 0x43, 0x76, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x53, 0xf7, 0x4b, 0xf7, 0x3b, 0x55, 0x32, 0xd3, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x94, 0x43, 0x94, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x54, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x5c, 0x9a, 0x6d, 0x1e, 0x5c, 0xbd, 0x5c, 0xbc, 0x5c, 0xbd, 0x5c, 0x7b, 0x54, 0x38, 0x54, 0x38, 0x5c, 0x59, 0x64, 0x7a, 0x64, 0xbb, 0x6c, 0xdc, 0x6c, 0xfc, 0x6c, 0xdc, 0x64, 0x9a, 0x5c, 0x38, 0x53, 0xf7, 0x4b, 0xb6, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x32, 0x72, 0x32, 0x72, 0x32, 0x92, 0x32, 0xd3, 0x2a, 0x71, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x2a, 0x71, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x72, 0x32, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x14, 0x3a, 0xf4, 0x32, 0xf3, + 0x3a, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x75, 0x54, 0x18, 0x5c, 0x7a, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x19, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x18, 0x54, 0x18, 0x4b, 0xb6, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x95, 0x4b, 0x96, 0x4b, 0x95, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x22, 0x0f, 0x19, 0xef, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x55, 0x43, 0x95, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0x75, 0x43, 0x34, 0x43, 0x34, 0x43, 0x55, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xb7, 0x4b, 0xd7, 0x53, 0xf8, 0x4b, 0xd7, 0x3b, 0x34, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x94, 0x43, 0x94, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x54, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x4c, 0x18, 0x64, 0xdc, 0x5c, 0xdd, 0x5c, 0xbd, 0x5c, 0xbc, 0x5c, 0xbc, 0x54, 0x7a, 0x54, 0x38, 0x54, 0x38, 0x5c, 0x58, 0x5c, 0x59, 0x64, 0x7a, 0x64, 0x9a, 0x5c, 0x99, 0x5c, 0x58, 0x54, 0x17, 0x53, 0xd6, 0x4b, 0x96, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x14, 0x3a, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd2, 0x22, 0x10, 0x22, 0x0f, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x2a, 0x51, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x72, 0x32, 0x71, 0x32, 0x71, 0x32, 0x91, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x43, 0x54, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf3, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, + 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf3, 0x3a, 0xf4, 0x3a, 0xf3, 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x54, 0x18, 0x5c, 0x5b, 0x5c, 0x5a, 0x54, 0x3a, 0x54, 0x3a, 0x54, 0x39, 0x54, 0x3a, 0x54, 0x5a, 0x5c, 0x5a, 0x54, 0x5a, 0x54, 0x39, 0x54, 0x38, 0x53, 0xf8, 0x4b, 0xb6, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x76, 0x43, 0x96, 0x4b, 0xb6, 0x53, 0xd6, 0x53, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0x96, 0x4b, 0xb6, 0x43, 0x95, 0x3b, 0x14, 0x2a, 0x50, 0x19, 0xce, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x21, 0xef, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x75, 0x43, 0xb6, 0x43, 0x95, 0x3b, 0x14, 0x43, 0x34, 0x43, 0x54, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x53, 0xf7, 0x43, 0x96, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x3b, 0x33, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x54, 0x5a, 0x64, 0xdd, 0x5c, 0xbd, 0x5c, 0xbc, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9a, 0x54, 0x38, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x17, 0x53, 0xf7, 0x53, 0xd7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x32, 0x72, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x21, 0xef, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x21, 0xef, 0x21, 0xef, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x3b, 0x13, 0x4b, 0xb6, 0x3b, 0x34, 0x32, 0xd3, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf4, 0x32, 0xf4, 0x32, 0xf3, + 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x4b, 0xb6, 0x4b, 0xf8, 0x54, 0x19, 0x5c, 0x7b, 0x5c, 0x5b, 0x54, 0x5b, 0x54, 0x7b, 0x5c, 0x7b, 0x5c, 0x7b, 0x5c, 0x5a, 0x54, 0x39, 0x54, 0x38, 0x54, 0x18, 0x4b, 0xd7, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x53, 0xd6, 0x53, 0xd6, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xd6, 0x43, 0x55, 0x32, 0xb2, 0x2a, 0x91, 0x22, 0x0f, 0x19, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xce, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xef, 0x19, 0xef, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x43, 0x75, 0x43, 0x96, 0x43, 0x55, 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x54, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x76, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xd7, 0x53, 0xf8, 0x4b, 0xf7, 0x3b, 0x55, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x33, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x54, 0x4b, 0xf7, 0x5c, 0xbc, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0xbb, 0x64, 0x9b, 0x54, 0x38, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3a, 0xf4, 0x3a, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb2, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x0f, 0x19, 0xef, 0x19, 0xef, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x21, 0xef, 0x22, 0x0f, 0x21, 0xef, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x3b, 0x34, 0x43, 0x95, 0x43, 0x55, 0x32, 0xb2, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x72, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, + 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x55, 0x3b, 0x35, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xd7, 0x54, 0x39, 0x5c, 0x9c, 0x64, 0xbd, 0x64, 0x9c, 0x5c, 0x9c, 0x5c, 0x7b, 0x5c, 0x5a, 0x5c, 0x39, 0x54, 0x39, 0x54, 0x18, 0x4b, 0xd7, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xd7, 0x53, 0xf7, 0x53, 0xf7, 0x54, 0x18, 0x54, 0x18, 0x43, 0x75, 0x32, 0xb2, 0x2a, 0x50, 0x22, 0x2f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x19, 0xef, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xef, 0x19, 0xef, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x76, 0x43, 0x76, 0x43, 0x76, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x54, 0x18, 0x4b, 0xb6, 0x32, 0xf3, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x54, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x54, 0x19, 0x64, 0xdd, 0x5c, 0xbd, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0xbb, 0x5c, 0x7a, 0x54, 0x38, 0x4b, 0xd7, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd2, 0x2a, 0x71, 0x2a, 0x30, 0x22, 0x0f, 0x21, 0xef, 0x19, 0xef, 0x19, 0xef, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0xd2, 0x3a, 0xf3, 0x3a, 0xd3, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, + 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x3b, 0x35, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x4b, 0xb6, 0x54, 0x38, 0x5c, 0x7a, 0x5c, 0x7b, 0x5c, 0x7b, 0x5c, 0x7b, 0x5c, 0x7b, 0x5c, 0x7a, 0x5c, 0x39, 0x53, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0x95, 0x3b, 0x34, 0x2a, 0x71, 0x19, 0xad, 0x19, 0xce, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x19, 0xef, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xef, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x34, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x54, 0x18, 0x54, 0x38, 0x4b, 0xb6, 0x33, 0x13, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x55, 0x5c, 0x7a, 0x64, 0xde, 0x5c, 0x9d, 0x5c, 0x7c, 0x5c, 0x7c, 0x5c, 0x7a, 0x5c, 0x59, 0x54, 0x59, 0x54, 0x38, 0x4b, 0xd7, 0x43, 0x96, 0x43, 0x76, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3a, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x2a, 0x71, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x21, 0xef, 0x21, 0xef, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x3a, 0xf3, 0x32, 0xd2, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x72, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, + 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x33, 0x14, 0x3b, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x76, 0x43, 0x96, 0x4b, 0x96, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x43, 0x55, 0x22, 0x30, 0x19, 0xae, 0x19, 0xef, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xef, 0x19, 0xef, 0x22, 0x0f, 0x19, 0xef, 0x21, 0xef, 0x1a, 0x0f, 0x19, 0xef, 0x19, 0xef, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xef, 0x21, 0xef, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf4, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x76, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x54, 0x18, 0x54, 0x39, 0x54, 0x18, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x54, 0x3b, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x43, 0x96, 0x5c, 0x7b, 0x64, 0xdd, 0x5c, 0x9c, 0x54, 0x7b, 0x54, 0x5a, 0x54, 0x39, 0x54, 0x39, 0x4c, 0x18, 0x4b, 0xd8, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3a, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x2a, 0x71, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x3a, 0xf3, 0x32, 0xd2, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, + 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x76, 0x43, 0x96, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x4b, 0x75, 0x32, 0xb2, 0x19, 0xce, 0x19, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0x8d, 0x19, 0xae, 0x19, 0xcd, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xef, 0x19, 0xef, 0x21, 0xef, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x33, 0x14, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x4b, 0xb7, 0x4b, 0xf7, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x5c, 0x79, 0x4b, 0xf7, 0x3b, 0x33, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x34, 0x4b, 0xf8, 0x5c, 0x9c, 0x5c, 0x9c, 0x54, 0x7a, 0x54, 0x5a, 0x54, 0x39, 0x4c, 0x18, 0x4b, 0xf8, 0x4b, 0xd7, 0x43, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x76, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x71, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x21, 0xef, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x30, 0x2a, 0x71, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x3b, 0x14, 0x32, 0xb2, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, + 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x76, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x4b, 0x96, 0x2a, 0x91, 0x19, 0xce, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xad, 0x19, 0xad, 0x19, 0xae, 0x19, 0xad, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xef, 0x19, 0xef, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x72, 0x32, 0x92, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x5c, 0x7a, 0x5c, 0x59, 0x43, 0x95, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x33, 0x32, 0xd2, 0x3a, 0xf3, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x33, 0x14, 0x54, 0x19, 0x64, 0xbc, 0x54, 0x7b, 0x54, 0x5a, 0x54, 0x39, 0x54, 0x18, 0x4b, 0xf8, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x95, 0x4b, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x21, 0xef, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x3b, 0x14, 0x3b, 0x13, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, + 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x3a, 0xf4, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x75, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x75, 0x4b, 0xd7, 0x43, 0x75, 0x22, 0x30, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xee, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x54, 0x17, 0x54, 0x38, 0x5c, 0x59, 0x5c, 0x9b, 0x5c, 0x7b, 0x43, 0xb6, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x94, 0x3b, 0x13, 0x2a, 0x71, 0x32, 0xb1, 0x3a, 0xf3, 0x3b, 0x14, 0x3b, 0x13, 0x3a, 0xf3, 0x3b, 0x14, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x32, 0xf3, 0x4b, 0xf8, 0x5c, 0xbc, 0x54, 0x5a, 0x54, 0x39, 0x54, 0x18, 0x4b, 0xf8, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xb7, 0x43, 0x96, 0x43, 0x76, 0x43, 0x76, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x95, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0x95, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x22, 0x30, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x30, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x3a, 0xf3, 0x3b, 0x34, 0x32, 0xb2, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, + 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x55, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xb7, 0x43, 0x55, 0x22, 0x0f, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xcd, 0x19, 0xce, 0x19, 0xce, 0x19, 0xad, 0x19, 0xad, 0x19, 0xcd, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x53, 0xf7, 0x54, 0x39, 0x5c, 0x7a, 0x5c, 0x7a, 0x64, 0xbb, 0x54, 0x59, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x33, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0xb1, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf3, 0x3b, 0x34, 0x43, 0x74, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x34, 0x3a, 0xf4, 0x32, 0xf3, 0x32, 0xf4, 0x4b, 0xd8, 0x5c, 0x7b, 0x54, 0x5a, 0x54, 0x39, 0x54, 0x18, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x95, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x53, 0xf7, 0x53, 0xd7, 0x4b, 0xd6, 0x4b, 0x96, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x71, 0x32, 0xd3, 0x3a, 0xd3, 0x32, 0xb2, 0x3a, 0xf3, 0x43, 0x55, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, + 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf3, 0x32, 0xf3, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xb7, 0x4b, 0x96, 0x43, 0x54, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xcd, 0x19, 0xad, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xef, 0x19, 0xef, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x76, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x54, 0x17, 0x54, 0x38, 0x5c, 0x7a, 0x54, 0x7a, 0x5c, 0x79, 0x5c, 0x9b, 0x5c, 0x7a, 0x43, 0x95, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x54, 0x43, 0x74, 0x3b, 0x54, 0x3b, 0x74, 0x43, 0x74, 0x3b, 0x13, 0x2a, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0xb2, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x54, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x14, 0x32, 0xf4, 0x3a, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x4b, 0xf8, 0x5c, 0x7a, 0x54, 0x39, 0x54, 0x18, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x4b, 0x96, 0x4b, 0xb6, 0x53, 0xd7, 0x53, 0xf7, 0x54, 0x17, 0x53, 0xf7, 0x53, 0xf7, 0x4b, 0xd6, 0x4b, 0x95, 0x43, 0x75, 0x3b, 0x34, 0x3a, 0xf4, 0x32, 0xf3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb3, 0x2a, 0x71, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x32, 0x71, 0x32, 0x92, 0x32, 0xb2, 0x3b, 0x14, 0x43, 0x75, 0x32, 0xd3, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, + 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3a, 0xf4, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x35, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0x96, 0x3a, 0xf3, 0x19, 0xef, 0x22, 0x0f, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xcd, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xce, 0x19, 0xee, 0x19, 0xef, 0x19, 0xef, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x54, 0x17, 0x54, 0x17, 0x54, 0x59, 0x5c, 0x9a, 0x5c, 0x7a, 0x5c, 0x79, 0x5c, 0x9a, 0x64, 0xbb, 0x54, 0x18, 0x3b, 0x33, 0x3b, 0x74, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x43, 0x74, 0x3b, 0x54, 0x32, 0xd2, 0x2a, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x50, 0x2a, 0x50, 0x32, 0xb2, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x54, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x3a, 0xf4, 0x32, 0xd3, 0x4b, 0xb7, 0x5c, 0x7a, 0x54, 0x38, 0x4b, 0xf8, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x95, 0x4b, 0xb6, 0x4b, 0xd6, 0x53, 0xf7, 0x5c, 0x17, 0x5c, 0x37, 0x5c, 0x37, 0x54, 0x17, 0x53, 0xf7, 0x4b, 0xb6, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x2a, 0x50, 0x2a, 0x51, 0x32, 0x71, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x71, 0x3b, 0x14, 0x53, 0xd7, 0x3a, 0xf3, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x51, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, + 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3a, 0xf4, 0x3a, 0xf4, 0x3a, 0xf4, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x76, 0x43, 0x55, 0x3b, 0x35, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0x96, 0x32, 0x92, 0x22, 0x0f, 0x22, 0x0f, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xcf, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xee, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xef, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x54, 0x17, 0x54, 0x17, 0x54, 0x17, 0x54, 0x17, 0x54, 0x17, 0x4c, 0x17, 0x54, 0x17, 0x54, 0x17, 0x54, 0x38, 0x5c, 0x9a, 0x5c, 0x9a, 0x5c, 0x9a, 0x5c, 0x7a, 0x5c, 0x9a, 0x64, 0xbc, 0x5c, 0x7a, 0x43, 0x94, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x13, 0x32, 0x91, 0x32, 0x71, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x70, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x71, 0x32, 0xd3, 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x14, 0x3a, 0xf4, 0x32, 0xf4, 0x3b, 0x14, 0x32, 0xb3, 0x43, 0x96, 0x54, 0x38, 0x54, 0x18, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x95, 0x4b, 0xb6, 0x53, 0xf7, 0x54, 0x17, 0x5c, 0x38, 0x5c, 0x38, 0x5c, 0x37, 0x5c, 0x17, 0x54, 0x17, 0x4b, 0xd6, 0x4b, 0x96, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x51, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x51, 0x32, 0x71, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x3b, 0x34, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x31, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, + 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x34, 0x43, 0x54, 0x43, 0x54, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x75, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xb7, 0x4b, 0xd7, 0x43, 0x75, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xce, 0x19, 0xee, 0x19, 0xee, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xce, 0x19, 0xee, 0x19, 0xef, 0x19, 0xef, 0x1a, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x76, 0x43, 0xb6, 0x4b, 0xd7, 0x54, 0x17, 0x54, 0x38, 0x54, 0x38, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x58, 0x54, 0x37, 0x54, 0x17, 0x54, 0x17, 0x54, 0x37, 0x5c, 0x59, 0x5c, 0x9b, 0x5c, 0x9a, 0x5c, 0x9a, 0x5c, 0x9a, 0x5c, 0x9a, 0x5c, 0xbb, 0x5c, 0xba, 0x4b, 0xf6, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x32, 0xf2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x71, 0x32, 0xb2, 0x3b, 0x14, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x3b, 0x34, 0x4b, 0xf7, 0x54, 0x18, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xd6, 0x53, 0xf7, 0x54, 0x18, 0x5c, 0x38, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x37, 0x5c, 0x17, 0x53, 0xf7, 0x4b, 0xb6, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3a, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x32, 0x71, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x31, 0x2a, 0x31, 0x22, 0x30, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, + 0x32, 0xd3, 0x3a, 0xf3, 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x54, 0x3b, 0x14, 0x3b, 0x14, 0x43, 0x55, 0x4b, 0x75, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x55, 0x3b, 0x34, 0x43, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x4b, 0x96, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd7, 0x3b, 0x14, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x21, 0xef, 0x1a, 0x0f, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xef, 0x19, 0xef, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xee, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x75, 0x43, 0x96, 0x4b, 0xd7, 0x4b, 0xf7, 0x54, 0x38, 0x5c, 0x78, 0x5c, 0x99, 0x5c, 0x99, 0x64, 0xb9, 0x5c, 0x99, 0x5c, 0x78, 0x5c, 0x58, 0x5c, 0x38, 0x54, 0x38, 0x5c, 0x58, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9a, 0x64, 0xba, 0x5c, 0xba, 0x64, 0xbb, 0x64, 0xdb, 0x54, 0x18, 0x43, 0x73, 0x43, 0x94, 0x43, 0x94, 0x43, 0x94, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x3a, 0xf3, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x71, 0x32, 0x91, 0x32, 0xd3, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x4b, 0xb6, 0x54, 0x18, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x53, 0xf7, 0x5c, 0x18, 0x5c, 0x58, 0x5c, 0x78, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x37, 0x54, 0x17, 0x4b, 0xd6, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x71, 0x32, 0x71, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x31, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x22, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, + 0x3a, 0xf3, 0x3b, 0x14, 0x3b, 0x54, 0x43, 0x75, 0x4b, 0x95, 0x3b, 0x14, 0x43, 0x55, 0x4b, 0x95, 0x4b, 0xb6, 0x53, 0xd6, 0x53, 0xf6, 0x53, 0xf7, 0x54, 0x17, 0x53, 0xf7, 0x53, 0xd6, 0x4b, 0xb6, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x95, 0x4b, 0xb6, 0x4b, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x53, 0xd7, 0x2a, 0x71, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x21, 0xef, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x19, 0xee, 0x19, 0xce, 0x19, 0xee, 0x19, 0xce, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x76, 0x4b, 0xb6, 0x4b, 0xf7, 0x54, 0x38, 0x5c, 0x79, 0x64, 0x9a, 0x64, 0xdb, 0x64, 0xfb, 0x6c, 0xfb, 0x64, 0xda, 0x64, 0x99, 0x64, 0x79, 0x5c, 0x78, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x9a, 0x64, 0xbc, 0x64, 0xbb, 0x64, 0x9a, 0x64, 0xbb, 0x64, 0xbb, 0x64, 0xdb, 0x5c, 0x79, 0x4b, 0xd5, 0x4b, 0x94, 0x4b, 0x94, 0x4b, 0x94, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x54, 0x32, 0xf3, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x71, 0x32, 0xf3, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x3b, 0x14, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x76, 0x4b, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x53, 0xf7, 0x5c, 0x38, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x38, 0x54, 0x17, 0x4b, 0xd7, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x3a, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x22, 0x31, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xf3, + 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x75, 0x4b, 0xb6, 0x43, 0x75, 0x43, 0x34, 0x4b, 0x95, 0x53, 0xb6, 0x5b, 0xf7, 0x5c, 0x37, 0x64, 0x58, 0x64, 0x78, 0x64, 0x78, 0x64, 0x79, 0x5c, 0x58, 0x54, 0x17, 0x4b, 0xd6, 0x4b, 0x96, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x95, 0x4b, 0xb6, 0x4b, 0x96, 0x4b, 0xb6, 0x53, 0xf7, 0x4b, 0x96, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x92, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xd7, 0x54, 0x18, 0x5c, 0x79, 0x64, 0xba, 0x6c, 0xfc, 0x6d, 0x3d, 0x75, 0x5d, 0x75, 0x3d, 0x6d, 0x1b, 0x6c, 0xda, 0x64, 0xba, 0x64, 0x79, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x79, 0x64, 0xbb, 0x64, 0xbc, 0x64, 0xbb, 0x64, 0xbb, 0x64, 0xdb, 0x64, 0xdb, 0x64, 0xba, 0x5c, 0x17, 0x4b, 0xb4, 0x4b, 0xb4, 0x4b, 0xb4, 0x4b, 0x94, 0x43, 0x94, 0x43, 0x54, 0x32, 0xf3, 0x32, 0xb2, 0x32, 0xb1, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x2a, 0x50, 0x32, 0xb2, 0x3a, 0xf4, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0x92, 0x32, 0x92, 0x3b, 0x14, 0x4b, 0x96, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0x96, 0x4b, 0xb6, 0x4b, 0xd6, 0x53, 0xf7, 0x54, 0x18, 0x5c, 0x38, 0x5c, 0x59, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x58, 0x5c, 0x38, 0x54, 0x18, 0x53, 0xf7, 0x4b, 0xb6, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x32, 0x51, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0x91, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x72, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, + 0x3b, 0x14, 0x43, 0x55, 0x4b, 0x95, 0x53, 0xd6, 0x43, 0x54, 0x43, 0x75, 0x53, 0xb6, 0x53, 0xf7, 0x5c, 0x58, 0x6c, 0x99, 0x6c, 0xdb, 0x74, 0xfc, 0x74, 0xfc, 0x74, 0xfb, 0x6c, 0xfb, 0x64, 0x99, 0x5c, 0x38, 0x53, 0xd6, 0x4b, 0xb6, 0x43, 0x75, 0x43, 0x55, 0x43, 0x75, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x96, 0x4b, 0x96, 0x4b, 0x96, 0x4b, 0xd7, 0x4b, 0xd6, 0x32, 0xd3, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0xb3, 0x32, 0xf3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xf7, 0x54, 0x58, 0x5c, 0x9a, 0x6c, 0xfc, 0x75, 0x5d, 0x7d, 0x9d, 0x7d, 0xbd, 0x7d, 0xbd, 0x75, 0x5d, 0x75, 0x1c, 0x6c, 0xdb, 0x6c, 0xba, 0x64, 0x99, 0x64, 0x79, 0x64, 0x79, 0x64, 0x9a, 0x64, 0xdc, 0x64, 0xdb, 0x64, 0xdb, 0x64, 0xdb, 0x64, 0xfc, 0x64, 0xbb, 0x5c, 0x37, 0x53, 0xb4, 0x53, 0xb5, 0x4b, 0xd5, 0x4b, 0xb5, 0x4b, 0x94, 0x43, 0x54, 0x3b, 0x13, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x71, 0x32, 0xb2, 0x33, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x32, 0xb2, 0x3b, 0x14, 0x4b, 0x96, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x53, 0xf7, 0x54, 0x18, 0x5c, 0x38, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x59, 0x5c, 0x38, 0x54, 0x18, 0x53, 0xf7, 0x4b, 0xb6, 0x43, 0x76, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xb2, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x51, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x31, 0x22, 0x51, 0x22, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x22, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf4, + 0x3b, 0x34, 0x43, 0x75, 0x4b, 0xb6, 0x53, 0xf7, 0x43, 0x54, 0x4b, 0x75, 0x53, 0xd6, 0x5c, 0x37, 0x6c, 0x99, 0x74, 0xfc, 0x7d, 0x5d, 0x7d, 0x7d, 0x85, 0x7d, 0x85, 0x7d, 0x7d, 0x5d, 0x75, 0x1c, 0x64, 0xba, 0x5c, 0x38, 0x53, 0xf7, 0x4b, 0x96, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0x76, 0x4b, 0xb6, 0x4b, 0xd7, 0x43, 0x75, 0x2a, 0x71, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x1a, 0x0f, 0x1a, 0x0f, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xd7, 0x54, 0x38, 0x5c, 0x79, 0x64, 0xdb, 0x6d, 0x3d, 0x7d, 0x9d, 0x85, 0xfd, 0x8e, 0x5d, 0x8e, 0x1d, 0x85, 0xbd, 0x7d, 0x5d, 0x75, 0x1c, 0x6c, 0xfb, 0x6c, 0xdb, 0x64, 0x9a, 0x64, 0x79, 0x64, 0x99, 0x6c, 0xbb, 0x6c, 0xdc, 0x6c, 0xdc, 0x6c, 0xdc, 0x6c, 0xfc, 0x64, 0xdc, 0x5c, 0x58, 0x53, 0xd5, 0x53, 0xd5, 0x53, 0xd5, 0x4b, 0xb5, 0x4b, 0xb5, 0x43, 0x54, 0x3b, 0x14, 0x3a, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x22, 0x0f, 0x21, 0xef, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x50, 0x2a, 0x91, 0x32, 0xb2, 0x32, 0xd3, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xb2, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x3b, 0x14, 0x4b, 0xb6, 0x54, 0x17, 0x54, 0x18, 0x54, 0x18, 0x5c, 0x38, 0x5c, 0x59, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x59, 0x5c, 0x38, 0x54, 0x18, 0x53, 0xf7, 0x4b, 0xd7, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x71, 0x32, 0x51, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x72, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x14, + 0x3b, 0x34, 0x43, 0x75, 0x4b, 0xd6, 0x5c, 0x38, 0x3b, 0x34, 0x4b, 0x95, 0x53, 0xf6, 0x64, 0x78, 0x6c, 0xdb, 0x7d, 0x3d, 0x85, 0x9d, 0x8d, 0xdd, 0x96, 0x3d, 0x96, 0x3d, 0x8d, 0xdd, 0x85, 0x7d, 0x75, 0x3d, 0x6c, 0xdb, 0x5c, 0x58, 0x53, 0xf7, 0x4b, 0x96, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x35, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x76, 0x4b, 0x96, 0x4b, 0x96, 0x32, 0xb2, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x19, 0xef, 0x22, 0x0f, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x0f, 0x19, 0xef, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x75, 0x4b, 0xb6, 0x4b, 0xf7, 0x54, 0x38, 0x64, 0x9a, 0x6d, 0x1c, 0x75, 0x7d, 0x86, 0x1d, 0x8e, 0x9d, 0x96, 0xfd, 0x96, 0xbd, 0x8e, 0x3d, 0x8d, 0xdd, 0x7d, 0x5d, 0x75, 0x1c, 0x6c, 0xdb, 0x6c, 0xbb, 0x64, 0x9a, 0x64, 0x79, 0x64, 0x9a, 0x6c, 0xfd, 0x6c, 0xfc, 0x6c, 0xfc, 0x6d, 0x1d, 0x6d, 0x1d, 0x64, 0x99, 0x5b, 0xf5, 0x5b, 0xd5, 0x53, 0xd5, 0x53, 0xd5, 0x4b, 0xb5, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x13, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x50, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0xd2, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xd3, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x3a, 0xf3, 0x3b, 0x34, 0x4b, 0xb6, 0x54, 0x18, 0x5c, 0x38, 0x5c, 0x59, 0x5c, 0x79, 0x5c, 0x59, 0x5c, 0x59, 0x5c, 0x59, 0x54, 0x38, 0x54, 0x18, 0x53, 0xf7, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x54, 0x43, 0x34, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x32, 0xb2, 0x2a, 0x50, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x32, 0xb2, 0x32, 0xb3, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x3b, 0x14, + 0x3b, 0x34, 0x43, 0x75, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0x34, 0x4b, 0x95, 0x53, 0xf7, 0x64, 0x78, 0x74, 0xfb, 0x7d, 0x5d, 0x8d, 0xdd, 0x96, 0x5d, 0x9e, 0xbd, 0x9e, 0xdd, 0x9e, 0x9d, 0x8e, 0x3d, 0x85, 0x9d, 0x7d, 0x5d, 0x6c, 0xbb, 0x5c, 0x38, 0x4b, 0xb6, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x76, 0x4b, 0xb6, 0x43, 0x55, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x31, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x95, 0x4b, 0xb6, 0x53, 0xf7, 0x5c, 0x59, 0x64, 0xdb, 0x75, 0x3d, 0x7d, 0xdd, 0x8e, 0x9d, 0x96, 0xfd, 0xa6, 0xdc, 0xa6, 0xfd, 0x9e, 0xdd, 0x96, 0x5d, 0x85, 0xbd, 0x7d, 0x3d, 0x74, 0xfc, 0x6c, 0xdb, 0x64, 0xba, 0x64, 0x9a, 0x64, 0x9a, 0x6c, 0xbb, 0x6c, 0xfd, 0x6c, 0xfd, 0x6d, 0x1d, 0x75, 0x3e, 0x64, 0xbb, 0x5b, 0xf6, 0x53, 0xd5, 0x53, 0xf5, 0x53, 0xf5, 0x4b, 0xb5, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x14, 0x32, 0xf2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x22, 0x30, 0x21, 0xef, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x2f, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x72, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x3a, 0xf3, 0x3b, 0x14, 0x43, 0x54, 0x4b, 0x95, 0x53, 0xf6, 0x5c, 0x38, 0x5c, 0x58, 0x64, 0x79, 0x5c, 0x79, 0x5c, 0x59, 0x5c, 0x38, 0x54, 0x38, 0x54, 0x17, 0x53, 0xd6, 0x53, 0xb6, 0x4b, 0x96, 0x43, 0x95, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x96, 0x4b, 0xb6, 0x2a, 0x51, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x3a, 0xf4, + 0x3b, 0x34, 0x43, 0x75, 0x4b, 0xd6, 0x3b, 0x34, 0x43, 0x34, 0x4b, 0x95, 0x53, 0xd6, 0x64, 0x78, 0x74, 0xfb, 0x7d, 0x5d, 0x8d, 0xfd, 0x96, 0x9d, 0xa6, 0xdc, 0xa6, 0xfc, 0xa6, 0xfd, 0x9e, 0xbd, 0x8e, 0x1d, 0x85, 0x9d, 0x75, 0x1d, 0x64, 0x79, 0x53, 0xf7, 0x4b, 0x96, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x31, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x1a, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x19, 0xef, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x21, 0xef, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x22, 0x71, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0xd3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x96, 0x4b, 0xd6, 0x54, 0x17, 0x5c, 0x79, 0x6c, 0xfc, 0x75, 0x7d, 0x86, 0x3d, 0x96, 0xdd, 0xa6, 0xfd, 0xae, 0xfd, 0xb6, 0xfd, 0xae, 0xfd, 0x9e, 0xbd, 0x96, 0x3d, 0x85, 0x7d, 0x75, 0x1c, 0x6c, 0xda, 0x6c, 0xba, 0x6c, 0xba, 0x64, 0xba, 0x64, 0xba, 0x6c, 0xdc, 0x6d, 0x1d, 0x75, 0x1d, 0x75, 0x5d, 0x6c, 0xfb, 0x5c, 0x37, 0x53, 0xf5, 0x5b, 0xf5, 0x5c, 0x16, 0x4b, 0xb5, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x50, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x75, 0x4b, 0x96, 0x53, 0xd6, 0x5c, 0x17, 0x5c, 0x58, 0x64, 0x58, 0x5c, 0x58, 0x5c, 0x38, 0x54, 0x17, 0x53, 0xf7, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x76, 0x43, 0x76, 0x43, 0x96, 0x4b, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x2a, 0x71, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x32, 0x92, 0x2a, 0x51, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x3a, 0xf4, + 0x3b, 0x14, 0x43, 0x55, 0x4b, 0xb6, 0x32, 0xf3, 0x3b, 0x34, 0x4b, 0x75, 0x53, 0xd6, 0x64, 0x58, 0x6c, 0xda, 0x7d, 0x5d, 0x8d, 0xbd, 0x96, 0x7d, 0x9e, 0xfd, 0xa6, 0xfd, 0xa6, 0xfd, 0xa6, 0xfd, 0x96, 0x9d, 0x85, 0x9d, 0x75, 0x1d, 0x64, 0x9a, 0x54, 0x17, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0x75, 0x43, 0x76, 0x43, 0x75, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x76, 0x43, 0x96, 0x43, 0x34, 0x21, 0xf0, 0x22, 0x31, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x21, 0xef, 0x1a, 0x0f, 0x22, 0x0f, 0x19, 0xef, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x31, 0x22, 0x31, 0x22, 0x51, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0xd3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x54, 0x43, 0x75, 0x4b, 0x96, 0x4b, 0xd7, 0x54, 0x38, 0x64, 0x9a, 0x6c, 0xfc, 0x7d, 0x9d, 0x8e, 0x7d, 0x9e, 0xfd, 0xb6, 0xdd, 0xc6, 0xfd, 0xc6, 0xdd, 0xbe, 0xdd, 0xae, 0xfd, 0x9e, 0xbd, 0x8d, 0xfd, 0x7d, 0x5d, 0x74, 0xdb, 0x6c, 0xba, 0x6c, 0xba, 0x6c, 0xbb, 0x6c, 0xbb, 0x6c, 0xbb, 0x6c, 0xfc, 0x75, 0x3d, 0x75, 0x5d, 0x6d, 0x1c, 0x64, 0x78, 0x5c, 0x15, 0x53, 0xf6, 0x5c, 0x16, 0x4b, 0xd5, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x34, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x50, 0x21, 0xef, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x3b, 0x13, 0x43, 0x34, 0x4b, 0x75, 0x4b, 0xb6, 0x53, 0xf6, 0x53, 0xf7, 0x5c, 0x17, 0x5c, 0x17, 0x53, 0xf7, 0x53, 0xd7, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x4b, 0xb7, 0x4b, 0xb6, 0x2a, 0x71, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x3a, 0xf4, + 0x3b, 0x14, 0x43, 0x55, 0x43, 0x95, 0x32, 0xd3, 0x3b, 0x14, 0x43, 0x55, 0x4b, 0xb6, 0x5c, 0x17, 0x64, 0x99, 0x75, 0x1c, 0x85, 0x7d, 0x8e, 0x1d, 0x9e, 0xbd, 0xa6, 0xdd, 0xa6, 0xfd, 0xa6, 0xdc, 0x96, 0x9d, 0x85, 0xdd, 0x75, 0x1d, 0x64, 0x99, 0x5c, 0x38, 0x53, 0xd7, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x96, 0x4b, 0x96, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x21, 0xef, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x19, 0xef, 0x21, 0xef, 0x22, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x1a, 0x10, 0x22, 0x31, 0x22, 0x51, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0xd3, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x43, 0x75, 0x4b, 0xb6, 0x53, 0xf7, 0x5c, 0x38, 0x64, 0x9a, 0x75, 0x1d, 0x85, 0xdd, 0x8e, 0x9d, 0xa6, 0xfd, 0xbe, 0xfd, 0xce, 0xdd, 0xce, 0xdd, 0xce, 0xfd, 0xbe, 0xfd, 0xa6, 0xdd, 0x96, 0x5d, 0x85, 0x7d, 0x74, 0xfc, 0x6c, 0xba, 0x64, 0x99, 0x64, 0xba, 0x6c, 0xbb, 0x6c, 0xbb, 0x6c, 0xdb, 0x75, 0x3d, 0x75, 0x5d, 0x6d, 0x3c, 0x64, 0x79, 0x5b, 0xf6, 0x53, 0xf6, 0x53, 0xf6, 0x43, 0x95, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x30, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x3b, 0x13, 0x43, 0x34, 0x4b, 0x75, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x96, 0x4b, 0x95, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x76, 0x43, 0x96, 0x4b, 0x96, 0x4b, 0xd7, 0x43, 0x96, 0x2a, 0x51, 0x22, 0x10, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x3a, 0xf4, 0x3a, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, + 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x55, 0x32, 0xd3, 0x3a, 0xf3, 0x43, 0x34, 0x4b, 0x95, 0x53, 0xd6, 0x5c, 0x38, 0x6c, 0xba, 0x7d, 0x3d, 0x85, 0x9d, 0x8e, 0x3d, 0x96, 0x9d, 0x9e, 0xdd, 0x9e, 0xbd, 0x96, 0x5d, 0x85, 0x9d, 0x74, 0xfc, 0x64, 0x79, 0x54, 0x17, 0x53, 0xd7, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x76, 0x43, 0x96, 0x43, 0x75, 0x3a, 0xf3, 0x22, 0x10, 0x22, 0x31, 0x22, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x1a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x19, 0xef, 0x19, 0xef, 0x22, 0x10, 0x22, 0x31, 0x22, 0x51, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x33, 0x14, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x4b, 0x96, 0x53, 0xd7, 0x5c, 0x38, 0x64, 0x9a, 0x75, 0x1d, 0x7d, 0xbd, 0x8e, 0x9d, 0xa6, 0xfd, 0xbe, 0xfd, 0xd6, 0xfd, 0xd6, 0xfd, 0xce, 0xfd, 0xc6, 0xdd, 0xae, 0xfd, 0x96, 0x7d, 0x85, 0x9d, 0x75, 0x1d, 0x6c, 0xdb, 0x64, 0x99, 0x64, 0x79, 0x64, 0x9a, 0x6c, 0xbb, 0x6c, 0xdb, 0x6d, 0x1d, 0x75, 0x3d, 0x6d, 0x1d, 0x5c, 0x79, 0x4b, 0xd6, 0x53, 0xd6, 0x53, 0xd6, 0x43, 0x95, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb2, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xf3, 0x3b, 0x13, 0x43, 0x34, 0x43, 0x54, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x43, 0x55, 0x43, 0x76, 0x4b, 0xb6, 0x4b, 0xd7, 0x54, 0x38, 0x43, 0x34, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0xd3, 0x3b, 0x14, 0x3a, 0xf4, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x71, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x14, + 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x32, 0xb3, 0x32, 0xf3, 0x3b, 0x14, 0x43, 0x54, 0x4b, 0x96, 0x53, 0xf7, 0x64, 0x58, 0x6c, 0xdb, 0x7d, 0x3d, 0x85, 0x9d, 0x8d, 0xdd, 0x96, 0x3d, 0x8e, 0x3d, 0x85, 0xdd, 0x7d, 0x3d, 0x6c, 0xdc, 0x64, 0x59, 0x54, 0x17, 0x4b, 0xd6, 0x43, 0x96, 0x4b, 0x96, 0x43, 0xb6, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x76, 0x43, 0x96, 0x43, 0x76, 0x3b, 0x14, 0x22, 0x10, 0x22, 0x31, 0x22, 0x31, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x19, 0xef, 0x11, 0xae, 0x11, 0xcf, 0x1a, 0x10, 0x1a, 0x10, 0x22, 0x30, 0x22, 0x51, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0xd3, 0x33, 0x14, 0x3b, 0x34, 0x43, 0x55, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xd6, 0x54, 0x17, 0x64, 0x79, 0x6c, 0xfc, 0x7d, 0xbd, 0x8e, 0x9d, 0x9e, 0xfd, 0xbe, 0xfd, 0xce, 0xfd, 0xd6, 0xfd, 0xd6, 0xfd, 0xce, 0xfd, 0xb6, 0xfd, 0x9e, 0x9d, 0x8d, 0xdd, 0x7d, 0x3d, 0x6c, 0xdb, 0x6c, 0xba, 0x64, 0x99, 0x64, 0x9a, 0x64, 0xba, 0x64, 0xdb, 0x6c, 0xfc, 0x6d, 0x1d, 0x6d, 0x1d, 0x5c, 0x9a, 0x4b, 0xf6, 0x53, 0xf6, 0x4b, 0xd6, 0x4b, 0xb6, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0xb2, 0x2a, 0x71, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x72, 0x32, 0xb2, 0x32, 0xb2, 0x3a, 0xd3, 0x3a, 0xf3, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x76, 0x4b, 0xb6, 0x4b, 0xd7, 0x5c, 0x79, 0x2a, 0x92, 0x1a, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0xd3, 0x3b, 0x14, 0x3a, 0xf4, 0x3a, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x3b, 0x14, + 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x32, 0xb2, 0x32, 0xd3, 0x3a, 0xf3, 0x3b, 0x14, 0x43, 0x75, 0x4b, 0xb6, 0x53, 0xf7, 0x64, 0x78, 0x6c, 0xba, 0x75, 0x1d, 0x7d, 0x5d, 0x7d, 0x7d, 0x85, 0x7d, 0x75, 0x3d, 0x74, 0xfc, 0x6c, 0x9a, 0x5c, 0x38, 0x53, 0xf7, 0x4b, 0xb6, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x76, 0x43, 0x96, 0x43, 0x76, 0x43, 0x55, 0x2a, 0x92, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x19, 0xef, 0x19, 0xad, 0x11, 0x8d, 0x11, 0xae, 0x11, 0xcf, 0x19, 0xef, 0x1a, 0x10, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xf3, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x75, 0x4b, 0x96, 0x4b, 0xd6, 0x54, 0x17, 0x5c, 0x79, 0x6c, 0xfc, 0x75, 0x7d, 0x86, 0x3d, 0x9e, 0xdd, 0xb6, 0xfd, 0xce, 0xfd, 0xd6, 0xfd, 0xd6, 0xfd, 0xce, 0xfd, 0xb6, 0xfd, 0x9e, 0xbd, 0x8d, 0xdd, 0x7d, 0x3d, 0x74, 0xdc, 0x6c, 0xba, 0x64, 0x99, 0x64, 0x9a, 0x64, 0xba, 0x64, 0xdb, 0x64, 0xdc, 0x64, 0xfd, 0x6d, 0x1d, 0x5c, 0x9a, 0x4b, 0xf7, 0x4b, 0xf7, 0x53, 0xf6, 0x43, 0xb6, 0x43, 0x76, 0x3b, 0x75, 0x3b, 0x55, 0x33, 0x14, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x32, 0x71, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x76, 0x4b, 0xb6, 0x4b, 0xf7, 0x54, 0x18, 0x2a, 0x91, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x72, 0x32, 0xb2, 0x3a, 0xf3, 0x3b, 0x14, 0x3b, 0x14, 0x3a, 0xf4, 0x3a, 0xf3, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x13, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x31, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x31, 0x2a, 0x71, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, + 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x55, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x54, 0x43, 0x75, 0x4b, 0xb6, 0x53, 0xf7, 0x5c, 0x38, 0x64, 0x9a, 0x6c, 0xdb, 0x74, 0xfd, 0x6c, 0xdc, 0x6c, 0xba, 0x64, 0x9a, 0x5c, 0x58, 0x54, 0x17, 0x4b, 0xb6, 0x43, 0x75, 0x43, 0x55, 0x43, 0x75, 0x3a, 0xf4, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x76, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x75, 0x3a, 0xd3, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x19, 0xee, 0x19, 0x8d, 0x11, 0x6c, 0x11, 0x8c, 0x11, 0x8d, 0x11, 0x8e, 0x11, 0xce, 0x19, 0xef, 0x1a, 0x10, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xd3, 0x3b, 0x34, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xb6, 0x53, 0xf7, 0x5c, 0x59, 0x6c, 0xdc, 0x75, 0x5d, 0x86, 0x1d, 0x96, 0xdd, 0xae, 0xfd, 0xc6, 0xfd, 0xce, 0xfd, 0xd6, 0xfd, 0xce, 0xfd, 0xb6, 0xfd, 0x9e, 0xbd, 0x8d, 0xfd, 0x7d, 0x5d, 0x74, 0xfc, 0x6c, 0xba, 0x64, 0x9a, 0x64, 0x9a, 0x64, 0xba, 0x64, 0xbb, 0x64, 0xdc, 0x64, 0xfd, 0x6d, 0x1d, 0x5c, 0x9a, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x76, 0x3b, 0x55, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x75, 0x4b, 0xb7, 0x53, 0xf8, 0x4b, 0x96, 0x2a, 0x71, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xd3, 0x3a, 0xf3, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x35, + 0x3b, 0x75, 0x43, 0x76, 0x3b, 0x55, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf4, 0x3b, 0x14, 0x43, 0x55, 0x43, 0x75, 0x4b, 0xb6, 0x53, 0xf7, 0x5c, 0x38, 0x64, 0x79, 0x5c, 0x59, 0x5c, 0x58, 0x64, 0x58, 0x5c, 0x58, 0x54, 0x17, 0x53, 0xd7, 0x4b, 0xb6, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x34, 0x3a, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3a, 0xf4, 0x3a, 0xf4, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x76, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x75, 0x3a, 0xf4, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x19, 0xee, 0x11, 0x6b, 0x11, 0x4b, 0x11, 0x4b, 0x11, 0x6c, 0x11, 0x8c, 0x11, 0x8d, 0x11, 0xad, 0x11, 0xce, 0x19, 0xcf, 0x1a, 0x10, 0x22, 0x31, 0x22, 0x31, 0x22, 0x51, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0xd3, 0x3b, 0x34, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xb6, 0x53, 0xf7, 0x5c, 0x59, 0x64, 0xbb, 0x6d, 0x3d, 0x7d, 0xdd, 0x8e, 0x9d, 0x9e, 0xfd, 0xb6, 0xfd, 0xc6, 0xfd, 0xce, 0xfd, 0xc6, 0xfd, 0xb6, 0xfd, 0x9e, 0xbd, 0x8d, 0xfd, 0x7d, 0x5d, 0x75, 0x1c, 0x6c, 0xba, 0x64, 0x9a, 0x64, 0x9a, 0x64, 0xba, 0x5c, 0xbb, 0x5c, 0xbc, 0x64, 0xbd, 0x64, 0xfd, 0x5c, 0x7a, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xb7, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x75, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x32, 0x71, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x76, 0x4b, 0xb7, 0x54, 0x18, 0x43, 0x55, 0x2a, 0x71, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x32, 0xd3, 0x3a, 0xf4, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x43, 0x54, 0x3b, 0x34, 0x43, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, + 0x43, 0x96, 0x4b, 0xd7, 0x4b, 0xb6, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x43, 0x55, 0x43, 0x76, 0x4b, 0xb6, 0x53, 0xd7, 0x53, 0xd7, 0x53, 0xd7, 0x53, 0xf7, 0x53, 0xf7, 0x53, 0xd7, 0x53, 0xd7, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x43, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x76, 0x43, 0x96, 0x4b, 0x96, 0x43, 0x76, 0x3b, 0x34, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x0f, 0x19, 0xac, 0x11, 0x4a, 0x11, 0x2a, 0x11, 0x2a, 0x11, 0x4a, 0x11, 0x4b, 0x11, 0x6c, 0x11, 0x8c, 0x11, 0x6d, 0x11, 0xad, 0x11, 0xae, 0x11, 0xcf, 0x19, 0xf0, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x92, 0x2a, 0xb3, 0x33, 0x14, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xb6, 0x53, 0xf7, 0x54, 0x38, 0x64, 0x9b, 0x6d, 0x1d, 0x75, 0x9d, 0x86, 0x5d, 0x96, 0xfc, 0xae, 0xfd, 0xb6, 0xfd, 0xbe, 0xfd, 0xb6, 0xfd, 0xa6, 0xfd, 0x96, 0xbd, 0x85, 0xfd, 0x7d, 0x5d, 0x6d, 0x1c, 0x64, 0xdb, 0x64, 0xba, 0x64, 0xba, 0x64, 0xba, 0x5c, 0x9b, 0x5c, 0x9c, 0x5c, 0xbd, 0x64, 0xdd, 0x5c, 0x7a, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xb3, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x76, 0x43, 0xb6, 0x54, 0x18, 0x3b, 0x34, 0x22, 0x51, 0x22, 0x30, 0x22, 0x31, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x72, 0x32, 0xd3, 0x3a, 0xf4, 0x3a, 0xf4, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x43, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x35, 0x43, 0x76, 0x43, 0x96, + 0x4b, 0xf6, 0x54, 0x17, 0x4b, 0xf6, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x76, 0x43, 0x95, 0x43, 0x95, 0x4b, 0x96, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3a, 0xf4, 0x32, 0xf4, 0x32, 0xd4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x3b, 0x14, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x55, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x0f, 0x21, 0xee, 0x19, 0xad, 0x11, 0x4a, 0x11, 0x09, 0x11, 0x29, 0x11, 0x4a, 0x11, 0x2a, 0x11, 0x4a, 0x11, 0x4a, 0x11, 0x4b, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x8d, 0x11, 0xae, 0x11, 0xcf, 0x19, 0xef, 0x1a, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xf4, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xf7, 0x54, 0x38, 0x5c, 0x9a, 0x64, 0xfd, 0x75, 0x5d, 0x7d, 0xfd, 0x8e, 0xbd, 0x9e, 0xfc, 0xa6, 0xfd, 0xae, 0xfd, 0xa6, 0xfd, 0x9e, 0xfd, 0x8e, 0x9d, 0x85, 0xdd, 0x75, 0x5d, 0x6d, 0x1c, 0x64, 0xdb, 0x64, 0xba, 0x5c, 0xba, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0x9b, 0x5c, 0x9d, 0x64, 0xdd, 0x5c, 0x7b, 0x4b, 0xd7, 0x4b, 0xf7, 0x4c, 0x18, 0x4b, 0xd7, 0x43, 0x97, 0x43, 0xb7, 0x43, 0x96, 0x3b, 0x55, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xb3, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xd7, 0x32, 0xd3, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x51, 0x22, 0x51, 0x2a, 0x92, 0x32, 0xf3, 0x3a, 0xf4, 0x32, 0xf4, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x43, 0x14, 0x43, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x32, 0x92, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x76, 0x4b, 0xd6, + 0x4b, 0xf6, 0x54, 0x17, 0x53, 0xf6, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x34, 0x43, 0x55, 0x43, 0x55, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf4, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x34, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x30, 0x21, 0xee, 0x21, 0xcd, 0x19, 0xac, 0x19, 0x6b, 0x11, 0x29, 0x11, 0x29, 0x11, 0x29, 0x11, 0x29, 0x11, 0x2a, 0x11, 0x4a, 0x11, 0x4a, 0x11, 0x2a, 0x11, 0x2a, 0x11, 0x4a, 0x11, 0x2b, 0x11, 0x6b, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6d, 0x11, 0xad, 0x11, 0xce, 0x19, 0xef, 0x1a, 0x10, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xd3, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x54, 0x18, 0x5c, 0x7a, 0x64, 0xbc, 0x6d, 0x1d, 0x75, 0x9d, 0x86, 0x7d, 0x96, 0xfd, 0x9e, 0xfc, 0x9e, 0xfc, 0x9e, 0xfc, 0x96, 0xdd, 0x86, 0x5d, 0x7d, 0xbd, 0x75, 0x5d, 0x6d, 0x1c, 0x64, 0xdb, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9c, 0x5c, 0xbd, 0x64, 0xdd, 0x5c, 0x7b, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xf7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb6, 0x3b, 0x55, 0x3b, 0x34, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x43, 0x75, 0x22, 0x30, 0x19, 0xef, 0x1a, 0x10, 0x1a, 0x30, 0x22, 0x30, 0x22, 0x31, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x2a, 0xb2, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x43, 0x34, 0x43, 0x34, 0x43, 0x34, 0x3b, 0x34, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x91, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, + 0x53, 0xf6, 0x53, 0xf6, 0x53, 0xf6, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x43, 0x55, 0x43, 0x75, 0x43, 0x55, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf4, 0x3b, 0x35, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xd3, 0x2a, 0x30, 0x19, 0xce, 0x11, 0x6c, 0x11, 0x4b, 0x11, 0x4b, 0x11, 0x4a, 0x11, 0x2a, 0x11, 0x2a, 0x11, 0x2a, 0x11, 0x2a, 0x11, 0x2a, 0x11, 0x2a, 0x11, 0x2a, 0x11, 0x2a, 0x11, 0x4a, 0x11, 0x4a, 0x11, 0x2a, 0x11, 0x2b, 0x11, 0x4b, 0x11, 0x6c, 0x11, 0x8c, 0x11, 0x6d, 0x11, 0xad, 0x11, 0xae, 0x11, 0xcf, 0x1a, 0x10, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x33, 0x14, 0x3b, 0x76, 0x43, 0x76, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xf8, 0x54, 0x39, 0x5c, 0x9c, 0x64, 0xfd, 0x75, 0x5d, 0x7d, 0xdd, 0x8e, 0x7d, 0x96, 0xdd, 0x96, 0xfd, 0x8e, 0xdd, 0x8e, 0x7d, 0x7d, 0xdd, 0x75, 0x7d, 0x6d, 0x3d, 0x64, 0xfc, 0x64, 0xbb, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0x9b, 0x5c, 0x9c, 0x5c, 0xbd, 0x64, 0xdd, 0x54, 0x7a, 0x43, 0xd7, 0x4b, 0xf8, 0x4c, 0x18, 0x4b, 0xf8, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0xb7, 0x3b, 0x76, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x33, 0x14, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x96, 0x3b, 0x34, 0x1a, 0x30, 0x19, 0xef, 0x1a, 0x10, 0x1a, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x31, 0x22, 0x31, 0x22, 0x71, 0x2a, 0x72, 0x32, 0xd3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x43, 0x54, 0x43, 0x34, 0x43, 0x54, 0x43, 0x34, 0x43, 0x54, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xf3, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x95, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x53, 0xf6, + 0x53, 0xf6, 0x54, 0x17, 0x53, 0xf6, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3a, 0xf4, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xb2, 0x11, 0x8d, 0x11, 0x8c, 0x11, 0x4c, 0x11, 0x6c, 0x11, 0x4b, 0x11, 0x2b, 0x11, 0x4a, 0x11, 0x2a, 0x11, 0x2a, 0x11, 0x2a, 0x11, 0x2a, 0x11, 0x4a, 0x11, 0x2a, 0x11, 0x4a, 0x11, 0x4a, 0x11, 0x4a, 0x11, 0x2a, 0x11, 0x4b, 0x11, 0x4b, 0x11, 0x6c, 0x11, 0x8c, 0x11, 0x6c, 0x11, 0xad, 0x11, 0xae, 0x11, 0xce, 0x19, 0xef, 0x22, 0x31, 0x22, 0x31, 0x22, 0x51, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xf4, 0x43, 0x96, 0x3b, 0x76, 0x43, 0x96, 0x43, 0xb7, 0x4b, 0xf8, 0x54, 0x39, 0x5c, 0x9b, 0x64, 0xbd, 0x6d, 0x1d, 0x75, 0x7d, 0x7d, 0xdd, 0x86, 0x5d, 0x86, 0x7d, 0x86, 0x5d, 0x85, 0xfd, 0x7d, 0x9d, 0x6d, 0x5d, 0x6d, 0x1d, 0x64, 0xfd, 0x5c, 0xbc, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0xbd, 0x64, 0xbd, 0x54, 0x5a, 0x4b, 0xf7, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x18, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xb7, 0x43, 0x96, 0x3b, 0x96, 0x3b, 0x35, 0x3b, 0x34, 0x33, 0x14, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x75, 0x43, 0xb6, 0x32, 0xd3, 0x1a, 0x0f, 0x19, 0xef, 0x1a, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x22, 0x52, 0x2a, 0x72, 0x3a, 0xf4, 0x3a, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x34, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x13, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x75, 0x4b, 0xd6, 0x4b, 0xd6, 0x53, 0xf6, 0x53, 0xf6, + 0x54, 0x17, 0x54, 0x17, 0x5c, 0x17, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x11, 0x8d, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x4b, 0x11, 0x4b, 0x11, 0x2b, 0x11, 0x4a, 0x11, 0x4a, 0x11, 0x2a, 0x11, 0x2a, 0x11, 0x2a, 0x11, 0x4a, 0x11, 0x2a, 0x11, 0x4a, 0x11, 0x2a, 0x11, 0x2b, 0x11, 0x4b, 0x11, 0x6b, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x8d, 0x11, 0xae, 0x11, 0xce, 0x11, 0xcf, 0x1a, 0x10, 0x22, 0x31, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xd3, 0x3b, 0x35, 0x43, 0x76, 0x43, 0x96, 0x43, 0xb7, 0x4b, 0xf8, 0x4c, 0x19, 0x54, 0x5a, 0x5c, 0xbc, 0x64, 0xfe, 0x6d, 0x3d, 0x75, 0x9d, 0x7d, 0xbd, 0x7d, 0xdd, 0x7d, 0xbd, 0x75, 0x9d, 0x6d, 0x3d, 0x6d, 0x1d, 0x64, 0xfd, 0x64, 0xdd, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9d, 0x5c, 0xbd, 0x64, 0xbd, 0x54, 0x5a, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4b, 0xf8, 0x4b, 0xd7, 0x43, 0xb7, 0x43, 0x96, 0x3b, 0x75, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x51, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x75, 0x4b, 0xb6, 0x22, 0x10, 0x19, 0xcf, 0x19, 0xf0, 0x19, 0xf0, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x72, 0x3b, 0x14, 0x3b, 0x14, 0x3a, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xb3, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x34, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xf6, 0x54, 0x16, 0x54, 0x17, + 0x54, 0x17, 0x54, 0x17, 0x5c, 0x37, 0x32, 0xf3, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf3, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf4, 0x3b, 0x14, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x33, 0x15, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x34, 0x3a, 0xf4, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x11, 0x8d, 0x11, 0x8c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6b, 0x11, 0x4b, 0x11, 0x4b, 0x11, 0x2b, 0x11, 0x2b, 0x11, 0x4a, 0x11, 0x4a, 0x11, 0x2a, 0x11, 0x2a, 0x11, 0x2a, 0x11, 0x4a, 0x11, 0x4b, 0x11, 0x2b, 0x11, 0x4b, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0xae, 0x11, 0xce, 0x11, 0xcf, 0x1a, 0x0f, 0x22, 0x31, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xf4, 0x43, 0x96, 0x43, 0x96, 0x43, 0xd7, 0x4b, 0xf7, 0x4c, 0x18, 0x54, 0x5a, 0x5c, 0x9c, 0x64, 0xdd, 0x6d, 0x1d, 0x6d, 0x3d, 0x75, 0x7d, 0x75, 0x7d, 0x75, 0x5d, 0x6d, 0x3d, 0x6c, 0xfd, 0x64, 0xdd, 0x64, 0xbd, 0x5c, 0xbd, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9d, 0x5c, 0xbd, 0x64, 0xde, 0x5c, 0xbc, 0x54, 0x39, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x19, 0x54, 0x39, 0x54, 0x39, 0x54, 0x18, 0x4b, 0xf8, 0x43, 0xd7, 0x43, 0xb7, 0x3b, 0x96, 0x3b, 0x55, 0x3b, 0x34, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x31, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x96, 0x32, 0xd3, 0x19, 0xef, 0x11, 0xcf, 0x19, 0xef, 0x1a, 0x10, 0x1a, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x72, 0x3b, 0x14, 0x3b, 0x14, 0x3a, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x3b, 0x34, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xd6, 0x4b, 0xf6, 0x54, 0x16, + 0x4b, 0xf6, 0x4b, 0xf7, 0x54, 0x17, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x33, 0x14, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x15, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xd3, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x11, 0x8d, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6b, 0x11, 0x4b, 0x11, 0x2b, 0x11, 0x4b, 0x11, 0x4b, 0x11, 0x4b, 0x11, 0x2b, 0x11, 0x4b, 0x11, 0x2b, 0x11, 0x4b, 0x11, 0x4b, 0x11, 0x4b, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0xae, 0x11, 0xce, 0x11, 0xcf, 0x19, 0xef, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb3, 0x32, 0xf4, 0x3b, 0x76, 0x43, 0x97, 0x43, 0xb7, 0x4b, 0xf8, 0x54, 0x19, 0x54, 0x5a, 0x5c, 0x9c, 0x64, 0xbd, 0x64, 0xfd, 0x6d, 0x1d, 0x6d, 0x3d, 0x6d, 0x3d, 0x6d, 0x1d, 0x64, 0xfd, 0x64, 0xdd, 0x64, 0xbd, 0x5c, 0xbd, 0x5c, 0x9d, 0x5c, 0x9c, 0x5c, 0xbc, 0x5c, 0x9c, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xbd, 0x64, 0xbe, 0x5c, 0x9c, 0x54, 0x39, 0x4c, 0x18, 0x4c, 0x19, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x4c, 0x18, 0x4b, 0xf7, 0x43, 0xd7, 0x43, 0xb7, 0x3b, 0x76, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x22, 0x31, 0x2a, 0x50, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x35, 0x43, 0x55, 0x53, 0xd7, 0x22, 0x50, 0x11, 0xce, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x1a, 0x10, 0x22, 0x10, 0x22, 0x31, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3a, 0xf4, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xb3, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x13, 0x33, 0x13, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x75, 0x43, 0x95, 0x4b, 0xd6, 0x4b, 0xd6, + 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xb6, 0x3b, 0x54, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf4, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x19, 0xce, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x4b, 0x11, 0x4b, 0x11, 0x4b, 0x11, 0x2b, 0x11, 0x4b, 0x11, 0x4b, 0x11, 0x4b, 0x11, 0x6b, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0xae, 0x11, 0xce, 0x11, 0xcf, 0x19, 0xef, 0x22, 0x10, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x3b, 0x35, 0x43, 0xb7, 0x4b, 0xd7, 0x4b, 0xf8, 0x54, 0x39, 0x54, 0x7a, 0x5c, 0x9b, 0x64, 0xbd, 0x64, 0xdd, 0x64, 0xfd, 0x6d, 0x1d, 0x6d, 0x1d, 0x64, 0xdd, 0x64, 0xdd, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0x9d, 0x5c, 0xbd, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0xbd, 0x5c, 0xbd, 0x64, 0xde, 0x5c, 0x9c, 0x54, 0x19, 0x4c, 0x19, 0x4c, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x59, 0x54, 0x39, 0x4c, 0x18, 0x4b, 0xf7, 0x43, 0xd7, 0x43, 0x96, 0x3b, 0x35, 0x3b, 0x14, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x43, 0x96, 0x3a, 0xd3, 0x19, 0xef, 0x11, 0xce, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x1a, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x92, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x14, 0x3b, 0x14, 0x3a, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x75, 0x43, 0x96, 0x43, 0x96, + 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0x75, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x33, 0x14, 0x32, 0xf4, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xd4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x21, 0xef, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6b, 0x11, 0x6b, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0xad, 0x11, 0xae, 0x11, 0xae, 0x11, 0xae, 0x11, 0xcf, 0x19, 0xef, 0x1a, 0x10, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x33, 0x14, 0x43, 0xb7, 0x4b, 0xd8, 0x4c, 0x18, 0x54, 0x59, 0x5c, 0x7a, 0x5c, 0xbb, 0x64, 0xdd, 0x64, 0xdd, 0x64, 0xdd, 0x64, 0xfd, 0x64, 0xdd, 0x64, 0xdd, 0x5c, 0xbd, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xbd, 0x64, 0xbd, 0x64, 0xdd, 0x64, 0xdd, 0x5c, 0x9c, 0x54, 0x3a, 0x54, 0x3a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x7a, 0x5c, 0x9b, 0x54, 0x7a, 0x54, 0x59, 0x54, 0x38, 0x4b, 0xf8, 0x4b, 0xf7, 0x43, 0xb7, 0x3b, 0x55, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x96, 0x22, 0x50, 0x11, 0xce, 0x11, 0xce, 0x19, 0xcf, 0x19, 0xef, 0x19, 0xef, 0x1a, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x2a, 0xb3, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3a, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0x93, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x55, 0x3b, 0x55, + 0x33, 0x14, 0x33, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0x0f, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x4c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0xad, 0x11, 0xae, 0x11, 0xae, 0x11, 0xcf, 0x19, 0xef, 0x19, 0xef, 0x1a, 0x10, 0x22, 0x31, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x93, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x76, 0x4b, 0xf8, 0x4c, 0x18, 0x54, 0x59, 0x5c, 0xba, 0x64, 0xdb, 0x6c, 0xfd, 0x6d, 0x1d, 0x6c, 0xfd, 0x64, 0xfd, 0x64, 0xdd, 0x64, 0xdd, 0x5c, 0xbd, 0x5c, 0x9d, 0x5c, 0x7d, 0x5c, 0x9d, 0x5c, 0xbd, 0x5c, 0xbd, 0x64, 0xdd, 0x64, 0xdd, 0x64, 0xdd, 0x64, 0xdd, 0x64, 0xdd, 0x64, 0xdd, 0x5c, 0x9c, 0x54, 0x5b, 0x54, 0x5b, 0x54, 0x5b, 0x54, 0x7b, 0x5c, 0x7b, 0x5c, 0x9b, 0x5c, 0x9b, 0x54, 0x7a, 0x54, 0x59, 0x54, 0x18, 0x4b, 0xf8, 0x43, 0xd7, 0x3b, 0x35, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x33, 0x14, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x75, 0x3a, 0xf3, 0x19, 0xef, 0x11, 0xae, 0x11, 0xce, 0x11, 0xcf, 0x19, 0xef, 0x19, 0xef, 0x1a, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x32, 0xd3, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x3b, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xb3, 0x32, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xb3, 0x2a, 0xb2, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0x92, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, + 0x33, 0x14, 0x33, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x32, 0xd4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0x92, 0x32, 0xd3, 0x32, 0x93, 0x2a, 0x93, 0x32, 0xb3, 0x32, 0xf4, 0x32, 0xd4, 0x32, 0xd4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0x30, 0x11, 0x8d, 0x11, 0xae, 0x11, 0xae, 0x11, 0xad, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0xae, 0x11, 0xce, 0x11, 0xce, 0x19, 0xef, 0x19, 0xef, 0x1a, 0x10, 0x1a, 0x10, 0x22, 0x31, 0x22, 0x51, 0x32, 0x92, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x3b, 0x15, 0x4b, 0xf8, 0x4c, 0x18, 0x54, 0x59, 0x64, 0xba, 0x6c, 0xdb, 0x6c, 0xfc, 0x6d, 0x1d, 0x6d, 0x1d, 0x6d, 0x1d, 0x64, 0xfd, 0x64, 0xdd, 0x5c, 0x9d, 0x54, 0x7c, 0x54, 0x7c, 0x5c, 0x9d, 0x5c, 0xbd, 0x64, 0xbd, 0x64, 0xdd, 0x64, 0xfd, 0x65, 0x1d, 0x65, 0x1d, 0x64, 0xfd, 0x64, 0xdd, 0x64, 0xbd, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x54, 0x7a, 0x54, 0x39, 0x4c, 0x38, 0x43, 0xb7, 0x3b, 0x35, 0x3b, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x55, 0x2a, 0x30, 0x11, 0xae, 0x11, 0xae, 0x11, 0xce, 0x11, 0xce, 0x19, 0xef, 0x19, 0xef, 0x19, 0xf0, 0x22, 0x30, 0x22, 0x30, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x32, 0xd3, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xb3, 0x32, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0xb3, 0x2a, 0xb3, 0x2a, 0x92, 0x2a, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, + 0x33, 0x14, 0x33, 0x14, 0x33, 0x35, 0x3b, 0x35, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0x30, 0x11, 0xae, 0x11, 0xce, 0x11, 0xce, 0x11, 0xce, 0x11, 0xae, 0x11, 0xae, 0x11, 0xae, 0x11, 0xae, 0x11, 0xad, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0xad, 0x11, 0xae, 0x11, 0xce, 0x11, 0xcf, 0x11, 0xef, 0x19, 0xef, 0x1a, 0x0f, 0x1a, 0x10, 0x22, 0x30, 0x22, 0x31, 0x22, 0x31, 0x2a, 0x72, 0x2a, 0x93, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x33, 0x14, 0x43, 0x96, 0x54, 0x59, 0x54, 0x79, 0x5c, 0x9a, 0x6c, 0xdb, 0x6c, 0xdc, 0x75, 0x1d, 0x75, 0x1d, 0x6d, 0x1d, 0x6d, 0x1d, 0x64, 0xdd, 0x5c, 0x9d, 0x5c, 0x9d, 0x54, 0x9d, 0x54, 0x9d, 0x5c, 0x9d, 0x64, 0xdd, 0x64, 0xfd, 0x65, 0x1d, 0x6d, 0x3d, 0x6d, 0x3d, 0x6d, 0x1d, 0x64, 0xfd, 0x64, 0xfd, 0x64, 0xfd, 0x64, 0xdd, 0x64, 0xdd, 0x64, 0xbd, 0x64, 0xbd, 0x5c, 0xbd, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0x9c, 0x54, 0x5a, 0x54, 0x38, 0x43, 0xd7, 0x3b, 0x75, 0x3b, 0x35, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x55, 0x3b, 0x14, 0x19, 0xce, 0x11, 0xad, 0x11, 0xae, 0x11, 0xce, 0x11, 0xce, 0x19, 0xcf, 0x19, 0xef, 0x19, 0xf0, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x32, 0xf3, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, + 0x33, 0x14, 0x33, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0x30, 0x11, 0xcf, 0x11, 0xcf, 0x11, 0xcf, 0x11, 0xef, 0x11, 0xcf, 0x11, 0xcf, 0x11, 0xce, 0x11, 0xce, 0x11, 0xce, 0x11, 0xae, 0x11, 0xce, 0x11, 0xae, 0x11, 0xad, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0xad, 0x11, 0xad, 0x11, 0xae, 0x11, 0xae, 0x11, 0xce, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x1a, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd4, 0x32, 0xf4, 0x3b, 0x55, 0x4b, 0xf8, 0x54, 0x7a, 0x5c, 0x9b, 0x64, 0xdb, 0x6c, 0xfc, 0x74, 0xfd, 0x75, 0x1d, 0x75, 0x1d, 0x6d, 0x1d, 0x64, 0xdd, 0x5c, 0xbd, 0x5c, 0x9d, 0x5c, 0x9d, 0x54, 0x7d, 0x5c, 0x9d, 0x64, 0xdd, 0x64, 0xfd, 0x6d, 0x1d, 0x6d, 0x3d, 0x6d, 0x3d, 0x6d, 0x3d, 0x6d, 0x3d, 0x75, 0x5d, 0x75, 0x5d, 0x6d, 0x3d, 0x6d, 0x1d, 0x6c, 0xfd, 0x64, 0xfd, 0x64, 0xfd, 0x64, 0xdd, 0x64, 0xdd, 0x5c, 0xdd, 0x54, 0x7b, 0x4c, 0x19, 0x4b, 0xd7, 0x43, 0x96, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x35, 0x33, 0x14, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf4, 0x3b, 0x14, 0x43, 0x95, 0x22, 0x0f, 0x11, 0x8d, 0x11, 0xae, 0x11, 0xce, 0x11, 0xae, 0x11, 0xce, 0x11, 0xcf, 0x19, 0xef, 0x19, 0xef, 0x1a, 0x10, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x32, 0xf3, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x34, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, + 0x33, 0x35, 0x33, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0xb2, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0x31, 0x11, 0xef, 0x19, 0xf0, 0x19, 0xef, 0x11, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x11, 0xef, 0x19, 0xef, 0x11, 0xcf, 0x11, 0xce, 0x11, 0xce, 0x11, 0xce, 0x11, 0xae, 0x11, 0xae, 0x11, 0xae, 0x11, 0xce, 0x11, 0xce, 0x11, 0xce, 0x11, 0xcf, 0x19, 0xef, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x22, 0x30, 0x22, 0x10, 0x22, 0x31, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x35, 0x43, 0x97, 0x54, 0x5a, 0x5c, 0x9b, 0x64, 0xbc, 0x6c, 0xfc, 0x74, 0xfd, 0x75, 0x1d, 0x75, 0x1d, 0x6d, 0x1d, 0x64, 0xfd, 0x64, 0xbd, 0x5c, 0xbd, 0x5c, 0x7d, 0x5c, 0x7d, 0x5c, 0xbd, 0x64, 0xdd, 0x65, 0x1d, 0x6d, 0x3d, 0x6d, 0x5d, 0x6d, 0x5d, 0x6d, 0x5d, 0x75, 0x9d, 0x7d, 0xfd, 0x7d, 0xbd, 0x75, 0x7e, 0x75, 0x5e, 0x75, 0x5d, 0x75, 0x5d, 0x6d, 0x1d, 0x6d, 0x1d, 0x65, 0x1d, 0x64, 0xfd, 0x5c, 0x9c, 0x54, 0x59, 0x54, 0x18, 0x4b, 0xb7, 0x43, 0x76, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x76, 0x3b, 0x35, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf4, 0x3b, 0x14, 0x4b, 0x96, 0x2a, 0x71, 0x11, 0xad, 0x11, 0xad, 0x11, 0xae, 0x11, 0xae, 0x11, 0xae, 0x11, 0xce, 0x11, 0xcf, 0x19, 0xef, 0x19, 0xef, 0x19, 0xf0, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x32, 0xd3, 0x43, 0x75, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x34, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x2a, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x32, 0xf3, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x35, + 0x33, 0x35, 0x33, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf4, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x22, 0x31, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x19, 0xf0, 0x1a, 0x10, 0x1a, 0x0f, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x11, 0xcf, 0x11, 0xce, 0x11, 0xce, 0x11, 0xce, 0x11, 0xce, 0x11, 0xae, 0x11, 0xce, 0x11, 0xcf, 0x19, 0xef, 0x19, 0xf0, 0x1a, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x10, 0x22, 0x31, 0x22, 0x31, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0x72, 0x32, 0x93, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x76, 0x4c, 0x19, 0x5c, 0x9b, 0x5c, 0xbd, 0x64, 0xdd, 0x6d, 0x1d, 0x6d, 0x1d, 0x6d, 0x1d, 0x6c, 0xfd, 0x64, 0xfd, 0x64, 0xdd, 0x5c, 0xbd, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0xdd, 0x65, 0x1d, 0x6d, 0x1d, 0x6d, 0x3d, 0x6d, 0x7d, 0x75, 0x7d, 0x75, 0x9d, 0x86, 0x3d, 0x8e, 0xdd, 0x86, 0x5d, 0x86, 0x3d, 0x86, 0x1e, 0x7d, 0xdd, 0x75, 0x9d, 0x75, 0x5d, 0x6d, 0x3d, 0x6d, 0x1d, 0x64, 0xfd, 0x5c, 0xbc, 0x5c, 0xbc, 0x54, 0x5a, 0x4b, 0xf8, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x76, 0x3b, 0x75, 0x3b, 0x76, 0x3b, 0x55, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x35, 0x3a, 0xd3, 0x19, 0xce, 0x11, 0x8d, 0x11, 0xad, 0x11, 0xae, 0x11, 0xae, 0x11, 0xce, 0x11, 0xce, 0x11, 0xcf, 0x11, 0xcf, 0x19, 0xef, 0x19, 0xf0, 0x1a, 0x10, 0x22, 0x10, 0x22, 0x51, 0x2a, 0x51, 0x32, 0xd3, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x43, 0x55, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x2a, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x32, 0xd3, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x33, 0x15, 0x33, 0x35, + 0x33, 0x34, 0x33, 0x35, 0x33, 0x35, 0x33, 0x34, 0x33, 0x35, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x22, 0x31, 0x22, 0x30, 0x1a, 0x31, 0x22, 0x30, 0x1a, 0x30, 0x1a, 0x30, 0x1a, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x1a, 0x10, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xce, 0x19, 0xcf, 0x11, 0xce, 0x11, 0xcf, 0x19, 0xef, 0x19, 0xf0, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x30, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x33, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0xb7, 0x54, 0x7b, 0x5c, 0x9c, 0x5c, 0xdd, 0x64, 0xdd, 0x64, 0xfd, 0x5c, 0xdd, 0x64, 0xdd, 0x5c, 0xdd, 0x5c, 0xbd, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0xbd, 0x64, 0xfd, 0x64, 0xfd, 0x6d, 0x3d, 0x75, 0x7d, 0x75, 0x9d, 0x75, 0x9d, 0x7d, 0xfd, 0x8e, 0x9c, 0x9f, 0x1d, 0x96, 0xfd, 0x96, 0xfd, 0x96, 0xdd, 0x8e, 0x7d, 0x86, 0x1e, 0x7d, 0xde, 0x7d, 0x9d, 0x75, 0x7d, 0x6d, 0x1d, 0x64, 0xfd, 0x64, 0xfd, 0x5c, 0xbd, 0x54, 0x39, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x76, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x22, 0x30, 0x11, 0xad, 0x11, 0xad, 0x11, 0xad, 0x11, 0xae, 0x11, 0xae, 0x11, 0xae, 0x11, 0xce, 0x11, 0xcf, 0x11, 0xcf, 0x19, 0xef, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x30, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x91, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x43, 0x55, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xb2, 0x2a, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, + 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x35, 0x33, 0x15, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x1a, 0x10, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xf0, 0x1a, 0x10, 0x1a, 0x10, 0x22, 0x10, 0x22, 0x31, 0x22, 0x31, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x93, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x35, 0x3b, 0x56, 0x3b, 0x76, 0x43, 0x96, 0x4b, 0xf8, 0x5c, 0x9c, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0xbd, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0xbd, 0x5c, 0xbd, 0x64, 0xdd, 0x65, 0x1d, 0x6d, 0x3d, 0x75, 0x7d, 0x75, 0x9d, 0x7d, 0xbe, 0x75, 0x9d, 0x86, 0x1c, 0xa7, 0x1d, 0xae, 0xfd, 0xae, 0xfd, 0xa6, 0xfd, 0x9f, 0x1d, 0x9e, 0xfd, 0x96, 0xfd, 0x8e, 0xdd, 0x8e, 0x9d, 0x85, 0xfe, 0x75, 0x7d, 0x75, 0x5d, 0x6d, 0x3d, 0x6d, 0x1d, 0x64, 0x9b, 0x54, 0x39, 0x53, 0xf8, 0x43, 0xb6, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf4, 0x3a, 0xf4, 0x3b, 0x14, 0x43, 0x35, 0x2a, 0x71, 0x19, 0xae, 0x11, 0x8d, 0x11, 0xad, 0x11, 0xae, 0x11, 0xae, 0x11, 0xae, 0x11, 0xce, 0x11, 0xce, 0x11, 0xcf, 0x11, 0xcf, 0x19, 0xef, 0x19, 0xf0, 0x1a, 0x10, 0x1a, 0x10, 0x22, 0x30, 0x22, 0x51, 0x22, 0x31, 0x43, 0x96, 0x4b, 0xb6, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, + 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x22, 0x71, 0x22, 0x51, 0x22, 0x31, 0x22, 0x30, 0x1a, 0x10, 0x19, 0xf0, 0x19, 0xef, 0x19, 0xef, 0x19, 0xf0, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x22, 0x10, 0x22, 0x31, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x93, 0x2a, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x15, 0x3b, 0x35, 0x43, 0x76, 0x43, 0xb7, 0x43, 0x96, 0x4c, 0x19, 0x5c, 0xbd, 0x54, 0x9d, 0x5c, 0x7d, 0x5c, 0x9e, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0x9d, 0x5c, 0xbd, 0x64, 0xdd, 0x64, 0xfd, 0x6d, 0x1d, 0x6d, 0x5d, 0x75, 0x9d, 0x7d, 0xde, 0x7d, 0xfe, 0x86, 0x1d, 0x9e, 0x9d, 0xb7, 0x1d, 0xbe, 0xfd, 0xbe, 0xfd, 0xbf, 0x1d, 0xbf, 0x1d, 0xae, 0xfd, 0xa6, 0xfd, 0xa6, 0xfd, 0x9e, 0xfd, 0x8e, 0xdd, 0x86, 0x5d, 0x7d, 0xfe, 0x7d, 0xbe, 0x75, 0x7d, 0x6d, 0x1d, 0x5c, 0x9b, 0x54, 0x18, 0x4b, 0xb6, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0x96, 0x4b, 0x96, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x3a, 0xf4, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x35, 0x2a, 0x92, 0x19, 0xce, 0x11, 0xae, 0x11, 0xae, 0x11, 0xae, 0x11, 0xae, 0x11, 0xae, 0x11, 0xae, 0x11, 0xce, 0x11, 0xce, 0x11, 0xcf, 0x11, 0xef, 0x19, 0xef, 0x19, 0xf0, 0x1a, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x31, 0x22, 0x31, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x2a, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x2a, 0xf3, 0x2a, 0xd3, 0x2a, 0xf3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xb3, 0x2a, 0xd3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x33, 0x14, + 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0xb3, 0x2a, 0x93, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x2a, 0xb3, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x22, 0x10, 0x22, 0x31, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x15, 0x33, 0x15, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0x96, 0x43, 0xd7, 0x54, 0x5a, 0x5c, 0xbe, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0xbd, 0x64, 0xbd, 0x64, 0xdd, 0x64, 0xfd, 0x65, 0x1d, 0x6d, 0x3d, 0x6d, 0x7d, 0x75, 0xbd, 0x7d, 0xfd, 0x7d, 0xfd, 0x86, 0x3d, 0xa6, 0xfd, 0xb7, 0x1d, 0xcf, 0x1d, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xd6, 0xfe, 0xc7, 0x1d, 0xb6, 0xfd, 0xae, 0xfd, 0x9f, 0x1d, 0x96, 0xfd, 0x8e, 0xbd, 0x86, 0x3d, 0x86, 0x1d, 0x7d, 0x9d, 0x64, 0xbb, 0x54, 0x18, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0x75, 0x43, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3a, 0xd3, 0x19, 0xef, 0x11, 0xae, 0x11, 0xce, 0x11, 0xce, 0x11, 0xce, 0x11, 0xae, 0x11, 0xae, 0x11, 0xae, 0x11, 0xce, 0x11, 0xcf, 0x11, 0xcf, 0x11, 0xef, 0x19, 0xef, 0x19, 0xf0, 0x1a, 0x10, 0x1a, 0x10, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x43, 0x75, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf3, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb3, 0x32, 0xd3, + 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x33, 0x13, 0x33, 0x13, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x51, 0x22, 0x31, 0x22, 0x31, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x96, 0x43, 0xb7, 0x54, 0x3a, 0x64, 0xbd, 0x5c, 0xbd, 0x5c, 0x9d, 0x5c, 0x7d, 0x5c, 0x7c, 0x5c, 0x9c, 0x64, 0xdd, 0x64, 0xdd, 0x64, 0xdd, 0x6d, 0x3d, 0x75, 0x7d, 0x7d, 0xbd, 0x7d, 0xdd, 0x8e, 0x5d, 0xa7, 0x1d, 0xb7, 0x1d, 0xcf, 0x1d, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0x1d, 0xd6, 0xfd, 0xd6, 0xfe, 0xc7, 0x1d, 0xaf, 0x1d, 0xa6, 0xfd, 0x9f, 0x1c, 0x96, 0xfd, 0x8e, 0x7d, 0x7d, 0x7c, 0x6c, 0xdb, 0x5c, 0x59, 0x54, 0x18, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x43, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x43, 0x76, 0x43, 0x76, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x14, 0x3a, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x3a, 0xf4, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3a, 0xf3, 0x22, 0x10, 0x11, 0xce, 0x11, 0xce, 0x11, 0xae, 0x11, 0xce, 0x11, 0xae, 0x11, 0xae, 0x11, 0xae, 0x11, 0xae, 0x11, 0xce, 0x11, 0xcf, 0x11, 0xcf, 0x11, 0xef, 0x11, 0xef, 0x19, 0xf0, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x22, 0x30, 0x22, 0x51, 0x43, 0x75, 0x4b, 0xd7, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xb3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xb3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, + 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0x92, 0x22, 0x51, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x33, 0x33, 0x13, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x22, 0x51, 0x22, 0x51, 0x22, 0x31, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0x93, 0x32, 0xb3, 0x32, 0xd4, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x15, 0x33, 0x35, 0x33, 0x15, 0x3b, 0x35, 0x3b, 0x35, 0x33, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x76, 0x3b, 0x55, 0x3b, 0x76, 0x54, 0x3a, 0x5c, 0xbd, 0x54, 0x7c, 0x54, 0x7c, 0x54, 0x5b, 0x54, 0x7b, 0x5c, 0xbd, 0x64, 0xbe, 0x64, 0xdd, 0x65, 0x1d, 0x75, 0x7e, 0x75, 0x9d, 0x7d, 0xbd, 0x8e, 0x7d, 0x9f, 0x1d, 0xae, 0xfd, 0xc7, 0x1d, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xd6, 0xfd, 0xd7, 0x1d, 0xd7, 0x1e, 0xd7, 0x1e, 0xc7, 0x1e, 0xb7, 0x1d, 0xa7, 0x1d, 0x9e, 0xdd, 0x85, 0xfd, 0x75, 0x1c, 0x6c, 0xfc, 0x6c, 0xdc, 0x5c, 0x59, 0x54, 0x18, 0x4b, 0xf7, 0x4b, 0xb7, 0x43, 0x96, 0x43, 0x76, 0x43, 0x55, 0x3b, 0x55, 0x43, 0x96, 0x4b, 0x96, 0x43, 0x96, 0x4b, 0xb7, 0x4b, 0xb7, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x4b, 0x96, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x55, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3a, 0xf4, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x43, 0x34, 0x22, 0x51, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xce, 0x11, 0xce, 0x11, 0xce, 0x11, 0xce, 0x11, 0xae, 0x11, 0xce, 0x11, 0xcf, 0x11, 0xcf, 0x11, 0xef, 0x11, 0xef, 0x19, 0xef, 0x19, 0xf0, 0x1a, 0x10, 0x1a, 0x30, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x3b, 0x55, 0x4b, 0xd7, 0x43, 0xb7, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, + 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb2, 0x2a, 0x71, 0x22, 0x10, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x15, 0x33, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x93, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xd4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x15, 0x33, 0x15, 0x33, 0x15, 0x3b, 0x35, 0x3b, 0x35, 0x32, 0xf4, 0x33, 0x15, 0x3b, 0x35, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x76, 0x43, 0xb7, 0x54, 0x7b, 0x64, 0xbe, 0x5c, 0x7d, 0x54, 0x7c, 0x5c, 0x7c, 0x5c, 0xbd, 0x64, 0xfd, 0x64, 0xfd, 0x6d, 0x1d, 0x6d, 0x5d, 0x75, 0x7d, 0x75, 0x9d, 0x86, 0x3d, 0x8e, 0xfd, 0xa7, 0x1d, 0xb7, 0x1d, 0xc7, 0x1d, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0x1d, 0xbf, 0x1d, 0xaf, 0x1d, 0x9e, 0x7d, 0x85, 0xbe, 0x7d, 0x5d, 0x7d, 0x5d, 0x75, 0x1d, 0x64, 0x9b, 0x5c, 0x38, 0x53, 0xf8, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x96, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd6, 0x43, 0x95, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x43, 0x55, 0x22, 0x30, 0x19, 0xcf, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xcf, 0x11, 0xcf, 0x11, 0xcf, 0x11, 0xce, 0x11, 0xcf, 0x11, 0xcf, 0x11, 0xcf, 0x11, 0xcf, 0x11, 0xef, 0x11, 0xef, 0x19, 0xef, 0x19, 0xf0, 0x1a, 0x10, 0x1a, 0x10, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x32, 0xf3, 0x4b, 0xb7, 0x4b, 0xb7, 0x43, 0xb7, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x3b, 0x34, 0x33, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, 0x14, 0x33, 0x34, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, + 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x71, 0x22, 0x30, 0x22, 0x51, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x3a, 0xf4, 0x32, 0xf3, 0x33, 0x55, 0x33, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x34, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x93, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x15, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, 0x3b, 0x55, 0x3b, 0x35, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x5c, 0x7b, 0x64, 0xde, 0x5c, 0xbe, 0x5c, 0x9d, 0x5c, 0xbe, 0x64, 0xfd, 0x6d, 0x1d, 0x6d, 0x3d, 0x6d, 0x3d, 0x6d, 0x3d, 0x75, 0x7e, 0x7d, 0xde, 0x86, 0x7e, 0x8f, 0x1d, 0x9f, 0x1d, 0xaf, 0x1d, 0xc7, 0x1d, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xcf, 0x1e, 0xbf, 0x1d, 0xa6, 0xdd, 0x96, 0x3d, 0x85, 0xde, 0x7d, 0x7e, 0x7d, 0x7d, 0x75, 0x3d, 0x64, 0xdc, 0x5c, 0x7a, 0x54, 0x39, 0x53, 0xf8, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x76, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x96, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x55, 0x22, 0x51, 0x19, 0xf0, 0x22, 0x10, 0x22, 0x10, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xcf, 0x11, 0xcf, 0x11, 0xcf, 0x11, 0xcf, 0x11, 0xef, 0x11, 0xef, 0x19, 0xef, 0x19, 0xef, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x31, 0x2a, 0x92, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x14, 0x33, 0x34, 0x33, 0x34, 0x33, 0x35, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x2a, 0xf3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xf3, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, + 0x32, 0xb3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x51, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x56, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x74, 0x4b, 0x74, 0x43, 0x74, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x35, 0x33, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x35, 0x33, 0x14, 0x33, 0x15, 0x33, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x56, 0x3b, 0x76, 0x43, 0x76, 0x43, 0x97, 0x43, 0xb7, 0x43, 0xb7, 0x4b, 0xf8, 0x5c, 0x9b, 0x64, 0xfe, 0x64, 0xdd, 0x64, 0xdd, 0x64, 0xdd, 0x6d, 0x3d, 0x6d, 0x5e, 0x6d, 0x3d, 0x6d, 0x1d, 0x6d, 0x3d, 0x75, 0x9d, 0x7d, 0xfd, 0x86, 0x5d, 0x86, 0xbd, 0x96, 0xfd, 0xaf, 0x1d, 0xbf, 0x1d, 0xc7, 0x1d, 0xcf, 0x1d, 0xc7, 0x1d, 0xbf, 0x1d, 0xb7, 0x1d, 0xa6, 0xdd, 0x96, 0x5d, 0x8e, 0x1e, 0x85, 0xde, 0x7d, 0x7e, 0x75, 0x5d, 0x75, 0x3d, 0x6c, 0xfd, 0x64, 0x9b, 0x5c, 0x59, 0x54, 0x38, 0x4b, 0xf8, 0x4b, 0xb7, 0x43, 0x76, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x43, 0xb6, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x35, 0x43, 0x55, 0x3b, 0x14, 0x2a, 0x71, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x1a, 0x10, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x11, 0xef, 0x11, 0xcf, 0x11, 0xcf, 0x11, 0xcf, 0x11, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xf0, 0x1a, 0x10, 0x1a, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x43, 0x75, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x76, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x33, 0x34, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x33, 0x35, 0x33, 0x15, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x2a, 0xd4, 0x2a, 0xd3, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, + 0x32, 0xb3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x51, 0x22, 0x31, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x96, 0x43, 0xb7, 0x3b, 0xb6, 0x43, 0xb7, 0x43, 0xd7, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x53, 0xf6, 0x53, 0xf6, 0x53, 0xd6, 0x53, 0xd6, 0x4b, 0xb5, 0x4b, 0x95, 0x4b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x34, 0x33, 0x14, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x15, 0x33, 0x35, 0x33, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x33, 0x15, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x76, 0x43, 0x96, 0x43, 0x97, 0x43, 0x97, 0x43, 0xb7, 0x4b, 0xd7, 0x4b, 0xd8, 0x4b, 0xf8, 0x54, 0x5a, 0x64, 0xde, 0x64, 0xde, 0x64, 0xde, 0x64, 0xfd, 0x6d, 0x3e, 0x6d, 0x1d, 0x6d, 0x1d, 0x6d, 0x3d, 0x75, 0x5d, 0x75, 0x9d, 0x7d, 0xde, 0x7d, 0xfe, 0x86, 0x5d, 0x96, 0xfd, 0x9f, 0x1d, 0xa7, 0x1d, 0xaf, 0x1d, 0xa7, 0x1d, 0xa7, 0x1c, 0x9e, 0x9d, 0x8d, 0xfd, 0x85, 0xde, 0x85, 0xbd, 0x7d, 0x7e, 0x75, 0x5d, 0x75, 0x3d, 0x75, 0x3d, 0x6c, 0xfd, 0x64, 0x9b, 0x5c, 0x7a, 0x54, 0x39, 0x53, 0xf8, 0x4b, 0xb7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x76, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x76, 0x43, 0x96, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0xb7, 0x43, 0x96, 0x43, 0x76, 0x43, 0x76, 0x43, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x76, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x3b, 0x14, 0x2a, 0x71, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x1a, 0x10, 0x19, 0xf0, 0x19, 0xef, 0x19, 0xef, 0x11, 0xef, 0x11, 0xef, 0x11, 0xef, 0x11, 0xef, 0x11, 0xef, 0x19, 0xef, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x31, 0x22, 0x51, 0x3b, 0x34, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x76, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x35, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, + 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x51, 0x22, 0x31, 0x22, 0x30, 0x22, 0x30, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x76, 0x43, 0xf8, 0x43, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x18, 0x54, 0x37, 0x54, 0x17, 0x54, 0x37, 0x54, 0x17, 0x53, 0xf6, 0x53, 0xf6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x55, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x15, 0x3b, 0x35, 0x33, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x33, 0x35, 0x3b, 0x55, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x76, 0x43, 0x96, 0x43, 0xb7, 0x43, 0x96, 0x43, 0x97, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xd8, 0x4b, 0xf8, 0x4b, 0xf8, 0x54, 0x19, 0x5c, 0x7b, 0x64, 0xdd, 0x64, 0xfe, 0x6c, 0xfe, 0x6d, 0x1d, 0x6c, 0xfd, 0x6c, 0xfe, 0x6d, 0x3e, 0x6d, 0x5d, 0x75, 0x7d, 0x75, 0x7d, 0x75, 0x9d, 0x7d, 0xdd, 0x7d, 0xfd, 0x86, 0x3d, 0x8e, 0x9d, 0x96, 0xde, 0x96, 0xfd, 0x8e, 0x7d, 0x7d, 0x9d, 0x75, 0x3e, 0x75, 0x5e, 0x75, 0x5e, 0x75, 0x3e, 0x6c, 0xfd, 0x64, 0xdb, 0x6c, 0xdc, 0x6c, 0xfd, 0x64, 0x9c, 0x5c, 0x7a, 0x54, 0x39, 0x54, 0x18, 0x4b, 0xf7, 0x4b, 0xb7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xb7, 0x4b, 0xb7, 0x43, 0x96, 0x43, 0x76, 0x43, 0x76, 0x4b, 0xb7, 0x4b, 0xb7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x76, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x76, 0x43, 0x76, 0x43, 0x76, 0x43, 0x76, 0x43, 0x76, 0x43, 0x76, 0x43, 0x76, 0x3b, 0x14, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x19, 0xf0, 0x19, 0xef, 0x11, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x31, 0x3b, 0x14, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0xb7, 0x43, 0x96, 0x3b, 0x76, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x15, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x33, 0x14, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x33, 0x35, 0x33, 0x34, 0x33, 0x35, 0x33, 0x35, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, + 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x31, 0x22, 0x31, 0x22, 0x30, 0x2a, 0x51, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x43, 0xd8, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x58, 0x54, 0x38, 0x54, 0x17, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0x76, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x35, 0x33, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0x96, 0x43, 0xb7, 0x43, 0xb7, 0x4b, 0xd8, 0x4b, 0xd8, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd8, 0x4b, 0xd8, 0x4b, 0xd8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4c, 0x18, 0x54, 0x19, 0x54, 0x3a, 0x54, 0x5b, 0x5c, 0x9c, 0x64, 0xdd, 0x6d, 0x1e, 0x6c, 0xfe, 0x6c, 0xfd, 0x6d, 0x1d, 0x6d, 0x1d, 0x6d, 0x5e, 0x75, 0x7e, 0x75, 0x9d, 0x7d, 0x9d, 0x75, 0x9d, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x9e, 0x7d, 0x9d, 0x7d, 0xbd, 0x75, 0x3c, 0x64, 0xbc, 0x6c, 0xdc, 0x6c, 0xdd, 0x6c, 0xdd, 0x64, 0xdc, 0x64, 0xbb, 0x5c, 0x9a, 0x64, 0xbb, 0x64, 0xdd, 0x64, 0x9c, 0x5c, 0x5a, 0x54, 0x18, 0x53, 0xf8, 0x4b, 0xf8, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0xb7, 0x43, 0x96, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x75, 0x43, 0x76, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x31, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x1a, 0x10, 0x1a, 0x10, 0x19, 0xf0, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x30, 0x1a, 0x30, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x32, 0xd3, 0x4b, 0xb6, 0x4b, 0xf7, 0x4b, 0xf8, 0x53, 0xf7, 0x53, 0xf7, 0x4b, 0xf7, 0x43, 0xd7, 0x43, 0x96, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x15, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, + 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x31, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x71, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x43, 0x55, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbd, 0x64, 0xfd, 0x64, 0xfd, 0x64, 0xfd, 0x64, 0xfd, 0x64, 0xfd, 0x64, 0xfd, 0x64, 0xdc, 0x5c, 0xdc, 0x5c, 0xbb, 0x5c, 0x7a, 0x54, 0x59, 0x54, 0x38, 0x4c, 0x18, 0x43, 0xf7, 0x43, 0xb7, 0x43, 0x76, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x33, 0x35, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0x96, 0x43, 0xb7, 0x4b, 0xd8, 0x4b, 0xf8, 0x4c, 0x19, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x19, 0x4c, 0x19, 0x4b, 0xf8, 0x4c, 0x19, 0x4c, 0x19, 0x4c, 0x19, 0x54, 0x19, 0x54, 0x3a, 0x54, 0x5b, 0x5c, 0x7c, 0x5c, 0x9c, 0x5c, 0xbd, 0x64, 0xdd, 0x6c, 0xfd, 0x6d, 0x1e, 0x6d, 0x3d, 0x6d, 0x3d, 0x6d, 0x5e, 0x6d, 0x5e, 0x75, 0x7e, 0x75, 0x7d, 0x75, 0x7d, 0x75, 0x7d, 0x6d, 0x5d, 0x6d, 0x5d, 0x6d, 0x5d, 0x64, 0xfb, 0x5c, 0x59, 0x5c, 0x59, 0x5c, 0x79, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x59, 0x5c, 0x59, 0x54, 0x38, 0x54, 0x39, 0x5c, 0x7b, 0x5c, 0x7a, 0x54, 0x38, 0x54, 0x18, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0xb7, 0x4b, 0xd7, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xd7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0x96, 0x43, 0x76, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x76, 0x43, 0x96, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x55, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x22, 0x71, 0x22, 0x51, 0x22, 0x51, 0x22, 0x31, 0x22, 0x31, 0x22, 0x30, 0x22, 0x30, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x71, 0x22, 0x31, 0x43, 0x75, 0x4b, 0xf7, 0x54, 0x18, 0x54, 0x18, 0x54, 0x17, 0x53, 0xf7, 0x4b, 0xd7, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x76, 0x3b, 0x75, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x96, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x56, 0x3b, 0x55, 0x3b, 0x55, 0x33, 0x35, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, 0x34, 0x33, 0x35, 0x33, 0x15, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, + 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x51, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x43, 0xb7, 0x65, 0x1e, 0x65, 0x1d, 0x65, 0x3d, 0x6d, 0x5d, 0x75, 0x7d, 0x75, 0x9e, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0x9d, 0x75, 0x7e, 0x6d, 0x5e, 0x6d, 0x3d, 0x6d, 0x1d, 0x64, 0xfd, 0x64, 0xbc, 0x5c, 0x9a, 0x54, 0x59, 0x54, 0x18, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x3b, 0x55, 0x33, 0x14, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x33, 0x35, 0x33, 0x35, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0x97, 0x43, 0xd8, 0x4b, 0xf8, 0x54, 0x19, 0x54, 0x39, 0x54, 0x39, 0x54, 0x19, 0x54, 0x5a, 0x54, 0x3a, 0x4c, 0x19, 0x54, 0x39, 0x54, 0x3a, 0x54, 0x3a, 0x54, 0x3a, 0x54, 0x5b, 0x5c, 0x7c, 0x5c, 0x9c, 0x5c, 0x9d, 0x5c, 0x9d, 0x54, 0x39, 0x54, 0x18, 0x6c, 0xfc, 0x6d, 0x3e, 0x6d, 0x3e, 0x75, 0x5e, 0x75, 0x5e, 0x75, 0x5e, 0x75, 0x5e, 0x75, 0x7e, 0x75, 0x5e, 0x6d, 0x5e, 0x6d, 0x5e, 0x64, 0xfc, 0x54, 0x38, 0x54, 0x18, 0x54, 0x38, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x53, 0xf8, 0x54, 0x17, 0x53, 0xf7, 0x4b, 0xf7, 0x54, 0x19, 0x54, 0x5a, 0x54, 0x18, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xd7, 0x4b, 0xf8, 0x54, 0x19, 0x54, 0x19, 0x4b, 0xf8, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0xb7, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x4b, 0x96, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x15, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x22, 0x51, 0x22, 0x51, 0x22, 0x31, 0x22, 0x30, 0x22, 0x31, 0x1a, 0x30, 0x1a, 0x10, 0x1a, 0x30, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x30, 0x1a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x2a, 0x51, 0x22, 0x31, 0x43, 0x55, 0x4b, 0xd7, 0x54, 0x18, 0x4c, 0x18, 0x54, 0x18, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xd7, 0x53, 0xf7, 0x53, 0xf7, 0x53, 0xf7, 0x53, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x3b, 0x56, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x96, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x96, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x76, 0x33, 0x55, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x35, 0x33, 0x35, 0x33, 0x34, 0x33, 0x15, 0x33, 0x14, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x33, 0x14, 0x32, 0xf4, + 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0xb2, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x51, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf4, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x14, 0x64, 0xfb, 0x6d, 0x7e, 0x6d, 0x9d, 0x75, 0xdd, 0x7e, 0x5e, 0x86, 0x7e, 0x86, 0x7d, 0x86, 0xbd, 0x8f, 0x1d, 0x8f, 0x1d, 0x8e, 0xde, 0x86, 0x9d, 0x86, 0x3e, 0x7d, 0xfe, 0x7d, 0x9e, 0x75, 0x7e, 0x6d, 0x3e, 0x64, 0xfd, 0x5c, 0x9a, 0x54, 0x59, 0x54, 0x18, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0x96, 0x3b, 0x55, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xd4, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x55, 0x3b, 0x76, 0x3b, 0x96, 0x43, 0xd7, 0x4b, 0xd8, 0x4c, 0x19, 0x54, 0x5a, 0x54, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x3a, 0x54, 0x3a, 0x54, 0x3a, 0x54, 0x5b, 0x54, 0x5b, 0x54, 0x7c, 0x5c, 0x7c, 0x5c, 0x9c, 0x5c, 0x9d, 0x64, 0xde, 0x5c, 0x5a, 0x43, 0x96, 0x4b, 0xf7, 0x4b, 0xf7, 0x64, 0x9a, 0x75, 0x5e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x5e, 0x6d, 0x3e, 0x6d, 0x1e, 0x64, 0xfd, 0x5c, 0x7a, 0x54, 0x39, 0x54, 0x39, 0x54, 0x18, 0x53, 0xf8, 0x53, 0xf7, 0x53, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xf7, 0x54, 0x39, 0x54, 0x39, 0x54, 0x18, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xd8, 0x4b, 0xf8, 0x54, 0x18, 0x54, 0x18, 0x54, 0x3a, 0x54, 0x3a, 0x54, 0x19, 0x54, 0x18, 0x4b, 0xf8, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x4b, 0x96, 0x4b, 0xb6, 0x43, 0xb6, 0x4b, 0x96, 0x4b, 0xb6, 0x43, 0x96, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x54, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x72, 0x22, 0x71, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x31, 0x1a, 0x30, 0x1a, 0x30, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x1a, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x71, 0x22, 0x71, 0x2a, 0xb2, 0x4b, 0xb7, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x53, 0xf7, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xd7, 0x53, 0xf7, 0x54, 0x18, 0x54, 0x38, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x53, 0xf8, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x76, 0x3b, 0x96, 0x3b, 0x96, 0x43, 0x96, 0x3b, 0x76, 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x35, 0x33, 0x34, 0x33, 0x15, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x3b, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, + 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x72, 0x32, 0x92, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf4, 0x3b, 0x34, 0x3b, 0x14, 0x3a, 0xf3, 0x4b, 0xd5, 0x86, 0x5e, 0x7e, 0x3e, 0x86, 0xbd, 0x8e, 0xdd, 0x8e, 0xfd, 0x97, 0x1d, 0x97, 0x1c, 0x9f, 0x1c, 0x9f, 0x1c, 0x9f, 0x1c, 0x9f, 0x1c, 0x9f, 0x1c, 0x97, 0x1d, 0x8e, 0xfd, 0x86, 0x7d, 0x7d, 0xfe, 0x75, 0x9e, 0x6c, 0xfd, 0x64, 0xbb, 0x5c, 0x59, 0x54, 0x17, 0x4b, 0xb6, 0x43, 0x95, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x35, 0x3b, 0x76, 0x3b, 0x96, 0x43, 0xb7, 0x4b, 0xd8, 0x4b, 0xf8, 0x4c, 0x19, 0x4c, 0x39, 0x54, 0x3a, 0x54, 0x3a, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x5b, 0x54, 0x5b, 0x54, 0x7c, 0x5c, 0x7c, 0x5c, 0x7c, 0x5c, 0x9c, 0x5c, 0x9d, 0x64, 0xbe, 0x5c, 0x7b, 0x4b, 0xb6, 0x4b, 0xb7, 0x4b, 0xd7, 0x53, 0xf8, 0x54, 0x38, 0x5c, 0x79, 0x64, 0x9a, 0x6d, 0x1c, 0x6d, 0x5e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x1d, 0x64, 0xbb, 0x54, 0x39, 0x54, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x38, 0x53, 0xf8, 0x4b, 0xf8, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xb6, 0x4c, 0x18, 0x54, 0x5a, 0x54, 0x39, 0x4c, 0x18, 0x4c, 0x18, 0x54, 0x18, 0x54, 0x18, 0x4c, 0x18, 0x54, 0x18, 0x54, 0x39, 0x54, 0x7b, 0x5c, 0x7b, 0x54, 0x5a, 0x54, 0x39, 0x54, 0x19, 0x54, 0x18, 0x54, 0x18, 0x53, 0xf8, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0x96, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x95, 0x4b, 0x95, 0x43, 0x75, 0x43, 0x74, 0x3b, 0x54, 0x33, 0x14, 0x32, 0xd3, 0x2a, 0xb3, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x22, 0x71, 0x22, 0x51, 0x1a, 0x31, 0x1a, 0x31, 0x1a, 0x31, 0x1a, 0x30, 0x1a, 0x30, 0x1a, 0x10, 0x1a, 0x10, 0x22, 0x30, 0x22, 0x31, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x22, 0x51, 0x4b, 0x96, 0x53, 0xf7, 0x5c, 0x59, 0x53, 0xf8, 0x4b, 0xf7, 0x54, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x18, 0x53, 0xf7, 0x4b, 0xd7, 0x53, 0xf7, 0x53, 0xf8, 0x54, 0x18, 0x5c, 0x38, 0x5c, 0x59, 0x5c, 0x5a, 0x5c, 0x5a, 0x5c, 0x59, 0x5c, 0x39, 0x54, 0x38, 0x4b, 0xf8, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x43, 0x96, 0x43, 0x97, 0x43, 0x96, 0x3b, 0x76, 0x3b, 0x56, 0x33, 0x35, 0x33, 0x35, 0x33, 0x15, 0x33, 0x15, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, + 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xd3, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x22, 0x30, 0x2a, 0x51, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x32, 0xb3, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x34, 0x3a, 0xf3, 0x3b, 0x13, 0x75, 0x9a, 0x86, 0xfe, 0x97, 0x1d, 0x9f, 0x1d, 0xa7, 0x1d, 0xaf, 0x1d, 0xb7, 0x1d, 0xbf, 0x1d, 0xc7, 0x1e, 0xcf, 0x1d, 0xcf, 0x1e, 0xc7, 0x1d, 0xbf, 0x1d, 0xaf, 0x1d, 0xa7, 0x1d, 0x96, 0xfd, 0x8e, 0xbe, 0x85, 0xfe, 0x75, 0x3d, 0x6c, 0xfc, 0x64, 0x9b, 0x5c, 0x59, 0x54, 0x17, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, 0x33, 0x35, 0x3b, 0x56, 0x43, 0x97, 0x43, 0xb7, 0x4b, 0xf8, 0x4c, 0x19, 0x4c, 0x1a, 0x4c, 0x19, 0x4c, 0x3a, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x5b, 0x54, 0x5c, 0x5c, 0x7d, 0x5c, 0x9d, 0x54, 0x7c, 0x5c, 0x7c, 0x5c, 0x9d, 0x64, 0xbd, 0x5c, 0x9b, 0x4b, 0xf7, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xd7, 0x54, 0x18, 0x54, 0x38, 0x4b, 0xd6, 0x43, 0x95, 0x4b, 0xf6, 0x5c, 0x59, 0x6d, 0x1c, 0x75, 0x5e, 0x6d, 0x3e, 0x64, 0xfd, 0x5c, 0xbb, 0x5c, 0x7a, 0x5c, 0x7a, 0x54, 0x59, 0x54, 0x59, 0x5c, 0x7a, 0x5c, 0x59, 0x54, 0x38, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x4b, 0xf8, 0x4b, 0xd7, 0x4b, 0xf8, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x39, 0x54, 0x19, 0x54, 0x18, 0x54, 0x39, 0x54, 0x18, 0x54, 0x39, 0x54, 0x39, 0x5c, 0x5b, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x7c, 0x5c, 0x7b, 0x5c, 0x7b, 0x5c, 0x7b, 0x5c, 0x5a, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x4b, 0xf7, 0x4b, 0xb6, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x75, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x76, 0x3b, 0x76, 0x43, 0x96, 0x43, 0xb5, 0x4b, 0xb5, 0x4b, 0x95, 0x4b, 0x95, 0x43, 0x95, 0x3b, 0x55, 0x3b, 0x14, 0x32, 0xf3, 0x2a, 0xb3, 0x2a, 0xb2, 0x2a, 0x92, 0x22, 0x71, 0x22, 0x71, 0x22, 0x51, 0x22, 0x31, 0x22, 0x31, 0x22, 0x31, 0x22, 0x31, 0x22, 0x31, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x92, 0x32, 0xb2, 0x3b, 0x14, 0x53, 0xf7, 0x53, 0xf8, 0x54, 0x18, 0x53, 0xf8, 0x4b, 0xf8, 0x54, 0x18, 0x5c, 0x58, 0x5c, 0x38, 0x53, 0xf7, 0x53, 0xd7, 0x54, 0x18, 0x54, 0x18, 0x5c, 0x59, 0x5c, 0x7a, 0x64, 0x9b, 0x64, 0xbb, 0x64, 0xbc, 0x64, 0xbc, 0x64, 0x9b, 0x5c, 0x7a, 0x5c, 0x59, 0x54, 0x18, 0x54, 0x18, 0x4b, 0xf8, 0x4b, 0xd7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0x97, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x76, 0x3b, 0x96, 0x43, 0x97, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb7, 0x43, 0x97, 0x43, 0xb7, 0x43, 0x96, 0x3b, 0x96, 0x3b, 0x56, 0x33, 0x35, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf3, + 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xf3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x71, 0x32, 0x92, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x14, 0x3a, 0xf3, 0x43, 0x94, 0x8f, 0x3e, 0x97, 0x1c, 0x9f, 0x1c, 0xaf, 0x1d, 0xbf, 0x1d, 0xd7, 0x1e, 0xdf, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xdf, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xdf, 0x1e, 0xd7, 0x1e, 0xbf, 0x1d, 0xaf, 0x1d, 0x9e, 0xfd, 0x8e, 0x5e, 0x7d, 0x9e, 0x75, 0x5e, 0x6c, 0xfd, 0x64, 0x9a, 0x5c, 0x59, 0x54, 0x17, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x76, 0x3b, 0x75, 0x3b, 0x76, 0x3b, 0x55, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x96, 0x43, 0xb7, 0x4b, 0xf8, 0x4c, 0x3a, 0x54, 0x3a, 0x54, 0x5b, 0x54, 0x5b, 0x54, 0x5c, 0x54, 0x5c, 0x54, 0x7d, 0x5c, 0x7d, 0x54, 0x5c, 0x5c, 0x7b, 0x5c, 0x7c, 0x5c, 0x9d, 0x5c, 0xbd, 0x5c, 0x9c, 0x54, 0x18, 0x43, 0x96, 0x43, 0xb7, 0x4b, 0xb7, 0x4b, 0xf7, 0x54, 0x38, 0x4b, 0xd7, 0x3b, 0x34, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd6, 0x54, 0x37, 0x6d, 0x1b, 0x6d, 0x1d, 0x5c, 0x7b, 0x64, 0xbb, 0x64, 0xbb, 0x64, 0xbb, 0x5c, 0x9b, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x7a, 0x54, 0x59, 0x54, 0x39, 0x54, 0x58, 0x54, 0x18, 0x4b, 0xf7, 0x54, 0x5a, 0x5c, 0x9c, 0x54, 0x5b, 0x54, 0x3a, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x5c, 0x9c, 0x64, 0xbe, 0x5c, 0xbd, 0x64, 0xde, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0xdd, 0x64, 0xdd, 0x64, 0x9c, 0x5c, 0x59, 0x54, 0x18, 0x53, 0xf7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb7, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0x95, 0x43, 0x75, 0x3b, 0x55, 0x33, 0x34, 0x32, 0xf3, 0x2a, 0xb3, 0x2a, 0x92, 0x22, 0x72, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x4b, 0xd7, 0x53, 0xf7, 0x53, 0xf8, 0x54, 0x18, 0x4b, 0xf8, 0x54, 0x18, 0x5c, 0x58, 0x5c, 0x58, 0x53, 0xf7, 0x53, 0xf8, 0x54, 0x18, 0x5c, 0x59, 0x64, 0x9a, 0x64, 0xdc, 0x6c, 0xdd, 0x6c, 0xfd, 0x6d, 0x1e, 0x6c, 0xfe, 0x6c, 0xfd, 0x64, 0xbc, 0x64, 0x9b, 0x5c, 0x7a, 0x5c, 0x5a, 0x54, 0x59, 0x54, 0x18, 0x4b, 0xf8, 0x4b, 0xd7, 0x43, 0xd7, 0x43, 0xb7, 0x43, 0xb7, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xd7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0x97, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x55, 0x33, 0x14, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, + 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x33, 0x13, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x72, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x33, 0x75, 0xfb, 0x8f, 0x1d, 0x9f, 0x1c, 0xaf, 0x1d, 0xc7, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xcf, 0x1e, 0xb7, 0x1d, 0xa7, 0x1d, 0x96, 0xde, 0x85, 0xfe, 0x75, 0x7e, 0x6d, 0x1d, 0x64, 0xbb, 0x5c, 0x79, 0x54, 0x38, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x97, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xd8, 0x4c, 0x19, 0x4c, 0x3a, 0x54, 0x3a, 0x54, 0x5b, 0x54, 0x7c, 0x5c, 0x7c, 0x54, 0x7b, 0x54, 0x5b, 0x5c, 0x7c, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0x9d, 0x54, 0x18, 0x43, 0x95, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x54, 0x18, 0x43, 0x96, 0x32, 0xf3, 0x3b, 0x54, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0xb6, 0x4b, 0xb6, 0x3b, 0x34, 0x3a, 0xf3, 0x4b, 0xb6, 0x54, 0x19, 0x5c, 0x7b, 0x6c, 0xdc, 0x6c, 0xfc, 0x64, 0xdc, 0x64, 0xbb, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x7a, 0x5c, 0x7a, 0x54, 0x39, 0x4b, 0xf8, 0x54, 0x39, 0x64, 0xbc, 0x5c, 0xbd, 0x5c, 0x9c, 0x5c, 0x7b, 0x54, 0x5b, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x5a, 0x5c, 0x9c, 0x64, 0xdd, 0x64, 0xde, 0x64, 0xfe, 0x64, 0xfd, 0x64, 0xfd, 0x64, 0xbd, 0x64, 0x9c, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x5a, 0x5c, 0x59, 0x54, 0x38, 0x54, 0x18, 0x53, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0xd7, 0x43, 0xd7, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x55, 0x33, 0x34, 0x32, 0xd3, 0x2a, 0xb2, 0x2a, 0x92, 0x22, 0x71, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x71, 0x2a, 0x72, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x3b, 0x14, 0x53, 0xf7, 0x4b, 0xd7, 0x54, 0x18, 0x53, 0xf8, 0x54, 0x18, 0x5c, 0x38, 0x5c, 0x38, 0x53, 0xf7, 0x54, 0x18, 0x5c, 0x38, 0x5c, 0x79, 0x64, 0xbb, 0x6c, 0xfd, 0x75, 0x3e, 0x75, 0x5e, 0x7d, 0x5e, 0x7d, 0x5e, 0x75, 0x5e, 0x75, 0x3e, 0x6c, 0xfd, 0x64, 0xdc, 0x64, 0xbc, 0x5c, 0x7b, 0x54, 0x5a, 0x54, 0x39, 0x4c, 0x18, 0x4b, 0xf8, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0x97, 0x3b, 0x96, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xd7, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0xd7, 0x43, 0xb7, 0x43, 0x97, 0x43, 0x97, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x35, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x54, 0x33, 0x14, 0x32, 0xf4, + 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x34, 0x3b, 0x34, 0x33, 0x13, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x72, 0x32, 0x92, 0x32, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x4b, 0xb4, 0x86, 0x9c, 0x97, 0x1c, 0xa7, 0x1d, 0xbf, 0x1d, 0xd7, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xdf, 0x1e, 0xd7, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xd7, 0x1e, 0xdf, 0x1e, 0xd7, 0x1e, 0xbf, 0x1d, 0xa7, 0x1d, 0x96, 0xfd, 0x86, 0x3e, 0x7d, 0x9e, 0x6d, 0x3d, 0x64, 0xdc, 0x5c, 0x9a, 0x54, 0x59, 0x54, 0x18, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xd7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xd8, 0x43, 0xf8, 0x4c, 0x18, 0x4c, 0x3a, 0x54, 0x3a, 0x54, 0x5b, 0x54, 0x5b, 0x54, 0x7c, 0x54, 0x7c, 0x54, 0x7c, 0x5c, 0x7c, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0xbd, 0x5c, 0xbd, 0x4b, 0xf8, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xf7, 0x43, 0x96, 0x32, 0xf3, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x3a, 0xf3, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x32, 0xb2, 0x43, 0x55, 0x4b, 0xb7, 0x53, 0xf7, 0x5c, 0x59, 0x64, 0xdb, 0x6c, 0xfd, 0x64, 0xfe, 0x64, 0xdd, 0x64, 0xbc, 0x5c, 0x9b, 0x5c, 0x7a, 0x5c, 0x59, 0x64, 0xdb, 0x6d, 0x3e, 0x6d, 0x1e, 0x6c, 0xfe, 0x64, 0xfd, 0x64, 0xfd, 0x6c, 0xfe, 0x64, 0xbc, 0x5c, 0x5a, 0x5c, 0x9b, 0x64, 0xdd, 0x64, 0xdd, 0x64, 0xdd, 0x64, 0xdd, 0x64, 0xbd, 0x64, 0xdd, 0x64, 0xdc, 0x64, 0xbc, 0x64, 0xbb, 0x64, 0xbb, 0x5c, 0x9a, 0x5c, 0x7a, 0x5c, 0x59, 0x54, 0x38, 0x54, 0x17, 0x54, 0x18, 0x54, 0x18, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0x95, 0x4b, 0x95, 0x3b, 0x54, 0x32, 0xf3, 0x2a, 0xd3, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x22, 0x72, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x72, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x32, 0xb2, 0x4b, 0xd7, 0x53, 0xf8, 0x4b, 0xd7, 0x53, 0xf8, 0x4b, 0xf8, 0x54, 0x18, 0x53, 0xf7, 0x53, 0xf7, 0x54, 0x18, 0x5c, 0x59, 0x64, 0x9a, 0x6c, 0xdc, 0x75, 0x1d, 0x7d, 0x7e, 0x7d, 0x9e, 0x85, 0xbe, 0x85, 0xde, 0x85, 0xbe, 0x7d, 0x9e, 0x75, 0x5e, 0x75, 0x5e, 0x6d, 0x1d, 0x64, 0xdd, 0x5c, 0xbc, 0x5c, 0x7a, 0x54, 0x59, 0x4c, 0x19, 0x4b, 0xf8, 0x4b, 0xf8, 0x43, 0xd7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xd7, 0x4b, 0xd8, 0x4b, 0xf8, 0x54, 0x18, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x32, 0xf4, + 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x13, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x65, 0x18, 0x8e, 0xfe, 0x97, 0x1d, 0xa7, 0x1d, 0xbf, 0x1d, 0xd7, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xd7, 0x1e, 0xc7, 0x1e, 0xa7, 0x1d, 0x96, 0xfd, 0x86, 0x3e, 0x7d, 0x7d, 0x6d, 0x1e, 0x64, 0xdd, 0x5c, 0x9a, 0x54, 0x59, 0x54, 0x39, 0x54, 0x18, 0x4c, 0x18, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x43, 0xd8, 0x4b, 0xf8, 0x4c, 0x19, 0x4c, 0x39, 0x54, 0x5b, 0x54, 0x7c, 0x54, 0x7d, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0xbe, 0x5c, 0xbe, 0x5c, 0xbe, 0x5c, 0xbd, 0x54, 0x19, 0x43, 0x96, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xf7, 0x4b, 0xf7, 0x43, 0x55, 0x32, 0xb3, 0x32, 0xf3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x34, 0x2a, 0x91, 0x32, 0x71, 0x32, 0x71, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x3b, 0x55, 0x4b, 0xb6, 0x54, 0x17, 0x54, 0x18, 0x54, 0x17, 0x54, 0x38, 0x5c, 0x57, 0x6c, 0xfb, 0x6d, 0x3c, 0x64, 0xba, 0x5c, 0x79, 0x54, 0x38, 0x4b, 0xd7, 0x43, 0xb7, 0x4b, 0xb7, 0x54, 0x39, 0x5c, 0x9c, 0x64, 0xbd, 0x64, 0xde, 0x6c, 0xfe, 0x6c, 0xfe, 0x64, 0xfd, 0x6c, 0xfd, 0x6c, 0xfc, 0x6d, 0x1c, 0x6d, 0x1b, 0x6c, 0xfb, 0x64, 0xdb, 0x64, 0xdb, 0x64, 0xba, 0x5c, 0x7a, 0x5c, 0x38, 0x5c, 0x59, 0x5c, 0x59, 0x54, 0x18, 0x4c, 0x18, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xb6, 0x3b, 0x54, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0xb3, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x22, 0x71, 0x22, 0x72, 0x22, 0x72, 0x2a, 0x72, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x91, 0x32, 0x92, 0x2a, 0x51, 0x3b, 0x34, 0x53, 0xf8, 0x4b, 0xf7, 0x53, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xd7, 0x53, 0xf7, 0x54, 0x18, 0x5c, 0x58, 0x64, 0x7a, 0x6c, 0xfd, 0x75, 0x3e, 0x7d, 0x9e, 0x85, 0xde, 0x8e, 0x3e, 0x8e, 0x7e, 0x8e, 0x5e, 0x8e, 0x1e, 0x85, 0xfe, 0x7d, 0xbe, 0x75, 0x5e, 0x6d, 0x5e, 0x6c, 0xfe, 0x64, 0xbc, 0x5c, 0x7a, 0x54, 0x39, 0x4c, 0x39, 0x4c, 0x18, 0x4b, 0xf8, 0x43, 0xd8, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x4b, 0xf8, 0x4c, 0x39, 0x54, 0x59, 0x5c, 0x79, 0x54, 0x79, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x18, 0x4b, 0xf7, 0x43, 0xd7, 0x43, 0xb7, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x3b, 0x75, 0x3b, 0x34, 0x32, 0xf4, + 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x34, 0x43, 0x74, 0x43, 0x54, 0x3b, 0x54, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x43, 0x55, 0x7d, 0xdd, 0x86, 0x5e, 0x8e, 0xfe, 0x9f, 0x1c, 0xaf, 0x1d, 0xcf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xd7, 0x1e, 0xb7, 0x1d, 0x9f, 0x1d, 0x8e, 0xbe, 0x7d, 0xbe, 0x75, 0x3e, 0x6c, 0xdd, 0x64, 0xbc, 0x5c, 0x9b, 0x54, 0x7a, 0x54, 0x5a, 0x54, 0x3a, 0x54, 0x39, 0x54, 0x3a, 0x54, 0x3a, 0x54, 0x3b, 0x54, 0x5b, 0x54, 0x7b, 0x54, 0x5b, 0x54, 0x7c, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0x9d, 0x5c, 0xbe, 0x5c, 0xbe, 0x5c, 0xbe, 0x5c, 0xbe, 0x64, 0xde, 0x64, 0xbd, 0x54, 0x39, 0x43, 0x96, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd8, 0x4b, 0xd7, 0x3b, 0x34, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x54, 0x32, 0xd3, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x51, 0x3b, 0x13, 0x54, 0x38, 0x54, 0x39, 0x54, 0x18, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0xb6, 0x4b, 0xd7, 0x5c, 0x9c, 0x64, 0xde, 0x64, 0xde, 0x6d, 0x1e, 0x6d, 0x1d, 0x6d, 0x1e, 0x6d, 0x3e, 0x6d, 0x3d, 0x75, 0x5d, 0x75, 0x5c, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x6d, 0x1b, 0x6c, 0xfb, 0x64, 0xbb, 0x5c, 0x7a, 0x64, 0x9b, 0x5c, 0x9b, 0x54, 0x59, 0x54, 0x58, 0x4c, 0x18, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x3b, 0x75, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xb3, 0x2a, 0x92, 0x2a, 0x72, 0x22, 0x72, 0x22, 0x72, 0x22, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x4b, 0xd7, 0x54, 0x18, 0x4b, 0xd7, 0x53, 0xf8, 0x54, 0x18, 0x4b, 0xd7, 0x4b, 0xd7, 0x53, 0xf8, 0x54, 0x38, 0x5c, 0x7a, 0x6c, 0xdd, 0x75, 0x3e, 0x7d, 0x9e, 0x85, 0xfe, 0x96, 0x9e, 0x9e, 0xde, 0x9f, 0x1e, 0x9f, 0x1e, 0x96, 0xfe, 0x8e, 0x5e, 0x85, 0xde, 0x7d, 0x7d, 0x75, 0x5e, 0x6c, 0xfd, 0x5c, 0xbc, 0x5c, 0x7a, 0x54, 0x3a, 0x4c, 0x39, 0x4c, 0x18, 0x4b, 0xf8, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x4b, 0xf8, 0x4c, 0x19, 0x54, 0x39, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x59, 0x54, 0x39, 0x54, 0x38, 0x4c, 0x18, 0x4b, 0xd7, 0x43, 0xd7, 0x43, 0xb7, 0x43, 0x97, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x3b, 0x75, 0x3b, 0x14, + 0x3b, 0x34, 0x3a, 0xf3, 0x3b, 0x13, 0x43, 0x75, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x71, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x64, 0xfa, 0x75, 0x9e, 0x7d, 0xfd, 0x86, 0x9e, 0x97, 0x1d, 0xa7, 0x1d, 0xbf, 0x1d, 0xd7, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xd7, 0x1e, 0xb7, 0x1d, 0x9f, 0x1d, 0x8e, 0x9e, 0x7d, 0xbe, 0x75, 0x5e, 0x6d, 0x1e, 0x64, 0xdd, 0x5c, 0x9c, 0x5c, 0x7b, 0x54, 0x7a, 0x54, 0x5a, 0x54, 0x5b, 0x54, 0x5b, 0x54, 0x7b, 0x54, 0x7c, 0x54, 0x7d, 0x5c, 0x9d, 0x5c, 0x9e, 0x5c, 0xbe, 0x5c, 0xbe, 0x5c, 0xbe, 0x5c, 0xbe, 0x64, 0xde, 0x64, 0xde, 0x64, 0xde, 0x64, 0xde, 0x64, 0xbd, 0x54, 0x39, 0x43, 0xb7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4c, 0x18, 0x4b, 0xd7, 0x3b, 0x14, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x54, 0x3b, 0x13, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x43, 0x75, 0x5c, 0x59, 0x54, 0x39, 0x54, 0x18, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xd6, 0x5c, 0x5a, 0x64, 0xdd, 0x64, 0xde, 0x6c, 0xfe, 0x6d, 0x1e, 0x6d, 0x1e, 0x75, 0x5e, 0x75, 0x7e, 0x7d, 0x7d, 0x7d, 0x7d, 0x7d, 0x5c, 0x7d, 0x5c, 0x7d, 0x5c, 0x7d, 0x5c, 0x7d, 0x5c, 0x75, 0x3c, 0x6d, 0x1c, 0x64, 0xdb, 0x64, 0xdc, 0x64, 0xdc, 0x5c, 0x7a, 0x54, 0x79, 0x54, 0x59, 0x4c, 0x18, 0x4b, 0xf7, 0x43, 0x96, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xb2, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x71, 0x32, 0xd3, 0x54, 0x18, 0x54, 0x18, 0x4b, 0xb7, 0x54, 0x18, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x54, 0x38, 0x5c, 0x7a, 0x64, 0xbc, 0x6c, 0xfe, 0x7d, 0x7e, 0x8d, 0xfe, 0x96, 0xbe, 0x9f, 0x1d, 0xa7, 0x1d, 0xa7, 0x1d, 0xa7, 0x1d, 0x9f, 0x1d, 0x8e, 0xbe, 0x86, 0x1e, 0x7d, 0x9e, 0x6d, 0x3e, 0x64, 0xfd, 0x64, 0xbc, 0x5c, 0x7b, 0x54, 0x5a, 0x4c, 0x19, 0x4c, 0x18, 0x4b, 0xf8, 0x43, 0xd8, 0x43, 0xd8, 0x43, 0xd8, 0x4b, 0xf8, 0x4c, 0x19, 0x54, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4b, 0xf8, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0x76, + 0x43, 0x96, 0x3b, 0x34, 0x3b, 0x34, 0x4b, 0x75, 0x4b, 0x75, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x13, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x91, 0x2a, 0x91, 0x32, 0x92, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x4b, 0xd6, 0x6d, 0x5e, 0x6d, 0x7e, 0x75, 0x9e, 0x7e, 0x1e, 0x86, 0xbd, 0x97, 0x3d, 0xa7, 0x1d, 0xbf, 0x1d, 0xd7, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xd7, 0x1e, 0xc7, 0x1e, 0xaf, 0x1d, 0x9f, 0x1e, 0x8e, 0xbe, 0x7d, 0xde, 0x75, 0x5e, 0x6d, 0x1e, 0x64, 0xde, 0x5c, 0xbd, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x7c, 0x5c, 0x7c, 0x5c, 0x7c, 0x5c, 0x9d, 0x5c, 0xbe, 0x5c, 0xbe, 0x64, 0xde, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0xde, 0x64, 0xde, 0x64, 0xfe, 0x65, 0x1e, 0x64, 0xdc, 0x54, 0x38, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0xf8, 0x54, 0x39, 0x4b, 0xf8, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x32, 0xd3, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0xb2, 0x4b, 0xb7, 0x5c, 0x5a, 0x54, 0x39, 0x54, 0x18, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd6, 0x54, 0x39, 0x64, 0xdd, 0x64, 0xfe, 0x64, 0xfe, 0x6d, 0x1e, 0x6d, 0x3d, 0x75, 0x5e, 0x75, 0x7e, 0x7d, 0x9e, 0x85, 0x7d, 0x85, 0x7d, 0x85, 0x5d, 0x85, 0x5c, 0x8d, 0x5c, 0x85, 0x7d, 0x85, 0x7d, 0x7d, 0x7d, 0x75, 0x5d, 0x6d, 0x1d, 0x6d, 0x1d, 0x6c, 0xfd, 0x5c, 0xdc, 0x5c, 0xbb, 0x54, 0x79, 0x4b, 0xd7, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x51, 0x43, 0x76, 0x54, 0x39, 0x53, 0xf7, 0x4b, 0xd7, 0x53, 0xf8, 0x4b, 0xd7, 0x4b, 0xf7, 0x54, 0x18, 0x5c, 0x39, 0x5c, 0x7a, 0x6c, 0xdc, 0x75, 0x5e, 0x85, 0xbe, 0x96, 0x7e, 0x9f, 0x1d, 0xa7, 0x1d, 0xaf, 0x1d, 0xaf, 0x1d, 0xa7, 0x1d, 0x9f, 0x1d, 0x96, 0xfe, 0x86, 0x3e, 0x7d, 0x9e, 0x6d, 0x3e, 0x64, 0xdd, 0x5c, 0x9c, 0x5c, 0x7a, 0x54, 0x5a, 0x4c, 0x19, 0x4b, 0xf8, 0x4b, 0xd8, 0x43, 0xd8, 0x43, 0xd8, 0x43, 0xd8, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x19, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x18, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0x96, + 0x43, 0x96, 0x43, 0x96, 0x4b, 0x95, 0x4b, 0x75, 0x4b, 0x75, 0x43, 0x74, 0x43, 0x54, 0x3b, 0x14, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x43, 0x55, 0x64, 0xfd, 0x64, 0xfe, 0x6d, 0x3e, 0x75, 0x9e, 0x75, 0x9d, 0x7e, 0x1e, 0x86, 0x9d, 0x97, 0x1d, 0x9f, 0x1d, 0xb7, 0x1d, 0xcf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x1e, 0xdf, 0x3e, 0xdf, 0x1e, 0xdf, 0x1e, 0xcf, 0x1e, 0xb7, 0x1d, 0xa7, 0x1d, 0x97, 0x1d, 0x86, 0x9e, 0x7d, 0xde, 0x75, 0x5e, 0x6d, 0x1e, 0x64, 0xde, 0x64, 0xde, 0x5c, 0xbd, 0x5c, 0x9d, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xbe, 0x5c, 0xbe, 0x5c, 0xbe, 0x64, 0xfe, 0x65, 0x1e, 0x6d, 0x1e, 0x6d, 0x1e, 0x65, 0x1e, 0x6d, 0x3e, 0x64, 0xfc, 0x4c, 0x18, 0x54, 0x39, 0x54, 0x39, 0x54, 0x59, 0x5c, 0x5a, 0x43, 0x96, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xb2, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x72, 0x32, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x71, 0x3a, 0xf3, 0x54, 0x19, 0x5c, 0x7a, 0x54, 0x18, 0x4c, 0x18, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x5c, 0x7a, 0x6c, 0xfe, 0x64, 0xfe, 0x6d, 0x1e, 0x6d, 0x1e, 0x6d, 0x3e, 0x75, 0x7e, 0x7d, 0x9e, 0x85, 0x9e, 0x85, 0x9e, 0x8d, 0x7d, 0x8d, 0x7d, 0x8d, 0x7d, 0x8d, 0x9d, 0x8d, 0x7d, 0x8d, 0x9e, 0x85, 0xbe, 0x7d, 0xbe, 0x75, 0x7e, 0x6d, 0x3d, 0x6d, 0x5e, 0x64, 0xdc, 0x54, 0x59, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x32, 0x92, 0x4b, 0xd7, 0x54, 0x18, 0x4b, 0xd7, 0x4b, 0xd7, 0x53, 0xf8, 0x4b, 0xf7, 0x4b, 0xf7, 0x54, 0x18, 0x5c, 0x59, 0x64, 0xbb, 0x75, 0x1e, 0x7d, 0x7e, 0x8e, 0x1e, 0x9f, 0x1d, 0xa7, 0x1d, 0xaf, 0x1d, 0xb7, 0x1d, 0xaf, 0x1d, 0xa7, 0x1d, 0x9f, 0x3d, 0x96, 0xbe, 0x85, 0xfe, 0x75, 0x9e, 0x6d, 0x3e, 0x64, 0xdd, 0x5c, 0x9b, 0x54, 0x5a, 0x54, 0x39, 0x54, 0x39, 0x4b, 0xf8, 0x43, 0xd8, 0x43, 0xd8, 0x43, 0xd8, 0x43, 0xd8, 0x43, 0xd8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x18, 0x4b, 0xf8, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x18, 0x4b, 0xf8, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0xb7, 0x43, 0x97, 0x43, 0x96, + 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0x95, 0x4b, 0x75, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x13, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x3a, 0xf4, 0x54, 0x7a, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0xfe, 0x65, 0x1d, 0x75, 0x7d, 0x75, 0x9e, 0x7d, 0xde, 0x7e, 0x7e, 0x8f, 0x1d, 0x9f, 0x3d, 0xa7, 0x1d, 0xb7, 0x3d, 0xcf, 0x1e, 0xd7, 0x3e, 0xd7, 0x3e, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0x1e, 0xd7, 0x3e, 0xcf, 0x1e, 0xc7, 0x1e, 0xb7, 0x1d, 0xaf, 0x1d, 0xa7, 0x1d, 0x97, 0x1d, 0x8e, 0x9e, 0x86, 0x1e, 0x75, 0x9e, 0x6d, 0x5e, 0x6d, 0x1e, 0x64, 0xde, 0x5c, 0xde, 0x5c, 0xbe, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xbe, 0x5c, 0xbe, 0x64, 0xde, 0x64, 0xde, 0x64, 0xfe, 0x64, 0xfe, 0x65, 0x1e, 0x65, 0x1e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x1d, 0x5c, 0x9a, 0x4b, 0xf8, 0x54, 0x59, 0x54, 0x5a, 0x5c, 0x7a, 0x54, 0x39, 0x43, 0x95, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x34, 0x32, 0xf3, 0x2a, 0x71, 0x32, 0x72, 0x2a, 0x72, 0x32, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x22, 0x51, 0x3b, 0x34, 0x5c, 0x59, 0x5c, 0x5a, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x4b, 0xf7, 0x54, 0x38, 0x64, 0xfc, 0x6d, 0x1e, 0x6d, 0x1d, 0x6d, 0x1d, 0x6d, 0x3e, 0x75, 0x5e, 0x7d, 0xbe, 0x7d, 0xbe, 0x85, 0x9e, 0x8d, 0x9e, 0x8d, 0x9e, 0x8d, 0x9e, 0x8d, 0x9e, 0x95, 0xbe, 0x95, 0xbe, 0x95, 0xde, 0x8e, 0x1e, 0x86, 0x1e, 0x75, 0x7c, 0x64, 0x99, 0x5c, 0x59, 0x54, 0x18, 0x53, 0xf7, 0x53, 0xd7, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x14, 0x33, 0x14, 0x32, 0xf3, 0x32, 0x72, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x32, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x43, 0x35, 0x54, 0x19, 0x53, 0xf8, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf8, 0x4b, 0xf7, 0x4b, 0xf7, 0x54, 0x18, 0x5c, 0x7a, 0x64, 0xbc, 0x75, 0x3e, 0x85, 0xde, 0x96, 0xde, 0x9f, 0x1d, 0xaf, 0x1d, 0xaf, 0x1d, 0xaf, 0x3d, 0xa7, 0x1d, 0x9e, 0xfc, 0x96, 0xfd, 0x8e, 0x7e, 0x7d, 0xde, 0x75, 0x7e, 0x6d, 0x1e, 0x64, 0xbc, 0x5c, 0x9b, 0x54, 0x59, 0x54, 0x39, 0x4c, 0x19, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xd8, 0x43, 0xd8, 0x4b, 0xd8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x18, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xd7, 0x43, 0xd7, 0x43, 0xb7, 0x43, 0x96, 0x43, 0x96, + 0x43, 0x76, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0x95, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x13, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x4b, 0xd7, 0x6d, 0x5e, 0x65, 0x1e, 0x65, 0x1e, 0x64, 0xfe, 0x65, 0x1e, 0x65, 0x1e, 0x6d, 0x5d, 0x75, 0x9e, 0x75, 0xde, 0x7e, 0x3e, 0x86, 0xdd, 0x97, 0x1d, 0x9f, 0x1c, 0xa7, 0x3d, 0xaf, 0x3d, 0xb7, 0x3d, 0xb7, 0x3d, 0xa7, 0x1d, 0xa7, 0x3d, 0x9f, 0x3d, 0x9f, 0x3d, 0x97, 0x1d, 0x96, 0xfd, 0x8e, 0xdd, 0x86, 0x9e, 0x86, 0x3e, 0x7d, 0xde, 0x75, 0x7e, 0x6d, 0x5e, 0x6d, 0x1e, 0x64, 0xfe, 0x64, 0xde, 0x5c, 0xbe, 0x5c, 0xbe, 0x5c, 0xbe, 0x5c, 0xbe, 0x64, 0xde, 0x64, 0xde, 0x64, 0xde, 0x64, 0xfe, 0x6d, 0x1e, 0x6d, 0x3e, 0x6d, 0x5e, 0x6d, 0x3e, 0x6d, 0x1e, 0x6d, 0x3e, 0x64, 0xfc, 0x54, 0x59, 0x54, 0x39, 0x54, 0x5a, 0x5c, 0x7a, 0x54, 0x5a, 0x4b, 0xf8, 0x43, 0x95, 0x3b, 0x55, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x32, 0xd3, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x22, 0x51, 0x3b, 0x35, 0x5c, 0x9a, 0x5c, 0x7a, 0x54, 0x18, 0x54, 0x18, 0x4c, 0x18, 0x4b, 0xd7, 0x5c, 0x7a, 0x6d, 0x1d, 0x6d, 0x3e, 0x6d, 0x1d, 0x6d, 0x3e, 0x6d, 0x5e, 0x75, 0x7e, 0x7d, 0xbe, 0x85, 0xbe, 0x8d, 0xbe, 0x8d, 0xbe, 0x8d, 0x9e, 0x95, 0xbe, 0x95, 0xde, 0x95, 0xfe, 0x9e, 0x1e, 0x95, 0xfc, 0x75, 0x39, 0x64, 0x78, 0x5c, 0x79, 0x5c, 0x59, 0x5c, 0x58, 0x5c, 0x38, 0x54, 0x18, 0x54, 0x17, 0x4b, 0xf7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x32, 0xf4, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0x92, 0x22, 0x31, 0x4b, 0xb7, 0x54, 0x39, 0x53, 0xf8, 0x4b, 0xf8, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf8, 0x54, 0x38, 0x5c, 0x7a, 0x6c, 0xdd, 0x7d, 0x9e, 0x86, 0x3e, 0x96, 0xde, 0x9f, 0x1d, 0xa7, 0x3d, 0xaf, 0x1d, 0xaf, 0x1d, 0xa7, 0x1d, 0x97, 0x1d, 0x8e, 0x9e, 0x85, 0xfe, 0x7d, 0x9e, 0x75, 0x5e, 0x6d, 0x1e, 0x64, 0xbc, 0x5c, 0x7b, 0x54, 0x5a, 0x54, 0x39, 0x4c, 0x18, 0x4b, 0xf8, 0x4b, 0xf8, 0x43, 0xd8, 0x43, 0xd8, 0x4b, 0xd8, 0x43, 0xd8, 0x43, 0xd8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4c, 0x18, 0x4b, 0xf8, 0x4b, 0xf8, 0x43, 0xd7, 0x43, 0xb7, 0x43, 0xd7, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, + 0x43, 0x96, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x3b, 0x55, 0x65, 0x1e, 0x65, 0x1e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x5e, 0x6d, 0x3d, 0x6d, 0x3d, 0x65, 0x1e, 0x6d, 0x3e, 0x6d, 0x5e, 0x75, 0xdd, 0x7e, 0x7e, 0x7e, 0x9d, 0x8f, 0x1d, 0x8f, 0x1d, 0x8f, 0x1d, 0x8e, 0xdd, 0x8f, 0x1d, 0x87, 0x1d, 0x8e, 0xfd, 0x86, 0x9e, 0x86, 0x5e, 0x7e, 0x1e, 0x7d, 0xfe, 0x75, 0xbe, 0x75, 0x9e, 0x6d, 0x7e, 0x6d, 0x5e, 0x6d, 0x3e, 0x65, 0x1e, 0x65, 0x1e, 0x64, 0xfe, 0x64, 0xde, 0x64, 0xde, 0x64, 0xde, 0x64, 0xde, 0x64, 0xde, 0x64, 0xfe, 0x64, 0xfe, 0x65, 0x1e, 0x6d, 0x3e, 0x75, 0x5e, 0x75, 0x5e, 0x75, 0x5e, 0x6d, 0x5e, 0x6d, 0x1d, 0x5c, 0x7a, 0x54, 0x39, 0x54, 0x5a, 0x5c, 0x7b, 0x5c, 0x7b, 0x4c, 0x18, 0x43, 0x76, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x34, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x71, 0x43, 0x55, 0x5c, 0x5a, 0x5c, 0x59, 0x54, 0x38, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x64, 0xfc, 0x6d, 0x5e, 0x6d, 0x1d, 0x6d, 0x1e, 0x6d, 0x3e, 0x6d, 0x5e, 0x75, 0x9e, 0x7d, 0xde, 0x85, 0xde, 0x8d, 0xbe, 0x95, 0xbe, 0x95, 0xde, 0x95, 0xde, 0xa6, 0x5e, 0x8d, 0x7b, 0x6c, 0x78, 0x64, 0x78, 0x64, 0xb9, 0x6c, 0xba, 0x64, 0xba, 0x64, 0x9a, 0x64, 0x9a, 0x5c, 0x79, 0x5c, 0x58, 0x54, 0x38, 0x53, 0xf7, 0x4b, 0xd6, 0x4b, 0x96, 0x43, 0x96, 0x3b, 0x34, 0x32, 0xb2, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x22, 0x31, 0x54, 0x18, 0x54, 0x39, 0x54, 0x18, 0x4b, 0xd8, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf8, 0x54, 0x39, 0x64, 0xbc, 0x6d, 0x1e, 0x7d, 0x7e, 0x86, 0x1e, 0x96, 0xbe, 0x9f, 0x1d, 0xa7, 0x1d, 0xa7, 0x3d, 0xa7, 0x1d, 0x9f, 0x3d, 0x96, 0xbe, 0x86, 0x1e, 0x7d, 0x9e, 0x75, 0x7e, 0x6d, 0x1e, 0x64, 0xfe, 0x64, 0xbc, 0x5c, 0x9b, 0x5c, 0x7b, 0x54, 0x5a, 0x4c, 0x19, 0x4c, 0x18, 0x4b, 0xf8, 0x4b, 0xf8, 0x43, 0xd8, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd8, 0x43, 0xd7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0x97, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x76, + 0x43, 0x96, 0x4b, 0xf7, 0x4b, 0xb6, 0x4b, 0x96, 0x4b, 0xb6, 0x4b, 0xd6, 0x54, 0x16, 0x53, 0xf5, 0x43, 0x94, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x6d, 0x1d, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0x1d, 0x6d, 0x3d, 0x6d, 0x5e, 0x6d, 0x7e, 0x6d, 0x7e, 0x75, 0x7e, 0x6d, 0x5d, 0x6d, 0x3d, 0x75, 0xbe, 0x75, 0xbd, 0x76, 0x1d, 0x86, 0xbe, 0x86, 0xde, 0x7e, 0x3d, 0x7d, 0xfe, 0x7e, 0x3e, 0x7e, 0x5e, 0x7e, 0x1e, 0x7d, 0xde, 0x75, 0xde, 0x75, 0x7d, 0x6d, 0x7e, 0x6d, 0x7e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x1e, 0x6d, 0x3e, 0x65, 0x3e, 0x65, 0x1e, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0xfe, 0x65, 0x1e, 0x65, 0x1e, 0x6d, 0x3e, 0x6d, 0x5e, 0x75, 0x7e, 0x75, 0x9e, 0x75, 0x7e, 0x6d, 0x5d, 0x64, 0xdb, 0x4c, 0x38, 0x54, 0x39, 0x54, 0x5a, 0x5c, 0x9b, 0x54, 0x59, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x95, 0x3b, 0x14, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x4b, 0xb6, 0x64, 0xdb, 0x5c, 0x7a, 0x54, 0x59, 0x54, 0x59, 0x54, 0x38, 0x5c, 0x9a, 0x6d, 0x3d, 0x6d, 0x5e, 0x6d, 0x3e, 0x6d, 0x1e, 0x6d, 0x3e, 0x75, 0x7e, 0x75, 0xbe, 0x7d, 0xde, 0x85, 0xfe, 0x95, 0xde, 0x95, 0xde, 0xa6, 0x5e, 0x74, 0xd9, 0x5c, 0x37, 0x64, 0x78, 0x6c, 0xb9, 0x6c, 0xdb, 0x75, 0x1c, 0x75, 0x1d, 0x75, 0x1d, 0x6c, 0xfc, 0x64, 0xdb, 0x64, 0x7a, 0x5c, 0x58, 0x5c, 0x38, 0x54, 0x38, 0x53, 0xf7, 0x4b, 0xb6, 0x32, 0xd3, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb2, 0x5c, 0x5a, 0x5c, 0x5a, 0x53, 0xf8, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0xb6, 0x4b, 0xd7, 0x54, 0x39, 0x5c, 0x7b, 0x64, 0xbd, 0x6d, 0x1e, 0x75, 0x5e, 0x85, 0xde, 0x8e, 0x5e, 0x96, 0xbe, 0x97, 0x1e, 0x97, 0x1e, 0x96, 0xfe, 0x8e, 0xbe, 0x86, 0x1e, 0x7d, 0xde, 0x75, 0x7e, 0x75, 0x5e, 0x6d, 0x1e, 0x64, 0xde, 0x64, 0xbd, 0x5c, 0x9c, 0x5c, 0x9c, 0x54, 0x7b, 0x54, 0x5a, 0x54, 0x39, 0x4c, 0x18, 0x4b, 0xf8, 0x4c, 0x18, 0x4b, 0xf8, 0x43, 0xf8, 0x43, 0xd7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x76, 0x43, 0x76, 0x3b, 0x76, + 0x54, 0x37, 0x5c, 0x37, 0x5c, 0x36, 0x5c, 0x16, 0x53, 0xf6, 0x53, 0xf6, 0x4b, 0xb5, 0x53, 0xf6, 0x4b, 0xb5, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xf3, 0x64, 0xbb, 0x65, 0x1e, 0x6d, 0x1e, 0x65, 0x1e, 0x6d, 0x3e, 0x65, 0x1e, 0x6d, 0x3e, 0x6d, 0x5e, 0x75, 0x7e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0xbe, 0x7d, 0xfe, 0x75, 0xde, 0x75, 0xfe, 0x75, 0xfe, 0x75, 0xbd, 0x75, 0x9e, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x7e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x3e, 0x6d, 0x3e, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0x3e, 0x65, 0x3e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x5e, 0x75, 0x7e, 0x75, 0x7e, 0x7d, 0x7e, 0x75, 0x7d, 0x6d, 0x1b, 0x5c, 0x58, 0x54, 0x37, 0x54, 0x58, 0x54, 0x58, 0x4c, 0x18, 0x43, 0x76, 0x33, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x43, 0xb6, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x30, 0x4b, 0x96, 0x6c, 0xdc, 0x5c, 0x9a, 0x54, 0x59, 0x54, 0x39, 0x54, 0x39, 0x64, 0xfc, 0x75, 0x7e, 0x6d, 0x5e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x5e, 0x75, 0x9e, 0x7d, 0xbe, 0x85, 0xfe, 0x8d, 0xdc, 0x6c, 0x98, 0x5c, 0x37, 0x64, 0x58, 0x6c, 0x99, 0x74, 0xda, 0x75, 0x1c, 0x7d, 0x7e, 0x7d, 0x9e, 0x7d, 0x7e, 0x7d, 0x5e, 0x75, 0x3d, 0x6c, 0xfc, 0x64, 0xbb, 0x5c, 0x79, 0x5c, 0x59, 0x54, 0x17, 0x3a, 0xf3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x32, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x3b, 0x14, 0x5c, 0x7a, 0x5c, 0x5a, 0x54, 0x18, 0x4b, 0xf8, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf8, 0x54, 0x19, 0x5c, 0x5a, 0x64, 0x9c, 0x6c, 0xfd, 0x75, 0x5e, 0x7d, 0x7e, 0x85, 0xde, 0x86, 0x1e, 0x8e, 0x7e, 0x8e, 0x7e, 0x8e, 0x5e, 0x86, 0x1e, 0x7d, 0xbe, 0x7d, 0x9e, 0x75, 0x7e, 0x6d, 0x3e, 0x6d, 0x3e, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0xdc, 0x5c, 0x9b, 0x5c, 0x9a, 0x5c, 0x7a, 0x54, 0x5a, 0x54, 0x59, 0x54, 0x39, 0x4c, 0x18, 0x4b, 0xf8, 0x43, 0xd7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x76, 0x3b, 0x76, 0x43, 0x96, + 0x5c, 0x57, 0x5c, 0x36, 0x5c, 0x36, 0x54, 0x16, 0x53, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xb5, 0x4b, 0xb5, 0x3b, 0x34, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x3b, 0xb6, 0x3b, 0xf7, 0x4c, 0x79, 0x5c, 0xbb, 0x75, 0x7e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x3d, 0x6d, 0x3d, 0x6d, 0x5d, 0x6d, 0x5d, 0x75, 0x9d, 0x7e, 0x1d, 0x7e, 0x5e, 0x7e, 0x5e, 0x7e, 0x3e, 0x75, 0xde, 0x75, 0x7d, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x7e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x5e, 0x75, 0x5e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x5d, 0x6c, 0xda, 0x64, 0x99, 0x5c, 0x78, 0x5c, 0x79, 0x54, 0x17, 0x33, 0x14, 0x32, 0xf3, 0x2a, 0xd3, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x76, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x53, 0xf6, 0x54, 0x17, 0x54, 0x17, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x4b, 0xf7, 0x3b, 0x14, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x71, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x43, 0x34, 0x64, 0x9a, 0x64, 0xbb, 0x54, 0x5a, 0x54, 0x39, 0x5c, 0x9b, 0x6d, 0x3d, 0x75, 0x9e, 0x6d, 0x7e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x3e, 0x75, 0x9e, 0x75, 0x5b, 0x5c, 0x77, 0x54, 0x17, 0x5c, 0x37, 0x64, 0x58, 0x6c, 0xb9, 0x74, 0xfb, 0x7d, 0x5d, 0x85, 0x9e, 0x85, 0xde, 0x85, 0xde, 0x85, 0xbe, 0x7d, 0x9e, 0x7d, 0x5e, 0x75, 0x3d, 0x6c, 0xfd, 0x64, 0x9a, 0x43, 0x54, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x3b, 0x55, 0x64, 0xbc, 0x5c, 0x7b, 0x54, 0x19, 0x54, 0x39, 0x54, 0x18, 0x4b, 0xd7, 0x4b, 0xd7, 0x4c, 0x18, 0x54, 0x19, 0x5c, 0x7b, 0x64, 0xdd, 0x6d, 0x1e, 0x75, 0x5e, 0x7d, 0x7e, 0x7d, 0xbe, 0x85, 0xde, 0x85, 0xde, 0x7d, 0xbe, 0x7d, 0x9e, 0x7d, 0x9e, 0x75, 0x7e, 0x6d, 0x5e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x1e, 0x6d, 0x1d, 0x64, 0xfc, 0x64, 0xdb, 0x64, 0xbb, 0x5c, 0xba, 0x5c, 0x7a, 0x54, 0x59, 0x54, 0x38, 0x4c, 0x18, 0x4b, 0xf7, 0x43, 0xd7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x75, 0x54, 0x37, + 0x54, 0x57, 0x54, 0x36, 0x54, 0x36, 0x54, 0x16, 0x54, 0x16, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd5, 0x4b, 0xd5, 0x3b, 0x54, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x43, 0xd7, 0x44, 0x18, 0x44, 0x17, 0x3b, 0xf7, 0x3c, 0x17, 0x44, 0x17, 0x54, 0x99, 0x75, 0x7e, 0x75, 0x7e, 0x6d, 0x5e, 0x6d, 0x5d, 0x6d, 0x5d, 0x75, 0xdd, 0x7d, 0xfe, 0x7d, 0xdd, 0x86, 0xdd, 0x8f, 0x1e, 0x7d, 0xfd, 0x7d, 0xde, 0x75, 0x9e, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x9e, 0x7d, 0x9e, 0x7d, 0x9e, 0x7d, 0x9e, 0x7d, 0x9e, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x7e, 0x6d, 0x7e, 0x6d, 0x7e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x7e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x7e, 0x6d, 0x1c, 0x5c, 0x9a, 0x5c, 0x79, 0x5c, 0x9a, 0x54, 0x59, 0x3b, 0x55, 0x2a, 0xd3, 0x22, 0x72, 0x22, 0x71, 0x22, 0x72, 0x2a, 0x92, 0x33, 0x14, 0x43, 0x96, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x76, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd7, 0x4b, 0xd7, 0x53, 0xf7, 0x54, 0x18, 0x54, 0x38, 0x5c, 0x58, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x99, 0x5c, 0x99, 0x4b, 0xf6, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x43, 0x33, 0x64, 0x9a, 0x64, 0xdc, 0x5c, 0x7b, 0x54, 0x5a, 0x64, 0xfc, 0x75, 0x7e, 0x75, 0x9e, 0x6d, 0x7e, 0x6d, 0x5e, 0x65, 0x3e, 0x6d, 0x5e, 0x64, 0xfb, 0x54, 0x17, 0x4b, 0xd7, 0x54, 0x17, 0x5c, 0x37, 0x5c, 0x58, 0x64, 0xb9, 0x75, 0x1c, 0x7d, 0x7e, 0x85, 0xde, 0x8e, 0x3e, 0x8e, 0x5e, 0x8e, 0x5e, 0x8e, 0x3e, 0x85, 0xde, 0x85, 0x9e, 0x7d, 0x7e, 0x54, 0x17, 0x3a, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xd3, 0x2a, 0xb3, 0x3b, 0x54, 0x64, 0xdd, 0x5c, 0x9c, 0x54, 0x5a, 0x54, 0x19, 0x4c, 0x18, 0x4b, 0xd8, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf8, 0x54, 0x39, 0x5c, 0x7a, 0x64, 0xdc, 0x6c, 0xfd, 0x75, 0x5e, 0x75, 0x5e, 0x75, 0x7e, 0x7d, 0x7e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x5e, 0x75, 0x5e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x5d, 0x6d, 0x3d, 0x6d, 0x1c, 0x6c, 0xfb, 0x64, 0xda, 0x64, 0xba, 0x5c, 0x7a, 0x54, 0x59, 0x54, 0x38, 0x4c, 0x18, 0x4b, 0xd7, 0x43, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x76, 0x4b, 0xf7, 0x54, 0x57, + 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x16, 0x4c, 0x16, 0x4c, 0x16, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb5, 0x43, 0x75, 0x3b, 0x14, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x3b, 0xb6, 0x44, 0x38, 0x4c, 0x18, 0x3b, 0xf7, 0x3c, 0x17, 0x3c, 0x17, 0x3c, 0x17, 0x3b, 0xf7, 0x33, 0xb6, 0x4c, 0x78, 0x6d, 0x3b, 0x7d, 0xfd, 0x86, 0x9e, 0x7e, 0x3e, 0x7e, 0x1d, 0x7e, 0x3e, 0x75, 0xbd, 0x75, 0xdd, 0x7e, 0x1e, 0x7e, 0x1e, 0x7e, 0x1e, 0x7d, 0xfe, 0x7d, 0xfe, 0x7d, 0xde, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x7e, 0x6d, 0x5d, 0x6d, 0x1c, 0x5c, 0x7a, 0x54, 0x39, 0x54, 0x17, 0x43, 0xb6, 0x2a, 0xd2, 0x1a, 0x31, 0x22, 0x71, 0x22, 0x72, 0x22, 0x72, 0x22, 0x92, 0x22, 0x92, 0x22, 0x72, 0x2a, 0xb2, 0x33, 0x35, 0x43, 0x96, 0x3b, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x54, 0x17, 0x54, 0x38, 0x5c, 0x79, 0x64, 0x99, 0x64, 0xd9, 0x64, 0xd9, 0x64, 0xb9, 0x4b, 0xd6, 0x43, 0x54, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3a, 0xf4, 0x3a, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x22, 0x51, 0x3b, 0x12, 0x64, 0x79, 0x64, 0xdc, 0x5c, 0x9b, 0x5c, 0x9b, 0x65, 0x1d, 0x75, 0x9e, 0x75, 0xbe, 0x75, 0x9e, 0x6d, 0x7e, 0x65, 0x1c, 0x54, 0x38, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x54, 0x17, 0x5c, 0x58, 0x64, 0x99, 0x6c, 0xfc, 0x75, 0x5e, 0x85, 0xde, 0x8e, 0x3e, 0x96, 0x9e, 0x96, 0xde, 0x96, 0xde, 0x96, 0x9e, 0x96, 0x7e, 0x75, 0x1a, 0x43, 0x34, 0x32, 0xd2, 0x3a, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x72, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x43, 0xb6, 0x64, 0xdd, 0x5c, 0xbc, 0x54, 0x5a, 0x54, 0x18, 0x4b, 0xf8, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x54, 0x18, 0x54, 0x38, 0x5c, 0x7a, 0x64, 0xbc, 0x64, 0xdd, 0x6c, 0xfd, 0x6d, 0x1e, 0x6d, 0x1e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x5e, 0x75, 0x5e, 0x75, 0x7e, 0x75, 0x7d, 0x75, 0x5d, 0x75, 0x5c, 0x6d, 0x3b, 0x6d, 0x1b, 0x64, 0xfa, 0x64, 0xb9, 0x5c, 0x79, 0x54, 0x59, 0x4c, 0x18, 0x4b, 0xf8, 0x4b, 0xd7, 0x43, 0xb7, 0x43, 0x96, 0x43, 0x76, 0x3b, 0x76, 0x3b, 0x76, 0x4c, 0x17, 0x4c, 0x37, + 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x16, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xb5, 0x43, 0x95, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xf3, 0x43, 0xb7, 0x44, 0x38, 0x44, 0x18, 0x4c, 0x38, 0x44, 0x18, 0x44, 0x18, 0x3c, 0x17, 0x3c, 0x17, 0x3b, 0xf7, 0x44, 0x18, 0x3b, 0xf7, 0x3b, 0xd6, 0x3b, 0xd6, 0x54, 0x98, 0x75, 0xbb, 0x75, 0xdb, 0x6d, 0x9b, 0x75, 0xdc, 0x7e, 0x5e, 0x86, 0x3e, 0x7d, 0xde, 0x7d, 0xbe, 0x7d, 0xde, 0x7e, 0x1e, 0x7d, 0xfe, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0xbe, 0x7d, 0xbe, 0x7d, 0xbe, 0x7d, 0xbe, 0x7d, 0xde, 0x7d, 0xfe, 0x7d, 0xfe, 0x75, 0x7c, 0x6d, 0x3b, 0x64, 0xfb, 0x64, 0xba, 0x5c, 0x79, 0x54, 0x18, 0x4b, 0xd7, 0x4b, 0x96, 0x32, 0xf3, 0x22, 0x71, 0x22, 0x51, 0x22, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x22, 0x92, 0x2a, 0x92, 0x22, 0x92, 0x22, 0x92, 0x22, 0x92, 0x22, 0x72, 0x2a, 0xb2, 0x3b, 0x55, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x54, 0x38, 0x5c, 0x79, 0x64, 0xb9, 0x6c, 0xf9, 0x75, 0x1a, 0x6c, 0xb8, 0x53, 0xd6, 0x43, 0x74, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x91, 0x4b, 0xd7, 0x64, 0xdc, 0x64, 0xbc, 0x64, 0xfc, 0x6d, 0x5d, 0x75, 0xbd, 0x75, 0xde, 0x6d, 0x9d, 0x5c, 0x79, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x54, 0x17, 0x54, 0x38, 0x5c, 0x79, 0x64, 0xdb, 0x75, 0x3d, 0x85, 0xbe, 0x8e, 0x1e, 0x96, 0xbe, 0x97, 0x1e, 0x9f, 0x3d, 0x9f, 0x5e, 0x96, 0x9c, 0x53, 0xd5, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x93, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x43, 0x75, 0x64, 0xbd, 0x5c, 0x9d, 0x54, 0x39, 0x54, 0x18, 0x4b, 0xf8, 0x4b, 0xf7, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x54, 0x18, 0x54, 0x39, 0x5c, 0x7a, 0x5c, 0x7b, 0x64, 0xbc, 0x64, 0xdc, 0x6c, 0xdd, 0x6c, 0xfe, 0x6d, 0x1e, 0x6d, 0x3e, 0x75, 0x5e, 0x75, 0x5e, 0x75, 0x7d, 0x75, 0x7c, 0x75, 0x5c, 0x75, 0x5b, 0x75, 0x3b, 0x6d, 0x1a, 0x64, 0xfa, 0x64, 0xb9, 0x5c, 0x79, 0x54, 0x59, 0x4c, 0x18, 0x4b, 0xd7, 0x43, 0xb7, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x76, 0x43, 0xd7, 0x4c, 0x38, 0x4c, 0x17, + 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x43, 0xf6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x55, 0x3a, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x43, 0xd7, 0x44, 0x39, 0x44, 0x18, 0x44, 0x18, 0x4c, 0x38, 0x4c, 0x18, 0x43, 0xf7, 0x44, 0x38, 0x44, 0x18, 0x44, 0x18, 0x44, 0x17, 0x44, 0x17, 0x44, 0x17, 0x44, 0x17, 0x3b, 0xf7, 0x3b, 0xd7, 0x44, 0x17, 0x4c, 0x37, 0x4c, 0x58, 0x4c, 0x78, 0x4c, 0xb8, 0x5d, 0x1a, 0x65, 0x19, 0x6d, 0x5b, 0x75, 0x9c, 0x75, 0x9b, 0x75, 0x3a, 0x75, 0x3a, 0x75, 0x3a, 0x6d, 0x1a, 0x6c, 0xfa, 0x5c, 0x98, 0x54, 0x37, 0x4b, 0xf6, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x33, 0x33, 0x13, 0x32, 0xd3, 0x32, 0xd2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0x92, 0x22, 0x92, 0x22, 0x92, 0x22, 0x92, 0x22, 0x92, 0x22, 0x92, 0x2a, 0xd3, 0x3b, 0x55, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x18, 0x54, 0x38, 0x5c, 0x79, 0x64, 0xba, 0x6c, 0xfa, 0x75, 0x1a, 0x6c, 0x99, 0x53, 0xb5, 0x4b, 0x74, 0x43, 0x74, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x3b, 0x34, 0x5c, 0x9a, 0x6c, 0xfd, 0x6d, 0x3d, 0x6d, 0x5d, 0x75, 0x9e, 0x64, 0xfa, 0x54, 0x38, 0x54, 0x18, 0x53, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf8, 0x54, 0x18, 0x5c, 0x58, 0x5c, 0x9a, 0x6c, 0xfd, 0x7d, 0x9e, 0x85, 0xfe, 0x8e, 0x7e, 0x9f, 0x1d, 0x9f, 0x3d, 0xb7, 0x7e, 0x6c, 0x96, 0x43, 0x33, 0x43, 0x33, 0x43, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x93, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x3b, 0x55, 0x64, 0xbc, 0x5c, 0x9c, 0x54, 0x5a, 0x54, 0x38, 0x4c, 0x18, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x53, 0xf8, 0x54, 0x18, 0x54, 0x39, 0x5c, 0x79, 0x5c, 0x7a, 0x64, 0x9c, 0x64, 0xdd, 0x6c, 0xfe, 0x6c, 0xfe, 0x6d, 0x1e, 0x75, 0x5e, 0x75, 0x5d, 0x75, 0x7c, 0x75, 0x5c, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x1a, 0x6c, 0xfa, 0x64, 0xd9, 0x64, 0x99, 0x5c, 0x79, 0x54, 0x18, 0x4b, 0xf7, 0x43, 0xb7, 0x43, 0x96, 0x43, 0x76, 0x3b, 0x76, 0x4c, 0x18, 0x44, 0x17, 0x4c, 0x17, + 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x34, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x4c, 0x39, 0x44, 0x18, 0x44, 0x18, 0x4c, 0x38, 0x44, 0x18, 0x4c, 0x58, 0x4c, 0x38, 0x4c, 0x18, 0x3b, 0xf8, 0x44, 0x38, 0x44, 0x18, 0x44, 0x58, 0x44, 0x18, 0x3b, 0xf7, 0x44, 0x37, 0x43, 0xf7, 0x44, 0x17, 0x43, 0xf7, 0x44, 0x37, 0x44, 0x17, 0x44, 0x37, 0x44, 0x38, 0x44, 0x17, 0x44, 0x17, 0x44, 0x17, 0x4c, 0x37, 0x43, 0xb6, 0x33, 0x34, 0x3b, 0x54, 0x33, 0x14, 0x32, 0xf3, 0x33, 0x13, 0x33, 0x13, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x22, 0x92, 0x22, 0x92, 0x22, 0x92, 0x22, 0x92, 0x22, 0x92, 0x22, 0x92, 0x22, 0x92, 0x22, 0x92, 0x22, 0xb2, 0x2a, 0xf3, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x76, 0x43, 0xb6, 0x4b, 0xf7, 0x54, 0x17, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x5c, 0x79, 0x64, 0xba, 0x64, 0xda, 0x6c, 0xf9, 0x64, 0x37, 0x4b, 0x75, 0x4b, 0x75, 0x4b, 0x75, 0x4b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3a, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x2a, 0xb1, 0x4b, 0xf7, 0x6d, 0x3d, 0x75, 0x9e, 0x65, 0x1c, 0x5c, 0x7a, 0x54, 0x59, 0x54, 0x58, 0x54, 0x38, 0x53, 0xf8, 0x4b, 0xf7, 0x53, 0xf7, 0x53, 0xf7, 0x54, 0x38, 0x5c, 0x79, 0x64, 0xbc, 0x75, 0x5d, 0x85, 0xbe, 0x8e, 0x5e, 0x96, 0xfe, 0xaf, 0x7e, 0x74, 0xf8, 0x4b, 0x74, 0x4b, 0x54, 0x43, 0x34, 0x43, 0x33, 0x43, 0x33, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x93, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd4, 0x2a, 0xb2, 0x64, 0xdc, 0x5c, 0xbd, 0x54, 0x5a, 0x54, 0x39, 0x4c, 0x18, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf8, 0x53, 0xf8, 0x54, 0x18, 0x54, 0x39, 0x5c, 0x7a, 0x5c, 0x7a, 0x64, 0xbc, 0x64, 0xdd, 0x6c, 0xfe, 0x6d, 0x1d, 0x75, 0x5d, 0x75, 0x5c, 0x75, 0x5c, 0x75, 0x5b, 0x75, 0x3b, 0x75, 0x3a, 0x6d, 0x1a, 0x6c, 0xda, 0x64, 0xb9, 0x5c, 0x79, 0x54, 0x38, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x76, 0x4c, 0x18, 0x4c, 0x18, 0x43, 0xf7, 0x43, 0xf7, + 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xb7, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x76, 0x3b, 0x75, 0x3b, 0x35, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xd4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x33, 0x14, 0x3b, 0x75, 0x44, 0x38, 0x44, 0x18, 0x44, 0x39, 0x44, 0x39, 0x44, 0x38, 0x4c, 0x39, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x44, 0x38, 0x44, 0x38, 0x44, 0x38, 0x43, 0xf7, 0x44, 0x38, 0x4c, 0x38, 0x44, 0x17, 0x44, 0x17, 0x43, 0xf7, 0x44, 0x17, 0x4c, 0x58, 0x4c, 0x38, 0x44, 0x58, 0x44, 0x37, 0x4c, 0x58, 0x4c, 0x38, 0x4c, 0x58, 0x4c, 0x37, 0x43, 0xf6, 0x33, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xb3, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xd2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x22, 0x92, 0x22, 0xb2, 0x22, 0xb2, 0x22, 0x92, 0x22, 0x92, 0x22, 0x92, 0x22, 0xb2, 0x2a, 0xf3, 0x43, 0x96, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x78, 0x64, 0xb9, 0x54, 0x37, 0x43, 0x75, 0x4b, 0x95, 0x4b, 0x75, 0x4b, 0x95, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3a, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x2a, 0x92, 0x3b, 0x33, 0x5c, 0x79, 0x64, 0xbb, 0x5c, 0x7b, 0x5c, 0x7a, 0x5c, 0x79, 0x54, 0x59, 0x54, 0x38, 0x54, 0x18, 0x4b, 0xf7, 0x4b, 0xf7, 0x54, 0x18, 0x54, 0x38, 0x5c, 0x9a, 0x6c, 0xfd, 0x7d, 0x9e, 0x85, 0xfe, 0x96, 0x9e, 0x96, 0x7c, 0x64, 0x56, 0x4b, 0x54, 0x4b, 0x74, 0x4b, 0x54, 0x4b, 0x54, 0x43, 0x54, 0x43, 0x34, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x32, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x93, 0x2a, 0x93, 0x2a, 0x93, 0x2a, 0x93, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd4, 0x32, 0xd3, 0x32, 0xb2, 0x54, 0x39, 0x64, 0xbd, 0x5c, 0x9c, 0x54, 0x5a, 0x54, 0x19, 0x4b, 0xf8, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf8, 0x4b, 0xf8, 0x54, 0x38, 0x54, 0x39, 0x54, 0x59, 0x5c, 0x7a, 0x5c, 0x9c, 0x64, 0xdd, 0x6c, 0xfd, 0x6d, 0x1d, 0x75, 0x3c, 0x75, 0x5c, 0x75, 0x5b, 0x75, 0x3b, 0x75, 0x3a, 0x6d, 0x1a, 0x6c, 0xda, 0x64, 0xba, 0x5c, 0x79, 0x54, 0x59, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0x96, 0x4b, 0xf8, 0x4b, 0xf8, 0x43, 0xf8, 0x43, 0xf7, 0x43, 0xd7, + 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xb7, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0x96, 0x43, 0x96, 0x3b, 0x96, 0x3b, 0x76, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x3a, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x3b, 0x34, 0x43, 0xd7, 0x44, 0x38, 0x44, 0x38, 0x44, 0x38, 0x44, 0x18, 0x44, 0x39, 0x4c, 0x38, 0x4c, 0x39, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x44, 0x38, 0x44, 0x17, 0x44, 0x17, 0x43, 0xf7, 0x44, 0x17, 0x44, 0x17, 0x44, 0x17, 0x44, 0x17, 0x44, 0x17, 0x44, 0x17, 0x44, 0x17, 0x4c, 0x37, 0x4c, 0x38, 0x44, 0x18, 0x44, 0x38, 0x4c, 0x38, 0x4c, 0x58, 0x43, 0xd6, 0x3b, 0x54, 0x3b, 0x55, 0x33, 0x54, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x13, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xb3, 0x2a, 0xd3, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x22, 0xb2, 0x22, 0xb2, 0x22, 0xb2, 0x22, 0xb2, 0x22, 0xb2, 0x22, 0xb2, 0x22, 0xd2, 0x32, 0xf4, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x58, 0x4b, 0xf6, 0x43, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x75, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x3a, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0x71, 0x43, 0x96, 0x5c, 0x7b, 0x5c, 0x9c, 0x5c, 0x9b, 0x5c, 0x59, 0x54, 0x39, 0x54, 0x18, 0x4b, 0xf7, 0x54, 0x17, 0x54, 0x17, 0x54, 0x38, 0x5c, 0x79, 0x64, 0xdc, 0x75, 0x5e, 0x7d, 0x9e, 0x8e, 0x3e, 0x6c, 0xf8, 0x4b, 0x94, 0x4b, 0x54, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x43, 0x54, 0x43, 0x34, 0x43, 0x34, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xb3, 0x2a, 0x93, 0x2a, 0x93, 0x2a, 0x93, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd4, 0x2a, 0x92, 0x2a, 0x92, 0x3b, 0x56, 0x64, 0xdc, 0x64, 0xdd, 0x5c, 0x7b, 0x54, 0x39, 0x4c, 0x18, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4c, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x59, 0x5c, 0x7a, 0x5c, 0x9b, 0x64, 0xdd, 0x6c, 0xdd, 0x6c, 0xfc, 0x6d, 0x1c, 0x6d, 0x3b, 0x75, 0x3b, 0x75, 0x1b, 0x6c, 0xfa, 0x6c, 0xda, 0x64, 0xba, 0x64, 0x99, 0x5c, 0x59, 0x53, 0xf8, 0x4b, 0xd7, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x18, 0x4b, 0xf8, 0x43, 0xd7, 0x43, 0xd7, + 0x43, 0xd7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x76, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x43, 0x96, 0x44, 0x18, 0x44, 0x19, 0x44, 0x38, 0x44, 0x39, 0x44, 0x18, 0x44, 0x38, 0x44, 0x38, 0x4c, 0x39, 0x4c, 0x39, 0x4c, 0x39, 0x44, 0x18, 0x4c, 0x17, 0x43, 0xf7, 0x44, 0x17, 0x44, 0x38, 0x44, 0x17, 0x44, 0x38, 0x44, 0x18, 0x44, 0x17, 0x4c, 0x38, 0x44, 0x18, 0x4c, 0x38, 0x44, 0x37, 0x4c, 0x58, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x78, 0x4c, 0x58, 0x4c, 0x38, 0x4c, 0x18, 0x43, 0xd6, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x34, 0x33, 0x34, 0x3b, 0x34, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x13, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xb2, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb2, 0x22, 0xb3, 0x22, 0xb3, 0x22, 0xb3, 0x22, 0xb3, 0x2a, 0xb3, 0x2a, 0xb2, 0x32, 0xf4, 0x43, 0x96, 0x43, 0xd7, 0x43, 0xd6, 0x43, 0xd7, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x18, 0x4b, 0xf7, 0x4b, 0xb6, 0x43, 0x95, 0x4b, 0x95, 0x43, 0x75, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x53, 0xd7, 0x5c, 0x9b, 0x5c, 0x7a, 0x5c, 0x7a, 0x54, 0x39, 0x54, 0x18, 0x4c, 0x18, 0x54, 0x18, 0x54, 0x17, 0x54, 0x18, 0x54, 0x38, 0x5c, 0x9a, 0x6c, 0xfd, 0x75, 0x5e, 0x85, 0xbd, 0x53, 0xf6, 0x43, 0x54, 0x4b, 0x74, 0x4b, 0x94, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x54, 0x43, 0x54, 0x43, 0x34, 0x3b, 0x13, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xb3, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0x93, 0x2a, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0x92, 0x2a, 0x71, 0x32, 0xf3, 0x5c, 0x7a, 0x6c, 0xfd, 0x64, 0xbc, 0x54, 0x5a, 0x54, 0x18, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf8, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x59, 0x5c, 0x7a, 0x5c, 0x9b, 0x64, 0xbc, 0x64, 0xdc, 0x6c, 0xdc, 0x6c, 0xfc, 0x6c, 0xfb, 0x6c, 0xda, 0x6c, 0xda, 0x64, 0xba, 0x64, 0xba, 0x5c, 0x79, 0x5c, 0x39, 0x54, 0x18, 0x4b, 0xf8, 0x4c, 0x39, 0x4c, 0x18, 0x4b, 0xf8, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xd7, + 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x96, 0x43, 0x96, 0x3b, 0x76, 0x43, 0x76, 0x3b, 0x75, 0x43, 0x76, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x43, 0xd7, 0x4c, 0x39, 0x4c, 0x39, 0x4c, 0x39, 0x44, 0x38, 0x44, 0x18, 0x44, 0x38, 0x44, 0x18, 0x44, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x43, 0xf8, 0x4c, 0x18, 0x43, 0xf7, 0x4c, 0x17, 0x44, 0x17, 0x44, 0x38, 0x4c, 0x58, 0x44, 0x38, 0x4c, 0x38, 0x4c, 0x58, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x78, 0x4c, 0x78, 0x4c, 0x79, 0x4c, 0x58, 0x4c, 0x58, 0x4c, 0x58, 0x4c, 0x58, 0x43, 0xd7, 0x3b, 0x75, 0x43, 0x96, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x13, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x22, 0xb3, 0x22, 0xd3, 0x22, 0xd3, 0x2a, 0xf3, 0x2a, 0xd3, 0x32, 0xf3, 0x43, 0xb6, 0x4b, 0xd7, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xd7, 0x43, 0x76, 0x43, 0x96, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0xb2, 0x53, 0xf8, 0x5c, 0x7a, 0x54, 0x39, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x59, 0x64, 0xbc, 0x75, 0x5e, 0x5c, 0x58, 0x43, 0x74, 0x43, 0x54, 0x4b, 0x74, 0x4b, 0x94, 0x4b, 0x94, 0x4b, 0x94, 0x4b, 0x94, 0x4b, 0x94, 0x4b, 0x74, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x3b, 0x14, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x2a, 0x93, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xb2, 0x2a, 0x72, 0x2a, 0xb2, 0x2a, 0x72, 0x4b, 0xd6, 0x6c, 0xfd, 0x64, 0xdd, 0x5c, 0x7b, 0x54, 0x39, 0x4c, 0x18, 0x4b, 0xf8, 0x4b, 0xf8, 0x54, 0x18, 0x4b, 0xf8, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x39, 0x5c, 0x59, 0x5c, 0x7a, 0x5c, 0x9b, 0x64, 0xbc, 0x64, 0xbc, 0x64, 0xdb, 0x64, 0xdb, 0x64, 0xba, 0x64, 0xba, 0x64, 0x7a, 0x5c, 0x59, 0x5c, 0x38, 0x54, 0x18, 0x54, 0x59, 0x4c, 0x39, 0x4c, 0x18, 0x43, 0xf8, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, + 0x43, 0xb7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x96, 0x43, 0x96, 0x3b, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x43, 0x55, 0x43, 0x96, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x39, 0x4c, 0x59, 0x4c, 0x39, 0x4c, 0x39, 0x4c, 0x38, 0x44, 0x18, 0x4c, 0x39, 0x44, 0x18, 0x43, 0xf8, 0x43, 0xd7, 0x44, 0x18, 0x44, 0x18, 0x44, 0x18, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x38, 0x44, 0x38, 0x4c, 0x58, 0x44, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x58, 0x4c, 0x78, 0x4c, 0x79, 0x54, 0x99, 0x54, 0x99, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x99, 0x4b, 0xf7, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x33, 0x14, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x2a, 0xd3, 0x2a, 0xf3, 0x2a, 0xf3, 0x32, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xf3, 0x2a, 0xf3, 0x3b, 0x75, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x18, 0x4b, 0xf7, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf3, 0x33, 0x13, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x32, 0x92, 0x22, 0x30, 0x3a, 0xf2, 0x5c, 0x59, 0x5c, 0x7a, 0x54, 0x18, 0x4b, 0xf8, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x54, 0x38, 0x5c, 0x7a, 0x64, 0xdb, 0x4b, 0xb6, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x74, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x94, 0x4b, 0x74, 0x43, 0x54, 0x43, 0x34, 0x43, 0x14, 0x3a, 0xf3, 0x3a, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x3a, 0xd2, 0x3a, 0xf2, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0xb2, 0x5c, 0x5a, 0x64, 0xdc, 0x64, 0xbc, 0x54, 0x5a, 0x54, 0x19, 0x4c, 0x18, 0x4b, 0xf8, 0x4b, 0xf8, 0x53, 0xf8, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x39, 0x5c, 0x59, 0x5c, 0x5a, 0x5c, 0x9a, 0x64, 0x9a, 0x64, 0x9b, 0x64, 0xbb, 0x64, 0x9a, 0x5c, 0x7a, 0x5c, 0x59, 0x5c, 0x59, 0x54, 0x38, 0x54, 0x79, 0x54, 0x59, 0x4c, 0x39, 0x4c, 0x18, 0x4b, 0xf8, 0x43, 0xd7, 0x43, 0xb7, 0x43, 0xd7, + 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x55, 0x43, 0xb6, 0x4c, 0x18, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x39, 0x4c, 0x39, 0x4c, 0x39, 0x4c, 0x38, 0x43, 0xf8, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x4c, 0x18, 0x44, 0x18, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x58, 0x4c, 0x38, 0x4c, 0x58, 0x4c, 0x58, 0x4c, 0x58, 0x4c, 0x78, 0x4c, 0x79, 0x4c, 0x79, 0x54, 0x78, 0x54, 0x9a, 0x54, 0xba, 0x54, 0xba, 0x54, 0xba, 0x54, 0xba, 0x54, 0xba, 0x5c, 0xdb, 0x4c, 0x38, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x13, 0x32, 0xf3, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2b, 0x14, 0x2a, 0xf3, 0x32, 0xf4, 0x3b, 0x55, 0x43, 0xd7, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4b, 0xd7, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x92, 0x54, 0x39, 0x5c, 0x7a, 0x54, 0x39, 0x4c, 0x18, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xb7, 0x43, 0x96, 0x43, 0xb6, 0x54, 0x18, 0x4b, 0xd7, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x54, 0x4b, 0x75, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x75, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x72, 0x32, 0x92, 0x32, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x3a, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x2a, 0xb3, 0x2a, 0xb2, 0x2a, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x3a, 0xf4, 0x5c, 0x39, 0x64, 0xdd, 0x5c, 0x9b, 0x54, 0x39, 0x54, 0x18, 0x4b, 0xf8, 0x54, 0x18, 0x4c, 0x18, 0x53, 0xf8, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x5c, 0x39, 0x5c, 0x59, 0x5c, 0x59, 0x5c, 0x59, 0x5c, 0x79, 0x5c, 0x59, 0x64, 0x9a, 0x5c, 0x58, 0x5c, 0x39, 0x5c, 0x7a, 0x54, 0x5a, 0x54, 0x39, 0x4c, 0x18, 0x4b, 0xf8, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xb7, 0x43, 0xb7, + 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x4b, 0xf7, 0x5c, 0x9b, 0x54, 0x58, 0x54, 0x39, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x39, 0x54, 0x39, 0x4c, 0x39, 0x4c, 0x38, 0x4c, 0x18, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xd7, 0x44, 0x18, 0x4b, 0xf8, 0x4b, 0xf7, 0x4c, 0x38, 0x4c, 0x99, 0x54, 0x79, 0x4c, 0x58, 0x54, 0x79, 0x54, 0x79, 0x4c, 0x59, 0x54, 0xb9, 0x5c, 0x9a, 0x5c, 0xbb, 0x5c, 0xdb, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x65, 0x1c, 0x5c, 0xfb, 0x5c, 0x99, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x13, 0x33, 0x14, 0x33, 0x14, 0x33, 0x13, 0x33, 0x14, 0x33, 0x14, 0x2b, 0x14, 0x2b, 0x14, 0x2b, 0x14, 0x2b, 0x14, 0x2a, 0xf4, 0x2b, 0x14, 0x2b, 0x14, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x3b, 0x75, 0x4c, 0x18, 0x4c, 0x39, 0x54, 0x39, 0x4b, 0xf7, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x22, 0x30, 0x2a, 0x71, 0x54, 0x39, 0x5c, 0x9b, 0x54, 0x39, 0x54, 0x38, 0x4b, 0xf8, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x43, 0x34, 0x43, 0x75, 0x4b, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x34, 0x3b, 0x13, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x2a, 0xb2, 0x54, 0x39, 0x64, 0xbc, 0x5c, 0x5a, 0x54, 0x39, 0x54, 0x19, 0x4b, 0xf8, 0x53, 0xf8, 0x53, 0xf8, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x5c, 0x38, 0x5c, 0x38, 0x5c, 0x38, 0x5c, 0x59, 0x64, 0x9a, 0x54, 0x38, 0x5c, 0x7a, 0x54, 0x7a, 0x54, 0x59, 0x4c, 0x38, 0x4c, 0x18, 0x4b, 0xf7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xb7, + 0x43, 0x96, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb7, 0x43, 0xb6, 0x4b, 0xb6, 0x43, 0xb6, 0x54, 0x38, 0x5c, 0xbc, 0x5c, 0xbd, 0x5c, 0xbc, 0x5c, 0x7a, 0x54, 0x59, 0x54, 0x39, 0x54, 0x59, 0x4c, 0x39, 0x54, 0x39, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x58, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x44, 0x17, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0xd7, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xf7, 0x4c, 0x79, 0x4c, 0x59, 0x4c, 0x79, 0x4c, 0x79, 0x54, 0x79, 0x54, 0xba, 0x54, 0xba, 0x54, 0x9a, 0x5c, 0xdb, 0x5c, 0xfc, 0x65, 0x3d, 0x5d, 0x1d, 0x65, 0x3c, 0x65, 0x3d, 0x65, 0x3d, 0x6d, 0x5d, 0x5c, 0xda, 0x54, 0x58, 0x54, 0x79, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, 0x34, 0x33, 0x14, 0x33, 0x34, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x2b, 0x14, 0x2b, 0x14, 0x2b, 0x14, 0x2b, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x3b, 0x34, 0x43, 0xb6, 0x4c, 0x39, 0x4b, 0xf8, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x91, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x10, 0x32, 0xd3, 0x54, 0x18, 0x54, 0x7a, 0x54, 0x59, 0x54, 0x38, 0x4b, 0xf8, 0x4b, 0xd7, 0x43, 0xb7, 0x43, 0x75, 0x3b, 0x14, 0x3a, 0xf3, 0x3b, 0x14, 0x3b, 0x14, 0x3a, 0xf4, 0x3b, 0x14, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x93, 0x2a, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0x72, 0x2a, 0xb2, 0x4b, 0xd6, 0x5c, 0x7b, 0x54, 0x59, 0x54, 0x19, 0x53, 0xf8, 0x53, 0xf8, 0x53, 0xf8, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x5c, 0x39, 0x5c, 0x59, 0x5c, 0xbc, 0x54, 0x59, 0x54, 0x59, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xd7, 0x43, 0xb7, 0x43, 0xb7, + 0x43, 0xd7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xf7, 0x4c, 0x19, 0x4c, 0x39, 0x54, 0x7b, 0x54, 0xdc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0x9b, 0x5c, 0x9a, 0x54, 0x79, 0x54, 0x59, 0x54, 0x59, 0x54, 0x39, 0x54, 0x59, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4b, 0xf7, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xd7, 0x4c, 0x18, 0x4b, 0xf7, 0x4c, 0x59, 0x54, 0x99, 0x54, 0x99, 0x54, 0x99, 0x54, 0xba, 0x54, 0xbb, 0x54, 0xba, 0x5c, 0xfc, 0x5c, 0xfc, 0x65, 0x3d, 0x65, 0x3d, 0x6d, 0x7e, 0x6d, 0x7e, 0x6d, 0x7d, 0x6d, 0x9d, 0x6d, 0x7d, 0x6d, 0x1c, 0x5c, 0x9a, 0x64, 0xba, 0x5c, 0xba, 0x5c, 0x99, 0x54, 0x58, 0x54, 0x38, 0x54, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x2b, 0x34, 0x2b, 0x34, 0x2b, 0x34, 0x33, 0x54, 0x33, 0x54, 0x33, 0x54, 0x3b, 0x55, 0x33, 0x34, 0x3b, 0x55, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x51, 0x19, 0xef, 0x2a, 0x71, 0x4b, 0xf8, 0x5c, 0x7a, 0x54, 0x59, 0x54, 0x38, 0x54, 0x18, 0x4b, 0xf7, 0x43, 0x75, 0x3b, 0x14, 0x3a, 0xf4, 0x3a, 0xf3, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x34, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x93, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x2a, 0xb2, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0xb2, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xf7, 0x5c, 0x59, 0x54, 0x39, 0x54, 0x38, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x53, 0xf8, 0x54, 0x38, 0x5c, 0x59, 0x5c, 0x7b, 0x5c, 0x9b, 0x54, 0x7a, 0x54, 0x38, 0x54, 0x18, 0x54, 0x18, 0x4b, 0xf8, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xd7, 0x43, 0xb7, + 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x39, 0x4c, 0x39, 0x54, 0x9a, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0xbb, 0x5c, 0xbb, 0x5c, 0x9c, 0x5c, 0xbb, 0x5c, 0x9b, 0x5c, 0x9a, 0x5c, 0x9a, 0x5c, 0x79, 0x54, 0x59, 0x54, 0x59, 0x54, 0x39, 0x54, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x38, 0x54, 0x79, 0x54, 0x99, 0x5c, 0xbb, 0x5c, 0xfb, 0x5c, 0xfc, 0x5c, 0xfc, 0x65, 0x1d, 0x6d, 0x3d, 0x6d, 0x7d, 0x6d, 0xbd, 0x6d, 0xbe, 0x75, 0xbe, 0x75, 0xbd, 0x75, 0xfe, 0x76, 0x1e, 0x75, 0x9d, 0x64, 0xfd, 0x6d, 0x1d, 0x65, 0x1d, 0x64, 0xdc, 0x5c, 0xba, 0x5c, 0x79, 0x5c, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x37, 0x54, 0x17, 0x4c, 0x17, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x33, 0x55, 0x33, 0x54, 0x33, 0x55, 0x33, 0x54, 0x33, 0x54, 0x33, 0x54, 0x33, 0x54, 0x33, 0x54, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xd2, 0x2a, 0xd2, 0x2a, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0x92, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x31, 0x22, 0x30, 0x1a, 0x10, 0x22, 0x51, 0x4b, 0x96, 0x5c, 0x59, 0x5c, 0x59, 0x5c, 0x58, 0x53, 0xf7, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x3a, 0xf4, 0x32, 0xf3, 0x3b, 0x14, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x34, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x2a, 0xb3, 0x32, 0xb3, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xd3, 0x3b, 0x14, 0x3b, 0x55, 0x4b, 0xb6, 0x54, 0x38, 0x5c, 0x7a, 0x5c, 0x39, 0x54, 0x18, 0x5c, 0x59, 0x5c, 0x7a, 0x5c, 0x9a, 0x5c, 0x7a, 0x54, 0x7a, 0x54, 0x39, 0x54, 0x18, 0x4c, 0x18, 0x4b, 0xf8, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, + 0x4b, 0xf7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xf8, 0x44, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x5b, 0x54, 0x9b, 0x5c, 0x9b, 0x54, 0x9b, 0x5c, 0x9b, 0x5c, 0x7a, 0x5c, 0xba, 0x5c, 0x99, 0x5c, 0x9a, 0x54, 0x79, 0x54, 0x59, 0x54, 0x59, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0xb6, 0x43, 0xb7, 0x4b, 0xb7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x39, 0x5c, 0x7a, 0x5c, 0xbc, 0x65, 0x1d, 0x6d, 0x5e, 0x75, 0xbe, 0x75, 0xdd, 0x7d, 0xfd, 0x7e, 0x7e, 0x7e, 0x3d, 0x86, 0x7e, 0x8e, 0xde, 0x7e, 0x5e, 0x75, 0x5d, 0x75, 0x7e, 0x75, 0x7e, 0x6d, 0x3e, 0x6d, 0x1d, 0x64, 0xdb, 0x64, 0xbb, 0x64, 0xbb, 0x5c, 0x9a, 0x5c, 0x79, 0x5c, 0x58, 0x54, 0x58, 0x54, 0x38, 0x54, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x3b, 0x75, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, 0x75, 0x33, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xd2, 0x2a, 0xd2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xd3, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x71, 0x2a, 0x71, 0x22, 0x51, 0x22, 0x30, 0x22, 0x30, 0x19, 0xef, 0x19, 0xef, 0x43, 0x75, 0x5c, 0x59, 0x5c, 0x59, 0x53, 0xf7, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x34, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0x93, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x43, 0x55, 0x4c, 0x38, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x7a, 0x54, 0x39, 0x54, 0x38, 0x54, 0x18, 0x4b, 0xf8, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, + 0x3b, 0xd7, 0x3b, 0xd7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x44, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x58, 0x4c, 0x5a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x9a, 0x5c, 0x9b, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x9a, 0x64, 0xb9, 0x5c, 0x9a, 0x5c, 0x7a, 0x54, 0x79, 0x54, 0x59, 0x54, 0x38, 0x54, 0x38, 0x4b, 0xf7, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb7, 0x4b, 0xb7, 0x54, 0x18, 0x54, 0x38, 0x54, 0x59, 0x5c, 0x7a, 0x5c, 0x9b, 0x5c, 0xbc, 0x64, 0xdd, 0x6d, 0x1e, 0x75, 0x9e, 0x7d, 0xfe, 0x86, 0x3e, 0x86, 0xdd, 0x8f, 0x3d, 0x8f, 0x1c, 0x8e, 0xdd, 0x8e, 0xdd, 0x86, 0x1e, 0x86, 0x1e, 0x7d, 0xbe, 0x7d, 0xbe, 0x7d, 0xbe, 0x75, 0x5e, 0x6d, 0x3e, 0x6d, 0x1d, 0x6c, 0xfc, 0x64, 0xdb, 0x64, 0xba, 0x5c, 0xba, 0x54, 0x58, 0x54, 0x17, 0x53, 0xf7, 0x43, 0x95, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x54, 0x3b, 0x54, 0x43, 0x55, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x53, 0xf7, 0x54, 0x38, 0x5c, 0x58, 0x64, 0x79, 0x64, 0x99, 0x64, 0x79, 0x4b, 0xf7, 0x3b, 0xb6, 0x3b, 0x96, 0x33, 0x75, 0x33, 0x55, 0x33, 0x75, 0x33, 0x75, 0x33, 0x55, 0x33, 0x75, 0x33, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x96, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x3b, 0x14, 0x2a, 0xd3, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xd2, 0x32, 0xd2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x51, 0x22, 0x30, 0x22, 0x10, 0x19, 0xef, 0x19, 0x8d, 0x43, 0x34, 0x5c, 0x59, 0x4b, 0xd7, 0x43, 0x75, 0x43, 0x55, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3a, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x43, 0xb6, 0x3b, 0xb5, 0x3b, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xf7, 0x3b, 0xf7, 0x3b, 0xd7, 0x3b, 0x95, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0xb6, 0x3b, 0xb6, + 0x3b, 0xb6, 0x3b, 0xb6, 0x43, 0xb7, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xf7, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x59, 0x4c, 0x59, 0x54, 0x79, 0x54, 0x7a, 0x5c, 0x9a, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x9a, 0x5c, 0x98, 0x5c, 0xba, 0x5c, 0x9a, 0x54, 0x39, 0x54, 0x18, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb7, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xb7, 0x4b, 0xb7, 0x43, 0xb6, 0x43, 0xb7, 0x4b, 0xd7, 0x54, 0x38, 0x54, 0x59, 0x54, 0x79, 0x5c, 0x9a, 0x5c, 0xbc, 0x64, 0xfd, 0x6d, 0x1e, 0x6d, 0x5d, 0x7d, 0xde, 0x86, 0x3e, 0x86, 0x9e, 0x8e, 0xfe, 0x97, 0x3d, 0x9f, 0x3c, 0xa7, 0x3c, 0x9f, 0x1d, 0x96, 0xfd, 0x96, 0xfe, 0x8e, 0xde, 0x8e, 0xbe, 0x8e, 0x9e, 0x86, 0x5e, 0x7d, 0xbe, 0x7d, 0x9e, 0x75, 0x9e, 0x75, 0x7d, 0x64, 0xba, 0x4b, 0xf7, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x54, 0x18, 0x54, 0x58, 0x5c, 0x59, 0x5c, 0x79, 0x5c, 0x9a, 0x5c, 0x9b, 0x5c, 0x5a, 0x54, 0x39, 0x43, 0xd7, 0x3b, 0x96, 0x33, 0x75, 0x33, 0x55, 0x33, 0x75, 0x33, 0x75, 0x3b, 0x76, 0x3b, 0x96, 0x3b, 0x96, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x34, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xd2, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x22, 0x51, 0x22, 0x30, 0x22, 0x10, 0x21, 0xef, 0x19, 0xcf, 0x19, 0xae, 0x2a, 0x71, 0x43, 0x75, 0x4b, 0x96, 0x43, 0x75, 0x43, 0x55, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x3b, 0x55, 0x43, 0xb6, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x96, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xd6, 0x3b, 0xb6, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x96, 0x3b, 0xb6, + 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xb7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0xf7, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x59, 0x54, 0x39, 0x54, 0x79, 0x5c, 0x9a, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x9a, 0x5c, 0xb9, 0x4b, 0xd6, 0x4b, 0xb6, 0x54, 0x18, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb6, 0x4b, 0xb7, 0x4b, 0xb7, 0x43, 0xb6, 0x4b, 0x97, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x54, 0x38, 0x54, 0x59, 0x5c, 0x7a, 0x5c, 0xbb, 0x64, 0xdd, 0x65, 0x1e, 0x6d, 0x3e, 0x75, 0x9e, 0x86, 0x3e, 0x86, 0x9e, 0x97, 0x3e, 0x9f, 0x3d, 0x9f, 0x3d, 0xa7, 0x3d, 0xaf, 0x3d, 0xaf, 0x3d, 0xa7, 0x3d, 0xa7, 0x3d, 0xa7, 0x3d, 0xa7, 0x3d, 0x9f, 0x3d, 0x9f, 0x3d, 0x96, 0xfd, 0x8e, 0x7e, 0x75, 0x19, 0x3b, 0x14, 0x43, 0x54, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xf7, 0x54, 0x18, 0x54, 0x39, 0x54, 0x5a, 0x5c, 0x7a, 0x5c, 0x9a, 0x54, 0x9b, 0x5c, 0x9b, 0x5c, 0x9b, 0x54, 0x5a, 0x4c, 0x39, 0x3b, 0xd7, 0x33, 0x75, 0x33, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x43, 0xb6, 0x4b, 0xf7, 0x54, 0x17, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x34, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xd3, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xb2, 0x2a, 0xd2, 0x2a, 0xd2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x22, 0x30, 0x22, 0x10, 0x21, 0xef, 0x21, 0xef, 0x19, 0xce, 0x2a, 0x50, 0x32, 0xd3, 0x43, 0x34, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0x92, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xf3, 0x3b, 0x34, 0x3b, 0x75, 0x3b, 0x95, 0x33, 0x54, 0x33, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x33, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x95, 0x3b, 0x55, 0x33, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x96, + 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0xb6, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0xf7, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x38, 0x5c, 0x79, 0x5c, 0x99, 0x5c, 0x7a, 0x5c, 0x59, 0x5c, 0x59, 0x54, 0x17, 0x33, 0x13, 0x3b, 0x34, 0x4b, 0xd7, 0x54, 0x17, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xd7, 0x5c, 0x7a, 0x54, 0x7a, 0x5c, 0x7a, 0x64, 0xbc, 0x64, 0xfd, 0x6d, 0x3e, 0x75, 0x5e, 0x7d, 0xfe, 0x86, 0x9e, 0x8e, 0xfe, 0x97, 0x3c, 0x9f, 0x3d, 0xaf, 0x3d, 0xb7, 0x5e, 0xbf, 0x3d, 0xc7, 0x3e, 0xbf, 0x3e, 0xb7, 0x3d, 0xb7, 0x5d, 0xb7, 0x3d, 0xb7, 0x3e, 0xb7, 0x1d, 0xa6, 0x1b, 0x43, 0x53, 0x3a, 0xf3, 0x43, 0x33, 0x43, 0x34, 0x43, 0x54, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x76, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4c, 0x18, 0x54, 0x18, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x7b, 0x5c, 0x7b, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0xbc, 0x54, 0x9b, 0x54, 0x7b, 0x54, 0x5a, 0x3b, 0xb7, 0x33, 0x96, 0x3b, 0xb6, 0x43, 0xb6, 0x4b, 0xf7, 0x54, 0x17, 0x54, 0x17, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xd3, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xb3, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x31, 0x2a, 0x30, 0x22, 0x10, 0x21, 0xef, 0x19, 0xcf, 0x32, 0x92, 0x3a, 0xd3, 0x32, 0x92, 0x32, 0xb2, 0x43, 0x55, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0xb3, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xd3, 0x33, 0x14, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x33, 0x34, 0x33, 0x54, 0x33, 0x54, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, 0x75, 0x33, 0x75, 0x3b, 0x95, 0x3b, 0x95, 0x33, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, + 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0xb6, 0x3b, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd7, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x54, 0x58, 0x5c, 0x79, 0x54, 0x38, 0x4b, 0xf7, 0x53, 0xf7, 0x5c, 0x38, 0x33, 0x13, 0x33, 0x14, 0x3b, 0x34, 0x4b, 0xf7, 0x54, 0x18, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x5c, 0x9a, 0x5c, 0x9b, 0x5c, 0xbb, 0x64, 0xdc, 0x65, 0x1d, 0x6d, 0x3d, 0x75, 0x9e, 0x86, 0x3e, 0x8e, 0xde, 0x97, 0x1d, 0x9f, 0x3c, 0xa7, 0x3d, 0xb7, 0x3d, 0xbf, 0x3d, 0xd7, 0x3e, 0xdf, 0x3e, 0xdf, 0x3e, 0xd7, 0x5e, 0xdf, 0x5e, 0xd7, 0x3e, 0xae, 0x1b, 0x6c, 0x15, 0x32, 0x71, 0x43, 0x13, 0x43, 0x33, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf8, 0x54, 0x18, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0x9c, 0x5c, 0xbd, 0x5c, 0xbd, 0x54, 0x9c, 0x5c, 0xbd, 0x5c, 0xbd, 0x54, 0x5a, 0x43, 0xd7, 0x43, 0xb6, 0x4c, 0x17, 0x5c, 0x18, 0x54, 0x17, 0x53, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0x95, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x32, 0xf3, 0x3b, 0x34, 0x3b, 0x34, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xb3, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x10, 0x22, 0x0f, 0x19, 0xce, 0x32, 0xb2, 0x3a, 0xf3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x71, 0x32, 0xd3, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x2a, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x34, 0x33, 0x34, 0x32, 0xf3, 0x33, 0x14, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x33, 0x54, 0x33, 0x55, 0x33, 0x55, 0x3b, 0x75, 0x33, 0x55, 0x33, 0x35, 0x33, 0x55, 0x3b, 0x75, + 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x76, 0x3b, 0x96, 0x3b, 0xb6, 0x43, 0xd6, 0x43, 0xb6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x18, 0x54, 0x18, 0x4b, 0xf7, 0x4b, 0xb6, 0x43, 0x96, 0x4b, 0xd7, 0x54, 0x17, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x14, 0x4b, 0xd7, 0x54, 0x18, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0xbc, 0x64, 0xfd, 0x6d, 0x1e, 0x6d, 0x5e, 0x75, 0x9e, 0x86, 0x1e, 0x8e, 0xdd, 0x97, 0x3d, 0x9f, 0x3d, 0xaf, 0x3d, 0xb7, 0x3d, 0xc7, 0x3e, 0xdf, 0x3e, 0xe7, 0x5e, 0xdf, 0x5e, 0xe7, 0x5e, 0xd6, 0xdd, 0x7c, 0x56, 0x4b, 0x13, 0x42, 0xf2, 0x43, 0x13, 0x4b, 0x13, 0x4b, 0x33, 0x43, 0x53, 0x4b, 0x74, 0x4b, 0x94, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x18, 0x54, 0x38, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x9b, 0x64, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0x9c, 0x5c, 0xbd, 0x5c, 0xbd, 0x54, 0x9c, 0x5c, 0x9d, 0x5c, 0xbd, 0x5c, 0x9c, 0x4c, 0x39, 0x4c, 0x17, 0x5c, 0x38, 0x5c, 0x38, 0x54, 0x38, 0x4b, 0xf8, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x33, 0x34, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x2a, 0xd3, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x33, 0x14, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x30, 0x22, 0x10, 0x21, 0xef, 0x21, 0xef, 0x32, 0xd3, 0x3a, 0xf3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0xb2, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x3a, 0xf4, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x14, 0x33, 0x14, 0x2a, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x33, 0x54, 0x33, 0x54, 0x33, 0x34, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, + 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb7, 0x43, 0xd7, 0x43, 0xd7, 0x4b, 0xf7, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x96, 0x4b, 0xd6, 0x3b, 0x34, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x34, 0x53, 0xf7, 0x54, 0x18, 0x53, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x5c, 0x9b, 0x5c, 0x9b, 0x64, 0xdd, 0x65, 0x1e, 0x6d, 0x1e, 0x6d, 0x5e, 0x7d, 0xbe, 0x86, 0x5e, 0x8e, 0xfe, 0x97, 0x3d, 0x9f, 0x3d, 0xaf, 0x3d, 0xbf, 0x3d, 0xc7, 0x3e, 0xdf, 0x3e, 0xe7, 0x5e, 0xdf, 0x3e, 0xb6, 0x1b, 0x53, 0x53, 0x42, 0xf2, 0x43, 0x13, 0x42, 0xf3, 0x43, 0x13, 0x4b, 0x33, 0x4b, 0x53, 0x4b, 0x74, 0x4b, 0x74, 0x4b, 0x94, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x53, 0xf7, 0x54, 0x17, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x9a, 0x5c, 0x9c, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0x9c, 0x54, 0x7a, 0x5c, 0xbc, 0x5c, 0x9d, 0x5c, 0xbd, 0x5c, 0xde, 0x64, 0xde, 0x64, 0xbc, 0x5c, 0x59, 0x5c, 0x38, 0x54, 0x38, 0x54, 0x18, 0x4b, 0xd7, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x33, 0x34, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xd2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x3b, 0x34, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x34, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x10, 0x19, 0xef, 0x2a, 0x71, 0x3a, 0xf4, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x32, 0x92, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x92, 0x32, 0xd3, 0x32, 0xf4, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x2a, 0xd3, 0x2a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x33, 0x54, 0x33, 0x55, 0x3b, 0x55, 0x33, 0x55, + 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb7, 0x43, 0xb6, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x55, 0x43, 0x75, 0x43, 0x76, 0x4b, 0xb6, 0x3b, 0x54, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x34, 0x53, 0xf7, 0x54, 0x38, 0x53, 0xf8, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x64, 0xfd, 0x6d, 0x5e, 0x75, 0x9e, 0x7d, 0xfe, 0x86, 0x3e, 0x8e, 0xfe, 0x97, 0x1d, 0x9f, 0x3d, 0xaf, 0x3d, 0xb7, 0x3d, 0xc7, 0x3e, 0xdf, 0x3e, 0xdf, 0x3e, 0xa5, 0x79, 0x42, 0xd2, 0x42, 0xf3, 0x4b, 0x13, 0x4b, 0x13, 0x4b, 0x13, 0x4b, 0x13, 0x4b, 0x33, 0x4b, 0x54, 0x53, 0x74, 0x53, 0xb5, 0x53, 0xd5, 0x53, 0xf5, 0x53, 0xf6, 0x53, 0xf6, 0x53, 0xf6, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x54, 0x17, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x39, 0x54, 0x39, 0x54, 0x59, 0x5c, 0x7a, 0x5c, 0x9a, 0x5c, 0x9b, 0x5c, 0x9c, 0x54, 0x7b, 0x54, 0x39, 0x54, 0x5a, 0x5c, 0x9b, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xbd, 0x64, 0xde, 0x64, 0xfe, 0x6c, 0xdd, 0x5c, 0x7a, 0x54, 0x38, 0x4c, 0x17, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x33, 0x35, 0x33, 0x34, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x3b, 0x34, 0x4b, 0xb6, 0x43, 0x95, 0x3b, 0x55, 0x3b, 0x55, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x31, 0x22, 0x31, 0x19, 0xcf, 0x32, 0xd3, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x10, 0x21, 0xef, 0x2a, 0x72, 0x3a, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xd2, 0x2a, 0xd3, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x3b, 0x54, 0x3b, 0x55, + 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0x96, 0x3b, 0x55, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x14, 0x53, 0xf7, 0x5c, 0x39, 0x53, 0xf8, 0x53, 0xf8, 0x53, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x64, 0xdc, 0x5c, 0xbc, 0x64, 0xbc, 0x64, 0xfd, 0x6d, 0x3e, 0x75, 0xbe, 0x7e, 0x3e, 0x86, 0x3e, 0x8e, 0x7e, 0x96, 0xfe, 0x9f, 0x3d, 0xa7, 0x3d, 0xaf, 0x3d, 0xbf, 0x3d, 0xce, 0xfd, 0x84, 0xd7, 0x3a, 0xd2, 0x43, 0x13, 0x4b, 0x13, 0x4b, 0x33, 0x4b, 0x13, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x53, 0x53, 0x74, 0x53, 0x94, 0x53, 0xd5, 0x5b, 0xf5, 0x5c, 0x15, 0x5c, 0x16, 0x5c, 0x16, 0x54, 0x16, 0x54, 0x17, 0x54, 0x17, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd6, 0x43, 0xd6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x54, 0x17, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x18, 0x54, 0x38, 0x54, 0x59, 0x54, 0x39, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x39, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x7b, 0x5c, 0x9c, 0x5c, 0xbe, 0x5c, 0xde, 0x64, 0xde, 0x64, 0xfe, 0x6d, 0x1e, 0x6c, 0xfd, 0x5c, 0x7a, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xd7, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0x96, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x33, 0x55, 0x33, 0x34, 0x33, 0x14, 0x33, 0x13, 0x32, 0xf3, 0x2a, 0xf3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xb3, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x3b, 0x54, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xf3, 0x2a, 0xb3, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x22, 0x31, 0x22, 0x10, 0x32, 0xd3, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x30, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x31, 0x2a, 0x92, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xd4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x34, + 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x95, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x13, 0x4b, 0xb6, 0x5c, 0x59, 0x54, 0x18, 0x54, 0x18, 0x53, 0xf8, 0x4b, 0xf8, 0x4b, 0xf7, 0x4b, 0xf7, 0x53, 0xf7, 0x53, 0xf8, 0x64, 0xbc, 0x64, 0xdc, 0x64, 0xbd, 0x64, 0xfd, 0x6d, 0x5e, 0x75, 0x9e, 0x7d, 0xde, 0x86, 0x7e, 0x86, 0x5e, 0x8e, 0xbe, 0x96, 0xfe, 0xa7, 0x5e, 0xaf, 0x5d, 0xb6, 0xdd, 0x63, 0xf4, 0x43, 0x13, 0x43, 0x13, 0x43, 0x13, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x54, 0x53, 0x74, 0x53, 0xb4, 0x5b, 0xd4, 0x5b, 0xd5, 0x5b, 0xf5, 0x5c, 0x15, 0x5c, 0x16, 0x5c, 0x16, 0x5c, 0x37, 0x54, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x54, 0x18, 0x54, 0x38, 0x54, 0x18, 0x54, 0x38, 0x54, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x18, 0x54, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7b, 0x5c, 0x7b, 0x5c, 0xbd, 0x64, 0xde, 0x64, 0xde, 0x6d, 0x1e, 0x6d, 0x1e, 0x64, 0xfe, 0x64, 0xfe, 0x5c, 0x7a, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xd7, 0x43, 0xb6, 0x3b, 0xb6, 0x3b, 0x96, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x33, 0x54, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf3, 0x2a, 0xf3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xd2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x3b, 0x34, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x31, 0x32, 0xf3, 0x3b, 0x34, 0x3a, 0xf4, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x30, 0x22, 0x10, 0x21, 0xf0, 0x19, 0xef, 0x21, 0xef, 0x19, 0xef, 0x22, 0x10, 0x32, 0xb3, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xd3, 0x2a, 0xd2, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, + 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x43, 0x75, 0x32, 0xf3, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x4b, 0xb6, 0x5c, 0x59, 0x54, 0x39, 0x54, 0x38, 0x54, 0x18, 0x53, 0xf8, 0x54, 0x18, 0x53, 0xf8, 0x54, 0x18, 0x64, 0xfd, 0x64, 0xdd, 0x64, 0xdd, 0x75, 0x5d, 0x7d, 0xde, 0x75, 0xbe, 0x75, 0x9e, 0x7d, 0xfe, 0x7e, 0x3e, 0x86, 0x7e, 0x8e, 0xbe, 0x9f, 0x3e, 0x9e, 0xfd, 0x64, 0x56, 0x43, 0x13, 0x43, 0x13, 0x43, 0x13, 0x43, 0x13, 0x43, 0x33, 0x4b, 0x33, 0x4b, 0x53, 0x4b, 0x53, 0x4b, 0x33, 0x4b, 0x53, 0x4b, 0x74, 0x53, 0x94, 0x53, 0xb4, 0x53, 0xd5, 0x53, 0xf5, 0x5b, 0xf5, 0x53, 0xf6, 0x5b, 0xf6, 0x54, 0x16, 0x54, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4b, 0xf8, 0x4c, 0x17, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x39, 0x54, 0x39, 0x4c, 0x38, 0x54, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7b, 0x54, 0x7b, 0x5c, 0x9b, 0x5c, 0xbd, 0x64, 0xfe, 0x65, 0x1e, 0x6d, 0x3e, 0x65, 0x1e, 0x64, 0xfe, 0x64, 0xfe, 0x5c, 0x7a, 0x4b, 0xf7, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xd6, 0x3b, 0xb6, 0x3b, 0x96, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x55, 0x33, 0x54, 0x33, 0x34, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x2a, 0xf4, 0x2a, 0xf3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd2, 0x2a, 0xd2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x33, 0x34, 0x4b, 0xb6, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x95, 0x3b, 0x55, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x33, 0x14, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x51, 0x22, 0x51, 0x3b, 0x14, 0x3b, 0x55, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x30, 0x22, 0x10, 0x21, 0xef, 0x19, 0xef, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xef, 0x2a, 0x51, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x3b, 0x34, + 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf4, 0x3b, 0x14, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x14, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x43, 0x75, 0x54, 0x39, 0x5c, 0x59, 0x5c, 0x39, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x64, 0xdd, 0x64, 0xfd, 0x6d, 0x5d, 0x7d, 0xfe, 0x7d, 0xde, 0x7d, 0xfe, 0x7d, 0xde, 0x75, 0x9e, 0x7d, 0xfe, 0x7e, 0x5e, 0x86, 0x5e, 0x86, 0x3d, 0x64, 0xb7, 0x3a, 0xf2, 0x43, 0x33, 0x43, 0x13, 0x43, 0x13, 0x43, 0x13, 0x43, 0x33, 0x43, 0x33, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x4b, 0x74, 0x4b, 0x94, 0x4b, 0xb4, 0x4b, 0xd5, 0x53, 0xd5, 0x53, 0xd5, 0x4b, 0xd6, 0x4b, 0xf6, 0x53, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x39, 0x54, 0x38, 0x54, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x7b, 0x54, 0x7b, 0x5c, 0x9b, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xdc, 0x6d, 0x1d, 0x6d, 0x5e, 0x65, 0x3e, 0x65, 0x1e, 0x64, 0xfd, 0x54, 0x7a, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xb6, 0x3b, 0xb6, 0x3b, 0x96, 0x3b, 0x75, 0x33, 0x75, 0x33, 0x55, 0x33, 0x55, 0x33, 0x34, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xd3, 0x2a, 0xb3, 0x2a, 0xd2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x33, 0x13, 0x4b, 0xd6, 0x4b, 0xf7, 0x43, 0xb7, 0x43, 0x96, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x33, 0x14, 0x33, 0x14, 0x32, 0xd3, 0x2a, 0xd3, 0x2a, 0xb3, 0x2a, 0x72, 0x2a, 0x72, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x10, 0x21, 0xef, 0x19, 0xef, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x11, 0x8d, 0x11, 0x8e, 0x19, 0xcf, 0x22, 0x10, 0x2a, 0x50, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, + 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3a, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x33, 0x14, 0x53, 0xf7, 0x5c, 0x5a, 0x5c, 0x59, 0x54, 0x59, 0x54, 0x38, 0x54, 0x59, 0x65, 0x1e, 0x65, 0x3e, 0x6d, 0x5e, 0x7d, 0xbe, 0x85, 0xfe, 0x85, 0xfe, 0x7d, 0xfe, 0x7d, 0xde, 0x75, 0xbe, 0x7d, 0xfe, 0x7e, 0x3e, 0x64, 0x97, 0x32, 0xb2, 0x3b, 0x13, 0x3a, 0xf3, 0x3b, 0x13, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x74, 0x43, 0x94, 0x4b, 0xb4, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4c, 0x17, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xd7, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x5a, 0x4c, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x7b, 0x5c, 0x9c, 0x5c, 0x9b, 0x54, 0x7b, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0xbc, 0x65, 0x1d, 0x75, 0x7e, 0x6d, 0x7e, 0x6d, 0x3e, 0x6d, 0x3e, 0x65, 0x1d, 0x54, 0x5a, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0xd7, 0x3b, 0xb6, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x76, 0x3b, 0x75, 0x33, 0x55, 0x33, 0x55, 0x33, 0x54, 0x33, 0x34, 0x33, 0x34, 0x2b, 0x14, 0x2b, 0x14, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xb3, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x33, 0x13, 0x4b, 0xd6, 0x4c, 0x17, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x2a, 0xd3, 0x2a, 0x92, 0x2a, 0xb3, 0x3b, 0x55, 0x43, 0x75, 0x3b, 0x34, 0x33, 0x14, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x10, 0x21, 0xef, 0x19, 0xef, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x11, 0xae, 0x11, 0xae, 0x11, 0x8e, 0x11, 0x8d, 0x11, 0xae, 0x11, 0xae, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xef, 0x21, 0xf0, 0x21, 0xf0, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x10, 0x1a, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0xf3, + 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x32, 0xb2, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x14, 0x3a, 0xf3, 0x32, 0xf3, 0x3a, 0xd3, 0x3a, 0xf3, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x92, 0x32, 0xb1, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x43, 0x75, 0x5c, 0x9a, 0x5c, 0x7a, 0x5c, 0x59, 0x5c, 0x9b, 0x6d, 0x3e, 0x65, 0x1e, 0x6d, 0x3e, 0x75, 0x9e, 0x7d, 0xbe, 0x85, 0xfe, 0x86, 0x1e, 0x85, 0xfe, 0x7e, 0x1e, 0x7d, 0xde, 0x6d, 0x18, 0x2a, 0x91, 0x3b, 0x13, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x43, 0x54, 0x43, 0x74, 0x43, 0x94, 0x43, 0x95, 0x4b, 0x95, 0x4b, 0xb5, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0xf8, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x39, 0x54, 0x39, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0x9b, 0x54, 0x39, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9c, 0x5c, 0xbd, 0x5c, 0x9b, 0x54, 0x79, 0x54, 0x59, 0x54, 0x59, 0x54, 0x9a, 0x64, 0xfd, 0x6d, 0x7e, 0x6d, 0x7e, 0x75, 0x9e, 0x6d, 0x7e, 0x6d, 0x5e, 0x65, 0x1d, 0x54, 0x79, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xb7, 0x3b, 0xb6, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x96, 0x33, 0x75, 0x33, 0x55, 0x33, 0x55, 0x33, 0x54, 0x33, 0x34, 0x2b, 0x34, 0x2b, 0x14, 0x2b, 0x14, 0x2b, 0x13, 0x2a, 0xf3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x33, 0x13, 0x4b, 0xd7, 0x4c, 0x18, 0x4b, 0xf7, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0x96, 0x3b, 0x75, 0x3b, 0x76, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x33, 0x14, 0x32, 0xf4, 0x2a, 0xd3, 0x32, 0xf3, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x35, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x22, 0x10, 0x21, 0xf0, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x11, 0xae, 0x19, 0xae, 0x11, 0xae, 0x11, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xef, 0x21, 0xef, 0x21, 0xef, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x21, 0xef, 0x19, 0xef, 0x21, 0xef, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x92, 0x32, 0x91, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, + 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xd3, 0x32, 0xb2, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x5c, 0x38, 0x5c, 0x7a, 0x64, 0xdc, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x5e, 0x6d, 0x3e, 0x75, 0xbe, 0x75, 0xde, 0x86, 0x1e, 0x7e, 0x3e, 0x7e, 0x1e, 0x75, 0xdd, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x54, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xb7, 0x43, 0xd7, 0x43, 0xd7, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x39, 0x54, 0x39, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0x9b, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0xbc, 0x5c, 0xbd, 0x5c, 0xdd, 0x5c, 0xdc, 0x5c, 0xbb, 0x5c, 0xbb, 0x54, 0xbb, 0x54, 0x9a, 0x54, 0x7a, 0x5c, 0xbb, 0x6d, 0x3d, 0x6d, 0x7e, 0x6d, 0x7e, 0x75, 0x9e, 0x75, 0x9e, 0x6d, 0x5e, 0x64, 0xfd, 0x4c, 0x59, 0x43, 0xf7, 0x43, 0xd7, 0x43, 0xb7, 0x3b, 0xb7, 0x3b, 0xb6, 0x3b, 0x96, 0x3b, 0x96, 0x33, 0x75, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, 0x34, 0x33, 0x34, 0x33, 0x34, 0x33, 0x14, 0x2a, 0xf3, 0x2a, 0xd3, 0x2a, 0xf3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd2, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xf3, 0x4b, 0xd7, 0x4c, 0x38, 0x4c, 0x17, 0x54, 0x17, 0x4b, 0xf7, 0x43, 0xd7, 0x43, 0xb6, 0x3b, 0x96, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x55, 0x3b, 0x55, 0x33, 0x35, 0x33, 0x14, 0x3b, 0x34, 0x43, 0x96, 0x4b, 0xb7, 0x43, 0x75, 0x3b, 0x35, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x10, 0x21, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xae, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x11, 0xae, 0x11, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x22, 0x0f, 0x21, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, + 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x3a, 0xd3, 0x32, 0xb2, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x91, 0x32, 0x91, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x43, 0x75, 0x64, 0xfc, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x3e, 0x6d, 0x5e, 0x75, 0x5e, 0x75, 0x9e, 0x75, 0xde, 0x7d, 0xfe, 0x75, 0xbc, 0x43, 0x94, 0x3a, 0xf3, 0x3b, 0x13, 0x43, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x32, 0xf3, 0x33, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xf7, 0x4c, 0x18, 0x4c, 0x39, 0x4c, 0x39, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0xbc, 0x5c, 0xdd, 0x64, 0xfd, 0x64, 0xfd, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0x1d, 0x64, 0xfd, 0x5c, 0xdd, 0x5c, 0xbc, 0x54, 0xbb, 0x64, 0xfd, 0x6d, 0x5e, 0x6d, 0x9e, 0x6d, 0x7e, 0x75, 0x9e, 0x6d, 0x7e, 0x6d, 0x3e, 0x5c, 0xbb, 0x4c, 0x38, 0x44, 0x18, 0x43, 0xf7, 0x43, 0xd7, 0x3b, 0xd7, 0x3b, 0xb6, 0x3b, 0x96, 0x33, 0x96, 0x33, 0x75, 0x33, 0x75, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, 0x34, 0x2b, 0x14, 0x2b, 0x14, 0x2b, 0x14, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xb2, 0x2a, 0xb2, 0x43, 0xb6, 0x54, 0x58, 0x54, 0x38, 0x54, 0x17, 0x54, 0x17, 0x53, 0xf7, 0x43, 0xd7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0x96, 0x3b, 0x96, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x55, 0x3b, 0x75, 0x4b, 0xd7, 0x4b, 0xf7, 0x43, 0xb6, 0x3b, 0x55, 0x3b, 0x34, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x19, 0xef, 0x19, 0xef, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xf0, 0x21, 0xef, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, + 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x70, 0x2a, 0x71, 0x32, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x54, 0x37, 0x5c, 0xb9, 0x6d, 0x3c, 0x75, 0x9e, 0x6d, 0x7e, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0xbe, 0x75, 0x9d, 0x64, 0xb8, 0x3a, 0xd2, 0x43, 0x33, 0x43, 0x33, 0x43, 0x53, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x33, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xf7, 0x43, 0xf8, 0x4c, 0x18, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x7b, 0x5c, 0x9b, 0x5c, 0x9c, 0x5c, 0xdc, 0x65, 0x1d, 0x6d, 0x5e, 0x6d, 0x7e, 0x75, 0x9e, 0x75, 0x7e, 0x6d, 0x7e, 0x6d, 0x5e, 0x65, 0x1d, 0x5c, 0xdd, 0x64, 0xfe, 0x6d, 0x3e, 0x6d, 0x7e, 0x6d, 0x9e, 0x65, 0x3e, 0x6d, 0x7e, 0x75, 0x9e, 0x6d, 0x5e, 0x54, 0x9a, 0x44, 0x17, 0x4c, 0x18, 0x44, 0x18, 0x43, 0xf7, 0x3b, 0xd7, 0x3b, 0xb7, 0x33, 0x96, 0x33, 0x96, 0x33, 0x96, 0x33, 0x75, 0x33, 0x75, 0x33, 0x55, 0x33, 0x55, 0x33, 0x34, 0x2b, 0x34, 0x2b, 0x14, 0x2b, 0x14, 0x2a, 0xf4, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x22, 0x92, 0x43, 0x76, 0x54, 0x59, 0x54, 0x38, 0x54, 0x38, 0x5c, 0x37, 0x54, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xd7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xb6, 0x54, 0x18, 0x54, 0x18, 0x4b, 0xd7, 0x43, 0x96, 0x3b, 0x55, 0x33, 0x34, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x2a, 0xb3, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x21, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xef, 0x21, 0xef, 0x19, 0xcf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x32, 0x92, + 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xd3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x43, 0x54, 0x43, 0x34, 0x43, 0x34, 0x3a, 0xf3, 0x32, 0xb2, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xd2, 0x43, 0x34, 0x54, 0x37, 0x54, 0x17, 0x54, 0x57, 0x64, 0xd9, 0x75, 0x9e, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0x5c, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3a, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x33, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0xd6, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xf7, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x54, 0x5a, 0x54, 0x7b, 0x54, 0x7a, 0x54, 0x7a, 0x5c, 0xbb, 0x64, 0xfd, 0x6d, 0x3e, 0x75, 0x7e, 0x75, 0xde, 0x7e, 0x3e, 0x86, 0x7e, 0x7e, 0x5e, 0x75, 0xfe, 0x6d, 0x9e, 0x65, 0x3e, 0x65, 0x3e, 0x6d, 0x3e, 0x65, 0x1e, 0x65, 0x5e, 0x6d, 0x5e, 0x6d, 0x5e, 0x75, 0x9e, 0x75, 0xbe, 0x6d, 0x3d, 0x54, 0x99, 0x4c, 0x38, 0x4c, 0x38, 0x44, 0x18, 0x43, 0xf7, 0x3b, 0xd7, 0x3b, 0xd7, 0x3b, 0xb6, 0x33, 0x96, 0x33, 0x96, 0x33, 0x96, 0x33, 0x75, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, 0x35, 0x2b, 0x34, 0x2b, 0x14, 0x2b, 0x14, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xd3, 0x2a, 0xb3, 0x33, 0x14, 0x4c, 0x18, 0x54, 0x59, 0x54, 0x58, 0x54, 0x38, 0x54, 0x37, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x54, 0x17, 0x5c, 0x79, 0x5c, 0x59, 0x54, 0x18, 0x4b, 0xd7, 0x43, 0x96, 0x3b, 0x55, 0x3b, 0x34, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x31, 0x22, 0x10, 0x19, 0xf0, 0x19, 0xef, 0x21, 0xef, 0x19, 0xef, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x31, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x71, + 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xd3, 0x3a, 0xf3, 0x3a, 0xf4, 0x3b, 0x14, 0x43, 0x55, 0x43, 0x75, 0x43, 0x96, 0x4b, 0x96, 0x4b, 0xb6, 0x53, 0xf7, 0x4b, 0xb6, 0x43, 0x54, 0x3b, 0x13, 0x3a, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x43, 0x54, 0x54, 0x17, 0x54, 0x57, 0x54, 0x57, 0x5c, 0x78, 0x5c, 0x57, 0x64, 0xfa, 0x75, 0xbd, 0x7d, 0xdd, 0x5c, 0x35, 0x32, 0xb2, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x13, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x79, 0x54, 0x9b, 0x5c, 0xdc, 0x5d, 0x1d, 0x6d, 0x5e, 0x75, 0xde, 0x86, 0x7e, 0x8e, 0xfd, 0x8f, 0x3d, 0x8f, 0x3d, 0x8e, 0xfe, 0x86, 0x7e, 0x75, 0xde, 0x6d, 0x7e, 0x6d, 0x7e, 0x6d, 0x3e, 0x65, 0x1e, 0x65, 0x3e, 0x65, 0x3e, 0x6d, 0x9e, 0x75, 0xfe, 0x75, 0xbe, 0x5c, 0xfb, 0x4c, 0x58, 0x4c, 0x58, 0x4c, 0x58, 0x44, 0x38, 0x44, 0x18, 0x3b, 0xf7, 0x3b, 0xd7, 0x3b, 0xb7, 0x3b, 0xb6, 0x33, 0x96, 0x33, 0x96, 0x33, 0x76, 0x33, 0x75, 0x33, 0x75, 0x33, 0x55, 0x33, 0x35, 0x2b, 0x34, 0x33, 0x34, 0x33, 0x14, 0x2b, 0x14, 0x2a, 0xf4, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xd3, 0x2a, 0xd3, 0x4b, 0xf7, 0x5c, 0x7a, 0x54, 0x59, 0x54, 0x58, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x5c, 0x79, 0x64, 0xba, 0x64, 0x9a, 0x54, 0x59, 0x54, 0x18, 0x4b, 0xb7, 0x43, 0x96, 0x3b, 0x55, 0x3b, 0x35, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x2a, 0xb3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x31, 0x22, 0x10, 0x19, 0xf0, 0x19, 0xef, 0x21, 0xef, 0x21, 0xef, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xef, 0x19, 0xcf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xef, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xf0, 0x19, 0xef, 0x21, 0xf0, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, + 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xd3, 0x32, 0xd3, 0x3a, 0xf3, 0x3a, 0xf4, 0x3b, 0x14, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x53, 0xf7, 0x54, 0x18, 0x54, 0x17, 0x4b, 0x95, 0x4b, 0x75, 0x43, 0x34, 0x32, 0xb2, 0x43, 0x54, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x57, 0x5c, 0x58, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0x78, 0x2a, 0x92, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x43, 0x33, 0x43, 0x33, 0x3b, 0x33, 0x3a, 0xf3, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x53, 0x3b, 0x53, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x59, 0x54, 0x7a, 0x54, 0xbb, 0x5c, 0xdc, 0x65, 0x3e, 0x6d, 0x7e, 0x7e, 0x1e, 0x86, 0xde, 0x97, 0x3d, 0x9f, 0x5d, 0xa7, 0x5d, 0x9f, 0x5d, 0x97, 0x3d, 0x86, 0xbd, 0x75, 0xfe, 0x75, 0xbe, 0x6d, 0x7e, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0x3e, 0x65, 0x5e, 0x75, 0xde, 0x7e, 0x1e, 0x6d, 0x7d, 0x5c, 0xba, 0x4c, 0x58, 0x4c, 0x58, 0x4c, 0x58, 0x44, 0x38, 0x44, 0x18, 0x3b, 0xf8, 0x3b, 0xf7, 0x3b, 0xd7, 0x33, 0xb7, 0x33, 0xb6, 0x33, 0xb6, 0x33, 0x96, 0x33, 0x76, 0x33, 0x75, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, 0x34, 0x2b, 0x34, 0x2b, 0x14, 0x2b, 0x14, 0x2b, 0x14, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xf3, 0x2a, 0xb2, 0x43, 0xb7, 0x5c, 0x9a, 0x54, 0x79, 0x54, 0x59, 0x4c, 0x58, 0x54, 0x58, 0x54, 0x59, 0x54, 0x79, 0x54, 0x59, 0x54, 0x9b, 0x5c, 0xdc, 0x64, 0xdd, 0x64, 0xdc, 0x64, 0xfc, 0x6d, 0x1d, 0x6c, 0xdd, 0x64, 0x9b, 0x5c, 0x59, 0x4c, 0x38, 0x43, 0xd7, 0x43, 0x96, 0x3b, 0x55, 0x3b, 0x35, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xf3, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x51, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xef, 0x19, 0xef, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xef, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x22, 0x10, 0x21, 0xef, 0x21, 0xf0, 0x21, 0xf0, 0x22, 0x10, 0x22, 0x10, 0x21, 0xef, 0x21, 0xef, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x51, + 0x2a, 0x31, 0x2a, 0x71, 0x2a, 0x51, 0x32, 0x71, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf3, 0x3a, 0xf4, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x4b, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x53, 0xd7, 0x54, 0x17, 0x54, 0x38, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x38, 0x5c, 0x37, 0x54, 0x16, 0x53, 0xf6, 0x54, 0x37, 0x54, 0x57, 0x54, 0x58, 0x5c, 0x78, 0x64, 0xb8, 0x3b, 0x13, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd2, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x3b, 0x13, 0x3b, 0x33, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x54, 0x43, 0x74, 0x43, 0x94, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x59, 0x4c, 0x59, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0xbc, 0x5c, 0xfd, 0x65, 0x3e, 0x6d, 0x9e, 0x7e, 0x1e, 0x8e, 0xfd, 0x9f, 0x5c, 0xa7, 0x5d, 0xaf, 0x5d, 0xaf, 0x5d, 0xa7, 0x5d, 0x97, 0x3d, 0x86, 0xbd, 0x7e, 0x1e, 0x75, 0xde, 0x6d, 0x7e, 0x5d, 0x1e, 0x65, 0x1e, 0x65, 0x3e, 0x6d, 0x7e, 0x7d, 0xfe, 0x7d, 0xfe, 0x65, 0x1c, 0x54, 0x79, 0x54, 0x79, 0x54, 0x58, 0x4c, 0x58, 0x4c, 0x58, 0x44, 0x38, 0x44, 0x18, 0x3b, 0xf8, 0x3b, 0xf7, 0x3b, 0xd7, 0x3b, 0xd7, 0x3b, 0xb6, 0x33, 0xb6, 0x33, 0x96, 0x33, 0x96, 0x33, 0x75, 0x33, 0x75, 0x33, 0x55, 0x33, 0x55, 0x33, 0x54, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x2a, 0xf4, 0x2b, 0x13, 0x32, 0xf3, 0x2a, 0xd3, 0x4c, 0x18, 0x5c, 0xbb, 0x54, 0x79, 0x54, 0x59, 0x54, 0x38, 0x54, 0x79, 0x54, 0x7a, 0x54, 0x9b, 0x5c, 0xbc, 0x6d, 0x1e, 0x75, 0x5e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x5e, 0x6c, 0xfd, 0x64, 0x9b, 0x5c, 0x79, 0x54, 0x38, 0x4b, 0xd7, 0x43, 0x96, 0x3b, 0x55, 0x3b, 0x55, 0x33, 0x34, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x51, 0x22, 0x31, 0x22, 0x10, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xef, 0x21, 0xef, 0x19, 0xef, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xef, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xcf, 0x19, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xae, 0x11, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x11, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x21, 0xef, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, + 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x3a, 0xd3, 0x3a, 0xf3, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x4b, 0x96, 0x4b, 0xd7, 0x4b, 0xf7, 0x53, 0xf7, 0x54, 0x18, 0x54, 0x18, 0x5c, 0x79, 0x75, 0x1d, 0x75, 0x1d, 0x75, 0x1c, 0x54, 0x37, 0x54, 0x57, 0x54, 0x57, 0x5c, 0x78, 0x53, 0xd6, 0x32, 0xd2, 0x3a, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x43, 0x53, 0x43, 0x73, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x74, 0x43, 0x74, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0xb5, 0x43, 0xd5, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xd6, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x59, 0x54, 0x79, 0x54, 0x9a, 0x5c, 0xdc, 0x5c, 0xdd, 0x65, 0x1e, 0x65, 0x5e, 0x6d, 0x9e, 0x7e, 0x3e, 0x8f, 0x1e, 0x9f, 0x3d, 0xaf, 0x3d, 0xb7, 0x3d, 0xbf, 0x5e, 0xbf, 0x5d, 0xa7, 0x5d, 0x8f, 0x1d, 0x86, 0xbe, 0x7e, 0x3e, 0x75, 0x9e, 0x65, 0x3e, 0x5c, 0xfe, 0x65, 0x1e, 0x6d, 0x5e, 0x6d, 0x7e, 0x7d, 0xfe, 0x75, 0x9d, 0x5c, 0xba, 0x54, 0x79, 0x54, 0x79, 0x4c, 0x79, 0x4c, 0x79, 0x4c, 0x59, 0x44, 0x59, 0x44, 0x38, 0x44, 0x18, 0x3c, 0x18, 0x3b, 0xf8, 0x3b, 0xf7, 0x3b, 0xd7, 0x3b, 0xd7, 0x3b, 0xb6, 0x33, 0xb6, 0x33, 0x96, 0x33, 0x75, 0x33, 0x75, 0x33, 0x55, 0x33, 0x54, 0x33, 0x34, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x2a, 0xf3, 0x4b, 0xd7, 0x5c, 0x9b, 0x5c, 0x9a, 0x54, 0x79, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0xbc, 0x64, 0xdd, 0x6d, 0x5e, 0x7d, 0xde, 0x86, 0x1e, 0x86, 0x3e, 0x7d, 0xde, 0x7d, 0x9e, 0x75, 0x5e, 0x6c, 0xfd, 0x64, 0xbc, 0x5c, 0x7a, 0x54, 0x39, 0x4b, 0xf7, 0x43, 0xb7, 0x3b, 0x96, 0x3b, 0x55, 0x33, 0x34, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x51, 0x22, 0x31, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x21, 0xef, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x19, 0xef, 0x19, 0xef, 0x21, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xcf, 0x21, 0xef, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x11, 0xae, 0x11, 0xae, 0x11, 0xae, 0x11, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xcf, 0x21, 0xcf, 0x19, 0xef, 0x19, 0xef, 0x11, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x10, + 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf3, 0x3b, 0x14, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd6, 0x53, 0xf7, 0x54, 0x18, 0x5c, 0x79, 0x64, 0xdc, 0x64, 0xfd, 0x6d, 0x1d, 0x75, 0x3e, 0x6d, 0x1c, 0x64, 0x99, 0x5c, 0x57, 0x43, 0x95, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x3a, 0xd3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x3b, 0x33, 0x43, 0x53, 0x43, 0x73, 0x43, 0x73, 0x43, 0x53, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x4b, 0x94, 0x4b, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x99, 0x54, 0xb9, 0x5c, 0xba, 0x5c, 0xdb, 0x65, 0x1d, 0x65, 0x3e, 0x6d, 0x5e, 0x75, 0x9e, 0x7e, 0x5e, 0x8f, 0x1d, 0x9f, 0x5d, 0xaf, 0x3d, 0xbf, 0x5e, 0xcf, 0x5e, 0xc7, 0x5e, 0xb7, 0x5d, 0x9f, 0x5d, 0x8f, 0x1d, 0x86, 0x9e, 0x75, 0xfe, 0x6d, 0x5e, 0x65, 0x3e, 0x5c, 0xfe, 0x65, 0x3e, 0x6d, 0x7e, 0x6d, 0x9e, 0x75, 0x9e, 0x65, 0x1c, 0x5c, 0x9a, 0x5c, 0x9a, 0x54, 0x99, 0x54, 0x79, 0x4c, 0x79, 0x4c, 0x79, 0x44, 0x79, 0x44, 0x59, 0x44, 0x39, 0x44, 0x38, 0x44, 0x18, 0x44, 0x18, 0x43, 0xf7, 0x3b, 0xf7, 0x3b, 0xd7, 0x3b, 0xb7, 0x3b, 0xb6, 0x3b, 0x96, 0x33, 0x75, 0x33, 0x75, 0x33, 0x55, 0x33, 0x54, 0x33, 0x34, 0x33, 0x34, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x54, 0x5a, 0x64, 0xbc, 0x54, 0x7a, 0x54, 0x79, 0x54, 0x9b, 0x5c, 0xbc, 0x5c, 0xdd, 0x65, 0x1e, 0x75, 0x5e, 0x86, 0x3e, 0x96, 0xfe, 0x9f, 0x3e, 0x8e, 0x5e, 0x7d, 0xfe, 0x7d, 0xbe, 0x75, 0x7e, 0x65, 0x1e, 0x64, 0xdd, 0x5c, 0x9b, 0x54, 0x59, 0x4c, 0x18, 0x43, 0xd7, 0x3b, 0x96, 0x3b, 0x75, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x32, 0xf3, 0x2a, 0xb3, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x21, 0xef, 0x21, 0xef, 0x22, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x19, 0xef, 0x19, 0xef, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x11, 0xae, 0x19, 0xae, 0x19, 0xae, 0x11, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x21, 0xcf, 0x19, 0xae, 0x11, 0x8d, 0x11, 0xae, 0x11, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xef, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x30, + 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x3a, 0xf3, 0x3b, 0x14, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xd7, 0x5c, 0x79, 0x5c, 0xba, 0x64, 0xbb, 0x64, 0xdc, 0x6d, 0x1e, 0x6d, 0x3e, 0x75, 0x3e, 0x64, 0xba, 0x3a, 0xf3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf2, 0x3a, 0xf3, 0x3b, 0x33, 0x43, 0x33, 0x43, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x53, 0x33, 0x4b, 0x53, 0x43, 0x33, 0x43, 0x33, 0x4b, 0x53, 0x4b, 0x73, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x54, 0x43, 0x54, 0x43, 0x74, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf7, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x57, 0x54, 0x57, 0x54, 0x78, 0x54, 0x98, 0x5c, 0xb9, 0x5c, 0xb9, 0x5c, 0xda, 0x65, 0x1b, 0x65, 0x1c, 0x65, 0x5d, 0x6d, 0x7e, 0x75, 0xbe, 0x7e, 0x5e, 0x8f, 0x1d, 0x9f, 0x5d, 0xaf, 0x3d, 0xc7, 0x5e, 0xd7, 0x5e, 0xd7, 0x5e, 0xc7, 0x5e, 0xa7, 0x5d, 0x97, 0x3d, 0x8f, 0x1e, 0x86, 0x7e, 0x6d, 0x9e, 0x65, 0x3e, 0x5c, 0xfe, 0x5c, 0xfe, 0x65, 0x5e, 0x6d, 0x7e, 0x6d, 0x9e, 0x6d, 0x3d, 0x5c, 0xbb, 0x5c, 0x9a, 0x5c, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x4c, 0xba, 0x4c, 0xba, 0x4c, 0x9a, 0x4c, 0x7a, 0x4c, 0x7a, 0x4c, 0x59, 0x4c, 0x59, 0x44, 0x39, 0x44, 0x38, 0x44, 0x18, 0x43, 0xf7, 0x43, 0xd7, 0x3b, 0xd7, 0x3b, 0xb6, 0x3b, 0x96, 0x33, 0x75, 0x33, 0x75, 0x33, 0x55, 0x33, 0x54, 0x33, 0x34, 0x33, 0x34, 0x33, 0x13, 0x4b, 0xf8, 0x5c, 0xbb, 0x54, 0x9b, 0x4c, 0x59, 0x54, 0x9b, 0x5c, 0xbc, 0x64, 0xdd, 0x6d, 0x1e, 0x75, 0x7e, 0x86, 0x3e, 0x97, 0x1e, 0xaf, 0x7d, 0x96, 0x5d, 0x86, 0x3e, 0x86, 0x1e, 0x7d, 0xbe, 0x75, 0x7e, 0x6d, 0x3e, 0x64, 0xfd, 0x5c, 0xbb, 0x54, 0x79, 0x4c, 0x18, 0x43, 0xd7, 0x43, 0xb7, 0x3b, 0x76, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x33, 0x3b, 0x14, 0x32, 0xd3, 0x2a, 0xb3, 0x2a, 0x72, 0x2a, 0x51, 0x22, 0x31, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x19, 0xcf, 0x21, 0xcf, 0x19, 0xef, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x11, 0xae, 0x11, 0xae, 0x19, 0xae, 0x11, 0xae, 0x11, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x11, 0x8d, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x22, 0x10, 0x2a, 0x10, 0x22, 0x10, + 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x3a, 0xd3, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x95, 0x4b, 0x96, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xd7, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x9a, 0x5c, 0xba, 0x64, 0xba, 0x64, 0xbb, 0x6c, 0xfc, 0x5c, 0x79, 0x32, 0xb2, 0x3a, 0xf3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xf2, 0x3a, 0xf2, 0x43, 0x33, 0x43, 0x53, 0x4b, 0x33, 0x4b, 0x33, 0x53, 0x53, 0x53, 0x53, 0x4b, 0x53, 0x43, 0x33, 0x4b, 0x53, 0x4b, 0x73, 0x4b, 0x73, 0x43, 0x53, 0x43, 0x53, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x57, 0x54, 0x78, 0x54, 0xb8, 0x5c, 0xb8, 0x64, 0xf9, 0x65, 0x19, 0x65, 0x1a, 0x6d, 0x5c, 0x6d, 0x5d, 0x6d, 0x9e, 0x75, 0xde, 0x7e, 0x5e, 0x87, 0x1e, 0x97, 0x5d, 0xa7, 0x5d, 0xbf, 0x5d, 0xcf, 0x5e, 0xd7, 0x5e, 0xc7, 0x5e, 0xaf, 0x5d, 0x9f, 0x5d, 0x8f, 0x3d, 0x86, 0xbe, 0x75, 0xde, 0x6d, 0x5e, 0x65, 0x1e, 0x5c, 0xfe, 0x5c, 0xfe, 0x65, 0x5e, 0x6d, 0x9e, 0x6d, 0x9e, 0x65, 0x3c, 0x54, 0xbb, 0x5c, 0xdb, 0x5c, 0xbb, 0x54, 0xbb, 0x54, 0xdb, 0x54, 0xdb, 0x54, 0xbb, 0x54, 0xbc, 0x54, 0xbb, 0x54, 0xbb, 0x4c, 0x9b, 0x4c, 0x9a, 0x4c, 0x7a, 0x4c, 0x59, 0x4c, 0x58, 0x44, 0x38, 0x44, 0x18, 0x43, 0xf7, 0x3b, 0xd7, 0x3b, 0xb6, 0x3b, 0x96, 0x3b, 0x95, 0x33, 0x75, 0x33, 0x55, 0x33, 0x54, 0x33, 0x34, 0x3b, 0x75, 0x54, 0x7a, 0x54, 0xbc, 0x54, 0x9a, 0x5c, 0x9c, 0x5c, 0xdd, 0x64, 0xdd, 0x65, 0x1e, 0x75, 0x7e, 0x86, 0x3e, 0x97, 0x3e, 0xb7, 0x7e, 0x9e, 0x5d, 0x96, 0x3e, 0x8e, 0x5e, 0x86, 0x3e, 0x7d, 0xde, 0x75, 0x7e, 0x6d, 0x5e, 0x65, 0x1e, 0x5c, 0xdb, 0x54, 0x79, 0x54, 0x38, 0x4b, 0xf8, 0x43, 0xb6, 0x3b, 0x96, 0x3b, 0x55, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x33, 0x14, 0x32, 0xd3, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x0f, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xef, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x11, 0x8e, 0x19, 0xae, 0x11, 0xae, 0x19, 0xae, 0x11, 0xae, 0x11, 0xae, 0x19, 0xae, 0x11, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xad, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x22, 0x10, + 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x2a, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x3a, 0xf3, 0x3a, 0xf4, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x4b, 0x96, 0x4b, 0xb6, 0x4b, 0xb6, 0x54, 0x38, 0x5c, 0x79, 0x5c, 0x9a, 0x5c, 0x9a, 0x64, 0x9b, 0x5c, 0x9a, 0x5c, 0x9b, 0x5c, 0x7a, 0x4b, 0x95, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x3a, 0xf2, 0x3b, 0x12, 0x43, 0x53, 0x4b, 0x33, 0x4b, 0x33, 0x53, 0x53, 0x53, 0x53, 0x53, 0x53, 0x4b, 0x33, 0x43, 0x33, 0x43, 0x53, 0x43, 0x53, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x53, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xf7, 0x4c, 0x37, 0x4c, 0x57, 0x54, 0x77, 0x54, 0x98, 0x5c, 0xb8, 0x64, 0xd8, 0x64, 0xf8, 0x64, 0xf8, 0x6d, 0x39, 0x6d, 0x5b, 0x6d, 0x9c, 0x6d, 0xbd, 0x75, 0xfe, 0x7e, 0x5e, 0x86, 0xfd, 0x97, 0x3d, 0x9f, 0x5d, 0xaf, 0x5d, 0xbf, 0x5e, 0xc7, 0x5e, 0xc7, 0x5e, 0xb7, 0x5d, 0x9f, 0x5d, 0x87, 0x3d, 0x86, 0xbe, 0x7e, 0x1e, 0x6d, 0x7e, 0x65, 0x3e, 0x5d, 0x1e, 0x5d, 0x1e, 0x5d, 0x1e, 0x65, 0x5e, 0x75, 0x9e, 0x65, 0x3d, 0x54, 0xdc, 0x54, 0xdc, 0x5c, 0xdc, 0x54, 0xdc, 0x54, 0xfc, 0x54, 0xfc, 0x54, 0xfd, 0x54, 0xfd, 0x54, 0xfd, 0x54, 0xfd, 0x54, 0xdd, 0x54, 0xdc, 0x54, 0xfc, 0x54, 0xdb, 0x54, 0x9b, 0x54, 0x9a, 0x4c, 0x59, 0x4c, 0x18, 0x4c, 0x18, 0x43, 0xf7, 0x43, 0xd7, 0x3b, 0xb6, 0x3b, 0x96, 0x3b, 0x75, 0x3b, 0x75, 0x33, 0x55, 0x2a, 0xf3, 0x43, 0xd7, 0x54, 0xdd, 0x5c, 0xbc, 0x5c, 0xdc, 0x64, 0xde, 0x64, 0xde, 0x64, 0xfe, 0x6d, 0x3e, 0x7d, 0xde, 0x8e, 0xde, 0xa7, 0x7d, 0xa6, 0xdd, 0x9e, 0x5e, 0x96, 0x5e, 0x8e, 0x5e, 0x86, 0x3e, 0x7d, 0xde, 0x75, 0xbe, 0x6d, 0x7e, 0x6d, 0x1d, 0x64, 0xdc, 0x5c, 0x9a, 0x54, 0x59, 0x4c, 0x18, 0x43, 0xd7, 0x43, 0xb6, 0x3b, 0x75, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x76, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x32, 0xf4, 0x32, 0xd3, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xef, 0x2a, 0x10, 0x22, 0x0f, 0x21, 0xef, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0xae, 0x19, 0xad, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xad, 0x19, 0xae, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xad, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x19, 0xef, 0x21, 0xef, + 0x21, 0xef, 0x22, 0x10, 0x21, 0xf0, 0x2a, 0x10, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x4b, 0x96, 0x4b, 0xb6, 0x5c, 0x58, 0x5c, 0x79, 0x5c, 0x9a, 0x64, 0xbb, 0x64, 0xbb, 0x64, 0xbb, 0x64, 0xbb, 0x64, 0xbc, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xf2, 0x3a, 0xf2, 0x3b, 0x12, 0x43, 0x33, 0x4b, 0x33, 0x53, 0x53, 0x53, 0x53, 0x53, 0x73, 0x53, 0x53, 0x43, 0x33, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x3b, 0x53, 0x3b, 0x33, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xf7, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x77, 0x54, 0x98, 0x5c, 0xb8, 0x5c, 0xd8, 0x64, 0xd8, 0x64, 0xf8, 0x6d, 0x19, 0x6d, 0x3a, 0x75, 0x7c, 0x75, 0x9d, 0x7d, 0xde, 0x7e, 0x7e, 0x86, 0xfe, 0x8f, 0x5d, 0x9f, 0x5d, 0xa7, 0x5d, 0xb7, 0x5d, 0xb7, 0x5d, 0xb7, 0x5d, 0xaf, 0x5d, 0x9f, 0x5d, 0x8f, 0x3d, 0x86, 0xde, 0x7e, 0x5e, 0x6d, 0x9e, 0x65, 0x5e, 0x65, 0x1e, 0x5d, 0x1e, 0x5c, 0xfe, 0x65, 0x1e, 0x6d, 0x7e, 0x65, 0x5d, 0x54, 0xfc, 0x54, 0xdc, 0x54, 0xfc, 0x5c, 0xfd, 0x5c, 0xfd, 0x5d, 0x1d, 0x5d, 0x3e, 0x5d, 0x3e, 0x5d, 0x3e, 0x5d, 0x3e, 0x5d, 0x3e, 0x65, 0x3e, 0x5d, 0x3e, 0x5d, 0x1e, 0x5c, 0xfd, 0x5c, 0xdc, 0x5c, 0xbb, 0x54, 0x9a, 0x54, 0x79, 0x4c, 0x38, 0x4c, 0x17, 0x43, 0xf7, 0x43, 0xd6, 0x3b, 0xb6, 0x3b, 0x75, 0x3b, 0x75, 0x33, 0x75, 0x33, 0x54, 0x4c, 0x59, 0x64, 0xfd, 0x64, 0xdd, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0xfe, 0x65, 0x1e, 0x6d, 0x7e, 0x7e, 0x1e, 0x97, 0x1d, 0xaf, 0x7e, 0x96, 0x7e, 0x96, 0x3e, 0x96, 0x5e, 0x8e, 0x5e, 0x86, 0x5e, 0x7e, 0x1e, 0x75, 0x9e, 0x6d, 0x5e, 0x6d, 0x1e, 0x64, 0xdc, 0x5c, 0xba, 0x54, 0x79, 0x4c, 0x18, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x32, 0xf3, 0x32, 0xd3, 0x2a, 0xb3, 0x2a, 0x92, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x0f, 0x21, 0xef, 0x21, 0xef, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0xae, 0x19, 0x8e, 0x11, 0xad, 0x19, 0xad, 0x19, 0xad, 0x19, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x19, 0x8d, 0x19, 0xad, 0x11, 0x8d, 0x11, 0xad, 0x11, 0xad, 0x11, 0x8d, 0x19, 0xae, 0x11, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xef, + 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x43, 0x75, 0x43, 0x96, 0x53, 0xf7, 0x5c, 0x58, 0x5c, 0x79, 0x5c, 0xba, 0x64, 0xda, 0x64, 0xdb, 0x64, 0xdc, 0x64, 0xdc, 0x5c, 0x59, 0x2a, 0x71, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x3a, 0xf2, 0x3b, 0x12, 0x43, 0x32, 0x4b, 0x53, 0x53, 0x73, 0x53, 0x73, 0x53, 0x73, 0x4b, 0x54, 0x43, 0x33, 0x43, 0x53, 0x43, 0x73, 0x43, 0x54, 0x3b, 0x53, 0x3b, 0x33, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x74, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf7, 0x4c, 0x17, 0x54, 0x57, 0x54, 0x77, 0x54, 0x97, 0x5c, 0xb8, 0x5c, 0xd8, 0x64, 0xd8, 0x64, 0xf8, 0x6c, 0xf9, 0x75, 0x1a, 0x7d, 0x5b, 0x7d, 0x7c, 0x7d, 0xbd, 0x86, 0x1e, 0x86, 0xbe, 0x8f, 0x5d, 0x97, 0x5c, 0x9f, 0x5d, 0xa7, 0x5d, 0xaf, 0x5d, 0xaf, 0x5d, 0xa7, 0x5d, 0x97, 0x5d, 0x8f, 0x1d, 0x7e, 0xde, 0x7e, 0x5e, 0x75, 0xbe, 0x6d, 0x7e, 0x65, 0x5e, 0x65, 0x1e, 0x5d, 0x1e, 0x5d, 0x1e, 0x65, 0x1e, 0x6d, 0x5e, 0x5d, 0x3d, 0x4c, 0xdd, 0x55, 0x1d, 0x5d, 0x1d, 0x5d, 0x1e, 0x5d, 0x3e, 0x5d, 0x5e, 0x5d, 0x5e, 0x65, 0x5e, 0x65, 0x7e, 0x65, 0x9e, 0x65, 0x9e, 0x65, 0x9e, 0x6d, 0x7e, 0x6d, 0x5e, 0x65, 0x3e, 0x65, 0x1e, 0x5d, 0x1d, 0x5c, 0xdc, 0x54, 0x9a, 0x54, 0x79, 0x4c, 0x38, 0x4c, 0x17, 0x43, 0xd7, 0x43, 0xb6, 0x3b, 0x96, 0x3b, 0x95, 0x33, 0x55, 0x3b, 0x75, 0x5c, 0x9b, 0x6d, 0x1e, 0x6d, 0x1e, 0x6d, 0x1e, 0x64, 0xfe, 0x65, 0x1e, 0x6d, 0x3e, 0x6d, 0x7e, 0x86, 0x5e, 0x9f, 0x5e, 0x96, 0x9e, 0x8e, 0x5e, 0x96, 0x7e, 0x8e, 0x5e, 0x86, 0x7e, 0x7e, 0x3e, 0x7d, 0xfe, 0x7d, 0xbe, 0x75, 0x7e, 0x6d, 0x1d, 0x64, 0xfc, 0x5c, 0xbb, 0x54, 0x7a, 0x54, 0x39, 0x4c, 0x18, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x32, 0xf4, 0x32, 0xd3, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x0f, 0x21, 0xef, 0x21, 0xef, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xad, 0x19, 0xae, 0x19, 0xae, 0x11, 0x8d, 0x11, 0xae, 0x19, 0xad, 0x19, 0xad, 0x19, 0xae, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x19, 0x8d, 0x19, 0xae, 0x11, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, + 0x19, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x32, 0x72, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xb6, 0x43, 0x96, 0x54, 0x17, 0x5c, 0x58, 0x5c, 0x79, 0x64, 0xb9, 0x64, 0xda, 0x64, 0xfa, 0x6d, 0x1c, 0x6c, 0xfc, 0x43, 0x75, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf2, 0x3a, 0xf2, 0x3b, 0x12, 0x43, 0x33, 0x4b, 0x33, 0x53, 0x33, 0x53, 0x53, 0x53, 0x73, 0x53, 0x73, 0x4b, 0x74, 0x43, 0x53, 0x43, 0x53, 0x43, 0x74, 0x3b, 0x53, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x74, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x95, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf6, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x77, 0x5c, 0x97, 0x5c, 0xb8, 0x5c, 0xb8, 0x6c, 0xd8, 0x6c, 0xd8, 0x74, 0xd8, 0x7d, 0x19, 0x7d, 0x3b, 0x85, 0x5c, 0x85, 0x9d, 0x85, 0xbe, 0x8e, 0x3e, 0x8e, 0xde, 0x97, 0x3d, 0x9f, 0x5d, 0x9f, 0x5d, 0xa7, 0x5d, 0xa7, 0x5d, 0x9f, 0x5d, 0x97, 0x5d, 0x87, 0x1d, 0x76, 0x9e, 0x76, 0x3e, 0x75, 0xfe, 0x6d, 0x9e, 0x6d, 0x7e, 0x65, 0x5e, 0x65, 0x3e, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0x3e, 0x5d, 0x1e, 0x54, 0xfe, 0x54, 0xfe, 0x55, 0x1e, 0x5d, 0x3e, 0x5d, 0x5e, 0x5d, 0x5e, 0x65, 0x7e, 0x65, 0x7e, 0x6d, 0xbe, 0x75, 0xde, 0x75, 0xfe, 0x75, 0xfe, 0x75, 0xfe, 0x75, 0xde, 0x6d, 0xbe, 0x6d, 0x9e, 0x6d, 0x7e, 0x65, 0x5e, 0x5c, 0xfd, 0x5c, 0xbb, 0x54, 0x9a, 0x54, 0x59, 0x4c, 0x38, 0x43, 0xf7, 0x43, 0xd6, 0x43, 0xb6, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x96, 0x5c, 0xdc, 0x75, 0x7e, 0x6d, 0x5e, 0x65, 0x3e, 0x65, 0x1e, 0x64, 0xfe, 0x65, 0x3e, 0x75, 0x9e, 0x86, 0x3e, 0x86, 0x3e, 0x86, 0x5e, 0x8e, 0x9e, 0x8e, 0x7e, 0x86, 0x9e, 0x7e, 0x1e, 0x75, 0xbe, 0x6d, 0x7e, 0x6d, 0x3e, 0x64, 0xfe, 0x64, 0xfd, 0x64, 0xfc, 0x5c, 0xbc, 0x5c, 0x9b, 0x54, 0x59, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x18, 0x54, 0x18, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x34, 0x33, 0x14, 0x32, 0xd3, 0x2a, 0xb3, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x10, 0x22, 0x0f, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x2a, 0x30, 0x2a, 0x70, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8e, 0x11, 0xad, 0x11, 0x8d, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x19, 0xad, 0x11, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xcf, + 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x35, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0xb6, 0x54, 0x18, 0x5c, 0x38, 0x54, 0x38, 0x5c, 0x78, 0x64, 0x99, 0x64, 0xda, 0x6c, 0xda, 0x6c, 0xfb, 0x6c, 0xfb, 0x3b, 0x34, 0x32, 0xd3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xf3, 0x3b, 0x13, 0x43, 0x33, 0x43, 0x53, 0x43, 0x53, 0x4b, 0x53, 0x53, 0x33, 0x53, 0x53, 0x53, 0x53, 0x4b, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x73, 0x43, 0x53, 0x3b, 0x54, 0x3b, 0x33, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x75, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x95, 0x43, 0xd6, 0x43, 0xf6, 0x4c, 0x16, 0x4c, 0x57, 0x54, 0x77, 0x5c, 0xb7, 0x5c, 0xb8, 0x64, 0xb8, 0x6c, 0xd8, 0x74, 0xd8, 0x74, 0xd8, 0x7c, 0xf9, 0x7d, 0x1a, 0x85, 0x3b, 0x85, 0x5c, 0x8d, 0x9d, 0x8d, 0xde, 0x8e, 0x5e, 0x96, 0xfe, 0x97, 0x5d, 0x9f, 0x5d, 0x9f, 0x5d, 0x9f, 0x5c, 0x97, 0x5c, 0x8f, 0x5c, 0x7e, 0xfd, 0x76, 0x5e, 0x76, 0x1e, 0x75, 0xde, 0x75, 0xbe, 0x75, 0x9e, 0x6d, 0x7e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x1e, 0x65, 0x1e, 0x55, 0x1e, 0x55, 0x1e, 0x55, 0x1e, 0x5d, 0x1e, 0x5d, 0x3e, 0x65, 0x7e, 0x6d, 0x9e, 0x6d, 0xde, 0x75, 0xfe, 0x76, 0x1e, 0x7e, 0x5e, 0x7e, 0x9e, 0x7e, 0x7e, 0x7e, 0x9e, 0x7e, 0x9e, 0x7e, 0x3e, 0x7d, 0xde, 0x75, 0xbe, 0x6d, 0x7e, 0x6d, 0x5e, 0x64, 0xfc, 0x5c, 0xbb, 0x54, 0x79, 0x54, 0x58, 0x4c, 0x17, 0x43, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x54, 0x4c, 0x18, 0x6d, 0x5d, 0x75, 0x7e, 0x6d, 0x3e, 0x6d, 0x3e, 0x65, 0x1e, 0x5d, 0x1e, 0x65, 0x3e, 0x75, 0x7e, 0x7d, 0xde, 0x7d, 0xfe, 0x86, 0x5e, 0x86, 0x3e, 0x7d, 0xfe, 0x7d, 0xde, 0x7d, 0xbe, 0x75, 0x9e, 0x6d, 0x5e, 0x6d, 0x1e, 0x64, 0xfe, 0x64, 0xdd, 0x64, 0xdd, 0x5c, 0xdd, 0x5c, 0xbc, 0x5c, 0x9b, 0x5c, 0x7a, 0x5c, 0x7a, 0x54, 0x59, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x17, 0x4b, 0xd6, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x75, 0x3b, 0x55, 0x33, 0x14, 0x32, 0xd3, 0x2a, 0xb3, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x2a, 0x10, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x0f, 0x21, 0xef, 0x21, 0xef, 0x19, 0xcf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0xae, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0x8d, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, + 0x19, 0xae, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x22, 0x0f, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x35, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0xb7, 0x5c, 0xbd, 0x64, 0xbc, 0x54, 0x37, 0x5c, 0x78, 0x5c, 0x99, 0x64, 0xb9, 0x64, 0xda, 0x6c, 0xfb, 0x74, 0xfb, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x13, 0x43, 0x53, 0x43, 0x53, 0x4b, 0x53, 0x4b, 0x53, 0x4b, 0x33, 0x4b, 0x53, 0x4b, 0x53, 0x4b, 0x53, 0x43, 0x53, 0x43, 0x73, 0x43, 0x73, 0x43, 0x53, 0x3b, 0x33, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0xb6, 0x43, 0xf6, 0x4c, 0x16, 0x54, 0x37, 0x54, 0x77, 0x5c, 0xb7, 0x64, 0xd8, 0x6c, 0xd8, 0x74, 0xd8, 0x74, 0xd8, 0x7c, 0xd9, 0x7c, 0xf9, 0x7d, 0x1a, 0x85, 0x3b, 0x85, 0x5c, 0x8d, 0x7c, 0x8d, 0xbe, 0x95, 0xfe, 0x96, 0x7e, 0x96, 0xfe, 0x97, 0x5d, 0x97, 0x5d, 0x97, 0x5c, 0x97, 0x5c, 0x8f, 0x5d, 0x86, 0xfe, 0x76, 0x3e, 0x6d, 0xde, 0x6d, 0xde, 0x75, 0xde, 0x75, 0xfe, 0x75, 0xde, 0x6d, 0x7e, 0x65, 0x5e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x3e, 0x5d, 0x1e, 0x55, 0x1e, 0x5d, 0x1e, 0x5d, 0x1e, 0x5d, 0x3e, 0x65, 0x7e, 0x65, 0x9e, 0x6d, 0xde, 0x76, 0x3e, 0x7e, 0x7e, 0x86, 0xfe, 0x87, 0x1e, 0x8f, 0x3e, 0x8f, 0x3e, 0x8f, 0x1e, 0x8f, 0x3e, 0x86, 0xfe, 0x86, 0x7e, 0x7e, 0x1e, 0x75, 0xbe, 0x6d, 0x7e, 0x6d, 0x3d, 0x64, 0xdc, 0x5c, 0x9a, 0x54, 0x58, 0x4c, 0x18, 0x4b, 0xf7, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x75, 0x54, 0x37, 0x75, 0x7d, 0x75, 0x9e, 0x6d, 0x3e, 0x65, 0x1e, 0x64, 0xfe, 0x65, 0x1e, 0x65, 0x3e, 0x75, 0x7e, 0x75, 0x9e, 0x7d, 0xbe, 0x7d, 0xde, 0x7d, 0xde, 0x7d, 0xde, 0x7d, 0xbe, 0x75, 0x9e, 0x6d, 0x5e, 0x6d, 0x3e, 0x65, 0x3e, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0x1e, 0x64, 0xfe, 0x64, 0xfd, 0x64, 0xdb, 0x5c, 0x9a, 0x5c, 0x79, 0x54, 0x38, 0x54, 0x17, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x35, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x32, 0x51, 0x32, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xef, 0x19, 0xcf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8d, 0x19, 0xad, 0x19, 0xad, 0x19, 0x8e, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8c, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0x8d, 0x19, 0xae, 0x19, 0x8d, 0x19, 0xad, 0x19, 0xae, 0x19, 0xae, + 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x32, 0x71, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x14, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x55, 0x54, 0x38, 0x64, 0xff, 0x65, 0x1e, 0x6c, 0xfc, 0x54, 0x17, 0x5c, 0x78, 0x5c, 0x99, 0x64, 0xb9, 0x6c, 0xda, 0x6c, 0xda, 0x3a, 0xd3, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x33, 0x43, 0x33, 0x43, 0x53, 0x43, 0x53, 0x4b, 0x53, 0x4b, 0x53, 0x4b, 0x53, 0x4b, 0x73, 0x43, 0x73, 0x43, 0x73, 0x43, 0x73, 0x43, 0x53, 0x3b, 0x53, 0x3b, 0x33, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x74, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0xd6, 0x4b, 0xf6, 0x54, 0x36, 0x5c, 0x77, 0x64, 0xb7, 0x64, 0xb7, 0x6c, 0xd8, 0x74, 0xd8, 0x74, 0xf8, 0x7c, 0xd9, 0x7c, 0xf9, 0x7d, 0x19, 0x85, 0x3a, 0x85, 0x5b, 0x85, 0x5c, 0x8d, 0x7d, 0x8d, 0xbe, 0x95, 0xfe, 0x96, 0x7e, 0x96, 0xfe, 0x97, 0x5d, 0x97, 0x5c, 0x8f, 0x5c, 0x87, 0x3d, 0x7e, 0xde, 0x76, 0x3e, 0x6d, 0xbe, 0x6d, 0xbe, 0x6d, 0xbe, 0x7e, 0x1e, 0x7e, 0x3e, 0x75, 0xde, 0x6d, 0x5e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x3e, 0x5d, 0x1e, 0x5d, 0x3e, 0x5d, 0x1e, 0x5d, 0x1e, 0x5d, 0x3e, 0x65, 0x7e, 0x6d, 0xbe, 0x75, 0xfe, 0x7e, 0x7e, 0x86, 0xde, 0x8f, 0x1e, 0x8f, 0x3d, 0x97, 0x3c, 0x97, 0x5d, 0x9f, 0x5d, 0x97, 0x5d, 0x97, 0x5d, 0x8f, 0x3d, 0x8e, 0xfe, 0x86, 0x7e, 0x7d, 0xfe, 0x75, 0x9e, 0x6d, 0x5e, 0x64, 0xfc, 0x5c, 0xba, 0x54, 0x59, 0x54, 0x18, 0x4b, 0xf7, 0x43, 0xd6, 0x43, 0xb6, 0x3b, 0x75, 0x54, 0x78, 0x75, 0x9d, 0x75, 0x9e, 0x6d, 0x3e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x3e, 0x6d, 0x5e, 0x75, 0x7e, 0x75, 0x9e, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0x9e, 0x75, 0x9e, 0x6d, 0x7e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x3e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x1e, 0x64, 0xdc, 0x5c, 0x9a, 0x5c, 0x58, 0x54, 0x17, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0x96, 0x3b, 0x75, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x0f, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0x8e, 0x11, 0xae, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6c, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6c, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6c, 0x11, 0x8c, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0xad, 0x19, 0xae, 0x19, 0xae, + 0x19, 0x8e, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x22, 0x0f, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf3, 0x33, 0x14, 0x3b, 0x35, 0x43, 0x55, 0x43, 0x96, 0x64, 0xdd, 0x64, 0xde, 0x64, 0xfe, 0x65, 0x1e, 0x64, 0xdb, 0x54, 0x37, 0x5c, 0x78, 0x5c, 0x99, 0x64, 0xda, 0x5c, 0x58, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf4, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x32, 0xf3, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x74, 0x43, 0x53, 0x43, 0x73, 0x43, 0x73, 0x43, 0x73, 0x43, 0x53, 0x43, 0x53, 0x3b, 0x34, 0x3b, 0x33, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0xb5, 0x43, 0xd5, 0x4b, 0xf6, 0x54, 0x36, 0x54, 0x56, 0x64, 0x97, 0x64, 0xb7, 0x6c, 0xd8, 0x74, 0xf8, 0x74, 0xf8, 0x7c, 0xf8, 0x7c, 0xf9, 0x7d, 0x19, 0x7d, 0x1a, 0x85, 0x3b, 0x85, 0x3c, 0x85, 0x5c, 0x8d, 0x9d, 0x8d, 0xbe, 0x95, 0xfe, 0x96, 0x7e, 0x96, 0xfe, 0x8f, 0x5e, 0x8f, 0x5d, 0x87, 0x3d, 0x7e, 0xfe, 0x76, 0x3e, 0x6d, 0xbe, 0x65, 0x9e, 0x6d, 0xbe, 0x75, 0xfe, 0x7e, 0x5e, 0x7e, 0x5e, 0x6d, 0xbe, 0x65, 0x5e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x5e, 0x5d, 0x3e, 0x5d, 0x3e, 0x5d, 0x5e, 0x65, 0x7e, 0x65, 0x7e, 0x6d, 0x9e, 0x76, 0x1e, 0x7e, 0x9e, 0x86, 0xfe, 0x8f, 0x5d, 0x97, 0x5d, 0x9f, 0x5d, 0xa7, 0x5d, 0xa7, 0x5d, 0xa7, 0x5d, 0xa7, 0x5d, 0x9f, 0x5d, 0x97, 0x5d, 0x97, 0x3e, 0x86, 0xbe, 0x7e, 0x3e, 0x75, 0xbe, 0x6d, 0x5e, 0x65, 0x1d, 0x5c, 0xdb, 0x5c, 0x79, 0x54, 0x38, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0x96, 0x4b, 0xf7, 0x5c, 0xba, 0x75, 0x5d, 0x75, 0x9e, 0x6d, 0x7e, 0x6d, 0x5e, 0x6d, 0x3e, 0x65, 0x3e, 0x6d, 0x3e, 0x6d, 0x5e, 0x75, 0x9e, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x7e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x7e, 0x6d, 0x7e, 0x6d, 0x7e, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x5e, 0x6d, 0x1d, 0x64, 0xdb, 0x5c, 0x79, 0x5c, 0x37, 0x53, 0xf7, 0x4b, 0xd6, 0x4b, 0x96, 0x43, 0x55, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x32, 0x91, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x10, 0x21, 0xef, 0x21, 0xef, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xad, 0x19, 0x8e, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x8c, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0xae, 0x19, 0xae, + 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x29, 0xf0, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x3b, 0x14, 0x54, 0x38, 0x5c, 0xbc, 0x64, 0xdd, 0x64, 0xfe, 0x65, 0x1e, 0x65, 0x1d, 0x5c, 0x99, 0x5c, 0x58, 0x5c, 0x79, 0x5c, 0x99, 0x54, 0x17, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x33, 0x3b, 0x14, 0x3b, 0x33, 0x3b, 0x53, 0x43, 0x54, 0x43, 0x74, 0x43, 0x54, 0x43, 0x53, 0x43, 0x73, 0x43, 0x53, 0x3b, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x3b, 0x53, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x94, 0x3b, 0x95, 0x43, 0x95, 0x43, 0xd5, 0x4c, 0x16, 0x54, 0x16, 0x5c, 0x36, 0x5c, 0x77, 0x64, 0x97, 0x6c, 0xb7, 0x74, 0xd8, 0x74, 0xf8, 0x7d, 0x18, 0x7d, 0x19, 0x7d, 0x19, 0x7d, 0x1a, 0x85, 0x3a, 0x85, 0x5b, 0x85, 0x5c, 0x85, 0x7d, 0x8d, 0x9e, 0x8d, 0xde, 0x8e, 0x3e, 0x8e, 0xbe, 0x8f, 0x3e, 0x8f, 0x5d, 0x87, 0x5e, 0x7e, 0xfe, 0x76, 0x5e, 0x6d, 0xde, 0x65, 0x9e, 0x65, 0x9e, 0x6d, 0xbe, 0x76, 0x1e, 0x7e, 0x5e, 0x75, 0xde, 0x6d, 0x7e, 0x65, 0x5e, 0x65, 0x3e, 0x5d, 0x1e, 0x5d, 0x3e, 0x5d, 0x5e, 0x5d, 0x5e, 0x5d, 0x7e, 0x65, 0x7e, 0x6d, 0xbe, 0x75, 0xfe, 0x7e, 0x9e, 0x87, 0x1e, 0x8f, 0x3d, 0x9f, 0x5d, 0xa7, 0x5d, 0xaf, 0x5d, 0xb7, 0x5d, 0xb7, 0x5d, 0xb7, 0x5e, 0xaf, 0x7d, 0xa7, 0x7d, 0x9f, 0x5d, 0x97, 0x5d, 0x8e, 0xfe, 0x86, 0x3e, 0x7d, 0xde, 0x75, 0x7e, 0x6d, 0x1d, 0x64, 0xbb, 0x5c, 0x79, 0x54, 0x38, 0x4b, 0xf7, 0x43, 0xb6, 0x4b, 0xf7, 0x4c, 0x18, 0x5c, 0xbb, 0x75, 0x7d, 0x75, 0xbe, 0x75, 0x7e, 0x6d, 0x5e, 0x6d, 0x3e, 0x6d, 0x3e, 0x75, 0x7e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x6d, 0x9e, 0x6d, 0x9e, 0x6d, 0x7e, 0x6d, 0x7e, 0x75, 0x9e, 0x75, 0xde, 0x7d, 0xfe, 0x7e, 0x3e, 0x86, 0x1e, 0x7e, 0x1e, 0x7d, 0xfe, 0x7d, 0xfe, 0x7d, 0xbe, 0x75, 0x7e, 0x6d, 0x5e, 0x6c, 0xfc, 0x64, 0x99, 0x5c, 0x58, 0x54, 0x17, 0x4b, 0xd6, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x34, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x10, 0x21, 0xef, 0x21, 0xef, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xce, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xad, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x8c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0x8d, 0x19, 0x8e, + 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x43, 0x76, 0x54, 0x38, 0x5c, 0x9a, 0x64, 0xbc, 0x64, 0xfe, 0x65, 0x1e, 0x65, 0x3e, 0x65, 0x1c, 0x54, 0x58, 0x5c, 0x78, 0x5c, 0x99, 0x4b, 0xb6, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x43, 0x54, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x53, 0x43, 0x54, 0x3b, 0x53, 0x3b, 0x53, 0x3b, 0x53, 0x3b, 0x53, 0x43, 0x73, 0x43, 0x53, 0x3b, 0x53, 0x3b, 0x53, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x74, 0x3b, 0x74, 0x43, 0x95, 0x43, 0xb5, 0x4b, 0xd5, 0x4c, 0x16, 0x54, 0x36, 0x5c, 0x56, 0x64, 0x77, 0x64, 0x97, 0x6c, 0xd7, 0x74, 0xf8, 0x74, 0xf8, 0x7d, 0x18, 0x7d, 0x19, 0x7d, 0x19, 0x7d, 0x1a, 0x85, 0x3a, 0x85, 0x5b, 0x85, 0x5c, 0x85, 0x7d, 0x85, 0xbe, 0x85, 0xfe, 0x8e, 0x7e, 0x8e, 0xfe, 0x8f, 0x3e, 0x8f, 0x5e, 0x87, 0x3e, 0x7e, 0x9e, 0x6d, 0xde, 0x65, 0x7e, 0x65, 0x7e, 0x6d, 0x9e, 0x75, 0xde, 0x76, 0x1e, 0x75, 0xfe, 0x6d, 0x9e, 0x65, 0x5e, 0x65, 0x3e, 0x5d, 0x3e, 0x55, 0x1e, 0x55, 0x1e, 0x5d, 0x5e, 0x65, 0x7e, 0x65, 0x9e, 0x6d, 0xbe, 0x76, 0x1e, 0x7e, 0x9e, 0x87, 0x1e, 0x8f, 0x5d, 0x9f, 0x5d, 0xaf, 0x5d, 0xb7, 0x5d, 0xbf, 0x5e, 0xbf, 0x5e, 0xc7, 0x5e, 0xbf, 0x5e, 0xb7, 0x5e, 0xaf, 0x5d, 0xa7, 0x5d, 0x97, 0x5d, 0x8f, 0x1e, 0x86, 0x5e, 0x7d, 0xbe, 0x75, 0x7e, 0x6d, 0x1d, 0x64, 0xbb, 0x5c, 0x59, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x99, 0x6d, 0x3c, 0x7d, 0xbe, 0x75, 0x9e, 0x6d, 0x5e, 0x75, 0x9e, 0x75, 0xbe, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x6d, 0x7e, 0x6d, 0x7e, 0x75, 0x7e, 0x75, 0x9e, 0x7d, 0xde, 0x86, 0x3e, 0x8e, 0xbe, 0x8e, 0xde, 0x96, 0xfe, 0x97, 0x1e, 0x96, 0xde, 0x8e, 0x7e, 0x86, 0x1e, 0x7d, 0xde, 0x75, 0x7e, 0x6d, 0x3e, 0x64, 0xbb, 0x5c, 0x59, 0x54, 0x18, 0x4b, 0xd6, 0x4b, 0xb6, 0x3b, 0x55, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8c, 0x11, 0x6c, 0x11, 0x8c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0x8d, 0x19, 0x8e, + 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x21, 0xce, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x43, 0x35, 0x5c, 0x38, 0x54, 0x38, 0x5c, 0x79, 0x5c, 0x7a, 0x5c, 0x9b, 0x64, 0xdd, 0x6d, 0x3f, 0x65, 0x3e, 0x64, 0xfb, 0x54, 0x58, 0x5c, 0x99, 0x4b, 0xb6, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x33, 0x33, 0x33, 0x33, 0x3b, 0x53, 0x43, 0x53, 0x3b, 0x53, 0x3b, 0x53, 0x3b, 0x53, 0x3b, 0x54, 0x3b, 0x74, 0x43, 0x94, 0x43, 0x95, 0x43, 0x95, 0x4b, 0xb5, 0x4b, 0xf5, 0x54, 0x16, 0x5c, 0x36, 0x5c, 0x56, 0x64, 0x77, 0x6c, 0xb7, 0x6c, 0xd7, 0x74, 0xf8, 0x75, 0x18, 0x75, 0x18, 0x7d, 0x19, 0x7d, 0x19, 0x85, 0x3a, 0x7d, 0x3b, 0x7d, 0x5b, 0x7d, 0x5c, 0x85, 0x9d, 0x85, 0xde, 0x86, 0x3e, 0x8e, 0x9e, 0x8e, 0xde, 0x8f, 0x1e, 0x87, 0x1e, 0x7e, 0xbe, 0x76, 0x1e, 0x6d, 0x9e, 0x65, 0x7e, 0x65, 0x7e, 0x6d, 0x9e, 0x75, 0xfe, 0x6d, 0xde, 0x6d, 0x9e, 0x65, 0x5e, 0x65, 0x3e, 0x5d, 0x1e, 0x55, 0x3e, 0x55, 0x5e, 0x5d, 0x5e, 0x5d, 0x7e, 0x65, 0x9e, 0x6d, 0x9e, 0x6d, 0xbe, 0x76, 0x5e, 0x86, 0xfe, 0x8f, 0x3d, 0x9f, 0x5c, 0xa7, 0x5d, 0xb7, 0x5d, 0xbf, 0x5e, 0xcf, 0x5e, 0xd7, 0x5e, 0xcf, 0x5e, 0xc7, 0x5e, 0xb7, 0x5e, 0xaf, 0x5d, 0xa7, 0x5d, 0x97, 0x5d, 0x8f, 0x3e, 0x86, 0x7e, 0x7d, 0xbe, 0x6d, 0x5e, 0x65, 0x1d, 0x64, 0xdb, 0x5c, 0x9a, 0x54, 0x58, 0x54, 0x37, 0x54, 0x79, 0x5c, 0xbb, 0x54, 0x7a, 0x54, 0x59, 0x64, 0xfb, 0x75, 0x7d, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0x7e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x9e, 0x7d, 0xbe, 0x86, 0x1e, 0x86, 0xbe, 0x97, 0x5e, 0x9f, 0x7d, 0x9f, 0x7d, 0xa7, 0x5d, 0x9f, 0x7d, 0x9f, 0x5d, 0x97, 0x1e, 0x8e, 0x7e, 0x85, 0xfe, 0x7d, 0x9e, 0x75, 0x3e, 0x64, 0xdb, 0x5c, 0x79, 0x5c, 0x58, 0x4b, 0xd7, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xf0, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x8c, 0x11, 0x8c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0xae, + 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x21, 0xef, 0x22, 0x0f, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x32, 0x71, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x53, 0xf7, 0x5c, 0x79, 0x5c, 0x59, 0x5c, 0x7a, 0x5c, 0x9a, 0x5c, 0x9b, 0x64, 0xbc, 0x64, 0xdd, 0x6d, 0x3e, 0x6d, 0x5e, 0x5c, 0x78, 0x5c, 0x79, 0x4b, 0xb6, 0x43, 0x55, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x74, 0x3b, 0x74, 0x3b, 0x74, 0x3b, 0x74, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x53, 0x3b, 0x53, 0x3b, 0x53, 0x3b, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x95, 0x43, 0xb5, 0x4b, 0xd5, 0x4b, 0xf6, 0x54, 0x16, 0x5c, 0x36, 0x5c, 0x57, 0x64, 0x97, 0x64, 0xb7, 0x64, 0xd7, 0x6c, 0xf8, 0x6d, 0x18, 0x6d, 0x18, 0x6d, 0x19, 0x75, 0x1a, 0x75, 0x3a, 0x75, 0x5b, 0x75, 0x5b, 0x75, 0x7c, 0x7d, 0xbd, 0x7d, 0xfe, 0x86, 0x5e, 0x8e, 0x7e, 0x8e, 0x9e, 0x86, 0xbe, 0x7e, 0xbe, 0x76, 0x1e, 0x6d, 0x9e, 0x65, 0x7e, 0x65, 0x5e, 0x65, 0x7e, 0x6d, 0x9e, 0x6d, 0xbe, 0x6d, 0x9e, 0x65, 0x7e, 0x65, 0x5e, 0x5d, 0x5e, 0x5d, 0x5e, 0x5d, 0x5e, 0x65, 0x7e, 0x65, 0x7e, 0x65, 0x5e, 0x65, 0x9e, 0x6d, 0xbe, 0x76, 0x3e, 0x86, 0xde, 0x8f, 0x3e, 0x97, 0x7d, 0xa7, 0x5d, 0xb7, 0x5d, 0xbf, 0x5e, 0xcf, 0x5e, 0xd7, 0x5e, 0xdf, 0x5e, 0xd7, 0x5e, 0xc7, 0x5e, 0xbf, 0x5e, 0xaf, 0x5d, 0xa7, 0x5d, 0x97, 0x5d, 0x8e, 0xde, 0x86, 0x3e, 0x7d, 0xde, 0x75, 0x7e, 0x65, 0x3d, 0x5c, 0xdb, 0x54, 0x99, 0x54, 0x58, 0x54, 0x79, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0x9a, 0x54, 0x39, 0x5c, 0xb9, 0x75, 0x9d, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x7d, 0xbe, 0x75, 0xbe, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x9e, 0x75, 0x9e, 0x7d, 0xde, 0x7e, 0x3e, 0x8e, 0xfe, 0x97, 0x5d, 0xa7, 0x5d, 0xb7, 0x5e, 0xb7, 0x5e, 0xb7, 0x5e, 0xaf, 0x7d, 0xaf, 0x5d, 0x9f, 0x7e, 0x96, 0xfe, 0x86, 0x1e, 0x7d, 0x9e, 0x75, 0x5e, 0x64, 0xdc, 0x5c, 0x79, 0x54, 0x18, 0x4b, 0xd7, 0x43, 0x96, 0x3b, 0x55, 0x33, 0x34, 0x33, 0x14, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0xb1, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x21, 0xef, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6c, 0x11, 0x6d, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x4c, 0x11, 0x6c, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8e, 0x19, 0x8e, 0x19, 0x8e, + 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x21, 0xce, 0x21, 0xef, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd2, 0x4b, 0xf6, 0x6c, 0xd9, 0x5c, 0x99, 0x5c, 0xba, 0x5c, 0xba, 0x5c, 0x9a, 0x5c, 0x9a, 0x5c, 0x9b, 0x64, 0xdc, 0x64, 0xfe, 0x6d, 0x3e, 0x6d, 0x3d, 0x5c, 0x58, 0x4b, 0xd6, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x95, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x53, 0x3b, 0x53, 0x3b, 0x53, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x94, 0x43, 0xb5, 0x43, 0xb5, 0x4b, 0xf6, 0x4b, 0xf6, 0x4c, 0x16, 0x54, 0x36, 0x54, 0x77, 0x5c, 0x97, 0x5c, 0xb7, 0x5c, 0xd8, 0x64, 0xf8, 0x65, 0x18, 0x65, 0x19, 0x65, 0x19, 0x6d, 0x3a, 0x6d, 0x3a, 0x6d, 0x5b, 0x6d, 0x7c, 0x75, 0x7c, 0x75, 0x9c, 0x7d, 0xdd, 0x7d, 0xfe, 0x7e, 0x1e, 0x7e, 0x3e, 0x7e, 0x3e, 0x76, 0x1e, 0x6d, 0xbe, 0x65, 0x7e, 0x65, 0x7e, 0x65, 0x5e, 0x65, 0x7e, 0x6d, 0x9e, 0x6d, 0x9e, 0x6d, 0x9e, 0x65, 0x5e, 0x5d, 0x5e, 0x5d, 0x7e, 0x65, 0x7e, 0x65, 0x7e, 0x65, 0x5e, 0x65, 0x7e, 0x65, 0x7e, 0x6d, 0xbe, 0x75, 0xde, 0x7e, 0x5e, 0x86, 0xfe, 0x8e, 0xdc, 0x8e, 0x7b, 0x96, 0x5b, 0x96, 0x3c, 0x9e, 0x1c, 0x9d, 0xfc, 0x9d, 0xdd, 0x9d, 0xdd, 0x9d, 0xdd, 0x9e, 0x1d, 0x96, 0x3e, 0x96, 0x7e, 0x96, 0xde, 0x8e, 0xbe, 0x86, 0x5e, 0x7d, 0xfe, 0x75, 0xbe, 0x6d, 0x7e, 0x65, 0x1d, 0x54, 0x9a, 0x4c, 0x59, 0x4c, 0x37, 0x5c, 0x9b, 0x64, 0xdd, 0x5c, 0x9b, 0x5c, 0xdb, 0x64, 0xfb, 0x5c, 0xda, 0x65, 0x1b, 0x6d, 0x5c, 0x7d, 0x9e, 0x7d, 0xde, 0x7d, 0xbe, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x7e, 0x7d, 0x9e, 0x7d, 0x9e, 0x7d, 0xde, 0x86, 0x3e, 0x8f, 0x1e, 0x9f, 0x7d, 0xaf, 0x7e, 0xc7, 0x7e, 0xd7, 0x7e, 0xd7, 0x7e, 0xcf, 0x7e, 0xbf, 0x7e, 0xaf, 0x7d, 0xa7, 0x7d, 0x9e, 0xfe, 0x8e, 0x3e, 0x7d, 0xbe, 0x75, 0x3e, 0x64, 0xbb, 0x5c, 0x59, 0x54, 0x18, 0x4b, 0xd7, 0x43, 0x96, 0x3b, 0x75, 0x3b, 0x35, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0x8d, 0x19, 0xad, 0x19, 0xae, 0x19, 0xae, + 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x21, 0xef, 0x21, 0xef, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x32, 0x71, 0x22, 0x10, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x53, 0xf6, 0x6c, 0xd8, 0x6c, 0xd8, 0x64, 0xd9, 0x64, 0xfa, 0x64, 0xbb, 0x5c, 0xba, 0x5c, 0x9a, 0x5c, 0x9b, 0x5c, 0xbc, 0x64, 0xdd, 0x65, 0x1e, 0x6d, 0x3e, 0x64, 0xba, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x4b, 0xb5, 0x4b, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x74, 0x3b, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x53, 0x43, 0x53, 0x3b, 0x53, 0x43, 0x74, 0x43, 0x74, 0x43, 0x94, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xd5, 0x43, 0xf6, 0x43, 0xf6, 0x4c, 0x36, 0x4c, 0x36, 0x4c, 0x57, 0x54, 0x77, 0x54, 0x97, 0x5c, 0xb8, 0x5c, 0xd8, 0x5c, 0xd8, 0x5c, 0xf9, 0x65, 0x19, 0x65, 0x3a, 0x65, 0x3a, 0x65, 0x3a, 0x6d, 0x3a, 0x6d, 0x5b, 0x6d, 0x7b, 0x6d, 0x9c, 0x75, 0xbd, 0x75, 0xbe, 0x75, 0xbe, 0x6d, 0xbe, 0x6d, 0x9e, 0x65, 0x7e, 0x65, 0x7e, 0x65, 0x5e, 0x65, 0x5e, 0x6d, 0x7e, 0x6d, 0x7e, 0x6d, 0x7e, 0x65, 0x5e, 0x65, 0x5e, 0x65, 0x7e, 0x65, 0x9e, 0x65, 0x9e, 0x65, 0x9e, 0x6d, 0xbf, 0x6d, 0x9e, 0x65, 0x1c, 0x5c, 0xfa, 0x64, 0xfa, 0x64, 0xfa, 0x64, 0xfa, 0x64, 0xda, 0x6c, 0xda, 0x6c, 0xfa, 0x75, 0x1b, 0x7d, 0x1c, 0x7d, 0x1c, 0x7d, 0x3c, 0x85, 0x3d, 0x7d, 0x5d, 0x7d, 0x7e, 0x7d, 0x7e, 0x7d, 0xbe, 0x7d, 0xbe, 0x7d, 0xde, 0x7d, 0xbe, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x5e, 0x6d, 0x5e, 0x6d, 0x3d, 0x64, 0xfb, 0x64, 0xdb, 0x5c, 0xfd, 0x65, 0x3d, 0x65, 0x3d, 0x65, 0x3c, 0x64, 0xfb, 0x5c, 0xfa, 0x64, 0xfa, 0x6d, 0x1a, 0x75, 0x9d, 0x7d, 0xbe, 0x7d, 0x9e, 0x7d, 0x7e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x7e, 0x7d, 0x9e, 0x7d, 0xde, 0x86, 0x1e, 0x8e, 0xdf, 0x97, 0x5d, 0xaf, 0x7d, 0xbf, 0x7e, 0xdf, 0x7e, 0xe7, 0x7e, 0xe7, 0x7e, 0xe7, 0x5e, 0xcf, 0x7e, 0xb7, 0x7e, 0xaf, 0x7d, 0x9f, 0x3e, 0x8e, 0x3e, 0x75, 0x7f, 0x6c, 0xdc, 0x64, 0x9a, 0x5c, 0x79, 0x54, 0x17, 0x4b, 0xd7, 0x43, 0x96, 0x3b, 0x75, 0x3b, 0x35, 0x32, 0xf4, 0x32, 0xd3, 0x2a, 0xb3, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6c, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, + 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x21, 0xce, 0x21, 0xef, 0x29, 0xef, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x43, 0x54, 0x64, 0xb7, 0x74, 0xd8, 0x74, 0xd8, 0x75, 0x19, 0x6d, 0x3a, 0x64, 0xfb, 0x5c, 0xbb, 0x5c, 0x9a, 0x5c, 0x9a, 0x5c, 0xbb, 0x64, 0xdd, 0x64, 0xfe, 0x6d, 0x3e, 0x6d, 0x1c, 0x4b, 0xf7, 0x4b, 0xb6, 0x43, 0x75, 0x43, 0x75, 0x4b, 0x95, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xd6, 0x43, 0xb5, 0x4b, 0xd5, 0x4b, 0xd5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x53, 0x43, 0x74, 0x43, 0x74, 0x43, 0x94, 0x43, 0x94, 0x43, 0x95, 0x43, 0xd5, 0x43, 0xd5, 0x43, 0xd6, 0x43, 0xf6, 0x4b, 0xf6, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x57, 0x54, 0x77, 0x54, 0x98, 0x54, 0xb8, 0x54, 0xd8, 0x54, 0xd8, 0x54, 0xb8, 0x5c, 0xd8, 0x5d, 0x19, 0x65, 0x19, 0x65, 0x3a, 0x6d, 0x5b, 0x6d, 0x7c, 0x6d, 0x9d, 0x6d, 0x9d, 0x6d, 0x7e, 0x6d, 0x9e, 0x65, 0x9e, 0x65, 0x7e, 0x65, 0x5e, 0x65, 0x7e, 0x65, 0x5e, 0x65, 0x3e, 0x6d, 0x7e, 0x6d, 0x7e, 0x65, 0x5e, 0x65, 0x7e, 0x65, 0x9e, 0x6d, 0xbe, 0x6d, 0xbe, 0x65, 0x1b, 0x54, 0x58, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x59, 0x5c, 0x79, 0x5c, 0x99, 0x64, 0xba, 0x64, 0xfb, 0x6d, 0x1b, 0x6d, 0x3b, 0x75, 0x3b, 0x7d, 0x3c, 0x7d, 0x3c, 0x85, 0x5c, 0x85, 0x5d, 0x85, 0x7d, 0x7d, 0x7e, 0x7d, 0x9e, 0x7d, 0x9e, 0x7d, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x7e, 0x6d, 0x5e, 0x6d, 0x3e, 0x6d, 0x5e, 0x75, 0x7e, 0x7e, 0x1e, 0x7d, 0xde, 0x6d, 0x7d, 0x65, 0x3c, 0x65, 0x1c, 0x64, 0xfb, 0x64, 0xfb, 0x64, 0xfa, 0x6d, 0x3b, 0x75, 0x7d, 0x7d, 0x7e, 0x7d, 0x9e, 0x7d, 0x7e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x7e, 0x7d, 0x9e, 0x85, 0xfe, 0x8e, 0x7e, 0x97, 0x5e, 0xa7, 0x7d, 0xb7, 0x7e, 0xdf, 0x7e, 0xe7, 0x7e, 0xe7, 0x7e, 0xe7, 0x7e, 0xe7, 0x7e, 0xd7, 0x7e, 0xbf, 0x7e, 0xa7, 0x7d, 0x8e, 0x9e, 0x7d, 0xbe, 0x75, 0x3e, 0x64, 0xdb, 0x5c, 0x99, 0x5c, 0x58, 0x4b, 0xf7, 0x43, 0xb6, 0x3b, 0x76, 0x3b, 0x55, 0x3b, 0x35, 0x33, 0x14, 0x32, 0xd3, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0x8d, 0x11, 0x8d, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, + 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x21, 0xce, 0x21, 0xef, 0x22, 0x0f, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x50, 0x32, 0x51, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb2, 0x3b, 0x34, 0x64, 0x98, 0x74, 0xd8, 0x74, 0xb8, 0x7c, 0xd8, 0x7d, 0x19, 0x7d, 0x3a, 0x6d, 0x3a, 0x64, 0xdb, 0x5c, 0xbb, 0x5c, 0x9a, 0x5c, 0x9b, 0x5c, 0xbc, 0x64, 0xfe, 0x6d, 0x3e, 0x6d, 0x3e, 0x54, 0x38, 0x4b, 0xd6, 0x4b, 0x96, 0x4b, 0xb6, 0x4b, 0xb5, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xf6, 0x53, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x94, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xf6, 0x43, 0xf6, 0x4c, 0x16, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x57, 0x4c, 0x78, 0x4c, 0x58, 0x4c, 0x57, 0x4c, 0x57, 0x54, 0x78, 0x54, 0x98, 0x5c, 0xd9, 0x64, 0xf9, 0x64, 0xfa, 0x65, 0x1a, 0x65, 0x3b, 0x65, 0x3c, 0x65, 0x5d, 0x65, 0x7d, 0x65, 0x5e, 0x65, 0x5e, 0x65, 0x5e, 0x5d, 0x3e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x5e, 0x6d, 0x7e, 0x6d, 0x5e, 0x65, 0x5d, 0x65, 0x3c, 0x54, 0x78, 0x4b, 0xf7, 0x54, 0x18, 0x54, 0x38, 0x54, 0x58, 0x54, 0x59, 0x54, 0x79, 0x5c, 0x9a, 0x5c, 0x9a, 0x5c, 0x9a, 0x64, 0xda, 0x64, 0xfa, 0x6d, 0x1a, 0x6d, 0x3b, 0x75, 0x3b, 0x7d, 0x3c, 0x7d, 0x5c, 0x7d, 0x5c, 0x7d, 0x7d, 0x85, 0x9e, 0x7d, 0x9e, 0x7d, 0x9e, 0x7d, 0xbe, 0x7d, 0xbe, 0x75, 0x9e, 0x75, 0x7e, 0x6d, 0x3e, 0x6d, 0x5e, 0x75, 0x5e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x7e, 0x75, 0xbe, 0x7e, 0x3e, 0x7e, 0x3e, 0x7d, 0xfe, 0x75, 0x9e, 0x65, 0x3c, 0x65, 0x1b, 0x65, 0x3b, 0x6d, 0x3a, 0x75, 0x7d, 0x7d, 0x7e, 0x7d, 0x5e, 0x7d, 0x7e, 0x7d, 0x7e, 0x7d, 0x7e, 0x7d, 0x5e, 0x7d, 0x7e, 0x7d, 0x9e, 0x8e, 0x3e, 0x97, 0x1e, 0xa7, 0x7d, 0xb7, 0x7d, 0xcf, 0x7e, 0xe7, 0x7e, 0xe7, 0x7e, 0xe7, 0x7e, 0xe7, 0x7e, 0xdf, 0x7e, 0xc7, 0x5e, 0xaf, 0x7d, 0x9f, 0x3e, 0x8e, 0x5e, 0x7d, 0x9f, 0x75, 0x3e, 0x64, 0xbb, 0x5c, 0x79, 0x54, 0x38, 0x4b, 0xf7, 0x43, 0x96, 0x3b, 0x76, 0x3b, 0x35, 0x3b, 0x14, 0x33, 0x14, 0x33, 0x14, 0x2a, 0xb3, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x71, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x29, 0xf0, 0x22, 0x10, 0x21, 0xf0, 0x22, 0x0f, 0x21, 0xf0, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0x8d, 0x11, 0x8d, 0x19, 0x8d, 0x11, 0x8d, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, + 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xd3, 0x54, 0x17, 0x64, 0xb8, 0x6c, 0xb8, 0x74, 0xd8, 0x7c, 0xd8, 0x84, 0xf9, 0x85, 0x1a, 0x75, 0x3a, 0x6d, 0x1b, 0x64, 0xdb, 0x5c, 0xbb, 0x5c, 0x9a, 0x5c, 0xbb, 0x64, 0xdd, 0x6d, 0x3e, 0x6d, 0x5e, 0x64, 0xba, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x53, 0xd6, 0x53, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4c, 0x17, 0x54, 0x17, 0x54, 0x17, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x54, 0x16, 0x54, 0x16, 0x53, 0xf6, 0x4b, 0xb5, 0x4b, 0xd5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x94, 0x43, 0x94, 0x43, 0xb5, 0x43, 0xd5, 0x43, 0xd5, 0x43, 0xd5, 0x43, 0xf6, 0x43, 0xf6, 0x4c, 0x16, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x16, 0x43, 0xf6, 0x44, 0x17, 0x4c, 0x37, 0x4c, 0x57, 0x4c, 0x58, 0x54, 0x98, 0x5c, 0xb9, 0x5c, 0xd9, 0x5c, 0xfa, 0x5c, 0xfb, 0x5d, 0x1b, 0x5d, 0x1c, 0x5d, 0x1d, 0x5d, 0x1d, 0x5d, 0x1e, 0x65, 0x3e, 0x65, 0x1e, 0x5d, 0x1e, 0x5d, 0x3e, 0x65, 0x3e, 0x65, 0x3e, 0x64, 0xfd, 0x5c, 0xbb, 0x54, 0x38, 0x4b, 0xf7, 0x54, 0x17, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x5c, 0x79, 0x5c, 0xba, 0x5c, 0xda, 0x64, 0xfa, 0x65, 0x1b, 0x6d, 0x3b, 0x75, 0x3c, 0x75, 0x5c, 0x7d, 0x5c, 0x7d, 0x7d, 0x85, 0xbe, 0x85, 0xbe, 0x7d, 0xbe, 0x7d, 0xbe, 0x7d, 0xbe, 0x75, 0xbe, 0x75, 0x9e, 0x6d, 0x5e, 0x6d, 0x1e, 0x64, 0xfe, 0x6d, 0x3e, 0x6d, 0x7e, 0x6d, 0x9e, 0x6d, 0x9e, 0x6d, 0x9e, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0x9e, 0x75, 0x7d, 0x6d, 0x5b, 0x75, 0x5c, 0x75, 0x7e, 0x7d, 0x7e, 0x7d, 0x7e, 0x7d, 0x7e, 0x7d, 0x7e, 0x7d, 0x7e, 0x7d, 0x7e, 0x7d, 0x9e, 0x8d, 0xde, 0x96, 0x9e, 0x9f, 0x3e, 0xaf, 0x7d, 0xc7, 0x5e, 0xe7, 0x7e, 0xe7, 0x7e, 0xe7, 0x7e, 0xe7, 0x7e, 0xef, 0x7e, 0xdf, 0x7e, 0xc7, 0x7e, 0xaf, 0x7d, 0x96, 0xfe, 0x86, 0x3e, 0x7d, 0x9e, 0x6d, 0x1d, 0x5c, 0x9a, 0x5c, 0x58, 0x54, 0x38, 0x4b, 0xd7, 0x43, 0x96, 0x3b, 0x75, 0x3b, 0x35, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x2a, 0xb3, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xf0, 0x21, 0xef, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xef, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x11, 0x8d, 0x19, 0x8d, 0x19, 0x8e, 0x19, 0x8d, 0x19, 0x8e, + 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xae, 0x21, 0xce, 0x21, 0xef, 0x21, 0xef, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x21, 0xcf, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0xd3, 0x4b, 0xb6, 0x54, 0x37, 0x64, 0x97, 0x6c, 0xb8, 0x74, 0xb8, 0x85, 0x3b, 0x85, 0x1a, 0x85, 0x19, 0x7d, 0x3a, 0x75, 0x3a, 0x64, 0xfb, 0x5c, 0xbb, 0x5c, 0x9b, 0x5c, 0x9b, 0x64, 0xfd, 0x6c, 0xfe, 0x6d, 0x5e, 0x6d, 0x5d, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xf7, 0x54, 0x16, 0x53, 0xf6, 0x53, 0xf6, 0x54, 0x16, 0x53, 0xf6, 0x53, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4c, 0x17, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4c, 0x17, 0x54, 0x17, 0x54, 0x37, 0x54, 0x17, 0x54, 0x36, 0x54, 0x36, 0x53, 0xd6, 0x4b, 0xd5, 0x43, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x94, 0x43, 0x94, 0x43, 0x94, 0x43, 0xb5, 0x43, 0xd5, 0x43, 0xd5, 0x43, 0xd5, 0x43, 0xd5, 0x43, 0xf6, 0x44, 0x16, 0x43, 0xf6, 0x43, 0xb5, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xf6, 0x44, 0x17, 0x4c, 0x37, 0x4c, 0x58, 0x54, 0x78, 0x54, 0x98, 0x5c, 0xb9, 0x5c, 0xda, 0x5c, 0xda, 0x5c, 0xda, 0x54, 0xbb, 0x5c, 0xdb, 0x5c, 0xdc, 0x5c, 0xfe, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x3e, 0x5c, 0xbc, 0x54, 0x5a, 0x5c, 0x7b, 0x54, 0x5a, 0x54, 0x38, 0x54, 0x37, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x9a, 0x5c, 0xba, 0x5c, 0xda, 0x64, 0xfb, 0x65, 0x1b, 0x6d, 0x3b, 0x6d, 0x5c, 0x75, 0x5c, 0x75, 0x7d, 0x7d, 0x9e, 0x7d, 0xbf, 0x7d, 0xde, 0x7d, 0xde, 0x7d, 0xbe, 0x75, 0xbe, 0x75, 0x7e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x7e, 0x75, 0x9e, 0x6d, 0x5e, 0x6d, 0x3e, 0x65, 0x3e, 0x6d, 0x7e, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0x9e, 0x6d, 0x9e, 0x6d, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x7d, 0xbe, 0x7d, 0xbe, 0x7d, 0x7e, 0x7d, 0x5e, 0x7d, 0x5e, 0x7d, 0x5e, 0x7d, 0x5e, 0x7d, 0x5e, 0x7d, 0x7e, 0x85, 0x9e, 0x8e, 0x1e, 0x96, 0xfe, 0xa7, 0x5d, 0xb7, 0x7e, 0xd7, 0x7e, 0xe7, 0x7e, 0xef, 0x7e, 0xe7, 0x7e, 0xe7, 0x7e, 0xef, 0x7e, 0xdf, 0x7e, 0xb7, 0x7e, 0xa7, 0x7e, 0x96, 0xbe, 0x85, 0xde, 0x75, 0x7e, 0x64, 0xfb, 0x5c, 0x79, 0x54, 0x38, 0x53, 0xf7, 0x4b, 0xb6, 0x43, 0x76, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x34, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x29, 0xf0, 0x21, 0xf0, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0xad, 0x11, 0x8d, 0x19, 0xad, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, + 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x21, 0xce, 0x19, 0xce, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x51, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x92, 0x3b, 0x55, 0x43, 0xb6, 0x54, 0x17, 0x5c, 0x77, 0x64, 0xb7, 0x7d, 0x19, 0x85, 0x3b, 0x85, 0x5b, 0x85, 0x19, 0x85, 0x19, 0x75, 0x3a, 0x64, 0xfb, 0x5c, 0xdb, 0x5c, 0xbb, 0x5c, 0x9b, 0x5c, 0xbc, 0x65, 0x1e, 0x6d, 0x5e, 0x75, 0x7e, 0x54, 0x18, 0x53, 0xd7, 0x53, 0xf7, 0x53, 0xf7, 0x54, 0x17, 0x5c, 0x37, 0x5c, 0x17, 0x5c, 0x16, 0x5c, 0x36, 0x54, 0x36, 0x54, 0x16, 0x54, 0x17, 0x54, 0x37, 0x54, 0x17, 0x54, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x37, 0x54, 0x37, 0x54, 0x57, 0x5c, 0x57, 0x5c, 0x37, 0x5c, 0x16, 0x53, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb5, 0x4b, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x75, 0x4b, 0x94, 0x43, 0x74, 0x43, 0x74, 0x4b, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd5, 0x43, 0xb5, 0x43, 0xd5, 0x43, 0xd5, 0x43, 0xf6, 0x43, 0xd6, 0x3b, 0xb5, 0x43, 0xb5, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x44, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x58, 0x54, 0x58, 0x54, 0x99, 0x54, 0x99, 0x54, 0x99, 0x54, 0xb9, 0x5c, 0xba, 0x54, 0xbb, 0x5c, 0xdc, 0x5c, 0xfd, 0x5d, 0x1e, 0x65, 0x3e, 0x5c, 0xdb, 0x54, 0x38, 0x54, 0x39, 0x54, 0x5a, 0x5c, 0x5a, 0x54, 0x39, 0x4c, 0x18, 0x54, 0x17, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x59, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x54, 0x9a, 0x5c, 0x9a, 0x5c, 0xba, 0x5c, 0xda, 0x5c, 0xfb, 0x65, 0x1b, 0x6d, 0x3b, 0x6d, 0x5c, 0x75, 0x7c, 0x7d, 0xbe, 0x7d, 0xdf, 0x7d, 0xbe, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x9e, 0x75, 0xbe, 0x6d, 0x7e, 0x6d, 0x7e, 0x6d, 0x7e, 0x65, 0x3e, 0x64, 0xfe, 0x65, 0x1e, 0x65, 0x5e, 0x6d, 0xbe, 0x75, 0x9e, 0x75, 0x9e, 0x6d, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x7d, 0xbe, 0x7d, 0xde, 0x7d, 0xbe, 0x7d, 0x7e, 0x7d, 0x7e, 0x7d, 0x5e, 0x7d, 0x5e, 0x7d, 0x5e, 0x7d, 0x9e, 0x85, 0xbe, 0x8e, 0x5e, 0x97, 0x3e, 0xa7, 0x7d, 0xb7, 0x7d, 0xd7, 0x5e, 0xe7, 0x7e, 0xef, 0x7e, 0xe7, 0x7e, 0xef, 0x7e, 0xe7, 0x7e, 0xc7, 0x7e, 0xaf, 0x7d, 0x9f, 0x3e, 0x8e, 0x5e, 0x7d, 0x9e, 0x6d, 0x3d, 0x64, 0xdb, 0x5c, 0x58, 0x54, 0x17, 0x4b, 0xf7, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf3, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xad, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0xad, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, + 0x19, 0xae, 0x19, 0xae, 0x21, 0xce, 0x19, 0xce, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xef, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x71, 0x32, 0xf3, 0x3b, 0x55, 0x43, 0x95, 0x4b, 0xf7, 0x5c, 0x57, 0x6c, 0xd8, 0x75, 0x3a, 0x85, 0x1a, 0x85, 0x3b, 0x8d, 0x5c, 0x85, 0x3a, 0x75, 0x3a, 0x6d, 0x1a, 0x64, 0xdb, 0x5c, 0xbc, 0x5c, 0x9b, 0x5c, 0xbc, 0x65, 0x1e, 0x6d, 0x3e, 0x75, 0x7e, 0x5c, 0x79, 0x4b, 0xf7, 0x54, 0x17, 0x54, 0x17, 0x54, 0x37, 0x5c, 0x57, 0x5c, 0x57, 0x64, 0x77, 0x64, 0x57, 0x5c, 0x77, 0x5c, 0x77, 0x5c, 0x57, 0x54, 0x57, 0x54, 0x57, 0x54, 0x38, 0x4c, 0x18, 0x54, 0x38, 0x4c, 0x37, 0x54, 0x58, 0x54, 0x58, 0x54, 0x57, 0x54, 0x57, 0x5c, 0x77, 0x5c, 0x57, 0x5c, 0x37, 0x54, 0x16, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x94, 0x43, 0x74, 0x4b, 0x94, 0x4b, 0xb5, 0x43, 0xd5, 0x43, 0xb5, 0x43, 0xb5, 0x3b, 0xb5, 0x3b, 0x95, 0x3b, 0x94, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd6, 0x43, 0xf6, 0x4c, 0x16, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x37, 0x4c, 0x58, 0x4c, 0x58, 0x54, 0x78, 0x54, 0x98, 0x54, 0x99, 0x54, 0x9a, 0x5c, 0xbb, 0x5c, 0xdc, 0x5c, 0xdc, 0x54, 0x9b, 0x54, 0x58, 0x54, 0x37, 0x54, 0x58, 0x54, 0x59, 0x54, 0x5a, 0x5c, 0x5a, 0x54, 0x59, 0x4b, 0xf7, 0x4b, 0xf7, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x79, 0x54, 0x9a, 0x5c, 0x9a, 0x5c, 0x9a, 0x5c, 0xba, 0x5c, 0xdb, 0x5c, 0xdb, 0x64, 0xfb, 0x65, 0x1c, 0x6d, 0x3c, 0x6d, 0x5d, 0x75, 0xbe, 0x75, 0xbf, 0x75, 0xbe, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0xbe, 0x75, 0xde, 0x75, 0xbe, 0x6d, 0x7e, 0x6d, 0x5e, 0x65, 0x3e, 0x65, 0x1e, 0x64, 0xfe, 0x64, 0xde, 0x5c, 0xde, 0x64, 0xfe, 0x64, 0xde, 0x65, 0x1e, 0x6d, 0x3e, 0x6d, 0x5e, 0x75, 0x7e, 0x75, 0x9e, 0x75, 0x9e, 0x7d, 0xbe, 0x7d, 0xbe, 0x7d, 0xbe, 0x7d, 0x7e, 0x7d, 0x7e, 0x7d, 0x7e, 0x7d, 0x5e, 0x7d, 0x7e, 0x7d, 0x9e, 0x85, 0xde, 0x8e, 0x7e, 0x97, 0x5e, 0xa7, 0x7d, 0xb7, 0x7e, 0xcf, 0x7e, 0xe7, 0x7e, 0xe7, 0x7e, 0xef, 0x7e, 0xe7, 0x7e, 0xcf, 0x7e, 0xb7, 0x7d, 0xa7, 0x9e, 0x96, 0xde, 0x85, 0xfe, 0x75, 0x7e, 0x6d, 0x1c, 0x5c, 0x99, 0x54, 0x17, 0x53, 0xf7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x34, 0x33, 0x14, 0x32, 0xf3, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, + 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x2a, 0x10, 0x2a, 0x50, 0x2a, 0x30, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x71, 0x32, 0xd3, 0x33, 0x13, 0x3b, 0x34, 0x43, 0x75, 0x4b, 0xb6, 0x54, 0x37, 0x64, 0xf9, 0x75, 0x19, 0x7d, 0x1a, 0x85, 0x3a, 0x85, 0x3b, 0x85, 0x5c, 0x75, 0x39, 0x6d, 0x1a, 0x64, 0xdb, 0x5c, 0xbb, 0x5c, 0x9b, 0x5c, 0xbc, 0x65, 0x1d, 0x6d, 0x3e, 0x75, 0x7e, 0x64, 0xba, 0x54, 0x18, 0x54, 0x18, 0x54, 0x38, 0x5c, 0x57, 0x5c, 0x77, 0x64, 0x77, 0x64, 0x77, 0x64, 0x77, 0x64, 0x77, 0x64, 0x77, 0x5c, 0x77, 0x5c, 0x77, 0x5c, 0x78, 0x54, 0x78, 0x54, 0x38, 0x54, 0x38, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x5c, 0x78, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0x77, 0x5c, 0x77, 0x5c, 0x57, 0x54, 0x16, 0x4c, 0x16, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xb6, 0x43, 0xb5, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0xb5, 0x4b, 0x95, 0x43, 0x74, 0x43, 0x74, 0x43, 0x95, 0x3b, 0xb5, 0x3b, 0xd5, 0x43, 0xb5, 0x43, 0x94, 0x43, 0x94, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd6, 0x4b, 0xf6, 0x4c, 0x16, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x4c, 0x58, 0x4c, 0x58, 0x54, 0x79, 0x54, 0x99, 0x5c, 0xba, 0x54, 0x7a, 0x4b, 0xf8, 0x4b, 0xd7, 0x54, 0x17, 0x5c, 0x38, 0x5c, 0x58, 0x5c, 0x59, 0x54, 0x59, 0x5c, 0x7a, 0x54, 0x39, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xf7, 0x54, 0x58, 0x54, 0x78, 0x54, 0x58, 0x54, 0x78, 0x5c, 0x79, 0x54, 0x79, 0x5c, 0x99, 0x54, 0x79, 0x54, 0x79, 0x5c, 0x9a, 0x54, 0x9a, 0x5c, 0x9a, 0x54, 0x9a, 0x54, 0xbb, 0x5c, 0xdb, 0x5c, 0xdb, 0x64, 0xfc, 0x64, 0xfc, 0x6d, 0x3c, 0x6d, 0x7e, 0x75, 0x9f, 0x75, 0xbf, 0x75, 0xbe, 0x6d, 0x7d, 0x6d, 0x5d, 0x6d, 0x3e, 0x65, 0x1e, 0x65, 0x1e, 0x64, 0xfe, 0x64, 0xde, 0x64, 0xde, 0x64, 0xde, 0x64, 0xde, 0x5c, 0xbe, 0x5c, 0xbe, 0x64, 0xde, 0x64, 0xde, 0x64, 0xfe, 0x64, 0xfe, 0x65, 0x1e, 0x6d, 0x3e, 0x6d, 0x7e, 0x75, 0xbe, 0x7d, 0x9e, 0x7d, 0x9e, 0x7d, 0xbe, 0x7d, 0xbe, 0x7d, 0x9e, 0x75, 0x7e, 0x7d, 0x7e, 0x7d, 0x9e, 0x85, 0xfe, 0x85, 0xfe, 0x86, 0x7e, 0x8f, 0x1e, 0x9f, 0x7d, 0xaf, 0x7e, 0xbf, 0x7e, 0xd7, 0x7e, 0xd7, 0x7e, 0xcf, 0x7e, 0xbf, 0x7e, 0xaf, 0x7d, 0xa7, 0x7d, 0x96, 0xfe, 0x86, 0x1e, 0x7d, 0x9f, 0x75, 0x3d, 0x64, 0xba, 0x5c, 0x58, 0x54, 0x17, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x76, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x32, 0xd3, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x10, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0x8e, 0x19, 0xae, 0x19, 0x8d, 0x11, 0x8d, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0xae, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, + 0x19, 0xce, 0x19, 0xce, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x2a, 0x30, 0x2a, 0x30, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0xb2, 0x2a, 0xd3, 0x32, 0xd3, 0x33, 0x34, 0x3b, 0x55, 0x43, 0xb6, 0x5c, 0x79, 0x64, 0xd9, 0x6d, 0x19, 0x75, 0x1a, 0x7d, 0x3a, 0x7d, 0x3b, 0x7d, 0x5c, 0x75, 0x5b, 0x6d, 0x1a, 0x64, 0xda, 0x5c, 0xbb, 0x5c, 0xbb, 0x64, 0xdc, 0x64, 0xfd, 0x6d, 0x3e, 0x75, 0x7e, 0x6d, 0x5c, 0x5c, 0x38, 0x54, 0x38, 0x5c, 0x58, 0x5c, 0x78, 0x64, 0x78, 0x64, 0x97, 0x64, 0x97, 0x6c, 0x97, 0x6c, 0x97, 0x64, 0x97, 0x64, 0x98, 0x64, 0x98, 0x5c, 0x98, 0x5c, 0x98, 0x54, 0x78, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x78, 0x5c, 0x78, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0x98, 0x64, 0x78, 0x5c, 0x77, 0x54, 0x16, 0x54, 0x17, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xd5, 0x4b, 0xd5, 0x53, 0xd5, 0x4b, 0xb5, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0xb5, 0x43, 0x94, 0x43, 0x94, 0x43, 0x94, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xd5, 0x43, 0xd5, 0x43, 0xf6, 0x4b, 0xf6, 0x4c, 0x16, 0x43, 0xf6, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x58, 0x54, 0x78, 0x54, 0x79, 0x4b, 0xf7, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xf7, 0x54, 0x17, 0x5c, 0x18, 0x5c, 0x38, 0x5c, 0x58, 0x5c, 0x59, 0x5c, 0x59, 0x4c, 0x18, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4c, 0x18, 0x54, 0x58, 0x54, 0x78, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x99, 0x54, 0x99, 0x5c, 0x99, 0x54, 0x9a, 0x5c, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9b, 0x54, 0x9b, 0x5c, 0xbb, 0x5c, 0xdb, 0x5c, 0xdc, 0x5c, 0xdc, 0x64, 0xfc, 0x65, 0x1d, 0x65, 0x1c, 0x5c, 0xdb, 0x5c, 0xbc, 0x64, 0xdd, 0x64, 0xfe, 0x65, 0x1e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x3e, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0xde, 0x64, 0xde, 0x5c, 0xde, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0xfe, 0x6d, 0x3e, 0x75, 0x7e, 0x7d, 0xbe, 0x7d, 0xbe, 0x7d, 0x9e, 0x7d, 0xbe, 0x7d, 0x9e, 0x75, 0x7e, 0x75, 0x9e, 0x7d, 0xbe, 0x7e, 0x1e, 0x8e, 0xde, 0x8f, 0x1e, 0x8f, 0x3d, 0x97, 0x5d, 0xa7, 0x7d, 0xb7, 0x7e, 0xb7, 0x7e, 0xb7, 0x7e, 0xb7, 0x7e, 0xaf, 0x7d, 0x9f, 0x7e, 0x97, 0x1e, 0x86, 0x3e, 0x7d, 0x9f, 0x75, 0x3d, 0x6c, 0xfb, 0x5c, 0x79, 0x54, 0x37, 0x4b, 0xf7, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x3b, 0x96, 0x3b, 0x75, 0x3b, 0x55, 0x32, 0xb3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8d, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, + 0x19, 0xce, 0x21, 0xce, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x2a, 0x10, 0x2a, 0x30, 0x22, 0x30, 0x19, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x22, 0x0f, 0x22, 0x10, 0x2a, 0x51, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xd3, 0x33, 0x14, 0x3b, 0x54, 0x4b, 0xd6, 0x5c, 0x78, 0x64, 0xb9, 0x64, 0xfa, 0x6d, 0x1a, 0x75, 0x3a, 0x75, 0x3a, 0x75, 0x5b, 0x75, 0x7c, 0x65, 0x1a, 0x64, 0xda, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xbb, 0x64, 0xdd, 0x6d, 0x1e, 0x75, 0x7e, 0x7d, 0xde, 0x5c, 0x59, 0x5c, 0x38, 0x5c, 0x58, 0x64, 0x98, 0x64, 0xb8, 0x6c, 0x98, 0x6c, 0x98, 0x6c, 0x98, 0x6c, 0x98, 0x6c, 0x98, 0x6c, 0x98, 0x64, 0xb8, 0x64, 0xd8, 0x5c, 0xb8, 0x5c, 0x98, 0x54, 0x99, 0x54, 0x79, 0x54, 0x78, 0x54, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0xb8, 0x64, 0xd8, 0x64, 0xb8, 0x64, 0x98, 0x5c, 0x78, 0x54, 0x37, 0x54, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x53, 0xd6, 0x4b, 0xd5, 0x43, 0xb5, 0x43, 0x95, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x74, 0x3b, 0x33, 0x43, 0x54, 0x43, 0x94, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd5, 0x43, 0xd5, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x58, 0x4c, 0x37, 0x43, 0x95, 0x3b, 0x34, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xd7, 0x4b, 0xf7, 0x54, 0x17, 0x5c, 0x38, 0x5c, 0x38, 0x5c, 0x58, 0x54, 0x38, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0xf8, 0x43, 0xf8, 0x4c, 0x18, 0x54, 0x58, 0x5c, 0x79, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x99, 0x5c, 0x9a, 0x5c, 0xba, 0x5c, 0x9a, 0x54, 0xbb, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xbb, 0x5c, 0xbc, 0x5c, 0xbb, 0x5c, 0xbc, 0x54, 0x9a, 0x4c, 0x38, 0x4c, 0x18, 0x54, 0x7a, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xdd, 0x64, 0xfe, 0x65, 0x1e, 0x6d, 0x5e, 0x75, 0x7e, 0x75, 0x9e, 0x75, 0x7e, 0x6d, 0x5e, 0x6d, 0x3e, 0x64, 0xfe, 0x64, 0xfe, 0x5c, 0xde, 0x5c, 0xde, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0xfe, 0x65, 0x1e, 0x64, 0xfe, 0x6d, 0x1e, 0x65, 0x1e, 0x6d, 0x5e, 0x75, 0x9e, 0x7d, 0xbe, 0x7d, 0xbe, 0x7d, 0xde, 0x7d, 0xbe, 0x75, 0x7e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0xde, 0x7e, 0x3e, 0x8e, 0xfe, 0x97, 0x5d, 0x97, 0x5d, 0x9f, 0x5d, 0xa7, 0x5d, 0xa7, 0x7d, 0xa7, 0x7d, 0x9f, 0x5d, 0x97, 0x5e, 0x8e, 0xff, 0x86, 0x3e, 0x7d, 0x9e, 0x75, 0x5e, 0x6c, 0xfc, 0x64, 0x99, 0x5c, 0x58, 0x54, 0x17, 0x4b, 0xf6, 0x43, 0xb6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x10, 0x22, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xad, 0x19, 0x8d, 0x19, 0x8d, 0x11, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, + 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x29, 0xef, 0x2a, 0x30, 0x2a, 0x30, 0x19, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x22, 0x0f, 0x22, 0x10, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xd3, 0x32, 0xf3, 0x43, 0x95, 0x54, 0x16, 0x5c, 0x57, 0x5c, 0x99, 0x64, 0xd9, 0x64, 0xfa, 0x6d, 0x1a, 0x6d, 0x3a, 0x6d, 0x5b, 0x6d, 0x5c, 0x6d, 0x3c, 0x5c, 0xba, 0x5c, 0x9a, 0x5c, 0xbb, 0x5c, 0xbb, 0x64, 0xdc, 0x65, 0x1e, 0x6d, 0x7e, 0x75, 0xbe, 0x6d, 0x1b, 0x5c, 0x59, 0x5c, 0x79, 0x64, 0x98, 0x64, 0xb8, 0x6c, 0xb8, 0x6c, 0xb8, 0x74, 0xb8, 0x74, 0xb8, 0x74, 0xb8, 0x74, 0xb8, 0x6c, 0xb8, 0x6c, 0xd8, 0x64, 0xf9, 0x64, 0xd9, 0x5c, 0xb9, 0x5c, 0xb9, 0x54, 0x99, 0x54, 0x99, 0x5c, 0xb9, 0x5c, 0x99, 0x5c, 0xb9, 0x64, 0xd9, 0x64, 0xf9, 0x64, 0xd9, 0x64, 0xb8, 0x5c, 0x78, 0x54, 0x37, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x53, 0xf6, 0x54, 0x16, 0x4b, 0xf6, 0x43, 0xd6, 0x43, 0xd5, 0x43, 0xb5, 0x43, 0xb5, 0x3b, 0x95, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x54, 0x3b, 0x74, 0x43, 0x74, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xd5, 0x43, 0xd5, 0x43, 0xd5, 0x43, 0xb5, 0x3b, 0xb5, 0x3b, 0xd6, 0x43, 0xd6, 0x4b, 0xf7, 0x4c, 0x17, 0x43, 0xb5, 0x3b, 0x14, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xf7, 0x54, 0x17, 0x54, 0x37, 0x54, 0x38, 0x5c, 0x58, 0x54, 0x18, 0x43, 0xf7, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x54, 0x58, 0x5c, 0x99, 0x5c, 0xb9, 0x5c, 0xb9, 0x5c, 0xba, 0x5c, 0xba, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xdc, 0x5c, 0xbb, 0x54, 0x7a, 0x54, 0x19, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x39, 0x54, 0x7b, 0x54, 0xbc, 0x5c, 0xdd, 0x5c, 0xfe, 0x65, 0x1e, 0x6d, 0x5e, 0x75, 0xbe, 0x7d, 0xbe, 0x7d, 0xbe, 0x75, 0xbe, 0x75, 0x7e, 0x6d, 0x5e, 0x6d, 0x3e, 0x65, 0x1e, 0x65, 0x1e, 0x64, 0xfe, 0x64, 0xfe, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0x3e, 0x65, 0x3e, 0x75, 0x5e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0xbe, 0x7d, 0xbe, 0x7d, 0xde, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0xbe, 0x7d, 0xde, 0x7e, 0x5f, 0x8e, 0xfe, 0x97, 0x5d, 0x9f, 0x7d, 0x9f, 0x5d, 0x97, 0x5d, 0x8f, 0x3e, 0x8e, 0xfe, 0x86, 0x9f, 0x86, 0x1e, 0x75, 0xbe, 0x6d, 0x5e, 0x6c, 0xfc, 0x64, 0xba, 0x5c, 0x78, 0x54, 0x37, 0x53, 0xf7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x96, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xad, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, + 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x29, 0xef, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xef, 0x22, 0x0f, 0x22, 0x0f, 0x21, 0xf0, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb3, 0x3b, 0x34, 0x43, 0xb5, 0x4b, 0xd6, 0x54, 0x17, 0x5c, 0x58, 0x64, 0xb9, 0x64, 0xda, 0x64, 0xfa, 0x64, 0xfa, 0x65, 0x1a, 0x65, 0x1b, 0x65, 0x1c, 0x5c, 0xda, 0x5c, 0x9a, 0x5c, 0x9a, 0x5c, 0x9a, 0x64, 0xdc, 0x64, 0xfe, 0x6d, 0x5e, 0x75, 0x9e, 0x75, 0x5d, 0x5c, 0x79, 0x5c, 0x79, 0x64, 0xb9, 0x64, 0xd8, 0x6c, 0xd8, 0x74, 0xd8, 0x74, 0xb8, 0x74, 0xb8, 0x74, 0xd8, 0x74, 0xd8, 0x74, 0xd9, 0x74, 0xf9, 0x75, 0x19, 0x6d, 0x1a, 0x64, 0xfa, 0x5c, 0xda, 0x5c, 0xba, 0x5c, 0xba, 0x5c, 0xda, 0x5c, 0xda, 0x64, 0xda, 0x64, 0xda, 0x64, 0xf9, 0x64, 0xf9, 0x64, 0xd9, 0x64, 0xd9, 0x5c, 0x78, 0x54, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x16, 0x4b, 0xf6, 0x4b, 0xf6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xb5, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x74, 0x3b, 0x95, 0x43, 0x95, 0x43, 0xd5, 0x43, 0xb5, 0x3b, 0xb5, 0x3b, 0xb5, 0x3b, 0xb5, 0x43, 0xd6, 0x43, 0xd6, 0x3b, 0x34, 0x32, 0xb3, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xd7, 0x4b, 0xf7, 0x54, 0x17, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x17, 0x43, 0xf7, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x59, 0x5c, 0xb9, 0x5c, 0xda, 0x5c, 0xda, 0x5c, 0xdb, 0x5c, 0xdb, 0x64, 0xfc, 0x5c, 0xdc, 0x54, 0x59, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x39, 0x54, 0x7b, 0x5c, 0xde, 0x5c, 0xfe, 0x5c, 0xfe, 0x65, 0x3e, 0x6d, 0x9e, 0x75, 0xbe, 0x7d, 0xde, 0x7d, 0xde, 0x7d, 0xff, 0x75, 0xde, 0x75, 0x9e, 0x6d, 0x7e, 0x6d, 0x5e, 0x6d, 0x3e, 0x65, 0x1e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x1e, 0x65, 0x3e, 0x65, 0x1e, 0x65, 0x1e, 0x6d, 0x3e, 0x6d, 0x3e, 0x75, 0x7e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0xbe, 0x6d, 0x5e, 0x6d, 0x5e, 0x75, 0x9e, 0x75, 0xbe, 0x75, 0xff, 0x7e, 0x7e, 0x8e, 0xfe, 0x97, 0x5e, 0x97, 0x5d, 0x97, 0x7d, 0x86, 0x5e, 0x7e, 0x1e, 0x75, 0xdf, 0x75, 0x9e, 0x6d, 0x5e, 0x64, 0xfc, 0x5c, 0x9a, 0x5c, 0x59, 0x5c, 0x38, 0x54, 0x17, 0x4c, 0x17, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x10, 0x22, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x21, 0xce, 0x21, 0xcf, + 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x29, 0xef, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xef, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x50, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xd3, 0x3b, 0x55, 0x43, 0x95, 0x4b, 0xb6, 0x53, 0xf6, 0x5c, 0x37, 0x5c, 0x78, 0x5c, 0x99, 0x5c, 0xba, 0x5c, 0xba, 0x5c, 0xda, 0x64, 0xdb, 0x5c, 0xdb, 0x5c, 0xdc, 0x54, 0x79, 0x54, 0x7a, 0x5c, 0x9a, 0x5c, 0xbb, 0x64, 0xfd, 0x6d, 0x3e, 0x75, 0x9e, 0x75, 0x9d, 0x64, 0x9a, 0x5c, 0x9a, 0x64, 0xb9, 0x6c, 0xd9, 0x6c, 0xf9, 0x74, 0xd9, 0x74, 0xd9, 0x7c, 0xd8, 0x7c, 0xd9, 0x7c, 0xd9, 0x7c, 0xf9, 0x7d, 0x1a, 0x75, 0x1a, 0x6d, 0x3a, 0x6d, 0x3b, 0x65, 0x1b, 0x5d, 0x1b, 0x5c, 0xfb, 0x5c, 0xdb, 0x5c, 0xfb, 0x64, 0xfb, 0x6d, 0x1b, 0x65, 0x1a, 0x65, 0x1a, 0x64, 0xfa, 0x64, 0xfa, 0x5c, 0xb9, 0x54, 0x37, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x54, 0x17, 0x54, 0x17, 0x4c, 0x16, 0x4c, 0x16, 0x4b, 0xf6, 0x43, 0xf6, 0x43, 0xd6, 0x43, 0x95, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x95, 0x3b, 0x75, 0x33, 0x74, 0x33, 0x54, 0x33, 0x55, 0x33, 0x95, 0x3b, 0xb5, 0x43, 0xd6, 0x43, 0x95, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x33, 0x13, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4c, 0x17, 0x54, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x54, 0x59, 0x5c, 0x9a, 0x5c, 0xda, 0x64, 0xfb, 0x5c, 0xfb, 0x54, 0x79, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x58, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x5a, 0x5c, 0xbd, 0x5c, 0xfe, 0x5c, 0xfe, 0x5c, 0xfe, 0x6d, 0x3e, 0x75, 0x9e, 0x7d, 0xde, 0x7e, 0x1e, 0x86, 0x3e, 0x86, 0x3e, 0x7e, 0x3e, 0x7e, 0x1e, 0x7d, 0xfe, 0x75, 0xbe, 0x75, 0x9e, 0x6d, 0x7e, 0x65, 0x3e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x3e, 0x65, 0x3e, 0x65, 0x3e, 0x6d, 0x3e, 0x6d, 0x3e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0xbe, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x7e, 0x6d, 0x7e, 0x75, 0x9e, 0x75, 0xfe, 0x7e, 0x3e, 0x86, 0x7e, 0x8e, 0xde, 0x8f, 0x1f, 0x86, 0x7e, 0x6d, 0x9e, 0x6d, 0x5e, 0x65, 0x3e, 0x64, 0xfc, 0x5c, 0xba, 0x5c, 0x79, 0x54, 0x58, 0x54, 0x18, 0x4b, 0xf7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x10, 0x22, 0x10, 0x22, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x21, 0xcf, 0x21, 0xef, + 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x2a, 0x0f, 0x2a, 0x30, 0x21, 0xf0, 0x21, 0xef, 0x22, 0x10, 0x19, 0xf0, 0x1a, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xd3, 0x33, 0x14, 0x3b, 0x54, 0x43, 0x95, 0x4b, 0xb5, 0x53, 0xd6, 0x53, 0xf7, 0x54, 0x17, 0x5c, 0x58, 0x54, 0x59, 0x54, 0x79, 0x54, 0x79, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0xbc, 0x54, 0x7b, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0xbb, 0x64, 0xdc, 0x65, 0x1e, 0x75, 0x7e, 0x75, 0xbe, 0x6d, 0x1c, 0x5c, 0x9a, 0x64, 0xda, 0x64, 0xfa, 0x6c, 0xf9, 0x74, 0xd9, 0x7c, 0xf9, 0x7c, 0xd9, 0x7c, 0xd9, 0x7c, 0xf9, 0x7d, 0x1a, 0x7d, 0x1a, 0x7d, 0x3a, 0x75, 0x5b, 0x6d, 0x5b, 0x6d, 0x5c, 0x65, 0x5c, 0x65, 0x3d, 0x65, 0x1d, 0x65, 0x1d, 0x65, 0x3d, 0x6d, 0x3d, 0x6d, 0x5c, 0x6d, 0x3b, 0x65, 0x1b, 0x65, 0x1a, 0x5c, 0xda, 0x54, 0x99, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x37, 0x4c, 0x17, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x16, 0x4b, 0xd6, 0x43, 0x95, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x33, 0x75, 0x33, 0x54, 0x2b, 0x34, 0x2b, 0x34, 0x2b, 0x34, 0x2b, 0x34, 0x2b, 0x55, 0x33, 0x54, 0x32, 0xd2, 0x2a, 0x71, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x55, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x59, 0x54, 0x99, 0x54, 0x79, 0x4b, 0xf7, 0x4b, 0xf7, 0x54, 0x37, 0x54, 0x38, 0x54, 0x58, 0x54, 0x58, 0x54, 0x78, 0x54, 0x79, 0x54, 0x79, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x5a, 0x5c, 0xbd, 0x5d, 0x1e, 0x5d, 0x1e, 0x65, 0x3e, 0x6d, 0x7e, 0x75, 0xbe, 0x7d, 0xfe, 0x7e, 0x5e, 0x86, 0x9f, 0x86, 0xbe, 0x86, 0x9e, 0x86, 0x5f, 0x7e, 0x3e, 0x7d, 0xfe, 0x75, 0xbe, 0x75, 0x9e, 0x6d, 0x7e, 0x6d, 0x7e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x5e, 0x75, 0x7e, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x6d, 0x5e, 0x65, 0x3e, 0x65, 0x5e, 0x6d, 0x5e, 0x6d, 0x7e, 0x75, 0xbe, 0x75, 0xde, 0x7d, 0xff, 0x7e, 0x3f, 0x7e, 0x3f, 0x7e, 0x1e, 0x75, 0x9e, 0x65, 0x1d, 0x5c, 0xdc, 0x5c, 0xbb, 0x5c, 0x7a, 0x54, 0x59, 0x4c, 0x18, 0x4b, 0xf7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0xd6, 0x43, 0xd6, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x0f, 0x29, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x21, 0xce, 0x21, 0xcf, 0x21, 0xcf, + 0x21, 0xef, 0x29, 0xef, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0x10, 0x21, 0xef, 0x19, 0xef, 0x19, 0xf0, 0x1a, 0x10, 0x22, 0x30, 0x22, 0x31, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xd3, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x55, 0x43, 0x75, 0x4b, 0xb6, 0x4b, 0xb6, 0x53, 0xd6, 0x53, 0xf7, 0x54, 0x17, 0x54, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4b, 0xf8, 0x4c, 0x39, 0x54, 0x5a, 0x54, 0x7b, 0x54, 0x39, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0xdc, 0x65, 0x1e, 0x6d, 0x5e, 0x75, 0x9e, 0x6d, 0x3d, 0x5c, 0x9b, 0x64, 0xdb, 0x64, 0xfa, 0x6d, 0x1a, 0x75, 0x1a, 0x7d, 0x1a, 0x7c, 0xf9, 0x84, 0xfa, 0x84, 0xfa, 0x85, 0x1a, 0x85, 0x1b, 0x7d, 0x3b, 0x7d, 0x5c, 0x75, 0x9c, 0x75, 0x9d, 0x6d, 0xbe, 0x6d, 0x7e, 0x6d, 0x7e, 0x6d, 0x7e, 0x6d, 0x7e, 0x6d, 0x7e, 0x6d, 0x9e, 0x6d, 0x7e, 0x6d, 0x5d, 0x65, 0x3c, 0x65, 0x1c, 0x5c, 0xba, 0x4c, 0x38, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x5c, 0x78, 0x54, 0x58, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4b, 0xd6, 0x4b, 0x95, 0x4b, 0x95, 0x43, 0xb5, 0x43, 0x94, 0x43, 0x74, 0x3b, 0x74, 0x3b, 0x74, 0x33, 0x54, 0x2b, 0x54, 0x2b, 0x34, 0x23, 0x34, 0x2b, 0x34, 0x2b, 0x14, 0x2b, 0x54, 0x33, 0x34, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x43, 0x55, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xf6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x58, 0x4c, 0x38, 0x4b, 0xf7, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xf7, 0x54, 0x37, 0x54, 0x37, 0x54, 0x38, 0x5c, 0x58, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x99, 0x5c, 0xba, 0x5c, 0x9a, 0x5c, 0x9b, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0x9c, 0x5c, 0xde, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x5e, 0x75, 0xbe, 0x75, 0xfe, 0x7e, 0x3e, 0x86, 0x9e, 0x8e, 0xde, 0x8f, 0x1e, 0x8e, 0xfe, 0x86, 0xbe, 0x86, 0x9f, 0x86, 0x5e, 0x7e, 0x1e, 0x75, 0xde, 0x75, 0x9e, 0x6d, 0x9e, 0x6d, 0x7e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x3e, 0x6d, 0x3e, 0x6d, 0x5e, 0x75, 0x7e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x6d, 0x5e, 0x65, 0x3e, 0x65, 0x3e, 0x6d, 0x5e, 0x6d, 0x7e, 0x6d, 0x7e, 0x75, 0x9e, 0x75, 0xbe, 0x75, 0x9e, 0x75, 0xbe, 0x75, 0xbf, 0x6d, 0x7e, 0x65, 0x1d, 0x5c, 0x9b, 0x54, 0x5a, 0x54, 0x38, 0x4c, 0x17, 0x4b, 0xd7, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x59, 0x3b, 0x75, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x0f, 0x2a, 0x0f, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x21, 0xce, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, + 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x21, 0xef, 0x19, 0xef, 0x19, 0xef, 0x19, 0xef, 0x21, 0xf0, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x55, 0x43, 0x75, 0x4b, 0xb6, 0x4b, 0xd6, 0x53, 0xd7, 0x54, 0x17, 0x54, 0x38, 0x4c, 0x19, 0x4c, 0x19, 0x54, 0x39, 0x54, 0x39, 0x54, 0x3a, 0x54, 0x5b, 0x54, 0x5a, 0x54, 0x7a, 0x5c, 0x9b, 0x64, 0xdd, 0x65, 0x1e, 0x75, 0x5e, 0x7d, 0xbe, 0x75, 0x9e, 0x64, 0xbb, 0x64, 0xbb, 0x6c, 0xfb, 0x6d, 0x3b, 0x75, 0x3a, 0x7d, 0x1a, 0x7d, 0x1a, 0x85, 0x1a, 0x85, 0x1a, 0x85, 0x1a, 0x85, 0x3b, 0x85, 0x5c, 0x85, 0x7d, 0x7d, 0x9e, 0x7d, 0xfe, 0x7e, 0x1e, 0x7e, 0x1e, 0x7d, 0xfe, 0x7d, 0xde, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0xde, 0x75, 0xbe, 0x6d, 0x7e, 0x65, 0x5d, 0x65, 0x3d, 0x5c, 0x9a, 0x54, 0x38, 0x54, 0x58, 0x5c, 0x78, 0x5c, 0x79, 0x5c, 0x58, 0x54, 0x78, 0x54, 0x58, 0x54, 0x57, 0x4c, 0x17, 0x4b, 0xd6, 0x4b, 0xd5, 0x4b, 0xd5, 0x4b, 0x95, 0x43, 0x95, 0x3b, 0x75, 0x33, 0x74, 0x33, 0x54, 0x33, 0x34, 0x2b, 0x34, 0x2b, 0x34, 0x23, 0x34, 0x23, 0x34, 0x2b, 0x55, 0x2b, 0x14, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x55, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xf6, 0x43, 0xf6, 0x43, 0xf6, 0x43, 0xf6, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x18, 0x43, 0xf7, 0x3b, 0x96, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf7, 0x54, 0x37, 0x5c, 0x37, 0x5c, 0x58, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x99, 0x5c, 0xba, 0x5c, 0xba, 0x5c, 0xbb, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xde, 0x5d, 0x1e, 0x65, 0x5e, 0x6d, 0x7e, 0x75, 0xbe, 0x7e, 0x3e, 0x86, 0x7e, 0x86, 0xbf, 0x8e, 0xfe, 0x8f, 0x1e, 0x8f, 0x5e, 0x8f, 0x3e, 0x8f, 0x3e, 0x8f, 0x1e, 0x86, 0xbe, 0x7e, 0x5e, 0x7d, 0xfe, 0x75, 0xbe, 0x75, 0x9e, 0x6d, 0x9e, 0x6d, 0x9e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x5e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x9e, 0x6d, 0x5e, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0x3e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x7e, 0x6d, 0x5e, 0x6d, 0x5f, 0x6d, 0x3e, 0x54, 0x79, 0x4c, 0x18, 0x4b, 0xf7, 0x4c, 0x59, 0x54, 0x9a, 0x4c, 0x7a, 0x4c, 0x59, 0x3b, 0x75, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xce, 0x19, 0xce, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x22, 0x0f, 0x2a, 0x10, 0x2a, 0x10, + 0x2a, 0x30, 0x22, 0x10, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xf4, 0x33, 0x35, 0x3b, 0x75, 0x43, 0x95, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x19, 0x4c, 0x3a, 0x54, 0x5a, 0x54, 0x5b, 0x54, 0x7b, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x7b, 0x5c, 0xbc, 0x64, 0xfe, 0x6d, 0x5e, 0x75, 0x9e, 0x7d, 0xdf, 0x7d, 0xbe, 0x6d, 0x1d, 0x6d, 0x1c, 0x6d, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x7d, 0x3a, 0x85, 0x3a, 0x85, 0x3b, 0x85, 0x3b, 0x8d, 0x5b, 0x8d, 0x7c, 0x85, 0x9d, 0x85, 0xbe, 0x86, 0x1f, 0x86, 0x7f, 0x86, 0x7e, 0x86, 0x9e, 0x86, 0x9e, 0x86, 0x7e, 0x86, 0x7f, 0x7e, 0x7e, 0x7e, 0x5e, 0x7e, 0x5f, 0x7e, 0x1e, 0x75, 0xbe, 0x6d, 0x9e, 0x65, 0x1d, 0x54, 0x9a, 0x5c, 0x79, 0x5c, 0xba, 0x64, 0xd9, 0x5c, 0x99, 0x54, 0x78, 0x54, 0x58, 0x54, 0x57, 0x4c, 0x16, 0x4b, 0xf6, 0x53, 0xf6, 0x4b, 0xd6, 0x43, 0xb5, 0x3b, 0x75, 0x33, 0x55, 0x2b, 0x54, 0x2b, 0x34, 0x2b, 0x34, 0x2b, 0x34, 0x23, 0x34, 0x23, 0x34, 0x2b, 0x34, 0x2a, 0xf3, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x75, 0x43, 0x95, 0x4b, 0xb5, 0x4b, 0xd5, 0x43, 0xf6, 0x43, 0xf6, 0x43, 0xf6, 0x43, 0xd6, 0x43, 0xf6, 0x4c, 0x37, 0x4c, 0x37, 0x4c, 0x37, 0x43, 0xd6, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf6, 0x4b, 0xf7, 0x54, 0x37, 0x5c, 0x58, 0x5c, 0x58, 0x64, 0x78, 0x64, 0x99, 0x64, 0xb9, 0x64, 0xda, 0x64, 0xfb, 0x64, 0xdc, 0x64, 0xfc, 0x64, 0xfd, 0x64, 0xfe, 0x64, 0xfe, 0x5c, 0xfe, 0x65, 0x1e, 0x65, 0x3e, 0x65, 0x5e, 0x75, 0xbe, 0x75, 0xde, 0x7e, 0x9e, 0x87, 0x1e, 0x8f, 0x5e, 0x97, 0x7d, 0x97, 0x7d, 0x9f, 0x7d, 0x9f, 0x7d, 0x97, 0x7d, 0x97, 0x7e, 0x8e, 0xfe, 0x86, 0x7e, 0x7e, 0x3e, 0x7d, 0xde, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0x9e, 0x6d, 0x7e, 0x6d, 0x7e, 0x6d, 0x7e, 0x6d, 0x7e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x7e, 0x6d, 0x7e, 0x75, 0x7e, 0x6d, 0x3e, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0x3e, 0x6d, 0x5e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x1e, 0x65, 0x1e, 0x6d, 0x5f, 0x5c, 0xbb, 0x5c, 0xbc, 0x54, 0xbd, 0x54, 0x9b, 0x54, 0x9a, 0x4b, 0xf8, 0x3b, 0x34, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xf0, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x2a, 0x0f, 0x2a, 0x10, 0x2a, 0x10, + 0x22, 0x0f, 0x19, 0xae, 0x19, 0xce, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x52, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x33, 0x14, 0x3b, 0x35, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x19, 0x4c, 0x39, 0x54, 0x7a, 0x54, 0x7a, 0x5c, 0x7b, 0x54, 0x7a, 0x54, 0x5a, 0x54, 0x7b, 0x54, 0x9b, 0x5c, 0xdd, 0x64, 0xfe, 0x6d, 0x5e, 0x75, 0x9e, 0x7d, 0xbe, 0x6d, 0x5d, 0x75, 0x3d, 0x75, 0x5c, 0x75, 0x5c, 0x75, 0x5c, 0x7d, 0x5b, 0x85, 0x5b, 0x85, 0x5b, 0x8d, 0x3b, 0x8d, 0x5c, 0x8d, 0x7d, 0x8d, 0x9e, 0x85, 0xdf, 0x86, 0x5e, 0x86, 0xde, 0x8f, 0x3e, 0x97, 0x5e, 0x97, 0x5e, 0x97, 0x5e, 0x97, 0x3e, 0x97, 0x5e, 0x8f, 0x5e, 0x8f, 0x1e, 0x86, 0xff, 0x86, 0x7f, 0x75, 0xfe, 0x75, 0x9e, 0x64, 0xfc, 0x5c, 0xdb, 0x6d, 0x1c, 0x64, 0xdb, 0x5c, 0xda, 0x54, 0x99, 0x54, 0x78, 0x54, 0x58, 0x54, 0x17, 0x54, 0x17, 0x4b, 0xf6, 0x43, 0xd6, 0x3b, 0xb6, 0x33, 0x95, 0x2b, 0x75, 0x2b, 0x55, 0x2b, 0x35, 0x2b, 0x34, 0x2b, 0x34, 0x2b, 0x34, 0x2b, 0x34, 0x2a, 0xf3, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x54, 0x43, 0x95, 0x4b, 0xb5, 0x4b, 0xd5, 0x4b, 0xd5, 0x43, 0xd6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xf7, 0x43, 0xf7, 0x43, 0xd6, 0x3b, 0x75, 0x33, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf7, 0x4c, 0x17, 0x54, 0x37, 0x5c, 0x58, 0x64, 0x78, 0x64, 0x98, 0x64, 0xb9, 0x64, 0xd9, 0x64, 0xfa, 0x64, 0xfb, 0x64, 0xfc, 0x65, 0x1d, 0x65, 0x1e, 0x65, 0x1e, 0x64, 0xfe, 0x65, 0x3e, 0x65, 0x5e, 0x6d, 0x7e, 0x75, 0xbe, 0x7e, 0x1e, 0x86, 0xbe, 0x8f, 0x5e, 0x97, 0x7d, 0x9f, 0x7d, 0xa7, 0x7d, 0xa7, 0x7d, 0xa7, 0x7d, 0xa7, 0x9d, 0xa7, 0x7d, 0x9f, 0x7d, 0x97, 0x5e, 0x8e, 0xfe, 0x86, 0x7e, 0x7e, 0x1e, 0x75, 0xde, 0x75, 0xbe, 0x75, 0xbe, 0x75, 0x9e, 0x6d, 0x7e, 0x6d, 0x7e, 0x6d, 0x5e, 0x75, 0x9e, 0x75, 0xbe, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x7e, 0x6d, 0x3e, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x1f, 0x65, 0x1e, 0x65, 0x1e, 0x64, 0xfe, 0x64, 0xfe, 0x65, 0x3e, 0x6d, 0x7f, 0x65, 0x3e, 0x5c, 0xdd, 0x54, 0xbc, 0x54, 0x7b, 0x4b, 0xf7, 0x3b, 0x55, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xef, 0x29, 0xef, 0x2a, 0x0f, 0x2a, 0x10, 0x2a, 0x10, + 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xb3, 0x32, 0xf4, 0x3b, 0x35, 0x3b, 0x76, 0x43, 0x96, 0x43, 0xb7, 0x43, 0xd7, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x39, 0x54, 0x5a, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x79, 0x5c, 0x9a, 0x54, 0x9b, 0x5c, 0xbc, 0x64, 0xfe, 0x6d, 0x3f, 0x6d, 0x7e, 0x75, 0x9e, 0x7d, 0xbe, 0x6d, 0x1d, 0x75, 0x5d, 0x75, 0x7d, 0x7d, 0x7c, 0x85, 0x7c, 0x85, 0x5c, 0x85, 0x5c, 0x85, 0x5c, 0x8d, 0x7d, 0x8d, 0x9d, 0x8d, 0xbe, 0x8d, 0xff, 0x8e, 0x7f, 0x8f, 0x1f, 0x97, 0x7e, 0x9f, 0x7d, 0xa7, 0x7d, 0xa7, 0x7d, 0xa7, 0x7d, 0xa7, 0x9d, 0xa7, 0x7d, 0x9f, 0x7d, 0x9f, 0x7d, 0x97, 0x5e, 0x8f, 0x1f, 0x7e, 0x5f, 0x75, 0xbe, 0x75, 0x7d, 0x6d, 0x5d, 0x6d, 0x1c, 0x64, 0xfb, 0x64, 0xfa, 0x54, 0x99, 0x54, 0x78, 0x54, 0x37, 0x4c, 0x37, 0x43, 0xf7, 0x3b, 0xd6, 0x33, 0xb6, 0x2b, 0x95, 0x2b, 0x75, 0x2b, 0x55, 0x2b, 0x55, 0x2b, 0x34, 0x2b, 0x34, 0x2b, 0x34, 0x2b, 0x14, 0x2a, 0x91, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x14, 0x43, 0x54, 0x43, 0x95, 0x4b, 0xd5, 0x43, 0xb5, 0x4b, 0xd5, 0x4b, 0xf6, 0x43, 0xd6, 0x43, 0xf6, 0x43, 0xf6, 0x3b, 0x95, 0x3b, 0x34, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf7, 0x4c, 0x17, 0x54, 0x37, 0x5c, 0x37, 0x5c, 0x78, 0x64, 0xb8, 0x64, 0xb9, 0x64, 0xda, 0x64, 0xfa, 0x64, 0xfb, 0x64, 0xfc, 0x65, 0x1e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x5e, 0x6d, 0x7e, 0x75, 0xde, 0x76, 0x1e, 0x7e, 0x3f, 0x86, 0xde, 0x8f, 0x7e, 0x9f, 0x7d, 0xa7, 0x7d, 0xaf, 0x7d, 0xaf, 0x7e, 0xb7, 0x7e, 0xb7, 0x7d, 0xb7, 0x9d, 0xaf, 0x7d, 0xa7, 0x7d, 0x9f, 0x7d, 0x97, 0x3e, 0x86, 0xdf, 0x86, 0x5e, 0x7e, 0x1e, 0x7d, 0xde, 0x75, 0xdf, 0x75, 0xbe, 0x75, 0x9e, 0x75, 0x9e, 0x7d, 0xbe, 0x7d, 0xbe, 0x75, 0x9e, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x7f, 0x65, 0x1e, 0x65, 0x1e, 0x6d, 0x3e, 0x65, 0x3f, 0x65, 0x3e, 0x65, 0x1e, 0x64, 0xfe, 0x65, 0x1e, 0x65, 0x3e, 0x65, 0x5e, 0x65, 0x5f, 0x65, 0x3f, 0x65, 0x3e, 0x65, 0x3e, 0x5c, 0xdd, 0x4c, 0x7b, 0x43, 0x96, 0x3b, 0x55, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x0f, 0x2a, 0x0f, 0x2a, 0x0f, 0x2a, 0x10, 0x21, 0xcf, + 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xce, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xef, 0x19, 0xef, 0x21, 0xf0, 0x21, 0xf0, 0x22, 0x10, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x93, 0x32, 0xb3, 0x32, 0xd4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x55, 0x3b, 0x76, 0x43, 0xb7, 0x43, 0xd7, 0x4b, 0xf8, 0x4c, 0x19, 0x4c, 0x39, 0x4c, 0x5a, 0x54, 0x7a, 0x5c, 0x9b, 0x54, 0x79, 0x5c, 0xba, 0x5c, 0xbb, 0x5c, 0xdc, 0x65, 0x1d, 0x65, 0x1e, 0x65, 0x5e, 0x6d, 0x7e, 0x75, 0xdf, 0x75, 0xbe, 0x6d, 0x3e, 0x75, 0x9e, 0x7d, 0x9d, 0x85, 0x7d, 0x8d, 0x7d, 0x8d, 0x7d, 0x8d, 0x7d, 0x8d, 0x7d, 0x8d, 0xbe, 0x8d, 0xdf, 0x8e, 0x1f, 0x8e, 0x9f, 0x97, 0x3e, 0x97, 0x7d, 0x9f, 0x7d, 0xaf, 0x7d, 0xb7, 0x7e, 0xbf, 0x9e, 0xbf, 0x9e, 0xbf, 0x7e, 0xb7, 0x9e, 0xb7, 0x7e, 0xaf, 0x7d, 0x9f, 0x7d, 0x97, 0x3e, 0x86, 0x9e, 0x7d, 0xfd, 0x7d, 0xbe, 0x6d, 0x5d, 0x6d, 0x3d, 0x65, 0x1c, 0x54, 0xba, 0x54, 0x78, 0x4c, 0x37, 0x44, 0x17, 0x3b, 0xf7, 0x33, 0xb7, 0x2b, 0xb6, 0x2b, 0x96, 0x2b, 0x96, 0x2b, 0x95, 0x2b, 0x55, 0x2b, 0x55, 0x2b, 0x35, 0x2b, 0x14, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x14, 0x43, 0x74, 0x43, 0xb5, 0x4b, 0xb5, 0x4b, 0xd5, 0x43, 0xb5, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd6, 0x3b, 0x75, 0x32, 0xf3, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf6, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x37, 0x54, 0x58, 0x5c, 0x78, 0x64, 0x99, 0x64, 0xb9, 0x64, 0xda, 0x64, 0xfb, 0x64, 0xfc, 0x65, 0x1d, 0x6d, 0x3e, 0x6d, 0x7e, 0x6d, 0x9e, 0x6d, 0x9e, 0x75, 0xbe, 0x7d, 0xfe, 0x7e, 0x7f, 0x87, 0x1f, 0x97, 0x7e, 0x9f, 0x7d, 0xaf, 0x7d, 0xb7, 0x7e, 0xbf, 0x9e, 0xc7, 0x7e, 0xc7, 0x7e, 0xc7, 0x7e, 0xbf, 0x7e, 0xb7, 0x7e, 0xaf, 0x9e, 0xa7, 0x9d, 0x97, 0x5d, 0x8f, 0x3e, 0x86, 0xde, 0x86, 0x5f, 0x7e, 0x1f, 0x7d, 0xfe, 0x7e, 0x1e, 0x7d, 0xff, 0x7d, 0xdf, 0x7d, 0xde, 0x7d, 0xde, 0x7d, 0xbf, 0x75, 0x9e, 0x75, 0x7e, 0x75, 0x7f, 0x75, 0x7f, 0x6d, 0x5f, 0x6d, 0x3e, 0x6d, 0x3f, 0x6d, 0x3f, 0x65, 0x1e, 0x65, 0x3e, 0x6d, 0x5e, 0x6d, 0x7e, 0x6d, 0x5e, 0x6d, 0x5e, 0x65, 0x5e, 0x65, 0x3e, 0x65, 0x1e, 0x65, 0x1f, 0x65, 0x1f, 0x54, 0x5a, 0x43, 0x76, 0x43, 0x96, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x19, 0xce, 0x19, 0xae, + 0x19, 0x8d, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x93, 0x32, 0xb3, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x35, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0xb7, 0x43, 0xf8, 0x4c, 0x19, 0x4c, 0x39, 0x4c, 0x5a, 0x54, 0x5a, 0x54, 0x9b, 0x4c, 0x59, 0x54, 0x79, 0x5c, 0xba, 0x5c, 0xfb, 0x65, 0x1c, 0x65, 0x3e, 0x65, 0x5e, 0x65, 0x5e, 0x75, 0x9e, 0x7d, 0xde, 0x75, 0x9e, 0x75, 0x9f, 0x7d, 0x9e, 0x7d, 0x9e, 0x85, 0x9e, 0x8d, 0x9d, 0x8d, 0x9e, 0x8d, 0x9e, 0x8d, 0xbe, 0x8d, 0xff, 0x8e, 0x3f, 0x8e, 0x9f, 0x97, 0x3e, 0x9f, 0x9d, 0x9f, 0x7d, 0xaf, 0x9d, 0xbf, 0x7e, 0xcf, 0x9e, 0xdf, 0x7e, 0xe7, 0x9f, 0xdf, 0x7e, 0xd7, 0x9e, 0xc7, 0x7e, 0xb7, 0x7e, 0xaf, 0x9d, 0x9f, 0x7d, 0x97, 0x1e, 0x86, 0x5e, 0x7d, 0xbd, 0x6d, 0x7d, 0x65, 0x5d, 0x5c, 0xfb, 0x4c, 0x79, 0x3c, 0x38, 0x34, 0x18, 0x34, 0x17, 0x33, 0xf7, 0x33, 0xd7, 0x33, 0xd7, 0x2b, 0xb6, 0x2b, 0x96, 0x2b, 0x75, 0x2b, 0x75, 0x2b, 0x55, 0x2a, 0xd2, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x32, 0x91, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x34, 0x43, 0x94, 0x43, 0x95, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x3b, 0x34, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x54, 0x37, 0x54, 0x58, 0x5c, 0x78, 0x5c, 0x98, 0x5c, 0xb9, 0x64, 0xba, 0x64, 0xdb, 0x6d, 0x1c, 0x6d, 0x3e, 0x6d, 0x7e, 0x75, 0x7e, 0x75, 0x9e, 0x75, 0xbe, 0x7e, 0x1e, 0x7e, 0x7f, 0x87, 0x1f, 0x97, 0x7d, 0x9f, 0x9d, 0xaf, 0x7e, 0xbf, 0x7e, 0xcf, 0x7e, 0xd7, 0x7e, 0xdf, 0x9f, 0xdf, 0x7e, 0xd7, 0x7f, 0xcf, 0x9f, 0xbf, 0x9e, 0xb7, 0x7d, 0xa7, 0x7d, 0x9f, 0x7d, 0x97, 0x3e, 0x8e, 0xde, 0x86, 0xbf, 0x86, 0x5e, 0x7e, 0x1f, 0x7d, 0xff, 0x7e, 0x1f, 0x7e, 0x1f, 0x7d, 0xff, 0x7d, 0xde, 0x7d, 0xbf, 0x75, 0x9f, 0x75, 0x7f, 0x75, 0x5f, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x3e, 0x65, 0x5e, 0x6d, 0x7e, 0x6d, 0x9e, 0x6d, 0x9e, 0x6d, 0x7e, 0x6d, 0x5e, 0x6d, 0x3f, 0x65, 0x3e, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x1f, 0x65, 0x1f, 0x4b, 0xd7, 0x43, 0x96, 0x43, 0x76, 0x43, 0x55, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xef, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, + 0x11, 0x8d, 0x11, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x21, 0xcf, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd4, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xf4, 0x3b, 0x35, 0x3b, 0x96, 0x43, 0x97, 0x43, 0xd8, 0x43, 0xf8, 0x4c, 0x19, 0x4c, 0x5a, 0x54, 0x5a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x7a, 0x54, 0x9a, 0x5c, 0xbb, 0x5c, 0xfc, 0x65, 0x1d, 0x65, 0x5e, 0x6d, 0x7e, 0x6d, 0x9e, 0x75, 0xbf, 0x7d, 0xde, 0x75, 0x7e, 0x75, 0xbf, 0x7d, 0xbe, 0x7d, 0xbe, 0x85, 0x9e, 0x85, 0xbe, 0x8d, 0xbe, 0x8d, 0xbf, 0x8d, 0xdf, 0x8e, 0x1e, 0x8e, 0x7f, 0x8f, 0x1e, 0x97, 0x9d, 0x9f, 0x7d, 0xaf, 0x7d, 0xbf, 0x7e, 0xd7, 0x7e, 0xef, 0x7f, 0xef, 0x9f, 0xef, 0x9f, 0xef, 0x9f, 0xe7, 0x9f, 0xd7, 0x9f, 0xcf, 0x7e, 0xbf, 0x7e, 0xa7, 0x7e, 0x8e, 0xfe, 0x7e, 0x5e, 0x6d, 0xbe, 0x65, 0x7e, 0x54, 0xfc, 0x44, 0x7a, 0x34, 0x39, 0x34, 0x38, 0x34, 0x18, 0x33, 0xf8, 0x33, 0xf7, 0x33, 0xf7, 0x33, 0xd7, 0x2b, 0xb6, 0x2b, 0xb6, 0x2b, 0x96, 0x2a, 0xf3, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x32, 0x92, 0x32, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x74, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x43, 0x95, 0x3b, 0x13, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0xf7, 0x4c, 0x17, 0x54, 0x37, 0x54, 0x58, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x99, 0x5c, 0xb9, 0x64, 0xdb, 0x64, 0xfc, 0x6d, 0x3e, 0x6d, 0x5e, 0x6d, 0x7e, 0x75, 0x9e, 0x75, 0xde, 0x7e, 0x5e, 0x8f, 0x1e, 0x97, 0x7d, 0xa7, 0x7d, 0xaf, 0x9e, 0xbf, 0x9e, 0xd7, 0x9e, 0xe7, 0x7f, 0xef, 0x7f, 0xef, 0x9f, 0xef, 0x7f, 0xe7, 0x9f, 0xd7, 0x7e, 0xc7, 0x7e, 0xb7, 0x7d, 0xaf, 0x9d, 0x9f, 0x7d, 0x97, 0x7e, 0x8f, 0x1e, 0x8e, 0xdf, 0x86, 0x9e, 0x86, 0x5f, 0x7e, 0x1e, 0x7e, 0x3e, 0x7e, 0x1f, 0x7d, 0xff, 0x7d, 0xdf, 0x7d, 0xbe, 0x75, 0x9e, 0x75, 0x7f, 0x75, 0x7e, 0x75, 0x7e, 0x75, 0x7f, 0x6d, 0x7e, 0x6d, 0x7f, 0x6d, 0x7e, 0x6d, 0x7e, 0x6d, 0x5f, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x3f, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0x1f, 0x64, 0xfe, 0x4b, 0xb7, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x3b, 0x14, 0x3a, 0xf4, 0x3b, 0x14, 0x3a, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x10, 0x21, 0xcf, 0x19, 0x8e, 0x19, 0x8d, 0x19, 0x8d, 0x11, 0x8d, + 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x4c, 0x11, 0x6d, 0x19, 0xae, 0x21, 0xcf, 0x2a, 0x50, 0x32, 0xb2, 0x32, 0xd3, 0x3a, 0xd3, 0x32, 0xd3, 0x3a, 0xd3, 0x3a, 0xf3, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x35, 0x43, 0x35, 0x43, 0x55, 0x43, 0x55, 0x43, 0x76, 0x43, 0x96, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xd7, 0x43, 0xb7, 0x43, 0xd8, 0x4c, 0x19, 0x4c, 0x19, 0x4c, 0x3a, 0x54, 0x9a, 0x54, 0xba, 0x54, 0x9b, 0x5c, 0xdc, 0x5c, 0xfc, 0x5c, 0xfc, 0x65, 0x1c, 0x65, 0x3e, 0x6d, 0x7f, 0x6d, 0xbf, 0x75, 0xde, 0x7d, 0xde, 0x7d, 0xde, 0x7d, 0x9e, 0x7d, 0xde, 0x7d, 0xdf, 0x85, 0xdf, 0x85, 0xbf, 0x85, 0xdf, 0x8d, 0xdf, 0x8d, 0xff, 0x8e, 0x1f, 0x8e, 0x5f, 0x8e, 0xfe, 0x8f, 0x3e, 0x9f, 0x7d, 0xa7, 0x7d, 0xb7, 0x7e, 0xc7, 0x7e, 0xe7, 0x7e, 0xef, 0x9f, 0xef, 0x9f, 0xef, 0x9f, 0xef, 0x9f, 0xef, 0x9f, 0xe7, 0x7f, 0xd7, 0x7e, 0xaf, 0x7d, 0x8f, 0x3d, 0x7e, 0x9e, 0x6d, 0xfe, 0x5d, 0xbe, 0x55, 0x1d, 0x44, 0x9b, 0x3c, 0x7a, 0x3c, 0x59, 0x3c, 0x39, 0x34, 0x18, 0x34, 0x18, 0x33, 0xf7, 0x33, 0xd7, 0x33, 0xd7, 0x2b, 0xb6, 0x2b, 0x34, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x3b, 0x13, 0x3b, 0x74, 0x43, 0x74, 0x43, 0x74, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x37, 0x54, 0x38, 0x5c, 0x78, 0x5c, 0x99, 0x5c, 0xba, 0x64, 0xdc, 0x65, 0x1e, 0x6d, 0x3e, 0x6d, 0x7e, 0x75, 0xde, 0x7e, 0x5f, 0x8e, 0xff, 0x97, 0x7e, 0x9f, 0x9d, 0xaf, 0x7d, 0xbf, 0x7e, 0xcf, 0x7e, 0xe7, 0x7f, 0xef, 0x9f, 0xef, 0x9f, 0xef, 0x9f, 0xef, 0x9f, 0xef, 0x9f, 0xd7, 0x9e, 0xc7, 0x9e, 0xb7, 0x7e, 0xaf, 0x9d, 0x9f, 0x7d, 0x97, 0x7e, 0x8f, 0x3e, 0x8e, 0xff, 0x86, 0xbf, 0x86, 0x5e, 0x86, 0x1f, 0x7e, 0x1e, 0x7e, 0x3e, 0x7e, 0x3e, 0x86, 0x7e, 0x86, 0x7e, 0x7e, 0x1e, 0x7d, 0xbe, 0x75, 0x9e, 0x75, 0x7f, 0x75, 0x5e, 0x6d, 0x7f, 0x6d, 0x5e, 0x6d, 0x5e, 0x65, 0x5e, 0x6d, 0x5f, 0x6d, 0x5e, 0x6d, 0x3f, 0x65, 0x1e, 0x65, 0x1f, 0x65, 0x3f, 0x54, 0x7a, 0x4b, 0xb7, 0x4b, 0x96, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x0f, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, + 0x11, 0x8d, 0x09, 0x4d, 0x21, 0xef, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xd3, 0x3a, 0xf4, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x43, 0x55, 0x43, 0x76, 0x43, 0x96, 0x4b, 0x97, 0x4b, 0x97, 0x4b, 0xb7, 0x4b, 0xd7, 0x54, 0x18, 0x5c, 0x7b, 0x5c, 0x9c, 0x64, 0xdd, 0x5c, 0x9b, 0x4c, 0x18, 0x4c, 0x39, 0x4c, 0x39, 0x4c, 0x5a, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0xbb, 0x5c, 0xfc, 0x65, 0x1d, 0x65, 0x3e, 0x65, 0x1d, 0x65, 0x3e, 0x6d, 0x9e, 0x75, 0xbe, 0x7e, 0x1f, 0x7e, 0x1e, 0x7e, 0x1f, 0x7d, 0xbe, 0x7d, 0xdf, 0x7d, 0xff, 0x7d, 0xdf, 0x85, 0xdf, 0x85, 0xfe, 0x8e, 0x1f, 0x8e, 0x3f, 0x8e, 0x5f, 0x8e, 0x9e, 0x8f, 0x3f, 0x8f, 0x5e, 0x9f, 0x7d, 0xa7, 0x9d, 0xb7, 0x7e, 0xcf, 0x7e, 0xe7, 0x7f, 0xef, 0x9f, 0xef, 0x9f, 0xef, 0x7f, 0xef, 0x7e, 0xef, 0x9f, 0xdf, 0x9e, 0xb7, 0x7e, 0x8f, 0x5d, 0x7e, 0xfe, 0x66, 0x1e, 0x5d, 0x9e, 0x55, 0x3e, 0x44, 0xdd, 0x44, 0x9c, 0x3c, 0x7a, 0x3c, 0x9a, 0x3c, 0x39, 0x34, 0x38, 0x34, 0x18, 0x34, 0x18, 0x33, 0xf7, 0x33, 0x96, 0x2a, 0xf3, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x3b, 0x13, 0x3b, 0x74, 0x43, 0x54, 0x43, 0x54, 0x43, 0x74, 0x43, 0x95, 0x43, 0x54, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x33, 0x14, 0x33, 0x34, 0x33, 0x14, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x59, 0x5c, 0x9a, 0x5c, 0xdb, 0x64, 0xfd, 0x65, 0x3e, 0x6d, 0x5e, 0x6d, 0x9e, 0x6d, 0xbe, 0x7e, 0x7e, 0x8f, 0x3e, 0x9f, 0x7d, 0xa7, 0x9d, 0xb7, 0x9e, 0xc7, 0x7e, 0xdf, 0x7e, 0xef, 0x9f, 0xef, 0x9f, 0xef, 0x9f, 0xef, 0x9f, 0xef, 0x9f, 0xe7, 0x7f, 0xd7, 0x7e, 0xc7, 0x9e, 0xb7, 0x7d, 0xaf, 0x9d, 0xa7, 0x7d, 0x97, 0x7e, 0x97, 0x5e, 0x8f, 0x3e, 0x8e, 0xfe, 0x8e, 0xff, 0x8e, 0xdf, 0x8e, 0xbe, 0x8e, 0xdf, 0x8e, 0xbe, 0x86, 0x9e, 0x86, 0x5f, 0x86, 0x7e, 0x7d, 0xde, 0x75, 0x9e, 0x75, 0x7f, 0x75, 0x7e, 0x6d, 0x5e, 0x6d, 0x5e, 0x65, 0x3f, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x1f, 0x6d, 0x3f, 0x4b, 0xd8, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0x96, 0x4b, 0xb7, 0x4b, 0xb6, 0x43, 0x55, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3a, 0xf4, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, + 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x72, 0x32, 0x92, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x76, 0x43, 0x96, 0x4b, 0xd7, 0x53, 0xf8, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x5a, 0x5c, 0x9b, 0x5c, 0xbd, 0x64, 0xfe, 0x64, 0xdd, 0x5c, 0xbc, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0xbb, 0x5c, 0xbb, 0x64, 0xdb, 0x65, 0x1d, 0x65, 0x1d, 0x65, 0x3e, 0x65, 0x5e, 0x65, 0x5e, 0x6d, 0x9e, 0x75, 0xde, 0x7e, 0x3f, 0x7e, 0x5e, 0x7e, 0x1e, 0x7d, 0xde, 0x7e, 0x1e, 0x7e, 0x1f, 0x7d, 0xff, 0x86, 0x1f, 0x86, 0x1e, 0x8e, 0x5f, 0x8e, 0x7f, 0x8e, 0xbf, 0x8e, 0xff, 0x8f, 0x3e, 0x8f, 0x3e, 0x97, 0x5d, 0xa7, 0x7d, 0xb7, 0x9e, 0xc7, 0x9e, 0xdf, 0x9f, 0xef, 0x9f, 0xef, 0x9f, 0xef, 0x9f, 0xe7, 0x9f, 0xcf, 0x9e, 0xaf, 0x7d, 0x8f, 0x7d, 0x77, 0x1e, 0x6e, 0x7e, 0x5d, 0xfe, 0x55, 0x7e, 0x4d, 0x1e, 0x4c, 0xfd, 0x44, 0xbc, 0x3c, 0x7a, 0x3c, 0x79, 0x3c, 0x59, 0x34, 0x38, 0x34, 0x18, 0x33, 0xf7, 0x33, 0x34, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x3a, 0xf3, 0x3b, 0x53, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x74, 0x3b, 0x54, 0x32, 0xd2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x14, 0x33, 0x34, 0x33, 0x34, 0x3b, 0x54, 0x3b, 0x74, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4c, 0x17, 0x54, 0x38, 0x54, 0x59, 0x5c, 0x9a, 0x64, 0xfc, 0x65, 0x1d, 0x6d, 0x5e, 0x6d, 0x7e, 0x6d, 0xbe, 0x76, 0x1e, 0x7e, 0xde, 0x87, 0x5d, 0x97, 0x7d, 0xa7, 0x7d, 0xaf, 0x7e, 0xc7, 0x9e, 0xd7, 0x7e, 0xe7, 0x7f, 0xef, 0x9f, 0xef, 0x7f, 0xe7, 0x7f, 0xe7, 0x7f, 0xdf, 0x7e, 0xc7, 0x7e, 0xb7, 0x7e, 0xaf, 0x7d, 0xa7, 0x7d, 0xa7, 0x7d, 0xa7, 0x7d, 0x9f, 0x5e, 0x9f, 0x1e, 0x9e, 0xfe, 0x96, 0xbe, 0x96, 0x9f, 0x96, 0x9f, 0x96, 0x9e, 0x8e, 0xbf, 0x8e, 0xbe, 0x86, 0xde, 0x86, 0x9e, 0x7e, 0x1e, 0x75, 0xbe, 0x75, 0x7e, 0x75, 0x7e, 0x6d, 0x5e, 0x6d, 0x3e, 0x6d, 0x3e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x3f, 0x65, 0x3e, 0x4b, 0xf8, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0x96, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x21, 0xef, 0x19, 0xae, 0x19, 0x8d, 0x19, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x19, 0x8e, 0x2a, 0x30, + 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x56, 0x43, 0x96, 0x4b, 0xd7, 0x4b, 0xf8, 0x54, 0x19, 0x54, 0x39, 0x54, 0x5a, 0x5c, 0x7b, 0x5c, 0x7b, 0x54, 0x5a, 0x5c, 0x9b, 0x5c, 0xbc, 0x64, 0xbd, 0x64, 0xde, 0x5c, 0xdd, 0x64, 0xfd, 0x64, 0xdc, 0x64, 0xfc, 0x65, 0x1d, 0x65, 0x1e, 0x65, 0x3f, 0x6d, 0x7f, 0x6d, 0x9e, 0x75, 0xbe, 0x75, 0xfe, 0x7e, 0x5f, 0x7e, 0x5e, 0x86, 0x1e, 0x7e, 0x1f, 0x7e, 0x1e, 0x7e, 0x1f, 0x7e, 0x3f, 0x7e, 0x3f, 0x86, 0x5f, 0x86, 0x7f, 0x86, 0xbf, 0x86, 0xdf, 0x86, 0xff, 0x87, 0x1f, 0x87, 0x1e, 0x8f, 0x3e, 0x9f, 0x9d, 0xaf, 0x9d, 0xbf, 0x9e, 0xcf, 0x9e, 0xcf, 0x7e, 0xcf, 0x7e, 0xc7, 0x9e, 0xb7, 0x7d, 0xa7, 0x7d, 0x8f, 0x5d, 0x6f, 0x1e, 0x6e, 0xbe, 0x65, 0xfe, 0x5d, 0x9e, 0x55, 0x3e, 0x4c, 0xdd, 0x44, 0xbc, 0x44, 0x9b, 0x44, 0x9a, 0x3c, 0x59, 0x3c, 0x59, 0x34, 0x38, 0x33, 0x96, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x3a, 0xf3, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x32, 0xd2, 0x2a, 0x91, 0x32, 0xb1, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x18, 0x54, 0x58, 0x54, 0x7a, 0x5c, 0xbb, 0x64, 0xdc, 0x65, 0x1e, 0x6d, 0x5e, 0x6d, 0x9e, 0x75, 0xde, 0x76, 0x3e, 0x86, 0xfe, 0x8f, 0x5d, 0x97, 0x7c, 0xa7, 0x7d, 0xb7, 0x7d, 0xc7, 0x7e, 0xd7, 0x7e, 0xdf, 0x9e, 0xdf, 0x7e, 0xe7, 0x9e, 0xdf, 0x9e, 0xd7, 0x7e, 0xc7, 0x7e, 0xbf, 0x7e, 0xaf, 0x7d, 0xaf, 0x7d, 0xa7, 0x7d, 0xa7, 0x7d, 0xa7, 0x7e, 0x9f, 0x3e, 0x9e, 0xde, 0x9e, 0xbe, 0x9e, 0x9e, 0x9e, 0x7e, 0x9e, 0x7f, 0x96, 0x7e, 0x96, 0xff, 0x96, 0xfe, 0x8e, 0xde, 0x86, 0x9e, 0x7e, 0x3e, 0x7d, 0xfe, 0x75, 0xbe, 0x6d, 0x7e, 0x6d, 0x5e, 0x6d, 0x3e, 0x6d, 0x3e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x3f, 0x5c, 0xdc, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd6, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x22, 0x30, 0x22, 0x30, 0x19, 0xcf, 0x19, 0xae, 0x19, 0x8e, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x21, 0xef, 0x22, 0x10, 0x2a, 0x31, 0x32, 0x72, 0x2a, 0x51, + 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x96, 0x4b, 0xd7, 0x54, 0x18, 0x54, 0x39, 0x54, 0x19, 0x54, 0x59, 0x5c, 0x7b, 0x5c, 0x7b, 0x54, 0x5a, 0x54, 0x5a, 0x5c, 0x7c, 0x5c, 0x9c, 0x5c, 0xbd, 0x64, 0xde, 0x6d, 0x1e, 0x6d, 0x3e, 0x6d, 0x3e, 0x65, 0x3d, 0x5d, 0x1d, 0x5d, 0x3e, 0x65, 0x5f, 0x6d, 0x9f, 0x75, 0xbe, 0x75, 0xdf, 0x7e, 0x3e, 0x7e, 0x5f, 0x7e, 0x5e, 0x7e, 0x3e, 0x86, 0x7f, 0x86, 0x5f, 0x86, 0x3e, 0x7e, 0x5f, 0x7e, 0x5f, 0x7e, 0x7f, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x5e, 0x7e, 0x7f, 0x7e, 0xbf, 0x86, 0xff, 0x86, 0xbe, 0x8e, 0xff, 0x9f, 0x7e, 0xa7, 0x9d, 0xa7, 0x9d, 0xa7, 0x9d, 0xa7, 0x7d, 0xa7, 0x7d, 0x9f, 0x9d, 0x8f, 0x5d, 0x6e, 0xde, 0x6e, 0x9e, 0x65, 0xde, 0x5d, 0x9e, 0x55, 0x3e, 0x4c, 0xdd, 0x4c, 0xfd, 0x44, 0xbc, 0x44, 0x9b, 0x3c, 0x7a, 0x3c, 0x7a, 0x3c, 0x18, 0x33, 0x35, 0x33, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x3b, 0x14, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x32, 0xd2, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0xb1, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x2a, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x14, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x18, 0x54, 0x38, 0x54, 0x9a, 0x5c, 0xbb, 0x64, 0xfd, 0x65, 0x1e, 0x6d, 0x5e, 0x6d, 0x9e, 0x75, 0xde, 0x7e, 0x7e, 0x87, 0x3e, 0x8f, 0x9d, 0x9f, 0x7d, 0xa7, 0x7d, 0xb7, 0x9e, 0xc7, 0x9e, 0xcf, 0x7e, 0xdf, 0x9e, 0xdf, 0x9e, 0xd7, 0x7e, 0xcf, 0x9e, 0xc7, 0x9e, 0xbf, 0x7e, 0xb7, 0x7e, 0xaf, 0x7d, 0xa7, 0x9d, 0x9f, 0x7d, 0x9f, 0x7d, 0x9f, 0x5e, 0xa6, 0xff, 0xa6, 0x9f, 0xa6, 0x7f, 0xa6, 0x7f, 0xa6, 0x5f, 0x9e, 0x9e, 0x9e, 0xff, 0x96, 0xfe, 0x8e, 0xfe, 0x8e, 0xbe, 0x86, 0x5e, 0x7e, 0x5f, 0x7d, 0xfe, 0x76, 0x1e, 0x6d, 0xbe, 0x6d, 0x5e, 0x6d, 0x5e, 0x6d, 0x3e, 0x65, 0x3e, 0x6d, 0x5f, 0x5c, 0x7a, 0x53, 0xf8, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x55, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3a, 0xf4, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x2a, 0x71, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x10, 0x19, 0xcf, 0x19, 0xae, 0x19, 0x8e, 0x11, 0x6d, 0x11, 0x8d, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, + 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0x93, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x34, 0x3b, 0x55, 0x43, 0x96, 0x4b, 0xd7, 0x4c, 0x18, 0x54, 0x19, 0x54, 0x5a, 0x54, 0x39, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x59, 0x5c, 0x5a, 0x5c, 0x7b, 0x5c, 0x9c, 0x5c, 0x9d, 0x64, 0xbd, 0x64, 0xde, 0x6d, 0x1e, 0x6d, 0x3e, 0x6d, 0x5f, 0x6d, 0x5e, 0x65, 0x3e, 0x65, 0x5e, 0x65, 0x7e, 0x6d, 0xbe, 0x75, 0xff, 0x7e, 0x3e, 0x7e, 0x3f, 0x7e, 0x7f, 0x86, 0x5e, 0x86, 0x9f, 0x8f, 0x1f, 0x86, 0xfe, 0x86, 0xbf, 0x7e, 0x5f, 0x7e, 0x3e, 0x76, 0x1e, 0x76, 0x3f, 0x76, 0x3f, 0x76, 0x3f, 0x7e, 0x3e, 0x7e, 0x5e, 0x7e, 0x3e, 0x7d, 0xde, 0x7e, 0x9e, 0x7e, 0xfe, 0x87, 0x5e, 0x8f, 0x7e, 0x8f, 0x5d, 0x8f, 0x7d, 0x8f, 0x7e, 0x7f, 0x3e, 0x6e, 0xbe, 0x66, 0x1e, 0x5d, 0xfe, 0x5d, 0x9e, 0x55, 0x5e, 0x4d, 0x3e, 0x44, 0xde, 0x44, 0xdd, 0x44, 0xbc, 0x3c, 0x9b, 0x3c, 0x5a, 0x3b, 0xb7, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xd3, 0x3a, 0xf3, 0x3b, 0x13, 0x33, 0x13, 0x33, 0x13, 0x33, 0x13, 0x3b, 0x33, 0x32, 0xb2, 0x2a, 0x30, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xd2, 0x2a, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x18, 0x54, 0x38, 0x54, 0x79, 0x5c, 0xbb, 0x5c, 0xfd, 0x5d, 0x1e, 0x65, 0x3e, 0x65, 0x9e, 0x6d, 0xde, 0x7e, 0x9f, 0x87, 0x5e, 0x97, 0x7d, 0x9f, 0x7d, 0xa7, 0x9d, 0xb7, 0x9e, 0xbf, 0x7e, 0xc7, 0x7e, 0xcf, 0x7e, 0xcf, 0x7e, 0xc7, 0x7e, 0xc7, 0x7e, 0xbf, 0x9e, 0xb7, 0x9e, 0xaf, 0x7e, 0xa7, 0x7d, 0x9f, 0x7d, 0x9f, 0x7d, 0x9f, 0x7e, 0x9e, 0xfe, 0xa6, 0x9f, 0xa6, 0x7f, 0xa6, 0x5f, 0xa6, 0x9e, 0xae, 0xff, 0xa6, 0xfe, 0xa6, 0xff, 0x9e, 0xdf, 0x96, 0xbf, 0x8e, 0xbe, 0x86, 0x7e, 0x7e, 0x1e, 0x75, 0xde, 0x7e, 0x1e, 0x76, 0x1e, 0x75, 0xfe, 0x6d, 0x9e, 0x6d, 0x5e, 0x6d, 0x7f, 0x54, 0x59, 0x54, 0x18, 0x53, 0xf8, 0x53, 0xf7, 0x53, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0x96, 0x43, 0x76, 0x43, 0x75, 0x43, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x2a, 0x72, 0x22, 0x10, 0x1a, 0x30, 0x22, 0x10, 0x22, 0x30, 0x21, 0xef, 0x19, 0xae, 0x19, 0x8e, 0x19, 0xae, 0x22, 0x10, 0x32, 0x71, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, + 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x29, 0xf0, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x3b, 0x55, 0x43, 0x96, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4c, 0x19, 0x54, 0x5a, 0x54, 0x39, 0x54, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x5c, 0x7b, 0x5c, 0x9c, 0x5c, 0xbd, 0x5c, 0xde, 0x64, 0xde, 0x64, 0xfe, 0x6d, 0x3f, 0x6d, 0x5f, 0x75, 0x5f, 0x75, 0x7f, 0x75, 0x7e, 0x6d, 0x7e, 0x6d, 0x9f, 0x6d, 0xde, 0x7e, 0x1f, 0x7e, 0x5f, 0x7e, 0x5f, 0x7e, 0x7e, 0x7e, 0x3e, 0x86, 0x9e, 0x97, 0x7e, 0x8f, 0x3e, 0x86, 0x9e, 0x7e, 0x3e, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xde, 0x6d, 0xbe, 0x6d, 0xbe, 0x76, 0x1e, 0x76, 0x7f, 0x76, 0x5f, 0x76, 0x9f, 0x7e, 0x7e, 0x76, 0x5e, 0x66, 0x3e, 0x5d, 0xbe, 0x55, 0x9e, 0x55, 0x9e, 0x55, 0x1e, 0x4d, 0x1e, 0x4c, 0xfe, 0x44, 0xdd, 0x44, 0xdd, 0x44, 0xbd, 0x44, 0x5b, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x34, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x32, 0xb2, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x2a, 0xb2, 0x2a, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x79, 0x54, 0xbb, 0x5c, 0xfd, 0x5d, 0x1e, 0x5d, 0x3e, 0x65, 0x7e, 0x6d, 0xff, 0x76, 0x7f, 0x87, 0x3e, 0x8f, 0x7d, 0x9f, 0x7d, 0xa7, 0x7d, 0xaf, 0x7d, 0xb7, 0x7e, 0xbf, 0x7e, 0xbf, 0x9e, 0xbf, 0x7e, 0xbf, 0x7e, 0xb7, 0x7d, 0xaf, 0x7d, 0xaf, 0x7d, 0xa7, 0x7d, 0xa7, 0x7d, 0x9f, 0x7d, 0x9f, 0x7d, 0x9f, 0x1e, 0x9e, 0x9f, 0x9e, 0x7e, 0xa6, 0xbf, 0xaf, 0x1f, 0xaf, 0x1f, 0xae, 0xff, 0xa6, 0xff, 0x9e, 0xdf, 0x96, 0xbf, 0x8e, 0xbf, 0x86, 0x9e, 0x86, 0x7e, 0x7e, 0x1e, 0x86, 0xbe, 0x7e, 0x9e, 0x76, 0x1e, 0x6d, 0xfe, 0x6d, 0xde, 0x65, 0x7d, 0x4b, 0xb6, 0x4b, 0xb7, 0x4b, 0xb7, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd7, 0x53, 0xd7, 0x53, 0xd7, 0x4b, 0xb6, 0x4b, 0x96, 0x4b, 0x96, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb2, 0x2a, 0x72, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x22, 0x50, 0x22, 0x30, 0x22, 0x30, 0x21, 0xef, 0x19, 0xae, 0x21, 0xce, 0x21, 0xef, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, + 0x29, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xd3, 0x3b, 0x14, 0x43, 0x75, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0xf8, 0x54, 0x19, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7b, 0x5c, 0x9c, 0x5c, 0xbc, 0x5c, 0xdd, 0x64, 0xfe, 0x65, 0x1f, 0x6d, 0x3f, 0x6d, 0x5f, 0x6d, 0x5f, 0x6d, 0x7e, 0x75, 0x9f, 0x75, 0x9f, 0x75, 0x9f, 0x6d, 0xbe, 0x75, 0xde, 0x7e, 0x1f, 0x86, 0x5e, 0x7e, 0x5f, 0x7e, 0x5f, 0x75, 0xfe, 0x7e, 0x3e, 0x8f, 0x1e, 0x8f, 0x7f, 0x7e, 0x9f, 0x7e, 0x3e, 0x75, 0xff, 0x75, 0xff, 0x75, 0xde, 0x6d, 0xbe, 0x6d, 0xbf, 0x6d, 0xbf, 0x6d, 0xbe, 0x6d, 0x9e, 0x65, 0x7e, 0x65, 0x7e, 0x65, 0x9e, 0x6d, 0xbe, 0x6d, 0xde, 0x6d, 0xde, 0x6d, 0xde, 0x65, 0xde, 0x55, 0x9e, 0x55, 0x5f, 0x55, 0x5e, 0x55, 0x3f, 0x4d, 0x1e, 0x4c, 0xfe, 0x44, 0xfe, 0x44, 0xde, 0x44, 0xdd, 0x44, 0x38, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x96, 0x4b, 0x96, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x43, 0x34, 0x43, 0x14, 0x43, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x33, 0x13, 0x32, 0xd2, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x33, 0x13, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x75, 0x43, 0x95, 0x4b, 0xb5, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x7a, 0x54, 0x9b, 0x54, 0xbd, 0x54, 0xfe, 0x5d, 0x3e, 0x65, 0x7e, 0x6d, 0xdf, 0x76, 0x3e, 0x86, 0xfe, 0x8f, 0x7d, 0x97, 0x7d, 0xa7, 0x7d, 0xaf, 0x7d, 0xaf, 0x7e, 0xb7, 0x7d, 0xb7, 0x7d, 0xb7, 0x7d, 0xaf, 0x9d, 0xaf, 0x7d, 0xa7, 0x7d, 0xa7, 0x7d, 0x9f, 0x7d, 0x9f, 0x7d, 0x9f, 0x7d, 0x97, 0x3e, 0x97, 0x1e, 0x9f, 0x1f, 0xa6, 0xdf, 0xa6, 0x9f, 0xa6, 0x9f, 0xae, 0xdf, 0xae, 0xff, 0xa6, 0xff, 0x9e, 0xde, 0x96, 0xbf, 0x8e, 0xbf, 0x86, 0xbf, 0x86, 0x7f, 0x7d, 0xfe, 0x7e, 0x7e, 0x76, 0x5e, 0x76, 0x1e, 0x6e, 0x1e, 0x65, 0x5c, 0x3b, 0x34, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x22, 0x51, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x30, 0x22, 0x50, 0x22, 0x50, 0x22, 0x30, 0x21, 0xce, 0x2a, 0x10, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, + 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x29, 0xf0, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x52, 0x2a, 0x92, 0x32, 0xd4, 0x33, 0x14, 0x3b, 0x55, 0x43, 0x75, 0x4b, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf8, 0x4c, 0x18, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x39, 0x54, 0x59, 0x54, 0x7b, 0x5c, 0x9c, 0x5c, 0xbd, 0x64, 0xdd, 0x65, 0x1e, 0x65, 0x1e, 0x6d, 0x5f, 0x6d, 0x7e, 0x6d, 0x7f, 0x6d, 0x7e, 0x75, 0x7e, 0x75, 0xbf, 0x75, 0xbf, 0x75, 0x9f, 0x75, 0xdf, 0x75, 0xfe, 0x7e, 0x3e, 0x86, 0x7f, 0x7e, 0x5f, 0x76, 0x3e, 0x6d, 0xbe, 0x6d, 0xfe, 0x7e, 0x9e, 0x8f, 0x1f, 0x7e, 0x5f, 0x76, 0x1f, 0x75, 0xff, 0x75, 0xdf, 0x6d, 0xde, 0x65, 0xbf, 0x6d, 0x9f, 0x6d, 0xbf, 0x6d, 0xbe, 0x6d, 0x9e, 0x65, 0x5e, 0x65, 0x5e, 0x65, 0x7e, 0x65, 0x9e, 0x65, 0x9e, 0x65, 0xbe, 0x5d, 0x7e, 0x55, 0x7e, 0x55, 0x9e, 0x55, 0x5f, 0x4d, 0x3e, 0x4d, 0x1e, 0x4d, 0x1e, 0x45, 0x1e, 0x4d, 0x1e, 0x4c, 0x9b, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x53, 0xf6, 0x53, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0x95, 0x4b, 0x75, 0x4b, 0x75, 0x43, 0x75, 0x43, 0x55, 0x43, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x32, 0xd2, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x33, 0x13, 0x33, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x75, 0x4b, 0xb5, 0x4b, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x59, 0x54, 0x7a, 0x54, 0x7b, 0x54, 0xbc, 0x54, 0xfe, 0x55, 0x1e, 0x65, 0x7f, 0x6d, 0xbf, 0x76, 0x3e, 0x7e, 0xdf, 0x8f, 0x7d, 0x97, 0x7d, 0x9f, 0x7d, 0x9f, 0x7d, 0xa7, 0x7d, 0xa7, 0x7d, 0xa7, 0x7d, 0xa7, 0x7d, 0xa7, 0x7d, 0x9f, 0x7d, 0x97, 0x7d, 0x97, 0x7d, 0x97, 0x7c, 0x97, 0x7d, 0x97, 0x7d, 0x9f, 0x7e, 0x97, 0x3e, 0x9e, 0xdf, 0x9e, 0x9f, 0x9e, 0x5f, 0x9e, 0x5f, 0xa6, 0xbf, 0xae, 0xff, 0xa6, 0xff, 0x9e, 0xbf, 0x96, 0xbf, 0x8e, 0xbf, 0x86, 0x9f, 0x7e, 0x1f, 0x75, 0xfe, 0x75, 0xfe, 0x6e, 0x3e, 0x75, 0xfe, 0x65, 0x3b, 0x3b, 0x33, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x50, 0x22, 0x30, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x0f, 0x29, 0xef, 0x2a, 0x0f, 0x29, 0xef, 0x29, 0xef, 0x29, 0xef, + 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x93, 0x32, 0xb3, 0x32, 0xf4, 0x3b, 0x35, 0x43, 0x75, 0x43, 0x95, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4c, 0x19, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x59, 0x54, 0x7b, 0x5c, 0x9c, 0x5c, 0xbd, 0x65, 0x1d, 0x65, 0x1e, 0x65, 0x3e, 0x6d, 0x7f, 0x75, 0x9f, 0x75, 0xbf, 0x75, 0xbf, 0x75, 0x9e, 0x75, 0x9f, 0x75, 0x9e, 0x75, 0xbf, 0x75, 0xdf, 0x75, 0xff, 0x7e, 0x1e, 0x7e, 0x5e, 0x7e, 0x7f, 0x76, 0x5e, 0x76, 0x1f, 0x65, 0x9e, 0x65, 0x9e, 0x75, 0xfe, 0x86, 0x7f, 0x7e, 0x3e, 0x76, 0x1f, 0x75, 0xff, 0x6d, 0xde, 0x6d, 0xbf, 0x6d, 0x9f, 0x6d, 0xbf, 0x6d, 0xbf, 0x75, 0xbe, 0x75, 0xbe, 0x65, 0x7e, 0x5d, 0x5e, 0x5d, 0x7e, 0x65, 0x7e, 0x5d, 0x7e, 0x5d, 0x7e, 0x4d, 0x3e, 0x55, 0x5e, 0x55, 0x5e, 0x55, 0x3e, 0x55, 0x1e, 0x4c, 0xfe, 0x4d, 0x1e, 0x4c, 0xfe, 0x4c, 0x59, 0x54, 0x17, 0x54, 0x37, 0x5c, 0x37, 0x5c, 0x17, 0x5c, 0x17, 0x5c, 0x17, 0x53, 0xf7, 0x53, 0xd6, 0x53, 0xb6, 0x4b, 0xb6, 0x4b, 0xb5, 0x4b, 0x75, 0x43, 0x34, 0x43, 0x13, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x33, 0x13, 0x33, 0x13, 0x3a, 0xf3, 0x32, 0x91, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x33, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x39, 0x4c, 0x7a, 0x54, 0x9b, 0x4c, 0x9c, 0x4c, 0xbd, 0x54, 0xfe, 0x5d, 0x5e, 0x65, 0x9e, 0x6e, 0x1e, 0x7e, 0x9e, 0x87, 0x3e, 0x8f, 0x7d, 0x97, 0x9d, 0x97, 0x9d, 0x97, 0x7d, 0x9f, 0x7d, 0x97, 0x7c, 0x9f, 0x7d, 0x9f, 0x7c, 0x97, 0x7d, 0x97, 0x7c, 0x97, 0x7c, 0x97, 0x7c, 0x97, 0x7c, 0x97, 0x9d, 0x97, 0x3e, 0x96, 0xff, 0x96, 0xbf, 0x96, 0x3f, 0x96, 0x3f, 0x9e, 0x1f, 0xa6, 0x7e, 0xa6, 0xdf, 0x9e, 0xdf, 0x96, 0xbf, 0x8e, 0xbf, 0x86, 0xbf, 0x86, 0x7e, 0x75, 0xde, 0x75, 0xfe, 0x6d, 0xbe, 0x65, 0xbe, 0x5d, 0x1b, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x30, 0x2a, 0x0f, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x0f, 0x2a, 0x0f, 0x21, 0xef, 0x21, 0xef, 0x29, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, + 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x29, 0xf0, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xf3, 0x33, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xd8, 0x4b, 0xf8, 0x4c, 0x39, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x7a, 0x5c, 0x9c, 0x5c, 0xdd, 0x65, 0x1d, 0x65, 0x3e, 0x6d, 0x5f, 0x6d, 0x7f, 0x6d, 0x9f, 0x75, 0xbf, 0x75, 0xbf, 0x75, 0xdf, 0x75, 0xbe, 0x75, 0xbf, 0x75, 0xbf, 0x75, 0xdf, 0x75, 0xdf, 0x76, 0x1f, 0x7e, 0x3e, 0x7e, 0x9e, 0x76, 0x7e, 0x76, 0x3e, 0x6d, 0xfe, 0x65, 0xbf, 0x65, 0x9e, 0x6d, 0xde, 0x76, 0x1e, 0x7e, 0x3e, 0x76, 0x5f, 0x76, 0x1e, 0x6d, 0xbe, 0x6d, 0xbe, 0x6d, 0xbe, 0x75, 0xde, 0x75, 0xde, 0x6d, 0xbe, 0x6d, 0x9e, 0x65, 0x5f, 0x5d, 0x1e, 0x5d, 0x5f, 0x65, 0x5e, 0x5d, 0x5e, 0x55, 0x5e, 0x55, 0x5e, 0x55, 0x3e, 0x4d, 0x3e, 0x55, 0x3e, 0x55, 0x5e, 0x4d, 0x3e, 0x54, 0xdc, 0x4c, 0x38, 0x54, 0x38, 0x5c, 0x58, 0x64, 0x58, 0x64, 0x38, 0x64, 0x37, 0x5c, 0x37, 0x5c, 0x17, 0x5c, 0x17, 0x53, 0xf7, 0x53, 0xb6, 0x4b, 0x74, 0x43, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x33, 0x13, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0x91, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x54, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4c, 0x39, 0x4c, 0x59, 0x4c, 0x5a, 0x4c, 0x9c, 0x4c, 0xbd, 0x54, 0xfe, 0x5d, 0x5f, 0x65, 0x7e, 0x6d, 0xde, 0x76, 0x5e, 0x7e, 0xbe, 0x87, 0x3e, 0x8f, 0x9e, 0x97, 0x9d, 0x97, 0x7d, 0x97, 0x7d, 0x8f, 0x7c, 0x8f, 0x7c, 0x8f, 0x7d, 0x8f, 0x7d, 0x8f, 0x7c, 0x8f, 0x7c, 0x8f, 0x7d, 0x8f, 0x7e, 0x8f, 0x5e, 0x8f, 0x1e, 0x8e, 0xdf, 0x8e, 0x5f, 0x96, 0x3e, 0x96, 0x3f, 0x96, 0x1f, 0x96, 0x3f, 0x96, 0x9e, 0x96, 0xdf, 0x8e, 0xdf, 0x86, 0xbf, 0x86, 0x9f, 0x7d, 0xfe, 0x75, 0xfe, 0x6d, 0xde, 0x6d, 0xbe, 0x5c, 0xda, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x33, 0x13, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x71, 0x22, 0x71, 0x22, 0x51, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, + 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xce, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0x96, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xf8, 0x4c, 0x19, 0x4c, 0x39, 0x54, 0x7a, 0x54, 0x7a, 0x5c, 0x9b, 0x5c, 0xdc, 0x65, 0x1d, 0x6d, 0x3d, 0x6d, 0x5e, 0x6d, 0x9f, 0x75, 0x9f, 0x75, 0x9f, 0x75, 0xbf, 0x7d, 0xde, 0x7d, 0xde, 0x75, 0xdf, 0x75, 0xdf, 0x75, 0xdf, 0x75, 0xdf, 0x76, 0x1f, 0x7e, 0x3f, 0x7e, 0x7f, 0x7e, 0xbf, 0x76, 0x7f, 0x6d, 0xfe, 0x6d, 0xde, 0x65, 0x9e, 0x65, 0x9f, 0x5d, 0x9e, 0x65, 0xde, 0x65, 0xde, 0x75, 0xde, 0x75, 0xde, 0x75, 0xbe, 0x75, 0x9e, 0x6d, 0x9e, 0x6d, 0x9e, 0x6d, 0x9f, 0x6d, 0x9e, 0x6d, 0x7e, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x5d, 0x3e, 0x55, 0x1e, 0x55, 0x1e, 0x55, 0x3e, 0x55, 0x1e, 0x4d, 0x1e, 0x55, 0x3e, 0x55, 0x3e, 0x54, 0x9b, 0x54, 0x39, 0x54, 0x38, 0x5c, 0x59, 0x5c, 0x78, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x58, 0x5c, 0x17, 0x43, 0x74, 0x43, 0x33, 0x3b, 0x13, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x33, 0x13, 0x32, 0xd2, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x71, 0x2a, 0x50, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x74, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd7, 0x43, 0xf7, 0x44, 0x18, 0x44, 0x18, 0x44, 0x39, 0x44, 0x7a, 0x44, 0x9b, 0x4c, 0xbc, 0x4c, 0xde, 0x5d, 0x3e, 0x65, 0x9e, 0x6d, 0xde, 0x76, 0x1f, 0x7e, 0x5e, 0x86, 0xfe, 0x8f, 0x3e, 0x8f, 0x5e, 0x8f, 0x7e, 0x87, 0x7e, 0x87, 0x7e, 0x87, 0x7e, 0x87, 0x7e, 0x87, 0x5d, 0x87, 0x7d, 0x87, 0x7d, 0x87, 0x7e, 0x8f, 0x5e, 0x8f, 0x3f, 0x8e, 0xff, 0x8e, 0x7e, 0x8e, 0x5e, 0x86, 0x3f, 0x8e, 0x3e, 0x8e, 0x1e, 0x86, 0x3e, 0x8e, 0x5e, 0x8e, 0xbe, 0x86, 0xbe, 0x86, 0x7f, 0x7e, 0x1e, 0x75, 0xde, 0x6d, 0xde, 0x6d, 0xdf, 0x5c, 0xda, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x33, 0x13, 0x32, 0xf3, 0x33, 0x13, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x22, 0x71, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x0f, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x0f, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x29, 0xf0, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xaf, + 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xf4, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x56, 0x3b, 0x96, 0x43, 0x97, 0x43, 0x97, 0x43, 0xd8, 0x43, 0xf8, 0x4c, 0x19, 0x54, 0x5a, 0x54, 0x7b, 0x54, 0x9b, 0x5c, 0xdc, 0x65, 0x1d, 0x6d, 0x3d, 0x75, 0x7e, 0x75, 0xbf, 0x75, 0x9f, 0x7d, 0xbf, 0x7d, 0xbf, 0x7d, 0xde, 0x7d, 0xdf, 0x7d, 0xff, 0x7d, 0xde, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x7e, 0x3f, 0x7e, 0x3e, 0x86, 0x9f, 0x86, 0xbf, 0x76, 0x1e, 0x6d, 0xfe, 0x65, 0xbe, 0x65, 0xde, 0x65, 0xde, 0x5d, 0xbe, 0x5d, 0x9e, 0x5d, 0x7e, 0x65, 0x5e, 0x6d, 0x9e, 0x75, 0x9e, 0x6d, 0x9e, 0x6d, 0x9e, 0x6d, 0x9e, 0x6d, 0x7f, 0x6d, 0x7f, 0x6d, 0x5e, 0x65, 0x1e, 0x65, 0x3e, 0x65, 0x3e, 0x55, 0x3e, 0x55, 0x3e, 0x55, 0x1e, 0x55, 0x3e, 0x55, 0x3e, 0x55, 0x3e, 0x54, 0xfe, 0x54, 0x7b, 0x5c, 0x7a, 0x5c, 0x7a, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x79, 0x5c, 0x58, 0x54, 0x17, 0x4b, 0x95, 0x3b, 0x13, 0x43, 0x33, 0x43, 0x33, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x13, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0x91, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x22, 0x10, 0x21, 0xef, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x91, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb6, 0x43, 0xd6, 0x43, 0xd7, 0x43, 0xd7, 0x43, 0xf7, 0x44, 0x18, 0x44, 0x18, 0x3c, 0x39, 0x3c, 0x7a, 0x44, 0xbc, 0x4c, 0xdd, 0x55, 0x1e, 0x5d, 0x7e, 0x65, 0xbe, 0x6d, 0xde, 0x75, 0xfe, 0x7e, 0x5f, 0x7e, 0x7e, 0x86, 0xbe, 0x87, 0x1e, 0x87, 0x1e, 0x7f, 0x1e, 0x7f, 0x1e, 0x7f, 0x1e, 0x7f, 0x1e, 0x7f, 0x3e, 0x7f, 0x5e, 0x87, 0x5e, 0x87, 0x5e, 0x87, 0x3f, 0x86, 0xbf, 0x86, 0x3f, 0x86, 0x1e, 0x7e, 0x1f, 0x7e, 0x3f, 0x7e, 0x3f, 0x86, 0x3f, 0x7e, 0x3e, 0x7e, 0x7f, 0x7e, 0x5e, 0x7e, 0x1e, 0x75, 0xbe, 0x6d, 0xde, 0x6d, 0xbe, 0x54, 0x79, 0x32, 0xd3, 0x32, 0x92, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0xb1, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x22, 0x71, 0x22, 0x51, 0x2a, 0x30, 0x2a, 0x0f, 0x2a, 0x0f, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x0f, 0x2a, 0x0f, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x0f, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xce, 0x19, 0xaf, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, + 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xd3, 0x3b, 0x35, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xf8, 0x4c, 0x18, 0x54, 0x39, 0x5c, 0x5b, 0x5c, 0x9c, 0x5c, 0x9d, 0x5c, 0xbc, 0x5c, 0xbc, 0x5c, 0xbc, 0x64, 0xdd, 0x65, 0x1d, 0x6d, 0x3d, 0x75, 0x7e, 0x75, 0x9f, 0x7d, 0xbf, 0x7d, 0xbf, 0x85, 0xbf, 0x7d, 0xbf, 0x85, 0xdf, 0x7d, 0xff, 0x7d, 0xff, 0x7e, 0x1f, 0x7e, 0x1f, 0x7e, 0x1f, 0x76, 0x1f, 0x7e, 0x3f, 0x7e, 0x7f, 0x86, 0xbf, 0x86, 0xff, 0x76, 0x3e, 0x65, 0xfe, 0x65, 0xde, 0x65, 0xfe, 0x5d, 0xde, 0x5d, 0xbe, 0x5d, 0x3e, 0x5d, 0x7e, 0x5d, 0x5e, 0x5d, 0x5e, 0x6d, 0x7e, 0x6d, 0x9e, 0x6d, 0x7e, 0x6d, 0x9e, 0x75, 0x9f, 0x6d, 0x7f, 0x6d, 0x5e, 0x65, 0x3f, 0x65, 0x5f, 0x5d, 0x5e, 0x5d, 0x5e, 0x5d, 0x3e, 0x5d, 0x5e, 0x5d, 0x5e, 0x5d, 0x5f, 0x5c, 0xfd, 0x5c, 0x9c, 0x5c, 0x9b, 0x5c, 0x7a, 0x5c, 0x59, 0x5c, 0x59, 0x53, 0xf7, 0x43, 0x54, 0x3b, 0x13, 0x43, 0x54, 0x43, 0x54, 0x43, 0x34, 0x3b, 0x34, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x32, 0xb2, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x32, 0x91, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x34, 0x3b, 0x54, 0x43, 0x54, 0x43, 0x54, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0xb6, 0x43, 0xb6, 0x43, 0xb7, 0x43, 0xd7, 0x43, 0xf7, 0x3b, 0xf8, 0x3c, 0x18, 0x3c, 0x39, 0x3c, 0x7a, 0x44, 0x9b, 0x44, 0xdc, 0x55, 0x1d, 0x5d, 0x5e, 0x65, 0x7e, 0x6d, 0x9e, 0x6d, 0xde, 0x75, 0xde, 0x76, 0x1e, 0x76, 0x3f, 0x7e, 0x7e, 0x76, 0xbe, 0x76, 0x9e, 0x76, 0x7e, 0x76, 0x9e, 0x76, 0xbe, 0x76, 0xde, 0x77, 0x1e, 0x7f, 0x1f, 0x7f, 0x3e, 0x7e, 0xff, 0x7e, 0x5e, 0x76, 0x1f, 0x7e, 0x1f, 0x7e, 0x3f, 0x7e, 0x3f, 0x76, 0x3e, 0x7e, 0x3f, 0x76, 0x3f, 0x76, 0x1e, 0x76, 0x1e, 0x6d, 0x9e, 0x75, 0x9e, 0x65, 0xbe, 0x4c, 0x37, 0x32, 0xd2, 0x2a, 0xb2, 0x32, 0xd3, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd2, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x91, 0x2a, 0xb1, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x0f, 0x2a, 0x0f, 0x2a, 0x10, 0x2a, 0x10, 0x29, 0xef, 0x29, 0xef, 0x2a, 0x0f, 0x29, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, + 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x21, 0xf0, 0x2a, 0x51, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x3a, 0xf4, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x35, 0x43, 0x55, 0x43, 0x76, 0x43, 0xb7, 0x4b, 0xd7, 0x4b, 0xd8, 0x54, 0x19, 0x5c, 0x7c, 0x5c, 0xde, 0x65, 0x1f, 0x6d, 0x1e, 0x6d, 0x3e, 0x6c, 0xfe, 0x6d, 0x1e, 0x6d, 0x3e, 0x75, 0x7e, 0x7d, 0x9e, 0x85, 0xbf, 0x85, 0xbf, 0x85, 0xdf, 0x85, 0xdf, 0x85, 0xff, 0x85, 0xff, 0x86, 0x1f, 0x86, 0x3f, 0x7e, 0x3f, 0x7e, 0x1f, 0x76, 0x3f, 0x7e, 0x3f, 0x7e, 0x5f, 0x7e, 0x7f, 0x86, 0xbf, 0x7e, 0xbe, 0x76, 0x3e, 0x65, 0xfe, 0x66, 0x1e, 0x65, 0xfe, 0x65, 0x9e, 0x5d, 0x5e, 0x5d, 0x5e, 0x5d, 0x3e, 0x5d, 0x5e, 0x5d, 0x5e, 0x5d, 0x3e, 0x5d, 0x5e, 0x6d, 0x9f, 0x6d, 0x9f, 0x6d, 0x7f, 0x6d, 0x7f, 0x6d, 0x5e, 0x65, 0x3e, 0x5d, 0x5e, 0x5d, 0x5e, 0x5d, 0x5e, 0x5d, 0x7e, 0x55, 0x5e, 0x4c, 0xfc, 0x4c, 0x59, 0x43, 0xd8, 0x43, 0xd7, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x74, 0x43, 0x74, 0x43, 0x54, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3a, 0xf2, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x0f, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x55, 0x43, 0x75, 0x3b, 0x95, 0x3b, 0x95, 0x3b, 0x96, 0x3b, 0xb6, 0x3b, 0xd6, 0x3b, 0xd7, 0x3b, 0xd7, 0x3b, 0xf8, 0x3c, 0x18, 0x3c, 0x39, 0x3c, 0x79, 0x44, 0x9a, 0x4c, 0xbb, 0x4d, 0x1c, 0x55, 0x3e, 0x5d, 0x5e, 0x65, 0x7e, 0x6d, 0x9f, 0x6d, 0x9f, 0x6d, 0xbe, 0x75, 0xde, 0x6e, 0x1e, 0x6e, 0x3e, 0x6e, 0x1e, 0x6e, 0x1e, 0x6e, 0x3e, 0x6e, 0x5e, 0x76, 0x7e, 0x76, 0xbe, 0x76, 0xde, 0x76, 0xfe, 0x76, 0x9e, 0x76, 0x3f, 0x76, 0x1e, 0x76, 0x3f, 0x76, 0x3f, 0x6e, 0x3f, 0x6e, 0x1e, 0x6e, 0x1e, 0x75, 0xfe, 0x6d, 0xde, 0x6d, 0x7e, 0x6d, 0x5f, 0x65, 0x9e, 0x4b, 0xf6, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd3, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xd3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x0f, 0x2a, 0x0f, 0x2a, 0x10, 0x2a, 0x0f, 0x21, 0xef, 0x29, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, + 0x11, 0x8d, 0x11, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xaf, 0x32, 0x71, 0x32, 0x72, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x76, 0x43, 0x97, 0x4b, 0xb7, 0x4c, 0x18, 0x54, 0x39, 0x54, 0x39, 0x54, 0x7b, 0x5c, 0x9b, 0x5c, 0x9c, 0x64, 0xde, 0x64, 0xff, 0x6d, 0x1f, 0x6d, 0x3f, 0x75, 0x7f, 0x7d, 0xbf, 0x7d, 0xbf, 0x85, 0xbf, 0x8d, 0xdf, 0x8e, 0x1f, 0x8e, 0x1f, 0x8e, 0x1f, 0x8e, 0x3f, 0x86, 0x5f, 0x86, 0x5f, 0x7e, 0x3f, 0x76, 0x1f, 0x76, 0x1f, 0x76, 0x5f, 0x7e, 0x5f, 0x7e, 0x7e, 0x7e, 0x9f, 0x86, 0x9f, 0x7e, 0x9e, 0x65, 0xff, 0x66, 0x1f, 0x65, 0xbe, 0x5d, 0x5e, 0x5d, 0x7e, 0x5d, 0x5e, 0x5d, 0x3e, 0x5d, 0x3e, 0x5d, 0x3e, 0x5d, 0x3e, 0x65, 0x9f, 0x65, 0x7f, 0x6d, 0x7f, 0x6d, 0x7f, 0x65, 0x5e, 0x5d, 0x1e, 0x44, 0xfc, 0x34, 0xdb, 0x3c, 0xfb, 0x34, 0xdc, 0x34, 0xfc, 0x44, 0xdb, 0x33, 0x14, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x95, 0x43, 0x75, 0x43, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x43, 0x74, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf3, 0x32, 0x91, 0x2a, 0x50, 0x32, 0x50, 0x32, 0x50, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x22, 0x0f, 0x22, 0x2f, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0xb6, 0x3b, 0xb6, 0x3b, 0xd7, 0x3b, 0xd7, 0x3b, 0xd7, 0x3b, 0xf8, 0x3c, 0x18, 0x3c, 0x39, 0x3c, 0x59, 0x44, 0xba, 0x4c, 0xdb, 0x54, 0xfc, 0x5d, 0x3d, 0x5d, 0x1e, 0x65, 0x5e, 0x6d, 0x7e, 0x6d, 0xbf, 0x6d, 0xbe, 0x65, 0xbe, 0x65, 0xde, 0x65, 0xde, 0x65, 0xde, 0x6d, 0xde, 0x6d, 0xfe, 0x6e, 0x1e, 0x6e, 0x3e, 0x6e, 0x9e, 0x76, 0x3e, 0x6e, 0x1e, 0x6d, 0xfe, 0x6d, 0xfe, 0x6d, 0xfe, 0x6d, 0xfe, 0x6d, 0xfe, 0x6d, 0xde, 0x6d, 0xdf, 0x65, 0xbf, 0x65, 0x7e, 0x65, 0x5e, 0x65, 0x3f, 0x43, 0xd6, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0xd3, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xd3, 0x32, 0x92, 0x2a, 0xb2, 0x2a, 0x92, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x0f, 0x2a, 0x10, 0x2a, 0x0f, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8d, + 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0x6d, 0x11, 0x6d, 0x19, 0xae, 0x2a, 0x30, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x76, 0x43, 0x97, 0x4b, 0xd7, 0x4c, 0x19, 0x54, 0x5a, 0x54, 0x7b, 0x4c, 0x39, 0x54, 0x5a, 0x5c, 0x9c, 0x64, 0xde, 0x6c, 0xff, 0x6d, 0x3f, 0x75, 0x7e, 0x75, 0x9f, 0x7d, 0xbf, 0x85, 0xdf, 0x85, 0xff, 0x8e, 0x1f, 0x8e, 0x5f, 0x96, 0x5f, 0x96, 0x7f, 0x8e, 0x7f, 0x86, 0x9f, 0x7e, 0x7f, 0x76, 0x5f, 0x76, 0x3f, 0x76, 0x3f, 0x76, 0x3f, 0x7e, 0x1f, 0x7e, 0x5f, 0x86, 0x7f, 0x7e, 0x5e, 0x7e, 0x9e, 0x65, 0xfe, 0x65, 0xbd, 0x65, 0x9e, 0x5d, 0x7e, 0x5d, 0x5e, 0x5d, 0x5e, 0x5d, 0x5e, 0x5d, 0x3e, 0x5d, 0x7f, 0x65, 0x5f, 0x65, 0x5e, 0x65, 0x5e, 0x65, 0x7e, 0x6d, 0x5f, 0x65, 0x3e, 0x44, 0xfc, 0x3d, 0x3c, 0x34, 0xdb, 0x34, 0xfc, 0x34, 0xfc, 0x33, 0xf7, 0x3b, 0x55, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0xb5, 0x4b, 0x95, 0x43, 0xb5, 0x4b, 0xb5, 0x4b, 0x95, 0x43, 0x74, 0x3b, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3a, 0xf2, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x70, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x30, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x91, 0x32, 0xb1, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf2, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x75, 0x3b, 0x95, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0xb7, 0x3b, 0xd7, 0x3b, 0xf8, 0x3c, 0x18, 0x3c, 0x19, 0x44, 0x59, 0x4c, 0x9a, 0x4c, 0xbb, 0x54, 0xdc, 0x5c, 0xdd, 0x5d, 0x1e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x5e, 0x65, 0x5f, 0x65, 0x7f, 0x65, 0x9e, 0x65, 0x7e, 0x65, 0xbe, 0x65, 0x9e, 0x65, 0x9e, 0x65, 0xdf, 0x6d, 0xdf, 0x75, 0xff, 0x75, 0xfe, 0x75, 0xff, 0x75, 0xde, 0x75, 0xde, 0x75, 0xde, 0x75, 0xde, 0x75, 0xdf, 0x75, 0xdf, 0x75, 0xdf, 0x6d, 0xdf, 0x6d, 0x7f, 0x6d, 0x3f, 0x6d, 0x5f, 0x4b, 0xd5, 0x32, 0xd2, 0x32, 0xb2, 0x2a, 0xd3, 0x2a, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x3a, 0xd3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x0f, 0x29, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8d, 0x11, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x11, 0x6d, + 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x19, 0xae, 0x21, 0xef, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x56, 0x43, 0x97, 0x4b, 0xd8, 0x4b, 0xf8, 0x54, 0x39, 0x4c, 0x18, 0x4c, 0x19, 0x54, 0x3a, 0x54, 0x5b, 0x5c, 0xbd, 0x64, 0xde, 0x6d, 0x1f, 0x75, 0x5f, 0x7d, 0xbf, 0x7d, 0xbf, 0x85, 0xdf, 0x85, 0xff, 0x8e, 0x3f, 0x8e, 0x5f, 0x96, 0xbf, 0x96, 0xdf, 0x96, 0xdf, 0x8f, 0x1f, 0x87, 0x1f, 0x7e, 0xbf, 0x76, 0x5f, 0x76, 0x5f, 0x7e, 0x1f, 0x7e, 0x3f, 0x7e, 0x3f, 0x7e, 0x5f, 0x7e, 0x5f, 0x7e, 0x5f, 0x76, 0x7e, 0x6d, 0xbd, 0x65, 0xbe, 0x65, 0xbe, 0x65, 0x9e, 0x5d, 0x7e, 0x5d, 0x5e, 0x5d, 0x5f, 0x65, 0x5e, 0x65, 0x5f, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x5e, 0x65, 0x3e, 0x6d, 0x7e, 0x5d, 0x9d, 0x34, 0xbb, 0x34, 0xdc, 0x34, 0xfc, 0x34, 0x99, 0x3b, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xb5, 0x4b, 0xb5, 0x43, 0xb5, 0x4b, 0xb5, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x74, 0x3b, 0x74, 0x43, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x13, 0x32, 0xb2, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x70, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x33, 0x54, 0x33, 0x55, 0x33, 0x55, 0x33, 0x55, 0x33, 0x76, 0x33, 0x96, 0x33, 0x97, 0x33, 0xb7, 0x3b, 0xd8, 0x3b, 0xf8, 0x3c, 0x19, 0x44, 0x39, 0x44, 0x7a, 0x4c, 0x9b, 0x54, 0xbb, 0x54, 0xdc, 0x5c, 0xdd, 0x65, 0x1d, 0x65, 0x3e, 0x65, 0x5e, 0x65, 0x7f, 0x65, 0x7f, 0x65, 0x7f, 0x65, 0x5f, 0x65, 0x7f, 0x65, 0x7f, 0x65, 0x7e, 0x65, 0x9f, 0x6d, 0xbf, 0x6d, 0xde, 0x6d, 0xbe, 0x6d, 0xbf, 0x6d, 0xbf, 0x6d, 0x9e, 0x6d, 0xbf, 0x65, 0x9f, 0x6d, 0x9e, 0x6d, 0x9f, 0x6d, 0xbf, 0x65, 0x7f, 0x65, 0x1f, 0x65, 0x1f, 0x43, 0xb5, 0x32, 0xd2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x3a, 0xd3, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xd3, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x0f, 0x2a, 0x10, 0x29, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x6d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, + 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x19, 0x8d, 0x21, 0xcf, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x35, 0x43, 0x96, 0x43, 0xd7, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xf9, 0x54, 0x19, 0x54, 0x5b, 0x5c, 0x9c, 0x5c, 0xde, 0x64, 0xff, 0x6d, 0x5f, 0x75, 0x9f, 0x7d, 0xbe, 0x7d, 0xdf, 0x85, 0xff, 0x86, 0x5f, 0x8e, 0x5f, 0x96, 0xbf, 0x96, 0xff, 0x9f, 0x1f, 0x9f, 0x3f, 0x97, 0x5f, 0x87, 0x3f, 0x7e, 0xff, 0x7e, 0x7f, 0x7e, 0x3f, 0x7e, 0x3f, 0x7e, 0x1e, 0x7e, 0x3f, 0x7e, 0x3f, 0x7e, 0x3f, 0x86, 0x5f, 0x7e, 0x1e, 0x6d, 0x9d, 0x6d, 0xde, 0x65, 0x9e, 0x65, 0x7e, 0x5d, 0x5e, 0x5d, 0x5f, 0x65, 0x5e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x5e, 0x65, 0x3e, 0x65, 0x7e, 0x65, 0xfe, 0x4d, 0x5c, 0x34, 0xbc, 0x35, 0x1c, 0x3c, 0xba, 0x3b, 0x75, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x74, 0x3b, 0x74, 0x43, 0x74, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x33, 0x3b, 0x34, 0x3b, 0x13, 0x32, 0xb2, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xce, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x13, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x35, 0x33, 0x35, 0x33, 0x55, 0x33, 0x76, 0x33, 0x76, 0x33, 0x97, 0x33, 0xb7, 0x33, 0xd7, 0x3b, 0xf8, 0x3c, 0x18, 0x44, 0x59, 0x44, 0x79, 0x4c, 0x9a, 0x54, 0xbb, 0x54, 0xdb, 0x5c, 0xdc, 0x5c, 0xfc, 0x5d, 0x1d, 0x65, 0x3e, 0x65, 0x5f, 0x65, 0x7f, 0x65, 0x5f, 0x65, 0x7f, 0x65, 0x7f, 0x65, 0x7f, 0x65, 0x9e, 0x65, 0x7e, 0x65, 0x9e, 0x65, 0x7f, 0x6d, 0x7f, 0x65, 0x7f, 0x65, 0x7f, 0x65, 0x9f, 0x65, 0x7e, 0x65, 0x9f, 0x65, 0x7f, 0x65, 0x7f, 0x65, 0x5f, 0x65, 0x1f, 0x64, 0xff, 0x43, 0xb6, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf3, 0x3a, 0xd3, 0x3a, 0xd3, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x29, 0xf0, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, + 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x4c, 0x11, 0x4c, 0x19, 0x8d, 0x2a, 0x0f, 0x29, 0xef, 0x29, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x55, 0x3b, 0x96, 0x43, 0xb7, 0x43, 0xd7, 0x4b, 0xf8, 0x43, 0xd8, 0x4b, 0xf8, 0x4c, 0x19, 0x4c, 0x3a, 0x54, 0x7c, 0x5c, 0xbe, 0x65, 0x1f, 0x6d, 0x3f, 0x6d, 0x7f, 0x75, 0xdf, 0x7d, 0xff, 0x7e, 0x1f, 0x86, 0x5f, 0x86, 0xbf, 0x8e, 0xff, 0x97, 0x3f, 0x9f, 0x3e, 0xa7, 0x5f, 0x9f, 0x7f, 0x97, 0x7f, 0x87, 0x5f, 0x86, 0xff, 0x7e, 0x7f, 0x7e, 0x3f, 0x7e, 0x3f, 0x7e, 0x3f, 0x7e, 0x3f, 0x7e, 0x1f, 0x7d, 0xff, 0x86, 0x5f, 0x7e, 0x3e, 0x6d, 0x9d, 0x65, 0xbe, 0x65, 0xbe, 0x5d, 0x7e, 0x5d, 0x5e, 0x65, 0x5e, 0x5d, 0x3e, 0x5d, 0x3e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x5e, 0x6d, 0xfe, 0x5d, 0xfe, 0x34, 0xfa, 0x34, 0xbb, 0x3c, 0x38, 0x43, 0x96, 0x43, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb5, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x74, 0x3b, 0x74, 0x43, 0x74, 0x3b, 0x74, 0x3b, 0x54, 0x43, 0x54, 0x3a, 0xf3, 0x2a, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x0f, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xce, 0x19, 0xce, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x22, 0x0f, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x91, 0x32, 0x91, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x34, 0x33, 0x34, 0x33, 0x35, 0x33, 0x55, 0x33, 0x76, 0x33, 0x76, 0x33, 0x97, 0x33, 0xb7, 0x33, 0xd7, 0x3c, 0x18, 0x3c, 0x38, 0x44, 0x58, 0x4c, 0x79, 0x4c, 0x99, 0x54, 0x9a, 0x54, 0xba, 0x54, 0xbb, 0x5c, 0xdb, 0x5d, 0x1c, 0x5d, 0x3d, 0x5d, 0x5e, 0x5d, 0x3e, 0x5d, 0x3f, 0x65, 0x5f, 0x65, 0x5e, 0x65, 0x7f, 0x65, 0x7f, 0x65, 0x9f, 0x65, 0x7e, 0x65, 0x5f, 0x65, 0x5f, 0x5d, 0x3e, 0x65, 0x5f, 0x65, 0x5f, 0x65, 0x5f, 0x65, 0x5e, 0x65, 0x3e, 0x65, 0x3e, 0x64, 0xff, 0x64, 0xfe, 0x43, 0xb6, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf3, 0x3a, 0xf3, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6c, 0x11, 0x6c, + 0x11, 0x6c, 0x09, 0x4c, 0x11, 0x6c, 0x19, 0xae, 0x2a, 0x30, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xf0, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xd3, 0x3b, 0x35, 0x43, 0x55, 0x43, 0x76, 0x43, 0x96, 0x43, 0xb7, 0x43, 0xd8, 0x43, 0xd8, 0x4b, 0xf8, 0x4c, 0x19, 0x54, 0x3a, 0x54, 0x7b, 0x5c, 0xdd, 0x65, 0x1f, 0x65, 0x5f, 0x6d, 0x7f, 0x75, 0xbf, 0x76, 0x1f, 0x7e, 0x5f, 0x86, 0x7f, 0x86, 0xbf, 0x8f, 0x1f, 0x97, 0x7f, 0x97, 0x9e, 0x9f, 0x9e, 0xa7, 0x7e, 0x9f, 0x9e, 0x97, 0x9f, 0x8f, 0x7f, 0x86, 0xff, 0x7e, 0x7f, 0x7e, 0x1f, 0x7d, 0xff, 0x7d, 0xff, 0x7e, 0x1f, 0x7d, 0xdf, 0x7d, 0xff, 0x86, 0x3f, 0x7e, 0x3e, 0x6d, 0xbe, 0x65, 0xbe, 0x65, 0x7e, 0x65, 0x5e, 0x65, 0x5e, 0x5d, 0x5e, 0x5d, 0x3e, 0x5d, 0x1e, 0x5d, 0x1e, 0x5d, 0x1e, 0x65, 0x7e, 0x65, 0xfe, 0x6e, 0x1e, 0x5d, 0xdd, 0x3c, 0x79, 0x3b, 0xb6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x53, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb5, 0x4b, 0xb5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x74, 0x3b, 0x74, 0x3b, 0x74, 0x3b, 0x33, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xee, 0x21, 0xee, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x91, 0x32, 0xb1, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x34, 0x33, 0x35, 0x33, 0x55, 0x33, 0x76, 0x33, 0x96, 0x33, 0x96, 0x33, 0xb7, 0x33, 0xb7, 0x3b, 0xf8, 0x44, 0x18, 0x44, 0x38, 0x4c, 0x59, 0x4c, 0x79, 0x4c, 0x9a, 0x54, 0xba, 0x54, 0xba, 0x54, 0xdb, 0x54, 0xfc, 0x54, 0xfc, 0x54, 0xfd, 0x54, 0xfe, 0x5d, 0x1e, 0x5d, 0x1e, 0x5d, 0x5f, 0x65, 0x7f, 0x65, 0x7f, 0x65, 0x7f, 0x65, 0x5f, 0x65, 0x3f, 0x5d, 0x3e, 0x5d, 0x1f, 0x5d, 0x3e, 0x5d, 0x3f, 0x5d, 0x3f, 0x5d, 0x1e, 0x5c, 0xfe, 0x5d, 0x1f, 0x5c, 0xfe, 0x4b, 0xb7, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x14, 0x32, 0xf4, 0x3b, 0x35, 0x43, 0x76, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0x96, 0x43, 0x75, 0x3b, 0x35, 0x3b, 0x34, 0x43, 0x55, 0x3a, 0xf3, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x29, 0xf0, 0x29, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, + 0x11, 0x4c, 0x11, 0x4c, 0x21, 0xce, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xae, 0x21, 0xaf, 0x19, 0xae, 0x21, 0xaf, 0x21, 0xaf, 0x19, 0xaf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x52, 0x2a, 0x92, 0x32, 0xd3, 0x3b, 0x14, 0x3b, 0x35, 0x43, 0x55, 0x3b, 0x76, 0x3b, 0x97, 0x43, 0xb7, 0x4b, 0xf8, 0x43, 0xd8, 0x4c, 0x19, 0x4c, 0x59, 0x54, 0x7b, 0x5c, 0xbd, 0x5c, 0xff, 0x65, 0x3f, 0x6d, 0x9f, 0x75, 0xdf, 0x7e, 0x1f, 0x7e, 0x9f, 0x86, 0xdf, 0x86, 0xff, 0x8f, 0x1f, 0x97, 0x7f, 0x97, 0xbe, 0x9f, 0x9d, 0xa7, 0x9d, 0xa7, 0x9d, 0x97, 0x9e, 0x97, 0x9f, 0x8f, 0x3f, 0x7e, 0x9f, 0x7e, 0x3f, 0x7d, 0xff, 0x7d, 0xff, 0x7d, 0xfe, 0x7d, 0xbf, 0x7d, 0xdf, 0x85, 0xff, 0x86, 0x1e, 0x75, 0xfe, 0x6d, 0xbe, 0x65, 0x9e, 0x65, 0x9e, 0x65, 0x5e, 0x5d, 0x3e, 0x5d, 0x3e, 0x5d, 0x1d, 0x5d, 0x1d, 0x5d, 0x1e, 0x65, 0x5e, 0x65, 0xfe, 0x66, 0x1e, 0x66, 0x1e, 0x55, 0x1b, 0x43, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x16, 0x53, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd5, 0x43, 0xb5, 0x4b, 0xb5, 0x43, 0x95, 0x3b, 0x75, 0x43, 0x75, 0x3b, 0x74, 0x43, 0x74, 0x3b, 0x33, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xce, 0x21, 0xce, 0x21, 0xce, 0x21, 0xce, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x22, 0x0f, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x2a, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x35, 0x33, 0x55, 0x33, 0x75, 0x33, 0x76, 0x33, 0x76, 0x33, 0x96, 0x33, 0x97, 0x33, 0xb7, 0x3b, 0xd7, 0x43, 0xf8, 0x44, 0x18, 0x4c, 0x38, 0x4c, 0x79, 0x4c, 0x99, 0x4c, 0x99, 0x54, 0xba, 0x54, 0xba, 0x54, 0xdb, 0x54, 0xdc, 0x54, 0xdc, 0x54, 0xdd, 0x54, 0xfd, 0x54, 0xfe, 0x5d, 0x3e, 0x5d, 0x3f, 0x5d, 0x5f, 0x5d, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x5d, 0x1f, 0x55, 0x1f, 0x5d, 0x1f, 0x5c, 0xfe, 0x54, 0xfd, 0x5c, 0xde, 0x5c, 0xfe, 0x5c, 0xdd, 0x54, 0x19, 0x43, 0x75, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xd7, 0x53, 0xf8, 0x53, 0xf8, 0x53, 0xf8, 0x53, 0xf8, 0x54, 0x18, 0x53, 0xf8, 0x54, 0x18, 0x54, 0x39, 0x5c, 0x5a, 0x5c, 0x7a, 0x5c, 0x79, 0x3a, 0xf3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, + 0x11, 0x4c, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xf0, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x31, 0x2a, 0x52, 0x2a, 0x92, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x76, 0x3b, 0x97, 0x43, 0xd8, 0x43, 0xd8, 0x4c, 0x18, 0x54, 0x59, 0x54, 0x9b, 0x5c, 0xbd, 0x5c, 0xff, 0x65, 0x3f, 0x6d, 0xbf, 0x75, 0xff, 0x7e, 0x5f, 0x7e, 0xbf, 0x87, 0x1f, 0x8f, 0x3f, 0x8f, 0x3f, 0x8f, 0x5f, 0x97, 0x7e, 0x9f, 0x9d, 0x9f, 0x9d, 0xa7, 0x9d, 0x9f, 0x9d, 0x97, 0x9d, 0x8f, 0x9e, 0x87, 0x1f, 0x7e, 0x9f, 0x7e, 0x1f, 0x7d, 0xff, 0x7d, 0xdf, 0x7d, 0xbf, 0x7d, 0xdf, 0x85, 0xdf, 0x85, 0xdf, 0x7d, 0xfe, 0x6d, 0xbd, 0x6d, 0xbe, 0x65, 0x9e, 0x65, 0x5d, 0x65, 0x5d, 0x5d, 0x1d, 0x5d, 0x1d, 0x5d, 0x1d, 0x5d, 0x1d, 0x65, 0x5d, 0x65, 0xfe, 0x66, 0x1f, 0x65, 0xfe, 0x65, 0x5b, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x54, 0x17, 0x54, 0x16, 0x4b, 0xf6, 0x4c, 0x16, 0x4c, 0x16, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xd5, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x95, 0x43, 0x74, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x30, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xce, 0x21, 0xce, 0x19, 0xce, 0x19, 0xce, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x22, 0x0f, 0x22, 0x0f, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xd3, 0x2a, 0xd3, 0x32, 0xd3, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x34, 0x33, 0x35, 0x33, 0x55, 0x33, 0x55, 0x33, 0x56, 0x33, 0x76, 0x33, 0x96, 0x3b, 0xb7, 0x3b, 0xd7, 0x43, 0xf8, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x58, 0x4c, 0x78, 0x4c, 0x79, 0x4c, 0x99, 0x4c, 0x9a, 0x54, 0x9a, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xbc, 0x54, 0xdd, 0x54, 0xfe, 0x54, 0xfe, 0x5c, 0xfe, 0x5d, 0x1f, 0x5d, 0x3e, 0x5d, 0x1f, 0x5d, 0x1f, 0x5d, 0x1f, 0x5d, 0x1f, 0x5c, 0xfe, 0x54, 0xbd, 0x54, 0xbd, 0x54, 0xbc, 0x5c, 0x7b, 0x5c, 0x9c, 0x54, 0x3a, 0x4b, 0xb7, 0x4b, 0x96, 0x43, 0x96, 0x4b, 0x96, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x3b, 0x14, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x30, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x11, 0x8d, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, + 0x29, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x21, 0xcf, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xf0, 0x21, 0xf0, 0x22, 0x11, 0x2a, 0x51, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x96, 0x43, 0xd7, 0x4c, 0x18, 0x4b, 0xf8, 0x54, 0x39, 0x54, 0x9a, 0x5c, 0xbd, 0x65, 0x1e, 0x6d, 0x5e, 0x6d, 0xbf, 0x76, 0x1f, 0x86, 0xbf, 0x87, 0x1f, 0x87, 0x3f, 0x8f, 0x7f, 0x97, 0x5f, 0x97, 0x5f, 0x97, 0x9f, 0x97, 0x9e, 0x97, 0x9d, 0x9f, 0x9d, 0x9f, 0x9d, 0x8f, 0x9d, 0x8f, 0x9e, 0x87, 0x3f, 0x7e, 0xbf, 0x7e, 0x5f, 0x7e, 0x1f, 0x7d, 0xff, 0x75, 0xbf, 0x75, 0xbf, 0x85, 0xdf, 0x85, 0xdf, 0x85, 0xff, 0x7e, 0x1e, 0x6d, 0xbd, 0x6d, 0x9d, 0x65, 0x5d, 0x65, 0x3d, 0x5d, 0x3d, 0x5d, 0x1d, 0x5c, 0xfd, 0x5d, 0x1d, 0x65, 0x5d, 0x65, 0xfe, 0x66, 0x1e, 0x6e, 0x3e, 0x65, 0x5a, 0x4b, 0xd6, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x17, 0x54, 0x37, 0x54, 0x37, 0x54, 0x17, 0x54, 0x37, 0x54, 0x16, 0x4c, 0x16, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd5, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x95, 0x3b, 0x54, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xce, 0x21, 0xee, 0x19, 0xce, 0x19, 0xce, 0x19, 0xce, 0x21, 0xee, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x22, 0x0f, 0x22, 0x0f, 0x2a, 0x10, 0x2a, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb2, 0x2a, 0xb3, 0x2a, 0xd3, 0x2a, 0xd3, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x14, 0x33, 0x35, 0x33, 0x55, 0x33, 0x76, 0x3b, 0x96, 0x3b, 0xb7, 0x3b, 0xd7, 0x43, 0xf7, 0x44, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x79, 0x4c, 0x7a, 0x4c, 0x9a, 0x4c, 0x9b, 0x4c, 0x9b, 0x54, 0x9c, 0x54, 0xbc, 0x54, 0xdd, 0x54, 0xfe, 0x54, 0xfe, 0x5c, 0xfe, 0x5c, 0xfe, 0x5d, 0x1f, 0x5d, 0x1f, 0x5d, 0x1f, 0x5c, 0xfe, 0x54, 0x9b, 0x54, 0x5a, 0x54, 0x7a, 0x5c, 0x7b, 0x54, 0xbd, 0x54, 0x5b, 0x4b, 0xb7, 0x43, 0x96, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x4b, 0x96, 0x4b, 0xb6, 0x43, 0xb6, 0x4b, 0x96, 0x4b, 0xb6, 0x4b, 0xb7, 0x43, 0x75, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x29, 0xf0, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x29, 0xef, 0x29, 0xef, 0x21, 0xcf, 0x19, 0x8e, 0x11, 0x4c, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x2b, 0x11, 0x4c, + 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xce, 0x21, 0xae, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x6d, 0x19, 0x6d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x31, 0x2a, 0x52, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x35, 0x3b, 0x55, 0x3b, 0x97, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x38, 0x5c, 0x7a, 0x64, 0xdc, 0x65, 0x1f, 0x6d, 0x9f, 0x75, 0xdf, 0x7e, 0x5f, 0x87, 0x1f, 0x8f, 0x9e, 0x97, 0x9d, 0x97, 0xbe, 0x97, 0x9e, 0x9f, 0x7e, 0x9f, 0x7f, 0x97, 0x7f, 0x97, 0x9e, 0x97, 0x9e, 0x9f, 0x9d, 0x9f, 0x9d, 0x8f, 0x7d, 0x87, 0x3f, 0x7e, 0xbf, 0x7e, 0x7f, 0x7e, 0x3f, 0x7d, 0xff, 0x75, 0xbf, 0x75, 0x9f, 0x7d, 0xbf, 0x85, 0xdf, 0x7d, 0xdf, 0x7d, 0xff, 0x7d, 0xfe, 0x6d, 0x9d, 0x65, 0x5d, 0x5d, 0x3d, 0x5d, 0x1d, 0x5c, 0xfd, 0x5c, 0xfc, 0x5c, 0xfc, 0x5d, 0x5d, 0x66, 0x1e, 0x6e, 0x7f, 0x76, 0x1e, 0x65, 0x1a, 0x54, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x17, 0x4c, 0x16, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x3b, 0x54, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x21, 0xef, 0x21, 0xef, 0x21, 0xce, 0x21, 0xce, 0x21, 0xce, 0x19, 0xce, 0x21, 0xce, 0x19, 0xce, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xef, 0x22, 0x0f, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xd3, 0x33, 0x14, 0x3b, 0x35, 0x3b, 0x76, 0x43, 0x96, 0x43, 0xb7, 0x43, 0xd8, 0x43, 0xd8, 0x43, 0xf8, 0x44, 0x19, 0x4c, 0x19, 0x4c, 0x59, 0x4c, 0x59, 0x54, 0x5a, 0x54, 0x5a, 0x4c, 0x59, 0x4c, 0x58, 0x4c, 0x58, 0x4c, 0x59, 0x4c, 0x79, 0x4c, 0x7a, 0x4c, 0x7a, 0x4c, 0x7b, 0x4c, 0x9b, 0x4c, 0x9c, 0x54, 0xbc, 0x54, 0xdd, 0x54, 0xdd, 0x54, 0xdd, 0x54, 0xde, 0x5c, 0xfe, 0x5c, 0xdd, 0x54, 0x7b, 0x5c, 0x9b, 0x5c, 0x9c, 0x5c, 0x9d, 0x54, 0x9d, 0x5c, 0xbd, 0x54, 0x7b, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x4b, 0x96, 0x4b, 0x96, 0x43, 0x76, 0x43, 0x76, 0x43, 0x96, 0x43, 0xb6, 0x43, 0x75, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xd3, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x29, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x29, 0xf0, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x30, 0x21, 0xef, 0x19, 0xae, 0x29, 0xef, + 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xf0, 0x22, 0x10, 0x22, 0x31, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0xb3, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x15, 0x33, 0x55, 0x3b, 0x76, 0x43, 0xb7, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x7a, 0x64, 0xbc, 0x6d, 0x3e, 0x75, 0x9f, 0x7e, 0x1f, 0x87, 0x1f, 0x97, 0x9e, 0x9f, 0x9d, 0x9f, 0xbd, 0x9f, 0xbd, 0xa7, 0xbd, 0xa7, 0xbd, 0x9f, 0x9e, 0x9f, 0x7f, 0x9f, 0x7f, 0x9f, 0x7f, 0x9f, 0x9e, 0x9f, 0x9d, 0x97, 0x9d, 0x8f, 0x7e, 0x7e, 0xff, 0x7e, 0x7f, 0x7e, 0x3f, 0x75, 0xff, 0x75, 0xbf, 0x75, 0x9f, 0x7d, 0x9f, 0x85, 0xdf, 0x7d, 0xdf, 0x7d, 0xdf, 0x7d, 0xfe, 0x75, 0xdd, 0x65, 0x5c, 0x65, 0x3d, 0x5d, 0x1d, 0x5c, 0xfc, 0x5c, 0xfc, 0x5c, 0xfc, 0x5d, 0x7d, 0x66, 0x1e, 0x6e, 0x1e, 0x75, 0xfd, 0x5c, 0xd9, 0x54, 0x38, 0x54, 0x38, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x57, 0x54, 0x57, 0x5c, 0x57, 0x5c, 0x57, 0x54, 0x37, 0x54, 0x37, 0x4c, 0x37, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0x95, 0x3b, 0x14, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x91, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0x0f, 0x29, 0xef, 0x29, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xce, 0x21, 0xce, 0x21, 0xce, 0x21, 0xce, 0x21, 0xce, 0x21, 0xce, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xce, 0x19, 0xce, 0x21, 0xee, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0xd3, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x96, 0x4b, 0xd8, 0x54, 0x19, 0x54, 0x5a, 0x5c, 0x9a, 0x64, 0xbb, 0x5c, 0xbc, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xbd, 0x5c, 0xbe, 0x5c, 0xbe, 0x5c, 0xde, 0x64, 0xde, 0x5c, 0xdd, 0x5c, 0xbd, 0x5c, 0xbc, 0x5c, 0xbb, 0x54, 0x9a, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x7a, 0x4c, 0x7a, 0x4c, 0x7b, 0x4c, 0x7b, 0x4c, 0x9b, 0x54, 0xbc, 0x54, 0xdd, 0x54, 0x9b, 0x54, 0x5b, 0x54, 0x5a, 0x5c, 0x7a, 0x5c, 0x9b, 0x5c, 0x9c, 0x5c, 0xbc, 0x5c, 0xdd, 0x64, 0xfe, 0x64, 0xbc, 0x54, 0x18, 0x4b, 0xb7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xf0, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xf0, 0x2a, 0x10, 0x2a, 0x10, + 0x2a, 0x0f, 0x29, 0xf0, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x19, 0x8e, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xf0, 0x22, 0x10, 0x22, 0x31, 0x2a, 0x52, 0x2a, 0x72, 0x2a, 0xb3, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x35, 0x3b, 0x55, 0x3b, 0x96, 0x43, 0xd7, 0x4c, 0x18, 0x54, 0x59, 0x64, 0xbb, 0x6d, 0x3e, 0x75, 0xbf, 0x86, 0x7f, 0x97, 0x9e, 0xa7, 0xbd, 0xb7, 0x9e, 0xbf, 0x9e, 0xbf, 0xbe, 0xb7, 0x9e, 0xb7, 0x9e, 0xaf, 0x9d, 0xa7, 0x9e, 0xa7, 0x7f, 0xa7, 0x7f, 0x9f, 0x7e, 0x9f, 0x9e, 0x9f, 0x9d, 0x97, 0x9d, 0x8f, 0x5f, 0x7e, 0xdf, 0x7e, 0x5f, 0x7d, 0xff, 0x75, 0xbf, 0x75, 0x9f, 0x75, 0x9f, 0x85, 0xff, 0x7d, 0xdf, 0x7d, 0xdf, 0x7d, 0xff, 0x7d, 0xfe, 0x6d, 0x7c, 0x5d, 0x3c, 0x5d, 0x1c, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xfc, 0x5d, 0x5d, 0x6e, 0x1f, 0x76, 0x7e, 0x76, 0x1c, 0x5c, 0x78, 0x54, 0x58, 0x54, 0x58, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x58, 0x54, 0x57, 0x5c, 0x57, 0x5c, 0x57, 0x5c, 0x57, 0x54, 0x57, 0x54, 0x37, 0x4c, 0x17, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x33, 0x33, 0x13, 0x32, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x10, 0x29, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xce, 0x21, 0xce, 0x21, 0xce, 0x21, 0xce, 0x21, 0xce, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xae, 0x19, 0xce, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x22, 0x10, 0x22, 0x10, 0x22, 0x30, 0x22, 0x30, 0x22, 0x30, 0x2a, 0x51, 0x32, 0xf3, 0x43, 0x76, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xb7, 0x4b, 0xf8, 0x54, 0x19, 0x54, 0x3a, 0x54, 0x5a, 0x54, 0x7b, 0x5c, 0x9c, 0x5c, 0xbd, 0x5c, 0xbe, 0x5c, 0xbe, 0x5c, 0xdf, 0x64, 0xff, 0x64, 0xff, 0x64, 0xff, 0x64, 0xff, 0x64, 0xff, 0x64, 0xff, 0x64, 0xff, 0x65, 0x1f, 0x6d, 0x3e, 0x5c, 0xdb, 0x4c, 0x79, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x5a, 0x4c, 0x5a, 0x4c, 0x7b, 0x4c, 0x39, 0x4b, 0xf8, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x7b, 0x5c, 0x9b, 0x5c, 0xbc, 0x6c, 0xdd, 0x6c, 0xbc, 0x5c, 0x17, 0x53, 0xf7, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x3b, 0x14, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x22, 0x30, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x2a, 0x10, 0x2a, 0x10, 0x29, 0xef, + 0x2a, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x11, 0x6d, 0x11, 0x4c, 0x11, 0x6c, 0x11, 0x6c, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x11, 0x4d, 0x11, 0x6d, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xf0, 0x22, 0x10, 0x22, 0x11, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xd4, 0x32, 0xf4, 0x33, 0x35, 0x3b, 0x75, 0x3b, 0x76, 0x43, 0xb6, 0x4b, 0xf8, 0x54, 0x39, 0x5c, 0x9b, 0x6d, 0x1e, 0x7d, 0x9f, 0x86, 0x5f, 0x9f, 0xbf, 0xb7, 0x9d, 0xcf, 0xbf, 0xe7, 0xbf, 0xef, 0xbf, 0xe7, 0xbf, 0xd7, 0xbf, 0xc7, 0xbf, 0xb7, 0xbe, 0xaf, 0x9e, 0xa7, 0x7f, 0x9f, 0x5f, 0x9f, 0x7f, 0x9f, 0x7e, 0x97, 0x9e, 0x97, 0x9e, 0x87, 0x1f, 0x7e, 0x7f, 0x7e, 0x1f, 0x75, 0xdf, 0x75, 0xbf, 0x7d, 0xdf, 0x85, 0xff, 0x7d, 0xdf, 0x7d, 0xdf, 0x7d, 0xdf, 0x7d, 0xfe, 0x75, 0xbd, 0x5d, 0x3c, 0x5d, 0x1c, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xfc, 0x65, 0x9d, 0x6e, 0x3e, 0x76, 0x3e, 0x6d, 0x9c, 0x54, 0x78, 0x54, 0x79, 0x54, 0x58, 0x54, 0x58, 0x4c, 0x38, 0x54, 0x58, 0x54, 0x78, 0x5c, 0x57, 0x5c, 0x57, 0x5c, 0x57, 0x5c, 0x37, 0x54, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x16, 0x4c, 0x16, 0x4b, 0xf6, 0x4b, 0xd6, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x33, 0x13, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x21, 0xef, 0x21, 0xef, 0x21, 0xce, 0x21, 0xce, 0x21, 0xce, 0x21, 0xce, 0x21, 0xce, 0x19, 0xae, 0x19, 0xad, 0x19, 0x8d, 0x19, 0xae, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x21, 0xce, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x22, 0x10, 0x22, 0x51, 0x3b, 0x34, 0x4b, 0x96, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0xb7, 0x43, 0xd7, 0x4b, 0xd8, 0x4b, 0xf8, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x5b, 0x54, 0x9c, 0x5c, 0x9d, 0x5c, 0xde, 0x65, 0x1e, 0x6d, 0x3f, 0x6d, 0x5f, 0x6d, 0x5f, 0x65, 0x5f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x1f, 0x6d, 0x3f, 0x64, 0xfd, 0x54, 0x7a, 0x4c, 0x59, 0x4c, 0x59, 0x4c, 0x18, 0x4b, 0xf7, 0x4b, 0xd8, 0x4c, 0x18, 0x54, 0x39, 0x54, 0x38, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x5a, 0x5c, 0x9b, 0x64, 0xdc, 0x64, 0xdc, 0x5c, 0x18, 0x53, 0xf7, 0x53, 0xf7, 0x4b, 0xd7, 0x43, 0xb7, 0x43, 0xb6, 0x43, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x54, 0x17, 0x4b, 0x76, 0x3a, 0xb2, 0x3a, 0xd2, 0x32, 0xb2, 0x32, 0xd3, 0x3a, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x30, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x29, 0xef, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, + 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xae, 0x19, 0x8d, 0x11, 0x6d, 0x11, 0x4c, 0x11, 0x6d, 0x11, 0x4c, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0x8e, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xcf, 0x21, 0xf0, 0x22, 0x10, 0x22, 0x31, 0x2a, 0x52, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xf4, 0x33, 0x15, 0x33, 0x35, 0x3b, 0x76, 0x3b, 0x96, 0x43, 0xd7, 0x4c, 0x38, 0x5c, 0x9a, 0x65, 0x1d, 0x75, 0x9f, 0x86, 0x3f, 0x9f, 0x9f, 0xb7, 0xbe, 0xdf, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xef, 0x9f, 0xcf, 0x9f, 0xb7, 0xbe, 0xaf, 0x9e, 0xa7, 0x7f, 0x9f, 0x3f, 0x97, 0x1f, 0x97, 0x5f, 0x97, 0x9e, 0x8f, 0x7e, 0x87, 0x1f, 0x7e, 0x3f, 0x75, 0xdf, 0x75, 0xbf, 0x7d, 0xbf, 0x7d, 0xff, 0x7d, 0xff, 0x7d, 0xff, 0x7d, 0xff, 0x7d, 0xff, 0x75, 0xdf, 0x6d, 0x7d, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xdb, 0x5c, 0xfb, 0x65, 0xbd, 0x76, 0x3e, 0x7e, 0x5e, 0x6d, 0x7c, 0x5c, 0x98, 0x5c, 0x79, 0x54, 0x79, 0x54, 0x79, 0x4c, 0x58, 0x54, 0x78, 0x54, 0x78, 0x5c, 0x78, 0x5c, 0x78, 0x5c, 0x58, 0x5c, 0x77, 0x54, 0x57, 0x54, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4b, 0xf6, 0x4b, 0xf6, 0x4b, 0xf6, 0x43, 0x95, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x33, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xce, 0x21, 0xce, 0x21, 0xce, 0x19, 0xae, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0xad, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xce, 0x19, 0xae, 0x19, 0xef, 0x2a, 0x51, 0x3b, 0x14, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x4b, 0x95, 0x4b, 0x96, 0x4b, 0x96, 0x4b, 0x96, 0x4b, 0xb6, 0x4b, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x4b, 0xd8, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x5a, 0x54, 0x7b, 0x5c, 0x9c, 0x5c, 0xdd, 0x65, 0x1e, 0x6d, 0x3f, 0x75, 0x5f, 0x75, 0x7f, 0x6d, 0x7f, 0x65, 0x5f, 0x65, 0x3f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x1f, 0x6d, 0x3f, 0x6d, 0x3f, 0x64, 0xfd, 0x5c, 0x7a, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x39, 0x54, 0x38, 0x54, 0x39, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0x7a, 0x64, 0xbc, 0x54, 0x38, 0x4b, 0xf6, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x54, 0x18, 0x64, 0x79, 0x43, 0x34, 0x3a, 0xf3, 0x3a, 0xf3, 0x3b, 0x13, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x21, 0xcf, 0x2a, 0x10, 0x2a, 0x0f, 0x29, 0xef, 0x29, 0xef, + 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x11, 0x8d, 0x09, 0x2c, 0x11, 0x4c, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0xaf, 0x19, 0xcf, 0x21, 0xf0, 0x22, 0x11, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x93, 0x2a, 0xb3, 0x32, 0xf4, 0x33, 0x15, 0x3b, 0x56, 0x3b, 0x96, 0x43, 0xd7, 0x43, 0xf7, 0x54, 0x59, 0x64, 0xfc, 0x75, 0x9f, 0x86, 0x3f, 0x97, 0x5f, 0xb7, 0xbd, 0xd7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xef, 0xbf, 0xdf, 0xbf, 0xbf, 0xbe, 0xaf, 0x7e, 0xa6, 0xff, 0x9f, 0x1f, 0x9f, 0x5f, 0x97, 0x9f, 0x97, 0x9f, 0x87, 0x3f, 0x7e, 0x7f, 0x75, 0xff, 0x75, 0xbf, 0x75, 0xbf, 0x7d, 0xff, 0x7d, 0xff, 0x75, 0xdf, 0x7d, 0xdf, 0x75, 0xbf, 0x75, 0xdf, 0x75, 0x9e, 0x5d, 0x1c, 0x5c, 0xbb, 0x54, 0xbb, 0x5c, 0xfb, 0x6e, 0x3f, 0x76, 0x3e, 0x76, 0x1e, 0x75, 0xbc, 0x5c, 0x99, 0x5c, 0x99, 0x54, 0x99, 0x54, 0x99, 0x54, 0x59, 0x54, 0x58, 0x54, 0x98, 0x5c, 0x98, 0x5c, 0x78, 0x5c, 0x58, 0x5c, 0x78, 0x54, 0x57, 0x54, 0x57, 0x54, 0x37, 0x4c, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xd6, 0x43, 0x75, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x33, 0x13, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xce, 0x19, 0xae, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8e, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8e, 0x2a, 0x30, 0x32, 0xf3, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x43, 0x35, 0x43, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x97, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xd8, 0x4b, 0xf8, 0x4c, 0x39, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7b, 0x54, 0xbc, 0x5c, 0xdd, 0x65, 0x1e, 0x6d, 0x5f, 0x75, 0x5f, 0x75, 0x9f, 0x6d, 0x9f, 0x6d, 0x5f, 0x6d, 0x3f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x1e, 0x65, 0x1f, 0x65, 0x1f, 0x6c, 0xff, 0x6c, 0xfe, 0x64, 0xde, 0x54, 0x39, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x18, 0x54, 0x38, 0x54, 0x39, 0x54, 0x59, 0x54, 0x7b, 0x4c, 0x18, 0x43, 0xb6, 0x43, 0xb7, 0x4b, 0xb7, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xf7, 0x54, 0x17, 0x5c, 0x79, 0x4b, 0x96, 0x3a, 0xf3, 0x3b, 0x13, 0x43, 0x13, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x13, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x22, 0x10, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x21, 0xaf, 0x2a, 0x10, 0x2a, 0x0f, 0x2a, 0x0f, 0x29, 0xef, 0x21, 0xef, + 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8d, 0x19, 0x6d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8e, 0x19, 0xae, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8e, 0x19, 0x8e, 0x19, 0xaf, 0x21, 0xf0, 0x22, 0x10, 0x22, 0x31, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xd4, 0x33, 0x14, 0x33, 0x35, 0x3b, 0x76, 0x3b, 0xb7, 0x43, 0xf7, 0x4c, 0x38, 0x5c, 0xda, 0x6d, 0x5e, 0x85, 0xff, 0x8e, 0xfe, 0xa7, 0xbe, 0xcf, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xdf, 0xbf, 0xbf, 0x9f, 0xaf, 0x5f, 0xa6, 0xff, 0x9f, 0x1f, 0x97, 0x5f, 0x97, 0x9e, 0x8f, 0x5f, 0x7e, 0xbf, 0x75, 0xff, 0x75, 0x9f, 0x6d, 0x7f, 0x6d, 0x7f, 0x75, 0xbf, 0x75, 0xbf, 0x75, 0xbf, 0x75, 0xbf, 0x75, 0xbf, 0x75, 0x9f, 0x6d, 0x5d, 0x54, 0xbb, 0x5c, 0x9b, 0x5d, 0x3c, 0x76, 0x5f, 0x76, 0x1e, 0x7e, 0x1e, 0x75, 0xbd, 0x5c, 0x99, 0x5c, 0x99, 0x54, 0x99, 0x5c, 0x99, 0x54, 0x79, 0x54, 0x79, 0x54, 0x99, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0x98, 0x5c, 0x78, 0x5c, 0x78, 0x54, 0x57, 0x4c, 0x57, 0x54, 0x37, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xd6, 0x43, 0x75, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x33, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x0f, 0x22, 0x0f, 0x2a, 0x0f, 0x29, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x19, 0xae, 0x11, 0x8d, 0x19, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x32, 0x91, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0x96, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xd8, 0x4c, 0x18, 0x4c, 0x19, 0x4c, 0x59, 0x54, 0x7a, 0x54, 0xbb, 0x5c, 0xbc, 0x5c, 0xfd, 0x65, 0x3e, 0x6d, 0x5f, 0x75, 0x9f, 0x75, 0x9f, 0x6d, 0x7f, 0x6d, 0x5f, 0x6d, 0x3f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x1f, 0x64, 0xde, 0x64, 0xbe, 0x64, 0xdf, 0x64, 0xff, 0x6c, 0xff, 0x64, 0xbc, 0x4c, 0x18, 0x4b, 0xf7, 0x4b, 0xf8, 0x4b, 0xf7, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x18, 0x54, 0x39, 0x54, 0x39, 0x4b, 0xf9, 0x43, 0x76, 0x43, 0x96, 0x43, 0x97, 0x43, 0xb7, 0x4b, 0xd7, 0x4b, 0xf7, 0x54, 0x18, 0x75, 0x1b, 0x3a, 0xf3, 0x3a, 0xf3, 0x43, 0x13, 0x43, 0x33, 0x43, 0x33, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x43, 0x13, 0x43, 0x13, 0x3a, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x22, 0x10, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xae, 0x21, 0xef, 0x2a, 0x30, 0x2a, 0x10, 0x29, 0xef, 0x29, 0xef, 0x21, 0xef, + 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8e, 0x19, 0xae, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x6d, 0x09, 0x6d, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0xaf, 0x19, 0xcf, 0x21, 0xf0, 0x22, 0x10, 0x22, 0x31, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0x93, 0x2a, 0xb3, 0x2a, 0xf4, 0x33, 0x14, 0x33, 0x55, 0x3b, 0x96, 0x43, 0xb7, 0x4c, 0x18, 0x54, 0x79, 0x64, 0xfd, 0x6d, 0x9f, 0x86, 0x9f, 0x9f, 0xbe, 0xbf, 0xbe, 0xef, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xef, 0xbf, 0xd7, 0xbf, 0xb7, 0x9f, 0xaf, 0x1f, 0x9f, 0x1f, 0x9f, 0x1f, 0x97, 0x9f, 0x8f, 0x9e, 0x86, 0xbf, 0x75, 0xff, 0x75, 0x9f, 0x75, 0x7f, 0x6d, 0x9f, 0x75, 0xbf, 0x75, 0xbf, 0x75, 0xbf, 0x75, 0xbf, 0x75, 0xbf, 0x6d, 0x7f, 0x6d, 0x5e, 0x5c, 0xdb, 0x5c, 0xda, 0x65, 0x9d, 0x76, 0x1f, 0x76, 0x3e, 0x76, 0x7f, 0x6d, 0xbd, 0x5c, 0x9a, 0x5c, 0xba, 0x5c, 0x9a, 0x5c, 0xba, 0x54, 0x99, 0x54, 0x79, 0x54, 0xb9, 0x54, 0xb9, 0x5c, 0x98, 0x5c, 0x78, 0x5c, 0x98, 0x54, 0x98, 0x54, 0x78, 0x4c, 0x37, 0x4c, 0x37, 0x54, 0x37, 0x54, 0x37, 0x4b, 0xd6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x33, 0x13, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x10, 0x22, 0x0f, 0x21, 0xef, 0x22, 0x0f, 0x22, 0x0f, 0x21, 0xae, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x21, 0xef, 0x3a, 0xd3, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x35, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0x96, 0x43, 0xb6, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x39, 0x54, 0x5a, 0x54, 0x9b, 0x5c, 0xbc, 0x5c, 0xfd, 0x64, 0xfe, 0x65, 0x3f, 0x6d, 0x7f, 0x6d, 0x7f, 0x6d, 0x7f, 0x6d, 0x5f, 0x6d, 0x3f, 0x6d, 0x1f, 0x6d, 0x1f, 0x64, 0xde, 0x64, 0xbd, 0x64, 0xbd, 0x64, 0xbd, 0x64, 0xbe, 0x64, 0xde, 0x64, 0xff, 0x6c, 0xfe, 0x54, 0x59, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xf8, 0x4c, 0x18, 0x4c, 0x19, 0x54, 0x19, 0x43, 0x76, 0x43, 0x76, 0x43, 0x96, 0x43, 0xb7, 0x4b, 0xd7, 0x53, 0xf8, 0x6c, 0xfd, 0x3a, 0xf4, 0x3a, 0xd3, 0x3a, 0xf3, 0x43, 0x33, 0x43, 0x33, 0x43, 0x53, 0x4b, 0x33, 0x4b, 0x33, 0x43, 0x53, 0x43, 0x53, 0x43, 0x13, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x21, 0xf0, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x0f, 0x29, 0xef, 0x21, 0xef, 0x21, 0xef, + 0x21, 0xcf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x19, 0x8e, 0x11, 0x6d, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8e, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xf0, 0x22, 0x10, 0x22, 0x31, 0x22, 0x52, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xd3, 0x33, 0x14, 0x33, 0x35, 0x3b, 0x76, 0x3b, 0xb6, 0x43, 0xd7, 0x4c, 0x59, 0x5c, 0xbb, 0x65, 0x5e, 0x75, 0xff, 0x97, 0x3e, 0xaf, 0xbe, 0xdf, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xef, 0xbf, 0xcf, 0xbf, 0xb7, 0x9f, 0xa7, 0x1f, 0x9f, 0x3f, 0x97, 0x7f, 0x97, 0x7f, 0x86, 0xbf, 0x7e, 0x1f, 0x75, 0x9f, 0x75, 0x7f, 0x6d, 0x7f, 0x6d, 0xbf, 0x6d, 0xbf, 0x6d, 0x9f, 0x6d, 0x9f, 0x6d, 0x9f, 0x6d, 0x5f, 0x6d, 0x5f, 0x65, 0x1d, 0x5c, 0xda, 0x6d, 0xdd, 0x76, 0x3f, 0x76, 0x1e, 0x76, 0x1e, 0x6d, 0xbd, 0x5c, 0xbb, 0x5c, 0xdb, 0x5c, 0xba, 0x5c, 0xba, 0x5c, 0xba, 0x54, 0x79, 0x54, 0x99, 0x54, 0x99, 0x54, 0x99, 0x5c, 0xb8, 0x5c, 0xb8, 0x54, 0x98, 0x54, 0x78, 0x54, 0x58, 0x54, 0x38, 0x54, 0x57, 0x4c, 0x37, 0x4b, 0xd6, 0x43, 0x95, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x0f, 0x22, 0x0f, 0x22, 0x0f, 0x2a, 0x0f, 0x21, 0xce, 0x19, 0xad, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x09, 0x4c, 0x11, 0x6d, 0x22, 0x30, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x35, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xf7, 0x4c, 0x17, 0x4c, 0x38, 0x54, 0x59, 0x54, 0x7a, 0x5c, 0xbb, 0x5c, 0xdc, 0x65, 0x1e, 0x65, 0x5f, 0x6d, 0x7f, 0x6d, 0x7f, 0x6d, 0x9f, 0x75, 0x9f, 0x75, 0x7f, 0x6d, 0x5f, 0x6d, 0x1f, 0x6c, 0xff, 0x64, 0xde, 0x5c, 0xbd, 0x64, 0xbd, 0x64, 0xbd, 0x64, 0xdd, 0x64, 0xde, 0x64, 0xfe, 0x64, 0xde, 0x6c, 0xde, 0x64, 0xbb, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4c, 0x18, 0x54, 0x39, 0x43, 0x75, 0x3b, 0x55, 0x43, 0x76, 0x43, 0x96, 0x4b, 0xf8, 0x5c, 0x7a, 0x53, 0xf8, 0x3a, 0xf3, 0x32, 0xd3, 0x3a, 0xf3, 0x43, 0x13, 0x43, 0x33, 0x43, 0x53, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x53, 0x4b, 0x33, 0x43, 0x13, 0x43, 0x13, 0x32, 0xd3, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xef, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, + 0x21, 0xcf, 0x21, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x4c, 0x09, 0x4d, 0x09, 0x4c, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8e, 0x19, 0x8e, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x2c, 0x09, 0x4d, 0x09, 0x6d, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0xcf, 0x19, 0xef, 0x19, 0xf0, 0x22, 0x10, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0x93, 0x2a, 0xb3, 0x32, 0xf3, 0x33, 0x14, 0x3b, 0x55, 0x3b, 0x96, 0x43, 0xb7, 0x4c, 0x18, 0x54, 0x79, 0x5c, 0xfc, 0x6d, 0x9f, 0x86, 0x7f, 0x9f, 0x9e, 0xbf, 0xbe, 0xef, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xdf, 0xbf, 0xbf, 0xbe, 0xaf, 0x7f, 0x9f, 0x3f, 0x97, 0x3f, 0x8f, 0x1f, 0x8e, 0xff, 0x86, 0x3f, 0x75, 0xbf, 0x75, 0x9f, 0x6d, 0x7f, 0x6d, 0xbf, 0x6d, 0x9f, 0x6d, 0x7f, 0x6d, 0x7f, 0x6d, 0x7f, 0x6d, 0x5f, 0x6d, 0x5f, 0x6d, 0x3e, 0x5c, 0xfb, 0x6e, 0x3f, 0x6d, 0xfe, 0x75, 0xfe, 0x76, 0x3e, 0x6d, 0xde, 0x5c, 0xbc, 0x64, 0xfc, 0x5c, 0xba, 0x5c, 0xba, 0x5c, 0xba, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x99, 0x54, 0xb9, 0x54, 0xb9, 0x54, 0x98, 0x54, 0x98, 0x54, 0x78, 0x4c, 0x58, 0x54, 0x58, 0x54, 0x58, 0x4c, 0x17, 0x43, 0xd6, 0x43, 0xd6, 0x4b, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x75, 0x43, 0x74, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x0f, 0x21, 0xee, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8d, 0x19, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x19, 0x6d, 0x19, 0x6d, 0x11, 0x6d, 0x09, 0x2b, 0x11, 0x8d, 0x2a, 0x51, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x95, 0x4b, 0xb6, 0x53, 0xd6, 0x54, 0x17, 0x54, 0x38, 0x5c, 0x78, 0x5c, 0x9a, 0x64, 0xdb, 0x65, 0x1e, 0x6d, 0x5f, 0x75, 0x9f, 0x7d, 0xbf, 0x7d, 0xdf, 0x7d, 0xdf, 0x7d, 0xdf, 0x7d, 0xdf, 0x7d, 0xbf, 0x75, 0x7f, 0x6d, 0x3f, 0x64, 0xfe, 0x64, 0xbc, 0x5c, 0x9c, 0x5c, 0xbc, 0x64, 0xbd, 0x64, 0xbd, 0x64, 0xbd, 0x64, 0xbd, 0x64, 0xdd, 0x64, 0xdd, 0x6c, 0xdd, 0x4b, 0xd7, 0x4b, 0xd6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x54, 0x18, 0x4b, 0xb6, 0x43, 0x55, 0x3b, 0x75, 0x4b, 0xf8, 0x54, 0x18, 0x54, 0x18, 0x3b, 0x14, 0x32, 0xb2, 0x32, 0xd3, 0x3a, 0xd3, 0x3a, 0xf3, 0x3b, 0x13, 0x43, 0x33, 0x43, 0x53, 0x43, 0x33, 0x4b, 0x53, 0x43, 0x33, 0x43, 0x13, 0x3a, 0xf3, 0x32, 0xd2, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x32, 0x50, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x0f, 0x29, 0xef, 0x21, 0xef, 0x21, 0xcf, + 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6e, 0x19, 0xae, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x2c, 0x09, 0x4d, 0x09, 0x6d, 0x11, 0x6e, 0x11, 0xaf, 0x19, 0xcf, 0x19, 0xd0, 0x22, 0x10, 0x22, 0x31, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0xb3, 0x32, 0xd3, 0x33, 0x14, 0x33, 0x34, 0x3b, 0x55, 0x43, 0x96, 0x43, 0xd7, 0x4c, 0x18, 0x54, 0x9b, 0x65, 0x3d, 0x75, 0xdf, 0x8e, 0xff, 0xa7, 0xbd, 0xcf, 0xbe, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xdf, 0xbf, 0xbf, 0xbe, 0xa7, 0x7f, 0x9f, 0x1f, 0x97, 0x3f, 0x8e, 0xff, 0x86, 0xdf, 0x86, 0x5f, 0x75, 0xbf, 0x75, 0x7f, 0x6d, 0x7f, 0x6d, 0x9f, 0x6d, 0x9f, 0x6d, 0x7f, 0x6d, 0x7f, 0x6d, 0x5f, 0x65, 0x3f, 0x6d, 0x5f, 0x6d, 0x5f, 0x6d, 0x9e, 0x6d, 0xde, 0x75, 0xde, 0x75, 0xfe, 0x6e, 0x1f, 0x6d, 0x9e, 0x64, 0xdc, 0x64, 0xfd, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xba, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x99, 0x54, 0xb9, 0x54, 0xb9, 0x54, 0x99, 0x54, 0x78, 0x54, 0x58, 0x54, 0x78, 0x4c, 0x37, 0x43, 0xb6, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x55, 0x43, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0x0f, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6c, 0x09, 0x4c, 0x19, 0xad, 0x2a, 0x50, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x54, 0x43, 0x75, 0x4b, 0x95, 0x4b, 0xb6, 0x53, 0xf6, 0x5c, 0x17, 0x64, 0x58, 0x64, 0xba, 0x64, 0xfc, 0x6d, 0x5e, 0x75, 0x9f, 0x7e, 0x1f, 0x86, 0x7f, 0x8e, 0xbf, 0x8e, 0xff, 0x8e, 0xff, 0x8e, 0x9f, 0x8e, 0x3f, 0x85, 0xff, 0x7d, 0x9f, 0x6d, 0x3f, 0x64, 0xde, 0x5c, 0x9c, 0x5c, 0x9b, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0xbc, 0x64, 0xbc, 0x64, 0xbc, 0x64, 0xbc, 0x64, 0xbd, 0x64, 0xbd, 0x4b, 0xd7, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xd7, 0x53, 0xf7, 0x43, 0x75, 0x4b, 0xd7, 0x4c, 0x38, 0x43, 0x96, 0x43, 0x75, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x43, 0x13, 0x43, 0x13, 0x43, 0x13, 0x3a, 0xf3, 0x3a, 0xd2, 0x32, 0xb2, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x29, 0xf0, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x32, 0x71, 0x32, 0x91, 0x32, 0x51, 0x32, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x29, 0xef, 0x29, 0xef, 0x21, 0xef, + 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x6d, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8e, 0x19, 0x8e, 0x09, 0x4c, 0x09, 0x2b, 0x09, 0x2c, 0x09, 0x4d, 0x11, 0x6d, 0x11, 0x8e, 0x11, 0xcf, 0x19, 0xcf, 0x19, 0xf0, 0x22, 0x30, 0x22, 0x51, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0xd3, 0x32, 0xf3, 0x33, 0x14, 0x3b, 0x54, 0x3b, 0x75, 0x43, 0xb6, 0x43, 0xd7, 0x4c, 0x39, 0x5c, 0xbc, 0x6d, 0x3e, 0x7d, 0xff, 0x8f, 0x5f, 0xaf, 0xbe, 0xd7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xdf, 0xbf, 0xb7, 0xbe, 0xa7, 0x9f, 0x9f, 0x3f, 0x96, 0xff, 0x8e, 0xdf, 0x86, 0xdf, 0x86, 0x1f, 0x7d, 0xbf, 0x6d, 0x9f, 0x6d, 0x7f, 0x6d, 0x7f, 0x65, 0x5f, 0x65, 0x5f, 0x65, 0x5f, 0x65, 0x5f, 0x65, 0x1f, 0x65, 0x3f, 0x6d, 0x5f, 0x75, 0xbf, 0x6d, 0xfe, 0x6d, 0xff, 0x6d, 0xff, 0x75, 0xde, 0x6d, 0xbe, 0x64, 0xfd, 0x65, 0x1e, 0x64, 0xfd, 0x5c, 0xdb, 0x5c, 0xdb, 0x5c, 0xbb, 0x54, 0x9a, 0x54, 0xba, 0x54, 0xba, 0x54, 0xba, 0x54, 0x99, 0x54, 0x99, 0x54, 0x99, 0x54, 0x99, 0x54, 0x98, 0x54, 0x78, 0x4c, 0x17, 0x43, 0xd7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x74, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x10, 0x21, 0xcf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x11, 0x6d, 0x11, 0x4c, 0x11, 0x8d, 0x2a, 0x10, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x54, 0x43, 0x95, 0x4b, 0xb5, 0x53, 0xd6, 0x5c, 0x17, 0x64, 0x58, 0x64, 0xb9, 0x6d, 0x1c, 0x7d, 0x9f, 0x85, 0xff, 0x96, 0x9f, 0x9f, 0x5f, 0xa7, 0xbe, 0xaf, 0xbe, 0xaf, 0xbe, 0xa7, 0xbe, 0x9f, 0x3f, 0x96, 0xbf, 0x86, 0x3f, 0x75, 0x5f, 0x6d, 0x1f, 0x64, 0xdd, 0x5c, 0x9c, 0x5c, 0x9b, 0x54, 0x9b, 0x5c, 0x7b, 0x5c, 0x9b, 0x5c, 0x9c, 0x64, 0xbc, 0x64, 0x9c, 0x64, 0xbc, 0x5c, 0x9b, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0xb6, 0x4b, 0xb6, 0x4b, 0xd7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf8, 0x43, 0x76, 0x32, 0xd3, 0x2a, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf3, 0x3a, 0xd3, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x22, 0x10, 0x21, 0xf0, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x29, 0xf0, 0x21, 0xef, + 0x21, 0xaf, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x6d, 0x11, 0x6e, 0x19, 0x8e, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x4d, 0x11, 0x6d, 0x11, 0x8e, 0x11, 0xae, 0x19, 0xcf, 0x19, 0xcf, 0x22, 0x10, 0x22, 0x31, 0x22, 0x51, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xf3, 0x33, 0x14, 0x33, 0x34, 0x3b, 0x55, 0x43, 0x95, 0x43, 0xd6, 0x43, 0xf8, 0x54, 0x59, 0x5c, 0xdc, 0x6d, 0x7f, 0x86, 0x3f, 0x97, 0x5f, 0xb7, 0xbe, 0xd7, 0xbf, 0xef, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xf7, 0xbf, 0xef, 0xbf, 0xcf, 0xbe, 0xb7, 0xbe, 0xa7, 0xbe, 0x97, 0x5f, 0x8e, 0xdf, 0x8e, 0xbf, 0x86, 0x9f, 0x86, 0x1f, 0x7d, 0xdf, 0x75, 0x7f, 0x6d, 0x5f, 0x65, 0x7f, 0x65, 0x5f, 0x65, 0x5f, 0x65, 0x5f, 0x65, 0x3f, 0x65, 0x1f, 0x6d, 0x3f, 0x6d, 0x3f, 0x75, 0xbf, 0x75, 0xdf, 0x65, 0xbe, 0x6d, 0xde, 0x6d, 0xde, 0x75, 0x9e, 0x65, 0x1e, 0x65, 0x3e, 0x65, 0x1e, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbb, 0x54, 0x9a, 0x54, 0xba, 0x54, 0xba, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0xba, 0x54, 0x99, 0x54, 0x99, 0x54, 0x78, 0x54, 0x78, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x50, 0x2a, 0x30, 0x22, 0x0f, 0x21, 0xcf, 0x21, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x11, 0x4c, 0x19, 0xae, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x29, 0xf0, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xef, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x52, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x33, 0x14, 0x3b, 0x54, 0x43, 0x95, 0x4b, 0xb5, 0x53, 0xf6, 0x5c, 0x37, 0x64, 0x99, 0x6d, 0x1b, 0x7d, 0x9e, 0x86, 0x1f, 0x96, 0xff, 0xa7, 0x9e, 0xb7, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xb7, 0xbe, 0xaf, 0xbe, 0x9f, 0x1f, 0x8e, 0x1f, 0x7d, 0x7f, 0x6d, 0x1f, 0x64, 0xdd, 0x5c, 0x7b, 0x54, 0x7b, 0x54, 0x5a, 0x54, 0x7b, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0xbc, 0x64, 0xbc, 0x43, 0xb6, 0x3b, 0x75, 0x43, 0xb6, 0x4b, 0xf7, 0x4c, 0x17, 0x4b, 0xf7, 0x43, 0xd7, 0x43, 0x55, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x91, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x91, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x0f, 0x21, 0xcf, + 0x19, 0xaf, 0x19, 0x8e, 0x19, 0x6e, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x6e, 0x19, 0x6e, 0x11, 0x6e, 0x11, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0xae, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x4d, 0x11, 0x6e, 0x11, 0x8e, 0x19, 0xae, 0x19, 0xcf, 0x1a, 0x0f, 0x22, 0x10, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0xb2, 0x2a, 0xd3, 0x33, 0x13, 0x33, 0x34, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xd7, 0x4c, 0x18, 0x54, 0x7a, 0x5c, 0xdd, 0x75, 0x9f, 0x86, 0x3f, 0x97, 0x5f, 0xaf, 0xbe, 0xc7, 0xbe, 0xdf, 0xbf, 0xe7, 0xbf, 0xdf, 0xbf, 0xd7, 0xbf, 0xbf, 0xbe, 0xaf, 0xbe, 0x9f, 0x9e, 0x97, 0x5f, 0x8e, 0xdf, 0x86, 0xbf, 0x86, 0x7f, 0x7d, 0xff, 0x7d, 0xbf, 0x75, 0x9f, 0x6d, 0x5f, 0x6d, 0x7f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x1f, 0x65, 0x3f, 0x6d, 0x7e, 0x75, 0xdf, 0x75, 0xbf, 0x6d, 0xbe, 0x6d, 0xbe, 0x6d, 0xde, 0x6d, 0xbe, 0x6d, 0x1e, 0x65, 0x3f, 0x65, 0x1e, 0x65, 0x1d, 0x5c, 0xdc, 0x5c, 0xdc, 0x54, 0xbb, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0xba, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0xb9, 0x54, 0xb9, 0x54, 0x99, 0x54, 0x58, 0x4c, 0x18, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb5, 0x43, 0xb5, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x30, 0x21, 0xef, 0x21, 0xef, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8d, 0x11, 0x6c, 0x19, 0xae, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x10, 0x29, 0xf0, 0x29, 0xf0, 0x29, 0xf0, 0x29, 0xf0, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0xf4, 0x3b, 0x54, 0x3b, 0x95, 0x43, 0xd6, 0x54, 0x17, 0x5c, 0x78, 0x64, 0xfa, 0x75, 0x7e, 0x86, 0x1f, 0x97, 0x1f, 0xa7, 0x9e, 0xbf, 0xbe, 0xd7, 0xbf, 0xdf, 0xbf, 0xe7, 0xbf, 0xd7, 0xbf, 0xc7, 0xbe, 0xaf, 0xbe, 0x96, 0x9f, 0x85, 0xff, 0x7d, 0x9f, 0x6d, 0x1f, 0x5c, 0x9c, 0x5c, 0x5a, 0x54, 0x5a, 0x54, 0x39, 0x54, 0x5a, 0x54, 0x7a, 0x54, 0x5b, 0x54, 0x5b, 0x54, 0x5b, 0x5c, 0x7b, 0x5c, 0x7b, 0x43, 0x96, 0x43, 0xb6, 0x4b, 0xd7, 0x4c, 0x17, 0x4b, 0xd7, 0x43, 0x96, 0x32, 0xd3, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x21, 0xf0, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xcf, 0x21, 0xcf, + 0x19, 0xae, 0x19, 0x8e, 0x11, 0x6d, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x11, 0x4c, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x8e, 0x19, 0x6e, 0x19, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x6d, 0x11, 0x8e, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xcf, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x51, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xf3, 0x33, 0x13, 0x3b, 0x34, 0x3b, 0x54, 0x3b, 0x75, 0x3b, 0x96, 0x43, 0xd7, 0x4c, 0x18, 0x54, 0x7a, 0x64, 0xdd, 0x75, 0x7f, 0x86, 0x3f, 0x8f, 0x3f, 0xa7, 0x9d, 0xb7, 0xbe, 0xbf, 0xbe, 0xbf, 0xbe, 0xb7, 0xbe, 0xaf, 0xbe, 0xa7, 0xbd, 0x97, 0x9e, 0x8f, 0x3f, 0x86, 0x9f, 0x86, 0x7f, 0x7e, 0x3f, 0x7d, 0xff, 0x75, 0xbf, 0x75, 0x9f, 0x65, 0x5f, 0x65, 0x3f, 0x65, 0x5f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x1f, 0x65, 0x3f, 0x6d, 0x9f, 0x6d, 0xbf, 0x75, 0xbe, 0x6d, 0xbe, 0x6d, 0xbe, 0x6d, 0xdf, 0x6d, 0x7e, 0x6d, 0x3e, 0x6d, 0x7f, 0x65, 0x3f, 0x65, 0x1e, 0x5c, 0xfc, 0x5c, 0xdc, 0x5c, 0xbc, 0x54, 0xba, 0x4c, 0xba, 0x54, 0x9a, 0x54, 0xba, 0x54, 0x9a, 0x54, 0xba, 0x54, 0x9a, 0x54, 0x9a, 0x54, 0x79, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x13, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x91, 0x2a, 0x71, 0x22, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0xad, 0x19, 0xad, 0x11, 0x6d, 0x19, 0x8e, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xef, 0x29, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xf0, 0x21, 0xf0, 0x22, 0x10, 0x22, 0x30, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xf4, 0x33, 0x34, 0x3b, 0x75, 0x43, 0xd6, 0x54, 0x37, 0x5c, 0x99, 0x6d, 0x3c, 0x7d, 0xdf, 0x8e, 0xbf, 0x9f, 0x9e, 0xaf, 0xbe, 0xc7, 0xbe, 0xef, 0xbf, 0xf7, 0xbf, 0xef, 0xbf, 0xd7, 0xbe, 0xbf, 0xbe, 0xa7, 0x3f, 0x8e, 0x5f, 0x7d, 0x9f, 0x6d, 0x1e, 0x64, 0xbd, 0x5c, 0x7b, 0x54, 0x39, 0x4c, 0x39, 0x4c, 0x19, 0x54, 0x19, 0x54, 0x3a, 0x54, 0x3a, 0x54, 0x3a, 0x54, 0x3a, 0x5c, 0x5a, 0x5c, 0x7b, 0x43, 0xd7, 0x43, 0xb6, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x76, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0x10, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x22, 0x10, 0x21, 0xef, 0x21, 0xf0, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x21, 0xcf, 0x21, 0xaf, + 0x19, 0x8e, 0x19, 0x8d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6e, 0x19, 0x8e, 0x19, 0xaf, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0xae, 0x19, 0xaf, 0x19, 0xcf, 0x21, 0xf0, 0x11, 0x8e, 0x11, 0x8d, 0x09, 0x4d, 0x11, 0x8e, 0x19, 0xae, 0x19, 0xcf, 0x19, 0xef, 0x22, 0x10, 0x22, 0x31, 0x2a, 0x71, 0x2a, 0xb2, 0x2a, 0xd2, 0x33, 0x13, 0x3b, 0x34, 0x43, 0x54, 0x43, 0x75, 0x43, 0xb6, 0x43, 0xd7, 0x4c, 0x18, 0x54, 0x3a, 0x5c, 0xbc, 0x65, 0x1e, 0x75, 0x9f, 0x7e, 0x1f, 0x8e, 0xff, 0xa7, 0xde, 0xa7, 0xbd, 0xa7, 0x9d, 0xa7, 0x9d, 0x9f, 0x9d, 0x97, 0x9e, 0x8f, 0x5f, 0x86, 0xbf, 0x86, 0x3f, 0x7e, 0x3f, 0x7d, 0xff, 0x7d, 0x9f, 0x75, 0x9f, 0x75, 0x7f, 0x6d, 0x5f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x1f, 0x6d, 0x3f, 0x6d, 0xbf, 0x6d, 0xbf, 0x6d, 0xbf, 0x75, 0xbf, 0x6d, 0xbf, 0x6d, 0xbe, 0x6d, 0x7e, 0x6d, 0x3e, 0x6d, 0x7f, 0x65, 0x3f, 0x65, 0x3e, 0x5c, 0xfd, 0x5c, 0xdd, 0x5c, 0xdc, 0x54, 0xbb, 0x4c, 0x9a, 0x54, 0x9b, 0x54, 0xbb, 0x54, 0xba, 0x54, 0xba, 0x54, 0xba, 0x54, 0xba, 0x54, 0x99, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x13, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x51, 0x22, 0x10, 0x22, 0x10, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x19, 0xae, 0x19, 0xad, 0x19, 0x8d, 0x22, 0x0f, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x10, 0x2a, 0x10, 0x29, 0xf0, 0x29, 0xef, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x22, 0x10, 0x22, 0x10, 0x22, 0x31, 0x22, 0x51, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0x93, 0x2a, 0xd3, 0x33, 0x14, 0x3b, 0x55, 0x43, 0xb6, 0x54, 0x38, 0x5c, 0xba, 0x6d, 0x3d, 0x7d, 0xdf, 0x8e, 0xdf, 0x9f, 0x9e, 0xb7, 0xbe, 0xdf, 0xbf, 0xef, 0xbf, 0xef, 0xbf, 0xdf, 0xbf, 0xc7, 0xbe, 0xa7, 0x9f, 0x96, 0xbf, 0x85, 0xff, 0x75, 0x5f, 0x64, 0xbc, 0x54, 0x5a, 0x4c, 0x18, 0x4b, 0xf8, 0x43, 0xd8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4c, 0x18, 0x54, 0x39, 0x5c, 0x7c, 0x54, 0x3a, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0xb6, 0x32, 0xf3, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xaf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x29, 0xef, 0x21, 0xcf, 0x19, 0xae, + 0x19, 0x8e, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x4c, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x6e, 0x11, 0x8e, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xaf, 0x19, 0xcf, 0x21, 0xf0, 0x19, 0xcf, 0x19, 0xcf, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0xaf, 0x19, 0xef, 0x19, 0xef, 0x22, 0x10, 0x2a, 0x31, 0x2a, 0x92, 0x32, 0xf3, 0x33, 0x14, 0x3b, 0x34, 0x43, 0x55, 0x4b, 0x95, 0x4b, 0xb6, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x19, 0x54, 0x7b, 0x64, 0xfe, 0x6d, 0x5f, 0x75, 0x7f, 0x86, 0x3f, 0x97, 0x5f, 0x97, 0x7e, 0x9f, 0x9f, 0x9f, 0xbd, 0x97, 0x9e, 0x8f, 0x1f, 0x86, 0x9f, 0x7e, 0x1f, 0x7d, 0xff, 0x7d, 0xff, 0x7d, 0xdf, 0x75, 0x9f, 0x75, 0x5f, 0x6d, 0x5f, 0x6d, 0x5f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x64, 0xff, 0x65, 0x5e, 0x6d, 0xbf, 0x6d, 0x9f, 0x6d, 0x9f, 0x6d, 0x7f, 0x6d, 0x9f, 0x65, 0xbe, 0x65, 0x7e, 0x6d, 0x3e, 0x75, 0x7f, 0x65, 0x3f, 0x65, 0x3e, 0x5c, 0xfe, 0x5c, 0xdd, 0x5c, 0xdd, 0x54, 0xbb, 0x54, 0xdb, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xbb, 0x54, 0xdb, 0x54, 0xdb, 0x54, 0xba, 0x54, 0x9a, 0x54, 0x59, 0x54, 0x39, 0x54, 0x59, 0x54, 0x38, 0x4c, 0x18, 0x4c, 0x18, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x13, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xd2, 0x32, 0xb2, 0x2a, 0x91, 0x2a, 0x31, 0x2a, 0x30, 0x22, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xce, 0x19, 0xae, 0x11, 0x6d, 0x22, 0x0f, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x31, 0x22, 0x51, 0x22, 0x52, 0x2a, 0x92, 0x2a, 0xd3, 0x33, 0x14, 0x3b, 0x55, 0x43, 0xb6, 0x4c, 0x38, 0x5c, 0x9a, 0x6d, 0x3e, 0x7d, 0xdf, 0x8e, 0xbf, 0xa7, 0x7e, 0xbf, 0xbe, 0xcf, 0xbe, 0xcf, 0xbf, 0xcf, 0xbf, 0xbf, 0xbe, 0xaf, 0x9f, 0x96, 0xdf, 0x86, 0x1f, 0x75, 0x7f, 0x64, 0xfd, 0x5c, 0x7a, 0x54, 0x18, 0x4b, 0xf7, 0x43, 0xd7, 0x43, 0xb7, 0x43, 0xd7, 0x4b, 0xb7, 0x4b, 0x97, 0x4b, 0xd8, 0x4c, 0x19, 0x54, 0x19, 0x5c, 0x7b, 0x4b, 0xd8, 0x3b, 0x76, 0x3b, 0xb6, 0x32, 0xb2, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xef, 0x21, 0xf0, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x0f, 0x2a, 0x0f, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xae, + 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x6d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x8e, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0x8f, 0x19, 0xaf, 0x11, 0xaf, 0x11, 0xaf, 0x19, 0xcf, 0x19, 0xf0, 0x21, 0xf0, 0x19, 0xcf, 0x22, 0x10, 0x19, 0xcf, 0x11, 0xae, 0x11, 0xcf, 0x19, 0xef, 0x22, 0x10, 0x22, 0x31, 0x2a, 0x72, 0x2a, 0xb3, 0x32, 0xf3, 0x3b, 0x34, 0x43, 0x54, 0x43, 0x75, 0x4b, 0x95, 0x43, 0xb6, 0x43, 0xf7, 0x43, 0xf8, 0x4c, 0x19, 0x54, 0x9c, 0x5c, 0xde, 0x65, 0x3f, 0x6d, 0x7f, 0x7e, 0x3f, 0x86, 0x5f, 0x86, 0x7f, 0x8e, 0xdf, 0x8f, 0x1f, 0x8f, 0x1f, 0x8e, 0xdf, 0x86, 0x5f, 0x75, 0xbf, 0x75, 0xbf, 0x75, 0x9f, 0x75, 0x7f, 0x75, 0x5f, 0x6d, 0x3f, 0x6d, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x9f, 0x65, 0x9f, 0x6d, 0x9f, 0x6d, 0x7f, 0x6d, 0x9f, 0x6d, 0x9e, 0x6d, 0xbf, 0x65, 0x7e, 0x65, 0x1e, 0x6d, 0x9f, 0x65, 0x5f, 0x65, 0x3f, 0x5c, 0xfe, 0x5c, 0xde, 0x54, 0xfd, 0x54, 0xdc, 0x54, 0xdb, 0x54, 0xbb, 0x54, 0xdc, 0x54, 0xdb, 0x54, 0xdb, 0x5c, 0xbb, 0x5c, 0xdb, 0x54, 0xba, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x54, 0x59, 0x4c, 0x38, 0x4c, 0x17, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x54, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x33, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xd2, 0x2a, 0x92, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x0f, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x19, 0x8e, 0x2a, 0x0f, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0x0f, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x6d, 0x11, 0x8d, 0x19, 0x6d, 0x19, 0x6d, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xef, 0x19, 0xf0, 0x22, 0x10, 0x22, 0x31, 0x22, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x33, 0x14, 0x3b, 0x55, 0x43, 0x96, 0x4c, 0x18, 0x5c, 0x7a, 0x6d, 0x1d, 0x7d, 0xbf, 0x9f, 0x3f, 0xaf, 0xbe, 0xb7, 0xbe, 0xb7, 0xbe, 0xb7, 0xbe, 0xb7, 0xde, 0xa7, 0x1f, 0x96, 0x7f, 0x85, 0xdf, 0x75, 0x5f, 0x64, 0xdd, 0x5c, 0x7a, 0x54, 0x18, 0x4b, 0xd7, 0x43, 0xb7, 0x43, 0x97, 0x43, 0x97, 0x43, 0x76, 0x43, 0x97, 0x4b, 0xb7, 0x4b, 0xd8, 0x4b, 0xf8, 0x4b, 0xf8, 0x5c, 0x7b, 0x3b, 0x96, 0x33, 0x14, 0x2a, 0x71, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xaf, 0x19, 0xaf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xaf, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x0f, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xae, 0x19, 0x8e, + 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4d, 0x09, 0x4d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0x8f, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x11, 0xaf, 0x19, 0xcf, 0x21, 0xf0, 0x19, 0xef, 0x19, 0xf0, 0x21, 0xf0, 0x19, 0xef, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xf0, 0x22, 0x10, 0x22, 0x51, 0x2a, 0x92, 0x32, 0xd3, 0x33, 0x34, 0x3b, 0x34, 0x43, 0x55, 0x43, 0x75, 0x43, 0x96, 0x43, 0xb7, 0x43, 0xb7, 0x43, 0xd8, 0x4c, 0x19, 0x54, 0x7b, 0x5c, 0xbe, 0x64, 0xff, 0x6d, 0x7f, 0x75, 0x9f, 0x7d, 0xdf, 0x7e, 0x1f, 0x7e, 0x3f, 0x7e, 0x3f, 0x7e, 0x1f, 0x7e, 0x3f, 0x7e, 0x3f, 0x7e, 0x1f, 0x75, 0xbf, 0x6d, 0x5f, 0x6d, 0x3f, 0x6d, 0x1f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x1f, 0x64, 0xff, 0x64, 0xff, 0x64, 0xff, 0x65, 0x1e, 0x65, 0x9f, 0x65, 0x7f, 0x65, 0x7e, 0x65, 0x7f, 0x6d, 0x7f, 0x6d, 0x7f, 0x65, 0x9e, 0x65, 0x7e, 0x65, 0x1e, 0x6d, 0x5f, 0x6d, 0x5f, 0x65, 0x5f, 0x5d, 0x1e, 0x5c, 0xde, 0x5c, 0xde, 0x54, 0xdd, 0x54, 0xdc, 0x54, 0xdc, 0x54, 0xdc, 0x54, 0xdb, 0x54, 0xdb, 0x54, 0xdc, 0x5c, 0xdb, 0x5c, 0xdb, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x7a, 0x54, 0x59, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x18, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x54, 0x3b, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x33, 0x13, 0x32, 0xf3, 0x32, 0xd2, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xef, 0x32, 0x91, 0x32, 0xb2, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xf0, 0x1a, 0x10, 0x22, 0x31, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0xb3, 0x32, 0xf3, 0x33, 0x34, 0x43, 0x96, 0x4b, 0xf7, 0x54, 0x59, 0x6d, 0x1c, 0x86, 0x1f, 0x8e, 0x9f, 0x96, 0xff, 0x9f, 0x3f, 0xa7, 0x7f, 0xa7, 0x9f, 0x96, 0x5f, 0x85, 0xdf, 0x7d, 0x9f, 0x75, 0x3f, 0x64, 0xdc, 0x5c, 0x59, 0x53, 0xf8, 0x4b, 0xb7, 0x43, 0xb7, 0x43, 0x96, 0x3b, 0x76, 0x3b, 0x76, 0x43, 0x97, 0x43, 0xb7, 0x43, 0xb7, 0x4b, 0xb7, 0x4b, 0xd8, 0x53, 0xf8, 0x54, 0x39, 0x32, 0xd3, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x10, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xaf, 0x21, 0xaf, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xae, 0x21, 0xf0, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x0f, 0x21, 0xef, 0x21, 0xae, 0x19, 0x8e, 0x11, 0x6d, + 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4c, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4d, 0x09, 0x4d, 0x09, 0x6d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x8e, 0x19, 0x8f, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x11, 0xcf, 0x19, 0xcf, 0x21, 0xcf, 0x11, 0x8e, 0x19, 0x8e, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xf0, 0x22, 0x31, 0x22, 0x51, 0x2a, 0x92, 0x32, 0xd3, 0x33, 0x14, 0x3b, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0xb6, 0x3b, 0xb7, 0x43, 0xb7, 0x43, 0xf8, 0x4c, 0x39, 0x54, 0x5b, 0x5c, 0xbe, 0x65, 0x1f, 0x6d, 0x5f, 0x6d, 0x7f, 0x6d, 0x9f, 0x75, 0xbf, 0x75, 0xbf, 0x75, 0xdf, 0x75, 0xdf, 0x75, 0xdf, 0x75, 0xdf, 0x7d, 0xdf, 0x75, 0xbf, 0x75, 0x5f, 0x6c, 0xff, 0x64, 0xff, 0x5c, 0xff, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0xfe, 0x65, 0x1e, 0x65, 0x7f, 0x65, 0x7e, 0x65, 0x7f, 0x65, 0x5f, 0x6d, 0x7f, 0x6d, 0x7f, 0x6d, 0x7f, 0x65, 0x7e, 0x65, 0x7e, 0x65, 0x1e, 0x65, 0x5f, 0x6d, 0x5f, 0x65, 0x3f, 0x65, 0x1e, 0x5c, 0xdf, 0x5c, 0xfe, 0x5c, 0xdd, 0x54, 0xdc, 0x54, 0xdc, 0x54, 0xfd, 0x54, 0xfc, 0x54, 0xdc, 0x54, 0xdc, 0x5d, 0x1c, 0x5c, 0xdc, 0x5c, 0x9b, 0x5c, 0xbb, 0x5c, 0x9b, 0x5c, 0x9b, 0x5c, 0x7a, 0x54, 0x79, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x38, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x75, 0x43, 0x75, 0x43, 0x74, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd2, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x30, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x10, 0x21, 0xef, 0x2a, 0x71, 0x32, 0xd2, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0xae, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xef, 0x19, 0xf0, 0x22, 0x10, 0x22, 0x31, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xd3, 0x33, 0x14, 0x3b, 0x55, 0x43, 0xb6, 0x5c, 0x9b, 0x75, 0x3e, 0x7d, 0x7f, 0x7d, 0xbf, 0x85, 0xff, 0x86, 0x1f, 0x8e, 0x1f, 0x85, 0xbf, 0x7d, 0x9f, 0x75, 0x5f, 0x6c, 0xfe, 0x64, 0xbc, 0x5c, 0x5a, 0x54, 0x18, 0x4b, 0xb7, 0x43, 0x96, 0x3b, 0x56, 0x3b, 0x55, 0x43, 0x76, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x97, 0x43, 0xb7, 0x4b, 0xd7, 0x53, 0xf8, 0x3b, 0x14, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x22, 0x10, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0xcf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xcf, 0x19, 0x8e, 0x11, 0x8d, 0x11, 0x6d, + 0x11, 0x6d, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x2c, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x2d, 0x09, 0x4d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x8e, 0x19, 0x8e, 0x19, 0xcf, 0x19, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x11, 0x8e, 0x09, 0x6d, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0xae, 0x19, 0xcf, 0x19, 0xf0, 0x21, 0xf0, 0x19, 0xd0, 0x19, 0xf0, 0x22, 0x31, 0x2a, 0x72, 0x2a, 0xb3, 0x32, 0xd4, 0x33, 0x34, 0x3b, 0x55, 0x3b, 0x75, 0x3b, 0x96, 0x3b, 0x96, 0x3b, 0x97, 0x3b, 0xb7, 0x43, 0xf8, 0x4c, 0x19, 0x54, 0x5b, 0x5c, 0xbd, 0x5c, 0xff, 0x65, 0x1f, 0x6d, 0x3f, 0x6d, 0x7f, 0x6d, 0x7f, 0x6d, 0x7f, 0x75, 0x9f, 0x75, 0xbf, 0x75, 0xbf, 0x75, 0x9f, 0x75, 0x7f, 0x75, 0x7f, 0x75, 0x7f, 0x6d, 0x3f, 0x5c, 0xde, 0x5c, 0xfe, 0x64, 0xfe, 0x5c, 0xfe, 0x5d, 0x3e, 0x5d, 0x5f, 0x65, 0x5f, 0x65, 0x5f, 0x65, 0x5f, 0x65, 0x7f, 0x6d, 0x7f, 0x6d, 0x5f, 0x6d, 0x7e, 0x65, 0x7e, 0x65, 0x1f, 0x65, 0x1f, 0x6d, 0x5f, 0x65, 0x3f, 0x65, 0x1f, 0x5c, 0xde, 0x5c, 0xff, 0x5c, 0xde, 0x54, 0xfd, 0x54, 0xfd, 0x54, 0xdc, 0x54, 0xdc, 0x5c, 0xfd, 0x5d, 0x1d, 0x5c, 0xfc, 0x64, 0xfc, 0x5c, 0xdd, 0x5c, 0xdc, 0x5c, 0xdc, 0x5c, 0xbc, 0x5c, 0x9b, 0x5c, 0x9a, 0x5c, 0x99, 0x54, 0x79, 0x54, 0x38, 0x54, 0x38, 0x54, 0x17, 0x4c, 0x17, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x34, 0x32, 0xf3, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x22, 0x10, 0x2a, 0x30, 0x32, 0xb2, 0x32, 0xd3, 0x2a, 0x92, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0x8e, 0x19, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x4d, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4d, 0x09, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0xaf, 0x11, 0xaf, 0x19, 0xcf, 0x19, 0xf0, 0x1a, 0x10, 0x22, 0x31, 0x22, 0x72, 0x2a, 0x72, 0x2a, 0xb3, 0x32, 0xf4, 0x33, 0x14, 0x5c, 0x7a, 0x64, 0xbc, 0x64, 0xdd, 0x6c, 0xfd, 0x6d, 0x1e, 0x75, 0x3f, 0x75, 0x5f, 0x75, 0x3f, 0x6c, 0xfd, 0x6c, 0xdc, 0x64, 0x9b, 0x5c, 0x59, 0x54, 0x18, 0x4b, 0xd8, 0x4b, 0xd7, 0x43, 0xb7, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x76, 0x43, 0x76, 0x43, 0x76, 0x43, 0x97, 0x4b, 0xb7, 0x32, 0xd3, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xef, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x11, 0x8e, 0x19, 0xaf, 0x21, 0xef, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x10, 0x29, 0xf0, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xcf, 0x19, 0xae, 0x11, 0x8e, 0x11, 0x6d, 0x11, 0x6d, + 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x2c, 0x11, 0x4d, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0xaf, 0x19, 0xcf, 0x19, 0xcf, 0x11, 0x8e, 0x19, 0xcf, 0x11, 0xaf, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0xaf, 0x19, 0xd0, 0x22, 0x10, 0x22, 0x31, 0x22, 0x31, 0x22, 0x31, 0x2a, 0x52, 0x2a, 0x93, 0x2a, 0xd3, 0x32, 0xf4, 0x33, 0x34, 0x33, 0x35, 0x3b, 0x75, 0x3b, 0x76, 0x3b, 0x97, 0x43, 0xb7, 0x43, 0xb8, 0x43, 0xd8, 0x4c, 0x39, 0x54, 0x7b, 0x54, 0x9d, 0x5c, 0xdf, 0x64, 0xff, 0x65, 0x1f, 0x6d, 0x5f, 0x6d, 0x5f, 0x6d, 0x5f, 0x6d, 0x7f, 0x6d, 0x7f, 0x6d, 0x5f, 0x6d, 0x5f, 0x6d, 0x5f, 0x6d, 0x5f, 0x6d, 0x3f, 0x6d, 0x3e, 0x5c, 0xdd, 0x5c, 0xbd, 0x5c, 0xdd, 0x5d, 0x5f, 0x5d, 0x5f, 0x5d, 0x3f, 0x65, 0x5f, 0x65, 0x5f, 0x65, 0x5f, 0x6d, 0x5f, 0x6d, 0x5f, 0x65, 0x7f, 0x65, 0x7e, 0x65, 0x3e, 0x65, 0x1f, 0x65, 0x3f, 0x65, 0x5f, 0x65, 0x3f, 0x5c, 0xff, 0x5c, 0xde, 0x54, 0xde, 0x54, 0xdd, 0x54, 0xfd, 0x54, 0xfd, 0x54, 0xfd, 0x5c, 0xfd, 0x5d, 0x1d, 0x5d, 0x1d, 0x65, 0x3e, 0x64, 0xfe, 0x64, 0xfe, 0x64, 0xfd, 0x64, 0xfd, 0x5c, 0xdd, 0x5c, 0xbb, 0x5c, 0x9a, 0x5c, 0x7a, 0x5c, 0x79, 0x54, 0x58, 0x54, 0x38, 0x54, 0x18, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x54, 0x33, 0x13, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x30, 0x32, 0xb2, 0x32, 0xf4, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x10, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xae, 0x19, 0xae, 0x19, 0x6e, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4d, 0x09, 0x6d, 0x09, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0xaf, 0x11, 0xcf, 0x19, 0xf0, 0x19, 0xf0, 0x22, 0x10, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x33, 0x14, 0x4b, 0xf8, 0x54, 0x18, 0x54, 0x18, 0x5c, 0x39, 0x5c, 0x7a, 0x5c, 0x7a, 0x64, 0x9b, 0x64, 0xbb, 0x64, 0x7a, 0x5c, 0x39, 0x54, 0x18, 0x53, 0xf7, 0x4b, 0xd7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x76, 0x43, 0x97, 0x3b, 0x76, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x43, 0x76, 0x43, 0x76, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x21, 0xce, 0x19, 0xce, 0x19, 0xae, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x2a, 0x10, 0x2a, 0x10, 0x29, 0xf0, 0x2a, 0x10, 0x2a, 0x0f, 0x21, 0xef, 0x21, 0xcf, 0x19, 0x8e, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6c, + 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4d, 0x11, 0x4d, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x4d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0xaf, 0x19, 0x8e, 0x19, 0x8e, 0x11, 0x8e, 0x19, 0x8e, 0x19, 0xcf, 0x19, 0xf0, 0x22, 0x10, 0x22, 0x31, 0x22, 0x31, 0x22, 0x31, 0x2a, 0x72, 0x2a, 0x93, 0x32, 0xd4, 0x32, 0xf4, 0x33, 0x34, 0x33, 0x35, 0x33, 0x56, 0x33, 0x76, 0x3b, 0x97, 0x43, 0xb8, 0x43, 0xf8, 0x44, 0x18, 0x4c, 0x39, 0x4c, 0x5a, 0x54, 0x7c, 0x54, 0x9e, 0x5c, 0xde, 0x64, 0xff, 0x65, 0x1f, 0x65, 0x3f, 0x65, 0x5f, 0x65, 0x3f, 0x65, 0x5f, 0x6d, 0x5f, 0x6d, 0x3f, 0x65, 0x1f, 0x65, 0x1f, 0x6d, 0x5f, 0x6d, 0x7f, 0x5c, 0xfd, 0x5d, 0x1e, 0x5d, 0x3f, 0x5d, 0x1f, 0x5d, 0x3f, 0x65, 0x5f, 0x65, 0x5f, 0x65, 0x5f, 0x65, 0x5f, 0x6d, 0x5f, 0x65, 0x5f, 0x65, 0x5e, 0x65, 0x5e, 0x65, 0x1f, 0x65, 0x5f, 0x65, 0x5f, 0x65, 0x3f, 0x5d, 0x1e, 0x5c, 0xff, 0x5c, 0xfe, 0x54, 0xfd, 0x55, 0x1d, 0x5d, 0x1e, 0x5d, 0x3d, 0x5d, 0x1d, 0x5d, 0x1e, 0x65, 0x5e, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x5f, 0x65, 0x3f, 0x65, 0x1e, 0x65, 0x1e, 0x65, 0x1d, 0x5c, 0xfc, 0x5c, 0xdb, 0x5c, 0xba, 0x5c, 0x99, 0x5c, 0x79, 0x54, 0x58, 0x54, 0x18, 0x4b, 0xf7, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0xb5, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x54, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x91, 0x2a, 0x71, 0x2a, 0x31, 0x2a, 0x71, 0x3a, 0xf3, 0x3b, 0x14, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x6e, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x4b, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4d, 0x09, 0x6d, 0x09, 0x6d, 0x09, 0x6e, 0x11, 0x8e, 0x11, 0xae, 0x11, 0xcf, 0x19, 0xef, 0x1a, 0x10, 0x22, 0x10, 0x22, 0x51, 0x22, 0x51, 0x3b, 0x34, 0x43, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xf7, 0x54, 0x18, 0x54, 0x18, 0x53, 0xf7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x76, 0x3b, 0x76, 0x43, 0x97, 0x43, 0xb7, 0x43, 0x97, 0x43, 0x76, 0x43, 0x97, 0x43, 0x76, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x36, 0x32, 0xd3, 0x2a, 0x71, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xaf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xf0, 0x2a, 0x0f, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x19, 0x8e, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4c, + 0x11, 0x4c, 0x09, 0x2c, 0x11, 0x2c, 0x11, 0x4d, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x0b, 0x01, 0x0b, 0x00, 0xea, 0x01, 0x0a, 0x00, 0xeb, 0x00, 0xeb, 0x09, 0x2b, 0x09, 0x2b, 0x01, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x6d, 0x11, 0x6d, 0x09, 0x4d, 0x09, 0x4d, 0x11, 0x6e, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8e, 0x19, 0x8e, 0x11, 0x8e, 0x11, 0xaf, 0x19, 0xcf, 0x19, 0xf0, 0x22, 0x11, 0x22, 0x31, 0x22, 0x52, 0x22, 0x31, 0x2a, 0x72, 0x2a, 0xb3, 0x2a, 0xd4, 0x32, 0xf4, 0x33, 0x35, 0x33, 0x55, 0x3b, 0x55, 0x33, 0x56, 0x3b, 0x97, 0x43, 0xd8, 0x43, 0xf8, 0x4c, 0x19, 0x4c, 0x3a, 0x4c, 0x3a, 0x4c, 0x5b, 0x54, 0x7d, 0x54, 0xbe, 0x5c, 0xff, 0x65, 0x1f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x1f, 0x65, 0x1f, 0x64, 0xff, 0x64, 0xff, 0x6d, 0x1f, 0x65, 0x3f, 0x6d, 0x5f, 0x65, 0x5e, 0x5d, 0x1f, 0x5d, 0x3f, 0x5d, 0x3f, 0x65, 0x3f, 0x65, 0x5f, 0x65, 0x5f, 0x65, 0x5f, 0x65, 0x3f, 0x6d, 0x3f, 0x65, 0x7e, 0x65, 0x5e, 0x65, 0x1f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x5c, 0xff, 0x5c, 0xfe, 0x54, 0xfd, 0x54, 0xfe, 0x54, 0xfe, 0x55, 0x1d, 0x5d, 0x3d, 0x65, 0x5e, 0x6d, 0x7e, 0x6d, 0x7e, 0x6d, 0x5f, 0x6d, 0x5f, 0x6d, 0x5f, 0x6d, 0x5f, 0x6d, 0x5f, 0x6d, 0x3f, 0x65, 0x1e, 0x64, 0xfd, 0x64, 0xfc, 0x5c, 0xdb, 0x5c, 0x9a, 0x5c, 0x79, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xb6, 0x43, 0x95, 0x43, 0x95, 0x43, 0x54, 0x3b, 0x34, 0x33, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x3a, 0xf3, 0x3b, 0x34, 0x32, 0xf3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x31, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x2b, 0x09, 0x0b, 0x01, 0x2b, 0x09, 0x2b, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4d, 0x09, 0x4d, 0x09, 0x6e, 0x11, 0x8e, 0x11, 0xae, 0x11, 0xaf, 0x19, 0xcf, 0x19, 0xf0, 0x22, 0x10, 0x22, 0x10, 0x3b, 0x14, 0x43, 0x76, 0x3b, 0x76, 0x43, 0x76, 0x3b, 0x75, 0x43, 0x76, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x75, 0x43, 0x75, 0x43, 0x76, 0x43, 0x96, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x76, 0x3b, 0x56, 0x3b, 0x76, 0x43, 0x76, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x76, 0x43, 0x76, 0x43, 0x76, 0x32, 0xb2, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x10, 0x22, 0x10, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xae, 0x21, 0xae, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x21, 0xef, 0x2a, 0x10, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xae, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4c, + 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x0b, 0x01, 0x0a, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x00, 0xcb, 0x00, 0xeb, 0x01, 0x0b, 0x09, 0x2b, 0x09, 0x2b, 0x01, 0x2c, 0x09, 0x2c, 0x09, 0x4d, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4d, 0x09, 0x4d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0xae, 0x11, 0x8e, 0x11, 0xaf, 0x19, 0xcf, 0x1a, 0x10, 0x22, 0x31, 0x22, 0x52, 0x2a, 0x52, 0x22, 0x31, 0x2a, 0x72, 0x2a, 0x93, 0x2a, 0xd3, 0x32, 0xf4, 0x33, 0x15, 0x33, 0x35, 0x3b, 0x35, 0x3b, 0x76, 0x3b, 0x97, 0x43, 0xb7, 0x43, 0xd8, 0x44, 0x19, 0x4c, 0x3a, 0x4c, 0x5b, 0x4c, 0x5b, 0x54, 0x7d, 0x54, 0xbf, 0x5c, 0xff, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x3f, 0x65, 0x1f, 0x65, 0x1f, 0x64, 0xff, 0x64, 0xff, 0x64, 0xff, 0x65, 0x3f, 0x65, 0x7f, 0x6d, 0x9f, 0x65, 0x7f, 0x5d, 0x1e, 0x5d, 0x3f, 0x5d, 0x3f, 0x5d, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x6d, 0x3f, 0x65, 0x3f, 0x65, 0x3e, 0x65, 0x3e, 0x65, 0x1f, 0x6d, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x1f, 0x5d, 0x1f, 0x5c, 0xfe, 0x55, 0x1e, 0x55, 0x1e, 0x5d, 0x3e, 0x55, 0x3e, 0x5d, 0x5e, 0x65, 0x7e, 0x6d, 0x7e, 0x75, 0xbf, 0x75, 0x9f, 0x75, 0x9f, 0x75, 0xbf, 0x75, 0xbf, 0x75, 0x9f, 0x75, 0x9f, 0x6d, 0x7f, 0x6d, 0x5f, 0x6d, 0x3e, 0x64, 0xfd, 0x64, 0xdb, 0x5c, 0xba, 0x5c, 0x79, 0x54, 0x58, 0x54, 0x38, 0x4c, 0x17, 0x4b, 0xf7, 0x4b, 0xd7, 0x4b, 0xd6, 0x43, 0xb6, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0x92, 0x32, 0xd2, 0x3b, 0x34, 0x3b, 0x34, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x31, 0x22, 0x10, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xae, 0x19, 0xae, 0x11, 0x8e, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x2b, 0x09, 0x2b, 0x08, 0xeb, 0x00, 0xca, 0x00, 0xea, 0x00, 0xea, 0x01, 0x0a, 0x01, 0x0a, 0x01, 0x0b, 0x01, 0x0a, 0x00, 0xea, 0x01, 0x0b, 0x01, 0x2c, 0x01, 0x2c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x6d, 0x09, 0x6d, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0xaf, 0x19, 0xcf, 0x19, 0xef, 0x19, 0xcf, 0x32, 0xf4, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x33, 0x14, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x75, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0xd6, 0x43, 0x96, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x33, 0x15, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x76, 0x32, 0x92, 0x2a, 0x71, 0x32, 0x72, 0x32, 0x72, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x6e, 0x19, 0x8d, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0x8e, 0x19, 0xaf, 0x19, 0xae, 0x21, 0xef, 0x2a, 0x10, 0x21, 0xf0, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0xae, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4c, 0x11, 0x4c, + 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x01, 0x0a, 0x00, 0xca, 0x00, 0xea, 0x01, 0x0a, 0x00, 0xea, 0x00, 0xcb, 0x00, 0xeb, 0x01, 0x0b, 0x09, 0x2b, 0x01, 0x2c, 0x09, 0x2c, 0x01, 0x0b, 0x09, 0x2b, 0x01, 0x0b, 0x09, 0x2b, 0x09, 0x0c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4d, 0x09, 0x6d, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0xaf, 0x11, 0xaf, 0x11, 0xaf, 0x19, 0xf0, 0x21, 0xf0, 0x22, 0x31, 0x22, 0x52, 0x22, 0x72, 0x22, 0x52, 0x2a, 0x72, 0x2a, 0xb3, 0x2a, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x35, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x97, 0x3b, 0xb7, 0x43, 0xd8, 0x44, 0x19, 0x4c, 0x3a, 0x4c, 0x5b, 0x4c, 0x7c, 0x5c, 0x9e, 0x5c, 0xff, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x1f, 0x64, 0xff, 0x64, 0xff, 0x64, 0xff, 0x64, 0xdf, 0x65, 0x1f, 0x65, 0x5f, 0x65, 0x7f, 0x6d, 0xbf, 0x6d, 0x9f, 0x5d, 0x1e, 0x5d, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x5f, 0x65, 0x3f, 0x65, 0x1f, 0x65, 0x1e, 0x5d, 0x3e, 0x65, 0x3f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x3f, 0x65, 0x3f, 0x5c, 0xff, 0x5c, 0xfe, 0x54, 0xfd, 0x55, 0x1e, 0x5d, 0x3e, 0x5d, 0x3e, 0x5d, 0x3e, 0x65, 0x5d, 0x75, 0xbe, 0x75, 0xdf, 0x7d, 0xbf, 0x7d, 0xdf, 0x7d, 0xff, 0x7d, 0xdf, 0x7d, 0xdf, 0x7d, 0xdf, 0x7d, 0xbf, 0x75, 0x9f, 0x75, 0x7f, 0x6d, 0x5e, 0x6d, 0x1d, 0x64, 0xdc, 0x5c, 0x9a, 0x5c, 0x99, 0x54, 0x59, 0x54, 0x38, 0x54, 0x17, 0x54, 0x17, 0x4b, 0xf7, 0x4b, 0xb6, 0x43, 0x75, 0x3b, 0x75, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x2a, 0xb2, 0x3b, 0x14, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x31, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0x8e, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x2b, 0x08, 0xea, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x00, 0xea, 0x00, 0xea, 0x00, 0xea, 0x00, 0xea, 0x00, 0xea, 0x00, 0xeb, 0x00, 0xeb, 0x01, 0x0b, 0x01, 0x2b, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4d, 0x09, 0x6d, 0x09, 0x6d, 0x11, 0x8e, 0x11, 0xae, 0x19, 0xcf, 0x11, 0x8e, 0x32, 0xf4, 0x3b, 0x35, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xd4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x35, 0x43, 0x95, 0x4b, 0xb6, 0x43, 0x76, 0x3b, 0x15, 0x33, 0x14, 0x33, 0x14, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x15, 0x3b, 0x35, 0x3b, 0x35, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x72, 0x2a, 0x51, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x11, 0x8e, 0x11, 0x6e, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x19, 0x6e, 0x19, 0x8e, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x19, 0x8e, 0x21, 0xcf, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xaf, 0x19, 0xae, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x09, 0x2c, + 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x01, 0x0b, 0x00, 0xea, 0x00, 0xea, 0x00, 0xea, 0x00, 0xea, 0x00, 0xeb, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x2b, 0x09, 0x0b, 0x00, 0xea, 0x00, 0xea, 0x00, 0xca, 0x00, 0xca, 0x01, 0x0b, 0x00, 0xeb, 0x09, 0x0b, 0x09, 0x2b, 0x09, 0x2c, 0x09, 0x4d, 0x09, 0x6d, 0x11, 0x6d, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0xaf, 0x11, 0xaf, 0x11, 0xaf, 0x19, 0xd0, 0x1a, 0x10, 0x22, 0x31, 0x22, 0x52, 0x2a, 0x52, 0x22, 0x72, 0x2a, 0x93, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0xf4, 0x33, 0x15, 0x33, 0x35, 0x33, 0x76, 0x3b, 0x76, 0x3b, 0x97, 0x43, 0xb7, 0x43, 0xd8, 0x43, 0xf9, 0x4c, 0x3a, 0x4c, 0x7c, 0x54, 0xbe, 0x5c, 0xff, 0x65, 0x3f, 0x65, 0x5f, 0x65, 0x3f, 0x65, 0x1f, 0x64, 0xff, 0x64, 0xff, 0x64, 0xff, 0x64, 0xde, 0x5d, 0x3f, 0x65, 0x3f, 0x65, 0x7f, 0x65, 0x7f, 0x6d, 0x9f, 0x6d, 0x9f, 0x5d, 0x3e, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x5d, 0x3e, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x3f, 0x65, 0x1f, 0x5c, 0xde, 0x5c, 0xdd, 0x5c, 0xfd, 0x5c, 0xfd, 0x54, 0xfd, 0x5c, 0xfd, 0x65, 0x5e, 0x6d, 0x9e, 0x75, 0xde, 0x7d, 0xff, 0x7d, 0xff, 0x86, 0x3f, 0x86, 0x5f, 0x86, 0x5f, 0x86, 0x5f, 0x86, 0x3f, 0x86, 0x3f, 0x7e, 0x1f, 0x7d, 0xdf, 0x75, 0xbf, 0x75, 0x7f, 0x6d, 0x3e, 0x64, 0xfc, 0x5c, 0xbb, 0x5c, 0x9a, 0x5c, 0x79, 0x5c, 0x58, 0x54, 0x17, 0x54, 0x17, 0x4b, 0xd6, 0x43, 0x96, 0x43, 0x95, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x3b, 0x14, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x35, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x31, 0x2a, 0x30, 0x22, 0x10, 0x21, 0xef, 0x21, 0xaf, 0x19, 0xae, 0x19, 0x8e, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x09, 0x4c, 0x09, 0x2b, 0x09, 0x2b, 0x01, 0x0b, 0x00, 0xea, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x00, 0xeb, 0x01, 0x0b, 0x01, 0x0b, 0x01, 0x0c, 0x01, 0x2c, 0x09, 0x4c, 0x09, 0x6d, 0x09, 0x8d, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0xaf, 0x32, 0xf4, 0x33, 0x14, 0x32, 0xf4, 0x32, 0xd3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0xb3, 0x2a, 0xb3, 0x2a, 0xb3, 0x32, 0xb3, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x32, 0xf4, 0x32, 0xd4, 0x32, 0xf4, 0x33, 0x15, 0x3b, 0x55, 0x3b, 0x55, 0x3b, 0x55, 0x32, 0xd3, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x11, 0x6e, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x6d, 0x21, 0xcf, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xaf, 0x19, 0x8e, 0x11, 0x8e, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, + 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x0c, 0x09, 0x2b, 0x09, 0x0c, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x0b, 0x00, 0xeb, 0x00, 0xeb, 0x01, 0x0b, 0x09, 0x0b, 0x09, 0x2b, 0x09, 0x0b, 0x00, 0xca, 0x00, 0xea, 0x00, 0xca, 0x00, 0xea, 0x00, 0xea, 0x00, 0xca, 0x00, 0xca, 0x00, 0xeb, 0x09, 0x0b, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4d, 0x09, 0x6d, 0x11, 0x6e, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0x8f, 0x11, 0xaf, 0x11, 0xaf, 0x19, 0xf0, 0x22, 0x11, 0x22, 0x31, 0x22, 0x52, 0x2a, 0x72, 0x2a, 0x52, 0x2a, 0x93, 0x2a, 0xd3, 0x2a, 0xf4, 0x32, 0xf4, 0x33, 0x15, 0x33, 0x55, 0x3b, 0x76, 0x3b, 0x77, 0x3b, 0x97, 0x43, 0xb7, 0x43, 0xd8, 0x4c, 0x19, 0x4c, 0x5b, 0x5c, 0x9e, 0x5c, 0xff, 0x6d, 0x3f, 0x6d, 0x7f, 0x6d, 0x5f, 0x6d, 0x3f, 0x64, 0xfe, 0x64, 0xde, 0x64, 0xff, 0x5c, 0xfe, 0x5d, 0x3f, 0x5d, 0x3f, 0x5d, 0x3f, 0x65, 0x5f, 0x65, 0x7f, 0x6d, 0x9f, 0x6d, 0x7f, 0x5d, 0x1f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x1f, 0x65, 0x1f, 0x5d, 0x3e, 0x65, 0x3e, 0x65, 0x1f, 0x64, 0xff, 0x65, 0x3f, 0x65, 0x1e, 0x5c, 0xfd, 0x5c, 0xbd, 0x54, 0xfd, 0x54, 0xfc, 0x5d, 0x1d, 0x5d, 0x1d, 0x65, 0x3d, 0x6d, 0x5d, 0x7d, 0xde, 0x86, 0x1f, 0x86, 0x1f, 0x86, 0x7f, 0x8e, 0xff, 0x8e, 0xff, 0x8e, 0xff, 0x8f, 0x1f, 0x8e, 0xdf, 0x8e, 0xbf, 0x86, 0x7f, 0x86, 0x1f, 0x7d, 0xdf, 0x75, 0x9f, 0x6d, 0x3e, 0x64, 0xfd, 0x64, 0xdb, 0x5c, 0xba, 0x5c, 0x79, 0x5c, 0x79, 0x54, 0x38, 0x4b, 0xf7, 0x4b, 0xd6, 0x4b, 0xb6, 0x4b, 0x95, 0x43, 0x95, 0x43, 0x75, 0x3b, 0x34, 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x95, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x34, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xae, 0x19, 0xae, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x2b, 0x01, 0x0a, 0x00, 0xca, 0x00, 0xca, 0x00, 0xc9, 0x00, 0xa9, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xaa, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x00, 0xea, 0x00, 0xeb, 0x01, 0x2b, 0x01, 0x2c, 0x09, 0x4c, 0x09, 0x4d, 0x09, 0x6d, 0x11, 0x8e, 0x19, 0xcf, 0x32, 0xd4, 0x33, 0x14, 0x32, 0xd3, 0x2a, 0xb3, 0x2a, 0x93, 0x2a, 0x93, 0x2a, 0x92, 0x2a, 0x93, 0x2a, 0x93, 0x32, 0xb3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x93, 0x32, 0xd4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xf4, 0x3b, 0x15, 0x3b, 0x55, 0x43, 0x76, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x22, 0x10, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0xaf, 0x19, 0x8e, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x09, 0x2c, 0x21, 0xae, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0x10, 0x22, 0x10, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0xae, 0x11, 0x8e, 0x11, 0x6e, 0x11, 0x6d, 0x11, 0x6d, + 0x11, 0x4d, 0x11, 0x4d, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x2c, 0x00, 0xca, 0x00, 0xca, 0x01, 0x0a, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x09, 0x0b, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4c, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x6e, 0x11, 0x8f, 0x11, 0xaf, 0x11, 0xaf, 0x19, 0xcf, 0x19, 0xf0, 0x22, 0x11, 0x22, 0x31, 0x2a, 0x72, 0x2a, 0x93, 0x2a, 0x92, 0x2a, 0xb3, 0x2a, 0xd3, 0x32, 0xf4, 0x33, 0x14, 0x33, 0x15, 0x3b, 0x76, 0x3b, 0x76, 0x3b, 0x77, 0x43, 0x97, 0x43, 0xd8, 0x4b, 0xf9, 0x4c, 0x3a, 0x54, 0x9d, 0x64, 0xff, 0x6d, 0x5f, 0x75, 0x9f, 0x6d, 0x5e, 0x64, 0xdd, 0x64, 0xdd, 0x64, 0xde, 0x65, 0x1f, 0x65, 0x1f, 0x5d, 0x3f, 0x5d, 0x3f, 0x5d, 0x3f, 0x65, 0x3f, 0x65, 0x7f, 0x6d, 0x7f, 0x6d, 0x9f, 0x6d, 0x9f, 0x5d, 0x3f, 0x65, 0x1f, 0x65, 0x3f, 0x65, 0x1f, 0x65, 0x1f, 0x5d, 0x1e, 0x5d, 0x1e, 0x65, 0x3f, 0x65, 0x1f, 0x65, 0x1f, 0x6d, 0x1f, 0x5c, 0xfd, 0x5c, 0xbd, 0x5c, 0xfd, 0x55, 0x1d, 0x5c, 0xfc, 0x5d, 0x1d, 0x65, 0x3e, 0x6d, 0x9f, 0x75, 0xde, 0x7e, 0x1e, 0x8e, 0x3f, 0x8e, 0x9f, 0x97, 0x1f, 0x9f, 0x9f, 0x9f, 0xbf, 0x9f, 0x9e, 0x9f, 0x9e, 0x9f, 0x7f, 0x97, 0x3f, 0x8e, 0x9f, 0x86, 0x3f, 0x7d, 0xff, 0x75, 0xbf, 0x6d, 0x5f, 0x6d, 0x1e, 0x65, 0x1d, 0x64, 0xdb, 0x5c, 0x9a, 0x5c, 0x58, 0x54, 0x18, 0x4b, 0xf7, 0x4b, 0xf6, 0x4b, 0xb6, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x13, 0x43, 0x55, 0x43, 0x96, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x35, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x30, 0x21, 0xf0, 0x21, 0xef, 0x19, 0xcf, 0x19, 0xae, 0x19, 0x8e, 0x11, 0x6d, 0x11, 0x4d, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x2b, 0x08, 0xea, 0x00, 0xca, 0x00, 0xca, 0x00, 0xa9, 0x00, 0xc9, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xeb, 0x01, 0x0b, 0x01, 0x2b, 0x01, 0x2c, 0x09, 0x4d, 0x09, 0x4d, 0x19, 0xcf, 0x32, 0xd3, 0x32, 0xf4, 0x2a, 0xb3, 0x2a, 0x93, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x93, 0x2a, 0xb3, 0x2a, 0x93, 0x2a, 0x93, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0xb3, 0x2a, 0x93, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x93, 0x32, 0xb3, 0x32, 0xb3, 0x33, 0x14, 0x3b, 0x35, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x30, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x11, 0x8e, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x4c, 0x21, 0xae, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xae, 0x19, 0x8e, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, + 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x01, 0x0b, 0x01, 0x0a, 0x00, 0xea, 0x00, 0xeb, 0x00, 0xca, 0x00, 0xca, 0x00, 0xaa, 0x00, 0xca, 0x00, 0xea, 0x01, 0x0a, 0x09, 0x0b, 0x09, 0x2b, 0x09, 0x4c, 0x09, 0x4c, 0x11, 0x4c, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x6e, 0x11, 0x8f, 0x11, 0xaf, 0x11, 0xaf, 0x19, 0xd0, 0x1a, 0x10, 0x22, 0x11, 0x22, 0x51, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x15, 0x3b, 0x55, 0x3b, 0x56, 0x3b, 0x76, 0x3b, 0x96, 0x43, 0xb7, 0x43, 0xf8, 0x4c, 0x3a, 0x54, 0x7c, 0x5c, 0xde, 0x6d, 0x3e, 0x6d, 0x1d, 0x64, 0xba, 0x64, 0xfc, 0x64, 0xfc, 0x65, 0x1d, 0x6d, 0x3f, 0x65, 0x3e, 0x65, 0x7f, 0x5d, 0x5f, 0x5d, 0x3f, 0x65, 0x3f, 0x65, 0x5f, 0x65, 0x7f, 0x6d, 0x9f, 0x6d, 0x9f, 0x6d, 0x5f, 0x65, 0x3f, 0x65, 0x3f, 0x65, 0x1f, 0x65, 0x1f, 0x5d, 0x3e, 0x5d, 0x3e, 0x65, 0x1e, 0x65, 0x1f, 0x65, 0x1f, 0x65, 0x3f, 0x64, 0xfe, 0x5c, 0xdd, 0x54, 0xfd, 0x54, 0xfc, 0x5c, 0xfc, 0x65, 0x3d, 0x6d, 0x5e, 0x75, 0x7e, 0x7d, 0xff, 0x86, 0x3f, 0x8e, 0x7f, 0x97, 0x3f, 0x9f, 0x7f, 0x9f, 0xbe, 0xa7, 0xbd, 0xaf, 0xbe, 0xaf, 0xbd, 0xa7, 0xbe, 0x9f, 0xbe, 0x9f, 0x7e, 0x8f, 0x1f, 0x86, 0x7f, 0x85, 0xff, 0x7d, 0xbf, 0x7d, 0xbf, 0x6d, 0x3d, 0x64, 0x9a, 0x5c, 0x59, 0x54, 0x18, 0x43, 0x55, 0x32, 0xb2, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x51, 0x3b, 0x14, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x30, 0x21, 0xf0, 0x19, 0xcf, 0x19, 0xaf, 0x19, 0x8e, 0x11, 0x8d, 0x11, 0x6d, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x0a, 0x00, 0xca, 0x00, 0xaa, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xc9, 0x00, 0xc8, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xaa, 0x00, 0xca, 0x00, 0xea, 0x01, 0x0b, 0x01, 0x2b, 0x09, 0x4c, 0x09, 0x4d, 0x19, 0xcf, 0x32, 0xd3, 0x32, 0xf4, 0x2a, 0xb3, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x93, 0x32, 0xb3, 0x2a, 0x93, 0x2a, 0x93, 0x2a, 0x92, 0x2a, 0x52, 0x2a, 0x51, 0x2a, 0x93, 0x2a, 0x93, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb3, 0x32, 0xd3, 0x3b, 0x14, 0x32, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4c, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4d, 0x09, 0x4c, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x2c, 0x19, 0x8e, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xae, 0x19, 0x8e, 0x11, 0x8e, 0x11, 0x6e, 0x11, 0x6d, + 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4d, 0x09, 0x4d, 0x09, 0x2c, 0x09, 0x0b, 0x01, 0x0a, 0x00, 0xea, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xaa, 0x00, 0xea, 0x01, 0x0a, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0xaf, 0x11, 0xaf, 0x11, 0xaf, 0x19, 0xf0, 0x22, 0x10, 0x22, 0x31, 0x2a, 0x52, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xd4, 0x33, 0x14, 0x33, 0x15, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x76, 0x43, 0xb7, 0x43, 0xf8, 0x4c, 0x19, 0x54, 0x7b, 0x5c, 0xbd, 0x5c, 0x9b, 0x5c, 0xb9, 0x64, 0xda, 0x64, 0xfb, 0x6c, 0xfb, 0x6d, 0x1d, 0x6d, 0x3f, 0x6d, 0x7e, 0x6d, 0xbf, 0x65, 0x7f, 0x5d, 0x3f, 0x65, 0x3f, 0x65, 0x5f, 0x6d, 0x7f, 0x6d, 0x7f, 0x6d, 0x9f, 0x6d, 0x9f, 0x6d, 0x5f, 0x5d, 0x1f, 0x65, 0x1f, 0x64, 0xff, 0x5d, 0x1e, 0x5d, 0x1d, 0x5d, 0x1e, 0x6d, 0x1f, 0x65, 0x1f, 0x6d, 0x3f, 0x65, 0x1e, 0x5c, 0xdd, 0x5c, 0xfd, 0x54, 0xfd, 0x5d, 0x1d, 0x65, 0x3d, 0x6d, 0x5d, 0x75, 0xbe, 0x7d, 0xff, 0x86, 0x5f, 0x8e, 0xdf, 0x97, 0x1f, 0xa7, 0x7e, 0xaf, 0xbe, 0xb7, 0xbe, 0xb7, 0xde, 0xb7, 0xbe, 0xb7, 0xbe, 0xb7, 0xbe, 0xaf, 0xbd, 0xa7, 0xbe, 0x9f, 0xbf, 0x96, 0xbe, 0x75, 0x5a, 0x54, 0x17, 0x43, 0x55, 0x3a, 0xf3, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x32, 0x71, 0x3b, 0x34, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x35, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x30, 0x21, 0xef, 0x19, 0xae, 0x11, 0x6d, 0x11, 0x6d, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x0b, 0x00, 0xea, 0x00, 0xaa, 0x00, 0xa9, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xc8, 0x00, 0xa8, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xaa, 0x00, 0xca, 0x00, 0xea, 0x00, 0xea, 0x11, 0x4d, 0x09, 0x4d, 0x19, 0xae, 0x32, 0xb3, 0x32, 0xf3, 0x2a, 0xb3, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x93, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x52, 0x2a, 0x72, 0x2a, 0x52, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x93, 0x32, 0xd4, 0x2a, 0x71, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xce, 0x21, 0xaf, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x4c, 0x09, 0x4c, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x2c, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x2c, 0x11, 0x6d, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xf0, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xaf, 0x19, 0xaf, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x6d, + 0x19, 0x6e, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4d, 0x11, 0x4d, 0x09, 0x4d, 0x09, 0x4c, 0x00, 0xeb, 0x00, 0xea, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xaa, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x01, 0x0a, 0x09, 0x0b, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x4c, 0x11, 0x4c, 0x11, 0x6d, 0x11, 0x6c, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0xaf, 0x11, 0xaf, 0x19, 0xaf, 0x19, 0xd0, 0x22, 0x11, 0x22, 0x31, 0x22, 0x52, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x93, 0x2a, 0xd3, 0x2a, 0xb3, 0x32, 0xf4, 0x33, 0x15, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x96, 0x4b, 0xf7, 0x4c, 0x18, 0x4c, 0x3a, 0x4c, 0x39, 0x54, 0x59, 0x5c, 0x99, 0x64, 0xba, 0x64, 0xba, 0x6c, 0xdb, 0x6c, 0xfc, 0x6d, 0x1e, 0x75, 0xbe, 0x76, 0x1f, 0x6d, 0xbf, 0x65, 0x7f, 0x65, 0x3f, 0x65, 0x3f, 0x6d, 0x5f, 0x6d, 0x9f, 0x6d, 0x9f, 0x6d, 0x7f, 0x6d, 0x7f, 0x65, 0x3f, 0x65, 0x1f, 0x5c, 0xfe, 0x5c, 0xde, 0x5c, 0xfc, 0x5d, 0x1d, 0x65, 0x1e, 0x65, 0x1f, 0x65, 0x3f, 0x65, 0x3e, 0x5c, 0xdd, 0x54, 0xfd, 0x5c, 0xfe, 0x5c, 0xfd, 0x65, 0x3d, 0x6d, 0x5e, 0x75, 0x7e, 0x7d, 0xff, 0x86, 0x7f, 0x8e, 0xdf, 0x9f, 0x5f, 0xa7, 0xde, 0xaf, 0xbd, 0xbf, 0xbe, 0xc7, 0xdf, 0xc7, 0xbe, 0xc7, 0xbe, 0xbf, 0xde, 0xc7, 0xff, 0xae, 0xfc, 0x64, 0x55, 0x32, 0xf2, 0x3a, 0xf2, 0x3a, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x32, 0xb2, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x55, 0x3b, 0x35, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x11, 0x21, 0xf0, 0x11, 0x8e, 0x09, 0x4d, 0x09, 0x4c, 0x09, 0x2b, 0x09, 0x2b, 0x00, 0xea, 0x00, 0xca, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xc9, 0x00, 0xc8, 0x00, 0xa8, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0xa8, 0x00, 0xc9, 0x00, 0xa8, 0x00, 0xc8, 0x00, 0xa9, 0x00, 0xc9, 0x00, 0xa9, 0x00, 0xca, 0x00, 0xea, 0x09, 0x4d, 0x09, 0x4d, 0x11, 0x6e, 0x32, 0x92, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0x92, 0x32, 0xb3, 0x2a, 0x93, 0x2a, 0x72, 0x2a, 0x52, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x52, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb3, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0xae, 0x19, 0x8e, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x09, 0x4c, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x11, 0x4c, 0x2a, 0x30, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xaf, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, + 0x11, 0x8e, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4d, 0x11, 0x2c, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x09, 0x2b, 0x09, 0x0b, 0x01, 0x0a, 0x00, 0xaa, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x01, 0x0a, 0x00, 0xeb, 0x01, 0x0b, 0x09, 0x2b, 0x09, 0x2b, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x6c, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8f, 0x11, 0xaf, 0x19, 0xcf, 0x19, 0xf0, 0x22, 0x11, 0x22, 0x31, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x93, 0x2a, 0x93, 0x32, 0xb4, 0x32, 0xf4, 0x3b, 0x35, 0x3b, 0x34, 0x3b, 0x76, 0x43, 0xb7, 0x4b, 0xf8, 0x43, 0xd7, 0x43, 0xd7, 0x54, 0x38, 0x5c, 0x79, 0x64, 0xb9, 0x64, 0xba, 0x64, 0xba, 0x6c, 0xdc, 0x75, 0x1d, 0x85, 0xde, 0x7d, 0xff, 0x76, 0x1f, 0x6d, 0x9f, 0x65, 0x7f, 0x65, 0x5f, 0x65, 0x5f, 0x6d, 0x7f, 0x6d, 0x9f, 0x6d, 0x9f, 0x6d, 0x7f, 0x65, 0x1e, 0x5c, 0xbd, 0x5c, 0xde, 0x5c, 0xfd, 0x54, 0xfc, 0x54, 0xfd, 0x65, 0x1e, 0x6d, 0x3f, 0x6d, 0x3f, 0x65, 0x1f, 0x5c, 0xde, 0x5d, 0x1d, 0x5d, 0x3d, 0x65, 0x5e, 0x65, 0x3d, 0x6d, 0x7f, 0x75, 0xbf, 0x7d, 0xdf, 0x86, 0x5e, 0x97, 0x1f, 0x9f, 0x5f, 0xa7, 0xbe, 0xbf, 0xde, 0xc7, 0xbe, 0xd7, 0xdf, 0xdf, 0xbf, 0xe7, 0x9f, 0xbe, 0x3b, 0x63, 0xb4, 0x3a, 0xb1, 0x3a, 0xd2, 0x42, 0xf2, 0x3a, 0xf2, 0x3a, 0xf2, 0x3a, 0xf3, 0x3a, 0xf3, 0x3a, 0xd2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x10, 0x3a, 0xf3, 0x4b, 0xb7, 0x43, 0x76, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x15, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x21, 0xf0, 0x11, 0x6d, 0x09, 0x2c, 0x09, 0x0b, 0x01, 0x0a, 0x00, 0xca, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xc9, 0x00, 0xa8, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0xc8, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xca, 0x09, 0x4c, 0x09, 0x4d, 0x09, 0x2c, 0x2a, 0x72, 0x32, 0xd3, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x3b, 0x14, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0x93, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x72, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x10, 0x21, 0xee, 0x21, 0xce, 0x21, 0xae, 0x19, 0xae, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2b, 0x11, 0x4c, 0x2a, 0x51, 0x2a, 0x10, 0x29, 0xf0, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, + 0x11, 0x8e, 0x11, 0x6e, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x6d, 0x09, 0x4c, 0x09, 0x2b, 0x01, 0x0b, 0x00, 0xeb, 0x01, 0x0a, 0x00, 0xea, 0x00, 0xca, 0x00, 0xaa, 0x00, 0xea, 0x00, 0xea, 0x01, 0x0a, 0x01, 0x0a, 0x01, 0x0b, 0x09, 0x2b, 0x09, 0x2b, 0x11, 0x2c, 0x11, 0x4c, 0x11, 0x6c, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0x8e, 0x19, 0xaf, 0x19, 0xd0, 0x21, 0xf0, 0x22, 0x11, 0x22, 0x31, 0x22, 0x31, 0x2a, 0x31, 0x2a, 0x72, 0x2a, 0xb3, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x43, 0x96, 0x43, 0x96, 0x3b, 0x76, 0x43, 0x97, 0x4b, 0xf8, 0x54, 0x58, 0x5c, 0x79, 0x5c, 0x99, 0x64, 0xba, 0x6c, 0xdb, 0x75, 0x1c, 0x85, 0xdf, 0x86, 0x1f, 0x76, 0x1f, 0x6d, 0xdf, 0x6d, 0x7f, 0x65, 0x7f, 0x6d, 0x5f, 0x6d, 0x5f, 0x6d, 0x7f, 0x6d, 0x5f, 0x64, 0xff, 0x64, 0xdf, 0x5c, 0xdd, 0x5c, 0xdd, 0x5c, 0xdd, 0x54, 0xdc, 0x54, 0xdc, 0x5c, 0xfc, 0x6d, 0x3e, 0x6d, 0x3f, 0x65, 0x1f, 0x5c, 0xfe, 0x5d, 0x1e, 0x65, 0x3e, 0x65, 0x3e, 0x6d, 0x5e, 0x6d, 0x7e, 0x6d, 0x7e, 0x7d, 0xde, 0x86, 0x5f, 0x8e, 0xdf, 0x9f, 0x5e, 0xaf, 0xbe, 0xbf, 0xde, 0xcf, 0xdf, 0xd7, 0x5e, 0xad, 0xda, 0x6b, 0xd4, 0x3a, 0x91, 0x3a, 0xb2, 0x42, 0xf2, 0x42, 0xf2, 0x43, 0x12, 0x43, 0x12, 0x42, 0xf2, 0x3a, 0xf2, 0x3a, 0xf2, 0x3a, 0xd2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x43, 0x35, 0x53, 0xf7, 0x43, 0x76, 0x43, 0x76, 0x43, 0x76, 0x43, 0x76, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0x10, 0x19, 0xcf, 0x11, 0x6d, 0x09, 0x0b, 0x00, 0xca, 0x00, 0xca, 0x00, 0xa9, 0x00, 0xc9, 0x00, 0xa8, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0xa8, 0x00, 0x88, 0x00, 0xa8, 0x00, 0xa9, 0x00, 0xa8, 0x00, 0xea, 0x09, 0x4c, 0x09, 0x4d, 0x00, 0xeb, 0x2a, 0x51, 0x32, 0xd3, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb3, 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x14, 0x3a, 0xf4, 0x3b, 0x14, 0x32, 0xd3, 0x2a, 0x72, 0x2a, 0x51, 0x22, 0x31, 0x22, 0x31, 0x22, 0x11, 0x22, 0x11, 0x22, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x50, 0x2a, 0x50, 0x21, 0xce, 0x21, 0xce, 0x21, 0xae, 0x19, 0x8e, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x2c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x0b, 0x32, 0x71, 0x2a, 0x10, 0x21, 0xf0, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, + 0x19, 0x8e, 0x11, 0x8e, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x0b, 0x00, 0xeb, 0x01, 0x0a, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x01, 0x0a, 0x01, 0x0a, 0x00, 0xea, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x2b, 0x09, 0x4c, 0x11, 0x4c, 0x11, 0x6d, 0x19, 0x6d, 0x11, 0x6d, 0x19, 0x6d, 0x19, 0x8d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0xae, 0x19, 0xaf, 0x19, 0xd0, 0x21, 0xf0, 0x22, 0x11, 0x22, 0x31, 0x22, 0x31, 0x2a, 0x52, 0x2a, 0x92, 0x2a, 0xd3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x75, 0x43, 0x76, 0x43, 0xb7, 0x4b, 0xf8, 0x54, 0x59, 0x5c, 0x79, 0x5c, 0x79, 0x64, 0xbb, 0x75, 0x3d, 0x8d, 0xdf, 0x85, 0xff, 0x7d, 0xff, 0x75, 0xbf, 0x6d, 0x7f, 0x6d, 0x5f, 0x6d, 0x5f, 0x6d, 0x5f, 0x65, 0x1e, 0x5c, 0xde, 0x5c, 0xde, 0x64, 0xdf, 0x64, 0xde, 0x5c, 0xbc, 0x5c, 0xfd, 0x54, 0xdc, 0x54, 0xbc, 0x54, 0xdc, 0x65, 0x3e, 0x6d, 0x5f, 0x65, 0x1f, 0x5d, 0x1e, 0x5d, 0x5e, 0x65, 0x5e, 0x65, 0x5e, 0x6d, 0x5e, 0x6d, 0x5f, 0x6d, 0x9f, 0x75, 0xbe, 0x86, 0x1f, 0x8e, 0xbf, 0x9f, 0x7e, 0xaf, 0xbf, 0xc7, 0x9e, 0xa5, 0xda, 0x5b, 0x94, 0x42, 0xd2, 0x42, 0xd2, 0x4a, 0xf2, 0x4a, 0xf2, 0x4a, 0xf2, 0x4a, 0xf2, 0x42, 0xf2, 0x42, 0xf2, 0x42, 0xf2, 0x3a, 0xf2, 0x3a, 0xf2, 0x3a, 0xd2, 0x32, 0xb2, 0x32, 0xb1, 0x32, 0x91, 0x32, 0x91, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x51, 0x32, 0x92, 0x4b, 0x76, 0x53, 0xd7, 0x4b, 0xb7, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x43, 0x54, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x31, 0x2a, 0x31, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xae, 0x11, 0x4d, 0x08, 0xca, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xa8, 0x00, 0x88, 0x00, 0x88, 0x00, 0xa7, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0xc8, 0x00, 0xa8, 0x00, 0xe9, 0x11, 0x4c, 0x09, 0x4d, 0x01, 0x0b, 0x22, 0x51, 0x32, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x32, 0xb3, 0x3b, 0x14, 0x43, 0x75, 0x4b, 0x95, 0x4b, 0x95, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x32, 0xd3, 0x2a, 0x72, 0x2a, 0x51, 0x22, 0x31, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x32, 0x71, 0x21, 0xce, 0x21, 0xce, 0x19, 0xae, 0x19, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x2c, 0x09, 0x4c, 0x09, 0x4c, 0x11, 0x4c, 0x11, 0x2c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x2c, 0x01, 0x0b, 0x2a, 0x10, 0x2a, 0x51, 0x2a, 0x10, 0x29, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, + 0x19, 0xae, 0x19, 0x8e, 0x11, 0x6e, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x2b, 0x09, 0x2b, 0x01, 0x0a, 0x01, 0x0a, 0x00, 0xea, 0x01, 0x0a, 0x09, 0x0b, 0x01, 0x0a, 0x00, 0xeb, 0x00, 0xeb, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x2b, 0x11, 0x2c, 0x11, 0x6d, 0x11, 0x6d, 0x19, 0x6d, 0x11, 0x6d, 0x19, 0x6d, 0x19, 0x8d, 0x11, 0x8d, 0x11, 0x8e, 0x11, 0x6e, 0x11, 0x6e, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0xaf, 0x19, 0xd0, 0x22, 0x10, 0x22, 0x11, 0x22, 0x11, 0x22, 0x11, 0x2a, 0x72, 0x2a, 0x93, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x33, 0x14, 0x3b, 0x35, 0x3b, 0x56, 0x3b, 0x76, 0x43, 0xb7, 0x4b, 0xf7, 0x54, 0x18, 0x5c, 0x59, 0x64, 0x9a, 0x75, 0x3d, 0x85, 0xff, 0x85, 0xdf, 0x7d, 0xbf, 0x75, 0x5f, 0x6d, 0x3f, 0x6d, 0x1f, 0x6c, 0xfe, 0x64, 0xbc, 0x5c, 0x39, 0x5c, 0x5a, 0x5c, 0x9c, 0x5c, 0xbd, 0x64, 0xde, 0x64, 0xdf, 0x5c, 0xdd, 0x54, 0xbb, 0x54, 0x9b, 0x54, 0xbc, 0x5c, 0xfd, 0x75, 0x7f, 0x65, 0x3f, 0x5d, 0x1e, 0x5d, 0x3e, 0x65, 0x5e, 0x6d, 0x3e, 0x6d, 0x5e, 0x6d, 0x7f, 0x75, 0x7e, 0x6d, 0x9f, 0x7d, 0xff, 0x86, 0x9e, 0x97, 0x3f, 0x9e, 0xdc, 0x64, 0x14, 0x3a, 0x91, 0x4b, 0x13, 0x4b, 0x13, 0x4b, 0x13, 0x4b, 0x13, 0x4b, 0x13, 0x4b, 0x13, 0x4a, 0xf2, 0x4a, 0xf2, 0x42, 0xf2, 0x42, 0xf2, 0x42, 0xf2, 0x3a, 0xf2, 0x3a, 0xf2, 0x3a, 0xf2, 0x3a, 0xd2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x32, 0x71, 0x2a, 0x50, 0x3a, 0xd2, 0x4b, 0xb6, 0x53, 0xf8, 0x4b, 0xd7, 0x4b, 0xb6, 0x43, 0x96, 0x43, 0x76, 0x3b, 0x75, 0x43, 0x75, 0x43, 0x75, 0x43, 0x95, 0x4b, 0x95, 0x43, 0x75, 0x43, 0x74, 0x3b, 0x34, 0x32, 0xd3, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xae, 0x09, 0x2b, 0x00, 0xc9, 0x00, 0xa9, 0x00, 0xa8, 0x00, 0x88, 0x00, 0x67, 0x00, 0x68, 0x00, 0x68, 0x00, 0x67, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0xa8, 0x00, 0xa8, 0x08, 0xe9, 0x09, 0x4c, 0x09, 0x4d, 0x09, 0x2b, 0x22, 0x31, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xd3, 0x3b, 0x34, 0x43, 0x75, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0x95, 0x4b, 0xb6, 0x43, 0x75, 0x3a, 0xf4, 0x32, 0x92, 0x2a, 0x51, 0x22, 0x11, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x31, 0x2a, 0x51, 0x2a, 0x50, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x32, 0x51, 0x21, 0xef, 0x21, 0xae, 0x19, 0x8e, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x2c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x2c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x2c, 0x11, 0x4b, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x0b, 0x11, 0x4d, 0x32, 0x51, 0x2a, 0x10, 0x21, 0xf0, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0x8e, + 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x11, 0x6e, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4c, 0x09, 0x2b, 0x08, 0xeb, 0x08, 0xeb, 0x08, 0xeb, 0x01, 0x0a, 0x00, 0xeb, 0x08, 0xeb, 0x08, 0xeb, 0x01, 0x0b, 0x00, 0xea, 0x00, 0xea, 0x00, 0xeb, 0x00, 0xeb, 0x09, 0x0b, 0x09, 0x2c, 0x11, 0x4c, 0x11, 0x6c, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x19, 0x8d, 0x19, 0x8d, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xf0, 0x22, 0x11, 0x22, 0x31, 0x22, 0x11, 0x2a, 0x51, 0x2a, 0x72, 0x32, 0xb3, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x32, 0xf4, 0x33, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x43, 0x76, 0x4b, 0xb7, 0x4b, 0xd7, 0x54, 0x18, 0x5c, 0x79, 0x6d, 0x1c, 0x7d, 0xdf, 0x7d, 0xdf, 0x75, 0xbf, 0x75, 0x5f, 0x6d, 0x3f, 0x64, 0xfe, 0x5c, 0x9b, 0x54, 0x18, 0x54, 0x19, 0x5c, 0x39, 0x5c, 0x5a, 0x5c, 0x5b, 0x5c, 0x9c, 0x5c, 0x9c, 0x5c, 0x7b, 0x54, 0x59, 0x54, 0x9b, 0x54, 0x9b, 0x54, 0xdc, 0x6d, 0x5e, 0x6d, 0x5f, 0x65, 0x5e, 0x65, 0x7e, 0x6d, 0x5e, 0x6d, 0x7e, 0x6d, 0x7f, 0x6d, 0x7e, 0x6d, 0x7f, 0x75, 0xbf, 0x7d, 0xdf, 0x86, 0x3e, 0x6d, 0x39, 0x4b, 0x73, 0x3a, 0xf2, 0x4b, 0x13, 0x4b, 0x13, 0x4b, 0x12, 0x4b, 0x13, 0x4b, 0x13, 0x4b, 0x13, 0x4b, 0x13, 0x4b, 0x12, 0x4a, 0xf2, 0x4b, 0x12, 0x4b, 0x12, 0x4b, 0x12, 0x42, 0xf2, 0x43, 0x12, 0x42, 0xf2, 0x3a, 0xf2, 0x32, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x91, 0x2a, 0x70, 0x3a, 0xf3, 0x5c, 0x17, 0x5c, 0x38, 0x4b, 0xf7, 0x4b, 0xb7, 0x43, 0xb6, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x43, 0x96, 0x4b, 0xb5, 0x4b, 0x95, 0x4b, 0x75, 0x3a, 0xf3, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x22, 0x10, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xd0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x29, 0xf0, 0x11, 0x4d, 0x08, 0xeb, 0x00, 0xa9, 0x00, 0x88, 0x00, 0x88, 0x00, 0x68, 0x00, 0x68, 0x00, 0x68, 0x00, 0x67, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0xc9, 0x09, 0x4c, 0x11, 0x4d, 0x09, 0x2c, 0x22, 0x10, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xb3, 0x32, 0x93, 0x32, 0x92, 0x32, 0xb3, 0x3b, 0x14, 0x4b, 0x75, 0x4b, 0xb5, 0x53, 0xd6, 0x4b, 0xb6, 0x53, 0xd6, 0x4b, 0x95, 0x3b, 0x14, 0x32, 0xb2, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x11, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x50, 0x21, 0xcf, 0x19, 0x8e, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x2c, 0x11, 0x2c, 0x11, 0x2c, 0x09, 0x2c, 0x11, 0x4c, 0x09, 0x2c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x2c, 0x11, 0x2b, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x2b, 0x09, 0x0b, 0x32, 0x71, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xaf, 0x19, 0xaf, 0x19, 0x8e, 0x19, 0x8e, + 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x11, 0x8e, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x09, 0x4c, 0x09, 0x2b, 0x09, 0x0b, 0x08, 0xeb, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x00, 0xea, 0x01, 0x0a, 0x00, 0xca, 0x00, 0xea, 0x08, 0xeb, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x11, 0x4c, 0x11, 0x6c, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0x8f, 0x11, 0x8f, 0x19, 0xaf, 0x19, 0xd0, 0x21, 0xf0, 0x22, 0x31, 0x22, 0x11, 0x22, 0x31, 0x2a, 0x52, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x3a, 0xf4, 0x3b, 0x35, 0x43, 0x76, 0x4b, 0xb6, 0x4b, 0xd7, 0x5c, 0x5a, 0x6c, 0xfc, 0x6d, 0x5e, 0x75, 0x9f, 0x75, 0x7f, 0x75, 0x5f, 0x6d, 0x1f, 0x64, 0xbd, 0x54, 0x39, 0x54, 0x18, 0x54, 0x18, 0x54, 0x19, 0x5c, 0x19, 0x5c, 0x3a, 0x5c, 0x7b, 0x64, 0x9c, 0x64, 0x9c, 0x53, 0xf7, 0x4c, 0x18, 0x54, 0x38, 0x54, 0x79, 0x64, 0xdb, 0x75, 0x9f, 0x65, 0x7e, 0x6d, 0x7e, 0x6d, 0x7e, 0x6d, 0x7f, 0x6d, 0x5f, 0x6d, 0x5f, 0x6d, 0x7f, 0x75, 0xbf, 0x6d, 0x5c, 0x4b, 0xd5, 0x3a, 0xd2, 0x3a, 0xd2, 0x43, 0x12, 0x43, 0x12, 0x42, 0xf2, 0x4a, 0xf2, 0x4a, 0xf2, 0x4a, 0xf2, 0x4b, 0x12, 0x4b, 0x12, 0x4b, 0x12, 0x4b, 0x12, 0x4b, 0x12, 0x4b, 0x12, 0x4b, 0x12, 0x4b, 0x12, 0x43, 0x12, 0x43, 0x13, 0x43, 0x13, 0x3a, 0xf2, 0x3a, 0xb2, 0x32, 0x91, 0x32, 0x91, 0x32, 0x71, 0x3b, 0x13, 0x5c, 0x38, 0x5c, 0x58, 0x53, 0xf8, 0x4b, 0xb7, 0x4b, 0xb7, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x4b, 0xd6, 0x43, 0x55, 0x3a, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x22, 0x10, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xf0, 0x19, 0xae, 0x09, 0x0b, 0x00, 0xca, 0x00, 0xc9, 0x00, 0x68, 0x00, 0x68, 0x00, 0x68, 0x00, 0x67, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0xa8, 0x00, 0xa8, 0x09, 0x2c, 0x09, 0x4d, 0x09, 0x4c, 0x11, 0x6d, 0x3a, 0xf3, 0x3b, 0x14, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0x92, 0x32, 0xb3, 0x3a, 0xf4, 0x43, 0x55, 0x53, 0xb5, 0x53, 0xd5, 0x53, 0xd5, 0x5b, 0xf5, 0x53, 0xb5, 0x43, 0x34, 0x32, 0xb3, 0x2a, 0x72, 0x2a, 0x31, 0x22, 0x10, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x22, 0x31, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x21, 0xcf, 0x19, 0x8d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x09, 0x2c, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x0b, 0x08, 0xeb, 0x08, 0xeb, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xaf, 0x19, 0xaf, 0x19, 0xae, + 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x6d, 0x11, 0x4d, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x2c, 0x09, 0x0b, 0x08, 0xea, 0x00, 0xca, 0x00, 0xea, 0x00, 0xeb, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8d, 0x11, 0x8d, 0x11, 0x6e, 0x11, 0x6e, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0x8e, 0x11, 0x8f, 0x11, 0x8e, 0x11, 0x8f, 0x19, 0xaf, 0x19, 0xaf, 0x21, 0xcf, 0x21, 0xf0, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x2a, 0x72, 0x32, 0x92, 0x32, 0xb3, 0x3a, 0xd3, 0x3a, 0xf3, 0x3b, 0x14, 0x43, 0x35, 0x4b, 0x96, 0x43, 0x96, 0x64, 0x9b, 0x6d, 0x3f, 0x6d, 0x3f, 0x6d, 0x3f, 0x64, 0xfe, 0x5c, 0x5a, 0x54, 0x39, 0x54, 0x18, 0x54, 0x18, 0x54, 0x19, 0x54, 0x19, 0x5c, 0x39, 0x5c, 0x5a, 0x5c, 0x7b, 0x5c, 0x7b, 0x4b, 0xd6, 0x4b, 0xd7, 0x54, 0x38, 0x5c, 0x58, 0x5c, 0x38, 0x5c, 0x7b, 0x6d, 0x5f, 0x6d, 0x3e, 0x6d, 0x7f, 0x6d, 0x7f, 0x6d, 0x7f, 0x6d, 0x7f, 0x6d, 0x7e, 0x64, 0xda, 0x3b, 0x54, 0x3a, 0xd2, 0x3a, 0xf3, 0x3a, 0xd2, 0x3a, 0xf2, 0x3a, 0xf2, 0x42, 0xf2, 0x4a, 0xf2, 0x4b, 0x12, 0x4b, 0x12, 0x4b, 0x12, 0x4b, 0x12, 0x4b, 0x12, 0x4b, 0x13, 0x4b, 0x13, 0x4b, 0x12, 0x4b, 0x13, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x43, 0x33, 0x42, 0xf3, 0x3a, 0xd2, 0x3a, 0xb2, 0x32, 0x91, 0x32, 0x71, 0x43, 0x34, 0x5c, 0x38, 0x5c, 0x58, 0x53, 0xf8, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xb6, 0x43, 0xb7, 0x43, 0xb7, 0x4b, 0x96, 0x43, 0x55, 0x3b, 0x14, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x09, 0x2c, 0x00, 0xea, 0x00, 0xc9, 0x00, 0x88, 0x00, 0x47, 0x00, 0x68, 0x00, 0x68, 0x00, 0x88, 0x00, 0x68, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x11, 0x2c, 0x09, 0x4d, 0x11, 0x4c, 0x09, 0x2c, 0x32, 0xb2, 0x3b, 0x34, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x43, 0x34, 0x4b, 0x95, 0x53, 0xd5, 0x53, 0xd5, 0x5b, 0xf5, 0x53, 0xd5, 0x43, 0x55, 0x32, 0xd3, 0x2a, 0x72, 0x2a, 0x31, 0x22, 0x30, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x29, 0xf0, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xae, 0x19, 0x6d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4d, 0x11, 0x4c, 0x09, 0x4c, 0x11, 0x4d, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x2c, 0x11, 0x2b, 0x09, 0x2b, 0x09, 0x2b, 0x08, 0xeb, 0x08, 0xeb, 0x00, 0xea, 0x00, 0xeb, 0x09, 0x0b, 0x09, 0x0a, 0x08, 0xeb, 0x09, 0x0b, 0x19, 0xce, 0x32, 0x72, 0x2a, 0x31, 0x2a, 0x10, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xaf, 0x19, 0xae, + 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x11, 0x8e, 0x11, 0x6d, 0x11, 0x6d, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x0b, 0x00, 0xea, 0x00, 0xeb, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x6d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0x6e, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xaf, 0x21, 0xcf, 0x21, 0xef, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x32, 0x72, 0x32, 0xb2, 0x32, 0x92, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf4, 0x3b, 0x14, 0x43, 0x55, 0x43, 0x75, 0x3b, 0x14, 0x3a, 0xf4, 0x3b, 0x14, 0x43, 0x96, 0x54, 0x18, 0x5c, 0x5a, 0x54, 0x39, 0x54, 0x19, 0x54, 0x18, 0x53, 0xf8, 0x54, 0x18, 0x54, 0x19, 0x5c, 0x39, 0x5c, 0x39, 0x5c, 0x7b, 0x5c, 0x7b, 0x4b, 0x97, 0x4b, 0x96, 0x4b, 0x96, 0x54, 0x18, 0x5c, 0x58, 0x5c, 0x59, 0x6d, 0x3e, 0x6d, 0x1f, 0x64, 0xfe, 0x6d, 0x3e, 0x6d, 0x7e, 0x75, 0xbf, 0x64, 0xda, 0x32, 0xd2, 0x3a, 0xf2, 0x3a, 0xd3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x3a, 0xf2, 0x43, 0x12, 0x43, 0x12, 0x4a, 0xf2, 0x4a, 0xf2, 0x4a, 0xf2, 0x4a, 0xf2, 0x4b, 0x12, 0x4b, 0x12, 0x4b, 0x13, 0x4b, 0x13, 0x4b, 0x33, 0x53, 0x33, 0x4b, 0x53, 0x4b, 0x53, 0x4b, 0x33, 0x43, 0x13, 0x42, 0xf2, 0x3a, 0xf2, 0x3a, 0xb2, 0x32, 0x91, 0x43, 0x54, 0x5c, 0x38, 0x5c, 0x38, 0x53, 0xf8, 0x4b, 0xd7, 0x4b, 0xb6, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x43, 0x76, 0x3b, 0x55, 0x3b, 0x34, 0x3b, 0x14, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x31, 0x2a, 0x31, 0x22, 0x10, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xaf, 0x19, 0xaf, 0x21, 0xcf, 0x11, 0x6d, 0x08, 0xea, 0x00, 0xea, 0x00, 0xa8, 0x00, 0x68, 0x00, 0x68, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0xa8, 0x00, 0xa8, 0x09, 0x0a, 0x11, 0x4d, 0x09, 0x4c, 0x11, 0x4d, 0x22, 0x30, 0x3b, 0x14, 0x3b, 0x34, 0x3a, 0xf3, 0x32, 0xb2, 0x2a, 0x92, 0x32, 0xb3, 0x3b, 0x14, 0x43, 0x75, 0x4b, 0x95, 0x5b, 0xd5, 0x5b, 0xf5, 0x53, 0xb5, 0x43, 0x75, 0x3a, 0xf3, 0x2a, 0x92, 0x2a, 0x51, 0x22, 0x10, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x29, 0xef, 0x29, 0xef, 0x29, 0xef, 0x29, 0xef, 0x19, 0x8e, 0x11, 0x6d, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x2c, 0x11, 0x4d, 0x09, 0x4d, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x2b, 0x08, 0xeb, 0x09, 0x0a, 0x00, 0xea, 0x00, 0xca, 0x00, 0xca, 0x08, 0xea, 0x08, 0xeb, 0x08, 0xea, 0x11, 0x2c, 0x32, 0x72, 0x2a, 0x31, 0x2a, 0x10, 0x29, 0xf0, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xaf, + 0x19, 0xaf, 0x19, 0xaf, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0x8f, 0x19, 0xaf, 0x19, 0x8e, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x2c, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0x8e, 0x11, 0x8e, 0x11, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xaf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x14, 0x43, 0x55, 0x3b, 0x14, 0x3b, 0x14, 0x43, 0x35, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x35, 0x43, 0x76, 0x4b, 0xd7, 0x4b, 0xd7, 0x53, 0xf8, 0x53, 0xf8, 0x54, 0x18, 0x5c, 0x19, 0x5c, 0x39, 0x5c, 0x5a, 0x64, 0x7b, 0x5c, 0x19, 0x43, 0x76, 0x4b, 0xb6, 0x4b, 0xb6, 0x4b, 0xb7, 0x54, 0x38, 0x64, 0xfb, 0x6d, 0x5f, 0x6d, 0x1f, 0x6d, 0x1f, 0x6d, 0x1e, 0x4b, 0xf7, 0x32, 0xb1, 0x3a, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x3a, 0xd2, 0x3a, 0xf2, 0x42, 0xf2, 0x42, 0xf2, 0x4a, 0xf2, 0x4a, 0xf2, 0x4a, 0xf2, 0x4b, 0x12, 0x4a, 0xf2, 0x4b, 0x13, 0x4b, 0x13, 0x53, 0x33, 0x53, 0x53, 0x53, 0x53, 0x4b, 0x53, 0x4b, 0x33, 0x4b, 0x13, 0x42, 0xf3, 0x42, 0xd3, 0x3a, 0xd2, 0x3a, 0xb2, 0x43, 0x54, 0x54, 0x18, 0x5c, 0x18, 0x54, 0x18, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xb7, 0x43, 0x75, 0x43, 0x55, 0x43, 0x55, 0x43, 0x54, 0x43, 0x34, 0x3b, 0x14, 0x3a, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xcf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x21, 0xcf, 0x19, 0x8e, 0x08, 0xeb, 0x00, 0xea, 0x00, 0x89, 0x00, 0x68, 0x00, 0x68, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0xa8, 0x00, 0xa9, 0x09, 0x2c, 0x09, 0x4d, 0x09, 0x4c, 0x19, 0xaf, 0x3a, 0xd3, 0x43, 0x34, 0x3a, 0xf3, 0x2a, 0xb3, 0x2a, 0x72, 0x32, 0x92, 0x32, 0xb3, 0x3b, 0x14, 0x43, 0x54, 0x53, 0xb5, 0x5b, 0xd5, 0x4b, 0xb5, 0x43, 0x74, 0x3a, 0xf3, 0x32, 0x92, 0x2a, 0x51, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xef, 0x19, 0x8e, 0x11, 0x4d, 0x11, 0x4d, 0x09, 0x4c, 0x09, 0x4c, 0x11, 0x4c, 0x11, 0x4d, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x0b, 0x08, 0xeb, 0x08, 0xea, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x00, 0xca, 0x00, 0xea, 0x09, 0x0b, 0x08, 0xeb, 0x09, 0x2b, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x21, 0xf0, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, + 0x21, 0xaf, 0x21, 0xaf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0x8e, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x11, 0x4c, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x6d, 0x19, 0x8e, 0x19, 0x6e, 0x11, 0x8d, 0x11, 0x6e, 0x11, 0x6d, 0x11, 0x6d, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0x8e, 0x19, 0xaf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x51, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x3a, 0xd3, 0x3a, 0xf4, 0x3b, 0x14, 0x32, 0xb3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x35, 0x43, 0x55, 0x43, 0x55, 0x43, 0x76, 0x43, 0x76, 0x43, 0x96, 0x4b, 0x96, 0x4b, 0xb7, 0x53, 0xf7, 0x54, 0x18, 0x54, 0x19, 0x54, 0x19, 0x5c, 0x3a, 0x5c, 0x7b, 0x5c, 0x39, 0x43, 0x96, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xd7, 0x54, 0x38, 0x6c, 0xdc, 0x6d, 0x5f, 0x6d, 0x1e, 0x53, 0xd7, 0x32, 0xb2, 0x3a, 0xd3, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x3a, 0xd2, 0x3a, 0xf2, 0x42, 0xf2, 0x42, 0xf2, 0x4a, 0xf2, 0x4a, 0xf2, 0x4a, 0xf2, 0x4b, 0x13, 0x4b, 0x13, 0x53, 0x33, 0x53, 0x33, 0x53, 0x33, 0x53, 0x53, 0x4b, 0x53, 0x4b, 0x33, 0x4b, 0x13, 0x43, 0x13, 0x42, 0xf3, 0x42, 0xf3, 0x3a, 0xd2, 0x4b, 0x55, 0x53, 0xf7, 0x54, 0x18, 0x54, 0x18, 0x53, 0xf7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0x96, 0x43, 0x75, 0x4b, 0x96, 0x4b, 0x96, 0x4b, 0x75, 0x4b, 0x75, 0x43, 0x34, 0x3b, 0x14, 0x3a, 0xd3, 0x32, 0xb2, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x21, 0xaf, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xae, 0x08, 0xea, 0x00, 0xca, 0x00, 0xc9, 0x00, 0x88, 0x00, 0x68, 0x00, 0x88, 0x00, 0x88, 0x00, 0xa8, 0x00, 0xa9, 0x09, 0x2b, 0x09, 0x4c, 0x09, 0x2c, 0x11, 0x4d, 0x2a, 0x71, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xb2, 0x2a, 0x72, 0x2a, 0x72, 0x32, 0x92, 0x32, 0xb3, 0x3a, 0xf3, 0x4b, 0x95, 0x53, 0xb4, 0x4b, 0x94, 0x43, 0x34, 0x3a, 0xf3, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x29, 0xf0, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0x6d, 0x11, 0x4d, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x11, 0x4d, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x0b, 0x08, 0xeb, 0x09, 0x2b, 0x08, 0xea, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x00, 0xca, 0x00, 0xea, 0x08, 0xeb, 0x08, 0xeb, 0x00, 0xea, 0x22, 0x10, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, + 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x6e, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x2c, 0x11, 0x2c, 0x11, 0x4d, 0x11, 0x4d, 0x09, 0x4d, 0x09, 0x4d, 0x11, 0x4d, 0x11, 0x6d, 0x19, 0x8e, 0x19, 0x8e, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xcf, 0x21, 0xf0, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x3a, 0xf3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x35, 0x43, 0x55, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x76, 0x4b, 0x96, 0x4b, 0xb7, 0x53, 0xf7, 0x54, 0x18, 0x5c, 0x39, 0x5c, 0x5a, 0x5c, 0x39, 0x4b, 0xd7, 0x4b, 0xb7, 0x53, 0xf7, 0x53, 0xf7, 0x4b, 0xd7, 0x53, 0xf7, 0x54, 0x38, 0x5c, 0x9a, 0x53, 0xd6, 0x32, 0x92, 0x32, 0xd3, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x3a, 0xf2, 0x3a, 0xf2, 0x43, 0x12, 0x43, 0x12, 0x43, 0x12, 0x4b, 0x12, 0x4b, 0x12, 0x4b, 0x33, 0x53, 0x33, 0x53, 0x33, 0x53, 0x53, 0x53, 0x53, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x43, 0x13, 0x43, 0x13, 0x42, 0xf3, 0x3a, 0xd2, 0x4b, 0x74, 0x5c, 0x17, 0x53, 0xf7, 0x54, 0x18, 0x54, 0x18, 0x53, 0xf7, 0x53, 0xf7, 0x4b, 0xb6, 0x4b, 0x96, 0x4b, 0xb6, 0x4b, 0xd7, 0x53, 0xd7, 0x53, 0xd6, 0x4b, 0xd6, 0x4b, 0x95, 0x43, 0x55, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xef, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x21, 0xcf, 0x21, 0xcf, 0x08, 0xeb, 0x00, 0xea, 0x00, 0xa9, 0x00, 0x88, 0x00, 0x88, 0x00, 0xa8, 0x00, 0x88, 0x00, 0xa8, 0x08, 0xea, 0x11, 0x2c, 0x11, 0x4c, 0x09, 0x2c, 0x19, 0xef, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x4b, 0x74, 0x4b, 0x94, 0x43, 0x74, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0x92, 0x2a, 0x51, 0x22, 0x31, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x31, 0x2a, 0x31, 0x29, 0xf0, 0x29, 0xf0, 0x2a, 0x10, 0x29, 0xf0, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0x6d, 0x11, 0x4d, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x2b, 0x09, 0x2b, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x2b, 0x08, 0xeb, 0x08, 0xeb, 0x09, 0x2b, 0x08, 0xeb, 0x00, 0xea, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x08, 0xea, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x2b, 0x09, 0x0b, 0x32, 0xb2, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xef, + 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xaf, 0x21, 0xaf, 0x21, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xae, 0x19, 0x8e, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x6d, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x6e, 0x19, 0x6e, 0x19, 0x6d, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x6d, 0x11, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xaf, 0x19, 0xaf, 0x21, 0xcf, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x10, 0x21, 0xf0, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x32, 0x72, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xb3, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x35, 0x43, 0x55, 0x43, 0x76, 0x43, 0x96, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xd7, 0x53, 0xf8, 0x5c, 0x5a, 0x5c, 0x5a, 0x54, 0x39, 0x4b, 0xb6, 0x54, 0x18, 0x54, 0x38, 0x54, 0x38, 0x54, 0x18, 0x54, 0x38, 0x4b, 0x95, 0x2a, 0x51, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x72, 0x32, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x32, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x3a, 0xf2, 0x3b, 0x12, 0x43, 0x12, 0x43, 0x12, 0x43, 0x12, 0x4b, 0x13, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x53, 0x53, 0x53, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x43, 0x13, 0x43, 0x13, 0x43, 0x13, 0x3a, 0xd2, 0x4b, 0x55, 0x5b, 0xf7, 0x53, 0xf8, 0x54, 0x18, 0x54, 0x18, 0x54, 0x18, 0x4b, 0xd7, 0x4b, 0xb6, 0x4b, 0xb7, 0x53, 0xf7, 0x5c, 0x18, 0x5c, 0x38, 0x5c, 0x38, 0x5c, 0x17, 0x53, 0xf7, 0x4b, 0xb6, 0x43, 0x55, 0x3b, 0x13, 0x32, 0xb3, 0x2a, 0x72, 0x2a, 0x31, 0x2a, 0x11, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x09, 0x2b, 0x01, 0x2b, 0x00, 0xa9, 0x00, 0x68, 0x00, 0xa8, 0x00, 0xa8, 0x00, 0xa8, 0x00, 0xa9, 0x09, 0x2b, 0x11, 0x4c, 0x09, 0x2c, 0x11, 0x8d, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x51, 0x43, 0x34, 0x43, 0x54, 0x3b, 0x14, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0x72, 0x2a, 0x31, 0x2a, 0x30, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x11, 0x2a, 0x51, 0x29, 0xf0, 0x21, 0xef, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0x6d, 0x11, 0x4d, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x2b, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x2b, 0x08, 0xeb, 0x08, 0xeb, 0x00, 0xea, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x00, 0xca, 0x00, 0xea, 0x00, 0xca, 0x00, 0xca, 0x08, 0xeb, 0x08, 0xeb, 0x09, 0x2b, 0x09, 0x2b, 0x2a, 0x50, 0x32, 0xb3, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0x10, 0x21, 0xf0, + 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0xae, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xcf, 0x29, 0xef, 0x29, 0xf0, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x29, 0xef, 0x21, 0xcf, 0x21, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x21, 0xaf, 0x21, 0xcf, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x6d, 0x19, 0x6d, 0x19, 0x6d, 0x19, 0x6e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x10, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x51, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x52, 0x2a, 0x51, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x93, 0x32, 0x93, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x14, 0x43, 0x35, 0x43, 0x55, 0x43, 0x76, 0x4b, 0x97, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xd7, 0x53, 0xd7, 0x53, 0xf8, 0x54, 0x19, 0x5c, 0x5a, 0x53, 0xf7, 0x54, 0x38, 0x5c, 0x59, 0x5c, 0x79, 0x5c, 0x59, 0x43, 0x55, 0x2a, 0x71, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x72, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf2, 0x3a, 0xf2, 0x3b, 0x12, 0x43, 0x12, 0x43, 0x12, 0x43, 0x33, 0x4b, 0x33, 0x4b, 0x53, 0x4b, 0x53, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x43, 0x33, 0x43, 0x13, 0x42, 0xf3, 0x3a, 0xb2, 0x4b, 0x74, 0x5c, 0x17, 0x53, 0xf7, 0x5c, 0x18, 0x54, 0x18, 0x54, 0x18, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xd7, 0x54, 0x18, 0x5c, 0x59, 0x64, 0x9a, 0x6c, 0xba, 0x64, 0x9a, 0x64, 0x58, 0x5c, 0x17, 0x4b, 0xb6, 0x43, 0x55, 0x3a, 0xf3, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x21, 0xcf, 0x21, 0xf0, 0x19, 0x8e, 0x09, 0x0b, 0x09, 0x0b, 0x00, 0xc9, 0x00, 0xa8, 0x00, 0xa8, 0x00, 0xa8, 0x00, 0x88, 0x08, 0xc9, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x0b, 0x22, 0x10, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x22, 0x10, 0x3a, 0xf3, 0x3a, 0xf4, 0x32, 0xd3, 0x32, 0xb3, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x10, 0x21, 0xef, 0x29, 0xef, 0x29, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0x6d, 0x11, 0x4c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x4c, 0x09, 0x2c, 0x11, 0x4c, 0x09, 0x2b, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x08, 0xeb, 0x08, 0xeb, 0x09, 0x0b, 0x09, 0x2c, 0x09, 0x0b, 0x3a, 0xd3, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x22, 0x10, + 0x22, 0x10, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xae, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xef, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x51, 0x32, 0x71, 0x32, 0x71, 0x32, 0xb2, 0x3a, 0xd2, 0x3a, 0xd2, 0x3a, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x71, 0x2a, 0x51, 0x2a, 0x30, 0x21, 0xef, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xae, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x6d, 0x19, 0x6e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x30, 0x2a, 0x10, 0x21, 0xf0, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x32, 0x92, 0x32, 0x72, 0x21, 0xf0, 0x2a, 0x11, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x93, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x35, 0x43, 0x55, 0x43, 0x96, 0x4b, 0x97, 0x4b, 0xd7, 0x53, 0xf8, 0x54, 0x19, 0x5c, 0x39, 0x5c, 0x39, 0x54, 0x18, 0x53, 0xf8, 0x53, 0xf8, 0x54, 0x38, 0x5c, 0x99, 0x64, 0xba, 0x4b, 0xd7, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x91, 0x2a, 0x72, 0x2a, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf2, 0x3b, 0x12, 0x3b, 0x12, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x4b, 0x53, 0x4b, 0x53, 0x4b, 0x53, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x4b, 0x33, 0x43, 0x33, 0x43, 0x13, 0x43, 0x13, 0x3a, 0xd2, 0x4b, 0x34, 0x53, 0xf7, 0x5c, 0x18, 0x54, 0x18, 0x54, 0x38, 0x54, 0x18, 0x4b, 0xd7, 0x4b, 0xd7, 0x53, 0xf7, 0x5c, 0x59, 0x64, 0xbb, 0x6c, 0xfd, 0x75, 0x3e, 0x75, 0x3d, 0x6c, 0xfb, 0x64, 0x99, 0x5c, 0x17, 0x4b, 0xb6, 0x43, 0x34, 0x32, 0xd3, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xd0, 0x19, 0xcf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xae, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xae, 0x21, 0xaf, 0x19, 0xaf, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xf0, 0x19, 0x8d, 0x09, 0x0b, 0x00, 0xea, 0x00, 0xa9, 0x00, 0xa8, 0x00, 0xa8, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xea, 0x09, 0x2c, 0x09, 0x2c, 0x11, 0x4d, 0x32, 0x72, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x31, 0x21, 0xef, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0x93, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x10, 0x21, 0xcf, 0x29, 0xef, 0x29, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xcf, 0x11, 0x6d, 0x11, 0x4d, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0x0b, 0x08, 0xeb, 0x09, 0x0b, 0x00, 0xea, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xaa, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x08, 0xeb, 0x08, 0xeb, 0x09, 0x0b, 0x09, 0x2c, 0x09, 0x2c, 0x21, 0xcf, 0x3b, 0x14, 0x32, 0x92, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x11, + 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xf0, 0x2a, 0x10, 0x2a, 0x31, 0x32, 0x71, 0x32, 0x72, 0x3a, 0xd2, 0x42, 0xf3, 0x43, 0x13, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x4b, 0x54, 0x43, 0x33, 0x43, 0x13, 0x3a, 0xd2, 0x32, 0xb2, 0x3a, 0xd3, 0x32, 0xb2, 0x2a, 0x51, 0x2a, 0x10, 0x29, 0xef, 0x21, 0xaf, 0x21, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8d, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x21, 0xaf, 0x21, 0xd0, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x31, 0x2a, 0x31, 0x22, 0x10, 0x21, 0xef, 0x21, 0xf0, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x51, 0x32, 0x51, 0x2a, 0x51, 0x21, 0xf0, 0x21, 0xf0, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x3a, 0xf4, 0x3b, 0x14, 0x43, 0x35, 0x43, 0x76, 0x4b, 0xd7, 0x53, 0xf8, 0x54, 0x18, 0x54, 0x19, 0x5c, 0x3a, 0x5c, 0x5a, 0x5c, 0x5b, 0x5c, 0x5b, 0x5c, 0x59, 0x5c, 0x59, 0x5c, 0x79, 0x53, 0xf7, 0x2a, 0x92, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x72, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x3a, 0xf2, 0x3b, 0x13, 0x43, 0x33, 0x43, 0x53, 0x43, 0x53, 0x43, 0x33, 0x43, 0x53, 0x43, 0x53, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x4b, 0x33, 0x43, 0x13, 0x42, 0xf3, 0x42, 0xf3, 0x42, 0xd2, 0x43, 0x13, 0x53, 0xd7, 0x5c, 0x38, 0x5c, 0x18, 0x5c, 0x38, 0x54, 0x18, 0x4b, 0xd7, 0x4b, 0xd7, 0x54, 0x18, 0x64, 0x79, 0x6c, 0xfc, 0x7d, 0x7f, 0x85, 0xbf, 0x85, 0xbf, 0x85, 0x7f, 0x75, 0x1d, 0x64, 0x99, 0x53, 0xf7, 0x4b, 0x75, 0x3b, 0x14, 0x32, 0xb2, 0x2a, 0x72, 0x2a, 0x31, 0x2a, 0x10, 0x21, 0xf0, 0x21, 0xf0, 0x19, 0xcf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x21, 0xaf, 0x19, 0xaf, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xef, 0x2a, 0x10, 0x11, 0x6d, 0x09, 0x0b, 0x08, 0xea, 0x00, 0xa9, 0x00, 0x88, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xa9, 0x09, 0x0b, 0x09, 0x2c, 0x11, 0x4c, 0x19, 0x8e, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x21, 0xcf, 0x32, 0x72, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x30, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x72, 0x2a, 0x10, 0x21, 0xcf, 0x29, 0xef, 0x29, 0xef, 0x21, 0xef, 0x21, 0xaf, 0x21, 0xaf, 0x21, 0xaf, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x2c, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0x2c, 0x09, 0x0c, 0x09, 0x0c, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x08, 0xeb, 0x09, 0x0b, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xaa, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x08, 0xea, 0x08, 0xeb, 0x09, 0x2b, 0x09, 0x2b, 0x08, 0xeb, 0x09, 0x0b, 0x32, 0x72, 0x3a, 0xd3, 0x32, 0x92, 0x32, 0x72, 0x2a, 0x51, 0x2a, 0x31, + 0x2a, 0x51, 0x2a, 0x11, 0x2a, 0x10, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xf0, 0x2a, 0x10, 0x2a, 0x50, 0x32, 0x71, 0x32, 0x92, 0x3a, 0xf3, 0x43, 0x33, 0x4b, 0x75, 0x53, 0xb5, 0x5b, 0xf6, 0x64, 0x17, 0x64, 0x37, 0x64, 0x16, 0x5b, 0xf6, 0x53, 0xb5, 0x5b, 0xd6, 0x53, 0xb5, 0x4b, 0x54, 0x43, 0x13, 0x3a, 0xb2, 0x32, 0x71, 0x2a, 0x30, 0x2a, 0x10, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xaf, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x21, 0xaf, 0x21, 0xd0, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x10, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x32, 0x51, 0x2a, 0x51, 0x2a, 0x10, 0x21, 0xaf, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x11, 0x2a, 0x31, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x32, 0xf4, 0x3b, 0x14, 0x43, 0x55, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf8, 0x54, 0x19, 0x54, 0x3a, 0x5c, 0x7a, 0x5c, 0x7b, 0x64, 0x9b, 0x5c, 0x7b, 0x5c, 0x9b, 0x5c, 0x5a, 0x43, 0x34, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xf2, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x53, 0x43, 0x53, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x13, 0x43, 0x13, 0x42, 0xf3, 0x42, 0xd2, 0x3a, 0xb2, 0x53, 0xb6, 0x5c, 0x59, 0x5c, 0x18, 0x5c, 0x38, 0x53, 0xf8, 0x53, 0xd7, 0x53, 0xf7, 0x5c, 0x38, 0x64, 0xba, 0x75, 0x3e, 0x85, 0xbf, 0x96, 0x1f, 0x96, 0x5f, 0x96, 0x3f, 0x8d, 0xdf, 0x75, 0x3d, 0x64, 0x79, 0x53, 0xd6, 0x43, 0x54, 0x32, 0xd3, 0x32, 0x72, 0x2a, 0x51, 0x2a, 0x30, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x21, 0xaf, 0x21, 0xcf, 0x19, 0xaf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xf0, 0x2a, 0x10, 0x11, 0x6d, 0x09, 0x2b, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xc9, 0x00, 0xea, 0x00, 0xca, 0x09, 0x0b, 0x11, 0x4d, 0x11, 0x4d, 0x22, 0x10, 0x2a, 0x71, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x21, 0xcf, 0x2a, 0x71, 0x2a, 0x92, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x10, 0x22, 0x10, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x32, 0x72, 0x2a, 0x30, 0x21, 0xef, 0x21, 0xcf, 0x29, 0xef, 0x21, 0xef, 0x21, 0xaf, 0x21, 0xaf, 0x21, 0xae, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x2c, 0x09, 0x2c, 0x09, 0x2b, 0x11, 0x2c, 0x09, 0x0c, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0x0b, 0x08, 0xea, 0x08, 0xeb, 0x08, 0xeb, 0x09, 0x0b, 0x00, 0xea, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x00, 0xea, 0x08, 0xeb, 0x08, 0xeb, 0x09, 0x2b, 0x08, 0xeb, 0x09, 0x0a, 0x00, 0xea, 0x19, 0xae, 0x43, 0x34, 0x32, 0xd3, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x71, + 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xd0, 0x21, 0xcf, 0x21, 0xef, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x31, 0x32, 0x71, 0x32, 0xb2, 0x43, 0x13, 0x4b, 0x75, 0x5b, 0xd6, 0x64, 0x37, 0x6c, 0x99, 0x74, 0xda, 0x7c, 0xda, 0x74, 0xfa, 0x74, 0xb9, 0x74, 0xda, 0x74, 0xb9, 0x64, 0x58, 0x64, 0x17, 0x53, 0x95, 0x43, 0x14, 0x3a, 0xb2, 0x32, 0x71, 0x2a, 0x30, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0xaf, 0x19, 0xaf, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xf0, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x50, 0x32, 0x51, 0x2a, 0x10, 0x19, 0x8e, 0x21, 0xcf, 0x21, 0xf0, 0x21, 0xf0, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x72, 0x2a, 0x72, 0x32, 0x93, 0x32, 0xd3, 0x3b, 0x35, 0x43, 0x76, 0x4b, 0x96, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xf8, 0x54, 0x19, 0x5c, 0x5a, 0x5c, 0x9a, 0x64, 0x9b, 0x6c, 0xbc, 0x6c, 0xfd, 0x64, 0xbc, 0x54, 0x18, 0x4b, 0x96, 0x3a, 0xf3, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xf2, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x13, 0x42, 0xf2, 0x42, 0xf2, 0x42, 0xd2, 0x3a, 0xb2, 0x4b, 0x75, 0x5c, 0x59, 0x5c, 0x18, 0x5c, 0x38, 0x54, 0x18, 0x53, 0xd7, 0x53, 0xf7, 0x5c, 0x58, 0x64, 0xdb, 0x75, 0x5e, 0x8e, 0x1f, 0x9e, 0xbf, 0xa7, 0x3f, 0xa7, 0x1f, 0x9e, 0x7f, 0x85, 0xbf, 0x74, 0xfb, 0x5c, 0x37, 0x4b, 0x95, 0x3b, 0x14, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x21, 0xaf, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xd0, 0x21, 0xf0, 0x22, 0x10, 0x21, 0xef, 0x11, 0x6d, 0x09, 0x0a, 0x00, 0xa9, 0x00, 0xaa, 0x00, 0xc9, 0x00, 0xca, 0x00, 0xaa, 0x00, 0xaa, 0x11, 0x2c, 0x11, 0x4d, 0x11, 0x6d, 0x22, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x21, 0xcf, 0x2a, 0x31, 0x2a, 0x52, 0x2a, 0x51, 0x22, 0x11, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xf0, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x32, 0x92, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xaf, 0x19, 0x8e, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x2b, 0x11, 0x2c, 0x09, 0x0c, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0x0b, 0x08, 0xeb, 0x08, 0xea, 0x08, 0xeb, 0x08, 0xeb, 0x08, 0xea, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x00, 0xca, 0x00, 0xea, 0x01, 0x0a, 0x00, 0xea, 0x08, 0xea, 0x08, 0xeb, 0x08, 0xeb, 0x00, 0xca, 0x00, 0xea, 0x01, 0x0a, 0x00, 0xc9, 0x32, 0x71, 0x43, 0x55, 0x32, 0xd3, 0x32, 0x93, 0x32, 0x72, + 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x10, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x31, 0x32, 0x72, 0x32, 0xb2, 0x43, 0x34, 0x4b, 0x95, 0x5c, 0x16, 0x6c, 0x78, 0x7c, 0xfa, 0x85, 0x5d, 0x8d, 0x7e, 0x8d, 0x9e, 0x9d, 0xff, 0x8d, 0xbf, 0x85, 0x3d, 0x74, 0xfa, 0x6c, 0x78, 0x64, 0x17, 0x53, 0xb5, 0x43, 0x14, 0x3a, 0xd3, 0x32, 0x72, 0x2a, 0x51, 0x2a, 0x10, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xaf, 0x21, 0xaf, 0x21, 0xae, 0x21, 0xaf, 0x21, 0xaf, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x30, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xf0, 0x21, 0xf0, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x31, 0x2a, 0x52, 0x2a, 0x72, 0x2a, 0x93, 0x32, 0xd4, 0x3b, 0x35, 0x43, 0x76, 0x4b, 0x96, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xd8, 0x53, 0xf8, 0x5c, 0x5a, 0x5c, 0x9a, 0x64, 0x9b, 0x6c, 0xbc, 0x6c, 0xdc, 0x64, 0x7a, 0x5b, 0xf7, 0x53, 0xf7, 0x53, 0xf7, 0x43, 0x34, 0x22, 0x10, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x43, 0x33, 0x43, 0x13, 0x42, 0xf2, 0x3a, 0xd2, 0x3a, 0xd2, 0x3a, 0xd2, 0x4b, 0x54, 0x5c, 0x18, 0x5c, 0x39, 0x5c, 0x39, 0x5c, 0x18, 0x53, 0xf7, 0x53, 0xf7, 0x5c, 0x38, 0x64, 0xbb, 0x7d, 0x7e, 0x8e, 0x3f, 0xa7, 0x1f, 0xaf, 0xbf, 0xb7, 0xdf, 0xaf, 0x5f, 0x96, 0x5f, 0x7d, 0x5e, 0x6c, 0x99, 0x53, 0xf6, 0x43, 0x54, 0x32, 0xf3, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xd0, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x10, 0x19, 0xae, 0x11, 0x6c, 0x00, 0xaa, 0x00, 0x89, 0x00, 0xa9, 0x00, 0xc9, 0x00, 0xc9, 0x00, 0xc9, 0x09, 0x0b, 0x11, 0x4c, 0x11, 0x2c, 0x21, 0xcf, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x10, 0x21, 0xf0, 0x2a, 0x11, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x30, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x92, 0x2a, 0x10, 0x29, 0xef, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xaf, 0x19, 0x8e, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x2c, 0x11, 0x2c, 0x09, 0x0c, 0x11, 0x4c, 0x09, 0x0c, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x08, 0xea, 0x08, 0xea, 0x08, 0xea, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xaa, 0x00, 0xca, 0x08, 0xea, 0x09, 0x0a, 0x00, 0xea, 0x01, 0x0a, 0x00, 0xeb, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0x88, 0x00, 0xa9, 0x00, 0x68, 0x3a, 0xf3, 0x43, 0x55, 0x32, 0xd3, 0x32, 0x93, + 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0x10, 0x2a, 0x31, 0x2a, 0x11, 0x2a, 0x31, 0x2a, 0x72, 0x32, 0xb2, 0x3b, 0x13, 0x4b, 0x75, 0x5b, 0xf6, 0x6c, 0x78, 0x7d, 0x1b, 0x8d, 0x7e, 0x95, 0xff, 0xa6, 0xbf, 0xa6, 0x7f, 0x9e, 0x3f, 0x95, 0xdf, 0x85, 0x5e, 0x74, 0xda, 0x6c, 0x58, 0x5b, 0xf6, 0x4b, 0x75, 0x43, 0x13, 0x32, 0xb2, 0x32, 0x71, 0x2a, 0x30, 0x2a, 0x10, 0x21, 0xf0, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xf0, 0x22, 0x10, 0x29, 0xf0, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x92, 0x32, 0xb2, 0x2a, 0x71, 0x21, 0xaf, 0x11, 0x4d, 0x19, 0x8e, 0x19, 0x8e, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xf0, 0x22, 0x10, 0x22, 0x31, 0x2a, 0x31, 0x2a, 0x72, 0x2a, 0x92, 0x33, 0x14, 0x3b, 0x35, 0x43, 0x55, 0x43, 0x76, 0x4b, 0xb6, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xf8, 0x54, 0x3a, 0x5c, 0x5b, 0x5c, 0x9b, 0x64, 0xbc, 0x64, 0xbb, 0x5c, 0x17, 0x53, 0xf7, 0x54, 0x17, 0x53, 0xf7, 0x54, 0x18, 0x4b, 0x75, 0x21, 0xf0, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd3, 0x3a, 0xf3, 0x3b, 0x13, 0x3b, 0x33, 0x43, 0x33, 0x43, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf2, 0x3a, 0xd2, 0x3a, 0xd2, 0x3a, 0xd2, 0x43, 0x13, 0x53, 0xf7, 0x5c, 0x59, 0x5c, 0x59, 0x5c, 0x38, 0x5c, 0x17, 0x5c, 0x17, 0x5c, 0x38, 0x64, 0x9b, 0x7d, 0x5e, 0x8e, 0x1f, 0xa7, 0x3f, 0xb7, 0xde, 0xbf, 0xde, 0xb7, 0xdf, 0xa7, 0x1f, 0x8e, 0x1f, 0x75, 0x1c, 0x5c, 0x38, 0x4b, 0x95, 0x3b, 0x14, 0x32, 0xb3, 0x2a, 0x72, 0x2a, 0x31, 0x22, 0x10, 0x22, 0x10, 0x21, 0xf0, 0x19, 0xcf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x31, 0x11, 0x6d, 0x00, 0xca, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xa9, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x11, 0x4c, 0x11, 0x4d, 0x09, 0x0c, 0x21, 0xef, 0x2a, 0x31, 0x2a, 0x10, 0x21, 0xcf, 0x21, 0xf0, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x11, 0x22, 0x10, 0x22, 0x10, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x11, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x71, 0x32, 0x92, 0x2a, 0x30, 0x29, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xae, 0x19, 0x8e, 0x19, 0x6d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x2c, 0x09, 0x2c, 0x11, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0x2b, 0x09, 0x0b, 0x08, 0xeb, 0x08, 0xeb, 0x09, 0x0a, 0x08, 0xea, 0x00, 0xaa, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x00, 0xea, 0x09, 0x0a, 0x09, 0x2b, 0x19, 0x8d, 0x29, 0xef, 0x2a, 0x10, 0x2a, 0x31, 0x32, 0x71, 0x32, 0x92, 0x32, 0x92, 0x32, 0x72, 0x32, 0x71, 0x2a, 0x30, 0x43, 0x14, 0x3b, 0x14, 0x32, 0xd3, + 0x43, 0x55, 0x43, 0x35, 0x43, 0x35, 0x3b, 0x14, 0x32, 0xb3, 0x32, 0x72, 0x2a, 0x31, 0x2a, 0x11, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x92, 0x3a, 0xd3, 0x43, 0x34, 0x53, 0xb5, 0x64, 0x37, 0x74, 0xda, 0x85, 0x5d, 0x9e, 0x5f, 0xa6, 0x9f, 0xa6, 0x7f, 0x9e, 0x5f, 0x96, 0x1f, 0x8d, 0x9f, 0x7d, 0x1c, 0x6c, 0x99, 0x5b, 0xf7, 0x53, 0x95, 0x43, 0x34, 0x3a, 0xd3, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x92, 0x32, 0x71, 0x19, 0xae, 0x09, 0x2c, 0x11, 0x6d, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xaf, 0x19, 0xaf, 0x21, 0xcf, 0x21, 0xf0, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x31, 0x2a, 0x72, 0x2a, 0xb3, 0x32, 0xf4, 0x33, 0x15, 0x3b, 0x35, 0x43, 0x55, 0x43, 0x76, 0x43, 0x97, 0x4b, 0xb7, 0x4b, 0xd8, 0x54, 0x39, 0x54, 0x5a, 0x5c, 0x5b, 0x5c, 0x5b, 0x53, 0xf8, 0x4b, 0xb6, 0x4b, 0xd7, 0x53, 0xd7, 0x53, 0xf7, 0x4b, 0xd7, 0x53, 0xd7, 0x43, 0x75, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xf3, 0x3b, 0x13, 0x43, 0x13, 0x43, 0x13, 0x43, 0x13, 0x43, 0x13, 0x43, 0x13, 0x43, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf2, 0x3a, 0xd2, 0x3a, 0xf2, 0x3a, 0xd2, 0x42, 0xf3, 0x5b, 0xf7, 0x64, 0x79, 0x64, 0x79, 0x64, 0x79, 0x5c, 0x38, 0x5c, 0x17, 0x5c, 0x38, 0x64, 0x9a, 0x75, 0x3d, 0x8d, 0xff, 0xa7, 0x3f, 0xb7, 0xff, 0xc7, 0xfe, 0xbf, 0xff, 0xaf, 0x9f, 0x9e, 0x9f, 0x85, 0x7e, 0x6c, 0x99, 0x53, 0xf6, 0x43, 0x55, 0x3a, 0xf3, 0x2a, 0x92, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xd0, 0x19, 0xcf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xf0, 0x21, 0xf0, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x10, 0x09, 0x2b, 0x00, 0xa9, 0x00, 0xc9, 0x00, 0xca, 0x00, 0xca, 0x00, 0xca, 0x00, 0xea, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x4d, 0x11, 0x4c, 0x21, 0xef, 0x2a, 0x30, 0x29, 0xf0, 0x21, 0xcf, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x22, 0x10, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x71, 0x32, 0x71, 0x2a, 0x10, 0x29, 0xef, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0x8e, 0x19, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x2c, 0x09, 0x2c, 0x11, 0x2c, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x2b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x11, 0x0b, 0x11, 0x2c, 0x19, 0x8e, 0x21, 0xcf, 0x29, 0xf0, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x72, 0x32, 0x92, 0x43, 0x55, 0x43, 0x55, + 0x43, 0x76, 0x43, 0x55, 0x43, 0x55, 0x43, 0x76, 0x43, 0x76, 0x43, 0x55, 0x43, 0x14, 0x3b, 0x14, 0x3a, 0xd3, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x32, 0x92, 0x3a, 0xd3, 0x4b, 0x54, 0x53, 0xb6, 0x6c, 0x99, 0x7d, 0x3c, 0x8d, 0x9f, 0x95, 0xdf, 0x95, 0xff, 0x95, 0xff, 0x8d, 0xbf, 0x85, 0x5e, 0x7c, 0xfb, 0x6c, 0x99, 0x5b, 0xf7, 0x53, 0xb5, 0x43, 0x54, 0x3a, 0xf3, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x11, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x72, 0x32, 0x71, 0x11, 0x8e, 0x09, 0x0c, 0x11, 0x4c, 0x11, 0x4d, 0x11, 0x6e, 0x19, 0x8e, 0x19, 0xaf, 0x19, 0xaf, 0x19, 0xaf, 0x21, 0xef, 0x21, 0xf0, 0x22, 0x10, 0x22, 0x31, 0x2a, 0x52, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x15, 0x3b, 0x55, 0x43, 0x76, 0x43, 0x96, 0x4b, 0xb7, 0x4b, 0xf8, 0x54, 0x39, 0x54, 0x39, 0x54, 0x3a, 0x54, 0x19, 0x43, 0x56, 0x43, 0x96, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x53, 0xf8, 0x4b, 0x96, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x3b, 0x13, 0x3b, 0x13, 0x43, 0x13, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xf2, 0x32, 0xd2, 0x3a, 0xd2, 0x3a, 0xf2, 0x3a, 0xf2, 0x3a, 0xf2, 0x53, 0xb6, 0x64, 0x59, 0x64, 0x7a, 0x64, 0x9a, 0x5c, 0x59, 0x5c, 0x17, 0x5c, 0x18, 0x5c, 0x79, 0x6c, 0xfd, 0x85, 0xbf, 0x9e, 0xdf, 0xb7, 0xbf, 0xc7, 0xfe, 0xc7, 0xff, 0xbf, 0xdf, 0xa6, 0xff, 0x8d, 0xdf, 0x74, 0xfc, 0x5c, 0x58, 0x4b, 0x95, 0x3b, 0x14, 0x32, 0xd3, 0x2a, 0x72, 0x2a, 0x51, 0x22, 0x11, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xcf, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xaf, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xef, 0x21, 0xf0, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x31, 0x19, 0xae, 0x08, 0xca, 0x00, 0xa9, 0x00, 0xca, 0x00, 0xea, 0x09, 0x0a, 0x09, 0x2b, 0x11, 0x4d, 0x11, 0x4d, 0x19, 0x4d, 0x19, 0x6d, 0x19, 0x6d, 0x19, 0xcf, 0x21, 0xf0, 0x21, 0xcf, 0x2a, 0x31, 0x2a, 0x31, 0x22, 0x10, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x71, 0x2a, 0x50, 0x29, 0xef, 0x21, 0xef, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xaf, 0x19, 0xae, 0x19, 0x8e, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x2c, 0x11, 0x2c, 0x11, 0x2c, 0x11, 0x2c, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x2b, 0x08, 0xeb, 0x09, 0x0b, 0x19, 0x8d, 0x19, 0x8e, 0x21, 0x8e, 0x21, 0xcf, 0x29, 0xef, 0x21, 0xef, 0x29, 0xef, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x11, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x72, 0x32, 0xb2, 0x43, 0x76, + 0x4b, 0xb7, 0x43, 0x76, 0x43, 0x76, 0x43, 0x55, 0x43, 0x55, 0x43, 0x56, 0x4b, 0x76, 0x4b, 0x76, 0x4b, 0x76, 0x43, 0x76, 0x43, 0x15, 0x32, 0x92, 0x2a, 0x31, 0x2a, 0x72, 0x32, 0x92, 0x3a, 0xd3, 0x4b, 0x55, 0x5c, 0x17, 0x6c, 0x78, 0x74, 0xda, 0x74, 0xfb, 0x7d, 0x1b, 0x7d, 0x3d, 0x7d, 0x3c, 0x74, 0xdb, 0x6c, 0xb9, 0x64, 0x38, 0x5b, 0xf6, 0x4b, 0x95, 0x43, 0x34, 0x3a, 0xd3, 0x32, 0x92, 0x2a, 0x52, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x72, 0x2a, 0x72, 0x32, 0x72, 0x2a, 0x51, 0x19, 0x8d, 0x01, 0x0b, 0x09, 0x2c, 0x09, 0x4c, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x6e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xaf, 0x21, 0xcf, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x31, 0x2a, 0x72, 0x2a, 0xb3, 0x32, 0xb3, 0x32, 0xd4, 0x33, 0x14, 0x3b, 0x35, 0x43, 0x56, 0x43, 0x76, 0x43, 0xb7, 0x4b, 0xf8, 0x54, 0x18, 0x54, 0x39, 0x54, 0x19, 0x43, 0x76, 0x43, 0x55, 0x43, 0x76, 0x43, 0x96, 0x43, 0x97, 0x4b, 0x97, 0x43, 0x96, 0x4b, 0x96, 0x4b, 0xb7, 0x54, 0x18, 0x4b, 0x76, 0x22, 0x10, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf3, 0x3b, 0x13, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x13, 0x43, 0x33, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf2, 0x32, 0xf2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf2, 0x3b, 0x12, 0x3a, 0xd2, 0x4b, 0x54, 0x5c, 0x59, 0x64, 0x9a, 0x64, 0x9b, 0x64, 0x7a, 0x5c, 0x18, 0x54, 0x17, 0x5c, 0x38, 0x64, 0xbb, 0x7d, 0x5f, 0x96, 0x5f, 0xaf, 0x7f, 0xbf, 0xfe, 0xc7, 0xde, 0xbf, 0xff, 0xaf, 0x5f, 0x96, 0x3f, 0x7d, 0x3d, 0x64, 0x79, 0x53, 0xb6, 0x43, 0x54, 0x32, 0xd3, 0x32, 0x92, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x10, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xf0, 0x21, 0xf0, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xf0, 0x09, 0x2c, 0x00, 0xea, 0x00, 0xea, 0x08, 0xea, 0x00, 0xea, 0x11, 0x6d, 0x19, 0x6e, 0x11, 0x4d, 0x11, 0x4d, 0x19, 0x6d, 0x11, 0x8d, 0x11, 0x4c, 0x21, 0xcf, 0x21, 0xcf, 0x2a, 0x31, 0x2a, 0x31, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x29, 0xf0, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x32, 0x71, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xef, 0x29, 0xef, 0x21, 0xcf, 0x29, 0xef, 0x21, 0xcf, 0x21, 0xae, 0x21, 0xae, 0x19, 0x8e, 0x19, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x2c, 0x11, 0x4c, 0x11, 0x2c, 0x09, 0x0b, 0x11, 0x6d, 0x21, 0xae, 0x21, 0xce, 0x21, 0xaf, 0x21, 0xae, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xf0, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x72, 0x32, 0x72, 0x32, 0x72, 0x32, 0xd3, + 0x32, 0xb2, 0x4b, 0xb7, 0x43, 0x97, 0x43, 0x96, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0x96, 0x4b, 0x96, 0x43, 0x55, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x92, 0x43, 0x34, 0x4b, 0x75, 0x53, 0xb6, 0x5b, 0xf7, 0x5c, 0x17, 0x64, 0x37, 0x6c, 0x58, 0x6c, 0x58, 0x64, 0x38, 0x64, 0x17, 0x5b, 0xf6, 0x4b, 0x95, 0x43, 0x34, 0x3a, 0xf3, 0x32, 0xb2, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb3, 0x2a, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0x92, 0x32, 0x93, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x21, 0xcf, 0x11, 0x2c, 0x11, 0x4c, 0x09, 0x2c, 0x11, 0x2c, 0x09, 0x4d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x8e, 0x19, 0x8e, 0x19, 0xaf, 0x21, 0xcf, 0x21, 0xd0, 0x21, 0xf0, 0x22, 0x31, 0x2a, 0x72, 0x2a, 0x93, 0x32, 0xb3, 0x32, 0xd4, 0x32, 0xf4, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x96, 0x4b, 0xb7, 0x4b, 0xf7, 0x54, 0x18, 0x54, 0x39, 0x4b, 0xd7, 0x3b, 0x15, 0x43, 0x35, 0x43, 0x55, 0x43, 0x96, 0x4b, 0xb7, 0x4b, 0xb7, 0x43, 0x97, 0x43, 0x96, 0x4b, 0xb7, 0x4b, 0xb7, 0x54, 0x18, 0x4b, 0xb7, 0x22, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xf3, 0x3a, 0xf3, 0x43, 0x13, 0x43, 0x33, 0x43, 0x13, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x13, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xf2, 0x32, 0xf2, 0x3b, 0x12, 0x3b, 0x13, 0x3a, 0xf2, 0x43, 0x33, 0x5c, 0x38, 0x64, 0xbb, 0x64, 0xbb, 0x64, 0xbb, 0x5c, 0x79, 0x54, 0x17, 0x5c, 0x38, 0x64, 0x9a, 0x6d, 0x1d, 0x85, 0xdf, 0x9e, 0xff, 0xb7, 0xbf, 0xbf, 0xfe, 0xb7, 0xdf, 0xaf, 0x5f, 0x96, 0x5f, 0x85, 0x7e, 0x6c, 0xba, 0x5b, 0xf7, 0x4b, 0x75, 0x3b, 0x13, 0x32, 0xb2, 0x2a, 0x72, 0x2a, 0x31, 0x22, 0x11, 0x21, 0xf0, 0x21, 0xd0, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x19, 0xaf, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xf0, 0x21, 0xf0, 0x2a, 0x10, 0x2a, 0x30, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x31, 0x21, 0xf0, 0x29, 0xf0, 0x19, 0x8e, 0x09, 0x0b, 0x00, 0xea, 0x09, 0x0a, 0x11, 0x2c, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x6d, 0x19, 0x8d, 0x11, 0x6d, 0x09, 0x2c, 0x19, 0xae, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x30, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x21, 0xf0, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x71, 0x32, 0x71, 0x2a, 0x0f, 0x21, 0xcf, 0x29, 0xef, 0x29, 0xcf, 0x21, 0xcf, 0x29, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xce, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x19, 0x6d, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xf0, 0x21, 0xf0, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, + 0x2a, 0x92, 0x32, 0xb3, 0x4b, 0x97, 0x4b, 0xb7, 0x43, 0x96, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xd7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0xb7, 0x4b, 0x96, 0x4b, 0x75, 0x3b, 0x14, 0x3a, 0xf4, 0x3a, 0xf3, 0x43, 0x14, 0x43, 0x55, 0x4b, 0x75, 0x4b, 0x95, 0x53, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x4b, 0x95, 0x43, 0x55, 0x43, 0x34, 0x3a, 0xf3, 0x32, 0xb3, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x52, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0x92, 0x21, 0xcf, 0x09, 0x2c, 0x11, 0x2c, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x6e, 0x11, 0x6e, 0x11, 0x8e, 0x19, 0xae, 0x19, 0xaf, 0x21, 0xd0, 0x21, 0xf0, 0x22, 0x31, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x93, 0x32, 0xb3, 0x32, 0xf4, 0x3b, 0x14, 0x43, 0x55, 0x43, 0x76, 0x4b, 0x96, 0x4b, 0xd7, 0x54, 0x18, 0x4b, 0xf7, 0x43, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x76, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x43, 0x96, 0x4b, 0xb7, 0x4b, 0xd7, 0x53, 0xf8, 0x43, 0x55, 0x22, 0x51, 0x2a, 0x52, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x13, 0x43, 0x13, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x53, 0x43, 0x53, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xf2, 0x3b, 0x13, 0x3b, 0x13, 0x3a, 0xd2, 0x53, 0xd7, 0x6c, 0xfd, 0x64, 0xdc, 0x64, 0xbc, 0x64, 0x9b, 0x5c, 0x59, 0x54, 0x38, 0x5c, 0x59, 0x64, 0xbc, 0x75, 0x5e, 0x8d, 0xff, 0x9e, 0xff, 0xaf, 0x9f, 0xaf, 0xbf, 0xa7, 0x1f, 0x96, 0x5f, 0x85, 0x7f, 0x6c, 0xdb, 0x5c, 0x17, 0x4b, 0x95, 0x43, 0x34, 0x32, 0xd3, 0x2a, 0x92, 0x2a, 0x51, 0x22, 0x11, 0x21, 0xf0, 0x21, 0xd0, 0x21, 0xcf, 0x21, 0xcf, 0x19, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xd0, 0x21, 0xf0, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x11, 0x2a, 0x10, 0x2a, 0x11, 0x22, 0x10, 0x21, 0xd0, 0x21, 0xf0, 0x21, 0xf0, 0x11, 0x4c, 0x08, 0xeb, 0x09, 0x2c, 0x11, 0x4d, 0x19, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x6d, 0x19, 0x8d, 0x11, 0x6d, 0x11, 0x4c, 0x11, 0x2c, 0x21, 0xae, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x10, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xf0, 0x29, 0xf0, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x71, 0x2a, 0x10, 0x29, 0xcf, 0x29, 0xef, 0x29, 0xef, 0x21, 0xcf, 0x29, 0xef, 0x29, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x6d, 0x11, 0x4c, 0x19, 0x6d, 0x19, 0x6d, 0x21, 0xce, 0x21, 0xce, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xf0, 0x21, 0xf0, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, + 0x32, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x4b, 0xd7, 0x54, 0x19, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xf8, 0x4b, 0xd8, 0x4b, 0xd7, 0x4b, 0xd7, 0x4b, 0xb7, 0x53, 0xd7, 0x4b, 0xb7, 0x4b, 0x96, 0x43, 0x14, 0x32, 0xb3, 0x3a, 0xd3, 0x3a, 0xf4, 0x43, 0x14, 0x43, 0x34, 0x43, 0x34, 0x43, 0x14, 0x3a, 0xf4, 0x3a, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x93, 0x32, 0x93, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x93, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0x71, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x09, 0x2c, 0x09, 0x4c, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x6d, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xaf, 0x21, 0xcf, 0x21, 0xf0, 0x22, 0x31, 0x2a, 0x52, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x35, 0x43, 0x75, 0x4b, 0x96, 0x4b, 0xd7, 0x53, 0xd7, 0x4b, 0x96, 0x43, 0x14, 0x43, 0x35, 0x43, 0x55, 0x43, 0x55, 0x43, 0x56, 0x43, 0x76, 0x43, 0x76, 0x43, 0x96, 0x43, 0x76, 0x43, 0x76, 0x43, 0x97, 0x4b, 0xb7, 0x53, 0xf7, 0x53, 0xf8, 0x3b, 0x35, 0x22, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x43, 0x13, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x53, 0x43, 0x53, 0x43, 0x33, 0x43, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x13, 0x32, 0xf3, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x3a, 0xf2, 0x3a, 0xf3, 0x32, 0xb2, 0x3b, 0x34, 0x64, 0x9c, 0x6d, 0x1e, 0x64, 0xbc, 0x64, 0xbb, 0x5c, 0x9b, 0x5c, 0x59, 0x5c, 0x59, 0x64, 0x9b, 0x6c, 0xfd, 0x7d, 0x7f, 0x8d, 0xff, 0x9e, 0x9f, 0x9e, 0xdf, 0x9e, 0x9f, 0x8e, 0x1f, 0x85, 0x7f, 0x6c, 0xbb, 0x5c, 0x38, 0x4b, 0xb6, 0x43, 0x54, 0x32, 0xf3, 0x32, 0x92, 0x2a, 0x52, 0x2a, 0x31, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xd0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xd0, 0x21, 0xf0, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x11, 0x22, 0x10, 0x21, 0xd0, 0x21, 0xcf, 0x21, 0xcf, 0x2a, 0x10, 0x11, 0x4d, 0x11, 0x2c, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4d, 0x09, 0x2c, 0x11, 0x2c, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x6d, 0x11, 0x4c, 0x11, 0x2c, 0x11, 0x6d, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x10, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x10, 0x21, 0xef, 0x29, 0xef, 0x29, 0xef, 0x21, 0xcf, 0x29, 0xef, 0x2a, 0x10, 0x22, 0x10, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xae, 0x19, 0x8e, 0x19, 0x6d, 0x19, 0x8e, 0x21, 0xce, 0x21, 0xaf, 0x21, 0xae, 0x21, 0xae, 0x21, 0x8e, 0x21, 0xae, 0x21, 0x8e, 0x21, 0xae, 0x21, 0xce, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xf0, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x52, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x92, + 0x2a, 0x72, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x93, 0x3b, 0x35, 0x54, 0x5a, 0x54, 0x39, 0x54, 0x18, 0x54, 0x19, 0x4c, 0x19, 0x54, 0x18, 0x4b, 0xf8, 0x4b, 0xd8, 0x54, 0x18, 0x54, 0x18, 0x53, 0xf8, 0x53, 0xd7, 0x4b, 0xb7, 0x53, 0xb7, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3a, 0xf4, 0x3a, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0x93, 0x32, 0x93, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xd4, 0x32, 0xf4, 0x3a, 0xf4, 0x3a, 0xf4, 0x32, 0xf4, 0x32, 0xd3, 0x32, 0xd3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x2a, 0x51, 0x00, 0xeb, 0x09, 0x2c, 0x09, 0x2c, 0x11, 0x4c, 0x11, 0x2c, 0x09, 0x2c, 0x11, 0x4c, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x6e, 0x19, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0xaf, 0x21, 0xcf, 0x21, 0xf0, 0x22, 0x11, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x55, 0x4b, 0x96, 0x4b, 0xb7, 0x4b, 0xd7, 0x43, 0x55, 0x43, 0x14, 0x43, 0x34, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x43, 0x76, 0x43, 0x56, 0x3b, 0x56, 0x43, 0x56, 0x43, 0x76, 0x43, 0x76, 0x4b, 0x96, 0x4b, 0xb7, 0x53, 0xf8, 0x4b, 0xb7, 0x32, 0xb3, 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0xb2, 0x32, 0xb3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x43, 0x13, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x53, 0x43, 0x33, 0x43, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x13, 0x32, 0xf2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd2, 0x32, 0xd3, 0x32, 0x91, 0x5c, 0x59, 0x75, 0x7f, 0x64, 0xfe, 0x64, 0xfd, 0x64, 0xdd, 0x64, 0xbc, 0x5c, 0x5a, 0x5c, 0x59, 0x64, 0x9a, 0x6c, 0xfd, 0x7d, 0x7f, 0x85, 0xdf, 0x8d, 0xff, 0x8d, 0xff, 0x85, 0xbf, 0x7d, 0x3e, 0x6c, 0xba, 0x5c, 0x37, 0x53, 0x96, 0x43, 0x34, 0x32, 0xf3, 0x32, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x22, 0x31, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xd0, 0x21, 0xcf, 0x21, 0xd0, 0x21, 0xd0, 0x21, 0xd0, 0x21, 0xf0, 0x21, 0xf0, 0x22, 0x10, 0x22, 0x11, 0x2a, 0x31, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x2a, 0x10, 0x19, 0x8e, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4d, 0x09, 0x4c, 0x11, 0x4c, 0x11, 0x2c, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x09, 0x2c, 0x11, 0x4c, 0x21, 0xcf, 0x2a, 0x10, 0x22, 0x10, 0x2a, 0x10, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x10, 0x29, 0xef, 0x29, 0xef, 0x29, 0xef, 0x29, 0xcf, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x10, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xae, 0x21, 0xcf, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0x8e, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0x8e, 0x21, 0xae, 0x21, 0xaf, 0x21, 0xaf, 0x21, 0xaf, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x30, 0x2a, 0x11, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x52, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, + 0x2a, 0x71, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x3b, 0x14, 0x54, 0x3a, 0x5c, 0x5b, 0x5c, 0x5a, 0x54, 0x19, 0x54, 0x1a, 0x54, 0x19, 0x54, 0x19, 0x54, 0x39, 0x54, 0x19, 0x54, 0x19, 0x54, 0x19, 0x54, 0x18, 0x53, 0xf8, 0x53, 0xf7, 0x43, 0x55, 0x3a, 0xf4, 0x32, 0xd4, 0x3a, 0xf4, 0x3a, 0xf4, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x14, 0x43, 0x34, 0x43, 0x34, 0x43, 0x54, 0x3b, 0x14, 0x3a, 0xf4, 0x3b, 0x14, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x32, 0x92, 0x19, 0x8e, 0x01, 0x0b, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x4c, 0x09, 0x2c, 0x09, 0x2c, 0x11, 0x4c, 0x11, 0x4d, 0x11, 0x6d, 0x11, 0x6d, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xaf, 0x19, 0xcf, 0x21, 0xd0, 0x22, 0x11, 0x2a, 0x31, 0x2a, 0x52, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x3b, 0x14, 0x3b, 0x34, 0x43, 0x35, 0x4b, 0x96, 0x4b, 0xb7, 0x4b, 0x96, 0x3a, 0xf3, 0x43, 0x14, 0x43, 0x34, 0x43, 0x35, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x75, 0x43, 0x55, 0x43, 0x76, 0x4b, 0x96, 0x4b, 0xb7, 0x54, 0x18, 0x4b, 0xd7, 0x2a, 0xb3, 0x2a, 0x72, 0x2a, 0xb2, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x43, 0x13, 0x43, 0x33, 0x43, 0x33, 0x43, 0x53, 0x43, 0x53, 0x43, 0x53, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x32, 0xf2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xb2, 0x43, 0x54, 0x6c, 0xfc, 0x75, 0x7f, 0x64, 0xfe, 0x64, 0xde, 0x64, 0xde, 0x5c, 0x7b, 0x54, 0x39, 0x5c, 0x59, 0x64, 0x9a, 0x6c, 0xdc, 0x75, 0x3e, 0x7d, 0x7f, 0x7d, 0x7f, 0x7d, 0x5e, 0x74, 0xfc, 0x64, 0x79, 0x53, 0xf7, 0x4b, 0x95, 0x43, 0x34, 0x3a, 0xf3, 0x32, 0x93, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x11, 0x22, 0x10, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x22, 0x10, 0x22, 0x10, 0x22, 0x31, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xf0, 0x2a, 0x51, 0x21, 0xcf, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x2c, 0x11, 0x4c, 0x11, 0x4c, 0x11, 0x2c, 0x11, 0x4c, 0x11, 0x4c, 0x21, 0xcf, 0x2a, 0x10, 0x21, 0xf0, 0x21, 0xd0, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x30, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x29, 0xef, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x10, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0x8e, 0x19, 0xae, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x2a, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, + 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x72, 0x32, 0xb3, 0x32, 0xd3, 0x3b, 0x14, 0x4b, 0xb7, 0x54, 0x3a, 0x5c, 0x7b, 0x54, 0x3a, 0x54, 0x19, 0x54, 0x3a, 0x54, 0x3a, 0x54, 0x3a, 0x54, 0x39, 0x54, 0x3a, 0x54, 0x3a, 0x54, 0x39, 0x54, 0x39, 0x5c, 0x18, 0x4b, 0xb7, 0x43, 0x55, 0x32, 0xf4, 0x32, 0xd4, 0x32, 0xd3, 0x3a, 0xf3, 0x32, 0xf3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xd4, 0x3a, 0xf4, 0x3b, 0x34, 0x43, 0x55, 0x43, 0x55, 0x4b, 0x55, 0x4b, 0x75, 0x43, 0x55, 0x3b, 0x34, 0x3b, 0x34, 0x3b, 0x34, 0x43, 0x35, 0x43, 0x55, 0x19, 0xae, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x0c, 0x09, 0x0b, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x09, 0x2b, 0x09, 0x2c, 0x11, 0x2c, 0x11, 0x4d, 0x11, 0x4d, 0x19, 0x6d, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x21, 0xaf, 0x21, 0xf0, 0x22, 0x10, 0x2a, 0x31, 0x2a, 0x52, 0x2a, 0x92, 0x32, 0x93, 0x32, 0xd3, 0x32, 0xf4, 0x3b, 0x14, 0x43, 0x55, 0x43, 0x96, 0x4b, 0xb6, 0x43, 0x55, 0x3a, 0xd3, 0x3a, 0xf4, 0x43, 0x14, 0x43, 0x34, 0x43, 0x35, 0x3b, 0x35, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x35, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x55, 0x43, 0x56, 0x43, 0x96, 0x4b, 0xb7, 0x4b, 0xd7, 0x53, 0xf8, 0x4b, 0x96, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xd3, 0x32, 0xd3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x13, 0x43, 0x33, 0x43, 0x33, 0x43, 0x33, 0x43, 0x53, 0x43, 0x53, 0x43, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3a, 0xf2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xd3, 0x32, 0xf4, 0x33, 0x14, 0x54, 0x39, 0x75, 0x5f, 0x65, 0x1f, 0x64, 0xff, 0x64, 0xff, 0x64, 0xde, 0x5c, 0x7a, 0x54, 0x38, 0x5c, 0x59, 0x64, 0x79, 0x6c, 0x9a, 0x6c, 0xdc, 0x74, 0xfc, 0x6c, 0xdb, 0x64, 0x79, 0x5c, 0x38, 0x53, 0xd6, 0x4b, 0x75, 0x43, 0x34, 0x3a, 0xd3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x31, 0x22, 0x31, 0x22, 0x31, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x11, 0x22, 0x11, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xd0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x10, 0x09, 0x2c, 0x11, 0x4c, 0x19, 0x6d, 0x11, 0x4d, 0x11, 0x4c, 0x11, 0x2c, 0x11, 0x2c, 0x11, 0x2c, 0x11, 0x4c, 0x11, 0x2c, 0x11, 0x4c, 0x09, 0x2c, 0x19, 0xae, 0x22, 0x10, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xf0, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x30, 0x2a, 0x10, 0x2a, 0x10, 0x21, 0xef, 0x32, 0xb2, 0x2a, 0x30, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x10, 0x21, 0xcf, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0x8e, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0x8e, 0x21, 0x8e, 0x19, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x21, 0xaf, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xf0, 0x21, 0xf0, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x71, 0x32, 0x92, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0xb2, 0x32, 0x92, + 0x2a, 0x72, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0x92, 0x32, 0x92, 0x32, 0xb3, 0x3a, 0xf4, 0x3b, 0x34, 0x43, 0x35, 0x43, 0x96, 0x5c, 0x5a, 0x5c, 0x9d, 0x5c, 0x5b, 0x5c, 0x3a, 0x54, 0x5b, 0x5c, 0x5a, 0x5c, 0x3a, 0x5c, 0x5b, 0x5c, 0x5b, 0x5c, 0x5a, 0x5c, 0x39, 0x5c, 0x39, 0x53, 0xf8, 0x43, 0x56, 0x3a, 0xd4, 0x3a, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x14, 0x3b, 0x35, 0x43, 0x55, 0x4b, 0x96, 0x4b, 0xb5, 0x53, 0x95, 0x4b, 0x95, 0x4b, 0x75, 0x43, 0x55, 0x43, 0x75, 0x43, 0x75, 0x3b, 0x14, 0x21, 0xef, 0x09, 0x2b, 0x01, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0b, 0x09, 0x0c, 0x09, 0x0c, 0x09, 0x2c, 0x09, 0x0b, 0x09, 0x0c, 0x09, 0x2c, 0x11, 0x4d, 0x11, 0x4d, 0x11, 0x6d, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x21, 0xaf, 0x21, 0xcf, 0x22, 0x10, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x72, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x3b, 0x14, 0x3b, 0x55, 0x43, 0x96, 0x43, 0x55, 0x32, 0xb2, 0x3a, 0xd3, 0x3a, 0xf4, 0x3b, 0x14, 0x43, 0x34, 0x43, 0x54, 0x43, 0x55, 0x43, 0x55, 0x3b, 0x55, 0x3b, 0x35, 0x3b, 0x35, 0x3b, 0x55, 0x3b, 0x55, 0x43, 0x55, 0x43, 0x76, 0x4b, 0x96, 0x4b, 0xb7, 0x53, 0xd7, 0x53, 0xd8, 0x3b, 0x35, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xd3, 0x32, 0xf3, 0x32, 0xf3, 0x32, 0xf3, 0x3b, 0x13, 0x3b, 0x13, 0x3b, 0x33, 0x43, 0x53, 0x3b, 0x53, 0x3b, 0x53, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x33, 0x3b, 0x13, 0x32, 0xd2, 0x32, 0xb2, 0x2a, 0x92, 0x2a, 0x92, 0x2a, 0x92, 0x32, 0xb3, 0x32, 0xf4, 0x3b, 0x14, 0x3b, 0x14, 0x43, 0x75, 0x5c, 0x9c, 0x6d, 0x3f, 0x64, 0xff, 0x64, 0xff, 0x64, 0xde, 0x64, 0xde, 0x5c, 0x9b, 0x54, 0x38, 0x54, 0x18, 0x5c, 0x39, 0x5c, 0x39, 0x5c, 0x58, 0x5c, 0x38, 0x5c, 0x18, 0x53, 0xd7, 0x4b, 0xb6, 0x43, 0x75, 0x3b, 0x34, 0x3a, 0xf3, 0x32, 0xb3, 0x32, 0xb3, 0x2a, 0x92, 0x2a, 0x72, 0x2a, 0x72, 0x2a, 0x51, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x11, 0x2a, 0x11, 0x21, 0xf0, 0x21, 0xf0, 0x22, 0x10, 0x21, 0xd0, 0x21, 0xcf, 0x21, 0xd0, 0x21, 0xd0, 0x2a, 0x10, 0x2a, 0x11, 0x2a, 0x31, 0x21, 0xae, 0x19, 0x6d, 0x19, 0x8d, 0x11, 0x6d, 0x11, 0x4d, 0x11, 0x2c, 0x11, 0x2c, 0x09, 0x2c, 0x09, 0x2c, 0x11, 0x2c, 0x11, 0x2c, 0x09, 0x2c, 0x11, 0x2c, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xf0, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xef, 0x2a, 0x10, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x31, 0x2a, 0x10, 0x2a, 0x10, 0x32, 0x71, 0x43, 0x75, 0x32, 0xb2, 0x2a, 0x51, 0x2a, 0x10, 0x21, 0xcf, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0x8e, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x21, 0xae, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0x8e, 0x19, 0xae, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xaf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xef, 0x21, 0xcf, 0x21, 0xcf, 0x21, 0xf0, 0x22, 0x10, 0x22, 0x10, 0x2a, 0x31, 0x2a, 0x31, 0x2a, 0x51, 0x2a, 0x72, 0x32, 0x92, 0x32, 0x92, 0x32, 0x92, 0x2a, 0x72, +#endif +#if LV_COLOR_DEPTH == 32 + /*Pixel format: Fix 0xFF: 8 bit, Red: 8 bit, Green: 8 bit, Blue: 8 bit*/ + 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, + 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, + 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x80, 0x49, 0xff, 0xb7, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x80, 0x49, 0xff, 0xb7, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb6, 0x7f, 0x48, 0xff, 0xb6, 0x7f, 0x48, 0xff, 0xb6, 0x7f, 0x48, 0xff, 0xb6, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb6, 0x7f, 0x48, 0xff, 0xb6, 0x7f, 0x48, 0xff, 0xb6, 0x7f, 0x48, 0xff, 0xb6, 0x7f, 0x48, 0xff, 0xb6, 0x7f, 0x48, 0xff, 0xb6, 0x7f, 0x48, 0xff, 0xb6, 0x7f, 0x48, 0xff, 0xb6, 0x7f, 0x48, 0xff, 0xb6, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, + 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb6, 0x7f, 0x48, 0xff, 0xb6, 0x7f, 0x48, 0xff, 0xb6, 0x7f, 0x48, 0xff, 0xb6, 0x7f, 0x48, 0xff, 0xb6, 0x7f, 0x48, 0xff, 0xb6, 0x7f, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7f, 0x48, 0xff, 0xb6, 0x7f, 0x48, 0xff, 0xb6, 0x7f, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7f, 0x48, 0xff, 0xb6, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, + 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb6, 0x7f, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7f, 0x48, 0xff, 0xb6, 0x7f, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, + 0xb7, 0x80, 0x49, 0xff, 0xb7, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x80, 0x49, 0xff, + 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, + 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb5, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb5, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb5, 0x7e, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7e, 0x47, 0xff, 0xb5, 0x7e, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7e, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7e, 0x47, 0xff, 0xb5, 0x7e, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, + 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, + 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x81, 0x4a, 0xff, 0xb8, 0x81, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, + 0xb7, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x81, 0x49, 0xff, 0xb8, 0x81, 0x4a, 0xff, 0xb9, 0x82, 0x4a, 0xff, 0xb9, 0x82, 0x4a, 0xff, 0xb9, 0x82, 0x4a, 0xff, 0xb9, 0x81, 0x4a, 0xff, 0xb9, 0x81, 0x4a, 0xff, 0xb9, 0x81, 0x4a, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, + 0xb6, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x81, 0x49, 0xff, 0xb9, 0x81, 0x49, 0xff, 0xb9, 0x81, 0x49, 0xff, 0xb8, 0x83, 0x4a, 0xff, 0xb8, 0x83, 0x4b, 0xff, 0xb9, 0x82, 0x4b, 0xff, 0xb9, 0x82, 0x4b, 0xff, 0xb9, 0x83, 0x4b, 0xff, 0xb9, 0x82, 0x4a, 0xff, 0xb9, 0x82, 0x4a, 0xff, 0xb9, 0x81, 0x4a, 0xff, 0xb9, 0x81, 0x4a, 0xff, 0xb9, 0x81, 0x4a, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, + 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x81, 0x49, 0xff, 0xb9, 0x81, 0x4a, 0xff, 0xb9, 0x81, 0x4a, 0xff, 0xb9, 0x81, 0x4a, 0xff, 0xb9, 0x82, 0x4b, 0xff, 0xb9, 0x83, 0x4c, 0xff, 0xb9, 0x83, 0x4c, 0xff, 0xb9, 0x83, 0x4c, 0xff, 0xb9, 0x83, 0x4c, 0xff, 0xb9, 0x83, 0x4c, 0xff, 0xb9, 0x83, 0x4c, 0xff, 0xb9, 0x83, 0x4b, 0xff, 0xb9, 0x83, 0x4b, 0xff, 0xb9, 0x83, 0x4b, 0xff, 0xb9, 0x81, 0x4a, 0xff, 0xb9, 0x81, 0x4a, 0xff, 0xb9, 0x81, 0x49, 0xff, 0xb9, 0x81, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, + 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x81, 0x49, 0xff, 0xb9, 0x81, 0x4a, 0xff, 0xb9, 0x82, 0x4a, 0xff, 0xb9, 0x82, 0x4a, 0xff, 0xb9, 0x82, 0x4b, 0xff, 0xb9, 0x83, 0x4c, 0xff, 0xb9, 0x83, 0x4d, 0xff, 0xb9, 0x83, 0x4d, 0xff, 0xb9, 0x83, 0x4d, 0xff, 0xb9, 0x83, 0x4d, 0xff, 0xb9, 0x83, 0x4d, 0xff, 0xb9, 0x83, 0x4c, 0xff, 0xb9, 0x83, 0x4c, 0xff, 0xb9, 0x83, 0x4c, 0xff, 0xb9, 0x83, 0x4b, 0xff, 0xb9, 0x83, 0x4b, 0xff, 0xb9, 0x82, 0x4a, 0xff, 0xb9, 0x82, 0x4a, 0xff, 0xb9, 0x81, 0x4a, 0xff, 0xb9, 0x81, 0x4a, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, + 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x81, 0x49, 0xff, 0xb9, 0x81, 0x4a, 0xff, 0xb9, 0x82, 0x4a, 0xff, 0xb9, 0x81, 0x4a, 0xff, 0xb9, 0x82, 0x4b, 0xff, 0xb9, 0x83, 0x4c, 0xff, 0xb9, 0x83, 0x4d, 0xff, 0xb9, 0x84, 0x4e, 0xff, 0xb9, 0x83, 0x4e, 0xff, 0xb9, 0x84, 0x4f, 0xff, 0xb9, 0x84, 0x4e, 0xff, 0xb9, 0x84, 0x4f, 0xff, 0xb9, 0x84, 0x4e, 0xff, 0xb9, 0x84, 0x4e, 0xff, 0xb9, 0x84, 0x4c, 0xff, 0xb9, 0x84, 0x4c, 0xff, 0xb9, 0x84, 0x4c, 0xff, 0xb9, 0x83, 0x4b, 0xff, 0xb9, 0x83, 0x4b, 0xff, 0xb9, 0x82, 0x4b, 0xff, 0xb9, 0x82, 0x4b, 0xff, 0xb9, 0x81, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x45, 0xff, 0xb4, 0x7c, 0x45, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7c, 0x45, 0xff, 0xb4, 0x7c, 0x45, 0xff, 0xb4, 0x7c, 0x45, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, + 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xba, 0x82, 0x4a, 0xff, 0xb9, 0x83, 0x4b, 0xff, 0xb9, 0x84, 0x4c, 0xff, 0xb9, 0x84, 0x4d, 0xff, 0xba, 0x84, 0x4e, 0xff, 0xba, 0x84, 0x4f, 0xff, 0xba, 0x84, 0x4f, 0xff, 0xba, 0x84, 0x4f, 0xff, 0xba, 0x84, 0x4f, 0xff, 0xba, 0x84, 0x4f, 0xff, 0xba, 0x84, 0x4f, 0xff, 0xba, 0x84, 0x4f, 0xff, 0xba, 0x84, 0x4e, 0xff, 0xba, 0x84, 0x4c, 0xff, 0xb9, 0x84, 0x4c, 0xff, 0xb9, 0x84, 0x4c, 0xff, 0xb9, 0x83, 0x4b, 0xff, 0xb9, 0x81, 0x4a, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7c, 0x45, 0xff, 0xb4, 0x7c, 0x45, 0xff, 0xb4, 0x7c, 0x45, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, + 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x82, 0x4a, 0xff, 0xba, 0x82, 0x4a, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xba, 0x83, 0x4b, 0xff, 0xb9, 0x84, 0x4c, 0xff, 0xb9, 0x84, 0x4d, 0xff, 0xba, 0x84, 0x4e, 0xff, 0xba, 0x84, 0x4f, 0xff, 0xba, 0x84, 0x50, 0xff, 0xba, 0x84, 0x50, 0xff, 0xba, 0x84, 0x50, 0xff, 0xba, 0x84, 0x50, 0xff, 0xba, 0x84, 0x50, 0xff, 0xba, 0x84, 0x50, 0xff, 0xba, 0x84, 0x4f, 0xff, 0xba, 0x84, 0x4d, 0xff, 0xba, 0x84, 0x4d, 0xff, 0xb9, 0x84, 0x4d, 0xff, 0xba, 0x82, 0x4b, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xba, 0x81, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb3, 0x7c, 0x46, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7c, 0x45, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb5, 0x7e, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, + 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb9, 0x7f, 0x48, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x81, 0x49, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xba, 0x82, 0x4a, 0xff, 0xba, 0x83, 0x4b, 0xff, 0xba, 0x85, 0x4b, 0xff, 0xba, 0x85, 0x4c, 0xff, 0xba, 0x85, 0x4d, 0xff, 0xba, 0x85, 0x4f, 0xff, 0xba, 0x85, 0x50, 0xff, 0xba, 0x85, 0x50, 0xff, 0xba, 0x85, 0x50, 0xff, 0xba, 0x85, 0x50, 0xff, 0xba, 0x85, 0x50, 0xff, 0xba, 0x85, 0x50, 0xff, 0xba, 0x85, 0x50, 0xff, 0xba, 0x85, 0x4f, 0xff, 0xba, 0x85, 0x4d, 0xff, 0xba, 0x84, 0x4d, 0xff, 0xba, 0x83, 0x4b, 0xff, 0xba, 0x81, 0x4b, 0xff, 0xba, 0x82, 0x4b, 0xff, 0xba, 0x81, 0x4b, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb4, 0x7c, 0x45, 0xff, 0xb3, 0x7b, 0x46, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, + 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x49, 0xff, 0xb6, 0x7e, 0x49, 0xff, 0xb6, 0x7e, 0x49, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb9, 0x7f, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xba, 0x82, 0x4a, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xba, 0x82, 0x4b, 0xff, 0xba, 0x84, 0x4b, 0xff, 0xba, 0x85, 0x4c, 0xff, 0xba, 0x85, 0x4c, 0xff, 0xba, 0x85, 0x4d, 0xff, 0xba, 0x85, 0x4f, 0xff, 0xba, 0x85, 0x51, 0xff, 0xba, 0x85, 0x51, 0xff, 0xba, 0x85, 0x51, 0xff, 0xba, 0x85, 0x51, 0xff, 0xba, 0x85, 0x51, 0xff, 0xba, 0x85, 0x50, 0xff, 0xba, 0x85, 0x4f, 0xff, 0xba, 0x85, 0x4d, 0xff, 0xba, 0x84, 0x4c, 0xff, 0xba, 0x82, 0x4c, 0xff, 0xba, 0x82, 0x4b, 0xff, 0xba, 0x82, 0x4b, 0xff, 0xba, 0x82, 0x4b, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, + 0xb5, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7f, 0x49, 0xff, 0xb6, 0x7f, 0x49, 0xff, 0xb6, 0x7e, 0x49, 0xff, 0xb6, 0x7e, 0x49, 0xff, 0xb6, 0x7e, 0x49, 0xff, 0xb6, 0x7e, 0x49, 0xff, 0xb6, 0x7e, 0x49, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xbb, 0x81, 0x49, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xbb, 0x82, 0x4a, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xbb, 0x82, 0x4b, 0xff, 0xbb, 0x83, 0x4b, 0xff, 0xbb, 0x83, 0x4c, 0xff, 0xbb, 0x84, 0x4c, 0xff, 0xbb, 0x85, 0x4d, 0xff, 0xba, 0x86, 0x4f, 0xff, 0xba, 0x86, 0x4f, 0xff, 0xbb, 0x86, 0x4f, 0xff, 0xbb, 0x86, 0x50, 0xff, 0xbb, 0x86, 0x50, 0xff, 0xbb, 0x86, 0x4f, 0xff, 0xba, 0x86, 0x4f, 0xff, 0xba, 0x85, 0x4e, 0xff, 0xbb, 0x84, 0x4c, 0xff, 0xbb, 0x84, 0x4c, 0xff, 0xbb, 0x82, 0x4c, 0xff, 0xbb, 0x82, 0x4c, 0xff, 0xbb, 0x82, 0x4b, 0xff, 0xbb, 0x82, 0x4b, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xb2, 0x7a, 0x44, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7c, 0x45, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, + 0xb5, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb7, 0x7f, 0x47, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb6, 0x7e, 0x49, 0xff, 0xb6, 0x7e, 0x49, 0xff, 0xb6, 0x7e, 0x49, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb9, 0x7f, 0x48, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbb, 0x81, 0x49, 0xff, 0xbb, 0x81, 0x49, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xbb, 0x82, 0x4a, 0xff, 0xbb, 0x83, 0x4b, 0xff, 0xbb, 0x83, 0x4b, 0xff, 0xbb, 0x83, 0x4b, 0xff, 0xbb, 0x84, 0x4c, 0xff, 0xbb, 0x86, 0x4c, 0xff, 0xbb, 0x86, 0x4e, 0xff, 0xbb, 0x86, 0x4e, 0xff, 0xbb, 0x86, 0x4e, 0xff, 0xbb, 0x86, 0x4e, 0xff, 0xba, 0x86, 0x4e, 0xff, 0xba, 0x85, 0x4d, 0xff, 0xba, 0x83, 0x4c, 0xff, 0xbb, 0x83, 0x4c, 0xff, 0xbb, 0x83, 0x4c, 0xff, 0xbb, 0x82, 0x4c, 0xff, 0xbb, 0x82, 0x4b, 0xff, 0xba, 0x81, 0x4b, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xb2, 0x7a, 0x44, 0xff, 0xb2, 0x7a, 0x44, 0xff, 0xb2, 0x7a, 0x44, 0xff, 0xb2, 0x7a, 0x44, 0xff, 0xb2, 0x7a, 0x44, 0xff, 0xb2, 0x7a, 0x44, 0xff, 0xb2, 0x7a, 0x44, 0xff, 0xb2, 0x7a, 0x44, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xb3, 0x7b, 0x44, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, + 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb8, 0x80, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xbb, 0x82, 0x4a, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xbb, 0x82, 0x4a, 0xff, 0xbb, 0x82, 0x4b, 0xff, 0xbb, 0x82, 0x4b, 0xff, 0xbb, 0x83, 0x4b, 0xff, 0xbb, 0x83, 0x4b, 0xff, 0xbb, 0x83, 0x4b, 0xff, 0xbb, 0x83, 0x4c, 0xff, 0xbb, 0x84, 0x4c, 0xff, 0xbb, 0x84, 0x4c, 0xff, 0xbb, 0x85, 0x4d, 0xff, 0xbb, 0x85, 0x4d, 0xff, 0xbb, 0x84, 0x4c, 0xff, 0xbb, 0x82, 0x4b, 0xff, 0xbb, 0x82, 0x4b, 0xff, 0xbb, 0x82, 0x4b, 0xff, 0xbb, 0x82, 0x4b, 0xff, 0xbb, 0x82, 0x4b, 0xff, 0xbb, 0x81, 0x4b, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7d, 0x48, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb2, 0x7a, 0x45, 0xff, 0xb2, 0x7a, 0x44, 0xff, 0xb2, 0x7a, 0x45, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x43, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x7a, 0x44, 0xff, 0xb2, 0x7a, 0x44, 0xff, 0xb2, 0x7a, 0x44, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, + 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xbc, 0x82, 0x4b, 0xff, 0xbc, 0x82, 0x4b, 0xff, 0xbb, 0x82, 0x4a, 0xff, 0xbb, 0x82, 0x4a, 0xff, 0xbb, 0x82, 0x4b, 0xff, 0xbb, 0x82, 0x4b, 0xff, 0xbb, 0x82, 0x4b, 0xff, 0xbb, 0x83, 0x4b, 0xff, 0xbb, 0x83, 0x4c, 0xff, 0xbb, 0x83, 0x4c, 0xff, 0xbb, 0x83, 0x4b, 0xff, 0xbb, 0x82, 0x4b, 0xff, 0xbc, 0x83, 0x4b, 0xff, 0xbb, 0x83, 0x4b, 0xff, 0xbb, 0x83, 0x4b, 0xff, 0xba, 0x82, 0x4b, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb9, 0x81, 0x4a, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xb2, 0x7a, 0x45, 0xff, 0xb2, 0x7a, 0x44, 0xff, 0xb2, 0x7a, 0x44, 0xff, 0xb2, 0x7a, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x43, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x7a, 0x44, 0xff, 0xb2, 0x7a, 0x44, 0xff, 0xb2, 0x7a, 0x44, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, + 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb2, 0x7a, 0x45, 0xff, 0xb2, 0x7a, 0x44, 0xff, 0xb2, 0x7a, 0x44, 0xff, 0xb2, 0x7a, 0x44, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xbb, 0x81, 0x49, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xbc, 0x82, 0x4a, 0xff, 0xbc, 0x82, 0x4a, 0xff, 0xbc, 0x82, 0x4a, 0xff, 0xbc, 0x82, 0x4a, 0xff, 0xbc, 0x82, 0x4a, 0xff, 0xbc, 0x82, 0x4a, 0xff, 0xbc, 0x82, 0x4a, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xbb, 0x81, 0x49, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xbc, 0x81, 0x4b, 0xff, 0xbc, 0x82, 0x4b, 0xff, 0xbc, 0x82, 0x4b, 0xff, 0xbc, 0x83, 0x4b, 0xff, 0xbc, 0x83, 0x4b, 0xff, 0xbc, 0x83, 0x4b, 0xff, 0xbc, 0x83, 0x4b, 0xff, 0xbc, 0x83, 0x4c, 0xff, 0xbc, 0x83, 0x4c, 0xff, 0xbc, 0x83, 0x4b, 0xff, 0xbc, 0x83, 0x4b, 0xff, 0xbc, 0x82, 0x4b, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7d, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7d, 0x48, 0xff, 0xb6, 0x7d, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7d, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xb2, 0x7a, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x43, 0xff, 0xb2, 0x79, 0x43, 0xff, 0xb2, 0x79, 0x43, 0xff, 0xb2, 0x79, 0x43, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x7a, 0x44, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb2, 0x7a, 0x44, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, + 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb2, 0x7a, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb8, 0x7f, 0x47, 0xff, 0xbc, 0x82, 0x4a, 0xff, 0xbc, 0x82, 0x4b, 0xff, 0xbc, 0x83, 0x4b, 0xff, 0xbc, 0x84, 0x4b, 0xff, 0xbc, 0x84, 0x4c, 0xff, 0xbc, 0x85, 0x4c, 0xff, 0xbc, 0x85, 0x4d, 0xff, 0xbc, 0x86, 0x4d, 0xff, 0xbc, 0x85, 0x4d, 0xff, 0xbc, 0x85, 0x4d, 0xff, 0xbc, 0x84, 0x4c, 0xff, 0xbc, 0x84, 0x4c, 0xff, 0xbc, 0x83, 0x4b, 0xff, 0xbc, 0x82, 0x4b, 0xff, 0xbc, 0x82, 0x4a, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb6, 0x7c, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xba, 0x81, 0x4b, 0xff, 0xbc, 0x83, 0x4b, 0xff, 0xbc, 0x83, 0x4b, 0xff, 0xbc, 0x83, 0x4c, 0xff, 0xbc, 0x83, 0x4c, 0xff, 0xbc, 0x83, 0x4c, 0xff, 0xbc, 0x83, 0x4c, 0xff, 0xbc, 0x83, 0x4c, 0xff, 0xbc, 0x83, 0x4c, 0xff, 0xbc, 0x83, 0x4b, 0xff, 0xbc, 0x83, 0x4b, 0xff, 0xbb, 0x82, 0x4a, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb9, 0x7f, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb6, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb2, 0x7a, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x43, 0xff, 0xb1, 0x79, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x79, 0x43, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb7, 0x7e, 0x49, 0xff, 0xb7, 0x7e, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7e, 0x49, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x45, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, + 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb2, 0x7a, 0x45, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb1, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb4, 0x7a, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xbc, 0x84, 0x4b, 0xff, 0xbd, 0x84, 0x4b, 0xff, 0xbc, 0x85, 0x4c, 0xff, 0xbc, 0x86, 0x4c, 0xff, 0xbd, 0x87, 0x4d, 0xff, 0xbc, 0x88, 0x4e, 0xff, 0xbc, 0x88, 0x4e, 0xff, 0xbc, 0x89, 0x4e, 0xff, 0xbc, 0x8a, 0x4f, 0xff, 0xbc, 0x8a, 0x4f, 0xff, 0xbc, 0x89, 0x4f, 0xff, 0xbc, 0x89, 0x4f, 0xff, 0xbc, 0x88, 0x4e, 0xff, 0xbd, 0x88, 0x4e, 0xff, 0xbd, 0x86, 0x4d, 0xff, 0xbd, 0x85, 0x4d, 0xff, 0xbd, 0x84, 0x4c, 0xff, 0xbd, 0x83, 0x4b, 0xff, 0xba, 0x81, 0x4b, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb5, 0x7c, 0x45, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb7, 0x7d, 0x46, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb9, 0x81, 0x4a, 0xff, 0xbc, 0x83, 0x4c, 0xff, 0xbc, 0x83, 0x4c, 0xff, 0xbd, 0x83, 0x4c, 0xff, 0xbd, 0x83, 0x4c, 0xff, 0xbd, 0x83, 0x4c, 0xff, 0xbd, 0x83, 0x4c, 0xff, 0xbd, 0x83, 0x4c, 0xff, 0xbd, 0x83, 0x4b, 0xff, 0xbc, 0x82, 0x4b, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb9, 0x7f, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb2, 0x7a, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x43, 0xff, 0xb2, 0x79, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7e, 0x49, 0xff, 0xb7, 0x7e, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7b, 0x45, 0xff, 0xb5, 0x7c, 0x45, 0xff, 0xb5, 0x7c, 0x45, 0xff, 0xb5, 0x7c, 0x45, 0xff, 0xb5, 0x7c, 0x45, 0xff, 0xb5, 0x7c, 0x45, 0xff, 0xb5, 0x7c, 0x45, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, + 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb2, 0x7a, 0x45, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb1, 0x79, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb3, 0x79, 0x45, 0xff, 0xb2, 0x7a, 0x45, 0xff, 0xb2, 0x79, 0x45, 0xff, 0xb2, 0x79, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x79, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb7, 0x80, 0x4a, 0xff, 0xbd, 0x88, 0x4e, 0xff, 0xbd, 0x88, 0x4e, 0xff, 0xbd, 0x8a, 0x4f, 0xff, 0xbc, 0x8a, 0x50, 0xff, 0xbc, 0x8a, 0x50, 0xff, 0xbc, 0x8a, 0x51, 0xff, 0xbc, 0x8a, 0x52, 0xff, 0xbc, 0x8a, 0x52, 0xff, 0xbc, 0x8a, 0x52, 0xff, 0xbc, 0x8a, 0x52, 0xff, 0xbc, 0x8b, 0x52, 0xff, 0xbc, 0x8a, 0x52, 0xff, 0xbc, 0x8a, 0x51, 0xff, 0xbc, 0x8a, 0x50, 0xff, 0xbd, 0x88, 0x4f, 0xff, 0xbd, 0x85, 0x4e, 0xff, 0xbd, 0x83, 0x4d, 0xff, 0xbc, 0x82, 0x4b, 0xff, 0xb9, 0x81, 0x4a, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7e, 0x49, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x45, 0xff, 0xb5, 0x7b, 0x45, 0xff, 0xb5, 0x7c, 0x45, 0xff, 0xb5, 0x7c, 0x45, 0xff, 0xb5, 0x7c, 0x45, 0xff, 0xb6, 0x7c, 0x46, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbc, 0x81, 0x49, 0xff, 0xbc, 0x80, 0x49, 0xff, 0xbc, 0x81, 0x49, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xbb, 0x81, 0x4b, 0xff, 0xbd, 0x84, 0x4c, 0xff, 0xbd, 0x84, 0x4c, 0xff, 0xbd, 0x83, 0x4c, 0xff, 0xbd, 0x83, 0x4c, 0xff, 0xbd, 0x83, 0x4b, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbc, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x48, 0xff, 0xb5, 0x7d, 0x48, 0xff, 0xb5, 0x7d, 0x48, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x42, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x42, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb1, 0x77, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x79, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x45, 0xff, 0xb5, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb5, 0x7b, 0x45, 0xff, 0xb5, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, + 0xb4, 0x7b, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb2, 0x79, 0x45, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb1, 0x79, 0x44, 0xff, 0xb1, 0x79, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb2, 0x79, 0x45, 0xff, 0xb2, 0x79, 0x45, 0xff, 0xb2, 0x79, 0x45, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb2, 0x79, 0x45, 0xff, 0xb3, 0x79, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7b, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb3, 0x7b, 0x46, 0xff, 0xbb, 0x86, 0x4e, 0xff, 0xbd, 0x8b, 0x4f, 0xff, 0xbc, 0x8b, 0x51, 0xff, 0xbc, 0x8b, 0x52, 0xff, 0xbd, 0x8b, 0x53, 0xff, 0xbd, 0x8b, 0x54, 0xff, 0xbd, 0x8b, 0x56, 0xff, 0xbd, 0x8b, 0x57, 0xff, 0xbe, 0x8b, 0x58, 0xff, 0xbe, 0x8b, 0x59, 0xff, 0xbe, 0x8b, 0x59, 0xff, 0xbe, 0x8b, 0x58, 0xff, 0xbd, 0x8b, 0x57, 0xff, 0xbd, 0x8b, 0x56, 0xff, 0xbd, 0x8b, 0x54, 0xff, 0xbd, 0x8b, 0x53, 0xff, 0xbe, 0x8b, 0x51, 0xff, 0xbe, 0x88, 0x4f, 0xff, 0xbe, 0x85, 0x4e, 0xff, 0xbe, 0x84, 0x4d, 0xff, 0xbb, 0x82, 0x4b, 0xff, 0xb9, 0x81, 0x4a, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x45, 0xff, 0xb5, 0x7c, 0x45, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb7, 0x7d, 0x46, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbc, 0x80, 0x49, 0xff, 0xbc, 0x80, 0x49, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbc, 0x80, 0x49, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xbd, 0x82, 0x4a, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb6, 0x7d, 0x48, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x48, 0xff, 0xb7, 0x7e, 0x49, 0xff, 0xbb, 0x81, 0x4b, 0xff, 0xbd, 0x83, 0x4c, 0xff, 0xbd, 0x83, 0x4c, 0xff, 0xbd, 0x83, 0x4c, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xb8, 0x80, 0x4a, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7e, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xba, 0x81, 0x49, 0xff, 0xbb, 0x81, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb5, 0x7e, 0x49, 0xff, 0xb5, 0x7d, 0x49, 0xff, 0xb5, 0x7d, 0x48, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xb3, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x42, 0xff, 0xb1, 0x78, 0x42, 0xff, 0xb1, 0x78, 0x42, 0xff, 0xb1, 0x78, 0x42, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb2, 0x79, 0x45, 0xff, 0xb2, 0x79, 0x45, 0xff, 0xb3, 0x7a, 0x46, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x4a, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xbb, 0x81, 0x4b, 0xff, 0xbc, 0x81, 0x4b, 0xff, 0xbd, 0x82, 0x4b, 0xff, 0xbc, 0x82, 0x4b, 0xff, 0xbc, 0x82, 0x4b, 0xff, 0xbb, 0x81, 0x4b, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb5, 0x7c, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, + 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb2, 0x7a, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb1, 0x79, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7b, 0x46, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb6, 0x80, 0x4a, 0xff, 0xbd, 0x8d, 0x51, 0xff, 0xbc, 0x8c, 0x51, 0xff, 0xbd, 0x8c, 0x53, 0xff, 0xbd, 0x8c, 0x55, 0xff, 0xbe, 0x8c, 0x58, 0xff, 0xbe, 0x8c, 0x5a, 0xff, 0xbe, 0x8c, 0x5a, 0xff, 0xbe, 0x8c, 0x5a, 0xff, 0xbe, 0x8c, 0x5b, 0xff, 0xbe, 0x8c, 0x5a, 0xff, 0xbe, 0x8c, 0x5a, 0xff, 0xbe, 0x8c, 0x5a, 0xff, 0xbe, 0x8c, 0x5a, 0xff, 0xbe, 0x8c, 0x5a, 0xff, 0xbe, 0x8c, 0x5a, 0xff, 0xbe, 0x8c, 0x59, 0xff, 0xbe, 0x8c, 0x56, 0xff, 0xbe, 0x8c, 0x53, 0xff, 0xbe, 0x8a, 0x51, 0xff, 0xbe, 0x87, 0x50, 0xff, 0xbe, 0x85, 0x4d, 0xff, 0xbe, 0x84, 0x4c, 0xff, 0xbb, 0x82, 0x4b, 0xff, 0xb9, 0x81, 0x4a, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb7, 0x7d, 0x46, 0xff, 0xb8, 0x7d, 0x47, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbc, 0x80, 0x49, 0xff, 0xbc, 0x80, 0x49, 0xff, 0xbd, 0x80, 0x49, 0xff, 0xbd, 0x80, 0x49, 0xff, 0xbd, 0x80, 0x49, 0xff, 0xbc, 0x80, 0x49, 0xff, 0xbc, 0x80, 0x49, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xbe, 0x81, 0x4a, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb9, 0x81, 0x4a, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xbc, 0x82, 0x4b, 0xff, 0xbd, 0x82, 0x4b, 0xff, 0xbb, 0x82, 0x4b, 0xff, 0xbb, 0x82, 0x4b, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xbc, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xbe, 0x82, 0x4b, 0xff, 0xbe, 0x82, 0x4b, 0xff, 0xbe, 0x82, 0x4b, 0xff, 0xbe, 0x83, 0x4b, 0xff, 0xbe, 0x82, 0x4b, 0xff, 0xbe, 0x82, 0x4b, 0xff, 0xbe, 0x81, 0x4b, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7d, 0x48, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x49, 0xff, 0xb6, 0x7e, 0x49, 0xff, 0xb5, 0x7d, 0x49, 0xff, 0xb5, 0x7d, 0x48, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x79, 0x44, 0xff, 0xb2, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x77, 0x42, 0xff, 0xb1, 0x78, 0x42, 0xff, 0xb1, 0x77, 0x42, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x77, 0x42, 0xff, 0xb0, 0x77, 0x42, 0xff, 0xb0, 0x77, 0x42, 0xff, 0xb1, 0x77, 0x43, 0xff, 0xb1, 0x77, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x79, 0x45, 0xff, 0xb2, 0x79, 0x45, 0xff, 0xb2, 0x79, 0x45, 0xff, 0xb1, 0x79, 0x45, 0xff, 0xb1, 0x79, 0x45, 0xff, 0xb6, 0x7d, 0x48, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xb8, 0x80, 0x4a, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xbb, 0x81, 0x4b, 0xff, 0xbd, 0x82, 0x4c, 0xff, 0xbe, 0x83, 0x4d, 0xff, 0xbe, 0x83, 0x4d, 0xff, 0xbe, 0x84, 0x4d, 0xff, 0xbe, 0x84, 0x4d, 0xff, 0xbe, 0x83, 0x4d, 0xff, 0xbd, 0x82, 0x4c, 0xff, 0xbc, 0x82, 0x4b, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb7, 0x7d, 0x46, 0xff, 0xb7, 0x7d, 0x46, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, + 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb2, 0x7a, 0x45, 0xff, 0xb1, 0x79, 0x44, 0xff, 0xb1, 0x79, 0x44, 0xff, 0xb1, 0x79, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x78, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb3, 0x79, 0x44, 0xff, 0xb3, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x45, 0xff, 0xb2, 0x7a, 0x45, 0xff, 0xb2, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x46, 0xff, 0xb3, 0x7b, 0x47, 0xff, 0xbc, 0x88, 0x4e, 0xff, 0xbd, 0x8d, 0x51, 0xff, 0xbd, 0x8d, 0x53, 0xff, 0xbe, 0x8d, 0x57, 0xff, 0xbe, 0x8d, 0x5b, 0xff, 0xbf, 0x8d, 0x5c, 0xff, 0xbe, 0x8d, 0x5b, 0xff, 0xbe, 0x8d, 0x5b, 0xff, 0xbf, 0x8d, 0x5c, 0xff, 0xbf, 0x8d, 0x5c, 0xff, 0xbf, 0x8d, 0x5b, 0xff, 0xbf, 0x8d, 0x5c, 0xff, 0xbf, 0x8d, 0x5c, 0xff, 0xbf, 0x8d, 0x5c, 0xff, 0xbf, 0x8d, 0x5c, 0xff, 0xbf, 0x8d, 0x5c, 0xff, 0xbf, 0x8d, 0x5c, 0xff, 0xbf, 0x8d, 0x5b, 0xff, 0xbe, 0x8d, 0x59, 0xff, 0xbe, 0x8d, 0x55, 0xff, 0xbe, 0x8d, 0x52, 0xff, 0xbe, 0x8a, 0x50, 0xff, 0xbf, 0x86, 0x4e, 0xff, 0xbe, 0x84, 0x4d, 0xff, 0xbd, 0x82, 0x4c, 0xff, 0xba, 0x81, 0x4b, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb7, 0x7d, 0x46, 0xff, 0xb7, 0x7d, 0x46, 0xff, 0xb8, 0x7d, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb9, 0x7f, 0x48, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbc, 0x80, 0x49, 0xff, 0xbd, 0x80, 0x49, 0xff, 0xbc, 0x80, 0x49, 0xff, 0xbc, 0x80, 0x49, 0xff, 0xbd, 0x81, 0x49, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xbf, 0x82, 0x4b, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb1, 0x78, 0x45, 0xff, 0xb2, 0x7a, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xbc, 0x83, 0x4c, 0xff, 0xbe, 0x84, 0x4d, 0xff, 0xbd, 0x83, 0x4c, 0xff, 0xbd, 0x82, 0x4c, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xbd, 0x82, 0x4b, 0xff, 0xbf, 0x83, 0x4b, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xbc, 0x80, 0x49, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbe, 0x82, 0x4b, 0xff, 0xbf, 0x83, 0x4c, 0xff, 0xbf, 0x83, 0x4c, 0xff, 0xbe, 0x83, 0x4c, 0xff, 0xbe, 0x82, 0x4b, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7e, 0x49, 0xff, 0xb6, 0x7d, 0x49, 0xff, 0xb5, 0x7d, 0x48, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x77, 0x42, 0xff, 0xb1, 0x77, 0x42, 0xff, 0xb0, 0x77, 0x42, 0xff, 0xb0, 0x77, 0x42, 0xff, 0xb0, 0x77, 0x42, 0xff, 0xb0, 0x77, 0x42, 0xff, 0xb0, 0x77, 0x42, 0xff, 0xb0, 0x77, 0x42, 0xff, 0xb0, 0x77, 0x42, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb7, 0x7e, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xba, 0x81, 0x4b, 0xff, 0xbc, 0x82, 0x4c, 0xff, 0xbe, 0x84, 0x4d, 0xff, 0xbf, 0x85, 0x4e, 0xff, 0xbf, 0x85, 0x4e, 0xff, 0xbf, 0x86, 0x4f, 0xff, 0xbf, 0x85, 0x4f, 0xff, 0xbf, 0x85, 0x4e, 0xff, 0xbf, 0x85, 0x4e, 0xff, 0xbf, 0x84, 0x4d, 0xff, 0xbe, 0x83, 0x4c, 0xff, 0xbe, 0x82, 0x4b, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb7, 0x7d, 0x46, 0xff, 0xb7, 0x7d, 0x46, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb4, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x44, 0xff, + 0xb3, 0x7a, 0x45, 0xff, 0xb2, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb2, 0x7a, 0x45, 0xff, 0xb1, 0x79, 0x45, 0xff, 0xb1, 0x79, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xaf, 0x77, 0x43, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xaf, 0x77, 0x43, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x45, 0xff, 0xb2, 0x79, 0x45, 0xff, 0xb2, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x46, 0xff, 0xb4, 0x7f, 0x48, 0xff, 0xbf, 0x8c, 0x52, 0xff, 0xbd, 0x8e, 0x53, 0xff, 0xbe, 0x8e, 0x56, 0xff, 0xbf, 0x8e, 0x5a, 0xff, 0xbf, 0x8e, 0x5d, 0xff, 0xbf, 0x8e, 0x5d, 0xff, 0xbf, 0x8e, 0x5d, 0xff, 0xbf, 0x8e, 0x5d, 0xff, 0xbf, 0x8e, 0x5d, 0xff, 0xbf, 0x8e, 0x5d, 0xff, 0xbf, 0x8e, 0x5d, 0xff, 0xbf, 0x8e, 0x5d, 0xff, 0xbf, 0x8e, 0x5d, 0xff, 0xbf, 0x8e, 0x5d, 0xff, 0xbf, 0x8e, 0x5d, 0xff, 0xbf, 0x8e, 0x5d, 0xff, 0xbf, 0x8e, 0x5d, 0xff, 0xbf, 0x8e, 0x5d, 0xff, 0xbf, 0x8e, 0x5d, 0xff, 0xbf, 0x8e, 0x5b, 0xff, 0xbe, 0x8e, 0x56, 0xff, 0xbe, 0x8e, 0x53, 0xff, 0xbf, 0x8c, 0x51, 0xff, 0xbf, 0x86, 0x4f, 0xff, 0xbf, 0x85, 0x4d, 0xff, 0xbe, 0x83, 0x4b, 0xff, 0xbb, 0x82, 0x4a, 0xff, 0xb9, 0x81, 0x4a, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb9, 0x7f, 0x48, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbc, 0x80, 0x49, 0xff, 0xbc, 0x80, 0x49, 0xff, 0xbc, 0x80, 0x49, 0xff, 0xbd, 0x81, 0x49, 0xff, 0xbd, 0x80, 0x49, 0xff, 0xbd, 0x81, 0x49, 0xff, 0xbe, 0x81, 0x4a, 0xff, 0xbe, 0x81, 0x4a, 0xff, 0xbf, 0x82, 0x4a, 0xff, 0xbf, 0x83, 0x4a, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xb7, 0x7d, 0x48, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb2, 0x7a, 0x44, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb2, 0x78, 0x44, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xbb, 0x82, 0x4b, 0xff, 0xbf, 0x84, 0x4d, 0xff, 0xc0, 0x84, 0x4d, 0xff, 0xbe, 0x82, 0x4b, 0xff, 0xbe, 0x82, 0x4b, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xbc, 0x82, 0x4c, 0xff, 0xbf, 0x85, 0x4d, 0xff, 0xc0, 0x85, 0x4d, 0xff, 0xbf, 0x84, 0x4d, 0xff, 0xbf, 0x84, 0x4d, 0xff, 0xbf, 0x84, 0x4d, 0xff, 0xc0, 0x84, 0x4d, 0xff, 0xbe, 0x82, 0x4c, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xbe, 0x82, 0x4b, 0xff, 0xbf, 0x82, 0x4b, 0xff, 0xc0, 0x83, 0x4c, 0xff, 0xbf, 0x83, 0x4c, 0xff, 0xbf, 0x83, 0x4c, 0xff, 0xbe, 0x83, 0x4c, 0xff, 0xbe, 0x83, 0x4c, 0xff, 0xbd, 0x82, 0x4c, 0xff, 0xbc, 0x83, 0x4c, 0xff, 0xbc, 0x82, 0x4b, 0xff, 0xbb, 0x82, 0x4b, 0xff, 0xbb, 0x81, 0x4b, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb7, 0x7e, 0x49, 0xff, 0xb7, 0x7e, 0x49, 0xff, 0xb6, 0x7e, 0x49, 0xff, 0xb6, 0x7d, 0x48, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x77, 0x43, 0xff, 0xb0, 0x77, 0x42, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb0, 0x77, 0x42, 0xff, 0xb0, 0x76, 0x42, 0xff, 0xb0, 0x77, 0x42, 0xff, 0xb0, 0x77, 0x42, 0xff, 0xb0, 0x77, 0x42, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb0, 0x76, 0x44, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xbb, 0x81, 0x4b, 0xff, 0xbe, 0x83, 0x4d, 0xff, 0xbf, 0x85, 0x4f, 0xff, 0xc0, 0x86, 0x4f, 0xff, 0xc0, 0x88, 0x51, 0xff, 0xbf, 0x88, 0x51, 0xff, 0xbf, 0x89, 0x51, 0xff, 0xc0, 0x88, 0x51, 0xff, 0xc0, 0x87, 0x50, 0xff, 0xc0, 0x86, 0x4f, 0xff, 0xc0, 0x86, 0x4f, 0xff, 0xbf, 0x85, 0x4e, 0xff, 0xbf, 0x83, 0x4c, 0xff, 0xbe, 0x82, 0x4b, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7c, 0x47, 0xff, 0xb6, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x7a, 0x44, 0xff, + 0xb2, 0x79, 0x44, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb2, 0x7a, 0x45, 0xff, 0xb3, 0x7c, 0x46, 0xff, 0xb3, 0x7c, 0x46, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb1, 0x79, 0x45, 0xff, 0xb1, 0x78, 0x45, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xaf, 0x77, 0x43, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xaf, 0x76, 0x42, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb2, 0x78, 0x44, 0xff, 0xb2, 0x78, 0x44, 0xff, 0xb2, 0x78, 0x44, 0xff, 0xb2, 0x78, 0x44, 0xff, 0xb2, 0x78, 0x44, 0xff, 0xb2, 0x78, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x45, 0xff, 0xb2, 0x79, 0x45, 0xff, 0xb2, 0x79, 0x45, 0xff, 0xb2, 0x79, 0x45, 0xff, 0xb3, 0x7a, 0x46, 0xff, 0xbb, 0x86, 0x4d, 0xff, 0xc0, 0x8d, 0x51, 0xff, 0xbf, 0x8e, 0x52, 0xff, 0xbe, 0x8f, 0x56, 0xff, 0xbf, 0x8f, 0x5a, 0xff, 0xc0, 0x8f, 0x5e, 0xff, 0xc0, 0x8f, 0x5f, 0xff, 0xc0, 0x8f, 0x5e, 0xff, 0xc0, 0x8f, 0x5f, 0xff, 0xc0, 0x8f, 0x5f, 0xff, 0xc0, 0x8f, 0x5f, 0xff, 0xc0, 0x8f, 0x5f, 0xff, 0xc0, 0x8f, 0x5f, 0xff, 0xc0, 0x8f, 0x5f, 0xff, 0xc0, 0x8f, 0x5f, 0xff, 0xc0, 0x8f, 0x5f, 0xff, 0xc0, 0x8f, 0x5f, 0xff, 0xc0, 0x8f, 0x5f, 0xff, 0xc0, 0x8f, 0x5f, 0xff, 0xc0, 0x8f, 0x5f, 0xff, 0xc0, 0x8f, 0x5f, 0xff, 0xc0, 0x8f, 0x5c, 0xff, 0xbf, 0x8f, 0x57, 0xff, 0xbf, 0x8e, 0x54, 0xff, 0xc0, 0x8b, 0x51, 0xff, 0xc0, 0x87, 0x4f, 0xff, 0xc0, 0x84, 0x4d, 0xff, 0xbf, 0x83, 0x4c, 0xff, 0xbc, 0x82, 0x4b, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb9, 0x80, 0x48, 0xff, 0xba, 0x80, 0x48, 0xff, 0xba, 0x80, 0x49, 0xff, 0xbc, 0x80, 0x49, 0xff, 0xbe, 0x81, 0x49, 0xff, 0xbf, 0x81, 0x49, 0xff, 0xbf, 0x81, 0x4a, 0xff, 0xbf, 0x82, 0x4a, 0xff, 0xbf, 0x82, 0x4a, 0xff, 0xc0, 0x82, 0x4b, 0xff, 0xc0, 0x82, 0x4b, 0xff, 0xc0, 0x82, 0x4b, 0xff, 0xc0, 0x82, 0x4b, 0xff, 0xbe, 0x82, 0x4a, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb1, 0x77, 0x43, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb3, 0x79, 0x44, 0xff, 0xb3, 0x79, 0x44, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb4, 0x7a, 0x45, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb2, 0x7a, 0x45, 0xff, 0xaf, 0x77, 0x43, 0xff, 0xaf, 0x77, 0x43, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xaf, 0x77, 0x43, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb3, 0x7b, 0x46, 0xff, 0xb5, 0x7d, 0x48, 0xff, 0xb6, 0x7d, 0x49, 0xff, 0xb5, 0x7d, 0x48, 0xff, 0xb6, 0x7e, 0x49, 0xff, 0xb5, 0x7e, 0x49, 0xff, 0xb9, 0x81, 0x4b, 0xff, 0xbd, 0x83, 0x4c, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xb8, 0x80, 0x4a, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7c, 0x46, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb9, 0x7f, 0x49, 0xff, 0xbd, 0x81, 0x4b, 0xff, 0xc0, 0x83, 0x4c, 0xff, 0xc0, 0x83, 0x4c, 0xff, 0xc0, 0x84, 0x4c, 0xff, 0xc0, 0x84, 0x4c, 0xff, 0xc0, 0x84, 0x4d, 0xff, 0xbf, 0x84, 0x4d, 0xff, 0xbf, 0x85, 0x4d, 0xff, 0xbe, 0x85, 0x4d, 0xff, 0xbd, 0x84, 0x4d, 0xff, 0xbc, 0x84, 0x4d, 0xff, 0xbc, 0x83, 0x4d, 0xff, 0xbc, 0x83, 0x4c, 0xff, 0xbc, 0x82, 0x4c, 0xff, 0xbb, 0x82, 0x4b, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xba, 0x81, 0x4b, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb6, 0x7e, 0x49, 0xff, 0xb5, 0x7d, 0x48, 0xff, 0xb4, 0x7a, 0x45, 0xff, 0xb2, 0x79, 0x43, 0xff, 0xb2, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb2, 0x78, 0x43, 0xff, 0xb1, 0x77, 0x43, 0xff, 0xb1, 0x77, 0x43, 0xff, 0xb0, 0x77, 0x42, 0xff, 0xb0, 0x77, 0x42, 0xff, 0xb0, 0x76, 0x42, 0xff, 0xaf, 0x76, 0x41, 0xff, 0xb0, 0x76, 0x42, 0xff, 0xb0, 0x76, 0x42, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xaf, 0x77, 0x44, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xbb, 0x81, 0x4b, 0xff, 0xc0, 0x84, 0x4d, 0xff, 0xc0, 0x86, 0x50, 0xff, 0xc0, 0x88, 0x51, 0xff, 0xc0, 0x8a, 0x52, 0xff, 0xc0, 0x8c, 0x53, 0xff, 0xc0, 0x8d, 0x54, 0xff, 0xc0, 0x8d, 0x54, 0xff, 0xc0, 0x8b, 0x53, 0xff, 0xc0, 0x8b, 0x53, 0xff, 0xc0, 0x89, 0x51, 0xff, 0xc0, 0x87, 0x50, 0xff, 0xc0, 0x86, 0x4e, 0xff, 0xc0, 0x84, 0x4d, 0xff, 0xbe, 0x82, 0x4c, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb9, 0x81, 0x4a, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7c, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x79, 0x44, 0xff, + 0xb2, 0x79, 0x45, 0xff, 0xb2, 0x79, 0x45, 0xff, 0xb2, 0x79, 0x45, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x47, 0xff, 0xb3, 0x7c, 0x46, 0xff, 0xb3, 0x7c, 0x46, 0xff, 0xb1, 0x78, 0x45, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xae, 0x76, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb2, 0x78, 0x44, 0xff, 0xb2, 0x78, 0x44, 0xff, 0xb2, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb5, 0x7d, 0x48, 0xff, 0xc1, 0x88, 0x50, 0xff, 0xc0, 0x8b, 0x50, 0xff, 0xc0, 0x8e, 0x52, 0xff, 0xbe, 0x90, 0x55, 0xff, 0xbf, 0x90, 0x59, 0xff, 0xc0, 0x90, 0x5e, 0xff, 0xc0, 0x90, 0x61, 0xff, 0xc0, 0x90, 0x60, 0xff, 0xc0, 0x90, 0x61, 0xff, 0xc0, 0x90, 0x61, 0xff, 0xc0, 0x90, 0x61, 0xff, 0xc0, 0x90, 0x61, 0xff, 0xc0, 0x90, 0x60, 0xff, 0xc0, 0x90, 0x61, 0xff, 0xc0, 0x90, 0x61, 0xff, 0xc0, 0x90, 0x61, 0xff, 0xc1, 0x90, 0x61, 0xff, 0xc0, 0x90, 0x61, 0xff, 0xc0, 0x90, 0x61, 0xff, 0xc0, 0x90, 0x60, 0xff, 0xc1, 0x90, 0x60, 0xff, 0xc1, 0x90, 0x60, 0xff, 0xc0, 0x90, 0x5b, 0xff, 0xbf, 0x90, 0x56, 0xff, 0xc0, 0x8e, 0x53, 0xff, 0xc1, 0x88, 0x50, 0xff, 0xc1, 0x85, 0x4e, 0xff, 0xc0, 0x84, 0x4d, 0xff, 0xbe, 0x83, 0x4c, 0xff, 0xbd, 0x82, 0x4b, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbc, 0x80, 0x49, 0xff, 0xbc, 0x80, 0x49, 0xff, 0xbd, 0x80, 0x49, 0xff, 0xbe, 0x81, 0x49, 0xff, 0xbe, 0x81, 0x49, 0xff, 0xbf, 0x82, 0x4a, 0xff, 0xc0, 0x82, 0x4b, 0xff, 0xc0, 0x82, 0x4a, 0xff, 0xc0, 0x82, 0x4a, 0xff, 0xc0, 0x82, 0x4b, 0xff, 0xc0, 0x83, 0x4b, 0xff, 0xc0, 0x82, 0x4b, 0xff, 0xc0, 0x83, 0x4b, 0xff, 0xc1, 0x83, 0x4b, 0xff, 0xbd, 0x82, 0x4b, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb2, 0x78, 0x43, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb3, 0x7a, 0x46, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xb0, 0x78, 0x44, 0xff, 0xb0, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xae, 0x75, 0x42, 0xff, 0xb0, 0x78, 0x44, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb9, 0x81, 0x4a, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb6, 0x7d, 0x48, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xbd, 0x82, 0x4b, 0xff, 0xc0, 0x83, 0x4c, 0xff, 0xc1, 0x84, 0x4d, 0xff, 0xc0, 0x85, 0x4d, 0xff, 0xc0, 0x85, 0x4d, 0xff, 0xc1, 0x85, 0x4e, 0xff, 0xc0, 0x86, 0x4e, 0xff, 0xc0, 0x86, 0x4f, 0xff, 0xbf, 0x86, 0x4f, 0xff, 0xbe, 0x86, 0x4f, 0xff, 0xbd, 0x86, 0x4f, 0xff, 0xbd, 0x86, 0x4f, 0xff, 0xbd, 0x86, 0x4f, 0xff, 0xbd, 0x85, 0x4e, 0xff, 0xbd, 0x84, 0x4e, 0xff, 0xbd, 0x83, 0x4d, 0xff, 0xbc, 0x82, 0x4c, 0xff, 0xbc, 0x82, 0x4c, 0xff, 0xbd, 0x82, 0x4b, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb5, 0x7b, 0x46, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x78, 0x43, 0xff, 0xb2, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x77, 0x43, 0xff, 0xb1, 0x77, 0x43, 0xff, 0xb1, 0x77, 0x43, 0xff, 0xb0, 0x77, 0x42, 0xff, 0xae, 0x75, 0x43, 0xff, 0xae, 0x75, 0x43, 0xff, 0xaf, 0x75, 0x43, 0xff, 0xae, 0x75, 0x43, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xaf, 0x75, 0x43, 0xff, 0xaf, 0x75, 0x43, 0xff, 0xaf, 0x75, 0x43, 0xff, 0xaf, 0x75, 0x43, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xae, 0x75, 0x42, 0xff, 0xb6, 0x7c, 0x48, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xbb, 0x82, 0x4b, 0xff, 0xbf, 0x84, 0x4d, 0xff, 0xc1, 0x86, 0x4f, 0xff, 0xc1, 0x88, 0x51, 0xff, 0xc1, 0x8a, 0x53, 0xff, 0xc1, 0x8f, 0x55, 0xff, 0xc1, 0x90, 0x56, 0xff, 0xc0, 0x91, 0x57, 0xff, 0xc0, 0x91, 0x57, 0xff, 0xc0, 0x90, 0x56, 0xff, 0xc1, 0x8d, 0x54, 0xff, 0xc1, 0x8a, 0x52, 0xff, 0xc0, 0x88, 0x51, 0xff, 0xc1, 0x86, 0x4f, 0xff, 0xc1, 0x85, 0x4d, 0xff, 0xbf, 0x83, 0x4b, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7d, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb6, 0x7c, 0x46, 0xff, 0xb3, 0x7a, 0x45, 0xff, + 0xb4, 0x7b, 0x46, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x45, 0xff, 0xb4, 0x7c, 0x47, 0xff, 0xb3, 0x7c, 0x47, 0xff, 0xb3, 0x7c, 0x46, 0xff, 0xb3, 0x7c, 0x46, 0xff, 0xb1, 0x79, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xaf, 0x77, 0x43, 0xff, 0xaf, 0x76, 0x42, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xad, 0x75, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x75, 0x43, 0xff, 0xaf, 0x77, 0x43, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb1, 0x77, 0x43, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb1, 0x77, 0x43, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb1, 0x77, 0x43, 0xff, 0xb1, 0x77, 0x43, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xc0, 0x87, 0x4f, 0xff, 0xc1, 0x87, 0x4e, 0xff, 0xc1, 0x8a, 0x4f, 0xff, 0xc1, 0x8e, 0x52, 0xff, 0xc0, 0x91, 0x54, 0xff, 0xbf, 0x91, 0x57, 0xff, 0xc0, 0x91, 0x5b, 0xff, 0xc1, 0x91, 0x60, 0xff, 0xc1, 0x91, 0x62, 0xff, 0xc1, 0x91, 0x62, 0xff, 0xc1, 0x91, 0x62, 0xff, 0xc1, 0x91, 0x62, 0xff, 0xc1, 0x91, 0x62, 0xff, 0xc1, 0x91, 0x62, 0xff, 0xc1, 0x91, 0x62, 0xff, 0xc1, 0x91, 0x62, 0xff, 0xc1, 0x91, 0x62, 0xff, 0xc1, 0x91, 0x62, 0xff, 0xc1, 0x91, 0x62, 0xff, 0xc1, 0x91, 0x62, 0xff, 0xc1, 0x91, 0x62, 0xff, 0xc1, 0x91, 0x62, 0xff, 0xc1, 0x91, 0x60, 0xff, 0xc0, 0x91, 0x5b, 0xff, 0xc0, 0x91, 0x57, 0xff, 0xc1, 0x8e, 0x53, 0xff, 0xc1, 0x89, 0x50, 0xff, 0xc1, 0x86, 0x4f, 0xff, 0xc1, 0x85, 0x4d, 0xff, 0xc1, 0x83, 0x4c, 0xff, 0xbe, 0x82, 0x4b, 0xff, 0xbd, 0x82, 0x4b, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xbe, 0x81, 0x4a, 0xff, 0xbe, 0x81, 0x4a, 0xff, 0xbf, 0x81, 0x4a, 0xff, 0xc0, 0x82, 0x4a, 0xff, 0xc1, 0x82, 0x4b, 0xff, 0xc1, 0x83, 0x4b, 0xff, 0xc1, 0x83, 0x4b, 0xff, 0xc1, 0x83, 0x4b, 0xff, 0xc1, 0x83, 0x4b, 0xff, 0xc1, 0x83, 0x4b, 0xff, 0xc1, 0x84, 0x4b, 0xff, 0xc1, 0x84, 0x4b, 0xff, 0xc1, 0x84, 0x4d, 0xff, 0xbe, 0x83, 0x4c, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb2, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb2, 0x78, 0x43, 0xff, 0xb2, 0x78, 0x43, 0xff, 0xb2, 0x79, 0x43, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xae, 0x75, 0x43, 0xff, 0xae, 0x75, 0x43, 0xff, 0xae, 0x76, 0x43, 0xff, 0xae, 0x75, 0x43, 0xff, 0xae, 0x75, 0x42, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xaf, 0x75, 0x43, 0xff, 0xaf, 0x77, 0x43, 0xff, 0xaf, 0x77, 0x43, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xaf, 0x76, 0x42, 0xff, 0xae, 0x76, 0x42, 0xff, 0xb4, 0x7a, 0x46, 0xff, 0xba, 0x80, 0x4b, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb7, 0x7d, 0x49, 0xff, 0xb7, 0x7d, 0x49, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xc0, 0x83, 0x4c, 0xff, 0xc1, 0x84, 0x4d, 0xff, 0xc1, 0x85, 0x4d, 0xff, 0xc1, 0x86, 0x4e, 0xff, 0xc1, 0x86, 0x4e, 0xff, 0xc1, 0x87, 0x4f, 0xff, 0xc1, 0x88, 0x50, 0xff, 0xc1, 0x88, 0x51, 0xff, 0xc0, 0x87, 0x51, 0xff, 0xbf, 0x87, 0x51, 0xff, 0xbe, 0x86, 0x52, 0xff, 0xbe, 0x87, 0x52, 0xff, 0xbe, 0x87, 0x51, 0xff, 0xbe, 0x86, 0x51, 0xff, 0xbe, 0x86, 0x50, 0xff, 0xbf, 0x86, 0x4f, 0xff, 0xbe, 0x85, 0x4e, 0xff, 0xbf, 0x84, 0x4d, 0xff, 0xc0, 0x84, 0x4c, 0xff, 0xbe, 0x83, 0x4b, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xb4, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x79, 0x45, 0xff, 0xb3, 0x79, 0x44, 0xff, 0xb3, 0x79, 0x44, 0xff, 0xb2, 0x78, 0x43, 0xff, 0xb2, 0x78, 0x44, 0xff, 0xb2, 0x78, 0x44, 0xff, 0xb1, 0x77, 0x43, 0xff, 0xae, 0x75, 0x43, 0xff, 0xae, 0x75, 0x43, 0xff, 0xae, 0x75, 0x43, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x75, 0x43, 0xff, 0xaf, 0x75, 0x43, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xb7, 0x7e, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xbb, 0x81, 0x4b, 0xff, 0xbd, 0x83, 0x4c, 0xff, 0xc2, 0x85, 0x4f, 0xff, 0xc2, 0x87, 0x51, 0xff, 0xc2, 0x8a, 0x54, 0xff, 0xc2, 0x90, 0x56, 0xff, 0xc1, 0x92, 0x58, 0xff, 0xc0, 0x92, 0x5a, 0xff, 0xc0, 0x92, 0x5a, 0xff, 0xc0, 0x92, 0x5a, 0xff, 0xc0, 0x92, 0x57, 0xff, 0xc2, 0x91, 0x56, 0xff, 0xc2, 0x8e, 0x54, 0xff, 0xc2, 0x89, 0x52, 0xff, 0xc1, 0x87, 0x4f, 0xff, 0xc1, 0x85, 0x4d, 0xff, 0xbf, 0x83, 0x4c, 0xff, 0xbd, 0x82, 0x4b, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb9, 0x7f, 0x48, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x7d, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb6, 0x7c, 0x47, 0xff, + 0xb6, 0x7c, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb3, 0x7a, 0x46, 0xff, 0xb4, 0x7b, 0x48, 0xff, 0xb3, 0x7b, 0x47, 0xff, 0xb3, 0x7b, 0x46, 0xff, 0xb3, 0x7b, 0x46, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xaf, 0x76, 0x42, 0xff, 0xaf, 0x76, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb9, 0x81, 0x4a, 0xff, 0xc2, 0x85, 0x4c, 0xff, 0xc1, 0x87, 0x4e, 0xff, 0xc1, 0x88, 0x4f, 0xff, 0xc2, 0x8b, 0x50, 0xff, 0xc1, 0x8f, 0x52, 0xff, 0xc0, 0x92, 0x56, 0xff, 0xbf, 0x92, 0x59, 0xff, 0xc0, 0x92, 0x5c, 0xff, 0xc1, 0x92, 0x62, 0xff, 0xc2, 0x92, 0x63, 0xff, 0xc1, 0x92, 0x63, 0xff, 0xc1, 0x92, 0x64, 0xff, 0xc1, 0x92, 0x64, 0xff, 0xc2, 0x93, 0x64, 0xff, 0xc1, 0x92, 0x64, 0xff, 0xc2, 0x92, 0x64, 0xff, 0xc1, 0x92, 0x63, 0xff, 0xc2, 0x93, 0x64, 0xff, 0xc1, 0x92, 0x64, 0xff, 0xc2, 0x92, 0x64, 0xff, 0xc2, 0x93, 0x64, 0xff, 0xc1, 0x92, 0x63, 0xff, 0xc1, 0x92, 0x5f, 0xff, 0xc1, 0x92, 0x5b, 0xff, 0xc1, 0x93, 0x57, 0xff, 0xc1, 0x90, 0x54, 0xff, 0xc2, 0x8a, 0x51, 0xff, 0xc1, 0x87, 0x4f, 0xff, 0xc1, 0x85, 0x4e, 0xff, 0xc2, 0x84, 0x4c, 0xff, 0xc1, 0x83, 0x4b, 0xff, 0xc0, 0x83, 0x4b, 0xff, 0xbf, 0x83, 0x4b, 0xff, 0xbf, 0x82, 0x4a, 0xff, 0xbf, 0x82, 0x4a, 0xff, 0xbf, 0x82, 0x4a, 0xff, 0xbf, 0x82, 0x4a, 0xff, 0xc0, 0x82, 0x4a, 0xff, 0xc1, 0x82, 0x4a, 0xff, 0xc2, 0x83, 0x4b, 0xff, 0xc2, 0x83, 0x4c, 0xff, 0xc2, 0x84, 0x4c, 0xff, 0xc2, 0x85, 0x4d, 0xff, 0xc2, 0x85, 0x4d, 0xff, 0xc1, 0x85, 0x4c, 0xff, 0xc1, 0x84, 0x4c, 0xff, 0xc2, 0x85, 0x4c, 0xff, 0xc1, 0x85, 0x4d, 0xff, 0xbd, 0x83, 0x4c, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb0, 0x77, 0x42, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x77, 0x43, 0xff, 0xb1, 0x77, 0x43, 0xff, 0xb1, 0x77, 0x43, 0xff, 0xb1, 0x77, 0x43, 0xff, 0xb1, 0x77, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb3, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xad, 0x75, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xaf, 0x77, 0x43, 0xff, 0xaf, 0x77, 0x43, 0xff, 0xaf, 0x77, 0x42, 0xff, 0xaf, 0x76, 0x42, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xaf, 0x76, 0x42, 0xff, 0xad, 0x75, 0x42, 0xff, 0xad, 0x75, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x76, 0x42, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb7, 0x7d, 0x49, 0xff, 0xb9, 0x7f, 0x4a, 0xff, 0xc0, 0x83, 0x4c, 0xff, 0xc2, 0x85, 0x4d, 0xff, 0xc2, 0x85, 0x4e, 0xff, 0xc2, 0x85, 0x4e, 0xff, 0xc2, 0x86, 0x4e, 0xff, 0xc2, 0x87, 0x4f, 0xff, 0xc2, 0x88, 0x51, 0xff, 0xc2, 0x89, 0x52, 0xff, 0xc1, 0x88, 0x53, 0xff, 0xc1, 0x87, 0x54, 0xff, 0xc0, 0x87, 0x54, 0xff, 0xc0, 0x87, 0x54, 0xff, 0xc0, 0x87, 0x54, 0xff, 0xc0, 0x88, 0x54, 0xff, 0xc1, 0x88, 0x53, 0xff, 0xc2, 0x89, 0x52, 0xff, 0xc1, 0x89, 0x51, 0xff, 0xc1, 0x87, 0x50, 0xff, 0xc1, 0x85, 0x4d, 0xff, 0xc2, 0x85, 0x4e, 0xff, 0xc1, 0x84, 0x4d, 0xff, 0xbe, 0x83, 0x4b, 0xff, 0xbb, 0x82, 0x4a, 0xff, 0xb6, 0x7d, 0x48, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x79, 0x45, 0xff, 0xb3, 0x79, 0x44, 0xff, 0xb3, 0x79, 0x44, 0xff, 0xb3, 0x79, 0x44, 0xff, 0xb3, 0x78, 0x44, 0xff, 0xb2, 0x78, 0x44, 0xff, 0xb2, 0x78, 0x43, 0xff, 0xb2, 0x77, 0x43, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xad, 0x75, 0x42, 0xff, 0xad, 0x74, 0x42, 0xff, 0xad, 0x74, 0x42, 0xff, 0xad, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xad, 0x73, 0x42, 0xff, 0xad, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xb4, 0x7a, 0x45, 0xff, 0xb9, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb7, 0x7d, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xbc, 0x81, 0x4c, 0xff, 0xbf, 0x83, 0x4e, 0xff, 0xc2, 0x87, 0x51, 0xff, 0xc2, 0x8a, 0x53, 0xff, 0xc2, 0x8e, 0x56, 0xff, 0xc1, 0x93, 0x59, 0xff, 0xc1, 0x93, 0x5b, 0xff, 0xc1, 0x93, 0x5c, 0xff, 0xc1, 0x93, 0x5c, 0xff, 0xc1, 0x93, 0x5b, 0xff, 0xc0, 0x93, 0x59, 0xff, 0xc2, 0x92, 0x57, 0xff, 0xc2, 0x8e, 0x54, 0xff, 0xc2, 0x8a, 0x52, 0xff, 0xc2, 0x87, 0x4f, 0xff, 0xc2, 0x85, 0x4d, 0xff, 0xbf, 0x83, 0x4b, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb9, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb9, 0x7f, 0x48, 0xff, 0xb9, 0x7f, 0x48, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb6, 0x7c, 0x46, 0xff, + 0xb6, 0x7c, 0x46, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x49, 0xff, 0xb3, 0x7b, 0x48, 0xff, 0xb3, 0x7b, 0x48, 0xff, 0xb3, 0x7b, 0x46, 0xff, 0xb2, 0x7a, 0x46, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xaf, 0x76, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb6, 0x7c, 0x47, 0xff, 0xc3, 0x84, 0x4d, 0xff, 0xc2, 0x84, 0x4c, 0xff, 0xc2, 0x85, 0x4d, 0xff, 0xc2, 0x88, 0x4e, 0xff, 0xc2, 0x89, 0x50, 0xff, 0xc2, 0x8b, 0x51, 0xff, 0xc2, 0x8f, 0x53, 0xff, 0xc1, 0x93, 0x55, 0xff, 0xc0, 0x94, 0x58, 0xff, 0xc1, 0x94, 0x5c, 0xff, 0xc2, 0x94, 0x5f, 0xff, 0xc2, 0x94, 0x64, 0xff, 0xc2, 0x94, 0x65, 0xff, 0xc2, 0x94, 0x66, 0xff, 0xc2, 0x94, 0x66, 0xff, 0xc2, 0x94, 0x66, 0xff, 0xc2, 0x94, 0x66, 0xff, 0xc2, 0x94, 0x66, 0xff, 0xc2, 0x94, 0x66, 0xff, 0xc2, 0x94, 0x66, 0xff, 0xc2, 0x94, 0x65, 0xff, 0xc2, 0x94, 0x65, 0xff, 0xc2, 0x94, 0x62, 0xff, 0xc1, 0x94, 0x5c, 0xff, 0xc1, 0x94, 0x59, 0xff, 0xc2, 0x93, 0x57, 0xff, 0xc2, 0x8f, 0x54, 0xff, 0xc2, 0x8a, 0x51, 0xff, 0xc2, 0x87, 0x4f, 0xff, 0xc2, 0x86, 0x4e, 0xff, 0xc2, 0x85, 0x4d, 0xff, 0xc2, 0x84, 0x4c, 0xff, 0xc2, 0x83, 0x4c, 0xff, 0xc1, 0x83, 0x4b, 0xff, 0xc1, 0x83, 0x4b, 0xff, 0xc0, 0x83, 0x4b, 0xff, 0xc0, 0x83, 0x4b, 0xff, 0xc1, 0x83, 0x4b, 0xff, 0xc1, 0x83, 0x4b, 0xff, 0xc2, 0x83, 0x4c, 0xff, 0xc2, 0x83, 0x4c, 0xff, 0xc2, 0x83, 0x4c, 0xff, 0xc2, 0x85, 0x4c, 0xff, 0xc2, 0x86, 0x4d, 0xff, 0xc2, 0x86, 0x4e, 0xff, 0xc2, 0x86, 0x4e, 0xff, 0xc2, 0x86, 0x4e, 0xff, 0xc1, 0x86, 0x4e, 0xff, 0xbc, 0x83, 0x4c, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbb, 0x81, 0x49, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb2, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb2, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb2, 0x78, 0x43, 0xff, 0xb2, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb2, 0x78, 0x43, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xaf, 0x75, 0x43, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xaf, 0x76, 0x42, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xae, 0x75, 0x43, 0xff, 0xae, 0x75, 0x42, 0xff, 0xaf, 0x76, 0x42, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xae, 0x75, 0x42, 0xff, 0xad, 0x74, 0x41, 0xff, 0xad, 0x74, 0x41, 0xff, 0xad, 0x74, 0x41, 0xff, 0xad, 0x74, 0x41, 0xff, 0xae, 0x75, 0x41, 0xff, 0xad, 0x74, 0x41, 0xff, 0xae, 0x75, 0x43, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xbd, 0x81, 0x4b, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb6, 0x7d, 0x48, 0xff, 0xbc, 0x82, 0x4c, 0xff, 0xc2, 0x85, 0x4e, 0xff, 0xc3, 0x85, 0x4e, 0xff, 0xc2, 0x86, 0x4e, 0xff, 0xc3, 0x86, 0x4f, 0xff, 0xc3, 0x87, 0x4f, 0xff, 0xc3, 0x89, 0x50, 0xff, 0xc3, 0x8a, 0x52, 0xff, 0xc3, 0x8a, 0x54, 0xff, 0xc2, 0x89, 0x55, 0xff, 0xc2, 0x88, 0x55, 0xff, 0xc2, 0x88, 0x55, 0xff, 0xc2, 0x89, 0x56, 0xff, 0xc2, 0x89, 0x56, 0xff, 0xc2, 0x89, 0x57, 0xff, 0xc3, 0x8a, 0x56, 0xff, 0xc3, 0x8b, 0x55, 0xff, 0xc3, 0x8b, 0x54, 0xff, 0xc3, 0x8a, 0x52, 0xff, 0xc2, 0x88, 0x50, 0xff, 0xc1, 0x87, 0x4f, 0xff, 0xbe, 0x83, 0x4c, 0xff, 0xb9, 0x81, 0x49, 0xff, 0xb7, 0x7e, 0x49, 0xff, 0xb6, 0x7d, 0x48, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7a, 0x46, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x79, 0x44, 0xff, 0xb3, 0x79, 0x44, 0xff, 0xb3, 0x78, 0x44, 0xff, 0xb2, 0x78, 0x43, 0xff, 0xb2, 0x78, 0x43, 0xff, 0xb0, 0x76, 0x42, 0xff, 0xad, 0x74, 0x42, 0xff, 0xad, 0x74, 0x42, 0xff, 0xac, 0x73, 0x41, 0xff, 0xac, 0x73, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xad, 0x74, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xaf, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x74, 0x41, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xb7, 0x7d, 0x48, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xbe, 0x82, 0x4d, 0xff, 0xc2, 0x86, 0x4f, 0xff, 0xc3, 0x88, 0x52, 0xff, 0xc3, 0x8c, 0x54, 0xff, 0xc2, 0x94, 0x58, 0xff, 0xc1, 0x95, 0x5c, 0xff, 0xc2, 0x94, 0x5d, 0xff, 0xc2, 0x94, 0x5e, 0xff, 0xc2, 0x94, 0x5c, 0xff, 0xc1, 0x95, 0x5b, 0xff, 0xc1, 0x94, 0x59, 0xff, 0xc3, 0x92, 0x57, 0xff, 0xc3, 0x8e, 0x54, 0xff, 0xc3, 0x89, 0x51, 0xff, 0xc3, 0x87, 0x4f, 0xff, 0xc1, 0x85, 0x4d, 0xff, 0xbe, 0x82, 0x4b, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb9, 0x7f, 0x48, 0xff, 0xb9, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb9, 0x7e, 0x48, 0xff, 0xb9, 0x7e, 0x48, 0xff, 0xb9, 0x7f, 0x48, 0xff, 0xb9, 0x7f, 0x49, 0xff, 0xb9, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb9, 0x80, 0x48, 0xff, 0xb9, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x7d, 0x48, 0xff, 0xb7, 0x7c, 0x47, 0xff, 0xb7, 0x7c, 0x46, 0xff, 0xb7, 0x7c, 0x47, 0xff, + 0xb5, 0x7b, 0x46, 0xff, 0xb6, 0x7c, 0x47, 0xff, 0xb7, 0x7d, 0x49, 0xff, 0xb5, 0x7d, 0x49, 0xff, 0xb3, 0x7b, 0x47, 0xff, 0xb2, 0x7a, 0x46, 0xff, 0xb2, 0x79, 0x45, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xaf, 0x75, 0x43, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xaf, 0x74, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xad, 0x74, 0x42, 0xff, 0xad, 0x74, 0x41, 0xff, 0xad, 0x74, 0x41, 0xff, 0xad, 0x74, 0x41, 0xff, 0xad, 0x74, 0x41, 0xff, 0xae, 0x75, 0x42, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xb0, 0x75, 0x43, 0xff, 0xb2, 0x78, 0x45, 0xff, 0xbf, 0x84, 0x4d, 0xff, 0xc3, 0x85, 0x4d, 0xff, 0xc3, 0x85, 0x4d, 0xff, 0xc3, 0x85, 0x4d, 0xff, 0xc3, 0x86, 0x4e, 0xff, 0xc3, 0x87, 0x4f, 0xff, 0xc3, 0x89, 0x50, 0xff, 0xc3, 0x8c, 0x52, 0xff, 0xc3, 0x8e, 0x52, 0xff, 0xc3, 0x92, 0x54, 0xff, 0xc1, 0x94, 0x58, 0xff, 0xc1, 0x95, 0x5b, 0xff, 0xc1, 0x95, 0x5e, 0xff, 0xc2, 0x95, 0x62, 0xff, 0xc3, 0x95, 0x64, 0xff, 0xc3, 0x95, 0x65, 0xff, 0xc3, 0x95, 0x66, 0xff, 0xc3, 0x95, 0x63, 0xff, 0xc3, 0x95, 0x63, 0xff, 0xc2, 0x95, 0x63, 0xff, 0xc2, 0x95, 0x61, 0xff, 0xc2, 0x95, 0x60, 0xff, 0xc1, 0x95, 0x5d, 0xff, 0xc1, 0x95, 0x5b, 0xff, 0xc2, 0x95, 0x59, 0xff, 0xc3, 0x93, 0x56, 0xff, 0xc3, 0x8f, 0x54, 0xff, 0xc3, 0x8b, 0x53, 0xff, 0xc3, 0x89, 0x52, 0xff, 0xc3, 0x88, 0x4f, 0xff, 0xc3, 0x86, 0x4e, 0xff, 0xc3, 0x85, 0x4d, 0xff, 0xc3, 0x84, 0x4c, 0xff, 0xc3, 0x83, 0x4c, 0xff, 0xc3, 0x83, 0x4c, 0xff, 0xc3, 0x83, 0x4c, 0xff, 0xc3, 0x83, 0x4c, 0xff, 0xc3, 0x84, 0x4c, 0xff, 0xc4, 0x84, 0x4c, 0xff, 0xc3, 0x84, 0x4c, 0xff, 0xc3, 0x85, 0x4d, 0xff, 0xc3, 0x86, 0x4d, 0xff, 0xc3, 0x86, 0x4e, 0xff, 0xc3, 0x86, 0x4e, 0xff, 0xc3, 0x86, 0x4e, 0xff, 0xc3, 0x87, 0x4e, 0xff, 0xc3, 0x87, 0x4f, 0xff, 0xc0, 0x85, 0x4d, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xb9, 0x7f, 0x49, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbd, 0x82, 0x4b, 0xff, 0xbe, 0x82, 0x4b, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb4, 0x7a, 0x45, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb3, 0x79, 0x44, 0xff, 0xb3, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x78, 0x44, 0xff, 0xb2, 0x78, 0x44, 0xff, 0xb2, 0x78, 0x43, 0xff, 0xb2, 0x78, 0x43, 0xff, 0xb2, 0x78, 0x43, 0xff, 0xb2, 0x79, 0x43, 0xff, 0xb2, 0x78, 0x43, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xad, 0x74, 0x42, 0xff, 0xad, 0x74, 0x42, 0xff, 0xad, 0x74, 0x42, 0xff, 0xad, 0x74, 0x42, 0xff, 0xad, 0x74, 0x42, 0xff, 0xad, 0x74, 0x42, 0xff, 0xad, 0x74, 0x42, 0xff, 0xad, 0x75, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xad, 0x75, 0x42, 0xff, 0xad, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xad, 0x74, 0x41, 0xff, 0xac, 0x73, 0x41, 0xff, 0xac, 0x73, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xad, 0x74, 0x41, 0xff, 0xad, 0x74, 0x41, 0xff, 0xac, 0x73, 0x40, 0xff, 0xae, 0x75, 0x41, 0xff, 0xb9, 0x7f, 0x49, 0xff, 0xbe, 0x82, 0x4c, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xbf, 0x85, 0x4d, 0xff, 0xc4, 0x87, 0x4f, 0xff, 0xc3, 0x86, 0x4e, 0xff, 0xc3, 0x87, 0x4f, 0xff, 0xc3, 0x88, 0x4f, 0xff, 0xc3, 0x89, 0x50, 0xff, 0xc3, 0x8a, 0x52, 0xff, 0xc3, 0x8a, 0x53, 0xff, 0xc3, 0x8a, 0x55, 0xff, 0xc3, 0x8a, 0x57, 0xff, 0xc3, 0x8a, 0x57, 0xff, 0xc3, 0x8a, 0x57, 0xff, 0xc3, 0x8a, 0x57, 0xff, 0xc3, 0x8b, 0x58, 0xff, 0xc3, 0x8c, 0x59, 0xff, 0xc3, 0x8c, 0x59, 0xff, 0xc3, 0x8f, 0x59, 0xff, 0xc1, 0x8d, 0x55, 0xff, 0xbc, 0x85, 0x4f, 0xff, 0xba, 0x81, 0x4c, 0xff, 0xba, 0x80, 0x4b, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7e, 0x49, 0xff, 0xb6, 0x7d, 0x49, 0xff, 0xb5, 0x7d, 0x48, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb4, 0x7a, 0x46, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x79, 0x44, 0xff, 0xb2, 0x78, 0x44, 0xff, 0xb2, 0x78, 0x43, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xad, 0x73, 0x42, 0xff, 0xac, 0x73, 0x41, 0xff, 0xac, 0x72, 0x41, 0xff, 0xac, 0x72, 0x41, 0xff, 0xac, 0x72, 0x41, 0xff, 0xac, 0x72, 0x41, 0xff, 0xac, 0x72, 0x41, 0xff, 0xac, 0x72, 0x41, 0xff, 0xac, 0x73, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xae, 0x74, 0x41, 0xff, 0xae, 0x74, 0x41, 0xff, 0xae, 0x74, 0x41, 0xff, 0xae, 0x74, 0x41, 0xff, 0xae, 0x74, 0x42, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xae, 0x74, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xba, 0x7f, 0x4a, 0xff, 0xb9, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7d, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xba, 0x81, 0x4b, 0xff, 0xbf, 0x83, 0x4e, 0xff, 0xc2, 0x86, 0x50, 0xff, 0xc3, 0x8b, 0x53, 0xff, 0xc3, 0x92, 0x57, 0xff, 0xc2, 0x96, 0x5b, 0xff, 0xc2, 0x95, 0x5d, 0xff, 0xc2, 0x95, 0x5e, 0xff, 0xc2, 0x95, 0x5e, 0xff, 0xc2, 0x95, 0x5c, 0xff, 0xc1, 0x95, 0x5b, 0xff, 0xc2, 0x95, 0x58, 0xff, 0xc3, 0x91, 0x56, 0xff, 0xc3, 0x8b, 0x53, 0xff, 0xc3, 0x89, 0x51, 0xff, 0xc3, 0x87, 0x4f, 0xff, 0xc1, 0x84, 0x4d, 0xff, 0xbe, 0x82, 0x4b, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb9, 0x7e, 0x48, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb9, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb9, 0x7f, 0x48, 0xff, 0xb9, 0x80, 0x48, 0xff, 0xb9, 0x80, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7d, 0x47, 0xff, 0xb7, 0x7c, 0x47, 0xff, 0xb7, 0x7c, 0x46, 0xff, 0xb6, 0x7c, 0x46, 0xff, + 0xb5, 0x7b, 0x45, 0xff, 0xb6, 0x7c, 0x47, 0xff, 0xb6, 0x7d, 0x48, 0xff, 0xb6, 0x7e, 0x49, 0xff, 0xb5, 0x7c, 0x48, 0xff, 0xb2, 0x79, 0x46, 0xff, 0xb1, 0x78, 0x45, 0xff, 0xb0, 0x78, 0x44, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xaf, 0x76, 0x42, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xae, 0x75, 0x41, 0xff, 0xae, 0x75, 0x41, 0xff, 0xae, 0x74, 0x42, 0xff, 0xad, 0x74, 0x41, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x74, 0x41, 0xff, 0xad, 0x74, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xac, 0x73, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xaf, 0x75, 0x43, 0xff, 0xaf, 0x75, 0x43, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xc5, 0x88, 0x50, 0xff, 0xc3, 0x87, 0x4f, 0xff, 0xc3, 0x86, 0x4e, 0xff, 0xc4, 0x86, 0x4d, 0xff, 0xc4, 0x87, 0x4e, 0xff, 0xc3, 0x87, 0x4e, 0xff, 0xc3, 0x87, 0x4e, 0xff, 0xc3, 0x88, 0x4f, 0xff, 0xc3, 0x8c, 0x52, 0xff, 0xc3, 0x90, 0x53, 0xff, 0xc3, 0x94, 0x54, 0xff, 0xc3, 0x95, 0x57, 0xff, 0xc1, 0x96, 0x59, 0xff, 0xc1, 0x97, 0x5b, 0xff, 0xc2, 0x96, 0x5c, 0xff, 0xc2, 0x97, 0x5d, 0xff, 0xc2, 0x97, 0x5c, 0xff, 0xc1, 0x97, 0x5a, 0xff, 0xc2, 0x97, 0x5b, 0xff, 0xc1, 0x96, 0x5a, 0xff, 0xc3, 0x96, 0x59, 0xff, 0xc4, 0x96, 0x58, 0xff, 0xc3, 0x94, 0x57, 0xff, 0xc4, 0x92, 0x56, 0xff, 0xc4, 0x8f, 0x54, 0xff, 0xc4, 0x8c, 0x53, 0xff, 0xc4, 0x8a, 0x52, 0xff, 0xc4, 0x89, 0x50, 0xff, 0xc3, 0x88, 0x50, 0xff, 0xc3, 0x87, 0x4e, 0xff, 0xc4, 0x86, 0x4e, 0xff, 0xc4, 0x85, 0x4d, 0xff, 0xc4, 0x85, 0x4d, 0xff, 0xc4, 0x84, 0x4c, 0xff, 0xc4, 0x84, 0x4c, 0xff, 0xc4, 0x84, 0x4d, 0xff, 0xc4, 0x84, 0x4d, 0xff, 0xc4, 0x85, 0x4d, 0xff, 0xc4, 0x85, 0x4d, 0xff, 0xc4, 0x86, 0x4f, 0xff, 0xc3, 0x87, 0x50, 0xff, 0xc4, 0x88, 0x51, 0xff, 0xc4, 0x88, 0x50, 0xff, 0xc4, 0x88, 0x50, 0xff, 0xc4, 0x87, 0x4f, 0xff, 0xc3, 0x87, 0x4f, 0xff, 0xbe, 0x83, 0x4c, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xbc, 0x80, 0x4a, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xbe, 0x82, 0x4a, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7a, 0x45, 0xff, 0xb4, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x43, 0xff, 0xb2, 0x79, 0x43, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xaf, 0x75, 0x43, 0xff, 0xad, 0x73, 0x42, 0xff, 0xad, 0x74, 0x42, 0xff, 0xad, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xad, 0x74, 0x42, 0xff, 0xad, 0x74, 0x41, 0xff, 0xae, 0x74, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xae, 0x74, 0x41, 0xff, 0xac, 0x73, 0x40, 0xff, 0xab, 0x72, 0x40, 0xff, 0xab, 0x73, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xac, 0x73, 0x41, 0xff, 0xac, 0x73, 0x41, 0xff, 0xad, 0x74, 0x41, 0xff, 0xad, 0x74, 0x41, 0xff, 0xac, 0x73, 0x41, 0xff, 0xb1, 0x76, 0x43, 0xff, 0xbc, 0x80, 0x4b, 0xff, 0xbd, 0x82, 0x4c, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xba, 0x81, 0x4b, 0xff, 0xc1, 0x86, 0x4e, 0xff, 0xc4, 0x87, 0x4f, 0xff, 0xc3, 0x87, 0x4e, 0xff, 0xc4, 0x88, 0x4f, 0xff, 0xc4, 0x89, 0x50, 0xff, 0xc4, 0x8a, 0x50, 0xff, 0xc4, 0x8b, 0x52, 0xff, 0xc4, 0x8c, 0x55, 0xff, 0xc4, 0x8b, 0x57, 0xff, 0xc4, 0x8b, 0x58, 0xff, 0xc4, 0x8b, 0x59, 0xff, 0xc4, 0x8c, 0x59, 0xff, 0xc4, 0x8d, 0x5a, 0xff, 0xc4, 0x8e, 0x5b, 0xff, 0xc4, 0x90, 0x5c, 0xff, 0xbe, 0x89, 0x56, 0xff, 0xb9, 0x83, 0x4f, 0xff, 0xba, 0x83, 0x4d, 0xff, 0xbb, 0x82, 0x4d, 0xff, 0xbb, 0x82, 0x4c, 0xff, 0xba, 0x81, 0x4c, 0xff, 0xb9, 0x80, 0x4b, 0xff, 0xb9, 0x80, 0x4b, 0xff, 0xb8, 0x80, 0x4a, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb6, 0x7d, 0x48, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb4, 0x7a, 0x46, 0xff, 0xb4, 0x7a, 0x45, 0xff, 0xb4, 0x7a, 0x44, 0xff, 0xaf, 0x75, 0x43, 0xff, 0xad, 0x73, 0x41, 0xff, 0xac, 0x73, 0x42, 0xff, 0xac, 0x72, 0x41, 0xff, 0xac, 0x72, 0x41, 0xff, 0xab, 0x71, 0x41, 0xff, 0xab, 0x72, 0x41, 0xff, 0xac, 0x71, 0x41, 0xff, 0xac, 0x72, 0x41, 0xff, 0xac, 0x72, 0x41, 0xff, 0xac, 0x72, 0x41, 0xff, 0xac, 0x73, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xae, 0x73, 0x41, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xad, 0x72, 0x40, 0xff, 0xb3, 0x7a, 0x46, 0xff, 0xbc, 0x81, 0x4b, 0xff, 0xba, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7d, 0x48, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xbb, 0x82, 0x4c, 0xff, 0xc1, 0x85, 0x4f, 0xff, 0xc4, 0x89, 0x52, 0xff, 0xc4, 0x8d, 0x54, 0xff, 0xc4, 0x92, 0x59, 0xff, 0xc2, 0x96, 0x5b, 0xff, 0xc2, 0x96, 0x5d, 0xff, 0xc2, 0x96, 0x5e, 0xff, 0xc2, 0x96, 0x5d, 0xff, 0xc2, 0x97, 0x5c, 0xff, 0xc3, 0x96, 0x5a, 0xff, 0xc4, 0x93, 0x57, 0xff, 0xc4, 0x8d, 0x55, 0xff, 0xc4, 0x8a, 0x52, 0xff, 0xc4, 0x88, 0x50, 0xff, 0xc4, 0x87, 0x4f, 0xff, 0xc2, 0x85, 0x4d, 0xff, 0xbf, 0x83, 0x4c, 0xff, 0xbd, 0x81, 0x4b, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb9, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x7d, 0x47, 0xff, 0xb8, 0x7d, 0x47, 0xff, 0xb8, 0x7d, 0x47, 0xff, 0xb8, 0x7d, 0x47, 0xff, 0xb8, 0x7d, 0x47, 0xff, 0xb9, 0x7e, 0x47, 0xff, 0xb9, 0x7e, 0x47, 0xff, 0xb9, 0x7f, 0x47, 0xff, 0xb9, 0x7e, 0x47, 0xff, 0xb8, 0x7d, 0x47, 0xff, 0xb8, 0x7d, 0x46, 0xff, 0xb7, 0x7c, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7b, 0x46, 0xff, 0xb6, 0x7b, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, + 0xb5, 0x7b, 0x45, 0xff, 0xb6, 0x7e, 0x49, 0xff, 0xb6, 0x7c, 0x48, 0xff, 0xb6, 0x7c, 0x48, 0xff, 0xb5, 0x7c, 0x48, 0xff, 0xb3, 0x7b, 0x46, 0xff, 0xb2, 0x7a, 0x46, 0xff, 0xb1, 0x79, 0x45, 0xff, 0xb0, 0x78, 0x44, 0xff, 0xaf, 0x76, 0x42, 0xff, 0xaf, 0x76, 0x42, 0xff, 0xaf, 0x76, 0x42, 0xff, 0xae, 0x75, 0x41, 0xff, 0xae, 0x74, 0x41, 0xff, 0xae, 0x74, 0x41, 0xff, 0xae, 0x74, 0x41, 0xff, 0xae, 0x74, 0x41, 0xff, 0xae, 0x74, 0x41, 0xff, 0xae, 0x74, 0x41, 0xff, 0xad, 0x74, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xac, 0x72, 0x41, 0xff, 0xac, 0x73, 0x41, 0xff, 0xac, 0x72, 0x41, 0xff, 0xac, 0x73, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xac, 0x72, 0x41, 0xff, 0xae, 0x74, 0x42, 0xff, 0xaf, 0x76, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xc5, 0x88, 0x4f, 0xff, 0xc4, 0x86, 0x4d, 0xff, 0xc4, 0x88, 0x4f, 0xff, 0xc4, 0x88, 0x50, 0xff, 0xc4, 0x89, 0x51, 0xff, 0xc4, 0x88, 0x4f, 0xff, 0xc4, 0x88, 0x50, 0xff, 0xc4, 0x88, 0x4f, 0xff, 0xc4, 0x88, 0x50, 0xff, 0xc4, 0x87, 0x4f, 0xff, 0xc4, 0x8c, 0x51, 0xff, 0xc4, 0x90, 0x53, 0xff, 0xc4, 0x91, 0x54, 0xff, 0xc4, 0x97, 0x55, 0xff, 0xc3, 0x97, 0x57, 0xff, 0xc2, 0x97, 0x58, 0xff, 0xc3, 0x94, 0x55, 0xff, 0xc4, 0x95, 0x56, 0xff, 0xc4, 0x95, 0x55, 0xff, 0xc4, 0x95, 0x56, 0xff, 0xc4, 0x91, 0x55, 0xff, 0xc4, 0x8e, 0x54, 0xff, 0xc4, 0x8d, 0x52, 0xff, 0xc4, 0x8c, 0x52, 0xff, 0xc4, 0x8b, 0x51, 0xff, 0xc4, 0x8a, 0x51, 0xff, 0xc4, 0x89, 0x50, 0xff, 0xc4, 0x88, 0x50, 0xff, 0xc4, 0x87, 0x4e, 0xff, 0xc4, 0x87, 0x4e, 0xff, 0xc4, 0x87, 0x4e, 0xff, 0xc4, 0x86, 0x4e, 0xff, 0xc4, 0x86, 0x4e, 0xff, 0xc4, 0x86, 0x4d, 0xff, 0xc4, 0x85, 0x4d, 0xff, 0xc4, 0x86, 0x4d, 0xff, 0xc4, 0x85, 0x4d, 0xff, 0xc4, 0x86, 0x4d, 0xff, 0xc4, 0x86, 0x4e, 0xff, 0xc4, 0x88, 0x4f, 0xff, 0xc4, 0x89, 0x50, 0xff, 0xc4, 0x89, 0x51, 0xff, 0xc4, 0x8a, 0x52, 0xff, 0xc5, 0x89, 0x51, 0xff, 0xc4, 0x89, 0x50, 0xff, 0xc1, 0x86, 0x4e, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xba, 0x80, 0x49, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xbe, 0x82, 0x4b, 0xff, 0xbd, 0x81, 0x4b, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb4, 0x79, 0x45, 0xff, 0xb4, 0x7c, 0x45, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7c, 0x47, 0xff, 0xb4, 0x7c, 0x47, 0xff, 0xb4, 0x7c, 0x47, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb4, 0x7a, 0x45, 0xff, 0xb4, 0x7a, 0x45, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xad, 0x74, 0x41, 0xff, 0xad, 0x74, 0x41, 0xff, 0xad, 0x74, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xad, 0x74, 0x41, 0xff, 0xad, 0x74, 0x42, 0xff, 0xad, 0x74, 0x41, 0xff, 0xad, 0x74, 0x42, 0xff, 0xad, 0x74, 0x42, 0xff, 0xad, 0x74, 0x41, 0xff, 0xad, 0x74, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xac, 0x72, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xab, 0x71, 0x3f, 0xff, 0xaa, 0x71, 0x3f, 0xff, 0xab, 0x72, 0x40, 0xff, 0xab, 0x72, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xac, 0x72, 0x41, 0xff, 0xac, 0x73, 0x41, 0xff, 0xac, 0x73, 0x41, 0xff, 0xab, 0x72, 0x40, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xbb, 0x81, 0x4b, 0xff, 0xbd, 0x82, 0x4b, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb9, 0x7f, 0x49, 0xff, 0xc1, 0x85, 0x4e, 0xff, 0xc5, 0x89, 0x50, 0xff, 0xc4, 0x88, 0x4f, 0xff, 0xc4, 0x87, 0x4f, 0xff, 0xc4, 0x87, 0x50, 0xff, 0xc4, 0x89, 0x50, 0xff, 0xc5, 0x8a, 0x52, 0xff, 0xc5, 0x8d, 0x54, 0xff, 0xc5, 0x8e, 0x56, 0xff, 0xc4, 0x8c, 0x58, 0xff, 0xc5, 0x8d, 0x5a, 0xff, 0xc5, 0x8d, 0x5b, 0xff, 0xc5, 0x8e, 0x5b, 0xff, 0xc4, 0x8f, 0x5c, 0xff, 0xbb, 0x87, 0x54, 0xff, 0xb8, 0x81, 0x4d, 0xff, 0xba, 0x82, 0x4e, 0xff, 0xbc, 0x84, 0x50, 0xff, 0xbe, 0x85, 0x50, 0xff, 0xc0, 0x84, 0x4f, 0xff, 0xbf, 0x84, 0x4f, 0xff, 0xbe, 0x83, 0x4e, 0xff, 0xbc, 0x82, 0x4d, 0xff, 0xba, 0x81, 0x4c, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xb8, 0x7f, 0x4a, 0xff, 0xb7, 0x7e, 0x49, 0xff, 0xb6, 0x7c, 0x48, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb2, 0x77, 0x44, 0xff, 0xad, 0x74, 0x41, 0xff, 0xac, 0x73, 0x41, 0xff, 0xac, 0x72, 0x41, 0xff, 0xac, 0x72, 0x41, 0xff, 0xab, 0x71, 0x40, 0xff, 0xaa, 0x71, 0x40, 0xff, 0xaa, 0x71, 0x40, 0xff, 0xab, 0x71, 0x40, 0xff, 0xab, 0x72, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xac, 0x72, 0x41, 0xff, 0xac, 0x72, 0x41, 0xff, 0xac, 0x72, 0x40, 0xff, 0xac, 0x72, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xae, 0x73, 0x41, 0xff, 0xae, 0x73, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xad, 0x74, 0x41, 0xff, 0xae, 0x74, 0x41, 0xff, 0xaf, 0x74, 0x41, 0xff, 0xb0, 0x75, 0x42, 0xff, 0xab, 0x6f, 0x3d, 0xff, 0xb6, 0x7d, 0x48, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7d, 0x48, 0xff, 0xb7, 0x7c, 0x48, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xc1, 0x84, 0x4c, 0xff, 0xc4, 0x87, 0x50, 0xff, 0xc4, 0x8a, 0x53, 0xff, 0xc5, 0x8c, 0x56, 0xff, 0xc5, 0x92, 0x59, 0xff, 0xc4, 0x97, 0x5b, 0xff, 0xc3, 0x97, 0x5c, 0xff, 0xc3, 0x98, 0x5c, 0xff, 0xc3, 0x97, 0x5c, 0xff, 0xc4, 0x98, 0x5b, 0xff, 0xc4, 0x95, 0x59, 0xff, 0xc5, 0x90, 0x56, 0xff, 0xc5, 0x8b, 0x53, 0xff, 0xc4, 0x8a, 0x52, 0xff, 0xc4, 0x87, 0x50, 0xff, 0xc4, 0x86, 0x4f, 0xff, 0xc2, 0x84, 0x4d, 0xff, 0xc1, 0x84, 0x4d, 0xff, 0xbf, 0x83, 0x4c, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xb9, 0x7f, 0x49, 0xff, 0xb9, 0x7e, 0x48, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7d, 0x46, 0xff, 0xb8, 0x7d, 0x46, 0xff, 0xb8, 0x7d, 0x46, 0xff, 0xb8, 0x7c, 0x46, 0xff, 0xb8, 0x7d, 0x46, 0xff, 0xb8, 0x7c, 0x45, 0xff, 0xb7, 0x7c, 0x45, 0xff, 0xb7, 0x7c, 0x46, 0xff, 0xb6, 0x7c, 0x45, 0xff, 0xb6, 0x7b, 0x46, 0xff, 0xb6, 0x7b, 0x45, 0xff, 0xb5, 0x7a, 0x45, 0xff, 0xb5, 0x7b, 0x45, 0xff, + 0xb6, 0x7c, 0x48, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb6, 0x7e, 0x49, 0xff, 0xb5, 0x7d, 0x49, 0xff, 0xb5, 0x7d, 0x49, 0xff, 0xb5, 0x7e, 0x49, 0xff, 0xb4, 0x7f, 0x4a, 0xff, 0xb4, 0x7f, 0x4a, 0xff, 0xb2, 0x7b, 0x47, 0xff, 0xaf, 0x76, 0x42, 0xff, 0xaf, 0x76, 0x42, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xaf, 0x75, 0x41, 0xff, 0xae, 0x75, 0x41, 0xff, 0xae, 0x74, 0x41, 0xff, 0xae, 0x74, 0x41, 0xff, 0xad, 0x74, 0x41, 0xff, 0xad, 0x74, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xac, 0x73, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xac, 0x73, 0x41, 0xff, 0xac, 0x73, 0x40, 0xff, 0xac, 0x72, 0x41, 0xff, 0xac, 0x72, 0x41, 0xff, 0xac, 0x72, 0x40, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xb5, 0x7b, 0x47, 0xff, 0xc6, 0x89, 0x4f, 0xff, 0xc5, 0x86, 0x4e, 0xff, 0xc5, 0x87, 0x4e, 0xff, 0xc5, 0x87, 0x4e, 0xff, 0xc5, 0x88, 0x4f, 0xff, 0xc5, 0x89, 0x50, 0xff, 0xc5, 0x8a, 0x51, 0xff, 0xc5, 0x8b, 0x51, 0xff, 0xc5, 0x8b, 0x52, 0xff, 0xc5, 0x8a, 0x52, 0xff, 0xc4, 0x89, 0x50, 0xff, 0xc5, 0x8d, 0x53, 0xff, 0xc4, 0x8d, 0x52, 0xff, 0xc4, 0x8f, 0x53, 0xff, 0xc5, 0x94, 0x54, 0xff, 0xc5, 0x93, 0x55, 0xff, 0xc5, 0x8e, 0x53, 0xff, 0xc5, 0x8e, 0x53, 0xff, 0xc5, 0x8f, 0x53, 0xff, 0xc6, 0x90, 0x54, 0xff, 0xc5, 0x8f, 0x53, 0xff, 0xc5, 0x8d, 0x53, 0xff, 0xc5, 0x8d, 0x53, 0xff, 0xc5, 0x8b, 0x52, 0xff, 0xc5, 0x8a, 0x51, 0xff, 0xc5, 0x8b, 0x51, 0xff, 0xc5, 0x8a, 0x50, 0xff, 0xc5, 0x89, 0x50, 0xff, 0xc5, 0x88, 0x4f, 0xff, 0xc5, 0x88, 0x4f, 0xff, 0xc5, 0x88, 0x4f, 0xff, 0xc5, 0x88, 0x4f, 0xff, 0xc5, 0x87, 0x4e, 0xff, 0xc5, 0x87, 0x4e, 0xff, 0xc5, 0x87, 0x4e, 0xff, 0xc5, 0x86, 0x4e, 0xff, 0xc5, 0x87, 0x4e, 0xff, 0xc5, 0x87, 0x4f, 0xff, 0xc5, 0x88, 0x4f, 0xff, 0xc5, 0x89, 0x50, 0xff, 0xc5, 0x8a, 0x51, 0xff, 0xc5, 0x8a, 0x52, 0xff, 0xc5, 0x8b, 0x53, 0xff, 0xc5, 0x8b, 0x52, 0xff, 0xc1, 0x87, 0x4e, 0xff, 0xbc, 0x83, 0x4c, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xbd, 0x82, 0x4b, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb2, 0x79, 0x43, 0xff, 0xb3, 0x78, 0x43, 0xff, 0xb4, 0x7a, 0x44, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x47, 0xff, 0xb3, 0x7b, 0x47, 0xff, 0xb4, 0x7b, 0x48, 0xff, 0xb4, 0x7c, 0x49, 0xff, 0xb5, 0x7d, 0x49, 0xff, 0xb6, 0x7d, 0x48, 0xff, 0xb6, 0x7d, 0x48, 0xff, 0xb6, 0x7c, 0x48, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7b, 0x46, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xad, 0x74, 0x41, 0xff, 0xad, 0x74, 0x41, 0xff, 0xad, 0x74, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xad, 0x74, 0x41, 0xff, 0xae, 0x74, 0x41, 0xff, 0xae, 0x73, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xac, 0x73, 0x40, 0xff, 0xac, 0x73, 0x41, 0xff, 0xac, 0x73, 0x41, 0xff, 0xab, 0x72, 0x40, 0xff, 0xac, 0x72, 0x41, 0xff, 0xab, 0x72, 0x41, 0xff, 0xaa, 0x70, 0x3f, 0xff, 0xaa, 0x70, 0x3f, 0xff, 0xaa, 0x71, 0x3f, 0xff, 0xab, 0x71, 0x40, 0xff, 0xab, 0x71, 0x40, 0xff, 0xab, 0x72, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xab, 0x72, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xaa, 0x71, 0x3f, 0xff, 0xb1, 0x78, 0x45, 0xff, 0xbf, 0x84, 0x4e, 0xff, 0xc0, 0x84, 0x4e, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xbb, 0x82, 0x4b, 0xff, 0xc2, 0x87, 0x50, 0xff, 0xc5, 0x89, 0x51, 0xff, 0xc5, 0x88, 0x50, 0xff, 0xc5, 0x88, 0x4f, 0xff, 0xc5, 0x89, 0x50, 0xff, 0xc5, 0x8a, 0x51, 0xff, 0xc5, 0x8b, 0x52, 0xff, 0xc5, 0x8d, 0x54, 0xff, 0xc5, 0x8e, 0x56, 0xff, 0xc5, 0x8e, 0x59, 0xff, 0xc5, 0x8f, 0x5c, 0xff, 0xc3, 0x8e, 0x5a, 0xff, 0xb9, 0x83, 0x4f, 0xff, 0xb7, 0x80, 0x4c, 0xff, 0xba, 0x82, 0x4f, 0xff, 0xbc, 0x84, 0x51, 0xff, 0xbf, 0x86, 0x52, 0xff, 0xc3, 0x88, 0x52, 0xff, 0xc5, 0x88, 0x52, 0xff, 0xc4, 0x88, 0x51, 0xff, 0xc3, 0x87, 0x51, 0xff, 0xc1, 0x86, 0x50, 0xff, 0xbe, 0x84, 0x4e, 0xff, 0xbc, 0x81, 0x4d, 0xff, 0xba, 0x81, 0x4b, 0xff, 0xb8, 0x80, 0x4a, 0xff, 0xb8, 0x80, 0x4a, 0xff, 0xb4, 0x7a, 0x47, 0xff, 0xad, 0x74, 0x42, 0xff, 0xac, 0x72, 0x41, 0xff, 0xac, 0x72, 0x41, 0xff, 0xac, 0x72, 0x41, 0xff, 0xab, 0x71, 0x40, 0xff, 0xaa, 0x71, 0x40, 0xff, 0xaa, 0x70, 0x40, 0xff, 0xaa, 0x70, 0x40, 0xff, 0xaa, 0x70, 0x40, 0xff, 0xaa, 0x70, 0x40, 0xff, 0xab, 0x71, 0x40, 0xff, 0xab, 0x72, 0x40, 0xff, 0xab, 0x71, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xad, 0x73, 0x40, 0xff, 0xad, 0x74, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xae, 0x73, 0x41, 0xff, 0xae, 0x74, 0x41, 0xff, 0xae, 0x74, 0x41, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xad, 0x72, 0x41, 0xff, 0xba, 0x7e, 0x4a, 0xff, 0xbd, 0x81, 0x4b, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7d, 0x49, 0xff, 0xb6, 0x7c, 0x47, 0xff, 0xb8, 0x7d, 0x49, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xbd, 0x82, 0x4b, 0xff, 0xc1, 0x84, 0x4e, 0xff, 0xc4, 0x87, 0x50, 0xff, 0xc5, 0x89, 0x52, 0xff, 0xc5, 0x8c, 0x55, 0xff, 0xc5, 0x8f, 0x58, 0xff, 0xc5, 0x94, 0x59, 0xff, 0xc5, 0x96, 0x5a, 0xff, 0xc5, 0x97, 0x5a, 0xff, 0xc5, 0x97, 0x5a, 0xff, 0xc5, 0x93, 0x59, 0xff, 0xc5, 0x90, 0x57, 0xff, 0xc5, 0x8e, 0x55, 0xff, 0xc5, 0x8b, 0x53, 0xff, 0xc5, 0x89, 0x51, 0xff, 0xc5, 0x88, 0x51, 0xff, 0xc5, 0x86, 0x4f, 0xff, 0xc4, 0x85, 0x4e, 0xff, 0xc3, 0x84, 0x4d, 0xff, 0xc1, 0x84, 0x4d, 0xff, 0xbf, 0x82, 0x4b, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xbc, 0x80, 0x4a, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb9, 0x7e, 0x48, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7d, 0x46, 0xff, 0xb8, 0x7c, 0x46, 0xff, 0xb8, 0x7c, 0x45, 0xff, 0xb7, 0x7c, 0x45, 0xff, 0xb6, 0x7b, 0x45, 0xff, 0xb5, 0x7b, 0x45, 0xff, 0xb5, 0x7b, 0x45, 0xff, 0xb5, 0x7a, 0x45, 0xff, 0xb5, 0x7a, 0x45, 0xff, 0xb4, 0x7a, 0x45, 0xff, + 0xb7, 0x81, 0x4c, 0xff, 0xb6, 0x80, 0x4c, 0xff, 0xb6, 0x80, 0x4b, 0xff, 0xb5, 0x80, 0x4b, 0xff, 0xb5, 0x7f, 0x4a, 0xff, 0xb4, 0x7e, 0x49, 0xff, 0xb4, 0x7d, 0x49, 0xff, 0xb3, 0x7d, 0x49, 0xff, 0xb2, 0x7c, 0x47, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xaf, 0x76, 0x42, 0xff, 0xae, 0x75, 0x41, 0xff, 0xae, 0x74, 0x41, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x74, 0x41, 0xff, 0xad, 0x74, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xad, 0x73, 0x40, 0xff, 0xad, 0x73, 0x40, 0xff, 0xad, 0x73, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xab, 0x71, 0x3f, 0xff, 0xab, 0x72, 0x40, 0xff, 0xab, 0x71, 0x40, 0xff, 0xac, 0x71, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xaf, 0x76, 0x42, 0xff, 0xbb, 0x83, 0x4a, 0xff, 0xc4, 0x88, 0x50, 0xff, 0xc6, 0x8a, 0x52, 0xff, 0xc5, 0x88, 0x4f, 0xff, 0xc6, 0x89, 0x50, 0xff, 0xc5, 0x88, 0x4f, 0xff, 0xc5, 0x88, 0x4f, 0xff, 0xc5, 0x89, 0x50, 0xff, 0xc5, 0x8b, 0x51, 0xff, 0xc5, 0x8c, 0x53, 0xff, 0xc5, 0x8d, 0x54, 0xff, 0xc5, 0x8d, 0x53, 0xff, 0xc6, 0x8f, 0x54, 0xff, 0xc5, 0x90, 0x54, 0xff, 0xc6, 0x91, 0x54, 0xff, 0xc6, 0x90, 0x54, 0xff, 0xc6, 0x8c, 0x52, 0xff, 0xc6, 0x8c, 0x52, 0xff, 0xc6, 0x8d, 0x52, 0xff, 0xc5, 0x8d, 0x52, 0xff, 0xc6, 0x8d, 0x53, 0xff, 0xc5, 0x8d, 0x52, 0xff, 0xc6, 0x8c, 0x52, 0xff, 0xc5, 0x8c, 0x53, 0xff, 0xc6, 0x8c, 0x53, 0xff, 0xc5, 0x8b, 0x52, 0xff, 0xc6, 0x8b, 0x53, 0xff, 0xc5, 0x8b, 0x53, 0xff, 0xc6, 0x8a, 0x51, 0xff, 0xc6, 0x8a, 0x51, 0xff, 0xc6, 0x89, 0x51, 0xff, 0xc6, 0x89, 0x50, 0xff, 0xc5, 0x88, 0x50, 0xff, 0xc6, 0x89, 0x4f, 0xff, 0xc6, 0x88, 0x4f, 0xff, 0xc6, 0x89, 0x4f, 0xff, 0xc5, 0x89, 0x4f, 0xff, 0xc5, 0x89, 0x50, 0xff, 0xc6, 0x89, 0x51, 0xff, 0xc6, 0x8a, 0x52, 0xff, 0xc6, 0x8a, 0x52, 0xff, 0xc6, 0x8b, 0x54, 0xff, 0xc6, 0x8c, 0x55, 0xff, 0xc3, 0x89, 0x52, 0xff, 0xbb, 0x83, 0x4d, 0xff, 0xb9, 0x81, 0x4c, 0xff, 0xba, 0x81, 0x4b, 0xff, 0xbb, 0x82, 0x4c, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb4, 0x7a, 0x44, 0xff, 0xb2, 0x78, 0x44, 0xff, 0xb2, 0x78, 0x43, 0xff, 0xb3, 0x79, 0x44, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xb4, 0x7a, 0x44, 0xff, 0xb5, 0x7b, 0x45, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb5, 0x7c, 0x48, 0xff, 0xb5, 0x7c, 0x49, 0xff, 0xb5, 0x7d, 0x49, 0xff, 0xb6, 0x7e, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb6, 0x7c, 0x47, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xae, 0x74, 0x43, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x73, 0x41, 0xff, 0xae, 0x73, 0x41, 0xff, 0xae, 0x73, 0x42, 0xff, 0xae, 0x74, 0x41, 0xff, 0xae, 0x74, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xad, 0x71, 0x40, 0xff, 0xac, 0x71, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xac, 0x71, 0x40, 0xff, 0xab, 0x72, 0x40, 0xff, 0xab, 0x72, 0x40, 0xff, 0xaa, 0x71, 0x40, 0xff, 0xa9, 0x6f, 0x3f, 0xff, 0xa9, 0x6f, 0x3f, 0xff, 0xaa, 0x70, 0x3f, 0xff, 0xaa, 0x71, 0x3f, 0xff, 0xaa, 0x71, 0x3f, 0xff, 0xab, 0x71, 0x3f, 0xff, 0xab, 0x71, 0x40, 0xff, 0xab, 0x72, 0x40, 0xff, 0xab, 0x71, 0x40, 0xff, 0xab, 0x72, 0x40, 0xff, 0xab, 0x72, 0x3f, 0xff, 0xa9, 0x70, 0x3e, 0xff, 0xae, 0x75, 0x43, 0xff, 0xbc, 0x82, 0x4e, 0xff, 0xc0, 0x85, 0x4e, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xc1, 0x86, 0x4f, 0xff, 0xc6, 0x8b, 0x52, 0xff, 0xc6, 0x8b, 0x52, 0xff, 0xc6, 0x89, 0x50, 0xff, 0xc6, 0x88, 0x50, 0xff, 0xc5, 0x89, 0x50, 0xff, 0xc6, 0x8a, 0x51, 0xff, 0xc6, 0x8a, 0x52, 0xff, 0xc6, 0x8d, 0x53, 0xff, 0xc7, 0x90, 0x57, 0xff, 0xbf, 0x8a, 0x55, 0xff, 0xb8, 0x82, 0x4e, 0xff, 0xb9, 0x80, 0x4c, 0xff, 0xb9, 0x82, 0x4e, 0xff, 0xbb, 0x83, 0x50, 0xff, 0xbe, 0x86, 0x52, 0xff, 0xc3, 0x89, 0x54, 0xff, 0xc6, 0x8b, 0x55, 0xff, 0xc6, 0x8c, 0x56, 0xff, 0xc6, 0x8b, 0x55, 0xff, 0xc6, 0x8a, 0x54, 0xff, 0xc6, 0x89, 0x53, 0xff, 0xc5, 0x88, 0x52, 0xff, 0xc2, 0x86, 0x50, 0xff, 0xbe, 0x84, 0x4d, 0xff, 0xbd, 0x83, 0x4d, 0xff, 0xb6, 0x7e, 0x49, 0xff, 0xae, 0x74, 0x42, 0xff, 0xac, 0x72, 0x41, 0xff, 0xac, 0x72, 0x41, 0xff, 0xac, 0x71, 0x41, 0xff, 0xab, 0x71, 0x40, 0xff, 0xab, 0x71, 0x40, 0xff, 0xaa, 0x70, 0x40, 0xff, 0xaa, 0x6f, 0x40, 0xff, 0xaa, 0x6f, 0x40, 0xff, 0xaa, 0x6f, 0x40, 0xff, 0xaa, 0x6f, 0x40, 0xff, 0xaa, 0x70, 0x40, 0xff, 0xaa, 0x70, 0x40, 0xff, 0xab, 0x71, 0x40, 0xff, 0xab, 0x71, 0x40, 0xff, 0xab, 0x71, 0x40, 0xff, 0xab, 0x71, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xad, 0x72, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xad, 0x73, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xae, 0x73, 0x40, 0xff, 0xae, 0x73, 0x40, 0xff, 0xae, 0x74, 0x40, 0xff, 0xaf, 0x75, 0x41, 0xff, 0xbd, 0x81, 0x4b, 0xff, 0xc0, 0x82, 0x4c, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb9, 0x7f, 0x49, 0xff, 0xbc, 0x81, 0x4b, 0xff, 0xc0, 0x83, 0x4d, 0xff, 0xc5, 0x86, 0x4f, 0xff, 0xc6, 0x89, 0x51, 0xff, 0xc6, 0x8a, 0x53, 0xff, 0xc6, 0x8d, 0x55, 0xff, 0xc6, 0x8f, 0x57, 0xff, 0xc6, 0x92, 0x59, 0xff, 0xc6, 0x93, 0x59, 0xff, 0xc6, 0x91, 0x58, 0xff, 0xc6, 0x8f, 0x57, 0xff, 0xc6, 0x8d, 0x55, 0xff, 0xc6, 0x8b, 0x54, 0xff, 0xc6, 0x8a, 0x53, 0xff, 0xc6, 0x89, 0x51, 0xff, 0xc6, 0x88, 0x51, 0xff, 0xc6, 0x88, 0x50, 0xff, 0xc6, 0x87, 0x4f, 0xff, 0xc3, 0x86, 0x4f, 0xff, 0xc1, 0x84, 0x4d, 0xff, 0xbe, 0x84, 0x4c, 0xff, 0xbd, 0x83, 0x4c, 0xff, 0xbd, 0x82, 0x4b, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x7d, 0x47, 0xff, 0xb8, 0x7d, 0x46, 0xff, 0xb8, 0x7c, 0x45, 0xff, 0xb7, 0x7c, 0x45, 0xff, 0xb6, 0x7b, 0x45, 0xff, 0xb6, 0x7b, 0x45, 0xff, 0xb5, 0x7b, 0x45, 0xff, 0xb5, 0x7b, 0x45, 0xff, 0xb5, 0x7a, 0x45, 0xff, 0xb6, 0x7e, 0x49, 0xff, + 0xb6, 0x81, 0x4b, 0xff, 0xb6, 0x80, 0x4b, 0xff, 0xb6, 0x80, 0x4b, 0xff, 0xb5, 0x80, 0x4a, 0xff, 0xb5, 0x7f, 0x4a, 0xff, 0xb4, 0x7d, 0x49, 0xff, 0xb4, 0x7d, 0x49, 0xff, 0xb4, 0x7d, 0x48, 0xff, 0xb2, 0x7c, 0x47, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xaf, 0x75, 0x41, 0xff, 0xaf, 0x74, 0x42, 0xff, 0xae, 0x74, 0x41, 0xff, 0xae, 0x74, 0x41, 0xff, 0xae, 0x74, 0x41, 0xff, 0xad, 0x74, 0x41, 0xff, 0xad, 0x73, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xab, 0x71, 0x3f, 0xff, 0xac, 0x71, 0x40, 0xff, 0xab, 0x71, 0x3f, 0xff, 0xaa, 0x70, 0x3f, 0xff, 0xaa, 0x70, 0x3f, 0xff, 0xab, 0x71, 0x3f, 0xff, 0xab, 0x71, 0x3f, 0xff, 0xac, 0x72, 0x41, 0xff, 0xaf, 0x75, 0x41, 0xff, 0xb8, 0x7e, 0x46, 0xff, 0xb6, 0x7c, 0x43, 0xff, 0xb8, 0x80, 0x44, 0xff, 0xba, 0x81, 0x47, 0xff, 0xc8, 0x8b, 0x53, 0xff, 0xc6, 0x8a, 0x51, 0xff, 0xc6, 0x8a, 0x51, 0xff, 0xc6, 0x8a, 0x51, 0xff, 0xc6, 0x8a, 0x51, 0xff, 0xc6, 0x8b, 0x51, 0xff, 0xc6, 0x8a, 0x51, 0xff, 0xc6, 0x8c, 0x53, 0xff, 0xc6, 0x93, 0x56, 0xff, 0xc6, 0x96, 0x57, 0xff, 0xc6, 0x96, 0x57, 0xff, 0xc6, 0x94, 0x57, 0xff, 0xc6, 0x8f, 0x55, 0xff, 0xc6, 0x8d, 0x53, 0xff, 0xc7, 0x8e, 0x54, 0xff, 0xc6, 0x8d, 0x53, 0xff, 0xc6, 0x8d, 0x53, 0xff, 0xc6, 0x8d, 0x53, 0xff, 0xc7, 0x8d, 0x53, 0xff, 0xc6, 0x8c, 0x53, 0xff, 0xc7, 0x8c, 0x54, 0xff, 0xc6, 0x8c, 0x54, 0xff, 0xc7, 0x8d, 0x55, 0xff, 0xc6, 0x8c, 0x54, 0xff, 0xc7, 0x8c, 0x55, 0xff, 0xc6, 0x8c, 0x54, 0xff, 0xc6, 0x8b, 0x52, 0xff, 0xc7, 0x8b, 0x52, 0xff, 0xc6, 0x8b, 0x51, 0xff, 0xc6, 0x8b, 0x51, 0xff, 0xc6, 0x89, 0x50, 0xff, 0xc7, 0x8a, 0x51, 0xff, 0xc6, 0x8b, 0x51, 0xff, 0xc7, 0x8c, 0x52, 0xff, 0xc6, 0x8b, 0x52, 0xff, 0xc7, 0x8c, 0x54, 0xff, 0xc7, 0x8c, 0x54, 0xff, 0xc7, 0x8c, 0x53, 0xff, 0xc3, 0x89, 0x52, 0xff, 0xbb, 0x83, 0x4d, 0xff, 0xba, 0x81, 0x4d, 0xff, 0xbb, 0x82, 0x4e, 0xff, 0xbb, 0x83, 0x4c, 0xff, 0xb5, 0x7b, 0x46, 0xff, 0xaa, 0x70, 0x3c, 0xff, 0xab, 0x71, 0x3e, 0xff, 0xae, 0x74, 0x3f, 0xff, 0xb2, 0x78, 0x43, 0xff, 0xb3, 0x78, 0x43, 0xff, 0xb2, 0x78, 0x43, 0xff, 0xb3, 0x79, 0x43, 0xff, 0xb4, 0x7a, 0x44, 0xff, 0xb5, 0x7a, 0x45, 0xff, 0xb5, 0x7b, 0x46, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7d, 0x49, 0xff, 0xb6, 0x7e, 0x49, 0xff, 0xb7, 0x7f, 0x4a, 0xff, 0xb8, 0x80, 0x4a, 0xff, 0xb8, 0x80, 0x4a, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xb9, 0x80, 0x4b, 0xff, 0xba, 0x81, 0x4b, 0xff, 0xba, 0x81, 0x4b, 0xff, 0xbc, 0x83, 0x4c, 0xff, 0xb7, 0x7e, 0x49, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xaf, 0x75, 0x43, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x73, 0x42, 0xff, 0xad, 0x74, 0x42, 0xff, 0xae, 0x73, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xac, 0x72, 0x41, 0xff, 0xac, 0x72, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xac, 0x72, 0x3f, 0xff, 0xac, 0x72, 0x3f, 0xff, 0xab, 0x71, 0x40, 0xff, 0xab, 0x71, 0x40, 0xff, 0xa9, 0x6f, 0x3f, 0xff, 0xa7, 0x6e, 0x3d, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xa9, 0x6f, 0x3f, 0xff, 0xa9, 0x6f, 0x3f, 0xff, 0xab, 0x71, 0x3f, 0xff, 0xab, 0x71, 0x3f, 0xff, 0xaa, 0x70, 0x3f, 0xff, 0xaa, 0x71, 0x40, 0xff, 0xaa, 0x71, 0x40, 0xff, 0xaa, 0x70, 0x3f, 0xff, 0xaa, 0x70, 0x3f, 0xff, 0xad, 0x73, 0x42, 0xff, 0xbb, 0x81, 0x4d, 0xff, 0xc2, 0x86, 0x4f, 0xff, 0xbe, 0x82, 0x4b, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xbf, 0x83, 0x4c, 0xff, 0xc4, 0x89, 0x50, 0xff, 0xc6, 0x8d, 0x54, 0xff, 0xc6, 0x8c, 0x53, 0xff, 0xc6, 0x8a, 0x51, 0xff, 0xc6, 0x8a, 0x50, 0xff, 0xc6, 0x89, 0x50, 0xff, 0xc7, 0x89, 0x51, 0xff, 0xc8, 0x8c, 0x52, 0xff, 0xbd, 0x86, 0x4f, 0xff, 0xb7, 0x80, 0x4b, 0xff, 0xb8, 0x80, 0x4b, 0xff, 0xb8, 0x80, 0x4c, 0xff, 0xb9, 0x82, 0x4e, 0xff, 0xbc, 0x84, 0x50, 0xff, 0xc1, 0x87, 0x52, 0xff, 0xc6, 0x8b, 0x55, 0xff, 0xc7, 0x8d, 0x57, 0xff, 0xc7, 0x90, 0x59, 0xff, 0xc6, 0x91, 0x59, 0xff, 0xc6, 0x8f, 0x58, 0xff, 0xc7, 0x8e, 0x58, 0xff, 0xc6, 0x8d, 0x56, 0xff, 0xc6, 0x8b, 0x54, 0xff, 0xc6, 0x88, 0x53, 0xff, 0xbc, 0x82, 0x4d, 0xff, 0xb0, 0x76, 0x44, 0xff, 0xac, 0x72, 0x42, 0xff, 0xac, 0x72, 0x41, 0xff, 0xab, 0x72, 0x41, 0xff, 0xaa, 0x71, 0x40, 0xff, 0xaa, 0x70, 0x40, 0xff, 0xaa, 0x70, 0x40, 0xff, 0xa9, 0x6f, 0x3f, 0xff, 0xa9, 0x70, 0x3f, 0xff, 0xa9, 0x6f, 0x3f, 0xff, 0xa9, 0x6f, 0x3f, 0xff, 0xa9, 0x70, 0x3f, 0xff, 0xa9, 0x6f, 0x3f, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xaa, 0x70, 0x3f, 0xff, 0xaa, 0x70, 0x3f, 0xff, 0xab, 0x70, 0x3f, 0xff, 0xab, 0x70, 0x3f, 0xff, 0xac, 0x71, 0x3f, 0xff, 0xac, 0x71, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xad, 0x72, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xad, 0x73, 0x40, 0xff, 0xad, 0x73, 0x40, 0xff, 0xad, 0x73, 0x40, 0xff, 0xad, 0x74, 0x40, 0xff, 0xc1, 0x85, 0x4e, 0xff, 0xc1, 0x84, 0x4d, 0xff, 0xbd, 0x80, 0x4a, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x7d, 0x49, 0xff, 0xb8, 0x7d, 0x48, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb9, 0x7f, 0x49, 0xff, 0xbd, 0x81, 0x4c, 0xff, 0xc3, 0x85, 0x4f, 0xff, 0xc6, 0x87, 0x50, 0xff, 0xc7, 0x89, 0x52, 0xff, 0xc6, 0x8b, 0x54, 0xff, 0xc7, 0x8d, 0x55, 0xff, 0xc7, 0x8e, 0x56, 0xff, 0xc6, 0x8e, 0x56, 0xff, 0xc6, 0x8d, 0x56, 0xff, 0xc7, 0x8d, 0x55, 0xff, 0xc7, 0x8c, 0x55, 0xff, 0xc6, 0x8c, 0x54, 0xff, 0xc6, 0x8a, 0x52, 0xff, 0xc6, 0x8a, 0x52, 0xff, 0xc6, 0x89, 0x51, 0xff, 0xc7, 0x89, 0x51, 0xff, 0xc5, 0x89, 0x51, 0xff, 0xc2, 0x88, 0x50, 0xff, 0xc0, 0x86, 0x4f, 0xff, 0xc0, 0x86, 0x4e, 0xff, 0xbe, 0x85, 0x4e, 0xff, 0xbd, 0x83, 0x4c, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb7, 0x7c, 0x46, 0xff, 0xb7, 0x7c, 0x45, 0xff, 0xb6, 0x7b, 0x45, 0xff, 0xb6, 0x7b, 0x45, 0xff, 0xb5, 0x7a, 0x45, 0xff, 0xb5, 0x7a, 0x45, 0xff, 0xb3, 0x79, 0x43, 0xff, 0xb8, 0x81, 0x4a, 0xff, + 0xb8, 0x81, 0x49, 0xff, 0xb6, 0x80, 0x49, 0xff, 0xb6, 0x80, 0x49, 0xff, 0xb5, 0x80, 0x49, 0xff, 0xb4, 0x80, 0x49, 0xff, 0xb4, 0x7e, 0x49, 0xff, 0xb3, 0x7d, 0x49, 0xff, 0xb3, 0x7c, 0x48, 0xff, 0xb3, 0x7c, 0x47, 0xff, 0xb0, 0x78, 0x44, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xae, 0x74, 0x41, 0xff, 0xaf, 0x74, 0x42, 0xff, 0xae, 0x73, 0x41, 0xff, 0xad, 0x74, 0x41, 0xff, 0xad, 0x73, 0x40, 0xff, 0xad, 0x73, 0x40, 0xff, 0xac, 0x73, 0x3f, 0xff, 0xac, 0x72, 0x3f, 0xff, 0xab, 0x71, 0x3f, 0xff, 0xab, 0x71, 0x3f, 0xff, 0xab, 0x71, 0x3f, 0xff, 0xab, 0x71, 0x3f, 0xff, 0xaa, 0x71, 0x3f, 0xff, 0xaa, 0x71, 0x3f, 0xff, 0xaa, 0x71, 0x3f, 0xff, 0xab, 0x71, 0x40, 0xff, 0xab, 0x71, 0x40, 0xff, 0xad, 0x73, 0x40, 0xff, 0xb9, 0x7f, 0x46, 0xff, 0xb9, 0x80, 0x47, 0xff, 0xb8, 0x80, 0x44, 0xff, 0xb8, 0x7f, 0x43, 0xff, 0xb8, 0x7e, 0x43, 0xff, 0xb6, 0x7c, 0x41, 0xff, 0xb9, 0x81, 0x47, 0xff, 0xc4, 0x89, 0x50, 0xff, 0xc5, 0x8b, 0x52, 0xff, 0xc6, 0x8b, 0x52, 0xff, 0xc7, 0x8e, 0x54, 0xff, 0xc7, 0x8f, 0x54, 0xff, 0xc7, 0x91, 0x55, 0xff, 0xc7, 0x92, 0x55, 0xff, 0xc5, 0x91, 0x55, 0xff, 0xc7, 0x98, 0x59, 0xff, 0xc7, 0x9a, 0x5a, 0xff, 0xc7, 0x92, 0x56, 0xff, 0xc8, 0x91, 0x56, 0xff, 0xc7, 0x8f, 0x56, 0xff, 0xc7, 0x8f, 0x54, 0xff, 0xc7, 0x8f, 0x54, 0xff, 0xc7, 0x8f, 0x55, 0xff, 0xc7, 0x8e, 0x54, 0xff, 0xc7, 0x8d, 0x54, 0xff, 0xc7, 0x8e, 0x54, 0xff, 0xc8, 0x8e, 0x55, 0xff, 0xc7, 0x8e, 0x55, 0xff, 0xc7, 0x8e, 0x55, 0xff, 0xc8, 0x8f, 0x55, 0xff, 0xc7, 0x8e, 0x55, 0xff, 0xc7, 0x8e, 0x55, 0xff, 0xc7, 0x8c, 0x54, 0xff, 0xc7, 0x8c, 0x53, 0xff, 0xc7, 0x8d, 0x52, 0xff, 0xc8, 0x8c, 0x52, 0xff, 0xc7, 0x8c, 0x52, 0xff, 0xc8, 0x8d, 0x53, 0xff, 0xc7, 0x8d, 0x53, 0xff, 0xc7, 0x8c, 0x53, 0xff, 0xc5, 0x8b, 0x53, 0xff, 0xc1, 0x88, 0x50, 0xff, 0xbb, 0x83, 0x4c, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xb5, 0x7e, 0x47, 0xff, 0xad, 0x75, 0x40, 0xff, 0xa9, 0x70, 0x3d, 0xff, 0xa8, 0x6e, 0x3b, 0xff, 0xaa, 0x6f, 0x3d, 0xff, 0xaa, 0x70, 0x3c, 0xff, 0xab, 0x70, 0x3d, 0xff, 0xae, 0x74, 0x3f, 0xff, 0xb5, 0x7a, 0x45, 0xff, 0xb4, 0x79, 0x44, 0xff, 0xb4, 0x79, 0x44, 0xff, 0xb4, 0x7a, 0x45, 0xff, 0xb4, 0x7a, 0x45, 0xff, 0xb5, 0x7b, 0x45, 0xff, 0xb6, 0x7c, 0x46, 0xff, 0xb6, 0x7c, 0x47, 0xff, 0xb7, 0x7d, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xbc, 0x82, 0x4c, 0xff, 0xbc, 0x83, 0x4d, 0xff, 0xbb, 0x84, 0x4e, 0xff, 0xbc, 0x85, 0x4f, 0xff, 0xbb, 0x84, 0x4e, 0xff, 0xb5, 0x7d, 0x48, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xaf, 0x76, 0x44, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x73, 0x42, 0xff, 0xae, 0x73, 0x41, 0xff, 0xae, 0x73, 0x41, 0xff, 0xac, 0x73, 0x41, 0xff, 0xac, 0x71, 0x3f, 0xff, 0xac, 0x71, 0x3f, 0xff, 0xab, 0x71, 0x3f, 0xff, 0xab, 0x70, 0x3f, 0xff, 0xab, 0x6f, 0x3f, 0xff, 0xab, 0x70, 0x40, 0xff, 0xaa, 0x70, 0x40, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa7, 0x6e, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa8, 0x6d, 0x3d, 0xff, 0xa8, 0x6f, 0x3f, 0xff, 0xaa, 0x70, 0x3f, 0xff, 0xaa, 0x70, 0x3e, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xaa, 0x6f, 0x3f, 0xff, 0xaa, 0x6f, 0x3f, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xaa, 0x70, 0x3f, 0xff, 0xa9, 0x6f, 0x3f, 0xff, 0xac, 0x73, 0x42, 0xff, 0xbb, 0x81, 0x4c, 0xff, 0xc4, 0x88, 0x51, 0xff, 0xc1, 0x85, 0x4d, 0xff, 0xbe, 0x82, 0x4b, 0xff, 0xc3, 0x86, 0x4e, 0xff, 0xc7, 0x8c, 0x53, 0xff, 0xc8, 0x8e, 0x54, 0xff, 0xc8, 0x8e, 0x53, 0xff, 0xc8, 0x8c, 0x51, 0xff, 0xc8, 0x8a, 0x50, 0xff, 0xc8, 0x8b, 0x51, 0xff, 0xbd, 0x85, 0x4d, 0xff, 0xb6, 0x7d, 0x49, 0xff, 0xb6, 0x7d, 0x48, 0xff, 0xb8, 0x7f, 0x4a, 0xff, 0xb8, 0x80, 0x4b, 0xff, 0xba, 0x82, 0x4e, 0xff, 0xbd, 0x85, 0x50, 0xff, 0xc4, 0x89, 0x53, 0xff, 0xc8, 0x8d, 0x55, 0xff, 0xc8, 0x92, 0x59, 0xff, 0xc8, 0x94, 0x5b, 0xff, 0xc8, 0x95, 0x5d, 0xff, 0xc8, 0x97, 0x5c, 0xff, 0xc8, 0x95, 0x5b, 0xff, 0xc8, 0x92, 0x5a, 0xff, 0xc8, 0x90, 0x59, 0xff, 0xc6, 0x8d, 0x57, 0xff, 0xb5, 0x7c, 0x4a, 0xff, 0xad, 0x73, 0x43, 0xff, 0xac, 0x73, 0x41, 0xff, 0xac, 0x72, 0x41, 0xff, 0xab, 0x71, 0x41, 0xff, 0xab, 0x71, 0x40, 0xff, 0xaa, 0x70, 0x40, 0xff, 0xa9, 0x6f, 0x40, 0xff, 0xa9, 0x6f, 0x3f, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6e, 0x3f, 0xff, 0xa7, 0x6e, 0x3e, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xaa, 0x6f, 0x3f, 0xff, 0xaa, 0x6f, 0x3f, 0xff, 0xaa, 0x70, 0x3f, 0xff, 0xab, 0x70, 0x3f, 0xff, 0xab, 0x70, 0x3f, 0xff, 0xac, 0x71, 0x3f, 0xff, 0xab, 0x71, 0x40, 0xff, 0xab, 0x71, 0x3f, 0xff, 0xac, 0x72, 0x40, 0xff, 0xad, 0x72, 0x40, 0xff, 0xad, 0x72, 0x40, 0xff, 0xad, 0x72, 0x3f, 0xff, 0xad, 0x73, 0x40, 0xff, 0xad, 0x72, 0x3f, 0xff, 0xad, 0x74, 0x40, 0xff, 0xc3, 0x85, 0x4f, 0xff, 0xc6, 0x86, 0x4f, 0xff, 0xbf, 0x82, 0x4b, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xba, 0x7f, 0x49, 0xff, 0xb8, 0x7d, 0x49, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb8, 0x7d, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xbc, 0x82, 0x4b, 0xff, 0xc1, 0x85, 0x4e, 0xff, 0xc5, 0x87, 0x50, 0xff, 0xc7, 0x8a, 0x52, 0xff, 0xc7, 0x8a, 0x53, 0xff, 0xc7, 0x8a, 0x54, 0xff, 0xc7, 0x8b, 0x54, 0xff, 0xc7, 0x8b, 0x54, 0xff, 0xc7, 0x8b, 0x54, 0xff, 0xc7, 0x8b, 0x53, 0xff, 0xc7, 0x8b, 0x53, 0xff, 0xc7, 0x8b, 0x53, 0xff, 0xc8, 0x8b, 0x52, 0xff, 0xc7, 0x8b, 0x53, 0xff, 0xc7, 0x8b, 0x52, 0xff, 0xc5, 0x8b, 0x53, 0xff, 0xc2, 0x89, 0x51, 0xff, 0xc0, 0x88, 0x51, 0xff, 0xbf, 0x87, 0x4f, 0xff, 0xbe, 0x85, 0x4e, 0xff, 0xbd, 0x84, 0x4d, 0xff, 0xbc, 0x82, 0x4b, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x7d, 0x48, 0xff, 0xb7, 0x7d, 0x46, 0xff, 0xb6, 0x7b, 0x46, 0xff, 0xb5, 0x7a, 0x45, 0xff, 0xb5, 0x7a, 0x44, 0xff, 0xb5, 0x7a, 0x45, 0xff, 0xb4, 0x79, 0x44, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x81, 0x49, 0xff, + 0xb7, 0x80, 0x49, 0xff, 0xb6, 0x80, 0x49, 0xff, 0xb6, 0x80, 0x49, 0xff, 0xb6, 0x80, 0x49, 0xff, 0xb4, 0x7e, 0x49, 0xff, 0xb4, 0x7e, 0x49, 0xff, 0xb4, 0x7d, 0x47, 0xff, 0xb3, 0x7c, 0x47, 0xff, 0xb3, 0x7b, 0x46, 0xff, 0xb2, 0x79, 0x45, 0xff, 0xaf, 0x76, 0x41, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x74, 0x41, 0xff, 0xae, 0x74, 0x41, 0xff, 0xad, 0x73, 0x40, 0xff, 0xad, 0x73, 0x40, 0xff, 0xad, 0x72, 0x3f, 0xff, 0xac, 0x72, 0x3f, 0xff, 0xac, 0x72, 0x3f, 0xff, 0xab, 0x71, 0x3f, 0xff, 0xab, 0x71, 0x3f, 0xff, 0xab, 0x70, 0x3f, 0xff, 0xaa, 0x70, 0x3f, 0xff, 0xaa, 0x70, 0x3f, 0xff, 0xaa, 0x70, 0x3f, 0xff, 0xaa, 0x70, 0x3f, 0xff, 0xab, 0x71, 0x3f, 0xff, 0xaf, 0x75, 0x41, 0xff, 0xb9, 0x7e, 0x44, 0xff, 0xba, 0x80, 0x45, 0xff, 0xba, 0x80, 0x47, 0xff, 0xb8, 0x7f, 0x45, 0xff, 0xb8, 0x80, 0x44, 0xff, 0xb8, 0x7f, 0x43, 0xff, 0xb8, 0x80, 0x43, 0xff, 0xb8, 0x7d, 0x43, 0xff, 0xb6, 0x7d, 0x41, 0xff, 0xb9, 0x80, 0x45, 0xff, 0xbc, 0x84, 0x4a, 0xff, 0xbf, 0x88, 0x4e, 0xff, 0xc3, 0x94, 0x56, 0xff, 0xc9, 0x99, 0x5c, 0xff, 0xc9, 0x98, 0x5b, 0xff, 0xc9, 0x95, 0x58, 0xff, 0xc8, 0x93, 0x56, 0xff, 0xc8, 0x93, 0x56, 0xff, 0xc8, 0x90, 0x56, 0xff, 0xc8, 0x91, 0x56, 0xff, 0xc9, 0x92, 0x57, 0xff, 0xc8, 0x92, 0x56, 0xff, 0xc9, 0x93, 0x57, 0xff, 0xc9, 0x92, 0x57, 0xff, 0xc9, 0x90, 0x56, 0xff, 0xc9, 0x90, 0x56, 0xff, 0xc9, 0x90, 0x56, 0xff, 0xc9, 0x90, 0x56, 0xff, 0xc8, 0x8f, 0x56, 0xff, 0xc8, 0x8f, 0x56, 0xff, 0xc8, 0x8f, 0x56, 0xff, 0xc8, 0x8f, 0x55, 0xff, 0xc8, 0x8f, 0x55, 0xff, 0xc9, 0x8f, 0x56, 0xff, 0xc9, 0x8f, 0x55, 0xff, 0xc9, 0x8f, 0x56, 0xff, 0xc9, 0x8f, 0x56, 0xff, 0xc9, 0x8e, 0x56, 0xff, 0xc7, 0x8c, 0x54, 0xff, 0xc6, 0x8b, 0x53, 0xff, 0xc2, 0x87, 0x50, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb2, 0x78, 0x42, 0xff, 0xb1, 0x77, 0x43, 0xff, 0xaf, 0x76, 0x42, 0xff, 0xaa, 0x70, 0x3d, 0xff, 0xa7, 0x6d, 0x3a, 0xff, 0xa8, 0x6f, 0x3b, 0xff, 0xa9, 0x6f, 0x3c, 0xff, 0xa9, 0x6f, 0x3c, 0xff, 0xaa, 0x6f, 0x3c, 0xff, 0xa9, 0x6f, 0x3c, 0xff, 0xaa, 0x6f, 0x3c, 0xff, 0xa9, 0x6f, 0x3c, 0xff, 0xae, 0x74, 0x40, 0xff, 0xb6, 0x7b, 0x45, 0xff, 0xb5, 0x7a, 0x44, 0xff, 0xb4, 0x7a, 0x44, 0xff, 0xb5, 0x7a, 0x45, 0xff, 0xb6, 0x7b, 0x46, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb7, 0x7c, 0x46, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb9, 0x7f, 0x49, 0xff, 0xba, 0x81, 0x4b, 0xff, 0xbb, 0x83, 0x4d, 0xff, 0xbc, 0x85, 0x4f, 0xff, 0xbd, 0x87, 0x50, 0xff, 0xbd, 0x88, 0x52, 0xff, 0xbb, 0x86, 0x50, 0xff, 0xb4, 0x7d, 0x49, 0xff, 0xb0, 0x78, 0x45, 0xff, 0xb0, 0x78, 0x45, 0xff, 0xb0, 0x76, 0x44, 0xff, 0xaf, 0x75, 0x43, 0xff, 0xaf, 0x75, 0x43, 0xff, 0xae, 0x74, 0x42, 0xff, 0xaf, 0x74, 0x42, 0xff, 0xad, 0x72, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xad, 0x72, 0x40, 0xff, 0xad, 0x72, 0x40, 0xff, 0xab, 0x71, 0x3f, 0xff, 0xab, 0x70, 0x3f, 0xff, 0xab, 0x70, 0x3f, 0xff, 0xaa, 0x70, 0x3f, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xa7, 0x6d, 0x3c, 0xff, 0xa7, 0x6d, 0x3c, 0xff, 0xa7, 0x6e, 0x3d, 0xff, 0xa8, 0x6e, 0x3d, 0xff, 0xa7, 0x6e, 0x3d, 0xff, 0xa7, 0x6e, 0x3d, 0xff, 0xa8, 0x6f, 0x3e, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xa8, 0x6f, 0x3e, 0xff, 0xa8, 0x6f, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xaa, 0x70, 0x3f, 0xff, 0xa8, 0x6e, 0x3d, 0xff, 0xa9, 0x71, 0x40, 0xff, 0xb6, 0x7b, 0x48, 0xff, 0xc2, 0x86, 0x4f, 0xff, 0xc4, 0x86, 0x4f, 0xff, 0xc1, 0x84, 0x4d, 0xff, 0xc6, 0x88, 0x50, 0xff, 0xc8, 0x8d, 0x54, 0xff, 0xc8, 0x90, 0x56, 0xff, 0xc8, 0x8f, 0x54, 0xff, 0xc9, 0x8d, 0x53, 0xff, 0xc2, 0x87, 0x4f, 0xff, 0xba, 0x7f, 0x4a, 0xff, 0xb8, 0x7c, 0x49, 0xff, 0xb8, 0x7d, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb9, 0x7f, 0x4a, 0xff, 0xb9, 0x81, 0x4c, 0xff, 0xbc, 0x83, 0x4e, 0xff, 0xc3, 0x87, 0x52, 0xff, 0xc8, 0x8c, 0x56, 0xff, 0xc8, 0x90, 0x59, 0xff, 0xc9, 0x95, 0x5c, 0xff, 0xc8, 0x9a, 0x5f, 0xff, 0xc8, 0x9d, 0x60, 0xff, 0xc9, 0x9c, 0x60, 0xff, 0xc9, 0x9b, 0x5f, 0xff, 0xca, 0x9b, 0x60, 0xff, 0xb9, 0x85, 0x51, 0xff, 0xad, 0x74, 0x43, 0xff, 0xad, 0x72, 0x42, 0xff, 0xac, 0x72, 0x42, 0xff, 0xab, 0x71, 0x41, 0xff, 0xaa, 0x71, 0x41, 0xff, 0xaa, 0x70, 0x40, 0xff, 0xa9, 0x6f, 0x3f, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xa9, 0x6e, 0x3f, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6d, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6d, 0x3e, 0xff, 0xa8, 0x6d, 0x3d, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa9, 0x6e, 0x3d, 0xff, 0xa9, 0x6e, 0x3d, 0xff, 0xa9, 0x6e, 0x3d, 0xff, 0xaa, 0x6f, 0x3e, 0xff, 0xaa, 0x6f, 0x3e, 0xff, 0xaa, 0x6f, 0x3e, 0xff, 0xab, 0x6f, 0x3e, 0xff, 0xab, 0x70, 0x3f, 0xff, 0xab, 0x71, 0x3e, 0xff, 0xac, 0x71, 0x3e, 0xff, 0xac, 0x71, 0x3e, 0xff, 0xac, 0x71, 0x3e, 0xff, 0xad, 0x72, 0x3f, 0xff, 0xad, 0x72, 0x40, 0xff, 0xad, 0x72, 0x40, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xc2, 0x83, 0x4d, 0xff, 0xc6, 0x86, 0x4e, 0xff, 0xc0, 0x82, 0x4b, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xba, 0x7e, 0x49, 0xff, 0xb8, 0x7d, 0x49, 0xff, 0xb8, 0x7c, 0x47, 0xff, 0xb8, 0x7c, 0x48, 0xff, 0xb8, 0x7d, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xbd, 0x81, 0x4c, 0xff, 0xc1, 0x84, 0x4e, 0xff, 0xc4, 0x86, 0x4f, 0xff, 0xc6, 0x87, 0x50, 0xff, 0xc7, 0x88, 0x51, 0xff, 0xc7, 0x88, 0x52, 0xff, 0xc8, 0x8a, 0x53, 0xff, 0xc8, 0x8a, 0x52, 0xff, 0xc8, 0x8a, 0x53, 0xff, 0xc8, 0x8b, 0x53, 0xff, 0xc8, 0x8c, 0x54, 0xff, 0xc8, 0x8d, 0x55, 0xff, 0xc7, 0x8d, 0x54, 0xff, 0xc5, 0x8d, 0x55, 0xff, 0xc3, 0x8b, 0x53, 0xff, 0xc1, 0x8b, 0x53, 0xff, 0xc0, 0x89, 0x52, 0xff, 0xbf, 0x89, 0x51, 0xff, 0xbd, 0x86, 0x4f, 0xff, 0xbc, 0x84, 0x4d, 0xff, 0xbc, 0x82, 0x4b, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7c, 0x46, 0xff, 0xb6, 0x7b, 0x45, 0xff, 0xb5, 0x7a, 0x44, 0xff, 0xb5, 0x79, 0x44, 0xff, 0xb4, 0x79, 0x44, 0xff, 0xb5, 0x7a, 0x44, 0xff, 0xb8, 0x80, 0x48, 0xff, 0xb8, 0x80, 0x49, 0xff, + 0xb8, 0x80, 0x47, 0xff, 0xb6, 0x80, 0x48, 0xff, 0xb6, 0x80, 0x47, 0xff, 0xb5, 0x7f, 0x47, 0xff, 0xb5, 0x7e, 0x47, 0xff, 0xb4, 0x7d, 0x47, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb3, 0x7b, 0x46, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xae, 0x74, 0x41, 0xff, 0xae, 0x73, 0x41, 0xff, 0xae, 0x73, 0x40, 0xff, 0xad, 0x73, 0x40, 0xff, 0xad, 0x72, 0x40, 0xff, 0xad, 0x72, 0x3f, 0xff, 0xac, 0x72, 0x3f, 0xff, 0xac, 0x71, 0x3f, 0xff, 0xac, 0x71, 0x3f, 0xff, 0xab, 0x71, 0x3f, 0xff, 0xab, 0x70, 0x3f, 0xff, 0xab, 0x71, 0x3f, 0xff, 0xab, 0x70, 0x3f, 0xff, 0xab, 0x70, 0x3f, 0xff, 0xac, 0x71, 0x3f, 0xff, 0xaf, 0x75, 0x41, 0xff, 0xba, 0x7f, 0x45, 0xff, 0xbb, 0x80, 0x45, 0xff, 0xba, 0x80, 0x45, 0xff, 0xbb, 0x80, 0x46, 0xff, 0xba, 0x80, 0x47, 0xff, 0xb8, 0x7e, 0x44, 0xff, 0xb8, 0x80, 0x44, 0xff, 0xb8, 0x80, 0x44, 0xff, 0xb8, 0x7f, 0x43, 0xff, 0xb8, 0x80, 0x44, 0xff, 0xb8, 0x7e, 0x43, 0xff, 0xb8, 0x7e, 0x42, 0xff, 0xb6, 0x7d, 0x42, 0xff, 0xb8, 0x80, 0x45, 0xff, 0xb9, 0x83, 0x48, 0xff, 0xba, 0x87, 0x4d, 0xff, 0xbd, 0x8a, 0x4f, 0xff, 0xc1, 0x8e, 0x53, 0xff, 0xc8, 0x97, 0x5a, 0xff, 0xc9, 0x9d, 0x5d, 0xff, 0xc9, 0x95, 0x59, 0xff, 0xca, 0x92, 0x58, 0xff, 0xca, 0x93, 0x58, 0xff, 0xc9, 0x93, 0x58, 0xff, 0xca, 0x92, 0x58, 0xff, 0xc9, 0x8f, 0x56, 0xff, 0xca, 0x90, 0x57, 0xff, 0xca, 0x8f, 0x56, 0xff, 0xca, 0x90, 0x57, 0xff, 0xca, 0x91, 0x58, 0xff, 0xca, 0x91, 0x58, 0xff, 0xca, 0x93, 0x59, 0xff, 0xca, 0x95, 0x5b, 0xff, 0xc9, 0x95, 0x5b, 0xff, 0xc1, 0x8c, 0x54, 0xff, 0xba, 0x85, 0x4f, 0xff, 0xb7, 0x80, 0x4a, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb3, 0x78, 0x44, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xad, 0x73, 0x40, 0xff, 0xab, 0x72, 0x3f, 0xff, 0xa9, 0x70, 0x3e, 0xff, 0xa8, 0x6f, 0x3d, 0xff, 0xa8, 0x6e, 0x3d, 0xff, 0xa8, 0x6f, 0x3d, 0xff, 0xa8, 0x6f, 0x3c, 0xff, 0xa9, 0x6f, 0x3d, 0xff, 0xa9, 0x6f, 0x3c, 0xff, 0xa9, 0x6f, 0x3c, 0xff, 0xa9, 0x6f, 0x3c, 0xff, 0xa9, 0x6f, 0x3c, 0xff, 0xa9, 0x6f, 0x3c, 0xff, 0xa9, 0x6f, 0x3b, 0xff, 0xa9, 0x6e, 0x3a, 0xff, 0xa9, 0x70, 0x3a, 0xff, 0xae, 0x74, 0x3f, 0xff, 0xb6, 0x7a, 0x45, 0xff, 0xb5, 0x7a, 0x44, 0xff, 0xb5, 0x7b, 0x45, 0xff, 0xb6, 0x7b, 0x46, 0xff, 0xb6, 0x7c, 0x48, 0xff, 0xb6, 0x7d, 0x49, 0xff, 0xb7, 0x7e, 0x49, 0xff, 0xb8, 0x7d, 0x48, 0xff, 0xb9, 0x7f, 0x49, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xbc, 0x83, 0x4d, 0xff, 0xbd, 0x86, 0x4f, 0xff, 0xbe, 0x89, 0x52, 0xff, 0xbe, 0x8a, 0x55, 0xff, 0xbb, 0x86, 0x53, 0xff, 0xb4, 0x7d, 0x4c, 0xff, 0xb0, 0x78, 0x47, 0xff, 0xb0, 0x78, 0x45, 0xff, 0xb0, 0x77, 0x45, 0xff, 0xb0, 0x76, 0x44, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xaf, 0x74, 0x42, 0xff, 0xad, 0x72, 0x40, 0xff, 0xad, 0x72, 0x40, 0xff, 0xad, 0x72, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xac, 0x71, 0x40, 0xff, 0xab, 0x70, 0x40, 0xff, 0xab, 0x71, 0x3f, 0xff, 0xab, 0x70, 0x3f, 0xff, 0xa8, 0x6e, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa7, 0x6d, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xa8, 0x6f, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xaf, 0x76, 0x44, 0xff, 0xc0, 0x85, 0x4f, 0xff, 0xc7, 0x88, 0x50, 0xff, 0xc6, 0x88, 0x51, 0xff, 0xc8, 0x8c, 0x53, 0xff, 0xc8, 0x8f, 0x55, 0xff, 0xca, 0x92, 0x56, 0xff, 0xc6, 0x8e, 0x54, 0xff, 0xbc, 0x84, 0x4c, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7d, 0x49, 0xff, 0xb8, 0x7d, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb9, 0x7f, 0x4a, 0xff, 0xb9, 0x80, 0x4b, 0xff, 0xbc, 0x82, 0x4d, 0xff, 0xc1, 0x86, 0x50, 0xff, 0xc7, 0x8b, 0x54, 0xff, 0xca, 0x90, 0x59, 0xff, 0xc9, 0x95, 0x5d, 0xff, 0xc9, 0x9a, 0x60, 0xff, 0xc8, 0x9e, 0x62, 0xff, 0xc7, 0xa0, 0x63, 0xff, 0xca, 0xa2, 0x65, 0xff, 0xbe, 0x91, 0x5b, 0xff, 0xaf, 0x79, 0x48, 0xff, 0xac, 0x73, 0x42, 0xff, 0xac, 0x73, 0x42, 0xff, 0xac, 0x73, 0x42, 0xff, 0xac, 0x72, 0x42, 0xff, 0xab, 0x71, 0x41, 0xff, 0xaa, 0x70, 0x40, 0xff, 0xa9, 0x6f, 0x3f, 0xff, 0xa9, 0x6e, 0x3f, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6d, 0x3e, 0xff, 0xa8, 0x6d, 0x3e, 0xff, 0xa8, 0x6d, 0x3e, 0xff, 0xa7, 0x6d, 0x3e, 0xff, 0xa8, 0x6d, 0x3e, 0xff, 0xa8, 0x6d, 0x3e, 0xff, 0xa8, 0x6d, 0x3d, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xa9, 0x6e, 0x3d, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xaa, 0x6f, 0x3e, 0xff, 0xaa, 0x6f, 0x3e, 0xff, 0xaa, 0x6f, 0x3e, 0xff, 0xaa, 0x6f, 0x3e, 0xff, 0xab, 0x6f, 0x3e, 0xff, 0xab, 0x6f, 0x3e, 0xff, 0xab, 0x70, 0x3e, 0xff, 0xab, 0x70, 0x3e, 0xff, 0xac, 0x71, 0x3f, 0xff, 0xae, 0x72, 0x3f, 0xff, 0xad, 0x73, 0x3f, 0xff, 0xae, 0x73, 0x3f, 0xff, 0xae, 0x74, 0x40, 0xff, 0xc3, 0x85, 0x4f, 0xff, 0xc9, 0x86, 0x4f, 0xff, 0xbf, 0x82, 0x4b, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xb9, 0x7f, 0x49, 0xff, 0xb8, 0x7d, 0x49, 0xff, 0xb8, 0x7c, 0x47, 0xff, 0xb8, 0x7c, 0x47, 0xff, 0xb8, 0x7d, 0x48, 0xff, 0xb8, 0x7d, 0x49, 0xff, 0xba, 0x7f, 0x49, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xbd, 0x82, 0x4c, 0xff, 0xbf, 0x83, 0x4d, 0xff, 0xc2, 0x85, 0x4e, 0xff, 0xc4, 0x85, 0x4f, 0xff, 0xc8, 0x87, 0x51, 0xff, 0xc9, 0x88, 0x52, 0xff, 0xc8, 0x89, 0x52, 0xff, 0xc9, 0x8b, 0x53, 0xff, 0xc9, 0x8c, 0x54, 0xff, 0xc9, 0x8d, 0x55, 0xff, 0xc8, 0x8e, 0x56, 0xff, 0xc6, 0x8e, 0x56, 0xff, 0xc3, 0x8d, 0x56, 0xff, 0xc2, 0x8c, 0x55, 0xff, 0xc1, 0x8b, 0x55, 0xff, 0xc0, 0x8a, 0x53, 0xff, 0xbf, 0x89, 0x52, 0xff, 0xbd, 0x85, 0x4f, 0xff, 0xbc, 0x83, 0x4d, 0xff, 0xbc, 0x82, 0x4b, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb8, 0x7d, 0x48, 0xff, 0xb6, 0x7b, 0x46, 0xff, 0xb5, 0x7a, 0x45, 0xff, 0xb4, 0x79, 0x44, 0xff, 0xb3, 0x79, 0x43, 0xff, 0xb8, 0x7e, 0x46, 0xff, 0xb8, 0x80, 0x47, 0xff, 0xb8, 0x80, 0x47, 0xff, + 0xb8, 0x7e, 0x46, 0xff, 0xb8, 0x7e, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb5, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x46, 0xff, 0xb4, 0x7c, 0x45, 0xff, 0xb4, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x78, 0x44, 0xff, 0xae, 0x74, 0x41, 0xff, 0xae, 0x73, 0x41, 0xff, 0xad, 0x73, 0x40, 0xff, 0xae, 0x72, 0x40, 0xff, 0xad, 0x72, 0x40, 0xff, 0xad, 0x72, 0x40, 0xff, 0xac, 0x71, 0x3f, 0xff, 0xac, 0x71, 0x3f, 0xff, 0xac, 0x71, 0x3f, 0xff, 0xac, 0x71, 0x3f, 0xff, 0xab, 0x71, 0x3f, 0xff, 0xab, 0x71, 0x3f, 0xff, 0xab, 0x71, 0x3f, 0xff, 0xac, 0x71, 0x40, 0xff, 0xaf, 0x75, 0x41, 0xff, 0xbb, 0x81, 0x46, 0xff, 0xbb, 0x81, 0x46, 0xff, 0xbb, 0x80, 0x45, 0xff, 0xbb, 0x80, 0x46, 0xff, 0xbb, 0x80, 0x47, 0xff, 0xba, 0x80, 0x47, 0xff, 0xb8, 0x7f, 0x46, 0xff, 0xba, 0x80, 0x45, 0xff, 0xb9, 0x80, 0x45, 0xff, 0xb9, 0x80, 0x44, 0xff, 0xb9, 0x80, 0x44, 0xff, 0xb8, 0x80, 0x44, 0xff, 0xb8, 0x80, 0x44, 0xff, 0xb8, 0x80, 0x44, 0xff, 0xb8, 0x7e, 0x43, 0xff, 0xb8, 0x7f, 0x45, 0xff, 0xb8, 0x7e, 0x44, 0xff, 0xb8, 0x80, 0x45, 0xff, 0xb8, 0x7f, 0x44, 0xff, 0xb6, 0x7b, 0x41, 0xff, 0xb5, 0x7c, 0x41, 0xff, 0xb9, 0x84, 0x4a, 0xff, 0xb8, 0x86, 0x4c, 0xff, 0xbd, 0x8a, 0x51, 0xff, 0xc1, 0x8c, 0x52, 0xff, 0xbf, 0x8c, 0x53, 0xff, 0xba, 0x88, 0x52, 0xff, 0xba, 0x88, 0x51, 0xff, 0xba, 0x88, 0x52, 0xff, 0xba, 0x86, 0x50, 0xff, 0xb8, 0x84, 0x4d, 0xff, 0xb4, 0x7f, 0x4a, 0xff, 0xaf, 0x79, 0x44, 0xff, 0xac, 0x74, 0x3f, 0xff, 0xa7, 0x6e, 0x3a, 0xff, 0xa9, 0x70, 0x3d, 0xff, 0xaa, 0x71, 0x3e, 0xff, 0xaa, 0x71, 0x3e, 0xff, 0xab, 0x71, 0x3e, 0xff, 0xaa, 0x71, 0x3f, 0xff, 0xaa, 0x71, 0x3e, 0xff, 0xaa, 0x71, 0x3e, 0xff, 0xaa, 0x70, 0x3e, 0xff, 0xa9, 0x71, 0x3e, 0xff, 0xa9, 0x70, 0x3e, 0xff, 0xa9, 0x70, 0x3e, 0xff, 0xa9, 0x70, 0x3d, 0xff, 0xa9, 0x70, 0x3d, 0xff, 0xa9, 0x6f, 0x3d, 0xff, 0xa9, 0x70, 0x3d, 0xff, 0xa9, 0x6f, 0x3c, 0xff, 0xa9, 0x6f, 0x3c, 0xff, 0xa9, 0x6f, 0x3b, 0xff, 0xa9, 0x6e, 0x3a, 0xff, 0xa9, 0x6f, 0x39, 0xff, 0xa9, 0x6f, 0x39, 0xff, 0xa9, 0x6e, 0x3a, 0xff, 0xaa, 0x70, 0x3b, 0xff, 0xb0, 0x76, 0x40, 0xff, 0xb3, 0x79, 0x43, 0xff, 0xb5, 0x7a, 0x45, 0xff, 0xb7, 0x7c, 0x46, 0xff, 0xb8, 0x7c, 0x46, 0xff, 0xb8, 0x7d, 0x48, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xbb, 0x81, 0x4b, 0xff, 0xbe, 0x83, 0x4d, 0xff, 0xbe, 0x86, 0x4f, 0xff, 0xbf, 0x89, 0x52, 0xff, 0xc0, 0x8a, 0x55, 0xff, 0xbb, 0x84, 0x53, 0xff, 0xb2, 0x7a, 0x4a, 0xff, 0xb0, 0x78, 0x47, 0xff, 0xb0, 0x78, 0x46, 0xff, 0xb0, 0x77, 0x46, 0xff, 0xb0, 0x78, 0x45, 0xff, 0xb0, 0x77, 0x45, 0xff, 0xb0, 0x75, 0x43, 0xff, 0xaf, 0x75, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xad, 0x72, 0x41, 0xff, 0xad, 0x73, 0x40, 0xff, 0xad, 0x71, 0x40, 0xff, 0xac, 0x71, 0x40, 0xff, 0xac, 0x71, 0x3f, 0xff, 0xac, 0x71, 0x40, 0xff, 0xab, 0x70, 0x3f, 0xff, 0xa8, 0x6e, 0x3d, 0xff, 0xa8, 0x6e, 0x3d, 0xff, 0xa7, 0x6e, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa8, 0x6e, 0x3d, 0xff, 0xa8, 0x6d, 0x3d, 0xff, 0xa8, 0x6d, 0x3d, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa8, 0x6e, 0x3d, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xa9, 0x6f, 0x3f, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa9, 0x70, 0x3f, 0xff, 0xba, 0x80, 0x4c, 0xff, 0xc7, 0x89, 0x51, 0xff, 0xc9, 0x8c, 0x53, 0xff, 0xc9, 0x8d, 0x53, 0xff, 0xc9, 0x8f, 0x55, 0xff, 0xbf, 0x86, 0x4e, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb9, 0x7e, 0x4a, 0xff, 0xb9, 0x7f, 0x4b, 0xff, 0xba, 0x81, 0x4c, 0xff, 0xbf, 0x84, 0x4f, 0xff, 0xc7, 0x89, 0x53, 0xff, 0xcb, 0x8f, 0x58, 0xff, 0xcb, 0x93, 0x5c, 0xff, 0xca, 0x9a, 0x5f, 0xff, 0xc9, 0xa0, 0x63, 0xff, 0xc8, 0xa2, 0x65, 0xff, 0xc9, 0xa3, 0x6a, 0xff, 0xb4, 0x81, 0x4f, 0xff, 0xac, 0x74, 0x45, 0xff, 0xad, 0x75, 0x45, 0xff, 0xac, 0x74, 0x44, 0xff, 0xad, 0x74, 0x43, 0xff, 0xac, 0x73, 0x42, 0xff, 0xac, 0x72, 0x41, 0xff, 0xab, 0x71, 0x40, 0xff, 0xa9, 0x6f, 0x40, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6d, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa7, 0x6e, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa9, 0x6e, 0x3d, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xaa, 0x6f, 0x3e, 0xff, 0xaa, 0x6f, 0x3e, 0xff, 0xaa, 0x6e, 0x3e, 0xff, 0xaa, 0x6e, 0x3e, 0xff, 0xaa, 0x6e, 0x3d, 0xff, 0xaa, 0x6f, 0x3e, 0xff, 0xac, 0x6f, 0x3e, 0xff, 0xac, 0x70, 0x3e, 0xff, 0xac, 0x71, 0x3e, 0xff, 0xad, 0x71, 0x3e, 0xff, 0xad, 0x71, 0x3f, 0xff, 0xad, 0x72, 0x3f, 0xff, 0xad, 0x72, 0x3f, 0xff, 0xac, 0x72, 0x3f, 0xff, 0xc1, 0x84, 0x4e, 0xff, 0xc6, 0x86, 0x4f, 0xff, 0xc1, 0x82, 0x4b, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xb9, 0x7c, 0x49, 0xff, 0xb7, 0x7b, 0x47, 0xff, 0xb8, 0x7c, 0x47, 0xff, 0xb8, 0x7d, 0x47, 0xff, 0xb8, 0x7c, 0x48, 0xff, 0xb9, 0x7e, 0x49, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xbc, 0x80, 0x4b, 0xff, 0xbe, 0x82, 0x4c, 0xff, 0xbf, 0x83, 0x4d, 0xff, 0xc3, 0x85, 0x4f, 0xff, 0xc6, 0x86, 0x50, 0xff, 0xc9, 0x88, 0x51, 0xff, 0xca, 0x89, 0x52, 0xff, 0xca, 0x8b, 0x53, 0xff, 0xca, 0x8c, 0x55, 0xff, 0xc8, 0x8d, 0x56, 0xff, 0xc6, 0x8f, 0x57, 0xff, 0xc4, 0x8e, 0x57, 0xff, 0xc3, 0x8c, 0x56, 0xff, 0xc2, 0x8b, 0x56, 0xff, 0xc1, 0x8b, 0x55, 0xff, 0xbf, 0x8a, 0x54, 0xff, 0xbe, 0x88, 0x51, 0xff, 0xbe, 0x86, 0x4f, 0xff, 0xbc, 0x83, 0x4d, 0xff, 0xbb, 0x80, 0x4b, 0xff, 0xb8, 0x7d, 0x49, 0xff, 0xb6, 0x7b, 0x46, 0xff, 0xb5, 0x7a, 0x45, 0xff, 0xb3, 0x78, 0x44, 0xff, 0xb5, 0x7a, 0x44, 0xff, 0xba, 0x80, 0x47, 0xff, 0xb8, 0x7f, 0x46, 0xff, 0xb8, 0x7e, 0x46, 0xff, + 0xb8, 0x7d, 0x45, 0xff, 0xb7, 0x7d, 0x45, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb6, 0x7c, 0x45, 0xff, 0xb5, 0x7b, 0x45, 0xff, 0xb5, 0x7b, 0x45, 0xff, 0xb4, 0x7a, 0x44, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xb3, 0x79, 0x44, 0xff, 0xb2, 0x78, 0x43, 0xff, 0xb0, 0x75, 0x42, 0xff, 0xae, 0x74, 0x41, 0xff, 0xad, 0x73, 0x40, 0xff, 0xad, 0x73, 0x40, 0xff, 0xad, 0x72, 0x40, 0xff, 0xad, 0x72, 0x40, 0xff, 0xad, 0x72, 0x40, 0xff, 0xad, 0x72, 0x40, 0xff, 0xac, 0x72, 0x3f, 0xff, 0xad, 0x72, 0x3f, 0xff, 0xac, 0x71, 0x3f, 0xff, 0xac, 0x72, 0x40, 0xff, 0xad, 0x72, 0x40, 0xff, 0xb1, 0x77, 0x41, 0xff, 0xbd, 0x82, 0x47, 0xff, 0xbc, 0x80, 0x45, 0xff, 0xbc, 0x81, 0x45, 0xff, 0xbc, 0x81, 0x46, 0xff, 0xbb, 0x81, 0x46, 0xff, 0xbc, 0x81, 0x47, 0xff, 0xbb, 0x80, 0x47, 0xff, 0xba, 0x81, 0x49, 0xff, 0xba, 0x80, 0x44, 0xff, 0xba, 0x81, 0x45, 0xff, 0xba, 0x80, 0x44, 0xff, 0xb9, 0x81, 0x46, 0xff, 0xba, 0x81, 0x46, 0xff, 0xb9, 0x80, 0x45, 0xff, 0xb9, 0x81, 0x45, 0xff, 0xb8, 0x7e, 0x44, 0xff, 0xb9, 0x80, 0x45, 0xff, 0xb8, 0x7e, 0x45, 0xff, 0xba, 0x82, 0x46, 0xff, 0xb9, 0x81, 0x45, 0xff, 0xb9, 0x82, 0x46, 0xff, 0xba, 0x81, 0x46, 0xff, 0xb9, 0x81, 0x46, 0xff, 0xb9, 0x80, 0x45, 0xff, 0xb8, 0x7f, 0x45, 0xff, 0xb8, 0x80, 0x47, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xad, 0x74, 0x3f, 0xff, 0xaf, 0x75, 0x40, 0xff, 0xad, 0x72, 0x3f, 0xff, 0xac, 0x71, 0x3e, 0xff, 0xab, 0x72, 0x3e, 0xff, 0xac, 0x73, 0x3f, 0xff, 0xac, 0x73, 0x40, 0xff, 0xac, 0x73, 0x40, 0xff, 0xad, 0x73, 0x40, 0xff, 0xac, 0x73, 0x3f, 0xff, 0xac, 0x73, 0x3f, 0xff, 0xac, 0x72, 0x3f, 0xff, 0xab, 0x72, 0x3f, 0xff, 0xab, 0x72, 0x3f, 0xff, 0xab, 0x71, 0x3e, 0xff, 0xab, 0x71, 0x3e, 0xff, 0xaa, 0x71, 0x3e, 0xff, 0xaa, 0x71, 0x3e, 0xff, 0xaa, 0x71, 0x3e, 0xff, 0xaa, 0x70, 0x3e, 0xff, 0xaa, 0x70, 0x3e, 0xff, 0xa9, 0x6f, 0x3d, 0xff, 0xa9, 0x6f, 0x3c, 0xff, 0xa9, 0x6f, 0x3b, 0xff, 0xa8, 0x6e, 0x3a, 0xff, 0xa9, 0x6e, 0x3b, 0xff, 0xa9, 0x6e, 0x3a, 0xff, 0xa9, 0x6f, 0x3a, 0xff, 0xa9, 0x6f, 0x3a, 0xff, 0xa9, 0x6f, 0x3a, 0xff, 0xa9, 0x6f, 0x3a, 0xff, 0xa9, 0x70, 0x3b, 0xff, 0xab, 0x71, 0x3d, 0xff, 0xb1, 0x77, 0x41, 0xff, 0xb3, 0x79, 0x43, 0xff, 0xb3, 0x78, 0x43, 0xff, 0xb5, 0x7a, 0x44, 0xff, 0xb7, 0x7d, 0x46, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7f, 0x4a, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xbd, 0x83, 0x4c, 0xff, 0xbf, 0x85, 0x4e, 0xff, 0xbe, 0x87, 0x50, 0xff, 0xbd, 0x89, 0x53, 0xff, 0xb7, 0x81, 0x4f, 0xff, 0xb0, 0x78, 0x48, 0xff, 0xb1, 0x78, 0x48, 0xff, 0xb1, 0x78, 0x47, 0xff, 0xb0, 0x78, 0x47, 0xff, 0xb1, 0x79, 0x46, 0xff, 0xb0, 0x78, 0x44, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xaf, 0x74, 0x42, 0xff, 0xaf, 0x74, 0x42, 0xff, 0xae, 0x74, 0x40, 0xff, 0xae, 0x73, 0x40, 0xff, 0xad, 0x73, 0x41, 0xff, 0xad, 0x71, 0x41, 0xff, 0xad, 0x71, 0x40, 0xff, 0xac, 0x71, 0x40, 0xff, 0xaa, 0x70, 0x3e, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xa8, 0x6d, 0x3d, 0xff, 0xa8, 0x6d, 0x3d, 0xff, 0xa8, 0x6d, 0x3d, 0xff, 0xa8, 0x6e, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa6, 0x6c, 0x3d, 0xff, 0xa6, 0x6c, 0x3d, 0xff, 0xa8, 0x6e, 0x3d, 0xff, 0xa8, 0x6e, 0x3d, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa9, 0x6f, 0x3f, 0xff, 0xa9, 0x70, 0x3f, 0xff, 0xa7, 0x6e, 0x3d, 0xff, 0xb0, 0x78, 0x45, 0xff, 0xc0, 0x86, 0x50, 0xff, 0xca, 0x8f, 0x56, 0xff, 0xc6, 0x8a, 0x52, 0xff, 0xc0, 0x83, 0x4d, 0xff, 0xbe, 0x83, 0x4d, 0xff, 0xbc, 0x82, 0x4c, 0xff, 0xbb, 0x82, 0x4b, 0xff, 0xb9, 0x7f, 0x4a, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb9, 0x7e, 0x4a, 0xff, 0xb9, 0x7f, 0x4a, 0xff, 0xba, 0x80, 0x4b, 0xff, 0xbd, 0x84, 0x4e, 0xff, 0xc4, 0x87, 0x51, 0xff, 0xca, 0x8d, 0x56, 0xff, 0xcb, 0x92, 0x5b, 0xff, 0xcb, 0x98, 0x5f, 0xff, 0xca, 0x9f, 0x62, 0xff, 0xcb, 0xa6, 0x6a, 0xff, 0xb7, 0x86, 0x53, 0xff, 0xad, 0x76, 0x46, 0xff, 0xae, 0x77, 0x47, 0xff, 0xad, 0x76, 0x46, 0xff, 0xad, 0x76, 0x45, 0xff, 0xad, 0x75, 0x45, 0xff, 0xac, 0x74, 0x44, 0xff, 0xac, 0x73, 0x42, 0xff, 0xab, 0x72, 0x41, 0xff, 0xaa, 0x70, 0x40, 0xff, 0xa9, 0x6f, 0x3f, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xa8, 0x6d, 0x3e, 0xff, 0xa8, 0x6d, 0x3e, 0xff, 0xa8, 0x6d, 0x3e, 0xff, 0xa7, 0x6d, 0x3e, 0xff, 0xa8, 0x6d, 0x3e, 0xff, 0xa9, 0x6d, 0x3e, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xaa, 0x6f, 0x3e, 0xff, 0xaa, 0x6e, 0x3e, 0xff, 0xaa, 0x6e, 0x3d, 0xff, 0xaa, 0x6e, 0x3d, 0xff, 0xab, 0x6f, 0x3d, 0xff, 0xab, 0x6f, 0x3d, 0xff, 0xab, 0x6f, 0x3e, 0xff, 0xac, 0x70, 0x3e, 0xff, 0xac, 0x71, 0x3e, 0xff, 0xad, 0x71, 0x3e, 0xff, 0xad, 0x71, 0x3f, 0xff, 0xad, 0x71, 0x3f, 0xff, 0xa8, 0x6d, 0x3c, 0xff, 0xbf, 0x81, 0x4d, 0xff, 0xc8, 0x87, 0x4f, 0xff, 0xc4, 0x84, 0x4d, 0xff, 0xbf, 0x82, 0x4b, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xb9, 0x7d, 0x49, 0xff, 0xb8, 0x7d, 0x47, 0xff, 0xb8, 0x7c, 0x47, 0xff, 0xb8, 0x7d, 0x47, 0xff, 0xb8, 0x7d, 0x48, 0xff, 0xb9, 0x7d, 0x49, 0xff, 0xba, 0x7e, 0x49, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xbc, 0x81, 0x4c, 0xff, 0xbe, 0x83, 0x4c, 0xff, 0xc0, 0x84, 0x4e, 0xff, 0xc4, 0x86, 0x4f, 0xff, 0xc8, 0x87, 0x51, 0xff, 0xca, 0x89, 0x52, 0xff, 0xc9, 0x8b, 0x54, 0xff, 0xc8, 0x8d, 0x55, 0xff, 0xc6, 0x8e, 0x57, 0xff, 0xc5, 0x8e, 0x57, 0xff, 0xc4, 0x8e, 0x57, 0xff, 0xc3, 0x8c, 0x57, 0xff, 0xc1, 0x8c, 0x56, 0xff, 0xc0, 0x8b, 0x55, 0xff, 0xbf, 0x89, 0x53, 0xff, 0xbe, 0x87, 0x50, 0xff, 0xbd, 0x84, 0x4e, 0xff, 0xbb, 0x82, 0x4c, 0xff, 0xb9, 0x7e, 0x4a, 0xff, 0xb6, 0x7c, 0x47, 0xff, 0xb5, 0x7a, 0x45, 0xff, 0xb5, 0x79, 0x44, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xba, 0x7e, 0x46, 0xff, 0xb9, 0x7e, 0x46, 0xff, 0xb8, 0x7d, 0x45, 0xff, + 0xb8, 0x7d, 0x45, 0xff, 0xb8, 0x7c, 0x45, 0xff, 0xb7, 0x7c, 0x45, 0xff, 0xb6, 0x7b, 0x45, 0xff, 0xb6, 0x7b, 0x44, 0xff, 0xb5, 0x7b, 0x44, 0xff, 0xb5, 0x7a, 0x44, 0xff, 0xb4, 0x7a, 0x44, 0xff, 0xb4, 0x79, 0x43, 0xff, 0xb3, 0x78, 0x43, 0xff, 0xb2, 0x78, 0x43, 0xff, 0xb1, 0x76, 0x43, 0xff, 0xaf, 0x74, 0x41, 0xff, 0xae, 0x73, 0x41, 0xff, 0xae, 0x72, 0x40, 0xff, 0xae, 0x72, 0x40, 0xff, 0xae, 0x72, 0x40, 0xff, 0xae, 0x72, 0x40, 0xff, 0xad, 0x72, 0x40, 0xff, 0xad, 0x72, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xad, 0x72, 0x40, 0xff, 0xaf, 0x74, 0x41, 0xff, 0xb7, 0x7c, 0x44, 0xff, 0xbc, 0x80, 0x46, 0xff, 0xbc, 0x81, 0x46, 0xff, 0xbc, 0x81, 0x45, 0xff, 0xbc, 0x81, 0x46, 0xff, 0xbc, 0x81, 0x46, 0xff, 0xbc, 0x81, 0x46, 0xff, 0xbc, 0x81, 0x47, 0xff, 0xbc, 0x81, 0x49, 0xff, 0xbb, 0x81, 0x49, 0xff, 0xbb, 0x81, 0x47, 0xff, 0xba, 0x81, 0x45, 0xff, 0xb9, 0x81, 0x46, 0xff, 0xba, 0x81, 0x44, 0xff, 0xb9, 0x80, 0x45, 0xff, 0xb9, 0x80, 0x44, 0xff, 0xb8, 0x7e, 0x44, 0xff, 0xb9, 0x80, 0x46, 0xff, 0xb8, 0x7e, 0x45, 0xff, 0xb9, 0x80, 0x45, 0xff, 0xb8, 0x80, 0x44, 0xff, 0xb9, 0x80, 0x46, 0xff, 0xb9, 0x81, 0x46, 0xff, 0xb9, 0x81, 0x46, 0xff, 0xba, 0x81, 0x47, 0xff, 0xba, 0x82, 0x47, 0xff, 0xba, 0x83, 0x47, 0xff, 0xb9, 0x81, 0x47, 0xff, 0xb6, 0x7e, 0x45, 0xff, 0xaf, 0x76, 0x41, 0xff, 0xb0, 0x77, 0x42, 0xff, 0xb0, 0x75, 0x41, 0xff, 0xae, 0x73, 0x40, 0xff, 0xae, 0x73, 0x40, 0xff, 0xad, 0x73, 0x40, 0xff, 0xad, 0x72, 0x3f, 0xff, 0xad, 0x72, 0x3f, 0xff, 0xac, 0x72, 0x3f, 0xff, 0xac, 0x72, 0x3f, 0xff, 0xac, 0x72, 0x3f, 0xff, 0xac, 0x72, 0x3f, 0xff, 0xab, 0x72, 0x3f, 0xff, 0xab, 0x71, 0x3e, 0xff, 0xab, 0x71, 0x3e, 0xff, 0xaa, 0x71, 0x3d, 0xff, 0xaa, 0x70, 0x3d, 0xff, 0xaa, 0x70, 0x3d, 0xff, 0xaa, 0x70, 0x3d, 0xff, 0xa9, 0x70, 0x3d, 0xff, 0xa9, 0x6f, 0x3d, 0xff, 0xa9, 0x6f, 0x3d, 0xff, 0xa9, 0x70, 0x3c, 0xff, 0xa9, 0x70, 0x3d, 0xff, 0xaa, 0x70, 0x3c, 0xff, 0xa9, 0x6f, 0x3c, 0xff, 0xa9, 0x6f, 0x3c, 0xff, 0xaa, 0x6f, 0x3b, 0xff, 0xaa, 0x6f, 0x3a, 0xff, 0xa9, 0x6f, 0x39, 0xff, 0xaa, 0x6e, 0x3a, 0xff, 0xa9, 0x6e, 0x39, 0xff, 0xa9, 0x6e, 0x3a, 0xff, 0xac, 0x71, 0x3c, 0xff, 0xb3, 0x78, 0x43, 0xff, 0xb5, 0x7a, 0x45, 0xff, 0xb4, 0x7a, 0x44, 0xff, 0xb4, 0x7a, 0x44, 0xff, 0xb5, 0x7b, 0x45, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb6, 0x7c, 0x48, 0xff, 0xb7, 0x7d, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xbc, 0x83, 0x4c, 0xff, 0xbc, 0x86, 0x4e, 0xff, 0xb7, 0x80, 0x4b, 0xff, 0xb0, 0x77, 0x46, 0xff, 0xb1, 0x79, 0x47, 0xff, 0xb1, 0x79, 0x48, 0xff, 0xb2, 0x79, 0x47, 0xff, 0xb0, 0x78, 0x45, 0xff, 0xae, 0x76, 0x43, 0xff, 0xae, 0x76, 0x42, 0xff, 0xb0, 0x76, 0x42, 0xff, 0xb0, 0x76, 0x42, 0xff, 0xae, 0x75, 0x41, 0xff, 0xae, 0x73, 0x41, 0xff, 0xae, 0x73, 0x41, 0xff, 0xad, 0x73, 0x40, 0xff, 0xad, 0x73, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xaa, 0x70, 0x3f, 0xff, 0xaa, 0x70, 0x3f, 0xff, 0xaa, 0x70, 0x3e, 0xff, 0xaa, 0x6e, 0x3e, 0xff, 0xa8, 0x6e, 0x3d, 0xff, 0xa8, 0x6d, 0x3d, 0xff, 0xa8, 0x6e, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa7, 0x6c, 0x3d, 0xff, 0xa6, 0x6c, 0x3d, 0xff, 0xa8, 0x6e, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6f, 0x3e, 0xff, 0xa8, 0x6f, 0x3f, 0xff, 0xa9, 0x70, 0x3f, 0xff, 0xa9, 0x70, 0x3f, 0xff, 0xa8, 0x6f, 0x3e, 0xff, 0xaa, 0x71, 0x3f, 0xff, 0xb1, 0x79, 0x46, 0xff, 0xc2, 0x85, 0x4f, 0xff, 0xc7, 0x86, 0x50, 0xff, 0xc1, 0x84, 0x4d, 0xff, 0xbf, 0x84, 0x4d, 0xff, 0xbd, 0x83, 0x4c, 0xff, 0xbb, 0x81, 0x4b, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb9, 0x7f, 0x4a, 0xff, 0xba, 0x80, 0x4b, 0xff, 0xbb, 0x81, 0x4b, 0xff, 0xc0, 0x84, 0x4e, 0xff, 0xc8, 0x8a, 0x53, 0xff, 0xcc, 0x90, 0x58, 0xff, 0xcc, 0x94, 0x5c, 0xff, 0xcd, 0x9c, 0x62, 0xff, 0xc4, 0x97, 0x5f, 0xff, 0xb3, 0x7f, 0x4d, 0xff, 0xae, 0x76, 0x47, 0xff, 0xaf, 0x78, 0x48, 0xff, 0xae, 0x77, 0x47, 0xff, 0xae, 0x77, 0x46, 0xff, 0xae, 0x77, 0x46, 0xff, 0xad, 0x76, 0x45, 0xff, 0xad, 0x75, 0x44, 0xff, 0xad, 0x73, 0x42, 0xff, 0xac, 0x72, 0x41, 0xff, 0xaa, 0x70, 0x40, 0xff, 0xaa, 0x70, 0x3f, 0xff, 0xa9, 0x6f, 0x3f, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6d, 0x3e, 0xff, 0xa8, 0x6d, 0x3e, 0xff, 0xa8, 0x6d, 0x3e, 0xff, 0xa8, 0x6d, 0x3e, 0xff, 0xa8, 0x6d, 0x3e, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xa9, 0x70, 0x3f, 0xff, 0xa9, 0x70, 0x3f, 0xff, 0xaa, 0x70, 0x40, 0xff, 0xaa, 0x70, 0x40, 0xff, 0xaa, 0x71, 0x3f, 0xff, 0xaa, 0x70, 0x3e, 0xff, 0xab, 0x6f, 0x3e, 0xff, 0xab, 0x6e, 0x3d, 0xff, 0xaa, 0x6e, 0x3d, 0xff, 0xaa, 0x6e, 0x3d, 0xff, 0xab, 0x6f, 0x3d, 0xff, 0xab, 0x70, 0x3e, 0xff, 0xab, 0x70, 0x3e, 0xff, 0xac, 0x71, 0x3e, 0xff, 0xad, 0x71, 0x3e, 0xff, 0xad, 0x71, 0x3e, 0xff, 0xad, 0x71, 0x3f, 0xff, 0xa8, 0x6e, 0x3c, 0xff, 0xb2, 0x78, 0x44, 0xff, 0xc7, 0x88, 0x52, 0xff, 0xc8, 0x87, 0x50, 0xff, 0xc2, 0x83, 0x4d, 0xff, 0xbd, 0x81, 0x4b, 0xff, 0xbb, 0x7f, 0x49, 0xff, 0xb9, 0x7d, 0x49, 0xff, 0xb9, 0x7c, 0x49, 0xff, 0xb8, 0x7d, 0x49, 0xff, 0xb9, 0x7d, 0x49, 0xff, 0xb9, 0x7d, 0x49, 0xff, 0xba, 0x7e, 0x4a, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xbc, 0x81, 0x4c, 0xff, 0xbe, 0x82, 0x4c, 0xff, 0xc0, 0x84, 0x4e, 0xff, 0xc4, 0x85, 0x4f, 0xff, 0xc8, 0x88, 0x51, 0xff, 0xc9, 0x8a, 0x53, 0xff, 0xc8, 0x8b, 0x54, 0xff, 0xc6, 0x8c, 0x55, 0xff, 0xc5, 0x8d, 0x56, 0xff, 0xc4, 0x8d, 0x56, 0xff, 0xc3, 0x8d, 0x57, 0xff, 0xc2, 0x8d, 0x56, 0xff, 0xc1, 0x8b, 0x55, 0xff, 0xc0, 0x89, 0x53, 0xff, 0xbf, 0x87, 0x51, 0xff, 0xbe, 0x85, 0x4f, 0xff, 0xbc, 0x82, 0x4c, 0xff, 0xb9, 0x7e, 0x4a, 0xff, 0xb6, 0x7c, 0x48, 0xff, 0xb6, 0x7b, 0x46, 0xff, 0xba, 0x7e, 0x48, 0xff, 0xbb, 0x7e, 0x46, 0xff, 0xba, 0x7e, 0x46, 0xff, 0xb9, 0x7d, 0x46, 0xff, 0xb9, 0x7c, 0x45, 0xff, + 0xb8, 0x7b, 0x44, 0xff, 0xb8, 0x7c, 0x44, 0xff, 0xb8, 0x7c, 0x45, 0xff, 0xb6, 0x7b, 0x44, 0xff, 0xb6, 0x7a, 0x44, 0xff, 0xb5, 0x7a, 0x44, 0xff, 0xb4, 0x79, 0x43, 0xff, 0xb4, 0x79, 0x43, 0xff, 0xb4, 0x79, 0x43, 0xff, 0xb3, 0x78, 0x43, 0xff, 0xb3, 0x78, 0x43, 0xff, 0xb2, 0x76, 0x43, 0xff, 0xb0, 0x75, 0x42, 0xff, 0xae, 0x73, 0x41, 0xff, 0xae, 0x73, 0x41, 0xff, 0xae, 0x73, 0x40, 0xff, 0xae, 0x73, 0x40, 0xff, 0xad, 0x73, 0x40, 0xff, 0xae, 0x73, 0x41, 0xff, 0xad, 0x73, 0x40, 0xff, 0xae, 0x73, 0x40, 0xff, 0xb0, 0x77, 0x42, 0xff, 0xbd, 0x81, 0x47, 0xff, 0xbc, 0x80, 0x45, 0xff, 0xbc, 0x81, 0x46, 0xff, 0xbc, 0x80, 0x46, 0xff, 0xbc, 0x80, 0x46, 0xff, 0xbd, 0x81, 0x46, 0xff, 0xbb, 0x81, 0x46, 0xff, 0xbe, 0x82, 0x49, 0xff, 0xbc, 0x81, 0x47, 0xff, 0xbc, 0x81, 0x47, 0xff, 0xbb, 0x81, 0x49, 0xff, 0xb9, 0x7f, 0x48, 0xff, 0xb9, 0x82, 0x46, 0xff, 0xb9, 0x80, 0x44, 0xff, 0xb8, 0x7d, 0x44, 0xff, 0xb8, 0x80, 0x45, 0xff, 0xba, 0x80, 0x47, 0xff, 0xb9, 0x81, 0x46, 0xff, 0xb8, 0x80, 0x45, 0xff, 0xb9, 0x80, 0x46, 0xff, 0xb9, 0x7e, 0x45, 0xff, 0xb9, 0x82, 0x47, 0xff, 0xb9, 0x7f, 0x46, 0xff, 0xb9, 0x81, 0x47, 0xff, 0xbb, 0x82, 0x46, 0xff, 0xb9, 0x80, 0x46, 0xff, 0xba, 0x81, 0x45, 0xff, 0xba, 0x81, 0x48, 0xff, 0xba, 0x83, 0x49, 0xff, 0xb5, 0x7c, 0x45, 0xff, 0xb0, 0x77, 0x42, 0xff, 0xb1, 0x77, 0x42, 0xff, 0xb0, 0x76, 0x41, 0xff, 0xaf, 0x74, 0x40, 0xff, 0xae, 0x74, 0x40, 0xff, 0xad, 0x73, 0x3f, 0xff, 0xae, 0x73, 0x40, 0xff, 0xad, 0x72, 0x3f, 0xff, 0xad, 0x73, 0x3f, 0xff, 0xad, 0x73, 0x3f, 0xff, 0xac, 0x73, 0x3f, 0xff, 0xac, 0x73, 0x3f, 0xff, 0xac, 0x73, 0x40, 0xff, 0xac, 0x72, 0x3f, 0xff, 0xac, 0x72, 0x3f, 0xff, 0xab, 0x71, 0x3e, 0xff, 0xac, 0x70, 0x3e, 0xff, 0xaa, 0x6f, 0x3d, 0xff, 0xab, 0x71, 0x3d, 0xff, 0xaa, 0x6f, 0x3c, 0xff, 0xa9, 0x70, 0x3c, 0xff, 0xa9, 0x6f, 0x3c, 0xff, 0xa9, 0x6f, 0x3c, 0xff, 0xa9, 0x70, 0x3c, 0xff, 0xa9, 0x70, 0x3c, 0xff, 0xaa, 0x6f, 0x3b, 0xff, 0xaa, 0x70, 0x3a, 0xff, 0xaa, 0x6f, 0x39, 0xff, 0xa9, 0x6f, 0x3a, 0xff, 0xaa, 0x6f, 0x3a, 0xff, 0xaa, 0x6f, 0x39, 0xff, 0xaa, 0x70, 0x39, 0xff, 0xa9, 0x6f, 0x39, 0xff, 0xaa, 0x70, 0x39, 0xff, 0xab, 0x71, 0x3c, 0xff, 0xb1, 0x76, 0x42, 0xff, 0xb6, 0x7c, 0x46, 0xff, 0xb5, 0x7a, 0x45, 0xff, 0xb5, 0x7b, 0x46, 0xff, 0xb6, 0x7c, 0x45, 0xff, 0xb7, 0x7d, 0x46, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb7, 0x7d, 0x48, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xba, 0x81, 0x4b, 0xff, 0xba, 0x81, 0x4b, 0xff, 0xb5, 0x7c, 0x48, 0xff, 0xb2, 0x79, 0x46, 0xff, 0xb3, 0x79, 0x47, 0xff, 0xb2, 0x79, 0x47, 0xff, 0xb0, 0x78, 0x46, 0xff, 0xaf, 0x77, 0x44, 0xff, 0xaf, 0x77, 0x44, 0xff, 0xaf, 0x76, 0x42, 0xff, 0xb0, 0x75, 0x42, 0xff, 0xb0, 0x75, 0x42, 0xff, 0xaf, 0x74, 0x42, 0xff, 0xaf, 0x73, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xad, 0x72, 0x40, 0xff, 0xad, 0x73, 0x40, 0xff, 0xac, 0x73, 0x40, 0xff, 0xab, 0x72, 0x3f, 0xff, 0xab, 0x70, 0x3f, 0xff, 0xaa, 0x70, 0x3f, 0xff, 0xa9, 0x70, 0x3e, 0xff, 0xa9, 0x70, 0x3d, 0xff, 0xa9, 0x6e, 0x3d, 0xff, 0xa9, 0x6e, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xa9, 0x6d, 0x3e, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa7, 0x6e, 0x3d, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6e, 0x3d, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa8, 0x6e, 0x3d, 0xff, 0xa7, 0x6e, 0x3e, 0xff, 0xa8, 0x6f, 0x3e, 0xff, 0xa8, 0x6f, 0x3f, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xa8, 0x70, 0x3d, 0xff, 0xa5, 0x6b, 0x3c, 0xff, 0xac, 0x73, 0x42, 0xff, 0xc0, 0x82, 0x4c, 0xff, 0xc7, 0x87, 0x4f, 0xff, 0xc4, 0x86, 0x4f, 0xff, 0xbf, 0x83, 0x4d, 0xff, 0xbd, 0x82, 0x4b, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xb9, 0x7e, 0x4a, 0xff, 0xba, 0x7f, 0x4b, 0xff, 0xba, 0x80, 0x4b, 0xff, 0xba, 0x80, 0x4b, 0xff, 0xbc, 0x83, 0x4d, 0xff, 0xc4, 0x88, 0x51, 0xff, 0xcb, 0x8d, 0x56, 0xff, 0xcd, 0x91, 0x5a, 0xff, 0xca, 0x95, 0x5c, 0xff, 0xb8, 0x84, 0x51, 0xff, 0xaf, 0x78, 0x48, 0xff, 0xaf, 0x78, 0x47, 0xff, 0xaf, 0x78, 0x49, 0xff, 0xae, 0x78, 0x48, 0xff, 0xae, 0x78, 0x48, 0xff, 0xaf, 0x78, 0x47, 0xff, 0xae, 0x77, 0x46, 0xff, 0xae, 0x76, 0x45, 0xff, 0xad, 0x75, 0x44, 0xff, 0xac, 0x73, 0x43, 0xff, 0xac, 0x72, 0x41, 0xff, 0xaa, 0x70, 0x40, 0xff, 0xaa, 0x70, 0x40, 0xff, 0xa9, 0x6f, 0x3f, 0xff, 0xa8, 0x6d, 0x3d, 0xff, 0xa8, 0x6d, 0x3d, 0xff, 0xa8, 0x6c, 0x3d, 0xff, 0xa8, 0x6c, 0x3d, 0xff, 0xa8, 0x6d, 0x3d, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xa9, 0x6f, 0x3f, 0xff, 0xa9, 0x70, 0x40, 0xff, 0xa9, 0x70, 0x40, 0xff, 0xa9, 0x70, 0x40, 0xff, 0xaa, 0x70, 0x40, 0xff, 0xaa, 0x71, 0x40, 0xff, 0xaa, 0x70, 0x3f, 0xff, 0xab, 0x70, 0x3e, 0xff, 0xab, 0x6f, 0x3d, 0xff, 0xab, 0x6e, 0x3d, 0xff, 0xaa, 0x6e, 0x3d, 0xff, 0xaa, 0x6e, 0x3d, 0xff, 0xaa, 0x6e, 0x3d, 0xff, 0xab, 0x6f, 0x3e, 0xff, 0xab, 0x70, 0x3e, 0xff, 0xac, 0x70, 0x3d, 0xff, 0xac, 0x70, 0x3e, 0xff, 0xad, 0x70, 0x3e, 0xff, 0xaa, 0x6f, 0x3d, 0xff, 0xa8, 0x6d, 0x3d, 0xff, 0xa6, 0x6a, 0x39, 0xff, 0xc3, 0x87, 0x51, 0xff, 0xc9, 0x8a, 0x53, 0xff, 0xc6, 0x86, 0x4f, 0xff, 0xbf, 0x82, 0x4b, 0xff, 0xbc, 0x80, 0x4a, 0xff, 0xba, 0x7d, 0x49, 0xff, 0xb9, 0x7d, 0x49, 0xff, 0xb9, 0x7d, 0x48, 0xff, 0xb8, 0x7d, 0x49, 0xff, 0xb9, 0x7d, 0x49, 0xff, 0xba, 0x7e, 0x49, 0xff, 0xbb, 0x7e, 0x4b, 0xff, 0xbc, 0x81, 0x4b, 0xff, 0xbd, 0x82, 0x4c, 0xff, 0xc0, 0x83, 0x4e, 0xff, 0xc3, 0x86, 0x4f, 0xff, 0xc7, 0x87, 0x50, 0xff, 0xc8, 0x88, 0x52, 0xff, 0xc6, 0x8a, 0x53, 0xff, 0xc6, 0x8b, 0x54, 0xff, 0xc4, 0x8c, 0x55, 0xff, 0xc4, 0x8c, 0x55, 0xff, 0xc2, 0x8b, 0x55, 0xff, 0xc1, 0x8a, 0x54, 0xff, 0xc0, 0x88, 0x53, 0xff, 0xc0, 0x87, 0x51, 0xff, 0xbf, 0x85, 0x50, 0xff, 0xbd, 0x82, 0x4e, 0xff, 0xba, 0x7e, 0x4b, 0xff, 0xb8, 0x7d, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xbc, 0x80, 0x49, 0xff, 0xbb, 0x80, 0x47, 0xff, 0xba, 0x7e, 0x46, 0xff, 0xb9, 0x7d, 0x46, 0xff, 0xb8, 0x7d, 0x45, 0xff, + 0xb8, 0x7c, 0x45, 0xff, 0xb7, 0x7a, 0x44, 0xff, 0xb6, 0x7b, 0x44, 0xff, 0xb6, 0x7b, 0x44, 0xff, 0xb5, 0x79, 0x44, 0xff, 0xb5, 0x79, 0x43, 0xff, 0xb4, 0x79, 0x44, 0xff, 0xb4, 0x78, 0x42, 0xff, 0xb3, 0x78, 0x43, 0xff, 0xb3, 0x78, 0x43, 0xff, 0xb3, 0x77, 0x44, 0xff, 0xb2, 0x78, 0x43, 0xff, 0xb1, 0x76, 0x43, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xaf, 0x74, 0x41, 0xff, 0xae, 0x74, 0x41, 0xff, 0xae, 0x74, 0x41, 0xff, 0xae, 0x74, 0x41, 0xff, 0xae, 0x74, 0x41, 0xff, 0xaf, 0x75, 0x41, 0xff, 0xb6, 0x7c, 0x46, 0xff, 0xbe, 0x82, 0x46, 0xff, 0xbc, 0x80, 0x46, 0xff, 0xbc, 0x81, 0x46, 0xff, 0xbd, 0x81, 0x46, 0xff, 0xbc, 0x81, 0x46, 0xff, 0xbc, 0x81, 0x46, 0xff, 0xbb, 0x80, 0x46, 0xff, 0xbd, 0x81, 0x47, 0xff, 0xbc, 0x81, 0x47, 0xff, 0xbd, 0x81, 0x48, 0xff, 0xba, 0x80, 0x46, 0xff, 0xb9, 0x80, 0x47, 0xff, 0xb8, 0x7e, 0x46, 0xff, 0xb9, 0x7e, 0x44, 0xff, 0xba, 0x81, 0x46, 0xff, 0xba, 0x80, 0x44, 0xff, 0xba, 0x81, 0x46, 0xff, 0xb9, 0x80, 0x46, 0xff, 0xb9, 0x80, 0x45, 0xff, 0xba, 0x82, 0x47, 0xff, 0xba, 0x81, 0x46, 0xff, 0xba, 0x82, 0x47, 0xff, 0xb9, 0x80, 0x45, 0xff, 0xbb, 0x83, 0x47, 0xff, 0xbb, 0x82, 0x47, 0xff, 0xba, 0x81, 0x48, 0xff, 0xbc, 0x84, 0x48, 0xff, 0xbc, 0x84, 0x4a, 0xff, 0xbb, 0x82, 0x48, 0xff, 0xba, 0x80, 0x47, 0xff, 0xb7, 0x7d, 0x45, 0xff, 0xb1, 0x77, 0x42, 0xff, 0xb2, 0x78, 0x44, 0xff, 0xb1, 0x79, 0x42, 0xff, 0xaf, 0x76, 0x41, 0xff, 0xaf, 0x75, 0x40, 0xff, 0xaf, 0x75, 0x41, 0xff, 0xae, 0x74, 0x40, 0xff, 0xae, 0x74, 0x40, 0xff, 0xae, 0x74, 0x40, 0xff, 0xae, 0x74, 0x40, 0xff, 0xad, 0x74, 0x40, 0xff, 0xad, 0x74, 0x40, 0xff, 0xad, 0x73, 0x40, 0xff, 0xad, 0x73, 0x3f, 0xff, 0xac, 0x73, 0x3f, 0xff, 0xac, 0x73, 0x3f, 0xff, 0xac, 0x72, 0x3e, 0xff, 0xac, 0x72, 0x3e, 0xff, 0xab, 0x71, 0x3d, 0xff, 0xab, 0x71, 0x3d, 0xff, 0xab, 0x70, 0x3c, 0xff, 0xaa, 0x70, 0x3d, 0xff, 0xaa, 0x6f, 0x3d, 0xff, 0xaa, 0x70, 0x3d, 0xff, 0xaa, 0x70, 0x3d, 0xff, 0xaa, 0x70, 0x3c, 0xff, 0xaa, 0x70, 0x3c, 0xff, 0xaa, 0x70, 0x3c, 0xff, 0xaa, 0x6f, 0x3b, 0xff, 0xaa, 0x6f, 0x3a, 0xff, 0xaa, 0x6f, 0x39, 0xff, 0xab, 0x6f, 0x39, 0xff, 0xab, 0x6f, 0x3a, 0xff, 0xab, 0x6f, 0x3b, 0xff, 0xaa, 0x6f, 0x3b, 0xff, 0xad, 0x71, 0x3d, 0xff, 0xb2, 0x78, 0x42, 0xff, 0xb6, 0x7c, 0x46, 0xff, 0xb6, 0x7c, 0x46, 0xff, 0xb6, 0x7c, 0x46, 0xff, 0xb7, 0x7c, 0x46, 0xff, 0xb8, 0x7d, 0x46, 0xff, 0xb8, 0x7d, 0x47, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb4, 0x7a, 0x46, 0xff, 0xb3, 0x79, 0x46, 0xff, 0xb3, 0x79, 0x46, 0xff, 0xb1, 0x78, 0x45, 0xff, 0xb0, 0x76, 0x44, 0xff, 0xb0, 0x76, 0x44, 0xff, 0xb0, 0x76, 0x44, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xaf, 0x76, 0x41, 0xff, 0xaf, 0x75, 0x41, 0xff, 0xaf, 0x75, 0x41, 0xff, 0xaf, 0x75, 0x41, 0xff, 0xaf, 0x73, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xad, 0x73, 0x40, 0xff, 0xad, 0x72, 0x40, 0xff, 0xab, 0x72, 0x3f, 0xff, 0xab, 0x71, 0x3f, 0xff, 0xab, 0x71, 0x3f, 0xff, 0xaa, 0x71, 0x3e, 0xff, 0xaa, 0x6f, 0x3e, 0xff, 0xaa, 0x6f, 0x3e, 0xff, 0xaa, 0x6f, 0x3d, 0xff, 0xa8, 0x6f, 0x3d, 0xff, 0xa8, 0x6d, 0x3d, 0xff, 0xa9, 0x6e, 0x3d, 0xff, 0xa8, 0x6e, 0x3d, 0xff, 0xa9, 0x6e, 0x3d, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6e, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa7, 0x6e, 0x3d, 0xff, 0xa7, 0x6e, 0x3e, 0xff, 0xa8, 0x6f, 0x3e, 0xff, 0xa8, 0x6f, 0x3e, 0xff, 0xa8, 0x6f, 0x3e, 0xff, 0xa8, 0x6f, 0x3e, 0xff, 0xa8, 0x6d, 0x3d, 0xff, 0xa6, 0x6b, 0x3d, 0xff, 0xa4, 0x6a, 0x3c, 0xff, 0xb3, 0x79, 0x47, 0xff, 0xc1, 0x84, 0x4e, 0xff, 0xc1, 0x84, 0x4e, 0xff, 0xc2, 0x84, 0x4e, 0xff, 0xbe, 0x81, 0x4c, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xba, 0x80, 0x4b, 0xff, 0xbb, 0x81, 0x4c, 0xff, 0xc0, 0x84, 0x4e, 0xff, 0xc8, 0x89, 0x53, 0xff, 0xcd, 0x8f, 0x58, 0xff, 0xc8, 0x91, 0x5a, 0xff, 0xb3, 0x7c, 0x4a, 0xff, 0xad, 0x75, 0x46, 0xff, 0xae, 0x78, 0x48, 0xff, 0xaf, 0x79, 0x49, 0xff, 0xae, 0x78, 0x49, 0xff, 0xae, 0x78, 0x48, 0xff, 0xaf, 0x78, 0x49, 0xff, 0xaf, 0x78, 0x48, 0xff, 0xae, 0x77, 0x46, 0xff, 0xad, 0x76, 0x45, 0xff, 0xad, 0x75, 0x44, 0xff, 0xac, 0x74, 0x43, 0xff, 0xab, 0x72, 0x41, 0xff, 0xab, 0x71, 0x3f, 0xff, 0xaa, 0x6f, 0x3f, 0xff, 0xa9, 0x6f, 0x3f, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa7, 0x6c, 0x3d, 0xff, 0xa7, 0x6c, 0x3d, 0xff, 0xa8, 0x6c, 0x3d, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6f, 0x3f, 0xff, 0xa8, 0x70, 0x3f, 0xff, 0xa9, 0x70, 0x40, 0xff, 0xa9, 0x70, 0x40, 0xff, 0xa9, 0x71, 0x3f, 0xff, 0xa9, 0x71, 0x3f, 0xff, 0xaa, 0x71, 0x3f, 0xff, 0xaa, 0x70, 0x3e, 0xff, 0xab, 0x70, 0x3e, 0xff, 0xab, 0x6e, 0x3d, 0xff, 0xaa, 0x6e, 0x3d, 0xff, 0xab, 0x6f, 0x3d, 0xff, 0xab, 0x6f, 0x3d, 0xff, 0xaa, 0x6e, 0x3d, 0xff, 0xab, 0x6f, 0x3d, 0xff, 0xab, 0x6f, 0x3d, 0xff, 0xab, 0x70, 0x3d, 0xff, 0xac, 0x70, 0x3e, 0xff, 0xab, 0x70, 0x3d, 0xff, 0xa8, 0x6d, 0x3c, 0xff, 0xa7, 0x6d, 0x3c, 0xff, 0xa7, 0x6c, 0x3b, 0xff, 0xb9, 0x7e, 0x4a, 0xff, 0xc8, 0x88, 0x53, 0xff, 0xc9, 0x88, 0x53, 0xff, 0xc3, 0x85, 0x4e, 0xff, 0xbd, 0x81, 0x4b, 0xff, 0xbb, 0x7f, 0x4a, 0xff, 0xba, 0x7e, 0x49, 0xff, 0xb9, 0x7d, 0x49, 0xff, 0xb9, 0x7d, 0x49, 0xff, 0xba, 0x7d, 0x4a, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xbb, 0x80, 0x4b, 0xff, 0xbc, 0x80, 0x4b, 0xff, 0xbd, 0x82, 0x4c, 0xff, 0xbf, 0x84, 0x4d, 0xff, 0xc2, 0x85, 0x4f, 0xff, 0xc6, 0x86, 0x50, 0xff, 0xc8, 0x88, 0x51, 0xff, 0xc6, 0x89, 0x53, 0xff, 0xc5, 0x8a, 0x54, 0xff, 0xc4, 0x8a, 0x54, 0xff, 0xc2, 0x89, 0x54, 0xff, 0xc1, 0x89, 0x53, 0xff, 0xc1, 0x87, 0x52, 0xff, 0xc0, 0x86, 0x51, 0xff, 0xbf, 0x84, 0x50, 0xff, 0xbd, 0x82, 0x4d, 0xff, 0xba, 0x80, 0x4b, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xbd, 0x82, 0x4a, 0xff, 0xbb, 0x80, 0x47, 0xff, 0xba, 0x7e, 0x47, 0xff, 0xb9, 0x7d, 0x46, 0xff, 0xb8, 0x7d, 0x46, 0xff, 0xb8, 0x7b, 0x45, 0xff, + 0xb6, 0x7b, 0x44, 0xff, 0xb6, 0x7b, 0x44, 0xff, 0xb6, 0x7a, 0x44, 0xff, 0xb5, 0x7a, 0x44, 0xff, 0xb5, 0x79, 0x44, 0xff, 0xb4, 0x79, 0x43, 0xff, 0xb4, 0x79, 0x43, 0xff, 0xb4, 0x78, 0x43, 0xff, 0xb4, 0x78, 0x43, 0xff, 0xb4, 0x78, 0x43, 0xff, 0xb2, 0x78, 0x43, 0xff, 0xb3, 0x78, 0x44, 0xff, 0xb2, 0x78, 0x44, 0xff, 0xb1, 0x76, 0x43, 0xff, 0xb0, 0x75, 0x42, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xaf, 0x74, 0x42, 0xff, 0xaf, 0x74, 0x41, 0xff, 0xb3, 0x78, 0x44, 0xff, 0xb9, 0x7e, 0x47, 0xff, 0xbe, 0x82, 0x48, 0xff, 0xbe, 0x82, 0x48, 0xff, 0xbe, 0x82, 0x47, 0xff, 0xbc, 0x81, 0x46, 0xff, 0xbc, 0x80, 0x46, 0xff, 0xbc, 0x80, 0x46, 0xff, 0xbc, 0x80, 0x46, 0xff, 0xbc, 0x80, 0x46, 0xff, 0xbb, 0x80, 0x46, 0xff, 0xbb, 0x80, 0x46, 0xff, 0xba, 0x7f, 0x46, 0xff, 0xba, 0x7e, 0x46, 0xff, 0xba, 0x7e, 0x46, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb9, 0x80, 0x46, 0xff, 0xba, 0x80, 0x46, 0xff, 0xba, 0x81, 0x46, 0xff, 0xba, 0x82, 0x46, 0xff, 0xba, 0x82, 0x46, 0xff, 0xba, 0x82, 0x48, 0xff, 0xba, 0x80, 0x46, 0xff, 0xba, 0x81, 0x47, 0xff, 0xba, 0x82, 0x47, 0xff, 0xba, 0x81, 0x48, 0xff, 0xbc, 0x84, 0x49, 0xff, 0xbd, 0x84, 0x4a, 0xff, 0xbd, 0x85, 0x4a, 0xff, 0xbc, 0x83, 0x49, 0xff, 0xbc, 0x83, 0x48, 0xff, 0xbc, 0x83, 0x49, 0xff, 0xbc, 0x84, 0x4a, 0xff, 0xb7, 0x7c, 0x45, 0xff, 0xb3, 0x78, 0x43, 0xff, 0xb4, 0x79, 0x44, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xb1, 0x77, 0x42, 0xff, 0xb0, 0x76, 0x41, 0xff, 0xb0, 0x76, 0x41, 0xff, 0xaf, 0x75, 0x41, 0xff, 0xaf, 0x75, 0x41, 0xff, 0xaf, 0x75, 0x41, 0xff, 0xaf, 0x75, 0x41, 0xff, 0xae, 0x75, 0x41, 0xff, 0xae, 0x75, 0x41, 0xff, 0xae, 0x75, 0x41, 0xff, 0xae, 0x74, 0x41, 0xff, 0xad, 0x74, 0x41, 0xff, 0xad, 0x73, 0x40, 0xff, 0xad, 0x73, 0x40, 0xff, 0xac, 0x73, 0x40, 0xff, 0xac, 0x72, 0x3f, 0xff, 0xac, 0x72, 0x3f, 0xff, 0xab, 0x71, 0x3e, 0xff, 0xab, 0x70, 0x3d, 0xff, 0xaa, 0x70, 0x3d, 0xff, 0xab, 0x70, 0x3c, 0xff, 0xab, 0x70, 0x3c, 0xff, 0xaa, 0x70, 0x3c, 0xff, 0xab, 0x70, 0x3c, 0xff, 0xab, 0x71, 0x3c, 0xff, 0xab, 0x70, 0x3c, 0xff, 0xab, 0x70, 0x3c, 0xff, 0xab, 0x70, 0x3b, 0xff, 0xab, 0x70, 0x3a, 0xff, 0xab, 0x6f, 0x3a, 0xff, 0xab, 0x70, 0x3a, 0xff, 0xab, 0x71, 0x3b, 0xff, 0xaa, 0x70, 0x3b, 0xff, 0xab, 0x72, 0x3d, 0xff, 0xb1, 0x77, 0x42, 0xff, 0xb7, 0x7b, 0x45, 0xff, 0xb8, 0x7d, 0x47, 0xff, 0xb8, 0x7d, 0x46, 0xff, 0xb8, 0x7d, 0x47, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb9, 0x7e, 0x49, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb7, 0x7d, 0x48, 0xff, 0xb3, 0x78, 0x45, 0xff, 0xb2, 0x78, 0x45, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xb0, 0x75, 0x42, 0xff, 0xb0, 0x75, 0x42, 0xff, 0xaf, 0x74, 0x41, 0xff, 0xb0, 0x74, 0x41, 0xff, 0xb0, 0x75, 0x41, 0xff, 0xaf, 0x74, 0x41, 0xff, 0xaf, 0x74, 0x41, 0xff, 0xae, 0x73, 0x41, 0xff, 0xae, 0x73, 0x3f, 0xff, 0xad, 0x72, 0x3f, 0xff, 0xac, 0x72, 0x3f, 0xff, 0xab, 0x72, 0x3f, 0xff, 0xac, 0x71, 0x3f, 0xff, 0xab, 0x71, 0x3e, 0xff, 0xab, 0x70, 0x3e, 0xff, 0xaa, 0x70, 0x3e, 0xff, 0xaa, 0x70, 0x3e, 0xff, 0xa9, 0x6e, 0x3d, 0xff, 0xa8, 0x6e, 0x3d, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xa8, 0x6f, 0x3d, 0xff, 0xa8, 0x6f, 0x3d, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa6, 0x6d, 0x3d, 0xff, 0xa7, 0x6e, 0x3e, 0xff, 0xa7, 0x6e, 0x3e, 0xff, 0xa8, 0x6f, 0x3e, 0xff, 0xa7, 0x6e, 0x3d, 0xff, 0xa8, 0x6e, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa6, 0x6c, 0x3d, 0xff, 0xa5, 0x6b, 0x3d, 0xff, 0xa5, 0x6b, 0x3c, 0xff, 0xb5, 0x7c, 0x49, 0xff, 0xc1, 0x85, 0x4f, 0xff, 0xbe, 0x82, 0x4c, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xba, 0x7f, 0x49, 0xff, 0xba, 0x7f, 0x49, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xba, 0x81, 0x4b, 0xff, 0xbc, 0x82, 0x4c, 0xff, 0xc5, 0x87, 0x51, 0xff, 0xcc, 0x8e, 0x56, 0xff, 0xb8, 0x80, 0x4c, 0xff, 0xae, 0x76, 0x45, 0xff, 0xaf, 0x77, 0x46, 0xff, 0xae, 0x77, 0x47, 0xff, 0xaf, 0x79, 0x49, 0xff, 0xaf, 0x78, 0x48, 0xff, 0xaf, 0x78, 0x49, 0xff, 0xaf, 0x79, 0x49, 0xff, 0xaf, 0x78, 0x48, 0xff, 0xaf, 0x77, 0x47, 0xff, 0xae, 0x77, 0x46, 0xff, 0xae, 0x76, 0x45, 0xff, 0xad, 0x74, 0x44, 0xff, 0xad, 0x72, 0x43, 0xff, 0xac, 0x72, 0x41, 0xff, 0xaa, 0x71, 0x40, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xa8, 0x6d, 0x3e, 0xff, 0xa8, 0x6d, 0x3e, 0xff, 0xa8, 0x6d, 0x3d, 0xff, 0xa8, 0x6d, 0x3d, 0xff, 0xa8, 0x6d, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6f, 0x3f, 0xff, 0xa8, 0x70, 0x3f, 0xff, 0xa9, 0x70, 0x3f, 0xff, 0xa9, 0x70, 0x40, 0xff, 0xa9, 0x70, 0x40, 0xff, 0xaa, 0x71, 0x40, 0xff, 0xaa, 0x70, 0x3f, 0xff, 0xaa, 0x6f, 0x3e, 0xff, 0xab, 0x6f, 0x3d, 0xff, 0xaa, 0x6e, 0x3d, 0xff, 0xaa, 0x6e, 0x3d, 0xff, 0xab, 0x6e, 0x3d, 0xff, 0xab, 0x6f, 0x3d, 0xff, 0xab, 0x6f, 0x3d, 0xff, 0xab, 0x6f, 0x3d, 0xff, 0xab, 0x6f, 0x3d, 0xff, 0xab, 0x70, 0x3d, 0xff, 0xac, 0x70, 0x3e, 0xff, 0xa9, 0x6e, 0x3d, 0xff, 0xa8, 0x6d, 0x3c, 0xff, 0xa8, 0x6e, 0x3c, 0xff, 0xa7, 0x6c, 0x3b, 0xff, 0xae, 0x75, 0x42, 0xff, 0xbf, 0x81, 0x4d, 0xff, 0xcb, 0x8c, 0x55, 0xff, 0xc6, 0x87, 0x50, 0xff, 0xc0, 0x82, 0x4c, 0xff, 0xbc, 0x80, 0x4a, 0xff, 0xba, 0x7e, 0x4a, 0xff, 0xba, 0x7e, 0x49, 0xff, 0xba, 0x7e, 0x4a, 0xff, 0xba, 0x7e, 0x4a, 0xff, 0xba, 0x7f, 0x4a, 0xff, 0xbb, 0x80, 0x4b, 0xff, 0xbc, 0x80, 0x4c, 0xff, 0xbc, 0x81, 0x4c, 0xff, 0xbe, 0x82, 0x4d, 0xff, 0xc1, 0x84, 0x4e, 0xff, 0xc4, 0x85, 0x50, 0xff, 0xc6, 0x87, 0x51, 0xff, 0xc5, 0x87, 0x52, 0xff, 0xc5, 0x88, 0x52, 0xff, 0xc4, 0x88, 0x52, 0xff, 0xc3, 0x87, 0x52, 0xff, 0xc2, 0x86, 0x51, 0xff, 0xc1, 0x84, 0x50, 0xff, 0xbe, 0x83, 0x4f, 0xff, 0xbb, 0x81, 0x4d, 0xff, 0xbc, 0x82, 0x4c, 0xff, 0xbe, 0x83, 0x4c, 0xff, 0xbd, 0x81, 0x49, 0xff, 0xbb, 0x80, 0x48, 0xff, 0xba, 0x7e, 0x46, 0xff, 0xb9, 0x7c, 0x45, 0xff, 0xb8, 0x7c, 0x45, 0xff, 0xb8, 0x7c, 0x45, 0xff, + 0xb6, 0x7b, 0x44, 0xff, 0xb6, 0x7a, 0x44, 0xff, 0xb5, 0x79, 0x44, 0xff, 0xb6, 0x79, 0x44, 0xff, 0xb5, 0x79, 0x43, 0xff, 0xb4, 0x7a, 0x43, 0xff, 0xb4, 0x79, 0x44, 0xff, 0xb4, 0x78, 0x43, 0xff, 0xb3, 0x78, 0x43, 0xff, 0xb3, 0x79, 0x44, 0xff, 0xb3, 0x79, 0x44, 0xff, 0xb3, 0x79, 0x44, 0xff, 0xb3, 0x78, 0x44, 0xff, 0xb2, 0x77, 0x44, 0xff, 0xb1, 0x76, 0x43, 0xff, 0xb0, 0x75, 0x43, 0xff, 0xb2, 0x78, 0x44, 0xff, 0xb8, 0x7d, 0x47, 0xff, 0xbc, 0x82, 0x49, 0xff, 0xbc, 0x81, 0x49, 0xff, 0xbc, 0x81, 0x47, 0xff, 0xbe, 0x82, 0x49, 0xff, 0xbe, 0x81, 0x47, 0xff, 0xbd, 0x82, 0x48, 0xff, 0xbc, 0x81, 0x47, 0xff, 0xbc, 0x82, 0x47, 0xff, 0xbc, 0x81, 0x46, 0xff, 0xbb, 0x80, 0x46, 0xff, 0xba, 0x7e, 0x45, 0xff, 0xb8, 0x7c, 0x45, 0xff, 0xba, 0x7e, 0x46, 0xff, 0xba, 0x80, 0x46, 0xff, 0xba, 0x7e, 0x45, 0xff, 0xb9, 0x7e, 0x49, 0xff, 0xb9, 0x80, 0x48, 0xff, 0xbb, 0x81, 0x46, 0xff, 0xbb, 0x82, 0x47, 0xff, 0xbb, 0x82, 0x47, 0xff, 0xbb, 0x82, 0x47, 0xff, 0xbc, 0x83, 0x48, 0xff, 0xbb, 0x82, 0x47, 0xff, 0xbc, 0x83, 0x4a, 0xff, 0xbb, 0x82, 0x48, 0xff, 0xbc, 0x85, 0x4a, 0xff, 0xbe, 0x83, 0x4a, 0xff, 0xc0, 0x87, 0x4c, 0xff, 0xbf, 0x86, 0x4c, 0xff, 0xbf, 0x86, 0x4b, 0xff, 0xc0, 0x87, 0x4b, 0xff, 0xbf, 0x85, 0x4b, 0xff, 0xbd, 0x84, 0x4a, 0xff, 0xb9, 0x81, 0x48, 0xff, 0xb5, 0x7b, 0x44, 0xff, 0xb5, 0x7b, 0x45, 0xff, 0xb5, 0x7c, 0x45, 0xff, 0xb2, 0x79, 0x45, 0xff, 0xb1, 0x77, 0x43, 0xff, 0xb1, 0x77, 0x42, 0xff, 0xb1, 0x77, 0x42, 0xff, 0xb1, 0x77, 0x42, 0xff, 0xb0, 0x77, 0x41, 0xff, 0xb0, 0x77, 0x42, 0xff, 0xaf, 0x76, 0x41, 0xff, 0xaf, 0x76, 0x41, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xaf, 0x75, 0x41, 0xff, 0xaf, 0x75, 0x41, 0xff, 0xae, 0x74, 0x41, 0xff, 0xad, 0x74, 0x41, 0xff, 0xad, 0x74, 0x41, 0xff, 0xad, 0x74, 0x40, 0xff, 0xac, 0x73, 0x40, 0xff, 0xac, 0x72, 0x3f, 0xff, 0xac, 0x72, 0x3e, 0xff, 0xab, 0x71, 0x3d, 0xff, 0xab, 0x71, 0x3d, 0xff, 0xab, 0x71, 0x3d, 0xff, 0xab, 0x71, 0x3d, 0xff, 0xab, 0x71, 0x3d, 0xff, 0xab, 0x71, 0x3d, 0xff, 0xab, 0x71, 0x3d, 0xff, 0xab, 0x71, 0x3c, 0xff, 0xab, 0x70, 0x3c, 0xff, 0xac, 0x71, 0x3c, 0xff, 0xab, 0x70, 0x3b, 0xff, 0xac, 0x70, 0x3a, 0xff, 0xab, 0x70, 0x3b, 0xff, 0xac, 0x70, 0x3b, 0xff, 0xac, 0x71, 0x3c, 0xff, 0xab, 0x71, 0x3c, 0xff, 0xaf, 0x75, 0x40, 0xff, 0xb6, 0x7b, 0x45, 0xff, 0xbb, 0x7e, 0x48, 0xff, 0xba, 0x7e, 0x47, 0xff, 0xba, 0x7e, 0x48, 0xff, 0xba, 0x7f, 0x49, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xb7, 0x7d, 0x48, 0xff, 0xb2, 0x78, 0x44, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb1, 0x76, 0x43, 0xff, 0xb0, 0x75, 0x42, 0xff, 0xb0, 0x75, 0x42, 0xff, 0xb0, 0x75, 0x42, 0xff, 0xaf, 0x74, 0x41, 0xff, 0xaf, 0x75, 0x41, 0xff, 0xaf, 0x73, 0x41, 0xff, 0xae, 0x73, 0x40, 0xff, 0xae, 0x73, 0x40, 0xff, 0xaf, 0x74, 0x41, 0xff, 0xaf, 0x74, 0x41, 0xff, 0xae, 0x72, 0x40, 0xff, 0xad, 0x72, 0x3f, 0xff, 0xac, 0x72, 0x3f, 0xff, 0xac, 0x72, 0x3f, 0xff, 0xac, 0x72, 0x3f, 0xff, 0xac, 0x72, 0x3f, 0xff, 0xab, 0x72, 0x3f, 0xff, 0xab, 0x72, 0x3f, 0xff, 0xab, 0x70, 0x3e, 0xff, 0xaa, 0x70, 0x3e, 0xff, 0xaa, 0x70, 0x3e, 0xff, 0xaa, 0x6f, 0x3e, 0xff, 0xa9, 0x6f, 0x3d, 0xff, 0xa9, 0x6f, 0x3d, 0xff, 0xa8, 0x6e, 0x3d, 0xff, 0xa9, 0x6f, 0x3d, 0xff, 0xa9, 0x6f, 0x3d, 0xff, 0xa7, 0x6e, 0x3d, 0xff, 0xa6, 0x6c, 0x3c, 0xff, 0xa7, 0x6b, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa7, 0x6e, 0x3d, 0xff, 0xa7, 0x6e, 0x3d, 0xff, 0xa7, 0x6e, 0x3d, 0xff, 0xa7, 0x6d, 0x3c, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa7, 0x6c, 0x3d, 0xff, 0xa7, 0x6c, 0x3d, 0xff, 0xa7, 0x6c, 0x3d, 0xff, 0xa4, 0x69, 0x3c, 0xff, 0xa3, 0x6a, 0x3b, 0xff, 0xbb, 0x81, 0x4c, 0xff, 0xc4, 0x86, 0x50, 0xff, 0xbd, 0x81, 0x4b, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xb9, 0x7e, 0x48, 0xff, 0xb8, 0x7d, 0x47, 0xff, 0xb8, 0x7d, 0x47, 0xff, 0xb8, 0x7d, 0x48, 0xff, 0xb9, 0x7e, 0x4a, 0xff, 0xbc, 0x82, 0x4c, 0xff, 0xc1, 0x85, 0x4e, 0xff, 0xc1, 0x86, 0x50, 0xff, 0xb3, 0x7a, 0x47, 0xff, 0xaf, 0x76, 0x44, 0xff, 0xaf, 0x77, 0x46, 0xff, 0xaf, 0x77, 0x45, 0xff, 0xb0, 0x78, 0x47, 0xff, 0xb0, 0x79, 0x47, 0xff, 0xaf, 0x78, 0x47, 0xff, 0xb1, 0x79, 0x48, 0xff, 0xb0, 0x79, 0x47, 0xff, 0xb0, 0x79, 0x47, 0xff, 0xaf, 0x78, 0x47, 0xff, 0xae, 0x76, 0x46, 0xff, 0xae, 0x75, 0x45, 0xff, 0xae, 0x74, 0x44, 0xff, 0xac, 0x72, 0x42, 0xff, 0xaa, 0x6f, 0x3f, 0xff, 0xa9, 0x6e, 0x3f, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xa8, 0x6d, 0x3d, 0xff, 0xa7, 0x6c, 0x3d, 0xff, 0xa7, 0x6c, 0x3d, 0xff, 0xa7, 0x6c, 0x3d, 0xff, 0xa8, 0x6d, 0x3d, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6f, 0x3f, 0xff, 0xa8, 0x6f, 0x3f, 0xff, 0xa9, 0x70, 0x40, 0xff, 0xa9, 0x70, 0x40, 0xff, 0xa9, 0x71, 0x40, 0xff, 0xaa, 0x71, 0x3f, 0xff, 0xaa, 0x70, 0x3e, 0xff, 0xaa, 0x6e, 0x3d, 0xff, 0xaa, 0x6e, 0x3d, 0xff, 0xa9, 0x6e, 0x3c, 0xff, 0xa9, 0x6e, 0x3c, 0xff, 0xa9, 0x6e, 0x3c, 0xff, 0xaa, 0x6e, 0x3c, 0xff, 0xab, 0x6f, 0x3d, 0xff, 0xaa, 0x6e, 0x3c, 0xff, 0xab, 0x6f, 0x3d, 0xff, 0xab, 0x6f, 0x3d, 0xff, 0xac, 0x71, 0x3f, 0xff, 0xa8, 0x6e, 0x3c, 0xff, 0xa8, 0x6c, 0x3c, 0xff, 0xa8, 0x6d, 0x3c, 0xff, 0xa7, 0x6c, 0x3b, 0xff, 0xa7, 0x6d, 0x3b, 0xff, 0xb0, 0x75, 0x43, 0xff, 0xc4, 0x86, 0x52, 0xff, 0xcb, 0x8a, 0x53, 0xff, 0xc4, 0x84, 0x4f, 0xff, 0xbe, 0x81, 0x4b, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xba, 0x7e, 0x4a, 0xff, 0xbb, 0x7e, 0x4a, 0xff, 0xbb, 0x7e, 0x4a, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xbb, 0x7e, 0x4b, 0xff, 0xbb, 0x80, 0x4c, 0xff, 0xbc, 0x81, 0x4c, 0xff, 0xbd, 0x82, 0x4d, 0xff, 0xbf, 0x82, 0x4e, 0xff, 0xc1, 0x85, 0x4f, 0xff, 0xc1, 0x85, 0x50, 0xff, 0xc1, 0x84, 0x4f, 0xff, 0xc2, 0x86, 0x51, 0xff, 0xc1, 0x85, 0x51, 0xff, 0xc0, 0x84, 0x4f, 0xff, 0xbe, 0x83, 0x4e, 0xff, 0xbc, 0x82, 0x4e, 0xff, 0xbd, 0x83, 0x4d, 0xff, 0xc0, 0x84, 0x4d, 0xff, 0xbe, 0x83, 0x4b, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xba, 0x7f, 0x47, 0xff, 0xba, 0x7e, 0x46, 0xff, 0xb8, 0x7c, 0x45, 0xff, 0xb8, 0x7b, 0x45, 0xff, 0xb7, 0x7b, 0x45, 0xff, + 0xb6, 0x7a, 0x44, 0xff, 0xb5, 0x7a, 0x43, 0xff, 0xb5, 0x79, 0x44, 0xff, 0xb5, 0x7a, 0x44, 0xff, 0xb5, 0x79, 0x44, 0xff, 0xb5, 0x79, 0x44, 0xff, 0xb4, 0x79, 0x43, 0xff, 0xb4, 0x79, 0x44, 0xff, 0xb4, 0x79, 0x44, 0xff, 0xb4, 0x79, 0x45, 0xff, 0xb4, 0x79, 0x45, 0xff, 0xb4, 0x79, 0x45, 0xff, 0xb3, 0x78, 0x45, 0xff, 0xb3, 0x78, 0x45, 0xff, 0xb3, 0x78, 0x45, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xbd, 0x82, 0x4b, 0xff, 0xbc, 0x82, 0x4b, 0xff, 0xbc, 0x81, 0x49, 0xff, 0xbc, 0x81, 0x49, 0xff, 0xbc, 0x82, 0x49, 0xff, 0xbd, 0x82, 0x49, 0xff, 0xbf, 0x83, 0x4a, 0xff, 0xbd, 0x82, 0x49, 0xff, 0xbd, 0x81, 0x47, 0xff, 0xbd, 0x81, 0x47, 0xff, 0xbc, 0x81, 0x48, 0xff, 0xba, 0x7e, 0x45, 0xff, 0xb9, 0x7d, 0x44, 0xff, 0xba, 0x7e, 0x45, 0xff, 0xb9, 0x7e, 0x45, 0xff, 0xba, 0x7e, 0x46, 0xff, 0xba, 0x80, 0x46, 0xff, 0xb9, 0x7e, 0x47, 0xff, 0xb9, 0x7f, 0x47, 0xff, 0xbb, 0x83, 0x48, 0xff, 0xbb, 0x80, 0x47, 0xff, 0xbc, 0x83, 0x47, 0xff, 0xbc, 0x84, 0x49, 0xff, 0xbc, 0x82, 0x49, 0xff, 0xbd, 0x85, 0x49, 0xff, 0xbc, 0x83, 0x49, 0xff, 0xbe, 0x86, 0x4a, 0xff, 0xbd, 0x84, 0x49, 0xff, 0xc3, 0x88, 0x4c, 0xff, 0xc1, 0x88, 0x4c, 0xff, 0xc3, 0x88, 0x4d, 0xff, 0xc3, 0x88, 0x4d, 0xff, 0xc3, 0x88, 0x4e, 0xff, 0xc4, 0x89, 0x4e, 0xff, 0xc6, 0x8b, 0x4f, 0xff, 0xba, 0x81, 0x49, 0xff, 0xb7, 0x7d, 0x46, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb7, 0x7c, 0x47, 0xff, 0xb5, 0x7b, 0x46, 0xff, 0xb3, 0x79, 0x44, 0xff, 0xb2, 0x7a, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x78, 0x43, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x77, 0x42, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb0, 0x76, 0x42, 0xff, 0xb0, 0x76, 0x42, 0xff, 0xb0, 0x77, 0x42, 0xff, 0xb0, 0x76, 0x42, 0xff, 0xaf, 0x76, 0x42, 0xff, 0xaf, 0x76, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x75, 0x41, 0xff, 0xae, 0x74, 0x42, 0xff, 0xad, 0x73, 0x41, 0xff, 0xac, 0x73, 0x40, 0xff, 0xac, 0x72, 0x3f, 0xff, 0xac, 0x72, 0x3e, 0xff, 0xac, 0x72, 0x3e, 0xff, 0xac, 0x72, 0x3d, 0xff, 0xac, 0x71, 0x3c, 0xff, 0xac, 0x72, 0x3c, 0xff, 0xac, 0x71, 0x3c, 0xff, 0xac, 0x71, 0x3d, 0xff, 0xac, 0x72, 0x3c, 0xff, 0xac, 0x72, 0x3c, 0xff, 0xac, 0x72, 0x3c, 0xff, 0xac, 0x71, 0x3c, 0xff, 0xac, 0x72, 0x3c, 0xff, 0xac, 0x71, 0x3b, 0xff, 0xac, 0x72, 0x3c, 0xff, 0xac, 0x72, 0x3c, 0xff, 0xac, 0x72, 0x3d, 0xff, 0xae, 0x74, 0x3f, 0xff, 0xb4, 0x7a, 0x44, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xb7, 0x7d, 0x48, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb2, 0x77, 0x44, 0xff, 0xb1, 0x76, 0x44, 0xff, 0xb1, 0x76, 0x43, 0xff, 0xb0, 0x75, 0x42, 0xff, 0xb0, 0x75, 0x42, 0xff, 0xb0, 0x75, 0x41, 0xff, 0xb0, 0x74, 0x41, 0xff, 0xaf, 0x74, 0x40, 0xff, 0xaf, 0x74, 0x40, 0xff, 0xae, 0x73, 0x41, 0xff, 0xaf, 0x74, 0x40, 0xff, 0xaf, 0x74, 0x41, 0xff, 0xae, 0x73, 0x41, 0xff, 0xae, 0x73, 0x3f, 0xff, 0xad, 0x72, 0x3f, 0xff, 0xad, 0x72, 0x3f, 0xff, 0xad, 0x72, 0x3f, 0xff, 0xad, 0x72, 0x3f, 0xff, 0xac, 0x72, 0x3f, 0xff, 0xac, 0x71, 0x3f, 0xff, 0xac, 0x71, 0x3f, 0xff, 0xab, 0x70, 0x3f, 0xff, 0xab, 0x70, 0x3e, 0xff, 0xab, 0x6f, 0x3e, 0xff, 0xab, 0x6f, 0x3e, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xa9, 0x6d, 0x3e, 0xff, 0xa7, 0x6d, 0x3c, 0xff, 0xa6, 0x6c, 0x3d, 0xff, 0xa6, 0x6d, 0x3d, 0xff, 0xa6, 0x6c, 0x3d, 0xff, 0xa6, 0x6d, 0x3d, 0xff, 0xa6, 0x6d, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa6, 0x6d, 0x3d, 0xff, 0xa6, 0x6c, 0x3c, 0xff, 0xa6, 0x6c, 0x3b, 0xff, 0xa7, 0x6c, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa5, 0x6a, 0x3c, 0xff, 0xa4, 0x69, 0x3c, 0xff, 0xa4, 0x6a, 0x3c, 0xff, 0xa0, 0x64, 0x36, 0xff, 0xb8, 0x7c, 0x48, 0xff, 0xc3, 0x86, 0x4f, 0xff, 0xbe, 0x82, 0x4b, 0xff, 0xbc, 0x81, 0x4b, 0xff, 0xba, 0x7e, 0x48, 0xff, 0xb8, 0x7c, 0x47, 0xff, 0xb5, 0x7a, 0x45, 0xff, 0xb2, 0x77, 0x43, 0xff, 0xb2, 0x77, 0x43, 0xff, 0xb9, 0x7e, 0x4a, 0xff, 0xb3, 0x78, 0x45, 0xff, 0xaf, 0x74, 0x43, 0xff, 0xb0, 0x76, 0x45, 0xff, 0xaf, 0x76, 0x45, 0xff, 0xaf, 0x76, 0x45, 0xff, 0xb0, 0x78, 0x46, 0xff, 0xb1, 0x79, 0x47, 0xff, 0xb0, 0x79, 0x46, 0xff, 0xb1, 0x79, 0x47, 0xff, 0xb0, 0x79, 0x47, 0xff, 0xb0, 0x79, 0x46, 0xff, 0xaf, 0x78, 0x46, 0xff, 0xaf, 0x77, 0x46, 0xff, 0xae, 0x75, 0x45, 0xff, 0xad, 0x74, 0x43, 0xff, 0xac, 0x71, 0x40, 0xff, 0xaa, 0x70, 0x40, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa6, 0x6c, 0x3d, 0xff, 0xa6, 0x6b, 0x3d, 0xff, 0xa6, 0x6b, 0x3d, 0xff, 0xa6, 0x6b, 0x3d, 0xff, 0xa7, 0x6b, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6f, 0x3e, 0xff, 0xa8, 0x6f, 0x40, 0xff, 0xa9, 0x70, 0x40, 0xff, 0xa9, 0x6f, 0x40, 0xff, 0xa9, 0x70, 0x3f, 0xff, 0xaa, 0x6f, 0x3e, 0xff, 0xaa, 0x6e, 0x3d, 0xff, 0xaa, 0x6d, 0x3d, 0xff, 0xa9, 0x6e, 0x3c, 0xff, 0xa8, 0x6d, 0x3c, 0xff, 0xa9, 0x6e, 0x3c, 0xff, 0xaa, 0x6e, 0x3d, 0xff, 0xaa, 0x6e, 0x3d, 0xff, 0xab, 0x6f, 0x3d, 0xff, 0xaa, 0x6e, 0x3d, 0xff, 0xac, 0x6f, 0x3d, 0xff, 0xac, 0x71, 0x3e, 0xff, 0xa9, 0x6e, 0x3c, 0xff, 0xa7, 0x6c, 0x3c, 0xff, 0xa7, 0x6b, 0x3c, 0xff, 0xa7, 0x6c, 0x3c, 0xff, 0xa7, 0x6b, 0x3c, 0xff, 0xa7, 0x6c, 0x3c, 0xff, 0xa4, 0x68, 0x39, 0xff, 0xb3, 0x7b, 0x48, 0xff, 0xc7, 0x88, 0x52, 0xff, 0xc7, 0x86, 0x50, 0xff, 0xc1, 0x82, 0x4c, 0xff, 0xbe, 0x80, 0x4b, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xbb, 0x80, 0x4b, 0xff, 0xba, 0x7e, 0x4a, 0xff, 0xba, 0x7e, 0x4a, 0xff, 0xbb, 0x7f, 0x4b, 0xff, 0xbb, 0x80, 0x4c, 0xff, 0xbc, 0x80, 0x4c, 0xff, 0xbd, 0x82, 0x4d, 0xff, 0xbe, 0x82, 0x4e, 0xff, 0xbe, 0x83, 0x4e, 0xff, 0xbe, 0x83, 0x4f, 0xff, 0xbe, 0x84, 0x4f, 0xff, 0xbe, 0x83, 0x4f, 0xff, 0xc3, 0x87, 0x52, 0xff, 0xbc, 0x82, 0x4e, 0xff, 0xbe, 0x82, 0x4d, 0xff, 0xc1, 0x84, 0x4d, 0xff, 0xc0, 0x83, 0x4c, 0xff, 0xbe, 0x82, 0x4b, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xba, 0x7e, 0x47, 0xff, 0xb8, 0x7d, 0x46, 0xff, 0xb8, 0x7c, 0x46, 0xff, 0xb8, 0x7b, 0x44, 0xff, 0xb6, 0x7b, 0x44, 0xff, + 0xb6, 0x7a, 0x44, 0xff, 0xb6, 0x7a, 0x44, 0xff, 0xb5, 0x79, 0x44, 0xff, 0xb5, 0x78, 0x44, 0xff, 0xb4, 0x79, 0x44, 0xff, 0xb5, 0x7a, 0x44, 0xff, 0xb5, 0x7a, 0x45, 0xff, 0xb5, 0x7a, 0x45, 0xff, 0xb4, 0x7a, 0x45, 0xff, 0xb4, 0x7a, 0x45, 0xff, 0xb4, 0x79, 0x45, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb8, 0x7c, 0x46, 0xff, 0xbe, 0x81, 0x4a, 0xff, 0xca, 0x89, 0x50, 0xff, 0xbf, 0x83, 0x4c, 0xff, 0xbd, 0x82, 0x4b, 0xff, 0xbd, 0x82, 0x4b, 0xff, 0xbd, 0x82, 0x4b, 0xff, 0xbc, 0x81, 0x49, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xbc, 0x80, 0x49, 0xff, 0xbd, 0x82, 0x49, 0xff, 0xbe, 0x82, 0x4a, 0xff, 0xbd, 0x81, 0x49, 0xff, 0xbd, 0x82, 0x49, 0xff, 0xba, 0x80, 0x48, 0xff, 0xb9, 0x7e, 0x46, 0xff, 0xb9, 0x7e, 0x45, 0xff, 0xb9, 0x7c, 0x45, 0xff, 0xb9, 0x7e, 0x45, 0xff, 0xb8, 0x7c, 0x45, 0xff, 0xba, 0x80, 0x46, 0xff, 0xba, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xbb, 0x83, 0x49, 0xff, 0xbd, 0x86, 0x49, 0xff, 0xbe, 0x85, 0x4a, 0xff, 0xbd, 0x82, 0x49, 0xff, 0xbe, 0x85, 0x4a, 0xff, 0xbe, 0x85, 0x4c, 0xff, 0xbe, 0x83, 0x4a, 0xff, 0xc0, 0x87, 0x4b, 0xff, 0xc2, 0x87, 0x4e, 0xff, 0xc5, 0x89, 0x4e, 0xff, 0xc8, 0x8a, 0x4f, 0xff, 0xc7, 0x8c, 0x4e, 0xff, 0xc9, 0x8c, 0x50, 0xff, 0xc8, 0x8d, 0x50, 0xff, 0xc9, 0x8c, 0x52, 0xff, 0xc7, 0x8c, 0x4f, 0xff, 0xc0, 0x87, 0x4f, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xba, 0x81, 0x49, 0xff, 0xb9, 0x7f, 0x49, 0xff, 0xb6, 0x7c, 0x46, 0xff, 0xb5, 0x7b, 0x45, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb4, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x79, 0x44, 0xff, 0xb2, 0x78, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x78, 0x44, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xad, 0x74, 0x41, 0xff, 0xad, 0x75, 0x42, 0xff, 0xad, 0x73, 0x40, 0xff, 0xac, 0x72, 0x3f, 0xff, 0xac, 0x72, 0x3e, 0xff, 0xac, 0x72, 0x3d, 0xff, 0xad, 0x72, 0x3d, 0xff, 0xac, 0x72, 0x3c, 0xff, 0xad, 0x72, 0x3d, 0xff, 0xad, 0x72, 0x3d, 0xff, 0xad, 0x72, 0x3d, 0xff, 0xad, 0x72, 0x3d, 0xff, 0xad, 0x72, 0x3c, 0xff, 0xad, 0x72, 0x3c, 0xff, 0xad, 0x71, 0x3b, 0xff, 0xad, 0x72, 0x3b, 0xff, 0xad, 0x73, 0x3c, 0xff, 0xad, 0x74, 0x3e, 0xff, 0xad, 0x73, 0x3e, 0xff, 0xac, 0x73, 0x3e, 0xff, 0xaf, 0x75, 0x40, 0xff, 0xb7, 0x7e, 0x46, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xbe, 0x82, 0x4b, 0xff, 0xba, 0x7e, 0x49, 0xff, 0xb2, 0x77, 0x44, 0xff, 0xb2, 0x77, 0x44, 0xff, 0xb2, 0x77, 0x44, 0xff, 0xb1, 0x75, 0x43, 0xff, 0xb1, 0x75, 0x43, 0xff, 0xb1, 0x76, 0x42, 0xff, 0xb0, 0x75, 0x41, 0xff, 0xb0, 0x75, 0x41, 0xff, 0xb0, 0x75, 0x41, 0xff, 0xaf, 0x74, 0x41, 0xff, 0xae, 0x74, 0x40, 0xff, 0xae, 0x74, 0x40, 0xff, 0xaf, 0x74, 0x41, 0xff, 0xaf, 0x74, 0x41, 0xff, 0xaf, 0x74, 0x40, 0xff, 0xae, 0x74, 0x40, 0xff, 0xae, 0x73, 0x40, 0xff, 0xae, 0x73, 0x3f, 0xff, 0xad, 0x72, 0x3f, 0xff, 0xad, 0x72, 0x3f, 0xff, 0xad, 0x72, 0x40, 0xff, 0xac, 0x71, 0x40, 0xff, 0xac, 0x71, 0x3e, 0xff, 0xac, 0x70, 0x3e, 0xff, 0xac, 0x70, 0x3d, 0xff, 0xaa, 0x70, 0x3d, 0xff, 0xaa, 0x6e, 0x3d, 0xff, 0xa8, 0x6d, 0x3c, 0xff, 0xa6, 0x6c, 0x3c, 0xff, 0xa6, 0x6c, 0x3c, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa7, 0x6d, 0x3c, 0xff, 0xa6, 0x6d, 0x3d, 0xff, 0xa6, 0x6d, 0x3d, 0xff, 0xa6, 0x6d, 0x3d, 0xff, 0xa6, 0x6c, 0x3d, 0xff, 0xa5, 0x6b, 0x3c, 0xff, 0xa5, 0x6b, 0x3b, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa8, 0x6d, 0x3e, 0xff, 0xa8, 0x6d, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa5, 0x6a, 0x3c, 0xff, 0xa3, 0x69, 0x3b, 0xff, 0xa2, 0x69, 0x3b, 0xff, 0xa1, 0x68, 0x3a, 0xff, 0xa0, 0x65, 0x38, 0xff, 0xb8, 0x7c, 0x49, 0xff, 0xc3, 0x85, 0x4e, 0xff, 0xbf, 0x82, 0x4b, 0xff, 0xbd, 0x82, 0x4a, 0xff, 0xba, 0x7e, 0x49, 0xff, 0xb8, 0x7c, 0x48, 0xff, 0xb6, 0x7b, 0x46, 0xff, 0xb4, 0x79, 0x44, 0xff, 0xb1, 0x76, 0x43, 0xff, 0xad, 0x72, 0x42, 0xff, 0xac, 0x71, 0x41, 0xff, 0xad, 0x72, 0x41, 0xff, 0xad, 0x72, 0x42, 0xff, 0xae, 0x74, 0x43, 0xff, 0xaf, 0x76, 0x44, 0xff, 0xb1, 0x77, 0x45, 0xff, 0xb0, 0x77, 0x45, 0xff, 0xb0, 0x77, 0x45, 0xff, 0xb1, 0x78, 0x45, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xaf, 0x76, 0x44, 0xff, 0xaf, 0x75, 0x44, 0xff, 0xad, 0x74, 0x43, 0xff, 0xaa, 0x71, 0x40, 0xff, 0xa9, 0x6e, 0x3f, 0xff, 0xa9, 0x6e, 0x3f, 0xff, 0xa8, 0x6d, 0x3e, 0xff, 0xa6, 0x6c, 0x3e, 0xff, 0xa6, 0x6c, 0x3d, 0xff, 0xa6, 0x6b, 0x3d, 0xff, 0xa6, 0x6b, 0x3d, 0xff, 0xa6, 0x6b, 0x3d, 0xff, 0xa6, 0x6b, 0x3d, 0xff, 0xa6, 0x6b, 0x3c, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa7, 0x6e, 0x3e, 0xff, 0xa8, 0x6f, 0x3e, 0xff, 0xa8, 0x6f, 0x3e, 0xff, 0xa8, 0x70, 0x3f, 0xff, 0xa8, 0x6f, 0x3e, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xa9, 0x6e, 0x3d, 0xff, 0xa9, 0x6e, 0x3d, 0xff, 0xa9, 0x6d, 0x3c, 0xff, 0xa9, 0x6d, 0x3c, 0xff, 0xa9, 0x6d, 0x3d, 0xff, 0xa9, 0x6e, 0x3d, 0xff, 0xa9, 0x6e, 0x3d, 0xff, 0xaa, 0x6f, 0x3d, 0xff, 0xab, 0x6f, 0x3d, 0xff, 0xab, 0x6f, 0x3d, 0xff, 0xab, 0x70, 0x3d, 0xff, 0xab, 0x6f, 0x3d, 0xff, 0xa7, 0x6a, 0x3c, 0xff, 0xa6, 0x6b, 0x3c, 0xff, 0xa6, 0x6b, 0x3c, 0xff, 0xa6, 0x6b, 0x3c, 0xff, 0xa6, 0x6b, 0x3c, 0xff, 0xa7, 0x6c, 0x3c, 0xff, 0xa6, 0x6b, 0x3b, 0xff, 0xa3, 0x68, 0x38, 0xff, 0xb6, 0x7a, 0x48, 0xff, 0xc0, 0x82, 0x4d, 0xff, 0xc1, 0x82, 0x4d, 0xff, 0xc2, 0x83, 0x4e, 0xff, 0xbe, 0x81, 0x4c, 0xff, 0xbb, 0x7e, 0x4a, 0xff, 0xba, 0x7e, 0x4a, 0xff, 0xba, 0x7e, 0x4a, 0xff, 0xbb, 0x7e, 0x4b, 0xff, 0xbb, 0x80, 0x4c, 0xff, 0xbb, 0x80, 0x4c, 0xff, 0xbc, 0x80, 0x4c, 0xff, 0xbc, 0x81, 0x4d, 0xff, 0xbc, 0x81, 0x4c, 0xff, 0xbb, 0x81, 0x4d, 0xff, 0xbe, 0x83, 0x4d, 0xff, 0xc1, 0x86, 0x50, 0xff, 0xbf, 0x83, 0x4d, 0xff, 0xc2, 0x85, 0x4d, 0xff, 0xc0, 0x84, 0x4d, 0xff, 0xbe, 0x83, 0x4c, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xb9, 0x7e, 0x47, 0xff, 0xb8, 0x7d, 0x46, 0xff, 0xb8, 0x7c, 0x45, 0xff, 0xb6, 0x7b, 0x44, 0xff, 0xb6, 0x7a, 0x45, 0xff, + 0xb6, 0x7a, 0x45, 0xff, 0xb6, 0x7a, 0x44, 0xff, 0xb6, 0x79, 0x44, 0xff, 0xb6, 0x79, 0x44, 0xff, 0xb6, 0x79, 0x45, 0xff, 0xb6, 0x7a, 0x45, 0xff, 0xb6, 0x7b, 0x45, 0xff, 0xb6, 0x7a, 0x46, 0xff, 0xb5, 0x7a, 0x45, 0xff, 0xb6, 0x7b, 0x47, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xc3, 0x85, 0x4c, 0xff, 0xc9, 0x88, 0x4e, 0xff, 0xcb, 0x89, 0x4e, 0xff, 0xc8, 0x88, 0x4e, 0xff, 0xc3, 0x85, 0x4e, 0xff, 0xbe, 0x83, 0x4c, 0xff, 0xbe, 0x82, 0x4b, 0xff, 0xbe, 0x83, 0x4c, 0xff, 0xbe, 0x82, 0x4a, 0xff, 0xbd, 0x82, 0x4a, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xbc, 0x81, 0x49, 0xff, 0xbd, 0x82, 0x4a, 0xff, 0xbd, 0x82, 0x4a, 0xff, 0xbb, 0x81, 0x49, 0xff, 0xba, 0x80, 0x47, 0xff, 0xba, 0x80, 0x47, 0xff, 0xb9, 0x80, 0x47, 0xff, 0xb9, 0x7d, 0x46, 0xff, 0xb9, 0x7d, 0x46, 0xff, 0xb8, 0x7c, 0x45, 0xff, 0xb9, 0x7d, 0x46, 0xff, 0xba, 0x7f, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xbd, 0x83, 0x49, 0xff, 0xbf, 0x85, 0x4a, 0xff, 0xbe, 0x85, 0x4a, 0xff, 0xbf, 0x85, 0x4b, 0xff, 0xbf, 0x87, 0x4b, 0xff, 0xc1, 0x87, 0x4c, 0xff, 0xc2, 0x89, 0x4d, 0xff, 0xc4, 0x88, 0x4d, 0xff, 0xc5, 0x8a, 0x4e, 0xff, 0xca, 0x8e, 0x50, 0xff, 0xcd, 0x8f, 0x52, 0xff, 0xce, 0x90, 0x52, 0xff, 0xcc, 0x8e, 0x53, 0xff, 0xcc, 0x8e, 0x52, 0xff, 0xcd, 0x91, 0x55, 0xff, 0xcc, 0x90, 0x56, 0xff, 0xc5, 0x8a, 0x52, 0xff, 0xbd, 0x84, 0x4e, 0xff, 0xbe, 0x85, 0x4e, 0xff, 0xbd, 0x84, 0x4d, 0xff, 0xbc, 0x83, 0x4c, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xb7, 0x7d, 0x49, 0xff, 0xb6, 0x7c, 0x48, 0xff, 0xb6, 0x7c, 0x47, 0xff, 0xb5, 0x7b, 0x47, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb3, 0x7b, 0x45, 0xff, 0xb3, 0x79, 0x45, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb2, 0x79, 0x45, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xaf, 0x77, 0x43, 0xff, 0xaf, 0x77, 0x43, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xae, 0x76, 0x42, 0xff, 0xae, 0x75, 0x42, 0xff, 0xad, 0x74, 0x41, 0xff, 0xad, 0x74, 0x40, 0xff, 0xad, 0x73, 0x3f, 0xff, 0xad, 0x73, 0x3e, 0xff, 0xad, 0x74, 0x3d, 0xff, 0xad, 0x73, 0x3d, 0xff, 0xad, 0x73, 0x3d, 0xff, 0xad, 0x73, 0x3d, 0xff, 0xad, 0x73, 0x3d, 0xff, 0xad, 0x73, 0x3c, 0xff, 0xad, 0x73, 0x3c, 0xff, 0xad, 0x73, 0x3c, 0xff, 0xae, 0x73, 0x3c, 0xff, 0xad, 0x73, 0x3c, 0xff, 0xae, 0x73, 0x3c, 0xff, 0xae, 0x73, 0x3d, 0xff, 0xae, 0x74, 0x3e, 0xff, 0xae, 0x73, 0x3f, 0xff, 0xae, 0x74, 0x3f, 0xff, 0xb1, 0x77, 0x41, 0xff, 0xb7, 0x7d, 0x46, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb4, 0x79, 0x45, 0xff, 0xb4, 0x79, 0x45, 0xff, 0xb3, 0x78, 0x44, 0xff, 0xb2, 0x77, 0x44, 0xff, 0xb2, 0x77, 0x43, 0xff, 0xb1, 0x76, 0x41, 0xff, 0xb1, 0x76, 0x41, 0xff, 0xb1, 0x76, 0x42, 0xff, 0xb1, 0x76, 0x41, 0xff, 0xb0, 0x76, 0x41, 0xff, 0xb0, 0x75, 0x41, 0xff, 0xaf, 0x73, 0x40, 0xff, 0xaf, 0x73, 0x40, 0xff, 0xb0, 0x75, 0x40, 0xff, 0xb0, 0x75, 0x40, 0xff, 0xaf, 0x74, 0x40, 0xff, 0xaf, 0x74, 0x40, 0xff, 0xaf, 0x73, 0x40, 0xff, 0xae, 0x73, 0x40, 0xff, 0xae, 0x73, 0x40, 0xff, 0xad, 0x73, 0x40, 0xff, 0xad, 0x72, 0x40, 0xff, 0xad, 0x72, 0x40, 0xff, 0xad, 0x72, 0x40, 0xff, 0xab, 0x70, 0x3e, 0xff, 0xa8, 0x6e, 0x3c, 0xff, 0xa7, 0x6d, 0x3c, 0xff, 0xa7, 0x6d, 0x3c, 0xff, 0xa7, 0x6c, 0x3c, 0xff, 0xa7, 0x6c, 0x3c, 0xff, 0xa6, 0x6d, 0x3c, 0xff, 0xa6, 0x6c, 0x3c, 0xff, 0xa7, 0x6c, 0x3c, 0xff, 0xa7, 0x6c, 0x3c, 0xff, 0xa5, 0x6c, 0x3c, 0xff, 0xa5, 0x6b, 0x3c, 0xff, 0xa5, 0x6b, 0x3c, 0xff, 0xa5, 0x6b, 0x3b, 0xff, 0xa7, 0x6e, 0x3d, 0xff, 0xa9, 0x6d, 0x3e, 0xff, 0xa8, 0x6c, 0x3d, 0xff, 0xa5, 0x6b, 0x3c, 0xff, 0xa4, 0x6a, 0x3b, 0xff, 0xa3, 0x69, 0x3b, 0xff, 0xa2, 0x68, 0x3b, 0xff, 0xa1, 0x67, 0x39, 0xff, 0xa0, 0x65, 0x37, 0xff, 0xa2, 0x66, 0x37, 0xff, 0xb5, 0x7b, 0x47, 0xff, 0xc2, 0x85, 0x4e, 0xff, 0xc1, 0x83, 0x4c, 0xff, 0xbc, 0x81, 0x4b, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xb9, 0x7d, 0x49, 0xff, 0xb7, 0x7c, 0x48, 0xff, 0xb1, 0x76, 0x44, 0xff, 0xad, 0x71, 0x40, 0xff, 0xab, 0x70, 0x40, 0xff, 0xac, 0x71, 0x40, 0xff, 0xab, 0x71, 0x40, 0xff, 0xac, 0x71, 0x40, 0xff, 0xad, 0x71, 0x40, 0xff, 0xae, 0x74, 0x43, 0xff, 0xb0, 0x76, 0x44, 0xff, 0xaf, 0x75, 0x44, 0xff, 0xaf, 0x76, 0x44, 0xff, 0xaf, 0x75, 0x43, 0xff, 0xae, 0x73, 0x42, 0xff, 0xac, 0x72, 0x41, 0xff, 0xaa, 0x6f, 0x3f, 0xff, 0xa9, 0x6f, 0x3f, 0xff, 0xa9, 0x6e, 0x3f, 0xff, 0xa8, 0x6f, 0x3f, 0xff, 0xa7, 0x6d, 0x3f, 0xff, 0xa7, 0x6e, 0x3e, 0xff, 0xa6, 0x6d, 0x3d, 0xff, 0xa6, 0x6a, 0x3d, 0xff, 0xa5, 0x6a, 0x3c, 0xff, 0xa6, 0x6a, 0x3c, 0xff, 0xa6, 0x6a, 0x3c, 0xff, 0xa7, 0x6a, 0x3c, 0xff, 0xa7, 0x6c, 0x3c, 0xff, 0xa7, 0x6c, 0x3c, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa7, 0x6e, 0x3e, 0xff, 0xa8, 0x6f, 0x3e, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xa9, 0x6e, 0x3d, 0xff, 0xa9, 0x6e, 0x3d, 0xff, 0xa9, 0x6e, 0x3c, 0xff, 0xa8, 0x6c, 0x3c, 0xff, 0xa8, 0x6b, 0x3c, 0xff, 0xa8, 0x6c, 0x3c, 0xff, 0xa9, 0x6c, 0x3c, 0xff, 0xa9, 0x6c, 0x3c, 0xff, 0xaa, 0x6e, 0x3c, 0xff, 0xaa, 0x6e, 0x3c, 0xff, 0xaa, 0x6f, 0x3c, 0xff, 0xaa, 0x6e, 0x3c, 0xff, 0xaa, 0x6e, 0x3c, 0xff, 0xa7, 0x6a, 0x3b, 0xff, 0xa4, 0x69, 0x3b, 0xff, 0xa5, 0x6a, 0x3b, 0xff, 0xa6, 0x6a, 0x3b, 0xff, 0xa6, 0x6a, 0x3b, 0xff, 0xa6, 0x6a, 0x3b, 0xff, 0xa7, 0x6a, 0x3c, 0xff, 0xa7, 0x6b, 0x3c, 0xff, 0xa6, 0x6a, 0x3a, 0xff, 0xa7, 0x6b, 0x3c, 0xff, 0xad, 0x73, 0x41, 0xff, 0xb9, 0x7a, 0x46, 0xff, 0xbe, 0x82, 0x4d, 0xff, 0xc0, 0x83, 0x4f, 0xff, 0xbd, 0x81, 0x4c, 0xff, 0xbb, 0x7f, 0x4b, 0xff, 0xbb, 0x7e, 0x4b, 0xff, 0xbb, 0x80, 0x4c, 0xff, 0xbb, 0x7f, 0x4c, 0xff, 0xbb, 0x80, 0x4c, 0xff, 0xbb, 0x80, 0x4c, 0xff, 0xbb, 0x80, 0x4c, 0xff, 0xbb, 0x80, 0x4c, 0xff, 0xbe, 0x82, 0x4d, 0xff, 0xc2, 0x84, 0x4e, 0xff, 0xc7, 0x87, 0x4f, 0xff, 0xc0, 0x83, 0x4c, 0xff, 0xbd, 0x82, 0x4b, 0xff, 0xbc, 0x81, 0x4b, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb9, 0x7d, 0x48, 0xff, 0xb8, 0x7c, 0x47, 0xff, 0xb8, 0x7c, 0x46, 0xff, 0xb7, 0x7b, 0x45, 0xff, 0xb6, 0x7a, 0x45, 0xff, + 0xb7, 0x7b, 0x45, 0xff, 0xb6, 0x7b, 0x45, 0xff, 0xb6, 0x7a, 0x46, 0xff, 0xb6, 0x7a, 0x47, 0xff, 0xb7, 0x7a, 0x46, 0xff, 0xb6, 0x7b, 0x47, 0xff, 0xb7, 0x7b, 0x47, 0xff, 0xbc, 0x80, 0x49, 0xff, 0xc3, 0x85, 0x4c, 0xff, 0xc1, 0x85, 0x4a, 0xff, 0xc4, 0x84, 0x4b, 0xff, 0xc8, 0x88, 0x4d, 0xff, 0xc9, 0x88, 0x4e, 0xff, 0xc9, 0x87, 0x4d, 0xff, 0xc7, 0x89, 0x4e, 0xff, 0xc5, 0x87, 0x4e, 0xff, 0xc3, 0x87, 0x4f, 0xff, 0xc0, 0x85, 0x4d, 0xff, 0xbf, 0x83, 0x4c, 0xff, 0xbf, 0x83, 0x4c, 0xff, 0xbe, 0x82, 0x4b, 0xff, 0xbd, 0x82, 0x4a, 0xff, 0xbd, 0x83, 0x4b, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xbc, 0x82, 0x4a, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb9, 0x7e, 0x47, 0xff, 0xb9, 0x80, 0x47, 0xff, 0xb9, 0x7e, 0x47, 0xff, 0xb8, 0x7c, 0x46, 0xff, 0xb7, 0x7b, 0x45, 0xff, 0xba, 0x7e, 0x48, 0xff, 0xb9, 0x7e, 0x47, 0xff, 0xbc, 0x83, 0x49, 0xff, 0xbf, 0x85, 0x4a, 0xff, 0xc0, 0x87, 0x4b, 0xff, 0xbf, 0x86, 0x4b, 0xff, 0xc4, 0x87, 0x4e, 0xff, 0xc5, 0x8b, 0x4d, 0xff, 0xc3, 0x88, 0x4d, 0xff, 0xc7, 0x8a, 0x50, 0xff, 0xca, 0x8c, 0x50, 0xff, 0xce, 0x90, 0x53, 0xff, 0xcc, 0x8f, 0x52, 0xff, 0xcd, 0x91, 0x56, 0xff, 0xcf, 0x97, 0x58, 0xff, 0xce, 0x95, 0x57, 0xff, 0xcd, 0x93, 0x56, 0xff, 0xcf, 0x95, 0x57, 0xff, 0xcb, 0x8f, 0x56, 0xff, 0xc5, 0x88, 0x51, 0xff, 0xc6, 0x8b, 0x52, 0xff, 0xc3, 0x88, 0x51, 0xff, 0xc3, 0x88, 0x50, 0xff, 0xbf, 0x83, 0x4d, 0xff, 0xba, 0x81, 0x4b, 0xff, 0xba, 0x80, 0x4d, 0xff, 0xb9, 0x80, 0x4b, 0xff, 0xb8, 0x80, 0x4b, 0xff, 0xb8, 0x7f, 0x4a, 0xff, 0xb6, 0x7d, 0x49, 0xff, 0xb6, 0x7c, 0x48, 0xff, 0xb5, 0x7d, 0x49, 0xff, 0xb5, 0x7b, 0x46, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb3, 0x7a, 0x46, 0xff, 0xb3, 0x79, 0x45, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x79, 0x45, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb0, 0x78, 0x44, 0xff, 0xaf, 0x76, 0x44, 0xff, 0xaf, 0x76, 0x44, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xae, 0x75, 0x42, 0xff, 0xae, 0x76, 0x43, 0xff, 0xae, 0x75, 0x41, 0xff, 0xae, 0x75, 0x40, 0xff, 0xae, 0x74, 0x3f, 0xff, 0xae, 0x74, 0x3e, 0xff, 0xae, 0x74, 0x3d, 0xff, 0xae, 0x74, 0x3d, 0xff, 0xae, 0x74, 0x3d, 0xff, 0xae, 0x74, 0x3d, 0xff, 0xae, 0x74, 0x3d, 0xff, 0xae, 0x74, 0x3d, 0xff, 0xae, 0x73, 0x3c, 0xff, 0xae, 0x74, 0x3c, 0xff, 0xae, 0x73, 0x3b, 0xff, 0xae, 0x74, 0x3d, 0xff, 0xaf, 0x74, 0x3f, 0xff, 0xaf, 0x74, 0x3f, 0xff, 0xb0, 0x75, 0x3f, 0xff, 0xaf, 0x75, 0x40, 0xff, 0xb0, 0x76, 0x41, 0xff, 0xb2, 0x77, 0x44, 0xff, 0xb2, 0x76, 0x45, 0xff, 0xb3, 0x78, 0x44, 0xff, 0xb4, 0x7a, 0x45, 0xff, 0xb4, 0x7a, 0x45, 0xff, 0xb3, 0x79, 0x44, 0xff, 0xb3, 0x78, 0x44, 0xff, 0xb2, 0x76, 0x44, 0xff, 0xb2, 0x76, 0x42, 0xff, 0xb1, 0x77, 0x42, 0xff, 0xb2, 0x77, 0x43, 0xff, 0xb0, 0x75, 0x41, 0xff, 0xb0, 0x75, 0x40, 0xff, 0xb0, 0x76, 0x41, 0xff, 0xaf, 0x74, 0x40, 0xff, 0xaf, 0x75, 0x40, 0xff, 0xb0, 0x76, 0x42, 0xff, 0xb0, 0x75, 0x42, 0xff, 0xb0, 0x75, 0x40, 0xff, 0xaf, 0x74, 0x40, 0xff, 0xaf, 0x74, 0x41, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xae, 0x74, 0x41, 0xff, 0xab, 0x70, 0x3e, 0xff, 0xa8, 0x6e, 0x3c, 0xff, 0xa7, 0x6d, 0x3c, 0xff, 0xa7, 0x6d, 0x3c, 0xff, 0xa7, 0x6d, 0x3c, 0xff, 0xa7, 0x6c, 0x3c, 0xff, 0xa8, 0x6c, 0x3c, 0xff, 0xa7, 0x6d, 0x3c, 0xff, 0xa6, 0x6d, 0x3c, 0xff, 0xa6, 0x6d, 0x3c, 0xff, 0xa5, 0x6c, 0x3c, 0xff, 0xa4, 0x6c, 0x3b, 0xff, 0xa4, 0x6b, 0x3c, 0xff, 0xa5, 0x6c, 0x3b, 0xff, 0xa5, 0x6b, 0x3b, 0xff, 0xa6, 0x6c, 0x3b, 0xff, 0xa8, 0x6e, 0x3d, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xa7, 0x6c, 0x3d, 0xff, 0xa6, 0x6c, 0x3c, 0xff, 0xa6, 0x6b, 0x3c, 0xff, 0xa4, 0x69, 0x3b, 0xff, 0xa2, 0x68, 0x3a, 0xff, 0xa1, 0x67, 0x39, 0xff, 0xa1, 0x67, 0x38, 0xff, 0xa0, 0x65, 0x36, 0xff, 0x9c, 0x61, 0x32, 0xff, 0xb3, 0x79, 0x46, 0xff, 0xc1, 0x86, 0x4f, 0xff, 0xbe, 0x83, 0x4d, 0xff, 0xbc, 0x82, 0x4d, 0xff, 0xba, 0x81, 0x4d, 0xff, 0xb9, 0x7e, 0x4a, 0xff, 0xb1, 0x76, 0x44, 0xff, 0xad, 0x71, 0x41, 0xff, 0xac, 0x70, 0x40, 0xff, 0xab, 0x6e, 0x3f, 0xff, 0xac, 0x6f, 0x3f, 0xff, 0xac, 0x71, 0x40, 0xff, 0xab, 0x70, 0x40, 0xff, 0xab, 0x70, 0x40, 0xff, 0xae, 0x75, 0x44, 0xff, 0xaf, 0x75, 0x44, 0xff, 0xaf, 0x75, 0x43, 0xff, 0xae, 0x75, 0x43, 0xff, 0xad, 0x74, 0x42, 0xff, 0xab, 0x6f, 0x40, 0xff, 0xa9, 0x6d, 0x3e, 0xff, 0xa9, 0x6d, 0x3e, 0xff, 0xa8, 0x6d, 0x3e, 0xff, 0xa8, 0x6d, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa7, 0x6c, 0x3e, 0xff, 0xa5, 0x6d, 0x3e, 0xff, 0xa5, 0x6c, 0x3d, 0xff, 0xa5, 0x6a, 0x3d, 0xff, 0xa4, 0x6a, 0x3c, 0xff, 0xa5, 0x6a, 0x3c, 0xff, 0xa7, 0x6a, 0x3c, 0xff, 0xa7, 0x6b, 0x3c, 0xff, 0xa7, 0x6b, 0x3c, 0xff, 0xa6, 0x6b, 0x3c, 0xff, 0xa6, 0x6c, 0x3c, 0xff, 0xa8, 0x6d, 0x3d, 0xff, 0xa8, 0x6e, 0x3d, 0xff, 0xa9, 0x6d, 0x3d, 0xff, 0xa9, 0x6d, 0x3d, 0xff, 0xa8, 0x6c, 0x3c, 0xff, 0xa8, 0x6c, 0x3c, 0xff, 0xa8, 0x6b, 0x3c, 0xff, 0xa8, 0x6a, 0x3b, 0xff, 0xa8, 0x6b, 0x3b, 0xff, 0xa8, 0x6c, 0x3c, 0xff, 0xa8, 0x6d, 0x3c, 0xff, 0xa9, 0x6c, 0x3c, 0xff, 0xaa, 0x6d, 0x3c, 0xff, 0xaa, 0x6d, 0x3d, 0xff, 0xa8, 0x6e, 0x3c, 0xff, 0xa8, 0x6c, 0x3c, 0xff, 0xa3, 0x68, 0x3b, 0xff, 0xa4, 0x68, 0x3b, 0xff, 0xa4, 0x69, 0x3b, 0xff, 0xa5, 0x69, 0x3b, 0xff, 0xa5, 0x6a, 0x3b, 0xff, 0xa4, 0x69, 0x3b, 0xff, 0xa6, 0x6b, 0x3b, 0xff, 0xa6, 0x6b, 0x3b, 0xff, 0xa7, 0x6b, 0x3b, 0xff, 0xa7, 0x6a, 0x3b, 0xff, 0xa8, 0x6c, 0x3c, 0xff, 0xab, 0x6f, 0x3e, 0xff, 0xaa, 0x6e, 0x3d, 0xff, 0xb4, 0x79, 0x46, 0xff, 0xc0, 0x84, 0x50, 0xff, 0xbd, 0x82, 0x4e, 0xff, 0xbd, 0x81, 0x4d, 0xff, 0xbc, 0x80, 0x4d, 0xff, 0xbb, 0x80, 0x4c, 0xff, 0xbb, 0x80, 0x4d, 0xff, 0xba, 0x7e, 0x4b, 0xff, 0xbb, 0x81, 0x4c, 0xff, 0xc1, 0x84, 0x4e, 0xff, 0xc5, 0x85, 0x4d, 0xff, 0xc4, 0x85, 0x4d, 0xff, 0xc1, 0x83, 0x4c, 0xff, 0xbd, 0x82, 0x4b, 0xff, 0xbb, 0x80, 0x4b, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xba, 0x7e, 0x49, 0xff, 0xb9, 0x7e, 0x49, 0xff, 0xb8, 0x7d, 0x48, 0xff, 0xb8, 0x7b, 0x47, 0xff, 0xb7, 0x7b, 0x46, 0xff, 0xb8, 0x7b, 0x45, 0xff, + 0xb8, 0x7c, 0x48, 0xff, 0xb8, 0x7c, 0x47, 0xff, 0xb8, 0x7c, 0x49, 0xff, 0xb9, 0x7d, 0x47, 0xff, 0xba, 0x7e, 0x47, 0xff, 0xbc, 0x81, 0x47, 0xff, 0xbf, 0x83, 0x49, 0xff, 0xbf, 0x82, 0x49, 0xff, 0xc0, 0x85, 0x4b, 0xff, 0xc5, 0x85, 0x4b, 0xff, 0xc5, 0x87, 0x4c, 0xff, 0xc7, 0x87, 0x4c, 0xff, 0xc6, 0x88, 0x4d, 0xff, 0xc8, 0x87, 0x4e, 0xff, 0xc7, 0x88, 0x4d, 0xff, 0xc4, 0x85, 0x4e, 0xff, 0xc2, 0x87, 0x50, 0xff, 0xc1, 0x86, 0x4f, 0xff, 0xc0, 0x85, 0x4e, 0xff, 0xbf, 0x84, 0x4d, 0xff, 0xbf, 0x83, 0x4b, 0xff, 0xbe, 0x81, 0x4a, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xbc, 0x81, 0x49, 0xff, 0xbc, 0x81, 0x4b, 0xff, 0xbc, 0x80, 0x49, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb9, 0x7f, 0x49, 0xff, 0xb9, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb8, 0x7b, 0x47, 0xff, 0xb8, 0x7c, 0x46, 0xff, 0xb8, 0x7d, 0x47, 0xff, 0xb9, 0x7f, 0x49, 0xff, 0xbd, 0x84, 0x4b, 0xff, 0xc0, 0x84, 0x4b, 0xff, 0xc5, 0x89, 0x4e, 0xff, 0xc6, 0x8b, 0x4e, 0xff, 0xc8, 0x8a, 0x4f, 0xff, 0xcb, 0x8c, 0x51, 0xff, 0xcd, 0x8f, 0x52, 0xff, 0xcf, 0x90, 0x56, 0xff, 0xcc, 0x94, 0x56, 0xff, 0xcf, 0x98, 0x5a, 0xff, 0xcf, 0x98, 0x59, 0xff, 0xce, 0x97, 0x5a, 0xff, 0xce, 0x99, 0x5b, 0xff, 0xd0, 0x9e, 0x5d, 0xff, 0xce, 0x9e, 0x5d, 0xff, 0xce, 0x98, 0x5b, 0xff, 0xcd, 0x8e, 0x55, 0xff, 0xcf, 0x90, 0x55, 0xff, 0xce, 0x8f, 0x56, 0xff, 0xca, 0x8b, 0x54, 0xff, 0xc5, 0x8a, 0x52, 0xff, 0xc1, 0x87, 0x4f, 0xff, 0xbf, 0x85, 0x4e, 0xff, 0xbe, 0x84, 0x4e, 0xff, 0xbc, 0x83, 0x4d, 0xff, 0xbb, 0x81, 0x4d, 0xff, 0xba, 0x81, 0x4b, 0xff, 0xb8, 0x7f, 0x4b, 0xff, 0xb7, 0x7d, 0x49, 0xff, 0xb7, 0x7d, 0x49, 0xff, 0xb6, 0x7d, 0x49, 0xff, 0xb6, 0x7d, 0x49, 0xff, 0xb4, 0x7c, 0x48, 0xff, 0xb3, 0x7b, 0x49, 0xff, 0xb3, 0x7a, 0x47, 0xff, 0xb2, 0x7a, 0x46, 0xff, 0xb1, 0x79, 0x45, 0xff, 0xb1, 0x79, 0x45, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xb0, 0x76, 0x42, 0xff, 0xaf, 0x75, 0x40, 0xff, 0xaf, 0x75, 0x3f, 0xff, 0xaf, 0x75, 0x3e, 0xff, 0xaf, 0x75, 0x3e, 0xff, 0xaf, 0x75, 0x3d, 0xff, 0xae, 0x75, 0x3d, 0xff, 0xae, 0x75, 0x3e, 0xff, 0xaf, 0x75, 0x3d, 0xff, 0xaf, 0x74, 0x3d, 0xff, 0xaf, 0x74, 0x3d, 0xff, 0xaf, 0x75, 0x3c, 0xff, 0xaf, 0x74, 0x3d, 0xff, 0xb0, 0x75, 0x3e, 0xff, 0xb0, 0x76, 0x40, 0xff, 0xb0, 0x76, 0x3f, 0xff, 0xb0, 0x77, 0x40, 0xff, 0xb2, 0x78, 0x45, 0xff, 0xb2, 0x77, 0x46, 0xff, 0xb0, 0x75, 0x43, 0xff, 0xb0, 0x75, 0x42, 0xff, 0xb0, 0x75, 0x43, 0xff, 0xb1, 0x75, 0x43, 0xff, 0xb2, 0x77, 0x45, 0xff, 0xb3, 0x78, 0x45, 0xff, 0xb3, 0x78, 0x43, 0xff, 0xb2, 0x78, 0x43, 0xff, 0xb3, 0x76, 0x43, 0xff, 0xb2, 0x76, 0x43, 0xff, 0xb2, 0x76, 0x43, 0xff, 0xb1, 0x76, 0x42, 0xff, 0xb1, 0x76, 0x42, 0xff, 0xb0, 0x75, 0x42, 0xff, 0xb0, 0x75, 0x41, 0xff, 0xb1, 0x76, 0x42, 0xff, 0xb1, 0x76, 0x43, 0xff, 0xaf, 0x73, 0x41, 0xff, 0xab, 0x70, 0x3e, 0xff, 0xa8, 0x6d, 0x3d, 0xff, 0xa7, 0x6c, 0x3c, 0xff, 0xa7, 0x6c, 0x3c, 0xff, 0xa7, 0x6e, 0x3d, 0xff, 0xa7, 0x6e, 0x3d, 0xff, 0xa7, 0x6d, 0x3c, 0xff, 0xa8, 0x6e, 0x3d, 0xff, 0xa8, 0x6e, 0x3c, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa5, 0x6b, 0x3b, 0xff, 0xa4, 0x6a, 0x3b, 0xff, 0xa5, 0x6b, 0x3b, 0xff, 0xa4, 0x6b, 0x3b, 0xff, 0xa4, 0x6a, 0x3a, 0xff, 0xa5, 0x6b, 0x3b, 0xff, 0xa4, 0x69, 0x39, 0xff, 0xa8, 0x6d, 0x3d, 0xff, 0xab, 0x70, 0x3f, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xa7, 0x6c, 0x3d, 0xff, 0xa7, 0x6b, 0x3d, 0xff, 0xa6, 0x6b, 0x3c, 0xff, 0xa6, 0x6b, 0x3b, 0xff, 0xa3, 0x68, 0x3a, 0xff, 0xa1, 0x67, 0x38, 0xff, 0xa0, 0x66, 0x37, 0xff, 0xa0, 0x65, 0x36, 0xff, 0x9f, 0x64, 0x35, 0xff, 0x9c, 0x62, 0x31, 0xff, 0xab, 0x72, 0x41, 0xff, 0xbe, 0x82, 0x4d, 0xff, 0xbf, 0x84, 0x4e, 0xff, 0xbc, 0x83, 0x4e, 0xff, 0xb6, 0x7f, 0x4c, 0xff, 0xb0, 0x76, 0x45, 0xff, 0xae, 0x73, 0x42, 0xff, 0xad, 0x71, 0x41, 0xff, 0xab, 0x6f, 0x40, 0xff, 0xaa, 0x6e, 0x3f, 0xff, 0xab, 0x70, 0x3f, 0xff, 0xab, 0x70, 0x3f, 0xff, 0xab, 0x6f, 0x3e, 0xff, 0xac, 0x70, 0x3f, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x75, 0x44, 0xff, 0xae, 0x75, 0x44, 0xff, 0xad, 0x72, 0x41, 0xff, 0xab, 0x6f, 0x40, 0xff, 0xaa, 0x6e, 0x3f, 0xff, 0xa8, 0x6d, 0x3d, 0xff, 0xa8, 0x6c, 0x3d, 0xff, 0xa9, 0x6d, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa6, 0x6c, 0x3e, 0xff, 0xa6, 0x6d, 0x3e, 0xff, 0xa4, 0x6b, 0x3e, 0xff, 0xa4, 0x6b, 0x3d, 0xff, 0xa5, 0x6b, 0x3c, 0xff, 0xa4, 0x6a, 0x3c, 0xff, 0xa4, 0x69, 0x3c, 0xff, 0xa5, 0x69, 0x3b, 0xff, 0xa5, 0x69, 0x3b, 0xff, 0xa5, 0x69, 0x3b, 0xff, 0xa6, 0x69, 0x3c, 0xff, 0xa7, 0x6b, 0x3c, 0xff, 0xa7, 0x6c, 0x3d, 0xff, 0xa7, 0x6c, 0x3c, 0xff, 0xa8, 0x6c, 0x3d, 0xff, 0xa7, 0x6d, 0x3c, 0xff, 0xa6, 0x6b, 0x3c, 0xff, 0xa6, 0x6a, 0x3b, 0xff, 0xa7, 0x6b, 0x3b, 0xff, 0xa7, 0x6c, 0x3b, 0xff, 0xa7, 0x6c, 0x3b, 0xff, 0xa7, 0x6d, 0x3c, 0xff, 0xa8, 0x6c, 0x3c, 0xff, 0xa9, 0x6c, 0x3c, 0xff, 0xa9, 0x6d, 0x3c, 0xff, 0xa8, 0x6c, 0x3b, 0xff, 0xa7, 0x6b, 0x3b, 0xff, 0xa3, 0x68, 0x3a, 0xff, 0xa3, 0x68, 0x3b, 0xff, 0xa4, 0x68, 0x3b, 0xff, 0xa4, 0x69, 0x3b, 0xff, 0xa4, 0x69, 0x3b, 0xff, 0xa5, 0x69, 0x3b, 0xff, 0xa4, 0x68, 0x3b, 0xff, 0xa5, 0x69, 0x3b, 0xff, 0xa5, 0x69, 0x3b, 0xff, 0xa6, 0x6a, 0x3b, 0xff, 0xa6, 0x6a, 0x3c, 0xff, 0xa7, 0x6b, 0x3c, 0xff, 0xa7, 0x6c, 0x3c, 0xff, 0xa6, 0x6b, 0x3b, 0xff, 0xa6, 0x6b, 0x3b, 0xff, 0xab, 0x6f, 0x3e, 0xff, 0xb0, 0x75, 0x43, 0xff, 0xb9, 0x7e, 0x4c, 0xff, 0xbf, 0x82, 0x4e, 0xff, 0xbc, 0x80, 0x4d, 0xff, 0xbd, 0x81, 0x4d, 0xff, 0xc2, 0x85, 0x4e, 0xff, 0xc4, 0x86, 0x4e, 0xff, 0xc3, 0x86, 0x4e, 0xff, 0xc2, 0x85, 0x4e, 0xff, 0xc1, 0x85, 0x4d, 0xff, 0xbe, 0x82, 0x4c, 0xff, 0xbb, 0x80, 0x4b, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xba, 0x7e, 0x4a, 0xff, 0xb9, 0x7e, 0x49, 0xff, 0xb9, 0x7d, 0x49, 0xff, 0xb8, 0x7c, 0x49, 0xff, 0xb8, 0x7b, 0x48, 0xff, 0xb8, 0x7c, 0x47, 0xff, + 0xb8, 0x7c, 0x45, 0xff, 0xb8, 0x7c, 0x43, 0xff, 0xb8, 0x7d, 0x43, 0xff, 0xba, 0x7d, 0x45, 0xff, 0xba, 0x7f, 0x45, 0xff, 0xbc, 0x81, 0x47, 0xff, 0xbc, 0x81, 0x47, 0xff, 0xbd, 0x81, 0x49, 0xff, 0xbe, 0x83, 0x4a, 0xff, 0xc2, 0x85, 0x4a, 0xff, 0xc5, 0x85, 0x4c, 0xff, 0xc4, 0x86, 0x4c, 0xff, 0xc5, 0x87, 0x4d, 0xff, 0xc5, 0x87, 0x4d, 0xff, 0xc4, 0x87, 0x4f, 0xff, 0xc4, 0x86, 0x4f, 0xff, 0xc1, 0x88, 0x4f, 0xff, 0xc0, 0x87, 0x50, 0xff, 0xc2, 0x86, 0x4f, 0xff, 0xc0, 0x84, 0x4d, 0xff, 0xbf, 0x84, 0x4c, 0xff, 0xbf, 0x83, 0x4b, 0xff, 0xbe, 0x82, 0x4b, 0xff, 0xbd, 0x82, 0x4b, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xba, 0x7e, 0x49, 0xff, 0xb9, 0x7d, 0x48, 0xff, 0xb8, 0x7d, 0x47, 0xff, 0xb8, 0x7b, 0x47, 0xff, 0xb5, 0x7a, 0x46, 0xff, 0xb4, 0x79, 0x45, 0xff, 0xb3, 0x77, 0x45, 0xff, 0xb3, 0x77, 0x44, 0xff, 0xb4, 0x79, 0x45, 0xff, 0xb6, 0x7a, 0x46, 0xff, 0xb6, 0x7a, 0x46, 0xff, 0xb8, 0x7d, 0x49, 0xff, 0xba, 0x7f, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xbe, 0x82, 0x4b, 0xff, 0xc3, 0x85, 0x4e, 0xff, 0xc8, 0x88, 0x50, 0xff, 0xcc, 0x8d, 0x53, 0xff, 0xd0, 0x90, 0x55, 0xff, 0xd0, 0x97, 0x5a, 0xff, 0xcf, 0x9a, 0x5c, 0xff, 0xcd, 0x9c, 0x5d, 0xff, 0xce, 0xa6, 0x5f, 0xff, 0xcf, 0xa4, 0x61, 0xff, 0xce, 0xa5, 0x63, 0xff, 0xd0, 0xa7, 0x64, 0xff, 0xce, 0xa3, 0x62, 0xff, 0xcf, 0x93, 0x5b, 0xff, 0xd0, 0x96, 0x5c, 0xff, 0xd0, 0x94, 0x5b, 0xff, 0xd1, 0x92, 0x59, 0xff, 0xce, 0x90, 0x58, 0xff, 0xca, 0x8c, 0x55, 0xff, 0xcb, 0x8b, 0x54, 0xff, 0xc8, 0x8b, 0x53, 0xff, 0xc4, 0x88, 0x51, 0xff, 0xc0, 0x86, 0x4f, 0xff, 0xbe, 0x85, 0x4f, 0xff, 0xbc, 0x84, 0x4e, 0xff, 0xbc, 0x83, 0x4e, 0xff, 0xba, 0x81, 0x4c, 0xff, 0xb9, 0x80, 0x4c, 0xff, 0xb7, 0x7d, 0x49, 0xff, 0xb3, 0x7b, 0x47, 0xff, 0xb2, 0x79, 0x46, 0xff, 0xb1, 0x79, 0x46, 0xff, 0xb1, 0x78, 0x45, 0xff, 0xb1, 0x78, 0x45, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb1, 0x78, 0x45, 0xff, 0xb3, 0x79, 0x46, 0xff, 0xb5, 0x7a, 0x47, 0xff, 0xb6, 0x7b, 0x48, 0xff, 0xb6, 0x7c, 0x49, 0xff, 0xb6, 0x7d, 0x49, 0xff, 0xb6, 0x7d, 0x4a, 0xff, 0xb5, 0x7c, 0x49, 0xff, 0xb5, 0x7b, 0x48, 0xff, 0xb4, 0x79, 0x44, 0xff, 0xb1, 0x77, 0x40, 0xff, 0xaf, 0x74, 0x3d, 0xff, 0xaf, 0x74, 0x3d, 0xff, 0xb0, 0x75, 0x3d, 0xff, 0xb0, 0x75, 0x3d, 0xff, 0xb0, 0x75, 0x3d, 0xff, 0xb0, 0x75, 0x3d, 0xff, 0xb0, 0x75, 0x3c, 0xff, 0xb1, 0x75, 0x3d, 0xff, 0xb0, 0x76, 0x3e, 0xff, 0xb1, 0x76, 0x3f, 0xff, 0xb0, 0x77, 0x3f, 0xff, 0xb2, 0x78, 0x41, 0xff, 0xb4, 0x78, 0x46, 0xff, 0xb3, 0x79, 0x46, 0xff, 0xb2, 0x78, 0x45, 0xff, 0xb2, 0x77, 0x44, 0xff, 0xb1, 0x76, 0x43, 0xff, 0xb0, 0x75, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x73, 0x41, 0xff, 0xaf, 0x74, 0x41, 0xff, 0xb1, 0x76, 0x43, 0xff, 0xaf, 0x74, 0x42, 0xff, 0xad, 0x72, 0x40, 0xff, 0xae, 0x73, 0x40, 0xff, 0xad, 0x72, 0x3e, 0xff, 0xac, 0x70, 0x3e, 0xff, 0xab, 0x70, 0x3e, 0xff, 0xa9, 0x6e, 0x3d, 0xff, 0xa6, 0x6c, 0x3c, 0xff, 0xa4, 0x6a, 0x3a, 0xff, 0xa4, 0x6b, 0x3a, 0xff, 0xa6, 0x6c, 0x3c, 0xff, 0xa7, 0x6d, 0x3c, 0xff, 0xa7, 0x6d, 0x3c, 0xff, 0xa7, 0x6c, 0x3c, 0xff, 0xa6, 0x6c, 0x3b, 0xff, 0xa6, 0x6c, 0x3b, 0xff, 0xa6, 0x6c, 0x3b, 0xff, 0xa5, 0x6c, 0x3b, 0xff, 0xa5, 0x6c, 0x3b, 0xff, 0xa4, 0x6a, 0x3a, 0xff, 0xa4, 0x6a, 0x3a, 0xff, 0xa4, 0x6a, 0x3b, 0xff, 0xa4, 0x6b, 0x3b, 0xff, 0xa5, 0x6b, 0x3b, 0xff, 0xa4, 0x6b, 0x3b, 0xff, 0xa4, 0x6b, 0x3b, 0xff, 0xa4, 0x6a, 0x3a, 0xff, 0xa4, 0x6a, 0x3a, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xab, 0x6f, 0x3f, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa7, 0x6c, 0x3d, 0xff, 0xa7, 0x6c, 0x3c, 0xff, 0xa7, 0x6c, 0x3d, 0xff, 0xa6, 0x6c, 0x3c, 0xff, 0xa3, 0x69, 0x3a, 0xff, 0xa2, 0x67, 0x39, 0xff, 0xa1, 0x66, 0x38, 0xff, 0xa0, 0x65, 0x36, 0xff, 0xa0, 0x65, 0x35, 0xff, 0x9d, 0x61, 0x34, 0xff, 0x9a, 0x5f, 0x32, 0xff, 0xa6, 0x6d, 0x3d, 0xff, 0xbc, 0x81, 0x4d, 0xff, 0xc0, 0x85, 0x4f, 0xff, 0xb7, 0x7e, 0x4c, 0xff, 0xb0, 0x77, 0x47, 0xff, 0xaf, 0x74, 0x44, 0xff, 0xae, 0x73, 0x42, 0xff, 0xad, 0x71, 0x40, 0xff, 0xab, 0x6f, 0x3f, 0xff, 0xaa, 0x6e, 0x3f, 0xff, 0xaa, 0x6e, 0x3f, 0xff, 0xaa, 0x6f, 0x3f, 0xff, 0xaa, 0x6e, 0x3e, 0xff, 0xaa, 0x6e, 0x3f, 0xff, 0xab, 0x71, 0x40, 0xff, 0xad, 0x72, 0x42, 0xff, 0xac, 0x72, 0x41, 0xff, 0xab, 0x71, 0x40, 0xff, 0xaa, 0x6f, 0x3e, 0xff, 0xa8, 0x6c, 0x3d, 0xff, 0xa8, 0x6c, 0x3d, 0xff, 0xa8, 0x6d, 0x3d, 0xff, 0xa8, 0x6c, 0x3e, 0xff, 0xa6, 0x6d, 0x3e, 0xff, 0xa6, 0x6c, 0x3e, 0xff, 0xa5, 0x6b, 0x3d, 0xff, 0xa5, 0x6b, 0x3d, 0xff, 0xa4, 0x6b, 0x3c, 0xff, 0xa4, 0x6a, 0x3b, 0xff, 0xa4, 0x69, 0x3b, 0xff, 0xa4, 0x68, 0x3b, 0xff, 0xa3, 0x68, 0x3a, 0xff, 0xa3, 0x68, 0x3a, 0xff, 0xa4, 0x68, 0x3b, 0xff, 0xa5, 0x69, 0x3b, 0xff, 0xa6, 0x6a, 0x3b, 0xff, 0xa6, 0x6a, 0x3c, 0xff, 0xa6, 0x6b, 0x3c, 0xff, 0xa6, 0x6b, 0x3c, 0xff, 0xa5, 0x6a, 0x3b, 0xff, 0xa5, 0x6a, 0x3b, 0xff, 0xa6, 0x69, 0x3b, 0xff, 0xa6, 0x6a, 0x3a, 0xff, 0xa7, 0x6a, 0x3a, 0xff, 0xa7, 0x6b, 0x3b, 0xff, 0xa7, 0x6a, 0x3b, 0xff, 0xa7, 0x6a, 0x3b, 0xff, 0xa8, 0x6c, 0x3b, 0xff, 0xa8, 0x6c, 0x3b, 0xff, 0xa7, 0x6b, 0x3b, 0xff, 0xa4, 0x68, 0x3a, 0xff, 0xa2, 0x68, 0x39, 0xff, 0xa3, 0x68, 0x3a, 0xff, 0xa3, 0x69, 0x3a, 0xff, 0xa3, 0x68, 0x3a, 0xff, 0xa3, 0x69, 0x3a, 0xff, 0xa4, 0x69, 0x3a, 0xff, 0xa4, 0x69, 0x3b, 0xff, 0xa5, 0x69, 0x3b, 0xff, 0xa5, 0x69, 0x3b, 0xff, 0xa5, 0x69, 0x3b, 0xff, 0xa5, 0x6a, 0x3b, 0xff, 0xa5, 0x6a, 0x3b, 0xff, 0xa6, 0x6a, 0x3b, 0xff, 0xa6, 0x6a, 0x3b, 0xff, 0xa7, 0x6c, 0x3c, 0xff, 0xa7, 0x6c, 0x3d, 0xff, 0xa6, 0x6b, 0x3c, 0xff, 0xa7, 0x6c, 0x3d, 0xff, 0xb0, 0x75, 0x44, 0xff, 0xb8, 0x7f, 0x47, 0xff, 0xbe, 0x82, 0x4b, 0xff, 0xbf, 0x83, 0x4b, 0xff, 0xbf, 0x82, 0x4b, 0xff, 0xbf, 0x82, 0x4a, 0xff, 0xbf, 0x82, 0x4b, 0xff, 0xbf, 0x82, 0x4b, 0xff, 0xbc, 0x80, 0x4a, 0xff, 0xb9, 0x7e, 0x49, 0xff, 0xb9, 0x7e, 0x47, 0xff, 0xb8, 0x7c, 0x47, 0xff, 0xb8, 0x7c, 0x47, 0xff, 0xb7, 0x7c, 0x46, 0xff, 0xb7, 0x7c, 0x45, 0xff, 0xb8, 0x7c, 0x46, 0xff, + 0xb6, 0x7a, 0x42, 0xff, 0xb6, 0x7b, 0x42, 0xff, 0xb7, 0x7c, 0x43, 0xff, 0xb8, 0x7d, 0x44, 0xff, 0xb9, 0x7d, 0x45, 0xff, 0xba, 0x80, 0x45, 0xff, 0xbb, 0x80, 0x46, 0xff, 0xbb, 0x80, 0x47, 0xff, 0xbd, 0x83, 0x49, 0xff, 0xc0, 0x83, 0x49, 0xff, 0xc1, 0x84, 0x4a, 0xff, 0xc2, 0x86, 0x4c, 0xff, 0xc3, 0x86, 0x4d, 0xff, 0xc5, 0x87, 0x4f, 0xff, 0xc2, 0x86, 0x4f, 0xff, 0xc2, 0x85, 0x4f, 0xff, 0xc3, 0x86, 0x50, 0xff, 0xbe, 0x89, 0x51, 0xff, 0xc5, 0x89, 0x51, 0xff, 0xc2, 0x85, 0x4e, 0xff, 0xc1, 0x85, 0x4d, 0xff, 0xbf, 0x84, 0x4d, 0xff, 0xbb, 0x7e, 0x49, 0xff, 0xb9, 0x7d, 0x49, 0xff, 0xb8, 0x7c, 0x47, 0xff, 0xb5, 0x7a, 0x46, 0xff, 0xb5, 0x7a, 0x46, 0xff, 0xb5, 0x79, 0x45, 0xff, 0xb5, 0x79, 0x45, 0xff, 0xb5, 0x7a, 0x46, 0xff, 0xb5, 0x79, 0x46, 0xff, 0xb5, 0x7a, 0x46, 0xff, 0xb5, 0x79, 0x46, 0xff, 0xb5, 0x79, 0x45, 0xff, 0xb6, 0x7a, 0x46, 0xff, 0xb6, 0x7b, 0x46, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xbe, 0x83, 0x4b, 0xff, 0xc2, 0x85, 0x4e, 0xff, 0xc7, 0x88, 0x4f, 0xff, 0xcc, 0x8a, 0x51, 0xff, 0xcf, 0x8c, 0x54, 0xff, 0xd0, 0x90, 0x58, 0xff, 0xd0, 0x96, 0x5c, 0xff, 0xd0, 0x9b, 0x5f, 0xff, 0xd1, 0xa1, 0x61, 0xff, 0xcd, 0xa7, 0x64, 0xff, 0xce, 0xae, 0x66, 0xff, 0xcb, 0xad, 0x69, 0xff, 0xcd, 0xab, 0x6b, 0xff, 0xcd, 0xa9, 0x69, 0xff, 0xd0, 0xa0, 0x64, 0xff, 0xd1, 0xa1, 0x64, 0xff, 0xd1, 0x9d, 0x62, 0xff, 0xd1, 0x9a, 0x60, 0xff, 0xd0, 0x99, 0x5f, 0xff, 0xd1, 0x93, 0x5c, 0xff, 0xd1, 0x93, 0x59, 0xff, 0xd0, 0x92, 0x58, 0xff, 0xce, 0x90, 0x57, 0xff, 0xcb, 0x8d, 0x55, 0xff, 0xc9, 0x8b, 0x54, 0xff, 0xc7, 0x8c, 0x55, 0xff, 0xb9, 0x81, 0x4d, 0xff, 0xb3, 0x79, 0x46, 0xff, 0xb0, 0x76, 0x44, 0xff, 0xae, 0x74, 0x42, 0xff, 0xad, 0x72, 0x41, 0xff, 0xac, 0x72, 0x41, 0xff, 0xad, 0x73, 0x42, 0xff, 0xae, 0x73, 0x43, 0xff, 0xaf, 0x74, 0x43, 0xff, 0xb0, 0x75, 0x43, 0xff, 0xb1, 0x76, 0x44, 0xff, 0xb2, 0x78, 0x45, 0xff, 0xb3, 0x79, 0x46, 0xff, 0xb6, 0x7b, 0x48, 0xff, 0xb9, 0x7d, 0x4a, 0xff, 0xbb, 0x80, 0x4c, 0xff, 0xbc, 0x83, 0x4f, 0xff, 0xbe, 0x85, 0x50, 0xff, 0xc0, 0x86, 0x51, 0xff, 0xc0, 0x86, 0x52, 0xff, 0xbf, 0x84, 0x4d, 0xff, 0xbe, 0x80, 0x4a, 0xff, 0xba, 0x7e, 0x47, 0xff, 0xb2, 0x79, 0x40, 0xff, 0xaf, 0x76, 0x3d, 0xff, 0xb0, 0x76, 0x3d, 0xff, 0xb1, 0x76, 0x3d, 0xff, 0xb1, 0x76, 0x3d, 0xff, 0xb1, 0x75, 0x3d, 0xff, 0xb1, 0x76, 0x3e, 0xff, 0xb1, 0x76, 0x3f, 0xff, 0xb2, 0x77, 0x40, 0xff, 0xb3, 0x78, 0x42, 0xff, 0xb5, 0x7b, 0x47, 0xff, 0xb6, 0x7b, 0x48, 0xff, 0xb4, 0x79, 0x45, 0xff, 0xb3, 0x77, 0x45, 0xff, 0xb2, 0x77, 0x44, 0xff, 0xb1, 0x75, 0x43, 0xff, 0xb0, 0x75, 0x43, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xb0, 0x74, 0x43, 0xff, 0xb0, 0x75, 0x42, 0xff, 0xab, 0x70, 0x3e, 0xff, 0xa8, 0x6d, 0x3b, 0xff, 0xa8, 0x6e, 0x3b, 0xff, 0xa7, 0x6e, 0x3a, 0xff, 0xa7, 0x6d, 0x3b, 0xff, 0xa7, 0x6c, 0x3c, 0xff, 0xa7, 0x6b, 0x3a, 0xff, 0xa6, 0x6b, 0x3a, 0xff, 0xa6, 0x6c, 0x3b, 0xff, 0xa6, 0x6b, 0x3b, 0xff, 0xa5, 0x6b, 0x3a, 0xff, 0xa6, 0x6c, 0x3b, 0xff, 0xa6, 0x6b, 0x3a, 0xff, 0xa4, 0x69, 0x3a, 0xff, 0xa3, 0x69, 0x39, 0xff, 0xa3, 0x6a, 0x39, 0xff, 0xa3, 0x6a, 0x39, 0xff, 0xa3, 0x6a, 0x3a, 0xff, 0xa3, 0x6a, 0x3a, 0xff, 0xa4, 0x6a, 0x39, 0xff, 0xa4, 0x6a, 0x39, 0xff, 0xa4, 0x6a, 0x3a, 0xff, 0xa4, 0x6a, 0x3a, 0xff, 0xa4, 0x6a, 0x3a, 0xff, 0xa4, 0x6a, 0x39, 0xff, 0xa4, 0x6a, 0x39, 0xff, 0xa4, 0x6a, 0x39, 0xff, 0xa5, 0x6c, 0x3b, 0xff, 0xaa, 0x6f, 0x3f, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xa7, 0x6d, 0x3c, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa7, 0x6d, 0x3c, 0xff, 0xa7, 0x6d, 0x3c, 0xff, 0xa6, 0x6a, 0x3b, 0xff, 0xa4, 0x68, 0x3a, 0xff, 0xa3, 0x67, 0x39, 0xff, 0xa2, 0x66, 0x37, 0xff, 0xa1, 0x65, 0x36, 0xff, 0x9f, 0x64, 0x35, 0xff, 0x9d, 0x61, 0x34, 0xff, 0x9b, 0x5f, 0x33, 0xff, 0x96, 0x5d, 0x31, 0xff, 0x9f, 0x65, 0x39, 0xff, 0xb5, 0x7c, 0x4b, 0xff, 0xb6, 0x7d, 0x4a, 0xff, 0xb1, 0x77, 0x45, 0xff, 0xb0, 0x76, 0x45, 0xff, 0xae, 0x74, 0x44, 0xff, 0xad, 0x72, 0x42, 0xff, 0xac, 0x71, 0x40, 0xff, 0xab, 0x6f, 0x3f, 0xff, 0xaa, 0x6e, 0x3e, 0xff, 0xaa, 0x6e, 0x3f, 0xff, 0xaa, 0x6f, 0x3f, 0xff, 0xaa, 0x6e, 0x3e, 0xff, 0xa9, 0x6d, 0x3d, 0xff, 0xaa, 0x6e, 0x3e, 0xff, 0xac, 0x71, 0x40, 0xff, 0xab, 0x71, 0x3f, 0xff, 0xab, 0x70, 0x3f, 0xff, 0xaa, 0x6e, 0x3e, 0xff, 0xa8, 0x6c, 0x3c, 0xff, 0xa8, 0x6c, 0x3d, 0xff, 0xa8, 0x6c, 0x3d, 0xff, 0xa7, 0x6c, 0x3d, 0xff, 0xa6, 0x6c, 0x3d, 0xff, 0xa5, 0x6c, 0x3d, 0xff, 0xa5, 0x6b, 0x3d, 0xff, 0xa4, 0x6a, 0x3c, 0xff, 0xa4, 0x69, 0x3b, 0xff, 0xa3, 0x69, 0x3b, 0xff, 0xa3, 0x67, 0x3a, 0xff, 0xa3, 0x67, 0x39, 0xff, 0xa2, 0x66, 0x39, 0xff, 0xa3, 0x66, 0x39, 0xff, 0xa3, 0x68, 0x3a, 0xff, 0xa4, 0x68, 0x3a, 0xff, 0xa4, 0x68, 0x3b, 0xff, 0xa4, 0x69, 0x3b, 0xff, 0xa4, 0x6a, 0x3b, 0xff, 0xa4, 0x69, 0x3b, 0xff, 0xa4, 0x6a, 0x3b, 0xff, 0xa4, 0x69, 0x3a, 0xff, 0xa6, 0x69, 0x3a, 0xff, 0xa5, 0x68, 0x3a, 0xff, 0xa6, 0x6a, 0x3a, 0xff, 0xa5, 0x69, 0x3a, 0xff, 0xa6, 0x69, 0x3b, 0xff, 0xa7, 0x6b, 0x3b, 0xff, 0xa8, 0x6b, 0x3b, 0xff, 0xa7, 0x6b, 0x3b, 0xff, 0xa4, 0x68, 0x3a, 0xff, 0xa2, 0x67, 0x39, 0xff, 0xa2, 0x68, 0x39, 0xff, 0xa2, 0x68, 0x3a, 0xff, 0xa3, 0x67, 0x3a, 0xff, 0xa3, 0x68, 0x3a, 0xff, 0xa3, 0x68, 0x3a, 0xff, 0xa4, 0x68, 0x3a, 0xff, 0xa4, 0x68, 0x3a, 0xff, 0xa4, 0x68, 0x3a, 0xff, 0xa5, 0x69, 0x3b, 0xff, 0xa4, 0x69, 0x3a, 0xff, 0xa4, 0x69, 0x3b, 0xff, 0xa5, 0x6a, 0x3b, 0xff, 0xa5, 0x69, 0x3b, 0xff, 0xa6, 0x6a, 0x3b, 0xff, 0xa6, 0x6b, 0x3c, 0xff, 0xa7, 0x6c, 0x3d, 0xff, 0xac, 0x6f, 0x3f, 0xff, 0xb5, 0x7b, 0x46, 0xff, 0xb1, 0x78, 0x41, 0xff, 0xb3, 0x7a, 0x41, 0xff, 0xb4, 0x7b, 0x43, 0xff, 0xb4, 0x7b, 0x42, 0xff, 0xb5, 0x7c, 0x43, 0xff, 0xb6, 0x7c, 0x42, 0xff, 0xb6, 0x7b, 0x42, 0xff, 0xb6, 0x7c, 0x43, 0xff, 0xb2, 0x79, 0x41, 0xff, 0xb1, 0x77, 0x40, 0xff, 0xb3, 0x77, 0x40, 0xff, 0xb2, 0x78, 0x41, 0xff, 0xb3, 0x79, 0x41, 0xff, 0xb4, 0x79, 0x41, 0xff, 0xb4, 0x79, 0x41, 0xff, + 0xb3, 0x79, 0x40, 0xff, 0xb5, 0x79, 0x40, 0xff, 0xb6, 0x7a, 0x43, 0xff, 0xb8, 0x7c, 0x43, 0xff, 0xb8, 0x7d, 0x44, 0xff, 0xb8, 0x7d, 0x45, 0xff, 0xb9, 0x7e, 0x45, 0xff, 0xb9, 0x80, 0x47, 0xff, 0xbc, 0x81, 0x48, 0xff, 0xbf, 0x83, 0x4a, 0xff, 0xbf, 0x83, 0x4a, 0xff, 0xc0, 0x84, 0x4b, 0xff, 0xc2, 0x85, 0x4d, 0xff, 0xc3, 0x88, 0x4f, 0xff, 0xc3, 0x86, 0x51, 0xff, 0xc1, 0x86, 0x4f, 0xff, 0xc4, 0x88, 0x51, 0xff, 0xbc, 0x86, 0x4d, 0xff, 0xbe, 0x88, 0x4e, 0xff, 0xc3, 0x88, 0x50, 0xff, 0xbb, 0x7f, 0x4b, 0xff, 0xb7, 0x7c, 0x49, 0xff, 0xb7, 0x7c, 0x49, 0xff, 0xb6, 0x7b, 0x47, 0xff, 0xb6, 0x7a, 0x46, 0xff, 0xb5, 0x7a, 0x46, 0xff, 0xb6, 0x7a, 0x46, 0xff, 0xb5, 0x7a, 0x46, 0xff, 0xb6, 0x7a, 0x46, 0xff, 0xb5, 0x7a, 0x46, 0xff, 0xb5, 0x7a, 0x46, 0xff, 0xb6, 0x7a, 0x46, 0xff, 0xb6, 0x7a, 0x46, 0xff, 0xb5, 0x7a, 0x46, 0xff, 0xb6, 0x7b, 0x46, 0xff, 0xb7, 0x7b, 0x46, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xbd, 0x83, 0x4b, 0xff, 0xc1, 0x84, 0x4e, 0xff, 0xc5, 0x86, 0x4f, 0xff, 0xca, 0x8a, 0x51, 0xff, 0xd0, 0x8e, 0x53, 0xff, 0xd1, 0x90, 0x56, 0xff, 0xd0, 0x92, 0x59, 0xff, 0xd2, 0x9c, 0x5f, 0xff, 0xd2, 0xa2, 0x63, 0xff, 0xd1, 0xa8, 0x66, 0xff, 0xd1, 0xaf, 0x68, 0xff, 0xce, 0xae, 0x6b, 0xff, 0xcd, 0xaf, 0x6f, 0xff, 0xcc, 0xaf, 0x71, 0xff, 0xcd, 0xaf, 0x73, 0xff, 0xce, 0xaf, 0x6e, 0xff, 0xd0, 0xae, 0x6b, 0xff, 0xd1, 0xac, 0x6b, 0xff, 0xd1, 0xac, 0x69, 0xff, 0xd2, 0xab, 0x68, 0xff, 0xd2, 0xa9, 0x66, 0xff, 0xd0, 0x9c, 0x61, 0xff, 0xd2, 0x98, 0x5f, 0xff, 0xd3, 0x97, 0x5e, 0xff, 0xce, 0x94, 0x5d, 0xff, 0xb9, 0x83, 0x4e, 0xff, 0xad, 0x73, 0x41, 0xff, 0xac, 0x71, 0x40, 0xff, 0xac, 0x72, 0x41, 0xff, 0xac, 0x72, 0x40, 0xff, 0xac, 0x71, 0x40, 0xff, 0xad, 0x73, 0x41, 0xff, 0xad, 0x74, 0x41, 0xff, 0xad, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xaf, 0x75, 0x43, 0xff, 0xb0, 0x74, 0x43, 0xff, 0xb1, 0x76, 0x44, 0xff, 0xb2, 0x77, 0x45, 0xff, 0xb4, 0x79, 0x46, 0xff, 0xb6, 0x7b, 0x48, 0xff, 0xb8, 0x7d, 0x49, 0xff, 0xba, 0x7f, 0x4a, 0xff, 0xbd, 0x82, 0x4b, 0xff, 0xbf, 0x83, 0x4d, 0xff, 0xc0, 0x84, 0x4e, 0xff, 0xc2, 0x85, 0x4f, 0xff, 0xc5, 0x86, 0x4e, 0xff, 0xc5, 0x85, 0x4e, 0xff, 0xc7, 0x85, 0x4e, 0xff, 0xc0, 0x82, 0x4a, 0xff, 0xb6, 0x7b, 0x42, 0xff, 0xb2, 0x77, 0x3d, 0xff, 0xb1, 0x75, 0x3c, 0xff, 0xb2, 0x76, 0x3d, 0xff, 0xb2, 0x77, 0x3e, 0xff, 0xb2, 0x77, 0x3e, 0xff, 0xb2, 0x77, 0x40, 0xff, 0xb4, 0x79, 0x43, 0xff, 0xb6, 0x7c, 0x48, 0xff, 0xb7, 0x7d, 0x4b, 0xff, 0xb6, 0x7c, 0x48, 0xff, 0xb5, 0x79, 0x45, 0xff, 0xb3, 0x78, 0x45, 0xff, 0xb1, 0x76, 0x45, 0xff, 0xb1, 0x76, 0x44, 0xff, 0xb1, 0x76, 0x43, 0xff, 0xb0, 0x75, 0x43, 0xff, 0xad, 0x72, 0x40, 0xff, 0xaa, 0x6f, 0x3d, 0xff, 0xa9, 0x6f, 0x3d, 0xff, 0xa8, 0x6f, 0x3d, 0xff, 0xa8, 0x6d, 0x3b, 0xff, 0xa8, 0x6d, 0x3b, 0xff, 0xa8, 0x6c, 0x3b, 0xff, 0xa7, 0x6c, 0x3b, 0xff, 0xa7, 0x6d, 0x3b, 0xff, 0xa6, 0x6b, 0x3a, 0xff, 0xa6, 0x6b, 0x3a, 0xff, 0xa6, 0x6b, 0x3b, 0xff, 0xa6, 0x6b, 0x3b, 0xff, 0xa4, 0x6a, 0x39, 0xff, 0xa3, 0x6a, 0x39, 0xff, 0xa4, 0x6a, 0x39, 0xff, 0xa3, 0x6a, 0x39, 0xff, 0xa3, 0x6a, 0x39, 0xff, 0xa3, 0x6a, 0x39, 0xff, 0xa3, 0x69, 0x39, 0xff, 0xa3, 0x69, 0x39, 0xff, 0xa3, 0x6a, 0x39, 0xff, 0xa3, 0x6a, 0x39, 0xff, 0xa3, 0x6a, 0x39, 0xff, 0xa4, 0x6a, 0x39, 0xff, 0xa3, 0x6a, 0x39, 0xff, 0xa4, 0x6a, 0x39, 0xff, 0xa4, 0x69, 0x39, 0xff, 0xa6, 0x6b, 0x3b, 0xff, 0xa9, 0x6f, 0x3f, 0xff, 0xaa, 0x70, 0x3f, 0xff, 0xa8, 0x6d, 0x3d, 0xff, 0xa7, 0x6c, 0x3c, 0xff, 0xa8, 0x6d, 0x3c, 0xff, 0xa8, 0x6c, 0x3b, 0xff, 0xa6, 0x6a, 0x3a, 0xff, 0xa4, 0x69, 0x39, 0xff, 0xa3, 0x68, 0x39, 0xff, 0xa2, 0x66, 0x38, 0xff, 0xa2, 0x66, 0x37, 0xff, 0x9e, 0x63, 0x36, 0xff, 0x9d, 0x61, 0x34, 0xff, 0x9b, 0x60, 0x33, 0xff, 0x99, 0x5e, 0x33, 0xff, 0x97, 0x5e, 0x32, 0xff, 0x99, 0x5f, 0x33, 0xff, 0xac, 0x71, 0x42, 0xff, 0xb3, 0x78, 0x46, 0xff, 0xb1, 0x77, 0x45, 0xff, 0xb0, 0x75, 0x44, 0xff, 0xae, 0x74, 0x43, 0xff, 0xac, 0x73, 0x41, 0xff, 0xac, 0x70, 0x3f, 0xff, 0xab, 0x6e, 0x3e, 0xff, 0xaa, 0x6d, 0x3e, 0xff, 0xaa, 0x6d, 0x3d, 0xff, 0xaa, 0x6f, 0x3e, 0xff, 0xa9, 0x6e, 0x3d, 0xff, 0xa8, 0x6c, 0x3d, 0xff, 0xab, 0x6f, 0x3f, 0xff, 0xab, 0x70, 0x3f, 0xff, 0xab, 0x6f, 0x3f, 0xff, 0xaa, 0x6d, 0x3d, 0xff, 0xa9, 0x6d, 0x3d, 0xff, 0xa8, 0x6c, 0x3c, 0xff, 0xa8, 0x6c, 0x3b, 0xff, 0xa7, 0x6b, 0x3d, 0xff, 0xa6, 0x6b, 0x3d, 0xff, 0xa5, 0x6b, 0x3c, 0xff, 0xa5, 0x6a, 0x3b, 0xff, 0xa4, 0x6a, 0x3c, 0xff, 0xa4, 0x69, 0x3b, 0xff, 0xa3, 0x68, 0x3a, 0xff, 0xa3, 0x68, 0x39, 0xff, 0xa2, 0x67, 0x39, 0xff, 0xa1, 0x65, 0x39, 0xff, 0xa0, 0x65, 0x39, 0xff, 0xa1, 0x65, 0x39, 0xff, 0xa1, 0x66, 0x39, 0xff, 0xa2, 0x66, 0x39, 0xff, 0xa3, 0x68, 0x39, 0xff, 0xa3, 0x68, 0x3a, 0xff, 0xa2, 0x68, 0x3a, 0xff, 0xa3, 0x68, 0x3a, 0xff, 0xa4, 0x68, 0x3a, 0xff, 0xa5, 0x68, 0x3a, 0xff, 0xa4, 0x68, 0x39, 0xff, 0xa4, 0x68, 0x39, 0xff, 0xa5, 0x68, 0x3a, 0xff, 0xa5, 0x69, 0x3a, 0xff, 0xa6, 0x69, 0x3a, 0xff, 0xa7, 0x6a, 0x3a, 0xff, 0xa7, 0x6b, 0x3b, 0xff, 0xa3, 0x68, 0x3a, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa2, 0x66, 0x39, 0xff, 0xa2, 0x67, 0x39, 0xff, 0xa2, 0x67, 0x39, 0xff, 0xa2, 0x67, 0x39, 0xff, 0xa3, 0x68, 0x39, 0xff, 0xa3, 0x67, 0x39, 0xff, 0xa3, 0x67, 0x3a, 0xff, 0xa4, 0x68, 0x39, 0xff, 0xa4, 0x67, 0x3a, 0xff, 0xa4, 0x68, 0x3a, 0xff, 0xa4, 0x68, 0x3a, 0xff, 0xa4, 0x69, 0x3a, 0xff, 0xa5, 0x68, 0x3b, 0xff, 0xa5, 0x69, 0x3b, 0xff, 0xa6, 0x6a, 0x3c, 0xff, 0xaa, 0x6f, 0x3d, 0xff, 0xb1, 0x77, 0x42, 0xff, 0xb4, 0x79, 0x44, 0xff, 0xaf, 0x75, 0x3e, 0xff, 0xb1, 0x77, 0x40, 0xff, 0xb1, 0x78, 0x40, 0xff, 0xb2, 0x79, 0x40, 0xff, 0xb2, 0x78, 0x40, 0xff, 0xb3, 0x79, 0x40, 0xff, 0xb4, 0x7a, 0x42, 0xff, 0xb4, 0x7a, 0x40, 0xff, 0xb4, 0x7a, 0x42, 0xff, 0xb1, 0x77, 0x40, 0xff, 0xb1, 0x77, 0x40, 0xff, 0xb1, 0x76, 0x3f, 0xff, 0xb1, 0x76, 0x40, 0xff, 0xb2, 0x77, 0x40, 0xff, 0xb4, 0x79, 0x41, 0xff, + 0xb3, 0x78, 0x40, 0xff, 0xb3, 0x79, 0x41, 0xff, 0xb5, 0x7a, 0x41, 0xff, 0xb5, 0x7a, 0x41, 0xff, 0xb6, 0x7b, 0x44, 0xff, 0xb8, 0x7c, 0x44, 0xff, 0xb8, 0x7d, 0x46, 0xff, 0xb8, 0x7c, 0x45, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbc, 0x80, 0x49, 0xff, 0xbe, 0x83, 0x49, 0xff, 0xbd, 0x82, 0x4a, 0xff, 0xc0, 0x86, 0x4e, 0xff, 0xc2, 0x87, 0x51, 0xff, 0xc1, 0x86, 0x50, 0xff, 0xc1, 0x84, 0x4f, 0xff, 0xc2, 0x87, 0x51, 0xff, 0xbd, 0x87, 0x50, 0xff, 0xaf, 0x78, 0x44, 0xff, 0xb1, 0x76, 0x44, 0xff, 0xbb, 0x80, 0x4c, 0xff, 0xb8, 0x7d, 0x4a, 0xff, 0xb7, 0x7c, 0x49, 0xff, 0xb7, 0x7c, 0x48, 0xff, 0xb6, 0x7b, 0x47, 0xff, 0xb7, 0x7b, 0x46, 0xff, 0xb6, 0x7a, 0x46, 0xff, 0xb6, 0x7a, 0x46, 0xff, 0xb5, 0x7a, 0x46, 0xff, 0xb6, 0x7a, 0x46, 0xff, 0xb6, 0x7a, 0x46, 0xff, 0xb5, 0x7a, 0x46, 0xff, 0xb6, 0x78, 0x46, 0xff, 0xb6, 0x7a, 0x46, 0xff, 0xb8, 0x7b, 0x47, 0xff, 0xb9, 0x7d, 0x49, 0xff, 0xbd, 0x83, 0x4b, 0xff, 0xbf, 0x83, 0x4c, 0xff, 0xc4, 0x85, 0x4f, 0xff, 0xc8, 0x89, 0x50, 0xff, 0xce, 0x8d, 0x52, 0xff, 0xd1, 0x8f, 0x56, 0xff, 0xd1, 0x92, 0x59, 0xff, 0xd1, 0x99, 0x5d, 0xff, 0xd2, 0xa2, 0x63, 0xff, 0xd1, 0xa9, 0x65, 0xff, 0xd0, 0xb0, 0x6a, 0xff, 0xcc, 0xaf, 0x6f, 0xff, 0xce, 0xb0, 0x72, 0xff, 0xd0, 0xb1, 0x76, 0xff, 0xcf, 0xb0, 0x7b, 0xff, 0xd0, 0xb0, 0x7c, 0xff, 0xcf, 0xaf, 0x77, 0xff, 0xce, 0xb1, 0x74, 0xff, 0xce, 0xb0, 0x74, 0xff, 0xcf, 0xb1, 0x75, 0xff, 0xce, 0xb0, 0x72, 0xff, 0xce, 0xb1, 0x71, 0xff, 0xcf, 0xad, 0x70, 0xff, 0xcc, 0x9c, 0x63, 0xff, 0xb6, 0x86, 0x54, 0xff, 0xa3, 0x6b, 0x3b, 0xff, 0xab, 0x71, 0x42, 0xff, 0xab, 0x71, 0x42, 0xff, 0xac, 0x72, 0x42, 0xff, 0xad, 0x72, 0x41, 0xff, 0xac, 0x72, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xad, 0x72, 0x41, 0xff, 0xae, 0x73, 0x42, 0xff, 0xaf, 0x74, 0x42, 0xff, 0xaf, 0x73, 0x43, 0xff, 0xb0, 0x75, 0x43, 0xff, 0xb0, 0x75, 0x43, 0xff, 0xb1, 0x76, 0x44, 0xff, 0xb3, 0x77, 0x45, 0xff, 0xb4, 0x79, 0x45, 0xff, 0xb6, 0x7b, 0x47, 0xff, 0xb7, 0x7c, 0x48, 0xff, 0xb9, 0x7d, 0x49, 0xff, 0xbb, 0x7f, 0x4a, 0xff, 0xbd, 0x81, 0x4c, 0xff, 0xc0, 0x83, 0x4d, 0xff, 0xc2, 0x85, 0x4d, 0xff, 0xc4, 0x86, 0x4e, 0xff, 0xc6, 0x86, 0x4d, 0xff, 0xc8, 0x86, 0x4e, 0xff, 0xc9, 0x87, 0x4e, 0xff, 0xc6, 0x86, 0x4e, 0xff, 0xc3, 0x85, 0x4d, 0xff, 0xbb, 0x7f, 0x46, 0xff, 0xb5, 0x78, 0x3e, 0xff, 0xb3, 0x77, 0x3e, 0xff, 0xb3, 0x78, 0x3f, 0xff, 0xb3, 0x78, 0x40, 0xff, 0xb5, 0x7a, 0x43, 0xff, 0xb7, 0x7d, 0x49, 0xff, 0xb8, 0x7f, 0x4d, 0xff, 0xb7, 0x7e, 0x4a, 0xff, 0xb7, 0x7c, 0x48, 0xff, 0xb5, 0x7a, 0x46, 0xff, 0xb3, 0x78, 0x46, 0xff, 0xb3, 0x78, 0x45, 0xff, 0xb2, 0x77, 0x44, 0xff, 0xb0, 0x75, 0x42, 0xff, 0xac, 0x73, 0x40, 0xff, 0xaa, 0x70, 0x3e, 0xff, 0xa9, 0x70, 0x3e, 0xff, 0xa9, 0x6e, 0x3d, 0xff, 0xa9, 0x6e, 0x3b, 0xff, 0xa8, 0x6e, 0x3b, 0xff, 0xa8, 0x6d, 0x3a, 0xff, 0xa8, 0x6d, 0x3a, 0xff, 0xa7, 0x6d, 0x3b, 0xff, 0xa7, 0x6b, 0x3a, 0xff, 0xa6, 0x6b, 0x3a, 0xff, 0xa6, 0x6d, 0x3a, 0xff, 0xa5, 0x6c, 0x39, 0xff, 0xa4, 0x6a, 0x39, 0xff, 0xa4, 0x69, 0x39, 0xff, 0xa4, 0x69, 0x39, 0xff, 0xa3, 0x69, 0x39, 0xff, 0xa3, 0x69, 0x39, 0xff, 0xa3, 0x68, 0x39, 0xff, 0xa3, 0x68, 0x39, 0xff, 0xa3, 0x69, 0x39, 0xff, 0xa3, 0x69, 0x39, 0xff, 0xa3, 0x68, 0x39, 0xff, 0xa4, 0x6a, 0x39, 0xff, 0xa3, 0x6a, 0x39, 0xff, 0xa4, 0x69, 0x39, 0xff, 0xa4, 0x69, 0x39, 0xff, 0xa4, 0x69, 0x39, 0xff, 0xa6, 0x6c, 0x3b, 0xff, 0xab, 0x70, 0x3e, 0xff, 0xaa, 0x6f, 0x3f, 0xff, 0xa8, 0x6d, 0x3d, 0xff, 0xa7, 0x6c, 0x3c, 0xff, 0xa8, 0x6c, 0x3b, 0xff, 0xa8, 0x6c, 0x3a, 0xff, 0xa6, 0x6a, 0x3a, 0xff, 0xa4, 0x68, 0x39, 0xff, 0xa3, 0x67, 0x39, 0xff, 0xa3, 0x67, 0x39, 0xff, 0xa1, 0x65, 0x38, 0xff, 0x9e, 0x62, 0x36, 0xff, 0x9c, 0x60, 0x35, 0xff, 0x9b, 0x5f, 0x34, 0xff, 0x99, 0x5e, 0x33, 0xff, 0x96, 0x5c, 0x31, 0xff, 0xa1, 0x66, 0x3a, 0xff, 0xa6, 0x6b, 0x3d, 0xff, 0xab, 0x70, 0x40, 0xff, 0xaf, 0x74, 0x44, 0xff, 0xb1, 0x76, 0x44, 0xff, 0xb0, 0x75, 0x43, 0xff, 0xae, 0x74, 0x42, 0xff, 0xad, 0x72, 0x41, 0xff, 0xac, 0x70, 0x40, 0xff, 0xaa, 0x6f, 0x3e, 0xff, 0xa8, 0x6c, 0x3d, 0xff, 0xa8, 0x6c, 0x3d, 0xff, 0xa8, 0x6b, 0x3d, 0xff, 0xa7, 0x6b, 0x3c, 0xff, 0xa7, 0x6b, 0x3c, 0xff, 0xa9, 0x6d, 0x3e, 0xff, 0xa9, 0x6d, 0x3d, 0xff, 0xa8, 0x6c, 0x3c, 0xff, 0xa8, 0x6c, 0x3b, 0xff, 0xa6, 0x6a, 0x3a, 0xff, 0xa6, 0x6a, 0x3a, 0xff, 0xa6, 0x6a, 0x3b, 0xff, 0xa6, 0x6b, 0x3b, 0xff, 0xa6, 0x6b, 0x3b, 0xff, 0xa5, 0x6b, 0x3b, 0xff, 0xa5, 0x69, 0x3b, 0xff, 0xa4, 0x68, 0x3a, 0xff, 0xa3, 0x66, 0x39, 0xff, 0xa1, 0x65, 0x39, 0xff, 0xa0, 0x64, 0x38, 0xff, 0x9f, 0x63, 0x38, 0xff, 0x9f, 0x64, 0x37, 0xff, 0xa0, 0x63, 0x37, 0xff, 0xa0, 0x64, 0x37, 0xff, 0xa1, 0x65, 0x38, 0xff, 0xa1, 0x66, 0x39, 0xff, 0xa2, 0x66, 0x39, 0xff, 0xa2, 0x67, 0x39, 0xff, 0xa3, 0x68, 0x3a, 0xff, 0xa3, 0x67, 0x39, 0xff, 0xa4, 0x67, 0x39, 0xff, 0xa4, 0x68, 0x39, 0xff, 0xa3, 0x67, 0x39, 0xff, 0xa4, 0x68, 0x39, 0xff, 0xa4, 0x67, 0x39, 0xff, 0xa5, 0x69, 0x3a, 0xff, 0xa6, 0x69, 0x3a, 0xff, 0xa6, 0x6a, 0x3a, 0xff, 0xa3, 0x68, 0x39, 0xff, 0xa1, 0x65, 0x39, 0xff, 0xa1, 0x65, 0x39, 0xff, 0xa1, 0x66, 0x39, 0xff, 0xa2, 0x67, 0x39, 0xff, 0xa2, 0x67, 0x39, 0xff, 0xa2, 0x67, 0x39, 0xff, 0xa3, 0x67, 0x39, 0xff, 0xa3, 0x67, 0x39, 0xff, 0xa3, 0x68, 0x39, 0xff, 0xa3, 0x66, 0x39, 0xff, 0xa3, 0x67, 0x39, 0xff, 0xa3, 0x68, 0x39, 0xff, 0xa4, 0x68, 0x3a, 0xff, 0xa4, 0x69, 0x3a, 0xff, 0xa5, 0x6a, 0x3a, 0xff, 0xa9, 0x6f, 0x3d, 0xff, 0xae, 0x72, 0x3f, 0xff, 0xaf, 0x75, 0x40, 0xff, 0xb1, 0x77, 0x42, 0xff, 0xad, 0x74, 0x3e, 0xff, 0xaf, 0x75, 0x3e, 0xff, 0xaf, 0x75, 0x3f, 0xff, 0xb0, 0x76, 0x3f, 0xff, 0xb0, 0x76, 0x3e, 0xff, 0xb0, 0x77, 0x3f, 0xff, 0xb0, 0x78, 0x3e, 0xff, 0xb1, 0x78, 0x40, 0xff, 0xb2, 0x78, 0x3f, 0xff, 0xb2, 0x79, 0x40, 0xff, 0xaf, 0x74, 0x3e, 0xff, 0xaf, 0x75, 0x3e, 0xff, 0xb1, 0x75, 0x3f, 0xff, 0xb1, 0x76, 0x3f, 0xff, 0xb2, 0x76, 0x40, 0xff, + 0xb1, 0x76, 0x3f, 0xff, 0xb2, 0x77, 0x3f, 0xff, 0xb3, 0x78, 0x41, 0xff, 0xb4, 0x7a, 0x42, 0xff, 0xb4, 0x7a, 0x42, 0xff, 0xb5, 0x7b, 0x43, 0xff, 0xb6, 0x7c, 0x44, 0xff, 0xb8, 0x7d, 0x45, 0xff, 0xba, 0x80, 0x47, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbd, 0x82, 0x4a, 0xff, 0xbf, 0x85, 0x4e, 0xff, 0xbf, 0x86, 0x4f, 0xff, 0xc1, 0x85, 0x4f, 0xff, 0xbe, 0x83, 0x4e, 0xff, 0xbb, 0x81, 0x4d, 0xff, 0xb8, 0x80, 0x4e, 0xff, 0xa9, 0x6f, 0x3c, 0xff, 0xab, 0x70, 0x3e, 0xff, 0xb4, 0x79, 0x46, 0xff, 0xbb, 0x80, 0x4c, 0xff, 0xb8, 0x7d, 0x4a, 0xff, 0xb8, 0x7c, 0x49, 0xff, 0xb8, 0x7c, 0x49, 0xff, 0xb7, 0x7b, 0x48, 0xff, 0xb6, 0x7a, 0x46, 0xff, 0xb6, 0x7a, 0x46, 0xff, 0xb6, 0x7a, 0x46, 0xff, 0xb6, 0x7a, 0x46, 0xff, 0xb6, 0x7a, 0x46, 0xff, 0xb6, 0x7a, 0x47, 0xff, 0xb6, 0x7a, 0x46, 0xff, 0xb6, 0x7b, 0x47, 0xff, 0xb8, 0x7b, 0x48, 0xff, 0xb9, 0x7c, 0x4a, 0xff, 0xc3, 0x86, 0x4e, 0xff, 0xc4, 0x86, 0x4e, 0xff, 0xc5, 0x87, 0x4f, 0xff, 0xca, 0x8b, 0x53, 0xff, 0xd0, 0x8e, 0x56, 0xff, 0xd1, 0x91, 0x58, 0xff, 0xd2, 0x95, 0x5a, 0xff, 0xd2, 0x9f, 0x61, 0xff, 0xd3, 0xa8, 0x65, 0xff, 0xd0, 0xae, 0x69, 0xff, 0xcd, 0xb0, 0x6d, 0xff, 0xcf, 0xb1, 0x72, 0xff, 0xcf, 0xb0, 0x77, 0xff, 0xd1, 0xb1, 0x7e, 0xff, 0xd2, 0xb1, 0x84, 0xff, 0xd3, 0xb1, 0x89, 0xff, 0xd3, 0xb2, 0x85, 0xff, 0xd1, 0xb1, 0x81, 0xff, 0xd1, 0xb2, 0x82, 0xff, 0xd2, 0xb1, 0x82, 0xff, 0xd2, 0xb1, 0x84, 0xff, 0xc7, 0xa3, 0x74, 0xff, 0xb5, 0x87, 0x5c, 0xff, 0xa5, 0x70, 0x44, 0xff, 0xa6, 0x6e, 0x41, 0xff, 0xa9, 0x72, 0x44, 0xff, 0xaa, 0x72, 0x44, 0xff, 0xab, 0x73, 0x43, 0xff, 0xad, 0x73, 0x43, 0xff, 0xae, 0x74, 0x43, 0xff, 0xae, 0x74, 0x43, 0xff, 0xae, 0x74, 0x42, 0xff, 0xaf, 0x74, 0x42, 0xff, 0xaf, 0x73, 0x42, 0xff, 0xaf, 0x74, 0x42, 0xff, 0xb0, 0x74, 0x43, 0xff, 0xb0, 0x75, 0x43, 0xff, 0xb1, 0x76, 0x43, 0xff, 0xb1, 0x76, 0x44, 0xff, 0xb2, 0x77, 0x44, 0xff, 0xb3, 0x78, 0x45, 0xff, 0xb5, 0x79, 0x46, 0xff, 0xb6, 0x7a, 0x46, 0xff, 0xb7, 0x7b, 0x48, 0xff, 0xb9, 0x7d, 0x49, 0xff, 0xba, 0x7f, 0x49, 0xff, 0xbc, 0x81, 0x4b, 0xff, 0xc0, 0x83, 0x4d, 0xff, 0xc4, 0x86, 0x4e, 0xff, 0xc7, 0x86, 0x4f, 0xff, 0xc8, 0x87, 0x4f, 0xff, 0xca, 0x87, 0x4f, 0xff, 0xcc, 0x88, 0x4f, 0xff, 0xcd, 0x88, 0x4f, 0xff, 0xcb, 0x87, 0x4e, 0xff, 0xc8, 0x86, 0x4e, 0xff, 0xc8, 0x86, 0x4e, 0xff, 0xc0, 0x81, 0x47, 0xff, 0xb6, 0x7b, 0x41, 0xff, 0xb4, 0x79, 0x40, 0xff, 0xb6, 0x7a, 0x43, 0xff, 0xb8, 0x7e, 0x4a, 0xff, 0xb9, 0x80, 0x4e, 0xff, 0xb8, 0x80, 0x4c, 0xff, 0xb8, 0x7e, 0x4a, 0xff, 0xb7, 0x7c, 0x48, 0xff, 0xb5, 0x7a, 0x46, 0xff, 0xb5, 0x7a, 0x46, 0xff, 0xb2, 0x77, 0x44, 0xff, 0xae, 0x73, 0x40, 0xff, 0xac, 0x72, 0x3f, 0xff, 0xac, 0x72, 0x3f, 0xff, 0xab, 0x71, 0x3e, 0xff, 0xaa, 0x70, 0x3c, 0xff, 0xaa, 0x6e, 0x3c, 0xff, 0xa8, 0x6c, 0x3c, 0xff, 0xa8, 0x6c, 0x3b, 0xff, 0xa8, 0x6d, 0x3b, 0xff, 0xa7, 0x6c, 0x3a, 0xff, 0xa7, 0x6c, 0x3a, 0xff, 0xa6, 0x6c, 0x3a, 0xff, 0xa5, 0x6a, 0x39, 0xff, 0xa3, 0x69, 0x39, 0xff, 0xa4, 0x69, 0x39, 0xff, 0xa4, 0x69, 0x39, 0xff, 0xa2, 0x68, 0x38, 0xff, 0xa3, 0x69, 0x38, 0xff, 0xa4, 0x69, 0x38, 0xff, 0xa3, 0x68, 0x39, 0xff, 0xa3, 0x68, 0x39, 0xff, 0xa2, 0x68, 0x38, 0xff, 0xa2, 0x69, 0x38, 0xff, 0xa3, 0x69, 0x38, 0xff, 0xa3, 0x68, 0x39, 0xff, 0xa3, 0x69, 0x38, 0xff, 0xa3, 0x6a, 0x38, 0xff, 0xa3, 0x69, 0x38, 0xff, 0xa3, 0x69, 0x38, 0xff, 0xa6, 0x6c, 0x3c, 0xff, 0xac, 0x71, 0x40, 0xff, 0xab, 0x70, 0x3f, 0xff, 0xa9, 0x6e, 0x3d, 0xff, 0xa8, 0x6d, 0x3b, 0xff, 0xa7, 0x6b, 0x3a, 0xff, 0xa7, 0x6b, 0x3a, 0xff, 0xa6, 0x6a, 0x3a, 0xff, 0xa5, 0x69, 0x39, 0xff, 0xa4, 0x68, 0x39, 0xff, 0xa4, 0x68, 0x39, 0xff, 0xa1, 0x65, 0x38, 0xff, 0x9f, 0x63, 0x37, 0xff, 0x9d, 0x62, 0x36, 0xff, 0x9b, 0x60, 0x34, 0xff, 0x9a, 0x5f, 0x33, 0xff, 0x96, 0x5c, 0x30, 0xff, 0xa3, 0x69, 0x3b, 0xff, 0xa9, 0x6d, 0x3f, 0xff, 0xa5, 0x69, 0x3c, 0xff, 0xa4, 0x68, 0x3a, 0xff, 0xa9, 0x6e, 0x3f, 0xff, 0xaf, 0x73, 0x43, 0xff, 0xb0, 0x75, 0x43, 0xff, 0xaf, 0x73, 0x42, 0xff, 0xad, 0x71, 0x40, 0xff, 0xab, 0x70, 0x3f, 0xff, 0xaa, 0x6e, 0x3e, 0xff, 0xa9, 0x6d, 0x3d, 0xff, 0xa8, 0x6c, 0x3d, 0xff, 0xa7, 0x6a, 0x3c, 0xff, 0xa6, 0x6a, 0x3b, 0xff, 0xa7, 0x6b, 0x3c, 0xff, 0xa9, 0x6d, 0x3e, 0xff, 0xa9, 0x6d, 0x3d, 0xff, 0xa8, 0x6c, 0x3d, 0xff, 0xa7, 0x6a, 0x3c, 0xff, 0xa6, 0x6a, 0x3a, 0xff, 0xa6, 0x6a, 0x3a, 0xff, 0xa5, 0x69, 0x3a, 0xff, 0xa6, 0x69, 0x3a, 0xff, 0xa5, 0x68, 0x3a, 0xff, 0xa3, 0x68, 0x3a, 0xff, 0xa3, 0x66, 0x3a, 0xff, 0xa1, 0x66, 0x39, 0xff, 0xa1, 0x65, 0x38, 0xff, 0xa0, 0x65, 0x38, 0xff, 0xa0, 0x64, 0x38, 0xff, 0x9e, 0x63, 0x37, 0xff, 0x9e, 0x62, 0x37, 0xff, 0x9e, 0x62, 0x37, 0xff, 0x9e, 0x63, 0x37, 0xff, 0xa0, 0x63, 0x38, 0xff, 0xa1, 0x65, 0x38, 0xff, 0xa1, 0x66, 0x38, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa2, 0x66, 0x38, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa2, 0x66, 0x38, 0xff, 0xa2, 0x65, 0x38, 0xff, 0xa3, 0x66, 0x39, 0xff, 0xa3, 0x66, 0x39, 0xff, 0xa4, 0x67, 0x39, 0xff, 0xa4, 0x67, 0x39, 0xff, 0xa5, 0x68, 0x3a, 0xff, 0xa4, 0x67, 0x39, 0xff, 0xa1, 0x65, 0x38, 0xff, 0xa1, 0x65, 0x38, 0xff, 0xa1, 0x66, 0x38, 0xff, 0xa1, 0x66, 0x39, 0xff, 0xa1, 0x66, 0x39, 0xff, 0xa2, 0x66, 0x39, 0xff, 0xa2, 0x67, 0x39, 0xff, 0xa2, 0x66, 0x39, 0xff, 0xa3, 0x66, 0x39, 0xff, 0xa3, 0x66, 0x3a, 0xff, 0xa4, 0x67, 0x3a, 0xff, 0xa4, 0x68, 0x3a, 0xff, 0xa4, 0x68, 0x3a, 0xff, 0xa6, 0x6a, 0x3a, 0xff, 0xa8, 0x6d, 0x3c, 0xff, 0xab, 0x6f, 0x3d, 0xff, 0xac, 0x71, 0x3e, 0xff, 0xad, 0x72, 0x3e, 0xff, 0xaf, 0x74, 0x3f, 0xff, 0xaa, 0x70, 0x3b, 0xff, 0xac, 0x72, 0x3c, 0xff, 0xad, 0x74, 0x3d, 0xff, 0xae, 0x73, 0x3d, 0xff, 0xaf, 0x74, 0x3e, 0xff, 0xae, 0x75, 0x3d, 0xff, 0xaf, 0x74, 0x3e, 0xff, 0xaf, 0x75, 0x3d, 0xff, 0xb0, 0x76, 0x3e, 0xff, 0xb0, 0x76, 0x3e, 0xff, 0xb0, 0x76, 0x3f, 0xff, 0xae, 0x73, 0x3e, 0xff, 0xaf, 0x74, 0x3e, 0xff, 0xaf, 0x75, 0x3f, 0xff, 0xb1, 0x76, 0x3f, 0xff, + 0xb0, 0x74, 0x3f, 0xff, 0xb0, 0x74, 0x3f, 0xff, 0xb1, 0x77, 0x41, 0xff, 0xb2, 0x78, 0x40, 0xff, 0xb3, 0x79, 0x42, 0xff, 0xb5, 0x79, 0x43, 0xff, 0xb5, 0x7b, 0x43, 0xff, 0xb6, 0x7b, 0x45, 0xff, 0xb9, 0x7f, 0x47, 0xff, 0xb9, 0x7e, 0x46, 0xff, 0xba, 0x80, 0x49, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbd, 0x84, 0x4c, 0xff, 0xbf, 0x85, 0x50, 0xff, 0xb8, 0x7d, 0x49, 0xff, 0xb5, 0x7a, 0x49, 0xff, 0xb8, 0x7d, 0x4a, 0xff, 0xb8, 0x80, 0x4d, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xa9, 0x6e, 0x3c, 0xff, 0xa9, 0x6f, 0x3c, 0xff, 0xb3, 0x79, 0x45, 0xff, 0xbb, 0x80, 0x4c, 0xff, 0xb8, 0x7d, 0x4a, 0xff, 0xb8, 0x7c, 0x49, 0xff, 0xb8, 0x7c, 0x49, 0xff, 0xb7, 0x7c, 0x49, 0xff, 0xb7, 0x7b, 0x47, 0xff, 0xb7, 0x7b, 0x47, 0xff, 0xb6, 0x7b, 0x47, 0xff, 0xb6, 0x7b, 0x47, 0xff, 0xb6, 0x7a, 0x46, 0xff, 0xb7, 0x7a, 0x46, 0xff, 0xb7, 0x7b, 0x47, 0xff, 0xb7, 0x7c, 0x49, 0xff, 0xb8, 0x7c, 0x49, 0xff, 0xc5, 0x88, 0x50, 0xff, 0xc5, 0x86, 0x4f, 0xff, 0xc8, 0x8a, 0x51, 0xff, 0xcc, 0x8d, 0x54, 0xff, 0xd1, 0x8e, 0x56, 0xff, 0xd2, 0x92, 0x59, 0xff, 0xd3, 0x98, 0x5d, 0xff, 0xd4, 0xa1, 0x63, 0xff, 0xd2, 0xac, 0x67, 0xff, 0xd0, 0xb0, 0x6c, 0xff, 0xce, 0xb1, 0x70, 0xff, 0xcf, 0xb2, 0x75, 0xff, 0xd0, 0xb1, 0x7b, 0xff, 0xd2, 0xb2, 0x83, 0xff, 0xd3, 0xb1, 0x8d, 0xff, 0xd4, 0xb3, 0x92, 0xff, 0xd4, 0xb3, 0x91, 0xff, 0xd4, 0xb2, 0x8f, 0xff, 0xd5, 0xb4, 0x92, 0xff, 0xd0, 0xad, 0x8b, 0xff, 0xb6, 0x89, 0x63, 0xff, 0xa8, 0x74, 0x4b, 0xff, 0xa4, 0x6c, 0x43, 0xff, 0xa7, 0x70, 0x45, 0xff, 0xa8, 0x73, 0x45, 0xff, 0xa9, 0x74, 0x46, 0xff, 0xaa, 0x74, 0x46, 0xff, 0xac, 0x75, 0x45, 0xff, 0xad, 0x75, 0x45, 0xff, 0xaf, 0x76, 0x44, 0xff, 0xb0, 0x76, 0x45, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb1, 0x76, 0x44, 0xff, 0xb0, 0x75, 0x43, 0xff, 0xb0, 0x74, 0x43, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xb1, 0x76, 0x43, 0xff, 0xb2, 0x77, 0x44, 0xff, 0xb3, 0x78, 0x44, 0xff, 0xb3, 0x79, 0x45, 0xff, 0xb4, 0x79, 0x46, 0xff, 0xb4, 0x7a, 0x46, 0xff, 0xb6, 0x7b, 0x47, 0xff, 0xb7, 0x7c, 0x48, 0xff, 0xb8, 0x7d, 0x49, 0xff, 0xba, 0x7f, 0x49, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xc0, 0x83, 0x4c, 0xff, 0xc5, 0x86, 0x4e, 0xff, 0xc8, 0x88, 0x50, 0xff, 0xca, 0x89, 0x52, 0xff, 0xcc, 0x89, 0x51, 0xff, 0xcb, 0x88, 0x50, 0xff, 0xce, 0x88, 0x4f, 0xff, 0xd0, 0x89, 0x50, 0xff, 0xcd, 0x88, 0x4f, 0xff, 0xcd, 0x88, 0x4e, 0xff, 0xd1, 0x89, 0x50, 0xff, 0xcc, 0x87, 0x4f, 0xff, 0xbf, 0x80, 0x48, 0xff, 0xb5, 0x7a, 0x42, 0xff, 0xb9, 0x7f, 0x4a, 0xff, 0xbb, 0x81, 0x4f, 0xff, 0xba, 0x81, 0x4d, 0xff, 0xb9, 0x7f, 0x4b, 0xff, 0xb9, 0x7d, 0x49, 0xff, 0xb8, 0x7c, 0x49, 0xff, 0xb5, 0x7a, 0x47, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xae, 0x74, 0x42, 0xff, 0xae, 0x74, 0x40, 0xff, 0xac, 0x72, 0x3e, 0xff, 0xac, 0x71, 0x3d, 0xff, 0xab, 0x71, 0x3d, 0xff, 0xaa, 0x70, 0x3d, 0xff, 0xaa, 0x6e, 0x3b, 0xff, 0xa8, 0x6e, 0x3b, 0xff, 0xa8, 0x6e, 0x3b, 0xff, 0xa8, 0x6c, 0x3b, 0xff, 0xa7, 0x6c, 0x3b, 0xff, 0xa6, 0x6c, 0x3a, 0xff, 0xa4, 0x6a, 0x38, 0xff, 0xa3, 0x68, 0x38, 0xff, 0xa3, 0x68, 0x39, 0xff, 0xa3, 0x68, 0x39, 0xff, 0xa4, 0x69, 0x39, 0xff, 0xa4, 0x68, 0x37, 0xff, 0xa3, 0x69, 0x37, 0xff, 0xa2, 0x69, 0x38, 0xff, 0xa3, 0x68, 0x38, 0xff, 0xa3, 0x68, 0x38, 0xff, 0xa2, 0x67, 0x38, 0xff, 0xa2, 0x67, 0x38, 0xff, 0xa3, 0x69, 0x38, 0xff, 0xa3, 0x69, 0x38, 0xff, 0xa3, 0x69, 0x38, 0xff, 0xa3, 0x69, 0x39, 0xff, 0xa2, 0x68, 0x39, 0xff, 0xa8, 0x6e, 0x3c, 0xff, 0xad, 0x73, 0x41, 0xff, 0xad, 0x72, 0x40, 0xff, 0xab, 0x6f, 0x3e, 0xff, 0xa9, 0x6e, 0x3c, 0xff, 0xa8, 0x6c, 0x3b, 0xff, 0xa7, 0x6b, 0x3a, 0xff, 0xa6, 0x6b, 0x3a, 0xff, 0xa5, 0x6b, 0x3a, 0xff, 0xa4, 0x69, 0x39, 0xff, 0xa3, 0x67, 0x39, 0xff, 0x9f, 0x64, 0x38, 0xff, 0x9d, 0x62, 0x37, 0xff, 0x9c, 0x61, 0x35, 0xff, 0x9a, 0x5f, 0x33, 0xff, 0x99, 0x5f, 0x33, 0xff, 0x94, 0x5a, 0x2f, 0xff, 0xa5, 0x6a, 0x3c, 0xff, 0xaa, 0x6e, 0x3f, 0xff, 0xa6, 0x69, 0x3b, 0xff, 0xa4, 0x68, 0x3a, 0xff, 0xa2, 0x66, 0x39, 0xff, 0xa2, 0x66, 0x39, 0xff, 0xa9, 0x6e, 0x3f, 0xff, 0xaf, 0x74, 0x43, 0xff, 0xae, 0x72, 0x40, 0xff, 0xac, 0x70, 0x3f, 0xff, 0xab, 0x6f, 0x3f, 0xff, 0xaa, 0x6e, 0x3f, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xa8, 0x6d, 0x3c, 0xff, 0xa6, 0x6b, 0x3b, 0xff, 0xa6, 0x69, 0x3b, 0xff, 0xa7, 0x69, 0x3c, 0xff, 0xa9, 0x6d, 0x3e, 0xff, 0xa9, 0x6e, 0x3d, 0xff, 0xa8, 0x6c, 0x3d, 0xff, 0xa7, 0x6a, 0x3c, 0xff, 0xa6, 0x6a, 0x3a, 0xff, 0xa6, 0x6a, 0x3a, 0xff, 0xa5, 0x69, 0x3a, 0xff, 0xa5, 0x69, 0x3a, 0xff, 0xa4, 0x68, 0x3a, 0xff, 0xa3, 0x67, 0x3a, 0xff, 0xa2, 0x66, 0x39, 0xff, 0xa1, 0x65, 0x38, 0xff, 0xa0, 0x64, 0x38, 0xff, 0x9f, 0x63, 0x38, 0xff, 0x9e, 0x62, 0x37, 0xff, 0x9e, 0x62, 0x37, 0xff, 0x9e, 0x62, 0x36, 0xff, 0x9e, 0x62, 0x36, 0xff, 0x9f, 0x63, 0x37, 0xff, 0xa0, 0x64, 0x38, 0xff, 0x9f, 0x64, 0x38, 0xff, 0xa0, 0x65, 0x38, 0xff, 0xa1, 0x65, 0x38, 0xff, 0xa2, 0x65, 0x38, 0xff, 0xa2, 0x65, 0x38, 0xff, 0xa2, 0x65, 0x38, 0xff, 0xa2, 0x65, 0x38, 0xff, 0xa3, 0x65, 0x38, 0xff, 0xa3, 0x66, 0x39, 0xff, 0xa4, 0x67, 0x3a, 0xff, 0xa5, 0x68, 0x39, 0xff, 0xa4, 0x67, 0x39, 0xff, 0xa1, 0x64, 0x38, 0xff, 0xa1, 0x65, 0x38, 0xff, 0xa1, 0x65, 0x38, 0xff, 0xa1, 0x65, 0x39, 0xff, 0xa1, 0x66, 0x39, 0xff, 0xa2, 0x67, 0x39, 0xff, 0xa1, 0x66, 0x39, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa3, 0x66, 0x39, 0xff, 0xa3, 0x67, 0x39, 0xff, 0xa4, 0x67, 0x3a, 0xff, 0xa5, 0x69, 0x3a, 0xff, 0xa5, 0x69, 0x3a, 0xff, 0xa7, 0x6c, 0x3b, 0xff, 0xa9, 0x6d, 0x3b, 0xff, 0xa9, 0x6e, 0x3b, 0xff, 0xaa, 0x6f, 0x3d, 0xff, 0xac, 0x70, 0x3d, 0xff, 0xac, 0x71, 0x3d, 0xff, 0xa9, 0x6e, 0x3b, 0xff, 0xaa, 0x6f, 0x3b, 0xff, 0xaa, 0x70, 0x3b, 0xff, 0xac, 0x71, 0x3d, 0xff, 0xac, 0x72, 0x3c, 0xff, 0xac, 0x71, 0x3c, 0xff, 0xac, 0x72, 0x3c, 0xff, 0xad, 0x74, 0x3d, 0xff, 0xae, 0x74, 0x3d, 0xff, 0xae, 0x74, 0x3e, 0xff, 0xae, 0x75, 0x3e, 0xff, 0xae, 0x74, 0x3d, 0xff, 0xae, 0x73, 0x3d, 0xff, 0xaf, 0x74, 0x3e, 0xff, 0xb0, 0x74, 0x3f, 0xff, + 0xad, 0x73, 0x3e, 0xff, 0xaf, 0x76, 0x3f, 0xff, 0xb0, 0x77, 0x40, 0xff, 0xb2, 0x76, 0x40, 0xff, 0xb1, 0x78, 0x41, 0xff, 0xb2, 0x78, 0x42, 0xff, 0xb4, 0x7b, 0x43, 0xff, 0xb5, 0x79, 0x43, 0xff, 0xb8, 0x7c, 0x46, 0xff, 0xb8, 0x7c, 0x46, 0xff, 0xb9, 0x7e, 0x47, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb4, 0x7a, 0x46, 0xff, 0xb3, 0x79, 0x46, 0xff, 0xb3, 0x77, 0x46, 0xff, 0xb5, 0x79, 0x48, 0xff, 0xb7, 0x7e, 0x4b, 0xff, 0xa9, 0x6f, 0x3d, 0xff, 0xa8, 0x6e, 0x3c, 0xff, 0xa9, 0x6e, 0x3d, 0xff, 0xaa, 0x6f, 0x3c, 0xff, 0xb4, 0x79, 0x45, 0xff, 0xbc, 0x80, 0x4c, 0xff, 0xb9, 0x7e, 0x4a, 0xff, 0xb8, 0x7d, 0x49, 0xff, 0xb8, 0x7d, 0x49, 0xff, 0xb8, 0x7b, 0x49, 0xff, 0xb7, 0x7c, 0x49, 0xff, 0xb7, 0x7b, 0x49, 0xff, 0xb6, 0x7a, 0x47, 0xff, 0xb7, 0x7b, 0x47, 0xff, 0xb7, 0x7b, 0x47, 0xff, 0xb7, 0x7b, 0x48, 0xff, 0xb8, 0x7c, 0x49, 0xff, 0xb9, 0x7c, 0x49, 0xff, 0xc8, 0x88, 0x50, 0xff, 0xc8, 0x87, 0x4f, 0xff, 0xcc, 0x8a, 0x51, 0xff, 0xd3, 0x8e, 0x56, 0xff, 0xd4, 0x92, 0x58, 0xff, 0xd4, 0x95, 0x5a, 0xff, 0xd3, 0x99, 0x5f, 0xff, 0xd3, 0xa1, 0x63, 0xff, 0xd3, 0xad, 0x68, 0xff, 0xd0, 0xb5, 0x6e, 0xff, 0xcf, 0xb5, 0x72, 0xff, 0xcf, 0xb4, 0x78, 0xff, 0xd1, 0xb4, 0x80, 0xff, 0xd3, 0xb4, 0x89, 0xff, 0xd4, 0xb3, 0x91, 0xff, 0xd5, 0xb4, 0x94, 0xff, 0xd5, 0xb4, 0x94, 0xff, 0xd5, 0xb5, 0x95, 0xff, 0xcb, 0xa6, 0x85, 0xff, 0xa5, 0x71, 0x48, 0xff, 0xa5, 0x6d, 0x44, 0xff, 0xa6, 0x6f, 0x46, 0xff, 0xa5, 0x6f, 0x46, 0xff, 0xa7, 0x70, 0x47, 0xff, 0xa8, 0x71, 0x48, 0xff, 0xa9, 0x74, 0x46, 0xff, 0xab, 0x76, 0x48, 0xff, 0xac, 0x77, 0x47, 0xff, 0xaf, 0x77, 0x46, 0xff, 0xb0, 0x78, 0x47, 0xff, 0xb0, 0x78, 0x46, 0xff, 0xb1, 0x79, 0x46, 0xff, 0xb2, 0x78, 0x45, 0xff, 0xb2, 0x77, 0x44, 0xff, 0xb1, 0x76, 0x43, 0xff, 0xb1, 0x76, 0x43, 0xff, 0xb2, 0x76, 0x44, 0xff, 0xb3, 0x78, 0x44, 0xff, 0xb3, 0x79, 0x45, 0xff, 0xb4, 0x7a, 0x45, 0xff, 0xb5, 0x7b, 0x46, 0xff, 0xb6, 0x7c, 0x48, 0xff, 0xb7, 0x7d, 0x49, 0xff, 0xb8, 0x7e, 0x4a, 0xff, 0xb9, 0x7f, 0x4a, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xbd, 0x82, 0x4b, 0xff, 0xc0, 0x84, 0x4c, 0xff, 0xc4, 0x86, 0x4e, 0xff, 0xc8, 0x89, 0x50, 0xff, 0xcd, 0x8b, 0x53, 0xff, 0xcd, 0x8a, 0x52, 0xff, 0xce, 0x8a, 0x51, 0xff, 0xce, 0x88, 0x4f, 0xff, 0xd0, 0x89, 0x50, 0xff, 0xce, 0x8a, 0x50, 0xff, 0xca, 0x88, 0x4e, 0xff, 0xcd, 0x88, 0x4e, 0xff, 0xcf, 0x88, 0x50, 0xff, 0xd2, 0x8a, 0x52, 0xff, 0xc9, 0x87, 0x4e, 0xff, 0xba, 0x81, 0x4b, 0xff, 0xbc, 0x82, 0x50, 0xff, 0xbc, 0x82, 0x4f, 0xff, 0xbb, 0x81, 0x4d, 0xff, 0xbb, 0x7f, 0x4b, 0xff, 0xb8, 0x7b, 0x48, 0xff, 0xb2, 0x78, 0x44, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb0, 0x76, 0x41, 0xff, 0xae, 0x74, 0x41, 0xff, 0xae, 0x74, 0x3f, 0xff, 0xad, 0x72, 0x3f, 0xff, 0xab, 0x71, 0x3e, 0xff, 0xab, 0x71, 0x3c, 0xff, 0xab, 0x70, 0x3c, 0xff, 0xaa, 0x6f, 0x3c, 0xff, 0xa8, 0x6e, 0x3c, 0xff, 0xa9, 0x6e, 0x3b, 0xff, 0xa8, 0x6d, 0x3b, 0xff, 0xa6, 0x6b, 0x39, 0xff, 0xa4, 0x6a, 0x39, 0xff, 0xa4, 0x69, 0x38, 0xff, 0xa3, 0x69, 0x38, 0xff, 0xa3, 0x69, 0x38, 0xff, 0xa4, 0x68, 0x38, 0xff, 0xa4, 0x69, 0x38, 0xff, 0xa2, 0x69, 0x38, 0xff, 0xa2, 0x68, 0x38, 0xff, 0xa2, 0x68, 0x38, 0xff, 0xa2, 0x68, 0x38, 0xff, 0xa2, 0x68, 0x38, 0xff, 0xa2, 0x68, 0x38, 0xff, 0xa2, 0x68, 0x38, 0xff, 0xa3, 0x68, 0x38, 0xff, 0xa3, 0x69, 0x38, 0xff, 0xa3, 0x69, 0x39, 0xff, 0xa3, 0x69, 0x38, 0xff, 0xaa, 0x6f, 0x3e, 0xff, 0xb1, 0x74, 0x42, 0xff, 0xaf, 0x73, 0x40, 0xff, 0xac, 0x71, 0x3e, 0xff, 0xaa, 0x6f, 0x3d, 0xff, 0xa9, 0x6d, 0x3b, 0xff, 0xa9, 0x6d, 0x3c, 0xff, 0xa9, 0x6c, 0x3c, 0xff, 0xa7, 0x6c, 0x3b, 0xff, 0xa4, 0x68, 0x3a, 0xff, 0xa3, 0x66, 0x39, 0xff, 0x9f, 0x64, 0x38, 0xff, 0x9e, 0x62, 0x37, 0xff, 0x9c, 0x60, 0x36, 0xff, 0x9a, 0x5f, 0x34, 0xff, 0x98, 0x5d, 0x33, 0xff, 0x9c, 0x61, 0x36, 0xff, 0xa7, 0x6c, 0x3e, 0xff, 0xa8, 0x6c, 0x3e, 0xff, 0xa6, 0x6a, 0x3c, 0xff, 0xa5, 0x69, 0x3b, 0xff, 0xa3, 0x67, 0x3a, 0xff, 0xa1, 0x65, 0x39, 0xff, 0x9e, 0x63, 0x38, 0xff, 0x9f, 0x64, 0x38, 0xff, 0xa9, 0x6d, 0x3f, 0xff, 0xae, 0x71, 0x41, 0xff, 0xac, 0x70, 0x3f, 0xff, 0xab, 0x70, 0x3f, 0xff, 0xaa, 0x6e, 0x3e, 0xff, 0xa9, 0x6c, 0x3c, 0xff, 0xa8, 0x6a, 0x3c, 0xff, 0xa7, 0x6a, 0x3b, 0xff, 0xa6, 0x68, 0x3a, 0xff, 0xa6, 0x69, 0x3a, 0xff, 0xa9, 0x6d, 0x3e, 0xff, 0xa9, 0x6d, 0x3f, 0xff, 0xa8, 0x6b, 0x3e, 0xff, 0xa8, 0x6a, 0x3c, 0xff, 0xa6, 0x69, 0x3b, 0xff, 0xa6, 0x6a, 0x3a, 0xff, 0xa5, 0x69, 0x3a, 0xff, 0xa5, 0x68, 0x3a, 0xff, 0xa4, 0x68, 0x3a, 0xff, 0xa4, 0x67, 0x39, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa1, 0x64, 0x38, 0xff, 0xa0, 0x64, 0x38, 0xff, 0x9f, 0x62, 0x38, 0xff, 0x9f, 0x63, 0x37, 0xff, 0x9e, 0x62, 0x37, 0xff, 0x9e, 0x62, 0x36, 0xff, 0x9d, 0x61, 0x36, 0xff, 0x9e, 0x62, 0x36, 0xff, 0x9e, 0x62, 0x37, 0xff, 0x9e, 0x62, 0x38, 0xff, 0xa0, 0x63, 0x37, 0xff, 0xa0, 0x64, 0x38, 0xff, 0xa0, 0x63, 0x37, 0xff, 0xa0, 0x64, 0x38, 0xff, 0xa1, 0x64, 0x38, 0xff, 0xa2, 0x65, 0x38, 0xff, 0xa3, 0x66, 0x39, 0xff, 0xa3, 0x66, 0x39, 0xff, 0xa3, 0x67, 0x39, 0xff, 0xa4, 0x66, 0x3a, 0xff, 0xa1, 0x65, 0x39, 0xff, 0xa0, 0x64, 0x38, 0xff, 0xa1, 0x66, 0x38, 0xff, 0xa1, 0x66, 0x39, 0xff, 0xa1, 0x65, 0x39, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa2, 0x66, 0x39, 0xff, 0xa3, 0x66, 0x39, 0xff, 0xa2, 0x66, 0x39, 0xff, 0xa3, 0x67, 0x39, 0xff, 0xa4, 0x69, 0x39, 0xff, 0xa5, 0x6a, 0x3a, 0xff, 0xa7, 0x6b, 0x3a, 0xff, 0xa8, 0x6c, 0x3b, 0xff, 0xa8, 0x6c, 0x3b, 0xff, 0xa8, 0x6c, 0x3b, 0xff, 0xa9, 0x6d, 0x3c, 0xff, 0xaa, 0x6e, 0x3c, 0xff, 0xaa, 0x6e, 0x3c, 0xff, 0xa7, 0x6d, 0x39, 0xff, 0xa9, 0x6e, 0x3a, 0xff, 0xaa, 0x6e, 0x3b, 0xff, 0xaa, 0x6f, 0x3b, 0xff, 0xaa, 0x70, 0x3c, 0xff, 0xab, 0x71, 0x3c, 0xff, 0xaa, 0x70, 0x3c, 0xff, 0xac, 0x71, 0x3c, 0xff, 0xab, 0x72, 0x3d, 0xff, 0xac, 0x73, 0x3c, 0xff, 0xad, 0x72, 0x3d, 0xff, 0xae, 0x72, 0x3d, 0xff, 0xaf, 0x75, 0x3e, 0xff, 0xae, 0x73, 0x3d, 0xff, 0xae, 0x73, 0x3e, 0xff, + 0xae, 0x73, 0x3e, 0xff, 0xaf, 0x73, 0x3e, 0xff, 0xaf, 0x74, 0x3e, 0xff, 0xb0, 0x77, 0x41, 0xff, 0xb0, 0x75, 0x40, 0xff, 0xb2, 0x77, 0x41, 0xff, 0xb2, 0x78, 0x42, 0xff, 0xb3, 0x79, 0x43, 0xff, 0xb5, 0x7a, 0x44, 0xff, 0xb7, 0x7c, 0x45, 0xff, 0xb7, 0x7b, 0x46, 0xff, 0xb4, 0x79, 0x44, 0xff, 0xb1, 0x74, 0x43, 0xff, 0xb2, 0x77, 0x44, 0xff, 0xb1, 0x76, 0x44, 0xff, 0xb2, 0x76, 0x44, 0xff, 0xb3, 0x77, 0x45, 0xff, 0xb5, 0x7b, 0x49, 0xff, 0xab, 0x71, 0x40, 0xff, 0xa6, 0x6d, 0x3c, 0xff, 0xa8, 0x6e, 0x3c, 0xff, 0xa8, 0x6d, 0x3d, 0xff, 0xaa, 0x70, 0x3e, 0xff, 0xb6, 0x7b, 0x48, 0xff, 0xbc, 0x80, 0x4c, 0xff, 0xba, 0x7e, 0x4b, 0xff, 0xb9, 0x7d, 0x4b, 0xff, 0xb8, 0x7c, 0x49, 0xff, 0xb8, 0x7c, 0x49, 0xff, 0xb7, 0x7c, 0x49, 0xff, 0xb7, 0x7b, 0x49, 0xff, 0xb7, 0x7b, 0x47, 0xff, 0xb8, 0x7c, 0x49, 0xff, 0xb8, 0x7c, 0x49, 0xff, 0xb8, 0x7c, 0x49, 0xff, 0xba, 0x7c, 0x4a, 0xff, 0xc9, 0x89, 0x50, 0xff, 0xcb, 0x88, 0x50, 0xff, 0xcf, 0x8b, 0x53, 0xff, 0xd3, 0x8f, 0x53, 0xff, 0xd4, 0x93, 0x58, 0xff, 0xd3, 0x96, 0x5b, 0xff, 0xd3, 0x9c, 0x61, 0xff, 0xd4, 0xa4, 0x66, 0xff, 0xd5, 0xaf, 0x6a, 0xff, 0xd0, 0xb3, 0x6f, 0xff, 0xcf, 0xb4, 0x73, 0xff, 0xd0, 0xb4, 0x79, 0xff, 0xd1, 0xb4, 0x80, 0xff, 0xd3, 0xb4, 0x88, 0xff, 0xd5, 0xb4, 0x95, 0xff, 0xd5, 0xb6, 0x96, 0xff, 0xd2, 0xb1, 0x91, 0xff, 0xbc, 0x90, 0x6c, 0xff, 0xa3, 0x6b, 0x43, 0xff, 0xa5, 0x6c, 0x44, 0xff, 0xa6, 0x6f, 0x46, 0xff, 0xa6, 0x6f, 0x46, 0xff, 0xa6, 0x6f, 0x46, 0xff, 0xa7, 0x71, 0x47, 0xff, 0xaa, 0x72, 0x49, 0xff, 0xab, 0x75, 0x49, 0xff, 0xab, 0x77, 0x49, 0xff, 0xae, 0x79, 0x4a, 0xff, 0xb0, 0x7a, 0x4a, 0xff, 0xb1, 0x7a, 0x49, 0xff, 0xb2, 0x7b, 0x49, 0xff, 0xb3, 0x7b, 0x47, 0xff, 0xb3, 0x7a, 0x47, 0xff, 0xb4, 0x79, 0x46, 0xff, 0xb3, 0x78, 0x45, 0xff, 0xb3, 0x79, 0x44, 0xff, 0xb3, 0x79, 0x45, 0xff, 0xb3, 0x78, 0x44, 0xff, 0xb4, 0x7a, 0x45, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb7, 0x7d, 0x49, 0xff, 0xb9, 0x7d, 0x4a, 0xff, 0xba, 0x7e, 0x4b, 0xff, 0xba, 0x7f, 0x4b, 0xff, 0xbb, 0x80, 0x4b, 0xff, 0xbc, 0x81, 0x4c, 0xff, 0xbe, 0x82, 0x4c, 0xff, 0xbf, 0x83, 0x4d, 0xff, 0xc1, 0x85, 0x4d, 0xff, 0xc6, 0x87, 0x4f, 0xff, 0xcb, 0x88, 0x50, 0xff, 0xce, 0x89, 0x50, 0xff, 0xce, 0x8a, 0x51, 0xff, 0xcd, 0x89, 0x50, 0xff, 0xc8, 0x86, 0x4e, 0xff, 0xc5, 0x85, 0x4e, 0xff, 0xcd, 0x8a, 0x50, 0xff, 0xd0, 0x8a, 0x50, 0xff, 0xd1, 0x89, 0x50, 0xff, 0xd3, 0x8b, 0x52, 0xff, 0xd6, 0x8d, 0x54, 0xff, 0xd0, 0x8c, 0x55, 0xff, 0xc3, 0x87, 0x52, 0xff, 0xbd, 0x83, 0x4f, 0xff, 0xbc, 0x83, 0x4e, 0xff, 0xba, 0x80, 0x4b, 0xff, 0xb6, 0x7b, 0x46, 0xff, 0xb3, 0x79, 0x44, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb1, 0x76, 0x43, 0xff, 0xb1, 0x76, 0x41, 0xff, 0xaf, 0x75, 0x3f, 0xff, 0xad, 0x74, 0x3f, 0xff, 0xad, 0x73, 0x3d, 0xff, 0xac, 0x72, 0x3d, 0xff, 0xab, 0x71, 0x3d, 0xff, 0xab, 0x6f, 0x3c, 0xff, 0xab, 0x6f, 0x3c, 0xff, 0xaa, 0x6f, 0x3c, 0xff, 0xa7, 0x6c, 0x3a, 0xff, 0xa6, 0x6b, 0x39, 0xff, 0xa5, 0x6a, 0x39, 0xff, 0xa5, 0x6a, 0x38, 0xff, 0xa4, 0x69, 0x38, 0xff, 0xa4, 0x69, 0x38, 0xff, 0xa3, 0x69, 0x38, 0xff, 0xa3, 0x69, 0x38, 0xff, 0xa3, 0x69, 0x38, 0xff, 0xa2, 0x68, 0x38, 0xff, 0xa3, 0x68, 0x38, 0xff, 0xa3, 0x69, 0x38, 0xff, 0xa2, 0x69, 0x38, 0xff, 0xa2, 0x68, 0x38, 0xff, 0xa3, 0x68, 0x38, 0xff, 0xa2, 0x68, 0x38, 0xff, 0xa2, 0x68, 0x38, 0xff, 0xa3, 0x68, 0x38, 0xff, 0xa3, 0x68, 0x38, 0xff, 0xab, 0x71, 0x40, 0xff, 0xb2, 0x79, 0x45, 0xff, 0xb0, 0x76, 0x42, 0xff, 0xae, 0x72, 0x40, 0xff, 0xac, 0x70, 0x3e, 0xff, 0xaa, 0x6f, 0x3c, 0xff, 0xa9, 0x6e, 0x3c, 0xff, 0xa9, 0x6d, 0x3c, 0xff, 0xa8, 0x6c, 0x3b, 0xff, 0xa6, 0x6b, 0x3a, 0xff, 0xa3, 0x67, 0x39, 0xff, 0xa1, 0x65, 0x38, 0xff, 0x9f, 0x63, 0x37, 0xff, 0x9d, 0x61, 0x36, 0xff, 0x9c, 0x5f, 0x34, 0xff, 0x97, 0x5c, 0x30, 0xff, 0xa2, 0x67, 0x39, 0xff, 0xaa, 0x6f, 0x3f, 0xff, 0xa9, 0x6c, 0x3d, 0xff, 0xa7, 0x6a, 0x3c, 0xff, 0xa5, 0x68, 0x3b, 0xff, 0xa3, 0x66, 0x3a, 0xff, 0xa1, 0x65, 0x39, 0xff, 0xa0, 0x64, 0x38, 0xff, 0x9d, 0x61, 0x38, 0xff, 0x9b, 0x5e, 0x35, 0xff, 0xa0, 0x64, 0x38, 0xff, 0xa7, 0x6c, 0x3b, 0xff, 0xab, 0x6f, 0x3e, 0xff, 0xac, 0x70, 0x3f, 0xff, 0xab, 0x6f, 0x3e, 0xff, 0xa9, 0x6d, 0x3d, 0xff, 0xa7, 0x6b, 0x3b, 0xff, 0xa7, 0x6a, 0x3a, 0xff, 0xa5, 0x68, 0x3a, 0xff, 0xa6, 0x69, 0x3b, 0xff, 0xa9, 0x6c, 0x3d, 0xff, 0xa9, 0x6d, 0x3e, 0xff, 0xa7, 0x6c, 0x3d, 0xff, 0xa7, 0x6b, 0x3c, 0xff, 0xa5, 0x69, 0x3a, 0xff, 0xa5, 0x69, 0x3a, 0xff, 0xa5, 0x68, 0x3a, 0xff, 0xa4, 0x67, 0x39, 0xff, 0xa2, 0x66, 0x39, 0xff, 0xa2, 0x65, 0x38, 0xff, 0xa1, 0x65, 0x38, 0xff, 0xa1, 0x63, 0x38, 0xff, 0xa0, 0x63, 0x37, 0xff, 0x9f, 0x63, 0x38, 0xff, 0x9f, 0x62, 0x37, 0xff, 0x9e, 0x61, 0x36, 0xff, 0x9e, 0x61, 0x36, 0xff, 0x9e, 0x62, 0x36, 0xff, 0x9d, 0x60, 0x35, 0xff, 0x9d, 0x61, 0x36, 0xff, 0x9e, 0x61, 0x37, 0xff, 0x9f, 0x63, 0x37, 0xff, 0x9f, 0x63, 0x37, 0xff, 0x9f, 0x63, 0x38, 0xff, 0xa1, 0x64, 0x38, 0xff, 0xa1, 0x65, 0x38, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa2, 0x65, 0x38, 0xff, 0xa4, 0x66, 0x39, 0xff, 0xa5, 0x67, 0x3a, 0xff, 0xa1, 0x65, 0x38, 0xff, 0xa1, 0x65, 0x38, 0xff, 0xa1, 0x65, 0x38, 0xff, 0xa1, 0x65, 0x39, 0xff, 0xa1, 0x65, 0x39, 0xff, 0xa3, 0x66, 0x39, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa3, 0x67, 0x39, 0xff, 0xa3, 0x68, 0x3a, 0xff, 0xa4, 0x68, 0x39, 0xff, 0xa6, 0x6a, 0x3a, 0xff, 0xa7, 0x6b, 0x3a, 0xff, 0xa7, 0x6a, 0x3a, 0xff, 0xa7, 0x6a, 0x3a, 0xff, 0xa7, 0x6b, 0x3a, 0xff, 0xa8, 0x6b, 0x3b, 0xff, 0xa9, 0x6d, 0x3c, 0xff, 0xa8, 0x6c, 0x3a, 0xff, 0xa6, 0x6a, 0x39, 0xff, 0xa7, 0x6d, 0x3a, 0xff, 0xa8, 0x6d, 0x3a, 0xff, 0xa9, 0x6e, 0x3a, 0xff, 0xa9, 0x6e, 0x3a, 0xff, 0xa9, 0x6f, 0x3b, 0xff, 0xa9, 0x6e, 0x3b, 0xff, 0xaa, 0x6f, 0x3b, 0xff, 0xaa, 0x6f, 0x3b, 0xff, 0xaa, 0x6f, 0x3c, 0xff, 0xab, 0x71, 0x3c, 0xff, 0xac, 0x72, 0x3d, 0xff, 0xad, 0x73, 0x3c, 0xff, 0xaf, 0x73, 0x3f, 0xff, 0xae, 0x73, 0x3e, 0xff, + 0xad, 0x73, 0x3e, 0xff, 0xad, 0x73, 0x3f, 0xff, 0xae, 0x73, 0x3e, 0xff, 0xaf, 0x74, 0x40, 0xff, 0xb0, 0x74, 0x40, 0xff, 0xb1, 0x77, 0x41, 0xff, 0xb1, 0x76, 0x41, 0xff, 0xb3, 0x78, 0x42, 0xff, 0xb5, 0x7b, 0x44, 0xff, 0xb5, 0x79, 0x44, 0xff, 0xb1, 0x75, 0x42, 0xff, 0xae, 0x71, 0x40, 0xff, 0xaf, 0x73, 0x41, 0xff, 0xb0, 0x74, 0x42, 0xff, 0xb0, 0x73, 0x42, 0xff, 0xb1, 0x74, 0x43, 0xff, 0xb1, 0x75, 0x44, 0xff, 0xb3, 0x78, 0x46, 0xff, 0xae, 0x73, 0x43, 0xff, 0xa4, 0x6a, 0x3b, 0xff, 0xa6, 0x6b, 0x3c, 0xff, 0xa6, 0x6c, 0x3c, 0xff, 0xa8, 0x6c, 0x3d, 0xff, 0xa9, 0x6f, 0x3d, 0xff, 0xb3, 0x78, 0x45, 0xff, 0xbe, 0x83, 0x4f, 0xff, 0xbb, 0x7e, 0x4b, 0xff, 0xba, 0x7d, 0x4b, 0xff, 0xb9, 0x7e, 0x4b, 0xff, 0xb8, 0x7c, 0x4a, 0xff, 0xb8, 0x7d, 0x49, 0xff, 0xb8, 0x7b, 0x49, 0xff, 0xb8, 0x7c, 0x4a, 0xff, 0xb8, 0x7d, 0x49, 0xff, 0xb8, 0x7d, 0x4a, 0xff, 0xb9, 0x7d, 0x4a, 0xff, 0xcc, 0x8c, 0x52, 0xff, 0xcb, 0x8a, 0x50, 0xff, 0xcf, 0x8b, 0x53, 0xff, 0xcf, 0x8d, 0x54, 0xff, 0xd5, 0x95, 0x59, 0xff, 0xd4, 0x99, 0x5d, 0xff, 0xd4, 0xa1, 0x63, 0xff, 0xd3, 0xa5, 0x65, 0xff, 0xd4, 0xad, 0x6a, 0xff, 0xd2, 0xb4, 0x70, 0xff, 0xd0, 0xb4, 0x73, 0xff, 0xd0, 0xb4, 0x7a, 0xff, 0xd2, 0xb4, 0x80, 0xff, 0xd2, 0xb4, 0x84, 0xff, 0xd5, 0xb5, 0x90, 0xff, 0xd0, 0xaf, 0x8f, 0xff, 0xb2, 0x84, 0x5e, 0xff, 0xa3, 0x6c, 0x43, 0xff, 0xa6, 0x6f, 0x46, 0xff, 0xa6, 0x70, 0x46, 0xff, 0xa6, 0x6f, 0x47, 0xff, 0xa6, 0x70, 0x47, 0xff, 0xa6, 0x70, 0x47, 0xff, 0xa9, 0x71, 0x49, 0xff, 0xab, 0x73, 0x4a, 0xff, 0xac, 0x76, 0x4c, 0xff, 0xae, 0x79, 0x4c, 0xff, 0xb0, 0x7d, 0x4c, 0xff, 0xb1, 0x7e, 0x4d, 0xff, 0xb2, 0x7e, 0x4e, 0xff, 0xb4, 0x7e, 0x4d, 0xff, 0xb5, 0x7f, 0x4c, 0xff, 0xb6, 0x7e, 0x4a, 0xff, 0xb7, 0x7c, 0x49, 0xff, 0xb5, 0x7a, 0x47, 0xff, 0xb5, 0x79, 0x46, 0xff, 0xb5, 0x7a, 0x46, 0xff, 0xb4, 0x7a, 0x45, 0xff, 0xb5, 0x7b, 0x46, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb8, 0x7d, 0x49, 0xff, 0xb9, 0x7e, 0x4a, 0xff, 0xba, 0x7f, 0x4b, 0xff, 0xbb, 0x80, 0x4c, 0xff, 0xbc, 0x81, 0x4d, 0xff, 0xbd, 0x82, 0x4d, 0xff, 0xbe, 0x82, 0x4e, 0xff, 0xbe, 0x83, 0x4d, 0xff, 0xbf, 0x84, 0x4d, 0xff, 0xc3, 0x85, 0x4e, 0xff, 0xc4, 0x86, 0x4e, 0xff, 0xc8, 0x88, 0x4f, 0xff, 0xca, 0x88, 0x4e, 0xff, 0xc4, 0x84, 0x4c, 0xff, 0xc2, 0x82, 0x4c, 0xff, 0xc4, 0x85, 0x4d, 0xff, 0xca, 0x88, 0x4f, 0xff, 0xd1, 0x8a, 0x51, 0xff, 0xd2, 0x8a, 0x51, 0xff, 0xd4, 0x8b, 0x52, 0xff, 0xd5, 0x8c, 0x54, 0xff, 0xd5, 0x8e, 0x56, 0xff, 0xd3, 0x8f, 0x59, 0xff, 0xc8, 0x89, 0x53, 0xff, 0xbb, 0x82, 0x4c, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb5, 0x7b, 0x44, 0xff, 0xb3, 0x79, 0x44, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb1, 0x77, 0x42, 0xff, 0xaf, 0x76, 0x41, 0xff, 0xaf, 0x74, 0x40, 0xff, 0xaf, 0x74, 0x3f, 0xff, 0xae, 0x73, 0x3e, 0xff, 0xac, 0x72, 0x3c, 0xff, 0xac, 0x71, 0x3c, 0xff, 0xab, 0x70, 0x3c, 0xff, 0xa9, 0x6f, 0x3b, 0xff, 0xa8, 0x6e, 0x39, 0xff, 0xa8, 0x6c, 0x39, 0xff, 0xa6, 0x6b, 0x39, 0xff, 0xa5, 0x6b, 0x39, 0xff, 0xa4, 0x69, 0x38, 0xff, 0xa4, 0x6a, 0x38, 0xff, 0xa4, 0x6a, 0x38, 0xff, 0xa3, 0x69, 0x38, 0xff, 0xa3, 0x69, 0x38, 0xff, 0xa3, 0x68, 0x38, 0xff, 0xa3, 0x68, 0x37, 0xff, 0xa2, 0x68, 0x37, 0xff, 0xa2, 0x68, 0x38, 0xff, 0xa2, 0x68, 0x37, 0xff, 0xa3, 0x67, 0x38, 0xff, 0xa2, 0x68, 0x38, 0xff, 0xa2, 0x68, 0x38, 0xff, 0xa2, 0x68, 0x38, 0xff, 0xa2, 0x68, 0x38, 0xff, 0xac, 0x73, 0x41, 0xff, 0xb3, 0x7a, 0x46, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xaf, 0x74, 0x42, 0xff, 0xae, 0x72, 0x3f, 0xff, 0xac, 0x71, 0x3e, 0xff, 0xab, 0x6f, 0x3d, 0xff, 0xaa, 0x6f, 0x3d, 0xff, 0xa9, 0x6e, 0x3c, 0xff, 0xa8, 0x6b, 0x3b, 0xff, 0xa4, 0x67, 0x3a, 0xff, 0xa1, 0x65, 0x38, 0xff, 0xa0, 0x64, 0x37, 0xff, 0x9e, 0x62, 0x36, 0xff, 0x9c, 0x60, 0x36, 0xff, 0x99, 0x5c, 0x31, 0xff, 0xa6, 0x6b, 0x3d, 0xff, 0xab, 0x70, 0x41, 0xff, 0xa8, 0x6c, 0x3e, 0xff, 0xa6, 0x6a, 0x3c, 0xff, 0xa4, 0x68, 0x3a, 0xff, 0xa2, 0x66, 0x3a, 0xff, 0xa1, 0x65, 0x39, 0xff, 0x9f, 0x64, 0x38, 0xff, 0x9e, 0x62, 0x37, 0xff, 0x9d, 0x61, 0x37, 0xff, 0x9b, 0x60, 0x35, 0xff, 0x99, 0x5f, 0x34, 0xff, 0x9d, 0x62, 0x37, 0xff, 0xa2, 0x66, 0x39, 0xff, 0xa6, 0x6a, 0x3b, 0xff, 0xac, 0x70, 0x3f, 0xff, 0xab, 0x6e, 0x3e, 0xff, 0xa8, 0x6b, 0x3c, 0xff, 0xa7, 0x6a, 0x3b, 0xff, 0xa7, 0x6a, 0x3b, 0xff, 0xa6, 0x69, 0x3a, 0xff, 0xa7, 0x6b, 0x3b, 0xff, 0xaa, 0x6e, 0x3d, 0xff, 0xa9, 0x6d, 0x3c, 0xff, 0xa7, 0x6b, 0x3c, 0xff, 0xa7, 0x6a, 0x3b, 0xff, 0xa6, 0x69, 0x3a, 0xff, 0xa4, 0x68, 0x3a, 0xff, 0xa3, 0x67, 0x3a, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa2, 0x65, 0x38, 0xff, 0xa0, 0x64, 0x38, 0xff, 0xa0, 0x63, 0x37, 0xff, 0x9f, 0x62, 0x38, 0xff, 0x9e, 0x62, 0x38, 0xff, 0x9e, 0x61, 0x37, 0xff, 0x9d, 0x61, 0x37, 0xff, 0x9d, 0x61, 0x36, 0xff, 0x9e, 0x60, 0x37, 0xff, 0x9d, 0x61, 0x37, 0xff, 0x9e, 0x61, 0x37, 0xff, 0xa0, 0x63, 0x38, 0xff, 0xa0, 0x64, 0x38, 0xff, 0xa1, 0x64, 0x38, 0xff, 0xa1, 0x65, 0x38, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa3, 0x66, 0x39, 0xff, 0xa4, 0x67, 0x39, 0xff, 0xa2, 0x65, 0x38, 0xff, 0xa1, 0x64, 0x38, 0xff, 0xa1, 0x65, 0x39, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa0, 0x64, 0x39, 0xff, 0xa1, 0x65, 0x38, 0xff, 0xa0, 0x65, 0x38, 0xff, 0xa1, 0x66, 0x38, 0xff, 0xa2, 0x66, 0x38, 0xff, 0xa3, 0x67, 0x39, 0xff, 0xa4, 0x68, 0x39, 0xff, 0xa5, 0x69, 0x3a, 0xff, 0xa5, 0x69, 0x3a, 0xff, 0xa5, 0x69, 0x3a, 0xff, 0xa6, 0x69, 0x3a, 0xff, 0xa6, 0x6a, 0x3a, 0xff, 0xa7, 0x6a, 0x3a, 0xff, 0xa8, 0x6b, 0x3b, 0xff, 0xa6, 0x6a, 0x39, 0xff, 0xa4, 0x6a, 0x38, 0xff, 0xa5, 0x6a, 0x39, 0xff, 0xa6, 0x6b, 0x39, 0xff, 0xa7, 0x6c, 0x3a, 0xff, 0xa8, 0x6c, 0x3a, 0xff, 0xa8, 0x6d, 0x3a, 0xff, 0xa8, 0x6d, 0x3a, 0xff, 0xa8, 0x6e, 0x3a, 0xff, 0xa8, 0x6e, 0x3b, 0xff, 0xa9, 0x6f, 0x3b, 0xff, 0xaa, 0x6f, 0x3c, 0xff, 0xab, 0x70, 0x3c, 0xff, 0xab, 0x71, 0x3d, 0xff, 0xad, 0x73, 0x3f, 0xff, 0xae, 0x73, 0x40, 0xff, + 0xad, 0x73, 0x3e, 0xff, 0xad, 0x72, 0x3e, 0xff, 0xad, 0x72, 0x3e, 0xff, 0xae, 0x73, 0x40, 0xff, 0xaf, 0x74, 0x41, 0xff, 0xaf, 0x74, 0x40, 0xff, 0xb0, 0x74, 0x41, 0xff, 0xb2, 0x78, 0x42, 0xff, 0xb2, 0x76, 0x43, 0xff, 0xac, 0x70, 0x3e, 0xff, 0xac, 0x70, 0x3f, 0xff, 0xad, 0x71, 0x3f, 0xff, 0xae, 0x71, 0x40, 0xff, 0xae, 0x72, 0x41, 0xff, 0xaf, 0x73, 0x41, 0xff, 0xaf, 0x73, 0x42, 0xff, 0xb0, 0x74, 0x43, 0xff, 0xb1, 0x75, 0x45, 0xff, 0xb1, 0x75, 0x45, 0xff, 0xa2, 0x68, 0x39, 0xff, 0xa4, 0x6a, 0x3c, 0xff, 0xa4, 0x6b, 0x3c, 0xff, 0xa6, 0x6c, 0x3c, 0xff, 0xa7, 0x6c, 0x3c, 0xff, 0xa8, 0x6d, 0x3d, 0xff, 0xb2, 0x76, 0x45, 0xff, 0xc0, 0x84, 0x50, 0xff, 0xbc, 0x80, 0x4d, 0xff, 0xbb, 0x7f, 0x4d, 0xff, 0xba, 0x7f, 0x4b, 0xff, 0xb9, 0x7d, 0x4a, 0xff, 0xb9, 0x7c, 0x49, 0xff, 0xb9, 0x7d, 0x4a, 0xff, 0xb9, 0x7c, 0x4b, 0xff, 0xb9, 0x7d, 0x4a, 0xff, 0xba, 0x7e, 0x4a, 0xff, 0xce, 0x8c, 0x53, 0xff, 0xcd, 0x8c, 0x52, 0xff, 0xcf, 0x8b, 0x53, 0xff, 0xd2, 0x8e, 0x55, 0xff, 0xd4, 0x92, 0x57, 0xff, 0xd5, 0x9b, 0x5e, 0xff, 0xd6, 0xa3, 0x63, 0xff, 0xd6, 0xa3, 0x66, 0xff, 0xd4, 0xa6, 0x69, 0xff, 0xd4, 0xad, 0x6d, 0xff, 0xd0, 0xb5, 0x73, 0xff, 0xd0, 0xb5, 0x78, 0xff, 0xd1, 0xb5, 0x7c, 0xff, 0xd4, 0xb6, 0x83, 0xff, 0xcf, 0xad, 0x89, 0xff, 0xa9, 0x76, 0x4f, 0xff, 0xa4, 0x6b, 0x43, 0xff, 0xa7, 0x6f, 0x46, 0xff, 0xa7, 0x70, 0x46, 0xff, 0xa7, 0x70, 0x47, 0xff, 0xa7, 0x70, 0x47, 0xff, 0xa7, 0x70, 0x47, 0xff, 0xa8, 0x71, 0x49, 0xff, 0xa9, 0x71, 0x49, 0xff, 0xaa, 0x74, 0x4c, 0xff, 0xac, 0x79, 0x4e, 0xff, 0xad, 0x7b, 0x4e, 0xff, 0xb0, 0x7c, 0x50, 0xff, 0xb1, 0x7f, 0x4f, 0xff, 0xb1, 0x80, 0x50, 0xff, 0xb3, 0x80, 0x50, 0xff, 0xb4, 0x80, 0x4f, 0xff, 0xb6, 0x80, 0x4d, 0xff, 0xb7, 0x80, 0x4b, 0xff, 0xb8, 0x7d, 0x4a, 0xff, 0xb8, 0x7c, 0x48, 0xff, 0xb6, 0x7c, 0x47, 0xff, 0xb5, 0x7b, 0x46, 0xff, 0xb6, 0x7b, 0x47, 0xff, 0xb7, 0x7c, 0x47, 0xff, 0xb9, 0x7d, 0x4a, 0xff, 0xba, 0x7f, 0x4c, 0xff, 0xbb, 0x80, 0x4d, 0xff, 0xbc, 0x80, 0x4c, 0xff, 0xbd, 0x82, 0x4d, 0xff, 0xbd, 0x82, 0x4d, 0xff, 0xbc, 0x80, 0x4c, 0xff, 0xbd, 0x81, 0x4d, 0xff, 0xbd, 0x82, 0x4d, 0xff, 0xbc, 0x82, 0x4b, 0xff, 0xbf, 0x84, 0x4c, 0xff, 0xc3, 0x85, 0x4d, 0xff, 0xc2, 0x84, 0x4c, 0xff, 0xc0, 0x82, 0x4b, 0xff, 0xc2, 0x83, 0x4c, 0xff, 0xc4, 0x84, 0x4d, 0xff, 0xc8, 0x86, 0x4e, 0xff, 0xcd, 0x89, 0x50, 0xff, 0xd4, 0x8c, 0x53, 0xff, 0xd5, 0x8c, 0x53, 0xff, 0xd5, 0x8d, 0x54, 0xff, 0xd6, 0x90, 0x56, 0xff, 0xd5, 0x90, 0x58, 0xff, 0xd6, 0x90, 0x59, 0xff, 0xca, 0x89, 0x53, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb8, 0x7c, 0x46, 0xff, 0xb6, 0x7c, 0x45, 0xff, 0xb4, 0x7a, 0x43, 0xff, 0xb4, 0x78, 0x43, 0xff, 0xb2, 0x78, 0x42, 0xff, 0xb0, 0x77, 0x41, 0xff, 0xb0, 0x75, 0x40, 0xff, 0xb0, 0x75, 0x3e, 0xff, 0xae, 0x74, 0x3e, 0xff, 0xae, 0x73, 0x3e, 0xff, 0xad, 0x71, 0x3d, 0xff, 0xaa, 0x70, 0x3b, 0xff, 0xaa, 0x6f, 0x3a, 0xff, 0xa9, 0x6d, 0x3a, 0xff, 0xa7, 0x6d, 0x3a, 0xff, 0xa7, 0x6c, 0x39, 0xff, 0xa6, 0x6a, 0x38, 0xff, 0xa6, 0x69, 0x38, 0xff, 0xa5, 0x69, 0x38, 0xff, 0xa3, 0x69, 0x38, 0xff, 0xa3, 0x69, 0x38, 0xff, 0xa3, 0x68, 0x38, 0xff, 0xa3, 0x68, 0x38, 0xff, 0xa3, 0x68, 0x38, 0xff, 0xa3, 0x68, 0x37, 0xff, 0xa2, 0x68, 0x37, 0xff, 0xa3, 0x67, 0x38, 0xff, 0xa2, 0x68, 0x37, 0xff, 0xa3, 0x68, 0x38, 0xff, 0xa3, 0x69, 0x38, 0xff, 0xa2, 0x68, 0x37, 0xff, 0xa2, 0x68, 0x37, 0xff, 0xac, 0x73, 0x41, 0xff, 0xb5, 0x7b, 0x47, 0xff, 0xb3, 0x78, 0x45, 0xff, 0xb1, 0x76, 0x43, 0xff, 0xaf, 0x74, 0x41, 0xff, 0xae, 0x72, 0x3f, 0xff, 0xac, 0x71, 0x3f, 0xff, 0xab, 0x6f, 0x3e, 0xff, 0xa9, 0x6e, 0x3c, 0xff, 0xa8, 0x6c, 0x3b, 0xff, 0xa5, 0x69, 0x3a, 0xff, 0xa3, 0x67, 0x38, 0xff, 0xa1, 0x66, 0x37, 0xff, 0x9f, 0x62, 0x36, 0xff, 0x9d, 0x60, 0x35, 0xff, 0x9b, 0x5f, 0x33, 0xff, 0xa7, 0x6b, 0x3c, 0xff, 0xac, 0x70, 0x40, 0xff, 0xa9, 0x6c, 0x3e, 0xff, 0xa7, 0x6a, 0x3c, 0xff, 0xa4, 0x68, 0x3b, 0xff, 0xa3, 0x67, 0x39, 0xff, 0xa2, 0x66, 0x39, 0xff, 0xa0, 0x64, 0x38, 0xff, 0x9d, 0x63, 0x38, 0xff, 0x9d, 0x62, 0x38, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0x9d, 0x60, 0x36, 0xff, 0x9a, 0x5f, 0x35, 0xff, 0x99, 0x5e, 0x33, 0xff, 0x99, 0x5e, 0x32, 0xff, 0x98, 0x5d, 0x31, 0xff, 0xa1, 0x65, 0x39, 0xff, 0xa8, 0x6b, 0x3d, 0xff, 0xaa, 0x6d, 0x3d, 0xff, 0xa9, 0x6c, 0x3c, 0xff, 0xa7, 0x6a, 0x3b, 0xff, 0xa6, 0x69, 0x3a, 0xff, 0xa6, 0x68, 0x3b, 0xff, 0xa9, 0x6b, 0x3d, 0xff, 0xa9, 0x6b, 0x3c, 0xff, 0xa8, 0x6c, 0x3c, 0xff, 0xa7, 0x6a, 0x3b, 0xff, 0xa7, 0x69, 0x3a, 0xff, 0xa6, 0x69, 0x3a, 0xff, 0xa5, 0x69, 0x3a, 0xff, 0xa3, 0x67, 0x3a, 0xff, 0xa3, 0x66, 0x39, 0xff, 0xa2, 0x65, 0x38, 0xff, 0xa0, 0x64, 0x38, 0xff, 0xa0, 0x63, 0x38, 0xff, 0xa0, 0x62, 0x38, 0xff, 0x9e, 0x62, 0x37, 0xff, 0x9e, 0x61, 0x37, 0xff, 0x9d, 0x61, 0x37, 0xff, 0x9e, 0x61, 0x36, 0xff, 0x9f, 0x62, 0x38, 0xff, 0xa0, 0x65, 0x37, 0xff, 0xa0, 0x64, 0x38, 0xff, 0xa0, 0x63, 0x38, 0xff, 0xa1, 0x64, 0x38, 0xff, 0xa1, 0x64, 0x38, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa2, 0x66, 0x38, 0xff, 0xa2, 0x66, 0x39, 0xff, 0xa3, 0x66, 0x39, 0xff, 0xa0, 0x65, 0x38, 0xff, 0xa0, 0x64, 0x38, 0xff, 0x9f, 0x64, 0x38, 0xff, 0x9f, 0x62, 0x37, 0xff, 0x9f, 0x62, 0x37, 0xff, 0x9f, 0x63, 0x37, 0xff, 0xa0, 0x65, 0x38, 0xff, 0xa1, 0x65, 0x38, 0xff, 0xa1, 0x64, 0x38, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa2, 0x67, 0x38, 0xff, 0xa2, 0x67, 0x39, 0xff, 0xa4, 0x67, 0x39, 0xff, 0xa4, 0x67, 0x39, 0xff, 0xa3, 0x68, 0x39, 0xff, 0xa4, 0x69, 0x39, 0xff, 0xa5, 0x69, 0x3a, 0xff, 0xa6, 0x6a, 0x3b, 0xff, 0xa3, 0x69, 0x39, 0xff, 0xa3, 0x69, 0x38, 0xff, 0xa3, 0x69, 0x38, 0xff, 0xa4, 0x69, 0x39, 0xff, 0xa5, 0x6a, 0x39, 0xff, 0xa6, 0x6b, 0x39, 0xff, 0xa6, 0x6b, 0x39, 0xff, 0xa6, 0x6b, 0x3a, 0xff, 0xa7, 0x6d, 0x3b, 0xff, 0xa7, 0x6c, 0x3b, 0xff, 0xa8, 0x6e, 0x3b, 0xff, 0xa8, 0x6e, 0x3c, 0xff, 0xa9, 0x6f, 0x3d, 0xff, 0xa9, 0x6f, 0x3c, 0xff, 0xab, 0x71, 0x3d, 0xff, 0xac, 0x72, 0x3e, 0xff, + 0xab, 0x70, 0x3e, 0xff, 0xac, 0x71, 0x3e, 0xff, 0xad, 0x73, 0x3f, 0xff, 0xad, 0x73, 0x40, 0xff, 0xaf, 0x73, 0x3f, 0xff, 0xaf, 0x75, 0x41, 0xff, 0xaf, 0x74, 0x41, 0xff, 0xaf, 0x75, 0x41, 0xff, 0xa9, 0x6c, 0x3c, 0xff, 0xab, 0x6e, 0x3e, 0xff, 0xab, 0x6f, 0x3e, 0xff, 0xac, 0x70, 0x3e, 0xff, 0xac, 0x71, 0x3e, 0xff, 0xad, 0x71, 0x40, 0xff, 0xad, 0x71, 0x41, 0xff, 0xad, 0x72, 0x41, 0xff, 0xaf, 0x73, 0x42, 0xff, 0xb0, 0x73, 0x43, 0xff, 0xaf, 0x75, 0x46, 0xff, 0xa3, 0x69, 0x3a, 0xff, 0xa3, 0x69, 0x3c, 0xff, 0xa4, 0x6a, 0x3c, 0xff, 0xa4, 0x6a, 0x3c, 0xff, 0xa5, 0x6b, 0x3c, 0xff, 0xa6, 0x6c, 0x3c, 0xff, 0xa6, 0x6c, 0x3d, 0xff, 0xb0, 0x74, 0x44, 0xff, 0xc1, 0x85, 0x50, 0xff, 0xbe, 0x82, 0x4d, 0xff, 0xbc, 0x81, 0x4d, 0xff, 0xbc, 0x80, 0x4c, 0xff, 0xbb, 0x7d, 0x4b, 0xff, 0xba, 0x7d, 0x4a, 0xff, 0xba, 0x7d, 0x4b, 0xff, 0xba, 0x7d, 0x4b, 0xff, 0xbb, 0x7f, 0x4c, 0xff, 0xce, 0x8b, 0x54, 0xff, 0xcf, 0x8d, 0x54, 0xff, 0xd2, 0x8c, 0x53, 0xff, 0xd2, 0x90, 0x55, 0xff, 0xd5, 0x98, 0x5b, 0xff, 0xd6, 0x99, 0x5d, 0xff, 0xd6, 0x9d, 0x60, 0xff, 0xd6, 0xa7, 0x65, 0xff, 0xd4, 0xa5, 0x67, 0xff, 0xd5, 0xac, 0x6b, 0xff, 0xd6, 0xaf, 0x6f, 0xff, 0xd5, 0xb7, 0x74, 0xff, 0xd3, 0xb7, 0x7c, 0xff, 0xcd, 0xac, 0x78, 0xff, 0xa1, 0x6d, 0x44, 0xff, 0xa6, 0x6e, 0x44, 0xff, 0xa5, 0x6f, 0x46, 0xff, 0xa5, 0x6f, 0x45, 0xff, 0xa6, 0x71, 0x47, 0xff, 0xa6, 0x70, 0x47, 0xff, 0xa7, 0x71, 0x48, 0xff, 0xa8, 0x71, 0x47, 0xff, 0xa9, 0x71, 0x48, 0xff, 0xa9, 0x73, 0x49, 0xff, 0xaa, 0x76, 0x4c, 0xff, 0xab, 0x79, 0x4e, 0xff, 0xac, 0x7b, 0x4f, 0xff, 0xaf, 0x7c, 0x50, 0xff, 0xb0, 0x7e, 0x50, 0xff, 0xb0, 0x80, 0x4f, 0xff, 0xb2, 0x7e, 0x4f, 0xff, 0xb4, 0x80, 0x4f, 0xff, 0xb5, 0x81, 0x4f, 0xff, 0xb7, 0x80, 0x4d, 0xff, 0xb8, 0x80, 0x4b, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7c, 0x48, 0xff, 0xb8, 0x7d, 0x47, 0xff, 0xb8, 0x7d, 0x49, 0xff, 0xb9, 0x7e, 0x49, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xbb, 0x81, 0x4c, 0xff, 0xbc, 0x82, 0x4d, 0xff, 0xbd, 0x81, 0x4d, 0xff, 0xbd, 0x81, 0x4d, 0xff, 0xbd, 0x80, 0x4d, 0xff, 0xbe, 0x81, 0x4d, 0xff, 0xbb, 0x81, 0x4b, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xbd, 0x82, 0x4b, 0xff, 0xbf, 0x83, 0x4c, 0xff, 0xc1, 0x83, 0x4b, 0xff, 0xbf, 0x81, 0x4b, 0xff, 0xc0, 0x82, 0x4a, 0xff, 0xc2, 0x83, 0x4b, 0xff, 0xc4, 0x84, 0x4c, 0xff, 0xc9, 0x85, 0x4d, 0xff, 0xc9, 0x86, 0x4e, 0xff, 0xcd, 0x89, 0x50, 0xff, 0xd7, 0x8c, 0x54, 0xff, 0xd6, 0x8d, 0x55, 0xff, 0xd6, 0x91, 0x58, 0xff, 0xd6, 0x92, 0x58, 0xff, 0xd6, 0x8f, 0x55, 0xff, 0xd7, 0x8f, 0x56, 0xff, 0xcb, 0x8a, 0x52, 0xff, 0xb9, 0x7f, 0x48, 0xff, 0xb8, 0x7c, 0x46, 0xff, 0xb7, 0x7c, 0x45, 0xff, 0xb4, 0x7b, 0x43, 0xff, 0xb4, 0x79, 0x42, 0xff, 0xb3, 0x78, 0x41, 0xff, 0xb1, 0x76, 0x40, 0xff, 0xb0, 0x75, 0x3e, 0xff, 0xb0, 0x75, 0x3e, 0xff, 0xaf, 0x74, 0x3e, 0xff, 0xad, 0x72, 0x3c, 0xff, 0xab, 0x70, 0x3b, 0xff, 0xab, 0x70, 0x3b, 0xff, 0xaa, 0x6e, 0x3a, 0xff, 0xa9, 0x6e, 0x3a, 0xff, 0xa7, 0x6d, 0x38, 0xff, 0xa7, 0x6b, 0x38, 0xff, 0xa7, 0x6b, 0x39, 0xff, 0xa6, 0x6a, 0x39, 0xff, 0xa4, 0x69, 0x37, 0xff, 0xa4, 0x6a, 0x37, 0xff, 0xa4, 0x6a, 0x38, 0xff, 0xa3, 0x69, 0x38, 0xff, 0xa4, 0x68, 0x37, 0xff, 0xa4, 0x69, 0x38, 0xff, 0xa2, 0x69, 0x38, 0xff, 0xa2, 0x68, 0x37, 0xff, 0xa2, 0x67, 0x38, 0xff, 0xa2, 0x68, 0x38, 0xff, 0xa2, 0x68, 0x38, 0xff, 0xa2, 0x68, 0x38, 0xff, 0xa2, 0x68, 0x37, 0xff, 0xab, 0x71, 0x3e, 0xff, 0xb6, 0x7a, 0x47, 0xff, 0xb6, 0x7a, 0x46, 0xff, 0xb2, 0x77, 0x43, 0xff, 0xb0, 0x75, 0x42, 0xff, 0xaf, 0x73, 0x40, 0xff, 0xac, 0x71, 0x3e, 0xff, 0xac, 0x71, 0x3e, 0xff, 0xac, 0x70, 0x3d, 0xff, 0xa9, 0x6c, 0x3b, 0xff, 0xa7, 0x6a, 0x3a, 0xff, 0xa5, 0x68, 0x39, 0xff, 0xa3, 0x66, 0x38, 0xff, 0xa1, 0x64, 0x37, 0xff, 0x9e, 0x62, 0x36, 0xff, 0x9d, 0x60, 0x35, 0xff, 0xa9, 0x6c, 0x3d, 0xff, 0xad, 0x71, 0x41, 0xff, 0xaa, 0x6d, 0x3f, 0xff, 0xa8, 0x6b, 0x3d, 0xff, 0xa5, 0x69, 0x3b, 0xff, 0xa3, 0x67, 0x39, 0xff, 0xa1, 0x65, 0x39, 0xff, 0xa0, 0x64, 0x38, 0xff, 0x9f, 0x63, 0x38, 0xff, 0x9e, 0x62, 0x37, 0xff, 0x9b, 0x60, 0x35, 0xff, 0x9d, 0x62, 0x37, 0xff, 0x9c, 0x60, 0x36, 0xff, 0x99, 0x5e, 0x34, 0xff, 0x98, 0x5d, 0x33, 0xff, 0x97, 0x5c, 0x32, 0xff, 0x95, 0x5a, 0x30, 0xff, 0x92, 0x58, 0x2e, 0xff, 0x94, 0x59, 0x30, 0xff, 0xa1, 0x65, 0x38, 0xff, 0xa7, 0x6a, 0x3c, 0xff, 0xa6, 0x69, 0x3b, 0xff, 0xa5, 0x69, 0x3b, 0xff, 0xa4, 0x68, 0x3a, 0xff, 0xa6, 0x69, 0x3c, 0xff, 0xaa, 0x6d, 0x3c, 0xff, 0xa8, 0x6c, 0x3c, 0xff, 0xa8, 0x6a, 0x3b, 0xff, 0xa7, 0x6a, 0x3b, 0xff, 0xa7, 0x69, 0x3a, 0xff, 0xa6, 0x69, 0x3a, 0xff, 0xa5, 0x67, 0x3a, 0xff, 0xa4, 0x67, 0x39, 0xff, 0xa3, 0x67, 0x39, 0xff, 0xa2, 0x66, 0x39, 0xff, 0xa0, 0x64, 0x38, 0xff, 0xa0, 0x63, 0x38, 0xff, 0xa0, 0x63, 0x38, 0xff, 0xa0, 0x63, 0x38, 0xff, 0x9e, 0x62, 0x37, 0xff, 0x9f, 0x62, 0x38, 0xff, 0x9e, 0x61, 0x37, 0xff, 0x9e, 0x61, 0x37, 0xff, 0x9e, 0x62, 0x38, 0xff, 0x9f, 0x62, 0x38, 0xff, 0x9f, 0x62, 0x38, 0xff, 0xa0, 0x63, 0x38, 0xff, 0xa1, 0x63, 0x38, 0xff, 0xa2, 0x66, 0x39, 0xff, 0xa2, 0x65, 0x39, 0xff, 0x9e, 0x61, 0x35, 0xff, 0x9c, 0x60, 0x35, 0xff, 0x9d, 0x61, 0x35, 0xff, 0x9e, 0x62, 0x35, 0xff, 0x9e, 0x62, 0x37, 0xff, 0x9e, 0x63, 0x36, 0xff, 0x9f, 0x63, 0x37, 0xff, 0xa0, 0x64, 0x37, 0xff, 0xa1, 0x65, 0x38, 0xff, 0xa0, 0x65, 0x38, 0xff, 0xa1, 0x64, 0x38, 0xff, 0xa2, 0x66, 0x38, 0xff, 0xa3, 0x66, 0x39, 0xff, 0xa2, 0x66, 0x39, 0xff, 0xa2, 0x67, 0x38, 0xff, 0xa4, 0x68, 0x39, 0xff, 0xa4, 0x68, 0x39, 0xff, 0xa4, 0x68, 0x3a, 0xff, 0xa2, 0x66, 0x38, 0xff, 0xa2, 0x66, 0x38, 0xff, 0xa2, 0x68, 0x38, 0xff, 0xa3, 0x68, 0x38, 0xff, 0xa4, 0x68, 0x38, 0xff, 0xa4, 0x68, 0x38, 0xff, 0xa5, 0x6a, 0x39, 0xff, 0xa4, 0x6a, 0x39, 0xff, 0xa4, 0x6b, 0x3a, 0xff, 0xa6, 0x6c, 0x3a, 0xff, 0xa6, 0x6c, 0x3c, 0xff, 0xa8, 0x6d, 0x3b, 0xff, 0xa8, 0x6e, 0x3c, 0xff, 0xa9, 0x6f, 0x3d, 0xff, 0xa9, 0x6f, 0x3c, 0xff, 0xab, 0x70, 0x3d, 0xff, + 0xaa, 0x70, 0x3e, 0xff, 0xab, 0x70, 0x3e, 0xff, 0xac, 0x72, 0x3e, 0xff, 0xac, 0x70, 0x40, 0xff, 0xac, 0x72, 0x3f, 0xff, 0xae, 0x74, 0x41, 0xff, 0xad, 0x72, 0x41, 0xff, 0xa8, 0x6c, 0x3c, 0xff, 0xa9, 0x6d, 0x3d, 0xff, 0xaa, 0x6d, 0x3d, 0xff, 0xaa, 0x6d, 0x3e, 0xff, 0xaa, 0x6d, 0x3e, 0xff, 0xab, 0x6f, 0x3e, 0xff, 0xab, 0x70, 0x3e, 0xff, 0xac, 0x70, 0x3f, 0xff, 0xad, 0x72, 0x41, 0xff, 0xad, 0x73, 0x42, 0xff, 0xae, 0x72, 0x43, 0xff, 0xac, 0x72, 0x43, 0xff, 0xa3, 0x69, 0x3b, 0xff, 0xa2, 0x68, 0x3b, 0xff, 0xa3, 0x69, 0x3b, 0xff, 0xa4, 0x69, 0x3b, 0xff, 0xa3, 0x6a, 0x3b, 0xff, 0xa5, 0x6b, 0x3c, 0xff, 0xa6, 0x6b, 0x3c, 0xff, 0xa4, 0x6a, 0x3b, 0xff, 0xad, 0x71, 0x42, 0xff, 0xbe, 0x81, 0x4e, 0xff, 0xc2, 0x85, 0x50, 0xff, 0xbe, 0x82, 0x4e, 0xff, 0xbd, 0x81, 0x4d, 0xff, 0xbc, 0x7f, 0x4c, 0xff, 0xbc, 0x80, 0x4c, 0xff, 0xbb, 0x7e, 0x4b, 0xff, 0xbc, 0x80, 0x4c, 0xff, 0xd1, 0x90, 0x56, 0xff, 0xd2, 0x8d, 0x55, 0xff, 0xd2, 0x90, 0x56, 0xff, 0xd4, 0x9b, 0x5f, 0xff, 0xd5, 0x9e, 0x62, 0xff, 0xd6, 0x9d, 0x5f, 0xff, 0xd5, 0x9c, 0x5e, 0xff, 0xd6, 0x9d, 0x61, 0xff, 0xd5, 0xa4, 0x63, 0xff, 0xd4, 0xa8, 0x66, 0xff, 0xd5, 0xaa, 0x67, 0xff, 0xd6, 0xb3, 0x6e, 0xff, 0xcb, 0xaa, 0x6d, 0xff, 0xab, 0x79, 0x4c, 0xff, 0xa5, 0x6f, 0x42, 0xff, 0xa5, 0x6e, 0x43, 0xff, 0xa6, 0x6f, 0x44, 0xff, 0xa5, 0x6e, 0x45, 0xff, 0xa6, 0x71, 0x44, 0xff, 0xa8, 0x72, 0x46, 0xff, 0xa8, 0x72, 0x46, 0xff, 0xa8, 0x72, 0x46, 0xff, 0xa8, 0x72, 0x46, 0xff, 0xa8, 0x73, 0x47, 0xff, 0xaa, 0x75, 0x48, 0xff, 0xab, 0x78, 0x4a, 0xff, 0xac, 0x7b, 0x4c, 0xff, 0xad, 0x7c, 0x4d, 0xff, 0xaf, 0x7d, 0x4d, 0xff, 0xb1, 0x7d, 0x4e, 0xff, 0xb2, 0x7e, 0x4d, 0xff, 0xb4, 0x7e, 0x4d, 0xff, 0xb5, 0x7e, 0x4d, 0xff, 0xb7, 0x7f, 0x4b, 0xff, 0xb8, 0x7e, 0x4a, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb8, 0x7d, 0x49, 0xff, 0xb8, 0x7d, 0x49, 0xff, 0xb9, 0x7e, 0x49, 0xff, 0xba, 0x7f, 0x49, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xbc, 0x81, 0x4b, 0xff, 0xbd, 0x82, 0x4b, 0xff, 0xbc, 0x82, 0x4c, 0xff, 0xbc, 0x82, 0x4b, 0xff, 0xbc, 0x81, 0x4c, 0xff, 0xbb, 0x80, 0x4b, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xbc, 0x82, 0x4a, 0xff, 0xbc, 0x82, 0x4a, 0xff, 0xbe, 0x82, 0x4a, 0xff, 0xbe, 0x82, 0x4b, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xc0, 0x82, 0x4b, 0xff, 0xc2, 0x83, 0x4c, 0xff, 0xc5, 0x85, 0x4d, 0xff, 0xc8, 0x87, 0x4d, 0xff, 0xca, 0x87, 0x4e, 0xff, 0xca, 0x88, 0x50, 0xff, 0xd1, 0x8b, 0x53, 0xff, 0xd5, 0x8d, 0x54, 0xff, 0xd2, 0x8f, 0x54, 0xff, 0xd5, 0x93, 0x58, 0xff, 0xd6, 0x92, 0x57, 0xff, 0xd6, 0x90, 0x56, 0xff, 0xd6, 0x90, 0x57, 0xff, 0xca, 0x89, 0x52, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb8, 0x7e, 0x45, 0xff, 0xb7, 0x7b, 0x43, 0xff, 0xb6, 0x7b, 0x43, 0xff, 0xb4, 0x7a, 0x42, 0xff, 0xb2, 0x79, 0x41, 0xff, 0xb2, 0x77, 0x3f, 0xff, 0xb1, 0x75, 0x3e, 0xff, 0xae, 0x73, 0x3d, 0xff, 0xad, 0x73, 0x3c, 0xff, 0xad, 0x72, 0x3c, 0xff, 0xab, 0x70, 0x3b, 0xff, 0xab, 0x70, 0x3b, 0xff, 0xaa, 0x6e, 0x39, 0xff, 0xa9, 0x6e, 0x39, 0xff, 0xa9, 0x6d, 0x39, 0xff, 0xa7, 0x6b, 0x38, 0xff, 0xa6, 0x6b, 0x38, 0xff, 0xa5, 0x6a, 0x37, 0xff, 0xa4, 0x6a, 0x37, 0xff, 0xa4, 0x69, 0x37, 0xff, 0xa4, 0x69, 0x37, 0xff, 0xa3, 0x68, 0x36, 0xff, 0xa3, 0x68, 0x36, 0xff, 0xa3, 0x69, 0x37, 0xff, 0xa3, 0x68, 0x36, 0xff, 0xa2, 0x69, 0x37, 0xff, 0xa2, 0x68, 0x37, 0xff, 0xa3, 0x69, 0x37, 0xff, 0xa3, 0x68, 0x37, 0xff, 0xa2, 0x67, 0x36, 0xff, 0xaa, 0x70, 0x3d, 0xff, 0xb6, 0x7b, 0x48, 0xff, 0xb7, 0x7c, 0x48, 0xff, 0xb5, 0x79, 0x44, 0xff, 0xb2, 0x76, 0x43, 0xff, 0xaf, 0x73, 0x40, 0xff, 0xad, 0x72, 0x3d, 0xff, 0xad, 0x72, 0x3e, 0xff, 0xad, 0x72, 0x3d, 0xff, 0xab, 0x6f, 0x3c, 0xff, 0xa9, 0x6c, 0x3b, 0xff, 0xa7, 0x6a, 0x39, 0xff, 0xa5, 0x68, 0x38, 0xff, 0xa3, 0x66, 0x37, 0xff, 0xa0, 0x63, 0x37, 0xff, 0x9f, 0x62, 0x36, 0xff, 0xab, 0x6f, 0x3f, 0xff, 0xae, 0x73, 0x42, 0xff, 0xab, 0x6e, 0x3f, 0xff, 0xa9, 0x6c, 0x3d, 0xff, 0xa6, 0x6a, 0x3b, 0xff, 0xa4, 0x68, 0x3a, 0xff, 0xa2, 0x66, 0x39, 0xff, 0xa1, 0x64, 0x38, 0xff, 0x9f, 0x63, 0x37, 0xff, 0x9e, 0x62, 0x37, 0xff, 0x9c, 0x60, 0x36, 0xff, 0x9e, 0x62, 0x37, 0xff, 0x9d, 0x61, 0x36, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0x99, 0x5e, 0x34, 0xff, 0x97, 0x5c, 0x32, 0xff, 0x96, 0x5b, 0x31, 0xff, 0x95, 0x5a, 0x2f, 0xff, 0x94, 0x58, 0x2f, 0xff, 0x92, 0x58, 0x2c, 0xff, 0x93, 0x59, 0x2e, 0xff, 0x94, 0x5a, 0x30, 0xff, 0x99, 0x5d, 0x32, 0xff, 0x9d, 0x61, 0x35, 0xff, 0x9f, 0x64, 0x36, 0xff, 0xa0, 0x66, 0x38, 0xff, 0xa3, 0x67, 0x3b, 0xff, 0xa6, 0x6a, 0x3d, 0xff, 0xa8, 0x6c, 0x3d, 0xff, 0xa9, 0x6b, 0x3d, 0xff, 0xa9, 0x6c, 0x3d, 0xff, 0xa8, 0x6b, 0x3c, 0xff, 0xa7, 0x6a, 0x3b, 0xff, 0xa6, 0x69, 0x3b, 0xff, 0xa6, 0x69, 0x3a, 0xff, 0xa4, 0x67, 0x3a, 0xff, 0xa3, 0x67, 0x3a, 0xff, 0xa3, 0x66, 0x39, 0xff, 0xa1, 0x65, 0x39, 0xff, 0xa0, 0x64, 0x38, 0xff, 0x9f, 0x62, 0x38, 0xff, 0x9e, 0x62, 0x38, 0xff, 0x9e, 0x62, 0x37, 0xff, 0x9d, 0x61, 0x37, 0xff, 0x9d, 0x62, 0x36, 0xff, 0x9d, 0x61, 0x36, 0xff, 0x9e, 0x61, 0x36, 0xff, 0x9e, 0x62, 0x37, 0xff, 0x9f, 0x62, 0x37, 0xff, 0xa0, 0x64, 0x38, 0xff, 0x9c, 0x60, 0x34, 0xff, 0x9b, 0x5f, 0x34, 0xff, 0x9b, 0x5f, 0x34, 0xff, 0x9b, 0x5f, 0x34, 0xff, 0x9c, 0x60, 0x34, 0xff, 0x9d, 0x61, 0x34, 0xff, 0x9d, 0x61, 0x35, 0xff, 0x9f, 0x62, 0x37, 0xff, 0x9e, 0x62, 0x36, 0xff, 0x9f, 0x64, 0x37, 0xff, 0xa0, 0x63, 0x37, 0xff, 0xa1, 0x64, 0x38, 0xff, 0xa1, 0x64, 0x38, 0xff, 0xa1, 0x65, 0x37, 0xff, 0xa1, 0x65, 0x38, 0xff, 0xa2, 0x65, 0x38, 0xff, 0xa3, 0x67, 0x39, 0xff, 0xa3, 0x67, 0x39, 0xff, 0xa1, 0x66, 0x38, 0xff, 0xa0, 0x65, 0x37, 0xff, 0xa2, 0x67, 0x38, 0xff, 0xa2, 0x68, 0x39, 0xff, 0xa3, 0x68, 0x39, 0xff, 0xa3, 0x68, 0x39, 0xff, 0xa3, 0x68, 0x39, 0xff, 0xa3, 0x69, 0x3a, 0xff, 0xa3, 0x69, 0x3a, 0xff, 0xa3, 0x6a, 0x3a, 0xff, 0xa4, 0x6b, 0x3a, 0xff, 0xa6, 0x6c, 0x3b, 0xff, 0xa6, 0x6c, 0x3b, 0xff, 0xa7, 0x6d, 0x3c, 0xff, 0xa9, 0x6e, 0x3d, 0xff, 0xa9, 0x70, 0x3e, 0xff, + 0xa9, 0x6d, 0x3d, 0xff, 0xa9, 0x6e, 0x3d, 0xff, 0xa9, 0x6f, 0x3d, 0xff, 0xaa, 0x71, 0x3f, 0xff, 0xab, 0x6f, 0x3e, 0xff, 0xa9, 0x6e, 0x3d, 0xff, 0xa5, 0x69, 0x3a, 0xff, 0xa6, 0x6b, 0x3b, 0xff, 0xa9, 0x6c, 0x3d, 0xff, 0xa8, 0x6c, 0x3d, 0xff, 0xa9, 0x6d, 0x3d, 0xff, 0xa9, 0x6d, 0x3e, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xaa, 0x6e, 0x3e, 0xff, 0xac, 0x6f, 0x3f, 0xff, 0xac, 0x70, 0x40, 0xff, 0xad, 0x71, 0x42, 0xff, 0xae, 0x73, 0x43, 0xff, 0xa9, 0x6e, 0x40, 0xff, 0xa3, 0x69, 0x3b, 0xff, 0xa1, 0x68, 0x3a, 0xff, 0xa1, 0x68, 0x3a, 0xff, 0xa2, 0x69, 0x3b, 0xff, 0xa2, 0x69, 0x3b, 0xff, 0xa3, 0x69, 0x3b, 0xff, 0xa4, 0x6b, 0x3b, 0xff, 0xa4, 0x69, 0x3c, 0xff, 0xa4, 0x69, 0x3a, 0xff, 0xaa, 0x6f, 0x3f, 0xff, 0xb5, 0x79, 0x46, 0xff, 0xc5, 0x88, 0x53, 0xff, 0xc0, 0x82, 0x4f, 0xff, 0xbf, 0x82, 0x4e, 0xff, 0xbd, 0x81, 0x4e, 0xff, 0xbd, 0x80, 0x4d, 0xff, 0xbe, 0x82, 0x4e, 0xff, 0xd0, 0x8c, 0x54, 0xff, 0xd3, 0x91, 0x57, 0xff, 0xd4, 0x97, 0x5c, 0xff, 0xd6, 0x9f, 0x63, 0xff, 0xd6, 0xa1, 0x66, 0xff, 0xd5, 0xa0, 0x65, 0xff, 0xd6, 0x9f, 0x61, 0xff, 0xd4, 0x99, 0x5e, 0xff, 0xd5, 0x9e, 0x61, 0xff, 0xd5, 0xa3, 0x62, 0xff, 0xd6, 0xa8, 0x65, 0xff, 0xce, 0x9d, 0x62, 0xff, 0xa8, 0x78, 0x47, 0xff, 0xa5, 0x6d, 0x40, 0xff, 0xa5, 0x6e, 0x41, 0xff, 0xa5, 0x6f, 0x42, 0xff, 0xa5, 0x6f, 0x43, 0xff, 0xa6, 0x71, 0x44, 0xff, 0xa6, 0x71, 0x43, 0xff, 0xa8, 0x72, 0x43, 0xff, 0xa7, 0x72, 0x44, 0xff, 0xa7, 0x72, 0x45, 0xff, 0xa8, 0x72, 0x45, 0xff, 0xa8, 0x73, 0x45, 0xff, 0xa8, 0x74, 0x45, 0xff, 0xab, 0x77, 0x46, 0xff, 0xac, 0x79, 0x48, 0xff, 0xad, 0x7b, 0x49, 0xff, 0xaf, 0x7c, 0x49, 0xff, 0xb0, 0x7a, 0x4a, 0xff, 0xb2, 0x7c, 0x49, 0xff, 0xb3, 0x7c, 0x49, 0xff, 0xb5, 0x7d, 0x49, 0xff, 0xb6, 0x7d, 0x4a, 0xff, 0xb7, 0x7e, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb9, 0x7d, 0x49, 0xff, 0xba, 0x7f, 0x4a, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xbb, 0x81, 0x4b, 0xff, 0xba, 0x80, 0x49, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbb, 0x80, 0x48, 0xff, 0xba, 0x7f, 0x47, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbb, 0x81, 0x49, 0xff, 0xbc, 0x82, 0x4a, 0xff, 0xbd, 0x82, 0x4b, 0xff, 0xbe, 0x83, 0x4b, 0xff, 0xbf, 0x82, 0x4b, 0xff, 0xc0, 0x83, 0x4b, 0xff, 0xc0, 0x82, 0x4b, 0xff, 0xc0, 0x82, 0x4b, 0xff, 0xc3, 0x83, 0x4c, 0xff, 0xc5, 0x84, 0x4d, 0xff, 0xc8, 0x85, 0x4e, 0xff, 0xcb, 0x86, 0x4e, 0xff, 0xcb, 0x86, 0x4e, 0xff, 0xc9, 0x87, 0x4f, 0xff, 0xca, 0x88, 0x50, 0xff, 0xcc, 0x8a, 0x4e, 0xff, 0xd0, 0x8d, 0x4f, 0xff, 0xd3, 0x92, 0x57, 0xff, 0xd5, 0x96, 0x5b, 0xff, 0xd5, 0x94, 0x59, 0xff, 0xd6, 0x91, 0x57, 0xff, 0xd7, 0x91, 0x57, 0xff, 0xc9, 0x89, 0x50, 0xff, 0xb8, 0x7d, 0x46, 0xff, 0xb9, 0x7c, 0x44, 0xff, 0xb8, 0x7c, 0x44, 0xff, 0xb6, 0x7b, 0x43, 0xff, 0xb4, 0x79, 0x41, 0xff, 0xb2, 0x77, 0x40, 0xff, 0xb2, 0x75, 0x3e, 0xff, 0xb0, 0x75, 0x3d, 0xff, 0xaf, 0x75, 0x3d, 0xff, 0xae, 0x73, 0x3c, 0xff, 0xac, 0x72, 0x3a, 0xff, 0xac, 0x72, 0x3a, 0xff, 0xac, 0x70, 0x3a, 0xff, 0xaa, 0x6f, 0x39, 0xff, 0xa9, 0x6d, 0x38, 0xff, 0xa8, 0x6c, 0x38, 0xff, 0xa7, 0x6b, 0x38, 0xff, 0xa6, 0x6b, 0x38, 0xff, 0xa5, 0x6b, 0x37, 0xff, 0xa5, 0x69, 0x37, 0xff, 0xa5, 0x6a, 0x37, 0xff, 0xa4, 0x69, 0x36, 0xff, 0xa4, 0x68, 0x36, 0xff, 0xa3, 0x68, 0x36, 0xff, 0xa3, 0x68, 0x37, 0xff, 0xa2, 0x68, 0x36, 0xff, 0xa3, 0x68, 0x37, 0xff, 0xa2, 0x68, 0x37, 0xff, 0xa3, 0x68, 0x37, 0xff, 0xa2, 0x67, 0x36, 0xff, 0xa8, 0x6e, 0x3c, 0xff, 0xb5, 0x7b, 0x47, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb6, 0x7b, 0x46, 0xff, 0xb3, 0x79, 0x43, 0xff, 0xb1, 0x75, 0x41, 0xff, 0xaf, 0x73, 0x3f, 0xff, 0xae, 0x72, 0x3e, 0xff, 0xae, 0x72, 0x3e, 0xff, 0xad, 0x71, 0x3d, 0xff, 0xab, 0x6e, 0x3c, 0xff, 0xa9, 0x6c, 0x3b, 0xff, 0xa7, 0x6b, 0x39, 0xff, 0xa5, 0x67, 0x38, 0xff, 0xa2, 0x64, 0x37, 0xff, 0xa2, 0x66, 0x38, 0xff, 0xae, 0x71, 0x41, 0xff, 0xb0, 0x74, 0x42, 0xff, 0xab, 0x6f, 0x3f, 0xff, 0xa9, 0x6d, 0x3d, 0xff, 0xa7, 0x6a, 0x3b, 0xff, 0xa5, 0x68, 0x3a, 0xff, 0xa3, 0x67, 0x39, 0xff, 0xa1, 0x65, 0x39, 0xff, 0xa0, 0x64, 0x38, 0xff, 0x9f, 0x62, 0x37, 0xff, 0x9d, 0x61, 0x36, 0xff, 0x9f, 0x63, 0x38, 0xff, 0x9e, 0x62, 0x37, 0xff, 0x9b, 0x60, 0x36, 0xff, 0x9a, 0x5e, 0x33, 0xff, 0x99, 0x5d, 0x33, 0xff, 0x97, 0x5c, 0x32, 0xff, 0x96, 0x5a, 0x30, 0xff, 0x94, 0x5a, 0x2f, 0xff, 0x94, 0x5a, 0x2f, 0xff, 0x94, 0x59, 0x2f, 0xff, 0x93, 0x58, 0x2e, 0xff, 0x91, 0x57, 0x2e, 0xff, 0x90, 0x56, 0x2c, 0xff, 0x90, 0x56, 0x2b, 0xff, 0x92, 0x58, 0x2d, 0xff, 0x93, 0x59, 0x2e, 0xff, 0x95, 0x5a, 0x30, 0xff, 0x96, 0x5c, 0x31, 0xff, 0x98, 0x5d, 0x31, 0xff, 0x99, 0x5e, 0x32, 0xff, 0x9b, 0x60, 0x33, 0xff, 0x9d, 0x61, 0x34, 0xff, 0x9c, 0x60, 0x34, 0xff, 0x9d, 0x60, 0x33, 0xff, 0x9d, 0x60, 0x33, 0xff, 0x9c, 0x60, 0x33, 0xff, 0x9b, 0x5f, 0x33, 0xff, 0x9a, 0x5f, 0x32, 0xff, 0x9b, 0x5e, 0x33, 0xff, 0x9a, 0x5f, 0x33, 0xff, 0x9a, 0x5d, 0x34, 0xff, 0x9a, 0x5e, 0x33, 0xff, 0x99, 0x5d, 0x32, 0xff, 0x99, 0x5d, 0x32, 0xff, 0x99, 0x5d, 0x34, 0xff, 0x9a, 0x5f, 0x35, 0xff, 0x9c, 0x60, 0x36, 0xff, 0x9c, 0x60, 0x36, 0xff, 0x9d, 0x60, 0x36, 0xff, 0x99, 0x5d, 0x33, 0xff, 0x99, 0x5d, 0x31, 0xff, 0x99, 0x5e, 0x31, 0xff, 0x9a, 0x5e, 0x32, 0xff, 0x9b, 0x5f, 0x34, 0xff, 0x9b, 0x60, 0x33, 0xff, 0x9c, 0x60, 0x35, 0xff, 0x9c, 0x61, 0x35, 0xff, 0x9d, 0x60, 0x35, 0xff, 0x9d, 0x62, 0x36, 0xff, 0x9e, 0x62, 0x36, 0xff, 0x9e, 0x62, 0x36, 0xff, 0xa0, 0x63, 0x37, 0xff, 0xa0, 0x63, 0x37, 0xff, 0xa0, 0x63, 0x37, 0xff, 0xa1, 0x64, 0x37, 0xff, 0xa1, 0x65, 0x38, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa0, 0x65, 0x38, 0xff, 0xa0, 0x64, 0x37, 0xff, 0xa1, 0x66, 0x38, 0xff, 0xa1, 0x66, 0x39, 0xff, 0xa2, 0x67, 0x39, 0xff, 0xa2, 0x67, 0x39, 0xff, 0xa2, 0x67, 0x39, 0xff, 0xa2, 0x68, 0x39, 0xff, 0xa2, 0x6a, 0x3a, 0xff, 0xa3, 0x68, 0x3a, 0xff, 0xa3, 0x6a, 0x3b, 0xff, 0xa3, 0x6a, 0x3b, 0xff, 0xa4, 0x6b, 0x3b, 0xff, 0xa6, 0x6b, 0x3c, 0xff, 0xa7, 0x6d, 0x3c, 0xff, 0xa8, 0x6e, 0x3c, 0xff, + 0xa6, 0x6c, 0x3c, 0xff, 0xa6, 0x6b, 0x3c, 0xff, 0xa8, 0x6d, 0x3c, 0xff, 0xa8, 0x6e, 0x3d, 0xff, 0xa9, 0x6e, 0x3d, 0xff, 0xa3, 0x68, 0x3a, 0xff, 0xa3, 0x67, 0x39, 0xff, 0xa4, 0x67, 0x3b, 0xff, 0xa6, 0x6a, 0x3c, 0xff, 0xa5, 0x69, 0x3c, 0xff, 0xa8, 0x6c, 0x3d, 0xff, 0xaa, 0x6d, 0x3e, 0xff, 0xaa, 0x6e, 0x3e, 0xff, 0xaa, 0x6d, 0x3f, 0xff, 0xaa, 0x6e, 0x3f, 0xff, 0xac, 0x70, 0x40, 0xff, 0xac, 0x70, 0x42, 0xff, 0xa8, 0x6c, 0x3e, 0xff, 0xa7, 0x6c, 0x3e, 0xff, 0xa3, 0x68, 0x3c, 0xff, 0xa0, 0x66, 0x39, 0xff, 0xa0, 0x66, 0x3b, 0xff, 0xa1, 0x67, 0x3a, 0xff, 0xa1, 0x67, 0x3b, 0xff, 0xa2, 0x69, 0x3b, 0xff, 0xa2, 0x68, 0x3b, 0xff, 0xa3, 0x69, 0x3b, 0xff, 0xa3, 0x68, 0x3c, 0xff, 0xa5, 0x6b, 0x3b, 0xff, 0xa7, 0x6c, 0x3d, 0xff, 0xb0, 0x76, 0x45, 0xff, 0xc3, 0x85, 0x52, 0xff, 0xc1, 0x84, 0x4f, 0xff, 0xc2, 0x85, 0x4e, 0xff, 0xc0, 0x83, 0x4f, 0xff, 0xc2, 0x86, 0x4f, 0xff, 0xd8, 0x94, 0x57, 0xff, 0xd7, 0x93, 0x57, 0xff, 0xd6, 0x95, 0x5b, 0xff, 0xd5, 0x9d, 0x60, 0xff, 0xd5, 0xa0, 0x65, 0xff, 0xd6, 0xa2, 0x69, 0xff, 0xd5, 0xa2, 0x66, 0xff, 0xd7, 0xa1, 0x63, 0xff, 0xd4, 0x9c, 0x60, 0xff, 0xd7, 0xa2, 0x63, 0xff, 0xd2, 0xa2, 0x63, 0xff, 0xaf, 0x7f, 0x4d, 0xff, 0xa3, 0x69, 0x3c, 0xff, 0xa6, 0x6e, 0x40, 0xff, 0xa5, 0x6d, 0x3f, 0xff, 0xa6, 0x6d, 0x41, 0xff, 0xa6, 0x70, 0x41, 0xff, 0xa5, 0x71, 0x42, 0xff, 0xa6, 0x71, 0x42, 0xff, 0xa7, 0x70, 0x42, 0xff, 0xa8, 0x71, 0x42, 0xff, 0xa8, 0x72, 0x43, 0xff, 0xa8, 0x72, 0x43, 0xff, 0xa8, 0x72, 0x43, 0xff, 0xa9, 0x73, 0x43, 0xff, 0xa9, 0x74, 0x44, 0xff, 0xab, 0x76, 0x45, 0xff, 0xac, 0x77, 0x45, 0xff, 0xaf, 0x79, 0x46, 0xff, 0xb0, 0x7a, 0x46, 0xff, 0xb1, 0x7a, 0x47, 0xff, 0xb2, 0x7a, 0x48, 0xff, 0xb3, 0x7b, 0x49, 0xff, 0xb5, 0x7c, 0x49, 0xff, 0xb7, 0x7d, 0x4a, 0xff, 0xb9, 0x7f, 0x4a, 0xff, 0xba, 0x80, 0x4b, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xb9, 0x7f, 0x48, 0xff, 0xb5, 0x7b, 0x46, 0xff, 0xb5, 0x7b, 0x44, 0xff, 0xb5, 0x7a, 0x43, 0xff, 0xb7, 0x7b, 0x45, 0xff, 0xbb, 0x7f, 0x46, 0xff, 0xbb, 0x7f, 0x47, 0xff, 0xbc, 0x80, 0x48, 0xff, 0xbe, 0x82, 0x4a, 0xff, 0xc0, 0x83, 0x4d, 0xff, 0xc3, 0x84, 0x4d, 0xff, 0xc7, 0x85, 0x4d, 0xff, 0xc5, 0x85, 0x4d, 0xff, 0xc0, 0x82, 0x4b, 0xff, 0xc3, 0x83, 0x4c, 0xff, 0xc5, 0x85, 0x4d, 0xff, 0xc7, 0x88, 0x4e, 0xff, 0xcb, 0x88, 0x4f, 0xff, 0xcc, 0x88, 0x50, 0xff, 0xcb, 0x89, 0x51, 0xff, 0xc7, 0x86, 0x4d, 0xff, 0xc0, 0x84, 0x49, 0xff, 0xc2, 0x85, 0x4b, 0xff, 0xcc, 0x8a, 0x4f, 0xff, 0xd6, 0x90, 0x55, 0xff, 0xd7, 0x97, 0x5c, 0xff, 0xd7, 0x98, 0x5c, 0xff, 0xd7, 0x96, 0x5b, 0xff, 0xd7, 0x95, 0x59, 0xff, 0xd8, 0x93, 0x58, 0xff, 0xc9, 0x89, 0x50, 0xff, 0xb7, 0x7d, 0x44, 0xff, 0xb9, 0x7d, 0x45, 0xff, 0xb7, 0x7b, 0x44, 0xff, 0xb5, 0x79, 0x41, 0xff, 0xb3, 0x79, 0x40, 0xff, 0xb2, 0x77, 0x3e, 0xff, 0xb2, 0x76, 0x3e, 0xff, 0xb1, 0x75, 0x3e, 0xff, 0xaf, 0x73, 0x3d, 0xff, 0xae, 0x72, 0x3c, 0xff, 0xad, 0x72, 0x3a, 0xff, 0xab, 0x72, 0x3a, 0xff, 0xab, 0x70, 0x3a, 0xff, 0xab, 0x6e, 0x39, 0xff, 0xa9, 0x6e, 0x39, 0xff, 0xa8, 0x6d, 0x39, 0xff, 0xa8, 0x6d, 0x37, 0xff, 0xa7, 0x6c, 0x37, 0xff, 0xa5, 0x6a, 0x37, 0xff, 0xa5, 0x6a, 0x37, 0xff, 0xa5, 0x6a, 0x37, 0xff, 0xa5, 0x6a, 0x37, 0xff, 0xa3, 0x68, 0x36, 0xff, 0xa3, 0x68, 0x37, 0xff, 0xa3, 0x68, 0x37, 0xff, 0xa4, 0x68, 0x37, 0xff, 0xa3, 0x68, 0x37, 0xff, 0xa3, 0x69, 0x37, 0xff, 0xa2, 0x68, 0x36, 0xff, 0xa8, 0x6e, 0x3c, 0xff, 0xb5, 0x7b, 0x48, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb6, 0x7b, 0x46, 0xff, 0xb4, 0x79, 0x44, 0xff, 0xb1, 0x76, 0x40, 0xff, 0xb0, 0x74, 0x3f, 0xff, 0xb0, 0x74, 0x3f, 0xff, 0xae, 0x71, 0x3e, 0xff, 0xac, 0x6f, 0x3d, 0xff, 0xab, 0x6e, 0x3c, 0xff, 0xa9, 0x6c, 0x3b, 0xff, 0xa7, 0x6a, 0x39, 0xff, 0xa4, 0x67, 0x37, 0xff, 0xa6, 0x68, 0x39, 0xff, 0xb1, 0x74, 0x42, 0xff, 0xb1, 0x74, 0x44, 0xff, 0xad, 0x71, 0x3f, 0xff, 0xaa, 0x6e, 0x3d, 0xff, 0xa8, 0x6c, 0x3c, 0xff, 0xa6, 0x6a, 0x3a, 0xff, 0xa4, 0x68, 0x39, 0xff, 0xa2, 0x65, 0x38, 0xff, 0xa1, 0x64, 0x37, 0xff, 0xa0, 0x63, 0x37, 0xff, 0x9e, 0x62, 0x36, 0xff, 0xa0, 0x64, 0x38, 0xff, 0x9f, 0x63, 0x37, 0xff, 0x9d, 0x61, 0x36, 0xff, 0x9a, 0x5f, 0x35, 0xff, 0x9a, 0x5d, 0x34, 0xff, 0x99, 0x5c, 0x32, 0xff, 0x96, 0x5b, 0x31, 0xff, 0x95, 0x5a, 0x2f, 0xff, 0x94, 0x59, 0x2f, 0xff, 0x95, 0x5a, 0x2f, 0xff, 0x94, 0x59, 0x2e, 0xff, 0x93, 0x58, 0x2e, 0xff, 0x91, 0x57, 0x2e, 0xff, 0x91, 0x56, 0x2c, 0xff, 0x91, 0x57, 0x2e, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x90, 0x56, 0x2b, 0xff, 0x90, 0x56, 0x2c, 0xff, 0x8f, 0x56, 0x2c, 0xff, 0x90, 0x56, 0x2b, 0xff, 0x91, 0x56, 0x2b, 0xff, 0x92, 0x58, 0x2c, 0xff, 0x94, 0x59, 0x2e, 0xff, 0x94, 0x5a, 0x2e, 0xff, 0x96, 0x5a, 0x30, 0xff, 0x96, 0x5b, 0x32, 0xff, 0x98, 0x5b, 0x32, 0xff, 0x98, 0x5b, 0x32, 0xff, 0x98, 0x5b, 0x32, 0xff, 0x96, 0x5b, 0x32, 0xff, 0x97, 0x5b, 0x31, 0xff, 0x96, 0x5b, 0x31, 0xff, 0x96, 0x5b, 0x31, 0xff, 0x96, 0x5a, 0x31, 0xff, 0x97, 0x5b, 0x31, 0xff, 0x98, 0x5b, 0x32, 0xff, 0x99, 0x5d, 0x33, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x9a, 0x5e, 0x34, 0xff, 0x98, 0x5c, 0x31, 0xff, 0x96, 0x5b, 0x2f, 0xff, 0x98, 0x5c, 0x31, 0xff, 0x99, 0x5c, 0x32, 0xff, 0x9a, 0x5d, 0x32, 0xff, 0x9a, 0x5d, 0x33, 0xff, 0x9a, 0x5d, 0x33, 0xff, 0x9a, 0x5e, 0x33, 0xff, 0x9b, 0x60, 0x33, 0xff, 0x9c, 0x60, 0x35, 0xff, 0x9c, 0x60, 0x35, 0xff, 0x9d, 0x61, 0x36, 0xff, 0x9e, 0x62, 0x37, 0xff, 0x9e, 0x62, 0x36, 0xff, 0x9e, 0x62, 0x37, 0xff, 0xa0, 0x63, 0x37, 0xff, 0xa0, 0x64, 0x37, 0xff, 0xa0, 0x63, 0x37, 0xff, 0x9e, 0x63, 0x37, 0xff, 0x9e, 0x63, 0x37, 0xff, 0x9f, 0x64, 0x37, 0xff, 0xa0, 0x65, 0x38, 0xff, 0xa0, 0x65, 0x38, 0xff, 0xa1, 0x65, 0x39, 0xff, 0xa1, 0x66, 0x39, 0xff, 0xa1, 0x66, 0x39, 0xff, 0xa1, 0x67, 0x3a, 0xff, 0xa1, 0x68, 0x3a, 0xff, 0xa1, 0x67, 0x3a, 0xff, 0xa3, 0x68, 0x3b, 0xff, 0xa3, 0x69, 0x3b, 0xff, 0xa4, 0x69, 0x3a, 0xff, 0xa5, 0x6b, 0x3b, 0xff, 0xa6, 0x6c, 0x3c, 0xff, + 0xa5, 0x6a, 0x3b, 0xff, 0xa5, 0x6b, 0x3c, 0xff, 0xa6, 0x6c, 0x3b, 0xff, 0xa8, 0x6d, 0x3d, 0xff, 0xa2, 0x66, 0x39, 0xff, 0xa0, 0x64, 0x38, 0xff, 0xa1, 0x66, 0x38, 0xff, 0xa3, 0x66, 0x39, 0xff, 0xa4, 0x68, 0x3b, 0xff, 0xa4, 0x67, 0x3b, 0xff, 0xa3, 0x66, 0x3b, 0xff, 0xa4, 0x67, 0x3b, 0xff, 0xa5, 0x6b, 0x3c, 0xff, 0xa7, 0x6b, 0x3d, 0xff, 0xa7, 0x6c, 0x3e, 0xff, 0xa6, 0x6a, 0x3d, 0xff, 0xa5, 0x6a, 0x3c, 0xff, 0xa6, 0x6a, 0x3d, 0xff, 0xa6, 0x6b, 0x3e, 0xff, 0xa2, 0x67, 0x3b, 0xff, 0x9e, 0x64, 0x39, 0xff, 0x9f, 0x65, 0x38, 0xff, 0x9f, 0x66, 0x39, 0xff, 0x9f, 0x67, 0x39, 0xff, 0xa0, 0x67, 0x39, 0xff, 0xa1, 0x67, 0x3a, 0xff, 0xa2, 0x67, 0x3a, 0xff, 0xa4, 0x6a, 0x3b, 0xff, 0xa4, 0x69, 0x3b, 0xff, 0xa5, 0x6a, 0x3b, 0xff, 0xa4, 0x6a, 0x3b, 0xff, 0xab, 0x70, 0x40, 0xff, 0xbf, 0x82, 0x4e, 0xff, 0xc5, 0x85, 0x51, 0xff, 0xc4, 0x85, 0x50, 0xff, 0xc9, 0x89, 0x52, 0xff, 0xd8, 0x93, 0x57, 0xff, 0xd7, 0x92, 0x58, 0xff, 0xd6, 0x94, 0x57, 0xff, 0xd7, 0x99, 0x5c, 0xff, 0xd6, 0x9c, 0x61, 0xff, 0xd6, 0xa1, 0x65, 0xff, 0xd7, 0xa4, 0x68, 0xff, 0xd6, 0xa3, 0x65, 0xff, 0xd8, 0xa4, 0x63, 0xff, 0xd4, 0xa2, 0x63, 0xff, 0xb4, 0x87, 0x53, 0xff, 0x9e, 0x63, 0x37, 0xff, 0xa6, 0x6e, 0x3f, 0xff, 0xa6, 0x6d, 0x3f, 0xff, 0xa6, 0x6e, 0x3f, 0xff, 0xa5, 0x6d, 0x3f, 0xff, 0xa6, 0x6f, 0x3f, 0xff, 0xa6, 0x70, 0x3f, 0xff, 0xa6, 0x6f, 0x3f, 0xff, 0xa6, 0x6d, 0x3e, 0xff, 0xa6, 0x6e, 0x3e, 0xff, 0xa8, 0x70, 0x3f, 0xff, 0xa7, 0x70, 0x40, 0xff, 0xa8, 0x71, 0x3f, 0xff, 0xa7, 0x70, 0x40, 0xff, 0xa9, 0x73, 0x43, 0xff, 0xab, 0x75, 0x44, 0xff, 0xac, 0x76, 0x45, 0xff, 0xad, 0x76, 0x45, 0xff, 0xae, 0x76, 0x45, 0xff, 0xb0, 0x77, 0x45, 0xff, 0xb1, 0x79, 0x46, 0xff, 0xb2, 0x7a, 0x45, 0xff, 0xb3, 0x79, 0x46, 0xff, 0xb4, 0x7a, 0x47, 0xff, 0xb4, 0x7a, 0x47, 0xff, 0xb3, 0x79, 0x45, 0xff, 0xb2, 0x77, 0x44, 0xff, 0xb1, 0x76, 0x43, 0xff, 0xb3, 0x78, 0x43, 0xff, 0xb4, 0x79, 0x43, 0xff, 0xb5, 0x7a, 0x44, 0xff, 0xb7, 0x7b, 0x44, 0xff, 0xb9, 0x7d, 0x46, 0xff, 0xbc, 0x81, 0x49, 0xff, 0xbd, 0x81, 0x49, 0xff, 0xbf, 0x82, 0x49, 0xff, 0xc2, 0x82, 0x4a, 0xff, 0xc6, 0x85, 0x4c, 0xff, 0xca, 0x8a, 0x51, 0xff, 0xc8, 0x88, 0x50, 0xff, 0xc3, 0x83, 0x4d, 0xff, 0xc6, 0x87, 0x4e, 0xff, 0xca, 0x89, 0x50, 0xff, 0xcd, 0x8a, 0x52, 0xff, 0xcf, 0x8a, 0x51, 0xff, 0xd0, 0x8b, 0x52, 0xff, 0xca, 0x88, 0x4f, 0xff, 0xc1, 0x86, 0x4b, 0xff, 0xc3, 0x86, 0x4c, 0xff, 0xc3, 0x85, 0x4b, 0xff, 0xc5, 0x87, 0x4b, 0xff, 0xcf, 0x8f, 0x53, 0xff, 0xd7, 0x96, 0x5b, 0xff, 0xd6, 0x99, 0x5b, 0xff, 0xd7, 0x9a, 0x5d, 0xff, 0xd7, 0x99, 0x5c, 0xff, 0xd7, 0x97, 0x5a, 0xff, 0xd6, 0x94, 0x59, 0xff, 0xc7, 0x89, 0x4f, 0xff, 0xb8, 0x7e, 0x45, 0xff, 0xb9, 0x7c, 0x44, 0xff, 0xb7, 0x7b, 0x42, 0xff, 0xb6, 0x79, 0x41, 0xff, 0xb4, 0x79, 0x3f, 0xff, 0xb3, 0x78, 0x3e, 0xff, 0xb2, 0x76, 0x3e, 0xff, 0xb1, 0x74, 0x3c, 0xff, 0xb0, 0x74, 0x3c, 0xff, 0xae, 0x72, 0x3c, 0xff, 0xae, 0x72, 0x3a, 0xff, 0xac, 0x72, 0x39, 0xff, 0xab, 0x71, 0x39, 0xff, 0xab, 0x6f, 0x39, 0xff, 0xa9, 0x6d, 0x39, 0xff, 0xa8, 0x6d, 0x37, 0xff, 0xa9, 0x6c, 0x37, 0xff, 0xa7, 0x6b, 0x37, 0xff, 0xa6, 0x6b, 0x36, 0xff, 0xa5, 0x6a, 0x36, 0xff, 0xa5, 0x6a, 0x36, 0xff, 0xa4, 0x69, 0x36, 0xff, 0xa4, 0x69, 0x36, 0xff, 0xa4, 0x68, 0x36, 0xff, 0xa3, 0x68, 0x36, 0xff, 0xa4, 0x68, 0x37, 0xff, 0xa3, 0x67, 0x36, 0xff, 0xa2, 0x67, 0x35, 0xff, 0xa8, 0x6e, 0x3c, 0xff, 0xb6, 0x7c, 0x48, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xb9, 0x7f, 0x49, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb6, 0x7c, 0x47, 0xff, 0xb4, 0x79, 0x43, 0xff, 0xb2, 0x77, 0x40, 0xff, 0xb2, 0x75, 0x40, 0xff, 0xb2, 0x74, 0x3f, 0xff, 0xaf, 0x72, 0x3e, 0xff, 0xad, 0x72, 0x3d, 0xff, 0xac, 0x6f, 0x3c, 0xff, 0xaa, 0x6d, 0x3b, 0xff, 0xa7, 0x6b, 0x39, 0xff, 0xa9, 0x6c, 0x3b, 0xff, 0xb3, 0x77, 0x43, 0xff, 0xb4, 0x78, 0x45, 0xff, 0xaf, 0x73, 0x41, 0xff, 0xac, 0x6f, 0x3d, 0xff, 0xa9, 0x6d, 0x3c, 0xff, 0xa7, 0x6a, 0x3b, 0xff, 0xa5, 0x68, 0x3a, 0xff, 0xa4, 0x68, 0x39, 0xff, 0xa2, 0x66, 0x38, 0xff, 0xa0, 0x64, 0x37, 0xff, 0x9d, 0x61, 0x35, 0xff, 0xa1, 0x64, 0x38, 0xff, 0xa1, 0x63, 0x38, 0xff, 0x9e, 0x62, 0x36, 0xff, 0x9c, 0x61, 0x35, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0x9a, 0x5d, 0x34, 0xff, 0x97, 0x5a, 0x32, 0xff, 0x96, 0x5a, 0x2f, 0xff, 0x96, 0x5a, 0x2f, 0xff, 0x96, 0x5a, 0x2f, 0xff, 0x95, 0x59, 0x2f, 0xff, 0x92, 0x57, 0x2e, 0xff, 0x92, 0x58, 0x2e, 0xff, 0x92, 0x56, 0x2e, 0xff, 0x91, 0x57, 0x2c, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x91, 0x56, 0x2c, 0xff, 0x90, 0x56, 0x2b, 0xff, 0x90, 0x56, 0x2c, 0xff, 0x90, 0x56, 0x2b, 0xff, 0x91, 0x56, 0x2c, 0xff, 0x91, 0x56, 0x2c, 0xff, 0x91, 0x56, 0x2c, 0xff, 0x91, 0x56, 0x2c, 0xff, 0x91, 0x57, 0x2c, 0xff, 0x92, 0x57, 0x2c, 0xff, 0x90, 0x55, 0x2c, 0xff, 0x91, 0x57, 0x2c, 0xff, 0x92, 0x58, 0x2d, 0xff, 0x92, 0x58, 0x2d, 0xff, 0x93, 0x58, 0x2e, 0xff, 0x92, 0x57, 0x2d, 0xff, 0x93, 0x59, 0x2e, 0xff, 0x94, 0x59, 0x2f, 0xff, 0x95, 0x5a, 0x31, 0xff, 0x95, 0x5a, 0x31, 0xff, 0x97, 0x5c, 0x31, 0xff, 0x98, 0x5d, 0x34, 0xff, 0x98, 0x5c, 0x33, 0xff, 0x95, 0x5a, 0x30, 0xff, 0x95, 0x5a, 0x2f, 0xff, 0x96, 0x5b, 0x31, 0xff, 0x97, 0x5b, 0x30, 0xff, 0x98, 0x5c, 0x30, 0xff, 0x98, 0x5c, 0x31, 0xff, 0x98, 0x5d, 0x32, 0xff, 0x99, 0x5d, 0x31, 0xff, 0x9a, 0x5e, 0x33, 0xff, 0x9b, 0x5e, 0x34, 0xff, 0x9c, 0x60, 0x35, 0xff, 0x9c, 0x5f, 0x35, 0xff, 0x9d, 0x61, 0x36, 0xff, 0x9d, 0x60, 0x36, 0xff, 0x9d, 0x62, 0x36, 0xff, 0x9d, 0x62, 0x36, 0xff, 0xa0, 0x64, 0x37, 0xff, 0x9f, 0x63, 0x37, 0xff, 0x9e, 0x63, 0x37, 0xff, 0x9e, 0x63, 0x37, 0xff, 0x9e, 0x63, 0x37, 0xff, 0x9e, 0x63, 0x37, 0xff, 0x9f, 0x64, 0x38, 0xff, 0x9f, 0x64, 0x38, 0xff, 0x9f, 0x64, 0x37, 0xff, 0x9e, 0x64, 0x38, 0xff, 0xa0, 0x65, 0x38, 0xff, 0x9f, 0x65, 0x39, 0xff, 0x9f, 0x65, 0x38, 0xff, 0xa1, 0x66, 0x39, 0xff, 0xa0, 0x66, 0x39, 0xff, 0xa2, 0x68, 0x3a, 0xff, 0xa3, 0x69, 0x3a, 0xff, 0xa4, 0x69, 0x3b, 0xff, + 0xa3, 0x67, 0x39, 0xff, 0xa3, 0x67, 0x3b, 0xff, 0xa4, 0x68, 0x3b, 0xff, 0xa1, 0x66, 0x39, 0xff, 0x9e, 0x62, 0x37, 0xff, 0x9f, 0x64, 0x38, 0xff, 0xa0, 0x64, 0x38, 0xff, 0xa0, 0x65, 0x38, 0xff, 0xa1, 0x66, 0x39, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa1, 0x66, 0x39, 0xff, 0xa2, 0x66, 0x39, 0xff, 0xa3, 0x67, 0x3b, 0xff, 0xa3, 0x67, 0x3b, 0xff, 0xa3, 0x68, 0x3b, 0xff, 0xa4, 0x68, 0x3b, 0xff, 0xa4, 0x68, 0x3c, 0xff, 0xa5, 0x68, 0x3d, 0xff, 0xa5, 0x6a, 0x3e, 0xff, 0xa1, 0x67, 0x3b, 0xff, 0x9d, 0x64, 0x38, 0xff, 0x9e, 0x64, 0x38, 0xff, 0x9e, 0x63, 0x38, 0xff, 0x9f, 0x64, 0x38, 0xff, 0x9f, 0x65, 0x38, 0xff, 0x9f, 0x66, 0x39, 0xff, 0xa1, 0x67, 0x3a, 0xff, 0xa2, 0x68, 0x3a, 0xff, 0xa3, 0x68, 0x3b, 0xff, 0xa4, 0x69, 0x3b, 0xff, 0xa5, 0x6b, 0x3c, 0xff, 0xa4, 0x68, 0x3b, 0xff, 0xa4, 0x69, 0x3a, 0xff, 0xb4, 0x79, 0x48, 0xff, 0xc3, 0x85, 0x50, 0xff, 0xd4, 0x90, 0x57, 0xff, 0xd7, 0x94, 0x59, 0xff, 0xd7, 0x94, 0x59, 0xff, 0xd7, 0x95, 0x5a, 0xff, 0xd6, 0x95, 0x5a, 0xff, 0xd7, 0x9a, 0x5d, 0xff, 0xd6, 0x9e, 0x60, 0xff, 0xd7, 0xa3, 0x64, 0xff, 0xd8, 0xa6, 0x64, 0xff, 0xd6, 0xa2, 0x63, 0xff, 0xc4, 0x92, 0x57, 0xff, 0xa3, 0x69, 0x3c, 0xff, 0xa6, 0x6e, 0x40, 0xff, 0xa6, 0x6e, 0x40, 0xff, 0xa6, 0x6e, 0x3f, 0xff, 0xa5, 0x6d, 0x3e, 0xff, 0xa6, 0x6e, 0x3e, 0xff, 0xa6, 0x6e, 0x3e, 0xff, 0xa6, 0x6e, 0x3e, 0xff, 0xa7, 0x6f, 0x3e, 0xff, 0xa6, 0x6d, 0x3e, 0xff, 0xa6, 0x6c, 0x3d, 0xff, 0xa6, 0x6d, 0x3d, 0xff, 0xa6, 0x6d, 0x3d, 0xff, 0xa6, 0x6d, 0x3e, 0xff, 0xa6, 0x6d, 0x3e, 0xff, 0xa6, 0x6e, 0x3e, 0xff, 0xa9, 0x71, 0x3e, 0xff, 0xaa, 0x73, 0x41, 0xff, 0xab, 0x73, 0x42, 0xff, 0xaa, 0x71, 0x40, 0xff, 0xab, 0x72, 0x41, 0xff, 0xac, 0x72, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xad, 0x73, 0x42, 0xff, 0xae, 0x75, 0x43, 0xff, 0xb0, 0x76, 0x44, 0xff, 0xb1, 0x76, 0x44, 0xff, 0xb2, 0x78, 0x44, 0xff, 0xb3, 0x79, 0x45, 0xff, 0xb4, 0x7a, 0x45, 0xff, 0xb5, 0x7b, 0x44, 0xff, 0xb7, 0x7b, 0x44, 0xff, 0xb8, 0x7b, 0x44, 0xff, 0xb8, 0x7b, 0x44, 0xff, 0xba, 0x7e, 0x46, 0xff, 0xbd, 0x81, 0x49, 0xff, 0xbf, 0x82, 0x4a, 0xff, 0xc2, 0x82, 0x4b, 0xff, 0xc5, 0x85, 0x4c, 0xff, 0xc9, 0x89, 0x4f, 0xff, 0xc8, 0x88, 0x50, 0xff, 0xc7, 0x86, 0x50, 0xff, 0xcb, 0x89, 0x51, 0xff, 0xd0, 0x8b, 0x53, 0xff, 0xd3, 0x8d, 0x54, 0xff, 0xd1, 0x8d, 0x53, 0xff, 0xd1, 0x8d, 0x53, 0xff, 0xcf, 0x8d, 0x52, 0xff, 0xce, 0x8c, 0x52, 0xff, 0xcd, 0x8c, 0x50, 0xff, 0xca, 0x8b, 0x4f, 0xff, 0xc7, 0x87, 0x4d, 0xff, 0xc8, 0x89, 0x4f, 0xff, 0xd3, 0x93, 0x59, 0xff, 0xd7, 0x98, 0x5c, 0xff, 0xd6, 0x99, 0x5b, 0xff, 0xd8, 0x9a, 0x5e, 0xff, 0xd7, 0x9b, 0x5e, 0xff, 0xd7, 0x97, 0x5b, 0xff, 0xd3, 0x90, 0x57, 0xff, 0xc3, 0x86, 0x4c, 0xff, 0xb9, 0x7e, 0x45, 0xff, 0xb9, 0x7d, 0x44, 0xff, 0xb9, 0x7b, 0x43, 0xff, 0xb7, 0x7b, 0x41, 0xff, 0xb5, 0x79, 0x3f, 0xff, 0xb4, 0x78, 0x3f, 0xff, 0xb2, 0x76, 0x3e, 0xff, 0xb0, 0x75, 0x3d, 0xff, 0xb0, 0x74, 0x3b, 0xff, 0xaf, 0x73, 0x3b, 0xff, 0xad, 0x73, 0x3a, 0xff, 0xac, 0x71, 0x39, 0xff, 0xab, 0x70, 0x39, 0xff, 0xaa, 0x70, 0x38, 0xff, 0xaa, 0x6f, 0x38, 0xff, 0xa9, 0x6d, 0x37, 0xff, 0xa7, 0x6c, 0x38, 0xff, 0xa7, 0x6b, 0x38, 0xff, 0xa7, 0x6b, 0x37, 0xff, 0xa7, 0x6a, 0x36, 0xff, 0xa5, 0x69, 0x36, 0xff, 0xa5, 0x69, 0x37, 0xff, 0xa4, 0x69, 0x36, 0xff, 0xa4, 0x69, 0x36, 0xff, 0xa4, 0x69, 0x37, 0xff, 0xa4, 0x68, 0x36, 0xff, 0xa3, 0x67, 0x35, 0xff, 0xa6, 0x6b, 0x3a, 0xff, 0xb6, 0x7b, 0x47, 0xff, 0xbc, 0x82, 0x4a, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xb9, 0x81, 0x4d, 0xff, 0xb7, 0x7f, 0x4c, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb5, 0x79, 0x43, 0xff, 0xb4, 0x78, 0x43, 0xff, 0xb4, 0x77, 0x43, 0xff, 0xb2, 0x75, 0x40, 0xff, 0xb1, 0x74, 0x3f, 0xff, 0xb0, 0x73, 0x3e, 0xff, 0xae, 0x71, 0x3d, 0xff, 0xac, 0x6e, 0x3b, 0xff, 0xae, 0x71, 0x3e, 0xff, 0xb6, 0x79, 0x45, 0xff, 0xb7, 0x7b, 0x47, 0xff, 0xb2, 0x75, 0x43, 0xff, 0xae, 0x70, 0x3f, 0xff, 0xab, 0x6e, 0x3d, 0xff, 0xa9, 0x6c, 0x3b, 0xff, 0xa7, 0x6a, 0x3a, 0xff, 0xa5, 0x69, 0x39, 0xff, 0xa4, 0x68, 0x38, 0xff, 0xa2, 0x65, 0x37, 0xff, 0x9f, 0x62, 0x36, 0xff, 0xa2, 0x65, 0x37, 0xff, 0xa2, 0x65, 0x38, 0xff, 0xa0, 0x62, 0x37, 0xff, 0x9e, 0x62, 0x36, 0xff, 0x9d, 0x61, 0x36, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0x98, 0x5d, 0x32, 0xff, 0x98, 0x5c, 0x31, 0xff, 0x96, 0x5b, 0x30, 0xff, 0x97, 0x5a, 0x30, 0xff, 0x95, 0x58, 0x2f, 0xff, 0x95, 0x58, 0x2e, 0xff, 0x94, 0x58, 0x2e, 0xff, 0x91, 0x57, 0x2d, 0xff, 0x91, 0x57, 0x2d, 0xff, 0x91, 0x56, 0x2c, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x90, 0x56, 0x2b, 0xff, 0x8f, 0x55, 0x2b, 0xff, 0x90, 0x56, 0x2b, 0xff, 0x90, 0x55, 0x2b, 0xff, 0x90, 0x56, 0x2c, 0xff, 0x90, 0x56, 0x2b, 0xff, 0x91, 0x56, 0x2c, 0xff, 0x91, 0x57, 0x2d, 0xff, 0x90, 0x56, 0x2b, 0xff, 0x90, 0x56, 0x2c, 0xff, 0x92, 0x56, 0x2e, 0xff, 0x91, 0x57, 0x2d, 0xff, 0x92, 0x57, 0x2d, 0xff, 0x92, 0x57, 0x2e, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x92, 0x57, 0x2e, 0xff, 0x93, 0x58, 0x2f, 0xff, 0x94, 0x59, 0x2f, 0xff, 0x94, 0x5a, 0x30, 0xff, 0x96, 0x5a, 0x32, 0xff, 0x97, 0x5b, 0x32, 0xff, 0x96, 0x5b, 0x32, 0xff, 0x92, 0x58, 0x2f, 0xff, 0x94, 0x59, 0x2f, 0xff, 0x94, 0x59, 0x2f, 0xff, 0x95, 0x59, 0x30, 0xff, 0x95, 0x59, 0x2f, 0xff, 0x97, 0x5c, 0x30, 0xff, 0x97, 0x5c, 0x30, 0xff, 0x97, 0x5c, 0x31, 0xff, 0x98, 0x5d, 0x32, 0xff, 0x98, 0x5d, 0x32, 0xff, 0x9a, 0x5e, 0x34, 0xff, 0x9b, 0x5e, 0x35, 0xff, 0x9b, 0x61, 0x36, 0xff, 0x9c, 0x60, 0x36, 0xff, 0x9c, 0x60, 0x36, 0xff, 0x9c, 0x60, 0x36, 0xff, 0x9e, 0x62, 0x37, 0xff, 0x9d, 0x62, 0x37, 0xff, 0x9d, 0x62, 0x36, 0xff, 0x9d, 0x63, 0x37, 0xff, 0x9c, 0x62, 0x37, 0xff, 0x9c, 0x62, 0x36, 0xff, 0x9c, 0x62, 0x36, 0xff, 0x9d, 0x61, 0x36, 0xff, 0x9d, 0x61, 0x36, 0xff, 0x9d, 0x61, 0x36, 0xff, 0x9d, 0x62, 0x37, 0xff, 0x9e, 0x64, 0x38, 0xff, 0x9f, 0x64, 0x39, 0xff, 0x9f, 0x65, 0x38, 0xff, 0x9f, 0x64, 0x38, 0xff, 0xa1, 0x66, 0x39, 0xff, 0xa1, 0x66, 0x39, 0xff, 0xa2, 0x67, 0x39, 0xff, + 0xa1, 0x66, 0x39, 0xff, 0xa2, 0x67, 0x3a, 0xff, 0x9f, 0x63, 0x38, 0xff, 0x9c, 0x5f, 0x36, 0xff, 0x9c, 0x60, 0x37, 0xff, 0x9d, 0x61, 0x37, 0xff, 0x9e, 0x62, 0x37, 0xff, 0x9e, 0x62, 0x37, 0xff, 0xa0, 0x64, 0x39, 0xff, 0xa0, 0x65, 0x38, 0xff, 0xa0, 0x63, 0x38, 0xff, 0xa1, 0x66, 0x39, 0xff, 0xa1, 0x66, 0x39, 0xff, 0xa1, 0x66, 0x3b, 0xff, 0xa2, 0x66, 0x3a, 0xff, 0xa3, 0x67, 0x3a, 0xff, 0xa3, 0x68, 0x3b, 0xff, 0xa4, 0x68, 0x3c, 0xff, 0xa6, 0x69, 0x3d, 0xff, 0xa1, 0x66, 0x3a, 0xff, 0x9b, 0x62, 0x37, 0xff, 0x9c, 0x62, 0x38, 0xff, 0x9d, 0x63, 0x38, 0xff, 0x9c, 0x63, 0x38, 0xff, 0x9f, 0x64, 0x39, 0xff, 0x9f, 0x64, 0x39, 0xff, 0xa1, 0x67, 0x3a, 0xff, 0xa1, 0x67, 0x3a, 0xff, 0xa2, 0x68, 0x3a, 0xff, 0xa2, 0x68, 0x3a, 0xff, 0xa3, 0x69, 0x3b, 0xff, 0xa5, 0x6a, 0x3c, 0xff, 0xa5, 0x69, 0x3c, 0xff, 0xa4, 0x69, 0x3d, 0xff, 0xa5, 0x6a, 0x3c, 0xff, 0xc4, 0x8b, 0x55, 0xff, 0xd8, 0x97, 0x5b, 0xff, 0xd9, 0x97, 0x5d, 0xff, 0xd7, 0x94, 0x5b, 0xff, 0xd7, 0x98, 0x5d, 0xff, 0xd7, 0x97, 0x5c, 0xff, 0xd7, 0x9a, 0x5e, 0xff, 0xd7, 0x9e, 0x60, 0xff, 0xd7, 0x9f, 0x62, 0xff, 0xcd, 0x9a, 0x5e, 0xff, 0xa9, 0x73, 0x44, 0xff, 0xa5, 0x6c, 0x3f, 0xff, 0xa5, 0x6e, 0x41, 0xff, 0xa7, 0x71, 0x43, 0xff, 0xa6, 0x6e, 0x3f, 0xff, 0xa6, 0x6e, 0x3e, 0xff, 0xa6, 0x6d, 0x3e, 0xff, 0xa6, 0x6e, 0x3e, 0xff, 0xa6, 0x6e, 0x3e, 0xff, 0xa6, 0x6f, 0x3e, 0xff, 0xa6, 0x6e, 0x3d, 0xff, 0xa6, 0x6c, 0x3d, 0xff, 0xa6, 0x6c, 0x3d, 0xff, 0xa6, 0x6c, 0x3c, 0xff, 0xa6, 0x6d, 0x3d, 0xff, 0xa5, 0x6c, 0x3d, 0xff, 0xa5, 0x6d, 0x3c, 0xff, 0xa6, 0x6d, 0x3d, 0xff, 0xa9, 0x70, 0x3e, 0xff, 0xaa, 0x71, 0x3e, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xaa, 0x71, 0x3f, 0xff, 0xac, 0x72, 0x40, 0xff, 0xad, 0x72, 0x40, 0xff, 0xad, 0x74, 0x40, 0xff, 0xaf, 0x75, 0x43, 0xff, 0xb1, 0x76, 0x44, 0xff, 0xb1, 0x76, 0x45, 0xff, 0xb2, 0x78, 0x45, 0xff, 0xb3, 0x79, 0x45, 0xff, 0xb5, 0x79, 0x45, 0xff, 0xb6, 0x7a, 0x45, 0xff, 0xb6, 0x7b, 0x45, 0xff, 0xb7, 0x7b, 0x44, 0xff, 0xb8, 0x7b, 0x43, 0xff, 0xb8, 0x7c, 0x42, 0xff, 0xbb, 0x7e, 0x46, 0xff, 0xbf, 0x81, 0x4a, 0xff, 0xc1, 0x82, 0x4a, 0xff, 0xc3, 0x84, 0x4a, 0xff, 0xc6, 0x86, 0x4c, 0xff, 0xc8, 0x87, 0x4e, 0xff, 0xcb, 0x89, 0x50, 0xff, 0xd0, 0x8b, 0x53, 0xff, 0xd2, 0x8d, 0x54, 0xff, 0xd2, 0x8f, 0x54, 0xff, 0xd6, 0x92, 0x56, 0xff, 0xd7, 0x95, 0x58, 0xff, 0xd7, 0x95, 0x5a, 0xff, 0xd7, 0x94, 0x59, 0xff, 0xd6, 0x92, 0x55, 0xff, 0xd4, 0x8f, 0x54, 0xff, 0xce, 0x8c, 0x50, 0xff, 0xcd, 0x8c, 0x4f, 0xff, 0xd3, 0x90, 0x56, 0xff, 0xd7, 0x96, 0x5b, 0xff, 0xd7, 0x9a, 0x5a, 0xff, 0xd7, 0x9a, 0x5b, 0xff, 0xd6, 0x98, 0x5a, 0xff, 0xd8, 0x98, 0x5b, 0xff, 0xd9, 0x97, 0x5b, 0xff, 0xcd, 0x8e, 0x53, 0xff, 0xbd, 0x83, 0x49, 0xff, 0xbb, 0x81, 0x46, 0xff, 0xbb, 0x7f, 0x45, 0xff, 0xba, 0x7d, 0x43, 0xff, 0xb8, 0x7b, 0x41, 0xff, 0xb5, 0x7a, 0x3e, 0xff, 0xb4, 0x78, 0x3e, 0xff, 0xb2, 0x76, 0x3d, 0xff, 0xb2, 0x76, 0x3b, 0xff, 0xb0, 0x74, 0x3b, 0xff, 0xaf, 0x73, 0x3b, 0xff, 0xaf, 0x74, 0x3a, 0xff, 0xad, 0x72, 0x39, 0xff, 0xab, 0x70, 0x38, 0xff, 0xaa, 0x6f, 0x38, 0xff, 0xaa, 0x6f, 0x38, 0xff, 0xaa, 0x6e, 0x37, 0xff, 0xa8, 0x6d, 0x37, 0xff, 0xa7, 0x6c, 0x37, 0xff, 0xa6, 0x6b, 0x37, 0xff, 0xa6, 0x6b, 0x37, 0xff, 0xa6, 0x69, 0x37, 0xff, 0xa6, 0x69, 0x36, 0xff, 0xa4, 0x69, 0x37, 0xff, 0xa4, 0x6a, 0x37, 0xff, 0xa4, 0x69, 0x37, 0xff, 0xa3, 0x68, 0x37, 0xff, 0xa2, 0x66, 0x35, 0xff, 0xb5, 0x78, 0x44, 0xff, 0xc0, 0x83, 0x4e, 0xff, 0xbc, 0x82, 0x4b, 0xff, 0xba, 0x82, 0x4d, 0xff, 0xb9, 0x80, 0x4f, 0xff, 0xb7, 0x7f, 0x4c, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb6, 0x7b, 0x44, 0xff, 0xb6, 0x79, 0x44, 0xff, 0xb5, 0x79, 0x43, 0xff, 0xb4, 0x78, 0x42, 0xff, 0xb3, 0x77, 0x41, 0xff, 0xb3, 0x76, 0x40, 0xff, 0xb0, 0x74, 0x3e, 0xff, 0xb2, 0x76, 0x42, 0xff, 0xb9, 0x7c, 0x48, 0xff, 0xba, 0x7e, 0x4a, 0xff, 0xb5, 0x79, 0x46, 0xff, 0xb0, 0x74, 0x40, 0xff, 0xae, 0x70, 0x3e, 0xff, 0xab, 0x6e, 0x3d, 0xff, 0xa9, 0x6c, 0x3b, 0xff, 0xa7, 0x69, 0x3a, 0xff, 0xa5, 0x68, 0x39, 0xff, 0xa3, 0x67, 0x38, 0xff, 0xa1, 0x64, 0x37, 0xff, 0xa2, 0x64, 0x38, 0xff, 0xa3, 0x66, 0x38, 0xff, 0xa1, 0x65, 0x38, 0xff, 0xa0, 0x63, 0x37, 0xff, 0x9f, 0x61, 0x36, 0xff, 0x9d, 0x61, 0x35, 0xff, 0x9b, 0x60, 0x35, 0xff, 0x9a, 0x5d, 0x34, 0xff, 0x98, 0x5c, 0x32, 0xff, 0x98, 0x5c, 0x30, 0xff, 0x97, 0x5a, 0x2e, 0xff, 0x95, 0x58, 0x2f, 0xff, 0x94, 0x58, 0x2e, 0xff, 0x92, 0x58, 0x2e, 0xff, 0x91, 0x57, 0x2e, 0xff, 0x90, 0x57, 0x2d, 0xff, 0x91, 0x57, 0x2d, 0xff, 0x8f, 0x57, 0x2d, 0xff, 0x90, 0x56, 0x2d, 0xff, 0x8f, 0x55, 0x2b, 0xff, 0x90, 0x55, 0x2c, 0xff, 0x90, 0x55, 0x2d, 0xff, 0x90, 0x56, 0x2d, 0xff, 0x90, 0x56, 0x2b, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x90, 0x55, 0x2b, 0xff, 0x90, 0x57, 0x2d, 0xff, 0x90, 0x56, 0x2c, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x90, 0x56, 0x2d, 0xff, 0x90, 0x56, 0x2c, 0xff, 0x91, 0x57, 0x2e, 0xff, 0x93, 0x58, 0x2e, 0xff, 0x92, 0x57, 0x2e, 0xff, 0x94, 0x58, 0x2f, 0xff, 0x95, 0x59, 0x30, 0xff, 0x97, 0x5a, 0x31, 0xff, 0x94, 0x58, 0x30, 0xff, 0x91, 0x57, 0x2d, 0xff, 0x92, 0x57, 0x2e, 0xff, 0x93, 0x58, 0x2e, 0xff, 0x94, 0x59, 0x2e, 0xff, 0x94, 0x59, 0x30, 0xff, 0x96, 0x59, 0x30, 0xff, 0x96, 0x5a, 0x31, 0xff, 0x96, 0x5c, 0x31, 0xff, 0x97, 0x5c, 0x31, 0xff, 0x97, 0x5c, 0x33, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x9a, 0x5e, 0x34, 0xff, 0x9a, 0x5f, 0x35, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x9b, 0x5e, 0x36, 0xff, 0x9c, 0x60, 0x36, 0xff, 0x9b, 0x61, 0x36, 0xff, 0x9b, 0x61, 0x36, 0xff, 0x9c, 0x61, 0x36, 0xff, 0x9a, 0x5f, 0x36, 0xff, 0x9b, 0x60, 0x36, 0xff, 0x9b, 0x60, 0x36, 0xff, 0x9c, 0x61, 0x36, 0xff, 0x9c, 0x61, 0x36, 0xff, 0x9c, 0x61, 0x36, 0xff, 0x9d, 0x61, 0x37, 0xff, 0x9d, 0x63, 0x38, 0xff, 0x9d, 0x62, 0x37, 0xff, 0x9e, 0x64, 0x38, 0xff, 0x9e, 0x65, 0x38, 0xff, 0x9f, 0x64, 0x38, 0xff, 0xa0, 0x65, 0x38, 0xff, 0xa0, 0x66, 0x39, 0xff, + 0x9f, 0x63, 0x38, 0xff, 0x9d, 0x62, 0x37, 0xff, 0x9b, 0x5f, 0x36, 0xff, 0x9b, 0x5e, 0x36, 0xff, 0x9b, 0x5f, 0x36, 0xff, 0x9b, 0x5e, 0x36, 0xff, 0x9b, 0x5f, 0x36, 0xff, 0x9d, 0x61, 0x37, 0xff, 0x9f, 0x61, 0x38, 0xff, 0x9f, 0x63, 0x38, 0xff, 0x9f, 0x64, 0x38, 0xff, 0x9f, 0x62, 0x38, 0xff, 0xa0, 0x63, 0x38, 0xff, 0xa0, 0x64, 0x39, 0xff, 0xa1, 0x65, 0x39, 0xff, 0xa0, 0x65, 0x39, 0xff, 0xa2, 0x66, 0x3a, 0xff, 0xa3, 0x67, 0x3b, 0xff, 0xa5, 0x68, 0x3c, 0xff, 0x9f, 0x65, 0x39, 0xff, 0x9a, 0x61, 0x37, 0xff, 0x9b, 0x61, 0x37, 0xff, 0x9b, 0x61, 0x37, 0xff, 0x9b, 0x62, 0x38, 0xff, 0x9c, 0x62, 0x38, 0xff, 0x9e, 0x65, 0x39, 0xff, 0xa0, 0x66, 0x39, 0xff, 0xa0, 0x66, 0x3a, 0xff, 0xa1, 0x67, 0x3a, 0xff, 0xa1, 0x66, 0x3a, 0xff, 0xa3, 0x68, 0x3b, 0xff, 0xa4, 0x69, 0x3b, 0xff, 0xa3, 0x68, 0x3b, 0xff, 0xa3, 0x68, 0x3b, 0xff, 0xa5, 0x6b, 0x3d, 0xff, 0xb7, 0x81, 0x4d, 0xff, 0xba, 0x85, 0x4d, 0xff, 0xca, 0x92, 0x5a, 0xff, 0xd9, 0x9b, 0x5f, 0xff, 0xd7, 0x99, 0x5d, 0xff, 0xd9, 0x9d, 0x60, 0xff, 0xd7, 0x99, 0x5d, 0xff, 0xd7, 0x9d, 0x60, 0xff, 0xd2, 0x9b, 0x5e, 0xff, 0xb5, 0x83, 0x4f, 0xff, 0xa1, 0x68, 0x3d, 0xff, 0xa7, 0x70, 0x44, 0xff, 0xa7, 0x70, 0x42, 0xff, 0xa8, 0x72, 0x41, 0xff, 0xa6, 0x6e, 0x40, 0xff, 0xa6, 0x6d, 0x3e, 0xff, 0xa6, 0x6d, 0x3e, 0xff, 0xa6, 0x6f, 0x3e, 0xff, 0xa5, 0x6e, 0x3d, 0xff, 0xa5, 0x6f, 0x3d, 0xff, 0xa6, 0x6e, 0x3e, 0xff, 0xa5, 0x6c, 0x3d, 0xff, 0xa5, 0x6b, 0x3c, 0xff, 0xa5, 0x6c, 0x3d, 0xff, 0xa6, 0x6d, 0x3c, 0xff, 0xa5, 0x6c, 0x3d, 0xff, 0xa6, 0x6d, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa8, 0x6f, 0x3d, 0xff, 0xa9, 0x70, 0x3e, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xab, 0x70, 0x3e, 0xff, 0xac, 0x72, 0x40, 0xff, 0xac, 0x73, 0x41, 0xff, 0xae, 0x74, 0x42, 0xff, 0xaf, 0x74, 0x43, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xb1, 0x78, 0x45, 0xff, 0xb2, 0x79, 0x46, 0xff, 0xb3, 0x78, 0x45, 0xff, 0xb5, 0x7a, 0x46, 0xff, 0xb6, 0x7b, 0x45, 0xff, 0xb7, 0x7c, 0x43, 0xff, 0xb8, 0x7b, 0x42, 0xff, 0xb9, 0x7c, 0x43, 0xff, 0xba, 0x7d, 0x45, 0xff, 0xbb, 0x7e, 0x46, 0xff, 0xbc, 0x80, 0x47, 0xff, 0xc1, 0x83, 0x4b, 0xff, 0xc6, 0x84, 0x4c, 0xff, 0xc8, 0x85, 0x4c, 0xff, 0xc8, 0x86, 0x4e, 0xff, 0xc9, 0x87, 0x4f, 0xff, 0xcb, 0x89, 0x4f, 0xff, 0xd1, 0x8e, 0x51, 0xff, 0xd7, 0x93, 0x56, 0xff, 0xd7, 0x98, 0x5b, 0xff, 0xd7, 0x9b, 0x5e, 0xff, 0xd6, 0x9d, 0x61, 0xff, 0xd7, 0x9d, 0x61, 0xff, 0xd6, 0x9c, 0x5e, 0xff, 0xd7, 0x99, 0x5b, 0xff, 0xd7, 0x96, 0x57, 0xff, 0xd5, 0x91, 0x53, 0xff, 0xd6, 0x91, 0x56, 0xff, 0xd7, 0x93, 0x58, 0xff, 0xd7, 0x97, 0x59, 0xff, 0xd8, 0x99, 0x5b, 0xff, 0xd8, 0x94, 0x57, 0xff, 0xd8, 0x98, 0x5a, 0xff, 0xd8, 0x9c, 0x5e, 0xff, 0xda, 0x9a, 0x5d, 0xff, 0xcb, 0x8d, 0x51, 0xff, 0xba, 0x81, 0x45, 0xff, 0xbc, 0x82, 0x47, 0xff, 0xbb, 0x80, 0x44, 0xff, 0xb9, 0x7e, 0x42, 0xff, 0xb7, 0x7b, 0x41, 0xff, 0xb7, 0x7b, 0x3f, 0xff, 0xb5, 0x78, 0x3d, 0xff, 0xb4, 0x77, 0x3b, 0xff, 0xb2, 0x77, 0x3c, 0xff, 0xb1, 0x75, 0x3b, 0xff, 0xb0, 0x74, 0x3a, 0xff, 0xaf, 0x73, 0x3a, 0xff, 0xae, 0x73, 0x3a, 0xff, 0xac, 0x72, 0x3a, 0xff, 0xac, 0x70, 0x38, 0xff, 0xac, 0x6f, 0x37, 0xff, 0xab, 0x6f, 0x37, 0xff, 0xa9, 0x6d, 0x37, 0xff, 0xa8, 0x6d, 0x37, 0xff, 0xa7, 0x6b, 0x36, 0xff, 0xa7, 0x6a, 0x36, 0xff, 0xa6, 0x69, 0x36, 0xff, 0xa6, 0x6a, 0x37, 0xff, 0xa5, 0x69, 0x36, 0xff, 0xa5, 0x6a, 0x37, 0xff, 0xa5, 0x68, 0x37, 0xff, 0xa0, 0x64, 0x33, 0xff, 0xb0, 0x73, 0x40, 0xff, 0xbf, 0x83, 0x4d, 0xff, 0xbe, 0x84, 0x4c, 0xff, 0xbc, 0x83, 0x4e, 0xff, 0xba, 0x82, 0x4f, 0xff, 0xb9, 0x81, 0x4f, 0xff, 0xb8, 0x80, 0x4c, 0xff, 0xb9, 0x80, 0x48, 0xff, 0xb8, 0x7d, 0x47, 0xff, 0xb8, 0x7c, 0x46, 0xff, 0xb9, 0x7c, 0x45, 0xff, 0xb9, 0x7c, 0x45, 0xff, 0xb7, 0x7b, 0x45, 0xff, 0xb4, 0x79, 0x45, 0xff, 0xb6, 0x7b, 0x47, 0xff, 0xbd, 0x81, 0x4d, 0xff, 0xbe, 0x82, 0x4c, 0xff, 0xba, 0x7d, 0x49, 0xff, 0xb5, 0x77, 0x44, 0xff, 0xb0, 0x73, 0x3f, 0xff, 0xad, 0x70, 0x3d, 0xff, 0xaa, 0x6d, 0x3c, 0xff, 0xa8, 0x6b, 0x3a, 0xff, 0xa6, 0x69, 0x39, 0xff, 0xa5, 0x68, 0x38, 0xff, 0xa2, 0x65, 0x37, 0xff, 0xa2, 0x65, 0x38, 0xff, 0xa5, 0x67, 0x39, 0xff, 0xa4, 0x67, 0x39, 0xff, 0xa2, 0x66, 0x38, 0xff, 0xa0, 0x64, 0x37, 0xff, 0x9f, 0x62, 0x36, 0xff, 0x9f, 0x61, 0x36, 0xff, 0x9b, 0x60, 0x36, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0x9a, 0x5d, 0x33, 0xff, 0x97, 0x5b, 0x30, 0xff, 0x96, 0x5a, 0x2f, 0xff, 0x95, 0x58, 0x2f, 0xff, 0x94, 0x59, 0x2e, 0xff, 0x92, 0x58, 0x2e, 0xff, 0x92, 0x57, 0x2e, 0xff, 0x92, 0x57, 0x2e, 0xff, 0x90, 0x56, 0x2d, 0xff, 0x90, 0x55, 0x2c, 0xff, 0x90, 0x56, 0x2d, 0xff, 0x91, 0x55, 0x2c, 0xff, 0x90, 0x56, 0x2b, 0xff, 0x8f, 0x55, 0x2b, 0xff, 0x90, 0x56, 0x2d, 0xff, 0x91, 0x55, 0x2c, 0xff, 0x90, 0x55, 0x2d, 0xff, 0x90, 0x56, 0x2b, 0xff, 0x90, 0x55, 0x2d, 0xff, 0x90, 0x56, 0x2d, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x91, 0x55, 0x2c, 0xff, 0x91, 0x55, 0x2c, 0xff, 0x91, 0x57, 0x2e, 0xff, 0x91, 0x57, 0x2e, 0xff, 0x92, 0x58, 0x2e, 0xff, 0x93, 0x59, 0x30, 0xff, 0x95, 0x59, 0x32, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x90, 0x56, 0x2d, 0xff, 0x90, 0x55, 0x2c, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x92, 0x57, 0x2e, 0xff, 0x94, 0x57, 0x2e, 0xff, 0x93, 0x59, 0x30, 0xff, 0x94, 0x59, 0x30, 0xff, 0x95, 0x5a, 0x30, 0xff, 0x95, 0x5a, 0x31, 0xff, 0x97, 0x5c, 0x32, 0xff, 0x97, 0x5b, 0x32, 0xff, 0x98, 0x5d, 0x34, 0xff, 0x98, 0x5d, 0x34, 0xff, 0x98, 0x5c, 0x33, 0xff, 0x99, 0x5e, 0x34, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x9a, 0x5f, 0x36, 0xff, 0x99, 0x5d, 0x34, 0xff, 0x99, 0x5e, 0x34, 0xff, 0x9a, 0x60, 0x36, 0xff, 0x99, 0x5e, 0x34, 0xff, 0x99, 0x5d, 0x33, 0xff, 0x99, 0x5e, 0x34, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x99, 0x5e, 0x35, 0xff, 0x9a, 0x5f, 0x35, 0xff, 0x9a, 0x60, 0x36, 0xff, 0x9d, 0x63, 0x37, 0xff, 0x9c, 0x61, 0x37, 0xff, 0x9d, 0x61, 0x37, 0xff, 0x9e, 0x63, 0x37, 0xff, 0x9e, 0x65, 0x38, 0xff, 0x9e, 0x62, 0x37, 0xff, 0x9f, 0x64, 0x38, 0xff, + 0x9b, 0x5f, 0x36, 0xff, 0x9b, 0x60, 0x35, 0xff, 0x9b, 0x5f, 0x36, 0xff, 0x9c, 0x5f, 0x36, 0xff, 0x9e, 0x61, 0x37, 0xff, 0x9f, 0x63, 0x38, 0xff, 0xa2, 0x66, 0x39, 0xff, 0xa3, 0x66, 0x3a, 0xff, 0xa4, 0x68, 0x3b, 0xff, 0xa5, 0x69, 0x3c, 0xff, 0xa5, 0x68, 0x3c, 0xff, 0xa6, 0x69, 0x3c, 0xff, 0xa7, 0x69, 0x3d, 0xff, 0xa7, 0x6a, 0x3d, 0xff, 0xa7, 0x6b, 0x3d, 0xff, 0xa7, 0x6b, 0x3e, 0xff, 0xa8, 0x6b, 0x3e, 0xff, 0xa9, 0x6d, 0x40, 0xff, 0xab, 0x6e, 0x40, 0xff, 0xad, 0x73, 0x43, 0xff, 0xae, 0x73, 0x44, 0xff, 0xad, 0x73, 0x44, 0xff, 0xac, 0x70, 0x41, 0xff, 0xa7, 0x6c, 0x3f, 0xff, 0xa3, 0x67, 0x3c, 0xff, 0xa1, 0x67, 0x3c, 0xff, 0xa1, 0x67, 0x3b, 0xff, 0xa0, 0x66, 0x3a, 0xff, 0xa0, 0x66, 0x39, 0xff, 0xa0, 0x65, 0x3a, 0xff, 0xa1, 0x67, 0x3a, 0xff, 0xa3, 0x69, 0x3b, 0xff, 0xa2, 0x68, 0x3b, 0xff, 0xa1, 0x68, 0x3b, 0xff, 0xa9, 0x71, 0x42, 0xff, 0xb6, 0x82, 0x4d, 0xff, 0xb7, 0x80, 0x4c, 0xff, 0xb8, 0x83, 0x4e, 0xff, 0xbd, 0x89, 0x53, 0xff, 0xce, 0x96, 0x5c, 0xff, 0xd5, 0x99, 0x5f, 0xff, 0xd8, 0xa0, 0x62, 0xff, 0xd9, 0x9f, 0x62, 0xff, 0xc9, 0x95, 0x5d, 0xff, 0xa1, 0x69, 0x3a, 0xff, 0xa7, 0x6f, 0x40, 0xff, 0xa7, 0x6f, 0x40, 0xff, 0xa7, 0x6e, 0x3f, 0xff, 0xa7, 0x6f, 0x3f, 0xff, 0xa7, 0x70, 0x3e, 0xff, 0xa6, 0x6e, 0x3e, 0xff, 0xa6, 0x6e, 0x3e, 0xff, 0xa6, 0x6f, 0x3e, 0xff, 0xa6, 0x6f, 0x3f, 0xff, 0xa6, 0x70, 0x3e, 0xff, 0xa6, 0x6f, 0x3e, 0xff, 0xa5, 0x6c, 0x3d, 0xff, 0xa5, 0x6b, 0x3d, 0xff, 0xa6, 0x6c, 0x3d, 0xff, 0xa6, 0x6d, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa6, 0x6e, 0x3d, 0xff, 0xa7, 0x6e, 0x3d, 0xff, 0xa8, 0x6f, 0x3e, 0xff, 0xa8, 0x6f, 0x3e, 0xff, 0xaa, 0x70, 0x3f, 0xff, 0xab, 0x71, 0x3f, 0xff, 0xac, 0x71, 0x3f, 0xff, 0xad, 0x73, 0x41, 0xff, 0xae, 0x74, 0x41, 0xff, 0xaf, 0x75, 0x43, 0xff, 0xaf, 0x76, 0x44, 0xff, 0xb1, 0x77, 0x45, 0xff, 0xb2, 0x78, 0x46, 0xff, 0xb3, 0x7a, 0x46, 0xff, 0xb5, 0x7b, 0x45, 0xff, 0xb6, 0x7b, 0x44, 0xff, 0xb7, 0x7b, 0x44, 0xff, 0xb8, 0x7c, 0x44, 0xff, 0xba, 0x7d, 0x45, 0xff, 0xbb, 0x7f, 0x46, 0xff, 0xbc, 0x80, 0x47, 0xff, 0xbe, 0x80, 0x48, 0xff, 0xbf, 0x81, 0x49, 0xff, 0xc3, 0x84, 0x4b, 0xff, 0xc7, 0x85, 0x4c, 0xff, 0xc3, 0x86, 0x4c, 0xff, 0xc4, 0x88, 0x4c, 0xff, 0xcb, 0x8c, 0x4f, 0xff, 0xd3, 0x91, 0x54, 0xff, 0xd8, 0x95, 0x59, 0xff, 0xd7, 0x9b, 0x5f, 0xff, 0xd8, 0xa2, 0x63, 0xff, 0xd8, 0xab, 0x66, 0xff, 0xd6, 0xb0, 0x68, 0xff, 0xd6, 0xaf, 0x68, 0xff, 0xd8, 0xa8, 0x65, 0xff, 0xd8, 0x9e, 0x5e, 0xff, 0xd7, 0x97, 0x59, 0xff, 0xd7, 0x95, 0x59, 0xff, 0xd8, 0x95, 0x5a, 0xff, 0xd7, 0x93, 0x58, 0xff, 0xd6, 0x94, 0x57, 0xff, 0xd8, 0x97, 0x58, 0xff, 0xd9, 0x96, 0x58, 0xff, 0xd8, 0x9c, 0x5d, 0xff, 0xd9, 0x9f, 0x61, 0xff, 0xd5, 0x98, 0x5a, 0xff, 0xc5, 0x8b, 0x4e, 0xff, 0xba, 0x83, 0x47, 0xff, 0xbc, 0x83, 0x47, 0xff, 0xbb, 0x82, 0x45, 0xff, 0xbb, 0x80, 0x43, 0xff, 0xba, 0x7d, 0x40, 0xff, 0xb8, 0x7c, 0x3f, 0xff, 0xb5, 0x7a, 0x3d, 0xff, 0xb4, 0x77, 0x3c, 0xff, 0xb3, 0x76, 0x3c, 0xff, 0xb2, 0x75, 0x3b, 0xff, 0xb1, 0x74, 0x3a, 0xff, 0xb0, 0x73, 0x3b, 0xff, 0xae, 0x73, 0x39, 0xff, 0xae, 0x72, 0x39, 0xff, 0xad, 0x70, 0x39, 0xff, 0xac, 0x70, 0x38, 0xff, 0xac, 0x6f, 0x38, 0xff, 0xa9, 0x6d, 0x38, 0xff, 0xa8, 0x6c, 0x37, 0xff, 0xa8, 0x6c, 0x37, 0xff, 0xa8, 0x6c, 0x37, 0xff, 0xa6, 0x6a, 0x37, 0xff, 0xa6, 0x69, 0x37, 0xff, 0xa5, 0x68, 0x36, 0xff, 0xa5, 0x69, 0x37, 0xff, 0xa4, 0x68, 0x36, 0xff, 0xa7, 0x6b, 0x39, 0xff, 0xbb, 0x7e, 0x49, 0xff, 0xc2, 0x86, 0x4e, 0xff, 0xbe, 0x83, 0x4c, 0xff, 0xbc, 0x83, 0x4e, 0xff, 0xba, 0x82, 0x4e, 0xff, 0xb9, 0x81, 0x4d, 0xff, 0xbb, 0x82, 0x4b, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xbc, 0x80, 0x4a, 0xff, 0xbd, 0x82, 0x4a, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xbc, 0x82, 0x4a, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xbb, 0x83, 0x4d, 0xff, 0xc3, 0x88, 0x53, 0xff, 0xc1, 0x86, 0x50, 0xff, 0xbd, 0x81, 0x4d, 0xff, 0xb9, 0x7d, 0x48, 0xff, 0xb4, 0x78, 0x43, 0xff, 0xb0, 0x73, 0x3f, 0xff, 0xad, 0x70, 0x3d, 0xff, 0xab, 0x6d, 0x3c, 0xff, 0xa8, 0x6b, 0x3b, 0xff, 0xa6, 0x69, 0x39, 0xff, 0xa5, 0x67, 0x38, 0xff, 0xa3, 0x66, 0x38, 0xff, 0xa7, 0x69, 0x3a, 0xff, 0xa6, 0x69, 0x3a, 0xff, 0xa4, 0x68, 0x39, 0xff, 0xa3, 0x67, 0x38, 0xff, 0xa2, 0x65, 0x38, 0xff, 0xa1, 0x65, 0x37, 0xff, 0xa0, 0x64, 0x37, 0xff, 0x9d, 0x61, 0x36, 0xff, 0x9b, 0x60, 0x36, 0xff, 0x9a, 0x5e, 0x33, 0xff, 0x98, 0x5b, 0x30, 0xff, 0x96, 0x5a, 0x2f, 0xff, 0x95, 0x59, 0x2e, 0xff, 0x93, 0x59, 0x2f, 0xff, 0x93, 0x59, 0x2f, 0xff, 0x92, 0x57, 0x2e, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x90, 0x56, 0x2d, 0xff, 0x91, 0x57, 0x2d, 0xff, 0x90, 0x56, 0x2b, 0xff, 0x90, 0x55, 0x2c, 0xff, 0x90, 0x55, 0x2c, 0xff, 0x90, 0x56, 0x2d, 0xff, 0x90, 0x55, 0x2d, 0xff, 0x91, 0x55, 0x2c, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x91, 0x55, 0x2d, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x90, 0x56, 0x2c, 0xff, 0x90, 0x56, 0x2c, 0xff, 0x91, 0x56, 0x2e, 0xff, 0x92, 0x56, 0x2e, 0xff, 0x92, 0x56, 0x2e, 0xff, 0x92, 0x57, 0x2e, 0xff, 0x93, 0x59, 0x2f, 0xff, 0x93, 0x58, 0x2f, 0xff, 0x8f, 0x55, 0x2b, 0xff, 0x8e, 0x55, 0x2a, 0xff, 0x8f, 0x56, 0x2d, 0xff, 0x90, 0x56, 0x2d, 0xff, 0x91, 0x56, 0x2e, 0xff, 0x91, 0x56, 0x2e, 0xff, 0x92, 0x57, 0x2e, 0xff, 0x92, 0x58, 0x2e, 0xff, 0x92, 0x59, 0x2f, 0xff, 0x95, 0x5a, 0x30, 0xff, 0x95, 0x59, 0x31, 0xff, 0x96, 0x5a, 0x32, 0xff, 0x96, 0x5a, 0x33, 0xff, 0x96, 0x5b, 0x32, 0xff, 0x98, 0x5c, 0x33, 0xff, 0x98, 0x5c, 0x33, 0xff, 0x97, 0x5c, 0x34, 0xff, 0x99, 0x5d, 0x35, 0xff, 0x97, 0x5c, 0x33, 0xff, 0x96, 0x5b, 0x32, 0xff, 0x95, 0x5b, 0x32, 0xff, 0x98, 0x5d, 0x33, 0xff, 0x98, 0x5d, 0x34, 0xff, 0x98, 0x5d, 0x35, 0xff, 0x99, 0x5d, 0x34, 0xff, 0x98, 0x5e, 0x34, 0xff, 0x97, 0x5d, 0x34, 0xff, 0x97, 0x5b, 0x34, 0xff, 0x96, 0x5c, 0x33, 0xff, 0x96, 0x5b, 0x33, 0xff, 0x96, 0x5b, 0x33, 0xff, 0x99, 0x5d, 0x34, 0xff, 0x99, 0x5e, 0x35, 0xff, 0x9a, 0x5e, 0x36, 0xff, 0x9b, 0x60, 0x36, 0xff, + 0x9c, 0x5f, 0x37, 0xff, 0x9c, 0x60, 0x37, 0xff, 0x9d, 0x60, 0x37, 0xff, 0xa0, 0x63, 0x38, 0xff, 0xa0, 0x64, 0x38, 0xff, 0xa0, 0x64, 0x38, 0xff, 0xa1, 0x63, 0x38, 0xff, 0xa1, 0x65, 0x39, 0xff, 0xa3, 0x67, 0x3a, 0xff, 0xa5, 0x68, 0x3b, 0xff, 0xa4, 0x66, 0x3a, 0xff, 0xa5, 0x68, 0x3b, 0xff, 0xa5, 0x68, 0x3b, 0xff, 0xa6, 0x69, 0x3c, 0xff, 0xa6, 0x69, 0x3d, 0xff, 0xa6, 0x69, 0x3d, 0xff, 0xa7, 0x6a, 0x3d, 0xff, 0xa8, 0x6c, 0x3f, 0xff, 0xa9, 0x6e, 0x3f, 0xff, 0xae, 0x72, 0x44, 0xff, 0xb0, 0x74, 0x44, 0xff, 0xb0, 0x76, 0x45, 0xff, 0xb3, 0x77, 0x46, 0xff, 0xb4, 0x78, 0x47, 0xff, 0xb6, 0x7b, 0x4a, 0xff, 0xb6, 0x7a, 0x49, 0xff, 0xb3, 0x77, 0x46, 0xff, 0xb1, 0x76, 0x46, 0xff, 0xb1, 0x77, 0x47, 0xff, 0xac, 0x72, 0x44, 0xff, 0xa0, 0x66, 0x39, 0xff, 0xa0, 0x65, 0x39, 0xff, 0xa1, 0x66, 0x3a, 0xff, 0xa1, 0x67, 0x3b, 0xff, 0xab, 0x73, 0x43, 0xff, 0xb6, 0x81, 0x4d, 0xff, 0xb7, 0x83, 0x4d, 0xff, 0xb9, 0x84, 0x4e, 0xff, 0xba, 0x86, 0x51, 0xff, 0xba, 0x85, 0x50, 0xff, 0xc0, 0x8c, 0x54, 0xff, 0xc8, 0x94, 0x5a, 0xff, 0xcd, 0x9a, 0x5f, 0xff, 0xa8, 0x73, 0x43, 0xff, 0xa5, 0x6b, 0x3d, 0xff, 0xa6, 0x6e, 0x40, 0xff, 0xa6, 0x6e, 0x3f, 0xff, 0xa6, 0x6e, 0x3f, 0xff, 0xa6, 0x6f, 0x3e, 0xff, 0xa6, 0x6f, 0x3f, 0xff, 0xa6, 0x6e, 0x40, 0xff, 0xa6, 0x6e, 0x3f, 0xff, 0xa6, 0x6f, 0x3f, 0xff, 0xa6, 0x6f, 0x3f, 0xff, 0xa5, 0x70, 0x40, 0xff, 0xa5, 0x6f, 0x40, 0xff, 0xa6, 0x6e, 0x3f, 0xff, 0xa5, 0x6c, 0x3d, 0xff, 0xa6, 0x6e, 0x3d, 0xff, 0xa6, 0x6f, 0x3e, 0xff, 0xa6, 0x6f, 0x3e, 0xff, 0xa6, 0x6f, 0x3e, 0xff, 0xa7, 0x70, 0x3f, 0xff, 0xa8, 0x70, 0x3f, 0xff, 0xaa, 0x71, 0x40, 0xff, 0xab, 0x71, 0x40, 0xff, 0xab, 0x71, 0x40, 0xff, 0xac, 0x73, 0x42, 0xff, 0xad, 0x75, 0x43, 0xff, 0xae, 0x76, 0x44, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xb1, 0x77, 0x43, 0xff, 0xb2, 0x78, 0x44, 0xff, 0xb3, 0x79, 0x44, 0xff, 0xb4, 0x7b, 0x44, 0xff, 0xb6, 0x7c, 0x45, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb9, 0x7f, 0x48, 0xff, 0xbb, 0x80, 0x48, 0xff, 0xbc, 0x80, 0x49, 0xff, 0xbd, 0x80, 0x49, 0xff, 0xbd, 0x81, 0x48, 0xff, 0xbd, 0x82, 0x48, 0xff, 0xbe, 0x83, 0x49, 0xff, 0xc3, 0x86, 0x4b, 0xff, 0xc9, 0x8a, 0x4f, 0xff, 0xcf, 0x8d, 0x52, 0xff, 0xd7, 0x93, 0x54, 0xff, 0xd9, 0x99, 0x5a, 0xff, 0xd9, 0xa2, 0x61, 0xff, 0xd8, 0xae, 0x68, 0xff, 0xd5, 0xb8, 0x6f, 0xff, 0xd3, 0xbb, 0x72, 0xff, 0xd4, 0xbb, 0x73, 0xff, 0xd5, 0xb9, 0x71, 0xff, 0xd6, 0xb2, 0x6b, 0xff, 0xd8, 0xa4, 0x61, 0xff, 0xd6, 0x9b, 0x5d, 0xff, 0xd9, 0x9a, 0x5e, 0xff, 0xd9, 0x95, 0x5a, 0xff, 0xd7, 0x92, 0x55, 0xff, 0xd8, 0x94, 0x56, 0xff, 0xd9, 0x96, 0x58, 0xff, 0xd9, 0x99, 0x5a, 0xff, 0xd9, 0xa1, 0x61, 0xff, 0xda, 0xa0, 0x60, 0xff, 0xd0, 0x92, 0x57, 0xff, 0xc0, 0x87, 0x4c, 0xff, 0xbc, 0x84, 0x49, 0xff, 0xbc, 0x84, 0x48, 0xff, 0xbc, 0x82, 0x45, 0xff, 0xba, 0x80, 0x42, 0xff, 0xba, 0x7d, 0x40, 0xff, 0xb9, 0x7b, 0x3f, 0xff, 0xb7, 0x7a, 0x3d, 0xff, 0xb5, 0x7a, 0x3d, 0xff, 0xb4, 0x79, 0x3c, 0xff, 0xb3, 0x76, 0x3b, 0xff, 0xb2, 0x76, 0x3a, 0xff, 0xb1, 0x76, 0x3a, 0xff, 0xaf, 0x74, 0x39, 0xff, 0xae, 0x72, 0x39, 0xff, 0xad, 0x70, 0x38, 0xff, 0xac, 0x71, 0x38, 0xff, 0xab, 0x70, 0x38, 0xff, 0xab, 0x6e, 0x37, 0xff, 0xa9, 0x6e, 0x37, 0xff, 0xa8, 0x6c, 0x37, 0xff, 0xa8, 0x6c, 0x37, 0xff, 0xa7, 0x6c, 0x38, 0xff, 0xa6, 0x6a, 0x37, 0xff, 0xa6, 0x6b, 0x37, 0xff, 0xa5, 0x6a, 0x37, 0xff, 0xa2, 0x68, 0x34, 0xff, 0xbc, 0x7e, 0x47, 0xff, 0xc7, 0x89, 0x52, 0xff, 0xc0, 0x83, 0x4d, 0xff, 0xbd, 0x84, 0x4b, 0xff, 0xbc, 0x83, 0x4c, 0xff, 0xbb, 0x83, 0x4d, 0xff, 0xbd, 0x84, 0x4d, 0xff, 0xc0, 0x83, 0x4c, 0xff, 0xc0, 0x83, 0x4b, 0xff, 0xc2, 0x86, 0x4d, 0xff, 0xc7, 0x88, 0x4e, 0xff, 0xc8, 0x88, 0x50, 0xff, 0xc5, 0x88, 0x51, 0xff, 0xc3, 0x89, 0x52, 0xff, 0xcb, 0x8e, 0x58, 0xff, 0xca, 0x8b, 0x55, 0xff, 0xc3, 0x86, 0x51, 0xff, 0xbd, 0x82, 0x4d, 0xff, 0xb9, 0x7c, 0x48, 0xff, 0xb5, 0x78, 0x43, 0xff, 0xb0, 0x74, 0x3f, 0xff, 0xae, 0x70, 0x3d, 0xff, 0xac, 0x6e, 0x3c, 0xff, 0xa8, 0x6b, 0x3b, 0xff, 0xa7, 0x69, 0x39, 0xff, 0xa5, 0x67, 0x38, 0xff, 0xa7, 0x6b, 0x3b, 0xff, 0xa7, 0x6c, 0x3c, 0xff, 0xa6, 0x69, 0x39, 0xff, 0xa5, 0x69, 0x39, 0xff, 0xa5, 0x68, 0x39, 0xff, 0xa4, 0x68, 0x39, 0xff, 0xa2, 0x67, 0x39, 0xff, 0xa1, 0x65, 0x37, 0xff, 0x9f, 0x63, 0x37, 0xff, 0x9d, 0x62, 0x36, 0xff, 0x9b, 0x5e, 0x34, 0xff, 0x98, 0x5b, 0x30, 0xff, 0x96, 0x5a, 0x2f, 0xff, 0x95, 0x5a, 0x2f, 0xff, 0x94, 0x59, 0x30, 0xff, 0x93, 0x58, 0x30, 0xff, 0x92, 0x57, 0x2e, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x91, 0x55, 0x2d, 0xff, 0x90, 0x56, 0x2c, 0xff, 0x90, 0x55, 0x2c, 0xff, 0x90, 0x55, 0x2c, 0xff, 0x90, 0x55, 0x2d, 0xff, 0x90, 0x55, 0x2c, 0xff, 0x90, 0x55, 0x2c, 0xff, 0x91, 0x55, 0x2d, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x91, 0x55, 0x2d, 0xff, 0x90, 0x55, 0x2d, 0xff, 0x92, 0x57, 0x2d, 0xff, 0x92, 0x56, 0x2d, 0xff, 0x92, 0x57, 0x2d, 0xff, 0x92, 0x57, 0x2e, 0xff, 0x93, 0x58, 0x2f, 0xff, 0x90, 0x56, 0x2d, 0xff, 0x8e, 0x55, 0x2b, 0xff, 0x8f, 0x55, 0x2b, 0xff, 0x8f, 0x55, 0x2c, 0xff, 0x8f, 0x56, 0x2c, 0xff, 0x8f, 0x55, 0x2c, 0xff, 0x90, 0x56, 0x2d, 0xff, 0x8f, 0x55, 0x2c, 0xff, 0x90, 0x56, 0x2d, 0xff, 0x91, 0x56, 0x2e, 0xff, 0x92, 0x58, 0x2e, 0xff, 0x93, 0x57, 0x2e, 0xff, 0x94, 0x58, 0x30, 0xff, 0x94, 0x59, 0x31, 0xff, 0x96, 0x5a, 0x31, 0xff, 0x95, 0x5a, 0x31, 0xff, 0x95, 0x59, 0x31, 0xff, 0x96, 0x5b, 0x33, 0xff, 0x96, 0x5b, 0x32, 0xff, 0x96, 0x5a, 0x31, 0xff, 0x96, 0x5b, 0x33, 0xff, 0x96, 0x5b, 0x33, 0xff, 0x97, 0x5b, 0x33, 0xff, 0x98, 0x5d, 0x34, 0xff, 0x97, 0x5c, 0x33, 0xff, 0x97, 0x5b, 0x32, 0xff, 0x96, 0x5b, 0x33, 0xff, 0x95, 0x5a, 0x32, 0xff, 0x96, 0x5a, 0x31, 0xff, 0x94, 0x59, 0x2f, 0xff, 0x95, 0x59, 0x31, 0xff, 0x96, 0x5a, 0x30, 0xff, 0x96, 0x5b, 0x32, 0xff, 0x98, 0x5d, 0x34, 0xff, 0x9a, 0x5e, 0x34, 0xff, 0x9c, 0x60, 0x36, 0xff, + 0x9c, 0x5f, 0x36, 0xff, 0x9c, 0x5f, 0x36, 0xff, 0x9d, 0x60, 0x37, 0xff, 0x9e, 0x62, 0x37, 0xff, 0x9e, 0x62, 0x38, 0xff, 0x9f, 0x62, 0x37, 0xff, 0xa0, 0x64, 0x38, 0xff, 0xa0, 0x64, 0x3a, 0xff, 0xa2, 0x66, 0x3a, 0xff, 0xa3, 0x67, 0x3b, 0xff, 0xa4, 0x67, 0x3b, 0xff, 0xa4, 0x67, 0x3a, 0xff, 0xa4, 0x68, 0x3b, 0xff, 0xa5, 0x69, 0x3b, 0xff, 0xa6, 0x68, 0x3c, 0xff, 0xa6, 0x69, 0x3c, 0xff, 0xa7, 0x6b, 0x3d, 0xff, 0xa8, 0x6b, 0x3e, 0xff, 0xa9, 0x6d, 0x3f, 0xff, 0xac, 0x71, 0x42, 0xff, 0xad, 0x71, 0x40, 0xff, 0xae, 0x72, 0x42, 0xff, 0xaf, 0x74, 0x44, 0xff, 0xb2, 0x76, 0x45, 0xff, 0xb2, 0x76, 0x45, 0xff, 0xb3, 0x77, 0x47, 0xff, 0xb6, 0x7b, 0x4a, 0xff, 0xb8, 0x7b, 0x4a, 0xff, 0xb9, 0x7d, 0x4d, 0xff, 0xbb, 0x81, 0x4e, 0xff, 0xbb, 0x83, 0x51, 0xff, 0xb7, 0x7f, 0x51, 0xff, 0xaf, 0x77, 0x49, 0xff, 0xa0, 0x65, 0x39, 0xff, 0xa9, 0x72, 0x43, 0xff, 0xb6, 0x81, 0x4e, 0xff, 0xb6, 0x81, 0x4d, 0xff, 0xb8, 0x82, 0x4d, 0xff, 0xb8, 0x83, 0x4d, 0xff, 0xbb, 0x85, 0x50, 0xff, 0xbc, 0x88, 0x52, 0xff, 0xbd, 0x88, 0x54, 0xff, 0xb5, 0x80, 0x4f, 0xff, 0xa0, 0x67, 0x3a, 0xff, 0xa4, 0x6b, 0x3d, 0xff, 0xa6, 0x6d, 0x3f, 0xff, 0xa5, 0x6e, 0x3f, 0xff, 0xa5, 0x6e, 0x3f, 0xff, 0xa6, 0x70, 0x3f, 0xff, 0xa5, 0x70, 0x3f, 0xff, 0xa6, 0x70, 0x40, 0xff, 0xa6, 0x70, 0x3f, 0xff, 0xa5, 0x70, 0x40, 0xff, 0xa5, 0x71, 0x41, 0xff, 0xa5, 0x70, 0x42, 0xff, 0xa5, 0x6f, 0x42, 0xff, 0xa5, 0x6e, 0x42, 0xff, 0xa4, 0x6c, 0x3e, 0xff, 0xa5, 0x6d, 0x3e, 0xff, 0xa6, 0x6f, 0x3f, 0xff, 0xa6, 0x70, 0x3f, 0xff, 0xa7, 0x71, 0x40, 0xff, 0xa7, 0x71, 0x40, 0xff, 0xa8, 0x71, 0x41, 0xff, 0xa9, 0x72, 0x41, 0xff, 0xab, 0x73, 0x41, 0xff, 0xac, 0x74, 0x43, 0xff, 0xad, 0x76, 0x44, 0xff, 0xae, 0x77, 0x43, 0xff, 0xaf, 0x76, 0x42, 0xff, 0xb0, 0x76, 0x41, 0xff, 0xb0, 0x75, 0x41, 0xff, 0xb1, 0x78, 0x42, 0xff, 0xb3, 0x7a, 0x43, 0xff, 0xb4, 0x7a, 0x44, 0xff, 0xb5, 0x7b, 0x46, 0xff, 0xb6, 0x7d, 0x49, 0xff, 0xb7, 0x80, 0x49, 0xff, 0xb8, 0x80, 0x4a, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xba, 0x80, 0x48, 0xff, 0xbb, 0x80, 0x47, 0xff, 0xbc, 0x81, 0x48, 0xff, 0xbd, 0x82, 0x49, 0xff, 0xbd, 0x82, 0x48, 0xff, 0xc1, 0x85, 0x4a, 0xff, 0xc6, 0x89, 0x4d, 0xff, 0xcb, 0x8b, 0x4e, 0xff, 0xd1, 0x8e, 0x52, 0xff, 0xd6, 0x93, 0x57, 0xff, 0xd7, 0x9a, 0x5c, 0xff, 0xd8, 0xa5, 0x63, 0xff, 0xd7, 0xb3, 0x6c, 0xff, 0xd3, 0xbb, 0x73, 0xff, 0xd3, 0xbc, 0x7a, 0xff, 0xd2, 0xbb, 0x7c, 0xff, 0xd3, 0xbc, 0x7a, 0xff, 0xd3, 0xbb, 0x75, 0xff, 0xd5, 0xb5, 0x6b, 0xff, 0xd8, 0xa8, 0x63, 0xff, 0xd9, 0xa0, 0x62, 0xff, 0xd9, 0x9b, 0x5d, 0xff, 0xd9, 0x95, 0x57, 0xff, 0xd7, 0x92, 0x54, 0xff, 0xd7, 0x95, 0x56, 0xff, 0xd9, 0x98, 0x59, 0xff, 0xd8, 0x9e, 0x5e, 0xff, 0xda, 0xa6, 0x64, 0xff, 0xd8, 0x9d, 0x5f, 0xff, 0xc9, 0x8d, 0x53, 0xff, 0xbe, 0x84, 0x4c, 0xff, 0xbf, 0x85, 0x4b, 0xff, 0xbe, 0x85, 0x49, 0xff, 0xbc, 0x84, 0x47, 0xff, 0xbc, 0x81, 0x43, 0xff, 0xbc, 0x80, 0x41, 0xff, 0xbb, 0x7f, 0x40, 0xff, 0xb8, 0x7b, 0x3e, 0xff, 0xb7, 0x7a, 0x3d, 0xff, 0xb5, 0x7b, 0x3d, 0xff, 0xb4, 0x79, 0x3d, 0xff, 0xb3, 0x77, 0x3b, 0xff, 0xb3, 0x76, 0x3a, 0xff, 0xb1, 0x74, 0x3a, 0xff, 0xb0, 0x74, 0x3a, 0xff, 0xb0, 0x73, 0x3a, 0xff, 0xae, 0x71, 0x3a, 0xff, 0xac, 0x70, 0x38, 0xff, 0xac, 0x70, 0x39, 0xff, 0xa9, 0x6f, 0x38, 0xff, 0xa8, 0x6e, 0x38, 0xff, 0xa8, 0x6c, 0x37, 0xff, 0xa7, 0x6a, 0x37, 0xff, 0xa7, 0x6b, 0x38, 0xff, 0xa7, 0x6b, 0x38, 0xff, 0xa3, 0x67, 0x35, 0xff, 0xae, 0x74, 0x40, 0xff, 0xc3, 0x86, 0x4e, 0xff, 0xc5, 0x89, 0x4f, 0xff, 0xc1, 0x85, 0x4c, 0xff, 0xbd, 0x83, 0x4a, 0xff, 0xbc, 0x83, 0x4a, 0xff, 0xc0, 0x86, 0x4d, 0xff, 0xc4, 0x87, 0x4d, 0xff, 0xc5, 0x87, 0x4d, 0xff, 0xcb, 0x89, 0x50, 0xff, 0xd4, 0x8f, 0x55, 0xff, 0xd7, 0x91, 0x58, 0xff, 0xd7, 0x92, 0x58, 0xff, 0xd4, 0x92, 0x58, 0xff, 0xd7, 0x95, 0x5e, 0xff, 0xd5, 0x91, 0x5b, 0xff, 0xcd, 0x8b, 0x55, 0xff, 0xc3, 0x86, 0x51, 0xff, 0xbd, 0x83, 0x4d, 0xff, 0xb9, 0x7d, 0x48, 0xff, 0xb5, 0x78, 0x44, 0xff, 0xb0, 0x73, 0x3f, 0xff, 0xae, 0x71, 0x3d, 0xff, 0xac, 0x6f, 0x3c, 0xff, 0xa9, 0x6c, 0x3b, 0xff, 0xa6, 0x69, 0x3a, 0xff, 0xa6, 0x69, 0x3a, 0xff, 0xa9, 0x6d, 0x3c, 0xff, 0xa9, 0x6c, 0x3c, 0xff, 0xa7, 0x6b, 0x3b, 0xff, 0xa7, 0x6b, 0x3b, 0xff, 0xa6, 0x6c, 0x3c, 0xff, 0xa5, 0x6b, 0x3c, 0xff, 0xa4, 0x69, 0x3b, 0xff, 0xa2, 0x67, 0x38, 0xff, 0xa0, 0x64, 0x37, 0xff, 0x9e, 0x61, 0x36, 0xff, 0x9b, 0x5d, 0x33, 0xff, 0x98, 0x5b, 0x30, 0xff, 0x96, 0x5a, 0x2f, 0xff, 0x95, 0x5a, 0x30, 0xff, 0x94, 0x59, 0x2f, 0xff, 0x93, 0x58, 0x2f, 0xff, 0x92, 0x57, 0x2d, 0xff, 0x90, 0x56, 0x2d, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x90, 0x55, 0x2d, 0xff, 0x91, 0x57, 0x2d, 0xff, 0x91, 0x57, 0x2d, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x90, 0x55, 0x2d, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x91, 0x55, 0x2d, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x90, 0x55, 0x2d, 0xff, 0x91, 0x55, 0x2d, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x91, 0x57, 0x2d, 0xff, 0x91, 0x57, 0x2e, 0xff, 0x92, 0x57, 0x2e, 0xff, 0x94, 0x58, 0x32, 0xff, 0x8e, 0x55, 0x2d, 0xff, 0x8d, 0x52, 0x2c, 0xff, 0x8e, 0x53, 0x2c, 0xff, 0x8e, 0x54, 0x2a, 0xff, 0x8e, 0x54, 0x2a, 0xff, 0x8e, 0x54, 0x2c, 0xff, 0x8e, 0x54, 0x2d, 0xff, 0x8e, 0x55, 0x2c, 0xff, 0x8e, 0x55, 0x2d, 0xff, 0x8f, 0x55, 0x2c, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x92, 0x56, 0x2f, 0xff, 0x93, 0x58, 0x2f, 0xff, 0x93, 0x58, 0x2e, 0xff, 0x92, 0x57, 0x2e, 0xff, 0x92, 0x57, 0x2e, 0xff, 0x93, 0x57, 0x30, 0xff, 0x94, 0x59, 0x32, 0xff, 0x94, 0x59, 0x31, 0xff, 0x95, 0x5a, 0x32, 0xff, 0x95, 0x5a, 0x32, 0xff, 0x96, 0x5b, 0x32, 0xff, 0x93, 0x59, 0x2f, 0xff, 0x94, 0x58, 0x2f, 0xff, 0x93, 0x59, 0x30, 0xff, 0x95, 0x59, 0x30, 0xff, 0x95, 0x59, 0x30, 0xff, 0x95, 0x5a, 0x31, 0xff, 0x95, 0x5a, 0x32, 0xff, 0x93, 0x59, 0x30, 0xff, 0x94, 0x59, 0x30, 0xff, 0x96, 0x5a, 0x32, 0xff, 0x97, 0x5c, 0x33, 0xff, 0x99, 0x5c, 0x35, 0xff, 0x99, 0x5d, 0x36, 0xff, 0x9a, 0x5e, 0x36, 0xff, + 0x98, 0x5d, 0x35, 0xff, 0x9c, 0x60, 0x37, 0xff, 0x9d, 0x60, 0x37, 0xff, 0x9d, 0x62, 0x38, 0xff, 0x9d, 0x61, 0x38, 0xff, 0x9e, 0x64, 0x39, 0xff, 0x9f, 0x64, 0x39, 0xff, 0xa0, 0x64, 0x39, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa2, 0x65, 0x3a, 0xff, 0xa3, 0x66, 0x3a, 0xff, 0xa2, 0x65, 0x3a, 0xff, 0xa2, 0x66, 0x3a, 0xff, 0xa3, 0x66, 0x3a, 0xff, 0xa5, 0x69, 0x3b, 0xff, 0xa6, 0x69, 0x3c, 0xff, 0xa7, 0x6a, 0x3c, 0xff, 0xa8, 0x6b, 0x3d, 0xff, 0xaa, 0x6f, 0x40, 0xff, 0xac, 0x70, 0x40, 0xff, 0xab, 0x70, 0x3f, 0xff, 0xad, 0x71, 0x40, 0xff, 0xad, 0x71, 0x41, 0xff, 0xae, 0x72, 0x42, 0xff, 0xaf, 0x72, 0x43, 0xff, 0xb2, 0x76, 0x45, 0xff, 0xb3, 0x77, 0x46, 0xff, 0xb6, 0x7a, 0x49, 0xff, 0xb8, 0x7b, 0x4a, 0xff, 0xb8, 0x7d, 0x4b, 0xff, 0xba, 0x80, 0x4d, 0xff, 0xbc, 0x83, 0x50, 0xff, 0xbe, 0x86, 0x55, 0xff, 0xc2, 0x8a, 0x5a, 0xff, 0xc2, 0x89, 0x57, 0xff, 0xb9, 0x83, 0x50, 0xff, 0xb6, 0x81, 0x4d, 0xff, 0xb7, 0x82, 0x4e, 0xff, 0xb8, 0x84, 0x4f, 0xff, 0xb9, 0x85, 0x4f, 0xff, 0xbd, 0x86, 0x52, 0xff, 0xbd, 0x89, 0x53, 0xff, 0xa4, 0x69, 0x3c, 0xff, 0xa1, 0x67, 0x3b, 0xff, 0xa3, 0x68, 0x3c, 0xff, 0xa1, 0x67, 0x3a, 0xff, 0xa3, 0x69, 0x3c, 0xff, 0xa4, 0x6c, 0x3d, 0xff, 0xa4, 0x6c, 0x3e, 0xff, 0xa6, 0x6f, 0x3f, 0xff, 0xa5, 0x70, 0x41, 0xff, 0xa6, 0x70, 0x42, 0xff, 0xa5, 0x70, 0x41, 0xff, 0xa4, 0x70, 0x41, 0xff, 0xa3, 0x70, 0x42, 0xff, 0xa4, 0x6f, 0x43, 0xff, 0xa4, 0x6f, 0x44, 0xff, 0xa4, 0x6f, 0x43, 0xff, 0xa4, 0x6c, 0x3e, 0xff, 0xa6, 0x6f, 0x41, 0xff, 0xa7, 0x70, 0x42, 0xff, 0xa7, 0x72, 0x43, 0xff, 0xa6, 0x72, 0x43, 0xff, 0xa7, 0x72, 0x44, 0xff, 0xa8, 0x73, 0x44, 0xff, 0xa9, 0x74, 0x44, 0xff, 0xab, 0x75, 0x44, 0xff, 0xac, 0x76, 0x44, 0xff, 0xae, 0x77, 0x43, 0xff, 0xaf, 0x7a, 0x45, 0xff, 0xb1, 0x79, 0x44, 0xff, 0xb2, 0x78, 0x43, 0xff, 0xb2, 0x78, 0x42, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb3, 0x7b, 0x46, 0xff, 0xb5, 0x7c, 0x49, 0xff, 0xb6, 0x7d, 0x49, 0xff, 0xb7, 0x7d, 0x49, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb9, 0x80, 0x48, 0xff, 0xbb, 0x81, 0x49, 0xff, 0xbc, 0x82, 0x49, 0xff, 0xbe, 0x82, 0x49, 0xff, 0xbf, 0x83, 0x4a, 0xff, 0xc1, 0x84, 0x4a, 0xff, 0xc5, 0x86, 0x4c, 0xff, 0xcb, 0x8b, 0x4e, 0xff, 0xd0, 0x8e, 0x52, 0xff, 0xd6, 0x91, 0x53, 0xff, 0xd8, 0x97, 0x55, 0xff, 0xd8, 0x9c, 0x5c, 0xff, 0xd9, 0xa7, 0x65, 0xff, 0xd5, 0xb6, 0x6d, 0xff, 0xd1, 0xbc, 0x77, 0xff, 0xd4, 0xbd, 0x7e, 0xff, 0xd6, 0xbd, 0x84, 0xff, 0xd6, 0xbd, 0x85, 0xff, 0xd5, 0xbd, 0x80, 0xff, 0xd3, 0xbd, 0x76, 0xff, 0xd5, 0xb6, 0x6c, 0xff, 0xd9, 0xa9, 0x66, 0xff, 0xda, 0xa1, 0x62, 0xff, 0xd9, 0x9a, 0x5c, 0xff, 0xd9, 0x93, 0x54, 0xff, 0xd8, 0x92, 0x54, 0xff, 0xd8, 0x95, 0x57, 0xff, 0xd9, 0x98, 0x5a, 0xff, 0xda, 0xa2, 0x60, 0xff, 0xda, 0xa4, 0x63, 0xff, 0xd0, 0x95, 0x5a, 0xff, 0xc3, 0x89, 0x4f, 0xff, 0xc0, 0x86, 0x4d, 0xff, 0xc0, 0x85, 0x4c, 0xff, 0xbe, 0x86, 0x48, 0xff, 0xbe, 0x84, 0x47, 0xff, 0xbd, 0x83, 0x45, 0xff, 0xbc, 0x81, 0x42, 0xff, 0xbc, 0x7f, 0x42, 0xff, 0xbb, 0x7f, 0x40, 0xff, 0xb9, 0x7d, 0x3e, 0xff, 0xb8, 0x7b, 0x3e, 0xff, 0xb7, 0x7b, 0x3e, 0xff, 0xb5, 0x79, 0x3d, 0xff, 0xb3, 0x77, 0x3c, 0xff, 0xb2, 0x76, 0x3c, 0xff, 0xb2, 0x76, 0x3b, 0xff, 0xb0, 0x74, 0x3a, 0xff, 0xae, 0x72, 0x3a, 0xff, 0xad, 0x71, 0x39, 0xff, 0xad, 0x71, 0x3a, 0xff, 0xaa, 0x70, 0x39, 0xff, 0xa9, 0x6e, 0x39, 0xff, 0xa9, 0x6e, 0x39, 0xff, 0xa8, 0x6c, 0x37, 0xff, 0xa7, 0x6c, 0x38, 0xff, 0xa7, 0x6c, 0x38, 0xff, 0xa2, 0x67, 0x33, 0xff, 0xbd, 0x7d, 0x47, 0xff, 0xcb, 0x8c, 0x54, 0xff, 0xc3, 0x88, 0x4e, 0xff, 0xc1, 0x84, 0x4c, 0xff, 0xbf, 0x82, 0x4c, 0xff, 0xc3, 0x86, 0x4d, 0xff, 0xc8, 0x88, 0x4e, 0xff, 0xcc, 0x88, 0x50, 0xff, 0xd2, 0x8d, 0x54, 0xff, 0xd8, 0x95, 0x5b, 0xff, 0xd9, 0x9a, 0x60, 0xff, 0xd9, 0x9e, 0x62, 0xff, 0xd9, 0x9e, 0x62, 0xff, 0xd9, 0x9c, 0x63, 0xff, 0xd9, 0x99, 0x60, 0xff, 0xd8, 0x92, 0x5b, 0xff, 0xd0, 0x8c, 0x56, 0xff, 0xc5, 0x87, 0x51, 0xff, 0xbe, 0x82, 0x4d, 0xff, 0xba, 0x7e, 0x48, 0xff, 0xb5, 0x79, 0x43, 0xff, 0xb3, 0x75, 0x40, 0xff, 0xaf, 0x72, 0x3e, 0xff, 0xac, 0x70, 0x3d, 0xff, 0xa9, 0x6c, 0x3a, 0xff, 0xa9, 0x6b, 0x3b, 0xff, 0xab, 0x6e, 0x3d, 0xff, 0xaa, 0x6d, 0x3c, 0xff, 0xa9, 0x6c, 0x3d, 0xff, 0xa9, 0x6e, 0x3d, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa6, 0x6d, 0x3f, 0xff, 0xa5, 0x6c, 0x3e, 0xff, 0xa3, 0x6a, 0x3b, 0xff, 0xa3, 0x68, 0x39, 0xff, 0xa0, 0x64, 0x37, 0xff, 0x9e, 0x60, 0x35, 0xff, 0x9b, 0x5d, 0x32, 0xff, 0x98, 0x5b, 0x30, 0xff, 0x96, 0x5a, 0x30, 0xff, 0x96, 0x59, 0x30, 0xff, 0x95, 0x59, 0x30, 0xff, 0x92, 0x57, 0x2f, 0xff, 0x92, 0x57, 0x2d, 0xff, 0x91, 0x57, 0x2d, 0xff, 0x92, 0x57, 0x2d, 0xff, 0x91, 0x57, 0x2d, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x91, 0x55, 0x2f, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x91, 0x57, 0x2d, 0xff, 0x91, 0x56, 0x2f, 0xff, 0x92, 0x57, 0x2f, 0xff, 0x94, 0x58, 0x2f, 0xff, 0x91, 0x54, 0x2d, 0xff, 0x8d, 0x54, 0x2a, 0xff, 0x8d, 0x54, 0x2a, 0xff, 0x8c, 0x53, 0x2b, 0xff, 0x8c, 0x52, 0x2c, 0xff, 0x8c, 0x53, 0x2b, 0xff, 0x8d, 0x53, 0x29, 0xff, 0x8d, 0x54, 0x2b, 0xff, 0x8e, 0x54, 0x2c, 0xff, 0x8e, 0x55, 0x2c, 0xff, 0x8d, 0x54, 0x2c, 0xff, 0x8f, 0x54, 0x2d, 0xff, 0x8f, 0x55, 0x2d, 0xff, 0x90, 0x55, 0x2d, 0xff, 0x90, 0x55, 0x2d, 0xff, 0x90, 0x55, 0x2d, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x92, 0x57, 0x2f, 0xff, 0x94, 0x59, 0x31, 0xff, 0x93, 0x57, 0x2f, 0xff, 0x92, 0x57, 0x2f, 0xff, 0x92, 0x57, 0x2d, 0xff, 0x8f, 0x54, 0x2c, 0xff, 0x90, 0x56, 0x2d, 0xff, 0x92, 0x57, 0x2f, 0xff, 0x93, 0x58, 0x2f, 0xff, 0x94, 0x59, 0x30, 0xff, 0x94, 0x59, 0x30, 0xff, 0x94, 0x58, 0x30, 0xff, 0x95, 0x59, 0x30, 0xff, 0x93, 0x59, 0x31, 0xff, 0x95, 0x5a, 0x34, 0xff, 0x96, 0x5a, 0x33, 0xff, 0x98, 0x5b, 0x34, 0xff, 0x97, 0x5b, 0x34, 0xff, 0x98, 0x5c, 0x34, 0xff, 0x99, 0x5d, 0x35, 0xff, + 0x98, 0x5c, 0x35, 0xff, 0x9a, 0x5e, 0x36, 0xff, 0x9b, 0x5e, 0x36, 0xff, 0x9c, 0x5f, 0x37, 0xff, 0x9c, 0x60, 0x37, 0xff, 0x9d, 0x61, 0x37, 0xff, 0x9d, 0x62, 0x37, 0xff, 0x9e, 0x62, 0x37, 0xff, 0x9f, 0x63, 0x37, 0xff, 0xa1, 0x64, 0x38, 0xff, 0xa1, 0x64, 0x39, 0xff, 0xa1, 0x64, 0x39, 0xff, 0xa2, 0x65, 0x3a, 0xff, 0xa2, 0x65, 0x3a, 0xff, 0xa3, 0x66, 0x3a, 0xff, 0xa5, 0x69, 0x3b, 0xff, 0xa6, 0x68, 0x3c, 0xff, 0xa7, 0x6a, 0x3d, 0xff, 0xaa, 0x6f, 0x41, 0xff, 0xad, 0x71, 0x40, 0xff, 0xad, 0x70, 0x40, 0xff, 0xad, 0x70, 0x40, 0xff, 0xac, 0x71, 0x40, 0xff, 0xad, 0x72, 0x41, 0xff, 0xae, 0x72, 0x43, 0xff, 0xae, 0x73, 0x42, 0xff, 0xaf, 0x74, 0x43, 0xff, 0xb2, 0x75, 0x45, 0xff, 0xb5, 0x79, 0x47, 0xff, 0xb6, 0x7a, 0x49, 0xff, 0xb8, 0x7d, 0x4b, 0xff, 0xbb, 0x80, 0x4e, 0xff, 0xbc, 0x81, 0x4e, 0xff, 0xc2, 0x86, 0x52, 0xff, 0xd2, 0x92, 0x5c, 0xff, 0xd5, 0x93, 0x5e, 0xff, 0xd3, 0x94, 0x5e, 0xff, 0xc3, 0x89, 0x55, 0xff, 0xbe, 0x87, 0x53, 0xff, 0xb7, 0x84, 0x4e, 0xff, 0xba, 0x85, 0x52, 0xff, 0xb0, 0x79, 0x49, 0xff, 0xa1, 0x67, 0x3b, 0xff, 0xa2, 0x68, 0x3c, 0xff, 0xa1, 0x68, 0x3b, 0xff, 0xa1, 0x67, 0x3b, 0xff, 0xa1, 0x68, 0x3a, 0xff, 0xa2, 0x69, 0x3b, 0xff, 0xa3, 0x69, 0x3c, 0xff, 0xa3, 0x6a, 0x3e, 0xff, 0xa5, 0x6c, 0x3f, 0xff, 0xa5, 0x6e, 0x40, 0xff, 0xa4, 0x6e, 0x41, 0xff, 0xa4, 0x6f, 0x42, 0xff, 0xa4, 0x6f, 0x43, 0xff, 0xa4, 0x6f, 0x44, 0xff, 0xa4, 0x70, 0x44, 0xff, 0xa4, 0x6f, 0x44, 0xff, 0xa6, 0x6f, 0x41, 0xff, 0xa7, 0x6f, 0x40, 0xff, 0xa7, 0x72, 0x43, 0xff, 0xa7, 0x73, 0x44, 0xff, 0xa7, 0x73, 0x44, 0xff, 0xa7, 0x72, 0x44, 0xff, 0xa6, 0x72, 0x44, 0xff, 0xa8, 0x73, 0x44, 0xff, 0xa9, 0x75, 0x46, 0xff, 0xac, 0x76, 0x46, 0xff, 0xae, 0x77, 0x47, 0xff, 0xaf, 0x79, 0x46, 0xff, 0xb0, 0x7b, 0x46, 0xff, 0xb0, 0x79, 0x43, 0xff, 0xb2, 0x78, 0x42, 0xff, 0xb3, 0x79, 0x44, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xb4, 0x7c, 0x45, 0xff, 0xb5, 0x7e, 0x47, 0xff, 0xb7, 0x80, 0x48, 0xff, 0xb8, 0x81, 0x49, 0xff, 0xba, 0x82, 0x4a, 0xff, 0xbb, 0x83, 0x4a, 0xff, 0xbc, 0x84, 0x4b, 0xff, 0xbe, 0x85, 0x4c, 0xff, 0xc0, 0x87, 0x4c, 0xff, 0xc2, 0x88, 0x4d, 0xff, 0xc7, 0x8a, 0x4d, 0xff, 0xce, 0x8e, 0x50, 0xff, 0xd5, 0x91, 0x54, 0xff, 0xd8, 0x94, 0x56, 0xff, 0xd8, 0x97, 0x59, 0xff, 0xd8, 0x9c, 0x5e, 0xff, 0xd9, 0xa9, 0x65, 0xff, 0xd7, 0xb9, 0x6f, 0xff, 0xd4, 0xbd, 0x7a, 0xff, 0xd5, 0xbd, 0x83, 0xff, 0xd7, 0xbc, 0x8a, 0xff, 0xd8, 0xbd, 0x8f, 0xff, 0xd7, 0xbd, 0x8c, 0xff, 0xd5, 0xbe, 0x80, 0xff, 0xd3, 0xbb, 0x72, 0xff, 0xd7, 0xb3, 0x6a, 0xff, 0xd9, 0xaa, 0x68, 0xff, 0xd9, 0x9f, 0x60, 0xff, 0xda, 0x97, 0x57, 0xff, 0xd8, 0x91, 0x54, 0xff, 0xd8, 0x93, 0x55, 0xff, 0xd9, 0x98, 0x59, 0xff, 0xd9, 0x9a, 0x5b, 0xff, 0xda, 0xa0, 0x60, 0xff, 0xd7, 0x9c, 0x60, 0xff, 0xcb, 0x8f, 0x55, 0xff, 0xc3, 0x88, 0x4f, 0xff, 0xc2, 0x88, 0x4e, 0xff, 0xc2, 0x88, 0x4c, 0xff, 0xc0, 0x87, 0x49, 0xff, 0xc0, 0x86, 0x47, 0xff, 0xc0, 0x86, 0x45, 0xff, 0xc0, 0x83, 0x43, 0xff, 0xbe, 0x81, 0x42, 0xff, 0xbc, 0x80, 0x42, 0xff, 0xbb, 0x7f, 0x42, 0xff, 0xbb, 0x7e, 0x40, 0xff, 0xb9, 0x7d, 0x3f, 0xff, 0xb7, 0x7b, 0x3e, 0xff, 0xb6, 0x7b, 0x3e, 0xff, 0xb5, 0x79, 0x3d, 0xff, 0xb3, 0x77, 0x3d, 0xff, 0xb1, 0x76, 0x3d, 0xff, 0xaf, 0x73, 0x3b, 0xff, 0xae, 0x72, 0x39, 0xff, 0xac, 0x71, 0x3a, 0xff, 0xab, 0x70, 0x39, 0xff, 0xaa, 0x70, 0x3a, 0xff, 0xaa, 0x6f, 0x39, 0xff, 0xa9, 0x6d, 0x39, 0xff, 0xa8, 0x6c, 0x38, 0xff, 0xa6, 0x6b, 0x37, 0xff, 0xb3, 0x78, 0x43, 0xff, 0xc9, 0x8a, 0x52, 0xff, 0xca, 0x8b, 0x53, 0xff, 0xc4, 0x87, 0x4e, 0xff, 0xc2, 0x84, 0x4d, 0xff, 0xc7, 0x87, 0x4e, 0xff, 0xcc, 0x8a, 0x50, 0xff, 0xd1, 0x8c, 0x52, 0xff, 0xd8, 0x91, 0x56, 0xff, 0xd9, 0x98, 0x5e, 0xff, 0xda, 0xa3, 0x66, 0xff, 0xda, 0xac, 0x6c, 0xff, 0xd9, 0xae, 0x6e, 0xff, 0xda, 0xa5, 0x68, 0xff, 0xd9, 0x9f, 0x64, 0xff, 0xda, 0x9a, 0x5f, 0xff, 0xd9, 0x93, 0x5a, 0xff, 0xd2, 0x8f, 0x55, 0xff, 0xca, 0x8a, 0x51, 0xff, 0xc2, 0x84, 0x4d, 0xff, 0xbc, 0x7e, 0x48, 0xff, 0xb9, 0x7b, 0x45, 0xff, 0xb4, 0x77, 0x42, 0xff, 0xaf, 0x72, 0x3f, 0xff, 0xad, 0x70, 0x3c, 0xff, 0xab, 0x6e, 0x3d, 0xff, 0xab, 0x6f, 0x3e, 0xff, 0xac, 0x70, 0x3e, 0xff, 0xac, 0x6f, 0x3e, 0xff, 0xab, 0x6e, 0x3d, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xa8, 0x70, 0x40, 0xff, 0xa7, 0x6e, 0x40, 0xff, 0xa4, 0x6c, 0x3f, 0xff, 0xa6, 0x6b, 0x3d, 0xff, 0xa4, 0x67, 0x3a, 0xff, 0xa0, 0x64, 0x37, 0xff, 0x9e, 0x60, 0x34, 0xff, 0x9b, 0x5d, 0x32, 0xff, 0x98, 0x5b, 0x31, 0xff, 0x96, 0x5a, 0x2f, 0xff, 0x94, 0x59, 0x2f, 0xff, 0x94, 0x58, 0x2e, 0xff, 0x93, 0x57, 0x2f, 0xff, 0x92, 0x57, 0x2e, 0xff, 0x94, 0x58, 0x30, 0xff, 0x93, 0x57, 0x2f, 0xff, 0x92, 0x56, 0x2f, 0xff, 0x92, 0x57, 0x2f, 0xff, 0x92, 0x57, 0x2e, 0xff, 0x92, 0x57, 0x2f, 0xff, 0x92, 0x57, 0x2f, 0xff, 0x92, 0x57, 0x2e, 0xff, 0x92, 0x56, 0x2e, 0xff, 0x91, 0x56, 0x2e, 0xff, 0x91, 0x57, 0x2e, 0xff, 0x91, 0x56, 0x2e, 0xff, 0x92, 0x57, 0x2e, 0xff, 0x92, 0x56, 0x2e, 0xff, 0x92, 0x57, 0x2e, 0xff, 0x8e, 0x54, 0x2d, 0xff, 0x8d, 0x54, 0x2b, 0xff, 0x8d, 0x53, 0x2b, 0xff, 0x8c, 0x52, 0x2a, 0xff, 0x8b, 0x52, 0x29, 0xff, 0x8c, 0x52, 0x29, 0xff, 0x8c, 0x53, 0x2a, 0xff, 0x8d, 0x53, 0x29, 0xff, 0x8d, 0x53, 0x2b, 0xff, 0x8c, 0x54, 0x2b, 0xff, 0x8d, 0x54, 0x2b, 0xff, 0x8d, 0x53, 0x2c, 0xff, 0x8e, 0x54, 0x2c, 0xff, 0x8e, 0x54, 0x2c, 0xff, 0x8e, 0x53, 0x2b, 0xff, 0x8e, 0x54, 0x2d, 0xff, 0x90, 0x54, 0x2d, 0xff, 0x91, 0x56, 0x2f, 0xff, 0x90, 0x56, 0x2d, 0xff, 0x8e, 0x54, 0x2b, 0xff, 0x8b, 0x52, 0x28, 0xff, 0x8d, 0x53, 0x2b, 0xff, 0x8f, 0x54, 0x2c, 0xff, 0x8f, 0x55, 0x2d, 0xff, 0x91, 0x57, 0x2d, 0xff, 0x91, 0x57, 0x2e, 0xff, 0x91, 0x57, 0x2e, 0xff, 0x93, 0x57, 0x30, 0xff, 0x94, 0x58, 0x30, 0xff, 0x94, 0x59, 0x31, 0xff, 0x94, 0x59, 0x31, 0xff, 0x95, 0x59, 0x31, 0xff, 0x95, 0x59, 0x32, 0xff, 0x95, 0x59, 0x32, 0xff, 0x96, 0x5a, 0x34, 0xff, 0x98, 0x5c, 0x34, 0xff, 0x97, 0x5b, 0x34, 0xff, + 0x97, 0x5b, 0x33, 0xff, 0x98, 0x5d, 0x34, 0xff, 0x99, 0x5c, 0x35, 0xff, 0x9a, 0x5d, 0x35, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x9b, 0x5f, 0x36, 0xff, 0x9c, 0x60, 0x36, 0xff, 0x9d, 0x5f, 0x36, 0xff, 0x9e, 0x61, 0x37, 0xff, 0x9f, 0x63, 0x38, 0xff, 0x9e, 0x62, 0x36, 0xff, 0x9f, 0x63, 0x37, 0xff, 0xa1, 0x64, 0x39, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa3, 0x65, 0x39, 0xff, 0xa4, 0x67, 0x3b, 0xff, 0xa5, 0x68, 0x3c, 0xff, 0xa6, 0x6b, 0x3c, 0xff, 0xa9, 0x6d, 0x40, 0xff, 0xad, 0x70, 0x3f, 0xff, 0xad, 0x71, 0x41, 0xff, 0xaf, 0x72, 0x41, 0xff, 0xae, 0x72, 0x41, 0xff, 0xad, 0x70, 0x40, 0xff, 0xad, 0x72, 0x42, 0xff, 0xae, 0x73, 0x42, 0xff, 0xaf, 0x73, 0x43, 0xff, 0xb0, 0x75, 0x44, 0xff, 0xb1, 0x75, 0x44, 0xff, 0xb2, 0x78, 0x47, 0xff, 0xb4, 0x7a, 0x49, 0xff, 0xb6, 0x7a, 0x4a, 0xff, 0xb9, 0x7e, 0x4b, 0xff, 0xc2, 0x85, 0x51, 0xff, 0xd0, 0x90, 0x58, 0xff, 0xd4, 0x91, 0x59, 0xff, 0xd7, 0x92, 0x5a, 0xff, 0xd9, 0x93, 0x5c, 0xff, 0xd6, 0x95, 0x5f, 0xff, 0xd0, 0x93, 0x5c, 0xff, 0xbb, 0x88, 0x53, 0xff, 0xaa, 0x74, 0x44, 0xff, 0x9f, 0x65, 0x39, 0xff, 0xa1, 0x67, 0x3a, 0xff, 0xa0, 0x66, 0x3a, 0xff, 0xa0, 0x67, 0x3a, 0xff, 0xa0, 0x66, 0x3a, 0xff, 0xa1, 0x69, 0x3b, 0xff, 0xa2, 0x69, 0x3c, 0xff, 0xa3, 0x69, 0x3d, 0xff, 0xa3, 0x68, 0x3c, 0xff, 0xa3, 0x6b, 0x3e, 0xff, 0xa4, 0x6e, 0x40, 0xff, 0xa4, 0x6f, 0x43, 0xff, 0xa4, 0x6f, 0x46, 0xff, 0xa4, 0x6f, 0x47, 0xff, 0xa4, 0x6e, 0x48, 0xff, 0xa4, 0x70, 0x48, 0xff, 0xa6, 0x70, 0x48, 0xff, 0xa6, 0x6e, 0x42, 0xff, 0xa6, 0x71, 0x45, 0xff, 0xa6, 0x72, 0x46, 0xff, 0xa6, 0x73, 0x46, 0xff, 0xa7, 0x72, 0x45, 0xff, 0xa6, 0x72, 0x45, 0xff, 0xa7, 0x71, 0x43, 0xff, 0xa9, 0x72, 0x44, 0xff, 0xaa, 0x73, 0x45, 0xff, 0xac, 0x75, 0x46, 0xff, 0xad, 0x78, 0x46, 0xff, 0xaf, 0x7a, 0x45, 0xff, 0xb0, 0x79, 0x45, 0xff, 0xb1, 0x77, 0x41, 0xff, 0xb3, 0x77, 0x42, 0xff, 0xb4, 0x79, 0x43, 0xff, 0xb4, 0x7b, 0x44, 0xff, 0xb5, 0x7d, 0x46, 0xff, 0xb7, 0x7f, 0x47, 0xff, 0xb8, 0x80, 0x48, 0xff, 0xb9, 0x82, 0x4a, 0xff, 0xbb, 0x84, 0x4b, 0xff, 0xbc, 0x86, 0x4c, 0xff, 0xbe, 0x89, 0x4e, 0xff, 0xc0, 0x8a, 0x50, 0xff, 0xc2, 0x8b, 0x4f, 0xff, 0xc6, 0x8d, 0x51, 0xff, 0xcc, 0x90, 0x54, 0xff, 0xd3, 0x94, 0x55, 0xff, 0xd7, 0x96, 0x57, 0xff, 0xda, 0x99, 0x5a, 0xff, 0xd9, 0x9f, 0x60, 0xff, 0xd9, 0xac, 0x65, 0xff, 0xd8, 0xba, 0x6e, 0xff, 0xd3, 0xbd, 0x78, 0xff, 0xd5, 0xbd, 0x82, 0xff, 0xd8, 0xbe, 0x8d, 0xff, 0xda, 0xbe, 0x96, 0xff, 0xda, 0xbe, 0x95, 0xff, 0xd7, 0xbe, 0x89, 0xff, 0xd4, 0xbe, 0x7c, 0xff, 0xd5, 0xbb, 0x6f, 0xff, 0xd9, 0xb2, 0x6b, 0xff, 0xda, 0xa6, 0x65, 0xff, 0xd9, 0x98, 0x5a, 0xff, 0xda, 0x94, 0x56, 0xff, 0xda, 0x91, 0x52, 0xff, 0xda, 0x95, 0x56, 0xff, 0xd9, 0x9a, 0x5b, 0xff, 0xd9, 0x9b, 0x5c, 0xff, 0xdb, 0x9d, 0x60, 0xff, 0xd2, 0x93, 0x59, 0xff, 0xc6, 0x88, 0x4f, 0xff, 0xc5, 0x89, 0x4f, 0xff, 0xc5, 0x89, 0x4f, 0xff, 0xc3, 0x89, 0x4c, 0xff, 0xc3, 0x89, 0x4a, 0xff, 0xc3, 0x89, 0x4a, 0xff, 0xc3, 0x88, 0x47, 0xff, 0xc3, 0x86, 0x45, 0xff, 0xc2, 0x84, 0x45, 0xff, 0xc0, 0x83, 0x45, 0xff, 0xbe, 0x81, 0x43, 0xff, 0xbd, 0x80, 0x44, 0xff, 0xbc, 0x80, 0x43, 0xff, 0xb9, 0x7e, 0x41, 0xff, 0xb8, 0x7d, 0x41, 0xff, 0xb7, 0x7b, 0x40, 0xff, 0xb4, 0x79, 0x3e, 0xff, 0xb2, 0x78, 0x3d, 0xff, 0xb2, 0x75, 0x3d, 0xff, 0xb0, 0x74, 0x3d, 0xff, 0xae, 0x73, 0x3b, 0xff, 0xac, 0x71, 0x3a, 0xff, 0xab, 0x70, 0x39, 0xff, 0xaa, 0x6f, 0x3a, 0xff, 0xa9, 0x6f, 0x39, 0xff, 0xa8, 0x6e, 0x39, 0xff, 0xa9, 0x6f, 0x3a, 0xff, 0xc1, 0x82, 0x4c, 0xff, 0xcd, 0x8b, 0x54, 0xff, 0xc7, 0x87, 0x4c, 0xff, 0xc3, 0x85, 0x4a, 0xff, 0xca, 0x89, 0x4f, 0xff, 0xcf, 0x8c, 0x53, 0xff, 0xd4, 0x8f, 0x55, 0xff, 0xd9, 0x93, 0x58, 0xff, 0xd9, 0x9a, 0x5f, 0xff, 0xd9, 0xa8, 0x68, 0xff, 0xd8, 0xb9, 0x74, 0xff, 0xd5, 0xc0, 0x7b, 0xff, 0xd8, 0xad, 0x70, 0xff, 0xda, 0xa7, 0x69, 0xff, 0xda, 0xa2, 0x65, 0xff, 0xda, 0x9b, 0x60, 0xff, 0xda, 0x96, 0x5b, 0xff, 0xd6, 0x91, 0x56, 0xff, 0xcc, 0x8c, 0x52, 0xff, 0xc5, 0x87, 0x4f, 0xff, 0xbe, 0x82, 0x4b, 0xff, 0xb9, 0x7c, 0x46, 0xff, 0xb4, 0x78, 0x42, 0xff, 0xb2, 0x74, 0x40, 0xff, 0xae, 0x71, 0x3d, 0xff, 0xac, 0x6f, 0x3d, 0xff, 0xad, 0x71, 0x40, 0xff, 0xae, 0x71, 0x41, 0xff, 0xad, 0x70, 0x3f, 0xff, 0xab, 0x70, 0x3d, 0xff, 0xaa, 0x70, 0x3f, 0xff, 0xa8, 0x6e, 0x41, 0xff, 0xa7, 0x6e, 0x40, 0xff, 0xa6, 0x6d, 0x3f, 0xff, 0xa7, 0x6b, 0x3c, 0xff, 0xa4, 0x66, 0x38, 0xff, 0xa1, 0x63, 0x36, 0xff, 0x9e, 0x60, 0x34, 0xff, 0x9b, 0x5d, 0x33, 0xff, 0x98, 0x5c, 0x32, 0xff, 0x96, 0x5a, 0x2f, 0xff, 0x95, 0x59, 0x2f, 0xff, 0x94, 0x58, 0x2f, 0xff, 0x95, 0x58, 0x31, 0xff, 0x95, 0x59, 0x31, 0xff, 0x94, 0x59, 0x31, 0xff, 0x94, 0x57, 0x2f, 0xff, 0x94, 0x58, 0x2f, 0xff, 0x93, 0x57, 0x2f, 0xff, 0x92, 0x58, 0x2e, 0xff, 0x93, 0x57, 0x2f, 0xff, 0x92, 0x57, 0x2f, 0xff, 0x92, 0x57, 0x2f, 0xff, 0x91, 0x56, 0x2e, 0xff, 0x91, 0x57, 0x2e, 0xff, 0x90, 0x56, 0x2e, 0xff, 0x91, 0x57, 0x2e, 0xff, 0x92, 0x56, 0x2f, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x8f, 0x55, 0x2d, 0xff, 0x8e, 0x54, 0x2c, 0xff, 0x8c, 0x53, 0x2b, 0xff, 0x8b, 0x52, 0x29, 0xff, 0x8b, 0x52, 0x29, 0xff, 0x8b, 0x52, 0x29, 0xff, 0x8b, 0x52, 0x2b, 0xff, 0x8b, 0x51, 0x29, 0xff, 0x8c, 0x53, 0x29, 0xff, 0x8c, 0x53, 0x2a, 0xff, 0x8b, 0x53, 0x2b, 0xff, 0x8c, 0x51, 0x2b, 0xff, 0x8c, 0x53, 0x2c, 0xff, 0x8b, 0x52, 0x2b, 0xff, 0x8c, 0x53, 0x2c, 0xff, 0x8e, 0x53, 0x2d, 0xff, 0x8f, 0x53, 0x2d, 0xff, 0x8e, 0x53, 0x2d, 0xff, 0x8b, 0x52, 0x2a, 0xff, 0x8a, 0x50, 0x27, 0xff, 0x8b, 0x52, 0x29, 0xff, 0x8c, 0x52, 0x29, 0xff, 0x8d, 0x53, 0x29, 0xff, 0x8f, 0x53, 0x2d, 0xff, 0x8f, 0x54, 0x2d, 0xff, 0x90, 0x55, 0x2d, 0xff, 0x91, 0x54, 0x2d, 0xff, 0x91, 0x55, 0x2e, 0xff, 0x91, 0x56, 0x2e, 0xff, 0x92, 0x57, 0x2e, 0xff, 0x92, 0x57, 0x2e, 0xff, 0x94, 0x57, 0x30, 0xff, 0x94, 0x58, 0x30, 0xff, 0x94, 0x59, 0x31, 0xff, 0x95, 0x59, 0x32, 0xff, 0x96, 0x59, 0x33, 0xff, 0x96, 0x5a, 0x34, 0xff, + 0x95, 0x59, 0x32, 0xff, 0x96, 0x5b, 0x33, 0xff, 0x97, 0x5b, 0x34, 0xff, 0x98, 0x5b, 0x34, 0xff, 0x99, 0x5d, 0x34, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x9c, 0x5f, 0x36, 0xff, 0x9d, 0x61, 0x36, 0xff, 0x9d, 0x62, 0x37, 0xff, 0x9f, 0x63, 0x37, 0xff, 0x9e, 0x61, 0x37, 0xff, 0x9f, 0x63, 0x37, 0xff, 0xa0, 0x64, 0x38, 0xff, 0xa2, 0x65, 0x3a, 0xff, 0xa3, 0x66, 0x3a, 0xff, 0xa4, 0x67, 0x3b, 0xff, 0xa6, 0x68, 0x3c, 0xff, 0xa9, 0x6b, 0x3e, 0xff, 0xab, 0x70, 0x3f, 0xff, 0xae, 0x71, 0x40, 0xff, 0xae, 0x71, 0x41, 0xff, 0xae, 0x72, 0x41, 0xff, 0xaf, 0x72, 0x41, 0xff, 0xad, 0x71, 0x40, 0xff, 0xac, 0x71, 0x41, 0xff, 0xae, 0x72, 0x42, 0xff, 0xaf, 0x73, 0x44, 0xff, 0xb1, 0x76, 0x45, 0xff, 0xb2, 0x77, 0x47, 0xff, 0xb3, 0x78, 0x48, 0xff, 0xb4, 0x79, 0x47, 0xff, 0xb6, 0x79, 0x49, 0xff, 0xc1, 0x87, 0x51, 0xff, 0xc4, 0x88, 0x52, 0xff, 0xc8, 0x8a, 0x53, 0xff, 0xcf, 0x8e, 0x57, 0xff, 0xd9, 0x93, 0x5b, 0xff, 0xda, 0x94, 0x5b, 0xff, 0xdb, 0x94, 0x5d, 0xff, 0xcb, 0x8c, 0x55, 0xff, 0x9f, 0x66, 0x39, 0xff, 0xa0, 0x66, 0x3b, 0xff, 0x9f, 0x66, 0x3a, 0xff, 0x9f, 0x66, 0x3a, 0xff, 0x9f, 0x64, 0x39, 0xff, 0xa1, 0x66, 0x3a, 0xff, 0xa0, 0x66, 0x3a, 0xff, 0xa0, 0x67, 0x3a, 0xff, 0xa0, 0x66, 0x3a, 0xff, 0xa1, 0x68, 0x3b, 0xff, 0xa2, 0x6a, 0x3d, 0xff, 0xa3, 0x6d, 0x40, 0xff, 0xa4, 0x70, 0x43, 0xff, 0xa4, 0x70, 0x46, 0xff, 0xa4, 0x6e, 0x47, 0xff, 0xa4, 0x6e, 0x49, 0xff, 0xa4, 0x70, 0x4a, 0xff, 0xa6, 0x71, 0x4a, 0xff, 0xa6, 0x6f, 0x45, 0xff, 0xa5, 0x6e, 0x44, 0xff, 0xa6, 0x72, 0x48, 0xff, 0xa7, 0x74, 0x49, 0xff, 0xa6, 0x72, 0x45, 0xff, 0xa6, 0x71, 0x44, 0xff, 0xa6, 0x71, 0x44, 0xff, 0xa7, 0x70, 0x42, 0xff, 0xa9, 0x72, 0x43, 0xff, 0xab, 0x73, 0x44, 0xff, 0xad, 0x76, 0x44, 0xff, 0xaf, 0x78, 0x45, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xb0, 0x76, 0x42, 0xff, 0xb2, 0x78, 0x42, 0xff, 0xb4, 0x7a, 0x42, 0xff, 0xb5, 0x7c, 0x43, 0xff, 0xb6, 0x7d, 0x45, 0xff, 0xb7, 0x7f, 0x47, 0xff, 0xb8, 0x83, 0x49, 0xff, 0xb8, 0x83, 0x4a, 0xff, 0xba, 0x85, 0x4c, 0xff, 0xbd, 0x87, 0x4e, 0xff, 0xbe, 0x89, 0x4f, 0xff, 0xbf, 0x8d, 0x50, 0xff, 0xc1, 0x8e, 0x52, 0xff, 0xc4, 0x8f, 0x54, 0xff, 0xca, 0x93, 0x56, 0xff, 0xd0, 0x95, 0x59, 0xff, 0xd4, 0x98, 0x59, 0xff, 0xd8, 0x9b, 0x5b, 0xff, 0xd9, 0xa0, 0x60, 0xff, 0xda, 0xab, 0x67, 0xff, 0xd6, 0xb9, 0x6d, 0xff, 0xd4, 0xbf, 0x76, 0xff, 0xd5, 0xbe, 0x81, 0xff, 0xd8, 0xbf, 0x8f, 0xff, 0xda, 0xbf, 0x99, 0xff, 0xda, 0xc0, 0x9b, 0xff, 0xd9, 0xbf, 0x91, 0xff, 0xd5, 0xbe, 0x80, 0xff, 0xd4, 0xbd, 0x74, 0xff, 0xd8, 0xbb, 0x6e, 0xff, 0xdb, 0xb0, 0x69, 0xff, 0xdb, 0x9e, 0x5e, 0xff, 0xda, 0x96, 0x57, 0xff, 0xdb, 0x92, 0x54, 0xff, 0xd9, 0x90, 0x52, 0xff, 0xd7, 0x95, 0x56, 0xff, 0xda, 0x9c, 0x5d, 0xff, 0xdb, 0x9c, 0x5d, 0xff, 0xd6, 0x98, 0x5b, 0xff, 0xcd, 0x8e, 0x53, 0xff, 0xc9, 0x8c, 0x50, 0xff, 0xc7, 0x8c, 0x50, 0xff, 0xc7, 0x8b, 0x4f, 0xff, 0xc7, 0x8b, 0x4c, 0xff, 0xc7, 0x8d, 0x4b, 0xff, 0xc9, 0x8c, 0x4b, 0xff, 0xc9, 0x8a, 0x4b, 0xff, 0xc7, 0x89, 0x49, 0xff, 0xc7, 0x88, 0x49, 0xff, 0xc5, 0x88, 0x49, 0xff, 0xc3, 0x86, 0x47, 0xff, 0xc1, 0x85, 0x46, 0xff, 0xc0, 0x83, 0x47, 0xff, 0xbd, 0x81, 0x46, 0xff, 0xbb, 0x81, 0x43, 0xff, 0xb9, 0x7e, 0x42, 0xff, 0xb7, 0x7b, 0x42, 0xff, 0xb6, 0x7b, 0x40, 0xff, 0xb3, 0x78, 0x3e, 0xff, 0xb0, 0x75, 0x3d, 0xff, 0xaf, 0x75, 0x3d, 0xff, 0xad, 0x73, 0x3d, 0xff, 0xac, 0x71, 0x3b, 0xff, 0xab, 0x71, 0x3a, 0xff, 0xaa, 0x6e, 0x3a, 0xff, 0xa7, 0x6d, 0x39, 0xff, 0xb9, 0x7b, 0x43, 0xff, 0xcd, 0x8a, 0x4e, 0xff, 0xcd, 0x89, 0x4b, 0xff, 0xc5, 0x86, 0x49, 0xff, 0xca, 0x89, 0x4f, 0xff, 0xd3, 0x8d, 0x54, 0xff, 0xd7, 0x8f, 0x56, 0xff, 0xda, 0x93, 0x5a, 0xff, 0xdb, 0x9b, 0x60, 0xff, 0xdb, 0xaa, 0x6a, 0xff, 0xd8, 0xba, 0x75, 0xff, 0xd6, 0xc1, 0x83, 0xff, 0xd6, 0xab, 0x76, 0xff, 0xd9, 0xa9, 0x6e, 0xff, 0xdb, 0xa9, 0x6a, 0xff, 0xda, 0xa2, 0x65, 0xff, 0xdb, 0x9c, 0x60, 0xff, 0xdb, 0x96, 0x5b, 0xff, 0xd9, 0x93, 0x58, 0xff, 0xd0, 0x8f, 0x54, 0xff, 0xc6, 0x89, 0x50, 0xff, 0xbf, 0x82, 0x4c, 0xff, 0xba, 0x7e, 0x46, 0xff, 0xb6, 0x7a, 0x44, 0xff, 0xb2, 0x75, 0x41, 0xff, 0xaf, 0x72, 0x3e, 0xff, 0xaf, 0x72, 0x3e, 0xff, 0xb0, 0x75, 0x41, 0xff, 0xaf, 0x73, 0x41, 0xff, 0xae, 0x71, 0x3e, 0xff, 0xac, 0x71, 0x3e, 0xff, 0xa9, 0x70, 0x3f, 0xff, 0xa8, 0x70, 0x41, 0xff, 0xa7, 0x6e, 0x3f, 0xff, 0xa7, 0x6e, 0x3d, 0xff, 0xa6, 0x6a, 0x3a, 0xff, 0xa3, 0x65, 0x37, 0xff, 0xa0, 0x62, 0x35, 0xff, 0x9e, 0x5f, 0x34, 0xff, 0x9b, 0x5d, 0x33, 0xff, 0x98, 0x5b, 0x32, 0xff, 0x97, 0x5b, 0x32, 0xff, 0x97, 0x5a, 0x31, 0xff, 0x95, 0x59, 0x30, 0xff, 0x95, 0x59, 0x31, 0xff, 0x95, 0x5a, 0x32, 0xff, 0x94, 0x59, 0x30, 0xff, 0x93, 0x58, 0x30, 0xff, 0x93, 0x58, 0x31, 0xff, 0x93, 0x58, 0x30, 0xff, 0x93, 0x57, 0x2f, 0xff, 0x91, 0x57, 0x2f, 0xff, 0x93, 0x57, 0x2f, 0xff, 0x92, 0x56, 0x2f, 0xff, 0x91, 0x56, 0x2e, 0xff, 0x92, 0x57, 0x2f, 0xff, 0x90, 0x55, 0x2e, 0xff, 0x90, 0x55, 0x2e, 0xff, 0x90, 0x57, 0x2e, 0xff, 0x8f, 0x55, 0x2e, 0xff, 0x8e, 0x54, 0x2b, 0xff, 0x8d, 0x53, 0x2b, 0xff, 0x8c, 0x53, 0x2b, 0xff, 0x8b, 0x52, 0x2b, 0xff, 0x8a, 0x51, 0x29, 0xff, 0x8b, 0x51, 0x29, 0xff, 0x8b, 0x51, 0x2a, 0xff, 0x8b, 0x51, 0x29, 0xff, 0x8b, 0x51, 0x28, 0xff, 0x8b, 0x52, 0x2a, 0xff, 0x8c, 0x53, 0x2a, 0xff, 0x8b, 0x51, 0x29, 0xff, 0x8c, 0x52, 0x2a, 0xff, 0x8c, 0x52, 0x2a, 0xff, 0x8c, 0x53, 0x2a, 0xff, 0x8c, 0x51, 0x2a, 0xff, 0x8a, 0x51, 0x29, 0xff, 0x88, 0x50, 0x27, 0xff, 0x8a, 0x50, 0x27, 0xff, 0x8a, 0x51, 0x28, 0xff, 0x8a, 0x51, 0x28, 0xff, 0x8b, 0x50, 0x29, 0xff, 0x8d, 0x54, 0x2b, 0xff, 0x8e, 0x53, 0x2c, 0xff, 0x8e, 0x54, 0x2c, 0xff, 0x8e, 0x54, 0x2c, 0xff, 0x8f, 0x55, 0x2c, 0xff, 0x90, 0x54, 0x2d, 0xff, 0x90, 0x55, 0x2e, 0xff, 0x91, 0x57, 0x2e, 0xff, 0x91, 0x57, 0x2e, 0xff, 0x93, 0x57, 0x2f, 0xff, 0x93, 0x57, 0x31, 0xff, 0x94, 0x58, 0x31, 0xff, 0x95, 0x59, 0x32, 0xff, 0x94, 0x59, 0x31, 0xff, + 0x94, 0x58, 0x31, 0xff, 0x94, 0x58, 0x32, 0xff, 0x95, 0x5a, 0x32, 0xff, 0x96, 0x5a, 0x34, 0xff, 0x97, 0x5b, 0x33, 0xff, 0x98, 0x5c, 0x34, 0xff, 0x99, 0x5c, 0x35, 0xff, 0x9a, 0x5d, 0x35, 0xff, 0x9b, 0x60, 0x36, 0xff, 0x9d, 0x61, 0x37, 0xff, 0x9e, 0x62, 0x38, 0xff, 0x9e, 0x61, 0x37, 0xff, 0x9e, 0x62, 0x37, 0xff, 0xa0, 0x63, 0x38, 0xff, 0xa0, 0x64, 0x39, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa4, 0x67, 0x3a, 0xff, 0xa5, 0x68, 0x3d, 0xff, 0xa8, 0x6c, 0x3e, 0xff, 0xab, 0x6f, 0x3f, 0xff, 0xac, 0x70, 0x3f, 0xff, 0xad, 0x71, 0x41, 0xff, 0xae, 0x71, 0x41, 0xff, 0xaf, 0x72, 0x42, 0xff, 0xb0, 0x73, 0x43, 0xff, 0xaf, 0x71, 0x42, 0xff, 0xae, 0x71, 0x41, 0xff, 0xaf, 0x73, 0x43, 0xff, 0xb0, 0x76, 0x46, 0xff, 0xb1, 0x77, 0x46, 0xff, 0xb3, 0x78, 0x47, 0xff, 0xb3, 0x78, 0x47, 0xff, 0xb8, 0x7c, 0x4b, 0xff, 0xc3, 0x88, 0x51, 0xff, 0xc2, 0x87, 0x53, 0xff, 0xc8, 0x89, 0x52, 0xff, 0xc9, 0x8b, 0x53, 0xff, 0xc6, 0x89, 0x53, 0xff, 0xca, 0x8a, 0x54, 0xff, 0xcf, 0x8f, 0x58, 0xff, 0xbc, 0x82, 0x4f, 0xff, 0x9f, 0x63, 0x38, 0xff, 0xa4, 0x68, 0x3c, 0xff, 0xa1, 0x67, 0x3a, 0xff, 0x9f, 0x65, 0x39, 0xff, 0x9f, 0x64, 0x39, 0xff, 0x9f, 0x65, 0x39, 0xff, 0x9f, 0x65, 0x39, 0xff, 0x9e, 0x64, 0x39, 0xff, 0x9f, 0x66, 0x39, 0xff, 0x9f, 0x66, 0x39, 0xff, 0xa1, 0x69, 0x3a, 0xff, 0xa1, 0x6b, 0x3d, 0xff, 0xa3, 0x6e, 0x41, 0xff, 0xa5, 0x70, 0x45, 0xff, 0xa4, 0x6e, 0x48, 0xff, 0xa4, 0x6e, 0x49, 0xff, 0xa5, 0x70, 0x4b, 0xff, 0xa5, 0x72, 0x4c, 0xff, 0xa6, 0x72, 0x4b, 0xff, 0xa6, 0x6f, 0x44, 0xff, 0xa6, 0x70, 0x45, 0xff, 0xa6, 0x72, 0x47, 0xff, 0xa6, 0x73, 0x46, 0xff, 0xa6, 0x71, 0x43, 0xff, 0xa6, 0x71, 0x41, 0xff, 0xa8, 0x71, 0x41, 0xff, 0xa9, 0x72, 0x41, 0xff, 0xa9, 0x73, 0x41, 0xff, 0xac, 0x76, 0x41, 0xff, 0xae, 0x77, 0x42, 0xff, 0xaf, 0x78, 0x43, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb1, 0x76, 0x41, 0xff, 0xb3, 0x79, 0x42, 0xff, 0xb4, 0x7b, 0x43, 0xff, 0xb5, 0x7d, 0x44, 0xff, 0xb6, 0x7e, 0x46, 0xff, 0xb7, 0x80, 0x48, 0xff, 0xb9, 0x83, 0x4a, 0xff, 0xba, 0x85, 0x4c, 0xff, 0xbb, 0x88, 0x4e, 0xff, 0xbd, 0x8c, 0x51, 0xff, 0xbf, 0x8e, 0x54, 0xff, 0xc1, 0x91, 0x56, 0xff, 0xc2, 0x93, 0x57, 0xff, 0xc4, 0x94, 0x57, 0xff, 0xcd, 0x99, 0x5a, 0xff, 0xd2, 0x9b, 0x5b, 0xff, 0xd9, 0x9e, 0x5e, 0xff, 0xdb, 0xa4, 0x61, 0xff, 0xdb, 0xac, 0x67, 0xff, 0xd9, 0xba, 0x6d, 0xff, 0xd3, 0xbf, 0x74, 0xff, 0xd5, 0xbf, 0x7f, 0xff, 0xd7, 0xbf, 0x89, 0xff, 0xda, 0xbf, 0x94, 0xff, 0xda, 0xbf, 0x9a, 0xff, 0xd9, 0xbf, 0x93, 0xff, 0xd6, 0xc0, 0x86, 0xff, 0xd4, 0xbe, 0x78, 0xff, 0xd5, 0xbc, 0x6f, 0xff, 0xd9, 0xb3, 0x6b, 0xff, 0xda, 0xa3, 0x62, 0xff, 0xda, 0x99, 0x5b, 0xff, 0xdb, 0x95, 0x55, 0xff, 0xdb, 0x93, 0x54, 0xff, 0xda, 0x92, 0x53, 0xff, 0xd9, 0x97, 0x57, 0xff, 0xda, 0x9c, 0x5c, 0xff, 0xdb, 0x9e, 0x5f, 0xff, 0xd3, 0x96, 0x58, 0xff, 0xca, 0x8c, 0x4f, 0xff, 0xcc, 0x8e, 0x51, 0xff, 0xcc, 0x8e, 0x50, 0xff, 0xcc, 0x8e, 0x4f, 0xff, 0xcc, 0x8f, 0x4f, 0xff, 0xcd, 0x8f, 0x4e, 0xff, 0xce, 0x8e, 0x4c, 0xff, 0xd1, 0x8e, 0x4c, 0xff, 0xd0, 0x8e, 0x4c, 0xff, 0xcf, 0x8d, 0x4c, 0xff, 0xcd, 0x8b, 0x4b, 0xff, 0xca, 0x8a, 0x4b, 0xff, 0xc8, 0x89, 0x4b, 0xff, 0xc6, 0x88, 0x4a, 0xff, 0xc2, 0x85, 0x48, 0xff, 0xbf, 0x83, 0x47, 0xff, 0xbc, 0x82, 0x46, 0xff, 0xba, 0x7f, 0x45, 0xff, 0xb8, 0x7d, 0x42, 0xff, 0xb5, 0x7b, 0x41, 0xff, 0xb2, 0x78, 0x40, 0xff, 0xb0, 0x77, 0x3e, 0xff, 0xaf, 0x74, 0x3c, 0xff, 0xad, 0x72, 0x3b, 0xff, 0xac, 0x72, 0x3b, 0xff, 0xab, 0x6f, 0x3a, 0xff, 0xa9, 0x70, 0x3c, 0xff, 0xc5, 0x85, 0x4a, 0xff, 0xd3, 0x8e, 0x4f, 0xff, 0xcb, 0x8a, 0x4e, 0xff, 0xcf, 0x8b, 0x51, 0xff, 0xd5, 0x8e, 0x54, 0xff, 0xd5, 0x8e, 0x55, 0xff, 0xd9, 0x92, 0x58, 0xff, 0xda, 0x99, 0x5f, 0xff, 0xdb, 0xa8, 0x68, 0xff, 0xd9, 0xbb, 0x73, 0xff, 0xd8, 0xc2, 0x84, 0xff, 0xd6, 0xae, 0x7c, 0xff, 0xd9, 0xa8, 0x74, 0xff, 0xdb, 0xab, 0x72, 0xff, 0xdb, 0xa9, 0x6d, 0xff, 0xda, 0xa4, 0x67, 0xff, 0xdb, 0x9d, 0x60, 0xff, 0xdb, 0x9a, 0x5d, 0xff, 0xda, 0x96, 0x5a, 0xff, 0xd0, 0x8f, 0x56, 0xff, 0xc7, 0x8a, 0x51, 0xff, 0xc2, 0x85, 0x4d, 0xff, 0xbd, 0x80, 0x49, 0xff, 0xb7, 0x7a, 0x45, 0xff, 0xb4, 0x77, 0x42, 0xff, 0xb0, 0x73, 0x3e, 0xff, 0xb1, 0x76, 0x41, 0xff, 0xb2, 0x77, 0x42, 0xff, 0xb1, 0x73, 0x40, 0xff, 0xae, 0x72, 0x3e, 0xff, 0xad, 0x71, 0x3e, 0xff, 0xab, 0x71, 0x3f, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xa8, 0x6d, 0x3c, 0xff, 0xa5, 0x67, 0x38, 0xff, 0xa1, 0x65, 0x36, 0xff, 0x9e, 0x61, 0x35, 0xff, 0x9c, 0x5e, 0x34, 0xff, 0x9b, 0x5d, 0x34, 0xff, 0x9c, 0x5d, 0x34, 0xff, 0x9a, 0x5d, 0x34, 0xff, 0x98, 0x5c, 0x33, 0xff, 0x97, 0x5b, 0x34, 0xff, 0x96, 0x5a, 0x33, 0xff, 0x95, 0x5a, 0x33, 0xff, 0x94, 0x59, 0x31, 0xff, 0x94, 0x58, 0x31, 0xff, 0x93, 0x58, 0x2f, 0xff, 0x94, 0x57, 0x30, 0xff, 0x93, 0x57, 0x2f, 0xff, 0x92, 0x56, 0x2f, 0xff, 0x91, 0x57, 0x2f, 0xff, 0x90, 0x55, 0x2e, 0xff, 0x8e, 0x55, 0x2d, 0xff, 0x8f, 0x55, 0x2e, 0xff, 0x93, 0x56, 0x30, 0xff, 0x91, 0x56, 0x30, 0xff, 0x8f, 0x55, 0x2e, 0xff, 0x8f, 0x53, 0x2c, 0xff, 0x8e, 0x53, 0x2c, 0xff, 0x8c, 0x53, 0x2b, 0xff, 0x8c, 0x52, 0x2a, 0xff, 0x8a, 0x50, 0x29, 0xff, 0x8a, 0x51, 0x2b, 0xff, 0x8b, 0x51, 0x29, 0xff, 0x8a, 0x51, 0x2a, 0xff, 0x8a, 0x50, 0x28, 0xff, 0x8a, 0x50, 0x28, 0xff, 0x8b, 0x52, 0x2b, 0xff, 0x8a, 0x50, 0x28, 0xff, 0x8b, 0x51, 0x2b, 0xff, 0x8b, 0x51, 0x29, 0xff, 0x89, 0x51, 0x2a, 0xff, 0x8a, 0x51, 0x2b, 0xff, 0x88, 0x50, 0x28, 0xff, 0x87, 0x50, 0x27, 0xff, 0x87, 0x50, 0x27, 0xff, 0x88, 0x50, 0x26, 0xff, 0x8a, 0x51, 0x28, 0xff, 0x8c, 0x52, 0x2b, 0xff, 0x8c, 0x52, 0x2b, 0xff, 0x8b, 0x52, 0x2b, 0xff, 0x8c, 0x52, 0x2b, 0xff, 0x8c, 0x51, 0x2c, 0xff, 0x8d, 0x53, 0x2c, 0xff, 0x8e, 0x53, 0x2c, 0xff, 0x8e, 0x52, 0x2c, 0xff, 0x8f, 0x53, 0x2d, 0xff, 0x90, 0x55, 0x2d, 0xff, 0x91, 0x56, 0x2f, 0xff, 0x91, 0x57, 0x2f, 0xff, 0x93, 0x57, 0x2f, 0xff, 0x92, 0x57, 0x30, 0xff, 0x94, 0x58, 0x30, 0xff, + 0x93, 0x57, 0x2f, 0xff, 0x94, 0x57, 0x31, 0xff, 0x94, 0x58, 0x31, 0xff, 0x95, 0x58, 0x32, 0xff, 0x95, 0x58, 0x32, 0xff, 0x96, 0x5a, 0x34, 0xff, 0x97, 0x5c, 0x34, 0xff, 0x99, 0x5c, 0x35, 0xff, 0x9a, 0x5f, 0x36, 0xff, 0x9b, 0x5f, 0x36, 0xff, 0x9b, 0x5f, 0x36, 0xff, 0x9d, 0x61, 0x37, 0xff, 0x9d, 0x61, 0x37, 0xff, 0x9e, 0x62, 0x37, 0xff, 0xa0, 0x64, 0x38, 0xff, 0xa1, 0x66, 0x39, 0xff, 0xa4, 0x67, 0x3b, 0xff, 0xa4, 0x68, 0x3c, 0xff, 0xa7, 0x6b, 0x3d, 0xff, 0xaa, 0x6e, 0x3d, 0xff, 0xaa, 0x6e, 0x3e, 0xff, 0xab, 0x6e, 0x3f, 0xff, 0xad, 0x70, 0x40, 0xff, 0xae, 0x71, 0x40, 0xff, 0xae, 0x72, 0x42, 0xff, 0xaf, 0x72, 0x43, 0xff, 0xb0, 0x73, 0x43, 0xff, 0xae, 0x72, 0x43, 0xff, 0xaf, 0x75, 0x46, 0xff, 0xb1, 0x77, 0x46, 0xff, 0xb3, 0x77, 0x47, 0xff, 0xb5, 0x79, 0x48, 0xff, 0xbd, 0x84, 0x4e, 0xff, 0xc2, 0x86, 0x51, 0xff, 0xc4, 0x89, 0x52, 0xff, 0xc8, 0x8a, 0x53, 0xff, 0xcb, 0x8c, 0x55, 0xff, 0xc9, 0x8a, 0x53, 0xff, 0xcb, 0x8a, 0x55, 0xff, 0xc8, 0x88, 0x53, 0xff, 0xaa, 0x70, 0x43, 0xff, 0x9f, 0x64, 0x39, 0xff, 0xa1, 0x66, 0x3a, 0xff, 0xa3, 0x66, 0x3b, 0xff, 0xa2, 0x67, 0x3b, 0xff, 0xa0, 0x65, 0x3a, 0xff, 0x9e, 0x64, 0x38, 0xff, 0x9e, 0x63, 0x37, 0xff, 0x9e, 0x63, 0x37, 0xff, 0x9e, 0x64, 0x37, 0xff, 0x9e, 0x64, 0x38, 0xff, 0xa0, 0x66, 0x3a, 0xff, 0xa1, 0x69, 0x3c, 0xff, 0xa0, 0x6b, 0x3d, 0xff, 0xa2, 0x6e, 0x43, 0xff, 0xa3, 0x6f, 0x46, 0xff, 0xa4, 0x6f, 0x4a, 0xff, 0xa5, 0x71, 0x4b, 0xff, 0xa6, 0x72, 0x4d, 0xff, 0xa6, 0x73, 0x4e, 0xff, 0xa6, 0x70, 0x49, 0xff, 0xa6, 0x6e, 0x42, 0xff, 0xa6, 0x71, 0x46, 0xff, 0xa6, 0x72, 0x45, 0xff, 0xa6, 0x72, 0x42, 0xff, 0xa6, 0x70, 0x41, 0xff, 0xa6, 0x6f, 0x3e, 0xff, 0xa7, 0x6f, 0x3d, 0xff, 0xa9, 0x71, 0x3e, 0xff, 0xab, 0x73, 0x3f, 0xff, 0xad, 0x75, 0x40, 0xff, 0xae, 0x76, 0x42, 0xff, 0xaf, 0x77, 0x43, 0xff, 0xb1, 0x76, 0x42, 0xff, 0xb2, 0x78, 0x42, 0xff, 0xb4, 0x7a, 0x43, 0xff, 0xb5, 0x7c, 0x44, 0xff, 0xb6, 0x7e, 0x46, 0xff, 0xb7, 0x82, 0x48, 0xff, 0xb9, 0x84, 0x4a, 0xff, 0xba, 0x87, 0x4c, 0xff, 0xbb, 0x89, 0x4e, 0xff, 0xbd, 0x8d, 0x52, 0xff, 0xbe, 0x8e, 0x54, 0xff, 0xbe, 0x8f, 0x55, 0xff, 0xbf, 0x91, 0x57, 0xff, 0xc3, 0x94, 0x59, 0xff, 0xca, 0x99, 0x5d, 0xff, 0xd2, 0x9c, 0x5f, 0xff, 0xd7, 0x9f, 0x60, 0xff, 0xda, 0xa4, 0x62, 0xff, 0xda, 0xae, 0x66, 0xff, 0xd7, 0xb9, 0x6b, 0xff, 0xd4, 0xbf, 0x72, 0xff, 0xd5, 0xbf, 0x7b, 0xff, 0xd7, 0xc0, 0x83, 0xff, 0xd9, 0xc0, 0x8b, 0xff, 0xd9, 0xc0, 0x91, 0xff, 0xd9, 0xc0, 0x8f, 0xff, 0xd7, 0xc0, 0x87, 0xff, 0xd4, 0xbf, 0x7a, 0xff, 0xd5, 0xbd, 0x6c, 0xff, 0xd9, 0xb5, 0x68, 0xff, 0xdb, 0xa9, 0x66, 0xff, 0xda, 0x9c, 0x5d, 0xff, 0xdb, 0x96, 0x57, 0xff, 0xdb, 0x93, 0x54, 0xff, 0xdb, 0x93, 0x53, 0xff, 0xda, 0x93, 0x53, 0xff, 0xd9, 0x97, 0x57, 0xff, 0xdb, 0x9d, 0x5d, 0xff, 0xd6, 0x97, 0x57, 0xff, 0xcf, 0x8f, 0x4f, 0xff, 0xd0, 0x8f, 0x4f, 0xff, 0xd0, 0x8f, 0x50, 0xff, 0xd0, 0x8f, 0x50, 0xff, 0xd1, 0x91, 0x50, 0xff, 0xd4, 0x92, 0x50, 0xff, 0xd6, 0x92, 0x50, 0xff, 0xd8, 0x93, 0x50, 0xff, 0xd9, 0x92, 0x50, 0xff, 0xd8, 0x92, 0x50, 0xff, 0xd7, 0x92, 0x50, 0xff, 0xd5, 0x91, 0x51, 0xff, 0xd5, 0x91, 0x51, 0xff, 0xd1, 0x90, 0x50, 0xff, 0xcd, 0x8c, 0x4e, 0xff, 0xc8, 0x8b, 0x4d, 0xff, 0xc3, 0x88, 0x4b, 0xff, 0xbf, 0x84, 0x49, 0xff, 0xbc, 0x81, 0x48, 0xff, 0xb9, 0x7f, 0x45, 0xff, 0xb7, 0x7c, 0x43, 0xff, 0xb4, 0x7a, 0x41, 0xff, 0xb1, 0x78, 0x3f, 0xff, 0xaf, 0x75, 0x3e, 0xff, 0xae, 0x73, 0x3c, 0xff, 0xad, 0x72, 0x3c, 0xff, 0xa8, 0x6c, 0x38, 0xff, 0xb3, 0x78, 0x41, 0xff, 0xd1, 0x8c, 0x4f, 0xff, 0xd6, 0x8f, 0x53, 0xff, 0xd3, 0x8e, 0x55, 0xff, 0xd9, 0x90, 0x56, 0xff, 0xd9, 0x8f, 0x57, 0xff, 0xd9, 0x90, 0x57, 0xff, 0xda, 0x95, 0x59, 0xff, 0xdc, 0x9f, 0x62, 0xff, 0xda, 0xb2, 0x6d, 0xff, 0xd6, 0xc0, 0x7b, 0xff, 0xd6, 0xba, 0x80, 0xff, 0xda, 0xae, 0x77, 0xff, 0xdb, 0xac, 0x75, 0xff, 0xdc, 0xac, 0x72, 0xff, 0xdc, 0xaa, 0x6b, 0xff, 0xdb, 0xa6, 0x66, 0xff, 0xdb, 0xa1, 0x62, 0xff, 0xdb, 0x9b, 0x5e, 0xff, 0xd8, 0x95, 0x5b, 0xff, 0xd2, 0x91, 0x58, 0xff, 0xcb, 0x8c, 0x54, 0xff, 0xc3, 0x87, 0x4e, 0xff, 0xbe, 0x82, 0x4a, 0xff, 0xb9, 0x7c, 0x47, 0xff, 0xb5, 0x79, 0x44, 0xff, 0xb1, 0x74, 0x40, 0xff, 0xb4, 0x77, 0x43, 0xff, 0xb5, 0x79, 0x43, 0xff, 0xb2, 0x75, 0x41, 0xff, 0xaf, 0x73, 0x40, 0xff, 0xae, 0x72, 0x3e, 0xff, 0xac, 0x71, 0x3f, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xaa, 0x6e, 0x3c, 0xff, 0xa9, 0x6b, 0x3a, 0xff, 0xa4, 0x67, 0x37, 0xff, 0xa1, 0x63, 0x35, 0xff, 0x9f, 0x61, 0x35, 0xff, 0x9d, 0x60, 0x35, 0xff, 0x9c, 0x5e, 0x34, 0xff, 0x9a, 0x5d, 0x34, 0xff, 0x99, 0x5c, 0x33, 0xff, 0x98, 0x5c, 0x34, 0xff, 0x98, 0x5b, 0x33, 0xff, 0x97, 0x5b, 0x33, 0xff, 0x95, 0x5a, 0x33, 0xff, 0x93, 0x58, 0x31, 0xff, 0x93, 0x58, 0x30, 0xff, 0x92, 0x56, 0x30, 0xff, 0x92, 0x57, 0x30, 0xff, 0x91, 0x56, 0x2f, 0xff, 0x90, 0x56, 0x2f, 0xff, 0x8f, 0x56, 0x2e, 0xff, 0x8f, 0x55, 0x2e, 0xff, 0x92, 0x57, 0x31, 0xff, 0x94, 0x59, 0x33, 0xff, 0x91, 0x57, 0x30, 0xff, 0x8f, 0x56, 0x2f, 0xff, 0x8f, 0x55, 0x2d, 0xff, 0x8e, 0x53, 0x2d, 0xff, 0x8c, 0x52, 0x2b, 0xff, 0x8b, 0x51, 0x2a, 0xff, 0x8a, 0x51, 0x2a, 0xff, 0x8a, 0x51, 0x2a, 0xff, 0x89, 0x51, 0x2a, 0xff, 0x89, 0x50, 0x28, 0xff, 0x89, 0x50, 0x28, 0xff, 0x8a, 0x51, 0x2a, 0xff, 0x89, 0x50, 0x29, 0xff, 0x8a, 0x50, 0x29, 0xff, 0x8a, 0x51, 0x29, 0xff, 0x89, 0x51, 0x2a, 0xff, 0x89, 0x51, 0x2a, 0xff, 0x89, 0x50, 0x29, 0xff, 0x86, 0x4e, 0x27, 0xff, 0x86, 0x4e, 0x25, 0xff, 0x87, 0x4f, 0x28, 0xff, 0x88, 0x50, 0x29, 0xff, 0x89, 0x4f, 0x29, 0xff, 0x8a, 0x50, 0x29, 0xff, 0x89, 0x50, 0x29, 0xff, 0x89, 0x50, 0x29, 0xff, 0x8a, 0x51, 0x2a, 0xff, 0x8b, 0x51, 0x29, 0xff, 0x8b, 0x51, 0x2a, 0xff, 0x8c, 0x52, 0x2b, 0xff, 0x8d, 0x51, 0x2b, 0xff, 0x8d, 0x52, 0x2b, 0xff, 0x8d, 0x53, 0x2b, 0xff, 0x8f, 0x54, 0x2d, 0xff, 0x91, 0x56, 0x2e, 0xff, 0x91, 0x55, 0x2e, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x92, 0x56, 0x2f, 0xff, + 0x91, 0x55, 0x2e, 0xff, 0x92, 0x57, 0x30, 0xff, 0x92, 0x56, 0x31, 0xff, 0x93, 0x57, 0x31, 0xff, 0x94, 0x57, 0x31, 0xff, 0x95, 0x59, 0x32, 0xff, 0x96, 0x59, 0x33, 0xff, 0x99, 0x5b, 0x33, 0xff, 0x99, 0x5c, 0x35, 0xff, 0x9a, 0x5e, 0x36, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x9c, 0x60, 0x36, 0xff, 0x9d, 0x60, 0x36, 0xff, 0x9e, 0x61, 0x37, 0xff, 0x9e, 0x63, 0x38, 0xff, 0xa0, 0x64, 0x39, 0xff, 0xa2, 0x66, 0x3b, 0xff, 0xa2, 0x66, 0x3c, 0xff, 0xa7, 0x6a, 0x3d, 0xff, 0xa8, 0x6b, 0x3c, 0xff, 0xa9, 0x6c, 0x3d, 0xff, 0xaa, 0x6c, 0x3d, 0xff, 0xab, 0x6e, 0x3f, 0xff, 0xad, 0x70, 0x3f, 0xff, 0xad, 0x71, 0x40, 0xff, 0xae, 0x71, 0x42, 0xff, 0xaf, 0x73, 0x44, 0xff, 0xb0, 0x74, 0x45, 0xff, 0xaf, 0x73, 0x45, 0xff, 0xaf, 0x74, 0x45, 0xff, 0xb1, 0x75, 0x46, 0xff, 0xb5, 0x79, 0x4a, 0xff, 0xc0, 0x85, 0x51, 0xff, 0xc3, 0x88, 0x52, 0xff, 0xc7, 0x8b, 0x54, 0xff, 0xca, 0x8c, 0x56, 0xff, 0xcc, 0x8d, 0x56, 0xff, 0xce, 0x8d, 0x56, 0xff, 0xcf, 0x8d, 0x57, 0xff, 0xd1, 0x8e, 0x57, 0xff, 0x99, 0x5e, 0x34, 0xff, 0xa0, 0x64, 0x3a, 0xff, 0xa0, 0x64, 0x39, 0xff, 0xa1, 0x64, 0x39, 0xff, 0xa1, 0x65, 0x39, 0xff, 0xa1, 0x66, 0x3a, 0xff, 0x9f, 0x65, 0x39, 0xff, 0x9d, 0x63, 0x38, 0xff, 0x9c, 0x62, 0x36, 0xff, 0x9d, 0x63, 0x37, 0xff, 0x9e, 0x63, 0x37, 0xff, 0x9f, 0x65, 0x39, 0xff, 0xa0, 0x68, 0x3a, 0xff, 0xa0, 0x69, 0x3c, 0xff, 0xa1, 0x6c, 0x3f, 0xff, 0xa1, 0x6d, 0x42, 0xff, 0xa4, 0x6e, 0x48, 0xff, 0xa5, 0x72, 0x4c, 0xff, 0xa5, 0x72, 0x4c, 0xff, 0xa5, 0x72, 0x4e, 0xff, 0xa5, 0x73, 0x4e, 0xff, 0xa6, 0x70, 0x47, 0xff, 0xa5, 0x6f, 0x44, 0xff, 0xa6, 0x71, 0x45, 0xff, 0xa5, 0x72, 0x43, 0xff, 0xa6, 0x71, 0x40, 0xff, 0xa6, 0x70, 0x3e, 0xff, 0xa6, 0x6f, 0x3d, 0xff, 0xa9, 0x6f, 0x3d, 0xff, 0xaa, 0x71, 0x3d, 0xff, 0xab, 0x73, 0x3f, 0xff, 0xad, 0x75, 0x40, 0xff, 0xae, 0x76, 0x41, 0xff, 0xaf, 0x76, 0x42, 0xff, 0xb1, 0x77, 0x41, 0xff, 0xb3, 0x7a, 0x43, 0xff, 0xb5, 0x7c, 0x44, 0xff, 0xb6, 0x7e, 0x45, 0xff, 0xb7, 0x81, 0x49, 0xff, 0xb8, 0x83, 0x4b, 0xff, 0xba, 0x88, 0x4e, 0xff, 0xbb, 0x8a, 0x50, 0xff, 0xbb, 0x8c, 0x51, 0xff, 0xbb, 0x8e, 0x53, 0xff, 0xbd, 0x8f, 0x57, 0xff, 0xbf, 0x91, 0x59, 0xff, 0xc1, 0x93, 0x5b, 0xff, 0xc7, 0x96, 0x60, 0xff, 0xce, 0x9a, 0x62, 0xff, 0xd4, 0x9e, 0x63, 0xff, 0xda, 0xa4, 0x66, 0xff, 0xdd, 0xae, 0x68, 0xff, 0xdb, 0xb9, 0x6b, 0xff, 0xd5, 0xc0, 0x70, 0xff, 0xd2, 0xbf, 0x77, 0xff, 0xd5, 0xc0, 0x7f, 0xff, 0xd7, 0xc1, 0x86, 0xff, 0xd7, 0xc1, 0x89, 0xff, 0xd7, 0xc0, 0x87, 0xff, 0xd5, 0xc1, 0x83, 0xff, 0xd4, 0xc1, 0x7a, 0xff, 0xd5, 0xbd, 0x6e, 0xff, 0xda, 0xb6, 0x69, 0xff, 0xdc, 0xac, 0x66, 0xff, 0xdb, 0x9f, 0x5e, 0xff, 0xdb, 0x9a, 0x59, 0xff, 0xdc, 0x95, 0x56, 0xff, 0xdc, 0x93, 0x54, 0xff, 0xdb, 0x92, 0x54, 0xff, 0xda, 0x92, 0x54, 0xff, 0xdb, 0x99, 0x59, 0xff, 0xd8, 0x9a, 0x5a, 0xff, 0xd4, 0x93, 0x4f, 0xff, 0xd3, 0x91, 0x4d, 0xff, 0xd3, 0x91, 0x4f, 0xff, 0xd4, 0x92, 0x50, 0xff, 0xd6, 0x93, 0x52, 0xff, 0xd9, 0x96, 0x52, 0xff, 0xdb, 0x97, 0x52, 0xff, 0xdb, 0x97, 0x54, 0xff, 0xdb, 0x96, 0x55, 0xff, 0xda, 0x98, 0x55, 0xff, 0xda, 0x99, 0x56, 0xff, 0xdb, 0x98, 0x57, 0xff, 0xdb, 0x98, 0x56, 0xff, 0xdb, 0x98, 0x56, 0xff, 0xda, 0x94, 0x54, 0xff, 0xd6, 0x91, 0x52, 0xff, 0xd1, 0x90, 0x52, 0xff, 0xcb, 0x8c, 0x4f, 0xff, 0xc4, 0x88, 0x4d, 0xff, 0xc0, 0x85, 0x4a, 0xff, 0xbd, 0x82, 0x49, 0xff, 0xb9, 0x7f, 0x46, 0xff, 0xb6, 0x7c, 0x43, 0xff, 0xb3, 0x79, 0x41, 0xff, 0xb0, 0x76, 0x3f, 0xff, 0xae, 0x74, 0x3e, 0xff, 0xad, 0x73, 0x3c, 0xff, 0xa9, 0x6d, 0x39, 0xff, 0xb9, 0x7e, 0x45, 0xff, 0xd4, 0x8f, 0x53, 0xff, 0xd9, 0x91, 0x58, 0xff, 0xd9, 0x94, 0x5a, 0xff, 0xdb, 0x93, 0x58, 0xff, 0xdb, 0x90, 0x57, 0xff, 0xdb, 0x94, 0x58, 0xff, 0xda, 0x9a, 0x5d, 0xff, 0xdb, 0xa4, 0x64, 0xff, 0xda, 0xb8, 0x70, 0xff, 0xd8, 0xc3, 0x82, 0xff, 0xda, 0xb1, 0x77, 0xff, 0xdc, 0xac, 0x72, 0xff, 0xdb, 0xae, 0x75, 0xff, 0xdc, 0xac, 0x71, 0xff, 0xdb, 0xad, 0x6b, 0xff, 0xdb, 0xa9, 0x66, 0xff, 0xdb, 0xa0, 0x61, 0xff, 0xdb, 0x99, 0x5f, 0xff, 0xdb, 0x96, 0x5c, 0xff, 0xd4, 0x91, 0x58, 0xff, 0xcc, 0x8e, 0x55, 0xff, 0xc6, 0x89, 0x51, 0xff, 0xc0, 0x83, 0x4b, 0xff, 0xba, 0x7e, 0x49, 0xff, 0xb6, 0x7a, 0x46, 0xff, 0xb5, 0x78, 0x45, 0xff, 0xb7, 0x7b, 0x47, 0xff, 0xb7, 0x7c, 0x47, 0xff, 0xb4, 0x77, 0x43, 0xff, 0xb1, 0x75, 0x40, 0xff, 0xaf, 0x74, 0x40, 0xff, 0xac, 0x71, 0x3f, 0xff, 0xab, 0x70, 0x3d, 0xff, 0xaa, 0x6e, 0x3c, 0xff, 0xa9, 0x6a, 0x3b, 0xff, 0xa6, 0x67, 0x38, 0xff, 0xa4, 0x66, 0x36, 0xff, 0xa0, 0x62, 0x35, 0xff, 0x9d, 0x5f, 0x34, 0xff, 0x9b, 0x5d, 0x34, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x97, 0x5b, 0x33, 0xff, 0x97, 0x5b, 0x33, 0xff, 0x96, 0x5a, 0x33, 0xff, 0x95, 0x5b, 0x33, 0xff, 0x94, 0x59, 0x32, 0xff, 0x94, 0x57, 0x31, 0xff, 0x92, 0x57, 0x31, 0xff, 0x91, 0x57, 0x2f, 0xff, 0x90, 0x54, 0x30, 0xff, 0x8f, 0x55, 0x2e, 0xff, 0x8f, 0x55, 0x2f, 0xff, 0x91, 0x57, 0x31, 0xff, 0x95, 0x5b, 0x35, 0xff, 0x94, 0x5a, 0x34, 0xff, 0x92, 0x57, 0x31, 0xff, 0x91, 0x57, 0x30, 0xff, 0x8f, 0x55, 0x2e, 0xff, 0x8e, 0x54, 0x2d, 0xff, 0x8d, 0x52, 0x2b, 0xff, 0x8c, 0x52, 0x2b, 0xff, 0x8c, 0x51, 0x2b, 0xff, 0x8b, 0x51, 0x2a, 0xff, 0x8a, 0x4f, 0x2a, 0xff, 0x89, 0x50, 0x29, 0xff, 0x89, 0x50, 0x29, 0xff, 0x89, 0x50, 0x29, 0xff, 0x89, 0x50, 0x2a, 0xff, 0x8a, 0x50, 0x28, 0xff, 0x89, 0x4f, 0x28, 0xff, 0x87, 0x4f, 0x2a, 0xff, 0x89, 0x50, 0x2a, 0xff, 0x88, 0x4f, 0x28, 0xff, 0x86, 0x4d, 0x26, 0xff, 0x88, 0x4f, 0x27, 0xff, 0x86, 0x4f, 0x28, 0xff, 0x87, 0x4f, 0x27, 0xff, 0x86, 0x4e, 0x26, 0xff, 0x87, 0x4f, 0x28, 0xff, 0x88, 0x4f, 0x28, 0xff, 0x88, 0x4f, 0x28, 0xff, 0x89, 0x50, 0x2a, 0xff, 0x8a, 0x4f, 0x27, 0xff, 0x8a, 0x50, 0x29, 0xff, 0x8b, 0x51, 0x29, 0xff, 0x8b, 0x52, 0x2a, 0xff, 0x8c, 0x52, 0x2b, 0xff, 0x8c, 0x53, 0x2b, 0xff, 0x8d, 0x54, 0x2b, 0xff, 0x8e, 0x53, 0x2b, 0xff, 0x8e, 0x54, 0x2d, 0xff, 0x8f, 0x54, 0x2d, 0xff, 0x8f, 0x55, 0x2d, 0xff, + 0x8f, 0x54, 0x2c, 0xff, 0x91, 0x54, 0x2e, 0xff, 0x92, 0x56, 0x30, 0xff, 0x92, 0x57, 0x31, 0xff, 0x93, 0x57, 0x31, 0xff, 0x92, 0x57, 0x31, 0xff, 0x95, 0x59, 0x33, 0xff, 0x95, 0x5a, 0x33, 0xff, 0x98, 0x5c, 0x34, 0xff, 0x98, 0x5c, 0x34, 0xff, 0x99, 0x5d, 0x36, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x9b, 0x5e, 0x36, 0xff, 0x9c, 0x5f, 0x37, 0xff, 0x9e, 0x61, 0x36, 0xff, 0x9e, 0x62, 0x37, 0xff, 0xa0, 0x64, 0x3a, 0xff, 0xa0, 0x64, 0x3b, 0xff, 0xa2, 0x66, 0x39, 0xff, 0xa7, 0x6a, 0x3c, 0xff, 0xa9, 0x6c, 0x3c, 0xff, 0xaa, 0x6c, 0x3d, 0xff, 0xab, 0x6d, 0x3d, 0xff, 0xab, 0x6e, 0x3f, 0xff, 0xac, 0x70, 0x3f, 0xff, 0xad, 0x70, 0x41, 0xff, 0xaf, 0x73, 0x42, 0xff, 0xb0, 0x74, 0x45, 0xff, 0xb2, 0x76, 0x46, 0xff, 0xb1, 0x74, 0x45, 0xff, 0xb1, 0x75, 0x46, 0xff, 0xba, 0x81, 0x4e, 0xff, 0xbf, 0x84, 0x51, 0xff, 0xc2, 0x88, 0x54, 0xff, 0xc4, 0x8c, 0x54, 0xff, 0xc9, 0x8e, 0x57, 0xff, 0xcc, 0x90, 0x59, 0xff, 0xd1, 0x91, 0x59, 0xff, 0xd2, 0x91, 0x58, 0xff, 0xb8, 0x7f, 0x4d, 0xff, 0x9c, 0x60, 0x37, 0xff, 0xa0, 0x64, 0x3a, 0xff, 0x9f, 0x63, 0x39, 0xff, 0x9f, 0x64, 0x38, 0xff, 0xa0, 0x65, 0x39, 0xff, 0xa0, 0x64, 0x38, 0xff, 0x9f, 0x63, 0x38, 0xff, 0xa0, 0x64, 0x38, 0xff, 0x9e, 0x62, 0x37, 0xff, 0x9c, 0x62, 0x36, 0xff, 0x9d, 0x62, 0x37, 0xff, 0x9d, 0x63, 0x37, 0xff, 0x9f, 0x65, 0x39, 0xff, 0xa0, 0x68, 0x3b, 0xff, 0xa0, 0x69, 0x3d, 0xff, 0xa1, 0x6b, 0x40, 0xff, 0xa0, 0x6d, 0x44, 0xff, 0xa3, 0x70, 0x4a, 0xff, 0xa5, 0x72, 0x4c, 0xff, 0xa5, 0x72, 0x4d, 0xff, 0xa5, 0x72, 0x4d, 0xff, 0xa6, 0x72, 0x4c, 0xff, 0xa5, 0x6e, 0x44, 0xff, 0xa5, 0x71, 0x45, 0xff, 0xa5, 0x72, 0x44, 0xff, 0xa6, 0x73, 0x41, 0xff, 0xa6, 0x70, 0x3e, 0xff, 0xa6, 0x6e, 0x3d, 0xff, 0xa7, 0x6f, 0x3d, 0xff, 0xa9, 0x6f, 0x3d, 0xff, 0xaa, 0x72, 0x3d, 0xff, 0xab, 0x74, 0x40, 0xff, 0xad, 0x75, 0x41, 0xff, 0xae, 0x76, 0x41, 0xff, 0xb0, 0x76, 0x40, 0xff, 0xb2, 0x79, 0x41, 0xff, 0xb4, 0x7b, 0x43, 0xff, 0xb5, 0x7f, 0x46, 0xff, 0xb7, 0x81, 0x49, 0xff, 0xb8, 0x84, 0x4a, 0xff, 0xb8, 0x87, 0x4c, 0xff, 0xb8, 0x8a, 0x4f, 0xff, 0xba, 0x8c, 0x51, 0xff, 0xbb, 0x8e, 0x55, 0xff, 0xbd, 0x90, 0x57, 0xff, 0xbf, 0x90, 0x5a, 0xff, 0xc1, 0x92, 0x5d, 0xff, 0xc6, 0x95, 0x61, 0xff, 0xcc, 0x99, 0x65, 0xff, 0xd0, 0x9c, 0x66, 0xff, 0xd7, 0x9f, 0x68, 0xff, 0xdc, 0xa6, 0x6a, 0xff, 0xdc, 0xb2, 0x6d, 0xff, 0xda, 0xbf, 0x71, 0xff, 0xd2, 0xc1, 0x74, 0xff, 0xd3, 0xc1, 0x79, 0xff, 0xd6, 0xc1, 0x7f, 0xff, 0xd7, 0xc1, 0x81, 0xff, 0xd7, 0xc2, 0x83, 0xff, 0xd6, 0xc1, 0x7e, 0xff, 0xd4, 0xc1, 0x77, 0xff, 0xd7, 0xbc, 0x6e, 0xff, 0xdc, 0xb4, 0x66, 0xff, 0xdc, 0xae, 0x66, 0xff, 0xdb, 0xa3, 0x62, 0xff, 0xdb, 0x9c, 0x5b, 0xff, 0xdb, 0x99, 0x57, 0xff, 0xdc, 0x95, 0x55, 0xff, 0xdb, 0x94, 0x54, 0xff, 0xdc, 0x95, 0x54, 0xff, 0xdb, 0x93, 0x55, 0xff, 0xda, 0x9a, 0x5a, 0xff, 0xd8, 0x97, 0x55, 0xff, 0xd5, 0x8e, 0x4a, 0xff, 0xd6, 0x93, 0x4e, 0xff, 0xd8, 0x95, 0x50, 0xff, 0xdb, 0x95, 0x51, 0xff, 0xdc, 0x98, 0x53, 0xff, 0xdc, 0x99, 0x54, 0xff, 0xdb, 0x99, 0x55, 0xff, 0xda, 0x9a, 0x57, 0xff, 0xdb, 0x9d, 0x59, 0xff, 0xdb, 0x9f, 0x5b, 0xff, 0xda, 0x9e, 0x5b, 0xff, 0xda, 0x9f, 0x5a, 0xff, 0xdb, 0x9f, 0x5c, 0xff, 0xdc, 0x9d, 0x5c, 0xff, 0xdb, 0x9a, 0x59, 0xff, 0xdb, 0x97, 0x58, 0xff, 0xd9, 0x97, 0x57, 0xff, 0xd3, 0x92, 0x54, 0xff, 0xcb, 0x8c, 0x50, 0xff, 0xc4, 0x89, 0x4e, 0xff, 0xbf, 0x85, 0x4b, 0xff, 0xbb, 0x80, 0x48, 0xff, 0xb7, 0x7d, 0x46, 0xff, 0xb4, 0x7a, 0x43, 0xff, 0xb1, 0x77, 0x40, 0xff, 0xaf, 0x76, 0x3f, 0xff, 0xae, 0x73, 0x3d, 0xff, 0xab, 0x70, 0x3c, 0xff, 0xc7, 0x86, 0x50, 0xff, 0xdb, 0x95, 0x5b, 0xff, 0xdb, 0x95, 0x5a, 0xff, 0xdb, 0x96, 0x5a, 0xff, 0xda, 0x94, 0x59, 0xff, 0xdb, 0x93, 0x57, 0xff, 0xdb, 0x94, 0x58, 0xff, 0xdb, 0x9a, 0x5d, 0xff, 0xdb, 0xa8, 0x67, 0xff, 0xda, 0xbd, 0x73, 0xff, 0xda, 0xb1, 0x71, 0xff, 0xdd, 0xad, 0x70, 0xff, 0xdc, 0xaf, 0x72, 0xff, 0xdb, 0xae, 0x72, 0xff, 0xdc, 0xb1, 0x6e, 0xff, 0xdd, 0xab, 0x68, 0xff, 0xdc, 0xa5, 0x65, 0xff, 0xdb, 0xa0, 0x65, 0xff, 0xdb, 0x9b, 0x61, 0xff, 0xd8, 0x95, 0x5d, 0xff, 0xd4, 0x92, 0x57, 0xff, 0xcd, 0x8e, 0x54, 0xff, 0xc8, 0x8a, 0x51, 0xff, 0xc2, 0x84, 0x4d, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xba, 0x7f, 0x49, 0xff, 0xb9, 0x7d, 0x49, 0xff, 0xb9, 0x7e, 0x4a, 0xff, 0xb8, 0x7d, 0x48, 0xff, 0xb6, 0x7b, 0x46, 0xff, 0xb2, 0x77, 0x43, 0xff, 0xaf, 0x74, 0x40, 0xff, 0xae, 0x72, 0x3f, 0xff, 0xae, 0x73, 0x40, 0xff, 0xac, 0x6f, 0x3e, 0xff, 0xa9, 0x6b, 0x3b, 0xff, 0xa6, 0x69, 0x38, 0xff, 0xa3, 0x66, 0x36, 0xff, 0xa0, 0x62, 0x35, 0xff, 0x9d, 0x5f, 0x35, 0xff, 0x9b, 0x5e, 0x33, 0xff, 0x99, 0x5e, 0x33, 0xff, 0x97, 0x5b, 0x33, 0xff, 0x97, 0x5c, 0x33, 0xff, 0x96, 0x5a, 0x33, 0xff, 0x94, 0x5a, 0x33, 0xff, 0x94, 0x58, 0x32, 0xff, 0x92, 0x57, 0x31, 0xff, 0x8f, 0x56, 0x30, 0xff, 0x8f, 0x55, 0x30, 0xff, 0x8f, 0x56, 0x30, 0xff, 0x90, 0x55, 0x30, 0xff, 0x94, 0x5b, 0x34, 0xff, 0x96, 0x5c, 0x35, 0xff, 0x94, 0x59, 0x33, 0xff, 0x92, 0x57, 0x32, 0xff, 0x90, 0x57, 0x30, 0xff, 0x91, 0x57, 0x30, 0xff, 0x8f, 0x54, 0x2d, 0xff, 0x8e, 0x52, 0x2b, 0xff, 0x8b, 0x52, 0x2b, 0xff, 0x8b, 0x51, 0x2a, 0xff, 0x8a, 0x51, 0x2a, 0xff, 0x89, 0x4f, 0x2a, 0xff, 0x88, 0x4f, 0x2a, 0xff, 0x89, 0x4f, 0x28, 0xff, 0x89, 0x50, 0x29, 0xff, 0x87, 0x4f, 0x27, 0xff, 0x88, 0x4f, 0x27, 0xff, 0x88, 0x4f, 0x29, 0xff, 0x88, 0x4f, 0x2a, 0xff, 0x89, 0x4f, 0x2a, 0xff, 0x84, 0x4d, 0x26, 0xff, 0x87, 0x4f, 0x27, 0xff, 0x86, 0x4e, 0x26, 0xff, 0x86, 0x4e, 0x26, 0xff, 0x86, 0x4e, 0x26, 0xff, 0x86, 0x4f, 0x26, 0xff, 0x86, 0x4c, 0x26, 0xff, 0x86, 0x4c, 0x26, 0xff, 0x86, 0x4e, 0x27, 0xff, 0x87, 0x4d, 0x27, 0xff, 0x88, 0x50, 0x2a, 0xff, 0x89, 0x4f, 0x27, 0xff, 0x8a, 0x50, 0x29, 0xff, 0x8b, 0x50, 0x2b, 0xff, 0x8b, 0x51, 0x2b, 0xff, 0x8b, 0x50, 0x2b, 0xff, 0x8d, 0x51, 0x2b, 0xff, 0x8d, 0x53, 0x2b, 0xff, 0x8d, 0x52, 0x2b, 0xff, 0x8e, 0x54, 0x2c, 0xff, 0x8f, 0x54, 0x2c, 0xff, + 0x8d, 0x52, 0x2c, 0xff, 0x8e, 0x54, 0x2c, 0xff, 0x8f, 0x54, 0x2e, 0xff, 0x91, 0x55, 0x2f, 0xff, 0x91, 0x55, 0x31, 0xff, 0x92, 0x56, 0x31, 0xff, 0x93, 0x56, 0x31, 0xff, 0x95, 0x59, 0x33, 0xff, 0x96, 0x5a, 0x34, 0xff, 0x97, 0x5a, 0x33, 0xff, 0x98, 0x5c, 0x34, 0xff, 0x98, 0x5c, 0x34, 0xff, 0x99, 0x5d, 0x35, 0xff, 0x99, 0x5e, 0x36, 0xff, 0x9a, 0x5d, 0x36, 0xff, 0x9c, 0x60, 0x37, 0xff, 0x9d, 0x62, 0x39, 0xff, 0x9f, 0x63, 0x39, 0xff, 0xa1, 0x64, 0x39, 0xff, 0xa3, 0x66, 0x39, 0xff, 0xa7, 0x69, 0x3b, 0xff, 0xa9, 0x6c, 0x3d, 0xff, 0xaa, 0x6d, 0x3d, 0xff, 0xaa, 0x6e, 0x3e, 0xff, 0xab, 0x6f, 0x3e, 0xff, 0xad, 0x70, 0x41, 0xff, 0xae, 0x72, 0x42, 0xff, 0xb0, 0x73, 0x44, 0xff, 0xb0, 0x74, 0x45, 0xff, 0xb5, 0x77, 0x46, 0xff, 0xb3, 0x78, 0x47, 0xff, 0xbb, 0x81, 0x4f, 0xff, 0xbd, 0x84, 0x50, 0xff, 0xbf, 0x87, 0x53, 0xff, 0xc4, 0x8c, 0x56, 0xff, 0xc6, 0x8e, 0x57, 0xff, 0xc9, 0x90, 0x5a, 0xff, 0xce, 0x94, 0x5c, 0xff, 0xd0, 0x93, 0x5c, 0xff, 0xab, 0x72, 0x43, 0xff, 0x9f, 0x63, 0x3a, 0xff, 0xa1, 0x66, 0x3b, 0xff, 0xa1, 0x64, 0x39, 0xff, 0xa0, 0x64, 0x39, 0xff, 0xa1, 0x65, 0x39, 0xff, 0xa0, 0x64, 0x38, 0xff, 0xa0, 0x63, 0x38, 0xff, 0xa1, 0x64, 0x38, 0xff, 0xa2, 0x65, 0x3a, 0xff, 0xa0, 0x64, 0x38, 0xff, 0x9f, 0x64, 0x38, 0xff, 0xa0, 0x64, 0x38, 0xff, 0xa1, 0x67, 0x3a, 0xff, 0xa1, 0x69, 0x3b, 0xff, 0xa2, 0x6a, 0x3c, 0xff, 0xa0, 0x6b, 0x3f, 0xff, 0xa2, 0x6f, 0x44, 0xff, 0xa3, 0x6f, 0x48, 0xff, 0xa2, 0x6f, 0x4a, 0xff, 0xa4, 0x70, 0x4b, 0xff, 0xa5, 0x72, 0x4d, 0xff, 0xa5, 0x73, 0x4d, 0xff, 0xa6, 0x72, 0x4b, 0xff, 0xa5, 0x70, 0x44, 0xff, 0xa6, 0x72, 0x44, 0xff, 0xa6, 0x73, 0x43, 0xff, 0xa6, 0x72, 0x40, 0xff, 0xa6, 0x70, 0x3e, 0xff, 0xa6, 0x6e, 0x3d, 0xff, 0xa8, 0x71, 0x3d, 0xff, 0xa9, 0x72, 0x3d, 0xff, 0xab, 0x74, 0x40, 0xff, 0xad, 0x75, 0x41, 0xff, 0xae, 0x76, 0x41, 0xff, 0xaf, 0x76, 0x40, 0xff, 0xb1, 0x78, 0x42, 0xff, 0xb3, 0x7b, 0x44, 0xff, 0xb5, 0x7d, 0x45, 0xff, 0xb6, 0x81, 0x47, 0xff, 0xb7, 0x83, 0x4a, 0xff, 0xb8, 0x87, 0x4d, 0xff, 0xb9, 0x8a, 0x50, 0xff, 0xba, 0x8d, 0x53, 0xff, 0xbb, 0x8d, 0x55, 0xff, 0xbd, 0x8e, 0x5b, 0xff, 0xbe, 0x8e, 0x5f, 0xff, 0xbf, 0x8f, 0x60, 0xff, 0xc2, 0x93, 0x65, 0xff, 0xc9, 0x96, 0x69, 0xff, 0xcf, 0x99, 0x6b, 0xff, 0xd4, 0x9c, 0x6c, 0xff, 0xd9, 0xa0, 0x6d, 0xff, 0xdc, 0xa9, 0x71, 0xff, 0xdd, 0xb5, 0x72, 0xff, 0xd9, 0xbf, 0x75, 0xff, 0xd5, 0xc1, 0x78, 0xff, 0xd5, 0xc0, 0x7a, 0xff, 0xd5, 0xc2, 0x7d, 0xff, 0xd4, 0xc1, 0x7d, 0xff, 0xd3, 0xc0, 0x78, 0xff, 0xd4, 0xc2, 0x74, 0xff, 0xd8, 0xbc, 0x6c, 0xff, 0xda, 0xb1, 0x63, 0xff, 0xdb, 0xaa, 0x63, 0xff, 0xdc, 0xa5, 0x63, 0xff, 0xdc, 0x9f, 0x5d, 0xff, 0xdb, 0x9d, 0x5c, 0xff, 0xdc, 0x9a, 0x59, 0xff, 0xdd, 0x96, 0x56, 0xff, 0xdc, 0x95, 0x55, 0xff, 0xdd, 0x95, 0x55, 0xff, 0xdc, 0x95, 0x57, 0xff, 0xd9, 0x94, 0x54, 0xff, 0xdb, 0x92, 0x4f, 0xff, 0xdb, 0x92, 0x4e, 0xff, 0xda, 0x94, 0x50, 0xff, 0xdb, 0x97, 0x52, 0xff, 0xdc, 0x98, 0x52, 0xff, 0xdc, 0x99, 0x56, 0xff, 0xdb, 0x9d, 0x59, 0xff, 0xdb, 0x9e, 0x5a, 0xff, 0xdb, 0xa1, 0x5e, 0xff, 0xda, 0xa4, 0x60, 0xff, 0xdb, 0xa6, 0x62, 0xff, 0xdc, 0xaa, 0x63, 0xff, 0xdc, 0xa9, 0x63, 0xff, 0xdb, 0xa6, 0x61, 0xff, 0xdb, 0xa6, 0x60, 0xff, 0xdb, 0xa2, 0x60, 0xff, 0xdc, 0x9d, 0x5e, 0xff, 0xdd, 0x9b, 0x5b, 0xff, 0xd8, 0x95, 0x57, 0xff, 0xd0, 0x90, 0x53, 0xff, 0xc9, 0x8c, 0x51, 0xff, 0xc2, 0x88, 0x4e, 0xff, 0xbc, 0x83, 0x4a, 0xff, 0xb9, 0x7e, 0x47, 0xff, 0xb6, 0x7c, 0x44, 0xff, 0xb4, 0x7a, 0x42, 0xff, 0xb1, 0x77, 0x40, 0xff, 0xae, 0x74, 0x3e, 0xff, 0xae, 0x73, 0x3d, 0xff, 0xcb, 0x8b, 0x52, 0xff, 0xdd, 0x9c, 0x60, 0xff, 0xdc, 0x99, 0x5d, 0xff, 0xdc, 0x97, 0x5a, 0xff, 0xdc, 0x96, 0x5a, 0xff, 0xdb, 0x92, 0x56, 0xff, 0xdc, 0x96, 0x57, 0xff, 0xdc, 0x9b, 0x5d, 0xff, 0xdb, 0xa6, 0x67, 0xff, 0xda, 0xa8, 0x69, 0xff, 0xdc, 0xad, 0x6b, 0xff, 0xdd, 0xb1, 0x6d, 0xff, 0xdc, 0xb0, 0x6e, 0xff, 0xdc, 0xb0, 0x6c, 0xff, 0xdc, 0xa7, 0x68, 0xff, 0xdb, 0xa1, 0x64, 0xff, 0xdb, 0x9c, 0x5f, 0xff, 0xdb, 0x96, 0x5b, 0xff, 0xdb, 0x93, 0x59, 0xff, 0xd9, 0x91, 0x57, 0xff, 0xd5, 0x91, 0x55, 0xff, 0xd0, 0x8d, 0x54, 0xff, 0xcc, 0x8b, 0x52, 0xff, 0xc7, 0x87, 0x50, 0xff, 0xc2, 0x84, 0x4d, 0xff, 0xc0, 0x84, 0x4e, 0xff, 0xbd, 0x81, 0x4c, 0xff, 0xbc, 0x82, 0x4d, 0xff, 0xba, 0x7f, 0x4b, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb6, 0x7a, 0x47, 0xff, 0xb2, 0x77, 0x44, 0xff, 0xb0, 0x74, 0x42, 0xff, 0xaf, 0x73, 0x41, 0xff, 0xad, 0x70, 0x3e, 0xff, 0xaa, 0x6d, 0x3c, 0xff, 0xa5, 0x68, 0x39, 0xff, 0xa2, 0x65, 0x36, 0xff, 0x9f, 0x62, 0x35, 0xff, 0x9d, 0x60, 0x35, 0xff, 0x9c, 0x5e, 0x34, 0xff, 0x9a, 0x5d, 0x33, 0xff, 0x98, 0x5d, 0x33, 0xff, 0x98, 0x5d, 0x33, 0xff, 0x97, 0x5b, 0x33, 0xff, 0x93, 0x59, 0x32, 0xff, 0x92, 0x57, 0x31, 0xff, 0x91, 0x57, 0x30, 0xff, 0x91, 0x55, 0x30, 0xff, 0x91, 0x56, 0x31, 0xff, 0x93, 0x5a, 0x33, 0xff, 0x96, 0x5f, 0x36, 0xff, 0x96, 0x5d, 0x35, 0xff, 0x95, 0x5a, 0x34, 0xff, 0x93, 0x59, 0x33, 0xff, 0x92, 0x57, 0x31, 0xff, 0x91, 0x56, 0x30, 0xff, 0x90, 0x55, 0x2e, 0xff, 0x8d, 0x53, 0x2d, 0xff, 0x8d, 0x52, 0x2b, 0xff, 0x8a, 0x51, 0x2a, 0xff, 0x8a, 0x50, 0x29, 0xff, 0x8a, 0x4f, 0x2a, 0xff, 0x8a, 0x50, 0x2a, 0xff, 0x89, 0x4f, 0x29, 0xff, 0x87, 0x4f, 0x27, 0xff, 0x87, 0x4e, 0x27, 0xff, 0x88, 0x4f, 0x27, 0xff, 0x89, 0x4f, 0x28, 0xff, 0x88, 0x4e, 0x27, 0xff, 0x87, 0x4d, 0x26, 0xff, 0x86, 0x4e, 0x27, 0xff, 0x85, 0x4d, 0x25, 0xff, 0x85, 0x4e, 0x26, 0xff, 0x85, 0x4e, 0x26, 0xff, 0x85, 0x4d, 0x26, 0xff, 0x84, 0x4d, 0x26, 0xff, 0x84, 0x4d, 0x26, 0xff, 0x84, 0x4c, 0x25, 0xff, 0x84, 0x4d, 0x26, 0xff, 0x85, 0x4d, 0x26, 0xff, 0x86, 0x4c, 0x26, 0xff, 0x86, 0x4d, 0x27, 0xff, 0x87, 0x4f, 0x28, 0xff, 0x89, 0x4e, 0x27, 0xff, 0x89, 0x4f, 0x29, 0xff, 0x8a, 0x51, 0x2a, 0xff, 0x8a, 0x50, 0x2a, 0xff, 0x8b, 0x51, 0x2b, 0xff, 0x8b, 0x51, 0x2a, 0xff, 0x8c, 0x52, 0x2a, 0xff, 0x8d, 0x53, 0x2c, 0xff, + 0x8c, 0x51, 0x2a, 0xff, 0x8d, 0x52, 0x2c, 0xff, 0x8f, 0x53, 0x2d, 0xff, 0x8f, 0x54, 0x2e, 0xff, 0x8f, 0x54, 0x2e, 0xff, 0x91, 0x55, 0x30, 0xff, 0x92, 0x56, 0x31, 0xff, 0x93, 0x58, 0x33, 0xff, 0x94, 0x58, 0x33, 0xff, 0x95, 0x59, 0x33, 0xff, 0x94, 0x59, 0x33, 0xff, 0x96, 0x5a, 0x34, 0xff, 0x97, 0x5b, 0x34, 0xff, 0x98, 0x5c, 0x35, 0xff, 0x99, 0x5e, 0x35, 0xff, 0x9b, 0x5f, 0x37, 0xff, 0x9c, 0x61, 0x38, 0xff, 0x9f, 0x63, 0x37, 0xff, 0xa0, 0x63, 0x38, 0xff, 0xa1, 0x64, 0x39, 0xff, 0xa3, 0x66, 0x39, 0xff, 0xa5, 0x68, 0x3a, 0xff, 0xa9, 0x6d, 0x3d, 0xff, 0xab, 0x6e, 0x3e, 0xff, 0xab, 0x6f, 0x3f, 0xff, 0xac, 0x6f, 0x40, 0xff, 0xad, 0x71, 0x42, 0xff, 0xae, 0x73, 0x42, 0xff, 0xaf, 0x73, 0x43, 0xff, 0xb6, 0x78, 0x46, 0xff, 0xc5, 0x87, 0x50, 0xff, 0xbf, 0x85, 0x51, 0xff, 0xbc, 0x82, 0x4f, 0xff, 0xbe, 0x87, 0x53, 0xff, 0xc0, 0x8b, 0x56, 0xff, 0xc5, 0x8e, 0x57, 0xff, 0xc8, 0x8f, 0x5b, 0xff, 0xcc, 0x91, 0x5e, 0xff, 0xce, 0x91, 0x5f, 0xff, 0xa6, 0x6d, 0x3f, 0xff, 0xa4, 0x68, 0x3c, 0xff, 0xa4, 0x69, 0x3c, 0xff, 0xa3, 0x69, 0x3c, 0xff, 0xa4, 0x68, 0x3b, 0xff, 0xa3, 0x66, 0x3a, 0xff, 0xa2, 0x66, 0x3a, 0xff, 0xa3, 0x66, 0x3a, 0xff, 0xa2, 0x67, 0x39, 0xff, 0xa2, 0x66, 0x39, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa0, 0x65, 0x38, 0xff, 0xa0, 0x65, 0x38, 0xff, 0xa2, 0x67, 0x3a, 0xff, 0xa3, 0x6a, 0x3d, 0xff, 0xa3, 0x6e, 0x40, 0xff, 0xa4, 0x70, 0x44, 0xff, 0xa5, 0x71, 0x47, 0xff, 0xa3, 0x70, 0x48, 0xff, 0xa3, 0x6f, 0x49, 0xff, 0xa3, 0x6f, 0x4b, 0xff, 0xa4, 0x70, 0x4b, 0xff, 0xa5, 0x71, 0x4b, 0xff, 0xa5, 0x70, 0x46, 0xff, 0xa6, 0x72, 0x44, 0xff, 0xa6, 0x73, 0x44, 0xff, 0xa6, 0x71, 0x42, 0xff, 0xa6, 0x70, 0x3f, 0xff, 0xa6, 0x6f, 0x3d, 0xff, 0xa7, 0x6f, 0x3c, 0xff, 0xa8, 0x70, 0x3c, 0xff, 0xaa, 0x71, 0x3e, 0xff, 0xac, 0x73, 0x40, 0xff, 0xad, 0x76, 0x41, 0xff, 0xae, 0x74, 0x3f, 0xff, 0xb0, 0x76, 0x3e, 0xff, 0xb2, 0x79, 0x41, 0xff, 0xb3, 0x7d, 0x44, 0xff, 0xb5, 0x7f, 0x47, 0xff, 0xb7, 0x83, 0x4b, 0xff, 0xb8, 0x88, 0x4e, 0xff, 0xba, 0x8c, 0x51, 0xff, 0xbc, 0x8e, 0x55, 0xff, 0xbd, 0x8e, 0x59, 0xff, 0xbd, 0x8f, 0x5d, 0xff, 0xbe, 0x8f, 0x62, 0xff, 0xbf, 0x90, 0x64, 0xff, 0xc1, 0x91, 0x66, 0xff, 0xc8, 0x94, 0x69, 0xff, 0xce, 0x98, 0x6c, 0xff, 0xd3, 0x9b, 0x6e, 0xff, 0xd7, 0x9d, 0x6f, 0xff, 0xdb, 0xa2, 0x73, 0xff, 0xdd, 0xab, 0x74, 0xff, 0xdd, 0xb7, 0x77, 0xff, 0xda, 0xc0, 0x77, 0xff, 0xd5, 0xc2, 0x78, 0xff, 0xd5, 0xc1, 0x79, 0xff, 0xd4, 0xc2, 0x79, 0xff, 0xd2, 0xc2, 0x76, 0xff, 0xd5, 0xc1, 0x70, 0xff, 0xd9, 0xba, 0x69, 0xff, 0xdc, 0xad, 0x64, 0xff, 0xdb, 0xa5, 0x60, 0xff, 0xdb, 0xa3, 0x60, 0xff, 0xdd, 0xa2, 0x60, 0xff, 0xdc, 0xa1, 0x61, 0xff, 0xdc, 0x9f, 0x5f, 0xff, 0xdb, 0x99, 0x59, 0xff, 0xdb, 0x96, 0x57, 0xff, 0xdc, 0x96, 0x56, 0xff, 0xdd, 0x96, 0x57, 0xff, 0xdc, 0x95, 0x56, 0xff, 0xdb, 0x94, 0x50, 0xff, 0xdc, 0x94, 0x4f, 0xff, 0xdb, 0x95, 0x50, 0xff, 0xdc, 0x96, 0x53, 0xff, 0xdb, 0x99, 0x54, 0xff, 0xdb, 0x9d, 0x56, 0xff, 0xdc, 0x9e, 0x59, 0xff, 0xdc, 0xa2, 0x5d, 0xff, 0xdb, 0xa6, 0x61, 0xff, 0xdb, 0xab, 0x64, 0xff, 0xdc, 0xb4, 0x67, 0xff, 0xdc, 0xb7, 0x69, 0xff, 0xdc, 0xb7, 0x6b, 0xff, 0xdd, 0xb7, 0x6b, 0xff, 0xdd, 0xb4, 0x6a, 0xff, 0xdd, 0xb2, 0x6a, 0xff, 0xdc, 0xaa, 0x68, 0xff, 0xdb, 0xa4, 0x64, 0xff, 0xdd, 0xa1, 0x61, 0xff, 0xdc, 0x9c, 0x5e, 0xff, 0xd7, 0x95, 0x58, 0xff, 0xce, 0x90, 0x55, 0xff, 0xc6, 0x8a, 0x51, 0xff, 0xbf, 0x86, 0x4d, 0xff, 0xba, 0x82, 0x4a, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb4, 0x79, 0x43, 0xff, 0xb2, 0x77, 0x41, 0xff, 0xad, 0x74, 0x3f, 0xff, 0xb3, 0x79, 0x43, 0xff, 0xd1, 0x96, 0x5d, 0xff, 0xde, 0x9e, 0x63, 0xff, 0xdc, 0x98, 0x5e, 0xff, 0xdc, 0x96, 0x5c, 0xff, 0xdd, 0x93, 0x57, 0xff, 0xdc, 0x93, 0x54, 0xff, 0xdb, 0x96, 0x57, 0xff, 0xdb, 0x9a, 0x5d, 0xff, 0xdc, 0xa2, 0x65, 0xff, 0xdd, 0xa5, 0x66, 0xff, 0xdc, 0xa9, 0x68, 0xff, 0xdc, 0xa8, 0x69, 0xff, 0xdd, 0xa5, 0x68, 0xff, 0xdd, 0xa3, 0x67, 0xff, 0xdc, 0xa3, 0x67, 0xff, 0xdd, 0x9f, 0x61, 0xff, 0xdb, 0x99, 0x5c, 0xff, 0xdc, 0x96, 0x5b, 0xff, 0xdd, 0x92, 0x59, 0xff, 0xda, 0x91, 0x56, 0xff, 0xd8, 0x90, 0x55, 0xff, 0xd6, 0x90, 0x55, 0xff, 0xd7, 0x8f, 0x54, 0xff, 0xd4, 0x8d, 0x55, 0xff, 0xcf, 0x8c, 0x54, 0xff, 0xca, 0x8b, 0x53, 0xff, 0xc4, 0x88, 0x51, 0xff, 0xbf, 0x85, 0x4f, 0xff, 0xbc, 0x83, 0x4e, 0xff, 0xbb, 0x80, 0x4c, 0xff, 0xb7, 0x7c, 0x4a, 0xff, 0xb3, 0x78, 0x46, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb0, 0x74, 0x42, 0xff, 0xae, 0x72, 0x3e, 0xff, 0xa8, 0x6c, 0x3b, 0xff, 0xa5, 0x68, 0x39, 0xff, 0xa2, 0x65, 0x37, 0xff, 0xa1, 0x63, 0x36, 0xff, 0x9e, 0x61, 0x35, 0xff, 0x9c, 0x5f, 0x35, 0xff, 0x9b, 0x5e, 0x34, 0xff, 0x99, 0x5d, 0x34, 0xff, 0x96, 0x5b, 0x33, 0xff, 0x95, 0x59, 0x34, 0xff, 0x92, 0x58, 0x32, 0xff, 0x92, 0x56, 0x31, 0xff, 0x92, 0x57, 0x31, 0xff, 0x94, 0x58, 0x32, 0xff, 0x97, 0x5d, 0x37, 0xff, 0x97, 0x5d, 0x35, 0xff, 0x96, 0x5c, 0x35, 0xff, 0x95, 0x5b, 0x34, 0xff, 0x95, 0x5a, 0x33, 0xff, 0x93, 0x58, 0x33, 0xff, 0x92, 0x57, 0x31, 0xff, 0x91, 0x55, 0x2f, 0xff, 0x8f, 0x54, 0x2d, 0xff, 0x8c, 0x52, 0x2c, 0xff, 0x8c, 0x51, 0x2b, 0xff, 0x8b, 0x51, 0x2a, 0xff, 0x8a, 0x4f, 0x2b, 0xff, 0x8a, 0x4f, 0x2b, 0xff, 0x88, 0x4f, 0x28, 0xff, 0x87, 0x4e, 0x27, 0xff, 0x86, 0x4e, 0x28, 0xff, 0x88, 0x4e, 0x27, 0xff, 0x88, 0x4e, 0x28, 0xff, 0x86, 0x4c, 0x26, 0xff, 0x85, 0x4e, 0x25, 0xff, 0x85, 0x4d, 0x26, 0xff, 0x84, 0x4d, 0x26, 0xff, 0x85, 0x4d, 0x25, 0xff, 0x84, 0x4c, 0x25, 0xff, 0x84, 0x4c, 0x25, 0xff, 0x84, 0x4c, 0x25, 0xff, 0x84, 0x4c, 0x25, 0xff, 0x84, 0x4c, 0x25, 0xff, 0x84, 0x4c, 0x25, 0xff, 0x84, 0x4c, 0x25, 0xff, 0x84, 0x4b, 0x25, 0xff, 0x85, 0x4d, 0x26, 0xff, 0x85, 0x4e, 0x26, 0xff, 0x86, 0x4d, 0x27, 0xff, 0x87, 0x4e, 0x27, 0xff, 0x88, 0x4e, 0x28, 0xff, 0x89, 0x4f, 0x29, 0xff, 0x89, 0x4e, 0x28, 0xff, 0x8a, 0x4f, 0x28, 0xff, 0x8a, 0x50, 0x2b, 0xff, 0x8c, 0x51, 0x2b, 0xff, + 0x89, 0x4f, 0x2a, 0xff, 0x8c, 0x51, 0x2c, 0xff, 0x8c, 0x51, 0x2d, 0xff, 0x8e, 0x52, 0x2f, 0xff, 0x8f, 0x55, 0x2f, 0xff, 0x8f, 0x54, 0x2f, 0xff, 0x91, 0x55, 0x31, 0xff, 0x92, 0x55, 0x31, 0xff, 0x93, 0x57, 0x32, 0xff, 0x91, 0x57, 0x31, 0xff, 0x94, 0x57, 0x32, 0xff, 0x94, 0x58, 0x33, 0xff, 0x96, 0x59, 0x34, 0xff, 0x98, 0x5b, 0x35, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x9b, 0x5f, 0x37, 0xff, 0x9d, 0x61, 0x38, 0xff, 0x9d, 0x61, 0x36, 0xff, 0x9f, 0x61, 0x37, 0xff, 0xa0, 0x63, 0x38, 0xff, 0xa1, 0x65, 0x38, 0xff, 0xa2, 0x66, 0x39, 0xff, 0xa5, 0x68, 0x3a, 0xff, 0xa7, 0x6b, 0x3d, 0xff, 0xac, 0x6f, 0x40, 0xff, 0xac, 0x6f, 0x40, 0xff, 0xac, 0x71, 0x41, 0xff, 0xae, 0x72, 0x42, 0xff, 0xaf, 0x72, 0x43, 0xff, 0xb8, 0x7a, 0x45, 0xff, 0xd8, 0x90, 0x55, 0xff, 0xda, 0x91, 0x58, 0xff, 0xba, 0x84, 0x4f, 0xff, 0xbd, 0x85, 0x51, 0xff, 0xbf, 0x89, 0x54, 0xff, 0xc2, 0x8d, 0x56, 0xff, 0xc5, 0x8f, 0x59, 0xff, 0xcb, 0x91, 0x5d, 0xff, 0xcf, 0x93, 0x60, 0xff, 0xa2, 0x67, 0x3c, 0xff, 0xa4, 0x69, 0x3e, 0xff, 0xa4, 0x69, 0x3e, 0xff, 0xa5, 0x69, 0x3d, 0xff, 0xa4, 0x69, 0x3c, 0xff, 0xa5, 0x69, 0x3b, 0xff, 0xa4, 0x68, 0x3b, 0xff, 0xa3, 0x67, 0x3b, 0xff, 0xa3, 0x68, 0x3b, 0xff, 0xa3, 0x68, 0x39, 0xff, 0xa3, 0x68, 0x3a, 0xff, 0xa3, 0x68, 0x3a, 0xff, 0xa3, 0x68, 0x3a, 0xff, 0xa1, 0x66, 0x39, 0xff, 0xa0, 0x66, 0x39, 0xff, 0xa2, 0x68, 0x3a, 0xff, 0xa3, 0x6a, 0x3c, 0xff, 0xa3, 0x6f, 0x3f, 0xff, 0xa5, 0x71, 0x44, 0xff, 0xa5, 0x72, 0x47, 0xff, 0xa5, 0x70, 0x49, 0xff, 0xa3, 0x6f, 0x48, 0xff, 0xa3, 0x70, 0x49, 0xff, 0xa3, 0x72, 0x49, 0xff, 0xa5, 0x72, 0x48, 0xff, 0xa4, 0x71, 0x43, 0xff, 0xa5, 0x73, 0x44, 0xff, 0xa5, 0x72, 0x45, 0xff, 0xa6, 0x71, 0x42, 0xff, 0xa4, 0x6e, 0x3e, 0xff, 0xa5, 0x6e, 0x3d, 0xff, 0xa7, 0x70, 0x3c, 0xff, 0xa9, 0x72, 0x3c, 0xff, 0xab, 0x74, 0x3e, 0xff, 0xac, 0x75, 0x3f, 0xff, 0xad, 0x73, 0x3e, 0xff, 0xaf, 0x76, 0x3e, 0xff, 0xb1, 0x7a, 0x41, 0xff, 0xb2, 0x7b, 0x44, 0xff, 0xb4, 0x80, 0x49, 0xff, 0xb5, 0x84, 0x4b, 0xff, 0xb7, 0x88, 0x4f, 0xff, 0xb8, 0x8e, 0x55, 0xff, 0xba, 0x8e, 0x56, 0xff, 0xbd, 0x8f, 0x5b, 0xff, 0xbe, 0x90, 0x60, 0xff, 0xbf, 0x90, 0x63, 0xff, 0xc0, 0x90, 0x66, 0xff, 0xc1, 0x92, 0x66, 0xff, 0xc5, 0x94, 0x68, 0xff, 0xcc, 0x97, 0x6b, 0xff, 0xcf, 0x99, 0x6d, 0xff, 0xd3, 0x9b, 0x6f, 0xff, 0xd9, 0xa0, 0x72, 0xff, 0xdd, 0xa5, 0x74, 0xff, 0xdd, 0xac, 0x77, 0xff, 0xdd, 0xb9, 0x7a, 0xff, 0xd9, 0xc1, 0x77, 0xff, 0xd4, 0xc2, 0x77, 0xff, 0xd2, 0xc3, 0x77, 0xff, 0xd2, 0xc2, 0x74, 0xff, 0xd6, 0xc2, 0x70, 0xff, 0xdb, 0xbc, 0x6a, 0xff, 0xdb, 0xac, 0x63, 0xff, 0xda, 0xa3, 0x5f, 0xff, 0xdc, 0xa3, 0x5f, 0xff, 0xdd, 0xa3, 0x61, 0xff, 0xdd, 0xa9, 0x64, 0xff, 0xde, 0xa8, 0x64, 0xff, 0xdc, 0x9e, 0x5e, 0xff, 0xdc, 0x99, 0x59, 0xff, 0xdc, 0x97, 0x59, 0xff, 0xdd, 0x97, 0x59, 0xff, 0xdd, 0x95, 0x58, 0xff, 0xdc, 0x95, 0x53, 0xff, 0xdd, 0x96, 0x50, 0xff, 0xdb, 0x95, 0x50, 0xff, 0xdb, 0x95, 0x52, 0xff, 0xdc, 0x96, 0x54, 0xff, 0xdd, 0x9b, 0x58, 0xff, 0xdc, 0x9f, 0x5b, 0xff, 0xdd, 0xa5, 0x5f, 0xff, 0xdd, 0xad, 0x64, 0xff, 0xdc, 0xb3, 0x67, 0xff, 0xdc, 0xbd, 0x6d, 0xff, 0xdb, 0xc0, 0x70, 0xff, 0xd8, 0xc1, 0x71, 0xff, 0xd7, 0xc3, 0x73, 0xff, 0xd8, 0xc3, 0x73, 0xff, 0xda, 0xc2, 0x73, 0xff, 0xdc, 0xbf, 0x6f, 0xff, 0xdd, 0xb7, 0x6d, 0xff, 0xdc, 0xab, 0x68, 0xff, 0xdb, 0xa5, 0x64, 0xff, 0xdd, 0x9f, 0x61, 0xff, 0xdc, 0x99, 0x5c, 0xff, 0xd3, 0x93, 0x58, 0xff, 0xc9, 0x8d, 0x53, 0xff, 0xc1, 0x86, 0x4e, 0xff, 0xbc, 0x82, 0x4c, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xb4, 0x79, 0x45, 0xff, 0xb1, 0x77, 0x42, 0xff, 0xaf, 0x74, 0x40, 0xff, 0xac, 0x76, 0x42, 0xff, 0xce, 0x95, 0x5c, 0xff, 0xe0, 0x9f, 0x63, 0xff, 0xdb, 0x99, 0x5d, 0xff, 0xdc, 0x95, 0x59, 0xff, 0xdd, 0x93, 0x56, 0xff, 0xdd, 0x95, 0x58, 0xff, 0xdd, 0x98, 0x59, 0xff, 0xdc, 0x9b, 0x5e, 0xff, 0xdd, 0x9d, 0x62, 0xff, 0xdc, 0x9f, 0x64, 0xff, 0xdc, 0xa2, 0x65, 0xff, 0xdc, 0xa2, 0x66, 0xff, 0xdc, 0xa3, 0x66, 0xff, 0xdd, 0xa2, 0x64, 0xff, 0xdd, 0x9f, 0x63, 0xff, 0xdc, 0x9b, 0x5e, 0xff, 0xdd, 0x98, 0x59, 0xff, 0xdd, 0x97, 0x5b, 0xff, 0xdc, 0x96, 0x5a, 0xff, 0xdd, 0x96, 0x59, 0xff, 0xdd, 0x96, 0x59, 0xff, 0xdb, 0x95, 0x59, 0xff, 0xdd, 0x95, 0x5a, 0xff, 0xdc, 0x95, 0x59, 0xff, 0xda, 0x96, 0x5b, 0xff, 0xd3, 0x92, 0x58, 0xff, 0xca, 0x8c, 0x55, 0xff, 0xc2, 0x89, 0x53, 0xff, 0xbd, 0x84, 0x50, 0xff, 0xbb, 0x81, 0x4e, 0xff, 0xb8, 0x7e, 0x4a, 0xff, 0xb5, 0x79, 0x47, 0xff, 0xb4, 0x77, 0x46, 0xff, 0xb1, 0x73, 0x42, 0xff, 0xac, 0x6f, 0x3e, 0xff, 0xa8, 0x6b, 0x3b, 0xff, 0xa6, 0x68, 0x38, 0xff, 0xa4, 0x67, 0x37, 0xff, 0xa1, 0x64, 0x36, 0xff, 0x9f, 0x61, 0x36, 0xff, 0x9e, 0x5f, 0x35, 0xff, 0x9a, 0x5d, 0x34, 0xff, 0x97, 0x5a, 0x34, 0xff, 0x94, 0x59, 0x33, 0xff, 0x95, 0x59, 0x33, 0xff, 0x94, 0x58, 0x33, 0xff, 0x93, 0x58, 0x33, 0xff, 0x97, 0x5d, 0x37, 0xff, 0x97, 0x5d, 0x37, 0xff, 0x96, 0x5c, 0x35, 0xff, 0x96, 0x5b, 0x34, 0xff, 0x96, 0x5c, 0x35, 0xff, 0x95, 0x59, 0x33, 0xff, 0x94, 0x59, 0x33, 0xff, 0x93, 0x57, 0x31, 0xff, 0x92, 0x56, 0x30, 0xff, 0x8f, 0x54, 0x2e, 0xff, 0x8d, 0x52, 0x2c, 0xff, 0x8c, 0x51, 0x2b, 0xff, 0x8a, 0x51, 0x2a, 0xff, 0x89, 0x4e, 0x2a, 0xff, 0x89, 0x4e, 0x28, 0xff, 0x87, 0x4e, 0x27, 0xff, 0x86, 0x4e, 0x28, 0xff, 0x87, 0x4e, 0x28, 0xff, 0x87, 0x4e, 0x28, 0xff, 0x86, 0x4c, 0x26, 0xff, 0x85, 0x4d, 0x26, 0xff, 0x84, 0x4d, 0x26, 0xff, 0x85, 0x4c, 0x25, 0xff, 0x84, 0x4d, 0x25, 0xff, 0x84, 0x4c, 0x25, 0xff, 0x83, 0x4c, 0x25, 0xff, 0x82, 0x4c, 0x25, 0xff, 0x84, 0x4c, 0x25, 0xff, 0x83, 0x4b, 0x25, 0xff, 0x81, 0x4c, 0x25, 0xff, 0x83, 0x4b, 0x25, 0xff, 0x84, 0x4b, 0x25, 0xff, 0x84, 0x4d, 0x25, 0xff, 0x84, 0x4c, 0x25, 0xff, 0x81, 0x4c, 0x25, 0xff, 0x83, 0x4c, 0x25, 0xff, 0x87, 0x4d, 0x27, 0xff, 0x86, 0x4d, 0x27, 0xff, 0x87, 0x4e, 0x28, 0xff, 0x86, 0x4e, 0x28, 0xff, 0x87, 0x4e, 0x28, 0xff, 0x88, 0x4e, 0x28, 0xff, 0x89, 0x50, 0x2a, 0xff, + 0x89, 0x4f, 0x29, 0xff, 0x8a, 0x50, 0x2b, 0xff, 0x8c, 0x52, 0x2b, 0xff, 0x8c, 0x51, 0x2c, 0xff, 0x8d, 0x53, 0x2d, 0xff, 0x8e, 0x53, 0x2e, 0xff, 0x8f, 0x54, 0x2e, 0xff, 0x90, 0x55, 0x2f, 0xff, 0x91, 0x55, 0x2f, 0xff, 0x91, 0x56, 0x31, 0xff, 0x92, 0x57, 0x32, 0xff, 0x93, 0x58, 0x33, 0xff, 0x94, 0x59, 0x33, 0xff, 0x96, 0x5a, 0x34, 0xff, 0x97, 0x5c, 0x35, 0xff, 0x9b, 0x5e, 0x36, 0xff, 0x9a, 0x5e, 0x36, 0xff, 0x9c, 0x60, 0x36, 0xff, 0x9e, 0x60, 0x36, 0xff, 0x9e, 0x61, 0x37, 0xff, 0xa1, 0x63, 0x38, 0xff, 0xa1, 0x65, 0x39, 0xff, 0xa3, 0x66, 0x39, 0xff, 0xa4, 0x67, 0x3a, 0xff, 0xa6, 0x6b, 0x3b, 0xff, 0xac, 0x70, 0x40, 0xff, 0xad, 0x70, 0x41, 0xff, 0xaf, 0x72, 0x42, 0xff, 0xae, 0x70, 0x41, 0xff, 0xc5, 0x85, 0x4f, 0xff, 0xde, 0x92, 0x56, 0xff, 0xdd, 0x93, 0x57, 0xff, 0xd8, 0x97, 0x5e, 0xff, 0xb9, 0x82, 0x4d, 0xff, 0xbe, 0x87, 0x51, 0xff, 0xc0, 0x88, 0x54, 0xff, 0xc4, 0x8d, 0x58, 0xff, 0xc8, 0x90, 0x5a, 0xff, 0xc4, 0x8c, 0x5a, 0xff, 0xa4, 0x68, 0x3e, 0xff, 0xa6, 0x6b, 0x3f, 0xff, 0xa6, 0x6a, 0x3e, 0xff, 0xa6, 0x6a, 0x3d, 0xff, 0xa5, 0x6a, 0x3d, 0xff, 0xa5, 0x6a, 0x3d, 0xff, 0xa5, 0x6a, 0x3c, 0xff, 0xa4, 0x6a, 0x3c, 0xff, 0xa4, 0x69, 0x3c, 0xff, 0xa5, 0x6a, 0x3c, 0xff, 0xa5, 0x69, 0x3c, 0xff, 0xa4, 0x69, 0x3b, 0xff, 0xa4, 0x69, 0x3b, 0xff, 0xa4, 0x69, 0x3b, 0xff, 0xa2, 0x67, 0x39, 0xff, 0xa2, 0x68, 0x3b, 0xff, 0xa3, 0x6a, 0x3c, 0xff, 0xa5, 0x6e, 0x3e, 0xff, 0xa4, 0x6f, 0x40, 0xff, 0xa3, 0x6f, 0x43, 0xff, 0xa4, 0x70, 0x45, 0xff, 0xa4, 0x71, 0x47, 0xff, 0xa5, 0x70, 0x47, 0xff, 0xa3, 0x70, 0x46, 0xff, 0xa5, 0x73, 0x46, 0xff, 0xa5, 0x74, 0x44, 0xff, 0xa5, 0x72, 0x43, 0xff, 0xa5, 0x73, 0x45, 0xff, 0xa4, 0x70, 0x44, 0xff, 0xa5, 0x6f, 0x42, 0xff, 0xa5, 0x6f, 0x3d, 0xff, 0xa6, 0x6f, 0x3c, 0xff, 0xa7, 0x70, 0x3c, 0xff, 0xa9, 0x71, 0x3d, 0xff, 0xab, 0x73, 0x3f, 0xff, 0xad, 0x74, 0x3e, 0xff, 0xae, 0x74, 0x3d, 0xff, 0xaf, 0x76, 0x40, 0xff, 0xb1, 0x7a, 0x43, 0xff, 0xb3, 0x7e, 0x47, 0xff, 0xb4, 0x83, 0x4c, 0xff, 0xb6, 0x87, 0x51, 0xff, 0xb8, 0x8b, 0x55, 0xff, 0xb9, 0x8e, 0x5a, 0xff, 0xbb, 0x91, 0x5e, 0xff, 0xbd, 0x91, 0x60, 0xff, 0xbf, 0x91, 0x64, 0xff, 0xc1, 0x91, 0x66, 0xff, 0xc2, 0x91, 0x67, 0xff, 0xc4, 0x93, 0x68, 0xff, 0xc9, 0x96, 0x6a, 0xff, 0xce, 0x98, 0x6c, 0xff, 0xd2, 0x9a, 0x6d, 0xff, 0xd6, 0x9c, 0x6f, 0xff, 0xdc, 0xa0, 0x74, 0xff, 0xdd, 0xa6, 0x76, 0xff, 0xdd, 0xaf, 0x77, 0xff, 0xdd, 0xb9, 0x79, 0xff, 0xda, 0xc2, 0x79, 0xff, 0xd4, 0xc4, 0x75, 0xff, 0xd3, 0xc3, 0x73, 0xff, 0xd7, 0xc0, 0x6d, 0xff, 0xdb, 0xb9, 0x68, 0xff, 0xdb, 0xab, 0x62, 0xff, 0xdc, 0xa2, 0x5c, 0xff, 0xdb, 0xa0, 0x5c, 0xff, 0xdc, 0xa1, 0x5e, 0xff, 0xdd, 0xa8, 0x65, 0xff, 0xde, 0xad, 0x68, 0xff, 0xdd, 0xa8, 0x64, 0xff, 0xdc, 0x9d, 0x5c, 0xff, 0xdd, 0x98, 0x58, 0xff, 0xdd, 0x97, 0x59, 0xff, 0xdd, 0x97, 0x58, 0xff, 0xdd, 0x97, 0x53, 0xff, 0xdc, 0x96, 0x51, 0xff, 0xdc, 0x95, 0x51, 0xff, 0xdc, 0x97, 0x52, 0xff, 0xdc, 0x9a, 0x54, 0xff, 0xdd, 0x9c, 0x57, 0xff, 0xdd, 0xa2, 0x5d, 0xff, 0xdc, 0xa6, 0x61, 0xff, 0xdd, 0xb1, 0x66, 0xff, 0xdd, 0xbc, 0x6c, 0xff, 0xda, 0xc0, 0x71, 0xff, 0xd5, 0xc2, 0x75, 0xff, 0xd3, 0xc1, 0x78, 0xff, 0xd5, 0xc3, 0x7b, 0xff, 0xd5, 0xc3, 0x7c, 0xff, 0xd4, 0xc3, 0x7b, 0xff, 0xd4, 0xc4, 0x78, 0xff, 0xd6, 0xc3, 0x76, 0xff, 0xdb, 0xbf, 0x72, 0xff, 0xdd, 0xb7, 0x6f, 0xff, 0xdc, 0xab, 0x6a, 0xff, 0xdd, 0xa1, 0x64, 0xff, 0xdd, 0x9c, 0x5f, 0xff, 0xd7, 0x95, 0x5a, 0xff, 0xcd, 0x8f, 0x56, 0xff, 0xc3, 0x88, 0x50, 0xff, 0xbc, 0x83, 0x4d, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xae, 0x72, 0x3f, 0xff, 0xbb, 0x81, 0x4c, 0xff, 0xd6, 0x9a, 0x60, 0xff, 0xde, 0x9e, 0x62, 0xff, 0xdd, 0x99, 0x5d, 0xff, 0xdd, 0x97, 0x5b, 0xff, 0xdd, 0x96, 0x5a, 0xff, 0xdd, 0x96, 0x59, 0xff, 0xdd, 0x96, 0x59, 0xff, 0xdc, 0x99, 0x5d, 0xff, 0xdd, 0x9b, 0x61, 0xff, 0xdc, 0x9e, 0x64, 0xff, 0xdc, 0xa1, 0x64, 0xff, 0xdc, 0xa1, 0x63, 0xff, 0xdd, 0x9f, 0x62, 0xff, 0xdd, 0x9d, 0x60, 0xff, 0xdd, 0x9b, 0x60, 0xff, 0xdd, 0x99, 0x5c, 0xff, 0xdd, 0x98, 0x5b, 0xff, 0xdd, 0x99, 0x5b, 0xff, 0xdc, 0x9b, 0x5d, 0xff, 0xdc, 0x9b, 0x5f, 0xff, 0xdc, 0x99, 0x5e, 0xff, 0xdc, 0x9b, 0x60, 0xff, 0xdc, 0x9c, 0x5f, 0xff, 0xdb, 0x9b, 0x5f, 0xff, 0xdd, 0x9b, 0x5f, 0xff, 0xdd, 0x98, 0x5e, 0xff, 0xd5, 0x92, 0x5a, 0xff, 0xcb, 0x8e, 0x57, 0xff, 0xc1, 0x87, 0x54, 0xff, 0xbb, 0x83, 0x50, 0xff, 0xb7, 0x7e, 0x4c, 0xff, 0xb6, 0x7b, 0x4a, 0xff, 0xb3, 0x78, 0x46, 0xff, 0xb0, 0x73, 0x42, 0xff, 0xac, 0x6c, 0x3d, 0xff, 0xa8, 0x69, 0x3a, 0xff, 0xa5, 0x67, 0x38, 0xff, 0xa3, 0x65, 0x37, 0xff, 0xa1, 0x64, 0x36, 0xff, 0x9c, 0x5f, 0x34, 0xff, 0x9a, 0x5c, 0x34, 0xff, 0x98, 0x5c, 0x33, 0xff, 0x96, 0x5a, 0x33, 0xff, 0x96, 0x5a, 0x33, 0xff, 0x97, 0x5a, 0x34, 0xff, 0x9a, 0x60, 0x38, 0xff, 0x98, 0x5e, 0x37, 0xff, 0x97, 0x5e, 0x37, 0xff, 0x97, 0x5c, 0x36, 0xff, 0x96, 0x5c, 0x34, 0xff, 0x94, 0x5b, 0x33, 0xff, 0x94, 0x59, 0x33, 0xff, 0x93, 0x59, 0x32, 0xff, 0x93, 0x56, 0x31, 0xff, 0x91, 0x55, 0x31, 0xff, 0x8f, 0x54, 0x2e, 0xff, 0x8c, 0x51, 0x2d, 0xff, 0x8c, 0x51, 0x2c, 0xff, 0x8c, 0x52, 0x2b, 0xff, 0x89, 0x50, 0x2a, 0xff, 0x88, 0x4d, 0x28, 0xff, 0x89, 0x4e, 0x26, 0xff, 0x88, 0x4d, 0x26, 0xff, 0x88, 0x4c, 0x26, 0xff, 0x85, 0x4d, 0x26, 0xff, 0x86, 0x4c, 0x26, 0xff, 0x84, 0x4d, 0x26, 0xff, 0x85, 0x4b, 0x26, 0xff, 0x85, 0x4b, 0x25, 0xff, 0x84, 0x4c, 0x25, 0xff, 0x84, 0x4c, 0x25, 0xff, 0x83, 0x4c, 0x24, 0xff, 0x81, 0x4b, 0x24, 0xff, 0x83, 0x4b, 0x24, 0xff, 0x83, 0x4b, 0x24, 0xff, 0x82, 0x4b, 0x25, 0xff, 0x83, 0x4b, 0x24, 0xff, 0x83, 0x4a, 0x25, 0xff, 0x81, 0x49, 0x24, 0xff, 0x81, 0x4b, 0x24, 0xff, 0x83, 0x4b, 0x24, 0xff, 0x83, 0x4b, 0x24, 0xff, 0x83, 0x4c, 0x24, 0xff, 0x84, 0x4c, 0x25, 0xff, 0x86, 0x4d, 0x26, 0xff, 0x87, 0x4e, 0x26, 0xff, 0x86, 0x4e, 0x28, 0xff, 0x87, 0x4e, 0x28, 0xff, 0x88, 0x4e, 0x2a, 0xff, + 0x87, 0x4d, 0x27, 0xff, 0x88, 0x4e, 0x29, 0xff, 0x8a, 0x4f, 0x2a, 0xff, 0x8b, 0x50, 0x2b, 0xff, 0x8c, 0x52, 0x2c, 0xff, 0x8c, 0x52, 0x2e, 0xff, 0x8c, 0x52, 0x2e, 0xff, 0x8d, 0x52, 0x2d, 0xff, 0x8f, 0x53, 0x2f, 0xff, 0x90, 0x54, 0x30, 0xff, 0x91, 0x55, 0x32, 0xff, 0x92, 0x56, 0x32, 0xff, 0x94, 0x57, 0x33, 0xff, 0x96, 0x5a, 0x34, 0xff, 0x98, 0x5d, 0x35, 0xff, 0x98, 0x5d, 0x35, 0xff, 0x9a, 0x5d, 0x35, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0x9d, 0x5f, 0x35, 0xff, 0x9e, 0x61, 0x37, 0xff, 0x9f, 0x62, 0x37, 0xff, 0xa0, 0x63, 0x39, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa4, 0x66, 0x3a, 0xff, 0xa5, 0x69, 0x3b, 0xff, 0xa5, 0x69, 0x3b, 0xff, 0xa9, 0x6c, 0x3e, 0xff, 0xac, 0x6f, 0x3f, 0xff, 0xb7, 0x79, 0x48, 0xff, 0xd9, 0x90, 0x57, 0xff, 0xda, 0x8f, 0x56, 0xff, 0xde, 0x93, 0x58, 0xff, 0xdc, 0x96, 0x58, 0xff, 0xd2, 0x92, 0x5a, 0xff, 0xbc, 0x84, 0x51, 0xff, 0xbe, 0x87, 0x52, 0xff, 0xc2, 0x8a, 0x53, 0xff, 0xc5, 0x8e, 0x55, 0xff, 0xba, 0x84, 0x50, 0xff, 0xa6, 0x6b, 0x3f, 0xff, 0xa7, 0x6b, 0x40, 0xff, 0xa6, 0x6b, 0x3f, 0xff, 0xa6, 0x6c, 0x3f, 0xff, 0xa6, 0x6a, 0x3e, 0xff, 0xa6, 0x6b, 0x3f, 0xff, 0xa6, 0x6b, 0x3d, 0xff, 0xa6, 0x6b, 0x3d, 0xff, 0xa6, 0x6b, 0x3c, 0xff, 0xa5, 0x6b, 0x3c, 0xff, 0xa5, 0x6a, 0x3c, 0xff, 0xa6, 0x6a, 0x3c, 0xff, 0xa5, 0x6b, 0x3c, 0xff, 0xa5, 0x6a, 0x3c, 0xff, 0xa5, 0x6a, 0x3c, 0xff, 0xa3, 0x69, 0x3c, 0xff, 0xa5, 0x6d, 0x3c, 0xff, 0xa6, 0x6e, 0x3d, 0xff, 0xa4, 0x6e, 0x3e, 0xff, 0xa5, 0x70, 0x41, 0xff, 0xa5, 0x71, 0x42, 0xff, 0xa5, 0x70, 0x43, 0xff, 0xa4, 0x71, 0x44, 0xff, 0xa5, 0x72, 0x44, 0xff, 0xa5, 0x72, 0x42, 0xff, 0xa4, 0x71, 0x41, 0xff, 0xa4, 0x71, 0x41, 0xff, 0xa4, 0x73, 0x43, 0xff, 0xa5, 0x71, 0x45, 0xff, 0xa5, 0x70, 0x43, 0xff, 0xa5, 0x70, 0x3f, 0xff, 0xa4, 0x6f, 0x3d, 0xff, 0xa7, 0x6f, 0x3c, 0xff, 0xa9, 0x71, 0x3c, 0xff, 0xaa, 0x73, 0x3e, 0xff, 0xab, 0x73, 0x3f, 0xff, 0xad, 0x75, 0x40, 0xff, 0xaf, 0x77, 0x41, 0xff, 0xb0, 0x7a, 0x44, 0xff, 0xb1, 0x7d, 0x47, 0xff, 0xb3, 0x81, 0x4c, 0xff, 0xb4, 0x84, 0x50, 0xff, 0xb6, 0x88, 0x55, 0xff, 0xb8, 0x8e, 0x5a, 0xff, 0xba, 0x8f, 0x5c, 0xff, 0xbc, 0x91, 0x60, 0xff, 0xbd, 0x92, 0x63, 0xff, 0xbf, 0x93, 0x66, 0xff, 0xc1, 0x93, 0x67, 0xff, 0xc4, 0x94, 0x67, 0xff, 0xc6, 0x95, 0x69, 0xff, 0xcb, 0x97, 0x6b, 0xff, 0xcf, 0x99, 0x6d, 0xff, 0xd4, 0x9b, 0x6f, 0xff, 0xd8, 0x9e, 0x71, 0xff, 0xdd, 0xa2, 0x73, 0xff, 0xde, 0xa8, 0x76, 0xff, 0xdd, 0xb0, 0x76, 0xff, 0xde, 0xbb, 0x76, 0xff, 0xdc, 0xc3, 0x74, 0xff, 0xd6, 0xc3, 0x71, 0xff, 0xd9, 0xc3, 0x6e, 0xff, 0xdd, 0xbb, 0x69, 0xff, 0xdd, 0xad, 0x61, 0xff, 0xdd, 0xa3, 0x5b, 0xff, 0xdc, 0x9f, 0x59, 0xff, 0xdd, 0xa1, 0x5c, 0xff, 0xdc, 0xa5, 0x60, 0xff, 0xde, 0xae, 0x68, 0xff, 0xde, 0xaf, 0x69, 0xff, 0xdd, 0xa3, 0x61, 0xff, 0xdd, 0x9a, 0x5a, 0xff, 0xdd, 0x98, 0x5a, 0xff, 0xdd, 0x98, 0x59, 0xff, 0xdc, 0x99, 0x56, 0xff, 0xdc, 0x98, 0x52, 0xff, 0xdd, 0x99, 0x52, 0xff, 0xdd, 0x9b, 0x53, 0xff, 0xdd, 0x9c, 0x55, 0xff, 0xde, 0x9d, 0x59, 0xff, 0xdd, 0xa1, 0x5c, 0xff, 0xdc, 0xa8, 0x60, 0xff, 0xdd, 0xb3, 0x67, 0xff, 0xdc, 0xbd, 0x6d, 0xff, 0xd7, 0xc3, 0x73, 0xff, 0xd5, 0xc4, 0x78, 0xff, 0xd7, 0xc4, 0x7e, 0xff, 0xd8, 0xc4, 0x83, 0xff, 0xd8, 0xc5, 0x86, 0xff, 0xd8, 0xc4, 0x86, 0xff, 0xd8, 0xc5, 0x84, 0xff, 0xd7, 0xc6, 0x7f, 0xff, 0xd7, 0xc5, 0x7b, 0xff, 0xda, 0xc3, 0x78, 0xff, 0xdc, 0xbc, 0x73, 0xff, 0xdd, 0xb0, 0x6d, 0xff, 0xdc, 0xa4, 0x67, 0xff, 0xdd, 0x9e, 0x62, 0xff, 0xda, 0x97, 0x5c, 0xff, 0xcf, 0x90, 0x57, 0xff, 0xc4, 0x8a, 0x52, 0xff, 0xbd, 0x84, 0x4e, 0xff, 0xb8, 0x80, 0x4b, 0xff, 0xb6, 0x7b, 0x47, 0xff, 0xb1, 0x77, 0x43, 0xff, 0xb8, 0x7d, 0x48, 0xff, 0xc1, 0x85, 0x4e, 0xff, 0xd4, 0x98, 0x5d, 0xff, 0xde, 0xa0, 0x64, 0xff, 0xdd, 0x9e, 0x60, 0xff, 0xde, 0x9b, 0x5e, 0xff, 0xde, 0x99, 0x5c, 0xff, 0xdd, 0x97, 0x5a, 0xff, 0xdd, 0x97, 0x5b, 0xff, 0xdd, 0x9a, 0x5f, 0xff, 0xde, 0xa0, 0x63, 0xff, 0xde, 0xa0, 0x61, 0xff, 0xdd, 0xa0, 0x61, 0xff, 0xde, 0xa1, 0x63, 0xff, 0xdd, 0x9f, 0x61, 0xff, 0xdd, 0x9d, 0x5f, 0xff, 0xdd, 0x9c, 0x5e, 0xff, 0xdd, 0x9a, 0x5c, 0xff, 0xdc, 0x9d, 0x5d, 0xff, 0xdd, 0x9f, 0x5f, 0xff, 0xde, 0xa0, 0x61, 0xff, 0xde, 0xa4, 0x64, 0xff, 0xde, 0xa4, 0x65, 0xff, 0xde, 0xa3, 0x65, 0xff, 0xde, 0xa2, 0x65, 0xff, 0xdd, 0xa1, 0x65, 0xff, 0xdd, 0xa0, 0x64, 0xff, 0xde, 0x9c, 0x61, 0xff, 0xdb, 0x97, 0x5d, 0xff, 0xd2, 0x92, 0x59, 0xff, 0xc4, 0x89, 0x56, 0xff, 0xbb, 0x84, 0x52, 0xff, 0xb8, 0x7f, 0x4e, 0xff, 0xb5, 0x7c, 0x4b, 0xff, 0xb2, 0x78, 0x47, 0xff, 0xad, 0x73, 0x42, 0xff, 0xaa, 0x6e, 0x3d, 0xff, 0xa7, 0x6b, 0x39, 0xff, 0xa5, 0x67, 0x38, 0xff, 0xa0, 0x62, 0x37, 0xff, 0x9d, 0x5f, 0x35, 0xff, 0x9b, 0x5e, 0x34, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x98, 0x5c, 0x33, 0xff, 0x98, 0x5c, 0x35, 0xff, 0x9c, 0x62, 0x39, 0xff, 0x9a, 0x61, 0x39, 0xff, 0x99, 0x5f, 0x38, 0xff, 0x98, 0x5e, 0x37, 0xff, 0x97, 0x5d, 0x36, 0xff, 0x95, 0x5c, 0x35, 0xff, 0x95, 0x5c, 0x34, 0xff, 0x94, 0x5a, 0x33, 0xff, 0x93, 0x59, 0x32, 0xff, 0x93, 0x57, 0x31, 0xff, 0x92, 0x55, 0x31, 0xff, 0x90, 0x54, 0x2e, 0xff, 0x8f, 0x54, 0x2d, 0xff, 0x8d, 0x52, 0x2b, 0xff, 0x8c, 0x52, 0x2b, 0xff, 0x89, 0x50, 0x29, 0xff, 0x88, 0x4e, 0x28, 0xff, 0x88, 0x4e, 0x27, 0xff, 0x88, 0x4e, 0x28, 0xff, 0x87, 0x4e, 0x28, 0xff, 0x86, 0x4d, 0x29, 0xff, 0x86, 0x4d, 0x28, 0xff, 0x84, 0x4c, 0x27, 0xff, 0x84, 0x4c, 0x25, 0xff, 0x84, 0x4b, 0x25, 0xff, 0x84, 0x4c, 0x25, 0xff, 0x83, 0x4c, 0x24, 0xff, 0x82, 0x4a, 0x24, 0xff, 0x83, 0x4b, 0x24, 0xff, 0x83, 0x4b, 0x24, 0xff, 0x82, 0x4a, 0x24, 0xff, 0x82, 0x4a, 0x24, 0xff, 0x80, 0x49, 0x23, 0xff, 0x80, 0x4a, 0x24, 0xff, 0x81, 0x49, 0x24, 0xff, 0x80, 0x49, 0x24, 0xff, 0x80, 0x49, 0x24, 0xff, 0x81, 0x4c, 0x24, 0xff, 0x82, 0x4a, 0x25, 0xff, 0x83, 0x4b, 0x25, 0xff, 0x84, 0x4b, 0x25, 0xff, 0x84, 0x4c, 0x25, 0xff, 0x85, 0x4c, 0x25, 0xff, 0x87, 0x4d, 0x27, 0xff, 0x87, 0x4e, 0x29, 0xff, + 0x86, 0x4d, 0x27, 0xff, 0x87, 0x4e, 0x29, 0xff, 0x88, 0x4e, 0x2a, 0xff, 0x8a, 0x4f, 0x2a, 0xff, 0x8b, 0x50, 0x2b, 0xff, 0x8b, 0x51, 0x2c, 0xff, 0x8b, 0x52, 0x2c, 0xff, 0x8b, 0x51, 0x2d, 0xff, 0x8e, 0x53, 0x2e, 0xff, 0x90, 0x54, 0x30, 0xff, 0x91, 0x54, 0x31, 0xff, 0x91, 0x55, 0x32, 0xff, 0x94, 0x58, 0x33, 0xff, 0x97, 0x5a, 0x35, 0xff, 0x97, 0x5c, 0x34, 0xff, 0x98, 0x5d, 0x35, 0xff, 0x99, 0x5c, 0x35, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x9c, 0x5f, 0x35, 0xff, 0x9d, 0x61, 0x36, 0xff, 0x9f, 0x61, 0x37, 0xff, 0xa0, 0x62, 0x38, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa4, 0x66, 0x3a, 0xff, 0xa4, 0x68, 0x3b, 0xff, 0xa5, 0x69, 0x3c, 0xff, 0xa6, 0x69, 0x3b, 0xff, 0xaa, 0x6c, 0x3e, 0xff, 0xc0, 0x83, 0x4f, 0xff, 0xcf, 0x8d, 0x54, 0xff, 0xd8, 0x8e, 0x57, 0xff, 0xdd, 0x92, 0x58, 0xff, 0xdf, 0x96, 0x59, 0xff, 0xdd, 0x96, 0x5a, 0xff, 0xc7, 0x8e, 0x55, 0xff, 0xbd, 0x86, 0x52, 0xff, 0xc0, 0x89, 0x53, 0xff, 0xc4, 0x8a, 0x53, 0xff, 0xb6, 0x7d, 0x4b, 0xff, 0xa8, 0x6d, 0x3f, 0xff, 0xa7, 0x6c, 0x40, 0xff, 0xa7, 0x6c, 0x3f, 0xff, 0xa7, 0x6c, 0x3e, 0xff, 0xa7, 0x6d, 0x3f, 0xff, 0xa7, 0x6d, 0x40, 0xff, 0xa7, 0x6c, 0x40, 0xff, 0xa7, 0x6c, 0x3e, 0xff, 0xa7, 0x6d, 0x3e, 0xff, 0xa6, 0x6c, 0x3c, 0xff, 0xa6, 0x6c, 0x3c, 0xff, 0xa6, 0x6c, 0x3c, 0xff, 0xa6, 0x6c, 0x3c, 0xff, 0xa7, 0x6c, 0x3d, 0xff, 0xa7, 0x6c, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa6, 0x6e, 0x3c, 0xff, 0xa6, 0x6f, 0x3f, 0xff, 0xa7, 0x70, 0x40, 0xff, 0xa6, 0x71, 0x41, 0xff, 0xa7, 0x72, 0x42, 0xff, 0xa5, 0x72, 0x42, 0xff, 0xa5, 0x71, 0x43, 0xff, 0xa5, 0x71, 0x41, 0xff, 0xa4, 0x71, 0x40, 0xff, 0xa5, 0x70, 0x3f, 0xff, 0xa5, 0x70, 0x41, 0xff, 0xa5, 0x71, 0x44, 0xff, 0xa4, 0x71, 0x44, 0xff, 0xa5, 0x71, 0x41, 0xff, 0xa5, 0x70, 0x3d, 0xff, 0xa5, 0x6f, 0x3c, 0xff, 0xa7, 0x70, 0x3c, 0xff, 0xa8, 0x72, 0x3e, 0xff, 0xaa, 0x74, 0x40, 0xff, 0xac, 0x74, 0x3f, 0xff, 0xae, 0x76, 0x41, 0xff, 0xaf, 0x7a, 0x45, 0xff, 0xb1, 0x7e, 0x49, 0xff, 0xb2, 0x80, 0x4c, 0xff, 0xb4, 0x83, 0x50, 0xff, 0xb6, 0x86, 0x54, 0xff, 0xb7, 0x89, 0x58, 0xff, 0xb8, 0x8d, 0x5b, 0xff, 0xba, 0x90, 0x60, 0xff, 0xbc, 0x92, 0x63, 0xff, 0xbe, 0x94, 0x65, 0xff, 0xc0, 0x95, 0x67, 0xff, 0xc2, 0x94, 0x68, 0xff, 0xc5, 0x95, 0x68, 0xff, 0xc9, 0x96, 0x6b, 0xff, 0xcc, 0x98, 0x6c, 0xff, 0xd0, 0x9a, 0x6e, 0xff, 0xd6, 0x9c, 0x6f, 0xff, 0xdb, 0xa0, 0x70, 0xff, 0xde, 0xa3, 0x72, 0xff, 0xde, 0xaa, 0x72, 0xff, 0xde, 0xb6, 0x71, 0xff, 0xdc, 0xbf, 0x73, 0xff, 0xda, 0xc4, 0x72, 0xff, 0xda, 0xc5, 0x6e, 0xff, 0xdb, 0xbd, 0x6b, 0xff, 0xdc, 0xae, 0x64, 0xff, 0xdd, 0xa4, 0x5e, 0xff, 0xdd, 0x9f, 0x58, 0xff, 0xdc, 0x9f, 0x59, 0xff, 0xdc, 0xa2, 0x5d, 0xff, 0xde, 0xa8, 0x63, 0xff, 0xde, 0xae, 0x68, 0xff, 0xdd, 0xa7, 0x62, 0xff, 0xde, 0x9e, 0x5c, 0xff, 0xdd, 0x9a, 0x5a, 0xff, 0xde, 0x98, 0x59, 0xff, 0xdc, 0x96, 0x53, 0xff, 0xdc, 0x95, 0x4e, 0xff, 0xde, 0x99, 0x52, 0xff, 0xde, 0x9b, 0x55, 0xff, 0xde, 0x9d, 0x56, 0xff, 0xde, 0x9e, 0x59, 0xff, 0xdc, 0xa2, 0x5d, 0xff, 0xdc, 0xa9, 0x61, 0xff, 0xdd, 0xb6, 0x68, 0xff, 0xdc, 0xc0, 0x6d, 0xff, 0xd6, 0xc2, 0x75, 0xff, 0xd5, 0xc5, 0x7e, 0xff, 0xd7, 0xc5, 0x83, 0xff, 0xd7, 0xc5, 0x88, 0xff, 0xd8, 0xc5, 0x8c, 0xff, 0xda, 0xc5, 0x8e, 0xff, 0xdb, 0xc5, 0x8e, 0xff, 0xda, 0xc6, 0x89, 0xff, 0xd8, 0xc5, 0x85, 0xff, 0xd6, 0xc6, 0x80, 0xff, 0xd7, 0xc5, 0x7b, 0xff, 0xdb, 0xc1, 0x76, 0xff, 0xdd, 0xb4, 0x70, 0xff, 0xdd, 0xa8, 0x69, 0xff, 0xdd, 0x9f, 0x63, 0xff, 0xda, 0x97, 0x5d, 0xff, 0xd1, 0x90, 0x58, 0xff, 0xc5, 0x89, 0x53, 0xff, 0xbd, 0x84, 0x4e, 0xff, 0xb8, 0x80, 0x4a, 0xff, 0xb4, 0x7b, 0x47, 0xff, 0xb7, 0x7c, 0x48, 0xff, 0xc5, 0x84, 0x4b, 0xff, 0xc7, 0x89, 0x4e, 0xff, 0xcf, 0x98, 0x5d, 0xff, 0xdb, 0xa1, 0x65, 0xff, 0xde, 0x9f, 0x62, 0xff, 0xdd, 0x9b, 0x5e, 0xff, 0xdd, 0x98, 0x5c, 0xff, 0xdd, 0x99, 0x5d, 0xff, 0xde, 0x9d, 0x61, 0xff, 0xde, 0xa0, 0x64, 0xff, 0xde, 0xa1, 0x63, 0xff, 0xdd, 0x9f, 0x62, 0xff, 0xde, 0xa0, 0x61, 0xff, 0xde, 0xa0, 0x60, 0xff, 0xdd, 0x9f, 0x60, 0xff, 0xdd, 0x9e, 0x5f, 0xff, 0xde, 0x9e, 0x5f, 0xff, 0xdd, 0x9c, 0x5f, 0xff, 0xdd, 0x9e, 0x61, 0xff, 0xdd, 0xa2, 0x65, 0xff, 0xdf, 0xa7, 0x67, 0xff, 0xde, 0xad, 0x6c, 0xff, 0xdf, 0xad, 0x6d, 0xff, 0xde, 0xaf, 0x6d, 0xff, 0xde, 0xab, 0x6c, 0xff, 0xdd, 0xa9, 0x6b, 0xff, 0xde, 0xa5, 0x69, 0xff, 0xdf, 0xa1, 0x67, 0xff, 0xde, 0x9d, 0x63, 0xff, 0xd9, 0x95, 0x5d, 0xff, 0xcc, 0x8e, 0x59, 0xff, 0xbf, 0x87, 0x54, 0xff, 0xba, 0x81, 0x50, 0xff, 0xb6, 0x7d, 0x4c, 0xff, 0xb3, 0x79, 0x47, 0xff, 0xb0, 0x75, 0x43, 0xff, 0xab, 0x6f, 0x3e, 0xff, 0xa7, 0x67, 0x3a, 0xff, 0xa3, 0x65, 0x38, 0xff, 0xa0, 0x62, 0x37, 0xff, 0x9e, 0x60, 0x36, 0xff, 0x9b, 0x5d, 0x35, 0xff, 0x9d, 0x60, 0x37, 0xff, 0x9d, 0x63, 0x38, 0xff, 0x9c, 0x62, 0x38, 0xff, 0x9a, 0x61, 0x39, 0xff, 0x9a, 0x60, 0x39, 0xff, 0x99, 0x5e, 0x37, 0xff, 0x98, 0x5e, 0x36, 0xff, 0x97, 0x5d, 0x35, 0xff, 0x96, 0x5c, 0x34, 0xff, 0x95, 0x5a, 0x33, 0xff, 0x94, 0x59, 0x33, 0xff, 0x93, 0x57, 0x32, 0xff, 0x91, 0x55, 0x30, 0xff, 0x90, 0x53, 0x2f, 0xff, 0x8d, 0x52, 0x2c, 0xff, 0x8d, 0x52, 0x2c, 0xff, 0x8b, 0x50, 0x2b, 0xff, 0x8a, 0x50, 0x29, 0xff, 0x87, 0x4c, 0x29, 0xff, 0x88, 0x4d, 0x29, 0xff, 0x88, 0x4e, 0x29, 0xff, 0x87, 0x4e, 0x29, 0xff, 0x87, 0x4d, 0x29, 0xff, 0x86, 0x4e, 0x29, 0xff, 0x84, 0x4c, 0x28, 0xff, 0x85, 0x4b, 0x25, 0xff, 0x84, 0x4b, 0x25, 0xff, 0x84, 0x4c, 0x25, 0xff, 0x83, 0x4c, 0x25, 0xff, 0x81, 0x4b, 0x24, 0xff, 0x83, 0x4b, 0x24, 0xff, 0x83, 0x4b, 0x25, 0xff, 0x80, 0x4a, 0x24, 0xff, 0x7f, 0x49, 0x22, 0xff, 0x7f, 0x49, 0x22, 0xff, 0x7f, 0x4a, 0x23, 0xff, 0x7f, 0x49, 0x22, 0xff, 0x7f, 0x4a, 0x24, 0xff, 0x80, 0x49, 0x24, 0xff, 0x82, 0x4b, 0x23, 0xff, 0x82, 0x4b, 0x24, 0xff, 0x84, 0x4b, 0x25, 0xff, 0x84, 0x4c, 0x24, 0xff, 0x83, 0x4c, 0x25, 0xff, 0x84, 0x4c, 0x26, 0xff, 0x86, 0x4c, 0x27, 0xff, 0x87, 0x4c, 0x27, 0xff, + 0x87, 0x4e, 0x27, 0xff, 0x87, 0x4e, 0x29, 0xff, 0x88, 0x4d, 0x29, 0xff, 0x88, 0x4e, 0x29, 0xff, 0x88, 0x4e, 0x2b, 0xff, 0x8a, 0x50, 0x2b, 0xff, 0x8b, 0x50, 0x2c, 0xff, 0x8c, 0x52, 0x2c, 0xff, 0x8d, 0x52, 0x2e, 0xff, 0x8e, 0x53, 0x2f, 0xff, 0x8f, 0x54, 0x30, 0xff, 0x91, 0x55, 0x31, 0xff, 0x94, 0x59, 0x33, 0xff, 0x96, 0x59, 0x34, 0xff, 0x97, 0x5b, 0x35, 0xff, 0x98, 0x5c, 0x35, 0xff, 0x98, 0x5b, 0x33, 0xff, 0x98, 0x5d, 0x35, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x9d, 0x61, 0x36, 0xff, 0x9e, 0x62, 0x37, 0xff, 0xa0, 0x64, 0x38, 0xff, 0xa2, 0x64, 0x39, 0xff, 0xa3, 0x67, 0x3b, 0xff, 0xa4, 0x67, 0x3c, 0xff, 0xa5, 0x69, 0x3b, 0xff, 0xa5, 0x68, 0x3a, 0xff, 0xb4, 0x79, 0x47, 0xff, 0xbd, 0x83, 0x4f, 0xff, 0xc7, 0x88, 0x52, 0xff, 0xcc, 0x8c, 0x55, 0xff, 0xd9, 0x93, 0x58, 0xff, 0xdf, 0x94, 0x5b, 0xff, 0xde, 0x97, 0x5b, 0xff, 0xda, 0x99, 0x5c, 0xff, 0xbd, 0x86, 0x4e, 0xff, 0xc0, 0x89, 0x52, 0xff, 0xc2, 0x8a, 0x53, 0xff, 0xb3, 0x78, 0x47, 0xff, 0xaa, 0x6f, 0x40, 0xff, 0xa8, 0x6c, 0x3e, 0xff, 0xa7, 0x6d, 0x3e, 0xff, 0xa7, 0x6d, 0x3e, 0xff, 0xa8, 0x6c, 0x3e, 0xff, 0xa7, 0x6e, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa7, 0x6c, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa7, 0x6c, 0x3e, 0xff, 0xa7, 0x6c, 0x3d, 0xff, 0xa7, 0x6c, 0x3d, 0xff, 0xa7, 0x6e, 0x3e, 0xff, 0xa8, 0x6f, 0x3e, 0xff, 0xab, 0x71, 0x41, 0xff, 0xaa, 0x70, 0x40, 0xff, 0xa8, 0x6e, 0x3f, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa8, 0x70, 0x40, 0xff, 0xa8, 0x71, 0x41, 0xff, 0xa8, 0x72, 0x42, 0xff, 0xa8, 0x73, 0x42, 0xff, 0xa6, 0x72, 0x41, 0xff, 0xa6, 0x71, 0x41, 0xff, 0xa6, 0x6f, 0x3f, 0xff, 0xa5, 0x6f, 0x3d, 0xff, 0xa5, 0x6f, 0x3c, 0xff, 0xa5, 0x70, 0x3e, 0xff, 0xa6, 0x72, 0x42, 0xff, 0xa4, 0x70, 0x42, 0xff, 0xa6, 0x71, 0x3f, 0xff, 0xa5, 0x70, 0x3e, 0xff, 0xa6, 0x70, 0x3d, 0xff, 0xa8, 0x72, 0x3f, 0xff, 0xa9, 0x74, 0x3f, 0xff, 0xaa, 0x73, 0x3f, 0xff, 0xad, 0x76, 0x42, 0xff, 0xae, 0x78, 0x44, 0xff, 0xb0, 0x7b, 0x47, 0xff, 0xb1, 0x7f, 0x4b, 0xff, 0xb3, 0x81, 0x4f, 0xff, 0xb4, 0x84, 0x53, 0xff, 0xb6, 0x87, 0x56, 0xff, 0xb8, 0x8b, 0x5a, 0xff, 0xba, 0x8f, 0x5f, 0xff, 0xbc, 0x91, 0x62, 0xff, 0xbe, 0x94, 0x64, 0xff, 0xbf, 0x96, 0x67, 0xff, 0xc1, 0x96, 0x67, 0xff, 0xc3, 0x95, 0x68, 0xff, 0xc5, 0x96, 0x69, 0xff, 0xca, 0x99, 0x6c, 0xff, 0xce, 0x99, 0x6d, 0xff, 0xd3, 0x9b, 0x6f, 0xff, 0xd7, 0x9e, 0x6f, 0xff, 0xdb, 0xa1, 0x6e, 0xff, 0xde, 0xa9, 0x6f, 0xff, 0xdf, 0xb1, 0x70, 0xff, 0xdf, 0xba, 0x73, 0xff, 0xdf, 0xc0, 0x75, 0xff, 0xdd, 0xc4, 0x72, 0xff, 0xdc, 0xc4, 0x6d, 0xff, 0xde, 0xb7, 0x68, 0xff, 0xde, 0xa7, 0x61, 0xff, 0xdc, 0x9f, 0x5a, 0xff, 0xdb, 0x9c, 0x59, 0xff, 0xdc, 0x9e, 0x5a, 0xff, 0xde, 0xa2, 0x5f, 0xff, 0xde, 0xa7, 0x64, 0xff, 0xdd, 0xa6, 0x62, 0xff, 0xdf, 0xa0, 0x5c, 0xff, 0xde, 0x9b, 0x59, 0xff, 0xdd, 0x98, 0x58, 0xff, 0xde, 0x98, 0x53, 0xff, 0xde, 0x97, 0x4e, 0xff, 0xdd, 0x96, 0x4f, 0xff, 0xdd, 0x9a, 0x53, 0xff, 0xdd, 0x9c, 0x57, 0xff, 0xde, 0x9f, 0x59, 0xff, 0xdf, 0xa3, 0x5d, 0xff, 0xde, 0xa9, 0x61, 0xff, 0xde, 0xb2, 0x68, 0xff, 0xdc, 0xbe, 0x6d, 0xff, 0xd7, 0xc5, 0x75, 0xff, 0xd6, 0xc4, 0x7d, 0xff, 0xd8, 0xc6, 0x86, 0xff, 0xd9, 0xc6, 0x8c, 0xff, 0xdc, 0xc6, 0x92, 0xff, 0xdd, 0xc6, 0x97, 0xff, 0xdd, 0xc6, 0x99, 0xff, 0xdc, 0xc6, 0x95, 0xff, 0xdc, 0xc6, 0x8f, 0xff, 0xda, 0xc6, 0x89, 0xff, 0xd8, 0xc6, 0x83, 0xff, 0xd8, 0xc7, 0x7d, 0xff, 0xdb, 0xc3, 0x75, 0xff, 0xdd, 0xb3, 0x6f, 0xff, 0xde, 0xa5, 0x6a, 0xff, 0xdf, 0x9e, 0x64, 0xff, 0xda, 0x99, 0x5e, 0xff, 0xd0, 0x91, 0x59, 0xff, 0xc4, 0x88, 0x53, 0xff, 0xbe, 0x85, 0x4f, 0xff, 0xbb, 0x82, 0x4d, 0xff, 0xb9, 0x81, 0x4b, 0xff, 0xc6, 0x88, 0x4e, 0xff, 0xcb, 0x8b, 0x50, 0xff, 0xc3, 0x85, 0x4b, 0xff, 0xcb, 0x93, 0x5a, 0xff, 0xdb, 0xa2, 0x67, 0xff, 0xdd, 0xa0, 0x62, 0xff, 0xdd, 0x9d, 0x60, 0xff, 0xde, 0xa3, 0x64, 0xff, 0xdf, 0xa3, 0x65, 0xff, 0xde, 0xa0, 0x63, 0xff, 0xde, 0xa0, 0x62, 0xff, 0xdf, 0x9f, 0x61, 0xff, 0xdf, 0x9f, 0x62, 0xff, 0xdf, 0xa0, 0x63, 0xff, 0xdf, 0xa0, 0x62, 0xff, 0xde, 0x9d, 0x5f, 0xff, 0xdf, 0x9c, 0x60, 0xff, 0xdf, 0x9e, 0x62, 0xff, 0xdf, 0xa1, 0x65, 0xff, 0xdf, 0xa8, 0x69, 0xff, 0xdf, 0xb2, 0x6e, 0xff, 0xdf, 0xbd, 0x73, 0xff, 0xde, 0xc2, 0x78, 0xff, 0xdc, 0xc4, 0x7b, 0xff, 0xdc, 0xc5, 0x7c, 0xff, 0xde, 0xc3, 0x79, 0xff, 0xde, 0xb8, 0x75, 0xff, 0xdf, 0xb0, 0x70, 0xff, 0xdf, 0xa8, 0x6b, 0xff, 0xde, 0x9f, 0x66, 0xff, 0xdf, 0x99, 0x60, 0xff, 0xd4, 0x91, 0x59, 0xff, 0xc4, 0x88, 0x55, 0xff, 0xbd, 0x82, 0x50, 0xff, 0xb6, 0x7c, 0x4b, 0xff, 0xb2, 0x78, 0x46, 0xff, 0xac, 0x71, 0x41, 0xff, 0xa9, 0x6c, 0x3d, 0xff, 0xa6, 0x68, 0x39, 0xff, 0xa3, 0x65, 0x38, 0xff, 0xa0, 0x63, 0x36, 0xff, 0xa1, 0x64, 0x38, 0xff, 0x9f, 0x63, 0x37, 0xff, 0x9d, 0x62, 0x38, 0xff, 0x9c, 0x62, 0x38, 0xff, 0x9a, 0x61, 0x37, 0xff, 0x9a, 0x60, 0x38, 0xff, 0x99, 0x60, 0x37, 0xff, 0x99, 0x60, 0x36, 0xff, 0x98, 0x5e, 0x35, 0xff, 0x97, 0x5d, 0x35, 0xff, 0x96, 0x5b, 0x34, 0xff, 0x95, 0x5a, 0x33, 0xff, 0x94, 0x58, 0x32, 0xff, 0x91, 0x56, 0x31, 0xff, 0x91, 0x54, 0x30, 0xff, 0x8f, 0x54, 0x2e, 0xff, 0x8e, 0x52, 0x2e, 0xff, 0x8b, 0x50, 0x2c, 0xff, 0x8a, 0x4f, 0x29, 0xff, 0x89, 0x4f, 0x29, 0xff, 0x89, 0x4f, 0x2a, 0xff, 0x88, 0x4e, 0x2a, 0xff, 0x88, 0x4d, 0x29, 0xff, 0x87, 0x4d, 0x29, 0xff, 0x86, 0x4e, 0x29, 0xff, 0x87, 0x4e, 0x27, 0xff, 0x84, 0x4b, 0x25, 0xff, 0x84, 0x4c, 0x25, 0xff, 0x83, 0x4b, 0x24, 0xff, 0x83, 0x4c, 0x25, 0xff, 0x82, 0x4a, 0x23, 0xff, 0x83, 0x4a, 0x24, 0xff, 0x7f, 0x47, 0x22, 0xff, 0x7f, 0x4a, 0x23, 0xff, 0x7f, 0x49, 0x23, 0xff, 0x7e, 0x4a, 0x22, 0xff, 0x80, 0x49, 0x23, 0xff, 0x7f, 0x4a, 0x23, 0xff, 0x7f, 0x4a, 0x23, 0xff, 0x81, 0x49, 0x23, 0xff, 0x81, 0x49, 0x23, 0xff, 0x81, 0x4a, 0x23, 0xff, 0x83, 0x4b, 0x25, 0xff, 0x83, 0x4b, 0x24, 0xff, 0x83, 0x4c, 0x25, 0xff, 0x84, 0x4b, 0x25, 0xff, 0x86, 0x4c, 0x26, 0xff, 0x86, 0x4c, 0x27, 0xff, + 0x87, 0x4d, 0x27, 0xff, 0x87, 0x4d, 0x29, 0xff, 0x88, 0x4e, 0x29, 0xff, 0x88, 0x4d, 0x29, 0xff, 0x88, 0x4e, 0x29, 0xff, 0x8b, 0x50, 0x2b, 0xff, 0x8b, 0x52, 0x2c, 0xff, 0x8c, 0x50, 0x2c, 0xff, 0x8d, 0x52, 0x2e, 0xff, 0x8e, 0x53, 0x2e, 0xff, 0x8f, 0x53, 0x31, 0xff, 0x93, 0x57, 0x32, 0xff, 0x94, 0x58, 0x33, 0xff, 0x96, 0x5a, 0x34, 0xff, 0x98, 0x5d, 0x35, 0xff, 0x98, 0x5c, 0x35, 0xff, 0x98, 0x5b, 0x33, 0xff, 0x98, 0x5c, 0x34, 0xff, 0x9b, 0x5e, 0x35, 0xff, 0x9c, 0x60, 0x35, 0xff, 0x9e, 0x61, 0x37, 0xff, 0x9f, 0x63, 0x38, 0xff, 0xa0, 0x64, 0x39, 0xff, 0xa2, 0x67, 0x3a, 0xff, 0xa4, 0x68, 0x3a, 0xff, 0xa5, 0x68, 0x3b, 0xff, 0xaf, 0x72, 0x43, 0xff, 0xc0, 0x87, 0x52, 0xff, 0xbe, 0x83, 0x4f, 0xff, 0xc5, 0x88, 0x52, 0xff, 0xc7, 0x88, 0x52, 0xff, 0xcc, 0x8b, 0x54, 0xff, 0xd4, 0x90, 0x57, 0xff, 0xdf, 0x97, 0x5b, 0xff, 0xde, 0x99, 0x5a, 0xff, 0xd4, 0x98, 0x5d, 0xff, 0xbc, 0x85, 0x4f, 0xff, 0xc3, 0x8a, 0x54, 0xff, 0xb3, 0x78, 0x47, 0xff, 0xa9, 0x6e, 0x40, 0xff, 0xaa, 0x6e, 0x40, 0xff, 0xa8, 0x6f, 0x40, 0xff, 0xa8, 0x6c, 0x3e, 0xff, 0xa9, 0x6d, 0x3f, 0xff, 0xa9, 0x6c, 0x3e, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xa9, 0x6f, 0x3f, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xab, 0x70, 0x40, 0xff, 0xac, 0x72, 0x42, 0xff, 0xad, 0x73, 0x42, 0xff, 0xaa, 0x72, 0x41, 0xff, 0xa9, 0x6f, 0x3f, 0xff, 0xa9, 0x71, 0x3f, 0xff, 0xa9, 0x71, 0x41, 0xff, 0xa9, 0x72, 0x42, 0xff, 0xa9, 0x73, 0x41, 0xff, 0xa9, 0x73, 0x42, 0xff, 0xa8, 0x71, 0x40, 0xff, 0xa7, 0x70, 0x3f, 0xff, 0xa7, 0x70, 0x3e, 0xff, 0xa6, 0x6e, 0x3c, 0xff, 0xa5, 0x6e, 0x3b, 0xff, 0xa5, 0x6e, 0x3d, 0xff, 0xa5, 0x70, 0x40, 0xff, 0xa5, 0x71, 0x3f, 0xff, 0xa5, 0x70, 0x3f, 0xff, 0xa4, 0x6f, 0x3e, 0xff, 0xa7, 0x71, 0x3f, 0xff, 0xa8, 0x72, 0x40, 0xff, 0xaa, 0x74, 0x42, 0xff, 0xab, 0x75, 0x43, 0xff, 0xac, 0x76, 0x43, 0xff, 0xae, 0x7a, 0x46, 0xff, 0xb0, 0x7e, 0x49, 0xff, 0xb1, 0x7f, 0x4c, 0xff, 0xb3, 0x82, 0x51, 0xff, 0xb5, 0x84, 0x54, 0xff, 0xb7, 0x88, 0x57, 0xff, 0xb8, 0x8d, 0x5a, 0xff, 0xba, 0x8f, 0x5e, 0xff, 0xbc, 0x91, 0x60, 0xff, 0xbe, 0x95, 0x61, 0xff, 0xc0, 0x95, 0x64, 0xff, 0xc2, 0x96, 0x66, 0xff, 0xc4, 0x95, 0x67, 0xff, 0xc7, 0x97, 0x69, 0xff, 0xcb, 0x98, 0x69, 0xff, 0xcf, 0x9a, 0x67, 0xff, 0xd2, 0x9c, 0x68, 0xff, 0xd8, 0xa0, 0x6a, 0xff, 0xdd, 0xa3, 0x6b, 0xff, 0xde, 0xab, 0x6d, 0xff, 0xdd, 0xb4, 0x72, 0xff, 0xde, 0xb8, 0x74, 0xff, 0xe0, 0xbc, 0x74, 0xff, 0xdf, 0xbd, 0x6f, 0xff, 0xdd, 0xb9, 0x69, 0xff, 0xdd, 0xab, 0x62, 0xff, 0xdd, 0x9f, 0x5c, 0xff, 0xde, 0x9c, 0x58, 0xff, 0xdd, 0x9b, 0x57, 0xff, 0xdc, 0x9f, 0x5c, 0xff, 0xdf, 0xa6, 0x61, 0xff, 0xdf, 0xa5, 0x5f, 0xff, 0xde, 0xa0, 0x5d, 0xff, 0xdf, 0x9b, 0x59, 0xff, 0xdf, 0x99, 0x58, 0xff, 0xdd, 0x98, 0x54, 0xff, 0xde, 0x9a, 0x4f, 0xff, 0xdf, 0x9b, 0x51, 0xff, 0xdd, 0x9b, 0x54, 0xff, 0xde, 0x9e, 0x56, 0xff, 0xdd, 0x9f, 0x58, 0xff, 0xde, 0xa0, 0x5c, 0xff, 0xdd, 0xa3, 0x5e, 0xff, 0xde, 0xb0, 0x65, 0xff, 0xde, 0xbd, 0x6d, 0xff, 0xd8, 0xc3, 0x74, 0xff, 0xd6, 0xc6, 0x7e, 0xff, 0xd8, 0xc5, 0x84, 0xff, 0xda, 0xc6, 0x8c, 0xff, 0xdd, 0xc7, 0x95, 0xff, 0xdf, 0xc7, 0xa1, 0xff, 0xde, 0xc6, 0xa5, 0xff, 0xde, 0xc7, 0xa3, 0xff, 0xdd, 0xc6, 0x9b, 0xff, 0xdc, 0xc7, 0x92, 0xff, 0xda, 0xc6, 0x8b, 0xff, 0xd7, 0xc6, 0x84, 0xff, 0xd7, 0xc7, 0x7d, 0xff, 0xdd, 0xc5, 0x76, 0xff, 0xdf, 0xb5, 0x6e, 0xff, 0xde, 0xa5, 0x67, 0xff, 0xde, 0x9d, 0x61, 0xff, 0xda, 0x98, 0x5c, 0xff, 0xd2, 0x92, 0x57, 0xff, 0xca, 0x8e, 0x53, 0xff, 0xc2, 0x88, 0x4f, 0xff, 0xbb, 0x83, 0x4c, 0xff, 0xc3, 0x87, 0x4e, 0xff, 0xcf, 0x8d, 0x51, 0xff, 0xcb, 0x8b, 0x52, 0xff, 0xc1, 0x83, 0x4d, 0xff, 0xc5, 0x8b, 0x53, 0xff, 0xd4, 0x99, 0x5f, 0xff, 0xdc, 0xa4, 0x66, 0xff, 0xdd, 0xa1, 0x63, 0xff, 0xde, 0x9d, 0x61, 0xff, 0xdf, 0x9f, 0x62, 0xff, 0xde, 0xa1, 0x65, 0xff, 0xdf, 0xa0, 0x64, 0xff, 0xdf, 0x9f, 0x62, 0xff, 0xdf, 0x9e, 0x62, 0xff, 0xdf, 0x9d, 0x61, 0xff, 0xdf, 0x9e, 0x62, 0xff, 0xdf, 0x9e, 0x61, 0xff, 0xdf, 0xa0, 0x62, 0xff, 0xdf, 0xa3, 0x66, 0xff, 0xdf, 0xac, 0x6a, 0xff, 0xdf, 0xbb, 0x71, 0xff, 0xdb, 0xc5, 0x7a, 0xff, 0xd7, 0xc7, 0x81, 0xff, 0xd8, 0xc7, 0x83, 0xff, 0xd9, 0xc6, 0x85, 0xff, 0xd7, 0xc7, 0x83, 0xff, 0xd8, 0xc7, 0x81, 0xff, 0xdc, 0xc3, 0x7d, 0xff, 0xde, 0xba, 0x76, 0xff, 0xde, 0xac, 0x6f, 0xff, 0xde, 0xa1, 0x68, 0xff, 0xde, 0x9b, 0x63, 0xff, 0xd4, 0x92, 0x5c, 0xff, 0xc8, 0x8a, 0x55, 0xff, 0xc1, 0x86, 0x52, 0xff, 0xb7, 0x7c, 0x4b, 0xff, 0xb0, 0x75, 0x44, 0xff, 0xad, 0x70, 0x40, 0xff, 0xa8, 0x6c, 0x3d, 0xff, 0xa5, 0x69, 0x3a, 0xff, 0xa5, 0x69, 0x38, 0xff, 0xa3, 0x66, 0x38, 0xff, 0xa1, 0x63, 0x38, 0xff, 0x9f, 0x64, 0x37, 0xff, 0x9e, 0x62, 0x38, 0xff, 0x9b, 0x63, 0x37, 0xff, 0x9a, 0x61, 0x37, 0xff, 0x9a, 0x61, 0x37, 0xff, 0x9a, 0x61, 0x36, 0xff, 0x9a, 0x60, 0x36, 0xff, 0x98, 0x5e, 0x35, 0xff, 0x98, 0x5d, 0x35, 0xff, 0x96, 0x5a, 0x33, 0xff, 0x95, 0x59, 0x33, 0xff, 0x92, 0x57, 0x32, 0xff, 0x91, 0x56, 0x31, 0xff, 0x91, 0x54, 0x30, 0xff, 0x8e, 0x52, 0x2d, 0xff, 0x8c, 0x51, 0x2b, 0xff, 0x8b, 0x50, 0x2a, 0xff, 0x8b, 0x50, 0x2a, 0xff, 0x8a, 0x50, 0x2b, 0xff, 0x88, 0x4f, 0x2b, 0xff, 0x87, 0x4e, 0x2b, 0xff, 0x88, 0x4e, 0x29, 0xff, 0x87, 0x4e, 0x28, 0xff, 0x87, 0x4e, 0x28, 0xff, 0x85, 0x4c, 0x27, 0xff, 0x85, 0x4b, 0x25, 0xff, 0x84, 0x4b, 0x24, 0xff, 0x84, 0x4b, 0x25, 0xff, 0x83, 0x4b, 0x25, 0xff, 0x81, 0x49, 0x23, 0xff, 0x7f, 0x49, 0x23, 0xff, 0x7f, 0x4a, 0x23, 0xff, 0x7f, 0x4a, 0x23, 0xff, 0x7f, 0x4a, 0x22, 0xff, 0x7f, 0x4a, 0x23, 0xff, 0x7f, 0x48, 0x23, 0xff, 0x80, 0x49, 0x23, 0xff, 0x80, 0x4a, 0x23, 0xff, 0x82, 0x4b, 0x23, 0xff, 0x81, 0x4a, 0x24, 0xff, 0x83, 0x4b, 0x25, 0xff, 0x83, 0x4b, 0x25, 0xff, 0x84, 0x4b, 0x25, 0xff, 0x86, 0x4b, 0x26, 0xff, 0x85, 0x4c, 0x26, 0xff, 0x86, 0x4d, 0x27, 0xff, + 0x87, 0x4c, 0x27, 0xff, 0x87, 0x4d, 0x28, 0xff, 0x88, 0x4d, 0x29, 0xff, 0x88, 0x4d, 0x29, 0xff, 0x89, 0x4f, 0x2b, 0xff, 0x8a, 0x51, 0x2a, 0xff, 0x8a, 0x51, 0x2b, 0xff, 0x8a, 0x51, 0x2c, 0xff, 0x8d, 0x52, 0x2f, 0xff, 0x91, 0x55, 0x31, 0xff, 0x92, 0x56, 0x32, 0xff, 0x93, 0x57, 0x32, 0xff, 0x95, 0x59, 0x34, 0xff, 0x97, 0x5b, 0x34, 0xff, 0x98, 0x5c, 0x36, 0xff, 0x96, 0x59, 0x32, 0xff, 0x98, 0x5b, 0x34, 0xff, 0x9a, 0x5c, 0x34, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0x9c, 0x60, 0x35, 0xff, 0x9d, 0x60, 0x37, 0xff, 0x9f, 0x62, 0x38, 0xff, 0xa0, 0x64, 0x39, 0xff, 0xa1, 0x66, 0x3a, 0xff, 0xa3, 0x67, 0x3a, 0xff, 0xa6, 0x6a, 0x3c, 0xff, 0xbf, 0x87, 0x54, 0xff, 0xc0, 0x87, 0x52, 0xff, 0xc3, 0x88, 0x53, 0xff, 0xc7, 0x8a, 0x54, 0xff, 0xc7, 0x8a, 0x53, 0xff, 0xca, 0x8a, 0x53, 0xff, 0xd0, 0x8c, 0x55, 0xff, 0xd7, 0x90, 0x57, 0xff, 0xde, 0x95, 0x5b, 0xff, 0xde, 0x99, 0x5d, 0xff, 0xc9, 0x90, 0x58, 0xff, 0xbe, 0x88, 0x54, 0xff, 0xb3, 0x7a, 0x49, 0xff, 0xab, 0x70, 0x42, 0xff, 0xab, 0x70, 0x42, 0xff, 0xab, 0x70, 0x41, 0xff, 0xab, 0x70, 0x41, 0xff, 0xaa, 0x6f, 0x3f, 0xff, 0xab, 0x6f, 0x3f, 0xff, 0xab, 0x6f, 0x3f, 0xff, 0xaa, 0x6f, 0x3f, 0xff, 0xaa, 0x6e, 0x3e, 0xff, 0xaa, 0x6f, 0x3f, 0xff, 0xab, 0x6f, 0x3f, 0xff, 0xaa, 0x6f, 0x3f, 0xff, 0xab, 0x70, 0x40, 0xff, 0xab, 0x72, 0x40, 0xff, 0xad, 0x75, 0x42, 0xff, 0xad, 0x74, 0x43, 0xff, 0xad, 0x75, 0x44, 0xff, 0xad, 0x76, 0x44, 0xff, 0xab, 0x74, 0x42, 0xff, 0xab, 0x73, 0x41, 0xff, 0xab, 0x72, 0x3f, 0xff, 0xab, 0x73, 0x40, 0xff, 0xab, 0x73, 0x3f, 0xff, 0xab, 0x73, 0x40, 0xff, 0xa9, 0x72, 0x3f, 0xff, 0xa9, 0x72, 0x3f, 0xff, 0xa8, 0x71, 0x3e, 0xff, 0xa7, 0x70, 0x3d, 0xff, 0xa6, 0x6f, 0x3c, 0xff, 0xa6, 0x6e, 0x3c, 0xff, 0xa6, 0x6f, 0x3e, 0xff, 0xa5, 0x70, 0x3f, 0xff, 0xa5, 0x70, 0x3e, 0xff, 0xa4, 0x71, 0x3e, 0xff, 0xa6, 0x72, 0x40, 0xff, 0xa7, 0x73, 0x41, 0xff, 0xa9, 0x73, 0x42, 0xff, 0xaa, 0x74, 0x43, 0xff, 0xac, 0x76, 0x44, 0xff, 0xad, 0x78, 0x45, 0xff, 0xaf, 0x7a, 0x47, 0xff, 0xb1, 0x7e, 0x49, 0xff, 0xb2, 0x81, 0x4c, 0xff, 0xb3, 0x82, 0x4f, 0xff, 0xb5, 0x85, 0x51, 0xff, 0xb7, 0x89, 0x54, 0xff, 0xb9, 0x8c, 0x56, 0xff, 0xba, 0x90, 0x5a, 0xff, 0xbc, 0x93, 0x5b, 0xff, 0xbe, 0x94, 0x5c, 0xff, 0xc0, 0x94, 0x5d, 0xff, 0xc2, 0x95, 0x5d, 0xff, 0xc5, 0x96, 0x5e, 0xff, 0xc8, 0x98, 0x61, 0xff, 0xca, 0x9a, 0x62, 0xff, 0xce, 0x9b, 0x62, 0xff, 0xd3, 0x9d, 0x64, 0xff, 0xd7, 0xa2, 0x65, 0xff, 0xdb, 0xa6, 0x68, 0xff, 0xdf, 0xad, 0x6e, 0xff, 0xdf, 0xb1, 0x71, 0xff, 0xde, 0xb3, 0x71, 0xff, 0xde, 0xb6, 0x6f, 0xff, 0xdd, 0xb6, 0x6b, 0xff, 0xde, 0xad, 0x64, 0xff, 0xdd, 0xa2, 0x5e, 0xff, 0xdd, 0x9d, 0x59, 0xff, 0xde, 0x9c, 0x57, 0xff, 0xdd, 0x9d, 0x58, 0xff, 0xdd, 0xa2, 0x5c, 0xff, 0xdd, 0xa3, 0x60, 0xff, 0xdd, 0xa1, 0x5e, 0xff, 0xdf, 0x9e, 0x5c, 0xff, 0xdf, 0x9b, 0x5a, 0xff, 0xde, 0x9b, 0x55, 0xff, 0xde, 0x9c, 0x52, 0xff, 0xde, 0x9c, 0x54, 0xff, 0xde, 0x9c, 0x57, 0xff, 0xdd, 0x9b, 0x57, 0xff, 0xdd, 0x9b, 0x57, 0xff, 0xde, 0x9f, 0x5a, 0xff, 0xde, 0xa3, 0x5d, 0xff, 0xdc, 0xaa, 0x62, 0xff, 0xde, 0xb6, 0x6a, 0xff, 0xdd, 0xc3, 0x71, 0xff, 0xd8, 0xc7, 0x7a, 0xff, 0xd9, 0xc7, 0x84, 0xff, 0xdc, 0xc7, 0x8e, 0xff, 0xdd, 0xc6, 0x94, 0xff, 0xdc, 0xc3, 0x9a, 0xff, 0xdd, 0xc0, 0x9d, 0xff, 0xdd, 0xbe, 0x9f, 0xff, 0xdc, 0xbd, 0x9b, 0xff, 0xdd, 0xbe, 0x96, 0xff, 0xdd, 0xc0, 0x8f, 0xff, 0xdc, 0xc2, 0x89, 0xff, 0xdb, 0xc5, 0x83, 0xff, 0xdc, 0xc5, 0x7c, 0xff, 0xdd, 0xbf, 0x75, 0xff, 0xde, 0xb3, 0x6e, 0xff, 0xde, 0xa9, 0x68, 0xff, 0xde, 0xa1, 0x62, 0xff, 0xdc, 0x98, 0x5b, 0xff, 0xd0, 0x90, 0x54, 0xff, 0xc7, 0x8b, 0x50, 0xff, 0xbf, 0x86, 0x4d, 0xff, 0xc1, 0x85, 0x4d, 0xff, 0xd1, 0x8c, 0x53, 0xff, 0xd3, 0x8f, 0x56, 0xff, 0xca, 0x8a, 0x52, 0xff, 0xc4, 0x85, 0x4e, 0xff, 0xc7, 0x8e, 0x53, 0xff, 0xcd, 0x97, 0x5b, 0xff, 0xd8, 0x9e, 0x61, 0xff, 0xdf, 0xa1, 0x64, 0xff, 0xe0, 0xa0, 0x65, 0xff, 0xde, 0xa3, 0x67, 0xff, 0xdf, 0xa3, 0x66, 0xff, 0xdf, 0x9f, 0x64, 0xff, 0xdf, 0x9c, 0x63, 0xff, 0xdf, 0x9d, 0x62, 0xff, 0xdf, 0x9e, 0x63, 0xff, 0xdf, 0x9f, 0x64, 0xff, 0xdf, 0xa0, 0x65, 0xff, 0xdf, 0xa5, 0x67, 0xff, 0xdf, 0xad, 0x6a, 0xff, 0xdf, 0xbf, 0x71, 0xff, 0xd9, 0xc6, 0x7c, 0xff, 0xda, 0xc7, 0x88, 0xff, 0xdd, 0xc7, 0x90, 0xff, 0xdd, 0xc6, 0x93, 0xff, 0xdc, 0xc7, 0x93, 0xff, 0xdb, 0xc7, 0x8d, 0xff, 0xda, 0xc7, 0x89, 0xff, 0xda, 0xc8, 0x82, 0xff, 0xdd, 0xc1, 0x7a, 0xff, 0xdf, 0xb1, 0x72, 0xff, 0xde, 0xa2, 0x6c, 0xff, 0xdf, 0x9c, 0x64, 0xff, 0xd5, 0x93, 0x5d, 0xff, 0xc5, 0x89, 0x55, 0xff, 0xbc, 0x81, 0x4f, 0xff, 0xb8, 0x7b, 0x4a, 0xff, 0xb3, 0x77, 0x46, 0xff, 0xb0, 0x74, 0x41, 0xff, 0xac, 0x6e, 0x3d, 0xff, 0xa8, 0x6a, 0x3a, 0xff, 0xa4, 0x66, 0x37, 0xff, 0xa3, 0x65, 0x38, 0xff, 0xa1, 0x65, 0x37, 0xff, 0x9f, 0x63, 0x37, 0xff, 0x9d, 0x63, 0x37, 0xff, 0x9c, 0x62, 0x36, 0xff, 0x9b, 0x60, 0x36, 0xff, 0x9a, 0x60, 0x36, 0xff, 0x9b, 0x60, 0x36, 0xff, 0x9a, 0x5f, 0x35, 0xff, 0x99, 0x5d, 0x34, 0xff, 0x98, 0x5b, 0x34, 0xff, 0x95, 0x59, 0x32, 0xff, 0x95, 0x58, 0x32, 0xff, 0x93, 0x57, 0x32, 0xff, 0x91, 0x54, 0x30, 0xff, 0x8f, 0x53, 0x2e, 0xff, 0x8d, 0x52, 0x2c, 0xff, 0x8c, 0x51, 0x2b, 0xff, 0x8c, 0x52, 0x2e, 0xff, 0x8a, 0x50, 0x2c, 0xff, 0x8a, 0x4f, 0x2b, 0xff, 0x89, 0x4f, 0x2a, 0xff, 0x88, 0x4e, 0x29, 0xff, 0x88, 0x4e, 0x29, 0xff, 0x87, 0x4e, 0x28, 0xff, 0x87, 0x4e, 0x29, 0xff, 0x87, 0x4d, 0x27, 0xff, 0x85, 0x4c, 0x25, 0xff, 0x83, 0x4b, 0x24, 0xff, 0x80, 0x49, 0x23, 0xff, 0x81, 0x49, 0x23, 0xff, 0x80, 0x48, 0x23, 0xff, 0x81, 0x49, 0x23, 0xff, 0x7f, 0x4a, 0x23, 0xff, 0x7f, 0x49, 0x23, 0xff, 0x7f, 0x49, 0x23, 0xff, 0x80, 0x48, 0x22, 0xff, 0x7f, 0x49, 0x23, 0xff, 0x81, 0x4a, 0x23, 0xff, 0x82, 0x4a, 0x23, 0xff, 0x83, 0x4a, 0x25, 0xff, 0x85, 0x4c, 0x25, 0xff, 0x84, 0x4b, 0x25, 0xff, 0x84, 0x4b, 0x26, 0xff, 0x86, 0x4d, 0x27, 0xff, 0x87, 0x4d, 0x27, 0xff, 0x87, 0x4e, 0x27, 0xff, + 0x87, 0x4e, 0x27, 0xff, 0x87, 0x4d, 0x28, 0xff, 0x88, 0x4d, 0x29, 0xff, 0x88, 0x4e, 0x29, 0xff, 0x89, 0x4e, 0x2b, 0xff, 0x88, 0x4e, 0x2a, 0xff, 0x8a, 0x50, 0x2b, 0xff, 0x8b, 0x51, 0x2c, 0xff, 0x8e, 0x52, 0x2f, 0xff, 0x92, 0x55, 0x31, 0xff, 0x93, 0x57, 0x32, 0xff, 0x93, 0x59, 0x34, 0xff, 0x95, 0x59, 0x34, 0xff, 0x98, 0x5c, 0x36, 0xff, 0x94, 0x57, 0x33, 0xff, 0x96, 0x5a, 0x32, 0xff, 0x98, 0x5b, 0x34, 0xff, 0x9a, 0x5d, 0x34, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0x9c, 0x60, 0x36, 0xff, 0x9e, 0x62, 0x38, 0xff, 0xa0, 0x63, 0x38, 0xff, 0x9f, 0x64, 0x39, 0xff, 0xa1, 0x65, 0x3a, 0xff, 0xa0, 0x64, 0x37, 0xff, 0xbc, 0x8a, 0x57, 0xff, 0xc1, 0x8f, 0x5a, 0xff, 0xc2, 0x8c, 0x57, 0xff, 0xcb, 0x8e, 0x58, 0xff, 0xcb, 0x8e, 0x55, 0xff, 0xc7, 0x8c, 0x54, 0xff, 0xc8, 0x8a, 0x53, 0xff, 0xcd, 0x8b, 0x56, 0xff, 0xd3, 0x8e, 0x56, 0xff, 0xdc, 0x91, 0x58, 0xff, 0xde, 0x97, 0x5b, 0xff, 0xd9, 0x96, 0x5c, 0xff, 0xba, 0x86, 0x51, 0xff, 0xb4, 0x79, 0x48, 0xff, 0xad, 0x74, 0x46, 0xff, 0xac, 0x72, 0x43, 0xff, 0xac, 0x71, 0x42, 0xff, 0xac, 0x71, 0x42, 0xff, 0xac, 0x71, 0x42, 0xff, 0xab, 0x70, 0x41, 0xff, 0xab, 0x70, 0x42, 0xff, 0xac, 0x70, 0x41, 0xff, 0xac, 0x70, 0x40, 0xff, 0xac, 0x70, 0x3f, 0xff, 0xad, 0x71, 0x3f, 0xff, 0xac, 0x70, 0x41, 0xff, 0xab, 0x72, 0x41, 0xff, 0xae, 0x76, 0x44, 0xff, 0xb0, 0x78, 0x46, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xae, 0x76, 0x44, 0xff, 0xaf, 0x76, 0x44, 0xff, 0xae, 0x76, 0x44, 0xff, 0xad, 0x76, 0x43, 0xff, 0xac, 0x74, 0x42, 0xff, 0xac, 0x73, 0x41, 0xff, 0xac, 0x74, 0x41, 0xff, 0xac, 0x72, 0x41, 0xff, 0xac, 0x73, 0x41, 0xff, 0xab, 0x73, 0x3f, 0xff, 0xab, 0x71, 0x3e, 0xff, 0xa9, 0x71, 0x3e, 0xff, 0xa9, 0x71, 0x3f, 0xff, 0xa8, 0x6f, 0x3d, 0xff, 0xa7, 0x6f, 0x3d, 0xff, 0xa6, 0x6f, 0x3f, 0xff, 0xa5, 0x70, 0x40, 0xff, 0xa5, 0x6f, 0x3f, 0xff, 0xa5, 0x70, 0x40, 0xff, 0xa6, 0x72, 0x41, 0xff, 0xa7, 0x74, 0x42, 0xff, 0xa8, 0x74, 0x43, 0xff, 0xaa, 0x77, 0x44, 0xff, 0xac, 0x77, 0x44, 0xff, 0xae, 0x79, 0x45, 0xff, 0xb0, 0x7c, 0x45, 0xff, 0xb1, 0x7c, 0x46, 0xff, 0xb2, 0x7f, 0x49, 0xff, 0xb4, 0x83, 0x4b, 0xff, 0xb6, 0x86, 0x4f, 0xff, 0xb7, 0x89, 0x50, 0xff, 0xb9, 0x8c, 0x52, 0xff, 0xbb, 0x91, 0x53, 0xff, 0xbd, 0x92, 0x54, 0xff, 0xbe, 0x94, 0x55, 0xff, 0xc0, 0x94, 0x55, 0xff, 0xc2, 0x94, 0x57, 0xff, 0xc4, 0x96, 0x5a, 0xff, 0xc8, 0x9a, 0x5d, 0xff, 0xcc, 0x9b, 0x5d, 0xff, 0xd0, 0x9d, 0x5f, 0xff, 0xd1, 0x9d, 0x60, 0xff, 0xd0, 0x9c, 0x61, 0xff, 0xd2, 0xa0, 0x63, 0xff, 0xd8, 0xa3, 0x65, 0xff, 0xdd, 0xa6, 0x66, 0xff, 0xdf, 0xa8, 0x64, 0xff, 0xdf, 0xa6, 0x63, 0xff, 0xdc, 0xa5, 0x61, 0xff, 0xdc, 0xa1, 0x5e, 0xff, 0xde, 0x9e, 0x5a, 0xff, 0xdd, 0x9d, 0x58, 0xff, 0xdd, 0x9a, 0x56, 0xff, 0xde, 0x9b, 0x58, 0xff, 0xdd, 0x9f, 0x5f, 0xff, 0xde, 0xa0, 0x60, 0xff, 0xdf, 0x9e, 0x5d, 0xff, 0xde, 0x9a, 0x5a, 0xff, 0xdd, 0x9a, 0x56, 0xff, 0xdd, 0x9d, 0x55, 0xff, 0xde, 0x9f, 0x58, 0xff, 0xde, 0x9d, 0x59, 0xff, 0xdd, 0x9d, 0x57, 0xff, 0xde, 0x9f, 0x58, 0xff, 0xdd, 0x9e, 0x5a, 0xff, 0xdf, 0xa2, 0x5c, 0xff, 0xe0, 0xa4, 0x60, 0xff, 0xe0, 0xb0, 0x67, 0xff, 0xdc, 0xb8, 0x6d, 0xff, 0xd1, 0xac, 0x6c, 0xff, 0xc6, 0x9d, 0x64, 0xff, 0xc3, 0x96, 0x60, 0xff, 0xc6, 0x97, 0x66, 0xff, 0xcb, 0x99, 0x6c, 0xff, 0xcf, 0x99, 0x6e, 0xff, 0xd2, 0x9a, 0x6f, 0xff, 0xd4, 0x9a, 0x70, 0xff, 0xd6, 0x9b, 0x6f, 0xff, 0xd7, 0x9e, 0x6e, 0xff, 0xda, 0xa2, 0x6e, 0xff, 0xde, 0xa7, 0x70, 0xff, 0xdf, 0xb0, 0x72, 0xff, 0xdf, 0xaf, 0x6f, 0xff, 0xde, 0xa7, 0x69, 0xff, 0xdd, 0xa1, 0x67, 0xff, 0xdd, 0xa0, 0x66, 0xff, 0xde, 0x9e, 0x63, 0xff, 0xdb, 0x99, 0x5d, 0xff, 0xcb, 0x8d, 0x52, 0xff, 0xc1, 0x86, 0x4a, 0xff, 0xba, 0x82, 0x47, 0xff, 0xcd, 0x8a, 0x4f, 0xff, 0xd8, 0x91, 0x56, 0xff, 0xd0, 0x8e, 0x54, 0xff, 0xd2, 0x94, 0x57, 0xff, 0xd1, 0x95, 0x59, 0xff, 0xcd, 0x93, 0x56, 0xff, 0xc9, 0x90, 0x54, 0xff, 0xca, 0x95, 0x59, 0xff, 0xda, 0xa1, 0x65, 0xff, 0xe1, 0xa5, 0x69, 0xff, 0xdf, 0xa2, 0x67, 0xff, 0xdf, 0xa0, 0x65, 0xff, 0xdf, 0x9e, 0x64, 0xff, 0xdf, 0x9c, 0x64, 0xff, 0xdf, 0x9d, 0x64, 0xff, 0xdf, 0x9e, 0x67, 0xff, 0xde, 0xa0, 0x68, 0xff, 0xdf, 0xa5, 0x68, 0xff, 0xe0, 0xae, 0x6c, 0xff, 0xe0, 0xbf, 0x72, 0xff, 0xd8, 0xc6, 0x7c, 0xff, 0xda, 0xc7, 0x88, 0xff, 0xde, 0xc7, 0x97, 0xff, 0xe0, 0xc7, 0xa9, 0xff, 0xdf, 0xc7, 0xad, 0xff, 0xe0, 0xc7, 0xa9, 0xff, 0xde, 0xc7, 0x9a, 0xff, 0xdc, 0xc6, 0x8e, 0xff, 0xd9, 0xc7, 0x87, 0xff, 0xdd, 0xc4, 0x7f, 0xff, 0xe0, 0xb3, 0x74, 0xff, 0xe0, 0xa6, 0x6c, 0xff, 0xde, 0x99, 0x62, 0xff, 0xd0, 0x90, 0x5b, 0xff, 0xc5, 0x89, 0x55, 0xff, 0xbc, 0x82, 0x4e, 0xff, 0xb8, 0x7b, 0x49, 0xff, 0xb5, 0x77, 0x44, 0xff, 0xb1, 0x74, 0x40, 0xff, 0xae, 0x71, 0x3e, 0xff, 0xa6, 0x69, 0x39, 0xff, 0xa3, 0x65, 0x36, 0xff, 0xa2, 0x64, 0x36, 0xff, 0xa1, 0x64, 0x36, 0xff, 0xa0, 0x63, 0x36, 0xff, 0x9d, 0x62, 0x36, 0xff, 0x9c, 0x60, 0x35, 0xff, 0x9b, 0x60, 0x36, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x9a, 0x5d, 0x35, 0xff, 0x99, 0x5d, 0x35, 0xff, 0x97, 0x5c, 0x33, 0xff, 0x96, 0x59, 0x33, 0xff, 0x94, 0x59, 0x32, 0xff, 0x91, 0x57, 0x31, 0xff, 0x91, 0x54, 0x30, 0xff, 0x8f, 0x54, 0x2d, 0xff, 0x8e, 0x53, 0x2d, 0xff, 0x8d, 0x53, 0x2f, 0xff, 0x8b, 0x52, 0x2e, 0xff, 0x8b, 0x51, 0x2c, 0xff, 0x8b, 0x52, 0x2b, 0xff, 0x8a, 0x50, 0x2b, 0xff, 0x8a, 0x4f, 0x29, 0xff, 0x8a, 0x4e, 0x29, 0xff, 0x89, 0x4e, 0x29, 0xff, 0x88, 0x4e, 0x29, 0xff, 0x87, 0x4e, 0x27, 0xff, 0x85, 0x4c, 0x26, 0xff, 0x82, 0x4b, 0x25, 0xff, 0x81, 0x49, 0x23, 0xff, 0x81, 0x49, 0x23, 0xff, 0x81, 0x49, 0x23, 0xff, 0x81, 0x49, 0x23, 0xff, 0x80, 0x49, 0x23, 0xff, 0x80, 0x4a, 0x22, 0xff, 0x81, 0x49, 0x23, 0xff, 0x80, 0x48, 0x23, 0xff, 0x81, 0x4a, 0x23, 0xff, 0x81, 0x4a, 0x24, 0xff, 0x82, 0x4b, 0x25, 0xff, 0x82, 0x4a, 0x25, 0xff, 0x84, 0x4a, 0x25, 0xff, 0x84, 0x4b, 0x25, 0xff, 0x85, 0x4d, 0x25, 0xff, 0x85, 0x4d, 0x27, 0xff, 0x87, 0x4c, 0x28, 0xff, 0x87, 0x4c, 0x27, 0xff, + 0x88, 0x4e, 0x29, 0xff, 0x88, 0x4d, 0x29, 0xff, 0x88, 0x4e, 0x29, 0xff, 0x88, 0x4e, 0x29, 0xff, 0x87, 0x4d, 0x29, 0xff, 0x89, 0x4f, 0x2a, 0xff, 0x8a, 0x50, 0x2b, 0xff, 0x8c, 0x51, 0x2c, 0xff, 0x8f, 0x53, 0x30, 0xff, 0x93, 0x57, 0x32, 0xff, 0x94, 0x57, 0x33, 0xff, 0x94, 0x58, 0x33, 0xff, 0x96, 0x5b, 0x35, 0xff, 0x96, 0x5b, 0x36, 0xff, 0x91, 0x55, 0x2f, 0xff, 0x96, 0x5b, 0x32, 0xff, 0x97, 0x5a, 0x32, 0xff, 0x98, 0x5b, 0x34, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x9c, 0x5f, 0x35, 0xff, 0x9e, 0x62, 0x37, 0xff, 0xa0, 0x64, 0x39, 0xff, 0xa0, 0x64, 0x39, 0xff, 0x9f, 0x65, 0x39, 0xff, 0xb7, 0x87, 0x57, 0xff, 0xbe, 0x91, 0x60, 0xff, 0xbe, 0x91, 0x5e, 0xff, 0xc3, 0x93, 0x5d, 0xff, 0xca, 0x93, 0x5b, 0xff, 0xce, 0x90, 0x57, 0xff, 0xcb, 0x8d, 0x55, 0xff, 0xc9, 0x8c, 0x54, 0xff, 0xca, 0x8a, 0x53, 0xff, 0xd0, 0x8d, 0x54, 0xff, 0xd9, 0x90, 0x57, 0xff, 0xde, 0x95, 0x5b, 0xff, 0xdd, 0x99, 0x5d, 0xff, 0xcd, 0x92, 0x59, 0xff, 0xb1, 0x77, 0x47, 0xff, 0xb1, 0x78, 0x49, 0xff, 0xad, 0x73, 0x45, 0xff, 0xad, 0x74, 0x45, 0xff, 0xad, 0x74, 0x45, 0xff, 0xad, 0x73, 0x45, 0xff, 0xad, 0x73, 0x45, 0xff, 0xad, 0x74, 0x43, 0xff, 0xad, 0x73, 0x43, 0xff, 0xae, 0x71, 0x42, 0xff, 0xad, 0x73, 0x41, 0xff, 0xad, 0x73, 0x41, 0xff, 0xad, 0x72, 0x41, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xb1, 0x79, 0x49, 0xff, 0xb1, 0x7a, 0x49, 0xff, 0xb1, 0x79, 0x46, 0xff, 0xb1, 0x77, 0x45, 0xff, 0xb1, 0x77, 0x45, 0xff, 0xb1, 0x79, 0x46, 0xff, 0xaf, 0x78, 0x44, 0xff, 0xaf, 0x79, 0x46, 0xff, 0xad, 0x75, 0x43, 0xff, 0xad, 0x73, 0x42, 0xff, 0xae, 0x76, 0x42, 0xff, 0xac, 0x74, 0x41, 0xff, 0xac, 0x73, 0x40, 0xff, 0xab, 0x73, 0x3f, 0xff, 0xab, 0x73, 0x41, 0xff, 0xaa, 0x72, 0x40, 0xff, 0xa9, 0x72, 0x40, 0xff, 0xa8, 0x70, 0x40, 0xff, 0xa7, 0x6f, 0x3e, 0xff, 0xa6, 0x70, 0x40, 0xff, 0xa7, 0x71, 0x41, 0xff, 0xa5, 0x71, 0x41, 0xff, 0xa5, 0x70, 0x41, 0xff, 0xa6, 0x71, 0x41, 0xff, 0xa8, 0x73, 0x42, 0xff, 0xaa, 0x75, 0x43, 0xff, 0xab, 0x76, 0x43, 0xff, 0xad, 0x79, 0x44, 0xff, 0xaf, 0x7a, 0x45, 0xff, 0xb0, 0x7c, 0x46, 0xff, 0xb2, 0x7e, 0x46, 0xff, 0xb3, 0x81, 0x47, 0xff, 0xb5, 0x82, 0x47, 0xff, 0xb6, 0x84, 0x49, 0xff, 0xb8, 0x86, 0x4b, 0xff, 0xb9, 0x8a, 0x4d, 0xff, 0xbb, 0x8d, 0x4e, 0xff, 0xbd, 0x8f, 0x4f, 0xff, 0xbf, 0x90, 0x51, 0xff, 0xc1, 0x92, 0x53, 0xff, 0xc4, 0x95, 0x55, 0xff, 0xc6, 0x98, 0x57, 0xff, 0xc5, 0x97, 0x57, 0xff, 0xc3, 0x96, 0x57, 0xff, 0xc6, 0x97, 0x59, 0xff, 0xcb, 0x9a, 0x5d, 0xff, 0xcf, 0x9d, 0x5f, 0xff, 0xd3, 0xa1, 0x5f, 0xff, 0xd9, 0xa2, 0x60, 0xff, 0xdd, 0xa2, 0x61, 0xff, 0xde, 0xa3, 0x60, 0xff, 0xdd, 0xa1, 0x5e, 0xff, 0xde, 0x9f, 0x5b, 0xff, 0xde, 0x9c, 0x59, 0xff, 0xdc, 0x9c, 0x59, 0xff, 0xdc, 0x9c, 0x59, 0xff, 0xdd, 0x9b, 0x57, 0xff, 0xdd, 0x9c, 0x5b, 0xff, 0xdd, 0x9e, 0x60, 0xff, 0xdd, 0x9d, 0x5d, 0xff, 0xdf, 0x9b, 0x5a, 0xff, 0xdf, 0x9c, 0x57, 0xff, 0xdd, 0x9f, 0x58, 0xff, 0xdd, 0xa1, 0x5b, 0xff, 0xde, 0xa1, 0x5c, 0xff, 0xdd, 0x9f, 0x5a, 0xff, 0xde, 0x9f, 0x5b, 0xff, 0xd7, 0x9c, 0x5a, 0xff, 0xca, 0x90, 0x54, 0xff, 0xc2, 0x8b, 0x52, 0xff, 0xc1, 0x88, 0x51, 0xff, 0xc2, 0x88, 0x52, 0xff, 0xc5, 0x8d, 0x55, 0xff, 0xc9, 0x91, 0x5a, 0xff, 0xcb, 0x93, 0x5e, 0xff, 0xcd, 0x95, 0x61, 0xff, 0xd0, 0x97, 0x64, 0xff, 0xd2, 0x98, 0x68, 0xff, 0xd4, 0x98, 0x6a, 0xff, 0xd4, 0x99, 0x6c, 0xff, 0xd7, 0x99, 0x6d, 0xff, 0xda, 0x9b, 0x6c, 0xff, 0xdb, 0x9d, 0x6b, 0xff, 0xde, 0x9e, 0x6a, 0xff, 0xdf, 0xa0, 0x69, 0xff, 0xdd, 0xa1, 0x68, 0xff, 0xdd, 0xa4, 0x68, 0xff, 0xdf, 0xa4, 0x68, 0xff, 0xde, 0xa1, 0x65, 0xff, 0xdd, 0x9e, 0x61, 0xff, 0xdf, 0x9c, 0x62, 0xff, 0xe0, 0x9e, 0x62, 0xff, 0xde, 0x9e, 0x62, 0xff, 0xd7, 0x99, 0x5e, 0xff, 0xd3, 0x95, 0x5a, 0xff, 0xd8, 0x95, 0x58, 0xff, 0xda, 0x9b, 0x5b, 0xff, 0xd6, 0x9a, 0x5c, 0xff, 0xd4, 0x98, 0x59, 0xff, 0xce, 0x94, 0x57, 0xff, 0xcb, 0x94, 0x57, 0xff, 0xc9, 0x94, 0x57, 0xff, 0xc4, 0x92, 0x58, 0xff, 0xd6, 0x9e, 0x63, 0xff, 0xdf, 0xa2, 0x66, 0xff, 0xdf, 0xa0, 0x67, 0xff, 0xde, 0x9f, 0x66, 0xff, 0xdf, 0x9d, 0x65, 0xff, 0xdf, 0x9d, 0x64, 0xff, 0xdf, 0x9e, 0x64, 0xff, 0xde, 0xa0, 0x68, 0xff, 0xdf, 0xa3, 0x6a, 0xff, 0xe0, 0xaa, 0x6d, 0xff, 0xe0, 0xb7, 0x72, 0xff, 0xdc, 0xc4, 0x7a, 0xff, 0xda, 0xc7, 0x84, 0xff, 0xdd, 0xc8, 0x93, 0xff, 0xe0, 0xc7, 0xa9, 0xff, 0xe0, 0xc7, 0xaf, 0xff, 0xe0, 0xc8, 0xb0, 0xff, 0xe0, 0xc7, 0xb0, 0xff, 0xdf, 0xc7, 0xa3, 0xff, 0xdd, 0xc7, 0x94, 0xff, 0xd9, 0xc6, 0x89, 0xff, 0xde, 0xc5, 0x7f, 0xff, 0xe0, 0xb1, 0x73, 0xff, 0xe0, 0x9e, 0x67, 0xff, 0xd6, 0x92, 0x5e, 0xff, 0xc7, 0x8b, 0x56, 0xff, 0xc3, 0x88, 0x54, 0xff, 0xbc, 0x81, 0x4d, 0xff, 0xb7, 0x7b, 0x48, 0xff, 0xb3, 0x75, 0x42, 0xff, 0xb0, 0x72, 0x3f, 0xff, 0xad, 0x6f, 0x3d, 0xff, 0xaa, 0x6b, 0x3b, 0xff, 0xa5, 0x67, 0x39, 0xff, 0xa1, 0x63, 0x36, 0xff, 0x9f, 0x62, 0x35, 0xff, 0x9d, 0x5f, 0x35, 0xff, 0x9d, 0x5f, 0x35, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0x9a, 0x5e, 0x34, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x98, 0x5b, 0x34, 0xff, 0x96, 0x59, 0x33, 0xff, 0x95, 0x59, 0x32, 0xff, 0x93, 0x57, 0x30, 0xff, 0x92, 0x56, 0x30, 0xff, 0x90, 0x54, 0x30, 0xff, 0x8f, 0x53, 0x30, 0xff, 0x8e, 0x53, 0x2e, 0xff, 0x8c, 0x52, 0x2c, 0xff, 0x8d, 0x52, 0x2c, 0xff, 0x8c, 0x51, 0x2b, 0xff, 0x8b, 0x50, 0x2b, 0xff, 0x8a, 0x4f, 0x2b, 0xff, 0x8a, 0x50, 0x2a, 0xff, 0x89, 0x50, 0x29, 0xff, 0x88, 0x4e, 0x29, 0xff, 0x88, 0x4d, 0x28, 0xff, 0x86, 0x4c, 0x27, 0xff, 0x83, 0x4b, 0x25, 0xff, 0x82, 0x4a, 0x23, 0xff, 0x81, 0x49, 0x23, 0xff, 0x81, 0x49, 0x23, 0xff, 0x81, 0x49, 0x23, 0xff, 0x81, 0x49, 0x23, 0xff, 0x80, 0x49, 0x23, 0xff, 0x82, 0x49, 0x23, 0xff, 0x82, 0x4a, 0x23, 0xff, 0x82, 0x4b, 0x25, 0xff, 0x82, 0x4b, 0x24, 0xff, 0x82, 0x4b, 0x25, 0xff, 0x84, 0x4a, 0x25, 0xff, 0x84, 0x4a, 0x26, 0xff, 0x85, 0x4c, 0x25, 0xff, 0x86, 0x4c, 0x27, 0xff, 0x86, 0x4c, 0x28, 0xff, 0x87, 0x4c, 0x28, 0xff, 0x88, 0x4e, 0x29, 0xff, + 0x87, 0x4c, 0x29, 0xff, 0x87, 0x4d, 0x29, 0xff, 0x87, 0x4d, 0x29, 0xff, 0x87, 0x4d, 0x29, 0xff, 0x88, 0x4e, 0x2a, 0xff, 0x89, 0x4f, 0x2a, 0xff, 0x8b, 0x51, 0x2c, 0xff, 0x8c, 0x51, 0x2d, 0xff, 0x8f, 0x54, 0x30, 0xff, 0x92, 0x57, 0x32, 0xff, 0x93, 0x58, 0x33, 0xff, 0x94, 0x59, 0x35, 0xff, 0x97, 0x5c, 0x36, 0xff, 0x92, 0x57, 0x31, 0xff, 0x93, 0x57, 0x31, 0xff, 0x95, 0x59, 0x32, 0xff, 0x96, 0x5b, 0x33, 0xff, 0x97, 0x5b, 0x33, 0xff, 0x99, 0x5c, 0x35, 0xff, 0x9c, 0x5f, 0x35, 0xff, 0x9d, 0x61, 0x36, 0xff, 0x9f, 0x63, 0x37, 0xff, 0xa2, 0x66, 0x3a, 0xff, 0xae, 0x79, 0x4b, 0xff, 0xbc, 0x8e, 0x5d, 0xff, 0xbc, 0x8e, 0x60, 0xff, 0xbe, 0x8f, 0x63, 0xff, 0xc4, 0x95, 0x66, 0xff, 0xc9, 0x99, 0x61, 0xff, 0xca, 0x93, 0x5a, 0xff, 0xce, 0x8e, 0x57, 0xff, 0xcb, 0x8b, 0x54, 0xff, 0xc9, 0x8a, 0x53, 0xff, 0xcf, 0x8b, 0x56, 0xff, 0xd6, 0x90, 0x56, 0xff, 0xdd, 0x93, 0x5a, 0xff, 0xdf, 0x97, 0x5c, 0xff, 0xd7, 0x97, 0x5d, 0xff, 0xb9, 0x7f, 0x4d, 0xff, 0xb2, 0x79, 0x49, 0xff, 0xb1, 0x75, 0x46, 0xff, 0xaf, 0x75, 0x46, 0xff, 0xaf, 0x76, 0x47, 0xff, 0xaf, 0x75, 0x48, 0xff, 0xb0, 0x75, 0x47, 0xff, 0xb0, 0x76, 0x45, 0xff, 0xb0, 0x75, 0x45, 0xff, 0xaf, 0x75, 0x44, 0xff, 0xaf, 0x75, 0x43, 0xff, 0xaf, 0x74, 0x42, 0xff, 0xb0, 0x76, 0x44, 0xff, 0xb3, 0x7a, 0x47, 0xff, 0xb4, 0x7b, 0x49, 0xff, 0xb4, 0x7c, 0x4a, 0xff, 0xb3, 0x7b, 0x48, 0xff, 0xb2, 0x79, 0x46, 0xff, 0xb2, 0x79, 0x45, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb1, 0x7a, 0x46, 0xff, 0xb0, 0x7b, 0x47, 0xff, 0xb1, 0x7b, 0x49, 0xff, 0xae, 0x78, 0x46, 0xff, 0xaf, 0x77, 0x45, 0xff, 0xae, 0x75, 0x43, 0xff, 0xae, 0x74, 0x42, 0xff, 0xad, 0x74, 0x43, 0xff, 0xac, 0x75, 0x42, 0xff, 0xac, 0x75, 0x43, 0xff, 0xac, 0x74, 0x42, 0xff, 0xaa, 0x73, 0x41, 0xff, 0xaa, 0x72, 0x41, 0xff, 0xa9, 0x72, 0x41, 0xff, 0xa8, 0x71, 0x40, 0xff, 0xa8, 0x72, 0x41, 0xff, 0xa7, 0x72, 0x42, 0xff, 0xa6, 0x72, 0x42, 0xff, 0xa7, 0x74, 0x43, 0xff, 0xa9, 0x74, 0x43, 0xff, 0xaa, 0x75, 0x44, 0xff, 0xac, 0x77, 0x44, 0xff, 0xad, 0x79, 0x43, 0xff, 0xaf, 0x79, 0x43, 0xff, 0xb0, 0x7b, 0x43, 0xff, 0xb1, 0x7c, 0x43, 0xff, 0xb3, 0x7e, 0x45, 0xff, 0xb5, 0x81, 0x48, 0xff, 0xb7, 0x82, 0x48, 0xff, 0xb8, 0x84, 0x49, 0xff, 0xba, 0x88, 0x4a, 0xff, 0xbc, 0x8a, 0x4c, 0xff, 0xbe, 0x8c, 0x4e, 0xff, 0xbe, 0x8c, 0x4e, 0xff, 0xbd, 0x8b, 0x4f, 0xff, 0xbc, 0x8d, 0x4f, 0xff, 0xbe, 0x90, 0x51, 0xff, 0xc2, 0x93, 0x55, 0xff, 0xc4, 0x95, 0x58, 0xff, 0xc8, 0x97, 0x59, 0xff, 0xcd, 0x9a, 0x5b, 0xff, 0xd0, 0x9b, 0x5b, 0xff, 0xd5, 0x9d, 0x5b, 0xff, 0xd9, 0x9e, 0x5c, 0xff, 0xdb, 0x9e, 0x5c, 0xff, 0xde, 0x9f, 0x5b, 0xff, 0xdd, 0x9f, 0x5a, 0xff, 0xdd, 0x9d, 0x58, 0xff, 0xde, 0x9a, 0x56, 0xff, 0xde, 0x9a, 0x57, 0xff, 0xde, 0x9a, 0x58, 0xff, 0xde, 0x99, 0x59, 0xff, 0xde, 0x9c, 0x5d, 0xff, 0xdf, 0x9d, 0x5f, 0xff, 0xde, 0x9b, 0x5a, 0xff, 0xdf, 0xa0, 0x59, 0xff, 0xde, 0xa2, 0x5b, 0xff, 0xd6, 0x9b, 0x5a, 0xff, 0xcf, 0x96, 0x58, 0xff, 0xc6, 0x8f, 0x54, 0xff, 0xbc, 0x84, 0x4c, 0xff, 0xbb, 0x81, 0x4b, 0xff, 0xc0, 0x84, 0x4e, 0xff, 0xc3, 0x86, 0x4f, 0xff, 0xc6, 0x88, 0x52, 0xff, 0xc6, 0x8c, 0x54, 0xff, 0xc8, 0x8f, 0x55, 0xff, 0xca, 0x91, 0x59, 0xff, 0xcc, 0x95, 0x5b, 0xff, 0xce, 0x97, 0x5e, 0xff, 0xce, 0x97, 0x62, 0xff, 0xcf, 0x98, 0x65, 0xff, 0xd3, 0x98, 0x68, 0xff, 0xd5, 0x99, 0x6a, 0xff, 0xd6, 0x9b, 0x6c, 0xff, 0xd8, 0x9c, 0x6c, 0xff, 0xdc, 0x9e, 0x6b, 0xff, 0xdf, 0xa0, 0x6a, 0xff, 0xe0, 0xa1, 0x69, 0xff, 0xdf, 0xa1, 0x69, 0xff, 0xde, 0xa0, 0x66, 0xff, 0xdd, 0x9f, 0x62, 0xff, 0xde, 0x9f, 0x63, 0xff, 0xde, 0x9e, 0x62, 0xff, 0xde, 0x9e, 0x62, 0xff, 0xdf, 0x9b, 0x60, 0xff, 0xde, 0x98, 0x5e, 0xff, 0xdf, 0x99, 0x5c, 0xff, 0xde, 0x9e, 0x60, 0xff, 0xdf, 0xaa, 0x6a, 0xff, 0xdf, 0xaa, 0x69, 0xff, 0xdc, 0xa4, 0x63, 0xff, 0xd8, 0x9d, 0x60, 0xff, 0xd4, 0x9a, 0x5d, 0xff, 0xce, 0x94, 0x58, 0xff, 0xcb, 0x94, 0x57, 0xff, 0xc8, 0x95, 0x59, 0xff, 0xcb, 0x98, 0x5d, 0xff, 0xda, 0x9d, 0x63, 0xff, 0xdf, 0x9c, 0x67, 0xff, 0xdf, 0x9e, 0x68, 0xff, 0xdf, 0x9e, 0x67, 0xff, 0xde, 0x9c, 0x66, 0xff, 0xdf, 0x9d, 0x64, 0xff, 0xdf, 0x9e, 0x65, 0xff, 0xde, 0xa0, 0x68, 0xff, 0xdf, 0xa5, 0x6b, 0xff, 0xde, 0xb1, 0x73, 0xff, 0xde, 0xc3, 0x79, 0xff, 0xda, 0xc7, 0x82, 0xff, 0xdc, 0xc7, 0x8f, 0xff, 0xdf, 0xc7, 0xa5, 0xff, 0xe0, 0xc7, 0xae, 0xff, 0xe0, 0xc8, 0xb0, 0xff, 0xe0, 0xc7, 0xaf, 0xff, 0xe0, 0xc8, 0xb1, 0xff, 0xdf, 0xc7, 0xa6, 0xff, 0xdc, 0xc7, 0x93, 0xff, 0xdb, 0xc7, 0x85, 0xff, 0xde, 0xb9, 0x77, 0xff, 0xdf, 0xa7, 0x6d, 0xff, 0xdf, 0x9b, 0x64, 0xff, 0xd3, 0x93, 0x5c, 0xff, 0xc5, 0x8a, 0x55, 0xff, 0xc2, 0x87, 0x53, 0xff, 0xbb, 0x80, 0x4c, 0xff, 0xb6, 0x79, 0x46, 0xff, 0xb2, 0x74, 0x41, 0xff, 0xaf, 0x71, 0x3d, 0xff, 0xac, 0x6e, 0x3c, 0xff, 0xaa, 0x6b, 0x3c, 0xff, 0xa6, 0x68, 0x3a, 0xff, 0xa2, 0x65, 0x36, 0xff, 0x9e, 0x61, 0x35, 0xff, 0x9c, 0x5f, 0x34, 0xff, 0x99, 0x5d, 0x34, 0xff, 0x9b, 0x5e, 0x35, 0xff, 0x9c, 0x60, 0x35, 0xff, 0x99, 0x5e, 0x33, 0xff, 0x97, 0x5a, 0x33, 0xff, 0x95, 0x59, 0x32, 0xff, 0x95, 0x58, 0x32, 0xff, 0x93, 0x57, 0x31, 0xff, 0x92, 0x55, 0x30, 0xff, 0x90, 0x54, 0x30, 0xff, 0x8f, 0x54, 0x30, 0xff, 0x8f, 0x53, 0x2e, 0xff, 0x8f, 0x53, 0x2e, 0xff, 0x8e, 0x52, 0x2d, 0xff, 0x8d, 0x52, 0x2c, 0xff, 0x8c, 0x51, 0x2b, 0xff, 0x8b, 0x51, 0x2b, 0xff, 0x8a, 0x50, 0x2a, 0xff, 0x88, 0x4e, 0x29, 0xff, 0x88, 0x4d, 0x29, 0xff, 0x88, 0x4d, 0x28, 0xff, 0x86, 0x4c, 0x27, 0xff, 0x85, 0x4c, 0x27, 0xff, 0x83, 0x4b, 0x23, 0xff, 0x81, 0x4a, 0x23, 0xff, 0x81, 0x49, 0x23, 0xff, 0x82, 0x4a, 0x23, 0xff, 0x81, 0x49, 0x23, 0xff, 0x82, 0x4a, 0x24, 0xff, 0x82, 0x4a, 0x24, 0xff, 0x82, 0x4b, 0x25, 0xff, 0x83, 0x4b, 0x25, 0xff, 0x83, 0x4b, 0x24, 0xff, 0x83, 0x4b, 0x25, 0xff, 0x84, 0x4b, 0x25, 0xff, 0x85, 0x4c, 0x28, 0xff, 0x84, 0x4b, 0x25, 0xff, 0x85, 0x4c, 0x27, 0xff, 0x86, 0x4c, 0x29, 0xff, 0x87, 0x4d, 0x29, 0xff, 0x88, 0x4d, 0x29, 0xff, + 0x87, 0x4c, 0x28, 0xff, 0x87, 0x4d, 0x28, 0xff, 0x87, 0x4d, 0x29, 0xff, 0x88, 0x4d, 0x2a, 0xff, 0x88, 0x4e, 0x2a, 0xff, 0x89, 0x4f, 0x2a, 0xff, 0x8b, 0x51, 0x2d, 0xff, 0x8d, 0x52, 0x2e, 0xff, 0x8f, 0x54, 0x2f, 0xff, 0x94, 0x58, 0x33, 0xff, 0x93, 0x59, 0x33, 0xff, 0x95, 0x5b, 0x35, 0xff, 0x95, 0x59, 0x35, 0xff, 0x91, 0x55, 0x2f, 0xff, 0x93, 0x57, 0x31, 0xff, 0x94, 0x58, 0x31, 0xff, 0x96, 0x5a, 0x32, 0xff, 0x97, 0x5b, 0x33, 0xff, 0x99, 0x5c, 0x33, 0xff, 0x9a, 0x5f, 0x34, 0xff, 0x9d, 0x61, 0x35, 0xff, 0x9e, 0x61, 0x38, 0xff, 0xac, 0x74, 0x45, 0xff, 0xbd, 0x8d, 0x59, 0xff, 0xbd, 0x8f, 0x60, 0xff, 0xbd, 0x8f, 0x63, 0xff, 0xbe, 0x8f, 0x68, 0xff, 0xc3, 0x95, 0x6c, 0xff, 0xc6, 0x96, 0x67, 0xff, 0xc9, 0x99, 0x61, 0xff, 0xcc, 0x92, 0x59, 0xff, 0xce, 0x8d, 0x56, 0xff, 0xc9, 0x8b, 0x53, 0xff, 0xcc, 0x8b, 0x53, 0xff, 0xd1, 0x8d, 0x55, 0xff, 0xdb, 0x92, 0x57, 0xff, 0xe1, 0x98, 0x5c, 0xff, 0xdd, 0x9a, 0x5e, 0xff, 0xc1, 0x85, 0x50, 0xff, 0xb4, 0x7a, 0x49, 0xff, 0xb2, 0x76, 0x47, 0xff, 0xb1, 0x77, 0x47, 0xff, 0xb1, 0x78, 0x48, 0xff, 0xb1, 0x78, 0x4a, 0xff, 0xb2, 0x78, 0x4a, 0xff, 0xb2, 0x79, 0x4a, 0xff, 0xb1, 0x78, 0x49, 0xff, 0xb1, 0x78, 0x47, 0xff, 0xb0, 0x77, 0x45, 0xff, 0xb1, 0x76, 0x45, 0xff, 0xb2, 0x78, 0x45, 0xff, 0xb4, 0x7a, 0x48, 0xff, 0xb5, 0x7c, 0x4a, 0xff, 0xb6, 0x7e, 0x4b, 0xff, 0xb5, 0x7e, 0x4b, 0xff, 0xb5, 0x7b, 0x48, 0xff, 0xb4, 0x7a, 0x47, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb4, 0x7d, 0x49, 0xff, 0xb2, 0x7c, 0x49, 0xff, 0xb3, 0x7e, 0x4b, 0xff, 0xb2, 0x7e, 0x4c, 0xff, 0xb0, 0x7a, 0x48, 0xff, 0xaf, 0x78, 0x45, 0xff, 0xae, 0x77, 0x43, 0xff, 0xaf, 0x77, 0x44, 0xff, 0xae, 0x76, 0x43, 0xff, 0xaf, 0x77, 0x45, 0xff, 0xad, 0x75, 0x43, 0xff, 0xad, 0x75, 0x42, 0xff, 0xab, 0x73, 0x41, 0xff, 0xaa, 0x72, 0x41, 0xff, 0xaa, 0x72, 0x41, 0xff, 0xa9, 0x71, 0x42, 0xff, 0xa9, 0x72, 0x42, 0xff, 0xa8, 0x73, 0x43, 0xff, 0xa7, 0x74, 0x42, 0xff, 0xa8, 0x73, 0x43, 0xff, 0xa9, 0x76, 0x43, 0xff, 0xaa, 0x78, 0x43, 0xff, 0xac, 0x78, 0x43, 0xff, 0xad, 0x79, 0x43, 0xff, 0xaf, 0x7a, 0x43, 0xff, 0xb1, 0x7c, 0x44, 0xff, 0xb2, 0x7d, 0x45, 0xff, 0xb3, 0x7f, 0x46, 0xff, 0xb5, 0x81, 0x47, 0xff, 0xb7, 0x82, 0x48, 0xff, 0xb9, 0x85, 0x4a, 0xff, 0xba, 0x86, 0x4a, 0xff, 0xb8, 0x82, 0x47, 0xff, 0xb8, 0x83, 0x48, 0xff, 0xb9, 0x85, 0x49, 0xff, 0xbc, 0x87, 0x4b, 0xff, 0xbe, 0x89, 0x4d, 0xff, 0xc0, 0x8e, 0x52, 0xff, 0xc3, 0x91, 0x55, 0xff, 0xc6, 0x93, 0x56, 0xff, 0xc9, 0x94, 0x56, 0xff, 0xcd, 0x97, 0x56, 0xff, 0xd1, 0x97, 0x57, 0xff, 0xd5, 0x99, 0x57, 0xff, 0xda, 0x9a, 0x58, 0xff, 0xde, 0x99, 0x58, 0xff, 0xde, 0x9a, 0x58, 0xff, 0xde, 0x99, 0x56, 0xff, 0xdf, 0x97, 0x56, 0xff, 0xde, 0x96, 0x56, 0xff, 0xdd, 0x97, 0x56, 0xff, 0xde, 0x98, 0x58, 0xff, 0xde, 0x99, 0x58, 0xff, 0xdf, 0x9c, 0x5b, 0xff, 0xd9, 0x98, 0x5b, 0xff, 0xcc, 0x8f, 0x53, 0xff, 0xc3, 0x8b, 0x51, 0xff, 0xbc, 0x84, 0x4d, 0xff, 0xba, 0x80, 0x4c, 0xff, 0xbe, 0x81, 0x4e, 0xff, 0xbf, 0x82, 0x4e, 0xff, 0xc0, 0x84, 0x4d, 0xff, 0xc1, 0x86, 0x4e, 0xff, 0xc1, 0x86, 0x4f, 0xff, 0xc3, 0x88, 0x50, 0xff, 0xc5, 0x8a, 0x52, 0xff, 0xc5, 0x8b, 0x52, 0xff, 0xc8, 0x8f, 0x55, 0xff, 0xc8, 0x92, 0x58, 0xff, 0xc9, 0x94, 0x5a, 0xff, 0xcc, 0x98, 0x5e, 0xff, 0xcf, 0x99, 0x62, 0xff, 0xd1, 0x9a, 0x65, 0xff, 0xd2, 0x9a, 0x67, 0xff, 0xd5, 0x9a, 0x69, 0xff, 0xd8, 0x9d, 0x6a, 0xff, 0xde, 0xa0, 0x6c, 0xff, 0xe0, 0xa1, 0x6b, 0xff, 0xe0, 0xa2, 0x69, 0xff, 0xe0, 0xa3, 0x68, 0xff, 0xdf, 0xa3, 0x68, 0xff, 0xdf, 0xa1, 0x65, 0xff, 0xdf, 0x9d, 0x61, 0xff, 0xde, 0x99, 0x5f, 0xff, 0xde, 0x99, 0x5e, 0xff, 0xdf, 0x97, 0x5d, 0xff, 0xdc, 0x96, 0x5d, 0xff, 0xde, 0x9e, 0x5f, 0xff, 0xde, 0x9f, 0x60, 0xff, 0xdd, 0x9f, 0x60, 0xff, 0xdf, 0xa6, 0x64, 0xff, 0xe0, 0xaa, 0x68, 0xff, 0xde, 0xa6, 0x67, 0xff, 0xdd, 0xa3, 0x65, 0xff, 0xda, 0x9f, 0x61, 0xff, 0xd7, 0x9c, 0x5d, 0xff, 0xcd, 0x97, 0x5b, 0xff, 0xc7, 0x98, 0x5c, 0xff, 0xd4, 0x9c, 0x63, 0xff, 0xdd, 0x9d, 0x67, 0xff, 0xde, 0x9c, 0x69, 0xff, 0xe0, 0x9d, 0x68, 0xff, 0xdf, 0x9e, 0x69, 0xff, 0xde, 0x9d, 0x68, 0xff, 0xdf, 0x9d, 0x67, 0xff, 0xe0, 0x9e, 0x67, 0xff, 0xdf, 0xa1, 0x6a, 0xff, 0xde, 0xab, 0x72, 0xff, 0xde, 0xbd, 0x7a, 0xff, 0xda, 0xc6, 0x81, 0xff, 0xda, 0xc8, 0x8b, 0xff, 0xdd, 0xc7, 0x9b, 0xff, 0xe0, 0xc8, 0xad, 0xff, 0xe0, 0xc7, 0xb0, 0xff, 0xe0, 0xc8, 0xb0, 0xff, 0xe0, 0xc7, 0xb0, 0xff, 0xdf, 0xc7, 0xad, 0xff, 0xde, 0xc7, 0x9d, 0xff, 0xdb, 0xc8, 0x8d, 0xff, 0xdb, 0xc5, 0x81, 0xff, 0xdf, 0xb5, 0x74, 0xff, 0xe0, 0xa3, 0x6a, 0xff, 0xde, 0x99, 0x63, 0xff, 0xcf, 0x90, 0x5a, 0xff, 0xc4, 0x88, 0x54, 0xff, 0xc0, 0x86, 0x51, 0xff, 0xb9, 0x7e, 0x4b, 0xff, 0xb4, 0x77, 0x44, 0xff, 0xb1, 0x72, 0x40, 0xff, 0xaf, 0x6f, 0x3d, 0xff, 0xab, 0x6d, 0x3b, 0xff, 0xa9, 0x6a, 0x3a, 0xff, 0xa7, 0x69, 0x39, 0xff, 0xa3, 0x65, 0x36, 0xff, 0x9e, 0x60, 0x35, 0xff, 0x9e, 0x61, 0x35, 0xff, 0xa0, 0x63, 0x36, 0xff, 0x9e, 0x61, 0x35, 0xff, 0x99, 0x5d, 0x33, 0xff, 0x97, 0x5a, 0x33, 0xff, 0x96, 0x59, 0x32, 0xff, 0x93, 0x55, 0x31, 0xff, 0x91, 0x54, 0x31, 0xff, 0x91, 0x54, 0x31, 0xff, 0x90, 0x55, 0x30, 0xff, 0x91, 0x54, 0x30, 0xff, 0x91, 0x55, 0x2f, 0xff, 0x91, 0x55, 0x30, 0xff, 0x8f, 0x53, 0x2e, 0xff, 0x8e, 0x53, 0x2d, 0xff, 0x8d, 0x52, 0x2c, 0xff, 0x8c, 0x51, 0x2c, 0xff, 0x8a, 0x51, 0x2b, 0xff, 0x89, 0x4f, 0x29, 0xff, 0x89, 0x4f, 0x29, 0xff, 0x89, 0x4e, 0x29, 0xff, 0x88, 0x4e, 0x27, 0xff, 0x86, 0x4c, 0x27, 0xff, 0x85, 0x4c, 0x25, 0xff, 0x83, 0x4a, 0x24, 0xff, 0x82, 0x49, 0x23, 0xff, 0x82, 0x4b, 0x24, 0xff, 0x83, 0x4b, 0x24, 0xff, 0x82, 0x4b, 0x24, 0xff, 0x83, 0x4a, 0x24, 0xff, 0x83, 0x4b, 0x25, 0xff, 0x83, 0x49, 0x24, 0xff, 0x84, 0x4c, 0x25, 0xff, 0x84, 0x4b, 0x25, 0xff, 0x85, 0x4b, 0x27, 0xff, 0x85, 0x4c, 0x27, 0xff, 0x85, 0x4b, 0x25, 0xff, 0x85, 0x4c, 0x27, 0xff, 0x86, 0x4d, 0x28, 0xff, 0x87, 0x4c, 0x28, 0xff, 0x87, 0x4c, 0x29, 0xff, + 0x87, 0x4d, 0x29, 0xff, 0x87, 0x4d, 0x28, 0xff, 0x87, 0x4e, 0x28, 0xff, 0x88, 0x4e, 0x29, 0xff, 0x87, 0x4e, 0x2a, 0xff, 0x89, 0x50, 0x2b, 0xff, 0x8b, 0x51, 0x2d, 0xff, 0x8d, 0x52, 0x2f, 0xff, 0x8f, 0x53, 0x30, 0xff, 0x95, 0x59, 0x33, 0xff, 0x94, 0x5a, 0x35, 0xff, 0x95, 0x5b, 0x35, 0xff, 0x93, 0x57, 0x32, 0xff, 0x91, 0x55, 0x2f, 0xff, 0x91, 0x55, 0x2f, 0xff, 0x94, 0x58, 0x31, 0xff, 0x95, 0x59, 0x32, 0xff, 0x97, 0x5a, 0x33, 0xff, 0x98, 0x5b, 0x33, 0xff, 0x9b, 0x5d, 0x35, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0xa6, 0x6b, 0x3c, 0xff, 0xbb, 0x84, 0x51, 0xff, 0xba, 0x8a, 0x57, 0xff, 0xbc, 0x8d, 0x5f, 0xff, 0xbe, 0x8e, 0x65, 0xff, 0xc1, 0x92, 0x6a, 0xff, 0xc1, 0x94, 0x6c, 0xff, 0xc5, 0x95, 0x6c, 0xff, 0xc8, 0x99, 0x67, 0xff, 0xca, 0x96, 0x5d, 0xff, 0xce, 0x91, 0x56, 0xff, 0xce, 0x8e, 0x55, 0xff, 0xca, 0x8a, 0x52, 0xff, 0xcf, 0x8d, 0x54, 0xff, 0xd8, 0x92, 0x57, 0xff, 0xdf, 0x97, 0x5b, 0xff, 0xde, 0x9a, 0x5e, 0xff, 0xca, 0x93, 0x5b, 0xff, 0xb4, 0x7a, 0x4a, 0xff, 0xb5, 0x7a, 0x48, 0xff, 0xb4, 0x79, 0x49, 0xff, 0xb5, 0x7a, 0x4a, 0xff, 0xb4, 0x7c, 0x4b, 0xff, 0xb3, 0x7d, 0x4d, 0xff, 0xb3, 0x7d, 0x4f, 0xff, 0xb2, 0x7c, 0x4b, 0xff, 0xb3, 0x7b, 0x4a, 0xff, 0xb2, 0x7a, 0x49, 0xff, 0xb2, 0x79, 0x47, 0xff, 0xb3, 0x79, 0x47, 0xff, 0xb6, 0x7c, 0x49, 0xff, 0xb8, 0x80, 0x4b, 0xff, 0xb7, 0x7f, 0x4b, 0xff, 0xb8, 0x81, 0x4b, 0xff, 0xb6, 0x7e, 0x4a, 0xff, 0xb6, 0x7d, 0x49, 0xff, 0xb6, 0x7f, 0x49, 0xff, 0xb7, 0x80, 0x4a, 0xff, 0xb5, 0x7e, 0x49, 0xff, 0xb5, 0x80, 0x4d, 0xff, 0xb4, 0x81, 0x4f, 0xff, 0xb1, 0x7e, 0x4d, 0xff, 0xb0, 0x7a, 0x4a, 0xff, 0xb0, 0x7c, 0x48, 0xff, 0xaf, 0x78, 0x45, 0xff, 0xae, 0x77, 0x43, 0xff, 0xb0, 0x78, 0x45, 0xff, 0xaf, 0x76, 0x44, 0xff, 0xaf, 0x77, 0x44, 0xff, 0xad, 0x74, 0x44, 0xff, 0xab, 0x72, 0x43, 0xff, 0xab, 0x73, 0x42, 0xff, 0xab, 0x74, 0x41, 0xff, 0xa9, 0x72, 0x42, 0xff, 0xa7, 0x73, 0x44, 0xff, 0xa8, 0x74, 0x45, 0xff, 0xa9, 0x75, 0x43, 0xff, 0xa9, 0x75, 0x44, 0xff, 0xab, 0x76, 0x43, 0xff, 0xac, 0x7a, 0x44, 0xff, 0xac, 0x7a, 0x44, 0xff, 0xae, 0x7a, 0x43, 0xff, 0xb0, 0x7b, 0x44, 0xff, 0xb1, 0x7d, 0x45, 0xff, 0xb3, 0x7e, 0x45, 0xff, 0xb5, 0x80, 0x46, 0xff, 0xb5, 0x80, 0x47, 0xff, 0xb5, 0x80, 0x46, 0xff, 0xb2, 0x7c, 0x43, 0xff, 0xb3, 0x7e, 0x45, 0xff, 0xb7, 0x80, 0x44, 0xff, 0xb8, 0x82, 0x46, 0xff, 0xba, 0x84, 0x48, 0xff, 0xbc, 0x86, 0x4a, 0xff, 0xbe, 0x89, 0x4e, 0xff, 0xc0, 0x8c, 0x51, 0xff, 0xc4, 0x8f, 0x52, 0xff, 0xc7, 0x92, 0x53, 0xff, 0xcb, 0x92, 0x53, 0xff, 0xcf, 0x94, 0x53, 0xff, 0xd2, 0x94, 0x53, 0xff, 0xd2, 0x93, 0x54, 0xff, 0xd7, 0x93, 0x53, 0xff, 0xdc, 0x95, 0x54, 0xff, 0xde, 0x97, 0x57, 0xff, 0xdd, 0x95, 0x57, 0xff, 0xdd, 0x96, 0x56, 0xff, 0xdf, 0x97, 0x56, 0xff, 0xe0, 0x97, 0x57, 0xff, 0xdc, 0x96, 0x58, 0xff, 0xd2, 0x8e, 0x54, 0xff, 0xc9, 0x88, 0x50, 0xff, 0xbf, 0x83, 0x4e, 0xff, 0xb9, 0x81, 0x4b, 0xff, 0xbb, 0x82, 0x4c, 0xff, 0xbc, 0x82, 0x4e, 0xff, 0xbe, 0x83, 0x4d, 0xff, 0xbe, 0x82, 0x4d, 0xff, 0xbe, 0x82, 0x4e, 0xff, 0xbf, 0x84, 0x4d, 0xff, 0xc1, 0x86, 0x4e, 0xff, 0xc1, 0x86, 0x4f, 0xff, 0xc2, 0x87, 0x4f, 0xff, 0xc5, 0x8a, 0x52, 0xff, 0xc5, 0x8b, 0x52, 0xff, 0xc8, 0x8f, 0x55, 0xff, 0xca, 0x92, 0x58, 0xff, 0xcc, 0x95, 0x5a, 0xff, 0xce, 0x98, 0x5d, 0xff, 0xd0, 0x99, 0x60, 0xff, 0xd1, 0x9a, 0x64, 0xff, 0xd4, 0x9b, 0x66, 0xff, 0xd8, 0x9d, 0x68, 0xff, 0xdd, 0xa1, 0x6c, 0xff, 0xe0, 0xa3, 0x6b, 0xff, 0xdf, 0xa2, 0x69, 0xff, 0xde, 0xa4, 0x69, 0xff, 0xdf, 0xa4, 0x68, 0xff, 0xdf, 0xa1, 0x65, 0xff, 0xdf, 0x9f, 0x62, 0xff, 0xdf, 0x9c, 0x60, 0xff, 0xdf, 0x97, 0x5d, 0xff, 0xdc, 0x95, 0x5b, 0xff, 0xdd, 0x99, 0x5e, 0xff, 0xdc, 0x9b, 0x5f, 0xff, 0xdd, 0x9e, 0x5f, 0xff, 0xdd, 0x9f, 0x60, 0xff, 0xdd, 0xa0, 0x60, 0xff, 0xde, 0xa1, 0x61, 0xff, 0xdf, 0xa4, 0x62, 0xff, 0xdf, 0xa3, 0x62, 0xff, 0xdf, 0xa1, 0x63, 0xff, 0xdf, 0xa1, 0x64, 0xff, 0xdf, 0xa1, 0x64, 0xff, 0xd6, 0x9e, 0x63, 0xff, 0xd1, 0x9c, 0x62, 0xff, 0xda, 0x9d, 0x65, 0xff, 0xde, 0x9e, 0x68, 0xff, 0xe0, 0x9d, 0x68, 0xff, 0xdf, 0x9d, 0x68, 0xff, 0xdf, 0x9c, 0x68, 0xff, 0xe0, 0x9d, 0x68, 0xff, 0xe0, 0x9d, 0x68, 0xff, 0xe0, 0x9f, 0x69, 0xff, 0xe0, 0xa3, 0x6f, 0xff, 0xe0, 0xb2, 0x76, 0xff, 0xdd, 0xc2, 0x7e, 0xff, 0xd9, 0xc7, 0x87, 0xff, 0xdc, 0xc7, 0x96, 0xff, 0xdf, 0xc7, 0xab, 0xff, 0xe0, 0xc8, 0xb0, 0xff, 0xe0, 0xc8, 0xb0, 0xff, 0xe0, 0xc8, 0xb0, 0xff, 0xe0, 0xc8, 0xb0, 0xff, 0xe0, 0xc7, 0xad, 0xff, 0xde, 0xc7, 0x9a, 0xff, 0xd9, 0xc8, 0x8a, 0xff, 0xdc, 0xc2, 0x7e, 0xff, 0xe0, 0xb0, 0x72, 0xff, 0xdf, 0xa2, 0x69, 0xff, 0xd9, 0x98, 0x5f, 0xff, 0xc9, 0x8c, 0x57, 0xff, 0xc0, 0x85, 0x51, 0xff, 0xbf, 0x83, 0x50, 0xff, 0xb7, 0x7c, 0x49, 0xff, 0xb4, 0x76, 0x44, 0xff, 0xb0, 0x73, 0x40, 0xff, 0xad, 0x6f, 0x3c, 0xff, 0xaa, 0x6c, 0x3b, 0xff, 0xa8, 0x69, 0x3a, 0xff, 0xa7, 0x69, 0x3a, 0xff, 0xa6, 0x68, 0x39, 0xff, 0xa3, 0x65, 0x36, 0xff, 0xa0, 0x63, 0x35, 0xff, 0x9e, 0x61, 0x34, 0xff, 0x99, 0x5c, 0x33, 0xff, 0x97, 0x5b, 0x33, 0xff, 0x95, 0x58, 0x32, 0xff, 0x93, 0x56, 0x32, 0xff, 0x91, 0x54, 0x31, 0xff, 0x90, 0x54, 0x2f, 0xff, 0x90, 0x54, 0x2f, 0xff, 0x90, 0x54, 0x2f, 0xff, 0x91, 0x56, 0x31, 0xff, 0x90, 0x56, 0x31, 0xff, 0x90, 0x54, 0x2f, 0xff, 0x8f, 0x53, 0x2e, 0xff, 0x8e, 0x52, 0x2c, 0xff, 0x8d, 0x51, 0x2c, 0xff, 0x8c, 0x51, 0x2a, 0xff, 0x8a, 0x50, 0x2a, 0xff, 0x8a, 0x50, 0x2a, 0xff, 0x89, 0x4d, 0x29, 0xff, 0x87, 0x4d, 0x28, 0xff, 0x87, 0x4e, 0x27, 0xff, 0x84, 0x4b, 0x25, 0xff, 0x85, 0x4b, 0x25, 0xff, 0x84, 0x4a, 0x25, 0xff, 0x82, 0x4b, 0x25, 0xff, 0x82, 0x4b, 0x25, 0xff, 0x82, 0x4b, 0x24, 0xff, 0x82, 0x4b, 0x25, 0xff, 0x81, 0x4b, 0x23, 0xff, 0x83, 0x4b, 0x25, 0xff, 0x83, 0x4b, 0x25, 0xff, 0x84, 0x4b, 0x25, 0xff, 0x83, 0x4c, 0x25, 0xff, 0x84, 0x4b, 0x26, 0xff, 0x83, 0x4b, 0x25, 0xff, 0x84, 0x4b, 0x25, 0xff, 0x85, 0x4b, 0x27, 0xff, 0x86, 0x4c, 0x28, 0xff, 0x87, 0x4b, 0x27, 0xff, + 0x87, 0x4c, 0x28, 0xff, 0x87, 0x4d, 0x28, 0xff, 0x87, 0x4e, 0x2a, 0xff, 0x89, 0x4f, 0x2b, 0xff, 0x8a, 0x4f, 0x2a, 0xff, 0x8a, 0x51, 0x2c, 0xff, 0x8d, 0x53, 0x2e, 0xff, 0x8e, 0x52, 0x2f, 0xff, 0x92, 0x57, 0x32, 0xff, 0x94, 0x59, 0x34, 0xff, 0x95, 0x5a, 0x34, 0xff, 0x95, 0x59, 0x33, 0xff, 0x8e, 0x51, 0x2b, 0xff, 0x90, 0x55, 0x2e, 0xff, 0x92, 0x56, 0x2f, 0xff, 0x93, 0x57, 0x30, 0xff, 0x95, 0x59, 0x32, 0xff, 0x96, 0x5a, 0x33, 0xff, 0x98, 0x5c, 0x33, 0xff, 0x9a, 0x5d, 0x34, 0xff, 0xa3, 0x67, 0x3a, 0xff, 0xb6, 0x7c, 0x4a, 0xff, 0xb9, 0x82, 0x4f, 0xff, 0xba, 0x8a, 0x57, 0xff, 0xbb, 0x8d, 0x5d, 0xff, 0xbe, 0x8f, 0x62, 0xff, 0xcf, 0x9a, 0x6f, 0xff, 0xc9, 0x96, 0x6f, 0xff, 0xc2, 0x95, 0x6d, 0xff, 0xc6, 0x96, 0x6a, 0xff, 0xc9, 0x9a, 0x62, 0xff, 0xcd, 0x93, 0x59, 0xff, 0xcf, 0x8f, 0x55, 0xff, 0xce, 0x8c, 0x53, 0xff, 0xce, 0x8c, 0x52, 0xff, 0xd5, 0x92, 0x56, 0xff, 0xdf, 0x95, 0x5b, 0xff, 0xdf, 0x9b, 0x5f, 0xff, 0xdc, 0x9c, 0x61, 0xff, 0xb7, 0x7b, 0x4b, 0xff, 0xb7, 0x7a, 0x4b, 0xff, 0xb5, 0x7b, 0x4a, 0xff, 0xb6, 0x7c, 0x4b, 0xff, 0xb5, 0x7f, 0x4d, 0xff, 0xb6, 0x80, 0x4f, 0xff, 0xb5, 0x7f, 0x51, 0xff, 0xb5, 0x81, 0x51, 0xff, 0xb3, 0x7e, 0x4f, 0xff, 0xb5, 0x80, 0x4d, 0xff, 0xb4, 0x7d, 0x4b, 0xff, 0xb5, 0x7d, 0x4a, 0xff, 0xb7, 0x80, 0x4b, 0xff, 0xb8, 0x81, 0x4c, 0xff, 0xb9, 0x80, 0x4b, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb7, 0x80, 0x4a, 0xff, 0xb8, 0x82, 0x4c, 0xff, 0xb8, 0x83, 0x4d, 0xff, 0xb6, 0x82, 0x4e, 0xff, 0xb5, 0x85, 0x50, 0xff, 0xb5, 0x82, 0x51, 0xff, 0xb1, 0x7d, 0x4d, 0xff, 0xb0, 0x7b, 0x48, 0xff, 0xb1, 0x7a, 0x47, 0xff, 0xb2, 0x7a, 0x45, 0xff, 0xb1, 0x79, 0x44, 0xff, 0xb0, 0x78, 0x46, 0xff, 0xb0, 0x79, 0x46, 0xff, 0xaf, 0x78, 0x44, 0xff, 0xae, 0x76, 0x43, 0xff, 0xad, 0x74, 0x43, 0xff, 0xac, 0x72, 0x42, 0xff, 0xab, 0x72, 0x43, 0xff, 0xa8, 0x73, 0x46, 0xff, 0xa7, 0x73, 0x44, 0xff, 0xa9, 0x75, 0x45, 0xff, 0xa9, 0x77, 0x44, 0xff, 0xaa, 0x77, 0x44, 0xff, 0xab, 0x78, 0x43, 0xff, 0xac, 0x7a, 0x45, 0xff, 0xad, 0x7b, 0x46, 0xff, 0xae, 0x7b, 0x44, 0xff, 0xaf, 0x7c, 0x44, 0xff, 0xb2, 0x7d, 0x45, 0xff, 0xb3, 0x7e, 0x44, 0xff, 0xb1, 0x7c, 0x44, 0xff, 0xae, 0x78, 0x41, 0xff, 0xb1, 0x7a, 0x41, 0xff, 0xb3, 0x7d, 0x42, 0xff, 0xb5, 0x7e, 0x43, 0xff, 0xb7, 0x7f, 0x42, 0xff, 0xb9, 0x81, 0x46, 0xff, 0xbb, 0x85, 0x4a, 0xff, 0xbd, 0x87, 0x4c, 0xff, 0xbf, 0x89, 0x4f, 0xff, 0xc2, 0x8c, 0x51, 0xff, 0xc6, 0x8f, 0x52, 0xff, 0xc9, 0x8f, 0x53, 0xff, 0xc8, 0x8d, 0x52, 0xff, 0xca, 0x8e, 0x51, 0xff, 0xcf, 0x8f, 0x51, 0xff, 0xd4, 0x90, 0x52, 0xff, 0xda, 0x94, 0x54, 0xff, 0xdf, 0x99, 0x57, 0xff, 0xdf, 0x99, 0x58, 0xff, 0xdd, 0x97, 0x57, 0xff, 0xd9, 0x94, 0x57, 0xff, 0xcc, 0x8b, 0x51, 0xff, 0xc5, 0x83, 0x4e, 0xff, 0xca, 0x87, 0x51, 0xff, 0xc7, 0x86, 0x4f, 0xff, 0xbe, 0x82, 0x4c, 0xff, 0xba, 0x82, 0x4d, 0xff, 0xbd, 0x84, 0x4f, 0xff, 0xbd, 0x83, 0x4e, 0xff, 0xbd, 0x84, 0x4d, 0xff, 0xbd, 0x84, 0x4e, 0xff, 0xbf, 0x86, 0x4f, 0xff, 0xc1, 0x86, 0x4e, 0xff, 0xc1, 0x86, 0x4e, 0xff, 0xc2, 0x88, 0x50, 0xff, 0xc3, 0x87, 0x4f, 0xff, 0xc4, 0x88, 0x4f, 0xff, 0xc6, 0x8b, 0x50, 0xff, 0xc7, 0x8c, 0x52, 0xff, 0xc9, 0x8f, 0x55, 0xff, 0xcb, 0x93, 0x57, 0xff, 0xcd, 0x95, 0x59, 0xff, 0xcf, 0x98, 0x5c, 0xff, 0xd1, 0x9a, 0x5f, 0xff, 0xd4, 0x9b, 0x62, 0xff, 0xd6, 0x9d, 0x64, 0xff, 0xdc, 0xa2, 0x68, 0xff, 0xe0, 0xa4, 0x69, 0xff, 0xe0, 0xa4, 0x68, 0xff, 0xdf, 0xa4, 0x67, 0xff, 0xde, 0xa4, 0x66, 0xff, 0xe0, 0xa3, 0x66, 0xff, 0xdf, 0x9d, 0x63, 0xff, 0xde, 0x99, 0x5f, 0xff, 0xdc, 0x9a, 0x5f, 0xff, 0xde, 0xa0, 0x61, 0xff, 0xdf, 0xa0, 0x62, 0xff, 0xde, 0x9b, 0x5f, 0xff, 0xdf, 0x99, 0x5c, 0xff, 0xde, 0x97, 0x58, 0xff, 0xdd, 0x9a, 0x5a, 0xff, 0xde, 0x9f, 0x61, 0xff, 0xde, 0xa2, 0x61, 0xff, 0xde, 0xa1, 0x61, 0xff, 0xde, 0xa0, 0x60, 0xff, 0xde, 0x9f, 0x60, 0xff, 0xdf, 0x9f, 0x60, 0xff, 0xe0, 0xa0, 0x62, 0xff, 0xe0, 0xa3, 0x67, 0xff, 0xdf, 0xa4, 0x69, 0xff, 0xdf, 0xa0, 0x68, 0xff, 0xdf, 0x9c, 0x68, 0xff, 0xde, 0x9b, 0x69, 0xff, 0xdf, 0x9c, 0x68, 0xff, 0xdf, 0x9a, 0x68, 0xff, 0xdf, 0x9b, 0x68, 0xff, 0xe0, 0x9d, 0x69, 0xff, 0xe0, 0xa0, 0x6b, 0xff, 0xe0, 0xa9, 0x71, 0xff, 0xdf, 0xbb, 0x79, 0xff, 0xda, 0xc6, 0x80, 0xff, 0xda, 0xc8, 0x8c, 0xff, 0xde, 0xc7, 0x9e, 0xff, 0xe0, 0xc8, 0xae, 0xff, 0xe0, 0xc8, 0xb1, 0xff, 0xe0, 0xc8, 0xb0, 0xff, 0xe0, 0xc8, 0xb0, 0xff, 0xe0, 0xc8, 0xb2, 0xff, 0xdf, 0xc8, 0xa9, 0xff, 0xdc, 0xc8, 0x92, 0xff, 0xda, 0xc9, 0x84, 0xff, 0xdc, 0xbb, 0x78, 0xff, 0xde, 0xa7, 0x6f, 0xff, 0xdf, 0x9e, 0x67, 0xff, 0xd3, 0x93, 0x5c, 0xff, 0xc4, 0x8a, 0x53, 0xff, 0xbd, 0x82, 0x50, 0xff, 0xbb, 0x7f, 0x4d, 0xff, 0xb5, 0x79, 0x47, 0xff, 0xb1, 0x75, 0x42, 0xff, 0xaf, 0x71, 0x3e, 0xff, 0xad, 0x70, 0x3d, 0xff, 0xac, 0x6f, 0x3b, 0xff, 0xaa, 0x6b, 0x3b, 0xff, 0xa7, 0x69, 0x3a, 0xff, 0xa6, 0x69, 0x39, 0xff, 0xa5, 0x67, 0x37, 0xff, 0x9a, 0x5c, 0x33, 0xff, 0x9a, 0x5d, 0x33, 0xff, 0x97, 0x5b, 0x33, 0xff, 0x95, 0x57, 0x32, 0xff, 0x93, 0x57, 0x32, 0xff, 0x91, 0x55, 0x31, 0xff, 0x91, 0x54, 0x31, 0xff, 0x91, 0x54, 0x30, 0xff, 0x91, 0x56, 0x32, 0xff, 0x91, 0x56, 0x32, 0xff, 0x90, 0x54, 0x30, 0xff, 0x8f, 0x54, 0x2e, 0xff, 0x8e, 0x53, 0x2d, 0xff, 0x8d, 0x51, 0x2c, 0xff, 0x8b, 0x50, 0x2a, 0xff, 0x8b, 0x50, 0x2a, 0xff, 0x8b, 0x50, 0x2a, 0xff, 0x88, 0x4e, 0x29, 0xff, 0x87, 0x4d, 0x28, 0xff, 0x87, 0x4d, 0x27, 0xff, 0x87, 0x4c, 0x27, 0xff, 0x85, 0x4c, 0x27, 0xff, 0x85, 0x4b, 0x24, 0xff, 0x84, 0x4a, 0x25, 0xff, 0x84, 0x4b, 0x25, 0xff, 0x82, 0x4a, 0x25, 0xff, 0x83, 0x49, 0x25, 0xff, 0x82, 0x4b, 0x25, 0xff, 0x83, 0x48, 0x25, 0xff, 0x83, 0x4a, 0x24, 0xff, 0x84, 0x4b, 0x25, 0xff, 0x84, 0x4b, 0x25, 0xff, 0x84, 0x4b, 0x25, 0xff, 0x85, 0x4c, 0x27, 0xff, 0x85, 0x4b, 0x25, 0xff, 0x84, 0x4d, 0x27, 0xff, 0x86, 0x4d, 0x27, 0xff, 0x87, 0x4c, 0x28, 0xff, 0x87, 0x4d, 0x29, 0xff, + 0x87, 0x4d, 0x28, 0xff, 0x87, 0x4e, 0x2a, 0xff, 0x89, 0x4e, 0x2b, 0xff, 0x8a, 0x50, 0x2b, 0xff, 0x8a, 0x51, 0x2c, 0xff, 0x8c, 0x51, 0x2d, 0xff, 0x8e, 0x52, 0x2f, 0xff, 0x8f, 0x53, 0x2f, 0xff, 0x93, 0x58, 0x33, 0xff, 0x95, 0x5a, 0x34, 0xff, 0x96, 0x5b, 0x34, 0xff, 0x8e, 0x52, 0x2d, 0xff, 0x90, 0x53, 0x2c, 0xff, 0x91, 0x54, 0x2e, 0xff, 0x91, 0x55, 0x2e, 0xff, 0x94, 0x57, 0x30, 0xff, 0x95, 0x59, 0x32, 0xff, 0x96, 0x59, 0x32, 0xff, 0x97, 0x5b, 0x33, 0xff, 0xa0, 0x64, 0x37, 0xff, 0xac, 0x72, 0x40, 0xff, 0xb2, 0x77, 0x45, 0xff, 0xb8, 0x7f, 0x4c, 0xff, 0xb9, 0x88, 0x53, 0xff, 0xbb, 0x8d, 0x5a, 0xff, 0xc6, 0x96, 0x66, 0xff, 0xcb, 0x98, 0x6d, 0xff, 0xcf, 0x99, 0x6f, 0xff, 0xc9, 0x98, 0x6e, 0xff, 0xc2, 0x94, 0x6b, 0xff, 0xc8, 0x99, 0x65, 0xff, 0xca, 0x94, 0x5a, 0xff, 0xcf, 0x91, 0x55, 0xff, 0xd1, 0x8e, 0x53, 0xff, 0xce, 0x8c, 0x51, 0xff, 0xd4, 0x8e, 0x55, 0xff, 0xdf, 0x96, 0x5a, 0xff, 0xdf, 0x9b, 0x5f, 0xff, 0xdc, 0x9f, 0x63, 0xff, 0xbd, 0x82, 0x4f, 0xff, 0xb8, 0x7c, 0x4c, 0xff, 0xb9, 0x7d, 0x4d, 0xff, 0xb9, 0x7f, 0x4d, 0xff, 0xb8, 0x81, 0x4f, 0xff, 0xb8, 0x82, 0x51, 0xff, 0xb6, 0x82, 0x53, 0xff, 0xb6, 0x83, 0x55, 0xff, 0xb6, 0x84, 0x55, 0xff, 0xb6, 0x84, 0x52, 0xff, 0xb6, 0x83, 0x50, 0xff, 0xb8, 0x82, 0x4e, 0xff, 0xb9, 0x82, 0x4e, 0xff, 0xb9, 0x82, 0x4e, 0xff, 0xba, 0x82, 0x4c, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xba, 0x82, 0x4a, 0xff, 0xb8, 0x81, 0x4a, 0xff, 0xb9, 0x82, 0x4c, 0xff, 0xba, 0x84, 0x4e, 0xff, 0xb9, 0x85, 0x4e, 0xff, 0xb9, 0x85, 0x4f, 0xff, 0xb8, 0x86, 0x51, 0xff, 0xb7, 0x84, 0x52, 0xff, 0xb5, 0x82, 0x52, 0xff, 0xb3, 0x7d, 0x4c, 0xff, 0xb3, 0x7d, 0x49, 0xff, 0xb2, 0x7b, 0x47, 0xff, 0xb2, 0x7a, 0x45, 0xff, 0xb2, 0x79, 0x46, 0xff, 0xb2, 0x7a, 0x47, 0xff, 0xb1, 0x79, 0x47, 0xff, 0xaf, 0x78, 0x45, 0xff, 0xae, 0x75, 0x44, 0xff, 0xae, 0x75, 0x43, 0xff, 0xac, 0x74, 0x44, 0xff, 0xaa, 0x75, 0x49, 0xff, 0xaa, 0x74, 0x46, 0xff, 0xa9, 0x73, 0x45, 0xff, 0xaa, 0x76, 0x45, 0xff, 0xab, 0x78, 0x46, 0xff, 0xac, 0x79, 0x46, 0xff, 0xad, 0x7a, 0x45, 0xff, 0xad, 0x79, 0x44, 0xff, 0xad, 0x79, 0x43, 0xff, 0xaf, 0x7a, 0x42, 0xff, 0xb0, 0x7b, 0x44, 0xff, 0xae, 0x79, 0x43, 0xff, 0xac, 0x76, 0x40, 0xff, 0xae, 0x78, 0x41, 0xff, 0xb0, 0x7a, 0x42, 0xff, 0xb3, 0x7c, 0x42, 0xff, 0xb4, 0x7d, 0x44, 0xff, 0xb6, 0x7f, 0x45, 0xff, 0xb8, 0x81, 0x48, 0xff, 0xb9, 0x83, 0x4b, 0xff, 0xbb, 0x84, 0x4b, 0xff, 0xbe, 0x86, 0x4c, 0xff, 0xc0, 0x89, 0x4d, 0xff, 0xc1, 0x8a, 0x4e, 0xff, 0xc2, 0x8b, 0x4e, 0xff, 0xc5, 0x8c, 0x50, 0xff, 0xc9, 0x8d, 0x51, 0xff, 0xcd, 0x8e, 0x50, 0xff, 0xd1, 0x8f, 0x51, 0xff, 0xd9, 0x92, 0x52, 0xff, 0xdd, 0x95, 0x54, 0xff, 0xd4, 0x92, 0x55, 0xff, 0xc5, 0x8a, 0x51, 0xff, 0xbd, 0x83, 0x4e, 0xff, 0xc2, 0x83, 0x4d, 0xff, 0xc7, 0x86, 0x4f, 0xff, 0xca, 0x86, 0x51, 0xff, 0xc5, 0x84, 0x4f, 0xff, 0xbc, 0x80, 0x49, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xbc, 0x83, 0x4e, 0xff, 0xbc, 0x84, 0x4e, 0xff, 0xbe, 0x85, 0x4e, 0xff, 0xbf, 0x85, 0x4f, 0xff, 0xc0, 0x85, 0x4f, 0xff, 0xc1, 0x87, 0x4f, 0xff, 0xc1, 0x86, 0x4e, 0xff, 0xc2, 0x86, 0x4e, 0xff, 0xc4, 0x88, 0x4e, 0xff, 0xc4, 0x89, 0x50, 0xff, 0xc6, 0x89, 0x51, 0xff, 0xc8, 0x8b, 0x52, 0xff, 0xc9, 0x8d, 0x52, 0xff, 0xc9, 0x90, 0x54, 0xff, 0xcc, 0x91, 0x55, 0xff, 0xce, 0x93, 0x56, 0xff, 0xd0, 0x97, 0x5a, 0xff, 0xd2, 0x99, 0x5d, 0xff, 0xd4, 0x9b, 0x5f, 0xff, 0xda, 0xa1, 0x65, 0xff, 0xdf, 0xa5, 0x67, 0xff, 0xdf, 0xa4, 0x66, 0xff, 0xdf, 0xa3, 0x65, 0xff, 0xe0, 0xa1, 0x64, 0xff, 0xdf, 0x9e, 0x62, 0xff, 0xdf, 0x9f, 0x61, 0xff, 0xde, 0xa1, 0x63, 0xff, 0xde, 0xa3, 0x64, 0xff, 0xdd, 0xa2, 0x62, 0xff, 0xde, 0x9f, 0x61, 0xff, 0xdd, 0x9d, 0x60, 0xff, 0xde, 0x9c, 0x5d, 0xff, 0xde, 0x98, 0x5a, 0xff, 0xde, 0x92, 0x57, 0xff, 0xdd, 0x92, 0x56, 0xff, 0xde, 0x98, 0x5a, 0xff, 0xde, 0x9b, 0x5d, 0xff, 0xde, 0x9e, 0x5f, 0xff, 0xe0, 0xa0, 0x62, 0xff, 0xdf, 0xa1, 0x61, 0xff, 0xdd, 0xa0, 0x61, 0xff, 0xdf, 0xa0, 0x61, 0xff, 0xe0, 0xa1, 0x65, 0xff, 0xe0, 0xa5, 0x69, 0xff, 0xdf, 0xa3, 0x69, 0xff, 0xde, 0x9f, 0x69, 0xff, 0xdf, 0x9c, 0x69, 0xff, 0xdf, 0x9c, 0x69, 0xff, 0xde, 0x9c, 0x69, 0xff, 0xdf, 0x9c, 0x69, 0xff, 0xe0, 0x9f, 0x69, 0xff, 0xdf, 0xa2, 0x6c, 0xff, 0xe0, 0xac, 0x71, 0xff, 0xde, 0xbf, 0x79, 0xff, 0xd8, 0xc7, 0x81, 0xff, 0xda, 0xc7, 0x8b, 0xff, 0xde, 0xc7, 0x9c, 0xff, 0xe0, 0xc8, 0xad, 0xff, 0xe0, 0xc8, 0xb0, 0xff, 0xe0, 0xc8, 0xb1, 0xff, 0xe0, 0xc8, 0xb1, 0xff, 0xe0, 0xc8, 0xaf, 0xff, 0xde, 0xc8, 0x9b, 0xff, 0xd9, 0xc8, 0x8a, 0xff, 0xdd, 0xc5, 0x7f, 0xff, 0xdf, 0xb3, 0x73, 0xff, 0xe0, 0xa3, 0x69, 0xff, 0xdb, 0x9a, 0x61, 0xff, 0xcd, 0x92, 0x5a, 0xff, 0xc0, 0x87, 0x53, 0xff, 0xba, 0x7f, 0x4d, 0xff, 0xb8, 0x7d, 0x4a, 0xff, 0xb5, 0x7a, 0x47, 0xff, 0xb2, 0x77, 0x43, 0xff, 0xaf, 0x73, 0x3f, 0xff, 0xae, 0x6f, 0x3e, 0xff, 0xac, 0x6d, 0x3b, 0xff, 0xa9, 0x6b, 0x3b, 0xff, 0xa8, 0x68, 0x3a, 0xff, 0xa6, 0x67, 0x38, 0xff, 0x9c, 0x5e, 0x35, 0xff, 0x99, 0x5b, 0x33, 0xff, 0x97, 0x5b, 0x33, 0xff, 0x95, 0x58, 0x32, 0xff, 0x94, 0x57, 0x32, 0xff, 0x92, 0x56, 0x31, 0xff, 0x93, 0x57, 0x31, 0xff, 0x93, 0x57, 0x32, 0xff, 0x92, 0x56, 0x32, 0xff, 0x91, 0x56, 0x32, 0xff, 0x91, 0x54, 0x2f, 0xff, 0x90, 0x53, 0x2e, 0xff, 0x8e, 0x52, 0x2c, 0xff, 0x8e, 0x51, 0x2c, 0xff, 0x8d, 0x51, 0x2b, 0xff, 0x8b, 0x50, 0x2a, 0xff, 0x8b, 0x50, 0x29, 0xff, 0x8a, 0x4e, 0x29, 0xff, 0x89, 0x4e, 0x28, 0xff, 0x87, 0x4e, 0x27, 0xff, 0x88, 0x4d, 0x27, 0xff, 0x86, 0x4d, 0x27, 0xff, 0x85, 0x4c, 0x26, 0xff, 0x84, 0x4b, 0x26, 0xff, 0x84, 0x49, 0x24, 0xff, 0x83, 0x4b, 0x24, 0xff, 0x82, 0x4a, 0x24, 0xff, 0x83, 0x49, 0x24, 0xff, 0x82, 0x49, 0x23, 0xff, 0x83, 0x4a, 0x25, 0xff, 0x84, 0x4b, 0x25, 0xff, 0x83, 0x4a, 0x26, 0xff, 0x84, 0x4c, 0x27, 0xff, 0x86, 0x4b, 0x26, 0xff, 0x85, 0x4c, 0x27, 0xff, 0x85, 0x4d, 0x27, 0xff, 0x86, 0x4d, 0x27, 0xff, 0x87, 0x4d, 0x28, 0xff, 0x87, 0x4d, 0x28, 0xff, + 0x88, 0x4e, 0x28, 0xff, 0x89, 0x4f, 0x2a, 0xff, 0x8a, 0x50, 0x2a, 0xff, 0x8b, 0x51, 0x2b, 0xff, 0x8c, 0x50, 0x2d, 0xff, 0x8d, 0x53, 0x2e, 0xff, 0x8e, 0x53, 0x2f, 0xff, 0x90, 0x55, 0x30, 0xff, 0x94, 0x59, 0x33, 0xff, 0x96, 0x5b, 0x35, 0xff, 0x90, 0x53, 0x2c, 0xff, 0x8e, 0x53, 0x2c, 0xff, 0x90, 0x53, 0x2e, 0xff, 0x90, 0x53, 0x2f, 0xff, 0x91, 0x55, 0x2f, 0xff, 0x91, 0x56, 0x30, 0xff, 0x94, 0x58, 0x31, 0xff, 0x95, 0x58, 0x32, 0xff, 0x9e, 0x62, 0x35, 0xff, 0xa6, 0x6a, 0x3a, 0xff, 0xaa, 0x6f, 0x3e, 0xff, 0xaf, 0x74, 0x42, 0xff, 0xb5, 0x7c, 0x49, 0xff, 0xb9, 0x82, 0x50, 0xff, 0xc1, 0x92, 0x5d, 0xff, 0xc6, 0x96, 0x65, 0xff, 0xc9, 0x96, 0x6c, 0xff, 0xcc, 0x98, 0x6e, 0xff, 0xd0, 0x9a, 0x71, 0xff, 0xcc, 0x9a, 0x6e, 0xff, 0xc4, 0x96, 0x65, 0xff, 0xca, 0x96, 0x5d, 0xff, 0xce, 0x92, 0x56, 0xff, 0xd0, 0x8f, 0x54, 0xff, 0xcd, 0x8c, 0x52, 0xff, 0xd5, 0x8f, 0x55, 0xff, 0xdc, 0x95, 0x58, 0xff, 0xdf, 0x99, 0x5e, 0xff, 0xdd, 0x9f, 0x62, 0xff, 0xc3, 0x8b, 0x55, 0xff, 0xb9, 0x7d, 0x4d, 0xff, 0xbb, 0x80, 0x4e, 0xff, 0xbb, 0x82, 0x4f, 0xff, 0xb9, 0x82, 0x50, 0xff, 0xb9, 0x85, 0x53, 0xff, 0xb8, 0x87, 0x55, 0xff, 0xb8, 0x88, 0x57, 0xff, 0xb8, 0x86, 0x57, 0xff, 0xb9, 0x88, 0x57, 0xff, 0xb9, 0x88, 0x53, 0xff, 0xb9, 0x87, 0x52, 0xff, 0xba, 0x86, 0x51, 0xff, 0xbb, 0x86, 0x4f, 0xff, 0xbc, 0x84, 0x4e, 0xff, 0xbc, 0x82, 0x4b, 0xff, 0xbc, 0x82, 0x4b, 0xff, 0xbc, 0x83, 0x4b, 0xff, 0xbc, 0x86, 0x4e, 0xff, 0xbc, 0x87, 0x4f, 0xff, 0xbb, 0x86, 0x4f, 0xff, 0xba, 0x86, 0x50, 0xff, 0xba, 0x88, 0x52, 0xff, 0xb9, 0x85, 0x52, 0xff, 0xb8, 0x84, 0x52, 0xff, 0xb7, 0x83, 0x52, 0xff, 0xb3, 0x7e, 0x4d, 0xff, 0xb3, 0x7e, 0x48, 0xff, 0xb3, 0x7c, 0x47, 0xff, 0xb3, 0x79, 0x47, 0xff, 0xb2, 0x7b, 0x46, 0xff, 0xb2, 0x7a, 0x47, 0xff, 0xb2, 0x7a, 0x47, 0xff, 0xb0, 0x76, 0x45, 0xff, 0xae, 0x75, 0x44, 0xff, 0xae, 0x76, 0x47, 0xff, 0xab, 0x76, 0x49, 0xff, 0xac, 0x78, 0x49, 0xff, 0xab, 0x75, 0x47, 0xff, 0xaa, 0x74, 0x47, 0xff, 0xab, 0x76, 0x47, 0xff, 0xac, 0x77, 0x46, 0xff, 0xad, 0x7a, 0x46, 0xff, 0xad, 0x79, 0x41, 0xff, 0xae, 0x78, 0x40, 0xff, 0xad, 0x79, 0x40, 0xff, 0xab, 0x75, 0x40, 0xff, 0xaa, 0x73, 0x40, 0xff, 0xac, 0x76, 0x41, 0xff, 0xad, 0x77, 0x42, 0xff, 0xaf, 0x77, 0x42, 0xff, 0xb0, 0x7a, 0x44, 0xff, 0xb2, 0x7c, 0x45, 0xff, 0xb5, 0x80, 0x46, 0xff, 0xb6, 0x81, 0x47, 0xff, 0xb7, 0x81, 0x4a, 0xff, 0xba, 0x83, 0x4a, 0xff, 0xbb, 0x84, 0x4a, 0xff, 0xbc, 0x84, 0x4a, 0xff, 0xbd, 0x86, 0x4b, 0xff, 0xbf, 0x88, 0x4c, 0xff, 0xc3, 0x8b, 0x4f, 0xff, 0xc6, 0x8c, 0x50, 0xff, 0xcb, 0x8d, 0x50, 0xff, 0xd4, 0x91, 0x53, 0xff, 0xcf, 0x8d, 0x51, 0xff, 0xc0, 0x83, 0x4b, 0xff, 0xbb, 0x80, 0x4b, 0xff, 0xbc, 0x83, 0x50, 0xff, 0xbf, 0x85, 0x51, 0xff, 0xc2, 0x86, 0x50, 0xff, 0xc4, 0x86, 0x50, 0xff, 0xc8, 0x86, 0x52, 0xff, 0xc3, 0x83, 0x4d, 0xff, 0xba, 0x7e, 0x47, 0xff, 0xb8, 0x7d, 0x46, 0xff, 0xbb, 0x81, 0x4b, 0xff, 0xbe, 0x86, 0x4f, 0xff, 0xbe, 0x87, 0x4e, 0xff, 0xbe, 0x86, 0x4f, 0xff, 0xbf, 0x88, 0x50, 0xff, 0xc1, 0x89, 0x50, 0xff, 0xc1, 0x88, 0x4f, 0xff, 0xc3, 0x89, 0x50, 0xff, 0xc5, 0x88, 0x4f, 0xff, 0xc5, 0x8a, 0x50, 0xff, 0xc7, 0x8b, 0x51, 0xff, 0xc8, 0x8a, 0x51, 0xff, 0xc8, 0x8c, 0x51, 0xff, 0xc9, 0x8c, 0x51, 0xff, 0xcc, 0x8e, 0x52, 0xff, 0xcd, 0x91, 0x54, 0xff, 0xce, 0x91, 0x57, 0xff, 0xd2, 0x96, 0x59, 0xff, 0xd3, 0x97, 0x5c, 0xff, 0xd7, 0x9a, 0x5f, 0xff, 0xde, 0xa0, 0x61, 0xff, 0xe0, 0xa2, 0x64, 0xff, 0xe0, 0xa1, 0x64, 0xff, 0xdf, 0xa0, 0x61, 0xff, 0xde, 0xa5, 0x65, 0xff, 0xde, 0xa7, 0x67, 0xff, 0xdf, 0xa7, 0x66, 0xff, 0xdc, 0xa1, 0x62, 0xff, 0xda, 0x98, 0x5b, 0xff, 0xda, 0x92, 0x57, 0xff, 0xdb, 0x91, 0x57, 0xff, 0xde, 0x93, 0x58, 0xff, 0xdc, 0x90, 0x57, 0xff, 0xdf, 0x90, 0x56, 0xff, 0xdf, 0x8f, 0x55, 0xff, 0xdf, 0x8f, 0x56, 0xff, 0xdf, 0x90, 0x57, 0xff, 0xdf, 0x91, 0x58, 0xff, 0xdf, 0x93, 0x59, 0xff, 0xdc, 0x95, 0x5b, 0xff, 0xde, 0x9e, 0x61, 0xff, 0xe0, 0xa1, 0x63, 0xff, 0xe0, 0xa0, 0x62, 0xff, 0xe0, 0xa1, 0x64, 0xff, 0xe0, 0xa3, 0x68, 0xff, 0xde, 0xa2, 0x69, 0xff, 0xe0, 0xa2, 0x69, 0xff, 0xdf, 0x9d, 0x67, 0xff, 0xdf, 0x9d, 0x67, 0xff, 0xde, 0x9c, 0x67, 0xff, 0xdf, 0x9c, 0x68, 0xff, 0xe0, 0x9f, 0x6a, 0xff, 0xdf, 0xa4, 0x6c, 0xff, 0xdf, 0xad, 0x70, 0xff, 0xdf, 0xc1, 0x77, 0xff, 0xda, 0xc8, 0x7f, 0xff, 0xda, 0xc8, 0x8a, 0xff, 0xdd, 0xc8, 0x97, 0xff, 0xe0, 0xc8, 0xa6, 0xff, 0xdf, 0xc8, 0xad, 0xff, 0xe0, 0xc8, 0xb0, 0xff, 0xde, 0xc8, 0xa8, 0xff, 0xdd, 0xc7, 0x9a, 0xff, 0xda, 0xc8, 0x8c, 0xff, 0xda, 0xc9, 0x83, 0xff, 0xdf, 0xbc, 0x78, 0xff, 0xe0, 0xab, 0x6f, 0xff, 0xe0, 0x9f, 0x67, 0xff, 0xd3, 0x95, 0x5e, 0xff, 0xc5, 0x8c, 0x56, 0xff, 0xba, 0x83, 0x50, 0xff, 0xb6, 0x7e, 0x4c, 0xff, 0xb8, 0x7c, 0x49, 0xff, 0xb5, 0x79, 0x46, 0xff, 0xb2, 0x76, 0x43, 0xff, 0xb0, 0x72, 0x3f, 0xff, 0xad, 0x70, 0x3d, 0xff, 0xab, 0x6d, 0x3b, 0xff, 0xab, 0x6d, 0x3b, 0xff, 0xa3, 0x66, 0x38, 0xff, 0x9d, 0x5f, 0x34, 0xff, 0x9b, 0x5e, 0x34, 0xff, 0x99, 0x5c, 0x33, 0xff, 0x96, 0x58, 0x32, 0xff, 0x93, 0x56, 0x32, 0xff, 0x94, 0x57, 0x32, 0xff, 0x96, 0x59, 0x32, 0xff, 0x94, 0x58, 0x32, 0xff, 0x93, 0x57, 0x32, 0xff, 0x92, 0x56, 0x31, 0xff, 0x93, 0x56, 0x2f, 0xff, 0x90, 0x54, 0x2e, 0xff, 0x8f, 0x53, 0x2e, 0xff, 0x8f, 0x52, 0x2c, 0xff, 0x8e, 0x52, 0x2c, 0xff, 0x8d, 0x51, 0x2c, 0xff, 0x8b, 0x51, 0x2b, 0xff, 0x8a, 0x4f, 0x2a, 0xff, 0x8b, 0x4f, 0x2a, 0xff, 0x89, 0x4e, 0x28, 0xff, 0x8a, 0x4f, 0x28, 0xff, 0x8a, 0x4f, 0x28, 0xff, 0x87, 0x4c, 0x27, 0xff, 0x85, 0x4a, 0x27, 0xff, 0x85, 0x4b, 0x26, 0xff, 0x83, 0x4b, 0x26, 0xff, 0x83, 0x4a, 0x25, 0xff, 0x84, 0x4b, 0x25, 0xff, 0x83, 0x49, 0x24, 0xff, 0x83, 0x49, 0x26, 0xff, 0x83, 0x4b, 0x26, 0xff, 0x83, 0x49, 0x25, 0xff, 0x83, 0x4b, 0x27, 0xff, 0x86, 0x4d, 0x27, 0xff, 0x86, 0x4d, 0x27, 0xff, 0x87, 0x4d, 0x27, 0xff, 0x87, 0x4c, 0x28, 0xff, 0x87, 0x4d, 0x28, 0xff, 0x87, 0x4d, 0x28, 0xff, + 0x88, 0x4f, 0x2a, 0xff, 0x89, 0x4f, 0x2a, 0xff, 0x8a, 0x50, 0x2b, 0xff, 0x8c, 0x51, 0x2c, 0xff, 0x8d, 0x53, 0x2e, 0xff, 0x8e, 0x53, 0x2f, 0xff, 0x8f, 0x53, 0x30, 0xff, 0x92, 0x56, 0x32, 0xff, 0x95, 0x59, 0x34, 0xff, 0x93, 0x57, 0x32, 0xff, 0x8f, 0x53, 0x2c, 0xff, 0x90, 0x53, 0x2c, 0xff, 0x8f, 0x53, 0x2d, 0xff, 0x90, 0x53, 0x2d, 0xff, 0x91, 0x55, 0x2f, 0xff, 0x93, 0x57, 0x30, 0xff, 0x93, 0x58, 0x31, 0xff, 0x9c, 0x60, 0x34, 0xff, 0xa2, 0x65, 0x36, 0xff, 0xa5, 0x69, 0x39, 0xff, 0xa8, 0x6e, 0x3c, 0xff, 0xae, 0x72, 0x40, 0xff, 0xb3, 0x78, 0x45, 0xff, 0xbc, 0x84, 0x4f, 0xff, 0xc2, 0x92, 0x5a, 0xff, 0xc4, 0x96, 0x61, 0xff, 0xc6, 0x96, 0x66, 0xff, 0xc9, 0x98, 0x6b, 0xff, 0xce, 0x99, 0x6c, 0xff, 0xd0, 0x9b, 0x6c, 0xff, 0xc7, 0x98, 0x65, 0xff, 0xc6, 0x96, 0x5c, 0xff, 0xcc, 0x92, 0x57, 0xff, 0xd0, 0x8f, 0x55, 0xff, 0xcf, 0x8c, 0x54, 0xff, 0xd4, 0x8f, 0x55, 0xff, 0xdb, 0x95, 0x59, 0xff, 0xdf, 0x99, 0x5e, 0xff, 0xde, 0x9f, 0x61, 0xff, 0xca, 0x91, 0x59, 0xff, 0xbd, 0x83, 0x50, 0xff, 0xbd, 0x81, 0x4f, 0xff, 0xbc, 0x82, 0x50, 0xff, 0xba, 0x86, 0x53, 0xff, 0xba, 0x88, 0x56, 0xff, 0xb9, 0x89, 0x57, 0xff, 0xb9, 0x89, 0x59, 0xff, 0xb9, 0x89, 0x59, 0xff, 0xb9, 0x89, 0x5a, 0xff, 0xb9, 0x89, 0x58, 0xff, 0xba, 0x8a, 0x55, 0xff, 0xbb, 0x8a, 0x53, 0xff, 0xbd, 0x89, 0x52, 0xff, 0xbe, 0x88, 0x51, 0xff, 0xbe, 0x86, 0x4e, 0xff, 0xbe, 0x85, 0x4d, 0xff, 0xbd, 0x84, 0x4d, 0xff, 0xbd, 0x86, 0x4d, 0xff, 0xbe, 0x87, 0x50, 0xff, 0xbe, 0x8a, 0x52, 0xff, 0xbd, 0x8b, 0x53, 0xff, 0xbd, 0x8b, 0x52, 0xff, 0xbb, 0x88, 0x52, 0xff, 0xbc, 0x89, 0x56, 0xff, 0xb9, 0x86, 0x55, 0xff, 0xb5, 0x80, 0x4f, 0xff, 0xb5, 0x80, 0x4a, 0xff, 0xb5, 0x7e, 0x4a, 0xff, 0xb5, 0x7c, 0x49, 0xff, 0xb5, 0x7b, 0x48, 0xff, 0xb5, 0x7c, 0x48, 0xff, 0xb4, 0x7d, 0x49, 0xff, 0xb2, 0x7a, 0x46, 0xff, 0xb1, 0x77, 0x45, 0xff, 0xaf, 0x79, 0x48, 0xff, 0xad, 0x7a, 0x4a, 0xff, 0xac, 0x79, 0x49, 0xff, 0xac, 0x78, 0x49, 0xff, 0xab, 0x76, 0x46, 0xff, 0xaa, 0x73, 0x43, 0xff, 0xaa, 0x73, 0x41, 0xff, 0xac, 0x75, 0x3f, 0xff, 0xae, 0x78, 0x3f, 0xff, 0xae, 0x7a, 0x41, 0xff, 0xab, 0x76, 0x42, 0xff, 0xa9, 0x74, 0x41, 0xff, 0xaa, 0x76, 0x41, 0xff, 0xaa, 0x76, 0x42, 0xff, 0xac, 0x77, 0x41, 0xff, 0xad, 0x78, 0x42, 0xff, 0xaf, 0x78, 0x43, 0xff, 0xb1, 0x7a, 0x45, 0xff, 0xb3, 0x7d, 0x47, 0xff, 0xb5, 0x80, 0x48, 0xff, 0xb6, 0x81, 0x47, 0xff, 0xb6, 0x80, 0x47, 0xff, 0xb7, 0x80, 0x48, 0xff, 0xb9, 0x82, 0x4a, 0xff, 0xbc, 0x84, 0x4a, 0xff, 0xbe, 0x87, 0x4b, 0xff, 0xc0, 0x88, 0x4d, 0xff, 0xc4, 0x8b, 0x4f, 0xff, 0xc9, 0x8d, 0x52, 0xff, 0xbf, 0x83, 0x4d, 0xff, 0xb5, 0x79, 0x46, 0xff, 0xb7, 0x7c, 0x47, 0xff, 0xba, 0x81, 0x4c, 0xff, 0xbc, 0x83, 0x51, 0xff, 0xbe, 0x85, 0x53, 0xff, 0xc1, 0x85, 0x52, 0xff, 0xc4, 0x86, 0x50, 0xff, 0xc6, 0x88, 0x51, 0xff, 0xbf, 0x83, 0x4c, 0xff, 0xb8, 0x7c, 0x45, 0xff, 0xba, 0x7c, 0x46, 0xff, 0xbb, 0x7e, 0x47, 0xff, 0xbc, 0x82, 0x4b, 0xff, 0xbf, 0x88, 0x4f, 0xff, 0xc0, 0x87, 0x4f, 0xff, 0xc1, 0x87, 0x4f, 0xff, 0xc1, 0x89, 0x51, 0xff, 0xc2, 0x89, 0x50, 0xff, 0xc4, 0x8a, 0x51, 0xff, 0xc5, 0x8a, 0x51, 0xff, 0xc5, 0x89, 0x50, 0xff, 0xc7, 0x8b, 0x50, 0xff, 0xc9, 0x8a, 0x51, 0xff, 0xca, 0x8b, 0x51, 0xff, 0xca, 0x8c, 0x50, 0xff, 0xcc, 0x8d, 0x50, 0xff, 0xce, 0x8f, 0x51, 0xff, 0xce, 0x90, 0x53, 0xff, 0xd1, 0x91, 0x55, 0xff, 0xd3, 0x93, 0x58, 0xff, 0xd4, 0x97, 0x5b, 0xff, 0xdb, 0x9d, 0x5f, 0xff, 0xdf, 0x9e, 0x60, 0xff, 0xde, 0xa1, 0x63, 0xff, 0xda, 0xa0, 0x61, 0xff, 0xd6, 0x98, 0x5c, 0xff, 0xd7, 0x94, 0x59, 0xff, 0xdd, 0x92, 0x57, 0xff, 0xde, 0x93, 0x59, 0xff, 0xdf, 0x95, 0x59, 0xff, 0xe0, 0x94, 0x5a, 0xff, 0xe0, 0x93, 0x59, 0xff, 0xe0, 0x92, 0x57, 0xff, 0xe0, 0x92, 0x57, 0xff, 0xdf, 0x91, 0x56, 0xff, 0xdd, 0x8f, 0x55, 0xff, 0xdc, 0x8e, 0x56, 0xff, 0xdf, 0x90, 0x57, 0xff, 0xe0, 0x92, 0x57, 0xff, 0xe0, 0x93, 0x58, 0xff, 0xe0, 0x93, 0x58, 0xff, 0xdf, 0x94, 0x57, 0xff, 0xdd, 0x95, 0x59, 0xff, 0xde, 0x9c, 0x5f, 0xff, 0xe0, 0xa0, 0x64, 0xff, 0xde, 0xa1, 0x66, 0xff, 0xdf, 0xa1, 0x67, 0xff, 0xe0, 0xa2, 0x67, 0xff, 0xdf, 0xa4, 0x68, 0xff, 0xde, 0xa1, 0x67, 0xff, 0xdf, 0x9d, 0x65, 0xff, 0xdf, 0xa0, 0x67, 0xff, 0xde, 0xa3, 0x6a, 0xff, 0xde, 0xa9, 0x6d, 0xff, 0xdd, 0xaa, 0x6c, 0xff, 0xdc, 0xad, 0x6d, 0xff, 0xdd, 0xbf, 0x72, 0xff, 0xda, 0xc7, 0x7b, 0xff, 0xda, 0xc9, 0x85, 0xff, 0xdc, 0xc8, 0x8f, 0xff, 0xdd, 0xc8, 0x9b, 0xff, 0xe0, 0xc8, 0xa0, 0xff, 0xdf, 0xc8, 0x9c, 0xff, 0xdd, 0xc8, 0x92, 0xff, 0xdb, 0xc8, 0x8a, 0xff, 0xd9, 0xc9, 0x81, 0xff, 0xdf, 0xbf, 0x78, 0xff, 0xe0, 0xac, 0x70, 0xff, 0xe1, 0xa0, 0x69, 0xff, 0xd9, 0x9a, 0x63, 0xff, 0xc9, 0x8e, 0x5a, 0xff, 0xbe, 0x86, 0x53, 0xff, 0xb9, 0x81, 0x4f, 0xff, 0xb5, 0x7c, 0x49, 0xff, 0xb6, 0x7a, 0x47, 0xff, 0xb4, 0x79, 0x45, 0xff, 0xb2, 0x75, 0x42, 0xff, 0xaf, 0x71, 0x3e, 0xff, 0xad, 0x71, 0x3c, 0xff, 0xae, 0x71, 0x3d, 0xff, 0xa1, 0x63, 0x37, 0xff, 0x9e, 0x61, 0x36, 0xff, 0x9c, 0x5f, 0x35, 0xff, 0x9a, 0x5b, 0x34, 0xff, 0x95, 0x58, 0x33, 0xff, 0x96, 0x59, 0x33, 0xff, 0x97, 0x5b, 0x33, 0xff, 0x97, 0x59, 0x33, 0xff, 0x95, 0x59, 0x33, 0xff, 0x95, 0x58, 0x32, 0xff, 0x95, 0x56, 0x32, 0xff, 0x92, 0x56, 0x30, 0xff, 0x91, 0x55, 0x2f, 0xff, 0x91, 0x54, 0x2e, 0xff, 0x8f, 0x52, 0x2e, 0xff, 0x8f, 0x53, 0x2d, 0xff, 0x8e, 0x51, 0x2c, 0xff, 0x8d, 0x50, 0x2b, 0xff, 0x8c, 0x51, 0x2a, 0xff, 0x8b, 0x4f, 0x2a, 0xff, 0x8b, 0x50, 0x29, 0xff, 0x8b, 0x4f, 0x2a, 0xff, 0x8a, 0x4f, 0x28, 0xff, 0x88, 0x4d, 0x28, 0xff, 0x86, 0x4d, 0x27, 0xff, 0x86, 0x4c, 0x26, 0xff, 0x85, 0x4b, 0x27, 0xff, 0x84, 0x4b, 0x26, 0xff, 0x84, 0x4b, 0x27, 0xff, 0x83, 0x4a, 0x24, 0xff, 0x84, 0x4a, 0x24, 0xff, 0x84, 0x49, 0x24, 0xff, 0x84, 0x4b, 0x27, 0xff, 0x85, 0x4b, 0x27, 0xff, 0x85, 0x4b, 0x27, 0xff, 0x87, 0x4d, 0x28, 0xff, 0x86, 0x4b, 0x27, 0xff, 0x87, 0x4d, 0x28, 0xff, 0x87, 0x4d, 0x28, 0xff, 0x88, 0x4e, 0x28, 0xff, + 0x89, 0x4f, 0x2a, 0xff, 0x8a, 0x50, 0x2b, 0xff, 0x8b, 0x51, 0x2d, 0xff, 0x8d, 0x52, 0x2d, 0xff, 0x8e, 0x52, 0x2f, 0xff, 0x8e, 0x53, 0x2f, 0xff, 0x90, 0x54, 0x30, 0xff, 0x94, 0x58, 0x34, 0xff, 0x95, 0x59, 0x33, 0xff, 0x8f, 0x53, 0x2b, 0xff, 0x8f, 0x53, 0x2c, 0xff, 0x8f, 0x53, 0x2c, 0xff, 0x90, 0x53, 0x2f, 0xff, 0x90, 0x54, 0x30, 0xff, 0x90, 0x54, 0x30, 0xff, 0x94, 0x57, 0x31, 0xff, 0x9a, 0x5c, 0x33, 0xff, 0x9c, 0x61, 0x34, 0xff, 0xa0, 0x64, 0x35, 0xff, 0xa3, 0x66, 0x38, 0xff, 0xa7, 0x6b, 0x3b, 0xff, 0xaa, 0x6f, 0x3e, 0xff, 0xb2, 0x77, 0x45, 0xff, 0xc1, 0x89, 0x53, 0xff, 0xc5, 0x91, 0x58, 0xff, 0xc6, 0x96, 0x5d, 0xff, 0xc6, 0x97, 0x62, 0xff, 0xc8, 0x98, 0x66, 0xff, 0xcc, 0x98, 0x68, 0xff, 0xd0, 0x9c, 0x68, 0xff, 0xd1, 0x9d, 0x65, 0xff, 0xc6, 0x96, 0x5c, 0xff, 0xca, 0x91, 0x56, 0xff, 0xce, 0x8e, 0x55, 0xff, 0xcf, 0x8d, 0x55, 0xff, 0xd1, 0x8f, 0x55, 0xff, 0xdb, 0x92, 0x5a, 0xff, 0xdf, 0x98, 0x5d, 0xff, 0xe0, 0x9e, 0x61, 0xff, 0xd7, 0xa0, 0x63, 0xff, 0xbf, 0x83, 0x51, 0xff, 0xbe, 0x83, 0x50, 0xff, 0xbe, 0x86, 0x52, 0xff, 0xbd, 0x88, 0x54, 0xff, 0xbc, 0x89, 0x57, 0xff, 0xbb, 0x8b, 0x59, 0xff, 0xba, 0x8a, 0x5b, 0xff, 0xba, 0x8a, 0x5d, 0xff, 0xba, 0x8a, 0x5d, 0xff, 0xbb, 0x8a, 0x5b, 0xff, 0xbc, 0x8b, 0x59, 0xff, 0xbc, 0x8c, 0x57, 0xff, 0xbd, 0x8d, 0x54, 0xff, 0xbe, 0x8b, 0x53, 0xff, 0xbf, 0x88, 0x50, 0xff, 0xc0, 0x87, 0x4f, 0xff, 0xc0, 0x87, 0x4f, 0xff, 0xbf, 0x87, 0x4f, 0xff, 0xc0, 0x8a, 0x4f, 0xff, 0xc0, 0x89, 0x51, 0xff, 0xc0, 0x8a, 0x52, 0xff, 0xbe, 0x8c, 0x54, 0xff, 0xbe, 0x8d, 0x56, 0xff, 0xbd, 0x8b, 0x56, 0xff, 0xbd, 0x89, 0x57, 0xff, 0xbb, 0x88, 0x55, 0xff, 0xb6, 0x80, 0x4d, 0xff, 0xb6, 0x7f, 0x4b, 0xff, 0xb6, 0x7e, 0x49, 0xff, 0xb5, 0x7d, 0x48, 0xff, 0xb6, 0x7c, 0x49, 0xff, 0xb5, 0x7b, 0x49, 0xff, 0xb5, 0x7b, 0x49, 0xff, 0xb2, 0x7a, 0x4a, 0xff, 0xaf, 0x7b, 0x4b, 0xff, 0xaf, 0x7c, 0x4b, 0xff, 0xaf, 0x7a, 0x4b, 0xff, 0xae, 0x79, 0x48, 0xff, 0xad, 0x75, 0x42, 0xff, 0xac, 0x75, 0x3f, 0xff, 0xab, 0x74, 0x3f, 0xff, 0xab, 0x73, 0x3e, 0xff, 0xab, 0x75, 0x3f, 0xff, 0xaa, 0x75, 0x40, 0xff, 0xa8, 0x73, 0x42, 0xff, 0xaa, 0x76, 0x43, 0xff, 0xab, 0x76, 0x42, 0xff, 0xac, 0x76, 0x42, 0xff, 0xad, 0x77, 0x42, 0xff, 0xae, 0x78, 0x43, 0xff, 0xaf, 0x7b, 0x44, 0xff, 0xb0, 0x7b, 0x45, 0xff, 0xb1, 0x7c, 0x46, 0xff, 0xb2, 0x7e, 0x46, 0xff, 0xb3, 0x7e, 0x46, 0xff, 0xb4, 0x7e, 0x45, 0xff, 0xb6, 0x80, 0x47, 0xff, 0xb8, 0x81, 0x49, 0xff, 0xba, 0x82, 0x4a, 0xff, 0xbc, 0x84, 0x4c, 0xff, 0xbf, 0x88, 0x4d, 0xff, 0xbc, 0x84, 0x4a, 0xff, 0xb2, 0x77, 0x44, 0xff, 0xae, 0x73, 0x42, 0xff, 0xb3, 0x78, 0x45, 0xff, 0xb7, 0x7c, 0x49, 0xff, 0xb9, 0x80, 0x4d, 0xff, 0xbb, 0x82, 0x51, 0xff, 0xbd, 0x83, 0x54, 0xff, 0xbf, 0x85, 0x53, 0xff, 0xc1, 0x86, 0x51, 0xff, 0xc2, 0x86, 0x51, 0xff, 0xbc, 0x7f, 0x49, 0xff, 0xb7, 0x7c, 0x45, 0xff, 0xb9, 0x7e, 0x47, 0xff, 0xbb, 0x7d, 0x46, 0xff, 0xbc, 0x7f, 0x47, 0xff, 0xbd, 0x84, 0x4c, 0xff, 0xbf, 0x88, 0x50, 0xff, 0xc1, 0x8a, 0x51, 0xff, 0xc1, 0x89, 0x51, 0xff, 0xc3, 0x8b, 0x51, 0xff, 0xc4, 0x8a, 0x51, 0xff, 0xc5, 0x8a, 0x51, 0xff, 0xc7, 0x8c, 0x51, 0xff, 0xc9, 0x8b, 0x51, 0xff, 0xca, 0x8b, 0x50, 0xff, 0xcb, 0x8c, 0x4f, 0xff, 0xcc, 0x8c, 0x50, 0xff, 0xcd, 0x8c, 0x50, 0xff, 0xce, 0x8d, 0x51, 0xff, 0xcf, 0x8f, 0x52, 0xff, 0xd3, 0x90, 0x53, 0xff, 0xd3, 0x90, 0x55, 0xff, 0xce, 0x8d, 0x54, 0xff, 0xcf, 0x8f, 0x55, 0xff, 0xd1, 0x90, 0x56, 0xff, 0xcf, 0x8d, 0x52, 0xff, 0xd0, 0x8c, 0x52, 0xff, 0xd8, 0x8f, 0x55, 0xff, 0xde, 0x92, 0x56, 0xff, 0xdf, 0x95, 0x59, 0xff, 0xdf, 0x99, 0x5d, 0xff, 0xde, 0x9a, 0x5e, 0xff, 0xdf, 0x99, 0x5e, 0xff, 0xe0, 0x99, 0x5e, 0xff, 0xdf, 0x96, 0x5b, 0xff, 0xde, 0x93, 0x59, 0xff, 0xdf, 0x93, 0x58, 0xff, 0xdf, 0x91, 0x56, 0xff, 0xdf, 0x90, 0x56, 0xff, 0xe0, 0x8f, 0x56, 0xff, 0xe0, 0x92, 0x57, 0xff, 0xe0, 0x94, 0x58, 0xff, 0xe0, 0x93, 0x58, 0xff, 0xe0, 0x94, 0x59, 0xff, 0xe0, 0x94, 0x5a, 0xff, 0xdf, 0x92, 0x5a, 0xff, 0xde, 0x96, 0x5b, 0xff, 0xdf, 0x9b, 0x60, 0xff, 0xe0, 0xa1, 0x66, 0xff, 0xde, 0xa2, 0x67, 0xff, 0xdf, 0xa2, 0x67, 0xff, 0xdf, 0xa4, 0x69, 0xff, 0xdd, 0xa2, 0x68, 0xff, 0xdf, 0x9f, 0x65, 0xff, 0xdf, 0x9e, 0x63, 0xff, 0xdf, 0xa1, 0x65, 0xff, 0xdf, 0xa9, 0x6a, 0xff, 0xe0, 0xb6, 0x6f, 0xff, 0xdf, 0xbc, 0x71, 0xff, 0xdc, 0xc2, 0x74, 0xff, 0xd8, 0xc7, 0x79, 0xff, 0xd8, 0xc6, 0x81, 0xff, 0xdb, 0xc8, 0x87, 0xff, 0xdb, 0xc8, 0x8a, 0xff, 0xdb, 0xc9, 0x8d, 0xff, 0xda, 0xc8, 0x8a, 0xff, 0xd8, 0xc8, 0x85, 0xff, 0xdc, 0xc8, 0x7e, 0xff, 0xe0, 0xbf, 0x77, 0xff, 0xe0, 0xae, 0x6f, 0xff, 0xe0, 0xa1, 0x6a, 0xff, 0xdc, 0x99, 0x63, 0xff, 0xd0, 0x93, 0x5d, 0xff, 0xc1, 0x8a, 0x56, 0xff, 0xbb, 0x84, 0x50, 0xff, 0xb7, 0x7f, 0x4c, 0xff, 0xb3, 0x7a, 0x47, 0xff, 0xb3, 0x79, 0x45, 0xff, 0xb3, 0x77, 0x43, 0xff, 0xb1, 0x75, 0x40, 0xff, 0xb0, 0x73, 0x3e, 0xff, 0xab, 0x6d, 0x3d, 0xff, 0xa2, 0x63, 0x38, 0xff, 0xa0, 0x62, 0x37, 0xff, 0x9d, 0x5f, 0x35, 0xff, 0x98, 0x5b, 0x34, 0xff, 0x9a, 0x5c, 0x34, 0xff, 0x9a, 0x5e, 0x34, 0xff, 0x98, 0x5b, 0x33, 0xff, 0x97, 0x5b, 0x34, 0xff, 0x97, 0x5b, 0x33, 0xff, 0x96, 0x5a, 0x32, 0xff, 0x95, 0x59, 0x32, 0xff, 0x94, 0x57, 0x30, 0xff, 0x93, 0x56, 0x30, 0xff, 0x91, 0x55, 0x30, 0xff, 0x92, 0x55, 0x2e, 0xff, 0x8f, 0x53, 0x2e, 0xff, 0x8f, 0x53, 0x2c, 0xff, 0x8e, 0x51, 0x2c, 0xff, 0x8d, 0x50, 0x2b, 0xff, 0x8c, 0x51, 0x2b, 0xff, 0x8d, 0x50, 0x2b, 0xff, 0x8b, 0x4f, 0x2a, 0xff, 0x8a, 0x4f, 0x29, 0xff, 0x89, 0x4f, 0x29, 0xff, 0x87, 0x4c, 0x27, 0xff, 0x86, 0x4c, 0x27, 0xff, 0x85, 0x4b, 0x27, 0xff, 0x85, 0x4c, 0x27, 0xff, 0x85, 0x4b, 0x25, 0xff, 0x85, 0x4a, 0x25, 0xff, 0x84, 0x4b, 0x27, 0xff, 0x84, 0x4b, 0x27, 0xff, 0x84, 0x4b, 0x27, 0xff, 0x85, 0x4b, 0x26, 0xff, 0x86, 0x4c, 0x28, 0xff, 0x87, 0x4c, 0x28, 0xff, 0x87, 0x4d, 0x28, 0xff, 0x87, 0x4c, 0x28, 0xff, 0x88, 0x4d, 0x2a, 0xff, 0x89, 0x4e, 0x29, 0xff, + 0x8a, 0x50, 0x2b, 0xff, 0x8b, 0x51, 0x2d, 0xff, 0x8c, 0x51, 0x2c, 0xff, 0x8e, 0x53, 0x2e, 0xff, 0x8f, 0x53, 0x2f, 0xff, 0x8f, 0x53, 0x30, 0xff, 0x92, 0x55, 0x32, 0xff, 0x95, 0x59, 0x34, 0xff, 0x91, 0x55, 0x2d, 0xff, 0x8f, 0x53, 0x2b, 0xff, 0x8f, 0x53, 0x2c, 0xff, 0x90, 0x53, 0x2e, 0xff, 0x8f, 0x54, 0x30, 0xff, 0x8f, 0x55, 0x30, 0xff, 0x93, 0x57, 0x31, 0xff, 0x99, 0x5c, 0x31, 0xff, 0x9b, 0x5e, 0x32, 0xff, 0x9c, 0x60, 0x34, 0xff, 0xa0, 0x62, 0x34, 0xff, 0xa2, 0x67, 0x37, 0xff, 0xa5, 0x69, 0x39, 0xff, 0xab, 0x6f, 0x3d, 0xff, 0xb6, 0x7f, 0x4b, 0xff, 0xbe, 0x89, 0x52, 0xff, 0xc3, 0x8e, 0x55, 0xff, 0xc6, 0x92, 0x59, 0xff, 0xc6, 0x94, 0x5c, 0xff, 0xc6, 0x97, 0x60, 0xff, 0xc8, 0x98, 0x63, 0xff, 0xcd, 0x9b, 0x64, 0xff, 0xd3, 0x9f, 0x61, 0xff, 0xcb, 0x96, 0x5b, 0xff, 0xc7, 0x90, 0x56, 0xff, 0xcb, 0x8d, 0x54, 0xff, 0xcd, 0x8d, 0x53, 0xff, 0xcf, 0x8d, 0x55, 0xff, 0xd7, 0x92, 0x58, 0xff, 0xde, 0x97, 0x5b, 0xff, 0xdf, 0x9d, 0x62, 0xff, 0xdd, 0xa4, 0x67, 0xff, 0xc4, 0x89, 0x54, 0xff, 0xc0, 0x84, 0x51, 0xff, 0xc0, 0x86, 0x53, 0xff, 0xbe, 0x8a, 0x57, 0xff, 0xbd, 0x8d, 0x5a, 0xff, 0xbd, 0x8d, 0x5c, 0xff, 0xbc, 0x8c, 0x5d, 0xff, 0xbc, 0x8c, 0x5f, 0xff, 0xbc, 0x8c, 0x60, 0xff, 0xbc, 0x8d, 0x60, 0xff, 0xbd, 0x8c, 0x5e, 0xff, 0xbe, 0x8d, 0x5c, 0xff, 0xbe, 0x8f, 0x59, 0xff, 0xc0, 0x8f, 0x56, 0xff, 0xc1, 0x8e, 0x55, 0xff, 0xc2, 0x8c, 0x52, 0xff, 0xc3, 0x8b, 0x4f, 0xff, 0xc2, 0x89, 0x4e, 0xff, 0xc2, 0x8b, 0x4f, 0xff, 0xc2, 0x8c, 0x51, 0xff, 0xc2, 0x8a, 0x53, 0xff, 0xc1, 0x8d, 0x56, 0xff, 0xc1, 0x90, 0x59, 0xff, 0xbf, 0x8f, 0x59, 0xff, 0xbe, 0x8c, 0x58, 0xff, 0xbd, 0x8a, 0x57, 0xff, 0xba, 0x86, 0x51, 0xff, 0xb6, 0x81, 0x4c, 0xff, 0xb6, 0x7f, 0x4b, 0xff, 0xb7, 0x7e, 0x4a, 0xff, 0xb6, 0x7d, 0x49, 0xff, 0xb6, 0x7c, 0x4a, 0xff, 0xb6, 0x7d, 0x4a, 0xff, 0xb4, 0x7c, 0x4a, 0xff, 0xb2, 0x7d, 0x4c, 0xff, 0xb1, 0x7d, 0x4d, 0xff, 0xaf, 0x7a, 0x47, 0xff, 0xaf, 0x78, 0x44, 0xff, 0xae, 0x77, 0x41, 0xff, 0xad, 0x76, 0x40, 0xff, 0xac, 0x75, 0x40, 0xff, 0xac, 0x75, 0x40, 0xff, 0xa8, 0x71, 0x3f, 0xff, 0xa6, 0x6f, 0x40, 0xff, 0xa7, 0x71, 0x40, 0xff, 0xa9, 0x73, 0x41, 0xff, 0xab, 0x77, 0x42, 0xff, 0xac, 0x78, 0x43, 0xff, 0xad, 0x79, 0x43, 0xff, 0xad, 0x79, 0x44, 0xff, 0xae, 0x7a, 0x45, 0xff, 0xaf, 0x7a, 0x46, 0xff, 0xb0, 0x7b, 0x46, 0xff, 0xb0, 0x7a, 0x44, 0xff, 0xb1, 0x7a, 0x43, 0xff, 0xb2, 0x7c, 0x42, 0xff, 0xb4, 0x7d, 0x43, 0xff, 0xb5, 0x7e, 0x47, 0xff, 0xb8, 0x83, 0x4a, 0xff, 0xba, 0x82, 0x4b, 0xff, 0xb2, 0x78, 0x45, 0xff, 0xaa, 0x6e, 0x3f, 0xff, 0xaa, 0x6d, 0x3d, 0xff, 0xae, 0x73, 0x41, 0xff, 0xb2, 0x76, 0x44, 0xff, 0xb7, 0x7a, 0x47, 0xff, 0xb9, 0x7f, 0x4b, 0xff, 0xb9, 0x82, 0x4f, 0xff, 0xbb, 0x82, 0x51, 0xff, 0xbd, 0x83, 0x50, 0xff, 0xbf, 0x85, 0x52, 0xff, 0xbd, 0x82, 0x4e, 0xff, 0xb9, 0x7e, 0x46, 0xff, 0xba, 0x7d, 0x46, 0xff, 0xbc, 0x7f, 0x47, 0xff, 0xbc, 0x7f, 0x46, 0xff, 0xbc, 0x7e, 0x46, 0xff, 0xbc, 0x80, 0x48, 0xff, 0xbe, 0x84, 0x4c, 0xff, 0xc1, 0x8a, 0x51, 0xff, 0xc2, 0x8c, 0x52, 0xff, 0xc3, 0x8c, 0x52, 0xff, 0xc5, 0x8c, 0x52, 0xff, 0xc7, 0x8c, 0x52, 0xff, 0xc9, 0x8d, 0x52, 0xff, 0xcb, 0x8d, 0x51, 0xff, 0xcc, 0x8e, 0x51, 0xff, 0xcd, 0x8e, 0x51, 0xff, 0xcf, 0x8e, 0x51, 0xff, 0xd1, 0x8e, 0x52, 0xff, 0xd2, 0x8e, 0x52, 0xff, 0xcb, 0x8a, 0x50, 0xff, 0xc6, 0x86, 0x4e, 0xff, 0xc3, 0x84, 0x4c, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xc5, 0x85, 0x4d, 0xff, 0xd2, 0x8b, 0x50, 0xff, 0xd4, 0x8d, 0x51, 0xff, 0xd9, 0x8f, 0x54, 0xff, 0xde, 0x93, 0x56, 0xff, 0xdf, 0x96, 0x5a, 0xff, 0xdf, 0x9c, 0x5f, 0xff, 0xe0, 0xa1, 0x62, 0xff, 0xdf, 0xa0, 0x64, 0xff, 0xdf, 0xa0, 0x64, 0xff, 0xe0, 0x9e, 0x61, 0xff, 0xe0, 0x99, 0x5d, 0xff, 0xdf, 0x96, 0x5b, 0xff, 0xdf, 0x94, 0x59, 0xff, 0xdf, 0x93, 0x56, 0xff, 0xe0, 0x92, 0x57, 0xff, 0xdf, 0x93, 0x58, 0xff, 0xe0, 0x94, 0x58, 0xff, 0xe0, 0x94, 0x58, 0xff, 0xe0, 0x94, 0x58, 0xff, 0xe0, 0x95, 0x59, 0xff, 0xdf, 0x95, 0x59, 0xff, 0xe0, 0x96, 0x5a, 0xff, 0xdf, 0x97, 0x5b, 0xff, 0xdf, 0x99, 0x5d, 0xff, 0xe0, 0xa1, 0x64, 0xff, 0xe0, 0xa2, 0x65, 0xff, 0xdf, 0xa3, 0x65, 0xff, 0xdf, 0xa5, 0x68, 0xff, 0xdf, 0xa5, 0x69, 0xff, 0xdf, 0xa1, 0x65, 0xff, 0xe0, 0x9f, 0x62, 0xff, 0xe0, 0xa0, 0x63, 0xff, 0xdf, 0xa2, 0x64, 0xff, 0xe0, 0xa9, 0x69, 0xff, 0xdf, 0xb6, 0x6e, 0xff, 0xde, 0xc0, 0x73, 0xff, 0xd8, 0xc7, 0x79, 0xff, 0xd7, 0xc8, 0x7f, 0xff, 0xd8, 0xc6, 0x82, 0xff, 0xd8, 0xc6, 0x7f, 0xff, 0xd8, 0xc8, 0x7f, 0xff, 0xda, 0xc7, 0x7d, 0xff, 0xdf, 0xc5, 0x78, 0xff, 0xe0, 0xba, 0x72, 0xff, 0xdf, 0xad, 0x6d, 0xff, 0xe0, 0xa1, 0x66, 0xff, 0xde, 0x9a, 0x62, 0xff, 0xd1, 0x92, 0x5c, 0xff, 0xc4, 0x8b, 0x58, 0xff, 0xbe, 0x86, 0x53, 0xff, 0xba, 0x82, 0x4e, 0xff, 0xb6, 0x7e, 0x4a, 0xff, 0xb1, 0x78, 0x45, 0xff, 0xb2, 0x79, 0x45, 0xff, 0xb3, 0x77, 0x43, 0xff, 0xb2, 0x75, 0x42, 0xff, 0xa9, 0x6c, 0x3c, 0xff, 0xa3, 0x65, 0x38, 0xff, 0xa0, 0x63, 0x37, 0xff, 0x9c, 0x5f, 0x35, 0xff, 0x9c, 0x5e, 0x35, 0xff, 0x9e, 0x60, 0x35, 0xff, 0x9c, 0x5f, 0x35, 0xff, 0x9b, 0x5e, 0x35, 0xff, 0x99, 0x5d, 0x34, 0xff, 0x98, 0x5b, 0x33, 0xff, 0x97, 0x5a, 0x32, 0xff, 0x96, 0x59, 0x31, 0xff, 0x95, 0x59, 0x31, 0xff, 0x94, 0x57, 0x31, 0xff, 0x93, 0x57, 0x30, 0xff, 0x91, 0x55, 0x30, 0xff, 0x90, 0x54, 0x2f, 0xff, 0x90, 0x53, 0x2d, 0xff, 0x8f, 0x53, 0x2d, 0xff, 0x8d, 0x51, 0x2d, 0xff, 0x8e, 0x52, 0x2c, 0xff, 0x8d, 0x51, 0x2c, 0xff, 0x8c, 0x50, 0x2b, 0xff, 0x8c, 0x50, 0x2b, 0xff, 0x8b, 0x4f, 0x2b, 0xff, 0x8b, 0x50, 0x2a, 0xff, 0x88, 0x4d, 0x28, 0xff, 0x87, 0x4c, 0x28, 0xff, 0x86, 0x4d, 0x27, 0xff, 0x85, 0x4b, 0x28, 0xff, 0x86, 0x4c, 0x28, 0xff, 0x85, 0x4c, 0x26, 0xff, 0x85, 0x4c, 0x27, 0xff, 0x85, 0x4c, 0x26, 0xff, 0x87, 0x4d, 0x28, 0xff, 0x87, 0x4c, 0x28, 0xff, 0x87, 0x4d, 0x28, 0xff, 0x87, 0x4c, 0x28, 0xff, 0x88, 0x4e, 0x28, 0xff, 0x89, 0x4f, 0x29, 0xff, 0x89, 0x4f, 0x2a, 0xff, + 0x8b, 0x50, 0x2d, 0xff, 0x8d, 0x52, 0x2d, 0xff, 0x8d, 0x51, 0x2e, 0xff, 0x90, 0x53, 0x30, 0xff, 0x8f, 0x53, 0x30, 0xff, 0x90, 0x55, 0x31, 0xff, 0x95, 0x59, 0x34, 0xff, 0x91, 0x55, 0x31, 0xff, 0x8f, 0x53, 0x2b, 0xff, 0x90, 0x53, 0x2d, 0xff, 0x8f, 0x54, 0x30, 0xff, 0x8f, 0x54, 0x30, 0xff, 0x90, 0x54, 0x2f, 0xff, 0x95, 0x58, 0x30, 0xff, 0x98, 0x5b, 0x31, 0xff, 0x99, 0x5c, 0x32, 0xff, 0x9b, 0x5d, 0x32, 0xff, 0x9c, 0x60, 0x33, 0xff, 0x9e, 0x61, 0x34, 0xff, 0xa0, 0x63, 0x35, 0xff, 0xa5, 0x67, 0x38, 0xff, 0xaf, 0x78, 0x45, 0xff, 0xb4, 0x7c, 0x4c, 0xff, 0xba, 0x82, 0x51, 0xff, 0xc0, 0x89, 0x55, 0xff, 0xc5, 0x90, 0x57, 0xff, 0xc6, 0x92, 0x59, 0xff, 0xc7, 0x94, 0x5b, 0xff, 0xc8, 0x98, 0x5e, 0xff, 0xcb, 0x98, 0x5e, 0xff, 0xd0, 0x9a, 0x5d, 0xff, 0xd5, 0x99, 0x5d, 0xff, 0xc5, 0x8d, 0x52, 0xff, 0xc9, 0x8b, 0x53, 0xff, 0xcb, 0x8c, 0x52, 0xff, 0xcd, 0x8c, 0x53, 0xff, 0xd4, 0x91, 0x56, 0xff, 0xde, 0x97, 0x5a, 0xff, 0xe0, 0x9c, 0x60, 0xff, 0xde, 0xa2, 0x65, 0xff, 0xd2, 0x98, 0x5f, 0xff, 0xc3, 0x86, 0x51, 0xff, 0xc1, 0x89, 0x56, 0xff, 0xc0, 0x8b, 0x58, 0xff, 0xbf, 0x8d, 0x5a, 0xff, 0xbe, 0x8f, 0x5e, 0xff, 0xbe, 0x8e, 0x5f, 0xff, 0xbd, 0x8e, 0x61, 0xff, 0xbd, 0x8e, 0x62, 0xff, 0xbd, 0x8d, 0x62, 0xff, 0xbe, 0x8e, 0x61, 0xff, 0xbe, 0x8e, 0x61, 0xff, 0xc1, 0x91, 0x5f, 0xff, 0xc2, 0x93, 0x5c, 0xff, 0xc3, 0x93, 0x58, 0xff, 0xc5, 0x91, 0x54, 0xff, 0xc6, 0x8e, 0x52, 0xff, 0xc5, 0x8c, 0x51, 0xff, 0xc7, 0x8b, 0x50, 0xff, 0xc5, 0x8c, 0x51, 0xff, 0xc6, 0x8d, 0x53, 0xff, 0xc5, 0x8d, 0x56, 0xff, 0xc4, 0x90, 0x59, 0xff, 0xc3, 0x93, 0x5a, 0xff, 0xc1, 0x92, 0x58, 0xff, 0xc0, 0x8e, 0x57, 0xff, 0xbf, 0x8b, 0x55, 0xff, 0xb9, 0x83, 0x4e, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xb9, 0x7f, 0x49, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb7, 0x7e, 0x49, 0xff, 0xb7, 0x7d, 0x4a, 0xff, 0xb6, 0x7f, 0x4c, 0xff, 0xb4, 0x7f, 0x4c, 0xff, 0xb2, 0x7d, 0x49, 0xff, 0xb2, 0x7b, 0x46, 0xff, 0xb1, 0x7b, 0x45, 0xff, 0xb0, 0x79, 0x44, 0xff, 0xae, 0x77, 0x43, 0xff, 0xae, 0x77, 0x41, 0xff, 0xaa, 0x72, 0x3f, 0xff, 0xa7, 0x70, 0x40, 0xff, 0xa7, 0x71, 0x40, 0xff, 0xa8, 0x71, 0x42, 0xff, 0xa9, 0x72, 0x42, 0xff, 0xaa, 0x72, 0x42, 0xff, 0xaa, 0x73, 0x43, 0xff, 0xac, 0x77, 0x43, 0xff, 0xae, 0x79, 0x45, 0xff, 0xaf, 0x7b, 0x45, 0xff, 0xb0, 0x7b, 0x44, 0xff, 0xb0, 0x7a, 0x44, 0xff, 0xae, 0x79, 0x41, 0xff, 0xb0, 0x79, 0x40, 0xff, 0xb1, 0x79, 0x40, 0xff, 0xb3, 0x7b, 0x42, 0xff, 0xb6, 0x7f, 0x46, 0xff, 0xb4, 0x7d, 0x47, 0xff, 0xa9, 0x70, 0x3f, 0xff, 0xa4, 0x69, 0x3a, 0xff, 0xa7, 0x6b, 0x3b, 0xff, 0xaa, 0x6e, 0x3d, 0xff, 0xad, 0x71, 0x40, 0xff, 0xb0, 0x74, 0x42, 0xff, 0xb5, 0x78, 0x44, 0xff, 0xb7, 0x7d, 0x48, 0xff, 0xb8, 0x81, 0x4d, 0xff, 0xba, 0x81, 0x4f, 0xff, 0xbc, 0x83, 0x4f, 0xff, 0xbe, 0x84, 0x51, 0xff, 0xbc, 0x81, 0x4c, 0xff, 0xb7, 0x7d, 0x46, 0xff, 0xb9, 0x7d, 0x47, 0xff, 0xbc, 0x7f, 0x47, 0xff, 0xbd, 0x80, 0x48, 0xff, 0xbd, 0x80, 0x47, 0xff, 0xbe, 0x81, 0x48, 0xff, 0xbe, 0x81, 0x49, 0xff, 0xbf, 0x83, 0x4c, 0xff, 0xc2, 0x89, 0x51, 0xff, 0xc5, 0x8d, 0x52, 0xff, 0xc5, 0x8e, 0x53, 0xff, 0xc8, 0x8e, 0x53, 0xff, 0xca, 0x8e, 0x53, 0xff, 0xcc, 0x8f, 0x54, 0xff, 0xce, 0x90, 0x54, 0xff, 0xd3, 0x91, 0x53, 0xff, 0xd3, 0x91, 0x53, 0xff, 0xcc, 0x8d, 0x51, 0xff, 0xc1, 0x82, 0x4a, 0xff, 0xbc, 0x7f, 0x48, 0xff, 0xbd, 0x80, 0x4b, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xbe, 0x82, 0x4a, 0xff, 0xc0, 0x82, 0x4a, 0xff, 0xc0, 0x83, 0x4c, 0xff, 0xca, 0x89, 0x4e, 0xff, 0xd5, 0x8d, 0x50, 0xff, 0xda, 0x8f, 0x53, 0xff, 0xde, 0x92, 0x54, 0xff, 0xe0, 0x95, 0x58, 0xff, 0xe0, 0x9c, 0x5e, 0xff, 0xdf, 0xa2, 0x64, 0xff, 0xe0, 0xa4, 0x68, 0xff, 0xe0, 0xa4, 0x69, 0xff, 0xdf, 0xa4, 0x68, 0xff, 0xe0, 0xa1, 0x63, 0xff, 0xe0, 0x9e, 0x60, 0xff, 0xdf, 0x9c, 0x5d, 0xff, 0xde, 0x98, 0x5a, 0xff, 0xde, 0x97, 0x5a, 0xff, 0xdf, 0x96, 0x59, 0xff, 0xe0, 0x95, 0x59, 0xff, 0xe0, 0x97, 0x58, 0xff, 0xdf, 0x96, 0x58, 0xff, 0xdf, 0x95, 0x58, 0xff, 0xe0, 0x95, 0x59, 0xff, 0xe0, 0x95, 0x59, 0xff, 0xe0, 0x97, 0x5a, 0xff, 0xdf, 0x99, 0x5b, 0xff, 0xdc, 0x99, 0x5f, 0xff, 0xdf, 0xa0, 0x64, 0xff, 0xe0, 0xa1, 0x64, 0xff, 0xe0, 0xa2, 0x64, 0xff, 0xe0, 0xa2, 0x65, 0xff, 0xdf, 0xa5, 0x68, 0xff, 0xdf, 0xa3, 0x65, 0xff, 0xde, 0x9e, 0x62, 0xff, 0xe0, 0x9d, 0x61, 0xff, 0xdf, 0xa1, 0x62, 0xff, 0xe0, 0xa4, 0x64, 0xff, 0xe0, 0xab, 0x68, 0xff, 0xe0, 0xb6, 0x6c, 0xff, 0xde, 0xc2, 0x74, 0xff, 0xda, 0xc7, 0x7e, 0xff, 0xd7, 0xc8, 0x81, 0xff, 0xdb, 0xc5, 0x79, 0xff, 0xde, 0xbf, 0x74, 0xff, 0xdf, 0xba, 0x71, 0xff, 0xe0, 0xb1, 0x6d, 0xff, 0xdf, 0xaa, 0x6a, 0xff, 0xe0, 0xa2, 0x64, 0xff, 0xdf, 0x9a, 0x60, 0xff, 0xd4, 0x94, 0x5b, 0xff, 0xc7, 0x8c, 0x57, 0xff, 0xc0, 0x87, 0x54, 0xff, 0xbb, 0x84, 0x50, 0xff, 0xb7, 0x7f, 0x4c, 0xff, 0xb6, 0x7c, 0x49, 0xff, 0xb3, 0x79, 0x46, 0xff, 0xae, 0x74, 0x41, 0xff, 0xb0, 0x75, 0x42, 0xff, 0xa8, 0x6d, 0x3d, 0xff, 0xa4, 0x67, 0x38, 0xff, 0x9e, 0x61, 0x37, 0xff, 0x9f, 0x62, 0x37, 0xff, 0xa0, 0x63, 0x36, 0xff, 0x9f, 0x62, 0x36, 0xff, 0x9c, 0x5f, 0x36, 0xff, 0x9d, 0x61, 0x36, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0x99, 0x5d, 0x33, 0xff, 0x98, 0x5c, 0x33, 0xff, 0x97, 0x5a, 0x33, 0xff, 0x96, 0x59, 0x32, 0xff, 0x95, 0x58, 0x31, 0xff, 0x94, 0x58, 0x31, 0xff, 0x93, 0x57, 0x30, 0xff, 0x93, 0x55, 0x2f, 0xff, 0x91, 0x55, 0x2e, 0xff, 0x90, 0x53, 0x2f, 0xff, 0x90, 0x53, 0x2f, 0xff, 0x8f, 0x53, 0x2f, 0xff, 0x8d, 0x51, 0x2c, 0xff, 0x8d, 0x51, 0x2c, 0xff, 0x8d, 0x51, 0x2c, 0xff, 0x8d, 0x51, 0x2b, 0xff, 0x8c, 0x51, 0x2d, 0xff, 0x8c, 0x50, 0x2d, 0xff, 0x86, 0x4c, 0x28, 0xff, 0x87, 0x4d, 0x28, 0xff, 0x88, 0x4d, 0x28, 0xff, 0x87, 0x4d, 0x28, 0xff, 0x86, 0x4c, 0x28, 0xff, 0x85, 0x4d, 0x28, 0xff, 0x85, 0x4d, 0x28, 0xff, 0x87, 0x4d, 0x28, 0xff, 0x86, 0x4c, 0x28, 0xff, 0x86, 0x4c, 0x29, 0xff, 0x87, 0x4d, 0x2a, 0xff, 0x88, 0x4e, 0x28, 0xff, 0x89, 0x4f, 0x2a, 0xff, 0x8a, 0x50, 0x2b, 0xff, + 0x8d, 0x52, 0x2d, 0xff, 0x8e, 0x52, 0x2f, 0xff, 0x8f, 0x53, 0x30, 0xff, 0x8f, 0x53, 0x30, 0xff, 0x8f, 0x54, 0x31, 0xff, 0x92, 0x56, 0x32, 0xff, 0x91, 0x55, 0x30, 0xff, 0x8f, 0x53, 0x2b, 0xff, 0x8f, 0x53, 0x2d, 0xff, 0x8f, 0x54, 0x30, 0xff, 0x8f, 0x54, 0x2f, 0xff, 0x91, 0x54, 0x2d, 0xff, 0x95, 0x59, 0x30, 0xff, 0x96, 0x5a, 0x30, 0xff, 0x98, 0x5b, 0x31, 0xff, 0x99, 0x5c, 0x31, 0xff, 0x9a, 0x5d, 0x32, 0xff, 0x9c, 0x61, 0x32, 0xff, 0x9f, 0x61, 0x34, 0xff, 0xa1, 0x63, 0x35, 0xff, 0xab, 0x6f, 0x3d, 0xff, 0xae, 0x76, 0x44, 0xff, 0xb1, 0x79, 0x49, 0xff, 0xb7, 0x7f, 0x4f, 0xff, 0xbd, 0x85, 0x54, 0xff, 0xc2, 0x8c, 0x57, 0xff, 0xc6, 0x8f, 0x57, 0xff, 0xc8, 0x91, 0x58, 0xff, 0xc7, 0x91, 0x58, 0xff, 0xc8, 0x94, 0x59, 0xff, 0xce, 0x94, 0x59, 0xff, 0xd3, 0x94, 0x58, 0xff, 0xcd, 0x8f, 0x54, 0xff, 0xc6, 0x8b, 0x51, 0xff, 0xc9, 0x89, 0x51, 0xff, 0xca, 0x8a, 0x52, 0xff, 0xd3, 0x90, 0x56, 0xff, 0xdc, 0x94, 0x5a, 0xff, 0xde, 0x99, 0x5e, 0xff, 0xde, 0x9f, 0x62, 0xff, 0xd8, 0x9c, 0x63, 0xff, 0xc7, 0x89, 0x54, 0xff, 0xc5, 0x89, 0x55, 0xff, 0xc3, 0x8d, 0x57, 0xff, 0xc1, 0x90, 0x5b, 0xff, 0xc0, 0x90, 0x5e, 0xff, 0xc0, 0x90, 0x62, 0xff, 0xbe, 0x8f, 0x64, 0xff, 0xbe, 0x8f, 0x66, 0xff, 0xbf, 0x90, 0x66, 0xff, 0xc0, 0x8f, 0x67, 0xff, 0xc1, 0x91, 0x66, 0xff, 0xc3, 0x93, 0x64, 0xff, 0xc5, 0x96, 0x62, 0xff, 0xc7, 0x96, 0x5d, 0xff, 0xc9, 0x96, 0x59, 0xff, 0xca, 0x92, 0x54, 0xff, 0xc8, 0x8e, 0x52, 0xff, 0xca, 0x8f, 0x52, 0xff, 0xcb, 0x90, 0x52, 0xff, 0xcb, 0x90, 0x54, 0xff, 0xcb, 0x92, 0x58, 0xff, 0xc8, 0x93, 0x5a, 0xff, 0xc7, 0x93, 0x5b, 0xff, 0xc6, 0x94, 0x59, 0xff, 0xc4, 0x93, 0x58, 0xff, 0xc2, 0x90, 0x57, 0xff, 0xbd, 0x89, 0x51, 0xff, 0xba, 0x82, 0x4c, 0xff, 0xba, 0x80, 0x48, 0xff, 0xb9, 0x7e, 0x47, 0xff, 0xb8, 0x7d, 0x48, 0xff, 0xb9, 0x7f, 0x49, 0xff, 0xb7, 0x7e, 0x4a, 0xff, 0xb6, 0x80, 0x4a, 0xff, 0xb5, 0x80, 0x47, 0xff, 0xb3, 0x7d, 0x48, 0xff, 0xb2, 0x7b, 0x45, 0xff, 0xb1, 0x7a, 0x45, 0xff, 0xb1, 0x7b, 0x45, 0xff, 0xad, 0x78, 0x43, 0xff, 0xa9, 0x73, 0x41, 0xff, 0xa8, 0x72, 0x42, 0xff, 0xa8, 0x71, 0x45, 0xff, 0xa8, 0x73, 0x42, 0xff, 0xa9, 0x73, 0x41, 0xff, 0xaa, 0x72, 0x41, 0xff, 0xaa, 0x73, 0x40, 0xff, 0xaa, 0x73, 0x3f, 0xff, 0xab, 0x74, 0x3f, 0xff, 0xac, 0x75, 0x41, 0xff, 0xaf, 0x78, 0x42, 0xff, 0xae, 0x76, 0x3f, 0xff, 0xae, 0x78, 0x3f, 0xff, 0xaf, 0x79, 0x40, 0xff, 0xb0, 0x79, 0x40, 0xff, 0xb2, 0x7b, 0x42, 0xff, 0xae, 0x76, 0x42, 0xff, 0xa3, 0x69, 0x3c, 0xff, 0x9f, 0x63, 0x36, 0xff, 0xa5, 0x67, 0x3a, 0xff, 0xa6, 0x6a, 0x3c, 0xff, 0xa8, 0x6d, 0x3d, 0xff, 0xab, 0x70, 0x40, 0xff, 0xae, 0x72, 0x41, 0xff, 0xb2, 0x76, 0x43, 0xff, 0xb6, 0x7a, 0x46, 0xff, 0xb7, 0x7d, 0x4b, 0xff, 0xb9, 0x80, 0x4d, 0xff, 0xba, 0x82, 0x4e, 0xff, 0xbd, 0x82, 0x4f, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb6, 0x7d, 0x44, 0xff, 0xba, 0x7e, 0x47, 0xff, 0xbc, 0x80, 0x48, 0xff, 0xbc, 0x80, 0x48, 0xff, 0xbe, 0x80, 0x49, 0xff, 0xbe, 0x81, 0x49, 0xff, 0xbe, 0x82, 0x49, 0xff, 0xc0, 0x82, 0x49, 0xff, 0xc0, 0x84, 0x4b, 0xff, 0xc3, 0x8c, 0x51, 0xff, 0xc6, 0x8f, 0x54, 0xff, 0xc9, 0x91, 0x54, 0xff, 0xcb, 0x92, 0x56, 0xff, 0xd0, 0x91, 0x56, 0xff, 0xd2, 0x91, 0x56, 0xff, 0xcc, 0x8c, 0x53, 0xff, 0xc0, 0x82, 0x4b, 0xff, 0xbc, 0x7e, 0x49, 0xff, 0xbe, 0x81, 0x4b, 0xff, 0xc0, 0x82, 0x4b, 0xff, 0xbf, 0x82, 0x4b, 0xff, 0xbf, 0x82, 0x4a, 0xff, 0xc1, 0x83, 0x4a, 0xff, 0xc1, 0x84, 0x4c, 0xff, 0xc1, 0x84, 0x4d, 0xff, 0xc2, 0x83, 0x4a, 0xff, 0xce, 0x88, 0x4d, 0xff, 0xdc, 0x90, 0x52, 0xff, 0xe0, 0x92, 0x54, 0xff, 0xdf, 0x93, 0x55, 0xff, 0xdf, 0x97, 0x5a, 0xff, 0xdf, 0x9d, 0x5f, 0xff, 0xde, 0xa4, 0x65, 0xff, 0xdf, 0xa5, 0x6a, 0xff, 0xe0, 0xa7, 0x6b, 0xff, 0xe1, 0xab, 0x6b, 0xff, 0xe0, 0xa7, 0x67, 0xff, 0xe0, 0xa3, 0x64, 0xff, 0xdf, 0xa3, 0x62, 0xff, 0xdf, 0x9f, 0x61, 0xff, 0xe0, 0x9b, 0x5d, 0xff, 0xe0, 0x98, 0x5a, 0xff, 0xe0, 0x98, 0x5a, 0xff, 0xe0, 0x99, 0x5b, 0xff, 0xe0, 0x97, 0x5a, 0xff, 0xe0, 0x97, 0x5a, 0xff, 0xe0, 0x97, 0x5a, 0xff, 0xe0, 0x96, 0x5a, 0xff, 0xdf, 0x97, 0x5c, 0xff, 0xdf, 0x97, 0x5b, 0xff, 0xdf, 0x9c, 0x60, 0xff, 0xe0, 0xa0, 0x65, 0xff, 0xe0, 0xa0, 0x63, 0xff, 0xe0, 0xa0, 0x62, 0xff, 0xe0, 0xa1, 0x64, 0xff, 0xe0, 0xa3, 0x66, 0xff, 0xe0, 0xa4, 0x67, 0xff, 0xdd, 0x9d, 0x5f, 0xff, 0xde, 0x9b, 0x5e, 0xff, 0xdf, 0x9e, 0x60, 0xff, 0xe0, 0xa0, 0x61, 0xff, 0xe0, 0xa3, 0x64, 0xff, 0xe0, 0xac, 0x68, 0xff, 0xe0, 0xb7, 0x6e, 0xff, 0xe0, 0xc0, 0x73, 0xff, 0xdb, 0xc5, 0x7a, 0xff, 0xdb, 0xc8, 0x7c, 0xff, 0xdc, 0xb2, 0x6c, 0xff, 0xde, 0xaa, 0x68, 0xff, 0xe0, 0xa3, 0x64, 0xff, 0xe0, 0x9f, 0x61, 0xff, 0xdf, 0x9b, 0x5d, 0xff, 0xd5, 0x93, 0x59, 0xff, 0xca, 0x8b, 0x56, 0xff, 0xc1, 0x86, 0x52, 0xff, 0xbe, 0x83, 0x4f, 0xff, 0xbb, 0x81, 0x4d, 0xff, 0xb8, 0x7f, 0x4b, 0xff, 0xb3, 0x79, 0x46, 0xff, 0xaf, 0x75, 0x43, 0xff, 0xaf, 0x73, 0x40, 0xff, 0xa7, 0x6a, 0x3c, 0xff, 0xa4, 0x67, 0x3a, 0xff, 0xa3, 0x67, 0x3a, 0xff, 0xa2, 0x64, 0x38, 0xff, 0xa0, 0x63, 0x37, 0xff, 0xa1, 0x63, 0x37, 0xff, 0x9f, 0x62, 0x37, 0xff, 0x9e, 0x60, 0x35, 0xff, 0x9d, 0x61, 0x35, 0xff, 0x9b, 0x5f, 0x34, 0xff, 0x99, 0x5c, 0x33, 0xff, 0x98, 0x5c, 0x33, 0xff, 0x97, 0x5a, 0x33, 0xff, 0x95, 0x59, 0x32, 0xff, 0x95, 0x58, 0x32, 0xff, 0x94, 0x56, 0x31, 0xff, 0x93, 0x56, 0x30, 0xff, 0x92, 0x55, 0x2f, 0xff, 0x8f, 0x53, 0x2e, 0xff, 0x90, 0x53, 0x2f, 0xff, 0x8f, 0x53, 0x2e, 0xff, 0x8f, 0x53, 0x2d, 0xff, 0x8f, 0x53, 0x2d, 0xff, 0x8e, 0x52, 0x2d, 0xff, 0x8d, 0x53, 0x2d, 0xff, 0x8d, 0x53, 0x2d, 0xff, 0x8c, 0x51, 0x2d, 0xff, 0x8b, 0x50, 0x2b, 0xff, 0x88, 0x4d, 0x28, 0xff, 0x87, 0x4d, 0x28, 0xff, 0x87, 0x4c, 0x28, 0xff, 0x86, 0x4c, 0x28, 0xff, 0x87, 0x4d, 0x28, 0xff, 0x87, 0x4c, 0x28, 0xff, 0x87, 0x4d, 0x28, 0xff, 0x86, 0x4d, 0x29, 0xff, 0x88, 0x4d, 0x29, 0xff, 0x87, 0x4d, 0x2a, 0xff, 0x88, 0x4f, 0x29, 0xff, 0x8b, 0x50, 0x2c, 0xff, 0x8b, 0x50, 0x2d, 0xff, + 0x8d, 0x52, 0x2e, 0xff, 0x8e, 0x53, 0x30, 0xff, 0x8e, 0x52, 0x30, 0xff, 0x8f, 0x54, 0x31, 0xff, 0x91, 0x56, 0x32, 0xff, 0x92, 0x56, 0x31, 0xff, 0x8f, 0x53, 0x2c, 0xff, 0x8f, 0x55, 0x2e, 0xff, 0x8f, 0x53, 0x2e, 0xff, 0x91, 0x55, 0x2d, 0xff, 0x93, 0x55, 0x2b, 0xff, 0x94, 0x58, 0x2d, 0xff, 0x95, 0x5a, 0x2e, 0xff, 0x96, 0x59, 0x2f, 0xff, 0x98, 0x5b, 0x31, 0xff, 0x99, 0x5c, 0x31, 0xff, 0x9b, 0x5e, 0x31, 0xff, 0x9c, 0x5f, 0x32, 0xff, 0x9f, 0x61, 0x33, 0xff, 0xa4, 0x68, 0x37, 0xff, 0xaa, 0x70, 0x3c, 0xff, 0xac, 0x74, 0x40, 0xff, 0xb0, 0x78, 0x47, 0xff, 0xb3, 0x7b, 0x4c, 0xff, 0xb9, 0x81, 0x50, 0xff, 0xbd, 0x85, 0x54, 0xff, 0xc2, 0x89, 0x54, 0xff, 0xc7, 0x8c, 0x54, 0xff, 0xc8, 0x8d, 0x54, 0xff, 0xc8, 0x8f, 0x53, 0xff, 0xcb, 0x90, 0x55, 0xff, 0xd0, 0x90, 0x55, 0xff, 0xd5, 0x90, 0x54, 0xff, 0xc6, 0x88, 0x4f, 0xff, 0xc5, 0x88, 0x4f, 0xff, 0xc8, 0x8a, 0x51, 0xff, 0xcd, 0x8d, 0x54, 0xff, 0xd9, 0x93, 0x58, 0xff, 0xe0, 0x98, 0x5d, 0xff, 0xe0, 0x9f, 0x62, 0xff, 0xdb, 0xa1, 0x66, 0xff, 0xcd, 0x8f, 0x59, 0xff, 0xc7, 0x8a, 0x55, 0xff, 0xc6, 0x8f, 0x59, 0xff, 0xc4, 0x91, 0x5c, 0xff, 0xc3, 0x92, 0x5f, 0xff, 0xc1, 0x91, 0x63, 0xff, 0xc1, 0x91, 0x66, 0xff, 0xc1, 0x90, 0x69, 0xff, 0xc1, 0x90, 0x6a, 0xff, 0xc1, 0x90, 0x69, 0xff, 0xc5, 0x94, 0x6a, 0xff, 0xc6, 0x96, 0x68, 0xff, 0xc9, 0x97, 0x63, 0xff, 0xcb, 0x98, 0x60, 0xff, 0xcd, 0x99, 0x5c, 0xff, 0xcf, 0x99, 0x59, 0xff, 0xd0, 0x97, 0x58, 0xff, 0xd1, 0x94, 0x55, 0xff, 0xd0, 0x91, 0x54, 0xff, 0xd0, 0x93, 0x56, 0xff, 0xd2, 0x94, 0x5a, 0xff, 0xcf, 0x95, 0x5c, 0xff, 0xcd, 0x96, 0x5c, 0xff, 0xcb, 0x95, 0x5b, 0xff, 0xc8, 0x95, 0x59, 0xff, 0xc7, 0x93, 0x57, 0xff, 0xc4, 0x8e, 0x54, 0xff, 0xbc, 0x85, 0x4d, 0xff, 0xbb, 0x82, 0x4a, 0xff, 0xba, 0x7f, 0x49, 0xff, 0xba, 0x7f, 0x48, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xba, 0x81, 0x4c, 0xff, 0xb7, 0x82, 0x4c, 0xff, 0xb6, 0x81, 0x49, 0xff, 0xb5, 0x7f, 0x49, 0xff, 0xb4, 0x7e, 0x48, 0xff, 0xb3, 0x7e, 0x45, 0xff, 0xb1, 0x7b, 0x45, 0xff, 0xad, 0x75, 0x44, 0xff, 0xa9, 0x73, 0x43, 0xff, 0xa9, 0x73, 0x44, 0xff, 0xa8, 0x72, 0x43, 0xff, 0xa9, 0x72, 0x43, 0xff, 0xa9, 0x73, 0x42, 0xff, 0xaa, 0x72, 0x41, 0xff, 0xaa, 0x73, 0x42, 0xff, 0xab, 0x73, 0x3f, 0xff, 0xab, 0x72, 0x3c, 0xff, 0xaa, 0x6f, 0x38, 0xff, 0xa9, 0x6e, 0x34, 0xff, 0xaa, 0x6f, 0x34, 0xff, 0xac, 0x71, 0x36, 0xff, 0xaf, 0x76, 0x3b, 0xff, 0xb0, 0x79, 0x41, 0xff, 0xa9, 0x71, 0x40, 0xff, 0x9e, 0x62, 0x37, 0xff, 0x9d, 0x61, 0x36, 0xff, 0xa0, 0x65, 0x39, 0xff, 0xa3, 0x68, 0x39, 0xff, 0xa5, 0x6a, 0x3b, 0xff, 0xa8, 0x6c, 0x3d, 0xff, 0xaa, 0x6f, 0x3e, 0xff, 0xad, 0x71, 0x40, 0xff, 0xb0, 0x74, 0x43, 0xff, 0xb4, 0x77, 0x44, 0xff, 0xb7, 0x7b, 0x47, 0xff, 0xb8, 0x7f, 0x4b, 0xff, 0xba, 0x80, 0x4c, 0xff, 0xb9, 0x7e, 0x4a, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb7, 0x7e, 0x46, 0xff, 0xb8, 0x7d, 0x46, 0xff, 0xba, 0x7f, 0x48, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xbd, 0x81, 0x49, 0xff, 0xbf, 0x82, 0x4a, 0xff, 0xc0, 0x81, 0x49, 0xff, 0xc0, 0x81, 0x49, 0xff, 0xc1, 0x84, 0x4c, 0xff, 0xc5, 0x89, 0x51, 0xff, 0xca, 0x8f, 0x56, 0xff, 0xca, 0x91, 0x56, 0xff, 0xc5, 0x8d, 0x51, 0xff, 0xbc, 0x84, 0x4c, 0xff, 0xb8, 0x7f, 0x4a, 0xff, 0xbb, 0x82, 0x4b, 0xff, 0xbe, 0x84, 0x4d, 0xff, 0xbf, 0x85, 0x4d, 0xff, 0xc1, 0x85, 0x4d, 0xff, 0xc3, 0x85, 0x4d, 0xff, 0xc3, 0x85, 0x4d, 0xff, 0xc4, 0x85, 0x4d, 0xff, 0xc3, 0x85, 0x4c, 0xff, 0xc3, 0x85, 0x4c, 0xff, 0xc5, 0x85, 0x4d, 0xff, 0xc6, 0x86, 0x4d, 0xff, 0xd1, 0x8a, 0x4f, 0xff, 0xde, 0x91, 0x53, 0xff, 0xe0, 0x93, 0x54, 0xff, 0xe0, 0x94, 0x55, 0xff, 0xdf, 0x9a, 0x5a, 0xff, 0xe0, 0xa0, 0x60, 0xff, 0xdf, 0xa4, 0x66, 0xff, 0xdf, 0xaa, 0x6a, 0xff, 0xe0, 0xb0, 0x6d, 0xff, 0xe0, 0xb1, 0x6d, 0xff, 0xe0, 0xb1, 0x6c, 0xff, 0xe0, 0xad, 0x6b, 0xff, 0xdf, 0xaa, 0x68, 0xff, 0xe0, 0xa6, 0x65, 0xff, 0xe0, 0xa3, 0x64, 0xff, 0xe0, 0x9d, 0x5f, 0xff, 0xe0, 0x9a, 0x5d, 0xff, 0xe0, 0x9a, 0x5c, 0xff, 0xe0, 0x9a, 0x5b, 0xff, 0xe0, 0x9a, 0x5c, 0xff, 0xe0, 0x9a, 0x5b, 0xff, 0xe0, 0x98, 0x5a, 0xff, 0xe0, 0x98, 0x5b, 0xff, 0xe0, 0x99, 0x5c, 0xff, 0xde, 0x9d, 0x61, 0xff, 0xdf, 0xa0, 0x63, 0xff, 0xe0, 0x9f, 0x62, 0xff, 0xe0, 0x9f, 0x62, 0xff, 0xe0, 0x9f, 0x62, 0xff, 0xe0, 0xa1, 0x64, 0xff, 0xe0, 0xa1, 0x63, 0xff, 0xde, 0x9c, 0x5e, 0xff, 0xe0, 0x9a, 0x5c, 0xff, 0xe0, 0x9b, 0x5c, 0xff, 0xde, 0x9c, 0x5e, 0xff, 0xdf, 0x9f, 0x60, 0xff, 0xe0, 0xa4, 0x63, 0xff, 0xe0, 0xaa, 0x67, 0xff, 0xe0, 0xb0, 0x6b, 0xff, 0xe1, 0xb6, 0x6e, 0xff, 0xe1, 0xbd, 0x71, 0xff, 0xdf, 0xb3, 0x6d, 0xff, 0xdd, 0xa6, 0x63, 0xff, 0xde, 0x9b, 0x5d, 0xff, 0xdb, 0x97, 0x5a, 0xff, 0xd5, 0x93, 0x57, 0xff, 0xcb, 0x8d, 0x54, 0xff, 0xc5, 0x88, 0x51, 0xff, 0xc1, 0x85, 0x4f, 0xff, 0xbc, 0x81, 0x4c, 0xff, 0xb7, 0x7d, 0x49, 0xff, 0xb4, 0x7a, 0x46, 0xff, 0xb0, 0x75, 0x44, 0xff, 0xaf, 0x75, 0x40, 0xff, 0xad, 0x71, 0x3e, 0xff, 0xa6, 0x6a, 0x3b, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa3, 0x65, 0x38, 0xff, 0xa1, 0x64, 0x38, 0xff, 0xa1, 0x63, 0x37, 0xff, 0xa0, 0x63, 0x37, 0xff, 0x9f, 0x63, 0x36, 0xff, 0x9d, 0x60, 0x36, 0xff, 0x9c, 0x60, 0x35, 0xff, 0x9a, 0x5e, 0x34, 0xff, 0x99, 0x5d, 0x34, 0xff, 0x99, 0x5c, 0x33, 0xff, 0x97, 0x5a, 0x33, 0xff, 0x96, 0x59, 0x32, 0xff, 0x95, 0x59, 0x32, 0xff, 0x94, 0x57, 0x30, 0xff, 0x92, 0x55, 0x30, 0xff, 0x93, 0x56, 0x31, 0xff, 0x92, 0x55, 0x30, 0xff, 0x91, 0x55, 0x2f, 0xff, 0x90, 0x53, 0x2f, 0xff, 0x90, 0x54, 0x2f, 0xff, 0x90, 0x53, 0x30, 0xff, 0x8f, 0x54, 0x30, 0xff, 0x8e, 0x52, 0x30, 0xff, 0x8d, 0x52, 0x2e, 0xff, 0x8d, 0x52, 0x2e, 0xff, 0x8b, 0x4f, 0x2b, 0xff, 0x89, 0x4e, 0x28, 0xff, 0x88, 0x4d, 0x29, 0xff, 0x87, 0x4d, 0x28, 0xff, 0x87, 0x4c, 0x28, 0xff, 0x86, 0x4c, 0x29, 0xff, 0x86, 0x4c, 0x28, 0xff, 0x87, 0x4d, 0x29, 0xff, 0x88, 0x4e, 0x2a, 0xff, 0x88, 0x4f, 0x2a, 0xff, 0x88, 0x4e, 0x2a, 0xff, 0x8b, 0x50, 0x2b, 0xff, 0x8d, 0x52, 0x2e, 0xff, + 0x8e, 0x53, 0x2f, 0xff, 0x8f, 0x53, 0x30, 0xff, 0x8f, 0x53, 0x30, 0xff, 0x90, 0x55, 0x32, 0xff, 0x92, 0x55, 0x32, 0xff, 0x8f, 0x53, 0x2c, 0xff, 0x8f, 0x54, 0x2d, 0xff, 0x90, 0x54, 0x2b, 0xff, 0x91, 0x54, 0x2a, 0xff, 0x92, 0x55, 0x2a, 0xff, 0x94, 0x56, 0x2c, 0xff, 0x94, 0x57, 0x2d, 0xff, 0x95, 0x59, 0x2f, 0xff, 0x97, 0x5b, 0x30, 0xff, 0x99, 0x5d, 0x32, 0xff, 0x9b, 0x5d, 0x33, 0xff, 0x9c, 0x5f, 0x33, 0xff, 0xa0, 0x62, 0x35, 0xff, 0xa5, 0x68, 0x37, 0xff, 0xa9, 0x6c, 0x3a, 0xff, 0xad, 0x70, 0x3e, 0xff, 0xaf, 0x74, 0x43, 0xff, 0xb2, 0x78, 0x47, 0xff, 0xb3, 0x7a, 0x4b, 0xff, 0xb5, 0x7b, 0x4d, 0xff, 0xb6, 0x7e, 0x4e, 0xff, 0xb9, 0x81, 0x4f, 0xff, 0xbd, 0x82, 0x4d, 0xff, 0xc0, 0x83, 0x4c, 0xff, 0xc1, 0x83, 0x4b, 0xff, 0xc2, 0x84, 0x4c, 0xff, 0xc7, 0x87, 0x4d, 0xff, 0xce, 0x8b, 0x50, 0xff, 0xca, 0x88, 0x4f, 0xff, 0xc4, 0x85, 0x4e, 0xff, 0xc6, 0x88, 0x4e, 0xff, 0xcb, 0x8c, 0x52, 0xff, 0xd5, 0x90, 0x56, 0xff, 0xdd, 0x97, 0x5a, 0xff, 0xdf, 0x9b, 0x60, 0xff, 0xdf, 0xa2, 0x64, 0xff, 0xd4, 0x98, 0x5f, 0xff, 0xca, 0x8b, 0x55, 0xff, 0xc9, 0x90, 0x59, 0xff, 0xc7, 0x92, 0x5c, 0xff, 0xc6, 0x95, 0x60, 0xff, 0xc4, 0x92, 0x63, 0xff, 0xc4, 0x93, 0x68, 0xff, 0xc3, 0x92, 0x6a, 0xff, 0xc4, 0x92, 0x6a, 0xff, 0xc4, 0x92, 0x6c, 0xff, 0xc8, 0x95, 0x6b, 0xff, 0xc9, 0x98, 0x6b, 0xff, 0xcc, 0x99, 0x68, 0xff, 0xcf, 0x9b, 0x65, 0xff, 0xd1, 0x9d, 0x61, 0xff, 0xd4, 0x9e, 0x5e, 0xff, 0xd7, 0x9d, 0x5b, 0xff, 0xd9, 0x99, 0x59, 0xff, 0xd9, 0x97, 0x58, 0xff, 0xd9, 0x98, 0x58, 0xff, 0xd8, 0x98, 0x5a, 0xff, 0xda, 0x9a, 0x5d, 0xff, 0xd6, 0x9b, 0x5e, 0xff, 0xd2, 0x99, 0x5c, 0xff, 0xcf, 0x97, 0x59, 0xff, 0xcd, 0x96, 0x58, 0xff, 0xca, 0x92, 0x56, 0xff, 0xc3, 0x8b, 0x50, 0xff, 0xbc, 0x82, 0x4a, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xba, 0x82, 0x4c, 0xff, 0xb9, 0x84, 0x4e, 0xff, 0xb8, 0x83, 0x4c, 0xff, 0xb7, 0x82, 0x4d, 0xff, 0xb6, 0x81, 0x4a, 0xff, 0xb5, 0x80, 0x49, 0xff, 0xb2, 0x7d, 0x47, 0xff, 0xab, 0x75, 0x44, 0xff, 0xab, 0x75, 0x45, 0xff, 0xaa, 0x74, 0x44, 0xff, 0xaa, 0x73, 0x44, 0xff, 0xa8, 0x72, 0x42, 0xff, 0xaa, 0x74, 0x42, 0xff, 0xaa, 0x72, 0x3f, 0xff, 0xaa, 0x71, 0x3c, 0xff, 0xab, 0x71, 0x38, 0xff, 0xaa, 0x6e, 0x35, 0xff, 0xa8, 0x6d, 0x33, 0xff, 0xa9, 0x6e, 0x32, 0xff, 0xa9, 0x6c, 0x32, 0xff, 0xa9, 0x6e, 0x30, 0xff, 0xab, 0x71, 0x35, 0xff, 0xa4, 0x6a, 0x39, 0xff, 0x9b, 0x5f, 0x36, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x9d, 0x61, 0x37, 0xff, 0x9f, 0x63, 0x38, 0xff, 0xa1, 0x67, 0x39, 0xff, 0xa4, 0x6a, 0x3c, 0xff, 0xa6, 0x6b, 0x3c, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xaa, 0x70, 0x41, 0xff, 0xad, 0x73, 0x42, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xb4, 0x79, 0x46, 0xff, 0xb7, 0x7c, 0x49, 0xff, 0xb8, 0x7d, 0x4b, 0xff, 0xb7, 0x7d, 0x4a, 0xff, 0xb6, 0x7f, 0x4a, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb9, 0x7e, 0x48, 0xff, 0xba, 0x80, 0x49, 0xff, 0xba, 0x80, 0x49, 0xff, 0xbc, 0x80, 0x4b, 0xff, 0xbe, 0x81, 0x4b, 0xff, 0xbe, 0x81, 0x4a, 0xff, 0xbf, 0x81, 0x4a, 0xff, 0xbf, 0x83, 0x48, 0xff, 0xbf, 0x83, 0x47, 0xff, 0xc2, 0x87, 0x4b, 0xff, 0xbf, 0x86, 0x4c, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb7, 0x7e, 0x49, 0xff, 0xb7, 0x7f, 0x4b, 0xff, 0xba, 0x83, 0x4d, 0xff, 0xbb, 0x84, 0x4e, 0xff, 0xbd, 0x86, 0x4f, 0xff, 0xbf, 0x86, 0x50, 0xff, 0xc0, 0x87, 0x4f, 0xff, 0xc3, 0x89, 0x50, 0xff, 0xc6, 0x89, 0x4f, 0xff, 0xc8, 0x88, 0x50, 0xff, 0xc8, 0x89, 0x4f, 0xff, 0xc8, 0x88, 0x4e, 0xff, 0xc9, 0x88, 0x4e, 0xff, 0xc9, 0x88, 0x4d, 0xff, 0xcb, 0x87, 0x4d, 0xff, 0xd3, 0x8c, 0x4f, 0xff, 0xde, 0x94, 0x54, 0xff, 0xe0, 0x97, 0x56, 0xff, 0xde, 0x97, 0x57, 0xff, 0xdf, 0x9e, 0x5d, 0xff, 0xe0, 0xa2, 0x62, 0xff, 0xde, 0xa7, 0x66, 0xff, 0xe0, 0xae, 0x6a, 0xff, 0xe1, 0xb6, 0x6e, 0xff, 0xe0, 0xb9, 0x71, 0xff, 0xe0, 0xb8, 0x70, 0xff, 0xe0, 0xb4, 0x6d, 0xff, 0xe0, 0xb0, 0x6d, 0xff, 0xe0, 0xa9, 0x6a, 0xff, 0xe0, 0xa8, 0x67, 0xff, 0xe0, 0xa3, 0x63, 0xff, 0xe0, 0x9f, 0x5f, 0xff, 0xdf, 0x9e, 0x5f, 0xff, 0xe0, 0x9c, 0x5d, 0xff, 0xe0, 0x9b, 0x5c, 0xff, 0xe0, 0x9a, 0x5c, 0xff, 0xe0, 0x99, 0x5c, 0xff, 0xe0, 0x99, 0x5c, 0xff, 0xdf, 0x99, 0x5c, 0xff, 0xde, 0x9f, 0x63, 0xff, 0xdf, 0xa0, 0x64, 0xff, 0xe0, 0x9e, 0x63, 0xff, 0xe0, 0x9f, 0x62, 0xff, 0xe0, 0xa1, 0x62, 0xff, 0xe0, 0xa1, 0x63, 0xff, 0xe0, 0xa1, 0x63, 0xff, 0xde, 0x9d, 0x5f, 0xff, 0xe0, 0x98, 0x5a, 0xff, 0xe0, 0x99, 0x5b, 0xff, 0xe0, 0x9a, 0x5c, 0xff, 0xe0, 0x9d, 0x5e, 0xff, 0xe0, 0xa1, 0x61, 0xff, 0xe0, 0xa3, 0x63, 0xff, 0xe0, 0xa5, 0x66, 0xff, 0xe0, 0xa9, 0x69, 0xff, 0xe0, 0xa9, 0x6a, 0xff, 0xdf, 0xa9, 0x67, 0xff, 0xe0, 0xa4, 0x65, 0xff, 0xd9, 0x99, 0x5c, 0xff, 0xd1, 0x8e, 0x53, 0xff, 0xcd, 0x8d, 0x52, 0xff, 0xc5, 0x88, 0x4f, 0xff, 0xc1, 0x84, 0x4c, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xb8, 0x7d, 0x47, 0xff, 0xb4, 0x7a, 0x45, 0xff, 0xb2, 0x76, 0x42, 0xff, 0xbb, 0x80, 0x47, 0xff, 0xb2, 0x77, 0x41, 0xff, 0xa3, 0x67, 0x3a, 0xff, 0xa1, 0x64, 0x38, 0xff, 0x9f, 0x62, 0x37, 0xff, 0x9f, 0x62, 0x37, 0xff, 0xa2, 0x65, 0x37, 0xff, 0xa1, 0x64, 0x37, 0xff, 0xa0, 0x62, 0x37, 0xff, 0x9e, 0x60, 0x37, 0xff, 0x9d, 0x60, 0x36, 0xff, 0x9d, 0x60, 0x36, 0xff, 0x9b, 0x5e, 0x35, 0xff, 0x99, 0x5d, 0x34, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x98, 0x5b, 0x32, 0xff, 0x96, 0x5a, 0x33, 0xff, 0x95, 0x57, 0x31, 0xff, 0x93, 0x56, 0x31, 0xff, 0x93, 0x57, 0x31, 0xff, 0x93, 0x55, 0x30, 0xff, 0x92, 0x56, 0x30, 0xff, 0x91, 0x54, 0x30, 0xff, 0x91, 0x55, 0x30, 0xff, 0x8f, 0x55, 0x31, 0xff, 0x8f, 0x54, 0x31, 0xff, 0x8f, 0x53, 0x30, 0xff, 0x8e, 0x53, 0x2f, 0xff, 0x8e, 0x53, 0x2f, 0xff, 0x8d, 0x52, 0x2c, 0xff, 0x8b, 0x50, 0x2b, 0xff, 0x88, 0x4e, 0x2a, 0xff, 0x8a, 0x4e, 0x29, 0xff, 0x88, 0x4e, 0x29, 0xff, 0x88, 0x4e, 0x2a, 0xff, 0x88, 0x4d, 0x29, 0xff, 0x88, 0x4e, 0x2a, 0xff, 0x89, 0x4e, 0x2a, 0xff, 0x88, 0x4f, 0x2a, 0xff, 0x8a, 0x4f, 0x2b, 0xff, 0x8a, 0x4f, 0x2c, 0xff, 0x8e, 0x52, 0x2e, 0xff, + 0x8f, 0x54, 0x31, 0xff, 0x90, 0x55, 0x31, 0xff, 0x92, 0x55, 0x33, 0xff, 0x92, 0x55, 0x32, 0xff, 0x8f, 0x53, 0x2b, 0xff, 0x8f, 0x53, 0x2b, 0xff, 0x8f, 0x53, 0x28, 0xff, 0x90, 0x53, 0x28, 0xff, 0x91, 0x55, 0x2b, 0xff, 0x94, 0x57, 0x2f, 0xff, 0x96, 0x59, 0x31, 0xff, 0x98, 0x5b, 0x32, 0xff, 0x99, 0x5b, 0x32, 0xff, 0x9a, 0x5d, 0x33, 0xff, 0x9b, 0x5e, 0x34, 0xff, 0x9d, 0x5f, 0x34, 0xff, 0xa0, 0x62, 0x36, 0xff, 0xa4, 0x64, 0x38, 0xff, 0xa5, 0x68, 0x38, 0xff, 0xa8, 0x69, 0x3a, 0xff, 0xac, 0x6e, 0x3d, 0xff, 0xaf, 0x71, 0x41, 0xff, 0xb2, 0x76, 0x45, 0xff, 0xb3, 0x79, 0x49, 0xff, 0xb5, 0x7c, 0x4d, 0xff, 0xb9, 0x7d, 0x4e, 0xff, 0xbb, 0x80, 0x4e, 0xff, 0xbf, 0x82, 0x4d, 0xff, 0xc0, 0x80, 0x4b, 0xff, 0xbe, 0x80, 0x49, 0xff, 0xbf, 0x7f, 0x49, 0xff, 0xc4, 0x82, 0x4a, 0xff, 0xc9, 0x84, 0x4c, 0xff, 0xcc, 0x87, 0x4e, 0xff, 0xc3, 0x83, 0x4c, 0xff, 0xc8, 0x87, 0x50, 0xff, 0xcf, 0x8c, 0x52, 0xff, 0xd6, 0x91, 0x55, 0xff, 0xde, 0x94, 0x58, 0xff, 0xe0, 0x99, 0x5c, 0xff, 0xdf, 0x9e, 0x62, 0xff, 0xd9, 0x9a, 0x60, 0xff, 0xd0, 0x8c, 0x57, 0xff, 0xcd, 0x8f, 0x58, 0xff, 0xca, 0x93, 0x5c, 0xff, 0xc9, 0x96, 0x60, 0xff, 0xc8, 0x96, 0x63, 0xff, 0xc7, 0x96, 0x68, 0xff, 0xc6, 0x94, 0x6a, 0xff, 0xc6, 0x95, 0x6c, 0xff, 0xc7, 0x95, 0x6d, 0xff, 0xc9, 0x96, 0x6e, 0xff, 0xcc, 0x97, 0x6d, 0xff, 0xcf, 0x99, 0x6b, 0xff, 0xd2, 0x9c, 0x67, 0xff, 0xd7, 0x9f, 0x66, 0xff, 0xdb, 0xa3, 0x64, 0xff, 0xdf, 0xa4, 0x62, 0xff, 0xde, 0xa2, 0x61, 0xff, 0xde, 0xa3, 0x60, 0xff, 0xdf, 0xa0, 0x60, 0xff, 0xdf, 0x9f, 0x5e, 0xff, 0xdf, 0x9f, 0x5e, 0xff, 0xe0, 0xa1, 0x61, 0xff, 0xdf, 0xa1, 0x62, 0xff, 0xdc, 0x9f, 0x5f, 0xff, 0xd7, 0x9a, 0x5b, 0xff, 0xd4, 0x96, 0x59, 0xff, 0xcd, 0x90, 0x54, 0xff, 0xbe, 0x84, 0x49, 0xff, 0xbf, 0x84, 0x4c, 0xff, 0xbd, 0x84, 0x4c, 0xff, 0xbd, 0x83, 0x4c, 0xff, 0xc0, 0x8a, 0x53, 0xff, 0xbd, 0x87, 0x50, 0xff, 0xb9, 0x85, 0x4c, 0xff, 0xb9, 0x83, 0x4d, 0xff, 0xb8, 0x82, 0x4b, 0xff, 0xb6, 0x80, 0x4a, 0xff, 0xb0, 0x7a, 0x49, 0xff, 0xad, 0x77, 0x48, 0xff, 0xad, 0x77, 0x47, 0xff, 0xad, 0x77, 0x46, 0xff, 0xac, 0x76, 0x44, 0xff, 0xab, 0x74, 0x42, 0xff, 0xaa, 0x72, 0x3e, 0xff, 0xaa, 0x71, 0x3b, 0xff, 0xab, 0x70, 0x38, 0xff, 0xaa, 0x6e, 0x34, 0xff, 0xa9, 0x6d, 0x31, 0xff, 0xa8, 0x6d, 0x30, 0xff, 0xaa, 0x6d, 0x31, 0xff, 0xab, 0x6d, 0x32, 0xff, 0xaa, 0x6f, 0x34, 0xff, 0xa3, 0x69, 0x35, 0xff, 0x98, 0x5c, 0x33, 0xff, 0x99, 0x5e, 0x34, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0x9d, 0x61, 0x36, 0xff, 0x9f, 0x62, 0x38, 0xff, 0xa0, 0x64, 0x38, 0xff, 0xa1, 0x66, 0x39, 0xff, 0xa3, 0x69, 0x3b, 0xff, 0xa6, 0x6c, 0x3d, 0xff, 0xa9, 0x6e, 0x3f, 0xff, 0xab, 0x70, 0x40, 0xff, 0xae, 0x72, 0x42, 0xff, 0xb0, 0x75, 0x44, 0xff, 0xb2, 0x78, 0x46, 0xff, 0xb5, 0x7b, 0x49, 0xff, 0xb5, 0x7d, 0x49, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb8, 0x7f, 0x47, 0xff, 0xb8, 0x7e, 0x46, 0xff, 0xb9, 0x7e, 0x46, 0xff, 0xb9, 0x7f, 0x46, 0xff, 0xba, 0x80, 0x46, 0xff, 0xbc, 0x83, 0x47, 0xff, 0xbf, 0x86, 0x48, 0xff, 0xbd, 0x84, 0x47, 0xff, 0xb4, 0x79, 0x43, 0xff, 0xb2, 0x75, 0x41, 0xff, 0xb4, 0x79, 0x43, 0xff, 0xb5, 0x7c, 0x48, 0xff, 0xb7, 0x82, 0x4c, 0xff, 0xb9, 0x84, 0x4e, 0xff, 0xbb, 0x84, 0x50, 0xff, 0xbd, 0x85, 0x51, 0xff, 0xbd, 0x87, 0x53, 0xff, 0xc0, 0x89, 0x53, 0xff, 0xc3, 0x8b, 0x53, 0xff, 0xc6, 0x8d, 0x52, 0xff, 0xc9, 0x8d, 0x52, 0xff, 0xcd, 0x8c, 0x52, 0xff, 0xcf, 0x8c, 0x52, 0xff, 0xce, 0x8b, 0x51, 0xff, 0xce, 0x8c, 0x50, 0xff, 0xd0, 0x8b, 0x4f, 0xff, 0xd4, 0x8d, 0x4f, 0xff, 0xdc, 0x90, 0x51, 0xff, 0xe0, 0x96, 0x55, 0xff, 0xe0, 0x9a, 0x59, 0xff, 0xdf, 0x9c, 0x5b, 0xff, 0xde, 0xa3, 0x60, 0xff, 0xe0, 0xaa, 0x66, 0xff, 0xe0, 0xb0, 0x6b, 0xff, 0xdf, 0xb7, 0x6e, 0xff, 0xe0, 0xbb, 0x70, 0xff, 0xe0, 0xc0, 0x73, 0xff, 0xdf, 0xc0, 0x72, 0xff, 0xdf, 0xbd, 0x71, 0xff, 0xe0, 0xbb, 0x71, 0xff, 0xe0, 0xb3, 0x6d, 0xff, 0xe0, 0xad, 0x6a, 0xff, 0xe0, 0xa9, 0x67, 0xff, 0xe0, 0xa3, 0x63, 0xff, 0xe0, 0xa1, 0x62, 0xff, 0xe0, 0xa0, 0x61, 0xff, 0xdf, 0x9e, 0x5f, 0xff, 0xe0, 0x9c, 0x5e, 0xff, 0xe0, 0x9a, 0x5d, 0xff, 0xe0, 0x9a, 0x5d, 0xff, 0xdf, 0x9a, 0x5d, 0xff, 0xde, 0x9e, 0x63, 0xff, 0xdf, 0x9f, 0x63, 0xff, 0xe0, 0xa1, 0x63, 0xff, 0xe0, 0x9f, 0x63, 0xff, 0xe0, 0xa1, 0x63, 0xff, 0xe0, 0x9f, 0x61, 0xff, 0xe0, 0xa1, 0x63, 0xff, 0xdf, 0x9d, 0x5f, 0xff, 0xde, 0x98, 0x5b, 0xff, 0xe0, 0x99, 0x5c, 0xff, 0xe0, 0x98, 0x5a, 0xff, 0xe0, 0x9b, 0x5c, 0xff, 0xe0, 0x9d, 0x5f, 0xff, 0xe0, 0x9e, 0x61, 0xff, 0xe0, 0xa2, 0x61, 0xff, 0xe0, 0x9f, 0x62, 0xff, 0xe0, 0xa1, 0x63, 0xff, 0xe0, 0xa1, 0x62, 0xff, 0xe0, 0xa0, 0x61, 0xff, 0xdc, 0x9b, 0x5e, 0xff, 0xcd, 0x8d, 0x53, 0xff, 0xc5, 0x86, 0x4f, 0xff, 0xbe, 0x82, 0x4b, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xb6, 0x7b, 0x47, 0xff, 0xbb, 0x81, 0x49, 0xff, 0xc5, 0x85, 0x4b, 0xff, 0xc6, 0x85, 0x4b, 0xff, 0xaf, 0x72, 0x3f, 0xff, 0xa4, 0x68, 0x39, 0xff, 0xa2, 0x65, 0x38, 0xff, 0x9f, 0x62, 0x37, 0xff, 0x9f, 0x61, 0x35, 0xff, 0x9e, 0x61, 0x35, 0xff, 0x9e, 0x62, 0x36, 0xff, 0xa1, 0x62, 0x38, 0xff, 0xa0, 0x62, 0x37, 0xff, 0x9f, 0x61, 0x36, 0xff, 0x9d, 0x61, 0x37, 0xff, 0x9d, 0x61, 0x36, 0xff, 0x9b, 0x5e, 0x35, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x99, 0x5d, 0x34, 0xff, 0x97, 0x59, 0x33, 0xff, 0x95, 0x58, 0x32, 0xff, 0x94, 0x58, 0x32, 0xff, 0x96, 0x58, 0x32, 0xff, 0x94, 0x59, 0x31, 0xff, 0x93, 0x55, 0x30, 0xff, 0x94, 0x56, 0x31, 0xff, 0x90, 0x56, 0x31, 0xff, 0x91, 0x56, 0x32, 0xff, 0x8f, 0x55, 0x32, 0xff, 0x8f, 0x54, 0x31, 0xff, 0x8f, 0x54, 0x30, 0xff, 0x8e, 0x52, 0x2e, 0xff, 0x8e, 0x51, 0x2c, 0xff, 0x8d, 0x51, 0x2b, 0xff, 0x8d, 0x50, 0x2b, 0xff, 0x8a, 0x4f, 0x2b, 0xff, 0x89, 0x4f, 0x2b, 0xff, 0x8a, 0x50, 0x2b, 0xff, 0x89, 0x4f, 0x2a, 0xff, 0x89, 0x4f, 0x2a, 0xff, 0x88, 0x4f, 0x29, 0xff, 0x8b, 0x50, 0x2d, 0xff, 0x8d, 0x51, 0x2e, 0xff, 0x8f, 0x52, 0x30, 0xff, 0x8f, 0x53, 0x31, 0xff, + 0x91, 0x55, 0x32, 0xff, 0x91, 0x56, 0x32, 0xff, 0x91, 0x55, 0x31, 0xff, 0x8e, 0x50, 0x2b, 0xff, 0x8d, 0x51, 0x28, 0xff, 0x8f, 0x53, 0x28, 0xff, 0x90, 0x53, 0x2b, 0xff, 0x91, 0x53, 0x2d, 0xff, 0x94, 0x56, 0x30, 0xff, 0x94, 0x57, 0x30, 0xff, 0x94, 0x57, 0x30, 0xff, 0x96, 0x58, 0x31, 0xff, 0x97, 0x5a, 0x32, 0xff, 0x99, 0x5a, 0x33, 0xff, 0x9a, 0x5b, 0x33, 0xff, 0x9c, 0x5e, 0x34, 0xff, 0xa0, 0x62, 0x35, 0xff, 0xa1, 0x63, 0x35, 0xff, 0xa3, 0x66, 0x38, 0xff, 0xa6, 0x68, 0x39, 0xff, 0xa9, 0x6a, 0x3b, 0xff, 0xac, 0x6e, 0x3e, 0xff, 0xaf, 0x73, 0x42, 0xff, 0xb1, 0x76, 0x45, 0xff, 0xb3, 0x78, 0x48, 0xff, 0xb5, 0x7b, 0x4a, 0xff, 0xb9, 0x7e, 0x4c, 0xff, 0xbd, 0x81, 0x4b, 0xff, 0xbf, 0x81, 0x4a, 0xff, 0xc4, 0x81, 0x4a, 0xff, 0xc6, 0x83, 0x4b, 0xff, 0xc5, 0x84, 0x4b, 0xff, 0xc9, 0x84, 0x4d, 0xff, 0xce, 0x87, 0x4d, 0xff, 0xc8, 0x85, 0x4e, 0xff, 0xc8, 0x87, 0x4f, 0xff, 0xcf, 0x8b, 0x52, 0xff, 0xd6, 0x90, 0x56, 0xff, 0xdf, 0x96, 0x5c, 0xff, 0xdf, 0x9a, 0x61, 0xff, 0xe0, 0xa2, 0x67, 0xff, 0xde, 0xa1, 0x66, 0xff, 0xd3, 0x92, 0x5b, 0xff, 0xd2, 0x8f, 0x58, 0xff, 0xd0, 0x94, 0x5d, 0xff, 0xce, 0x97, 0x60, 0xff, 0xcb, 0x98, 0x63, 0xff, 0xc9, 0x97, 0x68, 0xff, 0xc8, 0x96, 0x6a, 0xff, 0xc8, 0x95, 0x6c, 0xff, 0xca, 0x96, 0x6d, 0xff, 0xca, 0x97, 0x6e, 0xff, 0xce, 0x9a, 0x6e, 0xff, 0xd2, 0x9d, 0x6f, 0xff, 0xd7, 0x9e, 0x6d, 0xff, 0xdd, 0xa1, 0x6a, 0xff, 0xe0, 0xa9, 0x69, 0xff, 0xe0, 0xad, 0x6a, 0xff, 0xdf, 0xac, 0x68, 0xff, 0xdf, 0xac, 0x69, 0xff, 0xe0, 0xaa, 0x6a, 0xff, 0xde, 0xa7, 0x67, 0xff, 0xe0, 0xa7, 0x65, 0xff, 0xe0, 0xa8, 0x64, 0xff, 0xe0, 0xa7, 0x64, 0xff, 0xdf, 0xa7, 0x66, 0xff, 0xe0, 0xa2, 0x62, 0xff, 0xde, 0x9d, 0x5d, 0xff, 0xda, 0x9a, 0x59, 0xff, 0xcf, 0x8f, 0x54, 0xff, 0xc0, 0x84, 0x4e, 0xff, 0xc0, 0x87, 0x50, 0xff, 0xc1, 0x89, 0x53, 0xff, 0xc1, 0x8a, 0x54, 0xff, 0xbf, 0x87, 0x51, 0xff, 0xbd, 0x89, 0x4f, 0xff, 0xbb, 0x87, 0x4d, 0xff, 0xba, 0x85, 0x4c, 0xff, 0xb7, 0x81, 0x4b, 0xff, 0xb1, 0x7b, 0x4a, 0xff, 0xb0, 0x7b, 0x4a, 0xff, 0xaf, 0x7a, 0x4a, 0xff, 0xae, 0x77, 0x46, 0xff, 0xad, 0x75, 0x40, 0xff, 0xac, 0x73, 0x3d, 0xff, 0xab, 0x71, 0x39, 0xff, 0xaa, 0x6f, 0x37, 0xff, 0xa9, 0x6d, 0x35, 0xff, 0xaa, 0x6d, 0x32, 0xff, 0xa9, 0x6d, 0x31, 0xff, 0xa9, 0x6c, 0x30, 0xff, 0xa9, 0x6d, 0x2f, 0xff, 0xaa, 0x70, 0x33, 0xff, 0xa2, 0x68, 0x35, 0xff, 0x97, 0x5b, 0x32, 0xff, 0x98, 0x5c, 0x34, 0xff, 0x9a, 0x5d, 0x34, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0x9c, 0x62, 0x35, 0xff, 0x9f, 0x62, 0x37, 0xff, 0xa0, 0x64, 0x38, 0xff, 0xa1, 0x66, 0x39, 0xff, 0xa3, 0x67, 0x3a, 0xff, 0xa4, 0x69, 0x3c, 0xff, 0xa6, 0x6b, 0x3e, 0xff, 0xa8, 0x6d, 0x3e, 0xff, 0xaa, 0x70, 0x41, 0xff, 0xad, 0x73, 0x44, 0xff, 0xb0, 0x75, 0x45, 0xff, 0xb1, 0x78, 0x46, 0xff, 0xb1, 0x7c, 0x46, 0xff, 0xb2, 0x7e, 0x44, 0xff, 0xb4, 0x7e, 0x44, 0xff, 0xb5, 0x7d, 0x45, 0xff, 0xb5, 0x7b, 0x43, 0xff, 0xb6, 0x7e, 0x46, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb9, 0x81, 0x46, 0xff, 0xba, 0x82, 0x47, 0xff, 0xba, 0x80, 0x46, 0xff, 0xb6, 0x79, 0x41, 0xff, 0xaf, 0x72, 0x3d, 0xff, 0xaf, 0x73, 0x40, 0xff, 0xb1, 0x76, 0x42, 0xff, 0xb3, 0x77, 0x43, 0xff, 0xb5, 0x79, 0x45, 0xff, 0xb6, 0x7e, 0x49, 0xff, 0xb8, 0x82, 0x4e, 0xff, 0xb9, 0x83, 0x51, 0xff, 0xbc, 0x86, 0x53, 0xff, 0xbe, 0x88, 0x54, 0xff, 0xbf, 0x88, 0x56, 0xff, 0xc2, 0x8a, 0x56, 0xff, 0xc6, 0x8d, 0x55, 0xff, 0xc9, 0x8f, 0x56, 0xff, 0xcc, 0x90, 0x55, 0xff, 0xd1, 0x8f, 0x55, 0xff, 0xd4, 0x90, 0x54, 0xff, 0xd5, 0x8f, 0x54, 0xff, 0xd8, 0x8f, 0x53, 0xff, 0xda, 0x8f, 0x52, 0xff, 0xde, 0x91, 0x53, 0xff, 0xdf, 0x95, 0x54, 0xff, 0xe0, 0x9a, 0x59, 0xff, 0xdf, 0x9e, 0x5e, 0xff, 0xe0, 0xa3, 0x61, 0xff, 0xdf, 0xab, 0x67, 0xff, 0xe0, 0xb3, 0x6c, 0xff, 0xe1, 0xbb, 0x70, 0xff, 0xdf, 0xc1, 0x72, 0xff, 0xde, 0xc3, 0x74, 0xff, 0xde, 0xc6, 0x76, 0xff, 0xdd, 0xc6, 0x77, 0xff, 0xdd, 0xc4, 0x76, 0xff, 0xdd, 0xc3, 0x74, 0xff, 0xdf, 0xbe, 0x71, 0xff, 0xe0, 0xb4, 0x6d, 0xff, 0xdf, 0xab, 0x6a, 0xff, 0xe0, 0xa4, 0x65, 0xff, 0xe0, 0xa2, 0x61, 0xff, 0xe0, 0xa1, 0x61, 0xff, 0xdf, 0xa0, 0x61, 0xff, 0xdf, 0x9e, 0x5f, 0xff, 0xe0, 0x9c, 0x5e, 0xff, 0xdf, 0x9c, 0x5e, 0xff, 0xe0, 0x9a, 0x5d, 0xff, 0xdf, 0x9f, 0x63, 0xff, 0xe0, 0xa1, 0x65, 0xff, 0xe0, 0x9f, 0x63, 0xff, 0xe0, 0x9f, 0x63, 0xff, 0xe0, 0x9e, 0x62, 0xff, 0xe0, 0x9e, 0x62, 0xff, 0xe0, 0xa1, 0x63, 0xff, 0xe0, 0x9c, 0x5f, 0xff, 0xdf, 0x97, 0x5a, 0xff, 0xe0, 0x95, 0x59, 0xff, 0xe0, 0x97, 0x5a, 0xff, 0xe0, 0x99, 0x5b, 0xff, 0xe0, 0x99, 0x5c, 0xff, 0xe0, 0x99, 0x5d, 0xff, 0xdf, 0x9c, 0x5e, 0xff, 0xe0, 0x9a, 0x5e, 0xff, 0xe0, 0x9c, 0x5d, 0xff, 0xe0, 0x9a, 0x5f, 0xff, 0xe1, 0x9a, 0x5e, 0xff, 0xe1, 0x9a, 0x5e, 0xff, 0xcc, 0x8c, 0x52, 0xff, 0xc0, 0x82, 0x4c, 0xff, 0xbe, 0x80, 0x4a, 0xff, 0xc8, 0x89, 0x4c, 0xff, 0xce, 0x8c, 0x4e, 0xff, 0xc9, 0x89, 0x4b, 0xff, 0xc2, 0x85, 0x4a, 0xff, 0xac, 0x71, 0x3f, 0xff, 0xa4, 0x69, 0x3b, 0xff, 0xa3, 0x65, 0x39, 0xff, 0xa0, 0x63, 0x38, 0xff, 0xa0, 0x62, 0x36, 0xff, 0x9e, 0x62, 0x36, 0xff, 0x9d, 0x5f, 0x36, 0xff, 0x9c, 0x5e, 0x35, 0xff, 0x9d, 0x5f, 0x36, 0xff, 0x9e, 0x61, 0x36, 0xff, 0x9e, 0x61, 0x36, 0xff, 0x9e, 0x61, 0x37, 0xff, 0x9d, 0x5f, 0x35, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0x99, 0x5c, 0x33, 0xff, 0x97, 0x5a, 0x33, 0xff, 0x96, 0x58, 0x32, 0xff, 0x97, 0x5a, 0x33, 0xff, 0x96, 0x59, 0x32, 0xff, 0x95, 0x57, 0x32, 0xff, 0x95, 0x57, 0x32, 0xff, 0x94, 0x57, 0x31, 0xff, 0x93, 0x57, 0x32, 0xff, 0x92, 0x55, 0x32, 0xff, 0x91, 0x56, 0x32, 0xff, 0x90, 0x55, 0x31, 0xff, 0x91, 0x55, 0x31, 0xff, 0x8f, 0x53, 0x2e, 0xff, 0x8e, 0x53, 0x2e, 0xff, 0x8e, 0x52, 0x2c, 0xff, 0x8d, 0x51, 0x2c, 0xff, 0x8c, 0x51, 0x2c, 0xff, 0x8c, 0x51, 0x2c, 0xff, 0x8d, 0x50, 0x2e, 0xff, 0x8d, 0x51, 0x2e, 0xff, 0x8f, 0x54, 0x30, 0xff, 0x90, 0x54, 0x31, 0xff, 0x8f, 0x53, 0x30, 0xff, 0x8f, 0x55, 0x31, 0xff, 0x90, 0x55, 0x31, 0xff, 0x90, 0x55, 0x31, 0xff, + 0x92, 0x57, 0x33, 0xff, 0x8e, 0x52, 0x2c, 0xff, 0x8b, 0x4f, 0x27, 0xff, 0x8b, 0x4f, 0x28, 0xff, 0x8e, 0x51, 0x2b, 0xff, 0x8e, 0x52, 0x2b, 0xff, 0x8f, 0x53, 0x2c, 0xff, 0x90, 0x53, 0x2c, 0xff, 0x91, 0x54, 0x2e, 0xff, 0x92, 0x55, 0x2f, 0xff, 0x93, 0x56, 0x30, 0xff, 0x94, 0x56, 0x31, 0xff, 0x95, 0x58, 0x32, 0xff, 0x97, 0x5b, 0x32, 0xff, 0x9a, 0x5b, 0x33, 0xff, 0x9b, 0x5c, 0x33, 0xff, 0x9d, 0x5e, 0x34, 0xff, 0x9e, 0x61, 0x35, 0xff, 0x9f, 0x62, 0x35, 0xff, 0xa2, 0x63, 0x36, 0xff, 0xa6, 0x67, 0x39, 0xff, 0xaa, 0x6c, 0x3b, 0xff, 0xae, 0x71, 0x3e, 0xff, 0xaf, 0x73, 0x41, 0xff, 0xb1, 0x76, 0x44, 0xff, 0xb3, 0x7a, 0x47, 0xff, 0xb7, 0x7d, 0x49, 0xff, 0xbb, 0x7e, 0x49, 0xff, 0xbf, 0x80, 0x4a, 0xff, 0xc2, 0x81, 0x4a, 0xff, 0xc5, 0x84, 0x4b, 0xff, 0xc8, 0x86, 0x4d, 0xff, 0xcc, 0x87, 0x4e, 0xff, 0xcf, 0x88, 0x4e, 0xff, 0xc9, 0x86, 0x4e, 0xff, 0xc7, 0x86, 0x4e, 0xff, 0xcc, 0x8a, 0x4f, 0xff, 0xd3, 0x8e, 0x51, 0xff, 0xdb, 0x92, 0x55, 0xff, 0xe0, 0x98, 0x5b, 0xff, 0xe1, 0x9f, 0x62, 0xff, 0xe1, 0xa4, 0x68, 0xff, 0xde, 0xa5, 0x6a, 0xff, 0xd6, 0x95, 0x5d, 0xff, 0xd4, 0x97, 0x5f, 0xff, 0xd2, 0x99, 0x61, 0xff, 0xd0, 0x9a, 0x63, 0xff, 0xce, 0x99, 0x64, 0xff, 0xcd, 0x98, 0x68, 0xff, 0xcc, 0x98, 0x6d, 0xff, 0xcd, 0x98, 0x6e, 0xff, 0xce, 0x98, 0x70, 0xff, 0xd1, 0x9c, 0x71, 0xff, 0xd5, 0x9d, 0x71, 0xff, 0xdb, 0xa0, 0x71, 0xff, 0xe0, 0xa6, 0x6e, 0xff, 0xe0, 0xac, 0x6d, 0xff, 0xe1, 0xb6, 0x6e, 0xff, 0xdf, 0xb9, 0x6f, 0xff, 0xe1, 0xbd, 0x73, 0xff, 0xe1, 0xbc, 0x73, 0xff, 0xe0, 0xba, 0x72, 0xff, 0xe0, 0xb9, 0x6f, 0xff, 0xe0, 0xb9, 0x6e, 0xff, 0xe0, 0xb8, 0x6d, 0xff, 0xe1, 0xb6, 0x6c, 0xff, 0xe0, 0xaf, 0x69, 0xff, 0xe0, 0xa7, 0x64, 0xff, 0xe0, 0xa2, 0x5f, 0xff, 0xd8, 0x98, 0x5a, 0xff, 0xc9, 0x8b, 0x52, 0xff, 0xc5, 0x8a, 0x51, 0xff, 0xcb, 0x91, 0x58, 0xff, 0xc7, 0x90, 0x57, 0xff, 0xc2, 0x8c, 0x53, 0xff, 0xbe, 0x89, 0x4f, 0xff, 0xbd, 0x86, 0x4d, 0xff, 0xbb, 0x87, 0x4f, 0xff, 0xb5, 0x80, 0x4d, 0xff, 0xb3, 0x7d, 0x4b, 0xff, 0xb3, 0x7d, 0x4d, 0xff, 0xb1, 0x7b, 0x48, 0xff, 0xaf, 0x78, 0x41, 0xff, 0xae, 0x74, 0x3d, 0xff, 0xad, 0x73, 0x37, 0xff, 0xac, 0x70, 0x33, 0xff, 0xab, 0x6e, 0x32, 0xff, 0xaa, 0x6d, 0x31, 0xff, 0xa9, 0x6c, 0x31, 0xff, 0xa9, 0x6d, 0x30, 0xff, 0xa9, 0x6d, 0x30, 0xff, 0xaa, 0x6c, 0x33, 0xff, 0xa1, 0x64, 0x33, 0xff, 0x97, 0x5b, 0x32, 0xff, 0x98, 0x5c, 0x33, 0xff, 0x99, 0x5d, 0x34, 0xff, 0x9a, 0x5e, 0x34, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0x9c, 0x60, 0x36, 0xff, 0x9f, 0x63, 0x37, 0xff, 0x9f, 0x64, 0x38, 0xff, 0xa1, 0x66, 0x39, 0xff, 0xa2, 0x68, 0x3b, 0xff, 0xa3, 0x68, 0x3c, 0xff, 0xa5, 0x69, 0x3c, 0xff, 0xa7, 0x6b, 0x3e, 0xff, 0xaa, 0x6e, 0x40, 0xff, 0xab, 0x71, 0x42, 0xff, 0xad, 0x74, 0x45, 0xff, 0xaf, 0x78, 0x47, 0xff, 0xaf, 0x7b, 0x47, 0xff, 0xb1, 0x7c, 0x46, 0xff, 0xb3, 0x7c, 0x46, 0xff, 0xb3, 0x7d, 0x44, 0xff, 0xb4, 0x7c, 0x44, 0xff, 0xb5, 0x7e, 0x44, 0xff, 0xb7, 0x81, 0x46, 0xff, 0xb9, 0x82, 0x46, 0xff, 0xb6, 0x7e, 0x44, 0xff, 0xaf, 0x75, 0x3f, 0xff, 0xab, 0x70, 0x3c, 0xff, 0xac, 0x70, 0x3d, 0xff, 0xaf, 0x73, 0x40, 0xff, 0xb1, 0x76, 0x41, 0xff, 0xb2, 0x77, 0x41, 0xff, 0xb4, 0x7a, 0x44, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb5, 0x7f, 0x49, 0xff, 0xb7, 0x81, 0x4d, 0xff, 0xbb, 0x84, 0x51, 0xff, 0xbe, 0x87, 0x56, 0xff, 0xc0, 0x8a, 0x57, 0xff, 0xc1, 0x8b, 0x57, 0xff, 0xc4, 0x8d, 0x58, 0xff, 0xc7, 0x8f, 0x58, 0xff, 0xcb, 0x92, 0x58, 0xff, 0xcf, 0x92, 0x57, 0xff, 0xd4, 0x94, 0x58, 0xff, 0xda, 0x95, 0x57, 0xff, 0xdd, 0x94, 0x57, 0xff, 0xdf, 0x93, 0x56, 0xff, 0xdf, 0x93, 0x55, 0xff, 0xe0, 0x96, 0x57, 0xff, 0xe1, 0x98, 0x57, 0xff, 0xdf, 0x9a, 0x5b, 0xff, 0xdf, 0xa4, 0x61, 0xff, 0xdf, 0xa8, 0x65, 0xff, 0xdf, 0xb6, 0x6b, 0xff, 0xde, 0xc2, 0x71, 0xff, 0xda, 0xc7, 0x77, 0xff, 0xd8, 0xc8, 0x7b, 0xff, 0xd8, 0xc9, 0x7d, 0xff, 0xd8, 0xc9, 0x7f, 0xff, 0xd8, 0xc9, 0x7f, 0xff, 0xda, 0xc9, 0x7e, 0xff, 0xdc, 0xca, 0x7a, 0xff, 0xdd, 0xc4, 0x76, 0xff, 0xe0, 0xba, 0x70, 0xff, 0xe0, 0xb1, 0x6d, 0xff, 0xdf, 0xa8, 0x68, 0xff, 0xdf, 0xa4, 0x66, 0xff, 0xe0, 0xa3, 0x63, 0xff, 0xe0, 0xa1, 0x61, 0xff, 0xdf, 0x9e, 0x60, 0xff, 0xdf, 0x9d, 0x5f, 0xff, 0xe0, 0x9d, 0x60, 0xff, 0xdf, 0x9d, 0x60, 0xff, 0xdf, 0x9e, 0x62, 0xff, 0xe0, 0xa0, 0x64, 0xff, 0xe0, 0xa1, 0x63, 0xff, 0xe0, 0x9f, 0x62, 0xff, 0xe0, 0x9d, 0x60, 0xff, 0xe0, 0x9d, 0x61, 0xff, 0xe0, 0x9e, 0x61, 0xff, 0xdf, 0x9a, 0x5e, 0xff, 0xdf, 0x96, 0x5a, 0xff, 0xe0, 0x95, 0x5a, 0xff, 0xe0, 0x95, 0x59, 0xff, 0xe0, 0x95, 0x58, 0xff, 0xe0, 0x98, 0x5a, 0xff, 0xe0, 0x99, 0x5c, 0xff, 0xe0, 0x97, 0x5b, 0xff, 0xe0, 0x97, 0x5b, 0xff, 0xe0, 0x97, 0x5a, 0xff, 0xe0, 0x95, 0x59, 0xff, 0xe0, 0x95, 0x59, 0xff, 0xe2, 0x9a, 0x5d, 0xff, 0xd7, 0x94, 0x58, 0xff, 0xd8, 0x92, 0x55, 0xff, 0xd7, 0x8f, 0x4f, 0xff, 0xd1, 0x8b, 0x4c, 0xff, 0xcb, 0x8a, 0x4b, 0xff, 0xbc, 0x7e, 0x47, 0xff, 0xaa, 0x6e, 0x3d, 0xff, 0xa5, 0x68, 0x3b, 0xff, 0xa4, 0x67, 0x39, 0xff, 0xa2, 0x63, 0x38, 0xff, 0xa0, 0x63, 0x38, 0xff, 0x9f, 0x62, 0x38, 0xff, 0x9e, 0x61, 0x37, 0xff, 0x9d, 0x5f, 0x36, 0xff, 0x9c, 0x5f, 0x35, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x9b, 0x5e, 0x35, 0xff, 0x9d, 0x5f, 0x35, 0xff, 0x9b, 0x5e, 0x35, 0xff, 0x9a, 0x5c, 0x34, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x99, 0x5a, 0x33, 0xff, 0x97, 0x5a, 0x33, 0xff, 0x99, 0x5b, 0x33, 0xff, 0x96, 0x5a, 0x32, 0xff, 0x96, 0x58, 0x32, 0xff, 0x95, 0x57, 0x32, 0xff, 0x94, 0x57, 0x31, 0xff, 0x93, 0x57, 0x32, 0xff, 0x92, 0x56, 0x32, 0xff, 0x92, 0x57, 0x32, 0xff, 0x91, 0x55, 0x32, 0xff, 0x91, 0x55, 0x31, 0xff, 0x90, 0x54, 0x30, 0xff, 0x92, 0x55, 0x31, 0xff, 0x92, 0x55, 0x30, 0xff, 0x91, 0x55, 0x31, 0xff, 0x94, 0x56, 0x32, 0xff, 0x92, 0x56, 0x32, 0xff, 0x90, 0x55, 0x31, 0xff, 0x90, 0x54, 0x31, 0xff, 0x90, 0x54, 0x31, 0xff, 0x8f, 0x53, 0x30, 0xff, 0x8f, 0x53, 0x31, 0xff, 0x8f, 0x54, 0x31, 0xff, 0x90, 0x54, 0x31, 0xff, 0x91, 0x55, 0x32, 0xff, + 0x8d, 0x52, 0x2c, 0xff, 0x89, 0x4e, 0x27, 0xff, 0x8a, 0x4f, 0x28, 0xff, 0x8c, 0x4f, 0x29, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x8d, 0x50, 0x2b, 0xff, 0x8e, 0x51, 0x2c, 0xff, 0x8e, 0x52, 0x2b, 0xff, 0x8f, 0x52, 0x2c, 0xff, 0x90, 0x53, 0x2d, 0xff, 0x91, 0x55, 0x2f, 0xff, 0x93, 0x55, 0x2f, 0xff, 0x94, 0x57, 0x30, 0xff, 0x96, 0x58, 0x30, 0xff, 0x97, 0x59, 0x32, 0xff, 0x98, 0x59, 0x32, 0xff, 0x9a, 0x5c, 0x32, 0xff, 0x9b, 0x5d, 0x33, 0xff, 0x9f, 0x5f, 0x33, 0xff, 0xa0, 0x62, 0x35, 0xff, 0xa2, 0x64, 0x36, 0xff, 0xa6, 0x67, 0x39, 0xff, 0xaa, 0x6c, 0x3b, 0xff, 0xaf, 0x72, 0x3f, 0xff, 0xb0, 0x73, 0x41, 0xff, 0xb3, 0x76, 0x43, 0xff, 0xb6, 0x79, 0x45, 0xff, 0xb9, 0x7c, 0x47, 0xff, 0xbd, 0x7e, 0x47, 0xff, 0xc0, 0x80, 0x49, 0xff, 0xc3, 0x84, 0x4b, 0xff, 0xc6, 0x87, 0x4e, 0xff, 0xcb, 0x87, 0x51, 0xff, 0xce, 0x8a, 0x52, 0xff, 0xcb, 0x8b, 0x51, 0xff, 0xc6, 0x87, 0x4e, 0xff, 0xcc, 0x88, 0x4f, 0xff, 0xcf, 0x8b, 0x50, 0xff, 0xd6, 0x8e, 0x52, 0xff, 0xe0, 0x94, 0x58, 0xff, 0xe0, 0x9b, 0x5e, 0xff, 0xe0, 0xa0, 0x61, 0xff, 0xe0, 0xa2, 0x65, 0xff, 0xdb, 0x9f, 0x64, 0xff, 0xd7, 0x98, 0x5e, 0xff, 0xd6, 0x9c, 0x64, 0xff, 0xd6, 0x9c, 0x68, 0xff, 0xd3, 0x9c, 0x69, 0xff, 0xd1, 0x9a, 0x69, 0xff, 0xd0, 0x9a, 0x6c, 0xff, 0xd2, 0x9c, 0x70, 0xff, 0xd1, 0x9a, 0x71, 0xff, 0xd2, 0x9c, 0x71, 0xff, 0xd6, 0x9f, 0x72, 0xff, 0xdd, 0xa3, 0x73, 0xff, 0xe1, 0xa8, 0x72, 0xff, 0xe1, 0xb2, 0x71, 0xff, 0xe1, 0xbd, 0x72, 0xff, 0xdf, 0xc5, 0x77, 0xff, 0xdc, 0xc7, 0x7a, 0xff, 0xdb, 0xc8, 0x7c, 0xff, 0xda, 0xc7, 0x7e, 0xff, 0xda, 0xc8, 0x7e, 0xff, 0xd9, 0xc8, 0x7a, 0xff, 0xda, 0xc8, 0x78, 0xff, 0xdb, 0xc6, 0x75, 0xff, 0xe0, 0xc5, 0x73, 0xff, 0xe1, 0xbb, 0x6f, 0xff, 0xe1, 0xad, 0x67, 0xff, 0xde, 0xa3, 0x64, 0xff, 0xd8, 0x95, 0x5b, 0xff, 0xd4, 0x95, 0x59, 0xff, 0xd4, 0x98, 0x5d, 0xff, 0xcd, 0x92, 0x59, 0xff, 0xc8, 0x91, 0x57, 0xff, 0xc2, 0x8d, 0x52, 0xff, 0xc1, 0x8a, 0x50, 0xff, 0xbc, 0x85, 0x4e, 0xff, 0xb8, 0x80, 0x4e, 0xff, 0xb7, 0x80, 0x4d, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb3, 0x7a, 0x41, 0xff, 0xb1, 0x79, 0x3f, 0xff, 0xb0, 0x75, 0x38, 0xff, 0xae, 0x73, 0x35, 0xff, 0xad, 0x70, 0x33, 0xff, 0xab, 0x6f, 0x32, 0xff, 0xaa, 0x6c, 0x30, 0xff, 0xa9, 0x6c, 0x30, 0xff, 0xaa, 0x6d, 0x31, 0xff, 0xab, 0x6e, 0x32, 0xff, 0xa3, 0x66, 0x33, 0xff, 0x97, 0x5c, 0x33, 0xff, 0x96, 0x5d, 0x34, 0xff, 0x99, 0x5d, 0x35, 0xff, 0x99, 0x5e, 0x34, 0xff, 0x99, 0x5f, 0x35, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0x9d, 0x62, 0x36, 0xff, 0x9e, 0x62, 0x37, 0xff, 0x9f, 0x64, 0x38, 0xff, 0xa1, 0x66, 0x39, 0xff, 0xa1, 0x66, 0x3a, 0xff, 0xa3, 0x68, 0x3b, 0xff, 0xa4, 0x69, 0x3c, 0xff, 0xa6, 0x6b, 0x3d, 0xff, 0xa8, 0x6d, 0x3e, 0xff, 0xaa, 0x6f, 0x41, 0xff, 0xad, 0x74, 0x45, 0xff, 0xaf, 0x7a, 0x47, 0xff, 0xaf, 0x7b, 0x48, 0xff, 0xb0, 0x7b, 0x48, 0xff, 0xb1, 0x7d, 0x46, 0xff, 0xb2, 0x7c, 0x46, 0xff, 0xb3, 0x7d, 0x44, 0xff, 0xb5, 0x7d, 0x43, 0xff, 0xb7, 0x7e, 0x44, 0xff, 0xb1, 0x76, 0x41, 0xff, 0xa9, 0x6e, 0x3c, 0xff, 0xa9, 0x6e, 0x3b, 0xff, 0xab, 0x70, 0x3c, 0xff, 0xac, 0x71, 0x3e, 0xff, 0xaf, 0x72, 0x40, 0xff, 0xb1, 0x75, 0x41, 0xff, 0xb2, 0x77, 0x41, 0xff, 0xb3, 0x78, 0x42, 0xff, 0xb5, 0x79, 0x45, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb8, 0x80, 0x4c, 0xff, 0xbb, 0x84, 0x51, 0xff, 0xbe, 0x88, 0x57, 0xff, 0xc0, 0x8a, 0x58, 0xff, 0xc2, 0x8c, 0x58, 0xff, 0xc5, 0x8f, 0x59, 0xff, 0xc9, 0x92, 0x5a, 0xff, 0xcd, 0x95, 0x5b, 0xff, 0xd2, 0x95, 0x5b, 0xff, 0xd8, 0x94, 0x59, 0xff, 0xde, 0x95, 0x58, 0xff, 0xdf, 0x96, 0x57, 0xff, 0xe0, 0x95, 0x57, 0xff, 0xe0, 0x98, 0x57, 0xff, 0xdf, 0x9d, 0x5b, 0xff, 0xdf, 0xa2, 0x5f, 0xff, 0xe0, 0xa5, 0x62, 0xff, 0xdf, 0xac, 0x66, 0xff, 0xdf, 0xb8, 0x6c, 0xff, 0xdf, 0xc6, 0x73, 0xff, 0xd9, 0xca, 0x7b, 0xff, 0xd7, 0xca, 0x80, 0xff, 0xd9, 0xc9, 0x85, 0xff, 0xda, 0xca, 0x89, 0xff, 0xdb, 0xca, 0x88, 0xff, 0xda, 0xca, 0x87, 0xff, 0xd9, 0xc9, 0x85, 0xff, 0xd8, 0xc8, 0x81, 0xff, 0xdb, 0xc8, 0x7b, 0xff, 0xdf, 0xc3, 0x75, 0xff, 0xdf, 0xb9, 0x70, 0xff, 0xe0, 0xae, 0x6a, 0xff, 0xe0, 0xa6, 0x68, 0xff, 0xdf, 0xa6, 0x66, 0xff, 0xe0, 0xa4, 0x64, 0xff, 0xe1, 0xa2, 0x62, 0xff, 0xe0, 0xa1, 0x61, 0xff, 0xe0, 0x9f, 0x61, 0xff, 0xdf, 0x9d, 0x61, 0xff, 0xde, 0xa0, 0x65, 0xff, 0xe0, 0xa3, 0x67, 0xff, 0xe0, 0xa0, 0x64, 0xff, 0xe0, 0x9e, 0x62, 0xff, 0xe0, 0x9d, 0x62, 0xff, 0xe0, 0x9d, 0x62, 0xff, 0xe0, 0x9e, 0x62, 0xff, 0xe0, 0x9a, 0x5e, 0xff, 0xe0, 0x94, 0x59, 0xff, 0xe0, 0x94, 0x59, 0xff, 0xe0, 0x97, 0x5b, 0xff, 0xe0, 0x99, 0x5b, 0xff, 0xe0, 0x98, 0x5b, 0xff, 0xe0, 0x96, 0x5a, 0xff, 0xe0, 0x96, 0x5a, 0xff, 0xe0, 0x94, 0x58, 0xff, 0xdf, 0x92, 0x57, 0xff, 0xe0, 0x96, 0x5a, 0xff, 0xe0, 0x9a, 0x5b, 0xff, 0xe0, 0x9c, 0x5c, 0xff, 0xe1, 0x9a, 0x5c, 0xff, 0xda, 0x92, 0x55, 0xff, 0xd2, 0x8d, 0x4d, 0xff, 0xcc, 0x89, 0x4b, 0xff, 0xb8, 0x7a, 0x45, 0xff, 0xad, 0x6f, 0x3e, 0xff, 0xa8, 0x6a, 0x3b, 0xff, 0xa5, 0x67, 0x3a, 0xff, 0xa2, 0x64, 0x39, 0xff, 0xa1, 0x63, 0x38, 0xff, 0xa0, 0x63, 0x38, 0xff, 0x9e, 0x61, 0x37, 0xff, 0x9d, 0x61, 0x37, 0xff, 0x9c, 0x60, 0x36, 0xff, 0x9c, 0x60, 0x35, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0x9a, 0x5e, 0x34, 0xff, 0x9a, 0x5c, 0x34, 0xff, 0x96, 0x5a, 0x33, 0xff, 0x94, 0x58, 0x32, 0xff, 0x95, 0x58, 0x32, 0xff, 0x97, 0x5b, 0x33, 0xff, 0x99, 0x5b, 0x34, 0xff, 0x99, 0x5c, 0x33, 0xff, 0x9b, 0x5e, 0x35, 0xff, 0x9b, 0x5e, 0x35, 0xff, 0x9c, 0x5f, 0x36, 0xff, 0x9b, 0x60, 0x36, 0xff, 0x9a, 0x5f, 0x36, 0xff, 0x99, 0x5d, 0x35, 0xff, 0x99, 0x5c, 0x35, 0xff, 0x98, 0x5b, 0x34, 0xff, 0x96, 0x5a, 0x33, 0xff, 0x96, 0x58, 0x33, 0xff, 0x95, 0x58, 0x32, 0xff, 0x94, 0x56, 0x32, 0xff, 0x93, 0x56, 0x32, 0xff, 0x92, 0x55, 0x32, 0xff, 0x92, 0x55, 0x32, 0xff, 0x92, 0x55, 0x32, 0xff, 0x90, 0x55, 0x32, 0xff, 0x8f, 0x54, 0x30, 0xff, 0x8f, 0x54, 0x30, 0xff, 0x8f, 0x54, 0x30, 0xff, 0x90, 0x55, 0x31, 0xff, 0x92, 0x57, 0x33, 0xff, + 0x88, 0x4b, 0x28, 0xff, 0x89, 0x4e, 0x28, 0xff, 0x89, 0x4d, 0x28, 0xff, 0x89, 0x4d, 0x28, 0xff, 0x89, 0x4e, 0x28, 0xff, 0x8a, 0x4f, 0x28, 0xff, 0x8b, 0x4f, 0x29, 0xff, 0x8d, 0x50, 0x2b, 0xff, 0x8e, 0x52, 0x2c, 0xff, 0x8e, 0x52, 0x2c, 0xff, 0x91, 0x53, 0x2d, 0xff, 0x92, 0x55, 0x2f, 0xff, 0x92, 0x54, 0x2e, 0xff, 0x93, 0x55, 0x30, 0xff, 0x96, 0x57, 0x30, 0xff, 0x97, 0x59, 0x31, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x9b, 0x5c, 0x32, 0xff, 0x9c, 0x5d, 0x33, 0xff, 0x9e, 0x60, 0x33, 0xff, 0xa1, 0x63, 0x35, 0xff, 0xa4, 0x63, 0x36, 0xff, 0xa7, 0x67, 0x39, 0xff, 0xa9, 0x6b, 0x3a, 0xff, 0xb0, 0x71, 0x3d, 0xff, 0xb3, 0x74, 0x41, 0xff, 0xb5, 0x76, 0x43, 0xff, 0xb8, 0x7a, 0x44, 0xff, 0xbc, 0x7e, 0x48, 0xff, 0xbe, 0x7e, 0x46, 0xff, 0xc3, 0x82, 0x49, 0xff, 0xc6, 0x85, 0x4d, 0xff, 0xc9, 0x87, 0x4f, 0xff, 0xcc, 0x8b, 0x53, 0xff, 0xcc, 0x8c, 0x54, 0xff, 0xc5, 0x8a, 0x53, 0xff, 0xc9, 0x8c, 0x51, 0xff, 0xcd, 0x8c, 0x50, 0xff, 0xd4, 0x8f, 0x53, 0xff, 0xdb, 0x94, 0x56, 0xff, 0xe1, 0x98, 0x5c, 0xff, 0xe1, 0x9e, 0x5d, 0xff, 0xde, 0x9f, 0x61, 0xff, 0xdf, 0xa5, 0x67, 0xff, 0xda, 0x98, 0x5e, 0xff, 0xdb, 0x9c, 0x61, 0xff, 0xd8, 0x9f, 0x65, 0xff, 0xd7, 0x9f, 0x6a, 0xff, 0xd6, 0x9e, 0x6e, 0xff, 0xd6, 0x9c, 0x71, 0xff, 0xd4, 0x9c, 0x70, 0xff, 0xd7, 0x9c, 0x70, 0xff, 0xd9, 0x9f, 0x73, 0xff, 0xdb, 0xa1, 0x73, 0xff, 0xdf, 0xa4, 0x72, 0xff, 0xe1, 0xa9, 0x72, 0xff, 0xe1, 0xb5, 0x73, 0xff, 0xe1, 0xc3, 0x76, 0xff, 0xdc, 0xca, 0x79, 0xff, 0xd7, 0xc8, 0x7e, 0xff, 0xd9, 0xca, 0x83, 0xff, 0xda, 0xc9, 0x88, 0xff, 0xda, 0xc9, 0x89, 0xff, 0xdc, 0xca, 0x89, 0xff, 0xda, 0xc8, 0x87, 0xff, 0xda, 0xc9, 0x86, 0xff, 0xd8, 0xc7, 0x81, 0xff, 0xd9, 0xc9, 0x7c, 0xff, 0xdf, 0xc7, 0x76, 0xff, 0xe1, 0xb8, 0x6f, 0xff, 0xdd, 0xa7, 0x68, 0xff, 0xda, 0xa0, 0x64, 0xff, 0xdb, 0x9d, 0x61, 0xff, 0xd6, 0x98, 0x60, 0xff, 0xd2, 0x95, 0x5d, 0xff, 0xcc, 0x93, 0x59, 0xff, 0xc3, 0x8b, 0x51, 0xff, 0xbe, 0x89, 0x4f, 0xff, 0xb9, 0x84, 0x4c, 0xff, 0xb8, 0x83, 0x48, 0xff, 0xb6, 0x7e, 0x40, 0xff, 0xb5, 0x7a, 0x3b, 0xff, 0xb2, 0x77, 0x35, 0xff, 0xb1, 0x75, 0x32, 0xff, 0xb0, 0x73, 0x33, 0xff, 0xaf, 0x72, 0x33, 0xff, 0xad, 0x70, 0x32, 0xff, 0xac, 0x6d, 0x32, 0xff, 0xaa, 0x6d, 0x32, 0xff, 0xa9, 0x6c, 0x32, 0xff, 0xa3, 0x66, 0x32, 0xff, 0x98, 0x5d, 0x33, 0xff, 0x98, 0x5b, 0x34, 0xff, 0x98, 0x5c, 0x34, 0xff, 0x98, 0x5c, 0x34, 0xff, 0x99, 0x5e, 0x35, 0xff, 0x9a, 0x60, 0x35, 0xff, 0x9b, 0x60, 0x35, 0xff, 0x9c, 0x60, 0x36, 0xff, 0x9d, 0x63, 0x37, 0xff, 0x9e, 0x63, 0x38, 0xff, 0x9f, 0x64, 0x39, 0xff, 0xa0, 0x65, 0x3b, 0xff, 0xa2, 0x67, 0x3b, 0xff, 0xa4, 0x69, 0x3c, 0xff, 0xa4, 0x69, 0x3c, 0xff, 0xa7, 0x6c, 0x3e, 0xff, 0xa9, 0x70, 0x41, 0xff, 0xad, 0x77, 0x45, 0xff, 0xae, 0x79, 0x46, 0xff, 0xae, 0x78, 0x45, 0xff, 0xb0, 0x7b, 0x47, 0xff, 0xb1, 0x7c, 0x46, 0xff, 0xb1, 0x79, 0x44, 0xff, 0xb4, 0x7c, 0x45, 0xff, 0xb4, 0x7c, 0x42, 0xff, 0xac, 0x71, 0x3d, 0xff, 0xa6, 0x6a, 0x3a, 0xff, 0xa8, 0x6c, 0x3c, 0xff, 0xaa, 0x6f, 0x3c, 0xff, 0xab, 0x70, 0x3c, 0xff, 0xad, 0x72, 0x3e, 0xff, 0xae, 0x73, 0x3f, 0xff, 0xae, 0x73, 0x3f, 0xff, 0xaf, 0x74, 0x40, 0xff, 0xb1, 0x77, 0x42, 0xff, 0xb2, 0x79, 0x43, 0xff, 0xb4, 0x7b, 0x45, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb7, 0x80, 0x4a, 0xff, 0xb9, 0x83, 0x4d, 0xff, 0xba, 0x82, 0x4f, 0xff, 0xbd, 0x88, 0x54, 0xff, 0xc0, 0x8c, 0x58, 0xff, 0xc2, 0x8c, 0x58, 0xff, 0xc5, 0x8e, 0x58, 0xff, 0xca, 0x91, 0x59, 0xff, 0xcf, 0x92, 0x5a, 0xff, 0xd4, 0x93, 0x5b, 0xff, 0xdb, 0x95, 0x5c, 0xff, 0xe0, 0x98, 0x5c, 0xff, 0xe0, 0x9a, 0x5b, 0xff, 0xe0, 0x9d, 0x5b, 0xff, 0xe0, 0x9f, 0x5f, 0xff, 0xe1, 0xa6, 0x62, 0xff, 0xe0, 0xac, 0x65, 0xff, 0xe1, 0xb0, 0x6a, 0xff, 0xe0, 0xbd, 0x6e, 0xff, 0xdc, 0xc8, 0x75, 0xff, 0xd9, 0xca, 0x7d, 0xff, 0xd9, 0xc9, 0x85, 0xff, 0xda, 0xca, 0x89, 0xff, 0xdb, 0xc9, 0x8d, 0xff, 0xdc, 0xc9, 0x91, 0xff, 0xdb, 0xc9, 0x91, 0xff, 0xdb, 0xca, 0x8f, 0xff, 0xdb, 0xc9, 0x8e, 0xff, 0xda, 0xc9, 0x8a, 0xff, 0xd8, 0xc9, 0x82, 0xff, 0xdc, 0xc8, 0x79, 0xff, 0xe0, 0xbf, 0x73, 0xff, 0xe0, 0xb6, 0x70, 0xff, 0xe1, 0xb0, 0x6b, 0xff, 0xe0, 0xa8, 0x68, 0xff, 0xe1, 0xa6, 0x67, 0xff, 0xe1, 0xa4, 0x65, 0xff, 0xe0, 0xa3, 0x63, 0xff, 0xdf, 0xa3, 0x65, 0xff, 0xdf, 0xa3, 0x67, 0xff, 0xe0, 0xa2, 0x65, 0xff, 0xe0, 0xa3, 0x67, 0xff, 0xe1, 0xa3, 0x65, 0xff, 0xe1, 0x9f, 0x63, 0xff, 0xe1, 0x9d, 0x61, 0xff, 0xe0, 0x9d, 0x61, 0xff, 0xe1, 0x9e, 0x62, 0xff, 0xde, 0x97, 0x5c, 0xff, 0xe0, 0x96, 0x5c, 0xff, 0xe1, 0x99, 0x5d, 0xff, 0xe1, 0x98, 0x5c, 0xff, 0xe1, 0x98, 0x5c, 0xff, 0xe1, 0x97, 0x5b, 0xff, 0xdf, 0x92, 0x57, 0xff, 0xdd, 0x98, 0x5a, 0xff, 0xe0, 0x9c, 0x5d, 0xff, 0xe1, 0x9c, 0x5b, 0xff, 0xe0, 0x9a, 0x5b, 0xff, 0xe0, 0x98, 0x59, 0xff, 0xe0, 0x99, 0x59, 0xff, 0xe1, 0x9a, 0x5b, 0xff, 0xdd, 0x93, 0x57, 0xff, 0xce, 0x88, 0x4c, 0xff, 0xb2, 0x75, 0x42, 0xff, 0xaf, 0x72, 0x41, 0xff, 0xa7, 0x6a, 0x3d, 0xff, 0xa5, 0x68, 0x3b, 0xff, 0xa4, 0x66, 0x3a, 0xff, 0xa3, 0x65, 0x39, 0xff, 0xa1, 0x63, 0x38, 0xff, 0x9f, 0x61, 0x38, 0xff, 0x9f, 0x60, 0x36, 0xff, 0x9e, 0x60, 0x36, 0xff, 0x9d, 0x5f, 0x36, 0xff, 0x9d, 0x5f, 0x35, 0xff, 0x9b, 0x5d, 0x35, 0xff, 0x99, 0x5b, 0x33, 0xff, 0x9a, 0x5d, 0x35, 0xff, 0x9c, 0x5f, 0x36, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0x9b, 0x5e, 0x35, 0xff, 0x9a, 0x5d, 0x33, 0xff, 0x98, 0x5b, 0x33, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x9a, 0x5d, 0x34, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x9b, 0x5e, 0x35, 0xff, 0x9a, 0x5e, 0x34, 0xff, 0x9a, 0x5c, 0x34, 0xff, 0x98, 0x5b, 0x34, 0xff, 0x97, 0x59, 0x33, 0xff, 0x96, 0x59, 0x33, 0xff, 0x95, 0x58, 0x32, 0xff, 0x94, 0x58, 0x32, 0xff, 0x93, 0x56, 0x32, 0xff, 0x92, 0x55, 0x32, 0xff, 0x91, 0x55, 0x32, 0xff, 0x90, 0x56, 0x31, 0xff, 0x91, 0x55, 0x32, 0xff, 0x8f, 0x54, 0x31, 0xff, 0x8f, 0x54, 0x31, 0xff, 0x90, 0x55, 0x31, 0xff, 0x92, 0x56, 0x33, 0xff, 0x8a, 0x4e, 0x28, 0xff, + 0x87, 0x4d, 0x27, 0xff, 0x86, 0x4b, 0x27, 0xff, 0x86, 0x4c, 0x27, 0xff, 0x87, 0x4b, 0x27, 0xff, 0x88, 0x4b, 0x27, 0xff, 0x88, 0x4d, 0x28, 0xff, 0x89, 0x4f, 0x27, 0xff, 0x8a, 0x4e, 0x29, 0xff, 0x8c, 0x4f, 0x29, 0xff, 0x8e, 0x51, 0x29, 0xff, 0x90, 0x53, 0x29, 0xff, 0x90, 0x52, 0x2b, 0xff, 0x91, 0x53, 0x2d, 0xff, 0x93, 0x55, 0x2f, 0xff, 0x96, 0x58, 0x30, 0xff, 0x98, 0x59, 0x31, 0xff, 0x98, 0x5a, 0x31, 0xff, 0x9a, 0x5b, 0x33, 0xff, 0x9d, 0x5d, 0x33, 0xff, 0x9f, 0x5f, 0x34, 0xff, 0xa1, 0x61, 0x35, 0xff, 0xa2, 0x63, 0x36, 0xff, 0xa5, 0x64, 0x37, 0xff, 0xa8, 0x67, 0x38, 0xff, 0xaa, 0x6a, 0x39, 0xff, 0xac, 0x6d, 0x3a, 0xff, 0xb1, 0x71, 0x3d, 0xff, 0xb8, 0x78, 0x41, 0xff, 0xba, 0x7a, 0x43, 0xff, 0xbd, 0x7d, 0x45, 0xff, 0xc1, 0x80, 0x48, 0xff, 0xc3, 0x83, 0x49, 0xff, 0xc6, 0x84, 0x4a, 0xff, 0xca, 0x89, 0x4e, 0xff, 0xce, 0x8c, 0x51, 0xff, 0xc3, 0x87, 0x4e, 0xff, 0xc7, 0x8c, 0x52, 0xff, 0xcb, 0x8e, 0x53, 0xff, 0xd0, 0x92, 0x55, 0xff, 0xd8, 0x94, 0x58, 0xff, 0xde, 0x96, 0x5a, 0xff, 0xe0, 0x99, 0x5b, 0xff, 0xe0, 0x9b, 0x5c, 0xff, 0xe0, 0xa5, 0x64, 0xff, 0xde, 0xa4, 0x67, 0xff, 0xdd, 0x9b, 0x61, 0xff, 0xde, 0xa0, 0x63, 0xff, 0xdd, 0xa0, 0x68, 0xff, 0xda, 0x9f, 0x6c, 0xff, 0xd8, 0x9f, 0x70, 0xff, 0xd7, 0x9f, 0x74, 0xff, 0xda, 0x9f, 0x76, 0xff, 0xdb, 0xa0, 0x72, 0xff, 0xe0, 0xa4, 0x71, 0xff, 0xe1, 0xa7, 0x72, 0xff, 0xe1, 0xac, 0x72, 0xff, 0xe1, 0xb6, 0x75, 0xff, 0xe1, 0xc3, 0x79, 0xff, 0xd9, 0xc9, 0x7b, 0xff, 0xd7, 0xc9, 0x80, 0xff, 0xda, 0xc9, 0x87, 0xff, 0xdc, 0xc9, 0x8f, 0xff, 0xdf, 0xca, 0x96, 0xff, 0xe0, 0xca, 0x9b, 0xff, 0xde, 0xca, 0x9b, 0xff, 0xdd, 0xca, 0x97, 0xff, 0xde, 0xca, 0x92, 0xff, 0xdc, 0xca, 0x8e, 0xff, 0xda, 0xca, 0x84, 0xff, 0xde, 0xc7, 0x7c, 0xff, 0xde, 0xbd, 0x75, 0xff, 0xdc, 0xb1, 0x6e, 0xff, 0xdd, 0xa7, 0x68, 0xff, 0xdb, 0x9e, 0x61, 0xff, 0xd8, 0x9b, 0x5e, 0xff, 0xd3, 0x97, 0x58, 0xff, 0xcb, 0x91, 0x4f, 0xff, 0xc0, 0x88, 0x4c, 0xff, 0xbc, 0x82, 0x47, 0xff, 0xba, 0x80, 0x41, 0xff, 0xb9, 0x7e, 0x3c, 0xff, 0xb7, 0x7a, 0x37, 0xff, 0xb4, 0x79, 0x34, 0xff, 0xb3, 0x77, 0x34, 0xff, 0xb2, 0x77, 0x34, 0xff, 0xb0, 0x75, 0x34, 0xff, 0xae, 0x71, 0x33, 0xff, 0xad, 0x71, 0x33, 0xff, 0xad, 0x70, 0x32, 0xff, 0xa7, 0x69, 0x32, 0xff, 0x99, 0x5d, 0x32, 0xff, 0x98, 0x5a, 0x34, 0xff, 0x98, 0x5c, 0x35, 0xff, 0x99, 0x5f, 0x35, 0xff, 0x9a, 0x5f, 0x35, 0xff, 0x9a, 0x5f, 0x35, 0xff, 0x9a, 0x5f, 0x35, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0x9b, 0x60, 0x36, 0xff, 0x9d, 0x61, 0x37, 0xff, 0x9f, 0x62, 0x37, 0xff, 0x9f, 0x63, 0x38, 0xff, 0xa0, 0x65, 0x39, 0xff, 0xa2, 0x67, 0x3a, 0xff, 0xa4, 0x68, 0x3b, 0xff, 0xa5, 0x6a, 0x3b, 0xff, 0xa6, 0x6c, 0x3e, 0xff, 0xaa, 0x72, 0x42, 0xff, 0xad, 0x78, 0x45, 0xff, 0xad, 0x78, 0x45, 0xff, 0xaf, 0x7a, 0x46, 0xff, 0xaf, 0x78, 0x45, 0xff, 0xb0, 0x79, 0x44, 0xff, 0xb2, 0x7b, 0x44, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xa9, 0x6e, 0x3c, 0xff, 0xa4, 0x68, 0x38, 0xff, 0xa5, 0x6a, 0x39, 0xff, 0xa7, 0x6d, 0x3b, 0xff, 0xa9, 0x6f, 0x3c, 0xff, 0xab, 0x70, 0x3c, 0xff, 0xac, 0x70, 0x3d, 0xff, 0xac, 0x72, 0x40, 0xff, 0xae, 0x74, 0x41, 0xff, 0xaf, 0x75, 0x40, 0xff, 0xb0, 0x76, 0x42, 0xff, 0xb2, 0x76, 0x42, 0xff, 0xb4, 0x79, 0x43, 0xff, 0xb5, 0x7d, 0x45, 0xff, 0xb6, 0x7e, 0x47, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xba, 0x82, 0x4c, 0xff, 0xbb, 0x86, 0x4f, 0xff, 0xbd, 0x89, 0x52, 0xff, 0xc0, 0x8b, 0x55, 0xff, 0xc3, 0x8d, 0x57, 0xff, 0xc7, 0x90, 0x5a, 0xff, 0xcc, 0x92, 0x5b, 0xff, 0xd1, 0x93, 0x5b, 0xff, 0xd8, 0x94, 0x5b, 0xff, 0xdf, 0x99, 0x5d, 0xff, 0xe0, 0x9d, 0x60, 0xff, 0xe0, 0x9f, 0x5f, 0xff, 0xdf, 0xa2, 0x5f, 0xff, 0xe0, 0xa5, 0x61, 0xff, 0xe0, 0xaa, 0x67, 0xff, 0xe1, 0xb5, 0x6b, 0xff, 0xe2, 0xc2, 0x6f, 0xff, 0xdb, 0xc8, 0x78, 0xff, 0xd8, 0xc9, 0x80, 0xff, 0xdb, 0xc9, 0x89, 0xff, 0xdc, 0xca, 0x91, 0xff, 0xdd, 0xca, 0x96, 0xff, 0xe0, 0xca, 0x9c, 0xff, 0xdf, 0xca, 0x9e, 0xff, 0xe0, 0xca, 0x9d, 0xff, 0xde, 0xca, 0x99, 0xff, 0xdd, 0xca, 0x92, 0xff, 0xdc, 0xca, 0x8b, 0xff, 0xd9, 0xca, 0x84, 0xff, 0xda, 0xc9, 0x7f, 0xff, 0xde, 0xc6, 0x77, 0xff, 0xe0, 0xbf, 0x72, 0xff, 0xe1, 0xb5, 0x6d, 0xff, 0xe1, 0xae, 0x6c, 0xff, 0xe0, 0xac, 0x6b, 0xff, 0xe1, 0xab, 0x69, 0xff, 0xe1, 0xa9, 0x69, 0xff, 0xe1, 0xa7, 0x69, 0xff, 0xe0, 0xa6, 0x69, 0xff, 0xe0, 0xa6, 0x69, 0xff, 0xe1, 0xa4, 0x68, 0xff, 0xe1, 0xa1, 0x66, 0xff, 0xe1, 0x9f, 0x63, 0xff, 0xe1, 0x9d, 0x62, 0xff, 0xe1, 0x9d, 0x62, 0xff, 0xe1, 0x9c, 0x61, 0xff, 0xe0, 0x99, 0x5e, 0xff, 0xe0, 0x97, 0x5b, 0xff, 0xe0, 0x98, 0x5c, 0xff, 0xe0, 0x98, 0x5c, 0xff, 0xdf, 0x9b, 0x5d, 0xff, 0xe0, 0x9f, 0x5d, 0xff, 0xe0, 0x9e, 0x5e, 0xff, 0xe0, 0x9b, 0x5c, 0xff, 0xe0, 0x9b, 0x5d, 0xff, 0xde, 0x9a, 0x5b, 0xff, 0xe1, 0x98, 0x59, 0xff, 0xe0, 0x97, 0x58, 0xff, 0xe0, 0x96, 0x58, 0xff, 0xe3, 0x96, 0x59, 0xff, 0xc2, 0x84, 0x4e, 0xff, 0xb1, 0x74, 0x43, 0xff, 0xb1, 0x75, 0x44, 0xff, 0xa9, 0x6d, 0x3e, 0xff, 0xa6, 0x6a, 0x3c, 0xff, 0xa4, 0x67, 0x3a, 0xff, 0xa4, 0x65, 0x3a, 0xff, 0xa2, 0x64, 0x39, 0xff, 0xa1, 0x63, 0x37, 0xff, 0xa0, 0x62, 0x37, 0xff, 0x9f, 0x62, 0x37, 0xff, 0x9f, 0x62, 0x37, 0xff, 0x9f, 0x62, 0x37, 0xff, 0x9f, 0x62, 0x38, 0xff, 0x9f, 0x61, 0x37, 0xff, 0x9e, 0x60, 0x36, 0xff, 0x9c, 0x5f, 0x35, 0xff, 0x9b, 0x5d, 0x35, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0x9b, 0x5d, 0x35, 0xff, 0x9a, 0x5d, 0x34, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x99, 0x5b, 0x34, 0xff, 0x98, 0x5b, 0x33, 0xff, 0x97, 0x5a, 0x33, 0xff, 0x97, 0x59, 0x33, 0xff, 0x95, 0x59, 0x33, 0xff, 0x95, 0x58, 0x32, 0xff, 0x94, 0x58, 0x32, 0xff, 0x94, 0x58, 0x32, 0xff, 0x95, 0x59, 0x33, 0xff, 0x95, 0x5a, 0x33, 0xff, 0x97, 0x5a, 0x33, 0xff, 0x95, 0x59, 0x33, 0xff, 0x94, 0x59, 0x33, 0xff, 0x93, 0x56, 0x32, 0xff, 0x92, 0x55, 0x32, 0xff, 0x91, 0x55, 0x32, 0xff, 0x91, 0x56, 0x32, 0xff, 0x8f, 0x54, 0x2f, 0xff, 0x87, 0x4d, 0x28, 0xff, 0x88, 0x4d, 0x28, 0xff, + 0x84, 0x4a, 0x25, 0xff, 0x85, 0x4b, 0x26, 0xff, 0x86, 0x4b, 0x27, 0xff, 0x85, 0x4a, 0x27, 0xff, 0x86, 0x4b, 0x27, 0xff, 0x87, 0x4b, 0x26, 0xff, 0x88, 0x4b, 0x26, 0xff, 0x89, 0x4d, 0x26, 0xff, 0x8a, 0x4e, 0x29, 0xff, 0x8c, 0x4f, 0x2a, 0xff, 0x8d, 0x51, 0x2b, 0xff, 0x8e, 0x51, 0x29, 0xff, 0x90, 0x52, 0x2c, 0xff, 0x91, 0x53, 0x2d, 0xff, 0x92, 0x55, 0x2e, 0xff, 0x94, 0x56, 0x2f, 0xff, 0x96, 0x58, 0x30, 0xff, 0x98, 0x58, 0x31, 0xff, 0x9a, 0x5b, 0x32, 0xff, 0x9c, 0x5d, 0x33, 0xff, 0x9e, 0x5e, 0x33, 0xff, 0xa0, 0x60, 0x33, 0xff, 0xa3, 0x62, 0x36, 0xff, 0xa6, 0x66, 0x37, 0xff, 0xa9, 0x6a, 0x39, 0xff, 0xab, 0x6c, 0x3a, 0xff, 0xb0, 0x6f, 0x3c, 0xff, 0xb5, 0x74, 0x3e, 0xff, 0xb9, 0x78, 0x41, 0xff, 0xbd, 0x7c, 0x44, 0xff, 0xc0, 0x7e, 0x45, 0xff, 0xc5, 0x82, 0x49, 0xff, 0xc7, 0x84, 0x4b, 0xff, 0xc9, 0x87, 0x4d, 0xff, 0xcd, 0x8b, 0x4f, 0xff, 0xc5, 0x87, 0x4b, 0xff, 0xc3, 0x88, 0x4c, 0xff, 0xc8, 0x8d, 0x50, 0xff, 0xce, 0x90, 0x55, 0xff, 0xd4, 0x95, 0x57, 0xff, 0xdb, 0x98, 0x59, 0xff, 0xe0, 0x9a, 0x5b, 0xff, 0xe0, 0x9b, 0x5b, 0xff, 0xdf, 0x9e, 0x5f, 0xff, 0xe0, 0xa5, 0x68, 0xff, 0xdf, 0x9f, 0x65, 0xff, 0xe1, 0x9e, 0x62, 0xff, 0xe0, 0xa2, 0x66, 0xff, 0xde, 0xa2, 0x6b, 0xff, 0xdd, 0xa1, 0x6e, 0xff, 0xdc, 0xa0, 0x71, 0xff, 0xdc, 0xa1, 0x74, 0xff, 0xdf, 0xa1, 0x76, 0xff, 0xe0, 0xa4, 0x75, 0xff, 0xe1, 0xa7, 0x73, 0xff, 0xe0, 0xad, 0x72, 0xff, 0xe1, 0xb5, 0x75, 0xff, 0xdf, 0xc1, 0x78, 0xff, 0xd8, 0xcc, 0x7d, 0xff, 0xd9, 0xca, 0x80, 0xff, 0xdb, 0xcb, 0x88, 0xff, 0xdd, 0xc9, 0x92, 0xff, 0xe0, 0xca, 0xa0, 0xff, 0xe0, 0xca, 0xad, 0xff, 0xe1, 0xca, 0xb1, 0xff, 0xe1, 0xca, 0xb0, 0xff, 0xe1, 0xcb, 0xad, 0xff, 0xdf, 0xcb, 0xa3, 0xff, 0xde, 0xca, 0x94, 0xff, 0xdb, 0xcb, 0x8d, 0xff, 0xd9, 0xc9, 0x85, 0xff, 0xde, 0xc4, 0x7a, 0xff, 0xdf, 0xb4, 0x6e, 0xff, 0xdc, 0xa9, 0x69, 0xff, 0xdc, 0xa0, 0x61, 0xff, 0xd9, 0x9a, 0x58, 0xff, 0xd0, 0x91, 0x51, 0xff, 0xc3, 0x88, 0x45, 0xff, 0xbe, 0x83, 0x3d, 0xff, 0xbd, 0x81, 0x39, 0xff, 0xb9, 0x7f, 0x38, 0xff, 0xb9, 0x7d, 0x37, 0xff, 0xb8, 0x7a, 0x36, 0xff, 0xb7, 0x7b, 0x36, 0xff, 0xb5, 0x7a, 0x36, 0xff, 0xb2, 0x76, 0x34, 0xff, 0xb0, 0x74, 0x33, 0xff, 0xb0, 0x74, 0x33, 0xff, 0xa9, 0x6c, 0x34, 0xff, 0x9c, 0x61, 0x33, 0xff, 0x98, 0x5d, 0x33, 0xff, 0x99, 0x5e, 0x35, 0xff, 0x99, 0x5f, 0x36, 0xff, 0x9a, 0x5f, 0x36, 0xff, 0x9a, 0x60, 0x36, 0xff, 0x9a, 0x5f, 0x36, 0xff, 0x9b, 0x60, 0x36, 0xff, 0x9a, 0x60, 0x36, 0xff, 0x9b, 0x60, 0x37, 0xff, 0x9c, 0x60, 0x37, 0xff, 0x9e, 0x61, 0x37, 0xff, 0x9f, 0x63, 0x38, 0xff, 0xa1, 0x65, 0x39, 0xff, 0xa1, 0x66, 0x3a, 0xff, 0xa2, 0x67, 0x3a, 0xff, 0xa4, 0x68, 0x3c, 0xff, 0xa8, 0x6f, 0x3f, 0xff, 0xab, 0x75, 0x41, 0xff, 0xab, 0x75, 0x42, 0xff, 0xac, 0x76, 0x44, 0xff, 0xad, 0x77, 0x43, 0xff, 0xaf, 0x78, 0x44, 0xff, 0xb0, 0x78, 0x44, 0xff, 0xad, 0x75, 0x42, 0xff, 0xa5, 0x6b, 0x3b, 0xff, 0xa2, 0x66, 0x37, 0xff, 0xa4, 0x67, 0x39, 0xff, 0xa6, 0x69, 0x3a, 0xff, 0xa6, 0x6b, 0x3a, 0xff, 0xa7, 0x6c, 0x3b, 0xff, 0xaa, 0x6f, 0x3e, 0xff, 0xab, 0x71, 0x3f, 0xff, 0xab, 0x72, 0x3f, 0xff, 0xad, 0x73, 0x40, 0xff, 0xae, 0x73, 0x41, 0xff, 0xae, 0x74, 0x40, 0xff, 0xb1, 0x76, 0x42, 0xff, 0xb3, 0x77, 0x42, 0xff, 0xb3, 0x78, 0x43, 0xff, 0xb5, 0x7b, 0x44, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xba, 0x83, 0x4c, 0xff, 0xbb, 0x85, 0x4f, 0xff, 0xbc, 0x87, 0x50, 0xff, 0xbf, 0x8a, 0x53, 0xff, 0xc3, 0x8d, 0x55, 0xff, 0xc7, 0x8f, 0x57, 0xff, 0xcd, 0x92, 0x5a, 0xff, 0xd4, 0x95, 0x5d, 0xff, 0xdc, 0x99, 0x5f, 0xff, 0xe0, 0x9d, 0x60, 0xff, 0xe0, 0x9f, 0x61, 0xff, 0xdf, 0xa1, 0x61, 0xff, 0xe0, 0xa3, 0x61, 0xff, 0xe0, 0xab, 0x66, 0xff, 0xe0, 0xb2, 0x6a, 0xff, 0xe1, 0xc2, 0x71, 0xff, 0xd9, 0xca, 0x78, 0xff, 0xd8, 0xca, 0x81, 0xff, 0xdd, 0xca, 0x8b, 0xff, 0xdf, 0xcb, 0x95, 0xff, 0xe0, 0xca, 0xa0, 0xff, 0xe1, 0xca, 0xa9, 0xff, 0xe1, 0xca, 0xad, 0xff, 0xe1, 0xca, 0xae, 0xff, 0xe1, 0xca, 0xab, 0xff, 0xe1, 0xca, 0xa3, 0xff, 0xde, 0xca, 0x98, 0xff, 0xdc, 0xca, 0x90, 0xff, 0xd9, 0xc9, 0x89, 0xff, 0xd8, 0xca, 0x80, 0xff, 0xde, 0xc7, 0x7a, 0xff, 0xe0, 0xc0, 0x74, 0xff, 0xe1, 0xba, 0x70, 0xff, 0xe0, 0xb5, 0x6e, 0xff, 0xe2, 0xaf, 0x6c, 0xff, 0xe1, 0xaa, 0x6a, 0xff, 0xe1, 0xab, 0x6b, 0xff, 0xe1, 0xad, 0x6a, 0xff, 0xe1, 0xab, 0x6a, 0xff, 0xe0, 0xa6, 0x69, 0xff, 0xe1, 0xa5, 0x68, 0xff, 0xe1, 0xa2, 0x66, 0xff, 0xe1, 0x9f, 0x63, 0xff, 0xe1, 0x9c, 0x61, 0xff, 0xe0, 0x9a, 0x60, 0xff, 0xe0, 0x9b, 0x60, 0xff, 0xe0, 0x9b, 0x5e, 0xff, 0xe0, 0x9d, 0x5d, 0xff, 0xe0, 0x9e, 0x60, 0xff, 0xe0, 0xa0, 0x5f, 0xff, 0xe0, 0x9f, 0x5e, 0xff, 0xe0, 0x9c, 0x5e, 0xff, 0xe0, 0x9b, 0x5d, 0xff, 0xe0, 0x99, 0x5d, 0xff, 0xe0, 0x99, 0x5b, 0xff, 0xe1, 0x96, 0x59, 0xff, 0xe0, 0x98, 0x58, 0xff, 0xe0, 0x95, 0x57, 0xff, 0xe4, 0x96, 0x5a, 0xff, 0xb9, 0x7b, 0x49, 0xff, 0xb4, 0x77, 0x46, 0xff, 0xb3, 0x75, 0x44, 0xff, 0xae, 0x71, 0x42, 0xff, 0xa9, 0x6b, 0x3e, 0xff, 0xa5, 0x68, 0x3b, 0xff, 0xa4, 0x67, 0x3a, 0xff, 0xa3, 0x65, 0x3a, 0xff, 0xa4, 0x66, 0x3a, 0xff, 0xa3, 0x66, 0x39, 0xff, 0xa2, 0x65, 0x38, 0xff, 0xa2, 0x64, 0x39, 0xff, 0xa0, 0x62, 0x38, 0xff, 0xa0, 0x62, 0x37, 0xff, 0x9f, 0x62, 0x37, 0xff, 0x9d, 0x60, 0x36, 0xff, 0x9c, 0x5e, 0x35, 0xff, 0x9b, 0x5d, 0x35, 0xff, 0x9c, 0x5f, 0x35, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0x9b, 0x5e, 0x35, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x9a, 0x5d, 0x35, 0xff, 0x9a, 0x5d, 0x35, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x98, 0x5a, 0x34, 0xff, 0x98, 0x5a, 0x33, 0xff, 0x98, 0x5a, 0x34, 0xff, 0x98, 0x5c, 0x35, 0xff, 0x98, 0x5a, 0x35, 0xff, 0x98, 0x5c, 0x34, 0xff, 0x98, 0x5c, 0x34, 0xff, 0x96, 0x5a, 0x34, 0xff, 0x93, 0x57, 0x33, 0xff, 0x92, 0x56, 0x32, 0xff, 0x92, 0x56, 0x32, 0xff, 0x91, 0x56, 0x33, 0xff, 0x8c, 0x50, 0x2a, 0xff, 0x86, 0x4c, 0x27, 0xff, 0x86, 0x4b, 0x26, 0xff, 0x86, 0x4c, 0x25, 0xff, + 0x82, 0x4a, 0x25, 0xff, 0x82, 0x49, 0x22, 0xff, 0x82, 0x4a, 0x25, 0xff, 0x84, 0x4a, 0x26, 0xff, 0x83, 0x48, 0x24, 0xff, 0x84, 0x4a, 0x26, 0xff, 0x85, 0x4a, 0x25, 0xff, 0x85, 0x4b, 0x23, 0xff, 0x84, 0x48, 0x21, 0xff, 0x86, 0x48, 0x23, 0xff, 0x8e, 0x51, 0x2d, 0xff, 0x95, 0x58, 0x31, 0xff, 0x9a, 0x5d, 0x34, 0xff, 0x9d, 0x60, 0x37, 0xff, 0xa2, 0x64, 0x39, 0xff, 0xa4, 0x65, 0x3a, 0xff, 0xa5, 0x68, 0x3c, 0xff, 0xa7, 0x69, 0x3e, 0xff, 0xa6, 0x69, 0x3d, 0xff, 0xa8, 0x6a, 0x3c, 0xff, 0xa8, 0x6a, 0x3b, 0xff, 0xaa, 0x6c, 0x3b, 0xff, 0xa5, 0x66, 0x37, 0xff, 0xa5, 0x64, 0x35, 0xff, 0xa3, 0x62, 0x34, 0xff, 0xaa, 0x68, 0x37, 0xff, 0xae, 0x6f, 0x3b, 0xff, 0xb4, 0x74, 0x3f, 0xff, 0xb8, 0x77, 0x41, 0xff, 0xbb, 0x7a, 0x44, 0xff, 0xbf, 0x7e, 0x45, 0xff, 0xc0, 0x7f, 0x46, 0xff, 0xc5, 0x82, 0x49, 0xff, 0xc7, 0x86, 0x4a, 0xff, 0xca, 0x8b, 0x4e, 0xff, 0xca, 0x8c, 0x50, 0xff, 0xce, 0x8d, 0x50, 0xff, 0xcd, 0x8d, 0x50, 0xff, 0xca, 0x8e, 0x50, 0xff, 0xcf, 0x93, 0x54, 0xff, 0xd8, 0x97, 0x57, 0xff, 0xdf, 0x9b, 0x59, 0xff, 0xe0, 0x9e, 0x5d, 0xff, 0xe1, 0xa2, 0x61, 0xff, 0xe1, 0xa4, 0x63, 0xff, 0xe1, 0xaa, 0x68, 0xff, 0xdf, 0x9f, 0x63, 0xff, 0xe1, 0xa2, 0x66, 0xff, 0xe0, 0xa3, 0x69, 0xff, 0xe2, 0xa3, 0x6b, 0xff, 0xe0, 0xa2, 0x6e, 0xff, 0xdf, 0xa3, 0x71, 0xff, 0xdf, 0xa3, 0x72, 0xff, 0xe0, 0xa4, 0x74, 0xff, 0xe2, 0xa7, 0x76, 0xff, 0xe2, 0xa9, 0x76, 0xff, 0xe2, 0xb2, 0x75, 0xff, 0xe0, 0xc2, 0x74, 0xff, 0xdb, 0xc9, 0x78, 0xff, 0xd7, 0xc8, 0x80, 0xff, 0xdb, 0xca, 0x89, 0xff, 0xde, 0xcb, 0x93, 0xff, 0xe1, 0xca, 0xa4, 0xff, 0xe2, 0xca, 0xb3, 0xff, 0xe2, 0xcb, 0xb4, 0xff, 0xe2, 0xcb, 0xb4, 0xff, 0xe2, 0xcb, 0xb4, 0xff, 0xe2, 0xcb, 0xb3, 0xff, 0xe2, 0xca, 0xae, 0xff, 0xdf, 0xcb, 0xa4, 0xff, 0xdd, 0xca, 0x97, 0xff, 0xdb, 0xca, 0x86, 0xff, 0xda, 0xc2, 0x76, 0xff, 0xdd, 0xb0, 0x6a, 0xff, 0xdc, 0xa4, 0x5f, 0xff, 0xdd, 0x9f, 0x58, 0xff, 0xd7, 0x97, 0x4f, 0xff, 0xca, 0x8b, 0x43, 0xff, 0xc3, 0x85, 0x3b, 0xff, 0xbf, 0x83, 0x39, 0xff, 0xbe, 0x81, 0x39, 0xff, 0xbd, 0x80, 0x3a, 0xff, 0xbb, 0x7f, 0x39, 0xff, 0xb9, 0x7e, 0x38, 0xff, 0xb7, 0x7b, 0x37, 0xff, 0xb4, 0x78, 0x36, 0xff, 0xb3, 0x79, 0x36, 0xff, 0xb0, 0x74, 0x35, 0xff, 0xa3, 0x66, 0x34, 0xff, 0x9a, 0x5f, 0x33, 0xff, 0x9b, 0x5f, 0x34, 0xff, 0x9a, 0x60, 0x35, 0xff, 0x9b, 0x60, 0x36, 0xff, 0x9a, 0x60, 0x36, 0xff, 0x9b, 0x5f, 0x36, 0xff, 0x9b, 0x61, 0x36, 0xff, 0x9b, 0x61, 0x37, 0xff, 0x9b, 0x60, 0x37, 0xff, 0x9c, 0x60, 0x37, 0xff, 0x9c, 0x61, 0x37, 0xff, 0x9d, 0x62, 0x37, 0xff, 0x9e, 0x64, 0x38, 0xff, 0xa0, 0x64, 0x39, 0xff, 0xa2, 0x65, 0x3a, 0xff, 0xa2, 0x67, 0x3a, 0xff, 0xa4, 0x69, 0x3c, 0xff, 0xa8, 0x70, 0x3f, 0xff, 0xa9, 0x73, 0x41, 0xff, 0xaa, 0x73, 0x41, 0xff, 0xac, 0x75, 0x42, 0xff, 0xac, 0x75, 0x43, 0xff, 0xaf, 0x78, 0x44, 0xff, 0xaa, 0x73, 0x40, 0xff, 0xa1, 0x67, 0x38, 0xff, 0xa0, 0x65, 0x38, 0xff, 0xa2, 0x67, 0x3a, 0xff, 0xa4, 0x68, 0x39, 0xff, 0xa5, 0x68, 0x39, 0xff, 0xa5, 0x6a, 0x3a, 0xff, 0xa6, 0x6c, 0x3a, 0xff, 0xa9, 0x6d, 0x3b, 0xff, 0xa9, 0x6f, 0x3d, 0xff, 0xab, 0x72, 0x3e, 0xff, 0xac, 0x73, 0x3f, 0xff, 0xad, 0x74, 0x40, 0xff, 0xaf, 0x74, 0x40, 0xff, 0xb0, 0x74, 0x42, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xb2, 0x76, 0x43, 0xff, 0xb4, 0x79, 0x43, 0xff, 0xb5, 0x7b, 0x44, 0xff, 0xb5, 0x7d, 0x47, 0xff, 0xb7, 0x7f, 0x49, 0xff, 0xb9, 0x81, 0x4a, 0xff, 0xbc, 0x84, 0x4d, 0xff, 0xbd, 0x86, 0x50, 0xff, 0xbe, 0x87, 0x51, 0xff, 0xbf, 0x87, 0x51, 0xff, 0xc2, 0x8a, 0x53, 0xff, 0xc8, 0x8d, 0x56, 0xff, 0xce, 0x90, 0x58, 0xff, 0xd9, 0x95, 0x5b, 0xff, 0xdf, 0x99, 0x5f, 0xff, 0xe0, 0x9c, 0x5e, 0xff, 0xe1, 0x9f, 0x61, 0xff, 0xe0, 0xa5, 0x65, 0xff, 0xe1, 0xb1, 0x6a, 0xff, 0xe2, 0xc1, 0x72, 0xff, 0xda, 0xc9, 0x79, 0xff, 0xd9, 0xca, 0x82, 0xff, 0xda, 0xca, 0x8b, 0xff, 0xde, 0xca, 0x95, 0xff, 0xe0, 0xcb, 0xa3, 0xff, 0xe1, 0xcb, 0xaf, 0xff, 0xe2, 0xcb, 0xb4, 0xff, 0xe1, 0xca, 0xb4, 0xff, 0xe1, 0xca, 0xb3, 0xff, 0xe1, 0xca, 0xb4, 0xff, 0xe0, 0xcb, 0xab, 0xff, 0xdf, 0xca, 0x9c, 0xff, 0xdc, 0xca, 0x92, 0xff, 0xdb, 0xca, 0x89, 0xff, 0xda, 0xca, 0x83, 0xff, 0xde, 0xca, 0x7c, 0xff, 0xe0, 0xc5, 0x77, 0xff, 0xe1, 0xbc, 0x72, 0xff, 0xe0, 0xb9, 0x6f, 0xff, 0xe2, 0xb4, 0x6e, 0xff, 0xdf, 0xad, 0x6c, 0xff, 0xdf, 0xac, 0x69, 0xff, 0xe0, 0xaa, 0x6a, 0xff, 0xe1, 0xaa, 0x6b, 0xff, 0xe1, 0xa7, 0x6a, 0xff, 0xdf, 0xa3, 0x67, 0xff, 0xde, 0xa1, 0x66, 0xff, 0xe0, 0xa1, 0x65, 0xff, 0xe1, 0xa1, 0x65, 0xff, 0xe1, 0x9f, 0x63, 0xff, 0xe1, 0x9f, 0x62, 0xff, 0xe0, 0x9d, 0x5f, 0xff, 0xe0, 0x9e, 0x5e, 0xff, 0xe1, 0x9c, 0x5e, 0xff, 0xe0, 0x9e, 0x5d, 0xff, 0xe0, 0x9c, 0x5d, 0xff, 0xe0, 0x9c, 0x5d, 0xff, 0xe0, 0x9a, 0x5b, 0xff, 0xe1, 0x98, 0x5c, 0xff, 0xdf, 0x98, 0x5b, 0xff, 0xe1, 0x96, 0x5a, 0xff, 0xe2, 0x95, 0x58, 0xff, 0xdc, 0x93, 0x58, 0xff, 0xb8, 0x7a, 0x46, 0xff, 0xb4, 0x77, 0x45, 0xff, 0xb4, 0x76, 0x46, 0xff, 0xb3, 0x75, 0x44, 0xff, 0xaa, 0x6d, 0x3e, 0xff, 0xa7, 0x69, 0x3d, 0xff, 0xa8, 0x6b, 0x3e, 0xff, 0xa8, 0x6b, 0x3d, 0xff, 0xa6, 0x68, 0x3b, 0xff, 0xa5, 0x66, 0x3a, 0xff, 0xa4, 0x68, 0x39, 0xff, 0xa4, 0x66, 0x39, 0xff, 0xa2, 0x64, 0x38, 0xff, 0xa0, 0x62, 0x37, 0xff, 0x9f, 0x62, 0x37, 0xff, 0x9d, 0x60, 0x36, 0xff, 0x9c, 0x5f, 0x35, 0xff, 0x9c, 0x5f, 0x36, 0xff, 0x9d, 0x60, 0x37, 0xff, 0x9e, 0x61, 0x37, 0xff, 0x9f, 0x62, 0x36, 0xff, 0x9f, 0x62, 0x37, 0xff, 0x9f, 0x62, 0x38, 0xff, 0xa0, 0x64, 0x3a, 0xff, 0xa0, 0x65, 0x3a, 0xff, 0x9d, 0x61, 0x37, 0xff, 0x9b, 0x5f, 0x36, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x9a, 0x5d, 0x35, 0xff, 0x98, 0x5b, 0x34, 0xff, 0x97, 0x5b, 0x34, 0xff, 0x95, 0x5a, 0x33, 0xff, 0x95, 0x58, 0x33, 0xff, 0x94, 0x57, 0x33, 0xff, 0x93, 0x58, 0x33, 0xff, 0x90, 0x55, 0x30, 0xff, 0x88, 0x4e, 0x29, 0xff, 0x86, 0x4a, 0x27, 0xff, 0x84, 0x49, 0x26, 0xff, 0x83, 0x4a, 0x26, 0xff, 0x83, 0x4a, 0x26, 0xff, + 0x80, 0x48, 0x22, 0xff, 0x81, 0x48, 0x22, 0xff, 0x83, 0x48, 0x23, 0xff, 0x81, 0x49, 0x23, 0xff, 0x88, 0x4d, 0x27, 0xff, 0x8b, 0x51, 0x2c, 0xff, 0x92, 0x55, 0x32, 0xff, 0x9a, 0x5e, 0x37, 0xff, 0xa3, 0x68, 0x3d, 0xff, 0xa7, 0x6b, 0x41, 0xff, 0xa6, 0x6a, 0x3e, 0xff, 0xa6, 0x68, 0x3d, 0xff, 0xa6, 0x68, 0x3e, 0xff, 0xa6, 0x68, 0x3d, 0xff, 0xa8, 0x6a, 0x3e, 0xff, 0xa9, 0x6b, 0x3e, 0xff, 0xaa, 0x6b, 0x40, 0xff, 0xac, 0x6e, 0x41, 0xff, 0xad, 0x6e, 0x41, 0xff, 0xae, 0x70, 0x42, 0xff, 0xaf, 0x71, 0x43, 0xff, 0xb2, 0x75, 0x45, 0xff, 0xb7, 0x79, 0x49, 0xff, 0xbc, 0x7e, 0x4d, 0xff, 0xbe, 0x80, 0x4f, 0xff, 0xbb, 0x7c, 0x4a, 0xff, 0xba, 0x7b, 0x49, 0xff, 0xba, 0x7b, 0x46, 0xff, 0xbc, 0x7d, 0x47, 0xff, 0xbd, 0x7c, 0x46, 0xff, 0xbe, 0x7e, 0x47, 0xff, 0xc0, 0x7f, 0x47, 0xff, 0xc2, 0x80, 0x46, 0xff, 0xc7, 0x83, 0x47, 0xff, 0xc9, 0x89, 0x4c, 0xff, 0xca, 0x8c, 0x4e, 0xff, 0xcb, 0x8b, 0x50, 0xff, 0xd1, 0x90, 0x53, 0xff, 0xd6, 0x93, 0x56, 0xff, 0xd5, 0x93, 0x54, 0xff, 0xd7, 0x94, 0x56, 0xff, 0xdc, 0x98, 0x58, 0xff, 0xe0, 0x9c, 0x5c, 0xff, 0xe1, 0xa2, 0x5f, 0xff, 0xe0, 0xa6, 0x65, 0xff, 0xdf, 0xa8, 0x67, 0xff, 0xdf, 0xa9, 0x6a, 0xff, 0xdf, 0xa3, 0x67, 0xff, 0xe0, 0xa5, 0x6a, 0xff, 0xe1, 0xa7, 0x6a, 0xff, 0xe2, 0xa6, 0x6b, 0xff, 0xe2, 0xa5, 0x6c, 0xff, 0xe2, 0xa5, 0x6f, 0xff, 0xe2, 0xa6, 0x71, 0xff, 0xe2, 0xa8, 0x73, 0xff, 0xe2, 0xab, 0x76, 0xff, 0xe2, 0xb0, 0x76, 0xff, 0xe0, 0xbc, 0x75, 0xff, 0xdf, 0xc4, 0x75, 0xff, 0xda, 0xc9, 0x7c, 0xff, 0xd9, 0xca, 0x83, 0xff, 0xdd, 0xca, 0x8d, 0xff, 0xdf, 0xcb, 0x98, 0xff, 0xe0, 0xca, 0xa9, 0xff, 0xe2, 0xcb, 0xb5, 0xff, 0xe2, 0xcb, 0xb5, 0xff, 0xe2, 0xcb, 0xb4, 0xff, 0xe2, 0xcb, 0xb4, 0xff, 0xe2, 0xcb, 0xb4, 0xff, 0xe2, 0xcb, 0xb2, 0xff, 0xe0, 0xca, 0xa5, 0xff, 0xdc, 0xc9, 0x8e, 0xff, 0xd9, 0xc5, 0x73, 0xff, 0xdc, 0xb8, 0x66, 0xff, 0xdd, 0xa9, 0x5a, 0xff, 0xdc, 0xa4, 0x54, 0xff, 0xd7, 0x97, 0x4c, 0xff, 0xcf, 0x8d, 0x42, 0xff, 0xcb, 0x89, 0x40, 0xff, 0xc6, 0x87, 0x3e, 0xff, 0xc2, 0x85, 0x3c, 0xff, 0xbf, 0x82, 0x3a, 0xff, 0xbd, 0x80, 0x38, 0xff, 0xbb, 0x7d, 0x38, 0xff, 0xb8, 0x7c, 0x37, 0xff, 0xb6, 0x7b, 0x37, 0xff, 0xb4, 0x78, 0x35, 0xff, 0xa8, 0x6a, 0x34, 0xff, 0x9c, 0x5e, 0x34, 0xff, 0x9d, 0x60, 0x35, 0xff, 0x9c, 0x61, 0x36, 0xff, 0x9c, 0x60, 0x37, 0xff, 0x9a, 0x5f, 0x37, 0xff, 0x9a, 0x5f, 0x37, 0xff, 0x9b, 0x60, 0x37, 0xff, 0x9b, 0x61, 0x37, 0xff, 0x9c, 0x60, 0x37, 0xff, 0x9c, 0x60, 0x37, 0xff, 0x9c, 0x60, 0x37, 0xff, 0x9c, 0x61, 0x37, 0xff, 0x9d, 0x61, 0x37, 0xff, 0x9e, 0x63, 0x38, 0xff, 0x9f, 0x65, 0x39, 0xff, 0xa0, 0x65, 0x3a, 0xff, 0xa2, 0x66, 0x3b, 0xff, 0xa5, 0x6d, 0x3e, 0xff, 0xa9, 0x71, 0x41, 0xff, 0xa9, 0x72, 0x41, 0xff, 0xa9, 0x74, 0x41, 0xff, 0xab, 0x75, 0x41, 0xff, 0xad, 0x76, 0x42, 0xff, 0xa8, 0x6f, 0x3f, 0xff, 0x9f, 0x64, 0x38, 0xff, 0x9e, 0x63, 0x37, 0xff, 0xa0, 0x65, 0x39, 0xff, 0xa1, 0x66, 0x39, 0xff, 0xa3, 0x67, 0x38, 0xff, 0xa3, 0x69, 0x39, 0xff, 0xa4, 0x69, 0x3a, 0xff, 0xa6, 0x6a, 0x3a, 0xff, 0xa7, 0x6c, 0x3a, 0xff, 0xa8, 0x6d, 0x3b, 0xff, 0xa9, 0x6f, 0x3d, 0xff, 0xab, 0x71, 0x3e, 0xff, 0xac, 0x73, 0x3f, 0xff, 0xac, 0x73, 0x40, 0xff, 0xae, 0x74, 0x41, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xb1, 0x76, 0x44, 0xff, 0xb2, 0x78, 0x44, 0xff, 0xb4, 0x7a, 0x44, 0xff, 0xb5, 0x7a, 0x45, 0xff, 0xb6, 0x7a, 0x47, 0xff, 0xb7, 0x7c, 0x47, 0xff, 0xb6, 0x7c, 0x46, 0xff, 0xb8, 0x7d, 0x48, 0xff, 0xb9, 0x80, 0x49, 0xff, 0xbc, 0x83, 0x4c, 0xff, 0xc0, 0x87, 0x50, 0xff, 0xc3, 0x8a, 0x53, 0xff, 0xca, 0x8e, 0x55, 0xff, 0xd1, 0x91, 0x57, 0xff, 0xda, 0x95, 0x5a, 0xff, 0xdf, 0x99, 0x5d, 0xff, 0xdf, 0x9e, 0x60, 0xff, 0xe0, 0xa5, 0x64, 0xff, 0xe1, 0xad, 0x67, 0xff, 0xe1, 0xbc, 0x6f, 0xff, 0xde, 0xc9, 0x77, 0xff, 0xd9, 0xcb, 0x7f, 0xff, 0xd9, 0xca, 0x88, 0xff, 0xdd, 0xca, 0x93, 0xff, 0xdf, 0xc9, 0xa0, 0xff, 0xe2, 0xca, 0xaf, 0xff, 0xe1, 0xca, 0xb4, 0xff, 0xe2, 0xcb, 0xb4, 0xff, 0xe2, 0xcb, 0xb4, 0xff, 0xe2, 0xcb, 0xb4, 0xff, 0xe2, 0xcb, 0xb5, 0xff, 0xe1, 0xcb, 0xaa, 0xff, 0xe0, 0xcb, 0x9b, 0xff, 0xdb, 0xca, 0x91, 0xff, 0xda, 0xcb, 0x8a, 0xff, 0xd7, 0xca, 0x83, 0xff, 0xdb, 0xc9, 0x7d, 0xff, 0xdf, 0xc6, 0x77, 0xff, 0xe2, 0xc0, 0x73, 0xff, 0xe1, 0xbb, 0x70, 0xff, 0xe0, 0xb4, 0x6f, 0xff, 0xe2, 0xaf, 0x6e, 0xff, 0xe1, 0xb0, 0x6d, 0xff, 0xdf, 0xb0, 0x6d, 0xff, 0xdf, 0xb1, 0x6d, 0xff, 0xe0, 0xb9, 0x70, 0xff, 0xe1, 0xb9, 0x6f, 0xff, 0xe0, 0xaf, 0x6c, 0xff, 0xdf, 0xa5, 0x68, 0xff, 0xe1, 0xa2, 0x65, 0xff, 0xe1, 0x9f, 0x63, 0xff, 0xe0, 0x9c, 0x62, 0xff, 0xe1, 0x9c, 0x5f, 0xff, 0xe0, 0x9a, 0x5d, 0xff, 0xe0, 0x9b, 0x5b, 0xff, 0xe0, 0x99, 0x5b, 0xff, 0xe1, 0x9a, 0x5b, 0xff, 0xe0, 0x9a, 0x5c, 0xff, 0xe1, 0x99, 0x5b, 0xff, 0xe1, 0x96, 0x5b, 0xff, 0xe1, 0x97, 0x59, 0xff, 0xe4, 0x99, 0x5b, 0xff, 0xc2, 0x84, 0x4d, 0xff, 0xb5, 0x78, 0x47, 0xff, 0xb5, 0x77, 0x47, 0xff, 0xb3, 0x76, 0x46, 0xff, 0xb2, 0x77, 0x45, 0xff, 0xb1, 0x74, 0x44, 0xff, 0xac, 0x6f, 0x41, 0xff, 0xa9, 0x6d, 0x3e, 0xff, 0xa8, 0x6a, 0x3c, 0xff, 0xa7, 0x69, 0x3b, 0xff, 0xa6, 0x68, 0x3b, 0xff, 0xa5, 0x67, 0x3a, 0xff, 0xa4, 0x68, 0x39, 0xff, 0xa2, 0x64, 0x37, 0xff, 0xa1, 0x62, 0x37, 0xff, 0x9f, 0x62, 0x37, 0xff, 0x9f, 0x60, 0x37, 0xff, 0x9f, 0x60, 0x37, 0xff, 0x9f, 0x61, 0x38, 0xff, 0xa0, 0x61, 0x37, 0xff, 0xa0, 0x63, 0x37, 0xff, 0xa0, 0x62, 0x39, 0xff, 0xa1, 0x63, 0x3a, 0xff, 0xa1, 0x64, 0x3a, 0xff, 0x9f, 0x63, 0x39, 0xff, 0x9f, 0x61, 0x37, 0xff, 0x9f, 0x61, 0x37, 0xff, 0x9d, 0x60, 0x37, 0xff, 0x9a, 0x5e, 0x37, 0xff, 0x9a, 0x5e, 0x36, 0xff, 0x99, 0x5d, 0x35, 0xff, 0x98, 0x5b, 0x34, 0xff, 0x96, 0x5b, 0x34, 0xff, 0x96, 0x5a, 0x33, 0xff, 0x96, 0x59, 0x33, 0xff, 0x95, 0x59, 0x34, 0xff, 0x93, 0x58, 0x32, 0xff, 0x8c, 0x51, 0x2e, 0xff, 0x86, 0x4c, 0x26, 0xff, 0x85, 0x4a, 0x26, 0xff, 0x82, 0x4a, 0x25, 0xff, 0x83, 0x49, 0x25, 0xff, 0x82, 0x48, 0x23, 0xff, 0x82, 0x48, 0x23, 0xff, + 0x88, 0x50, 0x28, 0xff, 0x8a, 0x4f, 0x28, 0xff, 0x95, 0x58, 0x32, 0xff, 0x9e, 0x61, 0x3a, 0xff, 0xa0, 0x63, 0x3b, 0xff, 0x9e, 0x61, 0x38, 0xff, 0x9e, 0x61, 0x38, 0xff, 0x9e, 0x62, 0x38, 0xff, 0x9d, 0x61, 0x38, 0xff, 0x9f, 0x62, 0x38, 0xff, 0xa0, 0x62, 0x39, 0xff, 0xa2, 0x63, 0x39, 0xff, 0xa2, 0x65, 0x3a, 0xff, 0xa4, 0x65, 0x3a, 0xff, 0xa5, 0x67, 0x3b, 0xff, 0xa6, 0x68, 0x3c, 0xff, 0xa8, 0x69, 0x3d, 0xff, 0xa9, 0x6b, 0x3d, 0xff, 0xac, 0x6e, 0x40, 0xff, 0xad, 0x6f, 0x41, 0xff, 0xb0, 0x71, 0x43, 0xff, 0xb3, 0x74, 0x44, 0xff, 0xb5, 0x76, 0x45, 0xff, 0xb6, 0x76, 0x46, 0xff, 0xb6, 0x78, 0x46, 0xff, 0xba, 0x7b, 0x4a, 0xff, 0xc0, 0x81, 0x4d, 0xff, 0xcc, 0x88, 0x51, 0xff, 0xd2, 0x8b, 0x53, 0xff, 0xd6, 0x8f, 0x57, 0xff, 0xd5, 0x8e, 0x56, 0xff, 0xcd, 0x8a, 0x50, 0xff, 0xcb, 0x88, 0x4e, 0xff, 0xc9, 0x87, 0x4c, 0xff, 0xc8, 0x85, 0x4a, 0xff, 0xc7, 0x88, 0x4c, 0xff, 0xcb, 0x8b, 0x51, 0xff, 0xcf, 0x8e, 0x54, 0xff, 0xd2, 0x91, 0x56, 0xff, 0xd8, 0x95, 0x56, 0xff, 0xdf, 0x97, 0x58, 0xff, 0xdc, 0x98, 0x58, 0xff, 0xdf, 0x9a, 0x59, 0xff, 0xe0, 0x9f, 0x5b, 0xff, 0xe1, 0xa3, 0x61, 0xff, 0xe1, 0xaa, 0x67, 0xff, 0xe0, 0xac, 0x69, 0xff, 0xe1, 0xac, 0x6b, 0xff, 0xe0, 0xa5, 0x69, 0xff, 0xe1, 0xa7, 0x69, 0xff, 0xe2, 0xa9, 0x69, 0xff, 0xe2, 0xa8, 0x6a, 0xff, 0xe2, 0xa7, 0x6b, 0xff, 0xe1, 0xa9, 0x6e, 0xff, 0xe1, 0xac, 0x71, 0xff, 0xe2, 0xaf, 0x74, 0xff, 0xe2, 0xb1, 0x75, 0xff, 0xe1, 0xb7, 0x75, 0xff, 0xe2, 0xc2, 0x75, 0xff, 0xde, 0xc7, 0x75, 0xff, 0xdb, 0xc8, 0x79, 0xff, 0xd9, 0xca, 0x81, 0xff, 0xdb, 0xca, 0x8c, 0xff, 0xdf, 0xcb, 0x99, 0xff, 0xe1, 0xcb, 0xaa, 0xff, 0xe2, 0xcb, 0xb5, 0xff, 0xe2, 0xcb, 0xb5, 0xff, 0xe2, 0xcb, 0xb5, 0xff, 0xe1, 0xcb, 0xb5, 0xff, 0xe2, 0xcb, 0xb3, 0xff, 0xe0, 0xcb, 0xa6, 0xff, 0xdb, 0xc9, 0x8f, 0xff, 0xd6, 0xc7, 0x75, 0xff, 0xde, 0xc1, 0x67, 0xff, 0xde, 0xaf, 0x5b, 0xff, 0xdc, 0xa3, 0x51, 0xff, 0xdd, 0x9b, 0x4c, 0xff, 0xdc, 0x93, 0x47, 0xff, 0xd6, 0x8f, 0x44, 0xff, 0xca, 0x8a, 0x3e, 0xff, 0xc7, 0x89, 0x3f, 0xff, 0xc2, 0x84, 0x3d, 0xff, 0xc0, 0x83, 0x3b, 0xff, 0xbf, 0x81, 0x39, 0xff, 0xbc, 0x80, 0x38, 0xff, 0xba, 0x7e, 0x37, 0xff, 0xb2, 0x75, 0x37, 0xff, 0xa2, 0x66, 0x36, 0xff, 0x9f, 0x63, 0x36, 0xff, 0x9f, 0x63, 0x37, 0xff, 0x9e, 0x62, 0x38, 0xff, 0x9e, 0x63, 0x38, 0xff, 0x9d, 0x62, 0x38, 0xff, 0x9d, 0x61, 0x37, 0xff, 0x9c, 0x61, 0x37, 0xff, 0x9c, 0x60, 0x37, 0xff, 0x9c, 0x61, 0x37, 0xff, 0x9c, 0x61, 0x37, 0xff, 0x9d, 0x61, 0x38, 0xff, 0x9d, 0x62, 0x38, 0xff, 0x9e, 0x62, 0x38, 0xff, 0x9f, 0x64, 0x39, 0xff, 0x9f, 0x64, 0x3a, 0xff, 0xa1, 0x66, 0x3a, 0xff, 0xa4, 0x6c, 0x3e, 0xff, 0xa7, 0x72, 0x41, 0xff, 0xa7, 0x70, 0x40, 0xff, 0xa8, 0x70, 0x41, 0xff, 0xaa, 0x73, 0x41, 0xff, 0xab, 0x74, 0x42, 0xff, 0xa5, 0x6e, 0x3f, 0xff, 0x9d, 0x63, 0x37, 0xff, 0x9c, 0x61, 0x37, 0xff, 0x9d, 0x62, 0x38, 0xff, 0x9f, 0x65, 0x39, 0xff, 0xa1, 0x66, 0x39, 0xff, 0xa1, 0x66, 0x38, 0xff, 0xa3, 0x67, 0x38, 0xff, 0xa3, 0x69, 0x39, 0xff, 0xa4, 0x69, 0x3a, 0xff, 0xa7, 0x6a, 0x39, 0xff, 0xa6, 0x6b, 0x3a, 0xff, 0xa7, 0x6b, 0x3a, 0xff, 0xa9, 0x6f, 0x3c, 0xff, 0xab, 0x71, 0x3e, 0xff, 0xab, 0x73, 0x40, 0xff, 0xad, 0x74, 0x42, 0xff, 0xaf, 0x75, 0x43, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb1, 0x76, 0x42, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xb2, 0x77, 0x44, 0xff, 0xb5, 0x7a, 0x44, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb8, 0x7c, 0x47, 0xff, 0xba, 0x7e, 0x49, 0xff, 0xbc, 0x83, 0x4b, 0xff, 0xc0, 0x86, 0x4f, 0xff, 0xc5, 0x8a, 0x52, 0xff, 0xcd, 0x8f, 0x56, 0xff, 0xd5, 0x93, 0x58, 0xff, 0xdd, 0x99, 0x5a, 0xff, 0xe0, 0x9c, 0x5d, 0xff, 0xdf, 0x9f, 0x5b, 0xff, 0xdf, 0xa2, 0x5d, 0xff, 0xdf, 0xb0, 0x66, 0xff, 0xe0, 0xc2, 0x72, 0xff, 0xda, 0xca, 0x79, 0xff, 0xd7, 0xca, 0x81, 0xff, 0xdb, 0xcb, 0x8c, 0xff, 0xdd, 0xca, 0x97, 0xff, 0xe0, 0xca, 0xa6, 0xff, 0xe1, 0xca, 0xb0, 0xff, 0xe2, 0xcb, 0xb4, 0xff, 0xe2, 0xcb, 0xb4, 0xff, 0xe2, 0xcb, 0xb5, 0xff, 0xe1, 0xca, 0xb3, 0xff, 0xe2, 0xcb, 0xb3, 0xff, 0xe0, 0xca, 0xa7, 0xff, 0xde, 0xca, 0x98, 0xff, 0xdc, 0xca, 0x90, 0xff, 0xda, 0xca, 0x89, 0xff, 0xd7, 0xc9, 0x83, 0xff, 0xda, 0xc9, 0x7e, 0xff, 0xdc, 0xc9, 0x7b, 0xff, 0xdf, 0xc5, 0x7a, 0xff, 0xe0, 0xc0, 0x78, 0xff, 0xe1, 0xbf, 0x78, 0xff, 0xe1, 0xba, 0x77, 0xff, 0xe1, 0xb9, 0x76, 0xff, 0xe2, 0xbc, 0x74, 0xff, 0xe0, 0xb8, 0x73, 0xff, 0xe0, 0xb7, 0x71, 0xff, 0xe1, 0xb3, 0x6e, 0xff, 0xdf, 0xb8, 0x6e, 0xff, 0xe0, 0xab, 0x69, 0xff, 0xe1, 0xa5, 0x67, 0xff, 0xe0, 0x9e, 0x63, 0xff, 0xdf, 0x9d, 0x61, 0xff, 0xe0, 0x9c, 0x5f, 0xff, 0xe0, 0x9a, 0x5d, 0xff, 0xe1, 0x99, 0x5b, 0xff, 0xdf, 0x98, 0x5b, 0xff, 0xe1, 0x97, 0x5a, 0xff, 0xe0, 0x96, 0x59, 0xff, 0xe1, 0x97, 0x5a, 0xff, 0xe1, 0x97, 0x5a, 0xff, 0xe4, 0x99, 0x5b, 0xff, 0xbc, 0x7c, 0x49, 0xff, 0xb5, 0x79, 0x48, 0xff, 0xb5, 0x79, 0x47, 0xff, 0xb4, 0x77, 0x47, 0xff, 0xb6, 0x79, 0x48, 0xff, 0xb6, 0x79, 0x47, 0xff, 0xaf, 0x72, 0x44, 0xff, 0xaa, 0x6e, 0x41, 0xff, 0xaa, 0x6e, 0x3e, 0xff, 0xa8, 0x6b, 0x3d, 0xff, 0xa7, 0x6a, 0x3b, 0xff, 0xa6, 0x68, 0x3a, 0xff, 0xa4, 0x67, 0x39, 0xff, 0xa1, 0x64, 0x38, 0xff, 0xa2, 0x63, 0x37, 0xff, 0xa2, 0x63, 0x38, 0xff, 0xa0, 0x63, 0x38, 0xff, 0xa0, 0x62, 0x38, 0xff, 0xa0, 0x62, 0x38, 0xff, 0xa0, 0x62, 0x38, 0xff, 0xa0, 0x62, 0x38, 0xff, 0xa0, 0x61, 0x37, 0xff, 0x9f, 0x62, 0x37, 0xff, 0x9f, 0x61, 0x37, 0xff, 0x9f, 0x62, 0x37, 0xff, 0x9e, 0x61, 0x37, 0xff, 0x9d, 0x60, 0x37, 0xff, 0x9c, 0x60, 0x36, 0xff, 0x9a, 0x5e, 0x36, 0xff, 0x99, 0x5d, 0x36, 0xff, 0x98, 0x5b, 0x34, 0xff, 0x97, 0x5b, 0x34, 0xff, 0x97, 0x5b, 0x34, 0xff, 0x98, 0x5c, 0x36, 0xff, 0x95, 0x59, 0x32, 0xff, 0x8f, 0x54, 0x2f, 0xff, 0x86, 0x4b, 0x27, 0xff, 0x85, 0x4b, 0x27, 0xff, 0x84, 0x4a, 0x26, 0xff, 0x82, 0x4a, 0x25, 0xff, 0x80, 0x48, 0x23, 0xff, 0x7e, 0x46, 0x21, 0xff, 0x7d, 0x45, 0x20, 0xff, 0x85, 0x4b, 0x27, 0xff, + 0x99, 0x5d, 0x36, 0xff, 0x9b, 0x5e, 0x37, 0xff, 0x9a, 0x5e, 0x36, 0xff, 0x9a, 0x5d, 0x35, 0xff, 0x99, 0x5c, 0x35, 0xff, 0x99, 0x5c, 0x35, 0xff, 0x9a, 0x5d, 0x35, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x9b, 0x5e, 0x36, 0xff, 0x9b, 0x5e, 0x36, 0xff, 0x9d, 0x60, 0x37, 0xff, 0x9e, 0x61, 0x37, 0xff, 0xa0, 0x61, 0x38, 0xff, 0xa1, 0x62, 0x38, 0xff, 0xa1, 0x64, 0x39, 0xff, 0xa4, 0x65, 0x3a, 0xff, 0xa5, 0x66, 0x3b, 0xff, 0xa7, 0x68, 0x3b, 0xff, 0xa9, 0x6b, 0x3d, 0xff, 0xab, 0x6e, 0x3e, 0xff, 0xad, 0x6f, 0x3f, 0xff, 0xaf, 0x6f, 0x41, 0xff, 0xb2, 0x72, 0x43, 0xff, 0xb4, 0x75, 0x44, 0xff, 0xb9, 0x7b, 0x48, 0xff, 0xbd, 0x7e, 0x4a, 0xff, 0xc0, 0x81, 0x4d, 0xff, 0xc6, 0x84, 0x4f, 0xff, 0xcc, 0x86, 0x50, 0xff, 0xd1, 0x89, 0x52, 0xff, 0xd5, 0x8c, 0x54, 0xff, 0xd4, 0x8b, 0x55, 0xff, 0xd2, 0x8d, 0x54, 0xff, 0xd6, 0x8e, 0x56, 0xff, 0xd8, 0x8e, 0x55, 0xff, 0xd5, 0x8e, 0x53, 0xff, 0xcb, 0x8d, 0x50, 0xff, 0xcc, 0x8e, 0x55, 0xff, 0xcf, 0x90, 0x57, 0xff, 0xd5, 0x93, 0x56, 0xff, 0xda, 0x95, 0x57, 0xff, 0xdf, 0x98, 0x57, 0xff, 0xe1, 0x9a, 0x5a, 0xff, 0xe1, 0x9d, 0x5c, 0xff, 0xe1, 0xa0, 0x5e, 0xff, 0xe1, 0xa5, 0x64, 0xff, 0xe1, 0xad, 0x68, 0xff, 0xe1, 0xb3, 0x6a, 0xff, 0xdf, 0xad, 0x6b, 0xff, 0xe0, 0xa9, 0x6a, 0xff, 0xe0, 0xaa, 0x6a, 0xff, 0xe1, 0xab, 0x69, 0xff, 0xe2, 0xac, 0x6a, 0xff, 0xe2, 0xab, 0x6b, 0xff, 0xe1, 0xaa, 0x6d, 0xff, 0xe0, 0xb0, 0x72, 0xff, 0xe2, 0xb4, 0x72, 0xff, 0xe2, 0xb8, 0x73, 0xff, 0xe2, 0xbc, 0x72, 0xff, 0xe1, 0xc3, 0x73, 0xff, 0xe0, 0xc4, 0x72, 0xff, 0xdd, 0xc3, 0x74, 0xff, 0xdb, 0xca, 0x7e, 0xff, 0xda, 0xca, 0x88, 0xff, 0xde, 0xcb, 0x95, 0xff, 0xe1, 0xcb, 0xa3, 0xff, 0xe1, 0xcb, 0xae, 0xff, 0xe2, 0xca, 0xb3, 0xff, 0xe2, 0xcb, 0xb3, 0xff, 0xe2, 0xcb, 0xa9, 0xff, 0xdf, 0xca, 0x9a, 0xff, 0xdb, 0xca, 0x8c, 0xff, 0xd9, 0xc7, 0x75, 0xff, 0xdd, 0xbf, 0x61, 0xff, 0xdd, 0xb5, 0x5d, 0xff, 0xde, 0xaa, 0x57, 0xff, 0xdf, 0x9c, 0x4f, 0xff, 0xde, 0x96, 0x49, 0xff, 0xd8, 0x93, 0x46, 0xff, 0xd2, 0x8e, 0x43, 0xff, 0xcb, 0x8a, 0x41, 0xff, 0xc6, 0x89, 0x3f, 0xff, 0xc2, 0x86, 0x3d, 0xff, 0xc1, 0x83, 0x3b, 0xff, 0xbe, 0x82, 0x39, 0xff, 0xb7, 0x7b, 0x39, 0xff, 0xa6, 0x6a, 0x37, 0xff, 0xa1, 0x65, 0x37, 0xff, 0xa3, 0x66, 0x38, 0xff, 0xa1, 0x66, 0x39, 0xff, 0xa0, 0x65, 0x39, 0xff, 0xa0, 0x64, 0x3a, 0xff, 0xa0, 0x63, 0x39, 0xff, 0x9e, 0x62, 0x38, 0xff, 0x9d, 0x61, 0x38, 0xff, 0x9d, 0x62, 0x38, 0xff, 0x9d, 0x61, 0x38, 0xff, 0x9d, 0x62, 0x38, 0xff, 0x9d, 0x61, 0x38, 0xff, 0x9d, 0x62, 0x38, 0xff, 0x9e, 0x62, 0x39, 0xff, 0x9f, 0x63, 0x39, 0xff, 0xa0, 0x65, 0x3b, 0xff, 0xa2, 0x6a, 0x3d, 0xff, 0xa5, 0x6f, 0x40, 0xff, 0xa6, 0x70, 0x40, 0xff, 0xa6, 0x70, 0x41, 0xff, 0xa7, 0x71, 0x40, 0xff, 0xa8, 0x72, 0x40, 0xff, 0xa4, 0x6d, 0x3e, 0xff, 0x9c, 0x61, 0x36, 0xff, 0x9b, 0x60, 0x36, 0xff, 0x9b, 0x62, 0x38, 0xff, 0x9d, 0x62, 0x38, 0xff, 0x9e, 0x63, 0x37, 0xff, 0x9f, 0x64, 0x37, 0xff, 0xa0, 0x65, 0x37, 0xff, 0xa2, 0x67, 0x37, 0xff, 0xa3, 0x68, 0x37, 0xff, 0xa3, 0x67, 0x37, 0xff, 0xa5, 0x6a, 0x39, 0xff, 0xa6, 0x6b, 0x3a, 0xff, 0xa6, 0x6b, 0x3a, 0xff, 0xa8, 0x6c, 0x3a, 0xff, 0xa9, 0x6e, 0x3c, 0xff, 0xaa, 0x70, 0x3e, 0xff, 0xac, 0x74, 0x41, 0xff, 0xad, 0x74, 0x41, 0xff, 0xab, 0x71, 0x3f, 0xff, 0xab, 0x70, 0x3f, 0xff, 0xab, 0x71, 0x40, 0xff, 0xae, 0x72, 0x41, 0xff, 0xb0, 0x73, 0x42, 0xff, 0xb0, 0x76, 0x42, 0xff, 0xb3, 0x78, 0x43, 0xff, 0xb5, 0x79, 0x45, 0xff, 0xb6, 0x7c, 0x46, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xba, 0x7f, 0x48, 0xff, 0xbe, 0x82, 0x4b, 0xff, 0xc3, 0x87, 0x4f, 0xff, 0xc8, 0x8b, 0x52, 0xff, 0xd0, 0x90, 0x55, 0xff, 0xd9, 0x94, 0x59, 0xff, 0xdd, 0x9a, 0x5d, 0xff, 0xdf, 0x9e, 0x5e, 0xff, 0xdf, 0xa2, 0x5e, 0xff, 0xdf, 0xa8, 0x61, 0xff, 0xdf, 0xb7, 0x67, 0xff, 0xdd, 0xc6, 0x70, 0xff, 0xd7, 0xc9, 0x78, 0xff, 0xd8, 0xc9, 0x81, 0xff, 0xdc, 0xca, 0x8b, 0xff, 0xde, 0xca, 0x95, 0xff, 0xe0, 0xca, 0xa1, 0xff, 0xe1, 0xca, 0xac, 0xff, 0xe1, 0xca, 0xb1, 0xff, 0xe1, 0xca, 0xb1, 0xff, 0xe2, 0xca, 0xb2, 0xff, 0xe1, 0xca, 0xad, 0xff, 0xe0, 0xca, 0xa6, 0xff, 0xdf, 0xca, 0x99, 0xff, 0xdd, 0xca, 0x91, 0xff, 0xda, 0xc9, 0x8a, 0xff, 0xd9, 0xca, 0x86, 0xff, 0xd9, 0xc9, 0x83, 0xff, 0xd9, 0xca, 0x82, 0xff, 0xdd, 0xc7, 0x80, 0xff, 0xe1, 0xc1, 0x80, 0xff, 0xe0, 0xbf, 0x7f, 0xff, 0xe0, 0xba, 0x7e, 0xff, 0xe1, 0xb5, 0x7b, 0xff, 0xe1, 0xb6, 0x7c, 0xff, 0xe1, 0xb6, 0x78, 0xff, 0xe1, 0xb5, 0x75, 0xff, 0xe1, 0xbd, 0x74, 0xff, 0xe0, 0xbd, 0x71, 0xff, 0xe0, 0xb7, 0x6f, 0xff, 0xdf, 0xb0, 0x6c, 0xff, 0xdf, 0xa9, 0x67, 0xff, 0xdf, 0xa0, 0x65, 0xff, 0xe0, 0x9d, 0x62, 0xff, 0xe0, 0x9c, 0x5e, 0xff, 0xe1, 0x9a, 0x5d, 0xff, 0xe0, 0x99, 0x5c, 0xff, 0xdf, 0x97, 0x59, 0xff, 0xdf, 0x99, 0x5a, 0xff, 0xdf, 0x9a, 0x5a, 0xff, 0xe0, 0x99, 0x59, 0xff, 0xd9, 0x96, 0x57, 0xff, 0xbc, 0x7e, 0x4b, 0xff, 0xb6, 0x7a, 0x49, 0xff, 0xb7, 0x7a, 0x49, 0xff, 0xb7, 0x7b, 0x49, 0xff, 0xb6, 0x7a, 0x47, 0xff, 0xb6, 0x78, 0x46, 0xff, 0xb4, 0x77, 0x45, 0xff, 0xae, 0x71, 0x42, 0xff, 0xaa, 0x6e, 0x3f, 0xff, 0xa9, 0x6c, 0x3d, 0xff, 0xa9, 0x6b, 0x3b, 0xff, 0xa8, 0x6a, 0x3b, 0xff, 0xa6, 0x68, 0x3a, 0xff, 0xa3, 0x66, 0x3a, 0xff, 0xa3, 0x66, 0x3a, 0xff, 0xa4, 0x66, 0x39, 0xff, 0xa1, 0x63, 0x38, 0xff, 0xa1, 0x64, 0x39, 0xff, 0xa1, 0x63, 0x38, 0xff, 0xa1, 0x63, 0x38, 0xff, 0xa0, 0x62, 0x38, 0xff, 0xa0, 0x62, 0x37, 0xff, 0x9f, 0x61, 0x37, 0xff, 0x9f, 0x61, 0x37, 0xff, 0x9e, 0x60, 0x37, 0xff, 0x9c, 0x60, 0x36, 0xff, 0x9c, 0x5f, 0x36, 0xff, 0x9c, 0x5f, 0x36, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x9a, 0x5e, 0x36, 0xff, 0x9a, 0x5e, 0x36, 0xff, 0x98, 0x5b, 0x35, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x8c, 0x50, 0x2b, 0xff, 0x86, 0x4c, 0x28, 0xff, 0x85, 0x4b, 0x26, 0xff, 0x85, 0x4a, 0x26, 0xff, 0x82, 0x48, 0x25, 0xff, 0x7f, 0x45, 0x20, 0xff, 0x82, 0x4a, 0x26, 0xff, 0x89, 0x4f, 0x2b, 0xff, 0x93, 0x57, 0x31, 0xff, 0x98, 0x5b, 0x35, 0xff, + 0x96, 0x5b, 0x34, 0xff, 0x96, 0x5b, 0x34, 0xff, 0x96, 0x5b, 0x34, 0xff, 0x96, 0x58, 0x34, 0xff, 0x96, 0x5b, 0x34, 0xff, 0x96, 0x5b, 0x34, 0xff, 0x97, 0x59, 0x34, 0xff, 0x99, 0x5a, 0x34, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x9a, 0x5c, 0x35, 0xff, 0x9b, 0x5d, 0x35, 0xff, 0x9b, 0x5e, 0x35, 0xff, 0x9d, 0x5f, 0x35, 0xff, 0x9e, 0x61, 0x37, 0xff, 0x9e, 0x61, 0x37, 0xff, 0xa0, 0x62, 0x38, 0xff, 0xa2, 0x63, 0x39, 0xff, 0xa4, 0x66, 0x3a, 0xff, 0xa6, 0x67, 0x3b, 0xff, 0xa8, 0x69, 0x3b, 0xff, 0xac, 0x6c, 0x3d, 0xff, 0xad, 0x6f, 0x3f, 0xff, 0xb0, 0x71, 0x41, 0xff, 0xb3, 0x75, 0x43, 0xff, 0xb8, 0x78, 0x46, 0xff, 0xbc, 0x7d, 0x4a, 0xff, 0xc0, 0x80, 0x4d, 0xff, 0xc3, 0x84, 0x4f, 0xff, 0xc9, 0x84, 0x50, 0xff, 0xcd, 0x89, 0x51, 0xff, 0xce, 0x89, 0x52, 0xff, 0xc8, 0x84, 0x50, 0xff, 0xce, 0x8a, 0x50, 0xff, 0xd2, 0x8c, 0x53, 0xff, 0xd7, 0x8d, 0x55, 0xff, 0xdb, 0x90, 0x57, 0xff, 0xdf, 0x93, 0x59, 0xff, 0xde, 0x94, 0x5c, 0xff, 0xd6, 0x93, 0x5a, 0xff, 0xd2, 0x93, 0x59, 0xff, 0xd7, 0x94, 0x59, 0xff, 0xdb, 0x96, 0x57, 0xff, 0xe0, 0x9a, 0x57, 0xff, 0xe1, 0x9e, 0x5c, 0xff, 0xe1, 0xa1, 0x5f, 0xff, 0xe0, 0xa4, 0x62, 0xff, 0xe1, 0xa7, 0x66, 0xff, 0xe0, 0xae, 0x69, 0xff, 0xe1, 0xb0, 0x6a, 0xff, 0xdf, 0xae, 0x6c, 0xff, 0xe2, 0xad, 0x6b, 0xff, 0xdf, 0xab, 0x6b, 0xff, 0xe1, 0xac, 0x69, 0xff, 0xe2, 0xad, 0x6a, 0xff, 0xe2, 0xae, 0x6a, 0xff, 0xe2, 0xb0, 0x6c, 0xff, 0xe1, 0xb5, 0x6e, 0xff, 0xe2, 0xb7, 0x6f, 0xff, 0xe2, 0xba, 0x6c, 0xff, 0xe2, 0xbc, 0x6b, 0xff, 0xe1, 0xbf, 0x6b, 0xff, 0xe1, 0xbf, 0x6d, 0xff, 0xde, 0xc1, 0x6e, 0xff, 0xdb, 0xcc, 0x7a, 0xff, 0xd9, 0xcb, 0x82, 0xff, 0xda, 0xc9, 0x8b, 0xff, 0xdd, 0xca, 0x93, 0xff, 0xde, 0xca, 0x98, 0xff, 0xde, 0xca, 0x96, 0xff, 0xdb, 0xca, 0x92, 0xff, 0xda, 0xc9, 0x8a, 0xff, 0xd9, 0xca, 0x84, 0xff, 0xd9, 0xc8, 0x76, 0xff, 0xdd, 0xc0, 0x60, 0xff, 0xdf, 0xb9, 0x5c, 0xff, 0xdc, 0xa9, 0x57, 0xff, 0xde, 0xa5, 0x51, 0xff, 0xdd, 0x99, 0x4c, 0xff, 0xda, 0x90, 0x47, 0xff, 0xd4, 0x8e, 0x41, 0xff, 0xd0, 0x8b, 0x41, 0xff, 0xcd, 0x8a, 0x41, 0xff, 0xc6, 0x87, 0x3d, 0xff, 0xc4, 0x85, 0x3e, 0xff, 0xbf, 0x81, 0x3b, 0xff, 0xb0, 0x72, 0x38, 0xff, 0xa5, 0x68, 0x38, 0xff, 0xa5, 0x68, 0x39, 0xff, 0xa4, 0x68, 0x3a, 0xff, 0xa3, 0x67, 0x3b, 0xff, 0xa3, 0x66, 0x3b, 0xff, 0xa2, 0x66, 0x3b, 0xff, 0xa1, 0x66, 0x3b, 0xff, 0xa0, 0x65, 0x3a, 0xff, 0x9f, 0x63, 0x39, 0xff, 0x9e, 0x62, 0x38, 0xff, 0x9e, 0x62, 0x39, 0xff, 0x9e, 0x62, 0x38, 0xff, 0x9e, 0x63, 0x39, 0xff, 0x9e, 0x63, 0x39, 0xff, 0x9e, 0x63, 0x3a, 0xff, 0x9f, 0x64, 0x3a, 0xff, 0xa1, 0x68, 0x3c, 0xff, 0xa3, 0x6d, 0x3e, 0xff, 0xa3, 0x6c, 0x3f, 0xff, 0xa5, 0x6d, 0x40, 0xff, 0xa6, 0x6f, 0x3e, 0xff, 0xa7, 0x71, 0x40, 0xff, 0xa3, 0x6d, 0x3d, 0xff, 0x9b, 0x62, 0x36, 0xff, 0x99, 0x60, 0x35, 0xff, 0x9a, 0x61, 0x37, 0xff, 0x9a, 0x61, 0x37, 0xff, 0x9c, 0x62, 0x37, 0xff, 0x9e, 0x63, 0x36, 0xff, 0x9e, 0x65, 0x36, 0xff, 0x9f, 0x65, 0x37, 0xff, 0xa1, 0x65, 0x36, 0xff, 0xa2, 0x67, 0x36, 0xff, 0xa3, 0x68, 0x38, 0xff, 0xa3, 0x67, 0x39, 0xff, 0xa5, 0x6a, 0x3a, 0xff, 0xa7, 0x6b, 0x3b, 0xff, 0xa7, 0x6b, 0x3b, 0xff, 0xa8, 0x6c, 0x3a, 0xff, 0xa8, 0x6c, 0x3b, 0xff, 0xa6, 0x6b, 0x3a, 0xff, 0xa6, 0x6b, 0x3a, 0xff, 0xa9, 0x6d, 0x3d, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xab, 0x70, 0x3f, 0xff, 0xad, 0x73, 0x41, 0xff, 0xae, 0x74, 0x42, 0xff, 0xb0, 0x75, 0x41, 0xff, 0xb0, 0x76, 0x41, 0xff, 0xb3, 0x76, 0x43, 0xff, 0xb6, 0x79, 0x44, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbe, 0x83, 0x4b, 0xff, 0xc5, 0x88, 0x4f, 0xff, 0xca, 0x8c, 0x52, 0xff, 0xd0, 0x8f, 0x55, 0xff, 0xdb, 0x96, 0x5a, 0xff, 0xe1, 0x99, 0x5a, 0xff, 0xe0, 0xa0, 0x5f, 0xff, 0xdf, 0xa4, 0x61, 0xff, 0xe0, 0xac, 0x62, 0xff, 0xdf, 0xbb, 0x6a, 0xff, 0xd9, 0xc5, 0x72, 0xff, 0xd6, 0xc9, 0x7b, 0xff, 0xd8, 0xc9, 0x82, 0xff, 0xda, 0xca, 0x8c, 0xff, 0xdd, 0xca, 0x95, 0xff, 0xdf, 0xc9, 0x9e, 0xff, 0xe1, 0xcb, 0xa9, 0xff, 0xe0, 0xc9, 0xaa, 0xff, 0xe0, 0xca, 0xaa, 0xff, 0xe1, 0xca, 0xab, 0xff, 0xe0, 0xcb, 0xa6, 0xff, 0xdd, 0xca, 0x9b, 0xff, 0xdc, 0xc8, 0x92, 0xff, 0xdc, 0xc9, 0x8d, 0xff, 0xda, 0xc9, 0x89, 0xff, 0xd7, 0xc8, 0x83, 0xff, 0xd8, 0xc9, 0x82, 0xff, 0xdd, 0xca, 0x82, 0xff, 0xe1, 0xc4, 0x81, 0xff, 0xdf, 0xba, 0x81, 0xff, 0xe0, 0xb8, 0x81, 0xff, 0xe1, 0xb7, 0x81, 0xff, 0xe1, 0xb4, 0x80, 0xff, 0xe1, 0xb3, 0x7f, 0xff, 0xe0, 0xb5, 0x7d, 0xff, 0xe1, 0xbe, 0x7a, 0xff, 0xe1, 0xbf, 0x7a, 0xff, 0xe1, 0xbd, 0x74, 0xff, 0xdf, 0xb8, 0x70, 0xff, 0xdf, 0xb1, 0x6d, 0xff, 0xe0, 0xab, 0x6b, 0xff, 0xde, 0xa7, 0x66, 0xff, 0xdf, 0xa0, 0x62, 0xff, 0xe0, 0x9b, 0x5f, 0xff, 0xe0, 0x9b, 0x5c, 0xff, 0xe0, 0x98, 0x5d, 0xff, 0xdf, 0x9a, 0x5b, 0xff, 0xe1, 0x99, 0x5b, 0xff, 0xe3, 0x9b, 0x5b, 0xff, 0xcf, 0x8e, 0x56, 0xff, 0xb9, 0x7c, 0x48, 0xff, 0xb9, 0x7c, 0x4a, 0xff, 0xb8, 0x7b, 0x4b, 0xff, 0xb7, 0x7a, 0x49, 0xff, 0xb6, 0x7a, 0x48, 0xff, 0xb5, 0x79, 0x47, 0xff, 0xb3, 0x76, 0x45, 0xff, 0xb2, 0x74, 0x44, 0xff, 0xae, 0x71, 0x41, 0xff, 0xab, 0x6e, 0x3e, 0xff, 0xaa, 0x6c, 0x3d, 0xff, 0xa7, 0x69, 0x3b, 0xff, 0xa8, 0x6a, 0x3b, 0xff, 0xa6, 0x68, 0x3b, 0xff, 0xa4, 0x66, 0x3b, 0xff, 0xa4, 0x68, 0x3a, 0xff, 0xa3, 0x65, 0x3a, 0xff, 0xa3, 0x65, 0x39, 0xff, 0xa3, 0x66, 0x39, 0xff, 0xa2, 0x65, 0x38, 0xff, 0xa0, 0x62, 0x39, 0xff, 0xa0, 0x62, 0x37, 0xff, 0xa0, 0x62, 0x37, 0xff, 0x9f, 0x61, 0x37, 0xff, 0x9e, 0x60, 0x37, 0xff, 0x9e, 0x61, 0x37, 0xff, 0x9f, 0x61, 0x37, 0xff, 0x9d, 0x61, 0x37, 0xff, 0x9d, 0x61, 0x37, 0xff, 0x9c, 0x60, 0x37, 0xff, 0x9a, 0x5e, 0x36, 0xff, 0x90, 0x55, 0x2b, 0xff, 0x8f, 0x53, 0x2b, 0xff, 0x8a, 0x4e, 0x27, 0xff, 0x87, 0x4c, 0x27, 0xff, 0x84, 0x4a, 0x24, 0xff, 0x84, 0x4a, 0x23, 0xff, 0x82, 0x47, 0x25, 0xff, 0x84, 0x49, 0x24, 0xff, 0x93, 0x58, 0x33, 0xff, 0x97, 0x5b, 0x35, 0xff, 0x99, 0x5b, 0x35, 0xff, 0x99, 0x5b, 0x35, 0xff, 0x97, 0x59, 0x34, 0xff, + 0x95, 0x58, 0x33, 0xff, 0x95, 0x57, 0x33, 0xff, 0x94, 0x57, 0x33, 0xff, 0x94, 0x58, 0x33, 0xff, 0x94, 0x58, 0x32, 0xff, 0x94, 0x58, 0x32, 0xff, 0x96, 0x58, 0x32, 0xff, 0x96, 0x58, 0x34, 0xff, 0x95, 0x58, 0x33, 0xff, 0x97, 0x59, 0x33, 0xff, 0x99, 0x5a, 0x34, 0xff, 0x9a, 0x5b, 0x34, 0xff, 0x9a, 0x5c, 0x35, 0xff, 0x9b, 0x5d, 0x35, 0xff, 0x9d, 0x5f, 0x36, 0xff, 0x9e, 0x61, 0x37, 0xff, 0xa0, 0x61, 0x37, 0xff, 0xa3, 0x63, 0x38, 0xff, 0xa4, 0x65, 0x39, 0xff, 0xa6, 0x67, 0x3a, 0xff, 0xa7, 0x69, 0x3b, 0xff, 0xaa, 0x6c, 0x3c, 0xff, 0xad, 0x6e, 0x3f, 0xff, 0xb4, 0x75, 0x43, 0xff, 0xba, 0x7b, 0x47, 0xff, 0xbf, 0x80, 0x4b, 0xff, 0xc2, 0x82, 0x4d, 0xff, 0xc2, 0x82, 0x4d, 0xff, 0xc4, 0x85, 0x4e, 0xff, 0xca, 0x87, 0x51, 0xff, 0xcb, 0x88, 0x51, 0xff, 0xc5, 0x85, 0x4f, 0xff, 0xca, 0x85, 0x50, 0xff, 0xd1, 0x89, 0x52, 0xff, 0xd4, 0x8c, 0x53, 0xff, 0xd7, 0x8e, 0x53, 0xff, 0xdc, 0x8f, 0x57, 0xff, 0xe1, 0x94, 0x5b, 0xff, 0xe2, 0x99, 0x5e, 0xff, 0xe0, 0x9a, 0x5d, 0xff, 0xdb, 0x99, 0x5c, 0xff, 0xda, 0x98, 0x57, 0xff, 0xdc, 0x98, 0x56, 0xff, 0xe0, 0x9b, 0x58, 0xff, 0xe1, 0x9f, 0x5c, 0xff, 0xe2, 0xa5, 0x60, 0xff, 0xe1, 0xa7, 0x64, 0xff, 0xdf, 0xae, 0x68, 0xff, 0xe1, 0xb1, 0x69, 0xff, 0xe0, 0xb1, 0x6a, 0xff, 0xde, 0xaf, 0x6b, 0xff, 0xe1, 0xb8, 0x70, 0xff, 0xe2, 0xb7, 0x6f, 0xff, 0xe0, 0xb2, 0x6d, 0xff, 0xe2, 0xb2, 0x6c, 0xff, 0xe2, 0xb1, 0x6a, 0xff, 0xe2, 0xb2, 0x69, 0xff, 0xe0, 0xb3, 0x6a, 0xff, 0xe0, 0xb2, 0x69, 0xff, 0xe0, 0xb0, 0x67, 0xff, 0xe1, 0xb1, 0x68, 0xff, 0xe2, 0xb7, 0x6a, 0xff, 0xe1, 0xbb, 0x6c, 0xff, 0xe1, 0xb4, 0x6a, 0xff, 0xe2, 0xb9, 0x6f, 0xff, 0xe0, 0xc6, 0x77, 0xff, 0xd8, 0xc9, 0x7a, 0xff, 0xd9, 0xcb, 0x7f, 0xff, 0xd9, 0xcb, 0x7f, 0xff, 0xd8, 0xca, 0x7e, 0xff, 0xd7, 0xc9, 0x7d, 0xff, 0xd8, 0xcb, 0x7b, 0xff, 0xdb, 0xc6, 0x71, 0xff, 0xdf, 0xba, 0x5e, 0xff, 0xdf, 0xb3, 0x5c, 0xff, 0xdf, 0xa7, 0x56, 0xff, 0xde, 0xa0, 0x52, 0xff, 0xde, 0x9b, 0x4e, 0xff, 0xdb, 0x93, 0x49, 0xff, 0xdb, 0x93, 0x48, 0xff, 0xd4, 0x8f, 0x43, 0xff, 0xd0, 0x8c, 0x41, 0xff, 0xcc, 0x8a, 0x3f, 0xff, 0xc9, 0x88, 0x3d, 0xff, 0xbc, 0x7e, 0x3c, 0xff, 0xaa, 0x6e, 0x3a, 0xff, 0xa8, 0x6b, 0x3b, 0xff, 0xa7, 0x6b, 0x3c, 0xff, 0xa7, 0x6a, 0x3c, 0xff, 0xa6, 0x6a, 0x3d, 0xff, 0xa5, 0x69, 0x3e, 0xff, 0xa4, 0x69, 0x3d, 0xff, 0xa3, 0x67, 0x3c, 0xff, 0xa1, 0x66, 0x3b, 0xff, 0xa1, 0x66, 0x3b, 0xff, 0xa1, 0x65, 0x3b, 0xff, 0xa0, 0x64, 0x3b, 0xff, 0x9f, 0x64, 0x3a, 0xff, 0x9e, 0x63, 0x3a, 0xff, 0x9f, 0x64, 0x3a, 0xff, 0xa0, 0x65, 0x3a, 0xff, 0xa1, 0x67, 0x3c, 0xff, 0xa2, 0x6a, 0x3e, 0xff, 0xa2, 0x6a, 0x3d, 0xff, 0xa3, 0x6b, 0x3b, 0xff, 0xa3, 0x6b, 0x3a, 0xff, 0xa5, 0x6d, 0x3d, 0xff, 0xa2, 0x6b, 0x3d, 0xff, 0x9a, 0x60, 0x37, 0xff, 0x97, 0x5d, 0x34, 0xff, 0x98, 0x5f, 0x35, 0xff, 0x99, 0x5f, 0x35, 0xff, 0x9b, 0x60, 0x36, 0xff, 0x9b, 0x60, 0x36, 0xff, 0x9c, 0x62, 0x35, 0xff, 0x9e, 0x62, 0x36, 0xff, 0x9f, 0x62, 0x36, 0xff, 0x9f, 0x63, 0x35, 0xff, 0x9f, 0x65, 0x35, 0xff, 0xa1, 0x66, 0x37, 0xff, 0xa3, 0x66, 0x37, 0xff, 0xa3, 0x67, 0x37, 0xff, 0xa3, 0x69, 0x39, 0xff, 0xa5, 0x6a, 0x3a, 0xff, 0xa5, 0x68, 0x39, 0xff, 0xa3, 0x67, 0x38, 0xff, 0xa3, 0x67, 0x39, 0xff, 0xa5, 0x68, 0x3b, 0xff, 0xa7, 0x6b, 0x3c, 0xff, 0xa9, 0x6d, 0x3e, 0xff, 0xaa, 0x70, 0x3f, 0xff, 0xac, 0x72, 0x40, 0xff, 0xad, 0x73, 0x41, 0xff, 0xaf, 0x75, 0x41, 0xff, 0xb0, 0x76, 0x42, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb4, 0x7c, 0x45, 0xff, 0xb6, 0x7d, 0x46, 0xff, 0xb7, 0x7d, 0x46, 0xff, 0xb9, 0x7f, 0x49, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbe, 0x82, 0x4b, 0xff, 0xc4, 0x88, 0x4e, 0xff, 0xcd, 0x8c, 0x52, 0xff, 0xd6, 0x92, 0x55, 0xff, 0xdc, 0x95, 0x57, 0xff, 0xe0, 0x9a, 0x5a, 0xff, 0xe0, 0x9f, 0x5c, 0xff, 0xdf, 0xa5, 0x60, 0xff, 0xe0, 0xb0, 0x65, 0xff, 0xe0, 0xc1, 0x6b, 0xff, 0xdc, 0xcb, 0x74, 0xff, 0xd8, 0xca, 0x7e, 0xff, 0xd9, 0xc9, 0x84, 0xff, 0xda, 0xca, 0x8c, 0xff, 0xde, 0xca, 0x94, 0xff, 0xdf, 0xc9, 0x9e, 0xff, 0xe0, 0xca, 0xa6, 0xff, 0xe0, 0xcb, 0xa8, 0xff, 0xe0, 0xca, 0xa4, 0xff, 0xdf, 0xcb, 0xa0, 0xff, 0xde, 0xca, 0x98, 0xff, 0xdd, 0xcb, 0x93, 0xff, 0xdc, 0xca, 0x8f, 0xff, 0xdb, 0xca, 0x89, 0xff, 0xd9, 0xcb, 0x83, 0xff, 0xd7, 0xc9, 0x7f, 0xff, 0xda, 0xcb, 0x7f, 0xff, 0xe0, 0xc7, 0x7f, 0xff, 0xe2, 0xbe, 0x83, 0xff, 0xe2, 0xb6, 0x84, 0xff, 0xe2, 0xb3, 0x84, 0xff, 0xe2, 0xb2, 0x83, 0xff, 0xe1, 0xb2, 0x82, 0xff, 0xe0, 0xb9, 0x82, 0xff, 0xe1, 0xbe, 0x82, 0xff, 0xe1, 0xbf, 0x7c, 0xff, 0xe1, 0xbd, 0x78, 0xff, 0xe0, 0xba, 0x73, 0xff, 0xdf, 0xb3, 0x6d, 0xff, 0xe1, 0xb1, 0x6c, 0xff, 0xdf, 0xa8, 0x6b, 0xff, 0xdf, 0xac, 0x66, 0xff, 0xdb, 0xa6, 0x60, 0xff, 0xde, 0x9f, 0x5e, 0xff, 0xdf, 0x9e, 0x5d, 0xff, 0xdf, 0x9b, 0x5d, 0xff, 0xdf, 0x9a, 0x5b, 0xff, 0xe4, 0x9b, 0x5d, 0xff, 0xc8, 0x88, 0x51, 0xff, 0xbd, 0x7e, 0x4b, 0xff, 0xb9, 0x7d, 0x4b, 0xff, 0xb8, 0x7b, 0x4a, 0xff, 0xb8, 0x7a, 0x4b, 0xff, 0xb6, 0x7a, 0x49, 0xff, 0xb7, 0x7a, 0x49, 0xff, 0xb4, 0x77, 0x46, 0xff, 0xb2, 0x74, 0x44, 0xff, 0xb0, 0x74, 0x44, 0xff, 0xad, 0x70, 0x41, 0xff, 0xaa, 0x6c, 0x3f, 0xff, 0xaa, 0x6c, 0x3e, 0xff, 0xa8, 0x6c, 0x3d, 0xff, 0xa7, 0x69, 0x3c, 0xff, 0xa6, 0x69, 0x3b, 0xff, 0xa4, 0x66, 0x3b, 0xff, 0xa4, 0x67, 0x3b, 0xff, 0xa3, 0x66, 0x3b, 0xff, 0xa3, 0x66, 0x3a, 0xff, 0xa3, 0x65, 0x3a, 0xff, 0xa1, 0x63, 0x3a, 0xff, 0xa1, 0x63, 0x39, 0xff, 0xa1, 0x64, 0x39, 0xff, 0xa1, 0x63, 0x38, 0xff, 0xa1, 0x63, 0x39, 0xff, 0xa1, 0x62, 0x38, 0xff, 0xa0, 0x61, 0x38, 0xff, 0x9d, 0x61, 0x37, 0xff, 0x97, 0x5a, 0x31, 0xff, 0x94, 0x57, 0x2e, 0xff, 0x90, 0x55, 0x2a, 0xff, 0x90, 0x55, 0x2d, 0xff, 0x8a, 0x4f, 0x2a, 0xff, 0x87, 0x4c, 0x28, 0xff, 0x84, 0x4a, 0x26, 0xff, 0x84, 0x4b, 0x25, 0xff, 0x89, 0x4e, 0x2a, 0xff, 0x95, 0x59, 0x35, 0xff, 0x99, 0x5b, 0x36, 0xff, 0x97, 0x5b, 0x35, 0xff, 0x96, 0x5a, 0x34, 0xff, 0x96, 0x57, 0x34, 0xff, 0x96, 0x59, 0x34, 0xff, 0x96, 0x58, 0x34, 0xff, + 0x92, 0x55, 0x32, 0xff, 0x92, 0x56, 0x32, 0xff, 0x92, 0x55, 0x32, 0xff, 0x92, 0x56, 0x32, 0xff, 0x93, 0x56, 0x32, 0xff, 0x92, 0x56, 0x32, 0xff, 0x92, 0x56, 0x31, 0xff, 0x94, 0x57, 0x32, 0xff, 0x94, 0x57, 0x32, 0xff, 0x95, 0x57, 0x32, 0xff, 0x97, 0x59, 0x33, 0xff, 0x98, 0x59, 0x34, 0xff, 0x99, 0x5a, 0x34, 0xff, 0x9a, 0x5c, 0x34, 0xff, 0x9c, 0x5e, 0x34, 0xff, 0x9d, 0x5f, 0x35, 0xff, 0x9e, 0x60, 0x35, 0xff, 0xa0, 0x61, 0x37, 0xff, 0xa2, 0x63, 0x38, 0xff, 0xa4, 0x65, 0x38, 0xff, 0xa5, 0x68, 0x3a, 0xff, 0xaa, 0x6b, 0x3b, 0xff, 0xaf, 0x71, 0x40, 0xff, 0xb6, 0x77, 0x44, 0xff, 0xb9, 0x7a, 0x47, 0xff, 0xbc, 0x7e, 0x48, 0xff, 0xc0, 0x80, 0x4b, 0xff, 0xc5, 0x83, 0x4d, 0xff, 0xc5, 0x84, 0x4f, 0xff, 0xc2, 0x84, 0x4d, 0xff, 0xc7, 0x85, 0x4f, 0xff, 0xc5, 0x84, 0x4f, 0xff, 0xc9, 0x86, 0x50, 0xff, 0xcf, 0x88, 0x52, 0xff, 0xd4, 0x8c, 0x53, 0xff, 0xd8, 0x8d, 0x54, 0xff, 0xdb, 0x8f, 0x56, 0xff, 0xdd, 0x91, 0x57, 0xff, 0xe0, 0x96, 0x5b, 0xff, 0xe1, 0x9a, 0x5e, 0xff, 0xe2, 0x9c, 0x60, 0xff, 0xe1, 0x9d, 0x61, 0xff, 0xdf, 0x9b, 0x5e, 0xff, 0xe0, 0x9c, 0x5b, 0xff, 0xdf, 0x9d, 0x59, 0xff, 0xe1, 0xa0, 0x5d, 0xff, 0xe1, 0xa9, 0x63, 0xff, 0xe0, 0xaf, 0x68, 0xff, 0xe2, 0xb1, 0x6a, 0xff, 0xe1, 0xb4, 0x6a, 0xff, 0xdf, 0xb2, 0x6c, 0xff, 0xe0, 0xb2, 0x6c, 0xff, 0xe2, 0xc2, 0x75, 0xff, 0xdf, 0xc4, 0x75, 0xff, 0xe2, 0xba, 0x6f, 0xff, 0xe0, 0xb1, 0x6b, 0xff, 0xe1, 0xae, 0x67, 0xff, 0xe0, 0xab, 0x65, 0xff, 0xe2, 0xab, 0x64, 0xff, 0xe2, 0xad, 0x64, 0xff, 0xe2, 0xac, 0x64, 0xff, 0xe1, 0xac, 0x65, 0xff, 0xe1, 0xb1, 0x67, 0xff, 0xe1, 0xad, 0x68, 0xff, 0xe0, 0xa6, 0x65, 0xff, 0xdf, 0xaf, 0x65, 0xff, 0xe0, 0xb5, 0x67, 0xff, 0xdf, 0xbe, 0x6a, 0xff, 0xdf, 0xc3, 0x6e, 0xff, 0xdb, 0xc1, 0x6e, 0xff, 0xdd, 0xc6, 0x6e, 0xff, 0xde, 0xc4, 0x6f, 0xff, 0xdf, 0xbe, 0x69, 0xff, 0xde, 0xb7, 0x5d, 0xff, 0xdc, 0xa8, 0x55, 0xff, 0xde, 0xa5, 0x53, 0xff, 0xdf, 0xa2, 0x52, 0xff, 0xe0, 0x98, 0x4d, 0xff, 0xe0, 0x97, 0x49, 0xff, 0xdc, 0x90, 0x46, 0xff, 0xd6, 0x8f, 0x43, 0xff, 0xd3, 0x8e, 0x42, 0xff, 0xd3, 0x8d, 0x41, 0xff, 0xc9, 0x86, 0x3e, 0xff, 0xb5, 0x78, 0x3d, 0xff, 0xab, 0x6e, 0x3b, 0xff, 0xab, 0x6e, 0x3d, 0xff, 0xaa, 0x6d, 0x3f, 0xff, 0xa9, 0x6e, 0x40, 0xff, 0xa8, 0x6d, 0x40, 0xff, 0xa7, 0x6c, 0x3f, 0xff, 0xa7, 0x6c, 0x3e, 0xff, 0xa6, 0x6a, 0x3d, 0xff, 0xa5, 0x68, 0x3d, 0xff, 0xa4, 0x68, 0x3c, 0xff, 0xa2, 0x67, 0x3c, 0xff, 0xa1, 0x66, 0x3b, 0xff, 0xa2, 0x66, 0x3b, 0xff, 0xa2, 0x66, 0x3b, 0xff, 0xa2, 0x65, 0x3c, 0xff, 0xa1, 0x68, 0x3e, 0xff, 0xa1, 0x6b, 0x3e, 0xff, 0xa1, 0x69, 0x3a, 0xff, 0xa1, 0x69, 0x3a, 0xff, 0xa1, 0x68, 0x3a, 0xff, 0xa3, 0x6b, 0x3b, 0xff, 0xa2, 0x6a, 0x3b, 0xff, 0x98, 0x5f, 0x36, 0xff, 0x94, 0x5a, 0x32, 0xff, 0x97, 0x5c, 0x34, 0xff, 0x97, 0x5d, 0x34, 0xff, 0x97, 0x5e, 0x33, 0xff, 0x97, 0x5d, 0x33, 0xff, 0x98, 0x5e, 0x34, 0xff, 0x9a, 0x60, 0x34, 0xff, 0x9c, 0x60, 0x34, 0xff, 0x9c, 0x61, 0x34, 0xff, 0x9e, 0x63, 0x35, 0xff, 0x9e, 0x64, 0x34, 0xff, 0x9f, 0x65, 0x35, 0xff, 0xa1, 0x65, 0x37, 0xff, 0xa2, 0x67, 0x38, 0xff, 0xa2, 0x67, 0x38, 0xff, 0xa0, 0x64, 0x37, 0xff, 0xa0, 0x64, 0x37, 0xff, 0xa2, 0x66, 0x38, 0xff, 0xa3, 0x68, 0x38, 0xff, 0xa4, 0x69, 0x39, 0xff, 0xa5, 0x6a, 0x3a, 0xff, 0xa8, 0x6c, 0x3b, 0xff, 0xaa, 0x6e, 0x3c, 0xff, 0xab, 0x70, 0x3f, 0xff, 0xad, 0x73, 0x41, 0xff, 0xad, 0x74, 0x42, 0xff, 0xae, 0x75, 0x43, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb3, 0x79, 0x46, 0xff, 0xb4, 0x7a, 0x46, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xba, 0x7f, 0x48, 0xff, 0xbd, 0x81, 0x49, 0xff, 0xbf, 0x82, 0x4b, 0xff, 0xc5, 0x87, 0x4d, 0xff, 0xcb, 0x8b, 0x50, 0xff, 0xd5, 0x90, 0x54, 0xff, 0xdd, 0x95, 0x56, 0xff, 0xe0, 0x98, 0x57, 0xff, 0xe0, 0x9e, 0x59, 0xff, 0xdf, 0xa4, 0x5e, 0xff, 0xe1, 0xb3, 0x65, 0xff, 0xe0, 0xc2, 0x6c, 0xff, 0xdc, 0xca, 0x75, 0xff, 0xd8, 0xca, 0x7e, 0xff, 0xd8, 0xcb, 0x83, 0xff, 0xdb, 0xcb, 0x8b, 0xff, 0xdd, 0xcb, 0x93, 0xff, 0xde, 0xcb, 0x99, 0xff, 0xe0, 0xcb, 0x9d, 0xff, 0xdf, 0xcb, 0x9e, 0xff, 0xde, 0xc9, 0x9a, 0xff, 0xde, 0xca, 0x96, 0xff, 0xdc, 0xcb, 0x91, 0xff, 0xdc, 0xca, 0x8e, 0xff, 0xdb, 0xca, 0x8b, 0xff, 0xd9, 0xca, 0x87, 0xff, 0xd9, 0xcb, 0x81, 0xff, 0xd7, 0xca, 0x7e, 0xff, 0xdd, 0xc8, 0x7d, 0xff, 0xe1, 0xc1, 0x80, 0xff, 0xe1, 0xb7, 0x82, 0xff, 0xe1, 0xb2, 0x82, 0xff, 0xe1, 0xb4, 0x83, 0xff, 0xe1, 0xbd, 0x87, 0xff, 0xe2, 0xc0, 0x88, 0xff, 0xe1, 0xbe, 0x86, 0xff, 0xe0, 0xbd, 0x83, 0xff, 0xe2, 0xbc, 0x7e, 0xff, 0xe2, 0xba, 0x78, 0xff, 0xe2, 0xba, 0x72, 0xff, 0xe0, 0xb5, 0x6e, 0xff, 0xdf, 0xad, 0x6a, 0xff, 0xde, 0xa7, 0x66, 0xff, 0xdf, 0xb5, 0x6b, 0xff, 0xdf, 0xb1, 0x66, 0xff, 0xde, 0xa9, 0x63, 0xff, 0xde, 0xa3, 0x5e, 0xff, 0xdf, 0x9f, 0x5e, 0xff, 0xe1, 0x9f, 0x5e, 0xff, 0xc0, 0x82, 0x4f, 0xff, 0xc3, 0x85, 0x53, 0xff, 0xbf, 0x81, 0x50, 0xff, 0xbc, 0x7e, 0x4d, 0xff, 0xb9, 0x7d, 0x4c, 0xff, 0xb9, 0x7b, 0x4a, 0xff, 0xb6, 0x79, 0x49, 0xff, 0xb5, 0x77, 0x47, 0xff, 0xb1, 0x74, 0x46, 0xff, 0xb0, 0x74, 0x44, 0xff, 0xaf, 0x71, 0x43, 0xff, 0xac, 0x6e, 0x41, 0xff, 0xaa, 0x6f, 0x40, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xa8, 0x6c, 0x3d, 0xff, 0xa8, 0x6b, 0x3c, 0xff, 0xa5, 0x69, 0x3b, 0xff, 0xa6, 0x69, 0x3b, 0xff, 0xa5, 0x69, 0x3b, 0xff, 0xa5, 0x68, 0x3b, 0xff, 0xa4, 0x68, 0x3b, 0xff, 0xa5, 0x68, 0x3b, 0xff, 0xa5, 0x67, 0x3d, 0xff, 0xa5, 0x68, 0x3c, 0xff, 0xa1, 0x63, 0x38, 0xff, 0x9d, 0x5e, 0x34, 0xff, 0x9a, 0x5f, 0x32, 0xff, 0x98, 0x5b, 0x31, 0xff, 0x93, 0x57, 0x2c, 0xff, 0x92, 0x57, 0x2b, 0xff, 0x91, 0x56, 0x2c, 0xff, 0x92, 0x57, 0x2e, 0xff, 0x8b, 0x50, 0x2b, 0xff, 0x85, 0x4b, 0x28, 0xff, 0x87, 0x4c, 0x28, 0xff, 0x8e, 0x53, 0x2e, 0xff, 0x93, 0x57, 0x32, 0xff, 0x97, 0x5a, 0x35, 0xff, 0x96, 0x58, 0x34, 0xff, 0x95, 0x57, 0x33, 0xff, 0x94, 0x58, 0x33, 0xff, 0x94, 0x57, 0x33, 0xff, 0x93, 0x56, 0x32, 0xff, 0x92, 0x56, 0x32, 0xff, 0x93, 0x56, 0x32, 0xff, + 0x91, 0x54, 0x31, 0xff, 0x90, 0x54, 0x31, 0xff, 0x8f, 0x54, 0x30, 0xff, 0x8f, 0x53, 0x31, 0xff, 0x90, 0x53, 0x30, 0xff, 0x91, 0x54, 0x31, 0xff, 0x92, 0x54, 0x31, 0xff, 0x91, 0x54, 0x31, 0xff, 0x92, 0x56, 0x31, 0xff, 0x93, 0x56, 0x32, 0xff, 0x94, 0x57, 0x32, 0xff, 0x96, 0x58, 0x33, 0xff, 0x97, 0x59, 0x33, 0xff, 0x9a, 0x5b, 0x34, 0xff, 0x9a, 0x5c, 0x34, 0xff, 0x9b, 0x5c, 0x34, 0xff, 0x9d, 0x5f, 0x35, 0xff, 0x9f, 0x5f, 0x35, 0xff, 0xa0, 0x62, 0x37, 0xff, 0xa3, 0x63, 0x37, 0xff, 0xa5, 0x67, 0x38, 0xff, 0xad, 0x72, 0x41, 0xff, 0xb1, 0x75, 0x45, 0xff, 0xb5, 0x79, 0x47, 0xff, 0xb8, 0x7c, 0x49, 0xff, 0xb9, 0x7c, 0x47, 0xff, 0xbc, 0x7e, 0x47, 0xff, 0xc0, 0x80, 0x4a, 0xff, 0xc7, 0x85, 0x4d, 0xff, 0xc6, 0x84, 0x4f, 0xff, 0xc5, 0x84, 0x4e, 0xff, 0xc4, 0x83, 0x4e, 0xff, 0xc8, 0x85, 0x4e, 0xff, 0xce, 0x89, 0x51, 0xff, 0xd3, 0x8d, 0x53, 0xff, 0xd7, 0x8f, 0x54, 0xff, 0xdd, 0x8f, 0x56, 0xff, 0xde, 0x92, 0x57, 0xff, 0xe0, 0x95, 0x59, 0xff, 0xe2, 0x98, 0x5b, 0xff, 0xe2, 0x9b, 0x5d, 0xff, 0xe2, 0x9c, 0x60, 0xff, 0xe1, 0x9c, 0x61, 0xff, 0xe0, 0x9f, 0x61, 0xff, 0xe1, 0xa1, 0x61, 0xff, 0xe0, 0xa1, 0x5e, 0xff, 0xe1, 0xa3, 0x5e, 0xff, 0xe2, 0xab, 0x65, 0xff, 0xe2, 0xb1, 0x6b, 0xff, 0xe0, 0xb1, 0x6b, 0xff, 0xe2, 0xb5, 0x6b, 0xff, 0xe1, 0xae, 0x6a, 0xff, 0xdf, 0xaf, 0x6b, 0xff, 0xe0, 0xc5, 0x78, 0xff, 0xdf, 0xca, 0x7a, 0xff, 0xe2, 0xba, 0x6d, 0xff, 0xe0, 0xad, 0x68, 0xff, 0xe2, 0xaa, 0x64, 0xff, 0xe2, 0xaa, 0x64, 0xff, 0xe2, 0xa8, 0x62, 0xff, 0xe2, 0xa8, 0x62, 0xff, 0xe2, 0xa9, 0x62, 0xff, 0xe1, 0xa6, 0x62, 0xff, 0xe2, 0xa5, 0x64, 0xff, 0xe0, 0xa5, 0x61, 0xff, 0xdf, 0xa3, 0x5d, 0xff, 0xdd, 0xa2, 0x5b, 0xff, 0xe0, 0xa6, 0x5f, 0xff, 0xe1, 0xab, 0x61, 0xff, 0xe2, 0xad, 0x62, 0xff, 0xe1, 0xae, 0x62, 0xff, 0xe0, 0xaf, 0x63, 0xff, 0xe0, 0xaf, 0x62, 0xff, 0xe0, 0xaa, 0x59, 0xff, 0xde, 0xa2, 0x51, 0xff, 0xdd, 0xa0, 0x50, 0xff, 0xe0, 0xa0, 0x4e, 0xff, 0xe1, 0x9a, 0x4c, 0xff, 0xde, 0x95, 0x4a, 0xff, 0xdb, 0x94, 0x48, 0xff, 0xdc, 0x94, 0x45, 0xff, 0xd9, 0x8f, 0x43, 0xff, 0xdb, 0x8e, 0x44, 0xff, 0xcc, 0x87, 0x44, 0xff, 0xaf, 0x72, 0x3f, 0xff, 0xb0, 0x72, 0x40, 0xff, 0xaf, 0x72, 0x42, 0xff, 0xae, 0x72, 0x43, 0xff, 0xac, 0x71, 0x42, 0xff, 0xab, 0x6f, 0x41, 0xff, 0xaa, 0x6f, 0x42, 0xff, 0xa9, 0x6f, 0x41, 0xff, 0xa9, 0x6d, 0x40, 0xff, 0xa8, 0x6c, 0x40, 0xff, 0xa7, 0x6c, 0x40, 0xff, 0xa5, 0x6a, 0x3f, 0xff, 0xa4, 0x69, 0x3e, 0xff, 0xa4, 0x69, 0x3e, 0xff, 0xa4, 0x68, 0x3e, 0xff, 0xa2, 0x6a, 0x3f, 0xff, 0xa1, 0x6b, 0x3d, 0xff, 0xa1, 0x68, 0x3c, 0xff, 0xa1, 0x68, 0x3a, 0xff, 0x9f, 0x67, 0x38, 0xff, 0xa0, 0x68, 0x38, 0xff, 0x9f, 0x68, 0x39, 0xff, 0x98, 0x60, 0x37, 0xff, 0x94, 0x59, 0x33, 0xff, 0x96, 0x5b, 0x34, 0xff, 0x96, 0x5d, 0x34, 0xff, 0x96, 0x5d, 0x34, 0xff, 0x97, 0x5c, 0x34, 0xff, 0x97, 0x5d, 0x33, 0xff, 0x97, 0x5d, 0x33, 0xff, 0x99, 0x5e, 0x34, 0xff, 0x9a, 0x5f, 0x34, 0xff, 0x9a, 0x60, 0x34, 0xff, 0x9c, 0x61, 0x35, 0xff, 0x9c, 0x62, 0x34, 0xff, 0x9e, 0x64, 0x34, 0xff, 0x9f, 0x65, 0x36, 0xff, 0x9d, 0x62, 0x35, 0xff, 0x9d, 0x61, 0x34, 0xff, 0x9e, 0x62, 0x36, 0xff, 0x9f, 0x64, 0x37, 0xff, 0xa1, 0x66, 0x37, 0xff, 0xa2, 0x67, 0x37, 0xff, 0xa3, 0x68, 0x39, 0xff, 0xa3, 0x69, 0x39, 0xff, 0xa5, 0x69, 0x39, 0xff, 0xa7, 0x6b, 0x3a, 0xff, 0xa8, 0x6e, 0x3c, 0xff, 0xaa, 0x70, 0x3f, 0xff, 0xac, 0x73, 0x42, 0xff, 0xae, 0x75, 0x43, 0xff, 0xaf, 0x76, 0x45, 0xff, 0xaf, 0x77, 0x45, 0xff, 0xb2, 0x79, 0x46, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb6, 0x7d, 0x48, 0xff, 0xb8, 0x7d, 0x48, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbe, 0x82, 0x4b, 0xff, 0xc1, 0x83, 0x4b, 0xff, 0xc4, 0x85, 0x4e, 0xff, 0xcd, 0x8c, 0x50, 0xff, 0xd7, 0x90, 0x52, 0xff, 0xdd, 0x93, 0x53, 0xff, 0xe0, 0x98, 0x55, 0xff, 0xe0, 0x9f, 0x57, 0xff, 0xe0, 0xa4, 0x5c, 0xff, 0xe1, 0xad, 0x62, 0xff, 0xdf, 0xbe, 0x6c, 0xff, 0xdb, 0xc6, 0x74, 0xff, 0xd8, 0xca, 0x7b, 0xff, 0xd9, 0xca, 0x83, 0xff, 0xda, 0xcb, 0x88, 0xff, 0xdb, 0xca, 0x8c, 0xff, 0xdc, 0xca, 0x92, 0xff, 0xdd, 0xcb, 0x94, 0xff, 0xdd, 0xcb, 0x94, 0xff, 0xdc, 0xcb, 0x92, 0xff, 0xdb, 0xc9, 0x8d, 0xff, 0xdb, 0xca, 0x8c, 0xff, 0xda, 0xcb, 0x87, 0xff, 0xd9, 0xca, 0x84, 0xff, 0xd7, 0xcb, 0x82, 0xff, 0xd8, 0xcb, 0x81, 0xff, 0xda, 0xc9, 0x7d, 0xff, 0xe1, 0xc2, 0x7c, 0xff, 0xe1, 0xb8, 0x7d, 0xff, 0xe2, 0xb7, 0x82, 0xff, 0xe2, 0xbb, 0x84, 0xff, 0xe2, 0xbc, 0x87, 0xff, 0xe2, 0xbe, 0x89, 0xff, 0xe2, 0xbf, 0x88, 0xff, 0xe1, 0xbe, 0x88, 0xff, 0xe2, 0xbb, 0x82, 0xff, 0xe1, 0xba, 0x7d, 0xff, 0xe1, 0xb9, 0x77, 0xff, 0xe2, 0xb8, 0x71, 0xff, 0xe1, 0xb5, 0x6f, 0xff, 0xe1, 0xae, 0x6b, 0xff, 0xdd, 0xb1, 0x6a, 0xff, 0xdf, 0xb9, 0x6a, 0xff, 0xdf, 0xaf, 0x62, 0xff, 0xdf, 0xa8, 0x61, 0xff, 0xe0, 0xa8, 0x5d, 0xff, 0xd3, 0x9d, 0x57, 0xff, 0xab, 0x74, 0x41, 0xff, 0xa5, 0x6b, 0x3b, 0xff, 0xa9, 0x6d, 0x3d, 0xff, 0xac, 0x6f, 0x3e, 0xff, 0xaf, 0x74, 0x43, 0xff, 0xb5, 0x77, 0x49, 0xff, 0xb9, 0x7d, 0x4d, 0xff, 0xbc, 0x80, 0x50, 0xff, 0xb8, 0x7c, 0x4d, 0xff, 0xb5, 0x79, 0x4a, 0xff, 0xb3, 0x77, 0x49, 0xff, 0xb2, 0x74, 0x47, 0xff, 0xad, 0x72, 0x42, 0xff, 0xad, 0x71, 0x43, 0xff, 0xad, 0x71, 0x43, 0xff, 0xac, 0x6f, 0x42, 0xff, 0xac, 0x70, 0x44, 0xff, 0xaa, 0x6f, 0x43, 0xff, 0xa7, 0x6c, 0x3e, 0xff, 0xa4, 0x68, 0x3a, 0xff, 0x9f, 0x63, 0x37, 0xff, 0x9d, 0x60, 0x34, 0xff, 0x9b, 0x5f, 0x34, 0xff, 0x98, 0x5c, 0x2f, 0xff, 0x97, 0x5b, 0x2f, 0xff, 0x95, 0x59, 0x2e, 0xff, 0x95, 0x57, 0x2c, 0xff, 0x94, 0x59, 0x2c, 0xff, 0x94, 0x59, 0x2e, 0xff, 0x94, 0x58, 0x2f, 0xff, 0x94, 0x5a, 0x30, 0xff, 0x8c, 0x50, 0x2b, 0xff, 0x87, 0x4d, 0x2a, 0xff, 0x90, 0x55, 0x31, 0xff, 0x94, 0x57, 0x33, 0xff, 0x94, 0x59, 0x34, 0xff, 0x94, 0x58, 0x34, 0xff, 0x94, 0x57, 0x32, 0xff, 0x93, 0x57, 0x32, 0xff, 0x93, 0x56, 0x32, 0xff, 0x92, 0x55, 0x32, 0xff, 0x91, 0x55, 0x32, 0xff, 0x91, 0x54, 0x31, 0xff, 0x91, 0x54, 0x31, 0xff, 0x91, 0x54, 0x31, 0xff, + 0x8e, 0x52, 0x30, 0xff, 0x8e, 0x51, 0x30, 0xff, 0x8f, 0x51, 0x30, 0xff, 0x8f, 0x53, 0x2f, 0xff, 0x8e, 0x53, 0x2f, 0xff, 0x8f, 0x53, 0x2f, 0xff, 0x8f, 0x53, 0x30, 0xff, 0x91, 0x54, 0x30, 0xff, 0x91, 0x54, 0x31, 0xff, 0x91, 0x54, 0x31, 0xff, 0x94, 0x56, 0x31, 0xff, 0x94, 0x56, 0x32, 0xff, 0x96, 0x59, 0x33, 0xff, 0x97, 0x59, 0x33, 0xff, 0x98, 0x59, 0x32, 0xff, 0x98, 0x5a, 0x33, 0xff, 0x9b, 0x5c, 0x34, 0xff, 0x9c, 0x5e, 0x35, 0xff, 0x9e, 0x60, 0x35, 0xff, 0xa3, 0x64, 0x37, 0xff, 0xab, 0x6d, 0x3c, 0xff, 0xae, 0x72, 0x41, 0xff, 0xb0, 0x75, 0x44, 0xff, 0xb3, 0x77, 0x47, 0xff, 0xb5, 0x7a, 0x4b, 0xff, 0xb8, 0x7c, 0x49, 0xff, 0xbb, 0x7e, 0x48, 0xff, 0xbe, 0x7e, 0x48, 0xff, 0xc2, 0x81, 0x4a, 0xff, 0xc8, 0x86, 0x4d, 0xff, 0xc8, 0x86, 0x4e, 0xff, 0xc4, 0x84, 0x4e, 0xff, 0xc7, 0x84, 0x4e, 0xff, 0xcc, 0x88, 0x50, 0xff, 0xd2, 0x8c, 0x52, 0xff, 0xd6, 0x8e, 0x54, 0xff, 0xdb, 0x90, 0x56, 0xff, 0xdd, 0x94, 0x56, 0xff, 0xe0, 0x96, 0x59, 0xff, 0xe2, 0x99, 0x5b, 0xff, 0xe1, 0x9a, 0x5e, 0xff, 0xe2, 0x9c, 0x5f, 0xff, 0xe1, 0x9d, 0x5f, 0xff, 0xe2, 0xa0, 0x61, 0xff, 0xe1, 0xa2, 0x62, 0xff, 0xe1, 0xa2, 0x63, 0xff, 0xe1, 0xa3, 0x63, 0xff, 0xdf, 0xa5, 0x61, 0xff, 0xe1, 0xaa, 0x66, 0xff, 0xe1, 0xb1, 0x6c, 0xff, 0xe1, 0xb0, 0x6b, 0xff, 0xe1, 0xb1, 0x6b, 0xff, 0xde, 0xa9, 0x64, 0xff, 0xde, 0xa7, 0x61, 0xff, 0xe0, 0xbb, 0x6f, 0xff, 0xe2, 0xcb, 0x75, 0xff, 0xe2, 0xbd, 0x6d, 0xff, 0xe1, 0xaf, 0x69, 0xff, 0xe2, 0xa9, 0x63, 0xff, 0xe2, 0xa9, 0x63, 0xff, 0xe0, 0xa6, 0x61, 0xff, 0xdf, 0xa4, 0x60, 0xff, 0xe1, 0xa4, 0x5e, 0xff, 0xe1, 0xa3, 0x5e, 0xff, 0xe1, 0xa3, 0x60, 0xff, 0xe1, 0xa2, 0x60, 0xff, 0xe0, 0x9f, 0x59, 0xff, 0xdf, 0x9c, 0x56, 0xff, 0xe0, 0x9f, 0x58, 0xff, 0xe0, 0xa0, 0x5a, 0xff, 0xe0, 0xa4, 0x5b, 0xff, 0xe1, 0xa4, 0x5b, 0xff, 0xdf, 0xa3, 0x5c, 0xff, 0xde, 0xa3, 0x56, 0xff, 0xdf, 0xa0, 0x4f, 0xff, 0xe1, 0x9d, 0x4f, 0xff, 0xdf, 0x9a, 0x4e, 0xff, 0xe0, 0x99, 0x4c, 0xff, 0xe0, 0x96, 0x4a, 0xff, 0xdf, 0x93, 0x46, 0xff, 0xdd, 0x92, 0x46, 0xff, 0xe0, 0x92, 0x45, 0xff, 0xd7, 0x90, 0x45, 0xff, 0xba, 0x7f, 0x43, 0xff, 0xb4, 0x78, 0x45, 0xff, 0xb4, 0x7a, 0x46, 0xff, 0xb3, 0x79, 0x46, 0xff, 0xb2, 0x78, 0x47, 0xff, 0xb1, 0x75, 0x47, 0xff, 0xb0, 0x75, 0x46, 0xff, 0xae, 0x73, 0x45, 0xff, 0xac, 0x71, 0x44, 0xff, 0xab, 0x6f, 0x44, 0xff, 0xaa, 0x6f, 0x44, 0xff, 0xa9, 0x6f, 0x42, 0xff, 0xa9, 0x6e, 0x41, 0xff, 0xa8, 0x6d, 0x41, 0xff, 0xa5, 0x6c, 0x41, 0xff, 0xa3, 0x6c, 0x40, 0xff, 0xa0, 0x6a, 0x3d, 0xff, 0xa0, 0x68, 0x3b, 0xff, 0xa1, 0x69, 0x3a, 0xff, 0xa1, 0x69, 0x39, 0xff, 0xa2, 0x6a, 0x39, 0xff, 0xa2, 0x6a, 0x3b, 0xff, 0x9b, 0x63, 0x39, 0xff, 0x93, 0x5a, 0x33, 0xff, 0x93, 0x5a, 0x34, 0xff, 0x95, 0x5a, 0x33, 0xff, 0x94, 0x5b, 0x34, 0xff, 0x95, 0x5c, 0x33, 0xff, 0x97, 0x5d, 0x34, 0xff, 0x97, 0x5d, 0x33, 0xff, 0x97, 0x5d, 0x34, 0xff, 0x98, 0x5e, 0x33, 0xff, 0x9a, 0x60, 0x33, 0xff, 0x9b, 0x5f, 0x34, 0xff, 0x9b, 0x60, 0x34, 0xff, 0x9d, 0x62, 0x35, 0xff, 0x9d, 0x62, 0x35, 0xff, 0x9b, 0x5f, 0x33, 0xff, 0x9a, 0x5e, 0x33, 0xff, 0x9c, 0x60, 0x34, 0xff, 0x9d, 0x62, 0x35, 0xff, 0x9e, 0x62, 0x36, 0xff, 0x9f, 0x64, 0x37, 0xff, 0x9f, 0x64, 0x38, 0xff, 0xa2, 0x65, 0x38, 0xff, 0xa4, 0x68, 0x38, 0xff, 0xa5, 0x69, 0x3a, 0xff, 0xa6, 0x6a, 0x3b, 0xff, 0xa6, 0x6c, 0x3b, 0xff, 0xa8, 0x6d, 0x3d, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xaa, 0x71, 0x40, 0xff, 0xac, 0x74, 0x43, 0xff, 0xaf, 0x78, 0x47, 0xff, 0xb1, 0x78, 0x47, 0xff, 0xb3, 0x79, 0x47, 0xff, 0xb5, 0x7b, 0x47, 0xff, 0xb6, 0x7d, 0x48, 0xff, 0xb8, 0x7f, 0x48, 0xff, 0xbb, 0x81, 0x48, 0xff, 0xbd, 0x82, 0x4a, 0xff, 0xc0, 0x84, 0x4a, 0xff, 0xc5, 0x86, 0x4c, 0xff, 0xca, 0x89, 0x4f, 0xff, 0xd3, 0x8d, 0x4e, 0xff, 0xdb, 0x92, 0x4f, 0xff, 0xdf, 0x95, 0x52, 0xff, 0xe0, 0x9b, 0x56, 0xff, 0xe2, 0xa3, 0x5c, 0xff, 0xe1, 0xab, 0x62, 0xff, 0xdf, 0xbc, 0x6a, 0xff, 0xdb, 0xc7, 0x70, 0xff, 0xd7, 0xca, 0x77, 0xff, 0xd9, 0xca, 0x80, 0xff, 0xda, 0xcb, 0x85, 0xff, 0xda, 0xcb, 0x87, 0xff, 0xda, 0xcb, 0x8a, 0xff, 0xda, 0xcb, 0x89, 0xff, 0xdc, 0xcb, 0x8a, 0xff, 0xdb, 0xcc, 0x8a, 0xff, 0xd9, 0xca, 0x86, 0xff, 0xd9, 0xc9, 0x84, 0xff, 0xd8, 0xc9, 0x82, 0xff, 0xd9, 0xcb, 0x80, 0xff, 0xd7, 0xc9, 0x7c, 0xff, 0xd8, 0xcb, 0x7d, 0xff, 0xde, 0xc6, 0x7b, 0xff, 0xe0, 0xc6, 0x7b, 0xff, 0xe1, 0xc4, 0x7f, 0xff, 0xe2, 0xbc, 0x82, 0xff, 0xe2, 0xb5, 0x83, 0xff, 0xe0, 0xb1, 0x83, 0xff, 0xe2, 0xbb, 0x87, 0xff, 0xe2, 0xc0, 0x87, 0xff, 0xe2, 0xbf, 0x86, 0xff, 0xe0, 0xbd, 0x81, 0xff, 0xe2, 0xba, 0x7a, 0xff, 0xe2, 0xb9, 0x75, 0xff, 0xe2, 0xb9, 0x71, 0xff, 0xe2, 0xb5, 0x6c, 0xff, 0xe0, 0xa7, 0x68, 0xff, 0xdd, 0xb0, 0x68, 0xff, 0xdf, 0xb1, 0x66, 0xff, 0xdd, 0xae, 0x65, 0xff, 0xe0, 0xab, 0x5f, 0xff, 0xd1, 0x9b, 0x58, 0xff, 0xa6, 0x6e, 0x3e, 0xff, 0xa1, 0x66, 0x38, 0xff, 0xa2, 0x68, 0x37, 0xff, 0xa3, 0x66, 0x37, 0xff, 0xa2, 0x67, 0x37, 0xff, 0xa0, 0x66, 0x37, 0xff, 0xa0, 0x65, 0x37, 0xff, 0x9f, 0x63, 0x35, 0xff, 0x9e, 0x61, 0x36, 0xff, 0xa2, 0x64, 0x3a, 0xff, 0xa4, 0x68, 0x3b, 0xff, 0xa4, 0x68, 0x3b, 0xff, 0xa3, 0x67, 0x3a, 0xff, 0x9e, 0x61, 0x35, 0xff, 0x9b, 0x60, 0x34, 0xff, 0x9a, 0x5e, 0x34, 0xff, 0x97, 0x5c, 0x31, 0xff, 0x94, 0x59, 0x2e, 0xff, 0x95, 0x5a, 0x30, 0xff, 0x96, 0x5c, 0x31, 0xff, 0x97, 0x5c, 0x31, 0xff, 0x98, 0x5c, 0x30, 0xff, 0x97, 0x59, 0x2e, 0xff, 0x97, 0x59, 0x2e, 0xff, 0x98, 0x5a, 0x2e, 0xff, 0x96, 0x59, 0x2e, 0xff, 0x96, 0x5b, 0x2e, 0xff, 0x94, 0x59, 0x2e, 0xff, 0x95, 0x5a, 0x2f, 0xff, 0x95, 0x59, 0x31, 0xff, 0x91, 0x55, 0x2e, 0xff, 0x8b, 0x50, 0x2e, 0xff, 0x95, 0x58, 0x34, 0xff, 0x95, 0x59, 0x34, 0xff, 0x93, 0x56, 0x33, 0xff, 0x92, 0x55, 0x32, 0xff, 0x91, 0x55, 0x32, 0xff, 0x91, 0x55, 0x32, 0xff, 0x92, 0x55, 0x32, 0xff, 0x91, 0x54, 0x31, 0xff, 0x91, 0x54, 0x31, 0xff, 0x90, 0x53, 0x31, 0xff, 0x90, 0x54, 0x31, 0xff, 0x8f, 0x54, 0x31, 0xff, 0x90, 0x54, 0x31, 0xff, + 0x8d, 0x51, 0x2f, 0xff, 0x8d, 0x50, 0x2e, 0xff, 0x8d, 0x51, 0x2f, 0xff, 0x8d, 0x50, 0x2f, 0xff, 0x8e, 0x51, 0x2f, 0xff, 0x8e, 0x52, 0x2f, 0xff, 0x8e, 0x51, 0x2f, 0xff, 0x8e, 0x52, 0x2f, 0xff, 0x91, 0x52, 0x30, 0xff, 0x91, 0x54, 0x30, 0xff, 0x92, 0x55, 0x31, 0xff, 0x94, 0x56, 0x32, 0xff, 0x95, 0x57, 0x32, 0xff, 0x96, 0x58, 0x32, 0xff, 0x97, 0x58, 0x32, 0xff, 0x98, 0x59, 0x32, 0xff, 0x9a, 0x5a, 0x33, 0xff, 0x9b, 0x5b, 0x33, 0xff, 0x9f, 0x60, 0x34, 0xff, 0xa4, 0x64, 0x38, 0xff, 0xa8, 0x69, 0x3a, 0xff, 0xab, 0x70, 0x3d, 0xff, 0xaf, 0x74, 0x43, 0xff, 0xb2, 0x76, 0x46, 0xff, 0xb4, 0x77, 0x48, 0xff, 0xb6, 0x7b, 0x49, 0xff, 0xb9, 0x7c, 0x46, 0xff, 0xbc, 0x7c, 0x46, 0xff, 0xbf, 0x80, 0x49, 0xff, 0xc5, 0x82, 0x4a, 0xff, 0xc9, 0x85, 0x4d, 0xff, 0xc6, 0x83, 0x4d, 0xff, 0xc6, 0x84, 0x4d, 0xff, 0xcd, 0x88, 0x4f, 0xff, 0xd3, 0x8c, 0x52, 0xff, 0xd7, 0x8e, 0x55, 0xff, 0xd8, 0x93, 0x56, 0xff, 0xdd, 0x95, 0x58, 0xff, 0xdf, 0x97, 0x59, 0xff, 0xe1, 0x9d, 0x5d, 0xff, 0xe1, 0x9f, 0x60, 0xff, 0xe2, 0xa1, 0x61, 0xff, 0xe1, 0xa0, 0x5f, 0xff, 0xe0, 0x9f, 0x61, 0xff, 0xe1, 0xa2, 0x61, 0xff, 0xe1, 0xa3, 0x62, 0xff, 0xe2, 0xa2, 0x63, 0xff, 0xe2, 0xa6, 0x65, 0xff, 0xe0, 0xa9, 0x64, 0xff, 0xe0, 0xae, 0x69, 0xff, 0xe2, 0xb4, 0x6d, 0xff, 0xe2, 0xb3, 0x6a, 0xff, 0xe0, 0xb0, 0x64, 0xff, 0xe1, 0xa6, 0x5e, 0xff, 0xde, 0xa4, 0x5b, 0xff, 0xdd, 0xae, 0x65, 0xff, 0xe1, 0xbc, 0x6e, 0xff, 0xe2, 0xb4, 0x6c, 0xff, 0xe1, 0xac, 0x66, 0xff, 0xe2, 0xa9, 0x64, 0xff, 0xe2, 0xa7, 0x63, 0xff, 0xe1, 0xa6, 0x60, 0xff, 0xe1, 0xa3, 0x5b, 0xff, 0xe1, 0xa1, 0x5c, 0xff, 0xe1, 0xa3, 0x5e, 0xff, 0xe0, 0xa3, 0x5e, 0xff, 0xe1, 0xa3, 0x5f, 0xff, 0xdf, 0x9d, 0x5a, 0xff, 0xdf, 0x9a, 0x56, 0xff, 0xdf, 0x9d, 0x56, 0xff, 0xe0, 0xa0, 0x57, 0xff, 0xe0, 0x9f, 0x57, 0xff, 0xdf, 0xa1, 0x59, 0xff, 0xdf, 0x9d, 0x52, 0xff, 0xde, 0x9c, 0x4a, 0xff, 0xdf, 0x9e, 0x4a, 0xff, 0xe2, 0x9c, 0x4c, 0xff, 0xde, 0x99, 0x4c, 0xff, 0xdd, 0x97, 0x4b, 0xff, 0xde, 0x94, 0x48, 0xff, 0xe0, 0x95, 0x46, 0xff, 0xde, 0x96, 0x48, 0xff, 0xcb, 0x8b, 0x49, 0xff, 0xb5, 0x7c, 0x49, 0xff, 0xb8, 0x7f, 0x4d, 0xff, 0xb7, 0x80, 0x4d, 0xff, 0xb6, 0x80, 0x4f, 0xff, 0xb6, 0x7e, 0x4e, 0xff, 0xb5, 0x7c, 0x4c, 0xff, 0xb4, 0x7b, 0x4b, 0xff, 0xb2, 0x78, 0x49, 0xff, 0xaf, 0x77, 0x48, 0xff, 0xaf, 0x75, 0x48, 0xff, 0xae, 0x73, 0x47, 0xff, 0xad, 0x73, 0x46, 0xff, 0xab, 0x72, 0x44, 0xff, 0xa6, 0x6d, 0x42, 0xff, 0xa2, 0x6a, 0x3f, 0xff, 0xa2, 0x6a, 0x3e, 0xff, 0xa1, 0x69, 0x3c, 0xff, 0xa1, 0x69, 0x3b, 0xff, 0xa1, 0x69, 0x3a, 0xff, 0xa0, 0x69, 0x3a, 0xff, 0xa2, 0x6a, 0x3b, 0xff, 0x9c, 0x64, 0x37, 0xff, 0x93, 0x58, 0x33, 0xff, 0x92, 0x58, 0x33, 0xff, 0x93, 0x59, 0x33, 0xff, 0x93, 0x59, 0x33, 0xff, 0x93, 0x5a, 0x33, 0xff, 0x95, 0x5b, 0x33, 0xff, 0x95, 0x5c, 0x33, 0xff, 0x95, 0x5b, 0x33, 0xff, 0x96, 0x5c, 0x32, 0xff, 0x98, 0x5d, 0x32, 0xff, 0x97, 0x5c, 0x33, 0xff, 0x98, 0x5d, 0x33, 0xff, 0x9a, 0x5f, 0x33, 0xff, 0x99, 0x5f, 0x33, 0xff, 0x97, 0x5c, 0x31, 0xff, 0x97, 0x5b, 0x31, 0xff, 0x99, 0x5d, 0x33, 0xff, 0x99, 0x5d, 0x33, 0xff, 0x9b, 0x60, 0x34, 0xff, 0x9d, 0x62, 0x36, 0xff, 0x9e, 0x63, 0x36, 0xff, 0x9e, 0x63, 0x36, 0xff, 0x9f, 0x65, 0x38, 0xff, 0xa1, 0x65, 0x38, 0xff, 0xa3, 0x68, 0x39, 0xff, 0xa4, 0x6a, 0x3a, 0xff, 0xa6, 0x6b, 0x3a, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa9, 0x70, 0x3f, 0xff, 0xaa, 0x71, 0x41, 0xff, 0xac, 0x73, 0x42, 0xff, 0xae, 0x77, 0x45, 0xff, 0xb0, 0x79, 0x46, 0xff, 0xb2, 0x7a, 0x47, 0xff, 0xb3, 0x7b, 0x47, 0xff, 0xb6, 0x7c, 0x47, 0xff, 0xb9, 0x7e, 0x48, 0xff, 0xbb, 0x7f, 0x4a, 0xff, 0xbd, 0x82, 0x49, 0xff, 0xc0, 0x85, 0x4a, 0xff, 0xc5, 0x87, 0x4c, 0xff, 0xca, 0x89, 0x4c, 0xff, 0xd2, 0x8c, 0x4d, 0xff, 0xda, 0x91, 0x4e, 0xff, 0xdf, 0x94, 0x4e, 0xff, 0xe1, 0x9a, 0x54, 0xff, 0xe0, 0xa1, 0x5a, 0xff, 0xdf, 0xa9, 0x5f, 0xff, 0xe2, 0xb7, 0x68, 0xff, 0xdd, 0xc4, 0x6f, 0xff, 0xd9, 0xc9, 0x75, 0xff, 0xd8, 0xcc, 0x7c, 0xff, 0xd6, 0xcb, 0x7f, 0xff, 0xd8, 0xc9, 0x7f, 0xff, 0xd9, 0xcb, 0x82, 0xff, 0xd9, 0xca, 0x83, 0xff, 0xd8, 0xca, 0x80, 0xff, 0xd9, 0xca, 0x80, 0xff, 0xd7, 0xca, 0x7f, 0xff, 0xd6, 0xcb, 0x7a, 0xff, 0xd7, 0xca, 0x7a, 0xff, 0xd6, 0xc9, 0x7a, 0xff, 0xd5, 0xca, 0x79, 0xff, 0xd6, 0xcc, 0x7c, 0xff, 0xdc, 0xcb, 0x7d, 0xff, 0xe0, 0xc3, 0x79, 0xff, 0xe1, 0xbd, 0x7e, 0xff, 0xe1, 0xb8, 0x7d, 0xff, 0xe2, 0xaf, 0x7f, 0xff, 0xe1, 0xaf, 0x7f, 0xff, 0xe2, 0xb6, 0x83, 0xff, 0xe2, 0xbd, 0x86, 0xff, 0xe2, 0xbe, 0x85, 0xff, 0xe1, 0xba, 0x7f, 0xff, 0xe2, 0xba, 0x79, 0xff, 0xe1, 0xb9, 0x73, 0xff, 0xe2, 0xb7, 0x6e, 0xff, 0xe2, 0xb1, 0x6b, 0xff, 0xdf, 0xa7, 0x65, 0xff, 0xde, 0xa9, 0x63, 0xff, 0xde, 0xaa, 0x5f, 0xff, 0xe0, 0xa7, 0x60, 0xff, 0xce, 0x97, 0x56, 0xff, 0xa4, 0x6c, 0x3e, 0xff, 0xa1, 0x67, 0x37, 0xff, 0xa3, 0x68, 0x38, 0xff, 0xa3, 0x67, 0x37, 0xff, 0xa2, 0x67, 0x36, 0xff, 0xa3, 0x67, 0x37, 0xff, 0xa3, 0x68, 0x38, 0xff, 0xa4, 0x68, 0x38, 0xff, 0xa2, 0x65, 0x39, 0xff, 0x9e, 0x63, 0x38, 0xff, 0x9e, 0x62, 0x37, 0xff, 0x9e, 0x62, 0x38, 0xff, 0xa0, 0x63, 0x37, 0xff, 0x9c, 0x60, 0x33, 0xff, 0x98, 0x5c, 0x32, 0xff, 0x98, 0x5c, 0x33, 0xff, 0x98, 0x5d, 0x32, 0xff, 0x98, 0x5d, 0x32, 0xff, 0x98, 0x5d, 0x32, 0xff, 0x98, 0x5d, 0x32, 0xff, 0x98, 0x5e, 0x31, 0xff, 0x97, 0x5c, 0x30, 0xff, 0x97, 0x5c, 0x30, 0xff, 0x97, 0x5a, 0x2f, 0xff, 0x97, 0x5a, 0x2e, 0xff, 0x97, 0x59, 0x2e, 0xff, 0x95, 0x59, 0x2d, 0xff, 0x96, 0x59, 0x2f, 0xff, 0x95, 0x5a, 0x2f, 0xff, 0x93, 0x57, 0x31, 0xff, 0x91, 0x55, 0x32, 0xff, 0x95, 0x59, 0x34, 0xff, 0x93, 0x57, 0x33, 0xff, 0x94, 0x58, 0x33, 0xff, 0x92, 0x56, 0x32, 0xff, 0x90, 0x54, 0x31, 0xff, 0x8f, 0x54, 0x31, 0xff, 0x90, 0x54, 0x31, 0xff, 0x8f, 0x53, 0x30, 0xff, 0x8f, 0x53, 0x31, 0xff, 0x8e, 0x53, 0x31, 0xff, 0x8f, 0x53, 0x30, 0xff, 0x8e, 0x52, 0x30, 0xff, 0x8e, 0x52, 0x30, 0xff, 0x8e, 0x51, 0x30, 0xff, + 0x8d, 0x51, 0x2e, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x8c, 0x50, 0x2d, 0xff, 0x8c, 0x4f, 0x2d, 0xff, 0x8c, 0x51, 0x2e, 0xff, 0x8d, 0x50, 0x2d, 0xff, 0x8e, 0x51, 0x2e, 0xff, 0x8e, 0x52, 0x2f, 0xff, 0x90, 0x52, 0x2f, 0xff, 0x91, 0x53, 0x30, 0xff, 0x92, 0x55, 0x31, 0xff, 0x93, 0x55, 0x30, 0xff, 0x92, 0x55, 0x30, 0xff, 0x93, 0x56, 0x31, 0xff, 0x96, 0x58, 0x31, 0xff, 0x97, 0x59, 0x32, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x9d, 0x5e, 0x33, 0xff, 0xa0, 0x60, 0x35, 0xff, 0xa2, 0x63, 0x36, 0xff, 0xa5, 0x67, 0x39, 0xff, 0xab, 0x6e, 0x3b, 0xff, 0xae, 0x72, 0x3f, 0xff, 0xb0, 0x75, 0x42, 0xff, 0xb3, 0x77, 0x45, 0xff, 0xb6, 0x7a, 0x47, 0xff, 0xb8, 0x7b, 0x46, 0xff, 0xb9, 0x7b, 0x45, 0xff, 0xbd, 0x7d, 0x46, 0xff, 0xc2, 0x80, 0x49, 0xff, 0xc8, 0x84, 0x4b, 0xff, 0xca, 0x87, 0x4e, 0xff, 0xc5, 0x84, 0x4d, 0xff, 0xcc, 0x88, 0x4f, 0xff, 0xd3, 0x8d, 0x52, 0xff, 0xd6, 0x90, 0x55, 0xff, 0xd9, 0x95, 0x57, 0xff, 0xdd, 0x96, 0x59, 0xff, 0xe1, 0x99, 0x5b, 0xff, 0xe2, 0x9d, 0x5f, 0xff, 0xe2, 0xa2, 0x61, 0xff, 0xe2, 0xa3, 0x62, 0xff, 0xe2, 0xa3, 0x63, 0xff, 0xe1, 0xa4, 0x62, 0xff, 0xe1, 0xa1, 0x61, 0xff, 0xe1, 0xa2, 0x62, 0xff, 0xe2, 0xa3, 0x61, 0xff, 0xe2, 0xa5, 0x63, 0xff, 0xe2, 0xa8, 0x64, 0xff, 0xe1, 0xab, 0x68, 0xff, 0xe1, 0xb0, 0x6a, 0xff, 0xe1, 0xb5, 0x68, 0xff, 0xe1, 0xb1, 0x64, 0xff, 0xe1, 0xad, 0x61, 0xff, 0xe1, 0xa5, 0x5b, 0xff, 0xe1, 0xa3, 0x5b, 0xff, 0xe1, 0xa5, 0x5f, 0xff, 0xdf, 0xae, 0x67, 0xff, 0xe1, 0xb2, 0x6b, 0xff, 0xe2, 0xad, 0x68, 0xff, 0xe1, 0xa9, 0x62, 0xff, 0xe0, 0xa8, 0x5e, 0xff, 0xe1, 0xa3, 0x5d, 0xff, 0xe1, 0xa3, 0x5d, 0xff, 0xe2, 0xa3, 0x5e, 0xff, 0xe1, 0xa3, 0x5f, 0xff, 0xe0, 0xa5, 0x61, 0xff, 0xe1, 0xa5, 0x62, 0xff, 0xdf, 0x9f, 0x5b, 0xff, 0xe0, 0x9b, 0x54, 0xff, 0xe0, 0x9c, 0x55, 0xff, 0xe1, 0x9e, 0x56, 0xff, 0xe0, 0x9e, 0x57, 0xff, 0xdf, 0x9e, 0x53, 0xff, 0xdf, 0x9d, 0x4d, 0xff, 0xdf, 0x9b, 0x4e, 0xff, 0xe0, 0x9a, 0x4c, 0xff, 0xdf, 0x98, 0x4b, 0xff, 0xde, 0x97, 0x4b, 0xff, 0xde, 0x97, 0x4a, 0xff, 0xe0, 0x95, 0x49, 0xff, 0xda, 0x92, 0x49, 0xff, 0xc0, 0x84, 0x48, 0xff, 0xbb, 0x82, 0x4e, 0xff, 0xbb, 0x83, 0x52, 0xff, 0xba, 0x82, 0x55, 0xff, 0xb9, 0x81, 0x55, 0xff, 0xb9, 0x81, 0x55, 0xff, 0xb8, 0x80, 0x53, 0xff, 0xb7, 0x7f, 0x51, 0xff, 0xb5, 0x7d, 0x4f, 0xff, 0xb3, 0x7b, 0x4d, 0xff, 0xb2, 0x79, 0x4c, 0xff, 0xb1, 0x79, 0x4a, 0xff, 0xaa, 0x72, 0x45, 0xff, 0xa3, 0x6c, 0x41, 0xff, 0xa1, 0x6a, 0x40, 0xff, 0xa1, 0x6a, 0x3d, 0xff, 0xa1, 0x6a, 0x3b, 0xff, 0xa1, 0x69, 0x3b, 0xff, 0xa1, 0x69, 0x3b, 0xff, 0xa1, 0x6a, 0x3a, 0xff, 0xa2, 0x6b, 0x3b, 0xff, 0x9e, 0x66, 0x3a, 0xff, 0x94, 0x5b, 0x34, 0xff, 0x92, 0x58, 0x33, 0xff, 0x93, 0x57, 0x33, 0xff, 0x92, 0x57, 0x33, 0xff, 0x92, 0x59, 0x33, 0xff, 0x93, 0x59, 0x33, 0xff, 0x93, 0x5a, 0x33, 0xff, 0x94, 0x59, 0x33, 0xff, 0x94, 0x5a, 0x32, 0xff, 0x95, 0x5a, 0x32, 0xff, 0x95, 0x5b, 0x32, 0xff, 0x96, 0x5d, 0x33, 0xff, 0x98, 0x5d, 0x33, 0xff, 0x97, 0x5c, 0x32, 0xff, 0x94, 0x59, 0x31, 0xff, 0x95, 0x58, 0x31, 0xff, 0x96, 0x5a, 0x32, 0xff, 0x96, 0x5c, 0x32, 0xff, 0x97, 0x5c, 0x32, 0xff, 0x99, 0x5e, 0x34, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0x9c, 0x61, 0x36, 0xff, 0x9e, 0x63, 0x36, 0xff, 0x9e, 0x63, 0x36, 0xff, 0xa0, 0x65, 0x38, 0xff, 0xa1, 0x67, 0x38, 0xff, 0xa2, 0x68, 0x39, 0xff, 0xa4, 0x6a, 0x3b, 0xff, 0xa5, 0x6b, 0x3c, 0xff, 0xa6, 0x6c, 0x3d, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa9, 0x70, 0x3f, 0xff, 0xab, 0x72, 0x41, 0xff, 0xac, 0x72, 0x42, 0xff, 0xad, 0x75, 0x43, 0xff, 0xaf, 0x77, 0x44, 0xff, 0xb1, 0x78, 0x45, 0xff, 0xb3, 0x79, 0x46, 0xff, 0xb5, 0x7b, 0x46, 0xff, 0xb8, 0x7e, 0x46, 0xff, 0xba, 0x80, 0x49, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xc0, 0x83, 0x4a, 0xff, 0xc4, 0x86, 0x4a, 0xff, 0xc9, 0x89, 0x4b, 0xff, 0xd0, 0x8a, 0x4a, 0xff, 0xd8, 0x8d, 0x4a, 0xff, 0xde, 0x92, 0x4c, 0xff, 0xe0, 0x98, 0x53, 0xff, 0xdf, 0xa0, 0x58, 0xff, 0xdf, 0xa7, 0x5f, 0xff, 0xe0, 0xb0, 0x65, 0xff, 0xe0, 0xbd, 0x6a, 0xff, 0xdb, 0xc8, 0x70, 0xff, 0xdb, 0xcc, 0x75, 0xff, 0xda, 0xcc, 0x7a, 0xff, 0xd8, 0xcb, 0x7a, 0xff, 0xd7, 0xcb, 0x7b, 0xff, 0xd6, 0xca, 0x7b, 0xff, 0xd7, 0xca, 0x79, 0xff, 0xd5, 0xca, 0x7b, 0xff, 0xd6, 0xcb, 0x7a, 0xff, 0xd6, 0xca, 0x78, 0xff, 0xd5, 0xca, 0x77, 0xff, 0xd4, 0xca, 0x76, 0xff, 0xd6, 0xca, 0x78, 0xff, 0xdb, 0xca, 0x78, 0xff, 0xe0, 0xc7, 0x78, 0xff, 0xe0, 0xbf, 0x77, 0xff, 0xe2, 0xbb, 0x78, 0xff, 0xe2, 0xaf, 0x7a, 0xff, 0xe1, 0xad, 0x7b, 0xff, 0xe1, 0xae, 0x7e, 0xff, 0xe1, 0xb1, 0x80, 0xff, 0xe1, 0xb8, 0x81, 0xff, 0xe1, 0xbc, 0x7f, 0xff, 0xe2, 0xbb, 0x7a, 0xff, 0xe2, 0xba, 0x74, 0xff, 0xe2, 0xb9, 0x6f, 0xff, 0xe1, 0xb4, 0x6d, 0xff, 0xdf, 0xa7, 0x65, 0xff, 0xdf, 0xa8, 0x64, 0xff, 0xdf, 0xa5, 0x60, 0xff, 0xe0, 0xa4, 0x5c, 0xff, 0xcd, 0x95, 0x53, 0xff, 0xa3, 0x6a, 0x3b, 0xff, 0xa2, 0x67, 0x38, 0xff, 0xa2, 0x67, 0x38, 0xff, 0xa2, 0x67, 0x37, 0xff, 0xa3, 0x67, 0x37, 0xff, 0xa2, 0x67, 0x36, 0xff, 0xa2, 0x67, 0x36, 0xff, 0xa2, 0x68, 0x39, 0xff, 0xa2, 0x69, 0x3a, 0xff, 0x9e, 0x64, 0x38, 0xff, 0x9f, 0x63, 0x38, 0xff, 0xa0, 0x63, 0x38, 0xff, 0xa0, 0x63, 0x37, 0xff, 0x9f, 0x64, 0x37, 0xff, 0x9a, 0x5f, 0x34, 0xff, 0x98, 0x5e, 0x32, 0xff, 0x98, 0x5e, 0x32, 0xff, 0x99, 0x5e, 0x32, 0xff, 0x98, 0x5e, 0x32, 0xff, 0x98, 0x5e, 0x32, 0xff, 0x98, 0x5e, 0x32, 0xff, 0x99, 0x5d, 0x31, 0xff, 0x97, 0x5b, 0x30, 0xff, 0x98, 0x5c, 0x2f, 0xff, 0x98, 0x5a, 0x2e, 0xff, 0x96, 0x59, 0x2d, 0xff, 0x97, 0x5a, 0x2e, 0xff, 0x96, 0x5a, 0x2f, 0xff, 0x93, 0x57, 0x31, 0xff, 0x8f, 0x54, 0x32, 0xff, 0x92, 0x57, 0x33, 0xff, 0x92, 0x56, 0x32, 0xff, 0x92, 0x55, 0x32, 0xff, 0x92, 0x56, 0x32, 0xff, 0x91, 0x56, 0x32, 0xff, 0x91, 0x56, 0x33, 0xff, 0x90, 0x54, 0x32, 0xff, 0x8f, 0x53, 0x30, 0xff, 0x8e, 0x51, 0x2f, 0xff, 0x8e, 0x52, 0x2f, 0xff, 0x8e, 0x51, 0x30, 0xff, 0x8d, 0x51, 0x2f, 0xff, 0x8d, 0x51, 0x2e, 0xff, 0x8e, 0x51, 0x2e, 0xff, 0x8e, 0x51, 0x2f, 0xff, + 0x8c, 0x4f, 0x2c, 0xff, 0x8b, 0x4f, 0x2a, 0xff, 0x8b, 0x4f, 0x2a, 0xff, 0x8b, 0x4f, 0x2a, 0xff, 0x8c, 0x4f, 0x2d, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x8c, 0x50, 0x2c, 0xff, 0x8e, 0x51, 0x2e, 0xff, 0x8e, 0x51, 0x2e, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x90, 0x52, 0x2f, 0xff, 0x91, 0x53, 0x30, 0xff, 0x93, 0x55, 0x30, 0xff, 0x95, 0x57, 0x30, 0xff, 0x97, 0x58, 0x31, 0xff, 0x99, 0x59, 0x32, 0xff, 0x9a, 0x5c, 0x32, 0xff, 0x9e, 0x5e, 0x33, 0xff, 0xa0, 0x63, 0x35, 0xff, 0xa4, 0x66, 0x38, 0xff, 0xa8, 0x6a, 0x3b, 0xff, 0xad, 0x6e, 0x3e, 0xff, 0xae, 0x70, 0x3e, 0xff, 0xb0, 0x74, 0x41, 0xff, 0xb4, 0x78, 0x43, 0xff, 0xb7, 0x78, 0x44, 0xff, 0xb8, 0x79, 0x44, 0xff, 0xbb, 0x7b, 0x44, 0xff, 0xbf, 0x7c, 0x47, 0xff, 0xc5, 0x82, 0x4a, 0xff, 0xc7, 0x85, 0x4d, 0xff, 0xc9, 0x87, 0x4d, 0xff, 0xcb, 0x87, 0x4d, 0xff, 0xd1, 0x8d, 0x51, 0xff, 0xd5, 0x91, 0x54, 0xff, 0xd7, 0x95, 0x59, 0xff, 0xdc, 0x97, 0x5a, 0xff, 0xe1, 0x9d, 0x5d, 0xff, 0xe2, 0x9f, 0x5e, 0xff, 0xe1, 0xa1, 0x61, 0xff, 0xe1, 0xa3, 0x62, 0xff, 0xe2, 0xa4, 0x65, 0xff, 0xe2, 0xa7, 0x65, 0xff, 0xe1, 0xa6, 0x63, 0xff, 0xe2, 0xa5, 0x64, 0xff, 0xe2, 0xa5, 0x62, 0xff, 0xe2, 0xa6, 0x64, 0xff, 0xe2, 0xa7, 0x63, 0xff, 0xe2, 0xaa, 0x65, 0xff, 0xe0, 0xad, 0x67, 0xff, 0xe2, 0xb8, 0x6a, 0xff, 0xe1, 0xb5, 0x67, 0xff, 0xe1, 0xaf, 0x62, 0xff, 0xe1, 0xaa, 0x60, 0xff, 0xe0, 0xa2, 0x59, 0xff, 0xe1, 0xa3, 0x5b, 0xff, 0xe1, 0xa5, 0x5d, 0xff, 0xde, 0xa5, 0x5d, 0xff, 0xdd, 0xae, 0x64, 0xff, 0xe2, 0xb3, 0x67, 0xff, 0xe1, 0xad, 0x63, 0xff, 0xdf, 0xa4, 0x61, 0xff, 0xdf, 0xa5, 0x62, 0xff, 0xdf, 0xa4, 0x61, 0xff, 0xe1, 0xa6, 0x62, 0xff, 0xe1, 0xa6, 0x62, 0xff, 0xe0, 0xa2, 0x60, 0xff, 0xe1, 0xa0, 0x5f, 0xff, 0xe1, 0x9c, 0x5c, 0xff, 0xe0, 0x95, 0x54, 0xff, 0xe1, 0x96, 0x56, 0xff, 0xe1, 0x98, 0x58, 0xff, 0xe1, 0x99, 0x53, 0xff, 0xe1, 0x98, 0x4c, 0xff, 0xdd, 0x99, 0x4b, 0xff, 0xde, 0x98, 0x4c, 0xff, 0xdf, 0x98, 0x4c, 0xff, 0xdf, 0x99, 0x4c, 0xff, 0xe0, 0x9a, 0x4c, 0xff, 0xdf, 0x99, 0x4a, 0xff, 0xcf, 0x8f, 0x4c, 0xff, 0xbf, 0x82, 0x4c, 0xff, 0xbe, 0x83, 0x4d, 0xff, 0xbe, 0x85, 0x52, 0xff, 0xbe, 0x86, 0x56, 0xff, 0xbd, 0x85, 0x56, 0xff, 0xbb, 0x83, 0x56, 0xff, 0xbb, 0x83, 0x57, 0xff, 0xba, 0x82, 0x54, 0xff, 0xb8, 0x80, 0x51, 0xff, 0xb8, 0x7f, 0x51, 0xff, 0xb0, 0x78, 0x4c, 0xff, 0xa3, 0x6c, 0x43, 0xff, 0xa1, 0x6b, 0x40, 0xff, 0xa1, 0x69, 0x3d, 0xff, 0xa1, 0x69, 0x3c, 0xff, 0xa0, 0x69, 0x3b, 0xff, 0xa1, 0x68, 0x3b, 0xff, 0xa1, 0x69, 0x3a, 0xff, 0xa2, 0x6a, 0x3b, 0xff, 0xa1, 0x67, 0x3b, 0xff, 0xa0, 0x66, 0x3a, 0xff, 0x98, 0x5f, 0x36, 0xff, 0x92, 0x58, 0x33, 0xff, 0x93, 0x59, 0x33, 0xff, 0x93, 0x59, 0x33, 0xff, 0x92, 0x58, 0x33, 0xff, 0x92, 0x57, 0x32, 0xff, 0x92, 0x58, 0x33, 0xff, 0x93, 0x59, 0x32, 0xff, 0x92, 0x58, 0x31, 0xff, 0x93, 0x58, 0x31, 0xff, 0x96, 0x5a, 0x31, 0xff, 0x96, 0x5c, 0x32, 0xff, 0x96, 0x5c, 0x33, 0xff, 0x94, 0x5a, 0x32, 0xff, 0x91, 0x57, 0x30, 0xff, 0x92, 0x57, 0x30, 0xff, 0x94, 0x59, 0x31, 0xff, 0x95, 0x5a, 0x30, 0xff, 0x95, 0x59, 0x31, 0xff, 0x97, 0x5b, 0x32, 0xff, 0x98, 0x5d, 0x32, 0xff, 0x99, 0x5e, 0x33, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0x9c, 0x61, 0x35, 0xff, 0x9d, 0x62, 0x35, 0xff, 0x9f, 0x63, 0x37, 0xff, 0xa0, 0x66, 0x39, 0xff, 0xa1, 0x67, 0x39, 0xff, 0xa1, 0x68, 0x3a, 0xff, 0xa3, 0x69, 0x3b, 0xff, 0xa5, 0x6a, 0x3c, 0xff, 0xa6, 0x6b, 0x3d, 0xff, 0xa7, 0x6f, 0x3e, 0xff, 0xa9, 0x6f, 0x3f, 0xff, 0xaa, 0x70, 0x40, 0xff, 0xac, 0x73, 0x41, 0xff, 0xad, 0x74, 0x43, 0xff, 0xaf, 0x76, 0x45, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb2, 0x78, 0x44, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xb7, 0x7c, 0x44, 0xff, 0xb9, 0x7d, 0x45, 0xff, 0xba, 0x7d, 0x45, 0xff, 0xbf, 0x82, 0x48, 0xff, 0xc2, 0x83, 0x4a, 0xff, 0xc7, 0x85, 0x49, 0xff, 0xce, 0x8a, 0x47, 0xff, 0xd6, 0x8c, 0x48, 0xff, 0xdd, 0x91, 0x4b, 0xff, 0xe2, 0x99, 0x53, 0xff, 0xdf, 0x9d, 0x56, 0xff, 0xdf, 0xa4, 0x5c, 0xff, 0xdf, 0xac, 0x63, 0xff, 0xdf, 0xb3, 0x66, 0xff, 0xe1, 0xbd, 0x6a, 0xff, 0xe0, 0xc9, 0x71, 0xff, 0xdd, 0xcd, 0x77, 0xff, 0xda, 0xc9, 0x77, 0xff, 0xd8, 0xc9, 0x77, 0xff, 0xd6, 0xc8, 0x76, 0xff, 0xd7, 0xca, 0x74, 0xff, 0xd9, 0xc7, 0x71, 0xff, 0xd8, 0xc8, 0x72, 0xff, 0xd6, 0xc9, 0x70, 0xff, 0xd6, 0xc9, 0x72, 0xff, 0xd9, 0xca, 0x71, 0xff, 0xdb, 0xc9, 0x74, 0xff, 0xde, 0xc8, 0x76, 0xff, 0xe1, 0xc4, 0x75, 0xff, 0xe1, 0xbc, 0x75, 0xff, 0xe0, 0xb2, 0x75, 0xff, 0xe0, 0xae, 0x77, 0xff, 0xe2, 0xad, 0x78, 0xff, 0xe1, 0xae, 0x78, 0xff, 0xe2, 0xad, 0x76, 0xff, 0xe1, 0xb5, 0x78, 0xff, 0xe2, 0xba, 0x78, 0xff, 0xe2, 0xbb, 0x74, 0xff, 0xe2, 0xb9, 0x70, 0xff, 0xe2, 0xb7, 0x6b, 0xff, 0xe1, 0xa9, 0x68, 0xff, 0xde, 0xa8, 0x63, 0xff, 0xe1, 0xa8, 0x60, 0xff, 0xe0, 0xa5, 0x5c, 0xff, 0xc8, 0x91, 0x52, 0xff, 0xa2, 0x66, 0x39, 0xff, 0x9f, 0x64, 0x36, 0xff, 0xa3, 0x67, 0x37, 0xff, 0xa2, 0x67, 0x36, 0xff, 0xa2, 0x67, 0x36, 0xff, 0xa3, 0x67, 0x36, 0xff, 0xa3, 0x67, 0x36, 0xff, 0xa4, 0x69, 0x39, 0xff, 0xa2, 0x69, 0x39, 0xff, 0xa0, 0x65, 0x38, 0xff, 0xa0, 0x63, 0x38, 0xff, 0xa1, 0x64, 0x37, 0xff, 0x9f, 0x64, 0x37, 0xff, 0xa1, 0x66, 0x39, 0xff, 0x9f, 0x64, 0x38, 0xff, 0x99, 0x5e, 0x33, 0xff, 0x99, 0x5e, 0x32, 0xff, 0x98, 0x5e, 0x32, 0xff, 0x99, 0x5f, 0x33, 0xff, 0x99, 0x5f, 0x33, 0xff, 0x9a, 0x5f, 0x32, 0xff, 0x99, 0x5e, 0x31, 0xff, 0x99, 0x5d, 0x30, 0xff, 0x99, 0x5d, 0x30, 0xff, 0x96, 0x59, 0x2e, 0xff, 0x97, 0x5b, 0x2d, 0xff, 0x96, 0x59, 0x30, 0xff, 0x92, 0x56, 0x32, 0xff, 0x8f, 0x54, 0x32, 0xff, 0x91, 0x55, 0x32, 0xff, 0x91, 0x55, 0x32, 0xff, 0x91, 0x55, 0x32, 0xff, 0x91, 0x54, 0x31, 0xff, 0x91, 0x56, 0x33, 0xff, 0x91, 0x56, 0x33, 0xff, 0x90, 0x55, 0x32, 0xff, 0x90, 0x54, 0x32, 0xff, 0x8f, 0x53, 0x2f, 0xff, 0x8e, 0x51, 0x2f, 0xff, 0x8d, 0x50, 0x2e, 0xff, 0x8c, 0x51, 0x2d, 0xff, 0x8b, 0x50, 0x2c, 0xff, 0x8b, 0x4f, 0x2c, 0xff, 0x8b, 0x4f, 0x2c, 0xff, 0x8c, 0x4f, 0x2c, 0xff, + 0x89, 0x4e, 0x2a, 0xff, 0x8a, 0x4e, 0x2a, 0xff, 0x8a, 0x4e, 0x2a, 0xff, 0x8a, 0x4e, 0x2a, 0xff, 0x89, 0x4e, 0x2a, 0xff, 0x8b, 0x4e, 0x2b, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x8c, 0x50, 0x2c, 0xff, 0x8e, 0x50, 0x2e, 0xff, 0x8d, 0x51, 0x2d, 0xff, 0x8e, 0x51, 0x2d, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x91, 0x53, 0x2e, 0xff, 0x92, 0x54, 0x2e, 0xff, 0x94, 0x56, 0x30, 0xff, 0x96, 0x58, 0x30, 0xff, 0x97, 0x58, 0x31, 0xff, 0x99, 0x59, 0x31, 0xff, 0x9d, 0x5d, 0x33, 0xff, 0xa0, 0x61, 0x34, 0xff, 0xa2, 0x64, 0x37, 0xff, 0xa4, 0x65, 0x38, 0xff, 0xa8, 0x6a, 0x3b, 0xff, 0xad, 0x6f, 0x3c, 0xff, 0xaf, 0x70, 0x3c, 0xff, 0xb1, 0x72, 0x3e, 0xff, 0xb4, 0x75, 0x40, 0xff, 0xb6, 0x78, 0x41, 0xff, 0xb9, 0x78, 0x42, 0xff, 0xbb, 0x7b, 0x44, 0xff, 0xc1, 0x7e, 0x45, 0xff, 0xc5, 0x83, 0x4a, 0xff, 0xca, 0x87, 0x4e, 0xff, 0xca, 0x87, 0x4d, 0xff, 0xd0, 0x8c, 0x51, 0xff, 0xd4, 0x91, 0x57, 0xff, 0xd8, 0x96, 0x59, 0xff, 0xdb, 0x98, 0x5c, 0xff, 0xdf, 0x9c, 0x5e, 0xff, 0xe2, 0xa1, 0x61, 0xff, 0xe2, 0xa1, 0x62, 0xff, 0xe2, 0xa2, 0x64, 0xff, 0xe2, 0xa3, 0x67, 0xff, 0xe1, 0xa6, 0x69, 0xff, 0xe1, 0xa8, 0x69, 0xff, 0xe2, 0xa6, 0x68, 0xff, 0xe2, 0xa7, 0x66, 0xff, 0xe2, 0xa7, 0x65, 0xff, 0xe2, 0xa6, 0x64, 0xff, 0xe2, 0xaa, 0x65, 0xff, 0xe2, 0xae, 0x67, 0xff, 0xe1, 0xb2, 0x6a, 0xff, 0xe2, 0xb9, 0x6c, 0xff, 0xe2, 0xb6, 0x68, 0xff, 0xe0, 0xaa, 0x5f, 0xff, 0xe0, 0xa6, 0x5f, 0xff, 0xdf, 0xa1, 0x5b, 0xff, 0xe1, 0xa2, 0x5a, 0xff, 0xe0, 0xa2, 0x55, 0xff, 0xe0, 0xa3, 0x53, 0xff, 0xe0, 0xa2, 0x56, 0xff, 0xde, 0xa3, 0x5e, 0xff, 0xdf, 0xa3, 0x62, 0xff, 0xe0, 0xa4, 0x62, 0xff, 0xdf, 0xa2, 0x62, 0xff, 0xe1, 0xa0, 0x60, 0xff, 0xe1, 0x9f, 0x5d, 0xff, 0xe1, 0xa0, 0x5e, 0xff, 0xe1, 0xa1, 0x5f, 0xff, 0xe1, 0x9f, 0x5d, 0xff, 0xe1, 0x99, 0x59, 0xff, 0xe1, 0x98, 0x58, 0xff, 0xe2, 0x98, 0x58, 0xff, 0xdf, 0x99, 0x56, 0xff, 0xde, 0x98, 0x50, 0xff, 0xdf, 0x97, 0x4f, 0xff, 0xe0, 0x97, 0x4e, 0xff, 0xe0, 0x96, 0x4d, 0xff, 0xdf, 0x97, 0x4c, 0xff, 0xde, 0x98, 0x4d, 0xff, 0xdc, 0x97, 0x4f, 0xff, 0xcd, 0x8b, 0x4d, 0xff, 0xc3, 0x83, 0x4d, 0xff, 0xc2, 0x85, 0x4d, 0xff, 0xc2, 0x86, 0x51, 0xff, 0xc0, 0x87, 0x52, 0xff, 0xbf, 0x87, 0x54, 0xff, 0xbf, 0x86, 0x55, 0xff, 0xbd, 0x85, 0x52, 0xff, 0xbd, 0x83, 0x53, 0xff, 0xb6, 0x7c, 0x4f, 0xff, 0xa7, 0x6f, 0x42, 0xff, 0xa3, 0x6b, 0x40, 0xff, 0xa2, 0x6c, 0x40, 0xff, 0xa1, 0x6a, 0x3d, 0xff, 0xa1, 0x6a, 0x3b, 0xff, 0xa1, 0x6a, 0x3b, 0xff, 0xa1, 0x68, 0x3c, 0xff, 0xa1, 0x69, 0x3b, 0xff, 0xa1, 0x6a, 0x3b, 0xff, 0xa1, 0x6a, 0x3b, 0xff, 0xa0, 0x6a, 0x3b, 0xff, 0x99, 0x62, 0x37, 0xff, 0x92, 0x59, 0x33, 0xff, 0x93, 0x59, 0x33, 0xff, 0x93, 0x59, 0x33, 0xff, 0x92, 0x59, 0x34, 0xff, 0x92, 0x58, 0x34, 0xff, 0x92, 0x58, 0x33, 0xff, 0x91, 0x58, 0x32, 0xff, 0x91, 0x57, 0x31, 0xff, 0x92, 0x57, 0x31, 0xff, 0x93, 0x58, 0x31, 0xff, 0x94, 0x5a, 0x32, 0xff, 0x95, 0x5b, 0x32, 0xff, 0x93, 0x58, 0x31, 0xff, 0x8f, 0x54, 0x2f, 0xff, 0x8e, 0x54, 0x2f, 0xff, 0x90, 0x56, 0x30, 0xff, 0x92, 0x58, 0x2f, 0xff, 0x94, 0x59, 0x31, 0xff, 0x94, 0x59, 0x31, 0xff, 0x95, 0x5b, 0x31, 0xff, 0x97, 0x5c, 0x31, 0xff, 0x98, 0x5c, 0x32, 0xff, 0x99, 0x5d, 0x34, 0xff, 0x9b, 0x60, 0x34, 0xff, 0x9c, 0x61, 0x36, 0xff, 0x9d, 0x62, 0x36, 0xff, 0x9f, 0x64, 0x37, 0xff, 0x9f, 0x65, 0x39, 0xff, 0xa1, 0x66, 0x3a, 0xff, 0xa2, 0x68, 0x3b, 0xff, 0xa4, 0x6b, 0x3b, 0xff, 0xa5, 0x6c, 0x3c, 0xff, 0xa6, 0x6c, 0x3e, 0xff, 0xa8, 0x6d, 0x3f, 0xff, 0xa9, 0x70, 0x40, 0xff, 0xa9, 0x71, 0x41, 0xff, 0xac, 0x71, 0x42, 0xff, 0xad, 0x74, 0x42, 0xff, 0xae, 0x76, 0x43, 0xff, 0xb0, 0x76, 0x42, 0xff, 0xb0, 0x77, 0x41, 0xff, 0xb4, 0x79, 0x42, 0xff, 0xb6, 0x7a, 0x42, 0xff, 0xb8, 0x7d, 0x43, 0xff, 0xba, 0x7e, 0x44, 0xff, 0xbd, 0x80, 0x43, 0xff, 0xc0, 0x82, 0x43, 0xff, 0xc5, 0x86, 0x43, 0xff, 0xcd, 0x88, 0x43, 0xff, 0xd2, 0x8b, 0x43, 0xff, 0xda, 0x8f, 0x47, 0xff, 0xdf, 0x97, 0x4f, 0xff, 0xe0, 0x9d, 0x55, 0xff, 0xe0, 0xa4, 0x5b, 0xff, 0xe2, 0xaa, 0x62, 0xff, 0xe0, 0xad, 0x66, 0xff, 0xe0, 0xb8, 0x6b, 0xff, 0xe1, 0xc0, 0x6f, 0xff, 0xe1, 0xc4, 0x70, 0xff, 0xe0, 0xc7, 0x6f, 0xff, 0xde, 0xc8, 0x6f, 0xff, 0xe0, 0xc8, 0x6e, 0xff, 0xde, 0xc8, 0x6d, 0xff, 0xdf, 0xc7, 0x6c, 0xff, 0xdd, 0xc7, 0x6e, 0xff, 0xdc, 0xc9, 0x6c, 0xff, 0xdc, 0xc9, 0x6c, 0xff, 0xdf, 0xc9, 0x6f, 0xff, 0xe2, 0xc7, 0x72, 0xff, 0xe2, 0xc5, 0x73, 0xff, 0xe1, 0xc0, 0x74, 0xff, 0xe1, 0xb5, 0x72, 0xff, 0xe1, 0xb0, 0x70, 0xff, 0xe1, 0xae, 0x6e, 0xff, 0xe1, 0xaf, 0x70, 0xff, 0xe1, 0xad, 0x70, 0xff, 0xe1, 0xad, 0x6f, 0xff, 0xe1, 0xb0, 0x71, 0xff, 0xe0, 0xb6, 0x72, 0xff, 0xe1, 0xb8, 0x71, 0xff, 0xe1, 0xb3, 0x6d, 0xff, 0xdf, 0xab, 0x67, 0xff, 0xe0, 0xa4, 0x63, 0xff, 0xdc, 0xa6, 0x60, 0xff, 0xe2, 0xa6, 0x5d, 0xff, 0xc9, 0x8f, 0x53, 0xff, 0xa1, 0x64, 0x39, 0xff, 0x9e, 0x61, 0x35, 0xff, 0xa2, 0x66, 0x36, 0xff, 0xa2, 0x66, 0x36, 0xff, 0xa2, 0x67, 0x36, 0xff, 0xa2, 0x67, 0x36, 0xff, 0xa2, 0x69, 0x38, 0xff, 0xa2, 0x68, 0x37, 0xff, 0xa2, 0x69, 0x37, 0xff, 0xa2, 0x66, 0x37, 0xff, 0x9f, 0x63, 0x37, 0xff, 0x9f, 0x63, 0x37, 0xff, 0xa1, 0x65, 0x38, 0xff, 0xa0, 0x65, 0x38, 0xff, 0xa0, 0x66, 0x37, 0xff, 0x9c, 0x61, 0x35, 0xff, 0x9a, 0x60, 0x33, 0xff, 0x99, 0x5f, 0x32, 0xff, 0x99, 0x60, 0x33, 0xff, 0x99, 0x5f, 0x33, 0xff, 0x99, 0x5f, 0x33, 0xff, 0x99, 0x5e, 0x31, 0xff, 0x9a, 0x5d, 0x30, 0xff, 0x99, 0x5c, 0x2f, 0xff, 0x97, 0x5c, 0x2e, 0xff, 0x96, 0x59, 0x30, 0xff, 0x92, 0x56, 0x32, 0xff, 0x8f, 0x53, 0x31, 0xff, 0x8f, 0x54, 0x31, 0xff, 0x91, 0x55, 0x32, 0xff, 0x90, 0x54, 0x31, 0xff, 0x8f, 0x55, 0x30, 0xff, 0x90, 0x54, 0x32, 0xff, 0x91, 0x56, 0x33, 0xff, 0x8f, 0x54, 0x32, 0xff, 0x8f, 0x53, 0x31, 0xff, 0x8f, 0x52, 0x30, 0xff, 0x8e, 0x51, 0x2e, 0xff, 0x8d, 0x50, 0x2d, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x8b, 0x50, 0x2c, 0xff, 0x8a, 0x4f, 0x2a, 0xff, 0x8a, 0x4f, 0x2a, 0xff, 0x8a, 0x4d, 0x2a, 0xff, 0x8a, 0x4d, 0x2a, 0xff, + 0x87, 0x4c, 0x28, 0xff, 0x89, 0x4d, 0x2a, 0xff, 0x88, 0x4e, 0x28, 0xff, 0x89, 0x4e, 0x29, 0xff, 0x89, 0x4e, 0x2a, 0xff, 0x8a, 0x4e, 0x2a, 0xff, 0x8b, 0x4f, 0x2a, 0xff, 0x8b, 0x4e, 0x2b, 0xff, 0x8c, 0x4f, 0x2b, 0xff, 0x8c, 0x4f, 0x2b, 0xff, 0x8d, 0x50, 0x2c, 0xff, 0x8e, 0x51, 0x2b, 0xff, 0x8f, 0x51, 0x2d, 0xff, 0x91, 0x53, 0x2e, 0xff, 0x92, 0x54, 0x2f, 0xff, 0x95, 0x56, 0x30, 0xff, 0x95, 0x57, 0x30, 0xff, 0x99, 0x59, 0x31, 0xff, 0x9b, 0x5c, 0x32, 0xff, 0x9f, 0x5f, 0x33, 0xff, 0xa5, 0x65, 0x39, 0xff, 0xa9, 0x6a, 0x3c, 0xff, 0xad, 0x6e, 0x3f, 0xff, 0xaf, 0x71, 0x41, 0xff, 0xb3, 0x75, 0x42, 0xff, 0xb4, 0x75, 0x42, 0xff, 0xb7, 0x78, 0x44, 0xff, 0xbb, 0x79, 0x45, 0xff, 0xbd, 0x7b, 0x46, 0xff, 0xc2, 0x80, 0x49, 0xff, 0xc7, 0x83, 0x4a, 0xff, 0xc9, 0x84, 0x4b, 0xff, 0xc9, 0x86, 0x4d, 0xff, 0xca, 0x87, 0x4e, 0xff, 0xcd, 0x89, 0x4e, 0xff, 0xd4, 0x8f, 0x53, 0xff, 0xd7, 0x96, 0x59, 0xff, 0xdb, 0x99, 0x5e, 0xff, 0xdf, 0x9e, 0x61, 0xff, 0xe1, 0xa3, 0x63, 0xff, 0xe2, 0xa2, 0x66, 0xff, 0xe2, 0xa4, 0x68, 0xff, 0xe1, 0xa3, 0x69, 0xff, 0xe1, 0xa5, 0x6a, 0xff, 0xe3, 0xa8, 0x6b, 0xff, 0xe2, 0xa8, 0x6a, 0xff, 0xe1, 0xa7, 0x6a, 0xff, 0xe2, 0xa9, 0x67, 0xff, 0xe2, 0xa9, 0x65, 0xff, 0xe2, 0xa9, 0x64, 0xff, 0xe2, 0xac, 0x66, 0xff, 0xe0, 0xae, 0x68, 0xff, 0xe2, 0xb5, 0x6c, 0xff, 0xe2, 0xba, 0x6e, 0xff, 0xe1, 0xb4, 0x6a, 0xff, 0xe0, 0xa8, 0x5e, 0xff, 0xe1, 0xa6, 0x59, 0xff, 0xe0, 0xa6, 0x55, 0xff, 0xe1, 0xa7, 0x57, 0xff, 0xe0, 0xa3, 0x55, 0xff, 0xe1, 0xa3, 0x53, 0xff, 0xdf, 0x9b, 0x51, 0xff, 0xdf, 0x9e, 0x57, 0xff, 0xe1, 0x9f, 0x5c, 0xff, 0xe0, 0xa0, 0x5e, 0xff, 0xe1, 0xa1, 0x61, 0xff, 0xe1, 0xa2, 0x61, 0xff, 0xe0, 0xa0, 0x5f, 0xff, 0xe1, 0x9f, 0x5e, 0xff, 0xe2, 0x9f, 0x5f, 0xff, 0xe1, 0x9c, 0x5e, 0xff, 0xe0, 0x98, 0x59, 0xff, 0xe0, 0x98, 0x58, 0xff, 0xe1, 0x98, 0x56, 0xff, 0xe0, 0x99, 0x51, 0xff, 0xdf, 0x99, 0x4f, 0xff, 0xe0, 0x97, 0x50, 0xff, 0xdf, 0x99, 0x4f, 0xff, 0xe0, 0x99, 0x50, 0xff, 0xe1, 0x9a, 0x4f, 0xff, 0xdb, 0x92, 0x4e, 0xff, 0xcd, 0x88, 0x50, 0xff, 0xcc, 0x89, 0x52, 0xff, 0xcc, 0x8a, 0x54, 0xff, 0xca, 0x8b, 0x55, 0xff, 0xc8, 0x8c, 0x56, 0xff, 0xc1, 0x87, 0x53, 0xff, 0xb8, 0x7e, 0x4d, 0xff, 0xb2, 0x79, 0x4a, 0xff, 0xaa, 0x72, 0x44, 0xff, 0xa3, 0x6b, 0x3e, 0xff, 0xa5, 0x6d, 0x41, 0xff, 0xa4, 0x6d, 0x40, 0xff, 0xa3, 0x6c, 0x3f, 0xff, 0xa2, 0x6d, 0x3d, 0xff, 0xa1, 0x6a, 0x3c, 0xff, 0xa1, 0x6a, 0x3c, 0xff, 0xa0, 0x69, 0x3b, 0xff, 0xa0, 0x6a, 0x3b, 0xff, 0xa0, 0x6a, 0x3c, 0xff, 0xa1, 0x6a, 0x3c, 0xff, 0x9f, 0x67, 0x3b, 0xff, 0x95, 0x5d, 0x36, 0xff, 0x92, 0x59, 0x33, 0xff, 0x94, 0x5a, 0x34, 0xff, 0x94, 0x59, 0x34, 0xff, 0x93, 0x59, 0x34, 0xff, 0x93, 0x59, 0x33, 0xff, 0x92, 0x58, 0x33, 0xff, 0x92, 0x57, 0x32, 0xff, 0x91, 0x57, 0x30, 0xff, 0x91, 0x57, 0x31, 0xff, 0x93, 0x59, 0x32, 0xff, 0x93, 0x59, 0x32, 0xff, 0x92, 0x57, 0x31, 0xff, 0x8f, 0x53, 0x2f, 0xff, 0x8e, 0x53, 0x2e, 0xff, 0x8f, 0x54, 0x2d, 0xff, 0x8f, 0x56, 0x2e, 0xff, 0x90, 0x56, 0x2e, 0xff, 0x92, 0x57, 0x2f, 0xff, 0x93, 0x59, 0x30, 0xff, 0x94, 0x58, 0x30, 0xff, 0x96, 0x59, 0x31, 0xff, 0x98, 0x5b, 0x33, 0xff, 0x98, 0x5d, 0x33, 0xff, 0x99, 0x5e, 0x34, 0xff, 0x9a, 0x5f, 0x34, 0xff, 0x9b, 0x61, 0x35, 0xff, 0x9d, 0x63, 0x37, 0xff, 0x9f, 0x64, 0x38, 0xff, 0x9f, 0x64, 0x39, 0xff, 0xa1, 0x66, 0x39, 0xff, 0xa2, 0x69, 0x3b, 0xff, 0xa2, 0x6a, 0x3b, 0xff, 0xa4, 0x6b, 0x3b, 0xff, 0xa6, 0x6c, 0x3d, 0xff, 0xa7, 0x6c, 0x3f, 0xff, 0xa8, 0x70, 0x40, 0xff, 0xaa, 0x71, 0x41, 0xff, 0xab, 0x71, 0x42, 0xff, 0xad, 0x73, 0x41, 0xff, 0xae, 0x74, 0x42, 0xff, 0xb0, 0x74, 0x41, 0xff, 0xb0, 0x77, 0x40, 0xff, 0xb3, 0x79, 0x42, 0xff, 0xb5, 0x79, 0x41, 0xff, 0xb7, 0x7a, 0x41, 0xff, 0xba, 0x7d, 0x42, 0xff, 0xbc, 0x7f, 0x41, 0xff, 0xbd, 0x80, 0x40, 0xff, 0xc2, 0x83, 0x3f, 0xff, 0xc7, 0x86, 0x3f, 0xff, 0xce, 0x8c, 0x41, 0xff, 0xd4, 0x8f, 0x45, 0xff, 0xd9, 0x95, 0x49, 0xff, 0xde, 0x9b, 0x50, 0xff, 0xe1, 0xa0, 0x56, 0xff, 0xe0, 0xa5, 0x5c, 0xff, 0xe0, 0xa7, 0x62, 0xff, 0xe1, 0xad, 0x64, 0xff, 0xdf, 0xaf, 0x68, 0xff, 0xe0, 0xb5, 0x6b, 0xff, 0xe1, 0xbd, 0x6b, 0xff, 0xe0, 0xbf, 0x6c, 0xff, 0xdf, 0xc0, 0x6a, 0xff, 0xdf, 0xbe, 0x68, 0xff, 0xe0, 0xbc, 0x66, 0xff, 0xdf, 0xc0, 0x67, 0xff, 0xdd, 0xc1, 0x68, 0xff, 0xde, 0xc6, 0x69, 0xff, 0xe0, 0xc7, 0x6b, 0xff, 0xe1, 0xc6, 0x6d, 0xff, 0xe2, 0xc5, 0x70, 0xff, 0xe1, 0xba, 0x6f, 0xff, 0xe2, 0xb0, 0x6c, 0xff, 0xe1, 0xac, 0x6a, 0xff, 0xe3, 0xad, 0x6b, 0xff, 0xe3, 0xaf, 0x6b, 0xff, 0xe2, 0xaf, 0x6b, 0xff, 0xe1, 0xae, 0x6b, 0xff, 0xe1, 0xaf, 0x6a, 0xff, 0xe3, 0xb4, 0x6a, 0xff, 0xe0, 0xb0, 0x67, 0xff, 0xe1, 0xad, 0x69, 0xff, 0xdf, 0xa2, 0x63, 0xff, 0xe0, 0xa4, 0x60, 0xff, 0xdf, 0xa3, 0x5c, 0xff, 0xc0, 0x87, 0x4d, 0xff, 0x9f, 0x65, 0x38, 0xff, 0x9d, 0x60, 0x36, 0xff, 0xa1, 0x65, 0x36, 0xff, 0xa1, 0x64, 0x35, 0xff, 0xa0, 0x64, 0x35, 0xff, 0xa2, 0x67, 0x37, 0xff, 0xa2, 0x67, 0x37, 0xff, 0xa3, 0x68, 0x37, 0xff, 0xa3, 0x68, 0x37, 0xff, 0xa3, 0x68, 0x38, 0xff, 0xa0, 0x63, 0x37, 0xff, 0xa0, 0x64, 0x38, 0xff, 0xa0, 0x65, 0x39, 0xff, 0xa0, 0x65, 0x38, 0xff, 0xa1, 0x66, 0x38, 0xff, 0xa1, 0x67, 0x39, 0xff, 0x9c, 0x61, 0x34, 0xff, 0x99, 0x5f, 0x34, 0xff, 0x9a, 0x61, 0x33, 0xff, 0x99, 0x60, 0x33, 0xff, 0x9a, 0x61, 0x33, 0xff, 0x9a, 0x5f, 0x32, 0xff, 0x9b, 0x5e, 0x30, 0xff, 0x99, 0x5d, 0x30, 0xff, 0x94, 0x58, 0x31, 0xff, 0x93, 0x56, 0x32, 0xff, 0x8f, 0x54, 0x32, 0xff, 0x8e, 0x53, 0x31, 0xff, 0x91, 0x55, 0x32, 0xff, 0x90, 0x54, 0x31, 0xff, 0x8e, 0x53, 0x30, 0xff, 0x8e, 0x53, 0x31, 0xff, 0x8f, 0x54, 0x31, 0xff, 0x8f, 0x54, 0x31, 0xff, 0x8f, 0x53, 0x30, 0xff, 0x8e, 0x53, 0x30, 0xff, 0x8d, 0x51, 0x2f, 0xff, 0x8c, 0x50, 0x2d, 0xff, 0x8b, 0x4e, 0x2b, 0xff, 0x8b, 0x4f, 0x2b, 0xff, 0x8a, 0x4e, 0x2a, 0xff, 0x8a, 0x4d, 0x2a, 0xff, 0x88, 0x4d, 0x2a, 0xff, 0x88, 0x4d, 0x29, 0xff, 0x87, 0x4c, 0x2a, 0xff, + 0x87, 0x4a, 0x28, 0xff, 0x87, 0x4b, 0x26, 0xff, 0x86, 0x4a, 0x27, 0xff, 0x87, 0x4c, 0x27, 0xff, 0x89, 0x4d, 0x29, 0xff, 0x88, 0x4d, 0x29, 0xff, 0x89, 0x4c, 0x28, 0xff, 0x89, 0x4c, 0x29, 0xff, 0x89, 0x4c, 0x29, 0xff, 0x8b, 0x4e, 0x2a, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x8d, 0x4f, 0x2b, 0xff, 0x8d, 0x50, 0x2c, 0xff, 0x8f, 0x51, 0x2c, 0xff, 0x8f, 0x51, 0x2c, 0xff, 0x90, 0x52, 0x2c, 0xff, 0x9d, 0x5e, 0x34, 0xff, 0xa1, 0x62, 0x37, 0xff, 0xa4, 0x65, 0x3a, 0xff, 0xa8, 0x6a, 0x3d, 0xff, 0xab, 0x6d, 0x3e, 0xff, 0xae, 0x70, 0x42, 0xff, 0xb1, 0x73, 0x44, 0xff, 0xb1, 0x73, 0x44, 0xff, 0xb3, 0x75, 0x44, 0xff, 0xb6, 0x77, 0x46, 0xff, 0xb9, 0x79, 0x47, 0xff, 0xbf, 0x7e, 0x4a, 0xff, 0xc6, 0x81, 0x4d, 0xff, 0xca, 0x84, 0x4f, 0xff, 0xd5, 0x8b, 0x52, 0xff, 0xdd, 0x8e, 0x55, 0xff, 0xde, 0x93, 0x59, 0xff, 0xdd, 0x97, 0x5d, 0xff, 0xdc, 0x96, 0x5e, 0xff, 0xd9, 0x96, 0x60, 0xff, 0xd6, 0x95, 0x5b, 0xff, 0xda, 0x97, 0x5e, 0xff, 0xdf, 0x9e, 0x62, 0xff, 0xe2, 0xa3, 0x66, 0xff, 0xe2, 0xa4, 0x6b, 0xff, 0xe3, 0xa3, 0x6c, 0xff, 0xe2, 0xa5, 0x6d, 0xff, 0xe3, 0xa5, 0x6c, 0xff, 0xe3, 0xa6, 0x6e, 0xff, 0xe3, 0xa9, 0x6d, 0xff, 0xe3, 0xab, 0x6d, 0xff, 0xe3, 0xae, 0x6b, 0xff, 0xe2, 0xac, 0x69, 0xff, 0xe2, 0xad, 0x67, 0xff, 0xe2, 0xad, 0x66, 0xff, 0xe2, 0xad, 0x68, 0xff, 0xe1, 0xb2, 0x69, 0xff, 0xe1, 0xb7, 0x6c, 0xff, 0xe3, 0xbc, 0x6e, 0xff, 0xdf, 0xb6, 0x67, 0xff, 0xde, 0xa8, 0x5b, 0xff, 0xe0, 0xa8, 0x59, 0xff, 0xe0, 0xa9, 0x58, 0xff, 0xe1, 0xa8, 0x57, 0xff, 0xe0, 0xa3, 0x55, 0xff, 0xde, 0x99, 0x53, 0xff, 0xdf, 0x9c, 0x55, 0xff, 0xe0, 0x9b, 0x56, 0xff, 0xe1, 0x9a, 0x54, 0xff, 0xe0, 0x9c, 0x57, 0xff, 0xe0, 0x9d, 0x59, 0xff, 0xe0, 0x9f, 0x5d, 0xff, 0xe0, 0xa1, 0x5f, 0xff, 0xe2, 0xa2, 0x62, 0xff, 0xe2, 0x9f, 0x63, 0xff, 0xe1, 0x9d, 0x61, 0xff, 0xe2, 0x9a, 0x5b, 0xff, 0xe2, 0x9a, 0x5a, 0xff, 0xdf, 0x9b, 0x55, 0xff, 0xde, 0x9c, 0x54, 0xff, 0xe0, 0x9d, 0x55, 0xff, 0xdf, 0x9d, 0x52, 0xff, 0xe1, 0x9d, 0x52, 0xff, 0xe2, 0x9a, 0x54, 0xff, 0xde, 0x98, 0x56, 0xff, 0xda, 0x90, 0x59, 0xff, 0xd1, 0x8d, 0x57, 0xff, 0xc1, 0x85, 0x50, 0xff, 0xb9, 0x7d, 0x4b, 0xff, 0xb4, 0x7c, 0x4a, 0xff, 0xae, 0x76, 0x47, 0xff, 0xa8, 0x70, 0x43, 0xff, 0xa6, 0x6e, 0x41, 0xff, 0xa7, 0x6e, 0x42, 0xff, 0xa6, 0x6f, 0x42, 0xff, 0xa6, 0x6f, 0x41, 0xff, 0xa5, 0x6d, 0x3f, 0xff, 0xa4, 0x6c, 0x3d, 0xff, 0xa2, 0x6b, 0x3c, 0xff, 0xa2, 0x6b, 0x3c, 0xff, 0xa2, 0x6a, 0x3c, 0xff, 0xa1, 0x6a, 0x3c, 0xff, 0xa0, 0x69, 0x3c, 0xff, 0xa0, 0x69, 0x3b, 0xff, 0xa1, 0x69, 0x3d, 0xff, 0x9b, 0x62, 0x39, 0xff, 0x93, 0x58, 0x33, 0xff, 0x94, 0x5a, 0x34, 0xff, 0x94, 0x5a, 0x34, 0xff, 0x94, 0x59, 0x34, 0xff, 0x94, 0x5a, 0x34, 0xff, 0x94, 0x59, 0x33, 0xff, 0x93, 0x57, 0x31, 0xff, 0x91, 0x57, 0x31, 0xff, 0x91, 0x57, 0x31, 0xff, 0x91, 0x57, 0x31, 0xff, 0x92, 0x58, 0x31, 0xff, 0x91, 0x57, 0x31, 0xff, 0x8d, 0x52, 0x2f, 0xff, 0x8c, 0x52, 0x2e, 0xff, 0x8e, 0x53, 0x2e, 0xff, 0x8e, 0x53, 0x2d, 0xff, 0x8e, 0x53, 0x2d, 0xff, 0x8e, 0x53, 0x2e, 0xff, 0x90, 0x55, 0x2e, 0xff, 0x92, 0x56, 0x2e, 0xff, 0x93, 0x59, 0x30, 0xff, 0x95, 0x5a, 0x31, 0xff, 0x96, 0x5a, 0x31, 0xff, 0x97, 0x5c, 0x31, 0xff, 0x97, 0x5c, 0x33, 0xff, 0x99, 0x5e, 0x34, 0xff, 0x99, 0x5f, 0x35, 0xff, 0x9c, 0x60, 0x36, 0xff, 0x9e, 0x62, 0x37, 0xff, 0x9f, 0x64, 0x37, 0xff, 0x9f, 0x65, 0x39, 0xff, 0xa1, 0x67, 0x3b, 0xff, 0xa3, 0x69, 0x3b, 0xff, 0xa3, 0x6a, 0x3c, 0xff, 0xa4, 0x6a, 0x3c, 0xff, 0xa4, 0x6c, 0x3d, 0xff, 0xa7, 0x6e, 0x3e, 0xff, 0xa9, 0x6f, 0x40, 0xff, 0xaa, 0x70, 0x40, 0xff, 0xab, 0x71, 0x40, 0xff, 0xac, 0x73, 0x41, 0xff, 0xae, 0x73, 0x41, 0xff, 0xaf, 0x74, 0x3f, 0xff, 0xb0, 0x76, 0x3f, 0xff, 0xb2, 0x77, 0x40, 0xff, 0xb4, 0x79, 0x41, 0xff, 0xb7, 0x7c, 0x40, 0xff, 0xb9, 0x7b, 0x40, 0xff, 0xba, 0x7d, 0x3f, 0xff, 0xbe, 0x80, 0x3e, 0xff, 0xc1, 0x83, 0x3e, 0xff, 0xc4, 0x87, 0x3f, 0xff, 0xc9, 0x88, 0x40, 0xff, 0xd0, 0x8e, 0x43, 0xff, 0xd6, 0x94, 0x49, 0xff, 0xde, 0x9a, 0x4f, 0xff, 0xe0, 0x9d, 0x54, 0xff, 0xe1, 0x9f, 0x59, 0xff, 0xe1, 0xa4, 0x5f, 0xff, 0xe0, 0xa5, 0x61, 0xff, 0xe1, 0xa8, 0x63, 0xff, 0xe0, 0xab, 0x65, 0xff, 0xe1, 0xb0, 0x67, 0xff, 0xdf, 0xb3, 0x63, 0xff, 0xe0, 0xb3, 0x64, 0xff, 0xe0, 0xb1, 0x61, 0xff, 0xe0, 0xb2, 0x61, 0xff, 0xdf, 0xb5, 0x62, 0xff, 0xde, 0xb9, 0x64, 0xff, 0xe0, 0xbd, 0x64, 0xff, 0xe0, 0xbf, 0x66, 0xff, 0xe0, 0xc4, 0x69, 0xff, 0xe1, 0xc1, 0x6c, 0xff, 0xe1, 0xb2, 0x67, 0xff, 0xe1, 0xac, 0x64, 0xff, 0xe2, 0xad, 0x66, 0xff, 0xe2, 0xaf, 0x64, 0xff, 0xe1, 0xae, 0x66, 0xff, 0xe1, 0xb0, 0x64, 0xff, 0xe2, 0xaf, 0x64, 0xff, 0xe0, 0xaf, 0x63, 0xff, 0xe0, 0xad, 0x63, 0xff, 0xe1, 0xa8, 0x63, 0xff, 0xe1, 0xa1, 0x60, 0xff, 0xe0, 0x9f, 0x60, 0xff, 0xe0, 0xa4, 0x5a, 0xff, 0xb6, 0x81, 0x47, 0xff, 0x9f, 0x64, 0x38, 0xff, 0x9d, 0x61, 0x36, 0xff, 0xa1, 0x64, 0x36, 0xff, 0xa1, 0x65, 0x36, 0xff, 0xa1, 0x66, 0x35, 0xff, 0xa3, 0x67, 0x37, 0xff, 0xa2, 0x67, 0x37, 0xff, 0xa3, 0x67, 0x36, 0xff, 0xa2, 0x68, 0x36, 0xff, 0xa3, 0x68, 0x37, 0xff, 0xa0, 0x65, 0x37, 0xff, 0xa0, 0x64, 0x39, 0xff, 0xa0, 0x65, 0x38, 0xff, 0xa0, 0x65, 0x38, 0xff, 0xa1, 0x66, 0x38, 0xff, 0xa0, 0x67, 0x3a, 0xff, 0xa0, 0x65, 0x39, 0xff, 0x9a, 0x60, 0x34, 0xff, 0x9a, 0x60, 0x34, 0xff, 0x9a, 0x61, 0x34, 0xff, 0x9a, 0x62, 0x33, 0xff, 0x9b, 0x5f, 0x32, 0xff, 0x98, 0x5c, 0x31, 0xff, 0x94, 0x58, 0x32, 0xff, 0x92, 0x56, 0x31, 0xff, 0x91, 0x54, 0x31, 0xff, 0x8f, 0x54, 0x31, 0xff, 0x8f, 0x54, 0x31, 0xff, 0x90, 0x54, 0x31, 0xff, 0x90, 0x54, 0x31, 0xff, 0x8e, 0x53, 0x30, 0xff, 0x8e, 0x53, 0x30, 0xff, 0x8e, 0x54, 0x31, 0xff, 0x8e, 0x53, 0x30, 0xff, 0x8e, 0x51, 0x2f, 0xff, 0x8c, 0x51, 0x2e, 0xff, 0x8b, 0x4f, 0x2d, 0xff, 0x8b, 0x4f, 0x2a, 0xff, 0x8a, 0x4e, 0x2a, 0xff, 0x89, 0x4d, 0x2a, 0xff, 0x88, 0x4c, 0x29, 0xff, 0x88, 0x4c, 0x28, 0xff, 0x88, 0x4c, 0x28, 0xff, 0x88, 0x4c, 0x27, 0xff, 0x87, 0x4b, 0x28, 0xff, + 0x85, 0x4b, 0x26, 0xff, 0x85, 0x4a, 0x26, 0xff, 0x85, 0x4a, 0x26, 0xff, 0x86, 0x49, 0x26, 0xff, 0x85, 0x4a, 0x26, 0xff, 0x86, 0x49, 0x26, 0xff, 0x86, 0x49, 0x26, 0xff, 0x87, 0x4b, 0x26, 0xff, 0x88, 0x4c, 0x26, 0xff, 0x88, 0x4d, 0x26, 0xff, 0x8a, 0x4d, 0x28, 0xff, 0x8a, 0x4d, 0x28, 0xff, 0x8b, 0x4e, 0x29, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x9c, 0x5e, 0x36, 0xff, 0xa3, 0x66, 0x3c, 0xff, 0xa2, 0x63, 0x39, 0xff, 0xa2, 0x63, 0x3a, 0xff, 0xa3, 0x65, 0x39, 0xff, 0xa4, 0x65, 0x3a, 0xff, 0xa6, 0x68, 0x3b, 0xff, 0xa8, 0x68, 0x3c, 0xff, 0xaa, 0x6c, 0x3e, 0xff, 0xac, 0x6d, 0x3f, 0xff, 0xae, 0x70, 0x41, 0xff, 0xb2, 0x73, 0x41, 0xff, 0xb5, 0x76, 0x44, 0xff, 0xb8, 0x78, 0x46, 0xff, 0xba, 0x7a, 0x45, 0xff, 0xc2, 0x81, 0x4b, 0xff, 0xd1, 0x88, 0x51, 0xff, 0xdb, 0x8f, 0x55, 0xff, 0xe2, 0x92, 0x59, 0xff, 0xdc, 0x92, 0x58, 0xff, 0xda, 0x94, 0x5b, 0xff, 0xdd, 0x92, 0x5b, 0xff, 0xe0, 0x99, 0x63, 0xff, 0xe0, 0x9a, 0x63, 0xff, 0xe0, 0x9d, 0x64, 0xff, 0xe0, 0xa2, 0x69, 0xff, 0xe3, 0xa3, 0x6c, 0xff, 0xe3, 0xa4, 0x6e, 0xff, 0xe3, 0xa7, 0x70, 0xff, 0xe1, 0xa8, 0x70, 0xff, 0xe1, 0xa8, 0x70, 0xff, 0xe2, 0xab, 0x70, 0xff, 0xe1, 0xac, 0x71, 0xff, 0xe3, 0xae, 0x6e, 0xff, 0xe2, 0xb0, 0x6b, 0xff, 0xe2, 0xad, 0x69, 0xff, 0xe2, 0xad, 0x66, 0xff, 0xe2, 0xaf, 0x66, 0xff, 0xe2, 0xb0, 0x67, 0xff, 0xe1, 0xb5, 0x69, 0xff, 0xe3, 0xb7, 0x6b, 0xff, 0xe2, 0xb7, 0x6c, 0xff, 0xe0, 0xb4, 0x68, 0xff, 0xe0, 0xa9, 0x5c, 0xff, 0xe0, 0xab, 0x5b, 0xff, 0xe0, 0xaa, 0x58, 0xff, 0xdd, 0xa2, 0x56, 0xff, 0xe0, 0x9e, 0x56, 0xff, 0xde, 0x9c, 0x55, 0xff, 0xe0, 0x99, 0x52, 0xff, 0xdf, 0x9b, 0x52, 0xff, 0xdf, 0x9c, 0x51, 0xff, 0xe1, 0x99, 0x52, 0xff, 0xe0, 0x9b, 0x53, 0xff, 0xe2, 0xa0, 0x5b, 0xff, 0xe2, 0x9e, 0x5a, 0xff, 0xe2, 0x9d, 0x5b, 0xff, 0xe2, 0x9e, 0x5d, 0xff, 0xe0, 0x9b, 0x5e, 0xff, 0xde, 0x97, 0x58, 0xff, 0xdd, 0x9a, 0x51, 0xff, 0xdc, 0x9a, 0x4e, 0xff, 0xda, 0x9b, 0x4e, 0xff, 0xdc, 0x9d, 0x4f, 0xff, 0xde, 0x9a, 0x4c, 0xff, 0xcd, 0x90, 0x43, 0xff, 0xb5, 0x7b, 0x41, 0xff, 0xab, 0x6f, 0x3a, 0xff, 0xaa, 0x6f, 0x3d, 0xff, 0xad, 0x74, 0x46, 0xff, 0xac, 0x75, 0x45, 0xff, 0xac, 0x76, 0x45, 0xff, 0xab, 0x75, 0x46, 0xff, 0xaa, 0x72, 0x45, 0xff, 0xa9, 0x72, 0x43, 0xff, 0xa8, 0x71, 0x42, 0xff, 0xa7, 0x70, 0x42, 0xff, 0xa5, 0x6e, 0x40, 0xff, 0xa5, 0x6f, 0x3e, 0xff, 0xa5, 0x6f, 0x3c, 0xff, 0xa5, 0x6e, 0x3e, 0xff, 0xa3, 0x6c, 0x3d, 0xff, 0xa2, 0x69, 0x3c, 0xff, 0xa2, 0x6b, 0x3c, 0xff, 0xa1, 0x6a, 0x3b, 0xff, 0xa2, 0x6c, 0x3d, 0xff, 0x9d, 0x66, 0x3a, 0xff, 0x94, 0x59, 0x33, 0xff, 0x93, 0x5a, 0x34, 0xff, 0x93, 0x5b, 0x35, 0xff, 0x94, 0x5c, 0x34, 0xff, 0x94, 0x5b, 0x34, 0xff, 0x92, 0x59, 0x32, 0xff, 0x92, 0x58, 0x32, 0xff, 0x92, 0x59, 0x33, 0xff, 0x92, 0x58, 0x32, 0xff, 0x92, 0x57, 0x31, 0xff, 0x91, 0x58, 0x32, 0xff, 0x90, 0x57, 0x32, 0xff, 0x8d, 0x52, 0x2e, 0xff, 0x8b, 0x51, 0x2d, 0xff, 0x8c, 0x52, 0x2e, 0xff, 0x8c, 0x52, 0x2e, 0xff, 0x8d, 0x53, 0x2d, 0xff, 0x8e, 0x53, 0x2d, 0xff, 0x8f, 0x53, 0x2e, 0xff, 0x8f, 0x55, 0x2f, 0xff, 0x91, 0x57, 0x2f, 0xff, 0x92, 0x57, 0x2f, 0xff, 0x93, 0x58, 0x30, 0xff, 0x93, 0x58, 0x31, 0xff, 0x95, 0x59, 0x31, 0xff, 0x97, 0x5b, 0x32, 0xff, 0x97, 0x5d, 0x33, 0xff, 0x99, 0x5e, 0x35, 0xff, 0x9a, 0x61, 0x37, 0xff, 0x9a, 0x61, 0x37, 0xff, 0x9c, 0x62, 0x37, 0xff, 0x9e, 0x64, 0x38, 0xff, 0x9e, 0x65, 0x39, 0xff, 0x9f, 0x65, 0x3a, 0xff, 0xa2, 0x67, 0x3b, 0xff, 0xa2, 0x69, 0x3c, 0xff, 0xa3, 0x6a, 0x3c, 0xff, 0xa5, 0x6c, 0x3d, 0xff, 0xa6, 0x6d, 0x3e, 0xff, 0xa8, 0x6e, 0x3f, 0xff, 0xa9, 0x70, 0x3f, 0xff, 0xaa, 0x70, 0x40, 0xff, 0xac, 0x73, 0x40, 0xff, 0xad, 0x74, 0x3f, 0xff, 0xae, 0x73, 0x3e, 0xff, 0xb0, 0x75, 0x3e, 0xff, 0xb2, 0x77, 0x3e, 0xff, 0xb4, 0x79, 0x40, 0xff, 0xb5, 0x79, 0x3e, 0xff, 0xb8, 0x7c, 0x3f, 0xff, 0xba, 0x7c, 0x3c, 0xff, 0xbd, 0x7f, 0x3b, 0xff, 0xc0, 0x80, 0x3b, 0xff, 0xc3, 0x86, 0x3d, 0xff, 0xc8, 0x8a, 0x43, 0xff, 0xcb, 0x8e, 0x45, 0xff, 0xd1, 0x92, 0x48, 0xff, 0xd9, 0x97, 0x4c, 0xff, 0xdb, 0x99, 0x52, 0xff, 0xde, 0x9a, 0x56, 0xff, 0xe1, 0x9d, 0x5b, 0xff, 0xe2, 0x9f, 0x5d, 0xff, 0xe1, 0xa2, 0x60, 0xff, 0xe0, 0xa4, 0x60, 0xff, 0xe1, 0xa9, 0x5f, 0xff, 0xe0, 0xaa, 0x5d, 0xff, 0xdf, 0xa9, 0x5d, 0xff, 0xe1, 0xac, 0x5d, 0xff, 0xe0, 0xac, 0x5d, 0xff, 0xe1, 0xad, 0x5e, 0xff, 0xe0, 0xb2, 0x62, 0xff, 0xe0, 0xb5, 0x61, 0xff, 0xdf, 0xb7, 0x63, 0xff, 0xe0, 0xba, 0x63, 0xff, 0xe0, 0xb8, 0x66, 0xff, 0xe2, 0xaf, 0x64, 0xff, 0xe0, 0xac, 0x62, 0xff, 0xe2, 0xad, 0x62, 0xff, 0xe2, 0xb0, 0x63, 0xff, 0xe2, 0xad, 0x60, 0xff, 0xe0, 0xab, 0x61, 0xff, 0xe0, 0xab, 0x5f, 0xff, 0xe0, 0xa9, 0x62, 0xff, 0xe1, 0xa6, 0x5f, 0xff, 0xe1, 0x9e, 0x5c, 0xff, 0xe1, 0x9a, 0x5d, 0xff, 0xe0, 0x9f, 0x57, 0xff, 0xb2, 0x7c, 0x45, 0xff, 0x9f, 0x64, 0x37, 0xff, 0x9f, 0x62, 0x36, 0xff, 0xa0, 0x65, 0x36, 0xff, 0xa0, 0x64, 0x34, 0xff, 0xa2, 0x65, 0x36, 0xff, 0xa2, 0x67, 0x37, 0xff, 0xa2, 0x67, 0x37, 0xff, 0xa2, 0x67, 0x36, 0xff, 0xa2, 0x65, 0x36, 0xff, 0xa3, 0x68, 0x37, 0xff, 0xa2, 0x66, 0x37, 0xff, 0x9f, 0x65, 0x37, 0xff, 0xa0, 0x65, 0x37, 0xff, 0xa0, 0x65, 0x37, 0xff, 0xa0, 0x65, 0x39, 0xff, 0xa0, 0x67, 0x3b, 0xff, 0xa1, 0x65, 0x3b, 0xff, 0x9d, 0x62, 0x39, 0xff, 0x9a, 0x60, 0x35, 0xff, 0x9a, 0x61, 0x34, 0xff, 0x9c, 0x61, 0x33, 0xff, 0x99, 0x5d, 0x33, 0xff, 0x94, 0x58, 0x33, 0xff, 0x93, 0x57, 0x32, 0xff, 0x92, 0x57, 0x31, 0xff, 0x8f, 0x54, 0x31, 0xff, 0x8f, 0x54, 0x31, 0xff, 0x90, 0x54, 0x31, 0xff, 0x8f, 0x54, 0x31, 0xff, 0x8e, 0x52, 0x2f, 0xff, 0x8e, 0x53, 0x30, 0xff, 0x8e, 0x52, 0x2e, 0xff, 0x8c, 0x51, 0x2e, 0xff, 0x8c, 0x51, 0x2e, 0xff, 0x8c, 0x4f, 0x2e, 0xff, 0x8b, 0x4f, 0x2c, 0xff, 0x8c, 0x4f, 0x2b, 0xff, 0x8a, 0x4e, 0x2a, 0xff, 0x88, 0x4d, 0x28, 0xff, 0x87, 0x4b, 0x28, 0xff, 0x87, 0x4b, 0x28, 0xff, 0x87, 0x4b, 0x28, 0xff, 0x86, 0x4a, 0x26, 0xff, 0x86, 0x49, 0x26, 0xff, 0x86, 0x49, 0x26, 0xff, + 0x83, 0x49, 0x24, 0xff, 0x84, 0x48, 0x24, 0xff, 0x83, 0x48, 0x26, 0xff, 0x84, 0x48, 0x26, 0xff, 0x83, 0x48, 0x26, 0xff, 0x83, 0x49, 0x25, 0xff, 0x83, 0x49, 0x26, 0xff, 0x84, 0x4a, 0x26, 0xff, 0x85, 0x48, 0x26, 0xff, 0x87, 0x4a, 0x26, 0xff, 0x8a, 0x4d, 0x29, 0xff, 0x8f, 0x51, 0x2b, 0xff, 0x9b, 0x5f, 0x37, 0xff, 0x9d, 0x5e, 0x37, 0xff, 0x9a, 0x5d, 0x36, 0xff, 0x9a, 0x5d, 0x36, 0xff, 0x9c, 0x5e, 0x36, 0xff, 0x9e, 0x5e, 0x36, 0xff, 0xa0, 0x61, 0x37, 0xff, 0xa2, 0x63, 0x38, 0xff, 0xa3, 0x64, 0x39, 0xff, 0xa6, 0x68, 0x3a, 0xff, 0xa8, 0x69, 0x3b, 0xff, 0xab, 0x6c, 0x3c, 0xff, 0xae, 0x6f, 0x3f, 0xff, 0xb1, 0x72, 0x41, 0xff, 0xb5, 0x74, 0x44, 0xff, 0xb9, 0x79, 0x45, 0xff, 0xbf, 0x81, 0x4a, 0xff, 0xc3, 0x82, 0x4c, 0xff, 0xc5, 0x83, 0x4c, 0xff, 0xcc, 0x87, 0x4f, 0xff, 0xca, 0x87, 0x4f, 0xff, 0xcf, 0x89, 0x4f, 0xff, 0xda, 0x8e, 0x55, 0xff, 0xe2, 0x91, 0x59, 0xff, 0xe2, 0x95, 0x5d, 0xff, 0xe2, 0x99, 0x60, 0xff, 0xe2, 0x9e, 0x64, 0xff, 0xe2, 0xa2, 0x69, 0xff, 0xe3, 0xa3, 0x6c, 0xff, 0xe3, 0xa5, 0x71, 0xff, 0xe2, 0xa8, 0x73, 0xff, 0xe3, 0xac, 0x73, 0xff, 0xe3, 0xad, 0x73, 0xff, 0xe3, 0xad, 0x74, 0xff, 0xe3, 0xaf, 0x75, 0xff, 0xe3, 0xb1, 0x72, 0xff, 0xe3, 0xb2, 0x6d, 0xff, 0xe2, 0xb1, 0x6a, 0xff, 0xe2, 0xad, 0x65, 0xff, 0xe2, 0xab, 0x62, 0xff, 0xe2, 0xb0, 0x64, 0xff, 0xe2, 0xb1, 0x67, 0xff, 0xe0, 0xb1, 0x68, 0xff, 0xe3, 0xb5, 0x6a, 0xff, 0xe2, 0xb8, 0x6c, 0xff, 0xe0, 0xb8, 0x6c, 0xff, 0xe0, 0xac, 0x5d, 0xff, 0xe0, 0xaa, 0x5a, 0xff, 0xdd, 0xa3, 0x58, 0xff, 0xde, 0x9d, 0x55, 0xff, 0xe0, 0x9f, 0x54, 0xff, 0xe0, 0x9b, 0x53, 0xff, 0xe0, 0x99, 0x52, 0xff, 0xe0, 0x9a, 0x51, 0xff, 0xe1, 0x9a, 0x52, 0xff, 0xe0, 0x9b, 0x56, 0xff, 0xe2, 0xa0, 0x59, 0xff, 0xe0, 0x9d, 0x59, 0xff, 0xe2, 0x9e, 0x5c, 0xff, 0xe1, 0x9e, 0x5c, 0xff, 0xe1, 0x9b, 0x5b, 0xff, 0xde, 0x98, 0x52, 0xff, 0xd1, 0x92, 0x3f, 0xff, 0xcf, 0x93, 0x38, 0xff, 0xcc, 0x91, 0x39, 0xff, 0xd2, 0x90, 0x35, 0xff, 0xd3, 0x93, 0x38, 0xff, 0xc8, 0x8c, 0x40, 0xff, 0xa6, 0x6a, 0x38, 0xff, 0xae, 0x73, 0x40, 0xff, 0xae, 0x75, 0x43, 0xff, 0xae, 0x75, 0x45, 0xff, 0xad, 0x73, 0x45, 0xff, 0xad, 0x76, 0x46, 0xff, 0xad, 0x76, 0x45, 0xff, 0xab, 0x75, 0x47, 0xff, 0xaa, 0x74, 0x46, 0xff, 0xa9, 0x71, 0x41, 0xff, 0xa8, 0x70, 0x3f, 0xff, 0xa7, 0x6f, 0x3e, 0xff, 0xa6, 0x6f, 0x3d, 0xff, 0xa6, 0x6f, 0x3e, 0xff, 0xa5, 0x6e, 0x3e, 0xff, 0xa4, 0x6d, 0x3e, 0xff, 0xa5, 0x6d, 0x3e, 0xff, 0xa4, 0x6c, 0x3d, 0xff, 0xa3, 0x6b, 0x3c, 0xff, 0xa1, 0x67, 0x3b, 0xff, 0x98, 0x5d, 0x36, 0xff, 0x93, 0x59, 0x34, 0xff, 0x94, 0x5b, 0x35, 0xff, 0x94, 0x5b, 0x36, 0xff, 0x95, 0x5b, 0x35, 0xff, 0x94, 0x5b, 0x33, 0xff, 0x94, 0x5a, 0x33, 0xff, 0x94, 0x59, 0x33, 0xff, 0x92, 0x58, 0x31, 0xff, 0x92, 0x59, 0x31, 0xff, 0x92, 0x58, 0x32, 0xff, 0x92, 0x58, 0x32, 0xff, 0x8f, 0x55, 0x2f, 0xff, 0x8b, 0x50, 0x2d, 0xff, 0x8b, 0x52, 0x2d, 0xff, 0x8b, 0x52, 0x2d, 0xff, 0x8d, 0x50, 0x2e, 0xff, 0x8c, 0x50, 0x2c, 0xff, 0x8c, 0x52, 0x2c, 0xff, 0x8e, 0x53, 0x2f, 0xff, 0x8f, 0x53, 0x2f, 0xff, 0x8f, 0x55, 0x2e, 0xff, 0x8f, 0x55, 0x2f, 0xff, 0x91, 0x56, 0x2e, 0xff, 0x93, 0x58, 0x2e, 0xff, 0x94, 0x58, 0x31, 0xff, 0x94, 0x5a, 0x31, 0xff, 0x96, 0x5c, 0x33, 0xff, 0x98, 0x5d, 0x34, 0xff, 0x99, 0x5d, 0x35, 0xff, 0x99, 0x5f, 0x37, 0xff, 0x9b, 0x61, 0x37, 0xff, 0x9d, 0x63, 0x37, 0xff, 0x9e, 0x63, 0x38, 0xff, 0x9f, 0x64, 0x39, 0xff, 0xa0, 0x66, 0x3a, 0xff, 0xa0, 0x67, 0x39, 0xff, 0xa2, 0x68, 0x3b, 0xff, 0xa4, 0x6a, 0x3c, 0xff, 0xa5, 0x6c, 0x3c, 0xff, 0xa6, 0x6d, 0x3d, 0xff, 0xa8, 0x6e, 0x3f, 0xff, 0xa9, 0x6f, 0x3f, 0xff, 0xab, 0x70, 0x3f, 0xff, 0xac, 0x72, 0x3f, 0xff, 0xad, 0x73, 0x3d, 0xff, 0xae, 0x73, 0x3d, 0xff, 0xb0, 0x75, 0x3d, 0xff, 0xb2, 0x77, 0x3e, 0xff, 0xb3, 0x76, 0x3e, 0xff, 0xb6, 0x79, 0x3d, 0xff, 0xb7, 0x7a, 0x3c, 0xff, 0xb9, 0x7b, 0x3c, 0xff, 0xbd, 0x7f, 0x3c, 0xff, 0xbf, 0x81, 0x3c, 0xff, 0xc0, 0x83, 0x3c, 0xff, 0xc3, 0x86, 0x40, 0xff, 0xc8, 0x8c, 0x44, 0xff, 0xce, 0x8f, 0x48, 0xff, 0xd4, 0x92, 0x4d, 0xff, 0xd8, 0x96, 0x52, 0xff, 0xde, 0x96, 0x56, 0xff, 0xdf, 0x9a, 0x5a, 0xff, 0xe1, 0x9d, 0x5b, 0xff, 0xe2, 0xa1, 0x5e, 0xff, 0xe1, 0xa1, 0x5c, 0xff, 0xdf, 0xa1, 0x58, 0xff, 0xe0, 0xa3, 0x5a, 0xff, 0xe0, 0xa3, 0x59, 0xff, 0xdf, 0xa4, 0x5a, 0xff, 0xdf, 0xa5, 0x5a, 0xff, 0xe0, 0xa6, 0x5a, 0xff, 0xe1, 0xa8, 0x5c, 0xff, 0xe0, 0xab, 0x5d, 0xff, 0xe1, 0xb3, 0x61, 0xff, 0xde, 0xad, 0x62, 0xff, 0xe0, 0xac, 0x61, 0xff, 0xe0, 0xa7, 0x5e, 0xff, 0xe1, 0xa8, 0x5f, 0xff, 0xde, 0xa8, 0x5d, 0xff, 0xe1, 0xaa, 0x60, 0xff, 0xe1, 0xa8, 0x5e, 0xff, 0xe0, 0xa5, 0x5d, 0xff, 0xe2, 0xa6, 0x5d, 0xff, 0xe1, 0xa4, 0x5d, 0xff, 0xe0, 0x9e, 0x59, 0xff, 0xe0, 0x9b, 0x5a, 0xff, 0xe2, 0x9a, 0x5a, 0xff, 0xb0, 0x7b, 0x42, 0xff, 0x9d, 0x63, 0x38, 0xff, 0x9f, 0x62, 0x36, 0xff, 0xa0, 0x64, 0x34, 0xff, 0xa0, 0x65, 0x34, 0xff, 0xa2, 0x66, 0x37, 0xff, 0xa2, 0x66, 0x36, 0xff, 0xa2, 0x66, 0x36, 0xff, 0xa2, 0x66, 0x36, 0xff, 0xa3, 0x68, 0x37, 0xff, 0xa3, 0x68, 0x37, 0xff, 0xa2, 0x69, 0x38, 0xff, 0xa1, 0x66, 0x37, 0xff, 0x9f, 0x65, 0x37, 0xff, 0xa0, 0x65, 0x38, 0xff, 0xa0, 0x65, 0x39, 0xff, 0xa0, 0x66, 0x3b, 0xff, 0xa2, 0x67, 0x3c, 0xff, 0xa1, 0x65, 0x3a, 0xff, 0x9d, 0x62, 0x36, 0xff, 0x9c, 0x62, 0x35, 0xff, 0x99, 0x5f, 0x33, 0xff, 0x94, 0x59, 0x33, 0xff, 0x94, 0x58, 0x33, 0xff, 0x92, 0x58, 0x33, 0xff, 0x8f, 0x54, 0x31, 0xff, 0x8f, 0x53, 0x31, 0xff, 0x91, 0x54, 0x31, 0xff, 0x8f, 0x54, 0x31, 0xff, 0x8e, 0x53, 0x30, 0xff, 0x8d, 0x51, 0x2f, 0xff, 0x8e, 0x50, 0x2d, 0xff, 0x8c, 0x50, 0x2d, 0xff, 0x8b, 0x4f, 0x2c, 0xff, 0x8a, 0x4f, 0x2c, 0xff, 0x8a, 0x4f, 0x2b, 0xff, 0x89, 0x4d, 0x29, 0xff, 0x88, 0x4c, 0x28, 0xff, 0x87, 0x4b, 0x28, 0xff, 0x86, 0x4b, 0x28, 0xff, 0x86, 0x49, 0x27, 0xff, 0x85, 0x4a, 0x26, 0xff, 0x85, 0x4a, 0x26, 0xff, 0x84, 0x49, 0x26, 0xff, 0x85, 0x49, 0x26, 0xff, 0x84, 0x48, 0x26, 0xff, + 0x82, 0x47, 0x23, 0xff, 0x81, 0x48, 0x23, 0xff, 0x82, 0x47, 0x23, 0xff, 0x82, 0x47, 0x23, 0xff, 0x82, 0x47, 0x23, 0xff, 0x82, 0x47, 0x23, 0xff, 0x82, 0x48, 0x24, 0xff, 0x81, 0x46, 0x23, 0xff, 0x87, 0x4a, 0x27, 0xff, 0x8f, 0x52, 0x2e, 0xff, 0x94, 0x57, 0x33, 0xff, 0x97, 0x5b, 0x35, 0xff, 0x97, 0x58, 0x33, 0xff, 0x96, 0x58, 0x33, 0xff, 0x96, 0x58, 0x33, 0xff, 0x98, 0x5a, 0x33, 0xff, 0x98, 0x5a, 0x34, 0xff, 0x9a, 0x5b, 0x34, 0xff, 0x9c, 0x5e, 0x34, 0xff, 0x9e, 0x5f, 0x35, 0xff, 0xa0, 0x61, 0x36, 0xff, 0xa2, 0x63, 0x37, 0xff, 0xa5, 0x65, 0x39, 0xff, 0xa8, 0x69, 0x3a, 0xff, 0xac, 0x6d, 0x3c, 0xff, 0xaf, 0x6f, 0x3f, 0xff, 0xb2, 0x73, 0x41, 0xff, 0xb5, 0x75, 0x42, 0xff, 0xba, 0x7a, 0x45, 0xff, 0xc0, 0x7f, 0x4a, 0xff, 0xc7, 0x84, 0x4d, 0xff, 0xc8, 0x85, 0x4d, 0xff, 0xc1, 0x80, 0x4a, 0xff, 0xc8, 0x86, 0x4d, 0xff, 0xd0, 0x89, 0x51, 0xff, 0xdb, 0x8f, 0x55, 0xff, 0xe2, 0x93, 0x5b, 0xff, 0xe2, 0x99, 0x60, 0xff, 0xe0, 0x9d, 0x62, 0xff, 0xe2, 0xa2, 0x66, 0xff, 0xe2, 0xa4, 0x6b, 0xff, 0xe2, 0xa5, 0x6c, 0xff, 0xe2, 0xa9, 0x70, 0xff, 0xe2, 0xad, 0x74, 0xff, 0xe3, 0xb1, 0x76, 0xff, 0xe3, 0xb5, 0x78, 0xff, 0xe2, 0xb7, 0x7a, 0xff, 0xe3, 0xb7, 0x76, 0xff, 0xe2, 0xba, 0x70, 0xff, 0xe1, 0xb7, 0x6a, 0xff, 0xe2, 0xb4, 0x64, 0xff, 0xe2, 0xaf, 0x62, 0xff, 0xe3, 0xb0, 0x64, 0xff, 0xe2, 0xad, 0x66, 0xff, 0xe2, 0xad, 0x69, 0xff, 0xe1, 0xb1, 0x6a, 0xff, 0xe3, 0xb3, 0x6b, 0xff, 0xe1, 0xb1, 0x6b, 0xff, 0xe0, 0xb4, 0x68, 0xff, 0xdf, 0xac, 0x5d, 0xff, 0xdb, 0xa5, 0x59, 0xff, 0xde, 0xa2, 0x58, 0xff, 0xdc, 0xa0, 0x56, 0xff, 0xde, 0x9d, 0x54, 0xff, 0xdf, 0x9b, 0x54, 0xff, 0xe0, 0x9a, 0x52, 0xff, 0xe1, 0x9a, 0x53, 0xff, 0xe0, 0x9c, 0x56, 0xff, 0xe2, 0x9b, 0x58, 0xff, 0xe0, 0x99, 0x57, 0xff, 0xe0, 0x9b, 0x58, 0xff, 0xe0, 0x9d, 0x5a, 0xff, 0xe1, 0x9b, 0x5c, 0xff, 0xdf, 0x9b, 0x58, 0xff, 0xd3, 0x96, 0x44, 0xff, 0xd2, 0x94, 0x39, 0xff, 0xd1, 0x92, 0x39, 0xff, 0xd2, 0x93, 0x38, 0xff, 0xcd, 0x8f, 0x37, 0xff, 0xb4, 0x7b, 0x3a, 0xff, 0xad, 0x71, 0x3f, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xaf, 0x77, 0x44, 0xff, 0xae, 0x75, 0x46, 0xff, 0xaf, 0x77, 0x46, 0xff, 0xae, 0x76, 0x45, 0xff, 0xad, 0x77, 0x46, 0xff, 0xad, 0x77, 0x47, 0xff, 0xac, 0x75, 0x46, 0xff, 0xaa, 0x73, 0x43, 0xff, 0xa8, 0x71, 0x40, 0xff, 0xa9, 0x72, 0x40, 0xff, 0xa8, 0x71, 0x40, 0xff, 0xa7, 0x70, 0x3f, 0xff, 0xa5, 0x6f, 0x3f, 0xff, 0xa5, 0x6e, 0x3e, 0xff, 0xa5, 0x6d, 0x3e, 0xff, 0xa4, 0x6c, 0x3d, 0xff, 0xa4, 0x6c, 0x3e, 0xff, 0x9e, 0x67, 0x3b, 0xff, 0x95, 0x5c, 0x35, 0xff, 0x95, 0x5b, 0x35, 0xff, 0x95, 0x5b, 0x35, 0xff, 0x95, 0x5b, 0x34, 0xff, 0x94, 0x5a, 0x35, 0xff, 0x95, 0x5a, 0x34, 0xff, 0x94, 0x5a, 0x34, 0xff, 0x92, 0x59, 0x32, 0xff, 0x92, 0x59, 0x32, 0xff, 0x92, 0x58, 0x32, 0xff, 0x93, 0x59, 0x33, 0xff, 0x90, 0x56, 0x31, 0xff, 0x8b, 0x51, 0x2e, 0xff, 0x8a, 0x4f, 0x2e, 0xff, 0x8b, 0x50, 0x2e, 0xff, 0x8a, 0x51, 0x2c, 0xff, 0x8a, 0x51, 0x2c, 0xff, 0x8c, 0x51, 0x2b, 0xff, 0x8c, 0x50, 0x2b, 0xff, 0x8d, 0x52, 0x2c, 0xff, 0x8d, 0x53, 0x2c, 0xff, 0x8d, 0x52, 0x2d, 0xff, 0x8f, 0x54, 0x2e, 0xff, 0x8f, 0x56, 0x2e, 0xff, 0x91, 0x57, 0x2e, 0xff, 0x93, 0x57, 0x30, 0xff, 0x94, 0x59, 0x31, 0xff, 0x95, 0x5b, 0x31, 0xff, 0x96, 0x5c, 0x32, 0xff, 0x97, 0x5e, 0x34, 0xff, 0x97, 0x5f, 0x36, 0xff, 0x99, 0x60, 0x36, 0xff, 0x9b, 0x60, 0x37, 0xff, 0x9c, 0x62, 0x37, 0xff, 0x9d, 0x64, 0x38, 0xff, 0x9e, 0x65, 0x39, 0xff, 0x9f, 0x65, 0x3a, 0xff, 0xa1, 0x67, 0x3a, 0xff, 0xa2, 0x69, 0x3a, 0xff, 0xa3, 0x6a, 0x3c, 0xff, 0xa4, 0x6c, 0x3c, 0xff, 0xa6, 0x6d, 0x3d, 0xff, 0xa7, 0x6e, 0x3d, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xa9, 0x70, 0x3e, 0xff, 0xab, 0x71, 0x3d, 0xff, 0xad, 0x72, 0x3c, 0xff, 0xae, 0x73, 0x3c, 0xff, 0xaf, 0x73, 0x3c, 0xff, 0xb1, 0x74, 0x3b, 0xff, 0xb2, 0x75, 0x39, 0xff, 0xb5, 0x76, 0x3a, 0xff, 0xb8, 0x78, 0x3b, 0xff, 0xbb, 0x7b, 0x3c, 0xff, 0xbe, 0x7d, 0x3d, 0xff, 0xc0, 0x80, 0x3e, 0xff, 0xc3, 0x84, 0x42, 0xff, 0xc7, 0x88, 0x47, 0xff, 0xcb, 0x8c, 0x48, 0xff, 0xd0, 0x8e, 0x4c, 0xff, 0xd5, 0x90, 0x51, 0xff, 0xda, 0x95, 0x54, 0xff, 0xde, 0x96, 0x57, 0xff, 0xe0, 0x98, 0x5a, 0xff, 0xe0, 0x9b, 0x5d, 0xff, 0xe2, 0x9a, 0x5c, 0xff, 0xe1, 0x9e, 0x5a, 0xff, 0xe1, 0xa0, 0x59, 0xff, 0xe0, 0x9e, 0x57, 0xff, 0xe0, 0x9f, 0x56, 0xff, 0xe2, 0x9f, 0x57, 0xff, 0xe2, 0xa0, 0x59, 0xff, 0xe0, 0xa3, 0x5b, 0xff, 0xe2, 0xa5, 0x5d, 0xff, 0xe1, 0xa7, 0x60, 0xff, 0xe0, 0xa8, 0x62, 0xff, 0xe1, 0xa7, 0x63, 0xff, 0xe0, 0xa7, 0x62, 0xff, 0xe0, 0xa4, 0x60, 0xff, 0xe1, 0xa5, 0x62, 0xff, 0xe1, 0xa7, 0x60, 0xff, 0xe2, 0xa5, 0x60, 0xff, 0xe2, 0xa5, 0x5f, 0xff, 0xe2, 0xa5, 0x60, 0xff, 0xe1, 0xa4, 0x60, 0xff, 0xe1, 0x9e, 0x5e, 0xff, 0xe2, 0x99, 0x5b, 0xff, 0xe2, 0x98, 0x5d, 0xff, 0xaf, 0x79, 0x46, 0xff, 0x9e, 0x65, 0x38, 0xff, 0xa0, 0x64, 0x38, 0xff, 0xa1, 0x65, 0x36, 0xff, 0xa2, 0x65, 0x36, 0xff, 0xa2, 0x66, 0x37, 0xff, 0xa3, 0x65, 0x37, 0xff, 0xa2, 0x66, 0x36, 0xff, 0xa1, 0x66, 0x35, 0xff, 0xa1, 0x68, 0x36, 0xff, 0xa2, 0x68, 0x37, 0xff, 0xa2, 0x67, 0x37, 0xff, 0xa2, 0x67, 0x37, 0xff, 0x9f, 0x65, 0x37, 0xff, 0x9f, 0x65, 0x37, 0xff, 0x9f, 0x65, 0x39, 0xff, 0xa1, 0x65, 0x3b, 0xff, 0xa2, 0x66, 0x3d, 0xff, 0xa3, 0x66, 0x3e, 0xff, 0xa2, 0x67, 0x3c, 0xff, 0x9d, 0x61, 0x38, 0xff, 0x95, 0x59, 0x33, 0xff, 0x95, 0x59, 0x34, 0xff, 0x95, 0x59, 0x33, 0xff, 0x91, 0x56, 0x33, 0xff, 0x90, 0x55, 0x31, 0xff, 0x90, 0x55, 0x31, 0xff, 0x8f, 0x52, 0x31, 0xff, 0x8f, 0x53, 0x30, 0xff, 0x8d, 0x50, 0x2e, 0xff, 0x8e, 0x50, 0x2e, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x8b, 0x4f, 0x2b, 0xff, 0x8a, 0x4e, 0x29, 0xff, 0x88, 0x4d, 0x29, 0xff, 0x88, 0x4c, 0x29, 0xff, 0x86, 0x4b, 0x27, 0xff, 0x86, 0x4a, 0x26, 0xff, 0x85, 0x49, 0x26, 0xff, 0x84, 0x49, 0x26, 0xff, 0x85, 0x49, 0x26, 0xff, 0x84, 0x49, 0x26, 0xff, 0x84, 0x4a, 0x25, 0xff, 0x84, 0x49, 0x26, 0xff, 0x83, 0x48, 0x25, 0xff, 0x83, 0x48, 0x25, 0xff, + 0x82, 0x46, 0x22, 0xff, 0x80, 0x47, 0x22, 0xff, 0x80, 0x47, 0x22, 0xff, 0x80, 0x47, 0x22, 0xff, 0x82, 0x47, 0x23, 0xff, 0x80, 0x47, 0x24, 0xff, 0x7e, 0x44, 0x1f, 0xff, 0x8d, 0x52, 0x2f, 0xff, 0x92, 0x55, 0x32, 0xff, 0x94, 0x57, 0x33, 0xff, 0x93, 0x57, 0x32, 0xff, 0x93, 0x56, 0x32, 0xff, 0x93, 0x56, 0x32, 0xff, 0x94, 0x56, 0x31, 0xff, 0x94, 0x57, 0x31, 0xff, 0x94, 0x56, 0x32, 0xff, 0x96, 0x57, 0x32, 0xff, 0x97, 0x59, 0x32, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x9b, 0x5c, 0x33, 0xff, 0x9c, 0x5e, 0x34, 0xff, 0x9f, 0x60, 0x36, 0xff, 0xa2, 0x63, 0x37, 0xff, 0xa4, 0x66, 0x38, 0xff, 0xa9, 0x69, 0x3a, 0xff, 0xab, 0x6a, 0x3b, 0xff, 0xb0, 0x6f, 0x3e, 0xff, 0xb6, 0x75, 0x43, 0xff, 0xbc, 0x7b, 0x47, 0xff, 0xbb, 0x7c, 0x47, 0xff, 0xc1, 0x81, 0x4b, 0xff, 0xbf, 0x7e, 0x49, 0xff, 0xc2, 0x80, 0x4a, 0xff, 0xc7, 0x83, 0x4c, 0xff, 0xcf, 0x87, 0x4e, 0xff, 0xd8, 0x8c, 0x52, 0xff, 0xdf, 0x90, 0x58, 0xff, 0xe3, 0x96, 0x5d, 0xff, 0xe2, 0x9c, 0x62, 0xff, 0xe3, 0xa2, 0x68, 0xff, 0xe1, 0xa3, 0x69, 0xff, 0xe3, 0xa7, 0x6c, 0xff, 0xe3, 0xaa, 0x6e, 0xff, 0xe2, 0xae, 0x70, 0xff, 0xe1, 0xb0, 0x74, 0xff, 0xe3, 0xba, 0x7b, 0xff, 0xe3, 0xbc, 0x7d, 0xff, 0xe3, 0xbf, 0x7b, 0xff, 0xe3, 0xc4, 0x75, 0xff, 0xe3, 0xc5, 0x71, 0xff, 0xe3, 0xbc, 0x69, 0xff, 0xe1, 0xb4, 0x65, 0xff, 0xe2, 0xaf, 0x65, 0xff, 0xe1, 0xad, 0x68, 0xff, 0xe2, 0xae, 0x69, 0xff, 0xe1, 0xae, 0x6a, 0xff, 0xe1, 0xaf, 0x6c, 0xff, 0xe1, 0xb0, 0x6b, 0xff, 0xe1, 0xb1, 0x6b, 0xff, 0xe0, 0xb5, 0x6a, 0xff, 0xd9, 0xa5, 0x5e, 0xff, 0xdd, 0xa5, 0x5d, 0xff, 0xe0, 0xa6, 0x5b, 0xff, 0xde, 0xa0, 0x58, 0xff, 0xe0, 0x9d, 0x56, 0xff, 0xe0, 0x9d, 0x54, 0xff, 0xe1, 0x9b, 0x55, 0xff, 0xe2, 0x9d, 0x58, 0xff, 0xe0, 0x9d, 0x58, 0xff, 0xe1, 0x97, 0x57, 0xff, 0xe0, 0x99, 0x58, 0xff, 0xe1, 0x9b, 0x59, 0xff, 0xdf, 0x98, 0x58, 0xff, 0xe1, 0xa1, 0x5e, 0xff, 0xdc, 0xa7, 0x58, 0xff, 0xcc, 0x8e, 0x36, 0xff, 0xd0, 0x8f, 0x38, 0xff, 0xcf, 0x91, 0x3a, 0xff, 0xc4, 0x8c, 0x3c, 0xff, 0xb1, 0x75, 0x3d, 0xff, 0xb1, 0x76, 0x44, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xb1, 0x78, 0x46, 0xff, 0xb0, 0x78, 0x45, 0xff, 0xb0, 0x78, 0x48, 0xff, 0xaf, 0x79, 0x46, 0xff, 0xae, 0x77, 0x47, 0xff, 0xac, 0x75, 0x46, 0xff, 0xac, 0x75, 0x44, 0xff, 0xac, 0x76, 0x44, 0xff, 0xaa, 0x72, 0x41, 0xff, 0xaa, 0x71, 0x40, 0xff, 0xaa, 0x73, 0x42, 0xff, 0xa8, 0x71, 0x40, 0xff, 0xa7, 0x6f, 0x3e, 0xff, 0xa6, 0x6e, 0x40, 0xff, 0xa4, 0x6e, 0x3d, 0xff, 0xa4, 0x6d, 0x3d, 0xff, 0xa2, 0x6a, 0x3d, 0xff, 0x9b, 0x61, 0x37, 0xff, 0x96, 0x5c, 0x36, 0xff, 0x96, 0x5c, 0x36, 0xff, 0x95, 0x5c, 0x36, 0xff, 0x95, 0x5b, 0x35, 0xff, 0x95, 0x5b, 0x33, 0xff, 0x95, 0x5c, 0x33, 0xff, 0x95, 0x5b, 0x33, 0xff, 0x94, 0x5b, 0x33, 0xff, 0x94, 0x5a, 0x32, 0xff, 0x93, 0x5a, 0x33, 0xff, 0x90, 0x56, 0x31, 0xff, 0x8c, 0x51, 0x2f, 0xff, 0x8b, 0x51, 0x2f, 0xff, 0x8c, 0x52, 0x2e, 0xff, 0x8b, 0x50, 0x2e, 0xff, 0x8a, 0x50, 0x2d, 0xff, 0x8a, 0x51, 0x2c, 0xff, 0x8b, 0x50, 0x2a, 0xff, 0x8b, 0x50, 0x2c, 0xff, 0x8d, 0x51, 0x2d, 0xff, 0x8c, 0x51, 0x2c, 0xff, 0x8c, 0x50, 0x2d, 0xff, 0x8d, 0x51, 0x2e, 0xff, 0x8e, 0x54, 0x2e, 0xff, 0x8f, 0x54, 0x2d, 0xff, 0x90, 0x56, 0x2e, 0xff, 0x92, 0x58, 0x30, 0xff, 0x94, 0x59, 0x32, 0xff, 0x95, 0x5a, 0x32, 0xff, 0x95, 0x5c, 0x33, 0xff, 0x96, 0x5e, 0x35, 0xff, 0x98, 0x5f, 0x36, 0xff, 0x99, 0x60, 0x37, 0xff, 0x9a, 0x61, 0x37, 0xff, 0x9b, 0x63, 0x37, 0xff, 0x9b, 0x64, 0x38, 0xff, 0x9d, 0x64, 0x38, 0xff, 0x9e, 0x65, 0x39, 0xff, 0xa1, 0x67, 0x3b, 0xff, 0xa2, 0x68, 0x3b, 0xff, 0xa3, 0x69, 0x3a, 0xff, 0xa4, 0x6b, 0x3b, 0xff, 0xa5, 0x6c, 0x3d, 0xff, 0xa7, 0x6e, 0x3c, 0xff, 0xa8, 0x6e, 0x3c, 0xff, 0xa8, 0x6c, 0x3a, 0xff, 0xa8, 0x6c, 0x38, 0xff, 0xa9, 0x6e, 0x38, 0xff, 0xad, 0x6f, 0x38, 0xff, 0xaf, 0x71, 0x38, 0xff, 0xb0, 0x72, 0x38, 0xff, 0xb2, 0x73, 0x39, 0xff, 0xb6, 0x76, 0x3a, 0xff, 0xb8, 0x77, 0x3a, 0xff, 0xbb, 0x7a, 0x3a, 0xff, 0xbd, 0x7d, 0x3a, 0xff, 0xc0, 0x80, 0x3e, 0xff, 0xc3, 0x83, 0x41, 0xff, 0xc6, 0x88, 0x45, 0xff, 0xc9, 0x8b, 0x49, 0xff, 0xcd, 0x8e, 0x4b, 0xff, 0xd0, 0x90, 0x4d, 0xff, 0xd4, 0x91, 0x51, 0xff, 0xd9, 0x93, 0x54, 0xff, 0xdd, 0x97, 0x56, 0xff, 0xe0, 0x9a, 0x59, 0xff, 0xe1, 0x9c, 0x5a, 0xff, 0xe2, 0x9d, 0x5a, 0xff, 0xe2, 0x9f, 0x58, 0xff, 0xe2, 0x9d, 0x59, 0xff, 0xe2, 0x9e, 0x5a, 0xff, 0xe1, 0x9f, 0x59, 0xff, 0xe0, 0x9f, 0x58, 0xff, 0xe0, 0xa0, 0x59, 0xff, 0xe1, 0xa2, 0x5b, 0xff, 0xe2, 0xa5, 0x5e, 0xff, 0xe2, 0xa2, 0x5d, 0xff, 0xe0, 0xa4, 0x5e, 0xff, 0xe2, 0xa2, 0x5c, 0xff, 0xe0, 0xa2, 0x5c, 0xff, 0xe2, 0xa1, 0x5c, 0xff, 0xe2, 0xa1, 0x5a, 0xff, 0xe0, 0xa0, 0x5d, 0xff, 0xe2, 0xa1, 0x5c, 0xff, 0xe2, 0xa3, 0x5c, 0xff, 0xe2, 0x9d, 0x5b, 0xff, 0xe2, 0x96, 0x5a, 0xff, 0xe2, 0x94, 0x5a, 0xff, 0xb0, 0x77, 0x44, 0xff, 0x9f, 0x64, 0x38, 0xff, 0xa0, 0x64, 0x38, 0xff, 0xa0, 0x64, 0x37, 0xff, 0xa3, 0x67, 0x38, 0xff, 0xa2, 0x68, 0x39, 0xff, 0xa3, 0x68, 0x38, 0xff, 0xa2, 0x68, 0x37, 0xff, 0xa3, 0x68, 0x36, 0xff, 0xa1, 0x68, 0x36, 0xff, 0xa1, 0x68, 0x37, 0xff, 0xa2, 0x67, 0x37, 0xff, 0xa1, 0x68, 0x37, 0xff, 0xa1, 0x66, 0x37, 0xff, 0xa0, 0x66, 0x39, 0xff, 0xa0, 0x66, 0x3a, 0xff, 0xa2, 0x66, 0x3c, 0xff, 0xa2, 0x67, 0x3d, 0xff, 0xa3, 0x68, 0x3d, 0xff, 0x9d, 0x62, 0x3a, 0xff, 0x96, 0x5b, 0x34, 0xff, 0x96, 0x59, 0x33, 0xff, 0x96, 0x5a, 0x34, 0xff, 0x92, 0x57, 0x33, 0xff, 0x91, 0x54, 0x31, 0xff, 0x8f, 0x54, 0x31, 0xff, 0x90, 0x55, 0x31, 0xff, 0x8f, 0x53, 0x31, 0xff, 0x8d, 0x50, 0x2e, 0xff, 0x8d, 0x50, 0x2e, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x8b, 0x4d, 0x2c, 0xff, 0x8a, 0x4f, 0x2a, 0xff, 0x87, 0x4c, 0x28, 0xff, 0x87, 0x4a, 0x28, 0xff, 0x85, 0x4a, 0x26, 0xff, 0x85, 0x4a, 0x26, 0xff, 0x84, 0x49, 0x26, 0xff, 0x83, 0x4a, 0x24, 0xff, 0x84, 0x48, 0x26, 0xff, 0x83, 0x48, 0x24, 0xff, 0x82, 0x47, 0x25, 0xff, 0x82, 0x48, 0x22, 0xff, 0x80, 0x47, 0x23, 0xff, 0x80, 0x48, 0x25, 0xff, 0x82, 0x46, 0x23, 0xff, + 0x7f, 0x46, 0x22, 0xff, 0x7e, 0x46, 0x21, 0xff, 0x7e, 0x46, 0x21, 0xff, 0x7f, 0x46, 0x22, 0xff, 0x7e, 0x46, 0x21, 0xff, 0x84, 0x4b, 0x28, 0xff, 0x8f, 0x54, 0x32, 0xff, 0x91, 0x54, 0x32, 0xff, 0x91, 0x54, 0x31, 0xff, 0x8f, 0x54, 0x31, 0xff, 0x8f, 0x53, 0x30, 0xff, 0x90, 0x53, 0x30, 0xff, 0x90, 0x53, 0x30, 0xff, 0x90, 0x53, 0x30, 0xff, 0x90, 0x53, 0x30, 0xff, 0x91, 0x54, 0x30, 0xff, 0x93, 0x54, 0x30, 0xff, 0x94, 0x56, 0x31, 0xff, 0x96, 0x59, 0x31, 0xff, 0x97, 0x58, 0x32, 0xff, 0x99, 0x5b, 0x32, 0xff, 0x9e, 0x5e, 0x34, 0xff, 0x9f, 0x61, 0x35, 0xff, 0xa2, 0x63, 0x37, 0xff, 0xa4, 0x66, 0x37, 0xff, 0xa8, 0x68, 0x3a, 0xff, 0xad, 0x6f, 0x3c, 0xff, 0xb5, 0x75, 0x40, 0xff, 0xba, 0x79, 0x43, 0xff, 0xbe, 0x7c, 0x47, 0xff, 0xbe, 0x7c, 0x47, 0xff, 0xbd, 0x7c, 0x47, 0xff, 0xc0, 0x7e, 0x49, 0xff, 0xc4, 0x81, 0x4a, 0xff, 0xcc, 0x87, 0x4d, 0xff, 0xd5, 0x8c, 0x51, 0xff, 0xe0, 0x90, 0x55, 0xff, 0xe3, 0x95, 0x59, 0xff, 0xe2, 0x9a, 0x5e, 0xff, 0xe3, 0xa1, 0x63, 0xff, 0xe0, 0xa5, 0x69, 0xff, 0xe2, 0xa7, 0x6a, 0xff, 0xe3, 0xab, 0x6c, 0xff, 0xe3, 0xb1, 0x70, 0xff, 0xe2, 0xb5, 0x73, 0xff, 0xe3, 0xba, 0x76, 0xff, 0xe2, 0xc0, 0x7a, 0xff, 0xe2, 0xc2, 0x80, 0xff, 0xe2, 0xc3, 0x7e, 0xff, 0xe3, 0xc8, 0x7a, 0xff, 0xe2, 0xc8, 0x73, 0xff, 0xe3, 0xc4, 0x6d, 0xff, 0xe1, 0xb6, 0x6a, 0xff, 0xe1, 0xb0, 0x6a, 0xff, 0xe1, 0xae, 0x69, 0xff, 0xe1, 0xad, 0x69, 0xff, 0xe1, 0xae, 0x6a, 0xff, 0xe1, 0xaf, 0x6c, 0xff, 0xe1, 0xae, 0x6b, 0xff, 0xe3, 0xb0, 0x6c, 0xff, 0xe1, 0xb0, 0x6d, 0xff, 0xd8, 0xa2, 0x5d, 0xff, 0xdd, 0xa6, 0x5c, 0xff, 0xdf, 0xa3, 0x5a, 0xff, 0xe0, 0xa0, 0x58, 0xff, 0xe0, 0x9d, 0x56, 0xff, 0xe1, 0x9c, 0x55, 0xff, 0xe0, 0x9a, 0x57, 0xff, 0xde, 0x99, 0x57, 0xff, 0xdf, 0x98, 0x57, 0xff, 0xe0, 0x9a, 0x58, 0xff, 0xe0, 0x9b, 0x57, 0xff, 0xe1, 0x98, 0x57, 0xff, 0xdf, 0x9c, 0x59, 0xff, 0xde, 0xa9, 0x5c, 0xff, 0xd7, 0xa1, 0x4e, 0xff, 0xd2, 0x8f, 0x35, 0xff, 0xd4, 0x97, 0x3a, 0xff, 0xc8, 0x8d, 0x41, 0xff, 0xae, 0x72, 0x40, 0xff, 0xb3, 0x78, 0x43, 0xff, 0xb3, 0x7b, 0x47, 0xff, 0xb2, 0x7b, 0x49, 0xff, 0xb2, 0x7b, 0x48, 0xff, 0xb1, 0x78, 0x47, 0xff, 0xb0, 0x78, 0x47, 0xff, 0xb0, 0x78, 0x47, 0xff, 0xaf, 0x78, 0x46, 0xff, 0xaf, 0x79, 0x46, 0xff, 0xad, 0x78, 0x45, 0xff, 0xac, 0x76, 0x44, 0xff, 0xaa, 0x74, 0x41, 0xff, 0xaa, 0x73, 0x3f, 0xff, 0xaa, 0x72, 0x41, 0xff, 0xa8, 0x6f, 0x40, 0xff, 0xa7, 0x71, 0x3f, 0xff, 0xa6, 0x6e, 0x3e, 0xff, 0xa6, 0x6d, 0x3e, 0xff, 0xa1, 0x6a, 0x3c, 0xff, 0x9a, 0x61, 0x37, 0xff, 0x98, 0x5d, 0x36, 0xff, 0x97, 0x5e, 0x36, 0xff, 0x96, 0x5d, 0x35, 0xff, 0x95, 0x5b, 0x34, 0xff, 0x95, 0x5b, 0x34, 0xff, 0x94, 0x5b, 0x34, 0xff, 0x95, 0x5a, 0x33, 0xff, 0x93, 0x5a, 0x32, 0xff, 0x94, 0x5b, 0x32, 0xff, 0x93, 0x59, 0x33, 0xff, 0x8f, 0x55, 0x31, 0xff, 0x8d, 0x52, 0x2f, 0xff, 0x8c, 0x51, 0x2f, 0xff, 0x8c, 0x52, 0x2f, 0xff, 0x8c, 0x51, 0x2d, 0xff, 0x8a, 0x4f, 0x2b, 0xff, 0x8a, 0x50, 0x2a, 0xff, 0x8b, 0x4f, 0x2c, 0xff, 0x8a, 0x51, 0x2d, 0xff, 0x8c, 0x51, 0x2c, 0xff, 0x8d, 0x51, 0x2c, 0xff, 0x8c, 0x51, 0x2c, 0xff, 0x8c, 0x51, 0x2c, 0xff, 0x8c, 0x51, 0x2c, 0xff, 0x8e, 0x54, 0x2d, 0xff, 0x8e, 0x54, 0x2f, 0xff, 0x90, 0x56, 0x30, 0xff, 0x93, 0x58, 0x31, 0xff, 0x93, 0x58, 0x32, 0xff, 0x94, 0x5b, 0x33, 0xff, 0x96, 0x5c, 0x34, 0xff, 0x96, 0x5c, 0x34, 0xff, 0x98, 0x5e, 0x35, 0xff, 0x99, 0x5f, 0x36, 0xff, 0x99, 0x5f, 0x37, 0xff, 0x9b, 0x62, 0x37, 0xff, 0x9d, 0x63, 0x38, 0xff, 0x9e, 0x65, 0x38, 0xff, 0x9f, 0x66, 0x39, 0xff, 0xa1, 0x66, 0x3a, 0xff, 0xa1, 0x68, 0x3a, 0xff, 0xa2, 0x69, 0x3a, 0xff, 0xa2, 0x68, 0x39, 0xff, 0xa3, 0x67, 0x38, 0xff, 0xa4, 0x67, 0x38, 0xff, 0xa5, 0x68, 0x37, 0xff, 0xa6, 0x6a, 0x37, 0xff, 0xa8, 0x6a, 0x37, 0xff, 0xaa, 0x6c, 0x37, 0xff, 0xac, 0x6e, 0x37, 0xff, 0xad, 0x6f, 0x37, 0xff, 0xb0, 0x71, 0x38, 0xff, 0xb2, 0x73, 0x37, 0xff, 0xb5, 0x75, 0x38, 0xff, 0xb7, 0x78, 0x38, 0xff, 0xba, 0x7a, 0x39, 0xff, 0xbd, 0x7c, 0x3a, 0xff, 0xbf, 0x81, 0x3e, 0xff, 0xc0, 0x85, 0x42, 0xff, 0xc4, 0x88, 0x44, 0xff, 0xc6, 0x8b, 0x48, 0xff, 0xc9, 0x8d, 0x4b, 0xff, 0xcd, 0x90, 0x4d, 0xff, 0xd0, 0x90, 0x50, 0xff, 0xd4, 0x90, 0x52, 0xff, 0xd8, 0x93, 0x54, 0xff, 0xdc, 0x97, 0x57, 0xff, 0xdf, 0x9b, 0x58, 0xff, 0xe2, 0x9d, 0x59, 0xff, 0xe1, 0x9b, 0x57, 0xff, 0xe3, 0x9d, 0x58, 0xff, 0xe3, 0x9e, 0x5a, 0xff, 0xe3, 0x9e, 0x5a, 0xff, 0xe1, 0xa1, 0x5a, 0xff, 0xe1, 0x9f, 0x59, 0xff, 0xe0, 0xa0, 0x58, 0xff, 0xe2, 0x9e, 0x5b, 0xff, 0xe2, 0x9e, 0x5c, 0xff, 0xe1, 0x9c, 0x5b, 0xff, 0xe2, 0x9c, 0x57, 0xff, 0xe2, 0x9e, 0x59, 0xff, 0xe0, 0x9f, 0x58, 0xff, 0xe3, 0xa0, 0x59, 0xff, 0xe1, 0x9d, 0x59, 0xff, 0xe0, 0x9d, 0x59, 0xff, 0xe2, 0x9a, 0x59, 0xff, 0xe0, 0x95, 0x57, 0xff, 0xe2, 0x93, 0x58, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xa0, 0x65, 0x37, 0xff, 0xa0, 0x63, 0x37, 0xff, 0xa1, 0x63, 0x37, 0xff, 0xa2, 0x66, 0x37, 0xff, 0xa2, 0x66, 0x37, 0xff, 0xa3, 0x66, 0x37, 0xff, 0xa4, 0x67, 0x38, 0xff, 0xa2, 0x67, 0x38, 0xff, 0xa3, 0x68, 0x3a, 0xff, 0xa3, 0x68, 0x3a, 0xff, 0xa2, 0x67, 0x3a, 0xff, 0xa0, 0x65, 0x38, 0xff, 0xa1, 0x67, 0x37, 0xff, 0xa0, 0x65, 0x39, 0xff, 0xa0, 0x65, 0x3a, 0xff, 0xa1, 0x66, 0x3b, 0xff, 0xa1, 0x65, 0x3b, 0xff, 0x9f, 0x63, 0x38, 0xff, 0x97, 0x5b, 0x34, 0xff, 0x97, 0x5b, 0x34, 0xff, 0x96, 0x5a, 0x34, 0xff, 0x93, 0x57, 0x34, 0xff, 0x91, 0x55, 0x31, 0xff, 0x90, 0x53, 0x31, 0xff, 0x91, 0x55, 0x31, 0xff, 0x8f, 0x52, 0x30, 0xff, 0x8d, 0x52, 0x2f, 0xff, 0x8d, 0x50, 0x2f, 0xff, 0x8d, 0x50, 0x2d, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x8b, 0x4d, 0x2a, 0xff, 0x88, 0x4c, 0x28, 0xff, 0x87, 0x4b, 0x27, 0xff, 0x85, 0x4a, 0x26, 0xff, 0x85, 0x49, 0x26, 0xff, 0x84, 0x48, 0x26, 0xff, 0x83, 0x49, 0x25, 0xff, 0x83, 0x48, 0x24, 0xff, 0x82, 0x47, 0x24, 0xff, 0x81, 0x47, 0x24, 0xff, 0x82, 0x47, 0x23, 0xff, 0x80, 0x47, 0x22, 0xff, 0x80, 0x47, 0x22, 0xff, 0x7f, 0x46, 0x22, 0xff, 0x7f, 0x47, 0x22, 0xff, + 0x7d, 0x46, 0x21, 0xff, 0x7e, 0x47, 0x21, 0xff, 0x7c, 0x44, 0x20, 0xff, 0x7e, 0x45, 0x21, 0xff, 0x88, 0x4f, 0x2c, 0xff, 0x8f, 0x54, 0x32, 0xff, 0x8e, 0x52, 0x30, 0xff, 0x8d, 0x50, 0x30, 0xff, 0x8e, 0x52, 0x2f, 0xff, 0x8e, 0x52, 0x2f, 0xff, 0x8d, 0x50, 0x2e, 0xff, 0x8d, 0x50, 0x2e, 0xff, 0x8d, 0x50, 0x2e, 0xff, 0x8d, 0x51, 0x2e, 0xff, 0x8e, 0x51, 0x2e, 0xff, 0x8f, 0x51, 0x2e, 0xff, 0x90, 0x53, 0x2f, 0xff, 0x91, 0x54, 0x30, 0xff, 0x93, 0x55, 0x30, 0xff, 0x96, 0x58, 0x31, 0xff, 0x98, 0x5a, 0x32, 0xff, 0x9a, 0x5c, 0x33, 0xff, 0x9d, 0x5e, 0x33, 0xff, 0xa0, 0x61, 0x35, 0xff, 0xa3, 0x65, 0x37, 0xff, 0xa8, 0x6b, 0x3b, 0xff, 0xaf, 0x70, 0x40, 0xff, 0xb3, 0x73, 0x40, 0xff, 0xb5, 0x77, 0x41, 0xff, 0xb9, 0x7a, 0x44, 0xff, 0xbe, 0x7c, 0x45, 0xff, 0xbb, 0x7b, 0x45, 0xff, 0xbd, 0x7e, 0x46, 0xff, 0xc2, 0x80, 0x4a, 0xff, 0xc9, 0x84, 0x4a, 0xff, 0xd2, 0x89, 0x4e, 0xff, 0xdc, 0x8f, 0x52, 0xff, 0xe3, 0x96, 0x58, 0xff, 0xe3, 0x9a, 0x5b, 0xff, 0xe2, 0x9e, 0x60, 0xff, 0xe3, 0xa5, 0x64, 0xff, 0xe3, 0xab, 0x69, 0xff, 0xe3, 0xae, 0x6b, 0xff, 0xe3, 0xb2, 0x6d, 0xff, 0xe3, 0xb9, 0x71, 0xff, 0xe3, 0xc0, 0x75, 0xff, 0xe3, 0xc6, 0x78, 0xff, 0xe1, 0xc6, 0x7c, 0xff, 0xe1, 0xc9, 0x83, 0xff, 0xe3, 0xca, 0x81, 0xff, 0xe3, 0xcb, 0x7b, 0xff, 0xe2, 0xca, 0x74, 0xff, 0xe3, 0xc2, 0x6f, 0xff, 0xe2, 0xb6, 0x6b, 0xff, 0xe3, 0xb0, 0x6b, 0xff, 0xe1, 0xae, 0x6a, 0xff, 0xe1, 0xad, 0x6c, 0xff, 0xe3, 0xad, 0x6b, 0xff, 0xe3, 0xab, 0x6a, 0xff, 0xe2, 0xa9, 0x6a, 0xff, 0xe3, 0xaf, 0x6d, 0xff, 0xe0, 0xb1, 0x6d, 0xff, 0xdb, 0xa5, 0x62, 0xff, 0xdd, 0xa3, 0x5c, 0xff, 0xde, 0xa3, 0x58, 0xff, 0xde, 0x9f, 0x57, 0xff, 0xe1, 0x9c, 0x57, 0xff, 0xe0, 0x9c, 0x58, 0xff, 0xdc, 0x99, 0x56, 0xff, 0xde, 0x98, 0x56, 0xff, 0xde, 0x98, 0x56, 0xff, 0xde, 0x98, 0x56, 0xff, 0xe0, 0x98, 0x57, 0xff, 0xe0, 0x9c, 0x58, 0xff, 0xe0, 0xa9, 0x5c, 0xff, 0xde, 0xab, 0x58, 0xff, 0xd0, 0x98, 0x3f, 0xff, 0xcb, 0x8c, 0x3a, 0xff, 0xb8, 0x7f, 0x40, 0xff, 0xb1, 0x78, 0x46, 0xff, 0xb3, 0x7b, 0x46, 0xff, 0xb4, 0x7b, 0x47, 0xff, 0xb3, 0x7a, 0x48, 0xff, 0xb2, 0x7b, 0x49, 0xff, 0xb2, 0x7b, 0x49, 0xff, 0xb1, 0x7a, 0x48, 0xff, 0xb0, 0x79, 0x46, 0xff, 0xb0, 0x79, 0x46, 0xff, 0xaf, 0x79, 0x46, 0xff, 0xae, 0x78, 0x46, 0xff, 0xaf, 0x79, 0x47, 0xff, 0xad, 0x75, 0x44, 0xff, 0xaa, 0x73, 0x41, 0xff, 0xa9, 0x73, 0x40, 0xff, 0xaa, 0x73, 0x41, 0xff, 0xa9, 0x71, 0x40, 0xff, 0xa7, 0x70, 0x3e, 0xff, 0xa6, 0x6f, 0x40, 0xff, 0x9f, 0x66, 0x3c, 0xff, 0x99, 0x5f, 0x35, 0xff, 0x9a, 0x60, 0x37, 0xff, 0x98, 0x5e, 0x36, 0xff, 0x97, 0x5e, 0x34, 0xff, 0x97, 0x5e, 0x34, 0xff, 0x96, 0x5c, 0x34, 0xff, 0x94, 0x5b, 0x34, 0xff, 0x94, 0x5b, 0x33, 0xff, 0x94, 0x5a, 0x33, 0xff, 0x94, 0x5a, 0x34, 0xff, 0x92, 0x58, 0x32, 0xff, 0x8e, 0x54, 0x2f, 0xff, 0x8e, 0x53, 0x2f, 0xff, 0x8c, 0x53, 0x2f, 0xff, 0x8c, 0x51, 0x2e, 0xff, 0x8c, 0x51, 0x2d, 0xff, 0x8c, 0x50, 0x2d, 0xff, 0x8b, 0x50, 0x2c, 0xff, 0x89, 0x50, 0x2b, 0xff, 0x89, 0x50, 0x2b, 0xff, 0x8a, 0x51, 0x2c, 0xff, 0x8a, 0x50, 0x2b, 0xff, 0x8c, 0x51, 0x2b, 0xff, 0x8c, 0x51, 0x2c, 0xff, 0x8d, 0x53, 0x2c, 0xff, 0x8d, 0x53, 0x2d, 0xff, 0x8d, 0x53, 0x2d, 0xff, 0x8f, 0x55, 0x2e, 0xff, 0x91, 0x56, 0x30, 0xff, 0x92, 0x56, 0x31, 0xff, 0x93, 0x58, 0x32, 0xff, 0x93, 0x5a, 0x33, 0xff, 0x95, 0x5c, 0x34, 0xff, 0x96, 0x5c, 0x35, 0xff, 0x97, 0x5e, 0x35, 0xff, 0x99, 0x60, 0x36, 0xff, 0x9b, 0x61, 0x37, 0xff, 0x9b, 0x62, 0x37, 0xff, 0x9d, 0x63, 0x38, 0xff, 0x9e, 0x63, 0x38, 0xff, 0x9e, 0x63, 0x38, 0xff, 0x9e, 0x63, 0x38, 0xff, 0x9e, 0x62, 0x36, 0xff, 0x9f, 0x62, 0x36, 0xff, 0xa1, 0x66, 0x37, 0xff, 0xa2, 0x66, 0x37, 0xff, 0xa4, 0x66, 0x38, 0xff, 0xa5, 0x68, 0x37, 0xff, 0xa7, 0x6a, 0x37, 0xff, 0xa8, 0x6b, 0x37, 0xff, 0xa9, 0x6c, 0x37, 0xff, 0xab, 0x6d, 0x37, 0xff, 0xad, 0x6e, 0x37, 0xff, 0xb0, 0x70, 0x37, 0xff, 0xb2, 0x72, 0x37, 0xff, 0xb5, 0x75, 0x37, 0xff, 0xb7, 0x77, 0x38, 0xff, 0xb9, 0x7a, 0x39, 0xff, 0xbc, 0x7f, 0x3b, 0xff, 0xbe, 0x81, 0x3f, 0xff, 0xbf, 0x83, 0x43, 0xff, 0xc1, 0x87, 0x46, 0xff, 0xc3, 0x89, 0x48, 0xff, 0xc7, 0x8b, 0x4b, 0xff, 0xc9, 0x8e, 0x4d, 0xff, 0xcd, 0x8f, 0x4d, 0xff, 0xcf, 0x91, 0x4f, 0xff, 0xd3, 0x94, 0x51, 0xff, 0xd6, 0x96, 0x52, 0xff, 0xdb, 0x9a, 0x55, 0xff, 0xdf, 0x98, 0x54, 0xff, 0xe1, 0x97, 0x54, 0xff, 0xe3, 0x9a, 0x56, 0xff, 0xe1, 0x9b, 0x57, 0xff, 0xe3, 0x9e, 0x59, 0xff, 0xe3, 0xa0, 0x5a, 0xff, 0xe2, 0xa0, 0x5b, 0xff, 0xe1, 0x9e, 0x59, 0xff, 0xe2, 0x9b, 0x59, 0xff, 0xe2, 0x9b, 0x59, 0xff, 0xe0, 0x99, 0x54, 0xff, 0xe2, 0x9a, 0x56, 0xff, 0xe2, 0x9b, 0x55, 0xff, 0xe2, 0x9a, 0x56, 0xff, 0xe1, 0x99, 0x58, 0xff, 0xdf, 0x97, 0x55, 0xff, 0xe0, 0x97, 0x56, 0xff, 0xe3, 0x95, 0x57, 0xff, 0xe0, 0x93, 0x56, 0xff, 0xb4, 0x78, 0x46, 0xff, 0x9f, 0x64, 0x38, 0xff, 0x9e, 0x63, 0x36, 0xff, 0x9f, 0x61, 0x35, 0xff, 0xa1, 0x63, 0x35, 0xff, 0xa0, 0x63, 0x34, 0xff, 0xa2, 0x65, 0x36, 0xff, 0xa4, 0x6a, 0x39, 0xff, 0xa6, 0x6b, 0x3b, 0xff, 0xa6, 0x6d, 0x3d, 0xff, 0xa6, 0x6b, 0x3d, 0xff, 0xa3, 0x67, 0x3c, 0xff, 0xa2, 0x67, 0x3a, 0xff, 0xa0, 0x65, 0x36, 0xff, 0xa0, 0x64, 0x37, 0xff, 0x9f, 0x64, 0x39, 0xff, 0xa2, 0x67, 0x3b, 0xff, 0x9e, 0x64, 0x38, 0xff, 0x97, 0x5c, 0x34, 0xff, 0x96, 0x5c, 0x34, 0xff, 0x96, 0x5a, 0x34, 0xff, 0x95, 0x59, 0x34, 0xff, 0x92, 0x57, 0x32, 0xff, 0x90, 0x55, 0x31, 0xff, 0x91, 0x54, 0x31, 0xff, 0x8f, 0x53, 0x30, 0xff, 0x8d, 0x51, 0x2f, 0xff, 0x8d, 0x51, 0x2f, 0xff, 0x8d, 0x50, 0x2d, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x8b, 0x4e, 0x2a, 0xff, 0x89, 0x4c, 0x29, 0xff, 0x87, 0x4b, 0x27, 0xff, 0x85, 0x49, 0x26, 0xff, 0x84, 0x49, 0x26, 0xff, 0x83, 0x48, 0x26, 0xff, 0x83, 0x4a, 0x23, 0xff, 0x82, 0x47, 0x22, 0xff, 0x81, 0x47, 0x24, 0xff, 0x80, 0x47, 0x24, 0xff, 0x80, 0x47, 0x23, 0xff, 0x80, 0x47, 0x24, 0xff, 0x7e, 0x47, 0x21, 0xff, 0x7f, 0x46, 0x21, 0xff, 0x7e, 0x46, 0x20, 0xff, 0x7e, 0x46, 0x21, 0xff, + 0x7d, 0x44, 0x20, 0xff, 0x7b, 0x42, 0x1e, 0xff, 0x81, 0x48, 0x25, 0xff, 0x8c, 0x52, 0x2e, 0xff, 0x8f, 0x53, 0x32, 0xff, 0x8c, 0x50, 0x2e, 0xff, 0x8c, 0x4f, 0x2e, 0xff, 0x8b, 0x50, 0x2d, 0xff, 0x8c, 0x4f, 0x2e, 0xff, 0x8b, 0x4f, 0x2c, 0xff, 0x8c, 0x4f, 0x2e, 0xff, 0x8c, 0x4f, 0x2d, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x8c, 0x50, 0x2c, 0xff, 0x8e, 0x50, 0x2e, 0xff, 0x8f, 0x51, 0x2e, 0xff, 0x90, 0x54, 0x2e, 0xff, 0x92, 0x53, 0x30, 0xff, 0x95, 0x56, 0x30, 0xff, 0x95, 0x57, 0x31, 0xff, 0x97, 0x58, 0x32, 0xff, 0x9b, 0x5c, 0x33, 0xff, 0x9e, 0x5f, 0x34, 0xff, 0xa5, 0x66, 0x37, 0xff, 0xa9, 0x6b, 0x3c, 0xff, 0xac, 0x6e, 0x40, 0xff, 0xae, 0x71, 0x41, 0xff, 0xb3, 0x74, 0x40, 0xff, 0xb7, 0x77, 0x40, 0xff, 0xbc, 0x7b, 0x44, 0xff, 0xbc, 0x7c, 0x45, 0xff, 0xbc, 0x7c, 0x45, 0xff, 0xc2, 0x80, 0x49, 0xff, 0xc8, 0x84, 0x4c, 0xff, 0xce, 0x88, 0x4d, 0xff, 0xdb, 0x8f, 0x51, 0xff, 0xe4, 0x95, 0x57, 0xff, 0xe3, 0x9a, 0x5b, 0xff, 0xe2, 0x9f, 0x60, 0xff, 0xe2, 0xa4, 0x62, 0xff, 0xe3, 0xaa, 0x66, 0xff, 0xe2, 0xb1, 0x6b, 0xff, 0xe3, 0xb6, 0x6d, 0xff, 0xe3, 0xbc, 0x70, 0xff, 0xe3, 0xc0, 0x73, 0xff, 0xe2, 0xca, 0x78, 0xff, 0xde, 0xcc, 0x7d, 0xff, 0xdc, 0xcc, 0x80, 0xff, 0xdd, 0xcd, 0x85, 0xff, 0xdd, 0xcc, 0x80, 0xff, 0xe1, 0xce, 0x7a, 0xff, 0xe3, 0xca, 0x77, 0xff, 0xe2, 0xc1, 0x6f, 0xff, 0xe3, 0xb5, 0x6a, 0xff, 0xe3, 0xae, 0x69, 0xff, 0xe3, 0xa9, 0x68, 0xff, 0xe2, 0xa9, 0x69, 0xff, 0xe2, 0xaa, 0x69, 0xff, 0xe2, 0xa6, 0x68, 0xff, 0xe3, 0xa7, 0x6b, 0xff, 0xe2, 0xae, 0x6e, 0xff, 0xde, 0xae, 0x6d, 0xff, 0xdd, 0xa5, 0x5f, 0xff, 0xde, 0xa5, 0x5d, 0xff, 0xdd, 0x9f, 0x59, 0xff, 0xde, 0x9e, 0x59, 0xff, 0xdd, 0x9c, 0x59, 0xff, 0xdc, 0x9a, 0x57, 0xff, 0xde, 0x98, 0x56, 0xff, 0xdd, 0x97, 0x55, 0xff, 0xdc, 0x98, 0x56, 0xff, 0xdd, 0x97, 0x56, 0xff, 0xde, 0x9c, 0x57, 0xff, 0xe1, 0xaa, 0x58, 0xff, 0xe1, 0xab, 0x5b, 0xff, 0xdb, 0xa7, 0x55, 0xff, 0xc7, 0x8e, 0x40, 0xff, 0xb6, 0x7b, 0x43, 0xff, 0xb3, 0x7b, 0x47, 0xff, 0xb6, 0x7c, 0x49, 0xff, 0xb6, 0x7d, 0x49, 0xff, 0xb4, 0x7e, 0x4a, 0xff, 0xb3, 0x7c, 0x4b, 0xff, 0xb3, 0x7c, 0x4b, 0xff, 0xb2, 0x7c, 0x48, 0xff, 0xb1, 0x7b, 0x48, 0xff, 0xb2, 0x7b, 0x47, 0xff, 0xb0, 0x7a, 0x46, 0xff, 0xaf, 0x79, 0x46, 0xff, 0xaf, 0x79, 0x47, 0xff, 0xad, 0x77, 0x46, 0xff, 0xac, 0x75, 0x43, 0xff, 0xab, 0x74, 0x40, 0xff, 0xaa, 0x73, 0x3f, 0xff, 0xaa, 0x72, 0x3f, 0xff, 0xa9, 0x72, 0x41, 0xff, 0xa5, 0x6c, 0x3e, 0xff, 0x9d, 0x62, 0x37, 0xff, 0x9b, 0x61, 0x38, 0xff, 0x9b, 0x61, 0x37, 0xff, 0x9a, 0x60, 0x36, 0xff, 0x98, 0x5f, 0x35, 0xff, 0x97, 0x5e, 0x35, 0xff, 0x96, 0x5d, 0x34, 0xff, 0x94, 0x5b, 0x33, 0xff, 0x94, 0x5b, 0x34, 0xff, 0x95, 0x5b, 0x34, 0xff, 0x94, 0x5a, 0x33, 0xff, 0x91, 0x57, 0x32, 0xff, 0x8e, 0x53, 0x30, 0xff, 0x8e, 0x53, 0x30, 0xff, 0x8d, 0x53, 0x2f, 0xff, 0x8d, 0x52, 0x2e, 0xff, 0x8c, 0x52, 0x2d, 0xff, 0x8c, 0x50, 0x2c, 0xff, 0x8b, 0x50, 0x2d, 0xff, 0x8a, 0x50, 0x2d, 0xff, 0x88, 0x4f, 0x2b, 0xff, 0x8a, 0x4f, 0x2c, 0xff, 0x8b, 0x4f, 0x2b, 0xff, 0x89, 0x50, 0x2b, 0xff, 0x8a, 0x50, 0x2c, 0xff, 0x8c, 0x50, 0x2b, 0xff, 0x8c, 0x52, 0x2c, 0xff, 0x8c, 0x53, 0x2c, 0xff, 0x8e, 0x53, 0x2d, 0xff, 0x8f, 0x53, 0x2f, 0xff, 0x90, 0x55, 0x2f, 0xff, 0x91, 0x57, 0x31, 0xff, 0x92, 0x58, 0x32, 0xff, 0x94, 0x5a, 0x32, 0xff, 0x94, 0x5b, 0x34, 0xff, 0x96, 0x5b, 0x34, 0xff, 0x97, 0x5d, 0x34, 0xff, 0x98, 0x5f, 0x36, 0xff, 0x99, 0x61, 0x37, 0xff, 0x99, 0x5f, 0x35, 0xff, 0x99, 0x5e, 0x34, 0xff, 0x9a, 0x5f, 0x34, 0xff, 0x9c, 0x60, 0x34, 0xff, 0x9d, 0x61, 0x35, 0xff, 0x9e, 0x61, 0x36, 0xff, 0x9f, 0x64, 0x36, 0xff, 0xa1, 0x66, 0x37, 0xff, 0xa3, 0x66, 0x37, 0xff, 0xa4, 0x67, 0x36, 0xff, 0xa5, 0x68, 0x36, 0xff, 0xa7, 0x69, 0x37, 0xff, 0xa8, 0x6a, 0x37, 0xff, 0xaa, 0x6c, 0x37, 0xff, 0xac, 0x6e, 0x37, 0xff, 0xae, 0x70, 0x37, 0xff, 0xb0, 0x72, 0x37, 0xff, 0xb2, 0x74, 0x38, 0xff, 0xb4, 0x75, 0x37, 0xff, 0xb5, 0x77, 0x37, 0xff, 0xb8, 0x78, 0x39, 0xff, 0xba, 0x7b, 0x3c, 0xff, 0xbd, 0x7f, 0x41, 0xff, 0xbf, 0x81, 0x43, 0xff, 0xc0, 0x84, 0x46, 0xff, 0xc1, 0x88, 0x48, 0xff, 0xc5, 0x8b, 0x49, 0xff, 0xc7, 0x8d, 0x4b, 0xff, 0xc9, 0x8e, 0x4b, 0xff, 0xcd, 0x90, 0x4d, 0xff, 0xd0, 0x91, 0x4d, 0xff, 0xd2, 0x93, 0x4f, 0xff, 0xd6, 0x93, 0x4e, 0xff, 0xda, 0x94, 0x50, 0xff, 0xdc, 0x94, 0x51, 0xff, 0xdf, 0x97, 0x52, 0xff, 0xe2, 0x9a, 0x54, 0xff, 0xe3, 0x9c, 0x56, 0xff, 0xe2, 0x9e, 0x57, 0xff, 0xe3, 0x9e, 0x59, 0xff, 0xe2, 0x9a, 0x59, 0xff, 0xe3, 0x99, 0x59, 0xff, 0xe1, 0x99, 0x56, 0xff, 0xe1, 0x96, 0x52, 0xff, 0xe1, 0x97, 0x52, 0xff, 0xe1, 0x98, 0x52, 0xff, 0xe1, 0x97, 0x54, 0xff, 0xdd, 0x95, 0x52, 0xff, 0xdf, 0x93, 0x52, 0xff, 0xe1, 0x96, 0x55, 0xff, 0xdf, 0x92, 0x53, 0xff, 0xb8, 0x78, 0x47, 0xff, 0x9f, 0x62, 0x36, 0xff, 0xa7, 0x6c, 0x3d, 0xff, 0xae, 0x72, 0x42, 0xff, 0xb2, 0x76, 0x45, 0xff, 0xb6, 0x77, 0x47, 0xff, 0xb8, 0x7b, 0x48, 0xff, 0xb9, 0x7b, 0x4a, 0xff, 0xba, 0x7d, 0x4c, 0xff, 0xbc, 0x7f, 0x4e, 0xff, 0xbb, 0x7d, 0x4d, 0xff, 0xbb, 0x7d, 0x4d, 0xff, 0xbc, 0x7d, 0x4c, 0xff, 0xbe, 0x7f, 0x4c, 0xff, 0xbb, 0x7c, 0x4a, 0xff, 0xbb, 0x81, 0x4f, 0xff, 0xa5, 0x6a, 0x3d, 0xff, 0x98, 0x5d, 0x35, 0xff, 0x96, 0x5b, 0x33, 0xff, 0x96, 0x5b, 0x34, 0xff, 0x95, 0x59, 0x34, 0xff, 0x94, 0x57, 0x34, 0xff, 0x90, 0x55, 0x31, 0xff, 0x90, 0x54, 0x31, 0xff, 0x8f, 0x53, 0x30, 0xff, 0x8e, 0x53, 0x2f, 0xff, 0x8e, 0x51, 0x2e, 0xff, 0x8d, 0x50, 0x2e, 0xff, 0x8b, 0x4f, 0x2c, 0xff, 0x8b, 0x4e, 0x2b, 0xff, 0x89, 0x4e, 0x29, 0xff, 0x86, 0x4c, 0x28, 0xff, 0x86, 0x4b, 0x27, 0xff, 0x86, 0x49, 0x26, 0xff, 0x84, 0x49, 0x26, 0xff, 0x81, 0x46, 0x24, 0xff, 0x81, 0x48, 0x24, 0xff, 0x81, 0x46, 0x22, 0xff, 0x80, 0x47, 0x22, 0xff, 0x80, 0x47, 0x22, 0xff, 0x7f, 0x46, 0x22, 0xff, 0x7f, 0x46, 0x20, 0xff, 0x7d, 0x46, 0x20, 0xff, 0x7d, 0x44, 0x20, 0xff, 0x7d, 0x44, 0x20, 0xff, 0x7d, 0x45, 0x20, 0xff, + 0x7c, 0x44, 0x20, 0xff, 0x81, 0x48, 0x25, 0xff, 0x8c, 0x50, 0x30, 0xff, 0x8d, 0x52, 0x30, 0xff, 0x8d, 0x52, 0x30, 0xff, 0x8c, 0x50, 0x2f, 0xff, 0x88, 0x4e, 0x2a, 0xff, 0x87, 0x4c, 0x2b, 0xff, 0x89, 0x4c, 0x2a, 0xff, 0x88, 0x4c, 0x2a, 0xff, 0x89, 0x4c, 0x2c, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x89, 0x4d, 0x2a, 0xff, 0x8b, 0x4e, 0x2a, 0xff, 0x8b, 0x4e, 0x2b, 0xff, 0x8c, 0x4f, 0x2b, 0xff, 0x8d, 0x50, 0x2d, 0xff, 0x8e, 0x50, 0x2e, 0xff, 0x92, 0x53, 0x30, 0xff, 0x94, 0x55, 0x30, 0xff, 0x96, 0x56, 0x30, 0xff, 0x97, 0x58, 0x31, 0xff, 0x9a, 0x5a, 0x32, 0xff, 0x9d, 0x60, 0x33, 0xff, 0xa3, 0x65, 0x36, 0xff, 0xa7, 0x6b, 0x3a, 0xff, 0xaa, 0x6e, 0x3d, 0xff, 0xad, 0x6f, 0x40, 0xff, 0xb0, 0x72, 0x3f, 0xff, 0xb4, 0x74, 0x3f, 0xff, 0xb9, 0x78, 0x43, 0xff, 0xbe, 0x7e, 0x47, 0xff, 0xbb, 0x7b, 0x44, 0xff, 0xc1, 0x81, 0x49, 0xff, 0xc6, 0x85, 0x4b, 0xff, 0xcf, 0x8a, 0x4e, 0xff, 0xda, 0x8e, 0x52, 0xff, 0xe3, 0x94, 0x55, 0xff, 0xe3, 0x99, 0x5a, 0xff, 0xe3, 0xa3, 0x5f, 0xff, 0xe3, 0xa8, 0x65, 0xff, 0xe2, 0xae, 0x68, 0xff, 0xe3, 0xb8, 0x6b, 0xff, 0xe3, 0xbe, 0x70, 0xff, 0xe3, 0xc1, 0x71, 0xff, 0xe3, 0xc4, 0x74, 0xff, 0xe2, 0xc9, 0x79, 0xff, 0xde, 0xce, 0x7b, 0xff, 0xda, 0xcd, 0x81, 0xff, 0xda, 0xcd, 0x84, 0xff, 0xdb, 0xce, 0x84, 0xff, 0xdd, 0xce, 0x7c, 0xff, 0xe2, 0xce, 0x78, 0xff, 0xe2, 0xc7, 0x72, 0xff, 0xe3, 0xba, 0x6b, 0xff, 0xe3, 0xb2, 0x68, 0xff, 0xe3, 0xaa, 0x67, 0xff, 0xe2, 0xaa, 0x67, 0xff, 0xe0, 0xa8, 0x68, 0xff, 0xe3, 0xa6, 0x68, 0xff, 0xe2, 0xa7, 0x6b, 0xff, 0xe3, 0xa9, 0x6c, 0xff, 0xe1, 0xa9, 0x6c, 0xff, 0xde, 0xa9, 0x69, 0xff, 0xdc, 0xa4, 0x5e, 0xff, 0xdd, 0xa2, 0x5a, 0xff, 0xdc, 0xa0, 0x5a, 0xff, 0xdb, 0x9c, 0x59, 0xff, 0xdc, 0x9a, 0x55, 0xff, 0xdb, 0x96, 0x55, 0xff, 0xdb, 0x96, 0x55, 0xff, 0xdb, 0x94, 0x54, 0xff, 0xdb, 0x96, 0x56, 0xff, 0xdb, 0x9b, 0x57, 0xff, 0xdf, 0xa9, 0x5a, 0xff, 0xe0, 0xac, 0x59, 0xff, 0xe0, 0xad, 0x59, 0xff, 0xce, 0x9a, 0x52, 0xff, 0xb6, 0x7b, 0x46, 0xff, 0xb7, 0x7c, 0x49, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb7, 0x7e, 0x4a, 0xff, 0xb6, 0x7f, 0x4b, 0xff, 0xb5, 0x7f, 0x4b, 0xff, 0xb4, 0x80, 0x4a, 0xff, 0xb4, 0x7e, 0x4a, 0xff, 0xb3, 0x7d, 0x49, 0xff, 0xb2, 0x7c, 0x47, 0xff, 0xb2, 0x7b, 0x46, 0xff, 0xb0, 0x7a, 0x45, 0xff, 0xaf, 0x79, 0x45, 0xff, 0xaf, 0x79, 0x47, 0xff, 0xae, 0x77, 0x43, 0xff, 0xab, 0x73, 0x40, 0xff, 0xab, 0x74, 0x40, 0xff, 0xaa, 0x73, 0x3f, 0xff, 0xa9, 0x73, 0x42, 0xff, 0xa4, 0x6c, 0x3f, 0xff, 0x9c, 0x62, 0x37, 0xff, 0x9d, 0x63, 0x39, 0xff, 0x9c, 0x61, 0x37, 0xff, 0x9a, 0x60, 0x37, 0xff, 0x9a, 0x60, 0x37, 0xff, 0x99, 0x5e, 0x36, 0xff, 0x97, 0x5d, 0x35, 0xff, 0x97, 0x5c, 0x33, 0xff, 0x95, 0x5a, 0x33, 0xff, 0x95, 0x5b, 0x34, 0xff, 0x92, 0x58, 0x32, 0xff, 0x8e, 0x53, 0x30, 0xff, 0x8e, 0x55, 0x31, 0xff, 0x8e, 0x54, 0x30, 0xff, 0x8d, 0x53, 0x30, 0xff, 0x8d, 0x54, 0x2e, 0xff, 0x8d, 0x53, 0x2d, 0xff, 0x8d, 0x51, 0x2e, 0xff, 0x8b, 0x51, 0x2d, 0xff, 0x8c, 0x50, 0x2e, 0xff, 0x8c, 0x51, 0x2d, 0xff, 0x8a, 0x50, 0x2c, 0xff, 0x89, 0x4f, 0x2c, 0xff, 0x89, 0x4f, 0x2b, 0xff, 0x89, 0x50, 0x2b, 0xff, 0x8b, 0x51, 0x2c, 0xff, 0x8b, 0x50, 0x2b, 0xff, 0x8c, 0x51, 0x2c, 0xff, 0x8c, 0x51, 0x2c, 0xff, 0x8d, 0x52, 0x2e, 0xff, 0x8e, 0x55, 0x30, 0xff, 0x8f, 0x56, 0x30, 0xff, 0x92, 0x58, 0x31, 0xff, 0x93, 0x59, 0x32, 0xff, 0x94, 0x59, 0x33, 0xff, 0x94, 0x5b, 0x33, 0xff, 0x95, 0x5c, 0x34, 0xff, 0x96, 0x5b, 0x34, 0xff, 0x94, 0x59, 0x32, 0xff, 0x95, 0x5a, 0x31, 0xff, 0x97, 0x5c, 0x33, 0xff, 0x99, 0x5d, 0x33, 0xff, 0x9a, 0x5e, 0x33, 0xff, 0x9b, 0x60, 0x34, 0xff, 0x9c, 0x61, 0x35, 0xff, 0x9e, 0x60, 0x35, 0xff, 0x9f, 0x62, 0x35, 0xff, 0xa0, 0x63, 0x35, 0xff, 0xa2, 0x64, 0x35, 0xff, 0xa4, 0x66, 0x36, 0xff, 0xa5, 0x67, 0x36, 0xff, 0xa7, 0x68, 0x36, 0xff, 0xa9, 0x6c, 0x37, 0xff, 0xab, 0x6e, 0x37, 0xff, 0xad, 0x6f, 0x37, 0xff, 0xaf, 0x71, 0x37, 0xff, 0xb0, 0x72, 0x38, 0xff, 0xb2, 0x73, 0x38, 0xff, 0xb4, 0x74, 0x39, 0xff, 0xb6, 0x75, 0x3a, 0xff, 0xb8, 0x77, 0x3c, 0xff, 0xba, 0x79, 0x3e, 0xff, 0xbc, 0x7c, 0x41, 0xff, 0xbd, 0x80, 0x46, 0xff, 0xbf, 0x82, 0x49, 0xff, 0xc1, 0x87, 0x4a, 0xff, 0xc3, 0x8a, 0x4b, 0xff, 0xc5, 0x8b, 0x4b, 0xff, 0xc7, 0x8c, 0x4c, 0xff, 0xc9, 0x8e, 0x4d, 0xff, 0xcd, 0x91, 0x4d, 0xff, 0xd0, 0x8f, 0x4d, 0xff, 0xd2, 0x8f, 0x4d, 0xff, 0xd6, 0x90, 0x4d, 0xff, 0xd8, 0x93, 0x4d, 0xff, 0xdb, 0x92, 0x4d, 0xff, 0xdd, 0x95, 0x4e, 0xff, 0xe0, 0x98, 0x53, 0xff, 0xe2, 0x9a, 0x55, 0xff, 0xe1, 0x98, 0x55, 0xff, 0xe2, 0x98, 0x57, 0xff, 0xe3, 0x98, 0x58, 0xff, 0xe1, 0x96, 0x55, 0xff, 0xe2, 0x96, 0x51, 0xff, 0xe4, 0x96, 0x51, 0xff, 0xda, 0x91, 0x50, 0xff, 0xd9, 0x91, 0x51, 0xff, 0xde, 0x90, 0x51, 0xff, 0xdd, 0x8f, 0x51, 0xff, 0xd8, 0x8e, 0x52, 0xff, 0xc9, 0x86, 0x52, 0xff, 0xb9, 0x7c, 0x4d, 0xff, 0xb7, 0x79, 0x49, 0xff, 0xb5, 0x77, 0x47, 0xff, 0xb6, 0x79, 0x47, 0xff, 0xb8, 0x78, 0x47, 0xff, 0xb7, 0x79, 0x47, 0xff, 0xb7, 0x7a, 0x48, 0xff, 0xb8, 0x7b, 0x4b, 0xff, 0xb9, 0x7c, 0x4d, 0xff, 0xb9, 0x7b, 0x4b, 0xff, 0xbb, 0x7c, 0x4c, 0xff, 0xbd, 0x7f, 0x4d, 0xff, 0xc0, 0x81, 0x4e, 0xff, 0xc3, 0x84, 0x51, 0xff, 0xbd, 0x81, 0x4d, 0xff, 0xa2, 0x66, 0x3c, 0xff, 0x9f, 0x63, 0x3a, 0xff, 0x9f, 0x64, 0x3a, 0xff, 0x9b, 0x5f, 0x37, 0xff, 0x97, 0x5c, 0x35, 0xff, 0x92, 0x56, 0x31, 0xff, 0x91, 0x55, 0x31, 0xff, 0x91, 0x56, 0x30, 0xff, 0x8e, 0x53, 0x2f, 0xff, 0x8e, 0x53, 0x2f, 0xff, 0x8d, 0x51, 0x2e, 0xff, 0x8b, 0x4f, 0x2c, 0xff, 0x8b, 0x4f, 0x2b, 0xff, 0x8a, 0x4e, 0x2a, 0xff, 0x89, 0x4d, 0x2a, 0xff, 0x87, 0x4c, 0x28, 0xff, 0x85, 0x4b, 0x27, 0xff, 0x84, 0x4b, 0x26, 0xff, 0x83, 0x49, 0x26, 0xff, 0x83, 0x48, 0x24, 0xff, 0x80, 0x46, 0x22, 0xff, 0x7f, 0x46, 0x20, 0xff, 0x7e, 0x46, 0x21, 0xff, 0x7e, 0x46, 0x22, 0xff, 0x7d, 0x46, 0x20, 0xff, 0x7c, 0x44, 0x20, 0xff, 0x7c, 0x44, 0x20, 0xff, 0x7c, 0x44, 0x20, 0xff, 0x7d, 0x44, 0x20, 0xff, 0x7c, 0x44, 0x20, 0xff, + 0x7f, 0x46, 0x23, 0xff, 0x8d, 0x52, 0x31, 0xff, 0x8c, 0x50, 0x2f, 0xff, 0x8c, 0x50, 0x30, 0xff, 0x8c, 0x4f, 0x2e, 0xff, 0x8b, 0x4f, 0x2f, 0xff, 0x8a, 0x4f, 0x2c, 0xff, 0x86, 0x4b, 0x27, 0xff, 0x84, 0x4a, 0x26, 0xff, 0x85, 0x4b, 0x26, 0xff, 0x85, 0x4b, 0x27, 0xff, 0x87, 0x4c, 0x28, 0xff, 0x88, 0x4b, 0x28, 0xff, 0x88, 0x4b, 0x29, 0xff, 0x8a, 0x4c, 0x28, 0xff, 0x8c, 0x4e, 0x2a, 0xff, 0x8c, 0x4f, 0x2a, 0xff, 0x8d, 0x50, 0x2d, 0xff, 0x90, 0x52, 0x2d, 0xff, 0x90, 0x52, 0x2d, 0xff, 0x93, 0x54, 0x2e, 0xff, 0x96, 0x57, 0x31, 0xff, 0x9a, 0x5a, 0x32, 0xff, 0x9d, 0x5e, 0x33, 0xff, 0xa1, 0x62, 0x36, 0xff, 0xa4, 0x66, 0x38, 0xff, 0xa8, 0x6b, 0x3a, 0xff, 0xac, 0x6f, 0x3c, 0xff, 0xae, 0x71, 0x3d, 0xff, 0xb1, 0x71, 0x3d, 0xff, 0xb5, 0x76, 0x40, 0xff, 0xbb, 0x7b, 0x44, 0xff, 0xbc, 0x7c, 0x45, 0xff, 0xbe, 0x81, 0x48, 0xff, 0xc4, 0x86, 0x4d, 0xff, 0xcd, 0x8b, 0x51, 0xff, 0xd7, 0x90, 0x52, 0xff, 0xe3, 0x96, 0x56, 0xff, 0xe2, 0x9b, 0x5a, 0xff, 0xe3, 0xa3, 0x5f, 0xff, 0xe3, 0xaa, 0x64, 0xff, 0xe2, 0xb3, 0x6c, 0xff, 0xe2, 0xba, 0x6c, 0xff, 0xe3, 0xc4, 0x70, 0xff, 0xe3, 0xc6, 0x74, 0xff, 0xe3, 0xc4, 0x75, 0xff, 0xe3, 0xc8, 0x76, 0xff, 0xe2, 0xcb, 0x79, 0xff, 0xdc, 0xce, 0x7c, 0xff, 0xdb, 0xcd, 0x80, 0xff, 0xda, 0xce, 0x83, 0xff, 0xd8, 0xcc, 0x7e, 0xff, 0xd9, 0xce, 0x77, 0xff, 0xe0, 0xcd, 0x73, 0xff, 0xe2, 0xc3, 0x6e, 0xff, 0xe2, 0xb8, 0x6a, 0xff, 0xe2, 0xad, 0x68, 0xff, 0xe3, 0xaa, 0x67, 0xff, 0xe2, 0xa7, 0x67, 0xff, 0xe2, 0xa4, 0x67, 0xff, 0xe2, 0xa5, 0x68, 0xff, 0xe3, 0xa7, 0x6c, 0xff, 0xe3, 0xa8, 0x6d, 0xff, 0xe1, 0xaa, 0x6b, 0xff, 0xdb, 0xa6, 0x61, 0xff, 0xdd, 0xa3, 0x60, 0xff, 0xdc, 0xa1, 0x5d, 0xff, 0xd8, 0x9d, 0x59, 0xff, 0xda, 0x9b, 0x58, 0xff, 0xdb, 0x97, 0x55, 0xff, 0xda, 0x95, 0x54, 0xff, 0xda, 0x95, 0x55, 0xff, 0xd8, 0x96, 0x55, 0xff, 0xda, 0x9c, 0x56, 0xff, 0xe0, 0xaa, 0x5a, 0xff, 0xe2, 0xab, 0x5a, 0xff, 0xdf, 0xaa, 0x5c, 0xff, 0xce, 0x9b, 0x5b, 0xff, 0xb7, 0x80, 0x4a, 0xff, 0xb7, 0x7e, 0x4a, 0xff, 0xb8, 0x7d, 0x48, 0xff, 0xb8, 0x7e, 0x4b, 0xff, 0xb7, 0x81, 0x4c, 0xff, 0xb8, 0x83, 0x4c, 0xff, 0xb5, 0x81, 0x4c, 0xff, 0xb4, 0x80, 0x4b, 0xff, 0xb4, 0x81, 0x4b, 0xff, 0xb4, 0x80, 0x47, 0xff, 0xb2, 0x7c, 0x47, 0xff, 0xb1, 0x7b, 0x48, 0xff, 0xb1, 0x7c, 0x49, 0xff, 0xb0, 0x7b, 0x47, 0xff, 0xaf, 0x7a, 0x45, 0xff, 0xae, 0x76, 0x43, 0xff, 0xab, 0x73, 0x40, 0xff, 0xac, 0x75, 0x41, 0xff, 0xa9, 0x71, 0x40, 0xff, 0xa0, 0x65, 0x39, 0xff, 0xa0, 0x65, 0x3a, 0xff, 0x9f, 0x65, 0x39, 0xff, 0x9d, 0x63, 0x38, 0xff, 0x9c, 0x61, 0x37, 0xff, 0x9a, 0x60, 0x37, 0xff, 0x99, 0x5f, 0x36, 0xff, 0x98, 0x5f, 0x35, 0xff, 0x97, 0x5e, 0x34, 0xff, 0x97, 0x5d, 0x35, 0xff, 0x95, 0x5b, 0x34, 0xff, 0x91, 0x57, 0x32, 0xff, 0x90, 0x55, 0x30, 0xff, 0x90, 0x55, 0x30, 0xff, 0x8f, 0x54, 0x30, 0xff, 0x8e, 0x54, 0x2f, 0xff, 0x8d, 0x54, 0x2e, 0xff, 0x8d, 0x53, 0x2f, 0xff, 0x8d, 0x52, 0x2f, 0xff, 0x8d, 0x52, 0x2d, 0xff, 0x8c, 0x51, 0x2d, 0xff, 0x8a, 0x50, 0x2d, 0xff, 0x89, 0x50, 0x2c, 0xff, 0x89, 0x4f, 0x2b, 0xff, 0x88, 0x4f, 0x2a, 0xff, 0x89, 0x50, 0x2a, 0xff, 0x8a, 0x50, 0x2a, 0xff, 0x8b, 0x4f, 0x2b, 0xff, 0x8b, 0x4f, 0x2c, 0xff, 0x8b, 0x51, 0x2b, 0xff, 0x8d, 0x53, 0x2d, 0xff, 0x8e, 0x53, 0x2e, 0xff, 0x8f, 0x53, 0x2f, 0xff, 0x8f, 0x54, 0x31, 0xff, 0x91, 0x57, 0x31, 0xff, 0x92, 0x58, 0x32, 0xff, 0x92, 0x58, 0x32, 0xff, 0x91, 0x56, 0x31, 0xff, 0x91, 0x56, 0x30, 0xff, 0x93, 0x58, 0x31, 0xff, 0x95, 0x59, 0x32, 0xff, 0x96, 0x5a, 0x32, 0xff, 0x97, 0x5b, 0x32, 0xff, 0x98, 0x5b, 0x32, 0xff, 0x99, 0x5d, 0x33, 0xff, 0x9b, 0x5f, 0x33, 0xff, 0x9c, 0x5f, 0x34, 0xff, 0x9d, 0x60, 0x34, 0xff, 0x9e, 0x62, 0x34, 0xff, 0xa1, 0x63, 0x35, 0xff, 0xa2, 0x64, 0x35, 0xff, 0xa3, 0x65, 0x35, 0xff, 0xa6, 0x68, 0x36, 0xff, 0xa8, 0x69, 0x37, 0xff, 0xa8, 0x6b, 0x37, 0xff, 0xab, 0x6d, 0x37, 0xff, 0xae, 0x6f, 0x38, 0xff, 0xad, 0x6d, 0x37, 0xff, 0xae, 0x6e, 0x38, 0xff, 0xb0, 0x70, 0x39, 0xff, 0xb3, 0x73, 0x3a, 0xff, 0xb6, 0x76, 0x3c, 0xff, 0xb8, 0x7a, 0x3e, 0xff, 0xbb, 0x7c, 0x43, 0xff, 0xbd, 0x7f, 0x46, 0xff, 0xbe, 0x81, 0x46, 0xff, 0xbf, 0x83, 0x47, 0xff, 0xc0, 0x86, 0x48, 0xff, 0xc0, 0x88, 0x49, 0xff, 0xc4, 0x89, 0x49, 0xff, 0xc7, 0x89, 0x4b, 0xff, 0xc8, 0x8a, 0x4a, 0xff, 0xcd, 0x8d, 0x4c, 0xff, 0xcf, 0x8d, 0x4c, 0xff, 0xd2, 0x8e, 0x4c, 0xff, 0xd7, 0x8f, 0x4d, 0xff, 0xdb, 0x92, 0x4f, 0xff, 0xdc, 0x92, 0x4f, 0xff, 0xdf, 0x93, 0x51, 0xff, 0xe1, 0x95, 0x52, 0xff, 0xe1, 0x96, 0x53, 0xff, 0xe2, 0x95, 0x54, 0xff, 0xe2, 0x95, 0x54, 0xff, 0xe2, 0x96, 0x55, 0xff, 0xe1, 0x94, 0x53, 0xff, 0xe0, 0x94, 0x52, 0xff, 0xd7, 0x8e, 0x4e, 0xff, 0xd6, 0x8d, 0x4f, 0xff, 0xd1, 0x8c, 0x50, 0xff, 0xce, 0x87, 0x51, 0xff, 0xd2, 0x8b, 0x51, 0xff, 0xc9, 0x83, 0x4f, 0xff, 0xb5, 0x76, 0x46, 0xff, 0xb3, 0x76, 0x45, 0xff, 0xb4, 0x75, 0x44, 0xff, 0xb4, 0x76, 0x45, 0xff, 0xb4, 0x77, 0x45, 0xff, 0xb4, 0x77, 0x45, 0xff, 0xb5, 0x77, 0x47, 0xff, 0xb5, 0x78, 0x47, 0xff, 0xb5, 0x77, 0x48, 0xff, 0xb5, 0x79, 0x47, 0xff, 0xb6, 0x77, 0x48, 0xff, 0xb8, 0x79, 0x49, 0xff, 0xb8, 0x79, 0x49, 0xff, 0xb8, 0x7a, 0x49, 0xff, 0xa2, 0x65, 0x3b, 0xff, 0x9d, 0x61, 0x39, 0xff, 0x9d, 0x62, 0x3a, 0xff, 0x9e, 0x61, 0x39, 0xff, 0x9e, 0x62, 0x3a, 0xff, 0x9d, 0x61, 0x39, 0xff, 0x9e, 0x61, 0x39, 0xff, 0x94, 0x59, 0x33, 0xff, 0x8f, 0x54, 0x30, 0xff, 0x8d, 0x50, 0x2e, 0xff, 0x8c, 0x50, 0x2d, 0xff, 0x8c, 0x4f, 0x2d, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x8b, 0x4f, 0x2c, 0xff, 0x8b, 0x4f, 0x2b, 0xff, 0x8a, 0x4d, 0x2a, 0xff, 0x89, 0x4d, 0x29, 0xff, 0x87, 0x4b, 0x27, 0xff, 0x86, 0x4b, 0x26, 0xff, 0x85, 0x4a, 0x27, 0xff, 0x84, 0x4a, 0x23, 0xff, 0x82, 0x48, 0x23, 0xff, 0x80, 0x47, 0x22, 0xff, 0x7f, 0x47, 0x22, 0xff, 0x7f, 0x47, 0x22, 0xff, 0x7e, 0x46, 0x20, 0xff, 0x7b, 0x43, 0x1f, 0xff, 0x79, 0x43, 0x1f, 0xff, 0x7a, 0x43, 0x1f, 0xff, 0x7a, 0x43, 0x1f, 0xff, 0x7a, 0x43, 0x20, 0xff, + 0x8c, 0x50, 0x30, 0xff, 0x8c, 0x4f, 0x2e, 0xff, 0x8c, 0x51, 0x2f, 0xff, 0x8c, 0x50, 0x2e, 0xff, 0x8b, 0x4f, 0x30, 0xff, 0x88, 0x4e, 0x2e, 0xff, 0x87, 0x4b, 0x2a, 0xff, 0x85, 0x4b, 0x28, 0xff, 0x84, 0x48, 0x26, 0xff, 0x83, 0x48, 0x26, 0xff, 0x83, 0x48, 0x26, 0xff, 0x85, 0x49, 0x27, 0xff, 0x85, 0x4a, 0x27, 0xff, 0x86, 0x4a, 0x28, 0xff, 0x87, 0x4b, 0x27, 0xff, 0x89, 0x4c, 0x28, 0xff, 0x8a, 0x4d, 0x2b, 0xff, 0x8c, 0x4f, 0x2a, 0xff, 0x8e, 0x4f, 0x2a, 0xff, 0x8f, 0x50, 0x2b, 0xff, 0x91, 0x53, 0x2d, 0xff, 0x95, 0x55, 0x2f, 0xff, 0x98, 0x58, 0x31, 0xff, 0x9c, 0x5d, 0x33, 0xff, 0xa0, 0x61, 0x35, 0xff, 0xa2, 0x64, 0x37, 0xff, 0xa5, 0x67, 0x38, 0xff, 0xa8, 0x69, 0x38, 0xff, 0xac, 0x6c, 0x3a, 0xff, 0xaf, 0x6e, 0x3a, 0xff, 0xb2, 0x73, 0x3d, 0xff, 0xb8, 0x78, 0x42, 0xff, 0xbc, 0x7f, 0x47, 0xff, 0xbc, 0x7e, 0x46, 0xff, 0xc1, 0x84, 0x4c, 0xff, 0xca, 0x8a, 0x51, 0xff, 0xd7, 0x8f, 0x57, 0xff, 0xe1, 0x96, 0x59, 0xff, 0xe2, 0x9d, 0x5c, 0xff, 0xe2, 0xa4, 0x60, 0xff, 0xe3, 0xad, 0x66, 0xff, 0xe2, 0xba, 0x6c, 0xff, 0xe3, 0xc4, 0x72, 0xff, 0xe1, 0xc9, 0x72, 0xff, 0xe1, 0xcb, 0x76, 0xff, 0xe2, 0xc8, 0x7a, 0xff, 0xe3, 0xca, 0x7b, 0xff, 0xe3, 0xcc, 0x7b, 0xff, 0xe2, 0xcd, 0x79, 0xff, 0xdc, 0xcd, 0x7b, 0xff, 0xd9, 0xcd, 0x7e, 0xff, 0xd9, 0xce, 0x7f, 0xff, 0xd7, 0xcd, 0x7a, 0xff, 0xdd, 0xcc, 0x74, 0xff, 0xe3, 0xc4, 0x70, 0xff, 0xe3, 0xb8, 0x6b, 0xff, 0xe2, 0xb2, 0x6b, 0xff, 0xe2, 0xad, 0x69, 0xff, 0xe3, 0xa9, 0x68, 0xff, 0xe3, 0xa2, 0x65, 0xff, 0xe2, 0xa3, 0x66, 0xff, 0xe3, 0xa5, 0x6d, 0xff, 0xe3, 0xa6, 0x6c, 0xff, 0xe3, 0xa8, 0x6c, 0xff, 0xe1, 0xab, 0x6b, 0xff, 0xda, 0xa6, 0x62, 0xff, 0xdb, 0xa2, 0x5d, 0xff, 0xd9, 0x9d, 0x5a, 0xff, 0xd9, 0x99, 0x56, 0xff, 0xda, 0x97, 0x55, 0xff, 0xd8, 0x95, 0x54, 0xff, 0xd8, 0x93, 0x53, 0xff, 0xd7, 0x95, 0x55, 0xff, 0xda, 0x9b, 0x57, 0xff, 0xe0, 0xab, 0x58, 0xff, 0xdf, 0xaf, 0x5c, 0xff, 0xde, 0xb0, 0x61, 0xff, 0xc9, 0x99, 0x58, 0xff, 0xb6, 0x7d, 0x4a, 0xff, 0xb9, 0x80, 0x4b, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xb9, 0x80, 0x4b, 0xff, 0xb8, 0x82, 0x4c, 0xff, 0xb8, 0x83, 0x4d, 0xff, 0xb7, 0x81, 0x4e, 0xff, 0xb6, 0x82, 0x4f, 0xff, 0xb6, 0x82, 0x4c, 0xff, 0xb5, 0x80, 0x49, 0xff, 0xb4, 0x7f, 0x48, 0xff, 0xb3, 0x7d, 0x48, 0xff, 0xb2, 0x7c, 0x47, 0xff, 0xb1, 0x7b, 0x47, 0xff, 0xb0, 0x79, 0x46, 0xff, 0xaf, 0x78, 0x44, 0xff, 0xad, 0x77, 0x42, 0xff, 0xac, 0x76, 0x44, 0xff, 0xa7, 0x6f, 0x40, 0xff, 0xa0, 0x66, 0x39, 0xff, 0xa1, 0x66, 0x3a, 0xff, 0xa0, 0x65, 0x39, 0xff, 0x9e, 0x64, 0x39, 0xff, 0x9d, 0x62, 0x37, 0xff, 0x9c, 0x62, 0x37, 0xff, 0x9a, 0x61, 0x36, 0xff, 0x9a, 0x5f, 0x35, 0xff, 0x99, 0x5e, 0x35, 0xff, 0x98, 0x5e, 0x35, 0xff, 0x94, 0x5a, 0x33, 0xff, 0x90, 0x55, 0x30, 0xff, 0x90, 0x55, 0x30, 0xff, 0x90, 0x55, 0x30, 0xff, 0x8e, 0x55, 0x30, 0xff, 0x8e, 0x54, 0x30, 0xff, 0x8e, 0x54, 0x30, 0xff, 0x8d, 0x55, 0x2f, 0xff, 0x8d, 0x54, 0x2f, 0xff, 0x8c, 0x52, 0x2f, 0xff, 0x8c, 0x52, 0x2e, 0xff, 0x8b, 0x51, 0x2e, 0xff, 0x8a, 0x50, 0x2d, 0xff, 0x89, 0x4f, 0x2b, 0xff, 0x88, 0x4f, 0x2a, 0xff, 0x87, 0x4f, 0x2b, 0xff, 0x87, 0x4f, 0x2a, 0xff, 0x89, 0x50, 0x2a, 0xff, 0x8b, 0x4f, 0x2b, 0xff, 0x8b, 0x4f, 0x2c, 0xff, 0x8b, 0x51, 0x2c, 0xff, 0x8d, 0x52, 0x2d, 0xff, 0x8d, 0x53, 0x2e, 0xff, 0x8e, 0x55, 0x2f, 0xff, 0x8f, 0x55, 0x30, 0xff, 0x8f, 0x54, 0x2f, 0xff, 0x8e, 0x54, 0x2f, 0xff, 0x8f, 0x55, 0x30, 0xff, 0x91, 0x55, 0x31, 0xff, 0x92, 0x56, 0x30, 0xff, 0x93, 0x57, 0x30, 0xff, 0x94, 0x58, 0x30, 0xff, 0x95, 0x59, 0x30, 0xff, 0x96, 0x5a, 0x31, 0xff, 0x98, 0x5c, 0x32, 0xff, 0x99, 0x5d, 0x32, 0xff, 0x9a, 0x5e, 0x33, 0xff, 0x9c, 0x5e, 0x33, 0xff, 0x9d, 0x60, 0x33, 0xff, 0x9e, 0x61, 0x33, 0xff, 0xa1, 0x61, 0x33, 0xff, 0xa3, 0x64, 0x34, 0xff, 0xa4, 0x66, 0x34, 0xff, 0xa5, 0x67, 0x35, 0xff, 0xa6, 0x67, 0x34, 0xff, 0xa7, 0x67, 0x35, 0xff, 0xa8, 0x68, 0x36, 0xff, 0xaa, 0x69, 0x37, 0xff, 0xac, 0x6d, 0x38, 0xff, 0xaf, 0x70, 0x39, 0xff, 0xb2, 0x73, 0x3b, 0xff, 0xb5, 0x75, 0x3c, 0xff, 0xb7, 0x78, 0x3e, 0xff, 0xb8, 0x7a, 0x40, 0xff, 0xba, 0x7d, 0x43, 0xff, 0xbb, 0x80, 0x45, 0xff, 0xbc, 0x80, 0x45, 0xff, 0xbc, 0x81, 0x45, 0xff, 0xbe, 0x83, 0x46, 0xff, 0xc0, 0x85, 0x48, 0xff, 0xc3, 0x88, 0x4a, 0xff, 0xc5, 0x89, 0x49, 0xff, 0xc8, 0x89, 0x4a, 0xff, 0xcc, 0x8a, 0x4a, 0xff, 0xce, 0x8a, 0x4a, 0xff, 0xd1, 0x8b, 0x4a, 0xff, 0xd3, 0x8d, 0x4b, 0xff, 0xd7, 0x90, 0x4e, 0xff, 0xd9, 0x91, 0x4f, 0xff, 0xdd, 0x93, 0x51, 0xff, 0xdf, 0x93, 0x51, 0xff, 0xdf, 0x91, 0x51, 0xff, 0xe1, 0x93, 0x53, 0xff, 0xe3, 0x96, 0x56, 0xff, 0xe4, 0x97, 0x56, 0xff, 0xd7, 0x90, 0x53, 0xff, 0xce, 0x8a, 0x52, 0xff, 0xce, 0x88, 0x51, 0xff, 0xcf, 0x88, 0x50, 0xff, 0xd1, 0x88, 0x50, 0xff, 0xd7, 0x8d, 0x51, 0xff, 0xcd, 0x86, 0x4f, 0xff, 0xb7, 0x79, 0x47, 0xff, 0xb4, 0x76, 0x44, 0xff, 0xb2, 0x74, 0x44, 0xff, 0xb2, 0x74, 0x44, 0xff, 0xb2, 0x75, 0x44, 0xff, 0xb2, 0x74, 0x44, 0xff, 0xb3, 0x76, 0x45, 0xff, 0xb3, 0x76, 0x47, 0xff, 0xb3, 0x76, 0x45, 0xff, 0xb4, 0x76, 0x45, 0xff, 0xb3, 0x76, 0x45, 0xff, 0xb4, 0x77, 0x45, 0xff, 0xb6, 0x78, 0x46, 0xff, 0xa6, 0x6a, 0x3d, 0xff, 0x9b, 0x60, 0x38, 0xff, 0x9c, 0x61, 0x39, 0xff, 0x9c, 0x61, 0x38, 0xff, 0x9d, 0x61, 0x37, 0xff, 0x9c, 0x5f, 0x37, 0xff, 0x9c, 0x5f, 0x37, 0xff, 0x9d, 0x61, 0x37, 0xff, 0x9d, 0x60, 0x37, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x95, 0x58, 0x32, 0xff, 0x91, 0x55, 0x2e, 0xff, 0x91, 0x55, 0x30, 0xff, 0x93, 0x57, 0x32, 0xff, 0x95, 0x57, 0x33, 0xff, 0x95, 0x58, 0x33, 0xff, 0x96, 0x58, 0x33, 0xff, 0x95, 0x57, 0x32, 0xff, 0x94, 0x57, 0x32, 0xff, 0x93, 0x57, 0x32, 0xff, 0x92, 0x55, 0x31, 0xff, 0x92, 0x55, 0x32, 0xff, 0x91, 0x54, 0x32, 0xff, 0x91, 0x54, 0x31, 0xff, 0x90, 0x53, 0x31, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x88, 0x4d, 0x28, 0xff, 0x82, 0x4a, 0x25, 0xff, 0x81, 0x47, 0x24, 0xff, 0x7b, 0x43, 0x1e, 0xff, 0x82, 0x49, 0x26, 0xff, + 0x8e, 0x53, 0x31, 0xff, 0x8c, 0x50, 0x2e, 0xff, 0x8c, 0x4f, 0x2d, 0xff, 0x8a, 0x4f, 0x2e, 0xff, 0x8a, 0x4f, 0x2e, 0xff, 0x88, 0x4d, 0x2a, 0xff, 0x83, 0x49, 0x26, 0xff, 0x83, 0x48, 0x26, 0xff, 0x82, 0x48, 0x24, 0xff, 0x82, 0x47, 0x24, 0xff, 0x82, 0x48, 0x24, 0xff, 0x82, 0x49, 0x25, 0xff, 0x83, 0x48, 0x25, 0xff, 0x84, 0x49, 0x26, 0xff, 0x86, 0x49, 0x26, 0xff, 0x87, 0x4b, 0x27, 0xff, 0x89, 0x4c, 0x26, 0xff, 0x8b, 0x4d, 0x28, 0xff, 0x8c, 0x4e, 0x29, 0xff, 0x8e, 0x4f, 0x29, 0xff, 0x90, 0x52, 0x2c, 0xff, 0x94, 0x54, 0x2d, 0xff, 0x95, 0x57, 0x2f, 0xff, 0x99, 0x59, 0x31, 0xff, 0x9d, 0x5f, 0x33, 0xff, 0xa0, 0x60, 0x35, 0xff, 0xa4, 0x64, 0x36, 0xff, 0xa8, 0x68, 0x38, 0xff, 0xaa, 0x69, 0x38, 0xff, 0xac, 0x6b, 0x39, 0xff, 0xb0, 0x70, 0x3a, 0xff, 0xb5, 0x75, 0x3f, 0xff, 0xbb, 0x7c, 0x45, 0xff, 0xbd, 0x80, 0x49, 0xff, 0xc0, 0x82, 0x4a, 0xff, 0xc8, 0x89, 0x51, 0xff, 0xd4, 0x90, 0x58, 0xff, 0xe1, 0x97, 0x5c, 0xff, 0xe3, 0xa0, 0x61, 0xff, 0xe3, 0xa9, 0x66, 0xff, 0xe3, 0xb7, 0x6b, 0xff, 0xe2, 0xc4, 0x6f, 0xff, 0xdd, 0xce, 0x78, 0xff, 0xda, 0xce, 0x7a, 0xff, 0xda, 0xce, 0x79, 0xff, 0xdd, 0xcd, 0x7e, 0xff, 0xdf, 0xcd, 0x80, 0xff, 0xe1, 0xcc, 0x7f, 0xff, 0xe3, 0xca, 0x7d, 0xff, 0xe2, 0xcc, 0x7c, 0xff, 0xe0, 0xcb, 0x7b, 0xff, 0xdb, 0xce, 0x7e, 0xff, 0xd7, 0xcd, 0x7d, 0xff, 0xdb, 0xcc, 0x77, 0xff, 0xe3, 0xc6, 0x6f, 0xff, 0xe3, 0xbb, 0x6c, 0xff, 0xe2, 0xb2, 0x6b, 0xff, 0xe2, 0xae, 0x6a, 0xff, 0xe3, 0xaa, 0x67, 0xff, 0xe3, 0xa4, 0x65, 0xff, 0xe3, 0xa2, 0x65, 0xff, 0xe1, 0xa3, 0x6a, 0xff, 0xe3, 0xa6, 0x6c, 0xff, 0xe4, 0xa7, 0x6b, 0xff, 0xe3, 0xa8, 0x6b, 0xff, 0xe1, 0xa9, 0x69, 0xff, 0xda, 0xa4, 0x60, 0xff, 0xd8, 0x9b, 0x59, 0xff, 0xd8, 0x98, 0x57, 0xff, 0xd8, 0x96, 0x56, 0xff, 0xd7, 0x94, 0x54, 0xff, 0xd6, 0x92, 0x52, 0xff, 0xd6, 0x93, 0x53, 0xff, 0xda, 0x9e, 0x56, 0xff, 0xe0, 0xab, 0x59, 0xff, 0xe3, 0xb0, 0x5e, 0xff, 0xde, 0xa9, 0x60, 0xff, 0xc8, 0x95, 0x57, 0xff, 0xba, 0x81, 0x4d, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb9, 0x82, 0x4a, 0xff, 0xb9, 0x85, 0x4c, 0xff, 0xb7, 0x83, 0x4e, 0xff, 0xb9, 0x84, 0x52, 0xff, 0xb8, 0x84, 0x50, 0xff, 0xb7, 0x82, 0x4c, 0xff, 0xb6, 0x81, 0x4c, 0xff, 0xb6, 0x82, 0x4b, 0xff, 0xb5, 0x7e, 0x48, 0xff, 0xb3, 0x7c, 0x48, 0xff, 0xb2, 0x7d, 0x49, 0xff, 0xb2, 0x7e, 0x48, 0xff, 0xb0, 0x7a, 0x48, 0xff, 0xaf, 0x77, 0x44, 0xff, 0xac, 0x74, 0x42, 0xff, 0xa7, 0x6d, 0x3f, 0xff, 0xa3, 0x68, 0x3b, 0xff, 0xa2, 0x67, 0x3b, 0xff, 0xa2, 0x68, 0x3a, 0xff, 0xa0, 0x65, 0x39, 0xff, 0x9f, 0x63, 0x37, 0xff, 0x9d, 0x63, 0x37, 0xff, 0x9b, 0x61, 0x36, 0xff, 0x9b, 0x60, 0x35, 0xff, 0x9a, 0x60, 0x36, 0xff, 0x98, 0x5e, 0x35, 0xff, 0x94, 0x5a, 0x33, 0xff, 0x91, 0x56, 0x31, 0xff, 0x91, 0x55, 0x31, 0xff, 0x8f, 0x55, 0x30, 0xff, 0x8f, 0x54, 0x30, 0xff, 0x90, 0x55, 0x30, 0xff, 0x8e, 0x55, 0x30, 0xff, 0x8d, 0x52, 0x30, 0xff, 0x8d, 0x52, 0x30, 0xff, 0x8c, 0x53, 0x30, 0xff, 0x8c, 0x53, 0x2e, 0xff, 0x8c, 0x51, 0x2e, 0xff, 0x8a, 0x50, 0x2c, 0xff, 0x89, 0x50, 0x2b, 0xff, 0x89, 0x50, 0x2c, 0xff, 0x88, 0x4f, 0x2a, 0xff, 0x87, 0x4e, 0x2b, 0xff, 0x87, 0x4e, 0x2a, 0xff, 0x89, 0x4f, 0x2a, 0xff, 0x89, 0x4f, 0x2a, 0xff, 0x8a, 0x50, 0x2a, 0xff, 0x8c, 0x50, 0x2c, 0xff, 0x8c, 0x51, 0x2e, 0xff, 0x8b, 0x51, 0x2d, 0xff, 0x89, 0x50, 0x2b, 0xff, 0x8b, 0x50, 0x2b, 0xff, 0x8d, 0x52, 0x2d, 0xff, 0x8d, 0x53, 0x2e, 0xff, 0x8e, 0x52, 0x2d, 0xff, 0x8f, 0x53, 0x2f, 0xff, 0x90, 0x55, 0x2f, 0xff, 0x92, 0x56, 0x2f, 0xff, 0x93, 0x57, 0x30, 0xff, 0x95, 0x58, 0x30, 0xff, 0x96, 0x5a, 0x31, 0xff, 0x98, 0x5c, 0x31, 0xff, 0x99, 0x5c, 0x31, 0xff, 0x9a, 0x5c, 0x32, 0xff, 0x9b, 0x5d, 0x32, 0xff, 0x9c, 0x60, 0x33, 0xff, 0x9e, 0x60, 0x32, 0xff, 0x9f, 0x61, 0x31, 0xff, 0xa0, 0x61, 0x30, 0xff, 0xa5, 0x67, 0x34, 0xff, 0xb0, 0x72, 0x40, 0xff, 0xba, 0x7a, 0x49, 0xff, 0xbd, 0x7d, 0x49, 0xff, 0xc0, 0x7f, 0x49, 0xff, 0xc7, 0x84, 0x4d, 0xff, 0xc9, 0x86, 0x4d, 0xff, 0xca, 0x84, 0x4b, 0xff, 0xcb, 0x85, 0x4b, 0xff, 0xcc, 0x86, 0x4c, 0xff, 0xd1, 0x87, 0x4e, 0xff, 0xd2, 0x8a, 0x50, 0xff, 0xd2, 0x8c, 0x51, 0xff, 0xd3, 0x8d, 0x53, 0xff, 0xd6, 0x8e, 0x54, 0xff, 0xcd, 0x8b, 0x4f, 0xff, 0xc0, 0x85, 0x48, 0xff, 0xbe, 0x84, 0x47, 0xff, 0xbf, 0x87, 0x49, 0xff, 0xc4, 0x89, 0x49, 0xff, 0xc7, 0x88, 0x49, 0xff, 0xc8, 0x89, 0x49, 0xff, 0xcc, 0x89, 0x48, 0xff, 0xcf, 0x89, 0x49, 0xff, 0xd1, 0x8b, 0x4b, 0xff, 0xd4, 0x8d, 0x4c, 0xff, 0xd6, 0x91, 0x4d, 0xff, 0xd6, 0x90, 0x4f, 0xff, 0xdb, 0x90, 0x4f, 0xff, 0xdf, 0x92, 0x51, 0xff, 0xde, 0x91, 0x52, 0xff, 0xd0, 0x8a, 0x51, 0xff, 0xcc, 0x8a, 0x53, 0xff, 0xd2, 0x8d, 0x56, 0xff, 0xd5, 0x8d, 0x54, 0xff, 0xd9, 0x8d, 0x53, 0xff, 0xda, 0x8c, 0x52, 0xff, 0xde, 0x90, 0x54, 0xff, 0xd4, 0x8b, 0x52, 0xff, 0xba, 0x7c, 0x49, 0xff, 0xb5, 0x77, 0x46, 0xff, 0xb4, 0x75, 0x45, 0xff, 0xb2, 0x74, 0x44, 0xff, 0xb3, 0x75, 0x42, 0xff, 0xb3, 0x76, 0x44, 0xff, 0xb2, 0x75, 0x45, 0xff, 0xb1, 0x75, 0x46, 0xff, 0xb1, 0x74, 0x44, 0xff, 0xb2, 0x74, 0x44, 0xff, 0xb3, 0x74, 0x44, 0xff, 0xb5, 0x77, 0x45, 0xff, 0xa9, 0x6c, 0x3e, 0xff, 0x9a, 0x5f, 0x38, 0xff, 0x9b, 0x5f, 0x39, 0xff, 0x9b, 0x5f, 0x38, 0xff, 0x9b, 0x5f, 0x37, 0xff, 0x9a, 0x5f, 0x36, 0xff, 0x9a, 0x5d, 0x36, 0xff, 0x9a, 0x5e, 0x36, 0xff, 0x9e, 0x62, 0x37, 0xff, 0x9f, 0x61, 0x37, 0xff, 0x9e, 0x60, 0x37, 0xff, 0x9f, 0x61, 0x38, 0xff, 0x9e, 0x60, 0x37, 0xff, 0x9b, 0x5d, 0x36, 0xff, 0x95, 0x59, 0x32, 0xff, 0x95, 0x58, 0x33, 0xff, 0x95, 0x57, 0x32, 0xff, 0x93, 0x56, 0x31, 0xff, 0x94, 0x55, 0x31, 0xff, 0x92, 0x55, 0x30, 0xff, 0x91, 0x54, 0x30, 0xff, 0x91, 0x54, 0x30, 0xff, 0x90, 0x52, 0x30, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8f, 0x51, 0x2f, 0xff, 0x8f, 0x50, 0x2f, 0xff, 0x8f, 0x51, 0x2f, 0xff, 0x90, 0x52, 0x30, 0xff, 0x91, 0x53, 0x31, 0xff, 0x92, 0x54, 0x31, 0xff, 0x91, 0x54, 0x30, 0xff, 0x8f, 0x52, 0x2e, 0xff, 0x8f, 0x54, 0x32, 0xff, + 0x90, 0x53, 0x31, 0xff, 0x91, 0x54, 0x31, 0xff, 0x90, 0x53, 0x30, 0xff, 0x8c, 0x50, 0x30, 0xff, 0x87, 0x4c, 0x29, 0xff, 0x85, 0x49, 0x27, 0xff, 0x83, 0x49, 0x26, 0xff, 0x82, 0x46, 0x24, 0xff, 0x82, 0x46, 0x23, 0xff, 0x82, 0x47, 0x24, 0xff, 0x82, 0x48, 0x21, 0xff, 0x81, 0x46, 0x24, 0xff, 0x82, 0x46, 0x24, 0xff, 0x82, 0x47, 0x24, 0xff, 0x83, 0x49, 0x24, 0xff, 0x84, 0x48, 0x24, 0xff, 0x86, 0x49, 0x26, 0xff, 0x86, 0x4b, 0x27, 0xff, 0x8b, 0x4c, 0x26, 0xff, 0x8c, 0x4e, 0x27, 0xff, 0x8e, 0x4e, 0x29, 0xff, 0x90, 0x51, 0x2b, 0xff, 0x92, 0x53, 0x2d, 0xff, 0x95, 0x56, 0x2f, 0xff, 0x9a, 0x5a, 0x31, 0xff, 0x9d, 0x5c, 0x32, 0xff, 0xa2, 0x61, 0x33, 0xff, 0xa5, 0x65, 0x35, 0xff, 0xa9, 0x69, 0x38, 0xff, 0xab, 0x6c, 0x3a, 0xff, 0xad, 0x6e, 0x3a, 0xff, 0xb0, 0x72, 0x3b, 0xff, 0xb7, 0x78, 0x41, 0xff, 0xbb, 0x7f, 0x47, 0xff, 0xbf, 0x83, 0x4b, 0xff, 0xc7, 0x88, 0x50, 0xff, 0xd3, 0x8e, 0x58, 0xff, 0xe0, 0x9a, 0x5f, 0xff, 0xe4, 0xa3, 0x64, 0xff, 0xe2, 0xaf, 0x6c, 0xff, 0xe2, 0xc7, 0x73, 0xff, 0xdd, 0xcf, 0x7b, 0xff, 0xda, 0xcd, 0x80, 0xff, 0xdc, 0xcf, 0x86, 0xff, 0xda, 0xcf, 0x86, 0xff, 0xdb, 0xcf, 0x86, 0xff, 0xda, 0xcf, 0x86, 0xff, 0xdd, 0xce, 0x84, 0xff, 0xe1, 0xcc, 0x82, 0xff, 0xe3, 0xca, 0x81, 0xff, 0xe3, 0xca, 0x81, 0xff, 0xe1, 0xcc, 0x80, 0xff, 0xdb, 0xce, 0x7d, 0xff, 0xd9, 0xcf, 0x7a, 0xff, 0xdb, 0xcb, 0x76, 0xff, 0xe5, 0xc1, 0x6e, 0xff, 0xe4, 0xb7, 0x6b, 0xff, 0xe2, 0xb0, 0x6b, 0xff, 0xe3, 0xa9, 0x66, 0xff, 0xe3, 0xa4, 0x65, 0xff, 0xe3, 0xa2, 0x65, 0xff, 0xe3, 0xa3, 0x68, 0xff, 0xe4, 0xa6, 0x6d, 0xff, 0xe4, 0xa6, 0x6b, 0xff, 0xe2, 0xa7, 0x6b, 0xff, 0xe1, 0xa9, 0x6a, 0xff, 0xdc, 0xa6, 0x64, 0xff, 0xd6, 0x9c, 0x59, 0xff, 0xd7, 0x9a, 0x57, 0xff, 0xd8, 0x95, 0x55, 0xff, 0xd6, 0x94, 0x54, 0xff, 0xd6, 0x94, 0x53, 0xff, 0xd4, 0x94, 0x54, 0xff, 0xd8, 0x9e, 0x56, 0xff, 0xe1, 0xac, 0x5b, 0xff, 0xe0, 0xab, 0x5f, 0xff, 0xd7, 0xac, 0x63, 0xff, 0xbf, 0x8e, 0x55, 0xff, 0xbd, 0x84, 0x4e, 0xff, 0xbc, 0x83, 0x4d, 0xff, 0xbb, 0x83, 0x4a, 0xff, 0xbc, 0x84, 0x4c, 0xff, 0xbb, 0x84, 0x4e, 0xff, 0xbb, 0x86, 0x50, 0xff, 0xb9, 0x85, 0x51, 0xff, 0xb9, 0x85, 0x52, 0xff, 0xb8, 0x82, 0x51, 0xff, 0xb7, 0x83, 0x4e, 0xff, 0xb6, 0x83, 0x4a, 0xff, 0xb6, 0x7f, 0x4b, 0xff, 0xb4, 0x7b, 0x49, 0xff, 0xb3, 0x7d, 0x49, 0xff, 0xb3, 0x7c, 0x48, 0xff, 0xb2, 0x7c, 0x46, 0xff, 0xb1, 0x7b, 0x45, 0xff, 0xab, 0x74, 0x42, 0xff, 0xa5, 0x6b, 0x3c, 0xff, 0xa3, 0x69, 0x3b, 0xff, 0xa2, 0x69, 0x3b, 0xff, 0xa2, 0x68, 0x3a, 0xff, 0xa1, 0x68, 0x3a, 0xff, 0xa0, 0x66, 0x39, 0xff, 0x9e, 0x63, 0x36, 0xff, 0x9c, 0x62, 0x36, 0xff, 0x9b, 0x61, 0x36, 0xff, 0x9c, 0x61, 0x37, 0xff, 0x99, 0x5e, 0x35, 0xff, 0x95, 0x5a, 0x33, 0xff, 0x94, 0x59, 0x33, 0xff, 0x92, 0x58, 0x32, 0xff, 0x91, 0x57, 0x30, 0xff, 0x91, 0x55, 0x30, 0xff, 0x8f, 0x53, 0x30, 0xff, 0x8e, 0x54, 0x30, 0xff, 0x8e, 0x54, 0x30, 0xff, 0x8c, 0x52, 0x30, 0xff, 0x8c, 0x53, 0x30, 0xff, 0x8d, 0x54, 0x2f, 0xff, 0x8d, 0x53, 0x2e, 0xff, 0x8b, 0x50, 0x2d, 0xff, 0x8a, 0x4f, 0x2d, 0xff, 0x89, 0x4f, 0x2c, 0xff, 0x88, 0x4f, 0x2b, 0xff, 0x87, 0x4e, 0x2b, 0xff, 0x87, 0x4e, 0x2b, 0xff, 0x87, 0x4e, 0x2b, 0xff, 0x88, 0x4f, 0x2b, 0xff, 0x89, 0x4f, 0x2b, 0xff, 0x8a, 0x50, 0x2c, 0xff, 0x88, 0x4e, 0x2b, 0xff, 0x86, 0x4c, 0x29, 0xff, 0x88, 0x4e, 0x2a, 0xff, 0x88, 0x50, 0x2b, 0xff, 0x8a, 0x4f, 0x2b, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x8e, 0x52, 0x2c, 0xff, 0x8f, 0x53, 0x2d, 0xff, 0x91, 0x54, 0x30, 0xff, 0x92, 0x56, 0x30, 0xff, 0x93, 0x56, 0x30, 0xff, 0x93, 0x56, 0x30, 0xff, 0x94, 0x58, 0x30, 0xff, 0x96, 0x58, 0x30, 0xff, 0x98, 0x5a, 0x31, 0xff, 0x98, 0x5b, 0x31, 0xff, 0x9c, 0x5d, 0x31, 0xff, 0xa7, 0x69, 0x3a, 0xff, 0xb1, 0x72, 0x42, 0xff, 0xb5, 0x76, 0x45, 0xff, 0xb9, 0x7a, 0x48, 0xff, 0xbe, 0x7d, 0x4a, 0xff, 0xc1, 0x80, 0x4a, 0xff, 0xc6, 0x83, 0x4d, 0xff, 0xcb, 0x8a, 0x52, 0xff, 0xcf, 0x8d, 0x56, 0xff, 0xd3, 0x8e, 0x55, 0xff, 0xd8, 0x90, 0x55, 0xff, 0xda, 0x8f, 0x54, 0xff, 0xdd, 0x8d, 0x53, 0xff, 0xdd, 0x8d, 0x52, 0xff, 0xdd, 0x8e, 0x52, 0xff, 0xde, 0x90, 0x53, 0xff, 0xdf, 0x90, 0x55, 0xff, 0xdf, 0x91, 0x56, 0xff, 0xdf, 0x91, 0x56, 0xff, 0xe3, 0x93, 0x58, 0xff, 0xe1, 0x94, 0x59, 0xff, 0xdb, 0x93, 0x56, 0xff, 0xcd, 0x8e, 0x51, 0xff, 0xc2, 0x87, 0x49, 0xff, 0xc3, 0x86, 0x49, 0xff, 0xc6, 0x87, 0x4a, 0xff, 0xc8, 0x89, 0x48, 0xff, 0xca, 0x88, 0x48, 0xff, 0xcc, 0x88, 0x49, 0xff, 0xcc, 0x89, 0x4a, 0xff, 0xd1, 0x8b, 0x4b, 0xff, 0xd9, 0x90, 0x50, 0xff, 0xc9, 0x86, 0x4d, 0xff, 0xc5, 0x84, 0x4c, 0xff, 0xca, 0x86, 0x50, 0xff, 0xca, 0x87, 0x51, 0xff, 0xcd, 0x8a, 0x52, 0xff, 0xd0, 0x8a, 0x51, 0xff, 0xd3, 0x8c, 0x52, 0xff, 0xd8, 0x90, 0x57, 0xff, 0xdd, 0x94, 0x5a, 0xff, 0xd5, 0x90, 0x59, 0xff, 0xbc, 0x80, 0x50, 0xff, 0xb8, 0x7a, 0x4b, 0xff, 0xb6, 0x78, 0x47, 0xff, 0xb6, 0x77, 0x45, 0xff, 0xb3, 0x76, 0x44, 0xff, 0xb3, 0x76, 0x44, 0xff, 0xb1, 0x72, 0x42, 0xff, 0xb1, 0x76, 0x44, 0xff, 0xb3, 0x74, 0x44, 0xff, 0xb3, 0x75, 0x45, 0xff, 0xb4, 0x76, 0x45, 0xff, 0xae, 0x73, 0x41, 0xff, 0x9c, 0x5f, 0x38, 0xff, 0x9c, 0x60, 0x3b, 0xff, 0x9b, 0x5f, 0x37, 0xff, 0x9a, 0x60, 0x37, 0xff, 0x99, 0x5d, 0x36, 0xff, 0x9c, 0x60, 0x37, 0xff, 0x9e, 0x61, 0x38, 0xff, 0x9d, 0x61, 0x38, 0xff, 0x9e, 0x60, 0x37, 0xff, 0x9d, 0x60, 0x37, 0xff, 0x9d, 0x61, 0x37, 0xff, 0x9d, 0x61, 0x36, 0xff, 0x9c, 0x5f, 0x37, 0xff, 0x9e, 0x5f, 0x36, 0xff, 0x9c, 0x5f, 0x36, 0xff, 0x92, 0x57, 0x31, 0xff, 0x93, 0x54, 0x31, 0xff, 0x92, 0x53, 0x30, 0xff, 0x90, 0x54, 0x30, 0xff, 0x90, 0x53, 0x30, 0xff, 0x90, 0x52, 0x2f, 0xff, 0x8e, 0x4f, 0x2e, 0xff, 0x8e, 0x51, 0x2e, 0xff, 0x8d, 0x4f, 0x2e, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x8c, 0x4f, 0x2d, 0xff, 0x8d, 0x50, 0x2d, 0xff, 0x8d, 0x50, 0x2d, 0xff, 0x8e, 0x50, 0x2d, 0xff, 0x8f, 0x52, 0x2e, 0xff, 0x90, 0x54, 0x32, 0xff, 0x90, 0x54, 0x31, 0xff, + 0x90, 0x53, 0x31, 0xff, 0x8f, 0x53, 0x30, 0xff, 0x8e, 0x51, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8d, 0x51, 0x2f, 0xff, 0x89, 0x4c, 0x2a, 0xff, 0x83, 0x47, 0x25, 0xff, 0x7f, 0x46, 0x23, 0xff, 0x7e, 0x45, 0x20, 0xff, 0x7f, 0x46, 0x21, 0xff, 0x7e, 0x46, 0x21, 0xff, 0x7e, 0x45, 0x20, 0xff, 0x7f, 0x46, 0x21, 0xff, 0x7f, 0x44, 0x21, 0xff, 0x80, 0x46, 0x21, 0xff, 0x81, 0x46, 0x23, 0xff, 0x83, 0x46, 0x22, 0xff, 0x86, 0x48, 0x25, 0xff, 0x88, 0x4a, 0x26, 0xff, 0x8a, 0x4b, 0x27, 0xff, 0x8c, 0x4e, 0x28, 0xff, 0x90, 0x4f, 0x2a, 0xff, 0x91, 0x52, 0x2c, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x96, 0x57, 0x30, 0xff, 0x9a, 0x5a, 0x31, 0xff, 0x9e, 0x5d, 0x32, 0xff, 0xa2, 0x62, 0x33, 0xff, 0xa6, 0x67, 0x35, 0xff, 0xa9, 0x6a, 0x36, 0xff, 0xac, 0x6d, 0x39, 0xff, 0xae, 0x70, 0x3b, 0xff, 0xb2, 0x75, 0x3e, 0xff, 0xb8, 0x7a, 0x43, 0xff, 0xbd, 0x81, 0x49, 0xff, 0xc3, 0x85, 0x4e, 0xff, 0xcf, 0x8e, 0x57, 0xff, 0xdf, 0x98, 0x5f, 0xff, 0xe3, 0xa3, 0x67, 0xff, 0xe4, 0xb4, 0x6f, 0xff, 0xe1, 0xce, 0x7b, 0xff, 0xda, 0xcf, 0x87, 0xff, 0xde, 0xcf, 0x95, 0xff, 0xde, 0xce, 0x9b, 0xff, 0xe1, 0xcf, 0x9e, 0xff, 0xdf, 0xce, 0x99, 0xff, 0xe0, 0xcf, 0x95, 0xff, 0xdd, 0xcd, 0x8f, 0xff, 0xdf, 0xcf, 0x8b, 0xff, 0xe1, 0xcc, 0x85, 0xff, 0xe3, 0xcb, 0x84, 0xff, 0xe2, 0xca, 0x82, 0xff, 0xe0, 0xcd, 0x80, 0xff, 0xdc, 0xce, 0x7d, 0xff, 0xdb, 0xce, 0x79, 0xff, 0xe0, 0xc9, 0x74, 0xff, 0xe4, 0xbd, 0x6c, 0xff, 0xe3, 0xb2, 0x6b, 0xff, 0xe3, 0xab, 0x69, 0xff, 0xe3, 0xa6, 0x66, 0xff, 0xe3, 0xa2, 0x65, 0xff, 0xe3, 0xa3, 0x67, 0xff, 0xe3, 0xa9, 0x6d, 0xff, 0xe3, 0xa7, 0x6c, 0xff, 0xe3, 0xa6, 0x6b, 0xff, 0xe3, 0xa8, 0x6b, 0xff, 0xe2, 0xaa, 0x69, 0xff, 0xd7, 0xa1, 0x5e, 0xff, 0xd5, 0x98, 0x56, 0xff, 0xd5, 0x96, 0x53, 0xff, 0xd5, 0x94, 0x53, 0xff, 0xd3, 0x91, 0x54, 0xff, 0xd2, 0x93, 0x54, 0xff, 0xd9, 0x9e, 0x56, 0xff, 0xe2, 0xac, 0x5e, 0xff, 0xe0, 0xb3, 0x63, 0xff, 0xd5, 0xa8, 0x60, 0xff, 0xbf, 0x88, 0x52, 0xff, 0xbe, 0x86, 0x51, 0xff, 0xbf, 0x86, 0x4f, 0xff, 0xbc, 0x82, 0x49, 0xff, 0xbd, 0x83, 0x4b, 0xff, 0xbc, 0x85, 0x4d, 0xff, 0xbb, 0x86, 0x50, 0xff, 0xbb, 0x85, 0x51, 0xff, 0xba, 0x86, 0x52, 0xff, 0xb9, 0x85, 0x52, 0xff, 0xb8, 0x84, 0x50, 0xff, 0xb7, 0x83, 0x4c, 0xff, 0xb6, 0x82, 0x4a, 0xff, 0xb5, 0x7f, 0x49, 0xff, 0xb3, 0x7e, 0x49, 0xff, 0xb3, 0x7d, 0x48, 0xff, 0xb3, 0x7c, 0x47, 0xff, 0xb1, 0x7a, 0x48, 0xff, 0xab, 0x72, 0x42, 0xff, 0xa6, 0x6c, 0x3d, 0xff, 0xa4, 0x6d, 0x3c, 0xff, 0xa4, 0x6b, 0x3a, 0xff, 0xa3, 0x69, 0x3a, 0xff, 0xa2, 0x68, 0x3a, 0xff, 0xa2, 0x67, 0x39, 0xff, 0x9f, 0x65, 0x37, 0xff, 0x9e, 0x64, 0x37, 0xff, 0x9e, 0x63, 0x38, 0xff, 0x9c, 0x62, 0x37, 0xff, 0x99, 0x5f, 0x35, 0xff, 0x97, 0x5b, 0x33, 0xff, 0x95, 0x5c, 0x33, 0xff, 0x94, 0x5a, 0x32, 0xff, 0x92, 0x58, 0x31, 0xff, 0x92, 0x58, 0x31, 0xff, 0x90, 0x56, 0x31, 0xff, 0x8f, 0x54, 0x30, 0xff, 0x90, 0x54, 0x30, 0xff, 0x8f, 0x54, 0x30, 0xff, 0x8d, 0x53, 0x30, 0xff, 0x8c, 0x53, 0x2f, 0xff, 0x8c, 0x52, 0x2e, 0xff, 0x8b, 0x52, 0x2f, 0xff, 0x8b, 0x52, 0x2d, 0xff, 0x8b, 0x50, 0x2c, 0xff, 0x89, 0x50, 0x2d, 0xff, 0x88, 0x4f, 0x2c, 0xff, 0x87, 0x4e, 0x2b, 0xff, 0x87, 0x4f, 0x2b, 0xff, 0x88, 0x4f, 0x2b, 0xff, 0x88, 0x4f, 0x2b, 0xff, 0x86, 0x4d, 0x28, 0xff, 0x84, 0x4c, 0x26, 0xff, 0x85, 0x4c, 0x27, 0xff, 0x86, 0x4c, 0x28, 0xff, 0x86, 0x4c, 0x27, 0xff, 0x88, 0x4d, 0x28, 0xff, 0x8a, 0x4e, 0x2a, 0xff, 0x8b, 0x4e, 0x2a, 0xff, 0x8c, 0x51, 0x2a, 0xff, 0x8e, 0x51, 0x2c, 0xff, 0x8f, 0x51, 0x2e, 0xff, 0x90, 0x53, 0x2d, 0xff, 0x91, 0x54, 0x2c, 0xff, 0x91, 0x54, 0x2d, 0xff, 0x92, 0x55, 0x2d, 0xff, 0x98, 0x5b, 0x32, 0xff, 0xa0, 0x62, 0x35, 0xff, 0xab, 0x6d, 0x3e, 0xff, 0xb5, 0x77, 0x46, 0xff, 0xb7, 0x7a, 0x47, 0xff, 0xb4, 0x77, 0x45, 0xff, 0xb5, 0x77, 0x44, 0xff, 0xb6, 0x77, 0x44, 0xff, 0xb8, 0x78, 0x44, 0xff, 0xbc, 0x7c, 0x48, 0xff, 0xc0, 0x7f, 0x4a, 0xff, 0xc4, 0x82, 0x4a, 0xff, 0xc8, 0x85, 0x4e, 0xff, 0xcb, 0x87, 0x50, 0xff, 0xd2, 0x8a, 0x52, 0xff, 0xd6, 0x8d, 0x51, 0xff, 0xdc, 0x8d, 0x51, 0xff, 0xe0, 0x8f, 0x54, 0xff, 0xe3, 0x92, 0x56, 0xff, 0xe4, 0x95, 0x59, 0xff, 0xe4, 0x95, 0x59, 0xff, 0xe3, 0x94, 0x58, 0xff, 0xe4, 0x94, 0x57, 0xff, 0xe3, 0x93, 0x57, 0xff, 0xe3, 0x94, 0x58, 0xff, 0xe4, 0x95, 0x59, 0xff, 0xe4, 0x97, 0x5a, 0xff, 0xe4, 0x9a, 0x5d, 0xff, 0xd6, 0x92, 0x55, 0xff, 0xcc, 0x8d, 0x4f, 0xff, 0xc8, 0x89, 0x4b, 0xff, 0xc3, 0x85, 0x49, 0xff, 0xc5, 0x85, 0x48, 0xff, 0xc7, 0x87, 0x48, 0xff, 0xc9, 0x87, 0x4a, 0xff, 0xbe, 0x80, 0x48, 0xff, 0xba, 0x7c, 0x47, 0xff, 0xc3, 0x84, 0x4d, 0xff, 0xc6, 0x84, 0x4e, 0xff, 0xc5, 0x84, 0x4e, 0xff, 0xc9, 0x87, 0x4f, 0xff, 0xcb, 0x88, 0x51, 0xff, 0xcd, 0x8a, 0x51, 0xff, 0xd1, 0x8e, 0x56, 0xff, 0xd7, 0x90, 0x5c, 0xff, 0xd3, 0x8f, 0x5d, 0xff, 0xba, 0x80, 0x54, 0xff, 0xb7, 0x7d, 0x4d, 0xff, 0xb8, 0x7b, 0x4a, 0xff, 0xb6, 0x78, 0x46, 0xff, 0xb5, 0x77, 0x44, 0xff, 0xb4, 0x76, 0x44, 0xff, 0xb4, 0x77, 0x45, 0xff, 0xb4, 0x77, 0x45, 0xff, 0xb5, 0x77, 0x47, 0xff, 0xb6, 0x79, 0x49, 0xff, 0xb7, 0x79, 0x4a, 0xff, 0xa3, 0x66, 0x3c, 0xff, 0x9c, 0x62, 0x3b, 0xff, 0x9c, 0x61, 0x39, 0xff, 0x9d, 0x60, 0x38, 0xff, 0x9d, 0x60, 0x38, 0xff, 0x9f, 0x63, 0x39, 0xff, 0x9e, 0x62, 0x38, 0xff, 0x9e, 0x61, 0x37, 0xff, 0x9d, 0x60, 0x37, 0xff, 0x9d, 0x5f, 0x36, 0xff, 0x9d, 0x61, 0x37, 0xff, 0x9b, 0x5e, 0x36, 0xff, 0x9b, 0x60, 0x36, 0xff, 0x9b, 0x5f, 0x36, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x9b, 0x5d, 0x34, 0xff, 0x9b, 0x5d, 0x35, 0xff, 0x93, 0x56, 0x31, 0xff, 0x90, 0x53, 0x30, 0xff, 0x8e, 0x50, 0x30, 0xff, 0x8e, 0x51, 0x2e, 0xff, 0x8d, 0x50, 0x2d, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x8d, 0x50, 0x2d, 0xff, 0x8b, 0x4e, 0x2b, 0xff, 0x8a, 0x4e, 0x2b, 0xff, 0x8b, 0x4d, 0x2a, 0xff, 0x8a, 0x4d, 0x2b, 0xff, 0x8a, 0x4e, 0x2b, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x91, 0x55, 0x32, 0xff, 0x90, 0x54, 0x31, 0xff, 0x8e, 0x53, 0x31, 0xff, + 0x90, 0x52, 0x2f, 0xff, 0x8c, 0x50, 0x2e, 0xff, 0x8d, 0x50, 0x2e, 0xff, 0x8d, 0x50, 0x2e, 0xff, 0x8b, 0x4e, 0x2b, 0xff, 0x89, 0x4d, 0x29, 0xff, 0x89, 0x4d, 0x2a, 0xff, 0x86, 0x4a, 0x27, 0xff, 0x82, 0x48, 0x24, 0xff, 0x7d, 0x45, 0x21, 0xff, 0x7e, 0x46, 0x21, 0xff, 0x7e, 0x45, 0x20, 0xff, 0x7e, 0x45, 0x21, 0xff, 0x7d, 0x44, 0x1f, 0xff, 0x7f, 0x44, 0x1f, 0xff, 0x81, 0x46, 0x22, 0xff, 0x83, 0x47, 0x23, 0xff, 0x86, 0x49, 0x26, 0xff, 0x89, 0x4b, 0x27, 0xff, 0x8c, 0x4e, 0x29, 0xff, 0x8e, 0x50, 0x2b, 0xff, 0x91, 0x52, 0x2c, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x95, 0x56, 0x2f, 0xff, 0x98, 0x58, 0x30, 0xff, 0x9b, 0x5b, 0x31, 0xff, 0x9f, 0x5f, 0x33, 0xff, 0xa2, 0x61, 0x33, 0xff, 0xa5, 0x64, 0x35, 0xff, 0xa8, 0x67, 0x36, 0xff, 0xac, 0x6c, 0x38, 0xff, 0xae, 0x70, 0x3b, 0xff, 0xb1, 0x74, 0x3c, 0xff, 0xb5, 0x78, 0x41, 0xff, 0xba, 0x7d, 0x46, 0xff, 0xc1, 0x84, 0x4d, 0xff, 0xcc, 0x8b, 0x53, 0xff, 0xdd, 0x97, 0x5d, 0xff, 0xe4, 0xa3, 0x68, 0xff, 0xe4, 0xb1, 0x71, 0xff, 0xe2, 0xcd, 0x7d, 0xff, 0xdb, 0xcf, 0x8f, 0xff, 0xe3, 0xcf, 0xa7, 0xff, 0xe3, 0xcf, 0xb8, 0xff, 0xe4, 0xce, 0xba, 0xff, 0xe4, 0xcf, 0xb7, 0xff, 0xe3, 0xcf, 0xb1, 0xff, 0xe3, 0xcf, 0xa6, 0xff, 0xdf, 0xcf, 0x95, 0xff, 0xdf, 0xcf, 0x8c, 0xff, 0xe3, 0xcb, 0x85, 0xff, 0xe3, 0xc8, 0x80, 0xff, 0xe3, 0xc8, 0x7f, 0xff, 0xe2, 0xc8, 0x7c, 0xff, 0xe1, 0xcc, 0x7a, 0xff, 0xdd, 0xcc, 0x78, 0xff, 0xe3, 0xc5, 0x71, 0xff, 0xe4, 0xb7, 0x6b, 0xff, 0xe2, 0xab, 0x69, 0xff, 0xe2, 0xa7, 0x66, 0xff, 0xe3, 0xa4, 0x65, 0xff, 0xe3, 0xa6, 0x68, 0xff, 0xe4, 0xa9, 0x6c, 0xff, 0xe3, 0xa8, 0x6c, 0xff, 0xe3, 0xa7, 0x6a, 0xff, 0xe3, 0xa6, 0x6a, 0xff, 0xe2, 0xa8, 0x68, 0xff, 0xdd, 0xa6, 0x65, 0xff, 0xd4, 0x9b, 0x58, 0xff, 0xd4, 0x94, 0x53, 0xff, 0xd2, 0x91, 0x53, 0xff, 0xd1, 0x91, 0x52, 0xff, 0xd2, 0x94, 0x53, 0xff, 0xd9, 0xa3, 0x58, 0xff, 0xe1, 0xaf, 0x62, 0xff, 0xdd, 0xab, 0x65, 0xff, 0xd1, 0x9f, 0x5d, 0xff, 0xbe, 0x89, 0x51, 0xff, 0xc1, 0x89, 0x52, 0xff, 0xc0, 0x87, 0x4f, 0xff, 0xbf, 0x85, 0x4d, 0xff, 0xbe, 0x84, 0x4a, 0xff, 0xbe, 0x87, 0x4e, 0xff, 0xbd, 0x89, 0x50, 0xff, 0xbc, 0x86, 0x52, 0xff, 0xbb, 0x86, 0x55, 0xff, 0xba, 0x86, 0x54, 0xff, 0xb9, 0x85, 0x52, 0xff, 0xb8, 0x85, 0x4f, 0xff, 0xb7, 0x83, 0x4b, 0xff, 0xb7, 0x82, 0x49, 0xff, 0xb6, 0x81, 0x4a, 0xff, 0xb5, 0x80, 0x49, 0xff, 0xb4, 0x7d, 0x49, 0xff, 0xb2, 0x7b, 0x48, 0xff, 0xac, 0x74, 0x43, 0xff, 0xa7, 0x6d, 0x3e, 0xff, 0xa7, 0x6e, 0x3e, 0xff, 0xa6, 0x6c, 0x3c, 0xff, 0xa4, 0x6b, 0x3b, 0xff, 0xa4, 0x6a, 0x3b, 0xff, 0xa3, 0x67, 0x3a, 0xff, 0xa1, 0x67, 0x38, 0xff, 0x9f, 0x66, 0x38, 0xff, 0xa0, 0x64, 0x38, 0xff, 0x9d, 0x62, 0x37, 0xff, 0x99, 0x5f, 0x35, 0xff, 0x97, 0x5d, 0x34, 0xff, 0x96, 0x5c, 0x33, 0xff, 0x95, 0x5a, 0x32, 0xff, 0x95, 0x5a, 0x32, 0xff, 0x93, 0x59, 0x31, 0xff, 0x90, 0x56, 0x31, 0xff, 0x90, 0x56, 0x31, 0xff, 0x8f, 0x56, 0x31, 0xff, 0x8e, 0x54, 0x2f, 0xff, 0x8d, 0x54, 0x2f, 0xff, 0x8c, 0x53, 0x2e, 0xff, 0x8c, 0x53, 0x2f, 0xff, 0x8c, 0x52, 0x2f, 0xff, 0x8c, 0x52, 0x2f, 0xff, 0x8a, 0x52, 0x2d, 0xff, 0x89, 0x50, 0x2c, 0xff, 0x89, 0x50, 0x2c, 0xff, 0x89, 0x4f, 0x2c, 0xff, 0x87, 0x4f, 0x2c, 0xff, 0x87, 0x4d, 0x29, 0xff, 0x84, 0x4b, 0x27, 0xff, 0x83, 0x4b, 0x26, 0xff, 0x84, 0x4b, 0x26, 0xff, 0x84, 0x4b, 0x26, 0xff, 0x84, 0x4a, 0x26, 0xff, 0x84, 0x4b, 0x26, 0xff, 0x85, 0x4b, 0x26, 0xff, 0x86, 0x4d, 0x28, 0xff, 0x89, 0x4f, 0x2a, 0xff, 0x8a, 0x4e, 0x2b, 0xff, 0x8b, 0x4f, 0x2a, 0xff, 0x8b, 0x4f, 0x2a, 0xff, 0x8c, 0x50, 0x29, 0xff, 0x8c, 0x4f, 0x27, 0xff, 0x97, 0x5a, 0x30, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xad, 0x70, 0x42, 0xff, 0xb3, 0x77, 0x46, 0xff, 0xb3, 0x78, 0x47, 0xff, 0xb3, 0x79, 0x48, 0xff, 0xb4, 0x7a, 0x4b, 0xff, 0xb5, 0x7b, 0x4a, 0xff, 0xb7, 0x7b, 0x49, 0xff, 0xb8, 0x7a, 0x48, 0xff, 0xb8, 0x7b, 0x46, 0xff, 0xb8, 0x7b, 0x45, 0xff, 0xbb, 0x7c, 0x47, 0xff, 0xbe, 0x7f, 0x49, 0xff, 0xc1, 0x81, 0x4a, 0xff, 0xc4, 0x83, 0x4c, 0xff, 0xc9, 0x85, 0x4d, 0xff, 0xcf, 0x8a, 0x4e, 0xff, 0xd5, 0x8c, 0x51, 0xff, 0xdb, 0x8e, 0x53, 0xff, 0xdf, 0x95, 0x57, 0xff, 0xe2, 0x98, 0x5c, 0xff, 0xe3, 0x9b, 0x5f, 0xff, 0xe3, 0x9c, 0x60, 0xff, 0xe3, 0x9d, 0x5d, 0xff, 0xe3, 0x99, 0x5b, 0xff, 0xe3, 0x97, 0x59, 0xff, 0xe3, 0x97, 0x59, 0xff, 0xe3, 0x96, 0x59, 0xff, 0xe3, 0x96, 0x59, 0xff, 0xe4, 0x97, 0x5a, 0xff, 0xe5, 0x99, 0x5d, 0xff, 0xdf, 0x96, 0x5a, 0xff, 0xd5, 0x91, 0x55, 0xff, 0xca, 0x8c, 0x50, 0xff, 0xbe, 0x82, 0x47, 0xff, 0xbd, 0x80, 0x49, 0xff, 0xbd, 0x7e, 0x4a, 0xff, 0xbd, 0x7d, 0x49, 0xff, 0xbf, 0x80, 0x49, 0xff, 0xc1, 0x83, 0x4c, 0xff, 0xc0, 0x84, 0x4c, 0xff, 0xc4, 0x85, 0x4f, 0xff, 0xc5, 0x85, 0x4e, 0xff, 0xc7, 0x86, 0x50, 0xff, 0xcc, 0x8a, 0x52, 0xff, 0xd0, 0x8e, 0x56, 0xff, 0xd3, 0x90, 0x5a, 0xff, 0xbd, 0x81, 0x53, 0xff, 0xb6, 0x7e, 0x4e, 0xff, 0xb8, 0x7c, 0x4b, 0xff, 0xb6, 0x7a, 0x49, 0xff, 0xb6, 0x78, 0x46, 0xff, 0xb5, 0x77, 0x45, 0xff, 0xb6, 0x79, 0x46, 0xff, 0xb7, 0x7b, 0x49, 0xff, 0xb9, 0x7d, 0x4b, 0xff, 0xbd, 0x81, 0x50, 0xff, 0xaf, 0x74, 0x47, 0xff, 0x9f, 0x64, 0x3c, 0xff, 0x9f, 0x65, 0x3c, 0xff, 0xa0, 0x65, 0x3b, 0xff, 0xa1, 0x66, 0x3c, 0xff, 0xa2, 0x65, 0x3b, 0xff, 0xa0, 0x65, 0x3a, 0xff, 0x9f, 0x63, 0x39, 0xff, 0x9d, 0x61, 0x37, 0xff, 0x9d, 0x5f, 0x36, 0xff, 0x9b, 0x5f, 0x37, 0xff, 0x9b, 0x5e, 0x36, 0xff, 0x9a, 0x5e, 0x36, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x99, 0x5b, 0x33, 0xff, 0x99, 0x5b, 0x33, 0xff, 0x99, 0x5a, 0x33, 0xff, 0x99, 0x5a, 0x33, 0xff, 0x95, 0x59, 0x31, 0xff, 0x8e, 0x50, 0x2e, 0xff, 0x8c, 0x4f, 0x2d, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x8b, 0x4e, 0x2a, 0xff, 0x8b, 0x4e, 0x2a, 0xff, 0x8a, 0x4d, 0x2a, 0xff, 0x89, 0x4c, 0x29, 0xff, 0x88, 0x4c, 0x28, 0xff, 0x87, 0x4b, 0x28, 0xff, 0x88, 0x4c, 0x28, 0xff, 0x88, 0x4c, 0x29, 0xff, 0x90, 0x54, 0x31, 0xff, 0x90, 0x54, 0x32, 0xff, 0x8f, 0x53, 0x31, 0xff, 0x8f, 0x53, 0x31, 0xff, + 0x8d, 0x50, 0x2e, 0xff, 0x8c, 0x50, 0x2e, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x8b, 0x4e, 0x2a, 0xff, 0x88, 0x4c, 0x29, 0xff, 0x8a, 0x4d, 0x2a, 0xff, 0x89, 0x4d, 0x2a, 0xff, 0x89, 0x4c, 0x29, 0xff, 0x88, 0x4b, 0x29, 0xff, 0x88, 0x4c, 0x29, 0xff, 0x82, 0x46, 0x21, 0xff, 0x7d, 0x44, 0x1f, 0xff, 0x7e, 0x45, 0x22, 0xff, 0x7e, 0x45, 0x21, 0xff, 0x80, 0x45, 0x21, 0xff, 0x81, 0x45, 0x21, 0xff, 0x83, 0x47, 0x23, 0xff, 0x85, 0x48, 0x24, 0xff, 0x86, 0x4a, 0x24, 0xff, 0x88, 0x4a, 0x26, 0xff, 0x8a, 0x4c, 0x25, 0xff, 0x8d, 0x4e, 0x27, 0xff, 0x8f, 0x50, 0x2a, 0xff, 0x92, 0x53, 0x2c, 0xff, 0x94, 0x55, 0x2f, 0xff, 0x99, 0x5a, 0x30, 0xff, 0x9d, 0x5c, 0x32, 0xff, 0x9f, 0x60, 0x33, 0xff, 0xa2, 0x62, 0x33, 0xff, 0xa6, 0x66, 0x35, 0xff, 0xaa, 0x6a, 0x37, 0xff, 0xae, 0x6e, 0x39, 0xff, 0xb1, 0x73, 0x3c, 0xff, 0xb4, 0x75, 0x3e, 0xff, 0xb9, 0x7a, 0x43, 0xff, 0xbe, 0x81, 0x49, 0xff, 0xc8, 0x8b, 0x50, 0xff, 0xd8, 0x95, 0x5a, 0xff, 0xe3, 0xa1, 0x64, 0xff, 0xe4, 0xaf, 0x6e, 0xff, 0xe1, 0xcd, 0x7d, 0xff, 0xdb, 0xcf, 0x8e, 0xff, 0xe3, 0xcf, 0xab, 0xff, 0xe4, 0xcf, 0xbc, 0xff, 0xe4, 0xcf, 0xbb, 0xff, 0xe4, 0xcf, 0xbb, 0xff, 0xe4, 0xcf, 0xbb, 0xff, 0xe4, 0xcf, 0xb8, 0xff, 0xe3, 0xce, 0xaa, 0xff, 0xe0, 0xcf, 0x95, 0xff, 0xdf, 0xcf, 0x8d, 0xff, 0xe3, 0xca, 0x85, 0xff, 0xe3, 0xc3, 0x81, 0xff, 0xe3, 0xc2, 0x7e, 0xff, 0xe3, 0xc8, 0x7c, 0xff, 0xe2, 0xcd, 0x7b, 0xff, 0xe0, 0xcc, 0x77, 0xff, 0xe3, 0xc5, 0x6f, 0xff, 0xe4, 0xb3, 0x6a, 0xff, 0xe3, 0xa7, 0x66, 0xff, 0xe3, 0xa2, 0x65, 0xff, 0xe3, 0xa4, 0x66, 0xff, 0xe2, 0xa9, 0x6a, 0xff, 0xe3, 0xaa, 0x6b, 0xff, 0xe4, 0xa9, 0x6b, 0xff, 0xe2, 0xa9, 0x69, 0xff, 0xe3, 0xa8, 0x67, 0xff, 0xe2, 0xa7, 0x66, 0xff, 0xda, 0x9f, 0x5f, 0xff, 0xd0, 0x94, 0x52, 0xff, 0xd2, 0x92, 0x54, 0xff, 0xcf, 0x8f, 0x52, 0xff, 0xcf, 0x92, 0x51, 0xff, 0xdb, 0xa6, 0x5b, 0xff, 0xde, 0xb0, 0x63, 0xff, 0xde, 0xb8, 0x69, 0xff, 0xd4, 0xa1, 0x60, 0xff, 0xc0, 0x8a, 0x53, 0xff, 0xc1, 0x89, 0x52, 0xff, 0xc2, 0x89, 0x50, 0xff, 0xc1, 0x89, 0x4e, 0xff, 0xbf, 0x85, 0x4b, 0xff, 0xbf, 0x87, 0x4c, 0xff, 0xbe, 0x87, 0x4f, 0xff, 0xbd, 0x8a, 0x54, 0xff, 0xbd, 0x89, 0x56, 0xff, 0xbc, 0x86, 0x54, 0xff, 0xbb, 0x87, 0x52, 0xff, 0xba, 0x88, 0x50, 0xff, 0xb9, 0x86, 0x4d, 0xff, 0xb8, 0x80, 0x4a, 0xff, 0xb6, 0x7e, 0x48, 0xff, 0xb6, 0x7d, 0x48, 0xff, 0xb5, 0x81, 0x4a, 0xff, 0xb2, 0x7d, 0x4a, 0xff, 0xad, 0x73, 0x43, 0xff, 0xa9, 0x6e, 0x3f, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa7, 0x6c, 0x3c, 0xff, 0xa5, 0x6b, 0x3b, 0xff, 0xa4, 0x6c, 0x3b, 0xff, 0xa4, 0x6a, 0x3a, 0xff, 0xa2, 0x67, 0x39, 0xff, 0xa0, 0x66, 0x39, 0xff, 0xa0, 0x66, 0x39, 0xff, 0x9e, 0x64, 0x38, 0xff, 0x9b, 0x60, 0x36, 0xff, 0x99, 0x5e, 0x34, 0xff, 0x98, 0x5c, 0x34, 0xff, 0x97, 0x5c, 0x34, 0xff, 0x94, 0x5a, 0x32, 0xff, 0x92, 0x59, 0x32, 0xff, 0x92, 0x58, 0x32, 0xff, 0x90, 0x56, 0x31, 0xff, 0x8f, 0x56, 0x31, 0xff, 0x90, 0x54, 0x2f, 0xff, 0x8f, 0x54, 0x2f, 0xff, 0x8d, 0x54, 0x2e, 0xff, 0x8c, 0x52, 0x2f, 0xff, 0x8c, 0x51, 0x2f, 0xff, 0x8c, 0x52, 0x2e, 0xff, 0x8c, 0x51, 0x2d, 0xff, 0x8a, 0x50, 0x2e, 0xff, 0x8a, 0x4f, 0x2d, 0xff, 0x8a, 0x50, 0x2e, 0xff, 0x88, 0x4e, 0x2b, 0xff, 0x84, 0x49, 0x26, 0xff, 0x82, 0x48, 0x24, 0xff, 0x82, 0x4a, 0x25, 0xff, 0x82, 0x49, 0x24, 0xff, 0x82, 0x48, 0x23, 0xff, 0x82, 0x4a, 0x25, 0xff, 0x84, 0x4b, 0x26, 0xff, 0x85, 0x4a, 0x25, 0xff, 0x86, 0x4b, 0x27, 0xff, 0x87, 0x4d, 0x28, 0xff, 0x87, 0x4d, 0x26, 0xff, 0x88, 0x4d, 0x25, 0xff, 0x87, 0x4b, 0x25, 0xff, 0x8f, 0x51, 0x2b, 0xff, 0xa3, 0x67, 0x3b, 0xff, 0xab, 0x70, 0x40, 0xff, 0xac, 0x6f, 0x3f, 0xff, 0xae, 0x73, 0x43, 0xff, 0xae, 0x74, 0x46, 0xff, 0xad, 0x73, 0x45, 0xff, 0xae, 0x73, 0x45, 0xff, 0xae, 0x72, 0x44, 0xff, 0xb1, 0x73, 0x45, 0xff, 0xb3, 0x75, 0x45, 0xff, 0xb5, 0x77, 0x44, 0xff, 0xb6, 0x77, 0x44, 0xff, 0xb8, 0x77, 0x45, 0xff, 0xba, 0x7b, 0x46, 0xff, 0xbd, 0x7e, 0x47, 0xff, 0xbf, 0x80, 0x49, 0xff, 0xc0, 0x82, 0x4a, 0xff, 0xc5, 0x84, 0x4c, 0xff, 0xca, 0x86, 0x4e, 0xff, 0xce, 0x87, 0x4f, 0xff, 0xd3, 0x8b, 0x50, 0xff, 0xd8, 0x8f, 0x54, 0xff, 0xde, 0x95, 0x59, 0xff, 0xe2, 0x99, 0x5f, 0xff, 0xe3, 0x9b, 0x63, 0xff, 0xe3, 0x9e, 0x63, 0xff, 0xe2, 0xa0, 0x61, 0xff, 0xe3, 0x9d, 0x5d, 0xff, 0xe3, 0x9a, 0x5a, 0xff, 0xe3, 0x98, 0x59, 0xff, 0xe3, 0x97, 0x59, 0xff, 0xe3, 0x97, 0x5b, 0xff, 0xe3, 0x97, 0x5a, 0xff, 0xe2, 0x97, 0x5a, 0xff, 0xe3, 0x98, 0x5a, 0xff, 0xe3, 0x96, 0x5d, 0xff, 0xd7, 0x91, 0x5c, 0xff, 0xbf, 0x84, 0x50, 0xff, 0xbc, 0x80, 0x4a, 0xff, 0xbe, 0x80, 0x49, 0xff, 0xbf, 0x81, 0x49, 0xff, 0xbf, 0x80, 0x49, 0xff, 0xc1, 0x81, 0x4a, 0xff, 0xbf, 0x82, 0x4a, 0xff, 0xc1, 0x84, 0x4c, 0xff, 0xc2, 0x85, 0x4e, 0xff, 0xc7, 0x87, 0x4f, 0xff, 0xc8, 0x86, 0x50, 0xff, 0xd2, 0x8e, 0x55, 0xff, 0xbf, 0x82, 0x4d, 0xff, 0xb5, 0x7b, 0x49, 0xff, 0xb6, 0x7a, 0x47, 0xff, 0xb6, 0x78, 0x45, 0xff, 0xb6, 0x78, 0x46, 0xff, 0xb5, 0x79, 0x47, 0xff, 0xb7, 0x7b, 0x49, 0xff, 0xb9, 0x7e, 0x4b, 0xff, 0xbe, 0x82, 0x51, 0xff, 0xc7, 0x8a, 0x58, 0xff, 0xa1, 0x67, 0x3b, 0xff, 0xa1, 0x68, 0x3e, 0xff, 0xa2, 0x68, 0x40, 0xff, 0xa2, 0x6a, 0x40, 0xff, 0xa2, 0x6a, 0x40, 0xff, 0xa2, 0x6a, 0x3d, 0xff, 0xa3, 0x67, 0x3e, 0xff, 0xa0, 0x65, 0x3a, 0xff, 0x9f, 0x63, 0x39, 0xff, 0x9e, 0x61, 0x38, 0xff, 0x9b, 0x5f, 0x38, 0xff, 0x99, 0x5d, 0x37, 0xff, 0x9a, 0x5d, 0x35, 0xff, 0x98, 0x5c, 0x34, 0xff, 0x98, 0x5b, 0x34, 0xff, 0x99, 0x59, 0x33, 0xff, 0x97, 0x59, 0x33, 0xff, 0x97, 0x59, 0x33, 0xff, 0x97, 0x59, 0x33, 0xff, 0x98, 0x5a, 0x33, 0xff, 0x96, 0x59, 0x32, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x8c, 0x4f, 0x2b, 0xff, 0x8b, 0x4e, 0x29, 0xff, 0x8a, 0x4e, 0x29, 0xff, 0x8a, 0x4c, 0x29, 0xff, 0x88, 0x4c, 0x28, 0xff, 0x87, 0x4c, 0x27, 0xff, 0x87, 0x4b, 0x27, 0xff, 0x86, 0x4a, 0x27, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x90, 0x55, 0x31, 0xff, 0x8f, 0x53, 0x32, 0xff, 0x8e, 0x53, 0x30, 0xff, 0x8f, 0x52, 0x30, 0xff, + 0x8c, 0x50, 0x2e, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x89, 0x4d, 0x29, 0xff, 0x87, 0x4b, 0x28, 0xff, 0x87, 0x4b, 0x27, 0xff, 0x86, 0x49, 0x27, 0xff, 0x85, 0x49, 0x25, 0xff, 0x86, 0x4a, 0x27, 0xff, 0x87, 0x4b, 0x27, 0xff, 0x85, 0x4a, 0x26, 0xff, 0x7c, 0x42, 0x1d, 0xff, 0x7b, 0x44, 0x1f, 0xff, 0x7e, 0x44, 0x1f, 0xff, 0x7d, 0x44, 0x1f, 0xff, 0x80, 0x44, 0x20, 0xff, 0x81, 0x44, 0x20, 0xff, 0x84, 0x48, 0x23, 0xff, 0x85, 0x48, 0x22, 0xff, 0x88, 0x4a, 0x25, 0xff, 0x8a, 0x4b, 0x27, 0xff, 0x8d, 0x4e, 0x27, 0xff, 0x8f, 0x51, 0x2a, 0xff, 0x94, 0x56, 0x2f, 0xff, 0x98, 0x57, 0x2f, 0xff, 0x99, 0x5a, 0x31, 0xff, 0x9d, 0x5d, 0x31, 0xff, 0x9f, 0x5e, 0x33, 0xff, 0xa3, 0x62, 0x33, 0xff, 0xa6, 0x65, 0x36, 0xff, 0xab, 0x6a, 0x37, 0xff, 0xb0, 0x6f, 0x3b, 0xff, 0xb3, 0x76, 0x3e, 0xff, 0xb6, 0x79, 0x40, 0xff, 0xba, 0x7d, 0x45, 0xff, 0xc3, 0x86, 0x4d, 0xff, 0xd1, 0x92, 0x56, 0xff, 0xe2, 0xa0, 0x62, 0xff, 0xe4, 0xae, 0x6d, 0xff, 0xe1, 0xc5, 0x7a, 0xff, 0xdb, 0xd0, 0x8c, 0xff, 0xe3, 0xcf, 0xa2, 0xff, 0xe4, 0xcf, 0xbd, 0xff, 0xe3, 0xce, 0xbb, 0xff, 0xe4, 0xcf, 0xbb, 0xff, 0xe4, 0xcf, 0xbb, 0xff, 0xe4, 0xcf, 0xbb, 0xff, 0xe4, 0xcf, 0xba, 0xff, 0xe3, 0xcf, 0xb0, 0xff, 0xe0, 0xcf, 0x98, 0xff, 0xe0, 0xcb, 0x8d, 0xff, 0xe4, 0xc0, 0x86, 0xff, 0xe3, 0xc1, 0x83, 0xff, 0xe4, 0xc6, 0x7e, 0xff, 0xe4, 0xcb, 0x7b, 0xff, 0xe2, 0xce, 0x78, 0xff, 0xe1, 0xc5, 0x70, 0xff, 0xe2, 0xb5, 0x6a, 0xff, 0xe2, 0xab, 0x67, 0xff, 0xe4, 0xa4, 0x66, 0xff, 0xe3, 0xa3, 0x64, 0xff, 0xe3, 0xa7, 0x66, 0xff, 0xe3, 0xa9, 0x68, 0xff, 0xe3, 0xa5, 0x64, 0xff, 0xe3, 0xa6, 0x67, 0xff, 0xe3, 0xa5, 0x63, 0xff, 0xe4, 0xa5, 0x64, 0xff, 0xe1, 0xa1, 0x63, 0xff, 0xd4, 0x98, 0x58, 0xff, 0xce, 0x8e, 0x50, 0xff, 0xca, 0x8e, 0x50, 0xff, 0xce, 0x93, 0x53, 0xff, 0xe4, 0xb0, 0x60, 0xff, 0xe0, 0xaf, 0x65, 0xff, 0xde, 0xa9, 0x65, 0xff, 0xd5, 0xa5, 0x62, 0xff, 0xc3, 0x8a, 0x53, 0xff, 0xc5, 0x8c, 0x52, 0xff, 0xc4, 0x8b, 0x51, 0xff, 0xc4, 0x8b, 0x50, 0xff, 0xc2, 0x87, 0x4d, 0xff, 0xc1, 0x87, 0x4c, 0xff, 0xc1, 0x8c, 0x51, 0xff, 0xbe, 0x8b, 0x52, 0xff, 0xbe, 0x88, 0x52, 0xff, 0xbd, 0x88, 0x54, 0xff, 0xbc, 0x8a, 0x53, 0xff, 0xbb, 0x86, 0x4e, 0xff, 0xba, 0x85, 0x4c, 0xff, 0xb9, 0x84, 0x4c, 0xff, 0xb9, 0x84, 0x49, 0xff, 0xb7, 0x81, 0x49, 0xff, 0xb5, 0x81, 0x4a, 0xff, 0xb1, 0x7c, 0x47, 0xff, 0xab, 0x73, 0x42, 0xff, 0xab, 0x72, 0x42, 0xff, 0xa9, 0x71, 0x41, 0xff, 0xa8, 0x6f, 0x3e, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa6, 0x6d, 0x3c, 0xff, 0xa4, 0x6a, 0x3b, 0xff, 0xa3, 0x69, 0x3b, 0xff, 0xa1, 0x67, 0x39, 0xff, 0xa0, 0x66, 0x39, 0xff, 0x9e, 0x63, 0x38, 0xff, 0x9b, 0x60, 0x35, 0xff, 0x9a, 0x5f, 0x35, 0xff, 0x99, 0x5e, 0x35, 0xff, 0x97, 0x5c, 0x33, 0xff, 0x95, 0x5b, 0x32, 0xff, 0x95, 0x5a, 0x33, 0xff, 0x93, 0x58, 0x32, 0xff, 0x91, 0x58, 0x31, 0xff, 0x90, 0x56, 0x31, 0xff, 0x90, 0x55, 0x31, 0xff, 0x8f, 0x55, 0x30, 0xff, 0x8d, 0x53, 0x2e, 0xff, 0x8c, 0x54, 0x2e, 0xff, 0x8c, 0x53, 0x2f, 0xff, 0x8c, 0x51, 0x2f, 0xff, 0x8b, 0x50, 0x2e, 0xff, 0x8b, 0x51, 0x2e, 0xff, 0x8b, 0x51, 0x2e, 0xff, 0x87, 0x4f, 0x2c, 0xff, 0x83, 0x4a, 0x27, 0xff, 0x82, 0x48, 0x25, 0xff, 0x82, 0x48, 0x24, 0xff, 0x80, 0x47, 0x23, 0xff, 0x7f, 0x48, 0x23, 0xff, 0x81, 0x48, 0x23, 0xff, 0x82, 0x48, 0x24, 0xff, 0x82, 0x49, 0x25, 0xff, 0x83, 0x4a, 0x25, 0xff, 0x83, 0x4a, 0x25, 0xff, 0x82, 0x49, 0x24, 0xff, 0x83, 0x49, 0x24, 0xff, 0x87, 0x4c, 0x27, 0xff, 0x99, 0x5e, 0x36, 0xff, 0xa8, 0x6d, 0x3f, 0xff, 0xa9, 0x6c, 0x3d, 0xff, 0xa9, 0x6b, 0x3e, 0xff, 0xa9, 0x6c, 0x3e, 0xff, 0xa8, 0x6b, 0x3c, 0xff, 0xa7, 0x6a, 0x3c, 0xff, 0xa9, 0x6c, 0x3d, 0xff, 0xab, 0x6d, 0x3f, 0xff, 0xad, 0x6f, 0x41, 0xff, 0xaf, 0x72, 0x42, 0xff, 0xb0, 0x74, 0x42, 0xff, 0xb2, 0x75, 0x42, 0xff, 0xb4, 0x75, 0x41, 0xff, 0xb5, 0x76, 0x41, 0xff, 0xb7, 0x77, 0x42, 0xff, 0xb9, 0x78, 0x43, 0xff, 0xba, 0x79, 0x44, 0xff, 0xbd, 0x7d, 0x46, 0xff, 0xc0, 0x81, 0x48, 0xff, 0xc4, 0x83, 0x4b, 0xff, 0xc9, 0x87, 0x4d, 0xff, 0xce, 0x89, 0x4e, 0xff, 0xd2, 0x8c, 0x4f, 0xff, 0xd7, 0x8f, 0x52, 0xff, 0xdc, 0x96, 0x57, 0xff, 0xe1, 0x9a, 0x5f, 0xff, 0xe3, 0x9b, 0x63, 0xff, 0xe3, 0xa0, 0x64, 0xff, 0xe3, 0xa2, 0x63, 0xff, 0xe3, 0x9d, 0x60, 0xff, 0xe1, 0x9a, 0x5d, 0xff, 0xe2, 0x97, 0x5a, 0xff, 0xe3, 0x97, 0x59, 0xff, 0xe2, 0x94, 0x59, 0xff, 0xe3, 0x97, 0x5b, 0xff, 0xe2, 0x95, 0x59, 0xff, 0xe2, 0x94, 0x5b, 0xff, 0xe1, 0x93, 0x5c, 0xff, 0xe5, 0x96, 0x5e, 0xff, 0xcd, 0x88, 0x51, 0xff, 0xbf, 0x80, 0x49, 0xff, 0xbc, 0x7c, 0x47, 0xff, 0xbb, 0x7d, 0x46, 0xff, 0xbd, 0x7e, 0x47, 0xff, 0xbd, 0x7f, 0x47, 0xff, 0xbe, 0x81, 0x49, 0xff, 0xc0, 0x83, 0x4c, 0xff, 0xc1, 0x83, 0x4c, 0xff, 0xc4, 0x85, 0x4d, 0xff, 0xc9, 0x87, 0x4e, 0xff, 0xbf, 0x7e, 0x4a, 0xff, 0xb3, 0x76, 0x44, 0xff, 0xb5, 0x77, 0x45, 0xff, 0xb6, 0x78, 0x46, 0xff, 0xb2, 0x76, 0x45, 0xff, 0xb5, 0x78, 0x46, 0xff, 0xba, 0x7f, 0x4b, 0xff, 0xbb, 0x81, 0x4e, 0xff, 0xc5, 0x8a, 0x58, 0xff, 0xa9, 0x6d, 0x41, 0xff, 0xa2, 0x69, 0x40, 0xff, 0xa2, 0x6a, 0x40, 0xff, 0xa2, 0x6c, 0x42, 0xff, 0xa2, 0x6d, 0x44, 0xff, 0xa2, 0x6d, 0x43, 0xff, 0xa2, 0x6d, 0x43, 0xff, 0xa2, 0x6a, 0x41, 0xff, 0xa2, 0x69, 0x3e, 0xff, 0xa1, 0x66, 0x3c, 0xff, 0x9d, 0x63, 0x3a, 0xff, 0x9c, 0x60, 0x39, 0xff, 0x9a, 0x5e, 0x36, 0xff, 0x98, 0x5d, 0x36, 0xff, 0x98, 0x5c, 0x34, 0xff, 0x98, 0x59, 0x33, 0xff, 0x96, 0x59, 0x32, 0xff, 0x96, 0x57, 0x32, 0xff, 0x96, 0x57, 0x32, 0xff, 0x96, 0x59, 0x31, 0xff, 0x96, 0x57, 0x32, 0xff, 0x97, 0x58, 0x33, 0xff, 0x95, 0x56, 0x31, 0xff, 0x8c, 0x4f, 0x2b, 0xff, 0x8b, 0x4e, 0x2a, 0xff, 0x8b, 0x4d, 0x29, 0xff, 0x88, 0x4b, 0x29, 0xff, 0x88, 0x4d, 0x29, 0xff, 0x88, 0x4c, 0x27, 0xff, 0x87, 0x4b, 0x27, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x90, 0x55, 0x31, 0xff, 0x8f, 0x54, 0x32, 0xff, 0x8f, 0x53, 0x31, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8c, 0x51, 0x2e, 0xff, + 0x8c, 0x4f, 0x2d, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x8b, 0x4e, 0x2b, 0xff, 0x8a, 0x4d, 0x2a, 0xff, 0x88, 0x4b, 0x28, 0xff, 0x85, 0x49, 0x26, 0xff, 0x84, 0x49, 0x26, 0xff, 0x83, 0x49, 0x25, 0xff, 0x83, 0x47, 0x25, 0xff, 0x82, 0x48, 0x25, 0xff, 0x82, 0x49, 0x25, 0xff, 0x85, 0x49, 0x25, 0xff, 0x87, 0x4b, 0x26, 0xff, 0x7f, 0x45, 0x20, 0xff, 0x7a, 0x42, 0x1e, 0xff, 0x7a, 0x42, 0x1e, 0xff, 0x7d, 0x43, 0x1d, 0xff, 0x7e, 0x43, 0x1f, 0xff, 0x81, 0x46, 0x20, 0xff, 0x83, 0x48, 0x20, 0xff, 0x85, 0x47, 0x23, 0xff, 0x88, 0x4a, 0x25, 0xff, 0x8b, 0x4c, 0x26, 0xff, 0x8e, 0x4f, 0x29, 0xff, 0x91, 0x53, 0x2c, 0xff, 0x94, 0x55, 0x2f, 0xff, 0x98, 0x59, 0x2f, 0xff, 0x9b, 0x5a, 0x30, 0xff, 0x9d, 0x5d, 0x31, 0xff, 0xa2, 0x60, 0x32, 0xff, 0xa5, 0x64, 0x33, 0xff, 0xa8, 0x69, 0x35, 0xff, 0xad, 0x6d, 0x38, 0xff, 0xb1, 0x73, 0x3a, 0xff, 0xb5, 0x76, 0x3f, 0xff, 0xba, 0x7c, 0x44, 0xff, 0xbf, 0x82, 0x49, 0xff, 0xc9, 0x8d, 0x50, 0xff, 0xdd, 0x98, 0x5a, 0xff, 0xe3, 0xa7, 0x69, 0xff, 0xe1, 0xbf, 0x75, 0xff, 0xde, 0xd1, 0x86, 0xff, 0xe2, 0xd0, 0x9e, 0xff, 0xe4, 0xcf, 0xbc, 0xff, 0xe4, 0xcf, 0xbb, 0xff, 0xe4, 0xd0, 0xbb, 0xff, 0xe4, 0xd0, 0xbb, 0xff, 0xe4, 0xcf, 0xbb, 0xff, 0xe4, 0xd0, 0xbb, 0xff, 0xe4, 0xd0, 0xba, 0xff, 0xe3, 0xd0, 0xb0, 0xff, 0xe1, 0xce, 0x97, 0xff, 0xe3, 0xc8, 0x8d, 0xff, 0xe4, 0xc0, 0x85, 0xff, 0xe4, 0xc2, 0x81, 0xff, 0xe3, 0xc7, 0x7d, 0xff, 0xe1, 0xce, 0x7a, 0xff, 0xe2, 0xca, 0x73, 0xff, 0xe2, 0xba, 0x6a, 0xff, 0xe4, 0xa9, 0x63, 0xff, 0xe3, 0xa0, 0x63, 0xff, 0xe2, 0x9e, 0x60, 0xff, 0xe2, 0xa0, 0x60, 0xff, 0xe3, 0xa5, 0x64, 0xff, 0xe3, 0xa3, 0x64, 0xff, 0xe3, 0xa4, 0x64, 0xff, 0xe3, 0xa5, 0x63, 0xff, 0xe3, 0xa3, 0x63, 0xff, 0xe2, 0xa1, 0x62, 0xff, 0xdc, 0x9c, 0x5e, 0xff, 0xcd, 0x8f, 0x51, 0xff, 0xcb, 0x8d, 0x51, 0xff, 0xd3, 0x9b, 0x57, 0xff, 0xe3, 0xb2, 0x62, 0xff, 0xde, 0xad, 0x63, 0xff, 0xe1, 0xb0, 0x68, 0xff, 0xda, 0xa4, 0x62, 0xff, 0xc6, 0x8b, 0x52, 0xff, 0xc6, 0x8c, 0x52, 0xff, 0xc5, 0x8b, 0x50, 0xff, 0xc4, 0x8c, 0x52, 0xff, 0xc3, 0x8b, 0x4f, 0xff, 0xc2, 0x89, 0x4d, 0xff, 0xc1, 0x8c, 0x50, 0xff, 0xc0, 0x8c, 0x52, 0xff, 0xbf, 0x8b, 0x53, 0xff, 0xbf, 0x8a, 0x53, 0xff, 0xbe, 0x89, 0x52, 0xff, 0xbc, 0x89, 0x51, 0xff, 0xbb, 0x87, 0x4e, 0xff, 0xba, 0x85, 0x4a, 0xff, 0xb9, 0x82, 0x4b, 0xff, 0xb8, 0x82, 0x4b, 0xff, 0xb7, 0x81, 0x4a, 0xff, 0xb3, 0x7b, 0x46, 0xff, 0xad, 0x74, 0x42, 0xff, 0xac, 0x73, 0x44, 0xff, 0xaa, 0x70, 0x41, 0xff, 0xa9, 0x70, 0x3f, 0xff, 0xa8, 0x6f, 0x3d, 0xff, 0xa7, 0x6e, 0x3d, 0xff, 0xa6, 0x6c, 0x3d, 0xff, 0xa4, 0x6c, 0x3c, 0xff, 0xa3, 0x6a, 0x3b, 0xff, 0xa2, 0x68, 0x3a, 0xff, 0x9e, 0x64, 0x38, 0xff, 0x9d, 0x61, 0x37, 0xff, 0x9c, 0x61, 0x37, 0xff, 0x99, 0x60, 0x35, 0xff, 0x98, 0x5e, 0x35, 0xff, 0x97, 0x5e, 0x35, 0xff, 0x96, 0x5c, 0x33, 0xff, 0x95, 0x5a, 0x32, 0xff, 0x93, 0x5a, 0x33, 0xff, 0x91, 0x58, 0x32, 0xff, 0x91, 0x56, 0x31, 0xff, 0x8f, 0x54, 0x2f, 0xff, 0x8e, 0x54, 0x2f, 0xff, 0x8d, 0x53, 0x30, 0xff, 0x8c, 0x53, 0x30, 0xff, 0x8d, 0x52, 0x2f, 0xff, 0x8c, 0x53, 0x2f, 0xff, 0x8c, 0x53, 0x2f, 0xff, 0x8a, 0x51, 0x2d, 0xff, 0x84, 0x4c, 0x28, 0xff, 0x82, 0x49, 0x25, 0xff, 0x82, 0x48, 0x25, 0xff, 0x80, 0x47, 0x23, 0xff, 0x7f, 0x47, 0x22, 0xff, 0x80, 0x47, 0x22, 0xff, 0x80, 0x48, 0x22, 0xff, 0x81, 0x48, 0x24, 0xff, 0x82, 0x48, 0x25, 0xff, 0x82, 0x48, 0x24, 0xff, 0x81, 0x47, 0x21, 0xff, 0x80, 0x47, 0x21, 0xff, 0x8c, 0x52, 0x2c, 0xff, 0x9f, 0x65, 0x3b, 0xff, 0xa7, 0x6a, 0x3d, 0xff, 0xa6, 0x68, 0x3b, 0xff, 0xa4, 0x68, 0x3a, 0xff, 0xa4, 0x67, 0x3a, 0xff, 0xa4, 0x66, 0x39, 0xff, 0xa5, 0x67, 0x39, 0xff, 0xa6, 0x68, 0x3a, 0xff, 0xa6, 0x69, 0x3a, 0xff, 0xa7, 0x69, 0x3a, 0xff, 0xa8, 0x6a, 0x3b, 0xff, 0xa9, 0x6b, 0x3b, 0xff, 0xac, 0x6e, 0x3c, 0xff, 0xae, 0x70, 0x3c, 0xff, 0xb0, 0x72, 0x3f, 0xff, 0xb3, 0x74, 0x42, 0xff, 0xb5, 0x77, 0x42, 0xff, 0xb7, 0x78, 0x43, 0xff, 0xb9, 0x79, 0x43, 0xff, 0xbb, 0x7b, 0x44, 0xff, 0xbd, 0x7e, 0x46, 0xff, 0xc1, 0x80, 0x48, 0xff, 0xc5, 0x84, 0x49, 0xff, 0xca, 0x87, 0x4d, 0xff, 0xcf, 0x8c, 0x50, 0xff, 0xd5, 0x8e, 0x51, 0xff, 0xd8, 0x92, 0x53, 0xff, 0xdd, 0x96, 0x57, 0xff, 0xe1, 0x9c, 0x5c, 0xff, 0xe3, 0xa1, 0x60, 0xff, 0xe3, 0xa1, 0x62, 0xff, 0xe3, 0x9e, 0x61, 0xff, 0xe3, 0x9c, 0x5f, 0xff, 0xe3, 0x9a, 0x5e, 0xff, 0xe3, 0x97, 0x5b, 0xff, 0xe3, 0x96, 0x5b, 0xff, 0xe1, 0x94, 0x5a, 0xff, 0xdb, 0x90, 0x58, 0xff, 0xdc, 0x90, 0x58, 0xff, 0xdf, 0x91, 0x58, 0xff, 0xe2, 0x91, 0x58, 0xff, 0xe5, 0x94, 0x5c, 0xff, 0xda, 0x92, 0x5b, 0xff, 0xc7, 0x86, 0x4f, 0xff, 0xb9, 0x7f, 0x49, 0xff, 0xba, 0x7e, 0x48, 0xff, 0xb9, 0x7d, 0x47, 0xff, 0xbb, 0x7e, 0x47, 0xff, 0xbd, 0x7f, 0x49, 0xff, 0xbe, 0x7e, 0x4a, 0xff, 0xc0, 0x81, 0x4c, 0xff, 0xc4, 0x82, 0x4c, 0xff, 0xc2, 0x7f, 0x4a, 0xff, 0xb1, 0x73, 0x41, 0xff, 0xb2, 0x74, 0x41, 0xff, 0xb5, 0x76, 0x44, 0xff, 0xb6, 0x78, 0x46, 0xff, 0xb9, 0x7b, 0x49, 0xff, 0xb8, 0x7d, 0x4a, 0xff, 0xc7, 0x87, 0x55, 0xff, 0xc4, 0x87, 0x58, 0xff, 0xa1, 0x66, 0x3c, 0xff, 0xa1, 0x68, 0x3e, 0xff, 0xa2, 0x6b, 0x43, 0xff, 0xa2, 0x6c, 0x43, 0xff, 0xa2, 0x6e, 0x44, 0xff, 0xa2, 0x6e, 0x46, 0xff, 0xa2, 0x6e, 0x46, 0xff, 0xa2, 0x6f, 0x44, 0xff, 0xa1, 0x6c, 0x42, 0xff, 0xa2, 0x6a, 0x41, 0xff, 0xa1, 0x65, 0x3d, 0xff, 0x9e, 0x63, 0x3a, 0xff, 0x9b, 0x5e, 0x38, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x98, 0x5a, 0x33, 0xff, 0x96, 0x58, 0x32, 0xff, 0x96, 0x58, 0x32, 0xff, 0x96, 0x59, 0x31, 0xff, 0x96, 0x58, 0x31, 0xff, 0x95, 0x58, 0x31, 0xff, 0x95, 0x58, 0x31, 0xff, 0x96, 0x57, 0x31, 0xff, 0x97, 0x58, 0x33, 0xff, 0x93, 0x55, 0x31, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x8c, 0x50, 0x2c, 0xff, 0x8b, 0x4e, 0x2c, 0xff, 0x8a, 0x4d, 0x2b, 0xff, 0x8a, 0x4e, 0x2a, 0xff, 0x8a, 0x4d, 0x2a, 0xff, 0x8f, 0x54, 0x31, 0xff, 0x91, 0x57, 0x33, 0xff, 0x8f, 0x54, 0x31, 0xff, 0x8d, 0x52, 0x31, 0xff, 0x8d, 0x52, 0x2f, 0xff, 0x8c, 0x50, 0x2e, 0xff, + 0x8c, 0x4f, 0x2d, 0xff, 0x8a, 0x4e, 0x2b, 0xff, 0x89, 0x4c, 0x2a, 0xff, 0x89, 0x4c, 0x29, 0xff, 0x86, 0x4a, 0x27, 0xff, 0x84, 0x48, 0x26, 0xff, 0x82, 0x49, 0x24, 0xff, 0x82, 0x47, 0x24, 0xff, 0x81, 0x46, 0x24, 0xff, 0x80, 0x45, 0x24, 0xff, 0x81, 0x47, 0x21, 0xff, 0x82, 0x47, 0x23, 0xff, 0x84, 0x48, 0x24, 0xff, 0x86, 0x4a, 0x25, 0xff, 0x82, 0x47, 0x25, 0xff, 0x79, 0x41, 0x1c, 0xff, 0x78, 0x40, 0x1b, 0xff, 0x7c, 0x43, 0x1f, 0xff, 0x7f, 0x44, 0x1d, 0xff, 0x81, 0x45, 0x1e, 0xff, 0x83, 0x47, 0x21, 0xff, 0x86, 0x49, 0x24, 0xff, 0x89, 0x4a, 0x24, 0xff, 0x8d, 0x4e, 0x26, 0xff, 0x8e, 0x50, 0x29, 0xff, 0x92, 0x53, 0x2c, 0xff, 0x95, 0x56, 0x2e, 0xff, 0x98, 0x58, 0x2f, 0xff, 0x9a, 0x5c, 0x30, 0xff, 0x9f, 0x5f, 0x31, 0xff, 0xa2, 0x62, 0x32, 0xff, 0xa5, 0x67, 0x34, 0xff, 0xaa, 0x6b, 0x36, 0xff, 0xae, 0x6f, 0x3a, 0xff, 0xb3, 0x75, 0x3d, 0xff, 0xb7, 0x78, 0x41, 0xff, 0xbc, 0x7f, 0x46, 0xff, 0xc4, 0x87, 0x4d, 0xff, 0xd3, 0x92, 0x55, 0xff, 0xe2, 0x9f, 0x5f, 0xff, 0xe3, 0xb0, 0x6d, 0xff, 0xdd, 0xcc, 0x7f, 0xff, 0xde, 0xd0, 0x96, 0xff, 0xe4, 0xd0, 0xb4, 0xff, 0xe4, 0xd0, 0xbc, 0xff, 0xe4, 0xd0, 0xbb, 0xff, 0xe4, 0xd0, 0xbb, 0xff, 0xe4, 0xd0, 0xbb, 0xff, 0xe4, 0xd0, 0xbb, 0xff, 0xe4, 0xd0, 0xbb, 0xff, 0xe4, 0xd0, 0xba, 0xff, 0xe3, 0xcf, 0xab, 0xff, 0xe1, 0xcd, 0x94, 0xff, 0xe4, 0xc7, 0x89, 0xff, 0xe4, 0xc0, 0x84, 0xff, 0xe4, 0xc3, 0x7f, 0xff, 0xe3, 0xcb, 0x7a, 0xff, 0xe2, 0xcd, 0x76, 0xff, 0xe2, 0xba, 0x6d, 0xff, 0xe2, 0xac, 0x66, 0xff, 0xe3, 0xa2, 0x62, 0xff, 0xe2, 0xa0, 0x61, 0xff, 0xe2, 0xa1, 0x61, 0xff, 0xe2, 0xa5, 0x63, 0xff, 0xe2, 0xa5, 0x61, 0xff, 0xe2, 0xa5, 0x61, 0xff, 0xe2, 0xa3, 0x62, 0xff, 0xe2, 0xa2, 0x62, 0xff, 0xe3, 0x9e, 0x60, 0xff, 0xe1, 0x9d, 0x60, 0xff, 0xd2, 0x93, 0x57, 0xff, 0xcb, 0x90, 0x52, 0xff, 0xd8, 0xa5, 0x5b, 0xff, 0xe2, 0xae, 0x62, 0xff, 0xe1, 0xb0, 0x66, 0xff, 0xe1, 0xaf, 0x65, 0xff, 0xd9, 0xa1, 0x5e, 0xff, 0xca, 0x8c, 0x54, 0xff, 0xca, 0x8e, 0x52, 0xff, 0xc8, 0x8c, 0x51, 0xff, 0xc7, 0x8d, 0x52, 0xff, 0xc6, 0x8b, 0x50, 0xff, 0xc3, 0x88, 0x4d, 0xff, 0xc5, 0x8d, 0x51, 0xff, 0xc2, 0x8e, 0x50, 0xff, 0xc0, 0x8c, 0x53, 0xff, 0xbf, 0x8b, 0x52, 0xff, 0xbf, 0x8d, 0x53, 0xff, 0xbe, 0x89, 0x50, 0xff, 0xbc, 0x88, 0x4d, 0xff, 0xbb, 0x84, 0x4a, 0xff, 0xba, 0x82, 0x4a, 0xff, 0xb9, 0x84, 0x4b, 0xff, 0xb8, 0x83, 0x4c, 0xff, 0xb3, 0x7b, 0x47, 0xff, 0xaf, 0x75, 0x44, 0xff, 0xae, 0x75, 0x45, 0xff, 0xad, 0x73, 0x42, 0xff, 0xab, 0x72, 0x40, 0xff, 0xaa, 0x70, 0x3e, 0xff, 0xa9, 0x6f, 0x3d, 0xff, 0xa7, 0x6e, 0x3e, 0xff, 0xa5, 0x6c, 0x3e, 0xff, 0xa5, 0x6d, 0x3c, 0xff, 0xa3, 0x69, 0x3a, 0xff, 0xa0, 0x66, 0x39, 0xff, 0x9f, 0x65, 0x39, 0xff, 0x9d, 0x63, 0x37, 0xff, 0x9c, 0x61, 0x36, 0xff, 0x9a, 0x61, 0x36, 0xff, 0x98, 0x5f, 0x35, 0xff, 0x98, 0x5d, 0x34, 0xff, 0x96, 0x5d, 0x34, 0xff, 0x95, 0x5b, 0x33, 0xff, 0x93, 0x58, 0x32, 0xff, 0x91, 0x57, 0x31, 0xff, 0x91, 0x56, 0x2f, 0xff, 0x90, 0x55, 0x2f, 0xff, 0x8e, 0x54, 0x2f, 0xff, 0x8d, 0x54, 0x2f, 0xff, 0x8e, 0x53, 0x30, 0xff, 0x8d, 0x54, 0x30, 0xff, 0x8b, 0x52, 0x2e, 0xff, 0x86, 0x4d, 0x29, 0xff, 0x83, 0x4a, 0x26, 0xff, 0x83, 0x4a, 0x25, 0xff, 0x81, 0x48, 0x25, 0xff, 0x80, 0x48, 0x23, 0xff, 0x80, 0x47, 0x23, 0xff, 0x80, 0x48, 0x23, 0xff, 0x80, 0x49, 0x25, 0xff, 0x7f, 0x47, 0x24, 0xff, 0x7e, 0x47, 0x22, 0xff, 0x7d, 0x45, 0x20, 0xff, 0x82, 0x49, 0x24, 0xff, 0x93, 0x59, 0x32, 0xff, 0xa1, 0x66, 0x3c, 0xff, 0xa2, 0x65, 0x3a, 0xff, 0xa1, 0x63, 0x38, 0xff, 0xa0, 0x62, 0x38, 0xff, 0xa0, 0x62, 0x37, 0xff, 0xa0, 0x62, 0x38, 0xff, 0xa1, 0x64, 0x38, 0xff, 0xa3, 0x66, 0x39, 0xff, 0xa3, 0x65, 0x38, 0xff, 0xa3, 0x65, 0x38, 0xff, 0xa3, 0x66, 0x38, 0xff, 0xa4, 0x66, 0x38, 0xff, 0xa6, 0x67, 0x39, 0xff, 0xa9, 0x69, 0x3a, 0xff, 0xac, 0x6b, 0x3a, 0xff, 0xae, 0x6f, 0x3c, 0xff, 0xb0, 0x73, 0x3f, 0xff, 0xb2, 0x75, 0x41, 0xff, 0xb4, 0x79, 0x43, 0xff, 0xb6, 0x7b, 0x44, 0xff, 0xb8, 0x7d, 0x46, 0xff, 0xbb, 0x7f, 0x47, 0xff, 0xbf, 0x80, 0x49, 0xff, 0xc2, 0x83, 0x4b, 0xff, 0xc8, 0x87, 0x4d, 0xff, 0xcd, 0x8a, 0x50, 0xff, 0xd4, 0x8e, 0x53, 0xff, 0xdb, 0x93, 0x55, 0xff, 0xe1, 0x96, 0x57, 0xff, 0xe3, 0x99, 0x58, 0xff, 0xe4, 0x9e, 0x5d, 0xff, 0xe3, 0xa0, 0x60, 0xff, 0xe3, 0xa0, 0x62, 0xff, 0xe3, 0x9c, 0x61, 0xff, 0xe3, 0x99, 0x5e, 0xff, 0xe4, 0x97, 0x5d, 0xff, 0xe3, 0x95, 0x5c, 0xff, 0xdd, 0x90, 0x59, 0xff, 0xda, 0x8f, 0x57, 0xff, 0xd8, 0x8f, 0x57, 0xff, 0xd8, 0x8f, 0x56, 0xff, 0xde, 0x91, 0x56, 0xff, 0xdf, 0x91, 0x57, 0xff, 0xe3, 0x94, 0x5a, 0xff, 0xe1, 0x94, 0x5d, 0xff, 0xce, 0x8b, 0x56, 0xff, 0xbb, 0x81, 0x4d, 0xff, 0xb7, 0x7f, 0x48, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xb9, 0x7c, 0x47, 0xff, 0xbb, 0x7e, 0x49, 0xff, 0xbd, 0x7e, 0x4a, 0xff, 0xc0, 0x80, 0x4a, 0xff, 0xc1, 0x81, 0x4d, 0xff, 0xb1, 0x72, 0x41, 0xff, 0xb0, 0x71, 0x40, 0xff, 0xb3, 0x75, 0x43, 0xff, 0xb5, 0x77, 0x45, 0xff, 0xb6, 0x78, 0x46, 0xff, 0xc2, 0x83, 0x51, 0xff, 0xcf, 0x90, 0x5e, 0xff, 0xa7, 0x6a, 0x3f, 0xff, 0xa2, 0x65, 0x3b, 0xff, 0xa2, 0x69, 0x3f, 0xff, 0xa2, 0x6c, 0x42, 0xff, 0xa2, 0x6c, 0x43, 0xff, 0xa2, 0x6e, 0x46, 0xff, 0xa2, 0x6e, 0x49, 0xff, 0xa2, 0x6e, 0x48, 0xff, 0xa2, 0x6e, 0x46, 0xff, 0xa2, 0x6f, 0x45, 0xff, 0xa1, 0x6b, 0x43, 0xff, 0xa1, 0x68, 0x40, 0xff, 0xa0, 0x65, 0x3b, 0xff, 0x9a, 0x5f, 0x38, 0xff, 0x98, 0x5c, 0x33, 0xff, 0x96, 0x58, 0x32, 0xff, 0x96, 0x57, 0x31, 0xff, 0x94, 0x57, 0x31, 0xff, 0x94, 0x56, 0x31, 0xff, 0x94, 0x57, 0x30, 0xff, 0x94, 0x57, 0x31, 0xff, 0x94, 0x57, 0x31, 0xff, 0x95, 0x57, 0x31, 0xff, 0x96, 0x58, 0x32, 0xff, 0x96, 0x58, 0x33, 0xff, 0x95, 0x57, 0x31, 0xff, 0x8d, 0x50, 0x2f, 0xff, 0x8d, 0x52, 0x2f, 0xff, 0x8d, 0x51, 0x2f, 0xff, 0x8c, 0x50, 0x2e, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x92, 0x59, 0x34, 0xff, 0x90, 0x55, 0x32, 0xff, 0x8f, 0x54, 0x31, 0xff, 0x8d, 0x53, 0x2f, 0xff, 0x8d, 0x51, 0x2f, 0xff, 0x8c, 0x50, 0x2d, 0xff, + 0x8b, 0x4f, 0x2d, 0xff, 0x89, 0x4c, 0x28, 0xff, 0x88, 0x4b, 0x27, 0xff, 0x88, 0x4b, 0x29, 0xff, 0x86, 0x4a, 0x26, 0xff, 0x82, 0x48, 0x24, 0xff, 0x80, 0x45, 0x21, 0xff, 0x80, 0x44, 0x21, 0xff, 0x7f, 0x45, 0x23, 0xff, 0x80, 0x44, 0x20, 0xff, 0x80, 0x45, 0x21, 0xff, 0x80, 0x44, 0x21, 0xff, 0x81, 0x45, 0x23, 0xff, 0x82, 0x46, 0x23, 0xff, 0x85, 0x49, 0x23, 0xff, 0x86, 0x49, 0x25, 0xff, 0x7c, 0x42, 0x1e, 0xff, 0x78, 0x41, 0x1c, 0xff, 0x7c, 0x41, 0x1c, 0xff, 0x7f, 0x44, 0x1e, 0xff, 0x80, 0x45, 0x1f, 0xff, 0x82, 0x47, 0x21, 0xff, 0x86, 0x4a, 0x24, 0xff, 0x8b, 0x4c, 0x25, 0xff, 0x8d, 0x4d, 0x26, 0xff, 0x90, 0x51, 0x29, 0xff, 0x94, 0x53, 0x2b, 0xff, 0x95, 0x56, 0x2c, 0xff, 0x9b, 0x59, 0x2f, 0xff, 0x9e, 0x5d, 0x30, 0xff, 0xa0, 0x60, 0x32, 0xff, 0xa3, 0x65, 0x33, 0xff, 0xa7, 0x68, 0x36, 0xff, 0xab, 0x6c, 0x38, 0xff, 0xae, 0x71, 0x3c, 0xff, 0xb2, 0x77, 0x40, 0xff, 0xb9, 0x7a, 0x44, 0xff, 0xbf, 0x82, 0x4a, 0xff, 0xca, 0x8d, 0x50, 0xff, 0xde, 0x99, 0x5a, 0xff, 0xe5, 0xa7, 0x63, 0xff, 0xe3, 0xc1, 0x73, 0xff, 0xdc, 0xd0, 0x88, 0xff, 0xe3, 0xd0, 0xa5, 0xff, 0xe4, 0xd0, 0xbd, 0xff, 0xe4, 0xd0, 0xbb, 0xff, 0xe4, 0xd0, 0xbb, 0xff, 0xe4, 0xd0, 0xbb, 0xff, 0xe4, 0xd0, 0xbb, 0xff, 0xe4, 0xd0, 0xbb, 0xff, 0xe4, 0xd0, 0xbb, 0xff, 0xe4, 0xd0, 0xb7, 0xff, 0xe3, 0xd0, 0xa2, 0xff, 0xe4, 0xce, 0x90, 0xff, 0xe4, 0xc5, 0x86, 0xff, 0xe4, 0xc5, 0x80, 0xff, 0xe4, 0xc9, 0x7b, 0xff, 0xe2, 0xc9, 0x79, 0xff, 0xe4, 0xbb, 0x71, 0xff, 0xe2, 0xac, 0x6a, 0xff, 0xe3, 0xa1, 0x64, 0xff, 0xe4, 0x9f, 0x61, 0xff, 0xe3, 0x9f, 0x5f, 0xff, 0xe3, 0xa3, 0x60, 0xff, 0xe3, 0xa2, 0x5f, 0xff, 0xe3, 0xa0, 0x5e, 0xff, 0xe3, 0xa0, 0x5f, 0xff, 0xe3, 0xa0, 0x5f, 0xff, 0xe3, 0x9b, 0x5e, 0xff, 0xe3, 0x9d, 0x60, 0xff, 0xda, 0x97, 0x5b, 0xff, 0xcb, 0x90, 0x53, 0xff, 0xdd, 0xa8, 0x60, 0xff, 0xe1, 0xae, 0x63, 0xff, 0xe1, 0xa8, 0x61, 0xff, 0xe2, 0xad, 0x66, 0xff, 0xdb, 0xa6, 0x62, 0xff, 0xce, 0x8e, 0x54, 0xff, 0xd1, 0x91, 0x57, 0xff, 0xc9, 0x8d, 0x52, 0xff, 0xca, 0x8e, 0x52, 0xff, 0xca, 0x8f, 0x52, 0xff, 0xc5, 0x8a, 0x4c, 0xff, 0xc4, 0x89, 0x4c, 0xff, 0xc4, 0x8b, 0x50, 0xff, 0xc2, 0x8c, 0x50, 0xff, 0xc1, 0x8d, 0x52, 0xff, 0xc0, 0x8d, 0x51, 0xff, 0xbf, 0x8b, 0x4f, 0xff, 0xbe, 0x89, 0x4e, 0xff, 0xbe, 0x88, 0x4d, 0xff, 0xbc, 0x85, 0x4d, 0xff, 0xba, 0x85, 0x4d, 0xff, 0xb8, 0x82, 0x4a, 0xff, 0xb3, 0x79, 0x47, 0xff, 0xb1, 0x77, 0x46, 0xff, 0xb0, 0x76, 0x46, 0xff, 0xae, 0x75, 0x42, 0xff, 0xad, 0x73, 0x41, 0xff, 0xac, 0x72, 0x40, 0xff, 0xaa, 0x71, 0x40, 0xff, 0xa9, 0x6f, 0x40, 0xff, 0xa7, 0x6f, 0x3f, 0xff, 0xa6, 0x6d, 0x3d, 0xff, 0xa3, 0x6a, 0x3b, 0xff, 0xa1, 0x67, 0x39, 0xff, 0xa0, 0x64, 0x39, 0xff, 0x9e, 0x64, 0x38, 0xff, 0x9e, 0x63, 0x37, 0xff, 0x9c, 0x62, 0x37, 0xff, 0x9a, 0x60, 0x36, 0xff, 0x99, 0x5e, 0x36, 0xff, 0x97, 0x5e, 0x34, 0xff, 0x95, 0x5c, 0x32, 0xff, 0x95, 0x5a, 0x32, 0xff, 0x93, 0x59, 0x32, 0xff, 0x91, 0x57, 0x30, 0xff, 0x8f, 0x55, 0x30, 0xff, 0x90, 0x55, 0x2f, 0xff, 0x8f, 0x55, 0x2f, 0xff, 0x8d, 0x55, 0x2f, 0xff, 0x8c, 0x53, 0x30, 0xff, 0x87, 0x4e, 0x2b, 0xff, 0x84, 0x4b, 0x27, 0xff, 0x83, 0x4b, 0x27, 0xff, 0x81, 0x49, 0x24, 0xff, 0x81, 0x48, 0x23, 0xff, 0x80, 0x47, 0x23, 0xff, 0x80, 0x47, 0x23, 0xff, 0x7f, 0x47, 0x24, 0xff, 0x7f, 0x47, 0x25, 0xff, 0x7d, 0x45, 0x21, 0xff, 0x7a, 0x42, 0x1d, 0xff, 0x83, 0x4a, 0x27, 0xff, 0x97, 0x5c, 0x35, 0xff, 0x9f, 0x62, 0x38, 0xff, 0x9d, 0x60, 0x36, 0xff, 0x9c, 0x5f, 0x36, 0xff, 0x9c, 0x5f, 0x36, 0xff, 0x9d, 0x5f, 0x36, 0xff, 0x9d, 0x5e, 0x36, 0xff, 0x9d, 0x60, 0x36, 0xff, 0x9d, 0x60, 0x36, 0xff, 0x9e, 0x5f, 0x36, 0xff, 0x9e, 0x61, 0x36, 0xff, 0x9f, 0x62, 0x37, 0xff, 0xa1, 0x62, 0x38, 0xff, 0xa3, 0x65, 0x39, 0xff, 0xa5, 0x66, 0x39, 0xff, 0xa7, 0x68, 0x39, 0xff, 0xa9, 0x6a, 0x39, 0xff, 0xab, 0x6d, 0x3a, 0xff, 0xad, 0x6f, 0x3c, 0xff, 0xaf, 0x73, 0x40, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xb3, 0x79, 0x47, 0xff, 0xb5, 0x7c, 0x4b, 0xff, 0xb8, 0x81, 0x4d, 0xff, 0xbc, 0x83, 0x4c, 0xff, 0xc1, 0x85, 0x4d, 0xff, 0xc6, 0x89, 0x4f, 0xff, 0xd1, 0x8d, 0x53, 0xff, 0xd7, 0x92, 0x57, 0xff, 0xe0, 0x98, 0x5b, 0xff, 0xe3, 0x9c, 0x5e, 0xff, 0xe2, 0xa0, 0x61, 0xff, 0xe3, 0xa2, 0x62, 0xff, 0xe3, 0xa2, 0x63, 0xff, 0xe4, 0xa2, 0x64, 0xff, 0xe4, 0xa2, 0x64, 0xff, 0xe3, 0x9e, 0x63, 0xff, 0xe3, 0x98, 0x5e, 0xff, 0xe2, 0x95, 0x5c, 0xff, 0xe0, 0x92, 0x5a, 0xff, 0xd7, 0x8d, 0x56, 0xff, 0xd7, 0x8d, 0x56, 0xff, 0xd9, 0x8f, 0x56, 0xff, 0xdb, 0x90, 0x56, 0xff, 0xdd, 0x90, 0x56, 0xff, 0xdd, 0x92, 0x58, 0xff, 0xdc, 0x90, 0x5b, 0xff, 0xdf, 0x91, 0x5d, 0xff, 0xd8, 0x93, 0x5d, 0xff, 0xb8, 0x7e, 0x4b, 0xff, 0xb5, 0x7b, 0x48, 0xff, 0xb7, 0x7c, 0x48, 0xff, 0xb9, 0x7d, 0x49, 0xff, 0xb9, 0x7d, 0x49, 0xff, 0xbb, 0x7f, 0x4b, 0xff, 0xc1, 0x84, 0x4e, 0xff, 0xaf, 0x72, 0x41, 0xff, 0xaf, 0x70, 0x40, 0xff, 0xb0, 0x72, 0x41, 0xff, 0xb4, 0x77, 0x44, 0xff, 0xc3, 0x82, 0x4e, 0xff, 0xca, 0x88, 0x54, 0xff, 0xb7, 0x76, 0x47, 0xff, 0xa2, 0x64, 0x3b, 0xff, 0xa1, 0x64, 0x3b, 0xff, 0xa1, 0x66, 0x3d, 0xff, 0xa1, 0x69, 0x3f, 0xff, 0xa2, 0x6c, 0x42, 0xff, 0xa2, 0x6e, 0x45, 0xff, 0xa1, 0x6e, 0x47, 0xff, 0xa1, 0x6d, 0x47, 0xff, 0xa1, 0x6e, 0x48, 0xff, 0xa1, 0x6e, 0x46, 0xff, 0xa0, 0x6b, 0x43, 0xff, 0xa0, 0x68, 0x3f, 0xff, 0xa0, 0x64, 0x3a, 0xff, 0x9a, 0x5f, 0x36, 0xff, 0x99, 0x5c, 0x33, 0xff, 0x94, 0x57, 0x31, 0xff, 0x94, 0x57, 0x31, 0xff, 0x94, 0x57, 0x31, 0xff, 0x94, 0x55, 0x31, 0xff, 0x92, 0x55, 0x31, 0xff, 0x93, 0x56, 0x30, 0xff, 0x95, 0x58, 0x32, 0xff, 0x94, 0x57, 0x31, 0xff, 0x97, 0x59, 0x32, 0xff, 0x98, 0x59, 0x33, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x96, 0x59, 0x33, 0xff, 0x90, 0x54, 0x31, 0xff, 0x90, 0x54, 0x31, 0xff, 0x8f, 0x52, 0x31, 0xff, 0x94, 0x59, 0x36, 0xff, 0x91, 0x56, 0x32, 0xff, 0x90, 0x55, 0x32, 0xff, 0x8f, 0x53, 0x31, 0xff, 0x8e, 0x52, 0x30, 0xff, 0x8d, 0x51, 0x2f, 0xff, 0x8c, 0x4f, 0x2d, 0xff, + 0x8b, 0x4f, 0x2b, 0xff, 0x8a, 0x4d, 0x2b, 0xff, 0x88, 0x4c, 0x29, 0xff, 0x87, 0x4b, 0x26, 0xff, 0x85, 0x48, 0x26, 0xff, 0x85, 0x48, 0x25, 0xff, 0x81, 0x45, 0x23, 0xff, 0x80, 0x45, 0x21, 0xff, 0x7d, 0x44, 0x20, 0xff, 0x7d, 0x43, 0x1f, 0xff, 0x7d, 0x44, 0x1f, 0xff, 0x7d, 0x44, 0x1f, 0xff, 0x7f, 0x45, 0x20, 0xff, 0x81, 0x46, 0x23, 0xff, 0x82, 0x45, 0x22, 0xff, 0x85, 0x47, 0x23, 0xff, 0x88, 0x4a, 0x26, 0xff, 0x7d, 0x44, 0x1f, 0xff, 0x78, 0x40, 0x1a, 0xff, 0x7b, 0x42, 0x1b, 0xff, 0x7e, 0x43, 0x1b, 0xff, 0x81, 0x45, 0x1e, 0xff, 0x85, 0x49, 0x21, 0xff, 0x87, 0x4a, 0x24, 0xff, 0x8b, 0x4d, 0x25, 0xff, 0x8d, 0x4f, 0x29, 0xff, 0x91, 0x52, 0x2a, 0xff, 0x94, 0x53, 0x2c, 0xff, 0x95, 0x57, 0x2e, 0xff, 0x9b, 0x5b, 0x30, 0xff, 0x9e, 0x5e, 0x31, 0xff, 0xa1, 0x61, 0x32, 0xff, 0xa5, 0x66, 0x35, 0xff, 0xa8, 0x6a, 0x38, 0xff, 0xac, 0x6e, 0x3a, 0xff, 0xb0, 0x73, 0x3f, 0xff, 0xb5, 0x78, 0x41, 0xff, 0xba, 0x7d, 0x45, 0xff, 0xc3, 0x87, 0x4d, 0xff, 0xd1, 0x91, 0x55, 0xff, 0xe3, 0x9e, 0x5f, 0xff, 0xe4, 0xb1, 0x6a, 0xff, 0xdf, 0xcc, 0x7b, 0xff, 0xdd, 0xd0, 0x91, 0xff, 0xe3, 0xd0, 0xb0, 0xff, 0xe5, 0xd0, 0xbd, 0xff, 0xe5, 0xd0, 0xbc, 0xff, 0xe4, 0xd0, 0xbb, 0xff, 0xe4, 0xd0, 0xbb, 0xff, 0xe4, 0xd0, 0xbb, 0xff, 0xe5, 0xd0, 0xbc, 0xff, 0xe5, 0xd0, 0xbb, 0xff, 0xe3, 0xd0, 0xae, 0xff, 0xe0, 0xd0, 0x95, 0xff, 0xe3, 0xcc, 0x88, 0xff, 0xe3, 0xc4, 0x7f, 0xff, 0xe4, 0xc5, 0x7b, 0xff, 0xe3, 0xbf, 0x75, 0xff, 0xe4, 0xbe, 0x73, 0xff, 0xe3, 0xb1, 0x6d, 0xff, 0xe3, 0xa3, 0x65, 0xff, 0xe2, 0xa1, 0x61, 0xff, 0xe3, 0x9e, 0x5f, 0xff, 0xe3, 0xa2, 0x5e, 0xff, 0xe3, 0xa2, 0x5d, 0xff, 0xe3, 0x9f, 0x5e, 0xff, 0xe3, 0x9e, 0x5e, 0xff, 0xe3, 0x9d, 0x5e, 0xff, 0xe4, 0x9b, 0x5d, 0xff, 0xe4, 0x9c, 0x5e, 0xff, 0xdd, 0x98, 0x5c, 0xff, 0xd0, 0x96, 0x56, 0xff, 0xe4, 0xaf, 0x61, 0xff, 0xdf, 0xa7, 0x60, 0xff, 0xe0, 0xab, 0x63, 0xff, 0xe2, 0xaf, 0x62, 0xff, 0xdc, 0xa5, 0x60, 0xff, 0xd3, 0x8f, 0x56, 0xff, 0xd6, 0x94, 0x59, 0xff, 0xcd, 0x8f, 0x53, 0xff, 0xcc, 0x8f, 0x53, 0xff, 0xcb, 0x8f, 0x53, 0xff, 0xc9, 0x8d, 0x51, 0xff, 0xc7, 0x8b, 0x4f, 0xff, 0xc5, 0x8c, 0x4d, 0xff, 0xc5, 0x8f, 0x50, 0xff, 0xc3, 0x8c, 0x50, 0xff, 0xc2, 0x8b, 0x4f, 0xff, 0xc1, 0x8d, 0x50, 0xff, 0xbf, 0x8a, 0x4c, 0xff, 0xbe, 0x85, 0x4a, 0xff, 0xbd, 0x86, 0x4c, 0xff, 0xbc, 0x85, 0x4d, 0xff, 0xb9, 0x81, 0x4c, 0xff, 0xb3, 0x79, 0x44, 0xff, 0xb4, 0x7a, 0x46, 0xff, 0xb2, 0x79, 0x47, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xae, 0x76, 0x41, 0xff, 0xac, 0x74, 0x40, 0xff, 0xac, 0x72, 0x40, 0xff, 0xab, 0x70, 0x41, 0xff, 0xa9, 0x6f, 0x40, 0xff, 0xa7, 0x6e, 0x3f, 0xff, 0xa5, 0x6b, 0x3c, 0xff, 0xa2, 0x68, 0x3a, 0xff, 0xa2, 0x67, 0x3b, 0xff, 0xa0, 0x65, 0x39, 0xff, 0x9e, 0x63, 0x37, 0xff, 0x9d, 0x62, 0x37, 0xff, 0x9c, 0x62, 0x37, 0xff, 0x9a, 0x60, 0x36, 0xff, 0x99, 0x5e, 0x36, 0xff, 0x98, 0x5e, 0x35, 0xff, 0x96, 0x5d, 0x33, 0xff, 0x94, 0x5a, 0x31, 0xff, 0x94, 0x58, 0x31, 0xff, 0x91, 0x56, 0x30, 0xff, 0x8f, 0x55, 0x30, 0xff, 0x8f, 0x55, 0x30, 0xff, 0x8e, 0x54, 0x31, 0xff, 0x89, 0x4f, 0x2b, 0xff, 0x85, 0x4c, 0x27, 0xff, 0x85, 0x4c, 0x27, 0xff, 0x83, 0x49, 0x25, 0xff, 0x82, 0x47, 0x25, 0xff, 0x81, 0x48, 0x24, 0xff, 0x81, 0x49, 0x24, 0xff, 0x81, 0x48, 0x25, 0xff, 0x81, 0x47, 0x25, 0xff, 0x7d, 0x45, 0x22, 0xff, 0x78, 0x43, 0x1e, 0xff, 0x83, 0x4c, 0x29, 0xff, 0x98, 0x5d, 0x37, 0xff, 0x9d, 0x60, 0x36, 0xff, 0x99, 0x5b, 0x34, 0xff, 0x99, 0x5b, 0x33, 0xff, 0x99, 0x5d, 0x34, 0xff, 0x99, 0x5d, 0x34, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x99, 0x5b, 0x33, 0xff, 0x99, 0x5b, 0x33, 0xff, 0x99, 0x5b, 0x32, 0xff, 0x9a, 0x5c, 0x33, 0xff, 0x9c, 0x5e, 0x34, 0xff, 0x9d, 0x5f, 0x35, 0xff, 0x9e, 0x60, 0x36, 0xff, 0xa0, 0x62, 0x36, 0xff, 0xa2, 0x65, 0x37, 0xff, 0xa4, 0x66, 0x38, 0xff, 0xa7, 0x68, 0x39, 0xff, 0xa9, 0x6b, 0x3a, 0xff, 0xab, 0x6f, 0x3b, 0xff, 0xac, 0x72, 0x3f, 0xff, 0xae, 0x75, 0x43, 0xff, 0xb0, 0x78, 0x47, 0xff, 0xb3, 0x7b, 0x4c, 0xff, 0xb7, 0x7f, 0x50, 0xff, 0xbb, 0x84, 0x52, 0xff, 0xc0, 0x88, 0x53, 0xff, 0xc6, 0x8e, 0x56, 0xff, 0xd1, 0x91, 0x58, 0xff, 0xdf, 0x97, 0x5d, 0xff, 0xe4, 0x9e, 0x63, 0xff, 0xe4, 0xa4, 0x67, 0xff, 0xe2, 0xa9, 0x6b, 0xff, 0xe3, 0xac, 0x6d, 0xff, 0xe4, 0xad, 0x6e, 0xff, 0xe3, 0xac, 0x6e, 0xff, 0xe2, 0xaa, 0x6c, 0xff, 0xe3, 0xa7, 0x6a, 0xff, 0xe4, 0xa2, 0x67, 0xff, 0xe4, 0x9a, 0x61, 0xff, 0xe0, 0x93, 0x5b, 0xff, 0xd7, 0x8e, 0x58, 0xff, 0xd3, 0x8b, 0x54, 0xff, 0xd4, 0x8c, 0x55, 0xff, 0xd7, 0x8e, 0x56, 0xff, 0xd8, 0x8e, 0x56, 0xff, 0xd8, 0x8f, 0x57, 0xff, 0xd8, 0x8f, 0x58, 0xff, 0xd7, 0x91, 0x5b, 0xff, 0xda, 0x91, 0x5a, 0xff, 0xdc, 0x95, 0x60, 0xff, 0xbe, 0x80, 0x4d, 0xff, 0xb4, 0x7a, 0x47, 0xff, 0xb5, 0x7a, 0x49, 0xff, 0xb8, 0x7c, 0x4a, 0xff, 0xb9, 0x7d, 0x4b, 0xff, 0xbb, 0x7f, 0x4b, 0xff, 0xb7, 0x7b, 0x49, 0xff, 0xad, 0x71, 0x41, 0xff, 0xb0, 0x73, 0x42, 0xff, 0xbf, 0x80, 0x4b, 0xff, 0xbd, 0x7e, 0x49, 0xff, 0xbb, 0x7c, 0x4a, 0xff, 0xa4, 0x67, 0x3c, 0xff, 0x9e, 0x62, 0x37, 0xff, 0xa0, 0x64, 0x3a, 0xff, 0xa1, 0x65, 0x3b, 0xff, 0xa1, 0x67, 0x3c, 0xff, 0xa1, 0x69, 0x3f, 0xff, 0xa2, 0x6b, 0x43, 0xff, 0xa2, 0x6d, 0x43, 0xff, 0xa1, 0x6d, 0x44, 0xff, 0xa1, 0x6e, 0x45, 0xff, 0xa1, 0x6c, 0x44, 0xff, 0xa0, 0x69, 0x41, 0xff, 0xa0, 0x68, 0x3d, 0xff, 0x9e, 0x63, 0x39, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x97, 0x5a, 0x32, 0xff, 0x95, 0x57, 0x32, 0xff, 0x93, 0x56, 0x31, 0xff, 0x93, 0x54, 0x30, 0xff, 0x92, 0x56, 0x31, 0xff, 0x92, 0x56, 0x31, 0xff, 0x94, 0x57, 0x31, 0xff, 0x96, 0x58, 0x32, 0xff, 0x95, 0x58, 0x32, 0xff, 0x97, 0x59, 0x32, 0xff, 0x97, 0x59, 0x33, 0xff, 0x98, 0x5b, 0x33, 0xff, 0x9a, 0x5d, 0x34, 0xff, 0x96, 0x5a, 0x34, 0xff, 0x94, 0x59, 0x33, 0xff, 0x95, 0x5a, 0x34, 0xff, 0x94, 0x59, 0x36, 0xff, 0x92, 0x56, 0x32, 0xff, 0x90, 0x55, 0x32, 0xff, 0x8e, 0x54, 0x31, 0xff, 0x8e, 0x52, 0x30, 0xff, 0x8d, 0x52, 0x30, 0xff, 0x8b, 0x50, 0x2d, 0xff, + 0x8c, 0x4f, 0x2e, 0xff, 0x8a, 0x4e, 0x2a, 0xff, 0x89, 0x4b, 0x27, 0xff, 0x88, 0x4a, 0x26, 0xff, 0x84, 0x48, 0x25, 0xff, 0x82, 0x48, 0x24, 0xff, 0x82, 0x48, 0x23, 0xff, 0x82, 0x46, 0x23, 0xff, 0x81, 0x46, 0x23, 0xff, 0x7e, 0x44, 0x20, 0xff, 0x7d, 0x44, 0x1f, 0xff, 0x79, 0x42, 0x1d, 0xff, 0x7b, 0x42, 0x1d, 0xff, 0x7e, 0x44, 0x1d, 0xff, 0x81, 0x46, 0x20, 0xff, 0x82, 0x46, 0x21, 0xff, 0x85, 0x48, 0x23, 0xff, 0x88, 0x4b, 0x27, 0xff, 0x7f, 0x45, 0x20, 0xff, 0x79, 0x41, 0x1b, 0xff, 0x7a, 0x41, 0x1b, 0xff, 0x80, 0x43, 0x1c, 0xff, 0x82, 0x45, 0x1e, 0xff, 0x84, 0x47, 0x20, 0xff, 0x89, 0x4b, 0x24, 0xff, 0x8c, 0x4d, 0x26, 0xff, 0x8e, 0x4f, 0x28, 0xff, 0x93, 0x53, 0x2b, 0xff, 0x95, 0x56, 0x2d, 0xff, 0x98, 0x5a, 0x2f, 0xff, 0x9b, 0x5b, 0x30, 0xff, 0xa0, 0x61, 0x32, 0xff, 0xa3, 0x64, 0x34, 0xff, 0xa5, 0x68, 0x36, 0xff, 0xa9, 0x6c, 0x39, 0xff, 0xad, 0x71, 0x3d, 0xff, 0xb1, 0x76, 0x40, 0xff, 0xb6, 0x7a, 0x41, 0xff, 0xbc, 0x7f, 0x46, 0xff, 0xc8, 0x89, 0x4e, 0xff, 0xda, 0x95, 0x58, 0xff, 0xe4, 0xa3, 0x62, 0xff, 0xe4, 0xb9, 0x70, 0xff, 0xde, 0xd0, 0x83, 0xff, 0xdf, 0xd0, 0x9a, 0xff, 0xe5, 0xd0, 0xb6, 0xff, 0xe5, 0xd0, 0xbd, 0xff, 0xe5, 0xd0, 0xbc, 0xff, 0xe4, 0xd0, 0xbb, 0xff, 0xe5, 0xd0, 0xbc, 0xff, 0xe5, 0xd0, 0xbc, 0xff, 0xe5, 0xd0, 0xbb, 0xff, 0xe3, 0xd0, 0xac, 0xff, 0xe0, 0xd0, 0x94, 0xff, 0xe3, 0xcc, 0x87, 0xff, 0xe4, 0xc4, 0x80, 0xff, 0xe4, 0xc3, 0x7a, 0xff, 0xe5, 0xbf, 0x74, 0xff, 0xe3, 0xbe, 0x71, 0xff, 0xe4, 0xb0, 0x6d, 0xff, 0xe4, 0xa5, 0x67, 0xff, 0xe3, 0xa0, 0x62, 0xff, 0xe4, 0x9f, 0x5f, 0xff, 0xe3, 0xa1, 0x5d, 0xff, 0xe4, 0x9f, 0x5c, 0xff, 0xe2, 0x9d, 0x5d, 0xff, 0xe4, 0x9d, 0x5d, 0xff, 0xe3, 0x9c, 0x5c, 0xff, 0xe2, 0x98, 0x5b, 0xff, 0xe4, 0x9a, 0x5d, 0xff, 0xe4, 0x9b, 0x5f, 0xff, 0xe2, 0xa3, 0x62, 0xff, 0xde, 0xa8, 0x5e, 0xff, 0xe0, 0xa8, 0x63, 0xff, 0xe0, 0xa9, 0x62, 0xff, 0xe2, 0xa9, 0x62, 0xff, 0xdd, 0xa1, 0x5e, 0xff, 0xd7, 0x91, 0x57, 0xff, 0xd9, 0x94, 0x57, 0xff, 0xd1, 0x92, 0x55, 0xff, 0xce, 0x91, 0x54, 0xff, 0xce, 0x90, 0x54, 0xff, 0xcb, 0x8f, 0x52, 0xff, 0xc7, 0x8c, 0x4e, 0xff, 0xc7, 0x8c, 0x4e, 0xff, 0xc6, 0x8c, 0x4d, 0xff, 0xc5, 0x8d, 0x4e, 0xff, 0xc4, 0x8d, 0x4f, 0xff, 0xc2, 0x8c, 0x4e, 0xff, 0xc2, 0x8c, 0x4d, 0xff, 0xc0, 0x8a, 0x4e, 0xff, 0xbe, 0x88, 0x4d, 0xff, 0xbe, 0x88, 0x4f, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xb4, 0x78, 0x44, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb4, 0x7a, 0x47, 0xff, 0xb1, 0x78, 0x46, 0xff, 0xaf, 0x77, 0x43, 0xff, 0xae, 0x75, 0x42, 0xff, 0xad, 0x73, 0x43, 0xff, 0xac, 0x72, 0x42, 0xff, 0xaa, 0x70, 0x40, 0xff, 0xa9, 0x70, 0x3f, 0xff, 0xa6, 0x6d, 0x3d, 0xff, 0xa3, 0x69, 0x3b, 0xff, 0xa3, 0x69, 0x3b, 0xff, 0xa2, 0x67, 0x3a, 0xff, 0xa0, 0x64, 0x38, 0xff, 0x9f, 0x63, 0x38, 0xff, 0x9d, 0x61, 0x38, 0xff, 0x9b, 0x5f, 0x36, 0xff, 0x99, 0x5f, 0x36, 0xff, 0x99, 0x5e, 0x35, 0xff, 0x97, 0x5d, 0x33, 0xff, 0x95, 0x5b, 0x33, 0xff, 0x95, 0x59, 0x32, 0xff, 0x93, 0x58, 0x30, 0xff, 0x90, 0x55, 0x30, 0xff, 0x8f, 0x55, 0x30, 0xff, 0x8c, 0x52, 0x2d, 0xff, 0x86, 0x4d, 0x29, 0xff, 0x86, 0x4b, 0x27, 0xff, 0x85, 0x4a, 0x26, 0xff, 0x82, 0x49, 0x25, 0xff, 0x82, 0x48, 0x25, 0xff, 0x81, 0x49, 0x25, 0xff, 0x81, 0x49, 0x24, 0xff, 0x81, 0x48, 0x24, 0xff, 0x7d, 0x45, 0x22, 0xff, 0x7a, 0x43, 0x1e, 0xff, 0x87, 0x4e, 0x2a, 0xff, 0x95, 0x5a, 0x34, 0xff, 0x96, 0x5a, 0x33, 0xff, 0x94, 0x58, 0x32, 0xff, 0x94, 0x57, 0x32, 0xff, 0x94, 0x58, 0x32, 0xff, 0x96, 0x59, 0x32, 0xff, 0x96, 0x59, 0x32, 0xff, 0x96, 0x59, 0x32, 0xff, 0x95, 0x56, 0x31, 0xff, 0x95, 0x57, 0x31, 0xff, 0x96, 0x57, 0x32, 0xff, 0x97, 0x58, 0x32, 0xff, 0x98, 0x59, 0x32, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x9a, 0x5c, 0x33, 0xff, 0x9c, 0x5e, 0x34, 0xff, 0x9e, 0x5e, 0x34, 0xff, 0xa0, 0x61, 0x35, 0xff, 0xa3, 0x64, 0x35, 0xff, 0xa5, 0x66, 0x38, 0xff, 0xa7, 0x6a, 0x3a, 0xff, 0xa9, 0x6f, 0x3c, 0xff, 0xab, 0x73, 0x40, 0xff, 0xae, 0x75, 0x45, 0xff, 0xb1, 0x78, 0x4a, 0xff, 0xb5, 0x7c, 0x50, 0xff, 0xb9, 0x81, 0x52, 0xff, 0xbe, 0x87, 0x57, 0xff, 0xc6, 0x8e, 0x59, 0xff, 0xd3, 0x97, 0x5d, 0xff, 0xe1, 0x9f, 0x63, 0xff, 0xe4, 0xa5, 0x69, 0xff, 0xe3, 0xaf, 0x70, 0xff, 0xe3, 0xba, 0x76, 0xff, 0xe3, 0xc4, 0x7a, 0xff, 0xe2, 0xc8, 0x7d, 0xff, 0xe2, 0xc7, 0x7d, 0xff, 0xe4, 0xc2, 0x7a, 0xff, 0xe4, 0xb6, 0x76, 0xff, 0xe4, 0xab, 0x6f, 0xff, 0xe5, 0xa3, 0x6a, 0xff, 0xe3, 0x99, 0x61, 0xff, 0xde, 0x91, 0x5a, 0xff, 0xd5, 0x8d, 0x57, 0xff, 0xcf, 0x8b, 0x54, 0xff, 0xd0, 0x8b, 0x53, 0xff, 0xd3, 0x8c, 0x53, 0xff, 0xd3, 0x8d, 0x54, 0xff, 0xd3, 0x8e, 0x56, 0xff, 0xd4, 0x8d, 0x58, 0xff, 0xd5, 0x8e, 0x58, 0xff, 0xd7, 0x8e, 0x58, 0xff, 0xd8, 0x8f, 0x5b, 0xff, 0xbe, 0x80, 0x4d, 0xff, 0xb2, 0x78, 0x45, 0xff, 0xb3, 0x79, 0x47, 0xff, 0xb6, 0x79, 0x49, 0xff, 0xb7, 0x7c, 0x4a, 0xff, 0xb8, 0x7c, 0x4a, 0xff, 0xb2, 0x77, 0x45, 0xff, 0xb9, 0x7d, 0x48, 0xff, 0xc0, 0x82, 0x4b, 0xff, 0xb3, 0x74, 0x41, 0xff, 0xad, 0x6e, 0x3f, 0xff, 0x9c, 0x60, 0x35, 0xff, 0x9d, 0x60, 0x36, 0xff, 0x9c, 0x60, 0x37, 0xff, 0x9e, 0x62, 0x38, 0xff, 0x9f, 0x64, 0x3a, 0xff, 0xa1, 0x65, 0x3b, 0xff, 0xa2, 0x68, 0x3d, 0xff, 0xa2, 0x69, 0x3e, 0xff, 0xa1, 0x69, 0x3f, 0xff, 0xa1, 0x69, 0x40, 0xff, 0xa0, 0x68, 0x3e, 0xff, 0xa0, 0x67, 0x3c, 0xff, 0x9e, 0x63, 0x39, 0xff, 0x9c, 0x5f, 0x37, 0xff, 0x98, 0x5d, 0x34, 0xff, 0x95, 0x58, 0x32, 0xff, 0x94, 0x56, 0x31, 0xff, 0x92, 0x55, 0x30, 0xff, 0x91, 0x52, 0x30, 0xff, 0x91, 0x54, 0x30, 0xff, 0x92, 0x55, 0x30, 0xff, 0x93, 0x56, 0x31, 0xff, 0x96, 0x57, 0x32, 0xff, 0x97, 0x59, 0x32, 0xff, 0x96, 0x59, 0x32, 0xff, 0x98, 0x5a, 0x33, 0xff, 0x99, 0x5b, 0x34, 0xff, 0x9a, 0x5d, 0x36, 0xff, 0x99, 0x5f, 0x37, 0xff, 0x97, 0x5c, 0x36, 0xff, 0x95, 0x5a, 0x35, 0xff, 0x93, 0x57, 0x33, 0xff, 0x92, 0x57, 0x32, 0xff, 0x92, 0x56, 0x32, 0xff, 0x8f, 0x54, 0x30, 0xff, 0x8f, 0x52, 0x31, 0xff, 0x8e, 0x52, 0x31, 0xff, 0x8d, 0x51, 0x2f, 0xff, + 0x8c, 0x4f, 0x2d, 0xff, 0x8a, 0x4c, 0x29, 0xff, 0x88, 0x4a, 0x27, 0xff, 0x85, 0x4a, 0x27, 0xff, 0x84, 0x47, 0x25, 0xff, 0x83, 0x48, 0x24, 0xff, 0x82, 0x47, 0x24, 0xff, 0x82, 0x46, 0x25, 0xff, 0x82, 0x46, 0x23, 0xff, 0x82, 0x46, 0x22, 0xff, 0x83, 0x47, 0x24, 0xff, 0x83, 0x48, 0x23, 0xff, 0x7f, 0x44, 0x20, 0xff, 0x7d, 0x42, 0x1e, 0xff, 0x7f, 0x44, 0x1f, 0xff, 0x81, 0x44, 0x1f, 0xff, 0x82, 0x47, 0x20, 0xff, 0x86, 0x48, 0x23, 0xff, 0x86, 0x49, 0x23, 0xff, 0x82, 0x47, 0x23, 0xff, 0x78, 0x40, 0x1a, 0xff, 0x7c, 0x43, 0x1a, 0xff, 0x80, 0x44, 0x1d, 0xff, 0x83, 0x47, 0x20, 0xff, 0x86, 0x49, 0x23, 0xff, 0x89, 0x4d, 0x24, 0xff, 0x8d, 0x4d, 0x26, 0xff, 0x90, 0x51, 0x28, 0xff, 0x93, 0x55, 0x2b, 0xff, 0x96, 0x58, 0x2d, 0xff, 0x99, 0x5b, 0x2f, 0xff, 0x9e, 0x5f, 0x30, 0xff, 0xa1, 0x64, 0x32, 0xff, 0xa3, 0x67, 0x35, 0xff, 0xa6, 0x6a, 0x38, 0xff, 0xaa, 0x6f, 0x3b, 0xff, 0xae, 0x73, 0x3f, 0xff, 0xb2, 0x79, 0x42, 0xff, 0xb7, 0x7b, 0x43, 0xff, 0xc0, 0x81, 0x48, 0xff, 0xce, 0x8c, 0x50, 0xff, 0xde, 0x97, 0x5a, 0xff, 0xe4, 0xa6, 0x66, 0xff, 0xe4, 0xbf, 0x73, 0xff, 0xe0, 0xd1, 0x87, 0xff, 0xe1, 0xcf, 0x9f, 0xff, 0xe5, 0xd0, 0xbb, 0xff, 0xe5, 0xd0, 0xbc, 0xff, 0xe5, 0xd0, 0xbc, 0xff, 0xe5, 0xd0, 0xbc, 0xff, 0xe5, 0xd1, 0xbd, 0xff, 0xe5, 0xd0, 0xb9, 0xff, 0xe2, 0xd0, 0xa9, 0xff, 0xdf, 0xcf, 0x91, 0xff, 0xe1, 0xcf, 0x85, 0xff, 0xe4, 0xc6, 0x7d, 0xff, 0xe4, 0xbf, 0x78, 0xff, 0xe5, 0xbd, 0x74, 0xff, 0xe5, 0xb9, 0x70, 0xff, 0xe4, 0xae, 0x6e, 0xff, 0xe3, 0xa6, 0x6a, 0xff, 0xe3, 0x9f, 0x62, 0xff, 0xe3, 0x9d, 0x5e, 0xff, 0xe4, 0x9e, 0x5c, 0xff, 0xe3, 0x9c, 0x5b, 0xff, 0xe3, 0x9d, 0x5c, 0xff, 0xe2, 0x9c, 0x5a, 0xff, 0xe3, 0x9a, 0x5c, 0xff, 0xe3, 0x96, 0x5a, 0xff, 0xe4, 0x98, 0x5c, 0xff, 0xe3, 0x9b, 0x5f, 0xff, 0xe2, 0xa4, 0x64, 0xff, 0xe2, 0xa8, 0x62, 0xff, 0xe2, 0xa9, 0x5f, 0xff, 0xe2, 0xa9, 0x60, 0xff, 0xe0, 0xa7, 0x60, 0xff, 0xde, 0xa6, 0x63, 0xff, 0xda, 0x93, 0x58, 0xff, 0xde, 0x98, 0x59, 0xff, 0xd9, 0x97, 0x58, 0xff, 0xce, 0x8f, 0x53, 0xff, 0xd2, 0x92, 0x55, 0xff, 0xcf, 0x90, 0x53, 0xff, 0xc8, 0x8d, 0x4d, 0xff, 0xc8, 0x8e, 0x4c, 0xff, 0xc9, 0x8f, 0x4e, 0xff, 0xc8, 0x8d, 0x4f, 0xff, 0xc6, 0x8b, 0x4e, 0xff, 0xc4, 0x8a, 0x4d, 0xff, 0xc3, 0x8a, 0x4d, 0xff, 0xc0, 0x89, 0x4d, 0xff, 0xbf, 0x89, 0x4e, 0xff, 0xbe, 0x86, 0x4d, 0xff, 0xbb, 0x81, 0x4b, 0xff, 0xb6, 0x7c, 0x45, 0xff, 0xb7, 0x7d, 0x48, 0xff, 0xb6, 0x7c, 0x48, 0xff, 0xb4, 0x7b, 0x47, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xad, 0x73, 0x41, 0xff, 0xab, 0x73, 0x42, 0xff, 0xaa, 0x71, 0x40, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa5, 0x6b, 0x3c, 0xff, 0xa4, 0x6b, 0x3c, 0xff, 0xa3, 0x6a, 0x3c, 0xff, 0xa0, 0x67, 0x3a, 0xff, 0xa0, 0x65, 0x3a, 0xff, 0x9e, 0x65, 0x39, 0xff, 0x9d, 0x63, 0x37, 0xff, 0x9b, 0x61, 0x37, 0xff, 0x99, 0x5f, 0x36, 0xff, 0x99, 0x5e, 0x34, 0xff, 0x97, 0x5c, 0x32, 0xff, 0x96, 0x5b, 0x32, 0xff, 0x93, 0x5a, 0x32, 0xff, 0x92, 0x58, 0x31, 0xff, 0x8f, 0x55, 0x2f, 0xff, 0x8a, 0x50, 0x2b, 0xff, 0x87, 0x4e, 0x29, 0xff, 0x86, 0x4c, 0x28, 0xff, 0x84, 0x4a, 0x26, 0xff, 0x83, 0x4a, 0x25, 0xff, 0x82, 0x4a, 0x25, 0xff, 0x82, 0x48, 0x25, 0xff, 0x82, 0x48, 0x24, 0xff, 0x7f, 0x47, 0x24, 0xff, 0x7b, 0x42, 0x1f, 0xff, 0x87, 0x4d, 0x28, 0xff, 0x94, 0x59, 0x33, 0xff, 0x94, 0x57, 0x32, 0xff, 0x91, 0x54, 0x31, 0xff, 0x91, 0x55, 0x31, 0xff, 0x91, 0x55, 0x31, 0xff, 0x93, 0x57, 0x32, 0xff, 0x94, 0x57, 0x32, 0xff, 0x92, 0x55, 0x30, 0xff, 0x92, 0x54, 0x30, 0xff, 0x91, 0x55, 0x2f, 0xff, 0x92, 0x56, 0x30, 0xff, 0x94, 0x55, 0x30, 0xff, 0x95, 0x56, 0x30, 0xff, 0x95, 0x58, 0x31, 0xff, 0x96, 0x58, 0x31, 0xff, 0x97, 0x58, 0x31, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x9a, 0x5c, 0x32, 0xff, 0x9c, 0x5e, 0x33, 0xff, 0x9f, 0x60, 0x34, 0xff, 0xa2, 0x63, 0x35, 0xff, 0xa5, 0x65, 0x37, 0xff, 0xa7, 0x69, 0x38, 0xff, 0xa9, 0x6f, 0x3b, 0xff, 0xab, 0x74, 0x40, 0xff, 0xae, 0x76, 0x45, 0xff, 0xb2, 0x7a, 0x4b, 0xff, 0xb7, 0x7f, 0x50, 0xff, 0xbc, 0x86, 0x55, 0xff, 0xc3, 0x8d, 0x5a, 0xff, 0xd4, 0x97, 0x5f, 0xff, 0xe2, 0xa2, 0x67, 0xff, 0xe5, 0xab, 0x6f, 0xff, 0xe4, 0xba, 0x79, 0xff, 0xe3, 0xcb, 0x81, 0xff, 0xdf, 0xd0, 0x89, 0xff, 0xdd, 0xcf, 0x8d, 0xff, 0xdf, 0xcf, 0x8e, 0xff, 0xdf, 0xd0, 0x8a, 0xff, 0xe0, 0xcc, 0x86, 0xff, 0xe4, 0xc3, 0x7e, 0xff, 0xe5, 0xb5, 0x75, 0xff, 0xe2, 0xa0, 0x6a, 0xff, 0xe4, 0x98, 0x62, 0xff, 0xdd, 0x92, 0x5b, 0xff, 0xd5, 0x8d, 0x57, 0xff, 0xcf, 0x8a, 0x53, 0xff, 0xd0, 0x89, 0x4f, 0xff, 0xcd, 0x88, 0x50, 0xff, 0xcf, 0x8b, 0x51, 0xff, 0xd2, 0x8c, 0x54, 0xff, 0xd3, 0x8d, 0x56, 0xff, 0xd2, 0x8c, 0x56, 0xff, 0xd1, 0x8c, 0x56, 0xff, 0xd6, 0x90, 0x5a, 0xff, 0xbb, 0x7f, 0x4a, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xb1, 0x77, 0x45, 0xff, 0xb3, 0x77, 0x45, 0xff, 0xb8, 0x7d, 0x49, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xb9, 0x7e, 0x49, 0xff, 0xb9, 0x7d, 0x48, 0xff, 0xb0, 0x73, 0x42, 0xff, 0x9c, 0x5e, 0x35, 0xff, 0x9a, 0x5d, 0x34, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x9a, 0x5f, 0x36, 0xff, 0x9c, 0x60, 0x37, 0xff, 0x9c, 0x60, 0x38, 0xff, 0x9e, 0x61, 0x39, 0xff, 0x9f, 0x64, 0x39, 0xff, 0x9f, 0x64, 0x3a, 0xff, 0xa0, 0x65, 0x3b, 0xff, 0x9e, 0x62, 0x39, 0xff, 0x9e, 0x63, 0x39, 0xff, 0x9d, 0x61, 0x38, 0xff, 0x9c, 0x5f, 0x36, 0xff, 0x99, 0x5d, 0x34, 0xff, 0x96, 0x59, 0x32, 0xff, 0x95, 0x56, 0x32, 0xff, 0x93, 0x54, 0x30, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x90, 0x52, 0x2f, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x91, 0x54, 0x2f, 0xff, 0x93, 0x54, 0x30, 0xff, 0x94, 0x56, 0x31, 0xff, 0x96, 0x57, 0x32, 0xff, 0x96, 0x59, 0x32, 0xff, 0x97, 0x5b, 0x34, 0xff, 0x9a, 0x5c, 0x34, 0xff, 0x9a, 0x5d, 0x36, 0xff, 0x9a, 0x5f, 0x37, 0xff, 0x97, 0x5c, 0x35, 0xff, 0x94, 0x5a, 0x34, 0xff, 0x92, 0x57, 0x32, 0xff, 0x90, 0x55, 0x31, 0xff, 0x8f, 0x54, 0x30, 0xff, 0x8f, 0x55, 0x32, 0xff, 0x8f, 0x54, 0x32, 0xff, 0x8e, 0x52, 0x30, 0xff, 0x8c, 0x50, 0x2e, 0xff, + 0x8a, 0x4d, 0x2b, 0xff, 0x87, 0x4a, 0x28, 0xff, 0x85, 0x4a, 0x25, 0xff, 0x85, 0x49, 0x25, 0xff, 0x82, 0x45, 0x24, 0xff, 0x81, 0x45, 0x22, 0xff, 0x81, 0x47, 0x20, 0xff, 0x81, 0x45, 0x23, 0xff, 0x81, 0x45, 0x20, 0xff, 0x81, 0x45, 0x22, 0xff, 0x81, 0x45, 0x20, 0xff, 0x82, 0x46, 0x23, 0xff, 0x85, 0x48, 0x24, 0xff, 0x82, 0x47, 0x23, 0xff, 0x83, 0x47, 0x23, 0xff, 0x87, 0x49, 0x25, 0xff, 0x87, 0x4a, 0x24, 0xff, 0x82, 0x48, 0x21, 0xff, 0x85, 0x47, 0x21, 0xff, 0x88, 0x4a, 0x25, 0xff, 0x80, 0x46, 0x20, 0xff, 0x79, 0x40, 0x1a, 0xff, 0x7e, 0x42, 0x1b, 0xff, 0x82, 0x46, 0x1f, 0xff, 0x86, 0x48, 0x20, 0xff, 0x86, 0x4a, 0x23, 0xff, 0x8b, 0x4e, 0x25, 0xff, 0x8d, 0x4e, 0x28, 0xff, 0x91, 0x52, 0x2b, 0xff, 0x93, 0x55, 0x2d, 0xff, 0x98, 0x5a, 0x2f, 0xff, 0x9d, 0x5d, 0x30, 0xff, 0xa0, 0x60, 0x32, 0xff, 0xa2, 0x65, 0x34, 0xff, 0xa5, 0x6a, 0x37, 0xff, 0xa8, 0x6c, 0x3a, 0xff, 0xab, 0x6f, 0x3b, 0xff, 0xaf, 0x74, 0x40, 0xff, 0xb3, 0x7a, 0x42, 0xff, 0xb9, 0x7d, 0x45, 0xff, 0xc2, 0x83, 0x4a, 0xff, 0xd0, 0x8e, 0x52, 0xff, 0xe2, 0x9a, 0x5c, 0xff, 0xe2, 0xaa, 0x6b, 0xff, 0xe4, 0xc1, 0x76, 0xff, 0xdf, 0xd0, 0x88, 0xff, 0xe1, 0xd0, 0x9a, 0xff, 0xe3, 0xd1, 0xb6, 0xff, 0xe5, 0xd1, 0xbe, 0xff, 0xe5, 0xd0, 0xbc, 0xff, 0xe5, 0xd0, 0xbc, 0xff, 0xe5, 0xd1, 0xb6, 0xff, 0xe1, 0xd0, 0xa0, 0xff, 0xdf, 0xcf, 0x90, 0xff, 0xe0, 0xd0, 0x85, 0xff, 0xe5, 0xc7, 0x7c, 0xff, 0xe3, 0xbd, 0x75, 0xff, 0xe5, 0xbc, 0x74, 0xff, 0xe5, 0xb8, 0x6e, 0xff, 0xe4, 0xac, 0x6c, 0xff, 0xe4, 0xa5, 0x6a, 0xff, 0xe2, 0xa0, 0x62, 0xff, 0xe4, 0x9d, 0x5e, 0xff, 0xe3, 0x9d, 0x5b, 0xff, 0xe4, 0x9b, 0x5a, 0xff, 0xe2, 0x9b, 0x59, 0xff, 0xe4, 0x9b, 0x5b, 0xff, 0xe3, 0x9a, 0x5b, 0xff, 0xe2, 0x96, 0x59, 0xff, 0xe4, 0x98, 0x5d, 0xff, 0xe3, 0x9b, 0x5e, 0xff, 0xe3, 0xa6, 0x62, 0xff, 0xe2, 0xa7, 0x64, 0xff, 0xdd, 0xa2, 0x5a, 0xff, 0xe0, 0xa7, 0x5e, 0xff, 0xdf, 0xa8, 0x60, 0xff, 0xe1, 0xa0, 0x61, 0xff, 0xde, 0x96, 0x5a, 0xff, 0xe3, 0x9a, 0x5b, 0xff, 0xdd, 0x97, 0x5a, 0xff, 0xd4, 0x93, 0x55, 0xff, 0xd2, 0x91, 0x55, 0xff, 0xd1, 0x8f, 0x54, 0xff, 0xcb, 0x8c, 0x50, 0xff, 0xc9, 0x8c, 0x4d, 0xff, 0xca, 0x8c, 0x4c, 0xff, 0xc8, 0x8c, 0x4d, 0xff, 0xc9, 0x8d, 0x4e, 0xff, 0xc8, 0x8e, 0x4e, 0xff, 0xc5, 0x8d, 0x4c, 0xff, 0xc4, 0x8b, 0x4c, 0xff, 0xc1, 0x8a, 0x4d, 0xff, 0xc0, 0x89, 0x4d, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb9, 0x7d, 0x47, 0xff, 0xb8, 0x7d, 0x49, 0xff, 0xb7, 0x7f, 0x4a, 0xff, 0xb5, 0x7d, 0x49, 0xff, 0xb3, 0x79, 0x46, 0xff, 0xb2, 0x78, 0x45, 0xff, 0xb0, 0x76, 0x44, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xad, 0x76, 0x45, 0xff, 0xab, 0x72, 0x42, 0xff, 0xa9, 0x6f, 0x3f, 0xff, 0xa8, 0x6d, 0x3e, 0xff, 0xa6, 0x6d, 0x3d, 0xff, 0xa4, 0x6b, 0x3b, 0xff, 0xa2, 0x69, 0x3a, 0xff, 0xa2, 0x68, 0x3a, 0xff, 0xa1, 0x68, 0x3a, 0xff, 0x9f, 0x65, 0x3a, 0xff, 0x9c, 0x61, 0x38, 0xff, 0x9b, 0x60, 0x36, 0xff, 0x9a, 0x60, 0x35, 0xff, 0x98, 0x5f, 0x35, 0xff, 0x96, 0x5c, 0x33, 0xff, 0x95, 0x5a, 0x33, 0xff, 0x92, 0x58, 0x31, 0xff, 0x8d, 0x52, 0x2e, 0xff, 0x8a, 0x4e, 0x2b, 0xff, 0x88, 0x4e, 0x2b, 0xff, 0x86, 0x4c, 0x29, 0xff, 0x84, 0x4a, 0x26, 0xff, 0x83, 0x4a, 0x26, 0xff, 0x83, 0x4a, 0x25, 0xff, 0x82, 0x4a, 0x25, 0xff, 0x82, 0x49, 0x25, 0xff, 0x7c, 0x44, 0x1f, 0xff, 0x8a, 0x50, 0x2c, 0xff, 0x97, 0x5b, 0x36, 0xff, 0x93, 0x57, 0x32, 0xff, 0x91, 0x55, 0x30, 0xff, 0x90, 0x53, 0x30, 0xff, 0x8f, 0x52, 0x30, 0xff, 0x90, 0x53, 0x30, 0xff, 0x91, 0x54, 0x30, 0xff, 0x8f, 0x51, 0x2f, 0xff, 0x8d, 0x50, 0x2e, 0xff, 0x8e, 0x52, 0x2e, 0xff, 0x8f, 0x53, 0x2f, 0xff, 0x90, 0x52, 0x2f, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x91, 0x55, 0x2f, 0xff, 0x92, 0x56, 0x30, 0xff, 0x94, 0x57, 0x30, 0xff, 0x96, 0x58, 0x31, 0xff, 0x96, 0x59, 0x31, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x9b, 0x5c, 0x32, 0xff, 0x9d, 0x5e, 0x33, 0xff, 0xa0, 0x61, 0x34, 0xff, 0xa3, 0x65, 0x35, 0xff, 0xa7, 0x69, 0x36, 0xff, 0xa8, 0x6c, 0x3a, 0xff, 0xab, 0x73, 0x40, 0xff, 0xb0, 0x79, 0x45, 0xff, 0xb4, 0x7d, 0x4a, 0xff, 0xb9, 0x83, 0x51, 0xff, 0xc1, 0x8a, 0x57, 0xff, 0xcf, 0x95, 0x5d, 0xff, 0xe1, 0xa2, 0x67, 0xff, 0xe5, 0xad, 0x6f, 0xff, 0xe5, 0xc3, 0x7c, 0xff, 0xdf, 0xce, 0x89, 0xff, 0xde, 0xd0, 0x93, 0xff, 0xe0, 0xd0, 0x9b, 0xff, 0xe3, 0xd0, 0x9d, 0xff, 0xe3, 0xd0, 0x9e, 0xff, 0xe0, 0xd0, 0x98, 0xff, 0xde, 0xd1, 0x8e, 0xff, 0xe3, 0xc8, 0x83, 0xff, 0xe3, 0xb1, 0x75, 0xff, 0xe5, 0xa1, 0x6a, 0xff, 0xe6, 0x99, 0x62, 0xff, 0xdb, 0x91, 0x5a, 0xff, 0xd2, 0x89, 0x53, 0xff, 0xcd, 0x87, 0x50, 0xff, 0xc9, 0x85, 0x4d, 0xff, 0xca, 0x86, 0x4e, 0xff, 0xcd, 0x8a, 0x51, 0xff, 0xcd, 0x89, 0x51, 0xff, 0xce, 0x8a, 0x53, 0xff, 0xcf, 0x8a, 0x52, 0xff, 0xcf, 0x8a, 0x52, 0xff, 0xda, 0x92, 0x5a, 0xff, 0xb8, 0x7b, 0x47, 0xff, 0xae, 0x73, 0x3f, 0xff, 0xb4, 0x78, 0x44, 0xff, 0xb8, 0x7e, 0x48, 0xff, 0xbb, 0x7e, 0x4a, 0xff, 0xb7, 0x7b, 0x49, 0xff, 0xb5, 0x7a, 0x46, 0xff, 0xaa, 0x6e, 0x3e, 0xff, 0x98, 0x5b, 0x35, 0xff, 0x98, 0x5b, 0x34, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x99, 0x5d, 0x35, 0xff, 0x98, 0x5d, 0x36, 0xff, 0x9a, 0x5e, 0x36, 0xff, 0x9a, 0x5e, 0x36, 0xff, 0x9c, 0x60, 0x36, 0xff, 0x9c, 0x60, 0x36, 0xff, 0x9a, 0x5e, 0x36, 0xff, 0x98, 0x5d, 0x35, 0xff, 0x98, 0x5e, 0x34, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x98, 0x5b, 0x33, 0xff, 0x96, 0x59, 0x32, 0xff, 0x93, 0x56, 0x31, 0xff, 0x93, 0x56, 0x30, 0xff, 0x91, 0x54, 0x2f, 0xff, 0x8f, 0x51, 0x2d, 0xff, 0x8f, 0x52, 0x2d, 0xff, 0x8f, 0x52, 0x2e, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x91, 0x54, 0x2f, 0xff, 0x93, 0x55, 0x31, 0xff, 0x93, 0x56, 0x30, 0xff, 0x95, 0x58, 0x32, 0xff, 0x96, 0x5a, 0x33, 0xff, 0x99, 0x5d, 0x34, 0xff, 0x9b, 0x5d, 0x35, 0xff, 0x98, 0x59, 0x32, 0xff, 0x95, 0x59, 0x32, 0xff, 0x91, 0x55, 0x32, 0xff, 0x90, 0x56, 0x31, 0xff, 0x91, 0x54, 0x32, 0xff, 0x91, 0x56, 0x32, 0xff, 0x91, 0x55, 0x32, 0xff, 0x8f, 0x54, 0x31, 0xff, 0x8e, 0x52, 0x30, 0xff, 0x8d, 0x4f, 0x2d, 0xff, + 0x8a, 0x4c, 0x29, 0xff, 0x87, 0x4a, 0x26, 0xff, 0x84, 0x47, 0x25, 0xff, 0x82, 0x47, 0x25, 0xff, 0x81, 0x47, 0x22, 0xff, 0x81, 0x45, 0x20, 0xff, 0x7f, 0x43, 0x20, 0xff, 0x80, 0x45, 0x20, 0xff, 0x7d, 0x43, 0x20, 0xff, 0x7f, 0x43, 0x20, 0xff, 0x7f, 0x43, 0x20, 0xff, 0x80, 0x44, 0x20, 0xff, 0x82, 0x46, 0x23, 0xff, 0x84, 0x47, 0x23, 0xff, 0x85, 0x47, 0x25, 0xff, 0x84, 0x48, 0x23, 0xff, 0x85, 0x48, 0x23, 0xff, 0x88, 0x4a, 0x25, 0xff, 0x89, 0x4c, 0x25, 0xff, 0x89, 0x4b, 0x25, 0xff, 0x8a, 0x4c, 0x26, 0xff, 0x81, 0x46, 0x20, 0xff, 0x7b, 0x40, 0x1a, 0xff, 0x7d, 0x43, 0x1b, 0xff, 0x83, 0x48, 0x20, 0xff, 0x86, 0x49, 0x22, 0xff, 0x88, 0x4b, 0x25, 0xff, 0x8b, 0x4e, 0x26, 0xff, 0x8d, 0x52, 0x28, 0xff, 0x91, 0x54, 0x2c, 0xff, 0x94, 0x56, 0x2e, 0xff, 0x99, 0x5b, 0x30, 0xff, 0x9d, 0x60, 0x31, 0xff, 0x9f, 0x63, 0x33, 0xff, 0xa2, 0x69, 0x37, 0xff, 0xa5, 0x6b, 0x39, 0xff, 0xa9, 0x6d, 0x3c, 0xff, 0xac, 0x71, 0x3e, 0xff, 0xb0, 0x76, 0x3f, 0xff, 0xb5, 0x7a, 0x41, 0xff, 0xba, 0x7f, 0x46, 0xff, 0xc5, 0x85, 0x4d, 0xff, 0xd5, 0x8e, 0x54, 0xff, 0xe3, 0x9b, 0x5f, 0xff, 0xe5, 0xab, 0x6a, 0xff, 0xe4, 0xc2, 0x76, 0xff, 0xdf, 0xcf, 0x85, 0xff, 0xdf, 0xd1, 0x94, 0xff, 0xe1, 0xd0, 0xa4, 0xff, 0xe3, 0xd0, 0xaa, 0xff, 0xe2, 0xd0, 0xa7, 0xff, 0xe2, 0xd1, 0xa2, 0xff, 0xde, 0xd1, 0x93, 0xff, 0xdc, 0xcf, 0x89, 0xff, 0xdd, 0xce, 0x81, 0xff, 0xe5, 0xc8, 0x78, 0xff, 0xe5, 0xbd, 0x73, 0xff, 0xe5, 0xb9, 0x70, 0xff, 0xe5, 0xb4, 0x6e, 0xff, 0xe5, 0xa9, 0x6a, 0xff, 0xe4, 0xa4, 0x67, 0xff, 0xe4, 0xa3, 0x65, 0xff, 0xe3, 0x9b, 0x5c, 0xff, 0xe3, 0x9e, 0x5c, 0xff, 0xe4, 0x9a, 0x5b, 0xff, 0xe3, 0x99, 0x5a, 0xff, 0xe4, 0x9a, 0x5a, 0xff, 0xe3, 0x98, 0x5a, 0xff, 0xe4, 0x96, 0x5a, 0xff, 0xe3, 0x97, 0x5b, 0xff, 0xe2, 0x9f, 0x5f, 0xff, 0xe2, 0xa5, 0x62, 0xff, 0xe1, 0xa3, 0x62, 0xff, 0xe0, 0xa5, 0x5d, 0xff, 0xdf, 0xa4, 0x5c, 0xff, 0xe2, 0xa7, 0x60, 0xff, 0xe1, 0xa3, 0x61, 0xff, 0xdf, 0x97, 0x5e, 0xff, 0xe2, 0x99, 0x5d, 0xff, 0xe2, 0x96, 0x59, 0xff, 0xdb, 0x95, 0x57, 0xff, 0xd4, 0x93, 0x54, 0xff, 0xd5, 0x92, 0x55, 0xff, 0xd2, 0x8f, 0x50, 0xff, 0xca, 0x8c, 0x4b, 0xff, 0xcb, 0x8d, 0x4e, 0xff, 0xca, 0x8e, 0x4e, 0xff, 0xc8, 0x8c, 0x4d, 0xff, 0xc7, 0x8b, 0x4c, 0xff, 0xc7, 0x8c, 0x4d, 0xff, 0xc6, 0x8d, 0x4e, 0xff, 0xc4, 0x8b, 0x4f, 0xff, 0xc0, 0x86, 0x4c, 0xff, 0xbc, 0x81, 0x49, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xb9, 0x7f, 0x49, 0xff, 0xb9, 0x7f, 0x49, 0xff, 0xb8, 0x7f, 0x4a, 0xff, 0xb5, 0x7b, 0x47, 0xff, 0xb3, 0x7a, 0x45, 0xff, 0xb2, 0x78, 0x45, 0xff, 0xb0, 0x77, 0x45, 0xff, 0xaf, 0x77, 0x44, 0xff, 0xac, 0x74, 0x42, 0xff, 0xaa, 0x70, 0x40, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xa7, 0x6e, 0x3e, 0xff, 0xa5, 0x6d, 0x3e, 0xff, 0xa5, 0x6b, 0x3d, 0xff, 0xa3, 0x6a, 0x3c, 0xff, 0xa2, 0x68, 0x3a, 0xff, 0xa0, 0x65, 0x39, 0xff, 0x9d, 0x65, 0x39, 0xff, 0x9c, 0x63, 0x37, 0xff, 0x9a, 0x5f, 0x35, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x99, 0x5d, 0x33, 0xff, 0x97, 0x5d, 0x33, 0xff, 0x91, 0x56, 0x31, 0xff, 0x8d, 0x50, 0x2d, 0xff, 0x8c, 0x51, 0x2d, 0xff, 0x8a, 0x4f, 0x2a, 0xff, 0x86, 0x4c, 0x28, 0xff, 0x84, 0x4b, 0x27, 0xff, 0x84, 0x4a, 0x27, 0xff, 0x84, 0x4a, 0x27, 0xff, 0x82, 0x49, 0x26, 0xff, 0x7e, 0x46, 0x22, 0xff, 0x88, 0x4e, 0x2a, 0xff, 0x95, 0x58, 0x34, 0xff, 0x94, 0x57, 0x32, 0xff, 0x91, 0x54, 0x30, 0xff, 0x8f, 0x52, 0x30, 0xff, 0x8f, 0x52, 0x30, 0xff, 0x8f, 0x51, 0x30, 0xff, 0x8f, 0x51, 0x30, 0xff, 0x8c, 0x50, 0x2e, 0xff, 0x8b, 0x4f, 0x2d, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x8d, 0x50, 0x2d, 0xff, 0x8d, 0x4f, 0x2c, 0xff, 0x8c, 0x50, 0x2c, 0xff, 0x8d, 0x50, 0x2d, 0xff, 0x8e, 0x51, 0x2d, 0xff, 0x8f, 0x52, 0x2e, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x91, 0x53, 0x2e, 0xff, 0x92, 0x55, 0x2f, 0xff, 0x94, 0x57, 0x30, 0xff, 0x96, 0x58, 0x30, 0xff, 0x97, 0x59, 0x31, 0xff, 0x99, 0x5a, 0x31, 0xff, 0x9c, 0x5d, 0x32, 0xff, 0x9e, 0x60, 0x32, 0xff, 0xa2, 0x62, 0x32, 0xff, 0xa5, 0x66, 0x35, 0xff, 0xa9, 0x6d, 0x38, 0xff, 0xad, 0x72, 0x3e, 0xff, 0xb1, 0x78, 0x43, 0xff, 0xb6, 0x7f, 0x4a, 0xff, 0xbc, 0x87, 0x51, 0xff, 0xc8, 0x91, 0x58, 0xff, 0xdd, 0x9d, 0x62, 0xff, 0xe5, 0xac, 0x6c, 0xff, 0xe5, 0xc2, 0x78, 0xff, 0xde, 0xce, 0x86, 0xff, 0xdf, 0xd0, 0x92, 0xff, 0xe2, 0xd0, 0xa3, 0xff, 0xe4, 0xd1, 0xb2, 0xff, 0xe5, 0xd0, 0xb9, 0xff, 0xe4, 0xd0, 0xad, 0xff, 0xdf, 0xd0, 0x9d, 0xff, 0xdf, 0xd0, 0x8f, 0xff, 0xe3, 0xbb, 0x7b, 0xff, 0xe4, 0xab, 0x71, 0xff, 0xe4, 0xa1, 0x69, 0xff, 0xe2, 0x96, 0x5f, 0xff, 0xd5, 0x8e, 0x57, 0xff, 0xcb, 0x87, 0x52, 0xff, 0xc6, 0x84, 0x4e, 0xff, 0xc5, 0x84, 0x4c, 0xff, 0xc6, 0x85, 0x4d, 0xff, 0xc9, 0x86, 0x4f, 0xff, 0xcb, 0x85, 0x50, 0xff, 0xca, 0x85, 0x50, 0xff, 0xcb, 0x87, 0x50, 0xff, 0xcb, 0x88, 0x52, 0xff, 0xd0, 0x8a, 0x55, 0xff, 0xba, 0x7a, 0x45, 0xff, 0xb6, 0x78, 0x43, 0xff, 0xb7, 0x7a, 0x46, 0xff, 0xb9, 0x7e, 0x49, 0xff, 0xb6, 0x79, 0x48, 0xff, 0xb4, 0x75, 0x44, 0xff, 0x9c, 0x60, 0x36, 0xff, 0x97, 0x5a, 0x33, 0xff, 0x98, 0x5c, 0x34, 0xff, 0x97, 0x5b, 0x33, 0xff, 0x98, 0x5b, 0x33, 0xff, 0x97, 0x5b, 0x34, 0xff, 0x97, 0x5b, 0x35, 0xff, 0x98, 0x5c, 0x34, 0xff, 0x98, 0x5d, 0x33, 0xff, 0x98, 0x5b, 0x33, 0xff, 0x95, 0x58, 0x32, 0xff, 0x95, 0x57, 0x32, 0xff, 0x95, 0x59, 0x32, 0xff, 0x95, 0x58, 0x31, 0xff, 0x94, 0x57, 0x31, 0xff, 0x92, 0x55, 0x30, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x8f, 0x52, 0x2e, 0xff, 0x8e, 0x51, 0x2d, 0xff, 0x8e, 0x52, 0x2d, 0xff, 0x8d, 0x51, 0x2d, 0xff, 0x8e, 0x50, 0x2c, 0xff, 0x8f, 0x50, 0x2c, 0xff, 0x8f, 0x52, 0x2e, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x91, 0x54, 0x30, 0xff, 0x93, 0x56, 0x30, 0xff, 0x92, 0x54, 0x30, 0xff, 0x91, 0x54, 0x30, 0xff, 0x92, 0x54, 0x30, 0xff, 0x94, 0x56, 0x31, 0xff, 0x95, 0x58, 0x32, 0xff, 0x91, 0x55, 0x31, 0xff, 0x90, 0x55, 0x31, 0xff, 0x91, 0x56, 0x32, 0xff, 0x90, 0x57, 0x32, 0xff, 0x91, 0x55, 0x32, 0xff, 0x8f, 0x54, 0x31, 0xff, 0x8d, 0x4f, 0x2e, 0xff, 0x8a, 0x4e, 0x2c, 0xff, + 0x86, 0x4a, 0x27, 0xff, 0x84, 0x49, 0x25, 0xff, 0x82, 0x47, 0x24, 0xff, 0x81, 0x45, 0x23, 0xff, 0x7f, 0x45, 0x22, 0xff, 0x7e, 0x43, 0x1f, 0xff, 0x7e, 0x43, 0x1f, 0xff, 0x7d, 0x43, 0x1f, 0xff, 0x7c, 0x42, 0x1e, 0xff, 0x7c, 0x43, 0x1e, 0xff, 0x7d, 0x42, 0x1f, 0xff, 0x80, 0x45, 0x22, 0xff, 0x82, 0x47, 0x22, 0xff, 0x84, 0x47, 0x23, 0xff, 0x85, 0x47, 0x23, 0xff, 0x87, 0x49, 0x25, 0xff, 0x88, 0x4a, 0x25, 0xff, 0x84, 0x47, 0x23, 0xff, 0x88, 0x4a, 0x25, 0xff, 0x8b, 0x4d, 0x27, 0xff, 0x8c, 0x4d, 0x27, 0xff, 0x8d, 0x4e, 0x29, 0xff, 0x86, 0x49, 0x23, 0xff, 0x7d, 0x42, 0x1c, 0xff, 0x7f, 0x45, 0x1d, 0xff, 0x84, 0x47, 0x1f, 0xff, 0x87, 0x4a, 0x23, 0xff, 0x89, 0x4c, 0x25, 0xff, 0x8c, 0x4f, 0x27, 0xff, 0x8f, 0x51, 0x2a, 0xff, 0x92, 0x54, 0x2c, 0xff, 0x97, 0x59, 0x2f, 0xff, 0x9c, 0x5e, 0x31, 0xff, 0x9f, 0x62, 0x33, 0xff, 0xa0, 0x67, 0x36, 0xff, 0xa3, 0x6a, 0x39, 0xff, 0xa4, 0x6c, 0x3b, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xad, 0x72, 0x3f, 0xff, 0xb0, 0x76, 0x3e, 0xff, 0xb4, 0x79, 0x41, 0xff, 0xbc, 0x7d, 0x46, 0xff, 0xc6, 0x85, 0x4d, 0xff, 0xd3, 0x8d, 0x53, 0xff, 0xe0, 0x9a, 0x5e, 0xff, 0xe3, 0xa8, 0x67, 0xff, 0xe3, 0xb9, 0x72, 0xff, 0xde, 0xc9, 0x7f, 0xff, 0xdd, 0xd1, 0x8a, 0xff, 0xdd, 0xcf, 0x90, 0xff, 0xde, 0xcf, 0x91, 0xff, 0xdd, 0xd0, 0x8f, 0xff, 0xdc, 0xd0, 0x8a, 0xff, 0xda, 0xd1, 0x81, 0xff, 0xe0, 0xcf, 0x7a, 0xff, 0xe5, 0xc2, 0x74, 0xff, 0xe4, 0xb5, 0x6f, 0xff, 0xe5, 0xb2, 0x6e, 0xff, 0xe5, 0xad, 0x6c, 0xff, 0xe4, 0xa6, 0x69, 0xff, 0xe4, 0xa3, 0x65, 0xff, 0xe4, 0xa1, 0x64, 0xff, 0xe3, 0x9b, 0x5d, 0xff, 0xe4, 0x9a, 0x5b, 0xff, 0xe4, 0x9a, 0x5a, 0xff, 0xe4, 0x99, 0x59, 0xff, 0xe3, 0x9b, 0x5a, 0xff, 0xe3, 0x98, 0x5a, 0xff, 0xe4, 0x96, 0x5a, 0xff, 0xe4, 0x9a, 0x5d, 0xff, 0xe3, 0xa2, 0x5f, 0xff, 0xe3, 0xa3, 0x60, 0xff, 0xe2, 0xa4, 0x61, 0xff, 0xe1, 0xa5, 0x60, 0xff, 0xe2, 0xa4, 0x5d, 0xff, 0xe1, 0xa5, 0x5d, 0xff, 0xdf, 0x9f, 0x5e, 0xff, 0xe0, 0x99, 0x5f, 0xff, 0xe4, 0x9d, 0x5f, 0xff, 0xe3, 0x98, 0x5a, 0xff, 0xdd, 0x98, 0x59, 0xff, 0xd7, 0x91, 0x55, 0xff, 0xd7, 0x91, 0x53, 0xff, 0xd4, 0x92, 0x52, 0xff, 0xcd, 0x8e, 0x4e, 0xff, 0xcc, 0x8d, 0x4a, 0xff, 0xcb, 0x8b, 0x4c, 0xff, 0xcc, 0x8e, 0x4d, 0xff, 0xca, 0x8e, 0x4c, 0xff, 0xc9, 0x8d, 0x4d, 0xff, 0xc8, 0x8b, 0x4e, 0xff, 0xc6, 0x8c, 0x4f, 0xff, 0xc3, 0x8a, 0x4d, 0xff, 0xbe, 0x81, 0x4a, 0xff, 0xbe, 0x82, 0x4a, 0xff, 0xbc, 0x81, 0x49, 0xff, 0xbb, 0x81, 0x4a, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xb8, 0x7d, 0x48, 0xff, 0xb5, 0x7b, 0x47, 0xff, 0xb4, 0x7a, 0x46, 0xff, 0xb2, 0x78, 0x45, 0xff, 0xb1, 0x77, 0x45, 0xff, 0xaf, 0x75, 0x43, 0xff, 0xac, 0x71, 0x40, 0xff, 0xaa, 0x70, 0x3f, 0xff, 0xa8, 0x6f, 0x40, 0xff, 0xa8, 0x6d, 0x3f, 0xff, 0xa6, 0x6b, 0x3e, 0xff, 0xa4, 0x6b, 0x3c, 0xff, 0xa3, 0x69, 0x3c, 0xff, 0xa1, 0x67, 0x3a, 0xff, 0xa0, 0x64, 0x3a, 0xff, 0x9e, 0x63, 0x39, 0xff, 0x9d, 0x61, 0x37, 0xff, 0x9b, 0x61, 0x36, 0xff, 0x99, 0x61, 0x35, 0xff, 0x95, 0x5c, 0x33, 0xff, 0x90, 0x55, 0x2f, 0xff, 0x8e, 0x52, 0x2e, 0xff, 0x8d, 0x50, 0x2e, 0xff, 0x8a, 0x4f, 0x2b, 0xff, 0x88, 0x4d, 0x29, 0xff, 0x86, 0x4c, 0x28, 0xff, 0x84, 0x4b, 0x27, 0xff, 0x83, 0x4b, 0x27, 0xff, 0x81, 0x48, 0x24, 0xff, 0x87, 0x4c, 0x28, 0xff, 0x93, 0x58, 0x32, 0xff, 0x96, 0x59, 0x33, 0xff, 0x92, 0x55, 0x31, 0xff, 0x90, 0x53, 0x30, 0xff, 0x8f, 0x52, 0x30, 0xff, 0x8e, 0x51, 0x30, 0xff, 0x8d, 0x51, 0x30, 0xff, 0x8c, 0x4f, 0x2d, 0xff, 0x8a, 0x4e, 0x2b, 0xff, 0x89, 0x4d, 0x2a, 0xff, 0x8b, 0x4d, 0x29, 0xff, 0x8a, 0x4c, 0x2a, 0xff, 0x89, 0x4c, 0x29, 0xff, 0x8a, 0x4d, 0x2a, 0xff, 0x8a, 0x4e, 0x2b, 0xff, 0x8b, 0x4e, 0x2a, 0xff, 0x8d, 0x4f, 0x2b, 0xff, 0x8e, 0x50, 0x2c, 0xff, 0x8f, 0x51, 0x2d, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x92, 0x55, 0x2e, 0xff, 0x93, 0x56, 0x2f, 0xff, 0x95, 0x58, 0x30, 0xff, 0x97, 0x5a, 0x30, 0xff, 0x9a, 0x5b, 0x31, 0xff, 0x9c, 0x5d, 0x31, 0xff, 0xa0, 0x60, 0x32, 0xff, 0xa4, 0x65, 0x33, 0xff, 0xa8, 0x6a, 0x36, 0xff, 0xac, 0x71, 0x3c, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb7, 0x7f, 0x4a, 0xff, 0xc0, 0x8a, 0x51, 0xff, 0xd1, 0x94, 0x59, 0xff, 0xe1, 0xa1, 0x64, 0xff, 0xe4, 0xb4, 0x70, 0xff, 0xe2, 0xcb, 0x7e, 0xff, 0xdd, 0xd2, 0x8a, 0xff, 0xdf, 0xcf, 0x98, 0xff, 0xe4, 0xd0, 0xb5, 0xff, 0xe5, 0xd1, 0xbe, 0xff, 0xe4, 0xd1, 0xba, 0xff, 0xe2, 0xd0, 0xac, 0xff, 0xde, 0xd1, 0x99, 0xff, 0xe3, 0xc9, 0x85, 0xff, 0xe5, 0xb5, 0x77, 0xff, 0xe5, 0xa4, 0x6b, 0xff, 0xe0, 0x98, 0x62, 0xff, 0xd5, 0x8f, 0x58, 0xff, 0xc8, 0x88, 0x50, 0xff, 0xc1, 0x81, 0x4b, 0xff, 0xc0, 0x7f, 0x48, 0xff, 0xc0, 0x7f, 0x48, 0xff, 0xc1, 0x80, 0x49, 0xff, 0xc3, 0x81, 0x4b, 0xff, 0xc2, 0x81, 0x4c, 0xff, 0xc3, 0x82, 0x4d, 0xff, 0xc3, 0x82, 0x4e, 0xff, 0xc8, 0x84, 0x50, 0xff, 0xd4, 0x8c, 0x57, 0xff, 0xbb, 0x7b, 0x46, 0xff, 0xb5, 0x78, 0x44, 0xff, 0xb8, 0x7a, 0x47, 0xff, 0xb5, 0x78, 0x45, 0xff, 0xad, 0x6f, 0x3e, 0xff, 0x96, 0x59, 0x33, 0xff, 0x96, 0x59, 0x34, 0xff, 0x97, 0x5b, 0x33, 0xff, 0x96, 0x5a, 0x32, 0xff, 0x96, 0x5a, 0x33, 0xff, 0x96, 0x5a, 0x33, 0xff, 0x96, 0x59, 0x33, 0xff, 0x96, 0x5a, 0x32, 0xff, 0x96, 0x5a, 0x31, 0xff, 0x94, 0x57, 0x30, 0xff, 0x92, 0x55, 0x30, 0xff, 0x92, 0x54, 0x30, 0xff, 0x92, 0x55, 0x2f, 0xff, 0x91, 0x53, 0x2e, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x8f, 0x51, 0x2d, 0xff, 0x8d, 0x50, 0x2d, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8d, 0x50, 0x2d, 0xff, 0x8d, 0x4f, 0x2c, 0xff, 0x8c, 0x4f, 0x2a, 0xff, 0x8c, 0x4f, 0x29, 0xff, 0x8c, 0x4f, 0x29, 0xff, 0x8c, 0x4f, 0x2b, 0xff, 0x8d, 0x50, 0x2d, 0xff, 0x8e, 0x50, 0x2e, 0xff, 0x8e, 0x51, 0x2e, 0xff, 0x8f, 0x52, 0x2e, 0xff, 0x92, 0x52, 0x30, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x92, 0x55, 0x31, 0xff, 0x93, 0x57, 0x32, 0xff, 0x93, 0x57, 0x33, 0xff, 0x91, 0x57, 0x31, 0xff, 0x91, 0x55, 0x32, 0xff, 0x90, 0x56, 0x32, 0xff, 0x8f, 0x55, 0x31, 0xff, 0x8f, 0x53, 0x30, 0xff, 0x8b, 0x50, 0x2e, 0xff, 0x89, 0x4c, 0x2b, 0xff, + 0x84, 0x49, 0x27, 0xff, 0x83, 0x47, 0x25, 0xff, 0x80, 0x47, 0x23, 0xff, 0x81, 0x45, 0x23, 0xff, 0x7e, 0x44, 0x20, 0xff, 0x7c, 0x42, 0x1d, 0xff, 0x7c, 0x42, 0x1d, 0xff, 0x7a, 0x42, 0x1e, 0xff, 0x7a, 0x42, 0x1e, 0xff, 0x7c, 0x42, 0x1e, 0xff, 0x80, 0x44, 0x1f, 0xff, 0x7f, 0x44, 0x20, 0xff, 0x80, 0x44, 0x20, 0xff, 0x82, 0x45, 0x22, 0xff, 0x83, 0x46, 0x23, 0xff, 0x85, 0x48, 0x23, 0xff, 0x88, 0x49, 0x26, 0xff, 0x8a, 0x4c, 0x26, 0xff, 0x87, 0x49, 0x24, 0xff, 0x87, 0x49, 0x23, 0xff, 0x8b, 0x4c, 0x26, 0xff, 0x8d, 0x4e, 0x27, 0xff, 0x90, 0x50, 0x2a, 0xff, 0x8d, 0x4e, 0x29, 0xff, 0x88, 0x4a, 0x24, 0xff, 0x81, 0x45, 0x1b, 0xff, 0x83, 0x48, 0x21, 0xff, 0x88, 0x4b, 0x24, 0xff, 0x8a, 0x4e, 0x24, 0xff, 0x8d, 0x50, 0x28, 0xff, 0x90, 0x52, 0x2c, 0xff, 0x93, 0x55, 0x2e, 0xff, 0x99, 0x5a, 0x30, 0xff, 0x9d, 0x61, 0x33, 0xff, 0x9f, 0x65, 0x34, 0xff, 0xa1, 0x6a, 0x39, 0xff, 0xa6, 0x6d, 0x3e, 0xff, 0xac, 0x71, 0x43, 0xff, 0xb0, 0x75, 0x45, 0xff, 0xb5, 0x7a, 0x47, 0xff, 0xba, 0x7e, 0x47, 0xff, 0xc0, 0x83, 0x4a, 0xff, 0xca, 0x85, 0x4d, 0xff, 0xdb, 0x90, 0x54, 0xff, 0xe3, 0x97, 0x5d, 0xff, 0xe4, 0xa3, 0x66, 0xff, 0xe3, 0xaa, 0x6b, 0xff, 0xe3, 0xbd, 0x74, 0xff, 0xdd, 0xd1, 0x81, 0xff, 0xda, 0xd0, 0x84, 0xff, 0xd9, 0xcd, 0x82, 0xff, 0xdb, 0xcd, 0x80, 0xff, 0xdd, 0xcc, 0x7e, 0xff, 0xe4, 0xcd, 0x7a, 0xff, 0xe5, 0xc1, 0x75, 0xff, 0xe4, 0xb6, 0x70, 0xff, 0xe4, 0xae, 0x6d, 0xff, 0xe5, 0xaf, 0x6c, 0xff, 0xe3, 0xaa, 0x6b, 0xff, 0xe4, 0xa3, 0x66, 0xff, 0xe4, 0xa0, 0x63, 0xff, 0xe4, 0x9e, 0x63, 0xff, 0xe3, 0x9a, 0x5e, 0xff, 0xe4, 0x9a, 0x58, 0xff, 0xe3, 0x9b, 0x5a, 0xff, 0xe5, 0x9b, 0x5b, 0xff, 0xe4, 0x99, 0x59, 0xff, 0xe4, 0x99, 0x5a, 0xff, 0xe4, 0x94, 0x5a, 0xff, 0xe3, 0x99, 0x5b, 0xff, 0xe3, 0xa5, 0x5e, 0xff, 0xe4, 0xa5, 0x5e, 0xff, 0xe4, 0xa3, 0x5f, 0xff, 0xe3, 0xa2, 0x60, 0xff, 0xe2, 0xa3, 0x5e, 0xff, 0xe0, 0xa4, 0x5f, 0xff, 0xdd, 0xa1, 0x5f, 0xff, 0xdf, 0x9a, 0x5f, 0xff, 0xe5, 0xa1, 0x63, 0xff, 0xe2, 0x9a, 0x5a, 0xff, 0xde, 0x97, 0x58, 0xff, 0xd9, 0x94, 0x56, 0xff, 0xd9, 0x90, 0x52, 0xff, 0xd5, 0x90, 0x51, 0xff, 0xcf, 0x8f, 0x4f, 0xff, 0xcd, 0x8c, 0x4c, 0xff, 0xcd, 0x8e, 0x4c, 0xff, 0xcc, 0x8d, 0x4d, 0xff, 0xcb, 0x8c, 0x4d, 0xff, 0xca, 0x8d, 0x4e, 0xff, 0xc9, 0x8f, 0x4e, 0xff, 0xca, 0x8e, 0x51, 0xff, 0xc4, 0x89, 0x4e, 0xff, 0xbf, 0x83, 0x4b, 0xff, 0xc0, 0x82, 0x4a, 0xff, 0xc0, 0x82, 0x4b, 0xff, 0xbe, 0x82, 0x4b, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb7, 0x7e, 0x48, 0xff, 0xb5, 0x7c, 0x48, 0xff, 0xb4, 0x7a, 0x48, 0xff, 0xb2, 0x79, 0x47, 0xff, 0xaf, 0x76, 0x44, 0xff, 0xae, 0x74, 0x43, 0xff, 0xac, 0x72, 0x41, 0xff, 0xaa, 0x70, 0x41, 0xff, 0xa9, 0x6f, 0x40, 0xff, 0xa7, 0x6c, 0x3e, 0xff, 0xa4, 0x6b, 0x3e, 0xff, 0xa3, 0x6b, 0x3d, 0xff, 0xa2, 0x68, 0x3b, 0xff, 0xa0, 0x66, 0x3b, 0xff, 0x9e, 0x64, 0x3a, 0xff, 0x9e, 0x63, 0x38, 0xff, 0x9c, 0x61, 0x37, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x95, 0x59, 0x32, 0xff, 0x91, 0x55, 0x30, 0xff, 0x90, 0x54, 0x2f, 0xff, 0x8d, 0x51, 0x2d, 0xff, 0x8c, 0x4f, 0x2b, 0xff, 0x89, 0x4f, 0x2a, 0xff, 0x87, 0x4e, 0x2a, 0xff, 0x87, 0x4c, 0x29, 0xff, 0x83, 0x4a, 0x25, 0xff, 0x85, 0x4a, 0x26, 0xff, 0x92, 0x56, 0x30, 0xff, 0x99, 0x5d, 0x34, 0xff, 0x95, 0x57, 0x31, 0xff, 0x92, 0x55, 0x31, 0xff, 0x90, 0x53, 0x30, 0xff, 0x8f, 0x52, 0x30, 0xff, 0x8e, 0x52, 0x30, 0xff, 0x8c, 0x4f, 0x2d, 0xff, 0x89, 0x4d, 0x2b, 0xff, 0x88, 0x4c, 0x29, 0xff, 0x87, 0x4c, 0x28, 0xff, 0x86, 0x4b, 0x28, 0xff, 0x86, 0x4a, 0x27, 0xff, 0x86, 0x4a, 0x27, 0xff, 0x87, 0x4a, 0x27, 0xff, 0x88, 0x4a, 0x27, 0xff, 0x89, 0x4b, 0x28, 0xff, 0x8a, 0x4d, 0x29, 0xff, 0x8a, 0x4e, 0x2a, 0xff, 0x8b, 0x4e, 0x2a, 0xff, 0x8c, 0x4f, 0x2b, 0xff, 0x8d, 0x50, 0x2c, 0xff, 0x8e, 0x51, 0x2c, 0xff, 0x90, 0x53, 0x2d, 0xff, 0x92, 0x53, 0x2d, 0xff, 0x93, 0x55, 0x2e, 0xff, 0x95, 0x57, 0x2e, 0xff, 0x98, 0x59, 0x2f, 0xff, 0x9c, 0x5b, 0x30, 0xff, 0x9e, 0x5f, 0x31, 0xff, 0xa2, 0x63, 0x32, 0xff, 0xa6, 0x68, 0x36, 0xff, 0xac, 0x6f, 0x3a, 0xff, 0xb3, 0x76, 0x41, 0xff, 0xba, 0x7f, 0x4a, 0xff, 0xc5, 0x8a, 0x51, 0xff, 0xd8, 0x94, 0x5a, 0xff, 0xe3, 0xa2, 0x65, 0xff, 0xe4, 0xb6, 0x71, 0xff, 0xe2, 0xcc, 0x7f, 0xff, 0xe0, 0xd2, 0x90, 0xff, 0xe3, 0xd1, 0xa3, 0xff, 0xe4, 0xd1, 0xaf, 0xff, 0xe4, 0xd1, 0xb2, 0xff, 0xe4, 0xd1, 0xa9, 0xff, 0xdf, 0xd1, 0x9a, 0xff, 0xe3, 0xcf, 0x89, 0xff, 0xe5, 0xbc, 0x7b, 0xff, 0xe5, 0xaa, 0x70, 0xff, 0xe5, 0x9f, 0x66, 0xff, 0xd6, 0x90, 0x5a, 0xff, 0xc7, 0x87, 0x52, 0xff, 0xbe, 0x80, 0x4a, 0xff, 0xbb, 0x7c, 0x46, 0xff, 0xbb, 0x7b, 0x45, 0xff, 0xbb, 0x7d, 0x47, 0xff, 0xbe, 0x7d, 0x47, 0xff, 0xbd, 0x7c, 0x49, 0xff, 0xbd, 0x7a, 0x48, 0xff, 0xbe, 0x7e, 0x49, 0xff, 0xc5, 0x81, 0x4e, 0xff, 0xcc, 0x86, 0x51, 0xff, 0xcb, 0x87, 0x53, 0xff, 0xb5, 0x77, 0x42, 0xff, 0xb3, 0x77, 0x41, 0xff, 0xb4, 0x78, 0x41, 0xff, 0xa2, 0x64, 0x38, 0xff, 0x97, 0x5a, 0x33, 0xff, 0x96, 0x5c, 0x33, 0xff, 0x96, 0x5a, 0x32, 0xff, 0x96, 0x5a, 0x32, 0xff, 0x95, 0x58, 0x32, 0xff, 0x95, 0x58, 0x32, 0xff, 0x94, 0x57, 0x31, 0xff, 0x96, 0x58, 0x32, 0xff, 0x94, 0x57, 0x30, 0xff, 0x91, 0x53, 0x2e, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x8f, 0x52, 0x2e, 0xff, 0x8e, 0x51, 0x2c, 0xff, 0x8d, 0x51, 0x2c, 0xff, 0x8d, 0x4f, 0x2b, 0xff, 0x8c, 0x4e, 0x2a, 0xff, 0x8a, 0x4e, 0x2a, 0xff, 0x8b, 0x4e, 0x29, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x8b, 0x4d, 0x29, 0xff, 0x8a, 0x4c, 0x29, 0xff, 0x8a, 0x4e, 0x29, 0xff, 0x8a, 0x4d, 0x29, 0xff, 0x8b, 0x4e, 0x29, 0xff, 0x8b, 0x4e, 0x2a, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x8e, 0x50, 0x2c, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x8f, 0x51, 0x2c, 0xff, 0x90, 0x51, 0x2f, 0xff, 0x92, 0x55, 0x31, 0xff, 0x93, 0x57, 0x32, 0xff, 0x92, 0x57, 0x32, 0xff, 0x92, 0x57, 0x31, 0xff, 0x8f, 0x55, 0x32, 0xff, 0x8f, 0x55, 0x32, 0xff, 0x8e, 0x56, 0x32, 0xff, 0x8d, 0x51, 0x2f, 0xff, 0x8a, 0x4f, 0x2c, 0xff, 0x88, 0x4b, 0x27, 0xff, + 0x85, 0x49, 0x24, 0xff, 0x81, 0x48, 0x24, 0xff, 0x80, 0x46, 0x23, 0xff, 0x7f, 0x44, 0x23, 0xff, 0x7f, 0x44, 0x20, 0xff, 0x7c, 0x42, 0x1e, 0xff, 0x7c, 0x42, 0x1e, 0xff, 0x7c, 0x41, 0x1e, 0xff, 0x7e, 0x43, 0x1f, 0xff, 0x80, 0x44, 0x20, 0xff, 0x7f, 0x43, 0x20, 0xff, 0x7e, 0x43, 0x20, 0xff, 0x7f, 0x43, 0x1f, 0xff, 0x80, 0x44, 0x1f, 0xff, 0x81, 0x44, 0x20, 0xff, 0x84, 0x46, 0x23, 0xff, 0x84, 0x47, 0x22, 0xff, 0x89, 0x4a, 0x26, 0xff, 0x8c, 0x4d, 0x28, 0xff, 0x89, 0x4a, 0x26, 0xff, 0x89, 0x4a, 0x26, 0xff, 0x8a, 0x4c, 0x26, 0xff, 0x8e, 0x4f, 0x28, 0xff, 0x8f, 0x51, 0x2c, 0xff, 0x8e, 0x4e, 0x28, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x88, 0x4a, 0x23, 0xff, 0x86, 0x4a, 0x22, 0xff, 0x88, 0x4b, 0x24, 0xff, 0x8b, 0x4f, 0x24, 0xff, 0x8e, 0x51, 0x29, 0xff, 0x92, 0x53, 0x2c, 0xff, 0x97, 0x57, 0x2f, 0xff, 0x9c, 0x5e, 0x33, 0xff, 0xa3, 0x66, 0x38, 0xff, 0xa5, 0x6a, 0x3b, 0xff, 0xa8, 0x6c, 0x40, 0xff, 0xac, 0x70, 0x44, 0xff, 0xb0, 0x74, 0x46, 0xff, 0xb3, 0x77, 0x47, 0xff, 0xb8, 0x7d, 0x47, 0xff, 0xbb, 0x7e, 0x46, 0xff, 0xc0, 0x80, 0x48, 0xff, 0xcb, 0x86, 0x4d, 0xff, 0xdb, 0x90, 0x55, 0xff, 0xe4, 0x98, 0x5c, 0xff, 0xe3, 0x9d, 0x60, 0xff, 0xe5, 0xab, 0x69, 0xff, 0xe5, 0xc2, 0x73, 0xff, 0xe3, 0xc4, 0x78, 0xff, 0xe4, 0xcc, 0x7c, 0xff, 0xde, 0xcf, 0x7f, 0xff, 0xdf, 0xcc, 0x7b, 0xff, 0xe3, 0xc2, 0x75, 0xff, 0xe2, 0xb7, 0x6f, 0xff, 0xe3, 0xac, 0x6b, 0xff, 0xe2, 0xa8, 0x69, 0xff, 0xe4, 0xa9, 0x68, 0xff, 0xe4, 0xa5, 0x66, 0xff, 0xe4, 0xa0, 0x64, 0xff, 0xe4, 0x9c, 0x62, 0xff, 0xe3, 0x9c, 0x60, 0xff, 0xe4, 0x9c, 0x5f, 0xff, 0xe4, 0x9a, 0x59, 0xff, 0xe4, 0x98, 0x5b, 0xff, 0xe3, 0x99, 0x59, 0xff, 0xe5, 0x99, 0x5a, 0xff, 0xe4, 0x98, 0x5a, 0xff, 0xe4, 0x95, 0x59, 0xff, 0xe1, 0x9e, 0x5b, 0xff, 0xe3, 0xa4, 0x5d, 0xff, 0xe4, 0xa0, 0x5d, 0xff, 0xe4, 0xa2, 0x5f, 0xff, 0xe3, 0xa0, 0x60, 0xff, 0xe2, 0xa2, 0x5f, 0xff, 0xe0, 0xa5, 0x5b, 0xff, 0xe0, 0xa0, 0x5b, 0xff, 0xdf, 0x99, 0x5c, 0xff, 0xe5, 0x9f, 0x61, 0xff, 0xe4, 0x9a, 0x5b, 0xff, 0xe3, 0x98, 0x59, 0xff, 0xdf, 0x95, 0x57, 0xff, 0xdb, 0x91, 0x52, 0xff, 0xd8, 0x91, 0x52, 0xff, 0xd1, 0x8f, 0x4e, 0xff, 0xd2, 0x91, 0x4e, 0xff, 0xd0, 0x8f, 0x4e, 0xff, 0xce, 0x8f, 0x4d, 0xff, 0xce, 0x8f, 0x4e, 0xff, 0xce, 0x92, 0x4f, 0xff, 0xcd, 0x91, 0x4e, 0xff, 0xca, 0x8e, 0x4f, 0xff, 0xc9, 0x8c, 0x4e, 0xff, 0xc3, 0x86, 0x4c, 0xff, 0xc3, 0x85, 0x4c, 0xff, 0xc2, 0x85, 0x4d, 0xff, 0xc0, 0x84, 0x4c, 0xff, 0xbf, 0x82, 0x4b, 0xff, 0xbc, 0x81, 0x4b, 0xff, 0xb8, 0x81, 0x4a, 0xff, 0xb7, 0x7f, 0x4a, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb4, 0x7b, 0x46, 0xff, 0xb2, 0x78, 0x45, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xae, 0x74, 0x42, 0xff, 0xac, 0x72, 0x43, 0xff, 0xaa, 0x70, 0x41, 0xff, 0xaa, 0x70, 0x41, 0xff, 0xa8, 0x6f, 0x40, 0xff, 0xa5, 0x6c, 0x3d, 0xff, 0xa4, 0x6a, 0x3d, 0xff, 0xa3, 0x69, 0x3b, 0xff, 0xa1, 0x67, 0x39, 0xff, 0x9f, 0x65, 0x38, 0xff, 0x9d, 0x62, 0x37, 0xff, 0x99, 0x5e, 0x35, 0xff, 0x94, 0x58, 0x32, 0xff, 0x93, 0x56, 0x30, 0xff, 0x91, 0x55, 0x2f, 0xff, 0x8e, 0x52, 0x2f, 0xff, 0x8b, 0x51, 0x2e, 0xff, 0x8b, 0x51, 0x2b, 0xff, 0x8a, 0x4e, 0x2a, 0xff, 0x88, 0x4c, 0x2a, 0xff, 0x82, 0x49, 0x25, 0xff, 0x90, 0x57, 0x31, 0xff, 0x9c, 0x60, 0x37, 0xff, 0x96, 0x59, 0x32, 0xff, 0x93, 0x57, 0x31, 0xff, 0x93, 0x55, 0x31, 0xff, 0x90, 0x53, 0x30, 0xff, 0x8d, 0x51, 0x30, 0xff, 0x8b, 0x50, 0x2f, 0xff, 0x89, 0x4e, 0x2c, 0xff, 0x88, 0x4c, 0x2a, 0xff, 0x87, 0x4b, 0x29, 0xff, 0x84, 0x49, 0x27, 0xff, 0x83, 0x48, 0x25, 0xff, 0x84, 0x48, 0x25, 0xff, 0x84, 0x48, 0x25, 0xff, 0x85, 0x49, 0x25, 0xff, 0x85, 0x4a, 0x26, 0xff, 0x85, 0x4b, 0x26, 0xff, 0x87, 0x4a, 0x26, 0xff, 0x88, 0x4b, 0x28, 0xff, 0x89, 0x4d, 0x29, 0xff, 0x8a, 0x4e, 0x29, 0xff, 0x8b, 0x4e, 0x29, 0xff, 0x8c, 0x4e, 0x2a, 0xff, 0x8e, 0x4f, 0x2a, 0xff, 0x8f, 0x51, 0x2a, 0xff, 0x91, 0x52, 0x2b, 0xff, 0x92, 0x53, 0x2c, 0xff, 0x93, 0x54, 0x2c, 0xff, 0x96, 0x57, 0x2c, 0xff, 0x9a, 0x59, 0x2d, 0xff, 0x9e, 0x5d, 0x30, 0xff, 0xa2, 0x63, 0x33, 0xff, 0xa6, 0x68, 0x36, 0xff, 0xab, 0x6d, 0x3a, 0xff, 0xb2, 0x75, 0x42, 0xff, 0xba, 0x7e, 0x48, 0xff, 0xc6, 0x87, 0x4f, 0xff, 0xd8, 0x94, 0x59, 0xff, 0xe2, 0xa1, 0x66, 0xff, 0xe3, 0xb1, 0x71, 0xff, 0xe1, 0xc8, 0x84, 0xff, 0xdf, 0xd1, 0x93, 0xff, 0xe0, 0xd1, 0x9a, 0xff, 0xe2, 0xd1, 0x9e, 0xff, 0xe1, 0xd1, 0x9e, 0xff, 0xdf, 0xd1, 0x95, 0xff, 0xe4, 0xcc, 0x87, 0xff, 0xe5, 0xbb, 0x7c, 0xff, 0xe5, 0xaa, 0x71, 0xff, 0xe5, 0x9f, 0x66, 0xff, 0xda, 0x95, 0x5b, 0xff, 0xc8, 0x88, 0x53, 0xff, 0xc0, 0x80, 0x4d, 0xff, 0xba, 0x7c, 0x46, 0xff, 0xb9, 0x78, 0x44, 0xff, 0xb9, 0x78, 0x43, 0xff, 0xb9, 0x7a, 0x45, 0xff, 0xb8, 0x77, 0x45, 0xff, 0xb8, 0x76, 0x45, 0xff, 0xbe, 0x7b, 0x49, 0xff, 0xc0, 0x7f, 0x4a, 0xff, 0xc1, 0x80, 0x4b, 0xff, 0xcd, 0x87, 0x53, 0xff, 0xc0, 0x7e, 0x4b, 0xff, 0xb1, 0x71, 0x3d, 0xff, 0xb2, 0x75, 0x3e, 0xff, 0x9c, 0x5f, 0x36, 0xff, 0x95, 0x57, 0x32, 0xff, 0x96, 0x5a, 0x33, 0xff, 0x95, 0x58, 0x32, 0xff, 0x93, 0x58, 0x32, 0xff, 0x94, 0x57, 0x31, 0xff, 0x93, 0x58, 0x31, 0xff, 0x94, 0x57, 0x31, 0xff, 0x93, 0x56, 0x30, 0xff, 0x91, 0x55, 0x30, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x8e, 0x51, 0x2d, 0xff, 0x8f, 0x51, 0x2c, 0xff, 0x8e, 0x50, 0x2c, 0xff, 0x8d, 0x50, 0x2b, 0xff, 0x8c, 0x4e, 0x2a, 0xff, 0x8b, 0x4e, 0x2a, 0xff, 0x8b, 0x4c, 0x29, 0xff, 0x89, 0x4c, 0x27, 0xff, 0x89, 0x4c, 0x27, 0xff, 0x8a, 0x4b, 0x28, 0xff, 0x89, 0x4b, 0x27, 0xff, 0x89, 0x4a, 0x27, 0xff, 0x88, 0x4c, 0x27, 0xff, 0x89, 0x4c, 0x29, 0xff, 0x8a, 0x4c, 0x29, 0xff, 0x8a, 0x4c, 0x29, 0xff, 0x8b, 0x4e, 0x2a, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8d, 0x50, 0x2d, 0xff, 0x92, 0x57, 0x32, 0xff, 0x92, 0x57, 0x32, 0xff, 0x92, 0x56, 0x32, 0xff, 0x91, 0x57, 0x31, 0xff, 0x8f, 0x55, 0x32, 0xff, 0x8d, 0x55, 0x32, 0xff, 0x8f, 0x54, 0x31, 0xff, 0x8c, 0x50, 0x2e, 0xff, 0x89, 0x4d, 0x2b, 0xff, 0x86, 0x4a, 0x27, 0xff, + 0x83, 0x46, 0x23, 0xff, 0x80, 0x46, 0x21, 0xff, 0x7f, 0x44, 0x20, 0xff, 0x7e, 0x44, 0x20, 0xff, 0x7c, 0x41, 0x1e, 0xff, 0x79, 0x41, 0x1e, 0xff, 0x7b, 0x41, 0x1d, 0xff, 0x7e, 0x43, 0x1f, 0xff, 0x7d, 0x43, 0x1f, 0xff, 0x7c, 0x42, 0x1e, 0xff, 0x7d, 0x42, 0x1e, 0xff, 0x7e, 0x44, 0x1e, 0xff, 0x80, 0x44, 0x1e, 0xff, 0x80, 0x44, 0x20, 0xff, 0x81, 0x47, 0x21, 0xff, 0x84, 0x48, 0x22, 0xff, 0x84, 0x47, 0x23, 0xff, 0x86, 0x48, 0x24, 0xff, 0x89, 0x49, 0x24, 0xff, 0x8b, 0x4c, 0x26, 0xff, 0x8a, 0x4b, 0x24, 0xff, 0x8a, 0x4b, 0x25, 0xff, 0x8c, 0x4c, 0x26, 0xff, 0x8f, 0x4f, 0x28, 0xff, 0x90, 0x52, 0x2c, 0xff, 0x8c, 0x4e, 0x28, 0xff, 0x92, 0x52, 0x2d, 0xff, 0x90, 0x52, 0x2b, 0xff, 0x8b, 0x4d, 0x26, 0xff, 0x8a, 0x4d, 0x24, 0xff, 0x8e, 0x4f, 0x28, 0xff, 0x93, 0x53, 0x2d, 0xff, 0x96, 0x57, 0x2f, 0xff, 0x9b, 0x5c, 0x30, 0xff, 0xa0, 0x61, 0x34, 0xff, 0xa4, 0x67, 0x38, 0xff, 0xa6, 0x6d, 0x3d, 0xff, 0xaa, 0x6e, 0x43, 0xff, 0xad, 0x71, 0x45, 0xff, 0xaf, 0x74, 0x45, 0xff, 0xb4, 0x79, 0x45, 0xff, 0xb9, 0x7c, 0x45, 0xff, 0xbc, 0x7a, 0x43, 0xff, 0xc1, 0x80, 0x48, 0xff, 0xcc, 0x87, 0x4d, 0xff, 0xda, 0x8d, 0x52, 0xff, 0xe4, 0x95, 0x5a, 0xff, 0xe4, 0x9b, 0x5d, 0xff, 0xe5, 0xa9, 0x66, 0xff, 0xe5, 0xac, 0x6b, 0xff, 0xe5, 0xaf, 0x6e, 0xff, 0xe4, 0xb8, 0x71, 0xff, 0xe5, 0xbd, 0x72, 0xff, 0xe5, 0xbd, 0x73, 0xff, 0xe5, 0xb9, 0x71, 0xff, 0xe5, 0xb3, 0x6e, 0xff, 0xe3, 0xa8, 0x67, 0xff, 0xe4, 0xa8, 0x66, 0xff, 0xe3, 0xa2, 0x63, 0xff, 0xe5, 0x9d, 0x61, 0xff, 0xe4, 0x9b, 0x62, 0xff, 0xe4, 0x98, 0x60, 0xff, 0xe3, 0x97, 0x5d, 0xff, 0xe4, 0x98, 0x58, 0xff, 0xe5, 0x99, 0x59, 0xff, 0xe4, 0x97, 0x5a, 0xff, 0xe4, 0x96, 0x5a, 0xff, 0xe5, 0x96, 0x5b, 0xff, 0xe3, 0x97, 0x59, 0xff, 0xe3, 0xa3, 0x5b, 0xff, 0xe4, 0xa0, 0x5c, 0xff, 0xe3, 0xa1, 0x5d, 0xff, 0xe3, 0x9f, 0x5d, 0xff, 0xe3, 0xa2, 0x60, 0xff, 0xe1, 0xa2, 0x5f, 0xff, 0xe3, 0xa3, 0x5d, 0xff, 0xdf, 0x9f, 0x5b, 0xff, 0xdf, 0x97, 0x5b, 0xff, 0xe5, 0x9e, 0x60, 0xff, 0xe5, 0x9c, 0x5c, 0xff, 0xe2, 0x99, 0x59, 0xff, 0xdf, 0x95, 0x56, 0xff, 0xdd, 0x91, 0x53, 0xff, 0xdc, 0x93, 0x51, 0xff, 0xd4, 0x91, 0x4f, 0xff, 0xd0, 0x8f, 0x4c, 0xff, 0xd1, 0x8f, 0x4e, 0xff, 0xd2, 0x91, 0x4e, 0xff, 0xd0, 0x90, 0x4f, 0xff, 0xcf, 0x90, 0x4f, 0xff, 0xcf, 0x8f, 0x51, 0xff, 0xcd, 0x90, 0x51, 0xff, 0xcc, 0x8e, 0x51, 0xff, 0xc7, 0x88, 0x4e, 0xff, 0xc5, 0x88, 0x4e, 0xff, 0xc4, 0x87, 0x4f, 0xff, 0xc5, 0x86, 0x50, 0xff, 0xc3, 0x85, 0x4f, 0xff, 0xbe, 0x83, 0x4b, 0xff, 0xbc, 0x81, 0x4b, 0xff, 0xba, 0x80, 0x4b, 0xff, 0xb7, 0x7e, 0x49, 0xff, 0xb6, 0x7d, 0x49, 0xff, 0xb4, 0x7a, 0x47, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb0, 0x75, 0x43, 0xff, 0xaf, 0x75, 0x43, 0xff, 0xad, 0x73, 0x42, 0xff, 0xaa, 0x71, 0x41, 0xff, 0xa8, 0x70, 0x40, 0xff, 0xa7, 0x6d, 0x3e, 0xff, 0xa5, 0x6c, 0x3e, 0xff, 0xa3, 0x6a, 0x3c, 0xff, 0xa2, 0x68, 0x3a, 0xff, 0xa1, 0x67, 0x3a, 0xff, 0x9f, 0x65, 0x38, 0xff, 0x99, 0x5f, 0x34, 0xff, 0x96, 0x5a, 0x31, 0xff, 0x95, 0x59, 0x31, 0xff, 0x92, 0x56, 0x31, 0xff, 0x8f, 0x53, 0x30, 0xff, 0x8d, 0x52, 0x2e, 0xff, 0x8c, 0x50, 0x2d, 0xff, 0x8b, 0x50, 0x2d, 0xff, 0x85, 0x4b, 0x28, 0xff, 0x91, 0x57, 0x33, 0xff, 0x9d, 0x61, 0x39, 0xff, 0x99, 0x5c, 0x33, 0xff, 0x96, 0x59, 0x33, 0xff, 0x94, 0x57, 0x32, 0xff, 0x91, 0x54, 0x31, 0xff, 0x8e, 0x52, 0x30, 0xff, 0x8e, 0x52, 0x2f, 0xff, 0x8b, 0x4f, 0x2d, 0xff, 0x88, 0x4d, 0x2a, 0xff, 0x87, 0x4c, 0x28, 0xff, 0x86, 0x4a, 0x27, 0xff, 0x83, 0x48, 0x25, 0xff, 0x81, 0x46, 0x24, 0xff, 0x82, 0x47, 0x24, 0xff, 0x81, 0x47, 0x24, 0xff, 0x82, 0x47, 0x24, 0xff, 0x83, 0x47, 0x24, 0xff, 0x84, 0x48, 0x25, 0xff, 0x85, 0x49, 0x26, 0xff, 0x85, 0x4a, 0x26, 0xff, 0x86, 0x49, 0x25, 0xff, 0x87, 0x4a, 0x26, 0xff, 0x88, 0x4c, 0x26, 0xff, 0x8a, 0x4c, 0x26, 0xff, 0x8b, 0x4d, 0x27, 0xff, 0x8c, 0x4d, 0x27, 0xff, 0x8c, 0x4e, 0x27, 0xff, 0x8d, 0x4f, 0x27, 0xff, 0x90, 0x51, 0x28, 0xff, 0x93, 0x53, 0x29, 0xff, 0x95, 0x55, 0x2b, 0xff, 0x99, 0x59, 0x2c, 0xff, 0x9b, 0x5d, 0x30, 0xff, 0x9f, 0x61, 0x32, 0xff, 0xa4, 0x67, 0x35, 0xff, 0xaa, 0x6c, 0x39, 0xff, 0xb1, 0x73, 0x40, 0xff, 0xb8, 0x7d, 0x48, 0xff, 0xc3, 0x86, 0x4f, 0xff, 0xd5, 0x91, 0x59, 0xff, 0xe1, 0xa2, 0x64, 0xff, 0xe4, 0xbf, 0x7a, 0xff, 0xe2, 0xc9, 0x84, 0xff, 0xe1, 0xcf, 0x88, 0xff, 0xe1, 0xd1, 0x8d, 0xff, 0xdf, 0xd1, 0x8e, 0xff, 0xdf, 0xd3, 0x8e, 0xff, 0xe3, 0xbf, 0x81, 0xff, 0xe5, 0xb0, 0x78, 0xff, 0xe5, 0xa7, 0x6e, 0xff, 0xe5, 0x9c, 0x65, 0xff, 0xd7, 0x91, 0x5b, 0xff, 0xc7, 0x88, 0x53, 0xff, 0xbe, 0x80, 0x4c, 0xff, 0xb9, 0x7a, 0x48, 0xff, 0xb7, 0x76, 0x45, 0xff, 0xb6, 0x76, 0x43, 0xff, 0xb4, 0x74, 0x41, 0xff, 0xb4, 0x73, 0x41, 0xff, 0xb8, 0x76, 0x44, 0xff, 0xbb, 0x79, 0x47, 0xff, 0xbc, 0x7b, 0x49, 0xff, 0xbd, 0x7d, 0x49, 0xff, 0xbe, 0x7d, 0x4a, 0xff, 0xcc, 0x87, 0x53, 0xff, 0xbb, 0x7a, 0x45, 0xff, 0xa6, 0x66, 0x37, 0xff, 0x98, 0x5b, 0x33, 0xff, 0x94, 0x58, 0x32, 0xff, 0x95, 0x58, 0x33, 0xff, 0x94, 0x57, 0x31, 0xff, 0x94, 0x57, 0x31, 0xff, 0x93, 0x57, 0x31, 0xff, 0x93, 0x56, 0x30, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x92, 0x55, 0x2f, 0xff, 0x90, 0x52, 0x2d, 0xff, 0x8f, 0x50, 0x2c, 0xff, 0x8e, 0x50, 0x2c, 0xff, 0x8d, 0x4f, 0x2a, 0xff, 0x8d, 0x4f, 0x2a, 0xff, 0x8c, 0x4d, 0x2a, 0xff, 0x8c, 0x4e, 0x28, 0xff, 0x8c, 0x4f, 0x2a, 0xff, 0x8c, 0x4f, 0x2a, 0xff, 0x8a, 0x4c, 0x28, 0xff, 0x8a, 0x4d, 0x2a, 0xff, 0x8b, 0x4e, 0x2b, 0xff, 0x8c, 0x4f, 0x2b, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x8b, 0x4e, 0x2c, 0xff, 0x89, 0x4e, 0x2a, 0xff, 0x89, 0x4d, 0x29, 0xff, 0x8b, 0x4c, 0x29, 0xff, 0x89, 0x4c, 0x27, 0xff, 0x8d, 0x4e, 0x2a, 0xff, 0x94, 0x56, 0x31, 0xff, 0x91, 0x56, 0x31, 0xff, 0x91, 0x54, 0x32, 0xff, 0x92, 0x56, 0x31, 0xff, 0x91, 0x57, 0x33, 0xff, 0x91, 0x56, 0x34, 0xff, 0x8e, 0x55, 0x32, 0xff, 0x8c, 0x52, 0x2f, 0xff, 0x8a, 0x4e, 0x2c, 0xff, 0x87, 0x4b, 0x27, 0xff, 0x85, 0x49, 0x26, 0xff, + 0x80, 0x46, 0x22, 0xff, 0x80, 0x46, 0x21, 0xff, 0x7e, 0x44, 0x21, 0xff, 0x7c, 0x43, 0x1f, 0xff, 0x7a, 0x41, 0x1e, 0xff, 0x7b, 0x42, 0x1e, 0xff, 0x7d, 0x43, 0x1e, 0xff, 0x7b, 0x42, 0x1e, 0xff, 0x7b, 0x41, 0x1e, 0xff, 0x7c, 0x42, 0x1e, 0xff, 0x7d, 0x42, 0x1e, 0xff, 0x7e, 0x43, 0x1e, 0xff, 0x7e, 0x43, 0x1f, 0xff, 0x80, 0x43, 0x20, 0xff, 0x81, 0x45, 0x21, 0xff, 0x83, 0x47, 0x21, 0xff, 0x85, 0x47, 0x23, 0xff, 0x87, 0x49, 0x24, 0xff, 0x8a, 0x49, 0x24, 0xff, 0x8b, 0x4c, 0x26, 0xff, 0x8c, 0x4d, 0x27, 0xff, 0x8b, 0x4d, 0x24, 0xff, 0x8c, 0x4d, 0x25, 0xff, 0x8c, 0x4c, 0x26, 0xff, 0x8f, 0x51, 0x29, 0xff, 0x90, 0x52, 0x2c, 0xff, 0x8e, 0x50, 0x2a, 0xff, 0x8d, 0x4e, 0x29, 0xff, 0x8c, 0x4f, 0x28, 0xff, 0x8c, 0x4e, 0x26, 0xff, 0x8d, 0x4d, 0x26, 0xff, 0x8f, 0x4f, 0x27, 0xff, 0x92, 0x52, 0x2b, 0xff, 0x96, 0x57, 0x2f, 0xff, 0x9d, 0x5d, 0x31, 0xff, 0xa3, 0x62, 0x35, 0xff, 0xa5, 0x69, 0x39, 0xff, 0xa7, 0x6c, 0x3e, 0xff, 0xaa, 0x6e, 0x41, 0xff, 0xad, 0x71, 0x43, 0xff, 0xb0, 0x75, 0x43, 0xff, 0xb5, 0x78, 0x43, 0xff, 0xb9, 0x78, 0x42, 0xff, 0xbd, 0x7a, 0x44, 0xff, 0xc3, 0x81, 0x48, 0xff, 0xcc, 0x86, 0x4d, 0xff, 0xd9, 0x8b, 0x52, 0xff, 0xe4, 0x94, 0x57, 0xff, 0xe5, 0x9d, 0x5d, 0xff, 0xe5, 0x9f, 0x61, 0xff, 0xe3, 0xa3, 0x66, 0xff, 0xe5, 0xa8, 0x67, 0xff, 0xe5, 0xab, 0x68, 0xff, 0xe5, 0xad, 0x69, 0xff, 0xe5, 0xab, 0x69, 0xff, 0xe5, 0xab, 0x6b, 0xff, 0xe4, 0xac, 0x6a, 0xff, 0xe2, 0xad, 0x6b, 0xff, 0xe3, 0xa8, 0x68, 0xff, 0xe1, 0x9e, 0x62, 0xff, 0xe4, 0x98, 0x5d, 0xff, 0xe5, 0x98, 0x5e, 0xff, 0xe4, 0x96, 0x5a, 0xff, 0xe3, 0x95, 0x57, 0xff, 0xe4, 0x95, 0x57, 0xff, 0xe3, 0x95, 0x59, 0xff, 0xe4, 0x94, 0x59, 0xff, 0xe3, 0x94, 0x58, 0xff, 0xe2, 0x9a, 0x57, 0xff, 0xe3, 0xa0, 0x59, 0xff, 0xe2, 0x9e, 0x59, 0xff, 0xe1, 0x9e, 0x5b, 0xff, 0xe3, 0x9e, 0x5d, 0xff, 0xe4, 0xa0, 0x5f, 0xff, 0xe3, 0x9e, 0x5f, 0xff, 0xdf, 0x9f, 0x59, 0xff, 0xdf, 0x9c, 0x59, 0xff, 0xe1, 0x96, 0x5a, 0xff, 0xe4, 0x9b, 0x5f, 0xff, 0xe3, 0x9c, 0x5d, 0xff, 0xe2, 0x9b, 0x59, 0xff, 0xe1, 0x96, 0x56, 0xff, 0xe2, 0x93, 0x53, 0xff, 0xe0, 0x93, 0x52, 0xff, 0xd8, 0x91, 0x50, 0xff, 0xd3, 0x91, 0x4e, 0xff, 0xd3, 0x92, 0x4e, 0xff, 0xd1, 0x91, 0x4d, 0xff, 0xd2, 0x91, 0x4e, 0xff, 0xd1, 0x90, 0x4f, 0xff, 0xd2, 0x91, 0x50, 0xff, 0xd1, 0x93, 0x52, 0xff, 0xd0, 0x90, 0x53, 0xff, 0xcc, 0x8a, 0x50, 0xff, 0xca, 0x8a, 0x50, 0xff, 0xca, 0x8a, 0x50, 0xff, 0xc9, 0x88, 0x50, 0xff, 0xc5, 0x86, 0x4f, 0xff, 0xc2, 0x86, 0x4d, 0xff, 0xbf, 0x83, 0x4b, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb6, 0x7d, 0x49, 0xff, 0xb4, 0x7a, 0x47, 0xff, 0xb1, 0x77, 0x44, 0xff, 0xb0, 0x76, 0x43, 0xff, 0xae, 0x74, 0x43, 0xff, 0xab, 0x73, 0x42, 0xff, 0xab, 0x71, 0x40, 0xff, 0xa9, 0x6e, 0x40, 0xff, 0xa7, 0x6d, 0x3e, 0xff, 0xa6, 0x6c, 0x3d, 0xff, 0xa2, 0x69, 0x3b, 0xff, 0xa2, 0x68, 0x3a, 0xff, 0x9e, 0x63, 0x37, 0xff, 0x99, 0x5c, 0x33, 0xff, 0x98, 0x5c, 0x32, 0xff, 0x96, 0x59, 0x31, 0xff, 0x93, 0x57, 0x30, 0xff, 0x91, 0x56, 0x2f, 0xff, 0x8f, 0x53, 0x2f, 0xff, 0x8d, 0x51, 0x2e, 0xff, 0x8a, 0x4e, 0x2b, 0xff, 0x92, 0x56, 0x31, 0xff, 0x9d, 0x61, 0x38, 0xff, 0x9d, 0x60, 0x37, 0xff, 0x99, 0x5b, 0x34, 0xff, 0x95, 0x58, 0x32, 0xff, 0x91, 0x55, 0x31, 0xff, 0x8f, 0x53, 0x30, 0xff, 0x8e, 0x51, 0x30, 0xff, 0x8b, 0x50, 0x2e, 0xff, 0x89, 0x4d, 0x2b, 0xff, 0x88, 0x4b, 0x2a, 0xff, 0x86, 0x4b, 0x28, 0xff, 0x84, 0x49, 0x26, 0xff, 0x82, 0x47, 0x25, 0xff, 0x81, 0x46, 0x24, 0xff, 0x80, 0x47, 0x23, 0xff, 0x80, 0x46, 0x22, 0xff, 0x80, 0x45, 0x22, 0xff, 0x81, 0x47, 0x22, 0xff, 0x81, 0x48, 0x22, 0xff, 0x82, 0x47, 0x23, 0xff, 0x83, 0x48, 0x24, 0xff, 0x83, 0x48, 0x24, 0xff, 0x84, 0x48, 0x24, 0xff, 0x85, 0x49, 0x23, 0xff, 0x86, 0x49, 0x24, 0xff, 0x87, 0x4a, 0x25, 0xff, 0x88, 0x4b, 0x24, 0xff, 0x89, 0x4c, 0x25, 0xff, 0x8b, 0x4d, 0x26, 0xff, 0x8d, 0x4e, 0x26, 0xff, 0x8f, 0x50, 0x27, 0xff, 0x91, 0x52, 0x29, 0xff, 0x94, 0x54, 0x29, 0xff, 0x97, 0x57, 0x2d, 0xff, 0x9b, 0x5a, 0x2f, 0xff, 0x9e, 0x5f, 0x31, 0xff, 0xa2, 0x64, 0x35, 0xff, 0xa9, 0x6b, 0x38, 0xff, 0xae, 0x71, 0x3d, 0xff, 0xb5, 0x79, 0x45, 0xff, 0xbe, 0x82, 0x4c, 0xff, 0xcf, 0x93, 0x5a, 0xff, 0xe1, 0xa5, 0x6c, 0xff, 0xe6, 0xae, 0x72, 0xff, 0xe4, 0xb5, 0x76, 0xff, 0xe4, 0xbb, 0x7b, 0xff, 0xe4, 0xc1, 0x7e, 0xff, 0xe5, 0xc2, 0x7f, 0xff, 0xe3, 0xad, 0x74, 0xff, 0xe5, 0xa5, 0x6f, 0xff, 0xe6, 0xa0, 0x69, 0xff, 0xe0, 0x98, 0x62, 0xff, 0xd3, 0x8e, 0x5a, 0xff, 0xc3, 0x84, 0x52, 0xff, 0xba, 0x7d, 0x4b, 0xff, 0xb8, 0x78, 0x47, 0xff, 0xb7, 0x76, 0x44, 0xff, 0xb4, 0x73, 0x41, 0xff, 0xb0, 0x71, 0x3e, 0xff, 0xb2, 0x73, 0x40, 0xff, 0xb6, 0x75, 0x43, 0xff, 0xb7, 0x76, 0x44, 0xff, 0xb8, 0x78, 0x44, 0xff, 0xb9, 0x77, 0x45, 0xff, 0xb9, 0x79, 0x47, 0xff, 0xbe, 0x7e, 0x4b, 0xff, 0xc3, 0x81, 0x4e, 0xff, 0xa7, 0x68, 0x3d, 0xff, 0x98, 0x5a, 0x34, 0xff, 0x94, 0x56, 0x32, 0xff, 0x95, 0x58, 0x31, 0xff, 0x93, 0x56, 0x31, 0xff, 0x93, 0x56, 0x30, 0xff, 0x94, 0x55, 0x31, 0xff, 0x93, 0x54, 0x30, 0xff, 0x94, 0x55, 0x2f, 0xff, 0x92, 0x54, 0x2f, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x8f, 0x50, 0x2c, 0xff, 0x8d, 0x4e, 0x2b, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x8b, 0x4e, 0x27, 0xff, 0x8a, 0x4d, 0x26, 0xff, 0x8a, 0x4c, 0x28, 0xff, 0x8b, 0x4d, 0x28, 0xff, 0x8a, 0x4d, 0x27, 0xff, 0x89, 0x4c, 0x26, 0xff, 0x89, 0x4c, 0x28, 0xff, 0x89, 0x4c, 0x29, 0xff, 0x89, 0x4b, 0x28, 0xff, 0x89, 0x4d, 0x26, 0xff, 0x88, 0x4c, 0x29, 0xff, 0x89, 0x4d, 0x28, 0xff, 0x8a, 0x4d, 0x29, 0xff, 0x8a, 0x4c, 0x28, 0xff, 0x89, 0x4b, 0x28, 0xff, 0x8a, 0x4d, 0x2a, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x92, 0x56, 0x32, 0xff, 0x92, 0x56, 0x32, 0xff, 0x92, 0x55, 0x31, 0xff, 0x92, 0x56, 0x31, 0xff, 0x91, 0x56, 0x33, 0xff, 0x8f, 0x55, 0x33, 0xff, 0x8d, 0x53, 0x31, 0xff, 0x8b, 0x50, 0x2e, 0xff, 0x87, 0x4b, 0x28, 0xff, 0x85, 0x49, 0x26, 0xff, 0x82, 0x46, 0x24, 0xff, + 0x80, 0x46, 0x20, 0xff, 0x7e, 0x45, 0x22, 0xff, 0x7d, 0x44, 0x20, 0xff, 0x7a, 0x41, 0x1e, 0xff, 0x79, 0x41, 0x1e, 0xff, 0x7d, 0x43, 0x1d, 0xff, 0x7c, 0x42, 0x1d, 0xff, 0x7d, 0x44, 0x20, 0xff, 0x7e, 0x44, 0x1e, 0xff, 0x7d, 0x42, 0x1e, 0xff, 0x7d, 0x42, 0x1e, 0xff, 0x7b, 0x42, 0x1e, 0xff, 0x7d, 0x43, 0x1e, 0xff, 0x7e, 0x44, 0x1e, 0xff, 0x7f, 0x45, 0x1e, 0xff, 0x80, 0x45, 0x1e, 0xff, 0x82, 0x47, 0x22, 0xff, 0x85, 0x48, 0x22, 0xff, 0x89, 0x49, 0x24, 0xff, 0x8b, 0x4d, 0x27, 0xff, 0x8e, 0x4f, 0x28, 0xff, 0x90, 0x51, 0x2c, 0xff, 0x8f, 0x4f, 0x29, 0xff, 0x8d, 0x4e, 0x25, 0xff, 0x8d, 0x4e, 0x26, 0xff, 0x8b, 0x4d, 0x27, 0xff, 0x84, 0x47, 0x20, 0xff, 0x88, 0x4a, 0x24, 0xff, 0x89, 0x4c, 0x26, 0xff, 0x8d, 0x4d, 0x26, 0xff, 0x8f, 0x50, 0x28, 0xff, 0x8e, 0x4e, 0x27, 0xff, 0x90, 0x50, 0x26, 0xff, 0x95, 0x54, 0x2c, 0xff, 0x98, 0x58, 0x2e, 0xff, 0x9d, 0x5f, 0x32, 0xff, 0xa3, 0x64, 0x36, 0xff, 0xa5, 0x69, 0x39, 0xff, 0xa6, 0x6d, 0x3c, 0xff, 0xab, 0x6f, 0x3e, 0xff, 0xad, 0x72, 0x3f, 0xff, 0xb1, 0x76, 0x40, 0xff, 0xb5, 0x77, 0x3f, 0xff, 0xb8, 0x76, 0x3f, 0xff, 0xbe, 0x7c, 0x44, 0xff, 0xc4, 0x81, 0x48, 0xff, 0xcc, 0x85, 0x4b, 0xff, 0xd9, 0x8c, 0x51, 0xff, 0xe3, 0x94, 0x55, 0xff, 0xe5, 0x9a, 0x5a, 0xff, 0xe5, 0x9c, 0x5f, 0xff, 0xe5, 0x9e, 0x60, 0xff, 0xe5, 0xa1, 0x60, 0xff, 0xe3, 0xa2, 0x61, 0xff, 0xe3, 0xa5, 0x63, 0xff, 0xe4, 0xa4, 0x63, 0xff, 0xe4, 0xa5, 0x65, 0xff, 0xe5, 0xa5, 0x64, 0xff, 0xe5, 0xa5, 0x66, 0xff, 0xe5, 0xa5, 0x65, 0xff, 0xe4, 0xa1, 0x64, 0xff, 0xe2, 0x93, 0x5b, 0xff, 0xe5, 0x93, 0x59, 0xff, 0xe2, 0x93, 0x55, 0xff, 0xdf, 0x95, 0x55, 0xff, 0xe0, 0x94, 0x57, 0xff, 0xde, 0x93, 0x56, 0xff, 0xe0, 0x96, 0x56, 0xff, 0xe4, 0xa0, 0x59, 0xff, 0xe0, 0x9e, 0x59, 0xff, 0xe3, 0x9d, 0x58, 0xff, 0xe4, 0x9c, 0x5a, 0xff, 0xe5, 0xa0, 0x5c, 0xff, 0xe4, 0x9e, 0x5e, 0xff, 0xe4, 0x9f, 0x5f, 0xff, 0xe3, 0xa0, 0x5e, 0xff, 0xe2, 0xa0, 0x5a, 0xff, 0xdf, 0x97, 0x59, 0xff, 0xe3, 0x9b, 0x5a, 0xff, 0xe2, 0x9c, 0x5b, 0xff, 0xe3, 0x9a, 0x59, 0xff, 0xe2, 0x95, 0x57, 0xff, 0xe3, 0x92, 0x51, 0xff, 0xe2, 0x92, 0x52, 0xff, 0xdc, 0x93, 0x51, 0xff, 0xd3, 0x92, 0x4e, 0xff, 0xd3, 0x91, 0x4d, 0xff, 0xdb, 0x95, 0x50, 0xff, 0xd6, 0x97, 0x51, 0xff, 0xd4, 0x94, 0x51, 0xff, 0xd4, 0x93, 0x4e, 0xff, 0xd6, 0x96, 0x55, 0xff, 0xd4, 0x92, 0x57, 0xff, 0xd3, 0x8e, 0x53, 0xff, 0xd2, 0x8f, 0x53, 0xff, 0xd0, 0x8d, 0x52, 0xff, 0xce, 0x8b, 0x52, 0xff, 0xcd, 0x8b, 0x51, 0xff, 0xc7, 0x89, 0x51, 0xff, 0xc2, 0x87, 0x4f, 0xff, 0xbf, 0x85, 0x4d, 0xff, 0xbc, 0x82, 0x4a, 0xff, 0xb9, 0x81, 0x4b, 0xff, 0xb9, 0x7f, 0x4b, 0xff, 0xb6, 0x7a, 0x48, 0xff, 0xb3, 0x78, 0x46, 0xff, 0xb2, 0x77, 0x44, 0xff, 0xb0, 0x75, 0x43, 0xff, 0xad, 0x73, 0x43, 0xff, 0xac, 0x74, 0x43, 0xff, 0xaa, 0x72, 0x41, 0xff, 0xa8, 0x6f, 0x40, 0xff, 0xa8, 0x6d, 0x3e, 0xff, 0xa6, 0x6b, 0x3b, 0xff, 0xa4, 0x68, 0x3a, 0xff, 0x9f, 0x64, 0x38, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0x9a, 0x5e, 0x34, 0xff, 0x97, 0x5c, 0x32, 0xff, 0x94, 0x58, 0x31, 0xff, 0x93, 0x57, 0x30, 0xff, 0x91, 0x55, 0x2f, 0xff, 0x8f, 0x53, 0x2e, 0xff, 0x8f, 0x52, 0x2e, 0xff, 0x99, 0x5c, 0x35, 0xff, 0x9f, 0x63, 0x38, 0xff, 0x9c, 0x5e, 0x35, 0xff, 0x98, 0x5a, 0x34, 0xff, 0x92, 0x56, 0x32, 0xff, 0x90, 0x54, 0x30, 0xff, 0x90, 0x53, 0x30, 0xff, 0x8e, 0x50, 0x2f, 0xff, 0x8b, 0x4e, 0x2d, 0xff, 0x89, 0x4d, 0x2a, 0xff, 0x87, 0x4b, 0x28, 0xff, 0x85, 0x4a, 0x28, 0xff, 0x83, 0x48, 0x25, 0xff, 0x81, 0x48, 0x24, 0xff, 0x80, 0x45, 0x24, 0xff, 0x7f, 0x44, 0x21, 0xff, 0x7e, 0x45, 0x22, 0xff, 0x7e, 0x44, 0x21, 0xff, 0x7f, 0x44, 0x20, 0xff, 0x7f, 0x44, 0x20, 0xff, 0x80, 0x46, 0x21, 0xff, 0x80, 0x47, 0x23, 0xff, 0x81, 0x46, 0x23, 0xff, 0x80, 0x47, 0x23, 0xff, 0x81, 0x46, 0x23, 0xff, 0x82, 0x47, 0x22, 0xff, 0x83, 0x48, 0x22, 0xff, 0x85, 0x48, 0x23, 0xff, 0x86, 0x4a, 0x24, 0xff, 0x88, 0x4b, 0x24, 0xff, 0x8a, 0x4c, 0x24, 0xff, 0x8c, 0x4e, 0x24, 0xff, 0x8c, 0x4e, 0x25, 0xff, 0x90, 0x51, 0x27, 0xff, 0x93, 0x53, 0x2a, 0xff, 0x96, 0x57, 0x2c, 0xff, 0x9a, 0x5a, 0x2f, 0xff, 0x9d, 0x5e, 0x31, 0xff, 0xa1, 0x62, 0x34, 0xff, 0xa5, 0x68, 0x37, 0xff, 0xac, 0x6d, 0x3b, 0xff, 0xb0, 0x74, 0x40, 0xff, 0xce, 0x89, 0x55, 0xff, 0xe2, 0x95, 0x5f, 0xff, 0xe3, 0x9b, 0x63, 0xff, 0xe4, 0xa1, 0x68, 0xff, 0xe4, 0xa4, 0x6c, 0xff, 0xe5, 0xa5, 0x6d, 0xff, 0xe5, 0xa5, 0x6e, 0xff, 0xe3, 0xa1, 0x6c, 0xff, 0xe5, 0x9f, 0x67, 0xff, 0xe2, 0x9a, 0x65, 0xff, 0xda, 0x93, 0x5f, 0xff, 0xd0, 0x8d, 0x58, 0xff, 0xc9, 0x88, 0x54, 0xff, 0xc1, 0x83, 0x4d, 0xff, 0xb7, 0x78, 0x46, 0xff, 0xb3, 0x73, 0x42, 0xff, 0xaf, 0x6f, 0x3f, 0xff, 0xae, 0x6f, 0x3c, 0xff, 0xb1, 0x72, 0x40, 0xff, 0xb2, 0x73, 0x41, 0xff, 0xb3, 0x73, 0x42, 0xff, 0xb3, 0x73, 0x42, 0xff, 0xb4, 0x74, 0x43, 0xff, 0xb6, 0x76, 0x44, 0xff, 0xb8, 0x7a, 0x46, 0xff, 0xbc, 0x7c, 0x4b, 0xff, 0xa4, 0x68, 0x3d, 0xff, 0x96, 0x59, 0x33, 0xff, 0x94, 0x57, 0x31, 0xff, 0x94, 0x57, 0x31, 0xff, 0x93, 0x55, 0x31, 0xff, 0x93, 0x56, 0x31, 0xff, 0x92, 0x56, 0x30, 0xff, 0x92, 0x54, 0x2f, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x90, 0x52, 0x2d, 0xff, 0x8f, 0x51, 0x2c, 0xff, 0x8c, 0x4f, 0x2b, 0xff, 0x8a, 0x4d, 0x2a, 0xff, 0x8b, 0x4e, 0x28, 0xff, 0x8a, 0x4c, 0x2a, 0xff, 0x89, 0x4b, 0x28, 0xff, 0x8b, 0x4d, 0x28, 0xff, 0x89, 0x4b, 0x28, 0xff, 0x88, 0x4b, 0x26, 0xff, 0x87, 0x4b, 0x26, 0xff, 0x87, 0x4a, 0x26, 0xff, 0x88, 0x4b, 0x26, 0xff, 0x88, 0x4b, 0x26, 0xff, 0x87, 0x4b, 0x28, 0xff, 0x87, 0x4b, 0x28, 0xff, 0x87, 0x4b, 0x28, 0xff, 0x88, 0x4a, 0x26, 0xff, 0x88, 0x4a, 0x26, 0xff, 0x89, 0x4b, 0x26, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x93, 0x56, 0x32, 0xff, 0x91, 0x55, 0x31, 0xff, 0x90, 0x53, 0x31, 0xff, 0x90, 0x55, 0x32, 0xff, 0x90, 0x56, 0x33, 0xff, 0x8f, 0x55, 0x33, 0xff, 0x8c, 0x51, 0x2f, 0xff, 0x89, 0x4d, 0x2a, 0xff, 0x85, 0x49, 0x26, 0xff, 0x82, 0x47, 0x23, 0xff, 0x80, 0x47, 0x23, 0xff, + 0x7e, 0x44, 0x22, 0xff, 0x7c, 0x44, 0x21, 0xff, 0x7b, 0x42, 0x1e, 0xff, 0x7a, 0x41, 0x1d, 0xff, 0x7e, 0x43, 0x20, 0xff, 0x7d, 0x43, 0x1f, 0xff, 0x7d, 0x42, 0x1d, 0xff, 0x7c, 0x43, 0x1e, 0xff, 0x7b, 0x41, 0x1d, 0xff, 0x7a, 0x41, 0x1d, 0xff, 0x79, 0x41, 0x1b, 0xff, 0x7a, 0x41, 0x1d, 0xff, 0x7b, 0x41, 0x1e, 0xff, 0x7c, 0x42, 0x1d, 0xff, 0x7e, 0x41, 0x1d, 0xff, 0x7f, 0x43, 0x1d, 0xff, 0x81, 0x44, 0x1e, 0xff, 0x83, 0x46, 0x22, 0xff, 0x85, 0x48, 0x22, 0xff, 0x88, 0x4a, 0x24, 0xff, 0x8b, 0x4d, 0x27, 0xff, 0x8f, 0x50, 0x28, 0xff, 0x91, 0x52, 0x2b, 0xff, 0x8f, 0x51, 0x2a, 0xff, 0x87, 0x49, 0x21, 0xff, 0x82, 0x46, 0x1e, 0xff, 0x85, 0x48, 0x22, 0xff, 0x85, 0x48, 0x23, 0xff, 0x88, 0x4a, 0x26, 0xff, 0x8a, 0x4e, 0x26, 0xff, 0x8f, 0x4f, 0x29, 0xff, 0x92, 0x53, 0x2b, 0xff, 0x93, 0x51, 0x29, 0xff, 0x93, 0x53, 0x2b, 0xff, 0x97, 0x58, 0x2f, 0xff, 0x9d, 0x5c, 0x31, 0xff, 0xa3, 0x60, 0x33, 0xff, 0xa5, 0x65, 0x36, 0xff, 0xaa, 0x6b, 0x3a, 0xff, 0xab, 0x6f, 0x3d, 0xff, 0xad, 0x72, 0x3e, 0xff, 0xb1, 0x74, 0x3f, 0xff, 0xb4, 0x74, 0x3f, 0xff, 0xb6, 0x74, 0x3e, 0xff, 0xba, 0x79, 0x40, 0xff, 0xbf, 0x7b, 0x43, 0xff, 0xc1, 0x7d, 0x46, 0xff, 0xcc, 0x86, 0x4b, 0xff, 0xd8, 0x8c, 0x50, 0xff, 0xe0, 0x92, 0x54, 0xff, 0xe5, 0x94, 0x58, 0xff, 0xe5, 0x99, 0x5c, 0xff, 0xe5, 0x9d, 0x5d, 0xff, 0xe4, 0x9e, 0x5e, 0xff, 0xe4, 0x9d, 0x5d, 0xff, 0xe4, 0xa0, 0x60, 0xff, 0xe4, 0xa2, 0x61, 0xff, 0xe5, 0xa2, 0x62, 0xff, 0xe5, 0xa1, 0x62, 0xff, 0xe4, 0x9e, 0x62, 0xff, 0xe4, 0x9d, 0x62, 0xff, 0xe5, 0x9e, 0x62, 0xff, 0xe3, 0x99, 0x5d, 0xff, 0xde, 0x92, 0x56, 0xff, 0xde, 0x92, 0x54, 0xff, 0xdc, 0x91, 0x56, 0xff, 0xdd, 0x92, 0x55, 0xff, 0xe2, 0x99, 0x55, 0xff, 0xe3, 0x9b, 0x55, 0xff, 0xe4, 0x9b, 0x57, 0xff, 0xe4, 0x9c, 0x58, 0xff, 0xe3, 0x9d, 0x59, 0xff, 0xe3, 0x9d, 0x5a, 0xff, 0xe4, 0x9d, 0x5e, 0xff, 0xe4, 0x9c, 0x5e, 0xff, 0xe1, 0x9e, 0x5d, 0xff, 0xde, 0x9e, 0x59, 0xff, 0xe1, 0x98, 0x59, 0xff, 0xe3, 0x96, 0x5a, 0xff, 0xe4, 0x9b, 0x5c, 0xff, 0xe4, 0x9b, 0x59, 0xff, 0xe3, 0x98, 0x57, 0xff, 0xe2, 0x91, 0x53, 0xff, 0xe2, 0x92, 0x53, 0xff, 0xde, 0x92, 0x51, 0xff, 0xd9, 0x93, 0x50, 0xff, 0xd8, 0x96, 0x50, 0xff, 0xd6, 0x92, 0x4d, 0xff, 0xd7, 0x91, 0x4f, 0xff, 0xd9, 0x95, 0x51, 0xff, 0xd8, 0x96, 0x52, 0xff, 0xd7, 0x95, 0x54, 0xff, 0xd8, 0x96, 0x58, 0xff, 0xd9, 0x91, 0x55, 0xff, 0xd8, 0x91, 0x55, 0xff, 0xd7, 0x91, 0x55, 0xff, 0xd5, 0x91, 0x55, 0xff, 0xd1, 0x8d, 0x54, 0xff, 0xcd, 0x8c, 0x53, 0xff, 0xc7, 0x8a, 0x51, 0xff, 0xc4, 0x88, 0x4f, 0xff, 0xc1, 0x85, 0x4d, 0xff, 0xbe, 0x84, 0x4e, 0xff, 0xbb, 0x82, 0x4d, 0xff, 0xb9, 0x7f, 0x4a, 0xff, 0xb7, 0x7d, 0x48, 0xff, 0xb4, 0x7a, 0x46, 0xff, 0xb1, 0x78, 0x46, 0xff, 0xb0, 0x76, 0x44, 0xff, 0xae, 0x74, 0x44, 0xff, 0xab, 0x72, 0x43, 0xff, 0xaa, 0x71, 0x41, 0xff, 0xa9, 0x6f, 0x40, 0xff, 0xa8, 0x6d, 0x3e, 0xff, 0xa3, 0x68, 0x3a, 0xff, 0x9d, 0x62, 0x36, 0xff, 0x9e, 0x62, 0x36, 0xff, 0x9c, 0x61, 0x35, 0xff, 0x9a, 0x5e, 0x33, 0xff, 0x96, 0x5a, 0x31, 0xff, 0x94, 0x58, 0x31, 0xff, 0x93, 0x56, 0x30, 0xff, 0x91, 0x54, 0x2e, 0xff, 0x96, 0x5a, 0x33, 0xff, 0xa1, 0x64, 0x39, 0xff, 0xa2, 0x64, 0x38, 0xff, 0x9b, 0x5d, 0x34, 0xff, 0x96, 0x59, 0x33, 0xff, 0x94, 0x57, 0x32, 0xff, 0x91, 0x55, 0x30, 0xff, 0x90, 0x53, 0x30, 0xff, 0x8d, 0x50, 0x2e, 0xff, 0x8a, 0x4e, 0x2b, 0xff, 0x8a, 0x4c, 0x2a, 0xff, 0x86, 0x4a, 0x28, 0xff, 0x83, 0x48, 0x25, 0xff, 0x81, 0x46, 0x24, 0xff, 0x80, 0x46, 0x23, 0xff, 0x7f, 0x45, 0x22, 0xff, 0x7e, 0x45, 0x22, 0xff, 0x7e, 0x44, 0x21, 0xff, 0x7d, 0x43, 0x1f, 0xff, 0x7d, 0x44, 0x1f, 0xff, 0x7d, 0x44, 0x1e, 0xff, 0x7c, 0x43, 0x1d, 0xff, 0x7d, 0x43, 0x1e, 0xff, 0x7d, 0x43, 0x1e, 0xff, 0x7e, 0x44, 0x1e, 0xff, 0x7f, 0x44, 0x1e, 0xff, 0x80, 0x44, 0x1f, 0xff, 0x81, 0x45, 0x1f, 0xff, 0x82, 0x47, 0x20, 0xff, 0x84, 0x48, 0x21, 0xff, 0x85, 0x48, 0x22, 0xff, 0x87, 0x48, 0x22, 0xff, 0x88, 0x4a, 0x23, 0xff, 0x8a, 0x4c, 0x24, 0xff, 0x8c, 0x4e, 0x25, 0xff, 0x8f, 0x50, 0x26, 0xff, 0x91, 0x51, 0x27, 0xff, 0x94, 0x55, 0x2b, 0xff, 0x98, 0x59, 0x2e, 0xff, 0x9b, 0x5c, 0x30, 0xff, 0xa0, 0x60, 0x32, 0xff, 0xa4, 0x66, 0x35, 0xff, 0xa7, 0x69, 0x35, 0xff, 0xc9, 0x85, 0x50, 0xff, 0xce, 0x89, 0x55, 0xff, 0xd1, 0x8c, 0x56, 0xff, 0xd4, 0x8f, 0x58, 0xff, 0xda, 0x92, 0x5d, 0xff, 0xde, 0x94, 0x60, 0xff, 0xe2, 0x99, 0x62, 0xff, 0xdf, 0x96, 0x61, 0xff, 0xd4, 0x8f, 0x5d, 0xff, 0xce, 0x8c, 0x5a, 0xff, 0xc7, 0x88, 0x56, 0xff, 0xc1, 0x82, 0x51, 0xff, 0xbc, 0x7d, 0x4c, 0xff, 0xb9, 0x79, 0x49, 0xff, 0xb8, 0x79, 0x48, 0xff, 0xb7, 0x76, 0x45, 0xff, 0xaf, 0x6e, 0x3d, 0xff, 0xae, 0x6f, 0x3e, 0xff, 0xae, 0x6f, 0x3f, 0xff, 0xae, 0x6e, 0x3f, 0xff, 0xae, 0x6f, 0x3f, 0xff, 0xb0, 0x70, 0x40, 0xff, 0xb0, 0x70, 0x41, 0xff, 0xb1, 0x72, 0x42, 0xff, 0xb6, 0x75, 0x43, 0xff, 0xb6, 0x76, 0x46, 0xff, 0x9f, 0x61, 0x37, 0xff, 0x96, 0x59, 0x33, 0xff, 0x95, 0x57, 0x32, 0xff, 0x93, 0x56, 0x31, 0xff, 0x93, 0x55, 0x30, 0xff, 0x93, 0x55, 0x30, 0xff, 0x91, 0x54, 0x2f, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x91, 0x51, 0x2f, 0xff, 0x8f, 0x51, 0x2c, 0xff, 0x8d, 0x4f, 0x2b, 0xff, 0x8b, 0x4c, 0x29, 0xff, 0x8a, 0x4d, 0x26, 0xff, 0x8a, 0x4b, 0x28, 0xff, 0x8a, 0x4d, 0x27, 0xff, 0x8a, 0x4d, 0x29, 0xff, 0x8a, 0x4e, 0x2a, 0xff, 0x8a, 0x4d, 0x29, 0xff, 0x88, 0x4b, 0x28, 0xff, 0x88, 0x4a, 0x27, 0xff, 0x87, 0x4a, 0x26, 0xff, 0x86, 0x4b, 0x27, 0xff, 0x87, 0x4b, 0x29, 0xff, 0x88, 0x4c, 0x29, 0xff, 0x87, 0x4b, 0x28, 0xff, 0x87, 0x4a, 0x26, 0xff, 0x87, 0x4b, 0x26, 0xff, 0x8a, 0x4d, 0x2a, 0xff, 0x8f, 0x51, 0x2f, 0xff, 0x90, 0x52, 0x2f, 0xff, 0x90, 0x52, 0x2f, 0xff, 0x92, 0x55, 0x32, 0xff, 0x92, 0x54, 0x31, 0xff, 0x8f, 0x52, 0x30, 0xff, 0x90, 0x55, 0x32, 0xff, 0x8f, 0x55, 0x32, 0xff, 0x8f, 0x53, 0x31, 0xff, 0x8c, 0x4f, 0x2d, 0xff, 0x85, 0x4b, 0x28, 0xff, 0x83, 0x48, 0x24, 0xff, 0x80, 0x45, 0x22, 0xff, 0x7f, 0x45, 0x22, 0xff, + 0x7d, 0x43, 0x20, 0xff, 0x7b, 0x43, 0x1f, 0xff, 0x7c, 0x42, 0x1e, 0xff, 0x7f, 0x44, 0x23, 0xff, 0x7d, 0x42, 0x1e, 0xff, 0x7e, 0x43, 0x1e, 0xff, 0x7b, 0x41, 0x1d, 0xff, 0x79, 0x41, 0x1e, 0xff, 0x79, 0x3f, 0x1b, 0xff, 0x77, 0x3f, 0x1b, 0xff, 0x77, 0x3f, 0x1b, 0xff, 0x78, 0x40, 0x1b, 0xff, 0x79, 0x40, 0x1c, 0xff, 0x7a, 0x41, 0x1d, 0xff, 0x7c, 0x42, 0x1b, 0xff, 0x7d, 0x42, 0x1c, 0xff, 0x7f, 0x43, 0x1e, 0xff, 0x81, 0x46, 0x1f, 0xff, 0x83, 0x46, 0x21, 0xff, 0x87, 0x49, 0x23, 0xff, 0x8a, 0x4a, 0x24, 0xff, 0x8d, 0x4d, 0x27, 0xff, 0x89, 0x4b, 0x27, 0xff, 0x87, 0x49, 0x24, 0xff, 0x8a, 0x4c, 0x28, 0xff, 0x8a, 0x4b, 0x26, 0xff, 0x87, 0x49, 0x23, 0xff, 0x86, 0x48, 0x23, 0xff, 0x86, 0x49, 0x23, 0xff, 0x8a, 0x4b, 0x26, 0xff, 0x8d, 0x4e, 0x26, 0xff, 0x92, 0x52, 0x2b, 0xff, 0x96, 0x56, 0x2f, 0xff, 0x98, 0x57, 0x30, 0xff, 0x97, 0x56, 0x2e, 0xff, 0x9b, 0x5a, 0x30, 0xff, 0xa1, 0x5f, 0x32, 0xff, 0xa3, 0x63, 0x33, 0xff, 0xa6, 0x67, 0x37, 0xff, 0xa9, 0x6c, 0x39, 0xff, 0xab, 0x6d, 0x3a, 0xff, 0xae, 0x70, 0x3b, 0xff, 0xb2, 0x72, 0x3c, 0xff, 0xb8, 0x73, 0x3c, 0xff, 0xba, 0x76, 0x40, 0xff, 0xbe, 0x79, 0x43, 0xff, 0xbf, 0x7d, 0x45, 0xff, 0xc2, 0x82, 0x47, 0xff, 0xcb, 0x86, 0x4a, 0xff, 0xd3, 0x8a, 0x4d, 0xff, 0xdf, 0x8f, 0x52, 0xff, 0xe4, 0x91, 0x55, 0xff, 0xe5, 0x95, 0x58, 0xff, 0xe5, 0x99, 0x5c, 0xff, 0xe5, 0x9b, 0x5e, 0xff, 0xe5, 0x9b, 0x5d, 0xff, 0xe5, 0x9d, 0x5d, 0xff, 0xe5, 0x9d, 0x5d, 0xff, 0xe5, 0x9b, 0x5e, 0xff, 0xe5, 0x9d, 0x5f, 0xff, 0xe5, 0x9b, 0x5f, 0xff, 0xe4, 0x9a, 0x5e, 0xff, 0xe4, 0x98, 0x5d, 0xff, 0xe0, 0x9c, 0x5f, 0xff, 0xdb, 0x98, 0x59, 0xff, 0xd4, 0x8e, 0x51, 0xff, 0xdc, 0x95, 0x54, 0xff, 0xe3, 0x9b, 0x54, 0xff, 0xe3, 0x99, 0x54, 0xff, 0xe3, 0x99, 0x56, 0xff, 0xe3, 0x9c, 0x57, 0xff, 0xe4, 0x9c, 0x58, 0xff, 0xe4, 0x9a, 0x5b, 0xff, 0xe3, 0x9e, 0x5c, 0xff, 0xe4, 0x9c, 0x5e, 0xff, 0xe3, 0x9d, 0x5d, 0xff, 0xe2, 0x9d, 0x59, 0xff, 0xe1, 0x99, 0x5a, 0xff, 0xe2, 0x97, 0x5a, 0xff, 0xe3, 0x9b, 0x59, 0xff, 0xe4, 0x9b, 0x5a, 0xff, 0xe4, 0x98, 0x58, 0xff, 0xe1, 0x94, 0x53, 0xff, 0xe2, 0x94, 0x53, 0xff, 0xdf, 0x93, 0x52, 0xff, 0xd9, 0x92, 0x4d, 0xff, 0xda, 0x93, 0x4f, 0xff, 0xda, 0x95, 0x50, 0xff, 0xd9, 0x96, 0x50, 0xff, 0xda, 0x96, 0x51, 0xff, 0xdd, 0x96, 0x55, 0xff, 0xdc, 0x98, 0x56, 0xff, 0xdd, 0x99, 0x59, 0xff, 0xdf, 0x96, 0x59, 0xff, 0xe0, 0x96, 0x58, 0xff, 0xe0, 0x96, 0x59, 0xff, 0xde, 0x94, 0x58, 0xff, 0xdb, 0x92, 0x57, 0xff, 0xd4, 0x91, 0x57, 0xff, 0xcd, 0x8e, 0x53, 0xff, 0xc9, 0x8c, 0x52, 0xff, 0xc5, 0x8a, 0x52, 0xff, 0xc2, 0x88, 0x51, 0xff, 0xbf, 0x86, 0x50, 0xff, 0xbd, 0x81, 0x4e, 0xff, 0xba, 0x7f, 0x4a, 0xff, 0xb7, 0x7d, 0x49, 0xff, 0xb5, 0x7a, 0x48, 0xff, 0xb2, 0x78, 0x46, 0xff, 0xb0, 0x76, 0x45, 0xff, 0xaf, 0x76, 0x44, 0xff, 0xad, 0x73, 0x42, 0xff, 0xac, 0x71, 0x40, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xa4, 0x68, 0x3a, 0xff, 0xa1, 0x65, 0x37, 0xff, 0x9f, 0x63, 0x37, 0xff, 0x9d, 0x61, 0x36, 0xff, 0x9b, 0x60, 0x34, 0xff, 0x98, 0x5d, 0x33, 0xff, 0x96, 0x5a, 0x32, 0xff, 0x94, 0x58, 0x30, 0xff, 0x92, 0x56, 0x2f, 0xff, 0x9d, 0x61, 0x38, 0xff, 0xa5, 0x69, 0x3c, 0xff, 0x9f, 0x62, 0x36, 0xff, 0x9b, 0x5e, 0x34, 0xff, 0x98, 0x5b, 0x33, 0xff, 0x95, 0x58, 0x32, 0xff, 0x92, 0x55, 0x31, 0xff, 0x8f, 0x51, 0x2f, 0xff, 0x8c, 0x4f, 0x2e, 0xff, 0x8a, 0x4e, 0x2b, 0xff, 0x89, 0x4d, 0x29, 0xff, 0x86, 0x4a, 0x27, 0xff, 0x85, 0x47, 0x25, 0xff, 0x81, 0x46, 0x23, 0xff, 0x81, 0x46, 0x23, 0xff, 0x80, 0x45, 0x23, 0xff, 0x7e, 0x44, 0x21, 0xff, 0x7d, 0x43, 0x1f, 0xff, 0x7b, 0x43, 0x1e, 0xff, 0x7a, 0x42, 0x1e, 0xff, 0x7a, 0x42, 0x1e, 0xff, 0x79, 0x41, 0x1d, 0xff, 0x7a, 0x42, 0x1d, 0xff, 0x7b, 0x41, 0x1d, 0xff, 0x7b, 0x41, 0x1d, 0xff, 0x7c, 0x42, 0x1e, 0xff, 0x7c, 0x42, 0x1d, 0xff, 0x7e, 0x43, 0x1d, 0xff, 0x7f, 0x44, 0x1d, 0xff, 0x80, 0x45, 0x1e, 0xff, 0x82, 0x46, 0x1e, 0xff, 0x82, 0x46, 0x1e, 0xff, 0x84, 0x46, 0x1e, 0xff, 0x86, 0x49, 0x21, 0xff, 0x89, 0x4b, 0x23, 0xff, 0x8b, 0x4c, 0x24, 0xff, 0x8e, 0x4f, 0x25, 0xff, 0x90, 0x51, 0x27, 0xff, 0x92, 0x54, 0x2b, 0xff, 0x96, 0x58, 0x2e, 0xff, 0x9a, 0x5c, 0x30, 0xff, 0x9c, 0x5d, 0x30, 0xff, 0xa9, 0x6b, 0x3a, 0xff, 0xba, 0x7d, 0x47, 0xff, 0xbd, 0x7e, 0x4a, 0xff, 0xbb, 0x7e, 0x4b, 0xff, 0xbe, 0x80, 0x4e, 0xff, 0xc2, 0x83, 0x50, 0xff, 0xc5, 0x85, 0x53, 0xff, 0xc9, 0x88, 0x55, 0xff, 0xc9, 0x89, 0x57, 0xff, 0xc3, 0x86, 0x54, 0xff, 0xbf, 0x81, 0x51, 0xff, 0xbc, 0x7e, 0x4f, 0xff, 0xb9, 0x7c, 0x4b, 0xff, 0xb6, 0x79, 0x47, 0xff, 0xb3, 0x74, 0x44, 0xff, 0xb2, 0x73, 0x41, 0xff, 0xb3, 0x72, 0x41, 0xff, 0xb8, 0x77, 0x45, 0xff, 0xb6, 0x77, 0x43, 0xff, 0xb2, 0x72, 0x40, 0xff, 0xb2, 0x72, 0x41, 0xff, 0xb2, 0x72, 0x43, 0xff, 0xb1, 0x71, 0x40, 0xff, 0xac, 0x6c, 0x3e, 0xff, 0xad, 0x6d, 0x3f, 0xff, 0xb2, 0x71, 0x41, 0xff, 0xac, 0x6e, 0x3f, 0xff, 0x99, 0x5c, 0x35, 0xff, 0x98, 0x5c, 0x34, 0xff, 0x94, 0x56, 0x31, 0xff, 0x95, 0x57, 0x31, 0xff, 0x92, 0x55, 0x30, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x8f, 0x51, 0x2d, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x8b, 0x4e, 0x29, 0xff, 0x8a, 0x4c, 0x28, 0xff, 0x8a, 0x4c, 0x2a, 0xff, 0x8b, 0x4c, 0x2a, 0xff, 0x8a, 0x4d, 0x2a, 0xff, 0x8b, 0x4e, 0x2d, 0xff, 0x8c, 0x4f, 0x2e, 0xff, 0x8b, 0x4e, 0x2c, 0xff, 0x8a, 0x4e, 0x2b, 0xff, 0x8a, 0x4c, 0x29, 0xff, 0x88, 0x4c, 0x27, 0xff, 0x88, 0x4b, 0x28, 0xff, 0x88, 0x4b, 0x29, 0xff, 0x89, 0x4c, 0x2a, 0xff, 0x8a, 0x4e, 0x29, 0xff, 0x8a, 0x4c, 0x2a, 0xff, 0x8c, 0x4e, 0x2d, 0xff, 0x8e, 0x4f, 0x2f, 0xff, 0x8f, 0x51, 0x2c, 0xff, 0x8e, 0x50, 0x2c, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x92, 0x54, 0x32, 0xff, 0x91, 0x54, 0x31, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x54, 0x31, 0xff, 0x8e, 0x54, 0x31, 0xff, 0x8d, 0x51, 0x2f, 0xff, 0x8b, 0x4e, 0x2c, 0xff, 0x85, 0x49, 0x26, 0xff, 0x82, 0x47, 0x24, 0xff, 0x7f, 0x45, 0x23, 0xff, 0x7e, 0x45, 0x21, 0xff, + 0x7c, 0x43, 0x1f, 0xff, 0x7d, 0x44, 0x20, 0xff, 0x7e, 0x43, 0x21, 0xff, 0x7e, 0x44, 0x1e, 0xff, 0x7c, 0x42, 0x1e, 0xff, 0x7c, 0x41, 0x1c, 0xff, 0x7a, 0x40, 0x1b, 0xff, 0x77, 0x40, 0x1c, 0xff, 0x76, 0x3e, 0x1a, 0xff, 0x74, 0x3c, 0x19, 0xff, 0x77, 0x3f, 0x19, 0xff, 0x74, 0x3c, 0x19, 0xff, 0x76, 0x3e, 0x1b, 0xff, 0x78, 0x40, 0x1a, 0xff, 0x7b, 0x3f, 0x1b, 0xff, 0x7b, 0x41, 0x1b, 0xff, 0x7d, 0x42, 0x1c, 0xff, 0x7f, 0x45, 0x1e, 0xff, 0x83, 0x46, 0x1e, 0xff, 0x85, 0x46, 0x23, 0xff, 0x86, 0x48, 0x21, 0xff, 0x82, 0x47, 0x21, 0xff, 0x85, 0x47, 0x23, 0xff, 0x87, 0x49, 0x25, 0xff, 0x85, 0x48, 0x23, 0xff, 0x88, 0x49, 0x25, 0xff, 0x86, 0x48, 0x24, 0xff, 0x89, 0x49, 0x25, 0xff, 0x85, 0x48, 0x22, 0xff, 0x88, 0x49, 0x23, 0xff, 0x8c, 0x4c, 0x26, 0xff, 0x8f, 0x4f, 0x28, 0xff, 0x93, 0x52, 0x2b, 0xff, 0x96, 0x55, 0x2d, 0xff, 0x9a, 0x58, 0x2f, 0xff, 0x98, 0x57, 0x2d, 0xff, 0x9b, 0x5a, 0x30, 0xff, 0xa1, 0x60, 0x31, 0xff, 0xa3, 0x63, 0x34, 0xff, 0xa6, 0x66, 0x36, 0xff, 0xaa, 0x6c, 0x38, 0xff, 0xad, 0x6e, 0x3a, 0xff, 0xb0, 0x6f, 0x3a, 0xff, 0xb3, 0x70, 0x3a, 0xff, 0xb6, 0x73, 0x3c, 0xff, 0xba, 0x76, 0x40, 0xff, 0xbe, 0x7d, 0x44, 0xff, 0xc0, 0x7f, 0x46, 0xff, 0xc5, 0x82, 0x48, 0xff, 0xc7, 0x83, 0x49, 0xff, 0xd0, 0x86, 0x4c, 0xff, 0xd9, 0x8b, 0x4e, 0xff, 0xdf, 0x8e, 0x50, 0xff, 0xe4, 0x94, 0x55, 0xff, 0xe5, 0x95, 0x58, 0xff, 0xe5, 0x99, 0x5a, 0xff, 0xe5, 0x9b, 0x5b, 0xff, 0xe5, 0x9a, 0x5a, 0xff, 0xe5, 0x9b, 0x5b, 0xff, 0xe5, 0x9a, 0x5b, 0xff, 0xe5, 0x97, 0x5c, 0xff, 0xe5, 0x95, 0x5b, 0xff, 0xe5, 0x95, 0x5b, 0xff, 0xe5, 0x9a, 0x5e, 0xff, 0xe4, 0x9e, 0x60, 0xff, 0xde, 0x98, 0x5b, 0xff, 0xdd, 0x95, 0x53, 0xff, 0xe2, 0x97, 0x52, 0xff, 0xe4, 0x99, 0x55, 0xff, 0xe3, 0x9a, 0x56, 0xff, 0xe2, 0x9b, 0x57, 0xff, 0xe2, 0x9d, 0x59, 0xff, 0xe3, 0x9d, 0x5a, 0xff, 0xe4, 0x9c, 0x5b, 0xff, 0xe4, 0x9b, 0x5d, 0xff, 0xe3, 0x9b, 0x5c, 0xff, 0xe0, 0x9b, 0x58, 0xff, 0xe1, 0x9b, 0x5b, 0xff, 0xe4, 0x97, 0x59, 0xff, 0xe5, 0x9b, 0x5a, 0xff, 0xe5, 0x9b, 0x59, 0xff, 0xe4, 0x99, 0x58, 0xff, 0xe3, 0x98, 0x57, 0xff, 0xe3, 0x92, 0x53, 0xff, 0xe0, 0x92, 0x52, 0xff, 0xdb, 0x94, 0x4f, 0xff, 0xdc, 0x97, 0x4f, 0xff, 0xde, 0x96, 0x52, 0xff, 0xdb, 0x96, 0x50, 0xff, 0xdd, 0x99, 0x53, 0xff, 0xdd, 0x98, 0x56, 0xff, 0xdc, 0x9c, 0x5a, 0xff, 0xdf, 0x9c, 0x5d, 0xff, 0xe2, 0x99, 0x5c, 0xff, 0xe5, 0x9a, 0x5d, 0xff, 0xe2, 0x9a, 0x5d, 0xff, 0xe2, 0x99, 0x5d, 0xff, 0xe2, 0x96, 0x5b, 0xff, 0xdf, 0x98, 0x59, 0xff, 0xd8, 0x94, 0x57, 0xff, 0xd2, 0x91, 0x55, 0xff, 0xcd, 0x8f, 0x53, 0xff, 0xc7, 0x8c, 0x53, 0xff, 0xc2, 0x89, 0x52, 0xff, 0xc0, 0x86, 0x50, 0xff, 0xbd, 0x83, 0x4c, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xb8, 0x7e, 0x4a, 0xff, 0xb5, 0x7c, 0x49, 0xff, 0xb3, 0x79, 0x48, 0xff, 0xb1, 0x77, 0x46, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xad, 0x74, 0x43, 0xff, 0xaa, 0x70, 0x3f, 0xff, 0xa5, 0x6a, 0x3b, 0xff, 0xa3, 0x68, 0x39, 0xff, 0xa2, 0x67, 0x39, 0xff, 0x9f, 0x63, 0x37, 0xff, 0x9d, 0x61, 0x35, 0xff, 0x9a, 0x5f, 0x33, 0xff, 0x98, 0x5c, 0x33, 0xff, 0x94, 0x57, 0x2f, 0xff, 0x9d, 0x63, 0x38, 0xff, 0xa7, 0x6c, 0x3e, 0xff, 0xa4, 0x69, 0x3a, 0xff, 0x9f, 0x62, 0x37, 0xff, 0x9b, 0x5e, 0x35, 0xff, 0x98, 0x5c, 0x34, 0xff, 0x95, 0x58, 0x32, 0xff, 0x94, 0x56, 0x31, 0xff, 0x90, 0x52, 0x2f, 0xff, 0x8c, 0x4e, 0x2d, 0xff, 0x8a, 0x4d, 0x2b, 0xff, 0x89, 0x4c, 0x29, 0xff, 0x86, 0x4a, 0x27, 0xff, 0x83, 0x48, 0x25, 0xff, 0x81, 0x47, 0x24, 0xff, 0x80, 0x46, 0x23, 0xff, 0x7f, 0x45, 0x22, 0xff, 0x7e, 0x44, 0x21, 0xff, 0x7c, 0x43, 0x1f, 0xff, 0x7a, 0x42, 0x1e, 0xff, 0x77, 0x41, 0x1d, 0xff, 0x77, 0x40, 0x1c, 0xff, 0x77, 0x3f, 0x1c, 0xff, 0x77, 0x3f, 0x1b, 0xff, 0x77, 0x3f, 0x1b, 0xff, 0x78, 0x40, 0x1b, 0xff, 0x78, 0x41, 0x1c, 0xff, 0x79, 0x41, 0x1c, 0xff, 0x7a, 0x41, 0x19, 0xff, 0x7b, 0x41, 0x1a, 0xff, 0x7c, 0x42, 0x1b, 0xff, 0x7e, 0x43, 0x1d, 0xff, 0x80, 0x44, 0x1e, 0xff, 0x81, 0x46, 0x1e, 0xff, 0x83, 0x47, 0x1e, 0xff, 0x85, 0x48, 0x21, 0xff, 0x87, 0x49, 0x23, 0xff, 0x8b, 0x4c, 0x23, 0xff, 0x8d, 0x4e, 0x25, 0xff, 0x8e, 0x52, 0x27, 0xff, 0x92, 0x54, 0x2a, 0xff, 0x95, 0x58, 0x2e, 0xff, 0x95, 0x57, 0x2e, 0xff, 0xa9, 0x6d, 0x3d, 0xff, 0xb5, 0x77, 0x44, 0xff, 0xb4, 0x77, 0x45, 0xff, 0xb5, 0x76, 0x44, 0xff, 0xb5, 0x76, 0x44, 0xff, 0xb6, 0x77, 0x45, 0xff, 0xb7, 0x79, 0x48, 0xff, 0xb9, 0x7c, 0x4a, 0xff, 0xb9, 0x7c, 0x4a, 0xff, 0xb7, 0x79, 0x49, 0xff, 0xb6, 0x78, 0x48, 0xff, 0xb6, 0x77, 0x47, 0xff, 0xb5, 0x76, 0x46, 0xff, 0xb6, 0x77, 0x47, 0xff, 0xb5, 0x75, 0x46, 0xff, 0xb5, 0x75, 0x45, 0xff, 0xb2, 0x72, 0x40, 0xff, 0xb5, 0x74, 0x42, 0xff, 0xb6, 0x75, 0x42, 0xff, 0xb5, 0x74, 0x43, 0xff, 0xb2, 0x71, 0x40, 0xff, 0xb2, 0x73, 0x41, 0xff, 0xb2, 0x73, 0x41, 0xff, 0xb3, 0x73, 0x43, 0xff, 0xb1, 0x72, 0x41, 0xff, 0xaf, 0x6d, 0x3e, 0xff, 0xa1, 0x62, 0x37, 0xff, 0x97, 0x5b, 0x34, 0xff, 0x9b, 0x5e, 0x36, 0xff, 0x97, 0x5a, 0x33, 0xff, 0x93, 0x55, 0x31, 0xff, 0x92, 0x54, 0x30, 0xff, 0x90, 0x53, 0x2f, 0xff, 0x90, 0x51, 0x2f, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x8a, 0x4e, 0x2a, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x8a, 0x4e, 0x2c, 0xff, 0x8a, 0x4d, 0x2b, 0xff, 0x8a, 0x4e, 0x2b, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x89, 0x4d, 0x2a, 0xff, 0x8a, 0x4c, 0x29, 0xff, 0x87, 0x4a, 0x28, 0xff, 0x88, 0x4a, 0x28, 0xff, 0x87, 0x4c, 0x28, 0xff, 0x87, 0x4a, 0x28, 0xff, 0x89, 0x4c, 0x29, 0xff, 0x8c, 0x4e, 0x2d, 0xff, 0x8d, 0x50, 0x2d, 0xff, 0x8d, 0x50, 0x2d, 0xff, 0x8d, 0x4e, 0x2b, 0xff, 0x8c, 0x4e, 0x2a, 0xff, 0x8e, 0x51, 0x2d, 0xff, 0x92, 0x55, 0x32, 0xff, 0x90, 0x53, 0x30, 0xff, 0x8f, 0x51, 0x2f, 0xff, 0x8f, 0x53, 0x30, 0xff, 0x8d, 0x51, 0x2f, 0xff, 0x8c, 0x50, 0x2e, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x84, 0x48, 0x24, 0xff, 0x81, 0x47, 0x24, 0xff, 0x80, 0x45, 0x21, 0xff, 0x7d, 0x43, 0x20, 0xff, + 0x7d, 0x44, 0x1f, 0xff, 0x7a, 0x41, 0x1e, 0xff, 0x7b, 0x42, 0x1e, 0xff, 0x7e, 0x42, 0x1f, 0xff, 0x7c, 0x42, 0x1e, 0xff, 0x7a, 0x41, 0x1e, 0xff, 0x76, 0x3e, 0x1c, 0xff, 0x76, 0x3e, 0x1b, 0xff, 0x73, 0x3c, 0x19, 0xff, 0x71, 0x3c, 0x19, 0xff, 0x71, 0x3c, 0x19, 0xff, 0x74, 0x3c, 0x19, 0xff, 0x74, 0x3b, 0x19, 0xff, 0x76, 0x3f, 0x1a, 0xff, 0x77, 0x40, 0x1b, 0xff, 0x7a, 0x40, 0x19, 0xff, 0x7a, 0x41, 0x1a, 0xff, 0x7c, 0x42, 0x1d, 0xff, 0x81, 0x45, 0x1e, 0xff, 0x80, 0x45, 0x1f, 0xff, 0x7d, 0x42, 0x1e, 0xff, 0x80, 0x43, 0x1e, 0xff, 0x82, 0x45, 0x20, 0xff, 0x82, 0x45, 0x1f, 0xff, 0x83, 0x47, 0x21, 0xff, 0x81, 0x45, 0x1f, 0xff, 0x82, 0x46, 0x20, 0xff, 0x86, 0x47, 0x22, 0xff, 0x89, 0x4a, 0x26, 0xff, 0x87, 0x48, 0x23, 0xff, 0x89, 0x4a, 0x23, 0xff, 0x8c, 0x4c, 0x26, 0xff, 0x91, 0x50, 0x28, 0xff, 0x95, 0x54, 0x2b, 0xff, 0x99, 0x57, 0x2d, 0xff, 0x9c, 0x5b, 0x2f, 0xff, 0x98, 0x57, 0x2d, 0xff, 0x9d, 0x5b, 0x30, 0xff, 0xa1, 0x60, 0x32, 0xff, 0xa5, 0x63, 0x35, 0xff, 0xa6, 0x66, 0x36, 0xff, 0xaa, 0x6c, 0x38, 0xff, 0xad, 0x70, 0x3a, 0xff, 0xae, 0x71, 0x3b, 0xff, 0xb1, 0x6f, 0x3a, 0xff, 0xb5, 0x73, 0x3c, 0xff, 0xba, 0x79, 0x40, 0xff, 0xbe, 0x7b, 0x42, 0xff, 0xc2, 0x7f, 0x45, 0xff, 0xc7, 0x82, 0x49, 0xff, 0xc9, 0x83, 0x48, 0xff, 0xce, 0x85, 0x4a, 0xff, 0xd5, 0x88, 0x4c, 0xff, 0xde, 0x8c, 0x4f, 0xff, 0xe4, 0x93, 0x53, 0xff, 0xe4, 0x96, 0x56, 0xff, 0xe5, 0x99, 0x58, 0xff, 0xe5, 0x9a, 0x5a, 0xff, 0xe5, 0x98, 0x5a, 0xff, 0xe5, 0x98, 0x5a, 0xff, 0xe5, 0x96, 0x5a, 0xff, 0xe5, 0x95, 0x5a, 0xff, 0xe5, 0x93, 0x5a, 0xff, 0xe5, 0x96, 0x5c, 0xff, 0xe5, 0x98, 0x5a, 0xff, 0xe4, 0x9d, 0x5c, 0xff, 0xe2, 0xa1, 0x5a, 0xff, 0xe2, 0x99, 0x53, 0xff, 0xe3, 0x9a, 0x52, 0xff, 0xe3, 0x9a, 0x55, 0xff, 0xe4, 0x99, 0x56, 0xff, 0xe2, 0x99, 0x57, 0xff, 0xe3, 0x9b, 0x59, 0xff, 0xe4, 0x9c, 0x5b, 0xff, 0xe3, 0x9a, 0x5b, 0xff, 0xe1, 0x9a, 0x5c, 0xff, 0xe2, 0x9e, 0x5b, 0xff, 0xe2, 0x9a, 0x57, 0xff, 0xe2, 0x96, 0x59, 0xff, 0xe3, 0x99, 0x59, 0xff, 0xe2, 0x98, 0x59, 0xff, 0xe3, 0x9a, 0x59, 0xff, 0xe4, 0x99, 0x57, 0xff, 0xe4, 0x95, 0x53, 0xff, 0xdf, 0x93, 0x50, 0xff, 0xdc, 0x95, 0x4f, 0xff, 0xdf, 0x95, 0x52, 0xff, 0xde, 0x95, 0x50, 0xff, 0xdc, 0x97, 0x51, 0xff, 0xdc, 0x98, 0x53, 0xff, 0xdf, 0x9b, 0x57, 0xff, 0xdf, 0xa0, 0x5f, 0xff, 0xe1, 0xa1, 0x63, 0xff, 0xe4, 0x9e, 0x62, 0xff, 0xe4, 0x9c, 0x5f, 0xff, 0xe4, 0x9f, 0x60, 0xff, 0xe3, 0x9e, 0x61, 0xff, 0xe4, 0x9d, 0x60, 0xff, 0xe4, 0x9c, 0x5f, 0xff, 0xe2, 0x99, 0x5c, 0xff, 0xdc, 0x96, 0x59, 0xff, 0xd7, 0x93, 0x59, 0xff, 0xd0, 0x90, 0x58, 0xff, 0xc8, 0x8d, 0x56, 0xff, 0xc4, 0x89, 0x53, 0xff, 0xc1, 0x85, 0x4f, 0xff, 0xbe, 0x83, 0x4c, 0xff, 0xbb, 0x80, 0x4c, 0xff, 0xb7, 0x7d, 0x4b, 0xff, 0xb5, 0x7c, 0x49, 0xff, 0xb3, 0x7a, 0x48, 0xff, 0xb0, 0x77, 0x46, 0xff, 0xae, 0x75, 0x44, 0xff, 0xab, 0x71, 0x40, 0xff, 0xa7, 0x6c, 0x3b, 0xff, 0xa6, 0x6a, 0x3a, 0xff, 0xa4, 0x67, 0x3a, 0xff, 0xa1, 0x66, 0x39, 0xff, 0x9e, 0x63, 0x36, 0xff, 0x9c, 0x5f, 0x35, 0xff, 0x9a, 0x5d, 0x34, 0xff, 0x99, 0x5d, 0x33, 0xff, 0xa3, 0x67, 0x3b, 0xff, 0xa8, 0x6d, 0x3e, 0xff, 0xa3, 0x66, 0x3a, 0xff, 0xa0, 0x62, 0x38, 0xff, 0x9d, 0x60, 0x36, 0xff, 0x9a, 0x5e, 0x34, 0xff, 0x97, 0x5b, 0x32, 0xff, 0x94, 0x57, 0x31, 0xff, 0x90, 0x53, 0x2f, 0xff, 0x8c, 0x50, 0x2e, 0xff, 0x8a, 0x4e, 0x2b, 0xff, 0x88, 0x4c, 0x28, 0xff, 0x85, 0x4a, 0x26, 0xff, 0x83, 0x48, 0x26, 0xff, 0x81, 0x47, 0x23, 0xff, 0x80, 0x46, 0x21, 0xff, 0x80, 0x45, 0x21, 0xff, 0x7d, 0x44, 0x21, 0xff, 0x7b, 0x43, 0x1f, 0xff, 0x78, 0x42, 0x1d, 0xff, 0x74, 0x3f, 0x1c, 0xff, 0x75, 0x3e, 0x1b, 0xff, 0x74, 0x3f, 0x1b, 0xff, 0x73, 0x40, 0x1a, 0xff, 0x74, 0x3d, 0x19, 0xff, 0x73, 0x3e, 0x19, 0xff, 0x75, 0x3f, 0x1a, 0xff, 0x75, 0x3d, 0x1a, 0xff, 0x75, 0x3e, 0x19, 0xff, 0x77, 0x40, 0x19, 0xff, 0x79, 0x40, 0x19, 0xff, 0x7b, 0x41, 0x19, 0xff, 0x7c, 0x43, 0x1a, 0xff, 0x7e, 0x42, 0x1c, 0xff, 0x80, 0x43, 0x1d, 0xff, 0x83, 0x46, 0x1e, 0xff, 0x85, 0x48, 0x1e, 0xff, 0x87, 0x49, 0x22, 0xff, 0x89, 0x4b, 0x24, 0xff, 0x8c, 0x4d, 0x25, 0xff, 0x8e, 0x50, 0x27, 0xff, 0x90, 0x53, 0x2a, 0xff, 0x90, 0x52, 0x2b, 0xff, 0xa8, 0x6a, 0x3c, 0xff, 0xb1, 0x71, 0x40, 0xff, 0xaf, 0x71, 0x3e, 0xff, 0xaf, 0x70, 0x3f, 0xff, 0xae, 0x71, 0x3f, 0xff, 0xae, 0x6f, 0x3f, 0xff, 0xae, 0x71, 0x3f, 0xff, 0xaf, 0x71, 0x40, 0xff, 0xb2, 0x71, 0x42, 0xff, 0xaf, 0x71, 0x40, 0xff, 0xae, 0x6f, 0x41, 0xff, 0xae, 0x70, 0x41, 0xff, 0xb1, 0x73, 0x42, 0xff, 0xb2, 0x77, 0x47, 0xff, 0xb1, 0x7a, 0x49, 0xff, 0xb2, 0x79, 0x49, 0xff, 0xb4, 0x76, 0x46, 0xff, 0xb3, 0x73, 0x42, 0xff, 0xb1, 0x70, 0x3f, 0xff, 0xb1, 0x6f, 0x3e, 0xff, 0xb3, 0x72, 0x41, 0xff, 0xae, 0x6e, 0x3d, 0xff, 0xae, 0x6f, 0x3d, 0xff, 0xae, 0x6f, 0x3f, 0xff, 0xb3, 0x72, 0x42, 0xff, 0xb5, 0x74, 0x43, 0xff, 0x9d, 0x61, 0x37, 0xff, 0x98, 0x5b, 0x34, 0xff, 0x98, 0x5c, 0x34, 0xff, 0x9a, 0x5d, 0x35, 0xff, 0x93, 0x55, 0x31, 0xff, 0x90, 0x53, 0x2f, 0xff, 0x90, 0x53, 0x2e, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8d, 0x51, 0x2d, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8b, 0x4e, 0x2b, 0xff, 0x8a, 0x4c, 0x2a, 0xff, 0x89, 0x4b, 0x2a, 0xff, 0x89, 0x4c, 0x2a, 0xff, 0x89, 0x4b, 0x29, 0xff, 0x88, 0x4b, 0x28, 0xff, 0x8a, 0x4c, 0x28, 0xff, 0x88, 0x4a, 0x28, 0xff, 0x86, 0x4b, 0x26, 0xff, 0x85, 0x49, 0x26, 0xff, 0x84, 0x49, 0x27, 0xff, 0x85, 0x49, 0x27, 0xff, 0x88, 0x4b, 0x28, 0xff, 0x87, 0x49, 0x26, 0xff, 0x85, 0x48, 0x27, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x8d, 0x4e, 0x2a, 0xff, 0x8a, 0x4e, 0x29, 0xff, 0x8a, 0x4d, 0x26, 0xff, 0x8e, 0x50, 0x2d, 0xff, 0x90, 0x54, 0x30, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x51, 0x2f, 0xff, 0x8d, 0x52, 0x2f, 0xff, 0x8d, 0x50, 0x2f, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x87, 0x4b, 0x29, 0xff, 0x83, 0x46, 0x24, 0xff, 0x80, 0x46, 0x22, 0xff, 0x7f, 0x43, 0x21, 0xff, 0x7d, 0x42, 0x1f, 0xff, + 0x7b, 0x41, 0x1d, 0xff, 0x7a, 0x41, 0x1d, 0xff, 0x79, 0x3f, 0x1c, 0xff, 0x78, 0x40, 0x1c, 0xff, 0x7b, 0x40, 0x1c, 0xff, 0x77, 0x3e, 0x1a, 0xff, 0x74, 0x3e, 0x1b, 0xff, 0x72, 0x3e, 0x19, 0xff, 0x71, 0x39, 0x19, 0xff, 0x71, 0x39, 0x19, 0xff, 0x71, 0x3b, 0x19, 0xff, 0x73, 0x39, 0x19, 0xff, 0x75, 0x3a, 0x19, 0xff, 0x74, 0x3c, 0x19, 0xff, 0x77, 0x3f, 0x1a, 0xff, 0x77, 0x3f, 0x1b, 0xff, 0x7a, 0x40, 0x19, 0xff, 0x7c, 0x41, 0x1a, 0xff, 0x7c, 0x41, 0x1c, 0xff, 0x78, 0x3e, 0x1a, 0xff, 0x79, 0x40, 0x1a, 0xff, 0x7a, 0x40, 0x1b, 0xff, 0x7c, 0x41, 0x1b, 0xff, 0x7d, 0x41, 0x1d, 0xff, 0x7e, 0x43, 0x1c, 0xff, 0x80, 0x44, 0x1f, 0xff, 0x82, 0x45, 0x1e, 0xff, 0x84, 0x46, 0x21, 0xff, 0x86, 0x48, 0x23, 0xff, 0x88, 0x49, 0x22, 0xff, 0x89, 0x4a, 0x23, 0xff, 0x89, 0x4b, 0x23, 0xff, 0x8d, 0x4d, 0x24, 0xff, 0x92, 0x51, 0x28, 0xff, 0x96, 0x54, 0x2c, 0xff, 0x9a, 0x58, 0x2e, 0xff, 0x9d, 0x5a, 0x30, 0xff, 0x9a, 0x58, 0x2e, 0xff, 0x9c, 0x5b, 0x2f, 0xff, 0xa0, 0x5f, 0x32, 0xff, 0xa3, 0x64, 0x34, 0xff, 0xa6, 0x67, 0x35, 0xff, 0xa9, 0x69, 0x38, 0xff, 0xab, 0x6b, 0x39, 0xff, 0xaf, 0x6e, 0x3b, 0xff, 0xb3, 0x72, 0x3b, 0xff, 0xb7, 0x75, 0x3c, 0xff, 0xb9, 0x78, 0x3f, 0xff, 0xbc, 0x7b, 0x42, 0xff, 0xc0, 0x7e, 0x45, 0xff, 0xc8, 0x82, 0x48, 0xff, 0xce, 0x85, 0x49, 0xff, 0xcf, 0x85, 0x4a, 0xff, 0xd6, 0x89, 0x4d, 0xff, 0xe2, 0x8e, 0x50, 0xff, 0xe4, 0x94, 0x55, 0xff, 0xe4, 0x96, 0x58, 0xff, 0xe5, 0x97, 0x59, 0xff, 0xe5, 0x9a, 0x5a, 0xff, 0xe5, 0x97, 0x59, 0xff, 0xe5, 0x95, 0x5a, 0xff, 0xe5, 0x92, 0x5a, 0xff, 0xe4, 0x94, 0x59, 0xff, 0xe5, 0x93, 0x5b, 0xff, 0xe4, 0x98, 0x59, 0xff, 0xe5, 0xa0, 0x59, 0xff, 0xe5, 0xa2, 0x5c, 0xff, 0xe4, 0xa2, 0x5d, 0xff, 0xe0, 0x99, 0x54, 0xff, 0xe3, 0x98, 0x52, 0xff, 0xe4, 0x99, 0x55, 0xff, 0xe2, 0x98, 0x56, 0xff, 0xe4, 0x9a, 0x59, 0xff, 0xe4, 0x9a, 0x5b, 0xff, 0xe5, 0x9b, 0x5b, 0xff, 0xe3, 0x98, 0x5a, 0xff, 0xe1, 0x98, 0x5a, 0xff, 0xe1, 0x99, 0x56, 0xff, 0xe3, 0x97, 0x5a, 0xff, 0xe3, 0x98, 0x5b, 0xff, 0xe4, 0x98, 0x59, 0xff, 0xe4, 0x99, 0x5a, 0xff, 0xe4, 0x98, 0x5a, 0xff, 0xe3, 0x95, 0x54, 0xff, 0xe0, 0x93, 0x51, 0xff, 0xdd, 0x96, 0x4f, 0xff, 0xdd, 0x97, 0x50, 0xff, 0xe1, 0x9a, 0x52, 0xff, 0xdf, 0x9a, 0x51, 0xff, 0xdf, 0x9a, 0x56, 0xff, 0xdf, 0x9c, 0x59, 0xff, 0xe0, 0xa1, 0x5f, 0xff, 0xe3, 0xa4, 0x65, 0xff, 0xe5, 0xa4, 0x65, 0xff, 0xe4, 0xa4, 0x63, 0xff, 0xe4, 0xa6, 0x66, 0xff, 0xe4, 0xa5, 0x66, 0xff, 0xe4, 0xa4, 0x66, 0xff, 0xe4, 0xa3, 0x65, 0xff, 0xe5, 0xa0, 0x62, 0xff, 0xe4, 0x9d, 0x60, 0xff, 0xe2, 0x9a, 0x60, 0xff, 0xdb, 0x97, 0x5c, 0xff, 0xd3, 0x92, 0x58, 0xff, 0xcb, 0x8d, 0x56, 0xff, 0xc5, 0x88, 0x52, 0xff, 0xc0, 0x87, 0x4f, 0xff, 0xbe, 0x84, 0x4e, 0xff, 0xbb, 0x81, 0x4b, 0xff, 0xb8, 0x80, 0x4a, 0xff, 0xb7, 0x7d, 0x49, 0xff, 0xb5, 0x7b, 0x48, 0xff, 0xb2, 0x78, 0x45, 0xff, 0xad, 0x73, 0x41, 0xff, 0xab, 0x6f, 0x3e, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xa7, 0x6c, 0x3c, 0xff, 0xa4, 0x68, 0x39, 0xff, 0xa2, 0x65, 0x38, 0xff, 0xa0, 0x63, 0x37, 0xff, 0x9b, 0x5f, 0x33, 0xff, 0xa0, 0x65, 0x3a, 0xff, 0xaa, 0x6f, 0x42, 0xff, 0xa9, 0x6d, 0x3f, 0xff, 0xa5, 0x68, 0x3b, 0xff, 0xa2, 0x64, 0x39, 0xff, 0x9f, 0x62, 0x37, 0xff, 0x9b, 0x5e, 0x35, 0xff, 0x98, 0x5b, 0x33, 0xff, 0x94, 0x57, 0x31, 0xff, 0x91, 0x54, 0x2f, 0xff, 0x8e, 0x51, 0x2d, 0xff, 0x8b, 0x4e, 0x2c, 0xff, 0x88, 0x4b, 0x29, 0xff, 0x86, 0x4a, 0x26, 0xff, 0x84, 0x49, 0x24, 0xff, 0x81, 0x47, 0x23, 0xff, 0x80, 0x46, 0x22, 0xff, 0x7f, 0x45, 0x20, 0xff, 0x7d, 0x44, 0x1f, 0xff, 0x7a, 0x42, 0x1e, 0xff, 0x76, 0x40, 0x1c, 0xff, 0x74, 0x3f, 0x1b, 0xff, 0x73, 0x3b, 0x1a, 0xff, 0x71, 0x38, 0x19, 0xff, 0x71, 0x39, 0x19, 0xff, 0x71, 0x3b, 0x19, 0xff, 0x71, 0x3c, 0x19, 0xff, 0x72, 0x3d, 0x19, 0xff, 0x72, 0x3d, 0x19, 0xff, 0x71, 0x3c, 0x19, 0xff, 0x72, 0x3b, 0x19, 0xff, 0x73, 0x3b, 0x19, 0xff, 0x77, 0x3d, 0x19, 0xff, 0x79, 0x3f, 0x19, 0xff, 0x7a, 0x41, 0x1a, 0xff, 0x7d, 0x43, 0x1b, 0xff, 0x7f, 0x44, 0x1c, 0xff, 0x81, 0x45, 0x1e, 0xff, 0x83, 0x47, 0x1f, 0xff, 0x85, 0x49, 0x21, 0xff, 0x88, 0x4a, 0x23, 0xff, 0x8a, 0x4d, 0x25, 0xff, 0x8d, 0x50, 0x28, 0xff, 0x8a, 0x4c, 0x26, 0xff, 0xa8, 0x68, 0x39, 0xff, 0xae, 0x6f, 0x3d, 0xff, 0xab, 0x6c, 0x3b, 0xff, 0xaa, 0x6b, 0x3a, 0xff, 0xa8, 0x6a, 0x3a, 0xff, 0xa8, 0x69, 0x3b, 0xff, 0xa8, 0x69, 0x3b, 0xff, 0xa9, 0x6b, 0x3c, 0xff, 0xaa, 0x6b, 0x3c, 0xff, 0xa9, 0x6a, 0x3b, 0xff, 0xa9, 0x6a, 0x3a, 0xff, 0xab, 0x6b, 0x3b, 0xff, 0xac, 0x6d, 0x3e, 0xff, 0xad, 0x70, 0x40, 0xff, 0xae, 0x73, 0x45, 0xff, 0xae, 0x75, 0x48, 0xff, 0xb3, 0x7a, 0x4a, 0xff, 0xb3, 0x75, 0x44, 0xff, 0xad, 0x6c, 0x3b, 0xff, 0xab, 0x6a, 0x3b, 0xff, 0xad, 0x6c, 0x3c, 0xff, 0xaf, 0x6f, 0x3d, 0xff, 0xac, 0x6b, 0x3b, 0xff, 0xac, 0x6b, 0x3c, 0xff, 0xae, 0x6d, 0x3d, 0xff, 0xb1, 0x72, 0x41, 0xff, 0x9b, 0x5e, 0x35, 0xff, 0x98, 0x5c, 0x34, 0xff, 0x9a, 0x5d, 0x35, 0xff, 0x9b, 0x5d, 0x34, 0xff, 0x92, 0x56, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x52, 0x2d, 0xff, 0x8d, 0x50, 0x2d, 0xff, 0x8e, 0x50, 0x2e, 0xff, 0x8e, 0x4f, 0x2e, 0xff, 0x8c, 0x4d, 0x2d, 0xff, 0x8b, 0x4e, 0x2b, 0xff, 0x8a, 0x4d, 0x2a, 0xff, 0x89, 0x4b, 0x29, 0xff, 0x88, 0x4c, 0x28, 0xff, 0x87, 0x4b, 0x27, 0xff, 0x87, 0x49, 0x27, 0xff, 0x86, 0x4a, 0x26, 0xff, 0x85, 0x49, 0x25, 0xff, 0x84, 0x48, 0x25, 0xff, 0x84, 0x47, 0x26, 0xff, 0x82, 0x46, 0x26, 0xff, 0x83, 0x48, 0x25, 0xff, 0x84, 0x49, 0x26, 0xff, 0x84, 0x48, 0x25, 0xff, 0x84, 0x47, 0x26, 0xff, 0x85, 0x48, 0x24, 0xff, 0x83, 0x46, 0x23, 0xff, 0x85, 0x48, 0x25, 0xff, 0x89, 0x4b, 0x27, 0xff, 0x89, 0x4a, 0x27, 0xff, 0x8d, 0x50, 0x2d, 0xff, 0x90, 0x53, 0x30, 0xff, 0x8e, 0x51, 0x2f, 0xff, 0x8e, 0x51, 0x2f, 0xff, 0x8d, 0x50, 0x2e, 0xff, 0x8b, 0x4f, 0x2d, 0xff, 0x8a, 0x4c, 0x2a, 0xff, 0x88, 0x4c, 0x28, 0xff, 0x83, 0x47, 0x24, 0xff, 0x7f, 0x45, 0x21, 0xff, 0x7e, 0x43, 0x20, 0xff, 0x7d, 0x42, 0x1f, 0xff, + 0x7d, 0x42, 0x1f, 0xff, 0x7b, 0x41, 0x1d, 0xff, 0x79, 0x40, 0x1d, 0xff, 0x78, 0x40, 0x1c, 0xff, 0x77, 0x3e, 0x1b, 0xff, 0x75, 0x3c, 0x19, 0xff, 0x74, 0x3c, 0x1a, 0xff, 0x72, 0x3d, 0x19, 0xff, 0x71, 0x39, 0x19, 0xff, 0x71, 0x3c, 0x19, 0xff, 0x71, 0x3d, 0x19, 0xff, 0x71, 0x3b, 0x19, 0xff, 0x74, 0x3a, 0x19, 0xff, 0x73, 0x3b, 0x19, 0xff, 0x77, 0x3c, 0x19, 0xff, 0x77, 0x3f, 0x19, 0xff, 0x79, 0x40, 0x19, 0xff, 0x76, 0x3e, 0x1a, 0xff, 0x74, 0x3e, 0x19, 0xff, 0x74, 0x3d, 0x1a, 0xff, 0x74, 0x3c, 0x19, 0xff, 0x77, 0x3f, 0x19, 0xff, 0x77, 0x3c, 0x1a, 0xff, 0x78, 0x40, 0x1a, 0xff, 0x7a, 0x40, 0x1b, 0xff, 0x7c, 0x42, 0x1e, 0xff, 0x80, 0x43, 0x1e, 0xff, 0x82, 0x46, 0x1e, 0xff, 0x83, 0x46, 0x22, 0xff, 0x87, 0x48, 0x22, 0xff, 0x89, 0x4a, 0x23, 0xff, 0x8b, 0x4c, 0x23, 0xff, 0x89, 0x4b, 0x23, 0xff, 0x8e, 0x4e, 0x25, 0xff, 0x92, 0x50, 0x29, 0xff, 0x97, 0x56, 0x2c, 0xff, 0x9a, 0x57, 0x2e, 0xff, 0x9d, 0x5a, 0x2f, 0xff, 0x9b, 0x59, 0x2e, 0xff, 0x9e, 0x5c, 0x30, 0xff, 0xa2, 0x60, 0x32, 0xff, 0xa4, 0x64, 0x34, 0xff, 0xa6, 0x65, 0x36, 0xff, 0xa9, 0x69, 0x37, 0xff, 0xac, 0x6c, 0x39, 0xff, 0xaf, 0x70, 0x3b, 0xff, 0xb3, 0x72, 0x3a, 0xff, 0xb7, 0x74, 0x3b, 0xff, 0xb9, 0x76, 0x3f, 0xff, 0xbd, 0x79, 0x42, 0xff, 0xc2, 0x7d, 0x45, 0xff, 0xc9, 0x82, 0x48, 0xff, 0xcf, 0x86, 0x49, 0xff, 0xd2, 0x88, 0x4b, 0xff, 0xdf, 0x8d, 0x50, 0xff, 0xe7, 0x94, 0x56, 0xff, 0xe5, 0x97, 0x58, 0xff, 0xe5, 0x99, 0x59, 0xff, 0xe5, 0x98, 0x5b, 0xff, 0xe5, 0x97, 0x5a, 0xff, 0xe5, 0x95, 0x5a, 0xff, 0xe5, 0x92, 0x59, 0xff, 0xe3, 0x93, 0x59, 0xff, 0xe3, 0x92, 0x59, 0xff, 0xe4, 0x97, 0x57, 0xff, 0xe4, 0x9c, 0x58, 0xff, 0xe4, 0x9f, 0x59, 0xff, 0xe4, 0xa2, 0x5c, 0xff, 0xe3, 0xa2, 0x5e, 0xff, 0xe2, 0x9a, 0x57, 0xff, 0xe3, 0x97, 0x53, 0xff, 0xe2, 0x99, 0x57, 0xff, 0xe4, 0x9a, 0x58, 0xff, 0xe5, 0x9b, 0x59, 0xff, 0xe4, 0x99, 0x5a, 0xff, 0xe4, 0x98, 0x59, 0xff, 0xe2, 0x99, 0x59, 0xff, 0xe0, 0x9a, 0x57, 0xff, 0xe5, 0x97, 0x5b, 0xff, 0xe4, 0x96, 0x5a, 0xff, 0xe4, 0x97, 0x59, 0xff, 0xe4, 0x99, 0x5b, 0xff, 0xe4, 0x98, 0x5a, 0xff, 0xe4, 0x92, 0x53, 0xff, 0xe0, 0x93, 0x52, 0xff, 0xdd, 0x96, 0x51, 0xff, 0xdd, 0x97, 0x50, 0xff, 0xdd, 0x95, 0x51, 0xff, 0xe0, 0x98, 0x54, 0xff, 0xe0, 0x9b, 0x56, 0xff, 0xdf, 0xa0, 0x5b, 0xff, 0xe1, 0xa6, 0x65, 0xff, 0xe2, 0xa8, 0x68, 0xff, 0xe3, 0xa6, 0x69, 0xff, 0xe3, 0xa9, 0x69, 0xff, 0xe3, 0xab, 0x6c, 0xff, 0xe4, 0xab, 0x6c, 0xff, 0xe4, 0xab, 0x6c, 0xff, 0xe5, 0xa8, 0x6b, 0xff, 0xe4, 0xa7, 0x6a, 0xff, 0xe3, 0xa5, 0x68, 0xff, 0xe4, 0xa2, 0x65, 0xff, 0xe3, 0x9f, 0x62, 0xff, 0xdf, 0x99, 0x5e, 0xff, 0xd7, 0x94, 0x5a, 0xff, 0xce, 0x8f, 0x57, 0xff, 0xc6, 0x8c, 0x54, 0xff, 0xc2, 0x88, 0x51, 0xff, 0xbe, 0x85, 0x4f, 0xff, 0xba, 0x82, 0x4e, 0xff, 0xb8, 0x7e, 0x4c, 0xff, 0xb7, 0x7d, 0x4b, 0xff, 0xb4, 0x7a, 0x47, 0xff, 0xaf, 0x74, 0x42, 0xff, 0xad, 0x71, 0x40, 0xff, 0xab, 0x71, 0x40, 0xff, 0xa9, 0x6f, 0x3f, 0xff, 0xa6, 0x6b, 0x3c, 0xff, 0xa4, 0x68, 0x39, 0xff, 0xa2, 0x66, 0x38, 0xff, 0xa0, 0x64, 0x38, 0xff, 0xa8, 0x6c, 0x40, 0xff, 0xad, 0x71, 0x44, 0xff, 0xaa, 0x6e, 0x3f, 0xff, 0xa7, 0x6a, 0x3c, 0xff, 0xa3, 0x66, 0x39, 0xff, 0xa0, 0x62, 0x37, 0xff, 0x9c, 0x5f, 0x35, 0xff, 0x99, 0x5c, 0x33, 0xff, 0x96, 0x58, 0x31, 0xff, 0x92, 0x55, 0x30, 0xff, 0x8f, 0x53, 0x2e, 0xff, 0x8c, 0x4f, 0x2d, 0xff, 0x89, 0x4c, 0x2a, 0xff, 0x86, 0x4a, 0x28, 0xff, 0x85, 0x49, 0x26, 0xff, 0x82, 0x48, 0x24, 0xff, 0x7f, 0x46, 0x22, 0xff, 0x7f, 0x46, 0x21, 0xff, 0x7b, 0x43, 0x1e, 0xff, 0x78, 0x41, 0x1e, 0xff, 0x75, 0x40, 0x1c, 0xff, 0x74, 0x3f, 0x1a, 0xff, 0x72, 0x3c, 0x19, 0xff, 0x70, 0x3a, 0x19, 0xff, 0x70, 0x39, 0x19, 0xff, 0x70, 0x38, 0x19, 0xff, 0x71, 0x39, 0x19, 0xff, 0x71, 0x39, 0x19, 0xff, 0x71, 0x39, 0x19, 0xff, 0x71, 0x3a, 0x19, 0xff, 0x70, 0x39, 0x19, 0xff, 0x71, 0x3b, 0x19, 0xff, 0x73, 0x3b, 0x19, 0xff, 0x73, 0x3c, 0x19, 0xff, 0x77, 0x3f, 0x19, 0xff, 0x79, 0x40, 0x1a, 0xff, 0x7b, 0x41, 0x1a, 0xff, 0x7d, 0x43, 0x1b, 0xff, 0x7f, 0x45, 0x1e, 0xff, 0x82, 0x47, 0x1e, 0xff, 0x84, 0x48, 0x20, 0xff, 0x88, 0x4a, 0x22, 0xff, 0x8a, 0x4d, 0x25, 0xff, 0x88, 0x4b, 0x22, 0xff, 0xa7, 0x67, 0x38, 0xff, 0xab, 0x6c, 0x3b, 0xff, 0xa7, 0x67, 0x39, 0xff, 0xa5, 0x66, 0x37, 0xff, 0xa5, 0x64, 0x37, 0xff, 0xa4, 0x65, 0x37, 0xff, 0xa3, 0x65, 0x36, 0xff, 0xa3, 0x65, 0x38, 0xff, 0xa5, 0x66, 0x38, 0xff, 0xa5, 0x66, 0x38, 0xff, 0xa5, 0x67, 0x38, 0xff, 0xa4, 0x65, 0x36, 0xff, 0xa5, 0x65, 0x37, 0xff, 0xa7, 0x66, 0x38, 0xff, 0xa8, 0x6a, 0x3b, 0xff, 0xad, 0x71, 0x42, 0xff, 0xb2, 0x75, 0x46, 0xff, 0xb0, 0x71, 0x42, 0xff, 0xab, 0x6a, 0x3b, 0xff, 0xa7, 0x67, 0x39, 0xff, 0xa8, 0x68, 0x3a, 0xff, 0xac, 0x6c, 0x3c, 0xff, 0xaf, 0x6f, 0x3e, 0xff, 0xac, 0x6c, 0x3d, 0xff, 0xad, 0x6d, 0x3c, 0xff, 0xab, 0x6b, 0x3c, 0xff, 0x98, 0x5b, 0x34, 0xff, 0x97, 0x5a, 0x34, 0xff, 0x98, 0x5c, 0x34, 0xff, 0x9a, 0x5c, 0x34, 0xff, 0x97, 0x5a, 0x32, 0xff, 0x8e, 0x51, 0x2f, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x8e, 0x51, 0x2e, 0xff, 0x8e, 0x51, 0x2e, 0xff, 0x8c, 0x4e, 0x2d, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x89, 0x4c, 0x2a, 0xff, 0x88, 0x4a, 0x27, 0xff, 0x86, 0x4b, 0x27, 0xff, 0x85, 0x49, 0x25, 0xff, 0x85, 0x49, 0x25, 0xff, 0x83, 0x47, 0x24, 0xff, 0x84, 0x48, 0x23, 0xff, 0x81, 0x45, 0x23, 0xff, 0x80, 0x47, 0x23, 0xff, 0x82, 0x46, 0x24, 0xff, 0x84, 0x48, 0x25, 0xff, 0x83, 0x47, 0x23, 0xff, 0x81, 0x45, 0x23, 0xff, 0x81, 0x46, 0x21, 0xff, 0x82, 0x46, 0x23, 0xff, 0x81, 0x45, 0x23, 0xff, 0x81, 0x46, 0x23, 0xff, 0x82, 0x45, 0x23, 0xff, 0x84, 0x47, 0x24, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x91, 0x54, 0x31, 0xff, 0x8e, 0x51, 0x2f, 0xff, 0x8d, 0x50, 0x2e, 0xff, 0x8d, 0x50, 0x2e, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x89, 0x4d, 0x2a, 0xff, 0x85, 0x49, 0x27, 0xff, 0x83, 0x46, 0x24, 0xff, 0x80, 0x44, 0x21, 0xff, 0x80, 0x44, 0x22, 0xff, 0x7e, 0x42, 0x1f, 0xff, + 0x7d, 0x42, 0x1f, 0xff, 0x7d, 0x43, 0x1d, 0xff, 0x7a, 0x41, 0x1d, 0xff, 0x78, 0x40, 0x1d, 0xff, 0x76, 0x3d, 0x1b, 0xff, 0x77, 0x3f, 0x1b, 0xff, 0x77, 0x3f, 0x1b, 0xff, 0x74, 0x3c, 0x19, 0xff, 0x73, 0x3b, 0x19, 0xff, 0x71, 0x3b, 0x19, 0xff, 0x73, 0x38, 0x19, 0xff, 0x71, 0x3a, 0x19, 0xff, 0x73, 0x3b, 0x19, 0xff, 0x75, 0x3d, 0x1a, 0xff, 0x77, 0x3f, 0x1b, 0xff, 0x77, 0x40, 0x1b, 0xff, 0x75, 0x3b, 0x19, 0xff, 0x71, 0x38, 0x19, 0xff, 0x71, 0x3b, 0x19, 0xff, 0x71, 0x37, 0x19, 0xff, 0x71, 0x38, 0x19, 0xff, 0x71, 0x3b, 0x19, 0xff, 0x71, 0x39, 0x19, 0xff, 0x73, 0x3c, 0x19, 0xff, 0x77, 0x3f, 0x19, 0xff, 0x7b, 0x41, 0x1b, 0xff, 0x7f, 0x43, 0x1c, 0xff, 0x7f, 0x44, 0x1d, 0xff, 0x83, 0x47, 0x1f, 0xff, 0x85, 0x46, 0x22, 0xff, 0x85, 0x47, 0x22, 0xff, 0x89, 0x4a, 0x24, 0xff, 0x8c, 0x4c, 0x24, 0xff, 0x8a, 0x49, 0x23, 0xff, 0x8e, 0x4d, 0x25, 0xff, 0x92, 0x51, 0x29, 0xff, 0x96, 0x57, 0x2c, 0xff, 0x9a, 0x58, 0x2e, 0xff, 0x9d, 0x5b, 0x30, 0xff, 0x9b, 0x5a, 0x2e, 0xff, 0x9f, 0x5e, 0x30, 0xff, 0xa1, 0x61, 0x32, 0xff, 0xa3, 0x64, 0x34, 0xff, 0xa7, 0x66, 0x35, 0xff, 0xab, 0x68, 0x36, 0xff, 0xae, 0x6c, 0x38, 0xff, 0xb1, 0x71, 0x3a, 0xff, 0xb5, 0x72, 0x3b, 0xff, 0xb7, 0x74, 0x3e, 0xff, 0xba, 0x76, 0x40, 0xff, 0xbd, 0x79, 0x42, 0xff, 0xc2, 0x7d, 0x44, 0xff, 0xc9, 0x82, 0x47, 0xff, 0xd2, 0x87, 0x4a, 0xff, 0xdd, 0x8d, 0x4e, 0xff, 0xe5, 0x93, 0x55, 0xff, 0xe5, 0x99, 0x5a, 0xff, 0xe5, 0x9d, 0x5b, 0xff, 0xe5, 0x99, 0x5a, 0xff, 0xe5, 0x97, 0x5a, 0xff, 0xe5, 0x94, 0x59, 0xff, 0xe6, 0x93, 0x5a, 0xff, 0xe4, 0x92, 0x59, 0xff, 0xe1, 0x92, 0x56, 0xff, 0xe3, 0x99, 0x55, 0xff, 0xe4, 0x9a, 0x56, 0xff, 0xe5, 0x9c, 0x59, 0xff, 0xe4, 0x9d, 0x5b, 0xff, 0xe3, 0xa1, 0x5e, 0xff, 0xe4, 0xa2, 0x5e, 0xff, 0xe2, 0x9a, 0x57, 0xff, 0xe5, 0x99, 0x58, 0xff, 0xe4, 0x9a, 0x58, 0xff, 0xe4, 0x99, 0x59, 0xff, 0xe3, 0x98, 0x59, 0xff, 0xe3, 0x98, 0x5a, 0xff, 0xe3, 0x97, 0x58, 0xff, 0xe1, 0x9a, 0x56, 0xff, 0xe3, 0x98, 0x58, 0xff, 0xe5, 0x98, 0x5c, 0xff, 0xe3, 0x96, 0x59, 0xff, 0xe4, 0x99, 0x5c, 0xff, 0xe3, 0x98, 0x58, 0xff, 0xdd, 0x91, 0x52, 0xff, 0xd9, 0x91, 0x52, 0xff, 0xd8, 0x93, 0x4f, 0xff, 0xd9, 0x92, 0x51, 0xff, 0xd8, 0x95, 0x50, 0xff, 0xd8, 0x93, 0x52, 0xff, 0xdb, 0x99, 0x58, 0xff, 0xdf, 0xa0, 0x5e, 0xff, 0xdf, 0xa9, 0x65, 0xff, 0xe3, 0xac, 0x6c, 0xff, 0xe3, 0xab, 0x6c, 0xff, 0xe3, 0xb1, 0x6e, 0xff, 0xe4, 0xb5, 0x72, 0xff, 0xe5, 0xb7, 0x72, 0xff, 0xe5, 0xb6, 0x6f, 0xff, 0xe5, 0xb5, 0x71, 0xff, 0xe4, 0xb4, 0x6f, 0xff, 0xe4, 0xaf, 0x6d, 0xff, 0xe3, 0xa9, 0x6b, 0xff, 0xe3, 0xa6, 0x68, 0xff, 0xe4, 0xa1, 0x65, 0xff, 0xe2, 0x9b, 0x62, 0xff, 0xdb, 0x95, 0x5b, 0xff, 0xd0, 0x8f, 0x55, 0xff, 0xc9, 0x8d, 0x54, 0xff, 0xc6, 0x8b, 0x54, 0xff, 0xc1, 0x87, 0x52, 0xff, 0xbc, 0x83, 0x50, 0xff, 0xba, 0x81, 0x50, 0xff, 0xb6, 0x7c, 0x49, 0xff, 0xb2, 0x77, 0x43, 0xff, 0xb0, 0x76, 0x44, 0xff, 0xad, 0x74, 0x44, 0xff, 0xaa, 0x71, 0x42, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xa6, 0x6c, 0x3c, 0xff, 0xa4, 0x68, 0x39, 0xff, 0xa6, 0x6a, 0x3c, 0xff, 0xad, 0x72, 0x43, 0xff, 0xae, 0x72, 0x43, 0xff, 0xab, 0x6e, 0x40, 0xff, 0xa9, 0x6c, 0x3d, 0xff, 0xa5, 0x67, 0x3a, 0xff, 0xa2, 0x63, 0x39, 0xff, 0x9f, 0x61, 0x36, 0xff, 0x9b, 0x5d, 0x33, 0xff, 0x96, 0x58, 0x31, 0xff, 0x93, 0x57, 0x31, 0xff, 0x90, 0x54, 0x2f, 0xff, 0x8d, 0x50, 0x2d, 0xff, 0x8a, 0x4e, 0x2a, 0xff, 0x87, 0x4b, 0x28, 0xff, 0x85, 0x49, 0x25, 0xff, 0x82, 0x47, 0x23, 0xff, 0x80, 0x46, 0x21, 0xff, 0x7f, 0x45, 0x20, 0xff, 0x7c, 0x42, 0x1e, 0xff, 0x77, 0x40, 0x1e, 0xff, 0x75, 0x40, 0x1c, 0xff, 0x72, 0x3e, 0x19, 0xff, 0x70, 0x38, 0x19, 0xff, 0x6e, 0x36, 0x19, 0xff, 0x6d, 0x37, 0x19, 0xff, 0x6d, 0x38, 0x19, 0xff, 0x6d, 0x37, 0x19, 0xff, 0x6d, 0x37, 0x19, 0xff, 0x6d, 0x36, 0x19, 0xff, 0x6d, 0x37, 0x19, 0xff, 0x6d, 0x37, 0x19, 0xff, 0x70, 0x37, 0x19, 0xff, 0x71, 0x39, 0x19, 0xff, 0x72, 0x39, 0x19, 0xff, 0x71, 0x3a, 0x19, 0xff, 0x74, 0x3c, 0x19, 0xff, 0x76, 0x3d, 0x19, 0xff, 0x7a, 0x41, 0x19, 0xff, 0x7d, 0x42, 0x19, 0xff, 0x7f, 0x45, 0x1c, 0xff, 0x82, 0x47, 0x1e, 0xff, 0x84, 0x48, 0x1f, 0xff, 0x86, 0x47, 0x20, 0xff, 0x8b, 0x4c, 0x26, 0xff, 0xa5, 0x66, 0x37, 0xff, 0xa9, 0x68, 0x39, 0xff, 0xa6, 0x66, 0x37, 0xff, 0xa3, 0x64, 0x34, 0xff, 0xa1, 0x61, 0x33, 0xff, 0xa1, 0x61, 0x33, 0xff, 0xa1, 0x61, 0x34, 0xff, 0xa1, 0x60, 0x35, 0xff, 0xa1, 0x61, 0x36, 0xff, 0xa3, 0x64, 0x36, 0xff, 0xa2, 0x62, 0x36, 0xff, 0xa0, 0x5f, 0x34, 0xff, 0x9f, 0x5f, 0x34, 0xff, 0xa0, 0x60, 0x34, 0xff, 0x9e, 0x5d, 0x34, 0xff, 0xab, 0x6b, 0x3c, 0xff, 0xaa, 0x6a, 0x3c, 0xff, 0xa9, 0x69, 0x3a, 0xff, 0xa7, 0x66, 0x39, 0xff, 0xa5, 0x63, 0x37, 0xff, 0xa6, 0x64, 0x38, 0xff, 0xa9, 0x68, 0x3a, 0xff, 0xad, 0x6d, 0x3c, 0xff, 0xb0, 0x71, 0x40, 0xff, 0xb1, 0x72, 0x42, 0xff, 0xa2, 0x64, 0x39, 0xff, 0x97, 0x5a, 0x34, 0xff, 0x98, 0x5a, 0x34, 0xff, 0x99, 0x5b, 0x34, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x98, 0x5b, 0x32, 0xff, 0x8e, 0x50, 0x2e, 0xff, 0x8e, 0x51, 0x2e, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x8d, 0x4e, 0x2d, 0xff, 0x8c, 0x4e, 0x2d, 0xff, 0x8b, 0x4d, 0x2c, 0xff, 0x88, 0x4b, 0x29, 0xff, 0x87, 0x4a, 0x28, 0xff, 0x85, 0x4a, 0x26, 0xff, 0x83, 0x49, 0x26, 0xff, 0x85, 0x48, 0x25, 0xff, 0x83, 0x46, 0x24, 0xff, 0x81, 0x45, 0x22, 0xff, 0x81, 0x46, 0x24, 0xff, 0x80, 0x46, 0x23, 0xff, 0x81, 0x47, 0x23, 0xff, 0x83, 0x46, 0x24, 0xff, 0x81, 0x45, 0x22, 0xff, 0x81, 0x45, 0x22, 0xff, 0x80, 0x44, 0x20, 0xff, 0x80, 0x44, 0x1f, 0xff, 0x80, 0x46, 0x21, 0xff, 0x80, 0x45, 0x1f, 0xff, 0x80, 0x45, 0x22, 0xff, 0x7f, 0x44, 0x21, 0xff, 0x7f, 0x44, 0x1f, 0xff, 0x8a, 0x4f, 0x2d, 0xff, 0x90, 0x52, 0x30, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8e, 0x52, 0x2f, 0xff, 0x8e, 0x50, 0x2e, 0xff, 0x8b, 0x4e, 0x2d, 0xff, 0x89, 0x4c, 0x2a, 0xff, 0x87, 0x49, 0x27, 0xff, 0x84, 0x48, 0x24, 0xff, 0x82, 0x46, 0x23, 0xff, 0x80, 0x45, 0x21, 0xff, 0x80, 0x44, 0x1f, 0xff, + 0x7e, 0x42, 0x1f, 0xff, 0x7d, 0x43, 0x1f, 0xff, 0x7d, 0x41, 0x1d, 0xff, 0x79, 0x41, 0x1d, 0xff, 0x79, 0x3f, 0x1b, 0xff, 0x77, 0x3f, 0x1b, 0xff, 0x79, 0x3f, 0x1b, 0xff, 0x79, 0x41, 0x1d, 0xff, 0x76, 0x3d, 0x1a, 0xff, 0x75, 0x3c, 0x1a, 0xff, 0x73, 0x3b, 0x19, 0xff, 0x74, 0x3c, 0x18, 0xff, 0x75, 0x3d, 0x19, 0xff, 0x77, 0x3f, 0x1a, 0xff, 0x77, 0x3f, 0x1b, 0xff, 0x77, 0x3d, 0x1a, 0xff, 0x70, 0x38, 0x19, 0xff, 0x71, 0x3c, 0x19, 0xff, 0x6f, 0x37, 0x19, 0xff, 0x71, 0x3b, 0x19, 0xff, 0x6f, 0x39, 0x19, 0xff, 0x6f, 0x38, 0x19, 0xff, 0x71, 0x36, 0x19, 0xff, 0x72, 0x3a, 0x18, 0xff, 0x75, 0x3d, 0x1b, 0xff, 0x79, 0x40, 0x1b, 0xff, 0x7c, 0x43, 0x1b, 0xff, 0x7e, 0x44, 0x1d, 0xff, 0x80, 0x45, 0x1d, 0xff, 0x83, 0x46, 0x1f, 0xff, 0x84, 0x47, 0x21, 0xff, 0x87, 0x47, 0x21, 0xff, 0x8a, 0x49, 0x24, 0xff, 0x8a, 0x4b, 0x24, 0xff, 0x8a, 0x4a, 0x23, 0xff, 0x8f, 0x4f, 0x26, 0xff, 0x94, 0x54, 0x2a, 0xff, 0x98, 0x56, 0x2c, 0xff, 0x9c, 0x59, 0x2f, 0xff, 0x9f, 0x5d, 0x32, 0xff, 0x9c, 0x5a, 0x30, 0xff, 0xa0, 0x5f, 0x32, 0xff, 0xa3, 0x64, 0x34, 0xff, 0xa5, 0x67, 0x35, 0xff, 0xa8, 0x67, 0x36, 0xff, 0xac, 0x6a, 0x37, 0xff, 0xaf, 0x6e, 0x39, 0xff, 0xb3, 0x72, 0x3b, 0xff, 0xb6, 0x72, 0x3c, 0xff, 0xb7, 0x74, 0x3f, 0xff, 0xba, 0x77, 0x42, 0xff, 0xbf, 0x7c, 0x45, 0xff, 0xc4, 0x7f, 0x46, 0xff, 0xcd, 0x86, 0x4a, 0xff, 0xdd, 0x8d, 0x51, 0xff, 0xe5, 0x94, 0x57, 0xff, 0xe5, 0x9b, 0x5d, 0xff, 0xe5, 0xa0, 0x61, 0xff, 0xe5, 0x9e, 0x5f, 0xff, 0xe2, 0x98, 0x5d, 0xff, 0xdd, 0x93, 0x58, 0xff, 0xde, 0x91, 0x58, 0xff, 0xe6, 0x94, 0x5a, 0xff, 0xe1, 0x95, 0x56, 0xff, 0xe3, 0x99, 0x54, 0xff, 0xe4, 0x99, 0x55, 0xff, 0xe3, 0x99, 0x56, 0xff, 0xe5, 0x9a, 0x59, 0xff, 0xe5, 0x9d, 0x5a, 0xff, 0xe5, 0xa1, 0x5e, 0xff, 0xe3, 0xa0, 0x5f, 0xff, 0xe3, 0x98, 0x55, 0xff, 0xe5, 0x9a, 0x57, 0xff, 0xe3, 0x9a, 0x58, 0xff, 0xe5, 0x9a, 0x59, 0xff, 0xe5, 0x97, 0x5a, 0xff, 0xe2, 0x94, 0x57, 0xff, 0xde, 0x98, 0x54, 0xff, 0xe1, 0x9a, 0x58, 0xff, 0xe5, 0x96, 0x5a, 0xff, 0xe4, 0x94, 0x58, 0xff, 0xe5, 0x98, 0x5b, 0xff, 0xe2, 0x98, 0x5a, 0xff, 0xdb, 0x93, 0x56, 0xff, 0xd8, 0x8f, 0x52, 0xff, 0xd8, 0x93, 0x4f, 0xff, 0xd7, 0x94, 0x4e, 0xff, 0xda, 0x95, 0x53, 0xff, 0xdb, 0x98, 0x56, 0xff, 0xda, 0x99, 0x5a, 0xff, 0xdd, 0x9c, 0x5f, 0xff, 0xe2, 0xa8, 0x69, 0xff, 0xe4, 0xad, 0x6e, 0xff, 0xe3, 0xae, 0x6f, 0xff, 0xe4, 0xb6, 0x72, 0xff, 0xe6, 0xc1, 0x77, 0xff, 0xe5, 0xc4, 0x78, 0xff, 0xe4, 0xc6, 0x79, 0xff, 0xe4, 0xc8, 0x7a, 0xff, 0xe2, 0xc2, 0x78, 0xff, 0xe3, 0xc1, 0x76, 0xff, 0xe5, 0xbb, 0x74, 0xff, 0xe4, 0xb0, 0x71, 0xff, 0xe4, 0xa9, 0x6c, 0xff, 0xe4, 0xa3, 0x66, 0xff, 0xe3, 0x9c, 0x61, 0xff, 0xdc, 0x95, 0x5c, 0xff, 0xd4, 0x92, 0x5b, 0xff, 0xcc, 0x8f, 0x57, 0xff, 0xc5, 0x8a, 0x54, 0xff, 0xc3, 0x89, 0x53, 0xff, 0xbe, 0x84, 0x50, 0xff, 0xb9, 0x7f, 0x4b, 0xff, 0xb6, 0x7c, 0x48, 0xff, 0xb4, 0x7b, 0x48, 0xff, 0xb1, 0x79, 0x47, 0xff, 0xad, 0x76, 0x45, 0xff, 0xab, 0x72, 0x42, 0xff, 0xa8, 0x6e, 0x40, 0xff, 0xa5, 0x6b, 0x3d, 0xff, 0xaa, 0x6e, 0x3f, 0xff, 0xb1, 0x74, 0x45, 0xff, 0xb0, 0x73, 0x43, 0xff, 0xad, 0x71, 0x41, 0xff, 0xaa, 0x6e, 0x3e, 0xff, 0xa6, 0x69, 0x3a, 0xff, 0xa4, 0x65, 0x38, 0xff, 0xa1, 0x63, 0x37, 0xff, 0x9c, 0x5e, 0x34, 0xff, 0x98, 0x59, 0x32, 0xff, 0x96, 0x58, 0x31, 0xff, 0x93, 0x56, 0x30, 0xff, 0x90, 0x52, 0x2d, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x89, 0x4c, 0x2b, 0xff, 0x86, 0x4a, 0x26, 0xff, 0x83, 0x46, 0x24, 0xff, 0x81, 0x46, 0x24, 0xff, 0x7e, 0x44, 0x21, 0xff, 0x7b, 0x42, 0x1e, 0xff, 0x78, 0x40, 0x1d, 0xff, 0x74, 0x40, 0x1b, 0xff, 0x72, 0x3d, 0x19, 0xff, 0x71, 0x37, 0x19, 0xff, 0x6f, 0x38, 0x19, 0xff, 0x6b, 0x37, 0x19, 0xff, 0x68, 0x35, 0x19, 0xff, 0x6b, 0x36, 0x19, 0xff, 0x6c, 0x37, 0x19, 0xff, 0x6b, 0x38, 0x19, 0xff, 0x6b, 0x38, 0x19, 0xff, 0x6c, 0x37, 0x19, 0xff, 0x6d, 0x37, 0x19, 0xff, 0x6f, 0x37, 0x19, 0xff, 0x6f, 0x37, 0x19, 0xff, 0x70, 0x3a, 0x19, 0xff, 0x71, 0x3a, 0x19, 0xff, 0x73, 0x3a, 0x19, 0xff, 0x75, 0x3e, 0x19, 0xff, 0x78, 0x40, 0x19, 0xff, 0x7b, 0x41, 0x19, 0xff, 0x7e, 0x43, 0x19, 0xff, 0x81, 0x44, 0x1d, 0xff, 0x83, 0x47, 0x20, 0xff, 0x8d, 0x4e, 0x28, 0xff, 0xa5, 0x65, 0x37, 0xff, 0xa7, 0x69, 0x38, 0xff, 0xa3, 0x62, 0x35, 0xff, 0xa1, 0x61, 0x33, 0xff, 0x9f, 0x60, 0x32, 0xff, 0x9f, 0x5e, 0x33, 0xff, 0x9f, 0x5e, 0x33, 0xff, 0x9f, 0x5f, 0x34, 0xff, 0xa1, 0x60, 0x35, 0xff, 0xa1, 0x61, 0x35, 0xff, 0xa1, 0x60, 0x35, 0xff, 0x9e, 0x5e, 0x33, 0xff, 0x9b, 0x5d, 0x32, 0xff, 0x9a, 0x5b, 0x31, 0xff, 0xa1, 0x61, 0x35, 0xff, 0xa4, 0x64, 0x36, 0xff, 0xa3, 0x62, 0x36, 0xff, 0xa3, 0x62, 0x36, 0xff, 0xa1, 0x60, 0x35, 0xff, 0xa2, 0x61, 0x35, 0xff, 0xa3, 0x62, 0x36, 0xff, 0xa5, 0x64, 0x37, 0xff, 0xa9, 0x69, 0x3c, 0xff, 0xad, 0x6d, 0x3d, 0xff, 0xaf, 0x71, 0x3f, 0xff, 0x9b, 0x5d, 0x36, 0xff, 0x97, 0x5b, 0x34, 0xff, 0x98, 0x5b, 0x34, 0xff, 0x99, 0x5b, 0x34, 0xff, 0x98, 0x5b, 0x33, 0xff, 0x98, 0x5b, 0x33, 0xff, 0x91, 0x54, 0x2f, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8b, 0x4d, 0x2c, 0xff, 0x89, 0x4b, 0x28, 0xff, 0x86, 0x49, 0x27, 0xff, 0x84, 0x49, 0x26, 0xff, 0x84, 0x47, 0x26, 0xff, 0x84, 0x47, 0x25, 0xff, 0x80, 0x47, 0x24, 0xff, 0x7f, 0x46, 0x23, 0xff, 0x7f, 0x46, 0x22, 0xff, 0x80, 0x45, 0x21, 0xff, 0x7f, 0x45, 0x22, 0xff, 0x82, 0x47, 0x22, 0xff, 0x81, 0x45, 0x22, 0xff, 0x81, 0x46, 0x22, 0xff, 0x7e, 0x44, 0x22, 0xff, 0x7e, 0x42, 0x1f, 0xff, 0x80, 0x45, 0x22, 0xff, 0x7e, 0x42, 0x22, 0xff, 0x7f, 0x43, 0x20, 0xff, 0x7e, 0x42, 0x1f, 0xff, 0x7e, 0x42, 0x1f, 0xff, 0x7c, 0x41, 0x1e, 0xff, 0x88, 0x4c, 0x2d, 0xff, 0x90, 0x53, 0x30, 0xff, 0x90, 0x53, 0x30, 0xff, 0x90, 0x53, 0x30, 0xff, 0x8f, 0x53, 0x2f, 0xff, 0x8c, 0x4e, 0x2d, 0xff, 0x8a, 0x4d, 0x2b, 0xff, 0x88, 0x4a, 0x27, 0xff, 0x84, 0x47, 0x24, 0xff, 0x83, 0x46, 0x23, 0xff, 0x81, 0x45, 0x22, 0xff, 0x7f, 0x45, 0x22, 0xff, + 0x80, 0x44, 0x20, 0xff, 0x7e, 0x43, 0x20, 0xff, 0x7d, 0x43, 0x1f, 0xff, 0x7b, 0x41, 0x1d, 0xff, 0x79, 0x40, 0x1a, 0xff, 0x79, 0x40, 0x1d, 0xff, 0x79, 0x40, 0x1e, 0xff, 0x79, 0x40, 0x1b, 0xff, 0x7c, 0x42, 0x1e, 0xff, 0x7a, 0x40, 0x1b, 0xff, 0x77, 0x3e, 0x1a, 0xff, 0x77, 0x3f, 0x1a, 0xff, 0x78, 0x40, 0x1b, 0xff, 0x78, 0x40, 0x1b, 0xff, 0x77, 0x3f, 0x1a, 0xff, 0x71, 0x3b, 0x18, 0xff, 0x71, 0x39, 0x19, 0xff, 0x72, 0x3c, 0x18, 0xff, 0x71, 0x36, 0x19, 0xff, 0x70, 0x38, 0x18, 0xff, 0x6e, 0x36, 0x19, 0xff, 0x6f, 0x37, 0x19, 0xff, 0x70, 0x39, 0x18, 0xff, 0x71, 0x3b, 0x19, 0xff, 0x75, 0x3d, 0x1a, 0xff, 0x79, 0x40, 0x1b, 0xff, 0x7a, 0x42, 0x1c, 0xff, 0x7d, 0x43, 0x1d, 0xff, 0x7e, 0x44, 0x21, 0xff, 0x81, 0x45, 0x1f, 0xff, 0x84, 0x46, 0x21, 0xff, 0x84, 0x46, 0x22, 0xff, 0x88, 0x48, 0x22, 0xff, 0x8a, 0x4b, 0x23, 0xff, 0x8b, 0x4b, 0x24, 0xff, 0x8d, 0x4c, 0x24, 0xff, 0x91, 0x51, 0x29, 0xff, 0x94, 0x53, 0x2c, 0xff, 0x98, 0x57, 0x2e, 0xff, 0x9c, 0x5b, 0x2f, 0xff, 0xa0, 0x5e, 0x31, 0xff, 0x9d, 0x5e, 0x32, 0xff, 0x9e, 0x60, 0x33, 0xff, 0xa2, 0x64, 0x35, 0xff, 0xa7, 0x68, 0x36, 0xff, 0xaa, 0x69, 0x36, 0xff, 0xad, 0x6b, 0x39, 0xff, 0xb1, 0x71, 0x3b, 0xff, 0xb3, 0x72, 0x3c, 0xff, 0xb5, 0x73, 0x3d, 0xff, 0xb9, 0x76, 0x40, 0xff, 0xbe, 0x7a, 0x44, 0xff, 0xc0, 0x7d, 0x46, 0xff, 0xc9, 0x84, 0x49, 0xff, 0xd6, 0x8b, 0x50, 0xff, 0xe2, 0x93, 0x57, 0xff, 0xe5, 0x9b, 0x5e, 0xff, 0xe3, 0x9f, 0x65, 0xff, 0xd7, 0x97, 0x5d, 0xff, 0xd7, 0x91, 0x58, 0xff, 0xd8, 0x91, 0x58, 0xff, 0xdd, 0x93, 0x5a, 0xff, 0xe6, 0x96, 0x5c, 0xff, 0xe3, 0x97, 0x59, 0xff, 0xe4, 0x9b, 0x57, 0xff, 0xe4, 0x9b, 0x55, 0xff, 0xe4, 0x99, 0x56, 0xff, 0xe4, 0x9b, 0x58, 0xff, 0xe4, 0x9e, 0x5b, 0xff, 0xe4, 0x9f, 0x5d, 0xff, 0xe6, 0xa1, 0x60, 0xff, 0xe4, 0xa2, 0x60, 0xff, 0xe1, 0x99, 0x59, 0xff, 0xe4, 0x98, 0x57, 0xff, 0xe5, 0x9a, 0x58, 0xff, 0xe3, 0x97, 0x58, 0xff, 0xe3, 0x96, 0x58, 0xff, 0xde, 0x97, 0x55, 0xff, 0xdd, 0x98, 0x54, 0xff, 0xe2, 0x98, 0x5b, 0xff, 0xe4, 0x95, 0x5a, 0xff, 0xe5, 0x97, 0x5a, 0xff, 0xe4, 0x98, 0x5b, 0xff, 0xde, 0x94, 0x58, 0xff, 0xd8, 0x8f, 0x51, 0xff, 0xd8, 0x94, 0x52, 0xff, 0xd7, 0x95, 0x51, 0xff, 0xd5, 0x92, 0x51, 0xff, 0xd9, 0x97, 0x56, 0xff, 0xde, 0x9c, 0x5c, 0xff, 0xe0, 0xa2, 0x61, 0xff, 0xe0, 0xa7, 0x67, 0xff, 0xe3, 0xac, 0x6d, 0xff, 0xe3, 0xb1, 0x72, 0xff, 0xe5, 0xbc, 0x78, 0xff, 0xe4, 0xc7, 0x7c, 0xff, 0xe2, 0xd0, 0x7f, 0xff, 0xdf, 0xd1, 0x82, 0xff, 0xdd, 0xd0, 0x82, 0xff, 0xde, 0xce, 0x82, 0xff, 0xe0, 0xcf, 0x80, 0xff, 0xe1, 0xc9, 0x7b, 0xff, 0xe3, 0xbe, 0x76, 0xff, 0xe4, 0xb5, 0x72, 0xff, 0xe4, 0xac, 0x6d, 0xff, 0xe5, 0xa5, 0x68, 0xff, 0xe2, 0x9e, 0x61, 0xff, 0xe0, 0x99, 0x5e, 0xff, 0xdc, 0x98, 0x5e, 0xff, 0xd4, 0x94, 0x5c, 0xff, 0xce, 0x91, 0x5b, 0xff, 0xc7, 0x8b, 0x57, 0xff, 0xba, 0x80, 0x4c, 0xff, 0xb0, 0x75, 0x44, 0xff, 0xaa, 0x6f, 0x42, 0xff, 0xa5, 0x6c, 0x40, 0xff, 0xa2, 0x68, 0x3d, 0xff, 0x9f, 0x65, 0x3b, 0xff, 0x9d, 0x63, 0x3a, 0xff, 0x9d, 0x63, 0x3a, 0xff, 0xa9, 0x6d, 0x41, 0xff, 0xb1, 0x74, 0x44, 0xff, 0xae, 0x71, 0x42, 0xff, 0xad, 0x6f, 0x42, 0xff, 0xaa, 0x6c, 0x3e, 0xff, 0xa6, 0x69, 0x3b, 0xff, 0xa4, 0x66, 0x39, 0xff, 0xa2, 0x64, 0x38, 0xff, 0x9f, 0x61, 0x35, 0xff, 0x9b, 0x5d, 0x33, 0xff, 0x97, 0x59, 0x31, 0xff, 0x93, 0x56, 0x2f, 0xff, 0x90, 0x53, 0x2f, 0xff, 0x8d, 0x50, 0x2c, 0xff, 0x8a, 0x4d, 0x2a, 0xff, 0x88, 0x4b, 0x27, 0xff, 0x85, 0x48, 0x25, 0xff, 0x81, 0x46, 0x22, 0xff, 0x7e, 0x44, 0x1f, 0xff, 0x7c, 0x42, 0x1d, 0xff, 0x7a, 0x41, 0x1c, 0xff, 0x75, 0x40, 0x1a, 0xff, 0x71, 0x3d, 0x19, 0xff, 0x71, 0x38, 0x19, 0xff, 0x6f, 0x36, 0x19, 0xff, 0x6b, 0x36, 0x19, 0xff, 0x69, 0x35, 0x19, 0xff, 0x68, 0x35, 0x19, 0xff, 0x68, 0x35, 0x19, 0xff, 0x69, 0x36, 0x19, 0xff, 0x68, 0x36, 0x19, 0xff, 0x69, 0x35, 0x19, 0xff, 0x6a, 0x36, 0x19, 0xff, 0x6b, 0x35, 0x19, 0xff, 0x6b, 0x35, 0x19, 0xff, 0x6c, 0x36, 0x19, 0xff, 0x6e, 0x37, 0x19, 0xff, 0x70, 0x37, 0x19, 0xff, 0x72, 0x3b, 0x19, 0xff, 0x74, 0x3d, 0x19, 0xff, 0x76, 0x3e, 0x19, 0xff, 0x7a, 0x40, 0x19, 0xff, 0x7e, 0x42, 0x1a, 0xff, 0x81, 0x43, 0x1d, 0xff, 0x8d, 0x4f, 0x29, 0xff, 0xa3, 0x65, 0x37, 0xff, 0xa7, 0x67, 0x37, 0xff, 0xa2, 0x61, 0x35, 0xff, 0xa0, 0x5f, 0x32, 0xff, 0x9d, 0x5d, 0x32, 0xff, 0x9d, 0x5e, 0x32, 0xff, 0x9e, 0x5e, 0x33, 0xff, 0xa0, 0x5f, 0x35, 0xff, 0xa1, 0x60, 0x35, 0xff, 0xa0, 0x5f, 0x34, 0xff, 0x9f, 0x5f, 0x34, 0xff, 0x9d, 0x5d, 0x32, 0xff, 0x9b, 0x5b, 0x32, 0xff, 0x99, 0x58, 0x30, 0xff, 0xa1, 0x61, 0x35, 0xff, 0xa1, 0x60, 0x35, 0xff, 0x9e, 0x5d, 0x32, 0xff, 0x9e, 0x5e, 0x32, 0xff, 0x9e, 0x5d, 0x32, 0xff, 0x9d, 0x5d, 0x32, 0xff, 0x9e, 0x5e, 0x34, 0xff, 0xa0, 0x60, 0x35, 0xff, 0xa3, 0x62, 0x37, 0xff, 0xa8, 0x68, 0x39, 0xff, 0xab, 0x6c, 0x3d, 0xff, 0x9a, 0x5d, 0x35, 0xff, 0x97, 0x5a, 0x33, 0xff, 0x98, 0x5b, 0x34, 0xff, 0x98, 0x5a, 0x34, 0xff, 0x97, 0x5a, 0x33, 0xff, 0x97, 0x5b, 0x33, 0xff, 0x93, 0x57, 0x31, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x8a, 0x4d, 0x2c, 0xff, 0x8b, 0x4d, 0x2c, 0xff, 0x8a, 0x4e, 0x2a, 0xff, 0x88, 0x4b, 0x2a, 0xff, 0x86, 0x49, 0x26, 0xff, 0x83, 0x48, 0x25, 0xff, 0x83, 0x47, 0x24, 0xff, 0x80, 0x47, 0x24, 0xff, 0x80, 0x46, 0x24, 0xff, 0x80, 0x45, 0x23, 0xff, 0x7f, 0x45, 0x22, 0xff, 0x7e, 0x43, 0x1f, 0xff, 0x81, 0x45, 0x21, 0xff, 0x82, 0x45, 0x22, 0xff, 0x80, 0x44, 0x22, 0xff, 0x7f, 0x43, 0x22, 0xff, 0x7d, 0x42, 0x1f, 0xff, 0x7e, 0x42, 0x21, 0xff, 0x7d, 0x43, 0x20, 0xff, 0x7e, 0x42, 0x1f, 0xff, 0x7d, 0x43, 0x1f, 0xff, 0x7c, 0x41, 0x1f, 0xff, 0x7c, 0x43, 0x1e, 0xff, 0x7c, 0x42, 0x1e, 0xff, 0x87, 0x4a, 0x29, 0xff, 0x92, 0x55, 0x32, 0xff, 0x92, 0x55, 0x31, 0xff, 0x91, 0x54, 0x32, 0xff, 0x90, 0x53, 0x30, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x8b, 0x4e, 0x2c, 0xff, 0x88, 0x4b, 0x27, 0xff, 0x86, 0x49, 0x27, 0xff, 0x83, 0x48, 0x24, 0xff, 0x82, 0x46, 0x23, 0xff, 0x80, 0x45, 0x21, 0xff, + 0x81, 0x46, 0x23, 0xff, 0x7e, 0x44, 0x22, 0xff, 0x7e, 0x43, 0x20, 0xff, 0x7b, 0x43, 0x1f, 0xff, 0x7b, 0x40, 0x1d, 0xff, 0x7a, 0x40, 0x1c, 0xff, 0x79, 0x40, 0x1a, 0xff, 0x7a, 0x40, 0x1c, 0xff, 0x7d, 0x41, 0x1e, 0xff, 0x7d, 0x43, 0x1d, 0xff, 0x7d, 0x42, 0x1d, 0xff, 0x7a, 0x40, 0x1c, 0xff, 0x7a, 0x40, 0x1a, 0xff, 0x78, 0x3f, 0x1a, 0xff, 0x73, 0x3e, 0x19, 0xff, 0x72, 0x3b, 0x18, 0xff, 0x70, 0x38, 0x18, 0xff, 0x71, 0x39, 0x18, 0xff, 0x70, 0x3a, 0x18, 0xff, 0x6f, 0x37, 0x18, 0xff, 0x6e, 0x36, 0x18, 0xff, 0x6d, 0x36, 0x18, 0xff, 0x71, 0x38, 0x18, 0xff, 0x71, 0x3d, 0x18, 0xff, 0x73, 0x3f, 0x1a, 0xff, 0x75, 0x3f, 0x1d, 0xff, 0x78, 0x42, 0x1e, 0xff, 0x7c, 0x42, 0x1e, 0xff, 0x7c, 0x44, 0x22, 0xff, 0x80, 0x45, 0x1f, 0xff, 0x81, 0x45, 0x22, 0xff, 0x84, 0x46, 0x22, 0xff, 0x85, 0x46, 0x22, 0xff, 0x89, 0x49, 0x22, 0xff, 0x8b, 0x4b, 0x24, 0xff, 0x8a, 0x4b, 0x24, 0xff, 0x8f, 0x4f, 0x25, 0xff, 0x92, 0x52, 0x2a, 0xff, 0x95, 0x53, 0x2c, 0xff, 0x99, 0x58, 0x2e, 0xff, 0x9e, 0x5c, 0x30, 0xff, 0x9f, 0x5f, 0x32, 0xff, 0x9c, 0x5d, 0x32, 0xff, 0xa0, 0x62, 0x35, 0xff, 0xa5, 0x65, 0x36, 0xff, 0xa7, 0x67, 0x36, 0xff, 0xab, 0x6a, 0x38, 0xff, 0xaf, 0x6e, 0x3a, 0xff, 0xb0, 0x6e, 0x3b, 0xff, 0xb2, 0x71, 0x3d, 0xff, 0xb5, 0x75, 0x3e, 0xff, 0xba, 0x79, 0x43, 0xff, 0xbf, 0x7e, 0x45, 0xff, 0xc6, 0x84, 0x48, 0xff, 0xd2, 0x89, 0x4e, 0xff, 0xde, 0x93, 0x56, 0xff, 0xdb, 0x98, 0x5d, 0xff, 0xcd, 0x90, 0x58, 0xff, 0xce, 0x92, 0x59, 0xff, 0xd2, 0x95, 0x5a, 0xff, 0xd5, 0x94, 0x5b, 0xff, 0xda, 0x95, 0x5b, 0xff, 0xe4, 0x9a, 0x5d, 0xff, 0xe0, 0x9b, 0x5c, 0xff, 0xe4, 0x9f, 0x5a, 0xff, 0xe5, 0x9a, 0x57, 0xff, 0xe3, 0x98, 0x56, 0xff, 0xe4, 0x9b, 0x57, 0xff, 0xe4, 0x9e, 0x5a, 0xff, 0xe5, 0x9e, 0x5c, 0xff, 0xe5, 0xa1, 0x60, 0xff, 0xe5, 0xa2, 0x60, 0xff, 0xe4, 0xa0, 0x5e, 0xff, 0xe4, 0x9a, 0x59, 0xff, 0xe5, 0x97, 0x58, 0xff, 0xe3, 0x96, 0x58, 0xff, 0xe3, 0x97, 0x58, 0xff, 0xdf, 0x97, 0x55, 0xff, 0xda, 0x98, 0x52, 0xff, 0xdd, 0x95, 0x57, 0xff, 0xe6, 0x99, 0x5e, 0xff, 0xe4, 0x98, 0x5b, 0xff, 0xe6, 0x99, 0x5c, 0xff, 0xe1, 0x95, 0x59, 0xff, 0xd9, 0x90, 0x52, 0xff, 0xda, 0x94, 0x51, 0xff, 0xd6, 0x92, 0x50, 0xff, 0xd7, 0x94, 0x52, 0xff, 0xdb, 0x99, 0x58, 0xff, 0xdb, 0x9b, 0x5d, 0xff, 0xe0, 0xa0, 0x63, 0xff, 0xe4, 0xaa, 0x6b, 0xff, 0xe3, 0xae, 0x6f, 0xff, 0xe3, 0xb9, 0x76, 0xff, 0xe6, 0xc6, 0x7d, 0xff, 0xe3, 0xcb, 0x80, 0xff, 0xde, 0xd0, 0x86, 0xff, 0xdd, 0xd2, 0x8c, 0xff, 0xde, 0xd3, 0x8d, 0xff, 0xdd, 0xd3, 0x8d, 0xff, 0xde, 0xd2, 0x8b, 0xff, 0xde, 0xd1, 0x87, 0xff, 0xdf, 0xcf, 0x82, 0xff, 0xe3, 0xc7, 0x79, 0xff, 0xe5, 0xbb, 0x73, 0xff, 0xe4, 0xae, 0x70, 0xff, 0xe6, 0xab, 0x6d, 0xff, 0xe8, 0xac, 0x6f, 0xff, 0xd5, 0x9a, 0x62, 0xff, 0xb6, 0x7d, 0x4c, 0xff, 0xad, 0x71, 0x44, 0xff, 0xa6, 0x6a, 0x3f, 0xff, 0x9f, 0x63, 0x39, 0xff, 0x9a, 0x5e, 0x36, 0xff, 0x97, 0x5a, 0x34, 0xff, 0x96, 0x59, 0x33, 0xff, 0x95, 0x5a, 0x34, 0xff, 0x94, 0x59, 0x33, 0xff, 0x92, 0x57, 0x32, 0xff, 0x97, 0x5a, 0x35, 0xff, 0xa8, 0x6b, 0x40, 0xff, 0xb0, 0x72, 0x44, 0xff, 0xad, 0x70, 0x41, 0xff, 0xac, 0x6f, 0x41, 0xff, 0xa9, 0x6c, 0x3e, 0xff, 0xa7, 0x69, 0x3b, 0xff, 0xa6, 0x67, 0x39, 0xff, 0xa4, 0x65, 0x38, 0xff, 0xa2, 0x63, 0x37, 0xff, 0xa0, 0x60, 0x37, 0xff, 0x9d, 0x5e, 0x35, 0xff, 0x9a, 0x5b, 0x33, 0xff, 0x96, 0x59, 0x31, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x8b, 0x4d, 0x2a, 0xff, 0x89, 0x4b, 0x27, 0xff, 0x86, 0x4a, 0x26, 0xff, 0x81, 0x47, 0x23, 0xff, 0x7e, 0x45, 0x20, 0xff, 0x7c, 0x42, 0x1e, 0xff, 0x79, 0x40, 0x1b, 0xff, 0x75, 0x3f, 0x1a, 0xff, 0x72, 0x3e, 0x19, 0xff, 0x70, 0x3a, 0x19, 0xff, 0x6d, 0x36, 0x18, 0xff, 0x6b, 0x36, 0x19, 0xff, 0x69, 0x36, 0x19, 0xff, 0x68, 0x37, 0x18, 0xff, 0x68, 0x37, 0x19, 0xff, 0x67, 0x37, 0x18, 0xff, 0x67, 0x37, 0x18, 0xff, 0x68, 0x37, 0x19, 0xff, 0x68, 0x37, 0x19, 0xff, 0x68, 0x36, 0x18, 0xff, 0x69, 0x36, 0x19, 0xff, 0x6a, 0x37, 0x19, 0xff, 0x6b, 0x37, 0x19, 0xff, 0x6d, 0x36, 0x18, 0xff, 0x6f, 0x37, 0x18, 0xff, 0x71, 0x3a, 0x19, 0xff, 0x72, 0x3b, 0x19, 0xff, 0x75, 0x3d, 0x19, 0xff, 0x7e, 0x44, 0x1d, 0xff, 0x80, 0x43, 0x1b, 0xff, 0x8b, 0x4d, 0x28, 0xff, 0xa1, 0x62, 0x37, 0xff, 0xa5, 0x66, 0x38, 0xff, 0xa2, 0x62, 0x34, 0xff, 0x9e, 0x5e, 0x32, 0xff, 0x9c, 0x5d, 0x32, 0xff, 0x9d, 0x5d, 0x32, 0xff, 0x9e, 0x5e, 0x33, 0xff, 0xa1, 0x61, 0x36, 0xff, 0xa1, 0x61, 0x36, 0xff, 0xa1, 0x61, 0x36, 0xff, 0xa0, 0x60, 0x35, 0xff, 0x9e, 0x60, 0x33, 0xff, 0x9a, 0x5b, 0x31, 0xff, 0x9b, 0x5a, 0x32, 0xff, 0xa1, 0x60, 0x35, 0xff, 0xa0, 0x5f, 0x33, 0xff, 0x9d, 0x5b, 0x32, 0xff, 0x9d, 0x5b, 0x32, 0xff, 0x9b, 0x5b, 0x31, 0xff, 0x9c, 0x5b, 0x32, 0xff, 0x9d, 0x5c, 0x33, 0xff, 0x9f, 0x5d, 0x34, 0xff, 0xa0, 0x5f, 0x35, 0xff, 0xa2, 0x62, 0x36, 0xff, 0xa8, 0x69, 0x3b, 0xff, 0x99, 0x5c, 0x35, 0xff, 0x96, 0x58, 0x32, 0xff, 0x95, 0x58, 0x33, 0xff, 0x97, 0x59, 0x31, 0xff, 0x95, 0x59, 0x32, 0xff, 0x97, 0x59, 0x32, 0xff, 0x97, 0x5a, 0x32, 0xff, 0x8c, 0x4f, 0x2d, 0xff, 0x8a, 0x4d, 0x2c, 0xff, 0x8a, 0x4d, 0x2b, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x88, 0x4b, 0x28, 0xff, 0x85, 0x48, 0x26, 0xff, 0x84, 0x47, 0x24, 0xff, 0x82, 0x47, 0x24, 0xff, 0x81, 0x46, 0x24, 0xff, 0x80, 0x45, 0x23, 0xff, 0x7f, 0x43, 0x21, 0xff, 0x7d, 0x42, 0x20, 0xff, 0x80, 0x45, 0x21, 0xff, 0x80, 0x45, 0x22, 0xff, 0x7f, 0x43, 0x22, 0xff, 0x7f, 0x43, 0x22, 0xff, 0x7d, 0x42, 0x1f, 0xff, 0x7c, 0x42, 0x1f, 0xff, 0x7e, 0x42, 0x20, 0xff, 0x7e, 0x43, 0x1f, 0xff, 0x7d, 0x43, 0x1f, 0xff, 0x7c, 0x41, 0x1e, 0xff, 0x7b, 0x42, 0x1e, 0xff, 0x7b, 0x42, 0x1f, 0xff, 0x7b, 0x41, 0x1d, 0xff, 0x84, 0x49, 0x26, 0xff, 0x92, 0x55, 0x31, 0xff, 0x92, 0x55, 0x31, 0xff, 0x91, 0x55, 0x31, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x8d, 0x50, 0x2f, 0xff, 0x8b, 0x4e, 0x2c, 0xff, 0x89, 0x4a, 0x28, 0xff, 0x88, 0x4a, 0x27, 0xff, 0x84, 0x47, 0x24, 0xff, 0x84, 0x47, 0x24, 0xff, 0x80, 0x46, 0x23, 0xff, + 0x80, 0x46, 0x23, 0xff, 0x80, 0x46, 0x23, 0xff, 0x7f, 0x44, 0x1f, 0xff, 0x7c, 0x42, 0x1f, 0xff, 0x7c, 0x41, 0x1d, 0xff, 0x7b, 0x41, 0x1d, 0xff, 0x7a, 0x41, 0x1d, 0xff, 0x7b, 0x42, 0x1a, 0xff, 0x7e, 0x43, 0x1d, 0xff, 0x7e, 0x43, 0x1e, 0xff, 0x7e, 0x43, 0x1d, 0xff, 0x7e, 0x44, 0x1d, 0xff, 0x7d, 0x42, 0x1d, 0xff, 0x76, 0x3d, 0x1b, 0xff, 0x73, 0x3c, 0x18, 0xff, 0x70, 0x38, 0x18, 0xff, 0x70, 0x38, 0x18, 0xff, 0x70, 0x38, 0x18, 0xff, 0x70, 0x36, 0x18, 0xff, 0x6f, 0x37, 0x18, 0xff, 0x70, 0x38, 0x18, 0xff, 0x6f, 0x36, 0x18, 0xff, 0x70, 0x3c, 0x18, 0xff, 0x73, 0x3c, 0x19, 0xff, 0x76, 0x40, 0x1c, 0xff, 0x79, 0x40, 0x1d, 0xff, 0x79, 0x42, 0x1e, 0xff, 0x7a, 0x42, 0x1f, 0xff, 0x7c, 0x44, 0x22, 0xff, 0x7e, 0x45, 0x22, 0xff, 0x80, 0x46, 0x22, 0xff, 0x82, 0x45, 0x21, 0xff, 0x85, 0x46, 0x22, 0xff, 0x87, 0x47, 0x22, 0xff, 0x89, 0x4a, 0x23, 0xff, 0x8b, 0x4c, 0x24, 0xff, 0x8b, 0x4b, 0x24, 0xff, 0x8f, 0x4e, 0x27, 0xff, 0x92, 0x52, 0x2b, 0xff, 0x96, 0x56, 0x2d, 0xff, 0x9a, 0x59, 0x2e, 0xff, 0x9e, 0x5d, 0x31, 0xff, 0x9c, 0x5c, 0x30, 0xff, 0x9c, 0x60, 0x33, 0xff, 0xa1, 0x62, 0x35, 0xff, 0xa5, 0x63, 0x35, 0xff, 0xa9, 0x66, 0x36, 0xff, 0xab, 0x69, 0x37, 0xff, 0xad, 0x6d, 0x3a, 0xff, 0xaf, 0x70, 0x3c, 0xff, 0xb1, 0x72, 0x3e, 0xff, 0xb7, 0x76, 0x41, 0xff, 0xbd, 0x7d, 0x45, 0xff, 0xc3, 0x80, 0x47, 0xff, 0xcc, 0x86, 0x4b, 0xff, 0xd2, 0x8a, 0x4f, 0xff, 0xc6, 0x88, 0x51, 0xff, 0xc7, 0x8f, 0x57, 0xff, 0xca, 0x90, 0x59, 0xff, 0xce, 0x92, 0x5b, 0xff, 0xd0, 0x94, 0x5d, 0xff, 0xd9, 0x95, 0x5d, 0xff, 0xe1, 0x99, 0x5e, 0xff, 0xdb, 0xa2, 0x61, 0xff, 0xe4, 0xa6, 0x61, 0xff, 0xe6, 0xa1, 0x5c, 0xff, 0xe4, 0x9a, 0x58, 0xff, 0xe4, 0x9a, 0x58, 0xff, 0xe4, 0x9c, 0x59, 0xff, 0xe4, 0x9d, 0x5d, 0xff, 0xe5, 0x9f, 0x5e, 0xff, 0xe5, 0xa1, 0x5f, 0xff, 0xe4, 0xa2, 0x60, 0xff, 0xe3, 0x9d, 0x5d, 0xff, 0xe4, 0x97, 0x57, 0xff, 0xe4, 0x98, 0x58, 0xff, 0xe2, 0x94, 0x57, 0xff, 0xde, 0x94, 0x55, 0xff, 0xd9, 0x96, 0x52, 0xff, 0xdf, 0x97, 0x55, 0xff, 0xe5, 0x95, 0x5a, 0xff, 0xe5, 0x96, 0x5a, 0xff, 0xe5, 0x9a, 0x5c, 0xff, 0xe1, 0x97, 0x5b, 0xff, 0xdb, 0x90, 0x52, 0xff, 0xdd, 0x95, 0x50, 0xff, 0xd9, 0x97, 0x51, 0xff, 0xdc, 0x99, 0x55, 0xff, 0xdc, 0x9b, 0x5a, 0xff, 0xdd, 0x9e, 0x5f, 0xff, 0xde, 0xa3, 0x62, 0xff, 0xe1, 0xa9, 0x6a, 0xff, 0xe3, 0xb4, 0x71, 0xff, 0xe3, 0xbd, 0x78, 0xff, 0xe4, 0xc3, 0x7d, 0xff, 0xdf, 0xcf, 0x84, 0xff, 0xdc, 0xd3, 0x8b, 0xff, 0xde, 0xd2, 0x91, 0xff, 0xdd, 0xd3, 0x95, 0xff, 0xde, 0xd2, 0x94, 0xff, 0xdf, 0xd1, 0x94, 0xff, 0xde, 0xd2, 0x92, 0xff, 0xdc, 0xd1, 0x8c, 0xff, 0xdd, 0xd2, 0x87, 0xff, 0xe4, 0xd0, 0x84, 0xff, 0xd9, 0xb8, 0x77, 0xff, 0xba, 0x8d, 0x5c, 0xff, 0xa0, 0x68, 0x3d, 0xff, 0x98, 0x5c, 0x33, 0xff, 0x9d, 0x62, 0x3a, 0xff, 0x9d, 0x61, 0x39, 0xff, 0x9c, 0x5e, 0x38, 0xff, 0x9a, 0x5d, 0x36, 0xff, 0x98, 0x5d, 0x36, 0xff, 0x97, 0x5d, 0x35, 0xff, 0x97, 0x5c, 0x35, 0xff, 0x96, 0x5b, 0x35, 0xff, 0x94, 0x58, 0x33, 0xff, 0x91, 0x56, 0x32, 0xff, 0x99, 0x5d, 0x35, 0xff, 0xaa, 0x6c, 0x40, 0xff, 0xaf, 0x71, 0x44, 0xff, 0xae, 0x6f, 0x42, 0xff, 0xad, 0x6f, 0x41, 0xff, 0xab, 0x6c, 0x3f, 0xff, 0xa8, 0x69, 0x3b, 0xff, 0xa6, 0x67, 0x39, 0xff, 0xa4, 0x65, 0x39, 0xff, 0xa2, 0x63, 0x38, 0xff, 0xa1, 0x63, 0x36, 0xff, 0xa0, 0x61, 0x36, 0xff, 0x9f, 0x5f, 0x35, 0xff, 0x9d, 0x5e, 0x34, 0xff, 0x9b, 0x5c, 0x33, 0xff, 0x98, 0x5a, 0x33, 0xff, 0x91, 0x53, 0x2e, 0xff, 0x88, 0x4b, 0x28, 0xff, 0x83, 0x47, 0x23, 0xff, 0x80, 0x45, 0x21, 0xff, 0x7e, 0x43, 0x1f, 0xff, 0x7a, 0x41, 0x1b, 0xff, 0x76, 0x3f, 0x1a, 0xff, 0x72, 0x3e, 0x19, 0xff, 0x70, 0x38, 0x18, 0xff, 0x6e, 0x36, 0x18, 0xff, 0x6b, 0x36, 0x19, 0xff, 0x69, 0x36, 0x19, 0xff, 0x68, 0x37, 0x19, 0xff, 0x67, 0x36, 0x18, 0xff, 0x66, 0x35, 0x19, 0xff, 0x67, 0x36, 0x19, 0xff, 0x67, 0x37, 0x18, 0xff, 0x67, 0x37, 0x18, 0xff, 0x67, 0x37, 0x18, 0xff, 0x67, 0x37, 0x18, 0xff, 0x68, 0x37, 0x18, 0xff, 0x68, 0x35, 0x18, 0xff, 0x69, 0x36, 0x18, 0xff, 0x6b, 0x36, 0x18, 0xff, 0x6e, 0x36, 0x19, 0xff, 0x70, 0x39, 0x18, 0xff, 0x6f, 0x37, 0x17, 0xff, 0x7f, 0x44, 0x20, 0xff, 0x7f, 0x44, 0x1d, 0xff, 0x86, 0x49, 0x26, 0xff, 0xa0, 0x61, 0x36, 0xff, 0xa4, 0x66, 0x39, 0xff, 0xa1, 0x60, 0x34, 0xff, 0x9d, 0x5d, 0x31, 0xff, 0x9c, 0x5b, 0x31, 0xff, 0x9d, 0x5c, 0x32, 0xff, 0x9f, 0x5f, 0x34, 0xff, 0xa2, 0x62, 0x37, 0xff, 0xa2, 0x64, 0x38, 0xff, 0xa2, 0x64, 0x38, 0xff, 0xa0, 0x63, 0x36, 0xff, 0x9f, 0x61, 0x35, 0xff, 0x9b, 0x5c, 0x32, 0xff, 0xa1, 0x62, 0x35, 0xff, 0xa2, 0x60, 0x35, 0xff, 0x9e, 0x5d, 0x33, 0xff, 0x9b, 0x5b, 0x32, 0xff, 0x99, 0x5a, 0x31, 0xff, 0x9b, 0x5b, 0x31, 0xff, 0x9a, 0x59, 0x31, 0xff, 0x9b, 0x5a, 0x31, 0xff, 0x9c, 0x5b, 0x32, 0xff, 0x9d, 0x5d, 0x33, 0xff, 0xa0, 0x60, 0x34, 0xff, 0xa5, 0x63, 0x39, 0xff, 0x98, 0x5b, 0x34, 0xff, 0x95, 0x56, 0x32, 0xff, 0x95, 0x57, 0x31, 0xff, 0x95, 0x58, 0x32, 0xff, 0x95, 0x57, 0x31, 0xff, 0x95, 0x57, 0x32, 0xff, 0x97, 0x59, 0x32, 0xff, 0x8c, 0x4e, 0x2d, 0xff, 0x8a, 0x4e, 0x2d, 0xff, 0x89, 0x4d, 0x2c, 0xff, 0x89, 0x4c, 0x2c, 0xff, 0x86, 0x4a, 0x28, 0xff, 0x82, 0x48, 0x26, 0xff, 0x81, 0x47, 0x24, 0xff, 0x81, 0x47, 0x24, 0xff, 0x7f, 0x43, 0x22, 0xff, 0x7f, 0x45, 0x22, 0xff, 0x7c, 0x42, 0x20, 0xff, 0x7e, 0x43, 0x1f, 0xff, 0x80, 0x45, 0x22, 0xff, 0x7f, 0x44, 0x1f, 0xff, 0x7e, 0x42, 0x1f, 0xff, 0x7d, 0x42, 0x1f, 0xff, 0x7d, 0x43, 0x1f, 0xff, 0x7e, 0x43, 0x1f, 0xff, 0x7d, 0x43, 0x1f, 0xff, 0x7d, 0x43, 0x1f, 0xff, 0x7d, 0x43, 0x1f, 0xff, 0x7c, 0x42, 0x1d, 0xff, 0x7b, 0x42, 0x1f, 0xff, 0x7a, 0x41, 0x1d, 0xff, 0x7a, 0x41, 0x1d, 0xff, 0x7f, 0x45, 0x22, 0xff, 0x92, 0x56, 0x32, 0xff, 0x92, 0x55, 0x31, 0xff, 0x92, 0x54, 0x30, 0xff, 0x8d, 0x50, 0x2f, 0xff, 0x8d, 0x50, 0x2f, 0xff, 0x8a, 0x4d, 0x2b, 0xff, 0x89, 0x4d, 0x2a, 0xff, 0x89, 0x4b, 0x28, 0xff, 0x85, 0x48, 0x24, 0xff, 0x85, 0x47, 0x24, 0xff, 0x83, 0x47, 0x24, 0xff, + 0x84, 0x47, 0x25, 0xff, 0x80, 0x45, 0x23, 0xff, 0x80, 0x44, 0x20, 0xff, 0x7e, 0x42, 0x20, 0xff, 0x7d, 0x41, 0x1f, 0xff, 0x7d, 0x42, 0x1f, 0xff, 0x7c, 0x41, 0x1d, 0xff, 0x7c, 0x41, 0x1d, 0xff, 0x7c, 0x41, 0x1d, 0xff, 0x7f, 0x43, 0x1e, 0xff, 0x7f, 0x43, 0x1f, 0xff, 0x80, 0x43, 0x20, 0xff, 0x7b, 0x41, 0x1c, 0xff, 0x74, 0x3b, 0x19, 0xff, 0x70, 0x3c, 0x18, 0xff, 0x70, 0x35, 0x18, 0xff, 0x70, 0x38, 0x18, 0xff, 0x70, 0x38, 0x18, 0xff, 0x70, 0x36, 0x18, 0xff, 0x6f, 0x36, 0x18, 0xff, 0x6f, 0x37, 0x18, 0xff, 0x70, 0x3b, 0x18, 0xff, 0x72, 0x3d, 0x18, 0xff, 0x75, 0x3d, 0x1a, 0xff, 0x75, 0x3f, 0x1c, 0xff, 0x78, 0x41, 0x1d, 0xff, 0x7a, 0x42, 0x1e, 0xff, 0x7b, 0x44, 0x21, 0xff, 0x7f, 0x45, 0x22, 0xff, 0x7e, 0x45, 0x22, 0xff, 0x80, 0x46, 0x22, 0xff, 0x82, 0x47, 0x21, 0xff, 0x82, 0x45, 0x21, 0xff, 0x85, 0x46, 0x21, 0xff, 0x87, 0x48, 0x22, 0xff, 0x89, 0x49, 0x24, 0xff, 0x89, 0x4a, 0x23, 0xff, 0x8a, 0x4a, 0x24, 0xff, 0x8f, 0x4e, 0x27, 0xff, 0x92, 0x51, 0x2a, 0xff, 0x95, 0x53, 0x2b, 0xff, 0x99, 0x57, 0x2e, 0xff, 0x9c, 0x5b, 0x31, 0xff, 0x99, 0x5a, 0x30, 0xff, 0x9e, 0x5f, 0x32, 0xff, 0xa3, 0x62, 0x34, 0xff, 0xa4, 0x61, 0x34, 0xff, 0xa7, 0x65, 0x37, 0xff, 0xaa, 0x6b, 0x3a, 0xff, 0xad, 0x6e, 0x3c, 0xff, 0xad, 0x6f, 0x3c, 0xff, 0xb3, 0x75, 0x40, 0xff, 0xb9, 0x7c, 0x46, 0xff, 0xc0, 0x7f, 0x47, 0xff, 0xc4, 0x81, 0x49, 0xff, 0xc1, 0x7f, 0x49, 0xff, 0xc1, 0x84, 0x4e, 0xff, 0xc4, 0x8b, 0x55, 0xff, 0xc6, 0x8e, 0x59, 0xff, 0xca, 0x8f, 0x5b, 0xff, 0xce, 0x91, 0x5d, 0xff, 0xd4, 0x93, 0x5e, 0xff, 0xdc, 0x97, 0x61, 0xff, 0xe0, 0xa4, 0x67, 0xff, 0xe6, 0xae, 0x68, 0xff, 0xe4, 0xa6, 0x61, 0xff, 0xe5, 0x9f, 0x59, 0xff, 0xe5, 0x9b, 0x59, 0xff, 0xe6, 0x9b, 0x5a, 0xff, 0xe6, 0x9d, 0x5d, 0xff, 0xe6, 0xa1, 0x5f, 0xff, 0xe5, 0xa2, 0x60, 0xff, 0xe5, 0xa0, 0x61, 0xff, 0xe4, 0xa0, 0x61, 0xff, 0xe3, 0x99, 0x5b, 0xff, 0xe3, 0x94, 0x55, 0xff, 0xe0, 0x93, 0x56, 0xff, 0xdc, 0x92, 0x55, 0xff, 0xd6, 0x92, 0x51, 0xff, 0xda, 0x95, 0x51, 0xff, 0xdf, 0x98, 0x57, 0xff, 0xe5, 0x99, 0x5c, 0xff, 0xe5, 0x99, 0x5c, 0xff, 0xe3, 0x98, 0x5a, 0xff, 0xdc, 0x91, 0x51, 0xff, 0xdc, 0x94, 0x51, 0xff, 0xdd, 0x95, 0x54, 0xff, 0xdd, 0x95, 0x56, 0xff, 0xdb, 0x99, 0x5a, 0xff, 0xe0, 0x9d, 0x60, 0xff, 0xe3, 0xa1, 0x65, 0xff, 0xe5, 0xa9, 0x68, 0xff, 0xe4, 0xb5, 0x6f, 0xff, 0xe5, 0xc1, 0x78, 0xff, 0xe4, 0xc9, 0x80, 0xff, 0xe0, 0xd4, 0x88, 0xff, 0xdd, 0xd3, 0x90, 0xff, 0xdf, 0xd2, 0x9a, 0xff, 0xe3, 0xd3, 0xa0, 0xff, 0xe2, 0xd2, 0x9f, 0xff, 0xe3, 0xd3, 0xa3, 0xff, 0xe0, 0xce, 0x9e, 0xff, 0xd9, 0xc7, 0x8f, 0xff, 0xc6, 0xab, 0x7b, 0xff, 0xa1, 0x73, 0x4c, 0xff, 0x95, 0x5c, 0x33, 0xff, 0x9b, 0x63, 0x3b, 0xff, 0x9e, 0x64, 0x3c, 0xff, 0x9f, 0x64, 0x3c, 0xff, 0x9e, 0x64, 0x3b, 0xff, 0x9d, 0x63, 0x3a, 0xff, 0x9c, 0x60, 0x38, 0xff, 0x9a, 0x5e, 0x36, 0xff, 0x98, 0x5d, 0x35, 0xff, 0x97, 0x5d, 0x35, 0xff, 0x97, 0x5c, 0x35, 0xff, 0x96, 0x5a, 0x34, 0xff, 0x94, 0x58, 0x33, 0xff, 0x90, 0x55, 0x31, 0xff, 0x9e, 0x63, 0x3a, 0xff, 0xaf, 0x72, 0x45, 0xff, 0xb0, 0x72, 0x44, 0xff, 0xae, 0x71, 0x42, 0xff, 0xae, 0x6f, 0x41, 0xff, 0xab, 0x6d, 0x40, 0xff, 0xa9, 0x6b, 0x3c, 0xff, 0xa8, 0x6a, 0x3a, 0xff, 0xa8, 0x6a, 0x3a, 0xff, 0xa8, 0x69, 0x3b, 0xff, 0xa8, 0x69, 0x3b, 0xff, 0xa5, 0x67, 0x39, 0xff, 0xa2, 0x64, 0x37, 0xff, 0x9f, 0x61, 0x36, 0xff, 0x9c, 0x5e, 0x34, 0xff, 0x9b, 0x5d, 0x33, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x98, 0x58, 0x32, 0xff, 0x92, 0x54, 0x2f, 0xff, 0x88, 0x4b, 0x27, 0xff, 0x82, 0x46, 0x21, 0xff, 0x7c, 0x42, 0x1d, 0xff, 0x78, 0x3f, 0x1c, 0xff, 0x74, 0x3f, 0x1a, 0xff, 0x71, 0x3b, 0x18, 0xff, 0x6d, 0x37, 0x18, 0xff, 0x6b, 0x35, 0x18, 0xff, 0x69, 0x36, 0x18, 0xff, 0x67, 0x37, 0x18, 0xff, 0x67, 0x36, 0x18, 0xff, 0x64, 0x33, 0x18, 0xff, 0x64, 0x32, 0x18, 0xff, 0x64, 0x32, 0x18, 0xff, 0x64, 0x32, 0x18, 0xff, 0x65, 0x33, 0x18, 0xff, 0x66, 0x36, 0x18, 0xff, 0x64, 0x34, 0x18, 0xff, 0x67, 0x36, 0x18, 0xff, 0x68, 0x36, 0x18, 0xff, 0x69, 0x37, 0x18, 0xff, 0x6b, 0x35, 0x18, 0xff, 0x6d, 0x37, 0x18, 0xff, 0x70, 0x39, 0x18, 0xff, 0x7d, 0x43, 0x1d, 0xff, 0x7e, 0x44, 0x1c, 0xff, 0x81, 0x44, 0x20, 0xff, 0x9d, 0x5f, 0x34, 0xff, 0xa2, 0x63, 0x3a, 0xff, 0x9f, 0x60, 0x36, 0xff, 0x9d, 0x5e, 0x34, 0xff, 0x9c, 0x5b, 0x31, 0xff, 0x9d, 0x5e, 0x32, 0xff, 0x9f, 0x60, 0x35, 0xff, 0xa3, 0x65, 0x38, 0xff, 0xa6, 0x68, 0x3a, 0xff, 0xa6, 0x68, 0x3a, 0xff, 0xa4, 0x67, 0x39, 0xff, 0xa2, 0x64, 0x38, 0xff, 0x9e, 0x5f, 0x35, 0xff, 0xa2, 0x62, 0x37, 0xff, 0xa0, 0x60, 0x35, 0xff, 0x9d, 0x5d, 0x32, 0xff, 0x9a, 0x59, 0x31, 0xff, 0x98, 0x58, 0x31, 0xff, 0x98, 0x57, 0x31, 0xff, 0x98, 0x58, 0x31, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x9a, 0x5a, 0x32, 0xff, 0x9c, 0x5b, 0x31, 0xff, 0x9e, 0x5e, 0x32, 0xff, 0xa0, 0x61, 0x37, 0xff, 0x97, 0x58, 0x34, 0xff, 0x95, 0x58, 0x32, 0xff, 0x94, 0x57, 0x32, 0xff, 0x93, 0x55, 0x31, 0xff, 0x95, 0x57, 0x31, 0xff, 0x95, 0x57, 0x31, 0xff, 0x97, 0x59, 0x33, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x89, 0x4f, 0x2f, 0xff, 0x89, 0x4e, 0x2e, 0xff, 0x88, 0x4b, 0x2a, 0xff, 0x86, 0x4a, 0x28, 0xff, 0x82, 0x48, 0x24, 0xff, 0x80, 0x45, 0x24, 0xff, 0x80, 0x45, 0x23, 0xff, 0x7e, 0x43, 0x22, 0xff, 0x7e, 0x42, 0x1e, 0xff, 0x7d, 0x42, 0x1d, 0xff, 0x80, 0x44, 0x22, 0xff, 0x7e, 0x43, 0x20, 0xff, 0x7e, 0x43, 0x21, 0xff, 0x7e, 0x42, 0x1f, 0xff, 0x7c, 0x43, 0x1e, 0xff, 0x7c, 0x42, 0x1f, 0xff, 0x7c, 0x43, 0x21, 0xff, 0x7c, 0x42, 0x1e, 0xff, 0x7b, 0x42, 0x1f, 0xff, 0x7c, 0x42, 0x1f, 0xff, 0x7a, 0x42, 0x1f, 0xff, 0x7a, 0x41, 0x1d, 0xff, 0x7a, 0x41, 0x1d, 0xff, 0x79, 0x40, 0x1d, 0xff, 0x7c, 0x43, 0x1f, 0xff, 0x92, 0x57, 0x33, 0xff, 0x92, 0x54, 0x31, 0xff, 0x8e, 0x51, 0x2f, 0xff, 0x8b, 0x4e, 0x2e, 0xff, 0x8c, 0x4e, 0x2d, 0xff, 0x8a, 0x4d, 0x2c, 0xff, 0x8a, 0x4d, 0x2c, 0xff, 0x89, 0x4b, 0x28, 0xff, 0x86, 0x49, 0x26, 0xff, 0x86, 0x48, 0x26, 0xff, 0x84, 0x48, 0x26, 0xff, + 0x84, 0x48, 0x23, 0xff, 0x83, 0x47, 0x23, 0xff, 0x81, 0x44, 0x22, 0xff, 0x7f, 0x43, 0x20, 0xff, 0x7f, 0x43, 0x20, 0xff, 0x7f, 0x43, 0x20, 0xff, 0x7e, 0x43, 0x21, 0xff, 0x7f, 0x43, 0x1f, 0xff, 0x7e, 0x43, 0x1f, 0xff, 0x80, 0x44, 0x20, 0xff, 0x7f, 0x44, 0x1f, 0xff, 0x7e, 0x43, 0x1e, 0xff, 0x78, 0x40, 0x1a, 0xff, 0x74, 0x3c, 0x19, 0xff, 0x72, 0x3b, 0x18, 0xff, 0x71, 0x39, 0x18, 0xff, 0x70, 0x37, 0x18, 0xff, 0x70, 0x38, 0x18, 0xff, 0x70, 0x36, 0x18, 0xff, 0x6f, 0x37, 0x18, 0xff, 0x70, 0x3c, 0x18, 0xff, 0x72, 0x3e, 0x18, 0xff, 0x72, 0x3b, 0x18, 0xff, 0x73, 0x3d, 0x19, 0xff, 0x74, 0x40, 0x1c, 0xff, 0x76, 0x41, 0x1c, 0xff, 0x79, 0x41, 0x1f, 0xff, 0x7b, 0x44, 0x21, 0xff, 0x7d, 0x45, 0x22, 0xff, 0x7f, 0x45, 0x21, 0xff, 0x80, 0x46, 0x23, 0xff, 0x80, 0x46, 0x23, 0xff, 0x82, 0x45, 0x21, 0xff, 0x83, 0x45, 0x21, 0xff, 0x85, 0x47, 0x21, 0xff, 0x86, 0x47, 0x23, 0xff, 0x88, 0x49, 0x24, 0xff, 0x89, 0x49, 0x23, 0xff, 0x89, 0x4a, 0x24, 0xff, 0x8d, 0x4d, 0x26, 0xff, 0x90, 0x4f, 0x28, 0xff, 0x94, 0x53, 0x2b, 0xff, 0x97, 0x57, 0x2d, 0xff, 0x99, 0x56, 0x2f, 0xff, 0x97, 0x57, 0x2e, 0xff, 0x9d, 0x5b, 0x31, 0xff, 0xa1, 0x5f, 0x32, 0xff, 0xa4, 0x62, 0x35, 0xff, 0xa7, 0x68, 0x39, 0xff, 0xaa, 0x6c, 0x3b, 0xff, 0xa9, 0x6c, 0x3c, 0xff, 0xae, 0x6f, 0x40, 0xff, 0xb6, 0x78, 0x43, 0xff, 0xbb, 0x7b, 0x46, 0xff, 0xb8, 0x77, 0x43, 0xff, 0xba, 0x79, 0x46, 0xff, 0xbe, 0x81, 0x4b, 0xff, 0xc0, 0x88, 0x52, 0xff, 0xc4, 0x8d, 0x57, 0xff, 0xc6, 0x8d, 0x59, 0xff, 0xcb, 0x8f, 0x5b, 0xff, 0xd2, 0x91, 0x5c, 0xff, 0xd9, 0x96, 0x61, 0xff, 0xe1, 0xa8, 0x6f, 0xff, 0xe7, 0xad, 0x6e, 0xff, 0xe6, 0xad, 0x65, 0xff, 0xe5, 0xa3, 0x5e, 0xff, 0xe4, 0x9e, 0x5c, 0xff, 0xe6, 0x9d, 0x5b, 0xff, 0xe5, 0x9d, 0x5c, 0xff, 0xe5, 0x9f, 0x5f, 0xff, 0xe5, 0xa0, 0x62, 0xff, 0xe5, 0xa1, 0x62, 0xff, 0xe5, 0x9d, 0x60, 0xff, 0xe1, 0x95, 0x5a, 0xff, 0xd7, 0x8e, 0x51, 0xff, 0xdc, 0x91, 0x56, 0xff, 0xdd, 0x92, 0x54, 0xff, 0xd7, 0x93, 0x4f, 0xff, 0xd9, 0x92, 0x51, 0xff, 0xdc, 0x97, 0x56, 0xff, 0xe5, 0x9a, 0x5e, 0xff, 0xe6, 0x99, 0x5d, 0xff, 0xe3, 0x97, 0x59, 0xff, 0xdd, 0x92, 0x53, 0xff, 0xdc, 0x96, 0x52, 0xff, 0xde, 0x99, 0x55, 0xff, 0xde, 0x9a, 0x58, 0xff, 0xde, 0x9a, 0x5b, 0xff, 0xe2, 0x9e, 0x60, 0xff, 0xe2, 0xa3, 0x63, 0xff, 0xe3, 0xa8, 0x68, 0xff, 0xe2, 0xb1, 0x70, 0xff, 0xe3, 0xc1, 0x78, 0xff, 0xe3, 0xcb, 0x80, 0xff, 0xde, 0xd1, 0x88, 0xff, 0xdf, 0xd3, 0x94, 0xff, 0xe1, 0xd3, 0x9e, 0xff, 0xe5, 0xd4, 0xae, 0xff, 0xe4, 0xd0, 0xb6, 0xff, 0xd2, 0xb6, 0x9c, 0xff, 0xb3, 0x8a, 0x6e, 0xff, 0x9e, 0x6b, 0x4a, 0xff, 0x98, 0x61, 0x3e, 0xff, 0x9b, 0x65, 0x3e, 0xff, 0x9e, 0x68, 0x41, 0xff, 0x9e, 0x68, 0x41, 0xff, 0x9f, 0x68, 0x40, 0xff, 0x9f, 0x68, 0x3f, 0xff, 0x9f, 0x67, 0x3d, 0xff, 0x9d, 0x64, 0x3b, 0xff, 0x9b, 0x5f, 0x38, 0xff, 0x9a, 0x5d, 0x36, 0xff, 0x98, 0x5e, 0x35, 0xff, 0x97, 0x5d, 0x36, 0xff, 0x97, 0x5b, 0x35, 0xff, 0x95, 0x5b, 0x34, 0xff, 0x95, 0x5a, 0x33, 0xff, 0x90, 0x54, 0x30, 0xff, 0xa6, 0x69, 0x40, 0xff, 0xb8, 0x7a, 0x4c, 0xff, 0xb1, 0x74, 0x43, 0xff, 0xb0, 0x72, 0x42, 0xff, 0xae, 0x70, 0x42, 0xff, 0xae, 0x6f, 0x41, 0xff, 0xad, 0x6e, 0x3e, 0xff, 0xab, 0x6e, 0x3c, 0xff, 0xaa, 0x6d, 0x3c, 0xff, 0xaa, 0x6c, 0x3e, 0xff, 0xaa, 0x6b, 0x3c, 0xff, 0xa7, 0x69, 0x3a, 0xff, 0xa4, 0x66, 0x3a, 0xff, 0xa1, 0x63, 0x38, 0xff, 0x9e, 0x5f, 0x35, 0xff, 0x9c, 0x5e, 0x34, 0xff, 0x9b, 0x5d, 0x33, 0xff, 0x9a, 0x5c, 0x33, 0xff, 0x97, 0x5a, 0x32, 0xff, 0x94, 0x56, 0x31, 0xff, 0x90, 0x52, 0x2f, 0xff, 0x88, 0x4c, 0x29, 0xff, 0x7f, 0x45, 0x1f, 0xff, 0x75, 0x3e, 0x19, 0xff, 0x70, 0x3c, 0x18, 0xff, 0x70, 0x38, 0x18, 0xff, 0x6d, 0x35, 0x18, 0xff, 0x69, 0x36, 0x18, 0xff, 0x67, 0x37, 0x18, 0xff, 0x66, 0x35, 0x18, 0xff, 0x65, 0x32, 0x18, 0xff, 0x64, 0x33, 0x18, 0xff, 0x64, 0x33, 0x18, 0xff, 0x64, 0x30, 0x18, 0xff, 0x64, 0x31, 0x18, 0xff, 0x64, 0x32, 0x18, 0xff, 0x64, 0x33, 0x18, 0xff, 0x65, 0x35, 0x18, 0xff, 0x67, 0x36, 0x18, 0xff, 0x68, 0x36, 0x18, 0xff, 0x68, 0x34, 0x18, 0xff, 0x69, 0x35, 0x18, 0xff, 0x6f, 0x39, 0x18, 0xff, 0x7d, 0x42, 0x1c, 0xff, 0x7e, 0x44, 0x1d, 0xff, 0x78, 0x3d, 0x17, 0xff, 0x9b, 0x5c, 0x31, 0xff, 0xa3, 0x64, 0x3a, 0xff, 0x9e, 0x60, 0x37, 0xff, 0x9c, 0x5d, 0x34, 0xff, 0x9b, 0x5c, 0x31, 0xff, 0x9e, 0x60, 0x34, 0xff, 0xa0, 0x62, 0x36, 0xff, 0xa3, 0x67, 0x39, 0xff, 0xa8, 0x6b, 0x3d, 0xff, 0xa9, 0x6c, 0x3f, 0xff, 0xa8, 0x6c, 0x3e, 0xff, 0xa5, 0x67, 0x3c, 0xff, 0xa2, 0x63, 0x38, 0xff, 0xa6, 0x67, 0x39, 0xff, 0xa2, 0x62, 0x36, 0xff, 0x9c, 0x5c, 0x33, 0xff, 0x98, 0x58, 0x31, 0xff, 0x96, 0x56, 0x2f, 0xff, 0x96, 0x56, 0x2f, 0xff, 0x96, 0x56, 0x2f, 0xff, 0x97, 0x57, 0x30, 0xff, 0x97, 0x57, 0x30, 0xff, 0x98, 0x58, 0x31, 0xff, 0x9a, 0x5a, 0x33, 0xff, 0x9c, 0x5f, 0x35, 0xff, 0x96, 0x59, 0x33, 0xff, 0x93, 0x55, 0x31, 0xff, 0x93, 0x55, 0x31, 0xff, 0x93, 0x55, 0x31, 0xff, 0x95, 0x56, 0x31, 0xff, 0x93, 0x54, 0x31, 0xff, 0x95, 0x58, 0x32, 0xff, 0x90, 0x56, 0x31, 0xff, 0x88, 0x4f, 0x2f, 0xff, 0x88, 0x4e, 0x2e, 0xff, 0x87, 0x4b, 0x2c, 0xff, 0x84, 0x49, 0x27, 0xff, 0x81, 0x46, 0x23, 0xff, 0x80, 0x46, 0x24, 0xff, 0x7f, 0x44, 0x20, 0xff, 0x7d, 0x41, 0x20, 0xff, 0x7b, 0x41, 0x1e, 0xff, 0x7e, 0x43, 0x1e, 0xff, 0x7e, 0x42, 0x20, 0xff, 0x7d, 0x42, 0x20, 0xff, 0x7b, 0x42, 0x1f, 0xff, 0x7c, 0x42, 0x1e, 0xff, 0x7e, 0x42, 0x1e, 0xff, 0x7c, 0x42, 0x1f, 0xff, 0x7b, 0x42, 0x20, 0xff, 0x7b, 0x42, 0x20, 0xff, 0x7b, 0x43, 0x20, 0xff, 0x7c, 0x42, 0x1f, 0xff, 0x7a, 0x41, 0x1e, 0xff, 0x7a, 0x42, 0x1d, 0xff, 0x7a, 0x40, 0x1d, 0xff, 0x78, 0x40, 0x1d, 0xff, 0x7a, 0x40, 0x1c, 0xff, 0x95, 0x58, 0x34, 0xff, 0x93, 0x54, 0x31, 0xff, 0x8f, 0x51, 0x2f, 0xff, 0x8d, 0x4f, 0x2e, 0xff, 0x8b, 0x4f, 0x2e, 0xff, 0x8a, 0x4e, 0x2d, 0xff, 0x8a, 0x4d, 0x2c, 0xff, 0x88, 0x4b, 0x2a, 0xff, 0x87, 0x49, 0x27, 0xff, 0x87, 0x49, 0x26, 0xff, 0x85, 0x49, 0x26, 0xff, + 0x86, 0x48, 0x25, 0xff, 0x84, 0x46, 0x23, 0xff, 0x81, 0x45, 0x22, 0xff, 0x80, 0x43, 0x21, 0xff, 0x80, 0x44, 0x21, 0xff, 0x7f, 0x43, 0x1f, 0xff, 0x7f, 0x45, 0x21, 0xff, 0x80, 0x44, 0x21, 0xff, 0x7f, 0x44, 0x21, 0xff, 0x80, 0x44, 0x21, 0xff, 0x7f, 0x45, 0x21, 0xff, 0x79, 0x41, 0x1d, 0xff, 0x77, 0x40, 0x1b, 0xff, 0x73, 0x3c, 0x18, 0xff, 0x73, 0x3a, 0x18, 0xff, 0x71, 0x3d, 0x18, 0xff, 0x71, 0x3b, 0x18, 0xff, 0x6f, 0x38, 0x18, 0xff, 0x70, 0x35, 0x18, 0xff, 0x71, 0x3c, 0x18, 0xff, 0x73, 0x3b, 0x18, 0xff, 0x70, 0x3b, 0x18, 0xff, 0x72, 0x3d, 0x18, 0xff, 0x74, 0x3c, 0x19, 0xff, 0x73, 0x3f, 0x1a, 0xff, 0x75, 0x3f, 0x1a, 0xff, 0x79, 0x41, 0x1d, 0xff, 0x7b, 0x43, 0x22, 0xff, 0x7d, 0x45, 0x23, 0xff, 0x7f, 0x45, 0x23, 0xff, 0x80, 0x46, 0x23, 0xff, 0x82, 0x47, 0x23, 0xff, 0x80, 0x45, 0x23, 0xff, 0x82, 0x47, 0x21, 0xff, 0x84, 0x47, 0x23, 0xff, 0x85, 0x49, 0x24, 0xff, 0x86, 0x47, 0x23, 0xff, 0x88, 0x49, 0x24, 0xff, 0x88, 0x49, 0x24, 0xff, 0x89, 0x4d, 0x26, 0xff, 0x8d, 0x4c, 0x26, 0xff, 0x91, 0x50, 0x2a, 0xff, 0x94, 0x53, 0x2b, 0xff, 0x96, 0x56, 0x2e, 0xff, 0x98, 0x56, 0x2e, 0xff, 0x97, 0x56, 0x2e, 0xff, 0x9d, 0x5b, 0x31, 0xff, 0xa1, 0x5f, 0x34, 0xff, 0xa4, 0x65, 0x37, 0xff, 0xa8, 0x68, 0x39, 0xff, 0xaa, 0x6b, 0x3b, 0xff, 0xab, 0x6d, 0x3e, 0xff, 0xb1, 0x72, 0x42, 0xff, 0xb1, 0x72, 0x3f, 0xff, 0xb3, 0x72, 0x40, 0xff, 0xb7, 0x76, 0x42, 0xff, 0xbc, 0x7d, 0x48, 0xff, 0xbf, 0x82, 0x4d, 0xff, 0xc2, 0x88, 0x51, 0xff, 0xc3, 0x8b, 0x55, 0xff, 0xc7, 0x8c, 0x59, 0xff, 0xcf, 0x91, 0x5d, 0xff, 0xd6, 0x97, 0x64, 0xff, 0xe3, 0xa8, 0x73, 0xff, 0xe7, 0xab, 0x6e, 0xff, 0xe5, 0xab, 0x67, 0xff, 0xe5, 0xa9, 0x62, 0xff, 0xe4, 0xa0, 0x5e, 0xff, 0xe6, 0x9d, 0x5d, 0xff, 0xe4, 0x9d, 0x5e, 0xff, 0xe7, 0x9d, 0x61, 0xff, 0xe6, 0x9d, 0x61, 0xff, 0xe0, 0x97, 0x5c, 0xff, 0xe0, 0x90, 0x54, 0xff, 0xe7, 0x93, 0x5a, 0xff, 0xdd, 0x91, 0x56, 0xff, 0xd6, 0x8f, 0x53, 0xff, 0xdb, 0x92, 0x55, 0xff, 0xd2, 0x8e, 0x4f, 0xff, 0xd4, 0x90, 0x4e, 0xff, 0xd5, 0x92, 0x51, 0xff, 0xdf, 0x98, 0x5b, 0xff, 0xe7, 0x9a, 0x5e, 0xff, 0xe3, 0x97, 0x5a, 0xff, 0xde, 0x92, 0x54, 0xff, 0xde, 0x95, 0x54, 0xff, 0xdb, 0x99, 0x57, 0xff, 0xdd, 0x9d, 0x5e, 0xff, 0xdf, 0x9b, 0x5e, 0xff, 0xe3, 0x9e, 0x62, 0xff, 0xe1, 0x9f, 0x62, 0xff, 0xe0, 0xa5, 0x65, 0xff, 0xe5, 0xb2, 0x70, 0xff, 0xe2, 0xbc, 0x77, 0xff, 0xdf, 0xc5, 0x7d, 0xff, 0xde, 0xd1, 0x89, 0xff, 0xdf, 0xd3, 0x95, 0xff, 0xe6, 0xd7, 0xa6, 0xff, 0xd7, 0xbd, 0x9c, 0xff, 0xae, 0x81, 0x65, 0xff, 0x9d, 0x67, 0x47, 0xff, 0x9c, 0x62, 0x43, 0xff, 0x9d, 0x64, 0x44, 0xff, 0x9e, 0x67, 0x45, 0xff, 0x9e, 0x67, 0x43, 0xff, 0x9e, 0x69, 0x43, 0xff, 0x9e, 0x69, 0x42, 0xff, 0x9e, 0x69, 0x41, 0xff, 0x9c, 0x68, 0x3f, 0xff, 0x9c, 0x65, 0x3d, 0xff, 0x9d, 0x64, 0x3b, 0xff, 0x9c, 0x62, 0x38, 0xff, 0x9a, 0x5f, 0x38, 0xff, 0x97, 0x5e, 0x37, 0xff, 0x96, 0x5e, 0x35, 0xff, 0x96, 0x5d, 0x35, 0xff, 0x96, 0x5b, 0x35, 0xff, 0x94, 0x58, 0x34, 0xff, 0x96, 0x59, 0x35, 0xff, 0xac, 0x6f, 0x44, 0xff, 0xb9, 0x7b, 0x4c, 0xff, 0xb3, 0x74, 0x44, 0xff, 0xb2, 0x75, 0x44, 0xff, 0xb2, 0x75, 0x44, 0xff, 0xb0, 0x72, 0x42, 0xff, 0xae, 0x70, 0x40, 0xff, 0xad, 0x6e, 0x3e, 0xff, 0xad, 0x6e, 0x3e, 0xff, 0xad, 0x6f, 0x40, 0xff, 0xab, 0x6f, 0x41, 0xff, 0xa9, 0x6d, 0x3f, 0xff, 0xa8, 0x6b, 0x3c, 0xff, 0xa5, 0x68, 0x3a, 0xff, 0xa2, 0x64, 0x39, 0xff, 0x9f, 0x60, 0x38, 0xff, 0x9d, 0x5f, 0x35, 0xff, 0x9b, 0x5e, 0x33, 0xff, 0x9a, 0x5b, 0x32, 0xff, 0x98, 0x59, 0x31, 0xff, 0x93, 0x54, 0x30, 0xff, 0x8f, 0x50, 0x2e, 0xff, 0x8e, 0x50, 0x2d, 0xff, 0x88, 0x4c, 0x29, 0xff, 0x78, 0x3d, 0x1d, 0xff, 0x6e, 0x36, 0x17, 0xff, 0x6d, 0x36, 0x18, 0xff, 0x6b, 0x36, 0x18, 0xff, 0x68, 0x37, 0x18, 0xff, 0x67, 0x37, 0x18, 0xff, 0x66, 0x34, 0x18, 0xff, 0x64, 0x33, 0x18, 0xff, 0x63, 0x33, 0x18, 0xff, 0x61, 0x33, 0x18, 0xff, 0x62, 0x34, 0x18, 0xff, 0x64, 0x33, 0x18, 0xff, 0x64, 0x30, 0x18, 0xff, 0x63, 0x32, 0x18, 0xff, 0x63, 0x32, 0x18, 0xff, 0x66, 0x36, 0x18, 0xff, 0x67, 0x36, 0x18, 0xff, 0x65, 0x35, 0x18, 0xff, 0x6f, 0x3c, 0x18, 0xff, 0x7d, 0x42, 0x1c, 0xff, 0x7f, 0x43, 0x1d, 0xff, 0x75, 0x3c, 0x17, 0xff, 0x97, 0x59, 0x2f, 0xff, 0xa2, 0x62, 0x39, 0xff, 0x9e, 0x60, 0x38, 0xff, 0x9b, 0x5d, 0x34, 0xff, 0x9b, 0x5e, 0x34, 0xff, 0x9e, 0x5f, 0x35, 0xff, 0xa1, 0x62, 0x37, 0xff, 0xa6, 0x69, 0x3c, 0xff, 0xaa, 0x6f, 0x41, 0xff, 0xae, 0x71, 0x45, 0xff, 0xad, 0x71, 0x44, 0xff, 0xa9, 0x6d, 0x41, 0xff, 0xa8, 0x69, 0x3d, 0xff, 0xaa, 0x6c, 0x3d, 0xff, 0xa4, 0x64, 0x38, 0xff, 0x9c, 0x5c, 0x33, 0xff, 0x97, 0x57, 0x30, 0xff, 0x94, 0x55, 0x2f, 0xff, 0x94, 0x55, 0x2f, 0xff, 0x94, 0x53, 0x2f, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x95, 0x55, 0x2f, 0xff, 0x95, 0x56, 0x2f, 0xff, 0x99, 0x59, 0x31, 0xff, 0x9a, 0x5d, 0x35, 0xff, 0x95, 0x5a, 0x33, 0xff, 0x93, 0x56, 0x31, 0xff, 0x92, 0x54, 0x31, 0xff, 0x93, 0x54, 0x31, 0xff, 0x92, 0x54, 0x31, 0xff, 0x93, 0x55, 0x31, 0xff, 0x93, 0x59, 0x33, 0xff, 0x94, 0x5a, 0x35, 0xff, 0x87, 0x4d, 0x2f, 0xff, 0x88, 0x4e, 0x2e, 0xff, 0x87, 0x4c, 0x2a, 0xff, 0x84, 0x46, 0x26, 0xff, 0x80, 0x46, 0x22, 0xff, 0x7f, 0x45, 0x20, 0xff, 0x7e, 0x43, 0x22, 0xff, 0x7c, 0x41, 0x1f, 0xff, 0x7d, 0x42, 0x1d, 0xff, 0x7f, 0x43, 0x1f, 0xff, 0x7d, 0x43, 0x1f, 0xff, 0x7d, 0x41, 0x1f, 0xff, 0x7b, 0x41, 0x1d, 0xff, 0x7b, 0x3f, 0x1d, 0xff, 0x7c, 0x42, 0x1f, 0xff, 0x7b, 0x43, 0x1f, 0xff, 0x7b, 0x43, 0x20, 0xff, 0x7a, 0x42, 0x22, 0xff, 0x7b, 0x42, 0x1f, 0xff, 0x79, 0x41, 0x1e, 0xff, 0x78, 0x41, 0x1d, 0xff, 0x79, 0x40, 0x1d, 0xff, 0x78, 0x40, 0x1d, 0xff, 0x7a, 0x41, 0x1d, 0xff, 0x73, 0x3c, 0x18, 0xff, 0x98, 0x5b, 0x37, 0xff, 0x93, 0x54, 0x31, 0xff, 0x90, 0x52, 0x30, 0xff, 0x8d, 0x50, 0x2f, 0xff, 0x8b, 0x4e, 0x2e, 0xff, 0x8a, 0x4d, 0x2d, 0xff, 0x8b, 0x4d, 0x2c, 0xff, 0x88, 0x4b, 0x2a, 0xff, 0x89, 0x4b, 0x28, 0xff, 0x88, 0x4a, 0x28, 0xff, 0x86, 0x49, 0x28, 0xff, + 0x86, 0x48, 0x25, 0xff, 0x84, 0x48, 0x25, 0xff, 0x83, 0x47, 0x22, 0xff, 0x80, 0x44, 0x21, 0xff, 0x80, 0x44, 0x21, 0xff, 0x7f, 0x44, 0x20, 0xff, 0x81, 0x46, 0x21, 0xff, 0x7f, 0x45, 0x21, 0xff, 0x80, 0x45, 0x21, 0xff, 0x7f, 0x45, 0x22, 0xff, 0x7b, 0x42, 0x1d, 0xff, 0x7b, 0x41, 0x1c, 0xff, 0x76, 0x3d, 0x1a, 0xff, 0x74, 0x3c, 0x1a, 0xff, 0x73, 0x3b, 0x18, 0xff, 0x70, 0x3c, 0x18, 0xff, 0x70, 0x38, 0x18, 0xff, 0x70, 0x37, 0x18, 0xff, 0x71, 0x3c, 0x18, 0xff, 0x71, 0x3b, 0x18, 0xff, 0x71, 0x3d, 0x18, 0xff, 0x72, 0x3a, 0x18, 0xff, 0x74, 0x3c, 0x1a, 0xff, 0x75, 0x3d, 0x1a, 0xff, 0x75, 0x3d, 0x1a, 0xff, 0x75, 0x3f, 0x1a, 0xff, 0x79, 0x42, 0x1d, 0xff, 0x7a, 0x44, 0x21, 0xff, 0x7f, 0x45, 0x23, 0xff, 0x7f, 0x45, 0x25, 0xff, 0x7f, 0x45, 0x25, 0xff, 0x82, 0x46, 0x25, 0xff, 0x82, 0x49, 0x25, 0xff, 0x82, 0x47, 0x23, 0xff, 0x82, 0x45, 0x21, 0xff, 0x84, 0x47, 0x23, 0xff, 0x86, 0x47, 0x23, 0xff, 0x86, 0x47, 0x23, 0xff, 0x88, 0x48, 0x23, 0xff, 0x88, 0x49, 0x23, 0xff, 0x8b, 0x4b, 0x23, 0xff, 0x8e, 0x4d, 0x27, 0xff, 0x91, 0x50, 0x2a, 0xff, 0x95, 0x53, 0x2d, 0xff, 0x97, 0x55, 0x2e, 0xff, 0x96, 0x56, 0x2e, 0xff, 0x9b, 0x58, 0x2f, 0xff, 0x9f, 0x5e, 0x31, 0xff, 0xa3, 0x62, 0x34, 0xff, 0xa5, 0x66, 0x37, 0xff, 0xa8, 0x6a, 0x3c, 0xff, 0xa9, 0x6a, 0x3d, 0xff, 0xab, 0x6c, 0x3d, 0xff, 0xab, 0x6e, 0x3d, 0xff, 0xaf, 0x70, 0x3e, 0xff, 0xb3, 0x73, 0x41, 0xff, 0xb8, 0x77, 0x44, 0xff, 0xba, 0x7c, 0x47, 0xff, 0xc0, 0x83, 0x4d, 0xff, 0xc1, 0x87, 0x51, 0xff, 0xc2, 0x88, 0x56, 0xff, 0xcc, 0x8f, 0x5a, 0xff, 0xd9, 0x9a, 0x65, 0xff, 0xe7, 0xa8, 0x73, 0xff, 0xe7, 0xa8, 0x6f, 0xff, 0xe5, 0xa8, 0x6a, 0xff, 0xe5, 0xa2, 0x63, 0xff, 0xe5, 0x9e, 0x5f, 0xff, 0xe5, 0x9b, 0x5c, 0xff, 0xe3, 0x9a, 0x5c, 0xff, 0xe0, 0x9a, 0x5f, 0xff, 0xd6, 0x91, 0x57, 0xff, 0xdb, 0x8f, 0x53, 0xff, 0xe0, 0x90, 0x56, 0xff, 0xe2, 0x91, 0x57, 0xff, 0xe0, 0x91, 0x58, 0xff, 0xd8, 0x8e, 0x54, 0xff, 0xdb, 0x94, 0x55, 0xff, 0xd2, 0x93, 0x4f, 0xff, 0xd3, 0x8e, 0x4e, 0xff, 0xd5, 0x91, 0x50, 0xff, 0xde, 0x98, 0x5a, 0xff, 0xe6, 0x9d, 0x60, 0xff, 0xe4, 0x99, 0x5a, 0xff, 0xe1, 0x97, 0x56, 0xff, 0xdf, 0x9d, 0x57, 0xff, 0xde, 0x9b, 0x59, 0xff, 0xe1, 0x9e, 0x5b, 0xff, 0xe1, 0x9d, 0x5e, 0xff, 0xe5, 0x9e, 0x5e, 0xff, 0xe5, 0xa1, 0x5f, 0xff, 0xe3, 0xa4, 0x67, 0xff, 0xe4, 0xaa, 0x6b, 0xff, 0xe3, 0xba, 0x73, 0xff, 0xe4, 0xce, 0x7f, 0xff, 0xe3, 0xd2, 0x8c, 0xff, 0xd9, 0xc7, 0x94, 0xff, 0xb6, 0x8f, 0x6f, 0xff, 0x98, 0x60, 0x3f, 0xff, 0x9b, 0x63, 0x41, 0xff, 0x9e, 0x68, 0x46, 0xff, 0x9f, 0x68, 0x47, 0xff, 0x9e, 0x68, 0x48, 0xff, 0x9f, 0x69, 0x48, 0xff, 0x9e, 0x68, 0x47, 0xff, 0x9d, 0x68, 0x45, 0xff, 0x9c, 0x67, 0x42, 0xff, 0x9d, 0x68, 0x42, 0xff, 0x9d, 0x68, 0x40, 0xff, 0x9c, 0x67, 0x3f, 0xff, 0x9d, 0x66, 0x3d, 0xff, 0x9c, 0x63, 0x3a, 0xff, 0x99, 0x61, 0x38, 0xff, 0x99, 0x60, 0x38, 0xff, 0x98, 0x5e, 0x37, 0xff, 0x96, 0x5e, 0x35, 0xff, 0x96, 0x5d, 0x35, 0xff, 0x94, 0x5a, 0x34, 0xff, 0x9c, 0x61, 0x3a, 0xff, 0xb2, 0x75, 0x49, 0xff, 0xba, 0x7c, 0x4c, 0xff, 0xb6, 0x78, 0x48, 0xff, 0xb6, 0x77, 0x45, 0xff, 0xb4, 0x75, 0x45, 0xff, 0xb0, 0x72, 0x43, 0xff, 0xae, 0x70, 0x40, 0xff, 0xae, 0x70, 0x40, 0xff, 0xaf, 0x70, 0x42, 0xff, 0xaf, 0x72, 0x43, 0xff, 0xad, 0x72, 0x44, 0xff, 0xaa, 0x71, 0x43, 0xff, 0xa8, 0x6e, 0x40, 0xff, 0xa6, 0x6b, 0x3d, 0xff, 0xa5, 0x67, 0x3a, 0xff, 0xa2, 0x64, 0x38, 0xff, 0x9d, 0x5e, 0x35, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x95, 0x55, 0x30, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x8f, 0x51, 0x2e, 0xff, 0x8d, 0x4e, 0x2d, 0xff, 0x8c, 0x4e, 0x2d, 0xff, 0x8d, 0x4e, 0x2e, 0xff, 0x85, 0x48, 0x28, 0xff, 0x72, 0x3b, 0x1c, 0xff, 0x69, 0x35, 0x17, 0xff, 0x68, 0x34, 0x18, 0xff, 0x67, 0x35, 0x18, 0xff, 0x65, 0x33, 0x18, 0xff, 0x63, 0x32, 0x18, 0xff, 0x61, 0x34, 0x18, 0xff, 0x62, 0x31, 0x18, 0xff, 0x63, 0x31, 0x18, 0xff, 0x63, 0x33, 0x18, 0xff, 0x63, 0x33, 0x18, 0xff, 0x63, 0x32, 0x18, 0xff, 0x64, 0x32, 0x18, 0xff, 0x64, 0x32, 0x18, 0xff, 0x66, 0x36, 0x18, 0xff, 0x66, 0x33, 0x18, 0xff, 0x6c, 0x3b, 0x19, 0xff, 0x7c, 0x43, 0x20, 0xff, 0x7f, 0x43, 0x1e, 0xff, 0x79, 0x3d, 0x17, 0xff, 0x96, 0x58, 0x2e, 0xff, 0xa2, 0x65, 0x38, 0xff, 0x9f, 0x61, 0x37, 0xff, 0x9c, 0x5f, 0x35, 0xff, 0x9d, 0x5e, 0x36, 0xff, 0x9e, 0x5f, 0x35, 0xff, 0xa1, 0x63, 0x38, 0xff, 0xa6, 0x6b, 0x3d, 0xff, 0xad, 0x72, 0x44, 0xff, 0xb0, 0x76, 0x48, 0xff, 0xb0, 0x76, 0x49, 0xff, 0xad, 0x71, 0x45, 0xff, 0xae, 0x73, 0x45, 0xff, 0xad, 0x70, 0x41, 0xff, 0xa5, 0x66, 0x3a, 0xff, 0x9d, 0x5e, 0x35, 0xff, 0x98, 0x58, 0x32, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x93, 0x54, 0x2e, 0xff, 0x93, 0x54, 0x2e, 0xff, 0x94, 0x53, 0x2f, 0xff, 0x97, 0x57, 0x30, 0xff, 0x99, 0x5d, 0x34, 0xff, 0x95, 0x56, 0x31, 0xff, 0x92, 0x56, 0x31, 0xff, 0x93, 0x54, 0x30, 0xff, 0x92, 0x56, 0x31, 0xff, 0x92, 0x54, 0x30, 0xff, 0x92, 0x54, 0x31, 0xff, 0x92, 0x56, 0x33, 0xff, 0x95, 0x5a, 0x37, 0xff, 0x88, 0x4f, 0x2f, 0xff, 0x88, 0x4d, 0x2d, 0xff, 0x86, 0x4a, 0x29, 0xff, 0x81, 0x46, 0x23, 0xff, 0x7f, 0x44, 0x23, 0xff, 0x7e, 0x43, 0x20, 0xff, 0x7d, 0x41, 0x1f, 0xff, 0x7c, 0x43, 0x1f, 0xff, 0x7e, 0x44, 0x20, 0xff, 0x7e, 0x43, 0x1f, 0xff, 0x7c, 0x41, 0x1f, 0xff, 0x7c, 0x41, 0x1e, 0xff, 0x7b, 0x41, 0x1d, 0xff, 0x7c, 0x43, 0x1f, 0xff, 0x7c, 0x43, 0x1f, 0xff, 0x7b, 0x41, 0x1f, 0xff, 0x7c, 0x42, 0x21, 0xff, 0x7b, 0x42, 0x1f, 0xff, 0x7a, 0x42, 0x1f, 0xff, 0x78, 0x41, 0x1e, 0xff, 0x79, 0x40, 0x1d, 0xff, 0x76, 0x3e, 0x1d, 0xff, 0x77, 0x3f, 0x1b, 0xff, 0x77, 0x3f, 0x1d, 0xff, 0x78, 0x3f, 0x1a, 0xff, 0x8b, 0x4f, 0x2e, 0xff, 0x97, 0x5a, 0x34, 0xff, 0x90, 0x54, 0x30, 0xff, 0x8f, 0x50, 0x2f, 0xff, 0x8b, 0x4f, 0x2e, 0xff, 0x8a, 0x4d, 0x2d, 0xff, 0x8a, 0x4e, 0x2d, 0xff, 0x89, 0x4c, 0x29, 0xff, 0x88, 0x4a, 0x29, 0xff, 0x88, 0x4b, 0x28, 0xff, 0x86, 0x48, 0x27, 0xff, + 0x85, 0x49, 0x25, 0xff, 0x86, 0x48, 0x25, 0xff, 0x84, 0x47, 0x25, 0xff, 0x82, 0x44, 0x22, 0xff, 0x81, 0x44, 0x21, 0xff, 0x81, 0x45, 0x21, 0xff, 0x81, 0x44, 0x21, 0xff, 0x81, 0x45, 0x23, 0xff, 0x80, 0x46, 0x22, 0xff, 0x7f, 0x45, 0x21, 0xff, 0x7c, 0x41, 0x1d, 0xff, 0x78, 0x3f, 0x1b, 0xff, 0x75, 0x3d, 0x1a, 0xff, 0x74, 0x3e, 0x1a, 0xff, 0x73, 0x3e, 0x1a, 0xff, 0x71, 0x3d, 0x18, 0xff, 0x71, 0x3c, 0x18, 0xff, 0x73, 0x3c, 0x19, 0xff, 0x73, 0x3d, 0x19, 0xff, 0x73, 0x3c, 0x19, 0xff, 0x71, 0x3c, 0x18, 0xff, 0x72, 0x3a, 0x18, 0xff, 0x72, 0x3a, 0x18, 0xff, 0x75, 0x3d, 0x1a, 0xff, 0x74, 0x3d, 0x1a, 0xff, 0x76, 0x40, 0x1a, 0xff, 0x79, 0x42, 0x20, 0xff, 0x7d, 0x44, 0x23, 0xff, 0x7f, 0x45, 0x23, 0xff, 0x7e, 0x45, 0x25, 0xff, 0x80, 0x46, 0x24, 0xff, 0x80, 0x46, 0x25, 0xff, 0x82, 0x48, 0x25, 0xff, 0x83, 0x48, 0x24, 0xff, 0x84, 0x48, 0x23, 0xff, 0x84, 0x47, 0x23, 0xff, 0x84, 0x47, 0x21, 0xff, 0x85, 0x46, 0x22, 0xff, 0x87, 0x48, 0x23, 0xff, 0x88, 0x49, 0x23, 0xff, 0x88, 0x48, 0x23, 0xff, 0x8b, 0x4c, 0x25, 0xff, 0x8f, 0x4f, 0x28, 0xff, 0x92, 0x51, 0x2b, 0xff, 0x95, 0x52, 0x2d, 0xff, 0x95, 0x54, 0x2e, 0xff, 0x97, 0x55, 0x2f, 0xff, 0x9c, 0x5a, 0x31, 0xff, 0xa1, 0x5f, 0x33, 0xff, 0xa4, 0x63, 0x36, 0xff, 0xa7, 0x67, 0x3a, 0xff, 0xa8, 0x6a, 0x3b, 0xff, 0xa5, 0x68, 0x3a, 0xff, 0xa8, 0x6a, 0x3a, 0xff, 0xab, 0x6c, 0x3c, 0xff, 0xaf, 0x6e, 0x3d, 0xff, 0xb1, 0x71, 0x40, 0xff, 0xb4, 0x75, 0x44, 0xff, 0xb9, 0x7b, 0x49, 0xff, 0xbe, 0x7f, 0x4e, 0xff, 0xc0, 0x84, 0x51, 0xff, 0xc8, 0x8c, 0x58, 0xff, 0xd7, 0x9a, 0x63, 0xff, 0xe6, 0xa9, 0x6e, 0xff, 0xe6, 0xa8, 0x6d, 0xff, 0xe5, 0xa5, 0x69, 0xff, 0xe6, 0x9d, 0x64, 0xff, 0xe6, 0x98, 0x60, 0xff, 0xe3, 0x96, 0x5c, 0xff, 0xdc, 0x92, 0x5a, 0xff, 0xcc, 0x89, 0x55, 0xff, 0xc3, 0x82, 0x51, 0xff, 0xc7, 0x84, 0x51, 0xff, 0xce, 0x89, 0x52, 0xff, 0xd5, 0x8d, 0x54, 0xff, 0xdc, 0x8f, 0x57, 0xff, 0xdf, 0x90, 0x58, 0xff, 0xd4, 0x8e, 0x53, 0xff, 0xcd, 0x8c, 0x50, 0xff, 0xd3, 0x8d, 0x4d, 0xff, 0xd3, 0x8f, 0x4d, 0xff, 0xd8, 0x93, 0x54, 0xff, 0xe4, 0x9e, 0x62, 0xff, 0xe4, 0x99, 0x5c, 0xff, 0xe1, 0x97, 0x56, 0xff, 0xe0, 0x9b, 0x56, 0xff, 0xe1, 0x9d, 0x5b, 0xff, 0xdf, 0x9c, 0x5e, 0xff, 0xe2, 0x9d, 0x5f, 0xff, 0xe3, 0x9f, 0x5f, 0xff, 0xe2, 0x9f, 0x62, 0xff, 0xe5, 0xa2, 0x62, 0xff, 0xe3, 0xaa, 0x67, 0xff, 0xe6, 0xb8, 0x72, 0xff, 0xe0, 0xbf, 0x79, 0xff, 0xc4, 0xa6, 0x6e, 0xff, 0xa2, 0x71, 0x4c, 0xff, 0x98, 0x5e, 0x3b, 0xff, 0xa0, 0x6a, 0x49, 0xff, 0xa1, 0x6a, 0x49, 0xff, 0xa0, 0x6a, 0x49, 0xff, 0xa0, 0x6a, 0x48, 0xff, 0xa0, 0x6a, 0x49, 0xff, 0xa0, 0x6a, 0x48, 0xff, 0x9e, 0x69, 0x48, 0xff, 0x9e, 0x68, 0x47, 0xff, 0x9e, 0x67, 0x46, 0xff, 0x9c, 0x67, 0x44, 0xff, 0x9c, 0x68, 0x42, 0xff, 0x9c, 0x67, 0x41, 0xff, 0x9d, 0x68, 0x40, 0xff, 0x9e, 0x67, 0x3e, 0xff, 0x9c, 0x64, 0x3c, 0xff, 0x99, 0x60, 0x39, 0xff, 0x97, 0x5e, 0x39, 0xff, 0x96, 0x5e, 0x38, 0xff, 0x96, 0x5e, 0x37, 0xff, 0x93, 0x5a, 0x34, 0xff, 0xa0, 0x65, 0x3e, 0xff, 0xb7, 0x7b, 0x4d, 0xff, 0xbc, 0x7f, 0x4e, 0xff, 0xb9, 0x7c, 0x4a, 0xff, 0xb6, 0x78, 0x46, 0xff, 0xb4, 0x76, 0x44, 0xff, 0xb2, 0x75, 0x43, 0xff, 0xb0, 0x73, 0x41, 0xff, 0xb0, 0x72, 0x42, 0xff, 0xb0, 0x73, 0x43, 0xff, 0xb0, 0x75, 0x44, 0xff, 0xad, 0x74, 0x46, 0xff, 0xac, 0x73, 0x46, 0xff, 0xa9, 0x6f, 0x42, 0xff, 0xa4, 0x69, 0x3b, 0xff, 0xa0, 0x62, 0x37, 0xff, 0x9a, 0x5a, 0x32, 0xff, 0x97, 0x58, 0x31, 0xff, 0x96, 0x57, 0x31, 0xff, 0x95, 0x55, 0x30, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x8e, 0x50, 0x2d, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8e, 0x50, 0x2e, 0xff, 0x8b, 0x4e, 0x2b, 0xff, 0x7f, 0x45, 0x23, 0xff, 0x6f, 0x39, 0x1a, 0xff, 0x69, 0x35, 0x18, 0xff, 0x66, 0x34, 0x18, 0xff, 0x64, 0x34, 0x18, 0xff, 0x61, 0x30, 0x18, 0xff, 0x62, 0x30, 0x18, 0xff, 0x63, 0x2f, 0x18, 0xff, 0x61, 0x2e, 0x18, 0xff, 0x61, 0x31, 0x18, 0xff, 0x63, 0x31, 0x18, 0xff, 0x63, 0x32, 0x18, 0xff, 0x64, 0x32, 0x18, 0xff, 0x65, 0x32, 0x18, 0xff, 0x65, 0x35, 0x18, 0xff, 0x6a, 0x3a, 0x18, 0xff, 0x7b, 0x43, 0x1e, 0xff, 0x7e, 0x44, 0x1e, 0xff, 0x79, 0x3f, 0x1a, 0xff, 0x95, 0x56, 0x2e, 0xff, 0xa3, 0x64, 0x39, 0xff, 0xa1, 0x65, 0x38, 0xff, 0x9e, 0x60, 0x37, 0xff, 0x9e, 0x5e, 0x35, 0xff, 0x9e, 0x5f, 0x35, 0xff, 0xa1, 0x63, 0x37, 0xff, 0xa7, 0x6b, 0x3e, 0xff, 0xaf, 0x72, 0x45, 0xff, 0xb1, 0x77, 0x4b, 0xff, 0xb2, 0x79, 0x4c, 0xff, 0xb0, 0x76, 0x49, 0xff, 0xb2, 0x79, 0x4b, 0xff, 0xaf, 0x72, 0x46, 0xff, 0xa6, 0x68, 0x3c, 0xff, 0x9e, 0x60, 0x36, 0xff, 0x99, 0x59, 0x32, 0xff, 0x95, 0x55, 0x2f, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x92, 0x52, 0x2d, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x95, 0x55, 0x30, 0xff, 0x98, 0x5a, 0x33, 0xff, 0x95, 0x58, 0x32, 0xff, 0x92, 0x55, 0x31, 0xff, 0x92, 0x54, 0x31, 0xff, 0x92, 0x53, 0x31, 0xff, 0x92, 0x54, 0x30, 0xff, 0x91, 0x55, 0x31, 0xff, 0x91, 0x56, 0x33, 0xff, 0x92, 0x58, 0x35, 0xff, 0x89, 0x4f, 0x2f, 0xff, 0x86, 0x4b, 0x2a, 0xff, 0x82, 0x47, 0x25, 0xff, 0x82, 0x43, 0x23, 0xff, 0x7e, 0x43, 0x20, 0xff, 0x7d, 0x42, 0x1f, 0xff, 0x7b, 0x41, 0x1f, 0xff, 0x7b, 0x41, 0x1d, 0xff, 0x7d, 0x43, 0x21, 0xff, 0x7d, 0x42, 0x1f, 0xff, 0x7c, 0x41, 0x1e, 0xff, 0x7a, 0x42, 0x1d, 0xff, 0x7b, 0x41, 0x1d, 0xff, 0x7c, 0x43, 0x1f, 0xff, 0x7d, 0x43, 0x1f, 0xff, 0x7b, 0x44, 0x21, 0xff, 0x7b, 0x42, 0x1f, 0xff, 0x7a, 0x41, 0x1f, 0xff, 0x76, 0x41, 0x1e, 0xff, 0x77, 0x40, 0x1d, 0xff, 0x77, 0x3f, 0x1d, 0xff, 0x75, 0x3d, 0x1b, 0xff, 0x76, 0x3f, 0x1c, 0xff, 0x76, 0x3f, 0x1c, 0xff, 0x77, 0x3f, 0x1b, 0xff, 0x7a, 0x40, 0x1c, 0xff, 0x98, 0x5b, 0x36, 0xff, 0x92, 0x54, 0x31, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8c, 0x50, 0x2f, 0xff, 0x8a, 0x4d, 0x2c, 0xff, 0x8a, 0x4d, 0x2c, 0xff, 0x89, 0x4c, 0x2a, 0xff, 0x89, 0x4c, 0x29, 0xff, 0x87, 0x4a, 0x27, 0xff, 0x86, 0x48, 0x27, 0xff, + 0x85, 0x48, 0x27, 0xff, 0x86, 0x48, 0x25, 0xff, 0x86, 0x48, 0x25, 0xff, 0x84, 0x47, 0x25, 0xff, 0x82, 0x46, 0x22, 0xff, 0x81, 0x45, 0x21, 0xff, 0x82, 0x46, 0x23, 0xff, 0x80, 0x45, 0x23, 0xff, 0x81, 0x45, 0x24, 0xff, 0x7e, 0x44, 0x20, 0xff, 0x7b, 0x42, 0x1f, 0xff, 0x78, 0x3f, 0x1c, 0xff, 0x76, 0x3b, 0x1a, 0xff, 0x74, 0x3c, 0x1a, 0xff, 0x73, 0x3c, 0x1a, 0xff, 0x71, 0x3d, 0x18, 0xff, 0x76, 0x3c, 0x19, 0xff, 0x74, 0x3d, 0x1a, 0xff, 0x74, 0x3b, 0x1a, 0xff, 0x72, 0x3c, 0x18, 0xff, 0x71, 0x3c, 0x18, 0xff, 0x72, 0x3a, 0x18, 0xff, 0x72, 0x3a, 0x18, 0xff, 0x72, 0x3a, 0x18, 0xff, 0x75, 0x3d, 0x1b, 0xff, 0x7a, 0x40, 0x1c, 0xff, 0x7c, 0x43, 0x21, 0xff, 0x7c, 0x44, 0x21, 0xff, 0x7e, 0x44, 0x22, 0xff, 0x7f, 0x45, 0x23, 0xff, 0x7f, 0x46, 0x23, 0xff, 0x80, 0x46, 0x24, 0xff, 0x81, 0x47, 0x25, 0xff, 0x82, 0x47, 0x24, 0xff, 0x83, 0x48, 0x23, 0xff, 0x84, 0x47, 0x23, 0xff, 0x86, 0x47, 0x23, 0xff, 0x84, 0x46, 0x23, 0xff, 0x86, 0x46, 0x22, 0xff, 0x88, 0x49, 0x23, 0xff, 0x88, 0x48, 0x23, 0xff, 0x8a, 0x4a, 0x24, 0xff, 0x8d, 0x4c, 0x27, 0xff, 0x8f, 0x4e, 0x27, 0xff, 0x93, 0x53, 0x2c, 0xff, 0x96, 0x56, 0x2f, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x98, 0x57, 0x30, 0xff, 0x9d, 0x5c, 0x31, 0xff, 0xa2, 0x61, 0x35, 0xff, 0xa5, 0x66, 0x39, 0xff, 0xa6, 0x68, 0x3a, 0xff, 0xa7, 0x68, 0x3a, 0xff, 0xa5, 0x67, 0x39, 0xff, 0xa8, 0x69, 0x3b, 0xff, 0xa9, 0x69, 0x3b, 0xff, 0xac, 0x6d, 0x3e, 0xff, 0xaf, 0x71, 0x42, 0xff, 0xb4, 0x76, 0x46, 0xff, 0xba, 0x7b, 0x4a, 0xff, 0xbe, 0x7f, 0x4e, 0xff, 0xc5, 0x86, 0x53, 0xff, 0xd3, 0x95, 0x5e, 0xff, 0xe3, 0xa4, 0x68, 0xff, 0xe6, 0xa5, 0x69, 0xff, 0xe6, 0xa4, 0x66, 0xff, 0xe6, 0x9e, 0x62, 0xff, 0xe7, 0x98, 0x5f, 0xff, 0xe1, 0x92, 0x59, 0xff, 0xca, 0x89, 0x53, 0xff, 0xbe, 0x80, 0x4e, 0xff, 0xc0, 0x81, 0x50, 0xff, 0xc3, 0x82, 0x51, 0xff, 0xc7, 0x84, 0x52, 0xff, 0xca, 0x87, 0x53, 0xff, 0xd0, 0x89, 0x55, 0xff, 0xd7, 0x8d, 0x58, 0xff, 0xcf, 0x8a, 0x55, 0xff, 0xbe, 0x81, 0x4c, 0xff, 0xc4, 0x85, 0x4d, 0xff, 0xc7, 0x88, 0x4e, 0xff, 0xd0, 0x8f, 0x52, 0xff, 0xdd, 0x99, 0x5c, 0xff, 0xe6, 0x9f, 0x61, 0xff, 0xe3, 0x9c, 0x5a, 0xff, 0xe1, 0x9e, 0x5b, 0xff, 0xe0, 0x9e, 0x5c, 0xff, 0xe3, 0xa0, 0x60, 0xff, 0xe4, 0x9f, 0x60, 0xff, 0xe3, 0x9d, 0x5f, 0xff, 0xe3, 0x9f, 0x61, 0xff, 0xe3, 0xa3, 0x62, 0xff, 0xe8, 0xad, 0x6c, 0xff, 0xd7, 0xa7, 0x6a, 0xff, 0xac, 0x7d, 0x4c, 0xff, 0x9f, 0x69, 0x41, 0xff, 0x9e, 0x68, 0x41, 0xff, 0xa0, 0x6a, 0x45, 0xff, 0xa0, 0x69, 0x46, 0xff, 0x9f, 0x68, 0x48, 0xff, 0x9f, 0x69, 0x48, 0xff, 0xa0, 0x69, 0x48, 0xff, 0xa0, 0x6a, 0x49, 0xff, 0x9f, 0x6a, 0x49, 0xff, 0x9f, 0x6a, 0x49, 0xff, 0x9f, 0x68, 0x48, 0xff, 0x9e, 0x69, 0x47, 0xff, 0x9f, 0x6a, 0x48, 0xff, 0x9f, 0x69, 0x46, 0xff, 0x9e, 0x69, 0x44, 0xff, 0x9e, 0x6a, 0x43, 0xff, 0x9e, 0x69, 0x41, 0xff, 0x9e, 0x68, 0x3f, 0xff, 0x9c, 0x64, 0x3b, 0xff, 0x99, 0x60, 0x39, 0xff, 0x97, 0x5f, 0x38, 0xff, 0x96, 0x5e, 0x37, 0xff, 0x94, 0x5b, 0x35, 0xff, 0xa3, 0x69, 0x3f, 0xff, 0xbb, 0x80, 0x51, 0xff, 0xbe, 0x84, 0x52, 0xff, 0xbb, 0x7d, 0x4b, 0xff, 0xb7, 0x78, 0x47, 0xff, 0xb5, 0x77, 0x45, 0xff, 0xb5, 0x77, 0x45, 0xff, 0xb2, 0x76, 0x43, 0xff, 0xb2, 0x74, 0x43, 0xff, 0xb1, 0x74, 0x44, 0xff, 0xaf, 0x77, 0x47, 0xff, 0xb0, 0x76, 0x4b, 0xff, 0xa9, 0x6e, 0x44, 0xff, 0xa0, 0x63, 0x38, 0xff, 0x9d, 0x5e, 0x35, 0xff, 0x9c, 0x5d, 0x34, 0xff, 0x99, 0x5b, 0x32, 0xff, 0x97, 0x58, 0x31, 0xff, 0x96, 0x56, 0x31, 0xff, 0x94, 0x56, 0x30, 0xff, 0x93, 0x55, 0x2f, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x8f, 0x50, 0x2c, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x8e, 0x50, 0x2d, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x8d, 0x4e, 0x2c, 0xff, 0x8e, 0x50, 0x2e, 0xff, 0x88, 0x4b, 0x2a, 0xff, 0x7a, 0x3f, 0x1f, 0xff, 0x6d, 0x35, 0x19, 0xff, 0x67, 0x34, 0x18, 0xff, 0x63, 0x32, 0x18, 0xff, 0x63, 0x30, 0x18, 0xff, 0x63, 0x30, 0x18, 0xff, 0x62, 0x30, 0x18, 0xff, 0x62, 0x30, 0x18, 0xff, 0x63, 0x32, 0x18, 0xff, 0x62, 0x31, 0x18, 0xff, 0x63, 0x31, 0x18, 0xff, 0x64, 0x31, 0x18, 0xff, 0x64, 0x34, 0x18, 0xff, 0x68, 0x38, 0x18, 0xff, 0x7a, 0x42, 0x1c, 0xff, 0x7e, 0x43, 0x1e, 0xff, 0x7a, 0x40, 0x1c, 0xff, 0x8d, 0x4f, 0x2c, 0xff, 0xa4, 0x65, 0x3a, 0xff, 0xa4, 0x67, 0x3a, 0xff, 0xa2, 0x64, 0x38, 0xff, 0xa1, 0x61, 0x37, 0xff, 0x9d, 0x5f, 0x36, 0xff, 0xa0, 0x61, 0x38, 0xff, 0xa6, 0x68, 0x3d, 0xff, 0xad, 0x72, 0x45, 0xff, 0xaf, 0x77, 0x4c, 0xff, 0xb0, 0x7a, 0x4e, 0xff, 0xb0, 0x79, 0x4c, 0xff, 0xb0, 0x7c, 0x51, 0xff, 0xaf, 0x76, 0x4b, 0xff, 0xa9, 0x6b, 0x3f, 0xff, 0xa1, 0x62, 0x38, 0xff, 0x99, 0x5a, 0x33, 0xff, 0x96, 0x56, 0x2f, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x92, 0x52, 0x2f, 0xff, 0x92, 0x52, 0x2d, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x95, 0x55, 0x2f, 0xff, 0x96, 0x58, 0x32, 0xff, 0x94, 0x56, 0x32, 0xff, 0x92, 0x56, 0x31, 0xff, 0x92, 0x53, 0x31, 0xff, 0x90, 0x54, 0x31, 0xff, 0x90, 0x53, 0x30, 0xff, 0x90, 0x53, 0x31, 0xff, 0x91, 0x55, 0x33, 0xff, 0x92, 0x56, 0x33, 0xff, 0x89, 0x4d, 0x2e, 0xff, 0x84, 0x49, 0x28, 0xff, 0x80, 0x43, 0x24, 0xff, 0x80, 0x45, 0x23, 0xff, 0x7e, 0x43, 0x21, 0xff, 0x7d, 0x43, 0x20, 0xff, 0x7c, 0x42, 0x1f, 0xff, 0x7c, 0x41, 0x1e, 0xff, 0x7d, 0x41, 0x1e, 0xff, 0x7b, 0x42, 0x1f, 0xff, 0x7b, 0x41, 0x1d, 0xff, 0x7b, 0x42, 0x1f, 0xff, 0x7c, 0x42, 0x1e, 0xff, 0x7d, 0x43, 0x1f, 0xff, 0x7d, 0x43, 0x21, 0xff, 0x7b, 0x43, 0x21, 0xff, 0x7a, 0x41, 0x1f, 0xff, 0x77, 0x3f, 0x1d, 0xff, 0x75, 0x3f, 0x1d, 0xff, 0x74, 0x3d, 0x1b, 0xff, 0x74, 0x3c, 0x1b, 0xff, 0x76, 0x3d, 0x1b, 0xff, 0x75, 0x3d, 0x1a, 0xff, 0x75, 0x3d, 0x1a, 0xff, 0x74, 0x3e, 0x1b, 0xff, 0x77, 0x3e, 0x1a, 0xff, 0x98, 0x5b, 0x35, 0xff, 0x94, 0x55, 0x31, 0xff, 0x90, 0x53, 0x30, 0xff, 0x8e, 0x50, 0x2f, 0xff, 0x8c, 0x4e, 0x2e, 0xff, 0x8b, 0x4c, 0x2d, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x89, 0x4c, 0x2a, 0xff, 0x88, 0x4a, 0x27, 0xff, 0x86, 0x4a, 0x27, 0xff, + 0x88, 0x49, 0x25, 0xff, 0x86, 0x48, 0x25, 0xff, 0x86, 0x48, 0x25, 0xff, 0x86, 0x48, 0x25, 0xff, 0x86, 0x48, 0x25, 0xff, 0x82, 0x47, 0x22, 0xff, 0x81, 0x44, 0x22, 0xff, 0x82, 0x46, 0x23, 0xff, 0x82, 0x46, 0x23, 0xff, 0x7f, 0x44, 0x1f, 0xff, 0x7a, 0x42, 0x1f, 0xff, 0x78, 0x3f, 0x1c, 0xff, 0x76, 0x3e, 0x1a, 0xff, 0x74, 0x3c, 0x1a, 0xff, 0x76, 0x3d, 0x1a, 0xff, 0x76, 0x3d, 0x1a, 0xff, 0x76, 0x3e, 0x1a, 0xff, 0x76, 0x3e, 0x1a, 0xff, 0x74, 0x3e, 0x1a, 0xff, 0x71, 0x3c, 0x18, 0xff, 0x72, 0x3d, 0x18, 0xff, 0x72, 0x37, 0x18, 0xff, 0x71, 0x3c, 0x18, 0xff, 0x75, 0x3d, 0x1a, 0xff, 0x78, 0x3e, 0x1a, 0xff, 0x7a, 0x42, 0x1d, 0xff, 0x7c, 0x41, 0x1d, 0xff, 0x7c, 0x42, 0x21, 0xff, 0x7d, 0x44, 0x21, 0xff, 0x7e, 0x44, 0x22, 0xff, 0x7f, 0x44, 0x23, 0xff, 0x80, 0x46, 0x23, 0xff, 0x82, 0x47, 0x23, 0xff, 0x82, 0x47, 0x23, 0xff, 0x83, 0x48, 0x23, 0xff, 0x84, 0x46, 0x23, 0xff, 0x84, 0x46, 0x23, 0xff, 0x86, 0x48, 0x23, 0xff, 0x88, 0x48, 0x22, 0xff, 0x88, 0x48, 0x21, 0xff, 0x89, 0x4a, 0x25, 0xff, 0x89, 0x4a, 0x24, 0xff, 0x8c, 0x4c, 0x25, 0xff, 0x8e, 0x4e, 0x26, 0xff, 0x92, 0x52, 0x2d, 0xff, 0x95, 0x54, 0x2d, 0xff, 0x95, 0x54, 0x2f, 0xff, 0x94, 0x55, 0x2e, 0xff, 0x99, 0x59, 0x31, 0xff, 0x9e, 0x5e, 0x32, 0xff, 0x9f, 0x60, 0x34, 0xff, 0x9d, 0x5e, 0x35, 0xff, 0x9f, 0x60, 0x36, 0xff, 0x9e, 0x5e, 0x35, 0xff, 0x9c, 0x5e, 0x35, 0xff, 0xa1, 0x62, 0x37, 0xff, 0xa5, 0x66, 0x3a, 0xff, 0xa9, 0x6b, 0x3e, 0xff, 0xae, 0x70, 0x43, 0xff, 0xb3, 0x74, 0x45, 0xff, 0xb8, 0x78, 0x4a, 0xff, 0xc7, 0x85, 0x54, 0xff, 0xd6, 0x91, 0x5c, 0xff, 0xdb, 0x98, 0x5e, 0xff, 0xe5, 0x9f, 0x63, 0xff, 0xe5, 0x9e, 0x65, 0xff, 0xe7, 0x9b, 0x62, 0xff, 0xe6, 0x95, 0x5d, 0xff, 0xd7, 0x8e, 0x57, 0xff, 0xc3, 0x81, 0x50, 0xff, 0xc0, 0x80, 0x4f, 0xff, 0xc0, 0x80, 0x50, 0xff, 0xc0, 0x80, 0x4f, 0xff, 0xc2, 0x82, 0x52, 0xff, 0xc6, 0x85, 0x54, 0xff, 0xcc, 0x87, 0x55, 0xff, 0xd3, 0x8a, 0x57, 0xff, 0xd4, 0x8b, 0x57, 0xff, 0xbc, 0x80, 0x4c, 0xff, 0xbe, 0x80, 0x4b, 0xff, 0xbf, 0x83, 0x4e, 0xff, 0xbe, 0x85, 0x4f, 0xff, 0xcb, 0x8e, 0x57, 0xff, 0xe6, 0xa0, 0x64, 0xff, 0xe2, 0x9f, 0x5e, 0xff, 0xe4, 0xa0, 0x60, 0xff, 0xe2, 0xa0, 0x5e, 0xff, 0xe3, 0xa0, 0x5f, 0xff, 0xe4, 0x9d, 0x5f, 0xff, 0xe2, 0x9d, 0x5d, 0xff, 0xe2, 0x9e, 0x5d, 0xff, 0xe5, 0xa4, 0x64, 0xff, 0xc4, 0x8e, 0x56, 0xff, 0xa0, 0x67, 0x3c, 0xff, 0xa1, 0x68, 0x3f, 0xff, 0xa0, 0x68, 0x3f, 0xff, 0x9f, 0x69, 0x40, 0xff, 0x9e, 0x69, 0x42, 0xff, 0x9e, 0x67, 0x45, 0xff, 0x9e, 0x67, 0x46, 0xff, 0x9f, 0x69, 0x48, 0xff, 0x9f, 0x69, 0x49, 0xff, 0x9e, 0x69, 0x48, 0xff, 0x9f, 0x6a, 0x49, 0xff, 0x9f, 0x69, 0x49, 0xff, 0xa0, 0x6a, 0x49, 0xff, 0x9f, 0x68, 0x49, 0xff, 0x9e, 0x69, 0x49, 0xff, 0xa0, 0x6b, 0x49, 0xff, 0xa0, 0x6a, 0x48, 0xff, 0x9f, 0x6b, 0x46, 0xff, 0xa0, 0x6b, 0x44, 0xff, 0xa0, 0x6a, 0x43, 0xff, 0x9f, 0x68, 0x41, 0xff, 0x9b, 0x63, 0x3c, 0xff, 0x98, 0x60, 0x39, 0xff, 0x98, 0x60, 0x39, 0xff, 0x95, 0x5d, 0x36, 0xff, 0xa4, 0x6b, 0x40, 0xff, 0xbd, 0x83, 0x53, 0xff, 0xc1, 0x87, 0x56, 0xff, 0xbc, 0x7f, 0x4d, 0xff, 0xb9, 0x7a, 0x49, 0xff, 0xb6, 0x78, 0x47, 0xff, 0xb5, 0x76, 0x45, 0xff, 0xb6, 0x77, 0x45, 0xff, 0xb4, 0x75, 0x44, 0xff, 0xb2, 0x76, 0x45, 0xff, 0xb1, 0x7a, 0x49, 0xff, 0xa7, 0x6d, 0x40, 0xff, 0xa2, 0x63, 0x39, 0xff, 0xa0, 0x62, 0x3a, 0xff, 0x9e, 0x5f, 0x37, 0xff, 0x9c, 0x5d, 0x35, 0xff, 0x9a, 0x5d, 0x34, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x96, 0x57, 0x30, 0xff, 0x94, 0x56, 0x30, 0xff, 0x92, 0x55, 0x2f, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x8f, 0x51, 0x2d, 0xff, 0x8e, 0x50, 0x2c, 0xff, 0x8e, 0x50, 0x2b, 0xff, 0x8e, 0x4e, 0x2c, 0xff, 0x8d, 0x4d, 0x2c, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8c, 0x4e, 0x2d, 0xff, 0x8d, 0x4e, 0x2d, 0xff, 0x7d, 0x43, 0x21, 0xff, 0x70, 0x3c, 0x19, 0xff, 0x6c, 0x3a, 0x18, 0xff, 0x64, 0x31, 0x18, 0xff, 0x62, 0x2f, 0x18, 0xff, 0x62, 0x30, 0x18, 0xff, 0x60, 0x2e, 0x18, 0xff, 0x61, 0x31, 0x18, 0xff, 0x63, 0x33, 0x18, 0xff, 0x62, 0x31, 0x18, 0xff, 0x63, 0x31, 0x18, 0xff, 0x64, 0x33, 0x18, 0xff, 0x65, 0x34, 0x17, 0xff, 0x7a, 0x40, 0x1d, 0xff, 0x7f, 0x44, 0x1e, 0xff, 0x7c, 0x43, 0x1d, 0xff, 0x7e, 0x43, 0x1e, 0xff, 0xa3, 0x65, 0x3b, 0xff, 0xa8, 0x6a, 0x3e, 0xff, 0xa7, 0x69, 0x3d, 0xff, 0xa3, 0x66, 0x39, 0xff, 0x9f, 0x60, 0x36, 0xff, 0x9f, 0x62, 0x37, 0xff, 0xa4, 0x66, 0x3b, 0xff, 0xab, 0x6f, 0x43, 0xff, 0xaf, 0x77, 0x4a, 0xff, 0xae, 0x7a, 0x4f, 0xff, 0xae, 0x7b, 0x4e, 0xff, 0xae, 0x7f, 0x54, 0xff, 0xaf, 0x78, 0x4c, 0xff, 0xab, 0x6e, 0x43, 0xff, 0xa3, 0x63, 0x3a, 0xff, 0x9b, 0x5b, 0x34, 0xff, 0x97, 0x57, 0x30, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x91, 0x52, 0x2d, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x90, 0x50, 0x2e, 0xff, 0x90, 0x50, 0x2e, 0xff, 0x93, 0x55, 0x2f, 0xff, 0x94, 0x57, 0x31, 0xff, 0x93, 0x57, 0x32, 0xff, 0x92, 0x55, 0x31, 0xff, 0x90, 0x54, 0x31, 0xff, 0x90, 0x54, 0x31, 0xff, 0x90, 0x53, 0x30, 0xff, 0x90, 0x54, 0x31, 0xff, 0x91, 0x54, 0x31, 0xff, 0x92, 0x55, 0x31, 0xff, 0x88, 0x4c, 0x2c, 0xff, 0x82, 0x47, 0x25, 0xff, 0x80, 0x44, 0x23, 0xff, 0x7d, 0x43, 0x21, 0xff, 0x7f, 0x44, 0x21, 0xff, 0x7c, 0x44, 0x21, 0xff, 0x79, 0x3e, 0x1d, 0xff, 0x7d, 0x42, 0x21, 0xff, 0x7c, 0x40, 0x1d, 0xff, 0x7b, 0x42, 0x1e, 0xff, 0x7b, 0x40, 0x1d, 0xff, 0x7b, 0x40, 0x1d, 0xff, 0x7b, 0x43, 0x1f, 0xff, 0x7c, 0x42, 0x1f, 0xff, 0x7b, 0x41, 0x1f, 0xff, 0x78, 0x42, 0x1f, 0xff, 0x77, 0x41, 0x1d, 0xff, 0x75, 0x40, 0x1d, 0xff, 0x73, 0x3e, 0x1a, 0xff, 0x74, 0x3c, 0x1a, 0xff, 0x73, 0x3c, 0x1a, 0xff, 0x73, 0x3b, 0x1a, 0xff, 0x74, 0x3c, 0x1a, 0xff, 0x74, 0x3b, 0x1a, 0xff, 0x75, 0x3c, 0x1a, 0xff, 0x75, 0x3d, 0x1a, 0xff, 0x93, 0x57, 0x33, 0xff, 0x97, 0x58, 0x34, 0xff, 0x92, 0x54, 0x31, 0xff, 0x8e, 0x52, 0x2f, 0xff, 0x8d, 0x4f, 0x2f, 0xff, 0x8b, 0x4e, 0x2d, 0xff, 0x8b, 0x4c, 0x2d, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x89, 0x4c, 0x2a, 0xff, 0x89, 0x4b, 0x29, 0xff, + 0x88, 0x4a, 0x27, 0xff, 0x88, 0x49, 0x27, 0xff, 0x88, 0x49, 0x27, 0xff, 0x87, 0x49, 0x25, 0xff, 0x86, 0x48, 0x25, 0xff, 0x86, 0x49, 0x25, 0xff, 0x82, 0x46, 0x24, 0xff, 0x83, 0x47, 0x23, 0xff, 0x82, 0x45, 0x24, 0xff, 0x7f, 0x43, 0x21, 0xff, 0x7c, 0x42, 0x1e, 0xff, 0x79, 0x40, 0x1c, 0xff, 0x76, 0x3e, 0x1c, 0xff, 0x76, 0x3e, 0x1a, 0xff, 0x76, 0x3f, 0x1c, 0xff, 0x78, 0x3f, 0x1a, 0xff, 0x78, 0x3e, 0x1a, 0xff, 0x78, 0x40, 0x1d, 0xff, 0x76, 0x3e, 0x1a, 0xff, 0x72, 0x3a, 0x19, 0xff, 0x72, 0x39, 0x18, 0xff, 0x72, 0x3a, 0x18, 0xff, 0x74, 0x3b, 0x18, 0xff, 0x78, 0x40, 0x1c, 0xff, 0x78, 0x3f, 0x1a, 0xff, 0x7b, 0x40, 0x1d, 0xff, 0x7b, 0x40, 0x1d, 0xff, 0x7a, 0x40, 0x1c, 0xff, 0x7c, 0x42, 0x21, 0xff, 0x7d, 0x43, 0x1f, 0xff, 0x7e, 0x44, 0x22, 0xff, 0x80, 0x46, 0x23, 0xff, 0x80, 0x47, 0x23, 0xff, 0x83, 0x48, 0x23, 0xff, 0x84, 0x47, 0x23, 0xff, 0x84, 0x46, 0x23, 0xff, 0x84, 0x46, 0x23, 0xff, 0x85, 0x47, 0x22, 0xff, 0x87, 0x47, 0x23, 0xff, 0x89, 0x48, 0x23, 0xff, 0x88, 0x49, 0x23, 0xff, 0x88, 0x48, 0x24, 0xff, 0x8a, 0x4b, 0x25, 0xff, 0x8b, 0x4b, 0x28, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x94, 0x55, 0x30, 0xff, 0x97, 0x57, 0x31, 0xff, 0x94, 0x57, 0x31, 0xff, 0x99, 0x5b, 0x31, 0xff, 0x9c, 0x5d, 0x35, 0xff, 0x9d, 0x5e, 0x36, 0xff, 0x9c, 0x5d, 0x35, 0xff, 0x9d, 0x5d, 0x36, 0xff, 0xa0, 0x61, 0x39, 0xff, 0xa2, 0x64, 0x3b, 0xff, 0xa3, 0x65, 0x3b, 0xff, 0xa6, 0x68, 0x3d, 0xff, 0xab, 0x6b, 0x40, 0xff, 0xaf, 0x71, 0x44, 0xff, 0xa9, 0x6d, 0x40, 0xff, 0xc2, 0x83, 0x51, 0xff, 0xd8, 0x90, 0x59, 0xff, 0xdb, 0x92, 0x5a, 0xff, 0xe1, 0x93, 0x5a, 0xff, 0xdb, 0x91, 0x58, 0xff, 0xc4, 0x85, 0x50, 0xff, 0xc3, 0x83, 0x50, 0xff, 0xc0, 0x80, 0x4e, 0xff, 0xc0, 0x80, 0x4e, 0xff, 0xc1, 0x81, 0x50, 0xff, 0xc1, 0x82, 0x50, 0xff, 0xc3, 0x84, 0x52, 0xff, 0xc7, 0x84, 0x53, 0xff, 0xcf, 0x89, 0x55, 0xff, 0xce, 0x87, 0x55, 0xff, 0xb5, 0x77, 0x48, 0xff, 0xb7, 0x79, 0x48, 0xff, 0xbd, 0x83, 0x4e, 0xff, 0xc0, 0x85, 0x53, 0xff, 0xbe, 0x82, 0x52, 0xff, 0xc8, 0x86, 0x51, 0xff, 0xe7, 0x9b, 0x62, 0xff, 0xe1, 0x98, 0x5d, 0xff, 0xe4, 0x9e, 0x61, 0xff, 0xe4, 0x9f, 0x5f, 0xff, 0xe3, 0xa0, 0x5f, 0xff, 0xe4, 0xa2, 0x5f, 0xff, 0xde, 0x9f, 0x5f, 0xff, 0xbd, 0x84, 0x51, 0xff, 0x9f, 0x68, 0x3c, 0xff, 0xa0, 0x67, 0x3e, 0xff, 0x9f, 0x66, 0x3e, 0xff, 0x9e, 0x65, 0x3b, 0xff, 0x9e, 0x67, 0x3c, 0xff, 0x9e, 0x68, 0x3e, 0xff, 0x9d, 0x68, 0x43, 0xff, 0x9e, 0x68, 0x46, 0xff, 0x9f, 0x69, 0x47, 0xff, 0x9f, 0x6a, 0x49, 0xff, 0x9e, 0x6a, 0x48, 0xff, 0x9e, 0x69, 0x49, 0xff, 0x9f, 0x69, 0x48, 0xff, 0xa0, 0x68, 0x49, 0xff, 0xa0, 0x69, 0x49, 0xff, 0x9f, 0x69, 0x4a, 0xff, 0xa0, 0x6b, 0x4b, 0xff, 0xa1, 0x6c, 0x4b, 0xff, 0xa1, 0x6d, 0x49, 0xff, 0xa0, 0x6e, 0x47, 0xff, 0xa1, 0x6c, 0x46, 0xff, 0xa0, 0x69, 0x43, 0xff, 0x9f, 0x67, 0x40, 0xff, 0x9c, 0x63, 0x3c, 0xff, 0x98, 0x60, 0x3a, 0xff, 0x95, 0x5d, 0x38, 0xff, 0xa7, 0x6d, 0x43, 0xff, 0xbe, 0x84, 0x53, 0xff, 0xc0, 0x86, 0x55, 0xff, 0xbb, 0x7e, 0x4f, 0xff, 0xb8, 0x7a, 0x4a, 0xff, 0xb6, 0x78, 0x48, 0xff, 0xb5, 0x77, 0x47, 0xff, 0xb7, 0x78, 0x47, 0xff, 0xb6, 0x78, 0x47, 0xff, 0xb3, 0x76, 0x46, 0xff, 0xab, 0x6e, 0x41, 0xff, 0xa7, 0x69, 0x3d, 0xff, 0xa4, 0x67, 0x3c, 0xff, 0xa2, 0x65, 0x3a, 0xff, 0xa1, 0x62, 0x3a, 0xff, 0x9f, 0x5f, 0x37, 0xff, 0x9c, 0x5d, 0x35, 0xff, 0x98, 0x5a, 0x33, 0xff, 0x96, 0x57, 0x31, 0xff, 0x94, 0x55, 0x30, 0xff, 0x92, 0x54, 0x2f, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x8e, 0x4f, 0x2b, 0xff, 0x8d, 0x4e, 0x2b, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8b, 0x4d, 0x2a, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8b, 0x4d, 0x2a, 0xff, 0x8f, 0x50, 0x2e, 0xff, 0x7e, 0x43, 0x22, 0xff, 0x71, 0x3b, 0x19, 0xff, 0x6e, 0x38, 0x18, 0xff, 0x67, 0x33, 0x18, 0xff, 0x61, 0x2f, 0x18, 0xff, 0x61, 0x2f, 0x18, 0xff, 0x62, 0x30, 0x18, 0xff, 0x62, 0x32, 0x18, 0xff, 0x64, 0x30, 0x18, 0xff, 0x63, 0x31, 0x18, 0xff, 0x63, 0x30, 0x18, 0xff, 0x64, 0x32, 0x17, 0xff, 0x76, 0x40, 0x1f, 0xff, 0x7d, 0x43, 0x1e, 0xff, 0x7d, 0x43, 0x1f, 0xff, 0x7d, 0x41, 0x1e, 0xff, 0x9c, 0x5e, 0x34, 0xff, 0xa7, 0x6b, 0x3f, 0xff, 0xa6, 0x6c, 0x3e, 0xff, 0xa3, 0x65, 0x3a, 0xff, 0x9f, 0x5f, 0x36, 0xff, 0x9e, 0x61, 0x36, 0xff, 0xa1, 0x64, 0x39, 0xff, 0xa8, 0x6c, 0x3f, 0xff, 0xad, 0x75, 0x47, 0xff, 0xad, 0x79, 0x4e, 0xff, 0xad, 0x7b, 0x50, 0xff, 0xae, 0x7e, 0x56, 0xff, 0xae, 0x7b, 0x4e, 0xff, 0xac, 0x71, 0x44, 0xff, 0xa4, 0x65, 0x3b, 0xff, 0x9c, 0x5d, 0x34, 0xff, 0x96, 0x56, 0x31, 0xff, 0x93, 0x55, 0x2f, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x90, 0x51, 0x2f, 0xff, 0x94, 0x55, 0x2f, 0xff, 0x94, 0x56, 0x31, 0xff, 0x93, 0x55, 0x32, 0xff, 0x90, 0x54, 0x31, 0xff, 0x90, 0x53, 0x31, 0xff, 0x90, 0x54, 0x31, 0xff, 0x90, 0x52, 0x30, 0xff, 0x8f, 0x52, 0x30, 0xff, 0x90, 0x53, 0x31, 0xff, 0x90, 0x53, 0x32, 0xff, 0x86, 0x4a, 0x29, 0xff, 0x81, 0x45, 0x24, 0xff, 0x7e, 0x42, 0x21, 0xff, 0x7c, 0x43, 0x21, 0xff, 0x7e, 0x43, 0x21, 0xff, 0x7c, 0x42, 0x1f, 0xff, 0x7c, 0x42, 0x1f, 0xff, 0x7e, 0x42, 0x1f, 0xff, 0x7b, 0x42, 0x1f, 0xff, 0x79, 0x41, 0x1d, 0xff, 0x7b, 0x3f, 0x1d, 0xff, 0x7b, 0x40, 0x1d, 0xff, 0x7a, 0x42, 0x1f, 0xff, 0x7a, 0x42, 0x1f, 0xff, 0x7a, 0x3f, 0x1d, 0xff, 0x77, 0x40, 0x1e, 0xff, 0x75, 0x3f, 0x1d, 0xff, 0x73, 0x3f, 0x1a, 0xff, 0x73, 0x3a, 0x1a, 0xff, 0x73, 0x3b, 0x1a, 0xff, 0x71, 0x39, 0x18, 0xff, 0x72, 0x3a, 0x18, 0xff, 0x72, 0x3c, 0x19, 0xff, 0x72, 0x3c, 0x19, 0xff, 0x73, 0x3b, 0x1a, 0xff, 0x74, 0x3c, 0x1a, 0xff, 0x83, 0x49, 0x24, 0xff, 0x9b, 0x5d, 0x37, 0xff, 0x95, 0x56, 0x31, 0xff, 0x92, 0x53, 0x31, 0xff, 0x8f, 0x51, 0x2f, 0xff, 0x8d, 0x50, 0x2f, 0xff, 0x8b, 0x4e, 0x2d, 0xff, 0x8b, 0x4c, 0x2d, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x88, 0x4a, 0x27, 0xff, + 0x88, 0x4b, 0x28, 0xff, 0x88, 0x49, 0x28, 0xff, 0x88, 0x49, 0x27, 0xff, 0x88, 0x49, 0x27, 0xff, 0x87, 0x49, 0x26, 0xff, 0x87, 0x49, 0x26, 0xff, 0x86, 0x49, 0x26, 0xff, 0x85, 0x48, 0x24, 0xff, 0x81, 0x44, 0x22, 0xff, 0x7f, 0x44, 0x22, 0xff, 0x7d, 0x42, 0x1e, 0xff, 0x7a, 0x40, 0x1e, 0xff, 0x7a, 0x40, 0x1d, 0xff, 0x7a, 0x40, 0x1e, 0xff, 0x79, 0x40, 0x1c, 0xff, 0x79, 0x3f, 0x1c, 0xff, 0x7a, 0x40, 0x1b, 0xff, 0x79, 0x3f, 0x1c, 0xff, 0x78, 0x3f, 0x1b, 0xff, 0x74, 0x3d, 0x1a, 0xff, 0x72, 0x3b, 0x18, 0xff, 0x75, 0x3c, 0x1a, 0xff, 0x79, 0x40, 0x1d, 0xff, 0x78, 0x3f, 0x1b, 0xff, 0x7a, 0x40, 0x1b, 0xff, 0x7a, 0x40, 0x1c, 0xff, 0x7b, 0x40, 0x1d, 0xff, 0x7c, 0x41, 0x1e, 0xff, 0x7c, 0x40, 0x1e, 0xff, 0x7d, 0x42, 0x1e, 0xff, 0x7f, 0x43, 0x22, 0xff, 0x81, 0x45, 0x23, 0xff, 0x81, 0x44, 0x23, 0xff, 0x81, 0x45, 0x23, 0xff, 0x83, 0x47, 0x23, 0xff, 0x85, 0x47, 0x23, 0xff, 0x84, 0x48, 0x24, 0xff, 0x85, 0x47, 0x22, 0xff, 0x86, 0x48, 0x23, 0xff, 0x85, 0x48, 0x24, 0xff, 0x86, 0x49, 0x26, 0xff, 0x86, 0x48, 0x26, 0xff, 0x87, 0x49, 0x27, 0xff, 0x89, 0x4a, 0x28, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x93, 0x55, 0x30, 0xff, 0x94, 0x57, 0x31, 0xff, 0x95, 0x56, 0x31, 0xff, 0x97, 0x59, 0x32, 0xff, 0x99, 0x5a, 0x33, 0xff, 0x9c, 0x5d, 0x36, 0xff, 0x9e, 0x60, 0x37, 0xff, 0x9c, 0x5e, 0x35, 0xff, 0xa0, 0x63, 0x39, 0xff, 0xa3, 0x66, 0x3a, 0xff, 0xa4, 0x68, 0x3c, 0xff, 0xa8, 0x6b, 0x3f, 0xff, 0xae, 0x6f, 0x43, 0xff, 0xad, 0x70, 0x43, 0xff, 0xa7, 0x69, 0x3d, 0xff, 0xa8, 0x69, 0x3e, 0xff, 0xa9, 0x6c, 0x3f, 0xff, 0xae, 0x71, 0x43, 0xff, 0xb4, 0x77, 0x46, 0xff, 0xbb, 0x7c, 0x4a, 0xff, 0xbe, 0x7e, 0x4c, 0xff, 0xc0, 0x7f, 0x4d, 0xff, 0xc0, 0x7f, 0x4c, 0xff, 0xbf, 0x7e, 0x4c, 0xff, 0xbf, 0x80, 0x4e, 0xff, 0xc1, 0x81, 0x50, 0xff, 0xc2, 0x82, 0x51, 0xff, 0xc3, 0x82, 0x51, 0xff, 0xcb, 0x86, 0x55, 0xff, 0xcf, 0x87, 0x55, 0xff, 0xba, 0x7a, 0x4a, 0xff, 0xb1, 0x73, 0x45, 0xff, 0xb3, 0x76, 0x47, 0xff, 0xb9, 0x7d, 0x4d, 0xff, 0xbc, 0x80, 0x50, 0xff, 0xc3, 0x87, 0x51, 0xff, 0xdd, 0x98, 0x5e, 0xff, 0xe6, 0x97, 0x5f, 0xff, 0xe2, 0x95, 0x5c, 0xff, 0xe2, 0x97, 0x5d, 0xff, 0xe3, 0x9f, 0x61, 0xff, 0xdb, 0x9c, 0x5f, 0xff, 0xb5, 0x7d, 0x4b, 0xff, 0x9b, 0x64, 0x3b, 0xff, 0x9f, 0x65, 0x3d, 0xff, 0x9e, 0x64, 0x3a, 0xff, 0x9d, 0x62, 0x38, 0xff, 0x9b, 0x62, 0x39, 0xff, 0x9b, 0x63, 0x3a, 0xff, 0x9d, 0x67, 0x3e, 0xff, 0x9e, 0x69, 0x40, 0xff, 0x9d, 0x68, 0x43, 0xff, 0x9d, 0x67, 0x45, 0xff, 0x9d, 0x68, 0x47, 0xff, 0x9d, 0x67, 0x47, 0xff, 0x9d, 0x68, 0x48, 0xff, 0x9e, 0x69, 0x48, 0xff, 0x9e, 0x68, 0x49, 0xff, 0xa0, 0x6a, 0x4a, 0xff, 0xa0, 0x6a, 0x4b, 0xff, 0xa0, 0x6b, 0x4b, 0xff, 0xa0, 0x6e, 0x4d, 0xff, 0xa0, 0x6e, 0x4c, 0xff, 0xa0, 0x6e, 0x49, 0xff, 0xa1, 0x6d, 0x48, 0xff, 0xa1, 0x6b, 0x45, 0xff, 0xa0, 0x68, 0x42, 0xff, 0x9e, 0x66, 0x40, 0xff, 0x9b, 0x62, 0x3d, 0xff, 0x96, 0x5e, 0x38, 0xff, 0xa8, 0x6e, 0x45, 0xff, 0xbd, 0x81, 0x52, 0xff, 0xc0, 0x83, 0x52, 0xff, 0xbd, 0x7e, 0x50, 0xff, 0xb8, 0x7a, 0x4a, 0xff, 0xb5, 0x78, 0x48, 0xff, 0xb6, 0x77, 0x48, 0xff, 0xb9, 0x7a, 0x49, 0xff, 0xb7, 0x7a, 0x48, 0xff, 0xb0, 0x73, 0x44, 0xff, 0xac, 0x6f, 0x41, 0xff, 0xa9, 0x6e, 0x41, 0xff, 0xa7, 0x6c, 0x40, 0xff, 0xa5, 0x6a, 0x3d, 0xff, 0xa2, 0x65, 0x3b, 0xff, 0xa0, 0x62, 0x3a, 0xff, 0x9d, 0x5f, 0x37, 0xff, 0x9a, 0x5c, 0x34, 0xff, 0x97, 0x59, 0x32, 0xff, 0x94, 0x56, 0x30, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x91, 0x54, 0x2e, 0xff, 0x8f, 0x51, 0x2d, 0xff, 0x8f, 0x50, 0x2c, 0xff, 0x8f, 0x50, 0x2c, 0xff, 0x8c, 0x4e, 0x2a, 0xff, 0x8b, 0x4d, 0x29, 0xff, 0x8b, 0x4c, 0x29, 0xff, 0x8a, 0x4d, 0x29, 0xff, 0x8a, 0x4c, 0x29, 0xff, 0x8b, 0x4c, 0x29, 0xff, 0x8b, 0x4d, 0x29, 0xff, 0x8d, 0x4e, 0x2d, 0xff, 0x85, 0x49, 0x28, 0xff, 0x76, 0x3d, 0x1c, 0xff, 0x6f, 0x3b, 0x18, 0xff, 0x6a, 0x38, 0x18, 0xff, 0x64, 0x30, 0x18, 0xff, 0x62, 0x30, 0x18, 0xff, 0x62, 0x30, 0x18, 0xff, 0x62, 0x30, 0x18, 0xff, 0x62, 0x31, 0x18, 0xff, 0x65, 0x33, 0x18, 0xff, 0x65, 0x35, 0x18, 0xff, 0x6d, 0x3a, 0x1a, 0xff, 0x7c, 0x42, 0x1e, 0xff, 0x7e, 0x43, 0x1c, 0xff, 0x7e, 0x43, 0x1f, 0xff, 0x90, 0x53, 0x2d, 0xff, 0xa4, 0x68, 0x3d, 0xff, 0xa5, 0x6c, 0x40, 0xff, 0xa4, 0x67, 0x3b, 0xff, 0x9f, 0x60, 0x36, 0xff, 0x9e, 0x5e, 0x35, 0xff, 0x9f, 0x61, 0x37, 0xff, 0xa4, 0x67, 0x3c, 0xff, 0xaa, 0x6e, 0x42, 0xff, 0xad, 0x75, 0x47, 0xff, 0xad, 0x7a, 0x51, 0xff, 0xab, 0x7c, 0x54, 0xff, 0xac, 0x78, 0x4d, 0xff, 0xac, 0x72, 0x45, 0xff, 0xa5, 0x67, 0x3d, 0xff, 0x9d, 0x5f, 0x36, 0xff, 0x97, 0x59, 0x32, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x90, 0x50, 0x2f, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x94, 0x56, 0x31, 0xff, 0x91, 0x54, 0x31, 0xff, 0x90, 0x54, 0x31, 0xff, 0x90, 0x52, 0x30, 0xff, 0x90, 0x54, 0x31, 0xff, 0x8e, 0x50, 0x2f, 0xff, 0x8e, 0x51, 0x30, 0xff, 0x8e, 0x50, 0x2f, 0xff, 0x8d, 0x50, 0x2f, 0xff, 0x84, 0x48, 0x29, 0xff, 0x7f, 0x44, 0x23, 0xff, 0x7c, 0x42, 0x21, 0xff, 0x7c, 0x42, 0x1f, 0xff, 0x7a, 0x42, 0x1f, 0xff, 0x7a, 0x41, 0x1f, 0xff, 0x7e, 0x42, 0x21, 0xff, 0x7e, 0x42, 0x1f, 0xff, 0x7b, 0x42, 0x1f, 0xff, 0x7b, 0x41, 0x1e, 0xff, 0x7b, 0x41, 0x1e, 0xff, 0x7a, 0x40, 0x1d, 0xff, 0x7a, 0x41, 0x1d, 0xff, 0x7a, 0x40, 0x1e, 0xff, 0x78, 0x40, 0x1e, 0xff, 0x76, 0x3f, 0x1d, 0xff, 0x74, 0x3e, 0x1c, 0xff, 0x73, 0x3c, 0x1a, 0xff, 0x73, 0x3b, 0x1a, 0xff, 0x71, 0x3a, 0x18, 0xff, 0x71, 0x39, 0x18, 0xff, 0x70, 0x3a, 0x18, 0xff, 0x72, 0x39, 0x18, 0xff, 0x72, 0x3b, 0x19, 0xff, 0x73, 0x3c, 0x1a, 0xff, 0x73, 0x3a, 0x1a, 0xff, 0x7a, 0x3f, 0x20, 0xff, 0x97, 0x5b, 0x35, 0xff, 0x95, 0x57, 0x32, 0xff, 0x93, 0x54, 0x32, 0xff, 0x90, 0x52, 0x30, 0xff, 0x8e, 0x50, 0x2f, 0xff, 0x8d, 0x4f, 0x2e, 0xff, 0x8d, 0x4e, 0x2d, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x8a, 0x4c, 0x2b, 0xff, + 0x8a, 0x4d, 0x2a, 0xff, 0x89, 0x4c, 0x29, 0xff, 0x88, 0x4a, 0x28, 0xff, 0x87, 0x49, 0x25, 0xff, 0x88, 0x49, 0x27, 0xff, 0x89, 0x4a, 0x27, 0xff, 0x88, 0x4a, 0x27, 0xff, 0x88, 0x4a, 0x28, 0xff, 0x83, 0x45, 0x22, 0xff, 0x81, 0x45, 0x23, 0xff, 0x7f, 0x44, 0x20, 0xff, 0x7b, 0x42, 0x21, 0xff, 0x7d, 0x43, 0x20, 0xff, 0x7d, 0x44, 0x20, 0xff, 0x7d, 0x42, 0x1f, 0xff, 0x7c, 0x42, 0x1f, 0xff, 0x7b, 0x41, 0x1f, 0xff, 0x7c, 0x42, 0x20, 0xff, 0x7a, 0x41, 0x1e, 0xff, 0x78, 0x40, 0x1d, 0xff, 0x79, 0x40, 0x1b, 0xff, 0x7a, 0x41, 0x1d, 0xff, 0x7a, 0x40, 0x1c, 0xff, 0x79, 0x3f, 0x1c, 0xff, 0x7a, 0x40, 0x1e, 0xff, 0x7a, 0x41, 0x1e, 0xff, 0x7a, 0x40, 0x1c, 0xff, 0x7b, 0x41, 0x1e, 0xff, 0x7b, 0x42, 0x1e, 0xff, 0x7c, 0x40, 0x1e, 0xff, 0x7f, 0x43, 0x20, 0xff, 0x80, 0x44, 0x21, 0xff, 0x83, 0x47, 0x23, 0xff, 0x83, 0x47, 0x23, 0xff, 0x84, 0x47, 0x23, 0xff, 0x85, 0x48, 0x23, 0xff, 0x84, 0x46, 0x23, 0xff, 0x83, 0x47, 0x23, 0xff, 0x83, 0x47, 0x23, 0xff, 0x83, 0x47, 0x25, 0xff, 0x85, 0x48, 0x25, 0xff, 0x87, 0x4a, 0x27, 0xff, 0x87, 0x49, 0x26, 0xff, 0x88, 0x4a, 0x28, 0xff, 0x8b, 0x4d, 0x2a, 0xff, 0x8e, 0x50, 0x2c, 0xff, 0x92, 0x53, 0x2e, 0xff, 0x93, 0x55, 0x2f, 0xff, 0x93, 0x56, 0x30, 0xff, 0x92, 0x55, 0x31, 0xff, 0x93, 0x55, 0x31, 0xff, 0x95, 0x57, 0x32, 0xff, 0x97, 0x5a, 0x33, 0xff, 0x9a, 0x5d, 0x35, 0xff, 0x9d, 0x5f, 0x37, 0xff, 0x9d, 0x5e, 0x37, 0xff, 0x9e, 0x62, 0x38, 0xff, 0xa1, 0x64, 0x3a, 0xff, 0xa3, 0x67, 0x3a, 0xff, 0xa7, 0x69, 0x3e, 0xff, 0xac, 0x6d, 0x42, 0xff, 0xa5, 0x65, 0x39, 0xff, 0xa7, 0x69, 0x3b, 0xff, 0xaa, 0x6b, 0x3f, 0xff, 0xad, 0x6e, 0x41, 0xff, 0xaf, 0x70, 0x44, 0xff, 0xb0, 0x71, 0x44, 0xff, 0xaf, 0x71, 0x42, 0xff, 0xb1, 0x72, 0x44, 0xff, 0xb3, 0x75, 0x46, 0xff, 0xb6, 0x77, 0x47, 0xff, 0xbd, 0x7c, 0x4b, 0xff, 0xbf, 0x7e, 0x4d, 0xff, 0xc1, 0x80, 0x4f, 0xff, 0xc2, 0x82, 0x51, 0xff, 0xc3, 0x82, 0x51, 0xff, 0xc8, 0x85, 0x54, 0xff, 0xcf, 0x8a, 0x57, 0xff, 0xc5, 0x83, 0x53, 0xff, 0xb1, 0x72, 0x43, 0xff, 0xb4, 0x76, 0x47, 0xff, 0xb4, 0x77, 0x4a, 0xff, 0xb6, 0x79, 0x4b, 0xff, 0xba, 0x7e, 0x4b, 0xff, 0xcc, 0x8e, 0x58, 0xff, 0xe6, 0x9c, 0x63, 0xff, 0xe6, 0x97, 0x5d, 0xff, 0xe6, 0x99, 0x5f, 0xff, 0xd5, 0x8e, 0x59, 0xff, 0xaa, 0x6d, 0x41, 0xff, 0x9e, 0x64, 0x3b, 0xff, 0xa0, 0x65, 0x3c, 0xff, 0x9e, 0x62, 0x37, 0xff, 0x9c, 0x60, 0x37, 0xff, 0x9d, 0x61, 0x38, 0xff, 0x9c, 0x61, 0x38, 0xff, 0x9c, 0x62, 0x39, 0xff, 0x9b, 0x65, 0x3b, 0xff, 0x9c, 0x67, 0x3d, 0xff, 0x9c, 0x67, 0x40, 0xff, 0x9c, 0x67, 0x43, 0xff, 0x9c, 0x67, 0x45, 0xff, 0x9d, 0x67, 0x46, 0xff, 0x9c, 0x67, 0x48, 0xff, 0x9d, 0x68, 0x49, 0xff, 0x9f, 0x69, 0x49, 0xff, 0x9f, 0x69, 0x49, 0xff, 0xa0, 0x6c, 0x4b, 0xff, 0xa0, 0x6c, 0x4d, 0xff, 0xa0, 0x6e, 0x4e, 0xff, 0xa0, 0x6e, 0x4d, 0xff, 0xa1, 0x6f, 0x4b, 0xff, 0xa1, 0x6e, 0x4a, 0xff, 0xa0, 0x6a, 0x46, 0xff, 0xa0, 0x68, 0x43, 0xff, 0xa0, 0x67, 0x42, 0xff, 0x9f, 0x66, 0x41, 0xff, 0x9c, 0x64, 0x3e, 0xff, 0xaa, 0x70, 0x46, 0xff, 0xba, 0x7e, 0x50, 0xff, 0xbd, 0x81, 0x51, 0xff, 0xbc, 0x80, 0x4f, 0xff, 0xb9, 0x7b, 0x4b, 0xff, 0xb6, 0x79, 0x49, 0xff, 0xb4, 0x77, 0x48, 0xff, 0xb9, 0x7a, 0x4a, 0xff, 0xb5, 0x76, 0x47, 0xff, 0xae, 0x72, 0x44, 0xff, 0xae, 0x73, 0x44, 0xff, 0xae, 0x72, 0x44, 0xff, 0xab, 0x70, 0x44, 0xff, 0xa8, 0x6d, 0x42, 0xff, 0xa6, 0x6a, 0x3f, 0xff, 0xa3, 0x67, 0x3c, 0xff, 0xa0, 0x63, 0x39, 0xff, 0x9c, 0x5f, 0x36, 0xff, 0x99, 0x5b, 0x33, 0xff, 0x96, 0x57, 0x31, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x8f, 0x50, 0x2c, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8d, 0x4e, 0x2a, 0xff, 0x8c, 0x4c, 0x28, 0xff, 0x8a, 0x4b, 0x27, 0xff, 0x8a, 0x4c, 0x26, 0xff, 0x89, 0x4c, 0x27, 0xff, 0x89, 0x4c, 0x26, 0xff, 0x8a, 0x4c, 0x27, 0xff, 0x8b, 0x4b, 0x29, 0xff, 0x8c, 0x4d, 0x2c, 0xff, 0x89, 0x4c, 0x2a, 0xff, 0x76, 0x3c, 0x1e, 0xff, 0x6f, 0x3a, 0x18, 0xff, 0x6c, 0x37, 0x18, 0xff, 0x64, 0x30, 0x18, 0xff, 0x62, 0x2f, 0x18, 0xff, 0x63, 0x31, 0x18, 0xff, 0x63, 0x31, 0x18, 0xff, 0x64, 0x33, 0x18, 0xff, 0x66, 0x35, 0x18, 0xff, 0x68, 0x36, 0x18, 0xff, 0x78, 0x3f, 0x1e, 0xff, 0x7d, 0x42, 0x1d, 0xff, 0x7b, 0x40, 0x1d, 0xff, 0x84, 0x49, 0x24, 0xff, 0xa1, 0x65, 0x3b, 0xff, 0xa6, 0x6b, 0x40, 0xff, 0xa3, 0x67, 0x3a, 0xff, 0x9f, 0x61, 0x35, 0xff, 0x9b, 0x5c, 0x32, 0xff, 0x9c, 0x5c, 0x34, 0xff, 0xa0, 0x60, 0x37, 0xff, 0xa5, 0x67, 0x3c, 0xff, 0xa8, 0x6c, 0x41, 0xff, 0xac, 0x77, 0x4e, 0xff, 0xaa, 0x7a, 0x50, 0xff, 0xaa, 0x76, 0x4b, 0xff, 0xaa, 0x70, 0x45, 0xff, 0xa5, 0x67, 0x3c, 0xff, 0x9e, 0x5f, 0x37, 0xff, 0x98, 0x59, 0x32, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x95, 0x56, 0x31, 0xff, 0x8f, 0x52, 0x30, 0xff, 0x90, 0x54, 0x31, 0xff, 0x8f, 0x52, 0x30, 0xff, 0x8f, 0x52, 0x31, 0xff, 0x8d, 0x50, 0x2f, 0xff, 0x8c, 0x51, 0x2f, 0xff, 0x8c, 0x50, 0x2f, 0xff, 0x8c, 0x50, 0x2f, 0xff, 0x84, 0x48, 0x27, 0xff, 0x7f, 0x44, 0x22, 0xff, 0x7d, 0x43, 0x21, 0xff, 0x7b, 0x42, 0x1e, 0xff, 0x79, 0x40, 0x1e, 0xff, 0x7a, 0x41, 0x1e, 0xff, 0x7e, 0x43, 0x1f, 0xff, 0x7c, 0x40, 0x1e, 0xff, 0x7b, 0x42, 0x1e, 0xff, 0x7a, 0x40, 0x1d, 0xff, 0x79, 0x40, 0x1c, 0xff, 0x7a, 0x40, 0x1d, 0xff, 0x7a, 0x41, 0x1e, 0xff, 0x78, 0x41, 0x1d, 0xff, 0x78, 0x40, 0x1c, 0xff, 0x77, 0x3d, 0x1c, 0xff, 0x74, 0x3d, 0x1b, 0xff, 0x72, 0x3d, 0x1a, 0xff, 0x70, 0x3c, 0x18, 0xff, 0x71, 0x38, 0x18, 0xff, 0x70, 0x38, 0x18, 0xff, 0x70, 0x3b, 0x18, 0xff, 0x70, 0x38, 0x18, 0xff, 0x70, 0x3c, 0x18, 0xff, 0x72, 0x3b, 0x1a, 0xff, 0x72, 0x3a, 0x1a, 0xff, 0x74, 0x3d, 0x1b, 0xff, 0x95, 0x58, 0x31, 0xff, 0x9a, 0x5b, 0x35, 0xff, 0x96, 0x58, 0x33, 0xff, 0x93, 0x54, 0x30, 0xff, 0x90, 0x52, 0x2f, 0xff, 0x8e, 0x50, 0x2f, 0xff, 0x8d, 0x4f, 0x2e, 0xff, 0x8d, 0x4f, 0x2c, 0xff, 0x8b, 0x4d, 0x2b, 0xff, + 0x8c, 0x4b, 0x2b, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x8a, 0x4b, 0x2a, 0xff, 0x88, 0x4a, 0x29, 0xff, 0x88, 0x4a, 0x27, 0xff, 0x89, 0x4a, 0x27, 0xff, 0x88, 0x4a, 0x29, 0xff, 0x89, 0x4b, 0x29, 0xff, 0x86, 0x49, 0x28, 0xff, 0x83, 0x47, 0x25, 0xff, 0x82, 0x45, 0x23, 0xff, 0x81, 0x47, 0x23, 0xff, 0x80, 0x43, 0x23, 0xff, 0x80, 0x45, 0x25, 0xff, 0x81, 0x44, 0x23, 0xff, 0x80, 0x45, 0x22, 0xff, 0x81, 0x44, 0x22, 0xff, 0x81, 0x45, 0x23, 0xff, 0x80, 0x45, 0x23, 0xff, 0x7e, 0x42, 0x22, 0xff, 0x7d, 0x43, 0x21, 0xff, 0x7d, 0x41, 0x21, 0xff, 0x7c, 0x40, 0x1e, 0xff, 0x7c, 0x41, 0x1e, 0xff, 0x7a, 0x40, 0x1d, 0xff, 0x7a, 0x3f, 0x1c, 0xff, 0x7b, 0x40, 0x1d, 0xff, 0x7c, 0x3f, 0x1e, 0xff, 0x7c, 0x40, 0x1e, 0xff, 0x7c, 0x42, 0x21, 0xff, 0x7f, 0x43, 0x21, 0xff, 0x80, 0x44, 0x21, 0xff, 0x81, 0x44, 0x21, 0xff, 0x83, 0x47, 0x25, 0xff, 0x83, 0x47, 0x25, 0xff, 0x82, 0x47, 0x23, 0xff, 0x83, 0x46, 0x23, 0xff, 0x83, 0x46, 0x23, 0xff, 0x83, 0x46, 0x24, 0xff, 0x83, 0x47, 0x25, 0xff, 0x85, 0x48, 0x25, 0xff, 0x88, 0x49, 0x27, 0xff, 0x88, 0x49, 0x27, 0xff, 0x88, 0x4a, 0x29, 0xff, 0x8c, 0x4d, 0x2a, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x8f, 0x51, 0x2e, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x93, 0x55, 0x30, 0xff, 0x92, 0x55, 0x30, 0xff, 0x93, 0x55, 0x31, 0xff, 0x95, 0x57, 0x32, 0xff, 0x97, 0x59, 0x33, 0xff, 0x9a, 0x5c, 0x34, 0xff, 0x9c, 0x5f, 0x36, 0xff, 0x9a, 0x5d, 0x35, 0xff, 0x9e, 0x61, 0x38, 0xff, 0x9f, 0x62, 0x39, 0xff, 0xa2, 0x64, 0x3b, 0xff, 0xa5, 0x67, 0x3d, 0xff, 0xa4, 0x66, 0x3b, 0xff, 0xa1, 0x62, 0x38, 0xff, 0xa5, 0x66, 0x39, 0xff, 0xa7, 0x67, 0x3a, 0xff, 0xab, 0x6a, 0x3d, 0xff, 0xac, 0x6d, 0x3f, 0xff, 0xad, 0x6f, 0x40, 0xff, 0xb0, 0x72, 0x43, 0xff, 0xb2, 0x74, 0x46, 0xff, 0xb3, 0x75, 0x45, 0xff, 0xb2, 0x74, 0x45, 0xff, 0xb4, 0x76, 0x47, 0xff, 0xb8, 0x7a, 0x4b, 0xff, 0xbe, 0x7e, 0x4e, 0xff, 0xc2, 0x81, 0x4f, 0xff, 0xc2, 0x81, 0x50, 0xff, 0xc6, 0x84, 0x52, 0xff, 0xcd, 0x88, 0x55, 0xff, 0xc2, 0x82, 0x50, 0xff, 0xb4, 0x77, 0x46, 0xff, 0xb6, 0x77, 0x47, 0xff, 0xb8, 0x79, 0x4b, 0xff, 0xb7, 0x7a, 0x4a, 0xff, 0xb7, 0x7b, 0x4a, 0xff, 0xba, 0x7d, 0x4d, 0xff, 0xcd, 0x8c, 0x59, 0xff, 0xe5, 0x9d, 0x62, 0xff, 0xd4, 0x91, 0x59, 0xff, 0xaa, 0x72, 0x46, 0xff, 0x9d, 0x61, 0x3a, 0xff, 0x9e, 0x62, 0x39, 0xff, 0x9c, 0x5f, 0x36, 0xff, 0x9a, 0x5f, 0x36, 0xff, 0x9a, 0x5e, 0x36, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0x9b, 0x60, 0x37, 0xff, 0x9b, 0x62, 0x38, 0xff, 0x9b, 0x64, 0x39, 0xff, 0x9b, 0x65, 0x3b, 0xff, 0x9c, 0x67, 0x3d, 0xff, 0x9c, 0x67, 0x40, 0xff, 0x9c, 0x67, 0x43, 0xff, 0x9d, 0x68, 0x45, 0xff, 0x9d, 0x67, 0x47, 0xff, 0x9e, 0x68, 0x48, 0xff, 0x9f, 0x6a, 0x4a, 0xff, 0xa0, 0x6a, 0x4c, 0xff, 0xa1, 0x6d, 0x4d, 0xff, 0xa0, 0x6e, 0x4d, 0xff, 0xa0, 0x6e, 0x4e, 0xff, 0xa1, 0x6f, 0x4e, 0xff, 0xa2, 0x6f, 0x4c, 0xff, 0xa2, 0x6e, 0x49, 0xff, 0xa1, 0x6b, 0x45, 0xff, 0xa1, 0x6a, 0x43, 0xff, 0xa0, 0x68, 0x42, 0xff, 0xa0, 0x67, 0x41, 0xff, 0x9d, 0x64, 0x3f, 0xff, 0xab, 0x71, 0x48, 0xff, 0xba, 0x7e, 0x50, 0xff, 0xbb, 0x7f, 0x4f, 0xff, 0xbc, 0x80, 0x50, 0xff, 0xbb, 0x7e, 0x4c, 0xff, 0xb9, 0x7b, 0x4b, 0xff, 0xb8, 0x7a, 0x4b, 0xff, 0xb6, 0x77, 0x48, 0xff, 0xb2, 0x74, 0x46, 0xff, 0xb1, 0x74, 0x46, 0xff, 0xb1, 0x76, 0x48, 0xff, 0xb1, 0x75, 0x49, 0xff, 0xb1, 0x75, 0x49, 0xff, 0xae, 0x73, 0x47, 0xff, 0xab, 0x6f, 0x44, 0xff, 0xa7, 0x6b, 0x40, 0xff, 0xa2, 0x67, 0x3d, 0xff, 0x9e, 0x61, 0x38, 0xff, 0x9b, 0x5d, 0x34, 0xff, 0x97, 0x59, 0x32, 0xff, 0x95, 0x56, 0x30, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x8d, 0x4e, 0x2b, 0xff, 0x8d, 0x4d, 0x2a, 0xff, 0x8c, 0x4d, 0x28, 0xff, 0x8a, 0x4c, 0x27, 0xff, 0x89, 0x4b, 0x25, 0xff, 0x89, 0x4b, 0x26, 0xff, 0x89, 0x4b, 0x26, 0xff, 0x89, 0x4b, 0x27, 0xff, 0x89, 0x4c, 0x29, 0xff, 0x8a, 0x4c, 0x29, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8c, 0x50, 0x2e, 0xff, 0x74, 0x3b, 0x1e, 0xff, 0x6e, 0x38, 0x17, 0xff, 0x6d, 0x39, 0x18, 0xff, 0x64, 0x32, 0x18, 0xff, 0x62, 0x2e, 0x18, 0xff, 0x63, 0x30, 0x18, 0xff, 0x64, 0x31, 0x18, 0xff, 0x66, 0x35, 0x18, 0xff, 0x67, 0x35, 0x18, 0xff, 0x75, 0x3e, 0x1b, 0xff, 0x7d, 0x41, 0x1e, 0xff, 0x7c, 0x42, 0x1e, 0xff, 0x7c, 0x40, 0x1f, 0xff, 0x94, 0x57, 0x31, 0xff, 0xa2, 0x67, 0x3a, 0xff, 0xa2, 0x65, 0x39, 0xff, 0x9e, 0x60, 0x35, 0xff, 0x9a, 0x5c, 0x32, 0xff, 0x9b, 0x5d, 0x33, 0xff, 0x9c, 0x5e, 0x35, 0xff, 0x9f, 0x61, 0x38, 0xff, 0xa1, 0x64, 0x39, 0xff, 0xaa, 0x75, 0x4a, 0xff, 0xaa, 0x78, 0x4d, 0xff, 0xa9, 0x74, 0x48, 0xff, 0xa9, 0x6d, 0x42, 0xff, 0xa4, 0x66, 0x3b, 0xff, 0x9e, 0x5f, 0x36, 0xff, 0x97, 0x58, 0x32, 0xff, 0x93, 0x55, 0x30, 0xff, 0x92, 0x53, 0x2e, 0xff, 0x92, 0x53, 0x2e, 0xff, 0x92, 0x53, 0x2e, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x95, 0x57, 0x32, 0xff, 0x90, 0x52, 0x30, 0xff, 0x91, 0x53, 0x31, 0xff, 0x8f, 0x52, 0x30, 0xff, 0x8f, 0x51, 0x30, 0xff, 0x8d, 0x50, 0x2f, 0xff, 0x8c, 0x4f, 0x2f, 0xff, 0x8b, 0x4f, 0x2e, 0xff, 0x8a, 0x4f, 0x2d, 0xff, 0x83, 0x46, 0x27, 0xff, 0x7e, 0x42, 0x22, 0xff, 0x7d, 0x42, 0x21, 0xff, 0x7b, 0x42, 0x1e, 0xff, 0x78, 0x40, 0x1e, 0xff, 0x78, 0x3e, 0x1d, 0xff, 0x7d, 0x43, 0x21, 0xff, 0x7c, 0x40, 0x1e, 0xff, 0x7b, 0x42, 0x1e, 0xff, 0x7a, 0x41, 0x1e, 0xff, 0x7a, 0x40, 0x1c, 0xff, 0x7a, 0x40, 0x1d, 0xff, 0x78, 0x41, 0x1e, 0xff, 0x76, 0x3e, 0x1d, 0xff, 0x76, 0x3e, 0x1c, 0xff, 0x74, 0x3e, 0x1c, 0xff, 0x74, 0x3a, 0x1a, 0xff, 0x72, 0x3e, 0x1a, 0xff, 0x72, 0x3a, 0x1a, 0xff, 0x70, 0x38, 0x18, 0xff, 0x70, 0x38, 0x18, 0xff, 0x70, 0x38, 0x18, 0xff, 0x70, 0x38, 0x18, 0xff, 0x70, 0x38, 0x18, 0xff, 0x72, 0x3a, 0x1a, 0xff, 0x72, 0x3c, 0x1a, 0xff, 0x72, 0x3a, 0x18, 0xff, 0x8a, 0x50, 0x2b, 0xff, 0x9e, 0x5f, 0x37, 0xff, 0x98, 0x5a, 0x34, 0xff, 0x95, 0x56, 0x32, 0xff, 0x93, 0x55, 0x30, 0xff, 0x90, 0x52, 0x2f, 0xff, 0x8f, 0x50, 0x2e, 0xff, 0x8e, 0x4f, 0x2e, 0xff, 0x8c, 0x4e, 0x2c, 0xff, + 0x8d, 0x4f, 0x2c, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8c, 0x4c, 0x2b, 0xff, 0x8b, 0x4d, 0x2a, 0xff, 0x8a, 0x4b, 0x29, 0xff, 0x8a, 0x4c, 0x29, 0xff, 0x8a, 0x4c, 0x29, 0xff, 0x88, 0x4a, 0x29, 0xff, 0x87, 0x4a, 0x29, 0xff, 0x86, 0x49, 0x27, 0xff, 0x86, 0x4a, 0x27, 0xff, 0x85, 0x49, 0x28, 0xff, 0x85, 0x4a, 0x28, 0xff, 0x86, 0x4a, 0x28, 0xff, 0x87, 0x4b, 0x28, 0xff, 0x86, 0x4a, 0x28, 0xff, 0x86, 0x4a, 0x28, 0xff, 0x88, 0x4b, 0x2a, 0xff, 0x86, 0x4a, 0x28, 0xff, 0x87, 0x4b, 0x28, 0xff, 0x85, 0x49, 0x28, 0xff, 0x82, 0x45, 0x24, 0xff, 0x81, 0x47, 0x24, 0xff, 0x80, 0x44, 0x22, 0xff, 0x7d, 0x42, 0x21, 0xff, 0x7d, 0x41, 0x21, 0xff, 0x7e, 0x44, 0x20, 0xff, 0x7d, 0x43, 0x20, 0xff, 0x7d, 0x42, 0x1f, 0xff, 0x7d, 0x42, 0x1e, 0xff, 0x80, 0x44, 0x21, 0xff, 0x83, 0x45, 0x23, 0xff, 0x84, 0x48, 0x27, 0xff, 0x83, 0x47, 0x25, 0xff, 0x81, 0x45, 0x23, 0xff, 0x82, 0x45, 0x23, 0xff, 0x83, 0x46, 0x23, 0xff, 0x81, 0x45, 0x23, 0xff, 0x82, 0x45, 0x23, 0xff, 0x83, 0x46, 0x24, 0xff, 0x86, 0x48, 0x25, 0xff, 0x87, 0x49, 0x27, 0xff, 0x88, 0x4a, 0x25, 0xff, 0x87, 0x4a, 0x28, 0xff, 0x8b, 0x4c, 0x28, 0xff, 0x8d, 0x4f, 0x2c, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x92, 0x54, 0x2f, 0xff, 0x93, 0x54, 0x30, 0xff, 0x90, 0x52, 0x30, 0xff, 0x92, 0x55, 0x30, 0xff, 0x95, 0x57, 0x31, 0xff, 0x97, 0x59, 0x31, 0xff, 0x98, 0x5a, 0x33, 0xff, 0x96, 0x59, 0x32, 0xff, 0x99, 0x5b, 0x34, 0xff, 0x9b, 0x5e, 0x36, 0xff, 0x9d, 0x60, 0x37, 0xff, 0xa0, 0x62, 0x39, 0xff, 0xa2, 0x65, 0x3b, 0xff, 0x9e, 0x5e, 0x35, 0xff, 0x9e, 0x5e, 0x35, 0xff, 0xa1, 0x61, 0x36, 0xff, 0xa3, 0x64, 0x39, 0xff, 0xa6, 0x67, 0x3a, 0xff, 0xa8, 0x67, 0x3b, 0xff, 0xab, 0x6d, 0x3e, 0xff, 0xad, 0x6f, 0x41, 0xff, 0xb0, 0x72, 0x43, 0xff, 0xb3, 0x74, 0x44, 0xff, 0xb5, 0x75, 0x44, 0xff, 0xb3, 0x74, 0x44, 0xff, 0xb3, 0x74, 0x46, 0xff, 0xb6, 0x78, 0x47, 0xff, 0xb9, 0x7b, 0x4a, 0xff, 0xbe, 0x80, 0x4f, 0xff, 0xc4, 0x82, 0x51, 0xff, 0xca, 0x87, 0x54, 0xff, 0xc7, 0x85, 0x52, 0xff, 0xbd, 0x7e, 0x4c, 0xff, 0xb5, 0x78, 0x47, 0xff, 0xba, 0x7d, 0x4d, 0xff, 0xbc, 0x7f, 0x4d, 0xff, 0xbb, 0x7d, 0x4c, 0xff, 0xba, 0x7d, 0x4b, 0xff, 0xbf, 0x81, 0x4f, 0xff, 0xbf, 0x85, 0x52, 0xff, 0xa7, 0x6e, 0x43, 0xff, 0x9b, 0x5d, 0x36, 0xff, 0x9f, 0x63, 0x39, 0xff, 0x9c, 0x5e, 0x36, 0xff, 0x9a, 0x5c, 0x34, 0xff, 0x9a, 0x5d, 0x34, 0xff, 0x9b, 0x5e, 0x35, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0x9b, 0x60, 0x37, 0xff, 0x9a, 0x61, 0x38, 0xff, 0x9b, 0x64, 0x39, 0xff, 0x9b, 0x67, 0x3b, 0xff, 0x9c, 0x68, 0x3d, 0xff, 0x9d, 0x69, 0x40, 0xff, 0x9d, 0x69, 0x42, 0xff, 0x9e, 0x69, 0x44, 0xff, 0x9d, 0x69, 0x46, 0xff, 0x9f, 0x6a, 0x49, 0xff, 0xa1, 0x6d, 0x4b, 0xff, 0xa1, 0x6d, 0x4c, 0xff, 0xa1, 0x6e, 0x4c, 0xff, 0xa1, 0x6f, 0x4c, 0xff, 0xa1, 0x6e, 0x4c, 0xff, 0xa1, 0x6e, 0x4a, 0xff, 0xa1, 0x6d, 0x49, 0xff, 0xa0, 0x6c, 0x46, 0xff, 0xa0, 0x6b, 0x43, 0xff, 0xa0, 0x69, 0x42, 0xff, 0xa0, 0x68, 0x42, 0xff, 0x9d, 0x63, 0x3f, 0xff, 0xaa, 0x70, 0x49, 0xff, 0xbb, 0x7e, 0x52, 0xff, 0xbb, 0x7e, 0x4f, 0xff, 0xbc, 0x80, 0x50, 0xff, 0xbb, 0x7f, 0x4f, 0xff, 0xbb, 0x7e, 0x4d, 0xff, 0xba, 0x7d, 0x4c, 0xff, 0xb4, 0x78, 0x48, 0xff, 0xb3, 0x76, 0x47, 0xff, 0xb6, 0x7a, 0x4a, 0xff, 0xb8, 0x7b, 0x4c, 0xff, 0xb8, 0x7c, 0x4e, 0xff, 0xb7, 0x7d, 0x4f, 0xff, 0xb4, 0x7c, 0x4e, 0xff, 0xb1, 0x77, 0x4b, 0xff, 0xad, 0x72, 0x46, 0xff, 0xa8, 0x6b, 0x41, 0xff, 0xa1, 0x67, 0x3b, 0xff, 0x9c, 0x60, 0x37, 0xff, 0x99, 0x5a, 0x33, 0xff, 0x95, 0x56, 0x31, 0xff, 0x93, 0x55, 0x2f, 0xff, 0x91, 0x53, 0x2e, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8c, 0x4e, 0x29, 0xff, 0x8a, 0x4c, 0x27, 0xff, 0x8a, 0x4b, 0x25, 0xff, 0x89, 0x4a, 0x26, 0xff, 0x89, 0x4a, 0x27, 0xff, 0x89, 0x4b, 0x26, 0xff, 0x89, 0x4c, 0x26, 0xff, 0x89, 0x4b, 0x27, 0xff, 0x8a, 0x4c, 0x28, 0xff, 0x8d, 0x4d, 0x2b, 0xff, 0x8e, 0x4f, 0x2f, 0xff, 0x79, 0x3f, 0x20, 0xff, 0x71, 0x3d, 0x18, 0xff, 0x6b, 0x37, 0x18, 0xff, 0x63, 0x31, 0x17, 0xff, 0x62, 0x30, 0x18, 0xff, 0x64, 0x34, 0x17, 0xff, 0x66, 0x33, 0x18, 0xff, 0x65, 0x33, 0x18, 0xff, 0x6d, 0x38, 0x1b, 0xff, 0x79, 0x40, 0x20, 0xff, 0x7c, 0x42, 0x1f, 0xff, 0x78, 0x3e, 0x1a, 0xff, 0x89, 0x4d, 0x28, 0xff, 0x9f, 0x61, 0x36, 0xff, 0xa0, 0x62, 0x37, 0xff, 0x9c, 0x5e, 0x34, 0xff, 0x99, 0x5b, 0x33, 0xff, 0x98, 0x5a, 0x32, 0xff, 0x9a, 0x5b, 0x33, 0xff, 0x9c, 0x5d, 0x36, 0xff, 0x9b, 0x5c, 0x35, 0xff, 0xa8, 0x71, 0x46, 0xff, 0xa8, 0x72, 0x46, 0xff, 0xa7, 0x6f, 0x42, 0xff, 0xa7, 0x69, 0x3e, 0xff, 0xa1, 0x63, 0x3a, 0xff, 0x9b, 0x5d, 0x35, 0xff, 0x96, 0x58, 0x31, 0xff, 0x94, 0x55, 0x2f, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x92, 0x54, 0x2f, 0xff, 0x93, 0x55, 0x2f, 0xff, 0x94, 0x55, 0x30, 0xff, 0x94, 0x56, 0x31, 0xff, 0x8f, 0x51, 0x30, 0xff, 0x8e, 0x51, 0x30, 0xff, 0x90, 0x53, 0x30, 0xff, 0x8f, 0x51, 0x30, 0xff, 0x8c, 0x50, 0x2f, 0xff, 0x8b, 0x4f, 0x2e, 0xff, 0x89, 0x4d, 0x2e, 0xff, 0x89, 0x4d, 0x2e, 0xff, 0x82, 0x46, 0x25, 0xff, 0x7d, 0x43, 0x22, 0xff, 0x7b, 0x40, 0x1f, 0xff, 0x7a, 0x40, 0x1e, 0xff, 0x76, 0x3f, 0x1c, 0xff, 0x77, 0x3f, 0x1d, 0xff, 0x7c, 0x41, 0x21, 0xff, 0x7b, 0x41, 0x1e, 0xff, 0x7b, 0x42, 0x1e, 0xff, 0x7a, 0x41, 0x1e, 0xff, 0x79, 0x40, 0x1c, 0xff, 0x78, 0x41, 0x1d, 0xff, 0x77, 0x3f, 0x1d, 0xff, 0x76, 0x3f, 0x1c, 0xff, 0x74, 0x3e, 0x1c, 0xff, 0x72, 0x3b, 0x1a, 0xff, 0x71, 0x39, 0x19, 0xff, 0x72, 0x3d, 0x19, 0xff, 0x72, 0x3a, 0x19, 0xff, 0x70, 0x3a, 0x18, 0xff, 0x6f, 0x38, 0x18, 0xff, 0x70, 0x39, 0x18, 0xff, 0x70, 0x38, 0x18, 0xff, 0x71, 0x3a, 0x18, 0xff, 0x72, 0x3c, 0x1a, 0xff, 0x72, 0x3b, 0x19, 0xff, 0x76, 0x40, 0x1d, 0xff, 0x73, 0x3b, 0x19, 0xff, 0x9d, 0x60, 0x39, 0xff, 0x9b, 0x5d, 0x35, 0xff, 0x97, 0x59, 0x33, 0xff, 0x94, 0x56, 0x32, 0xff, 0x93, 0x54, 0x30, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x91, 0x51, 0x2e, 0xff, 0x8e, 0x50, 0x2d, 0xff, + 0x8e, 0x4f, 0x2d, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8c, 0x4e, 0x2d, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8a, 0x4d, 0x2b, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x8a, 0x4b, 0x2b, 0xff, 0x87, 0x4a, 0x29, 0xff, 0x88, 0x4a, 0x29, 0xff, 0x89, 0x4c, 0x2b, 0xff, 0x88, 0x4b, 0x2b, 0xff, 0x8a, 0x4e, 0x2d, 0xff, 0x8a, 0x4e, 0x2f, 0xff, 0x8c, 0x4f, 0x2e, 0xff, 0x8c, 0x50, 0x2e, 0xff, 0x8d, 0x50, 0x2f, 0xff, 0x8e, 0x52, 0x30, 0xff, 0x8e, 0x51, 0x30, 0xff, 0x8c, 0x51, 0x2f, 0xff, 0x8c, 0x50, 0x2e, 0xff, 0x89, 0x4d, 0x2c, 0xff, 0x88, 0x4c, 0x2b, 0xff, 0x86, 0x4a, 0x29, 0xff, 0x83, 0x47, 0x25, 0xff, 0x81, 0x46, 0x23, 0xff, 0x81, 0x45, 0x23, 0xff, 0x7f, 0x42, 0x22, 0xff, 0x82, 0x45, 0x25, 0xff, 0x85, 0x48, 0x27, 0xff, 0x86, 0x4a, 0x29, 0xff, 0x85, 0x48, 0x27, 0xff, 0x82, 0x45, 0x25, 0xff, 0x82, 0x45, 0x25, 0xff, 0x82, 0x45, 0x24, 0xff, 0x82, 0x44, 0x24, 0xff, 0x84, 0x47, 0x24, 0xff, 0x82, 0x45, 0x24, 0xff, 0x83, 0x46, 0x24, 0xff, 0x83, 0x45, 0x24, 0xff, 0x83, 0x46, 0x24, 0xff, 0x86, 0x48, 0x25, 0xff, 0x86, 0x48, 0x27, 0xff, 0x88, 0x4a, 0x27, 0xff, 0x8a, 0x4c, 0x2a, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8f, 0x51, 0x2e, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x92, 0x54, 0x30, 0xff, 0x90, 0x52, 0x2f, 0xff, 0x92, 0x54, 0x2f, 0xff, 0x95, 0x56, 0x30, 0xff, 0x96, 0x57, 0x32, 0xff, 0x94, 0x54, 0x31, 0xff, 0x94, 0x56, 0x31, 0xff, 0x97, 0x59, 0x33, 0xff, 0x9a, 0x5c, 0x34, 0xff, 0x9c, 0x5f, 0x37, 0xff, 0x9f, 0x60, 0x38, 0xff, 0x9e, 0x5f, 0x37, 0xff, 0x9a, 0x5a, 0x32, 0xff, 0x9d, 0x5d, 0x34, 0xff, 0xa0, 0x5e, 0x36, 0xff, 0xa1, 0x61, 0x36, 0xff, 0xa2, 0x63, 0x38, 0xff, 0xa5, 0x66, 0x39, 0xff, 0xa8, 0x6a, 0x3c, 0xff, 0xac, 0x6d, 0x3f, 0xff, 0xae, 0x70, 0x42, 0xff, 0xb0, 0x72, 0x43, 0xff, 0xb4, 0x76, 0x45, 0xff, 0xb6, 0x77, 0x47, 0xff, 0xb6, 0x77, 0x48, 0xff, 0xb7, 0x78, 0x49, 0xff, 0xb7, 0x79, 0x49, 0xff, 0xb8, 0x79, 0x4b, 0xff, 0xbc, 0x7c, 0x4e, 0xff, 0xc3, 0x82, 0x50, 0xff, 0xc9, 0x85, 0x52, 0xff, 0xc8, 0x85, 0x51, 0xff, 0xb5, 0x79, 0x47, 0xff, 0xbe, 0x81, 0x4f, 0xff, 0xc0, 0x84, 0x4f, 0xff, 0xc0, 0x85, 0x50, 0xff, 0xc2, 0x84, 0x50, 0xff, 0xbb, 0x7f, 0x4d, 0xff, 0xa3, 0x68, 0x3d, 0xff, 0x98, 0x5c, 0x34, 0xff, 0x9d, 0x5f, 0x37, 0xff, 0x9c, 0x5d, 0x36, 0xff, 0x9b, 0x5c, 0x35, 0xff, 0x9a, 0x5c, 0x35, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x9a, 0x5d, 0x34, 0xff, 0x99, 0x5d, 0x34, 0xff, 0x9a, 0x5f, 0x35, 0xff, 0x9a, 0x5f, 0x35, 0xff, 0x9b, 0x60, 0x37, 0xff, 0x9b, 0x64, 0x38, 0xff, 0x9d, 0x66, 0x3a, 0xff, 0x9d, 0x68, 0x3c, 0xff, 0x9d, 0x69, 0x3e, 0xff, 0x9e, 0x69, 0x40, 0xff, 0x9f, 0x6a, 0x43, 0xff, 0x9f, 0x69, 0x45, 0xff, 0x9f, 0x6a, 0x47, 0xff, 0xa1, 0x6b, 0x49, 0xff, 0xa1, 0x6d, 0x49, 0xff, 0xa0, 0x6e, 0x4a, 0xff, 0xa1, 0x6d, 0x4b, 0xff, 0xa1, 0x6d, 0x4a, 0xff, 0xa1, 0x6d, 0x48, 0xff, 0xa1, 0x6d, 0x48, 0xff, 0xa1, 0x6c, 0x47, 0xff, 0xa0, 0x6b, 0x45, 0xff, 0xa0, 0x6a, 0x43, 0xff, 0xa1, 0x68, 0x43, 0xff, 0x9d, 0x63, 0x3f, 0xff, 0xaa, 0x70, 0x49, 0xff, 0xbb, 0x7e, 0x52, 0xff, 0xbb, 0x7e, 0x4f, 0xff, 0xbd, 0x80, 0x50, 0xff, 0xbe, 0x81, 0x50, 0xff, 0xbd, 0x80, 0x4e, 0xff, 0xb8, 0x7b, 0x4a, 0xff, 0xb4, 0x76, 0x46, 0xff, 0xb6, 0x79, 0x49, 0xff, 0xba, 0x7e, 0x4e, 0xff, 0xbd, 0x82, 0x52, 0xff, 0xbf, 0x85, 0x55, 0xff, 0xc0, 0x86, 0x56, 0xff, 0xbe, 0x84, 0x54, 0xff, 0xb9, 0x7f, 0x52, 0xff, 0xb3, 0x7a, 0x4c, 0xff, 0xad, 0x72, 0x45, 0xff, 0xa6, 0x6b, 0x3e, 0xff, 0xa1, 0x63, 0x3a, 0xff, 0x9b, 0x5e, 0x35, 0xff, 0x96, 0x58, 0x32, 0xff, 0x94, 0x55, 0x30, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x8f, 0x50, 0x2c, 0xff, 0x8d, 0x4f, 0x2b, 0xff, 0x8c, 0x4d, 0x2a, 0xff, 0x8b, 0x4d, 0x28, 0xff, 0x8a, 0x4c, 0x26, 0xff, 0x89, 0x4b, 0x26, 0xff, 0x88, 0x4a, 0x25, 0xff, 0x89, 0x49, 0x26, 0xff, 0x89, 0x49, 0x26, 0xff, 0x89, 0x4b, 0x27, 0xff, 0x8a, 0x4c, 0x28, 0xff, 0x8b, 0x4c, 0x2a, 0xff, 0x8d, 0x4d, 0x2b, 0xff, 0x8c, 0x50, 0x2e, 0xff, 0x78, 0x40, 0x20, 0xff, 0x73, 0x3c, 0x19, 0xff, 0x6d, 0x39, 0x19, 0xff, 0x63, 0x30, 0x17, 0xff, 0x64, 0x32, 0x18, 0xff, 0x65, 0x35, 0x17, 0xff, 0x66, 0x34, 0x17, 0xff, 0x65, 0x33, 0x17, 0xff, 0x74, 0x3e, 0x1e, 0xff, 0x7c, 0x41, 0x1f, 0xff, 0x79, 0x40, 0x1d, 0xff, 0x7b, 0x42, 0x1e, 0xff, 0x9a, 0x5d, 0x34, 0xff, 0x9e, 0x61, 0x37, 0xff, 0x9a, 0x5c, 0x34, 0xff, 0x98, 0x5a, 0x33, 0xff, 0x97, 0x5a, 0x32, 0xff, 0x98, 0x59, 0x32, 0xff, 0x99, 0x59, 0x32, 0xff, 0x95, 0x57, 0x31, 0xff, 0xa5, 0x6c, 0x41, 0xff, 0xa7, 0x6d, 0x41, 0xff, 0xa5, 0x68, 0x3d, 0xff, 0xa3, 0x64, 0x3a, 0xff, 0x9e, 0x5f, 0x37, 0xff, 0x99, 0x5a, 0x33, 0xff, 0x96, 0x56, 0x31, 0xff, 0x93, 0x55, 0x30, 0xff, 0x94, 0x55, 0x30, 0xff, 0x92, 0x54, 0x30, 0xff, 0x94, 0x55, 0x30, 0xff, 0x94, 0x54, 0x30, 0xff, 0x94, 0x54, 0x30, 0xff, 0x96, 0x58, 0x32, 0xff, 0x90, 0x52, 0x30, 0xff, 0x8c, 0x50, 0x2f, 0xff, 0x8e, 0x52, 0x30, 0xff, 0x8e, 0x50, 0x30, 0xff, 0x8c, 0x4f, 0x2f, 0xff, 0x8a, 0x4e, 0x2e, 0xff, 0x89, 0x4d, 0x2d, 0xff, 0x88, 0x4c, 0x2d, 0xff, 0x83, 0x46, 0x25, 0xff, 0x7e, 0x43, 0x22, 0xff, 0x7c, 0x40, 0x1f, 0xff, 0x7a, 0x40, 0x1e, 0xff, 0x75, 0x3e, 0x1c, 0xff, 0x79, 0x3f, 0x1f, 0xff, 0x7b, 0x42, 0x1f, 0xff, 0x7a, 0x41, 0x1e, 0xff, 0x7b, 0x41, 0x1e, 0xff, 0x7a, 0x41, 0x1e, 0xff, 0x78, 0x3f, 0x1c, 0xff, 0x78, 0x40, 0x1d, 0xff, 0x76, 0x3f, 0x1c, 0xff, 0x74, 0x3d, 0x1b, 0xff, 0x72, 0x3d, 0x19, 0xff, 0x72, 0x3a, 0x1a, 0xff, 0x71, 0x39, 0x18, 0xff, 0x6f, 0x37, 0x17, 0xff, 0x70, 0x38, 0x18, 0xff, 0x70, 0x38, 0x17, 0xff, 0x70, 0x38, 0x17, 0xff, 0x6f, 0x39, 0x17, 0xff, 0x6f, 0x37, 0x17, 0xff, 0x70, 0x39, 0x18, 0xff, 0x72, 0x3a, 0x1a, 0xff, 0x72, 0x3a, 0x1a, 0xff, 0x75, 0x3e, 0x1b, 0xff, 0x77, 0x40, 0x1c, 0xff, 0x86, 0x4c, 0x29, 0xff, 0xa5, 0x66, 0x3e, 0xff, 0x9a, 0x5b, 0x35, 0xff, 0x96, 0x57, 0x33, 0xff, 0x94, 0x56, 0x31, 0xff, 0x92, 0x54, 0x30, 0xff, 0x92, 0x54, 0x30, 0xff, 0x90, 0x52, 0x2e, 0xff, + 0x8f, 0x51, 0x2e, 0xff, 0x8e, 0x4f, 0x2e, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x8e, 0x50, 0x2c, 0xff, 0x8d, 0x4e, 0x2c, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8c, 0x4d, 0x2c, 0xff, 0x8a, 0x4c, 0x2c, 0xff, 0x88, 0x4c, 0x2a, 0xff, 0x8a, 0x4d, 0x2c, 0xff, 0x8b, 0x4e, 0x2e, 0xff, 0x8c, 0x4f, 0x2f, 0xff, 0x8e, 0x51, 0x30, 0xff, 0x90, 0x53, 0x31, 0xff, 0x91, 0x55, 0x31, 0xff, 0x94, 0x56, 0x33, 0xff, 0x95, 0x58, 0x34, 0xff, 0x96, 0x5a, 0x35, 0xff, 0x96, 0x5a, 0x34, 0xff, 0x94, 0x58, 0x34, 0xff, 0x95, 0x58, 0x34, 0xff, 0x92, 0x56, 0x34, 0xff, 0x8f, 0x53, 0x31, 0xff, 0x8d, 0x51, 0x2f, 0xff, 0x8a, 0x4e, 0x2d, 0xff, 0x88, 0x4c, 0x2b, 0xff, 0x86, 0x49, 0x29, 0xff, 0x88, 0x4c, 0x2b, 0xff, 0x8c, 0x4f, 0x2e, 0xff, 0x89, 0x4c, 0x2b, 0xff, 0x88, 0x4a, 0x29, 0xff, 0x85, 0x49, 0x27, 0xff, 0x82, 0x47, 0x25, 0xff, 0x83, 0x47, 0x25, 0xff, 0x82, 0x45, 0x25, 0xff, 0x85, 0x47, 0x25, 0xff, 0x83, 0x47, 0x25, 0xff, 0x84, 0x48, 0x25, 0xff, 0x84, 0x48, 0x25, 0xff, 0x83, 0x48, 0x25, 0xff, 0x86, 0x48, 0x25, 0xff, 0x84, 0x48, 0x26, 0xff, 0x86, 0x48, 0x27, 0xff, 0x89, 0x4a, 0x27, 0xff, 0x8b, 0x4c, 0x29, 0xff, 0x8c, 0x4d, 0x2c, 0xff, 0x8f, 0x50, 0x2e, 0xff, 0x92, 0x53, 0x2e, 0xff, 0x94, 0x55, 0x30, 0xff, 0x92, 0x53, 0x30, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x94, 0x54, 0x31, 0xff, 0x92, 0x54, 0x30, 0xff, 0x92, 0x53, 0x30, 0xff, 0x94, 0x56, 0x31, 0xff, 0x96, 0x58, 0x32, 0xff, 0x98, 0x5a, 0x34, 0xff, 0x9b, 0x5e, 0x37, 0xff, 0x9b, 0x5d, 0x38, 0xff, 0x97, 0x57, 0x33, 0xff, 0x96, 0x57, 0x30, 0xff, 0x9a, 0x5b, 0x31, 0xff, 0x9e, 0x5d, 0x34, 0xff, 0x9f, 0x5e, 0x35, 0xff, 0x9f, 0x5f, 0x35, 0xff, 0xa2, 0x63, 0x37, 0xff, 0xa4, 0x66, 0x38, 0xff, 0xa8, 0x69, 0x3b, 0xff, 0xab, 0x6c, 0x3f, 0xff, 0xae, 0x6e, 0x42, 0xff, 0xb0, 0x72, 0x44, 0xff, 0xb5, 0x76, 0x46, 0xff, 0xb7, 0x78, 0x48, 0xff, 0xb9, 0x79, 0x49, 0xff, 0xba, 0x7a, 0x4a, 0xff, 0xbb, 0x79, 0x4b, 0xff, 0xbc, 0x7b, 0x4c, 0xff, 0xbc, 0x7b, 0x4c, 0xff, 0xc0, 0x7e, 0x4d, 0xff, 0xc6, 0x84, 0x52, 0xff, 0xbc, 0x80, 0x4d, 0xff, 0xbf, 0x84, 0x50, 0xff, 0xc2, 0x88, 0x52, 0xff, 0xc8, 0x8a, 0x54, 0xff, 0xc1, 0x82, 0x50, 0xff, 0xa3, 0x66, 0x3c, 0xff, 0x97, 0x5b, 0x34, 0xff, 0x99, 0x5c, 0x35, 0xff, 0x98, 0x5c, 0x35, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x9a, 0x5d, 0x35, 0xff, 0x9b, 0x61, 0x35, 0xff, 0x9b, 0x62, 0x37, 0xff, 0x9c, 0x64, 0x39, 0xff, 0x9c, 0x67, 0x3a, 0xff, 0x9d, 0x68, 0x3c, 0xff, 0x9d, 0x68, 0x3e, 0xff, 0x9e, 0x6a, 0x40, 0xff, 0x9f, 0x6c, 0x42, 0xff, 0xa1, 0x6c, 0x45, 0xff, 0xa1, 0x6e, 0x46, 0xff, 0xa1, 0x6e, 0x47, 0xff, 0xa1, 0x6e, 0x47, 0xff, 0xa1, 0x6d, 0x49, 0xff, 0xa1, 0x6d, 0x48, 0xff, 0xa0, 0x6d, 0x47, 0xff, 0xa0, 0x6d, 0x47, 0xff, 0xa1, 0x6d, 0x46, 0xff, 0xa1, 0x6c, 0x44, 0xff, 0xa0, 0x6a, 0x44, 0xff, 0xa0, 0x68, 0x43, 0xff, 0x9d, 0x63, 0x3f, 0xff, 0xaa, 0x71, 0x49, 0xff, 0xba, 0x80, 0x53, 0xff, 0xbb, 0x7e, 0x50, 0xff, 0xbd, 0x80, 0x51, 0xff, 0xbf, 0x81, 0x51, 0xff, 0xc0, 0x7f, 0x4f, 0xff, 0xb9, 0x79, 0x49, 0xff, 0xb5, 0x77, 0x49, 0xff, 0xb9, 0x7c, 0x4c, 0xff, 0xbf, 0x83, 0x52, 0xff, 0xc5, 0x89, 0x58, 0xff, 0xcc, 0x8e, 0x5c, 0xff, 0xcf, 0x92, 0x5f, 0xff, 0xcc, 0x90, 0x5f, 0xff, 0xc3, 0x8b, 0x5b, 0xff, 0xbc, 0x83, 0x55, 0xff, 0xb4, 0x7a, 0x4c, 0xff, 0xac, 0x71, 0x45, 0xff, 0xa5, 0x68, 0x3d, 0xff, 0x9e, 0x60, 0x37, 0xff, 0x99, 0x5a, 0x33, 0xff, 0x95, 0x57, 0x31, 0xff, 0x92, 0x55, 0x2f, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x8e, 0x4f, 0x2b, 0xff, 0x8c, 0x4d, 0x29, 0xff, 0x8a, 0x4c, 0x27, 0xff, 0x89, 0x4b, 0x26, 0xff, 0x88, 0x49, 0x25, 0xff, 0x89, 0x4a, 0x26, 0xff, 0x88, 0x4a, 0x25, 0xff, 0x89, 0x4b, 0x26, 0xff, 0x89, 0x4c, 0x27, 0xff, 0x8a, 0x4a, 0x28, 0xff, 0x8b, 0x4b, 0x29, 0xff, 0x8c, 0x4c, 0x2a, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8c, 0x4f, 0x2b, 0xff, 0x77, 0x3e, 0x1d, 0xff, 0x72, 0x3c, 0x18, 0xff, 0x6c, 0x3a, 0x19, 0xff, 0x66, 0x36, 0x18, 0xff, 0x66, 0x35, 0x17, 0xff, 0x67, 0x33, 0x17, 0xff, 0x67, 0x34, 0x17, 0xff, 0x68, 0x35, 0x17, 0xff, 0x78, 0x3f, 0x1d, 0xff, 0x7b, 0x42, 0x1e, 0xff, 0x79, 0x3e, 0x1a, 0xff, 0x8a, 0x4d, 0x2a, 0xff, 0x9a, 0x5c, 0x36, 0xff, 0x99, 0x5c, 0x35, 0xff, 0x97, 0x5a, 0x32, 0xff, 0x97, 0x5a, 0x32, 0xff, 0x98, 0x59, 0x32, 0xff, 0x97, 0x58, 0x31, 0xff, 0x90, 0x51, 0x2d, 0xff, 0xa3, 0x65, 0x3b, 0xff, 0xa4, 0x66, 0x3a, 0xff, 0xa2, 0x63, 0x38, 0xff, 0x9f, 0x5f, 0x37, 0xff, 0x99, 0x5b, 0x33, 0xff, 0x96, 0x58, 0x31, 0xff, 0x94, 0x56, 0x30, 0xff, 0x93, 0x55, 0x30, 0xff, 0x93, 0x55, 0x30, 0xff, 0x94, 0x55, 0x30, 0xff, 0x94, 0x56, 0x31, 0xff, 0x96, 0x56, 0x31, 0xff, 0x95, 0x56, 0x31, 0xff, 0x97, 0x58, 0x32, 0xff, 0x8f, 0x52, 0x30, 0xff, 0x8b, 0x4f, 0x2e, 0xff, 0x8f, 0x50, 0x30, 0xff, 0x8d, 0x51, 0x30, 0xff, 0x8c, 0x50, 0x2f, 0xff, 0x8a, 0x4e, 0x2e, 0xff, 0x89, 0x4c, 0x2d, 0xff, 0x89, 0x4c, 0x2e, 0xff, 0x81, 0x45, 0x24, 0xff, 0x7d, 0x42, 0x21, 0xff, 0x7b, 0x41, 0x1e, 0xff, 0x79, 0x3e, 0x1e, 0xff, 0x76, 0x3e, 0x1c, 0xff, 0x7b, 0x3f, 0x1d, 0xff, 0x79, 0x41, 0x1e, 0xff, 0x78, 0x41, 0x1e, 0xff, 0x79, 0x41, 0x1e, 0xff, 0x78, 0x42, 0x1e, 0xff, 0x77, 0x3f, 0x1c, 0xff, 0x77, 0x40, 0x1c, 0xff, 0x77, 0x3f, 0x1b, 0xff, 0x73, 0x3c, 0x19, 0xff, 0x73, 0x3b, 0x19, 0xff, 0x71, 0x3d, 0x19, 0xff, 0x70, 0x38, 0x17, 0xff, 0x70, 0x38, 0x17, 0xff, 0x6f, 0x37, 0x18, 0xff, 0x6e, 0x37, 0x17, 0xff, 0x6f, 0x37, 0x17, 0xff, 0x6f, 0x37, 0x17, 0xff, 0x70, 0x38, 0x18, 0xff, 0x71, 0x3a, 0x18, 0xff, 0x72, 0x3a, 0x19, 0xff, 0x72, 0x3a, 0x19, 0xff, 0x74, 0x3c, 0x1a, 0xff, 0x79, 0x3f, 0x1c, 0xff, 0x76, 0x3e, 0x1b, 0xff, 0x9a, 0x5c, 0x37, 0xff, 0x9f, 0x60, 0x38, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x97, 0x58, 0x33, 0xff, 0x95, 0x56, 0x31, 0xff, 0x94, 0x54, 0x30, 0xff, 0x93, 0x54, 0x30, 0xff, + 0x92, 0x53, 0x2f, 0xff, 0x91, 0x51, 0x2f, 0xff, 0x8f, 0x51, 0x2d, 0xff, 0x8f, 0x4f, 0x2d, 0xff, 0x8e, 0x4f, 0x2e, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x8d, 0x4f, 0x2e, 0xff, 0x88, 0x4b, 0x29, 0xff, 0x8a, 0x4c, 0x2c, 0xff, 0x8c, 0x4e, 0x2e, 0xff, 0x8e, 0x52, 0x2f, 0xff, 0x91, 0x54, 0x31, 0xff, 0x93, 0x56, 0x34, 0xff, 0x97, 0x5a, 0x36, 0xff, 0x98, 0x5d, 0x37, 0xff, 0x9a, 0x60, 0x3a, 0xff, 0x9e, 0x64, 0x3d, 0xff, 0xa1, 0x67, 0x40, 0xff, 0xa1, 0x67, 0x40, 0xff, 0x9f, 0x65, 0x3f, 0xff, 0x9e, 0x65, 0x3d, 0xff, 0x9e, 0x64, 0x3d, 0xff, 0x9b, 0x60, 0x3a, 0xff, 0x98, 0x5c, 0x37, 0xff, 0x94, 0x59, 0x33, 0xff, 0x90, 0x54, 0x32, 0xff, 0x94, 0x59, 0x34, 0xff, 0x94, 0x56, 0x33, 0xff, 0x8e, 0x52, 0x2f, 0xff, 0x8a, 0x4e, 0x2e, 0xff, 0x88, 0x4b, 0x2a, 0xff, 0x86, 0x49, 0x27, 0xff, 0x86, 0x49, 0x27, 0xff, 0x85, 0x49, 0x25, 0xff, 0x86, 0x49, 0x26, 0xff, 0x85, 0x47, 0x25, 0xff, 0x85, 0x47, 0x27, 0xff, 0x83, 0x47, 0x26, 0xff, 0x83, 0x47, 0x25, 0xff, 0x83, 0x45, 0x25, 0xff, 0x83, 0x46, 0x25, 0xff, 0x85, 0x47, 0x25, 0xff, 0x86, 0x48, 0x26, 0xff, 0x88, 0x4a, 0x27, 0xff, 0x8b, 0x4d, 0x2a, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8f, 0x50, 0x2e, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x94, 0x55, 0x30, 0xff, 0x94, 0x56, 0x31, 0xff, 0x92, 0x56, 0x31, 0xff, 0x91, 0x52, 0x30, 0xff, 0x8f, 0x50, 0x2e, 0xff, 0x92, 0x53, 0x30, 0xff, 0x93, 0x54, 0x31, 0xff, 0x95, 0x57, 0x33, 0xff, 0x96, 0x5b, 0x34, 0xff, 0x99, 0x5d, 0x37, 0xff, 0x99, 0x5b, 0x35, 0xff, 0x8f, 0x4f, 0x2d, 0xff, 0x94, 0x54, 0x30, 0xff, 0x98, 0x58, 0x31, 0xff, 0x9a, 0x5a, 0x32, 0xff, 0x9b, 0x5b, 0x32, 0xff, 0x9d, 0x5c, 0x34, 0xff, 0xa0, 0x5f, 0x35, 0xff, 0xa3, 0x63, 0x36, 0xff, 0xa4, 0x66, 0x39, 0xff, 0xa7, 0x69, 0x3d, 0xff, 0xab, 0x6c, 0x3f, 0xff, 0xad, 0x6f, 0x42, 0xff, 0xb2, 0x73, 0x44, 0xff, 0xb6, 0x77, 0x46, 0xff, 0xba, 0x7a, 0x4a, 0xff, 0xbf, 0x7f, 0x4e, 0xff, 0xc3, 0x81, 0x50, 0xff, 0xc8, 0x85, 0x54, 0xff, 0xc8, 0x85, 0x53, 0xff, 0xc1, 0x81, 0x50, 0xff, 0xbf, 0x7e, 0x4d, 0xff, 0xbf, 0x7f, 0x4f, 0xff, 0xbf, 0x84, 0x4f, 0xff, 0xc4, 0x8b, 0x54, 0xff, 0xc6, 0x8c, 0x57, 0xff, 0xb0, 0x73, 0x45, 0xff, 0x95, 0x58, 0x31, 0xff, 0x99, 0x5b, 0x34, 0xff, 0x96, 0x5a, 0x33, 0xff, 0x97, 0x5a, 0x33, 0xff, 0x98, 0x5a, 0x33, 0xff, 0x98, 0x5a, 0x33, 0xff, 0x98, 0x5b, 0x33, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x99, 0x5d, 0x34, 0xff, 0x99, 0x5d, 0x34, 0xff, 0x9a, 0x5c, 0x34, 0xff, 0x99, 0x5d, 0x35, 0xff, 0x9a, 0x61, 0x37, 0xff, 0x9c, 0x64, 0x38, 0xff, 0x9d, 0x65, 0x39, 0xff, 0x9d, 0x66, 0x3a, 0xff, 0x9e, 0x68, 0x3b, 0xff, 0x9f, 0x6b, 0x3e, 0xff, 0x9f, 0x6d, 0x40, 0xff, 0xa1, 0x6d, 0x42, 0xff, 0xa1, 0x6e, 0x44, 0xff, 0xa0, 0x6f, 0x45, 0xff, 0xa1, 0x6e, 0x46, 0xff, 0xa1, 0x6e, 0x46, 0xff, 0xa1, 0x6e, 0x45, 0xff, 0xa1, 0x6d, 0x45, 0xff, 0xa0, 0x6d, 0x46, 0xff, 0xa1, 0x6c, 0x46, 0xff, 0xa1, 0x6a, 0x45, 0xff, 0xa0, 0x6a, 0x43, 0xff, 0xa0, 0x69, 0x41, 0xff, 0x9d, 0x65, 0x3e, 0xff, 0xa5, 0x6c, 0x46, 0xff, 0xb7, 0x7c, 0x50, 0xff, 0xbe, 0x80, 0x52, 0xff, 0xbe, 0x80, 0x50, 0xff, 0xc0, 0x84, 0x51, 0xff, 0xbf, 0x82, 0x50, 0xff, 0xb8, 0x7b, 0x4a, 0xff, 0xb7, 0x7b, 0x4a, 0xff, 0xbb, 0x7f, 0x4f, 0xff, 0xc2, 0x86, 0x55, 0xff, 0xcf, 0x90, 0x5c, 0xff, 0xdc, 0x98, 0x64, 0xff, 0xe3, 0x9d, 0x69, 0xff, 0xe0, 0x9d, 0x69, 0xff, 0xd6, 0x97, 0x66, 0xff, 0xc8, 0x8e, 0x5d, 0xff, 0xbd, 0x84, 0x54, 0xff, 0xb4, 0x79, 0x4c, 0xff, 0xa9, 0x6f, 0x42, 0xff, 0xa1, 0x66, 0x3b, 0xff, 0x9c, 0x5d, 0x35, 0xff, 0x97, 0x59, 0x32, 0xff, 0x94, 0x55, 0x30, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x8f, 0x51, 0x2e, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8d, 0x4e, 0x28, 0xff, 0x8b, 0x4c, 0x28, 0xff, 0x89, 0x4c, 0x26, 0xff, 0x89, 0x4b, 0x26, 0xff, 0x88, 0x49, 0x26, 0xff, 0x89, 0x4a, 0x26, 0xff, 0x89, 0x4b, 0x27, 0xff, 0x89, 0x4b, 0x28, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x8b, 0x4c, 0x2a, 0xff, 0x8c, 0x4c, 0x2a, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x88, 0x4c, 0x29, 0xff, 0x77, 0x3e, 0x1c, 0xff, 0x73, 0x3a, 0x19, 0xff, 0x68, 0x36, 0x18, 0xff, 0x65, 0x34, 0x17, 0xff, 0x67, 0x33, 0x17, 0xff, 0x68, 0x34, 0x17, 0xff, 0x68, 0x34, 0x17, 0xff, 0x6d, 0x37, 0x16, 0xff, 0x79, 0x3f, 0x1c, 0xff, 0x7b, 0x41, 0x1e, 0xff, 0x7d, 0x3f, 0x1d, 0xff, 0x98, 0x5a, 0x34, 0xff, 0x9c, 0x5e, 0x36, 0xff, 0x98, 0x5a, 0x32, 0xff, 0x98, 0x5a, 0x32, 0xff, 0x98, 0x5c, 0x32, 0xff, 0x95, 0x57, 0x31, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x9f, 0x5f, 0x37, 0xff, 0xa0, 0x61, 0x37, 0xff, 0x9e, 0x5f, 0x35, 0xff, 0x9b, 0x5c, 0x33, 0xff, 0x97, 0x57, 0x31, 0xff, 0x94, 0x55, 0x30, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x92, 0x54, 0x2f, 0xff, 0x93, 0x54, 0x30, 0xff, 0x94, 0x55, 0x31, 0xff, 0x96, 0x57, 0x32, 0xff, 0x97, 0x5a, 0x32, 0xff, 0x96, 0x57, 0x32, 0xff, 0x99, 0x5a, 0x33, 0xff, 0x91, 0x53, 0x30, 0xff, 0x8b, 0x4f, 0x2f, 0xff, 0x8c, 0x4f, 0x30, 0xff, 0x8e, 0x51, 0x30, 0xff, 0x8b, 0x4f, 0x2e, 0xff, 0x8a, 0x4e, 0x2e, 0xff, 0x89, 0x4c, 0x2d, 0xff, 0x89, 0x4d, 0x2e, 0xff, 0x81, 0x43, 0x23, 0xff, 0x7d, 0x43, 0x22, 0xff, 0x79, 0x3f, 0x1d, 0xff, 0x77, 0x3f, 0x1e, 0xff, 0x76, 0x3e, 0x1c, 0xff, 0x79, 0x40, 0x1d, 0xff, 0x7b, 0x40, 0x1e, 0xff, 0x79, 0x3f, 0x1c, 0xff, 0x78, 0x40, 0x1d, 0xff, 0x75, 0x3d, 0x1c, 0xff, 0x77, 0x3f, 0x1c, 0xff, 0x77, 0x3c, 0x1b, 0xff, 0x73, 0x3b, 0x19, 0xff, 0x72, 0x3b, 0x19, 0xff, 0x73, 0x3d, 0x19, 0xff, 0x70, 0x37, 0x17, 0xff, 0x70, 0x38, 0x17, 0xff, 0x70, 0x38, 0x17, 0xff, 0x6f, 0x37, 0x17, 0xff, 0x6f, 0x35, 0x17, 0xff, 0x6f, 0x36, 0x17, 0xff, 0x6f, 0x37, 0x17, 0xff, 0x70, 0x38, 0x17, 0xff, 0x71, 0x39, 0x19, 0xff, 0x72, 0x3a, 0x19, 0xff, 0x72, 0x3b, 0x19, 0xff, 0x74, 0x3d, 0x1b, 0xff, 0x78, 0x3e, 0x1c, 0xff, 0x77, 0x40, 0x1d, 0xff, 0x83, 0x48, 0x27, 0xff, 0xa7, 0x69, 0x40, 0xff, 0x9f, 0x60, 0x37, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x98, 0x59, 0x33, 0xff, 0x96, 0x56, 0x32, 0xff, 0x94, 0x54, 0x30, 0xff, + 0x94, 0x55, 0x31, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x8b, 0x4d, 0x2c, 0xff, 0x8b, 0x4c, 0x2c, 0xff, 0x8d, 0x4f, 0x2e, 0xff, 0x8f, 0x51, 0x2f, 0xff, 0x92, 0x55, 0x31, 0xff, 0x95, 0x58, 0x33, 0xff, 0x98, 0x5c, 0x36, 0xff, 0x9c, 0x60, 0x3a, 0xff, 0xa0, 0x66, 0x3e, 0xff, 0xa3, 0x6a, 0x42, 0xff, 0xa7, 0x6f, 0x48, 0xff, 0xac, 0x73, 0x4d, 0xff, 0xad, 0x75, 0x4d, 0xff, 0xad, 0x76, 0x4e, 0xff, 0xab, 0x73, 0x4d, 0xff, 0xa7, 0x70, 0x49, 0xff, 0xa7, 0x6e, 0x47, 0xff, 0xa2, 0x69, 0x43, 0xff, 0xa2, 0x69, 0x41, 0xff, 0xa4, 0x68, 0x42, 0xff, 0x9e, 0x62, 0x3c, 0xff, 0x98, 0x5c, 0x36, 0xff, 0x93, 0x56, 0x33, 0xff, 0x8f, 0x52, 0x31, 0xff, 0x8c, 0x4f, 0x2e, 0xff, 0x89, 0x4c, 0x2d, 0xff, 0x88, 0x4b, 0x29, 0xff, 0x87, 0x4a, 0x29, 0xff, 0x87, 0x49, 0x27, 0xff, 0x85, 0x47, 0x27, 0xff, 0x85, 0x47, 0x26, 0xff, 0x84, 0x47, 0x25, 0xff, 0x83, 0x47, 0x25, 0xff, 0x83, 0x47, 0x25, 0xff, 0x85, 0x47, 0x26, 0xff, 0x85, 0x47, 0x26, 0xff, 0x87, 0x49, 0x26, 0xff, 0x87, 0x49, 0x27, 0xff, 0x8b, 0x4c, 0x2a, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x8f, 0x51, 0x2e, 0xff, 0x92, 0x54, 0x2f, 0xff, 0x95, 0x56, 0x31, 0xff, 0x96, 0x56, 0x31, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x8d, 0x4f, 0x2e, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x91, 0x55, 0x30, 0xff, 0x94, 0x55, 0x31, 0xff, 0x95, 0x59, 0x34, 0xff, 0x98, 0x5a, 0x35, 0xff, 0x96, 0x58, 0x33, 0xff, 0x8d, 0x4e, 0x2d, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x93, 0x55, 0x2f, 0xff, 0x95, 0x56, 0x30, 0xff, 0x96, 0x56, 0x31, 0xff, 0x98, 0x58, 0x31, 0xff, 0x9b, 0x5b, 0x32, 0xff, 0x9e, 0x5e, 0x35, 0xff, 0xa0, 0x60, 0x37, 0xff, 0xa3, 0x63, 0x39, 0xff, 0xa6, 0x66, 0x3b, 0xff, 0xa9, 0x69, 0x3e, 0xff, 0xad, 0x6e, 0x40, 0xff, 0xb3, 0x75, 0x46, 0xff, 0xba, 0x7c, 0x4a, 0xff, 0xbd, 0x7d, 0x4b, 0xff, 0xbe, 0x7f, 0x4c, 0xff, 0xc2, 0x80, 0x4e, 0xff, 0xc8, 0x84, 0x52, 0xff, 0xcb, 0x86, 0x53, 0xff, 0xce, 0x87, 0x54, 0xff, 0xcf, 0x87, 0x55, 0xff, 0xc8, 0x86, 0x53, 0xff, 0xc6, 0x87, 0x53, 0xff, 0xc5, 0x88, 0x54, 0xff, 0xb0, 0x77, 0x49, 0xff, 0x95, 0x59, 0x32, 0xff, 0x98, 0x5c, 0x34, 0xff, 0x98, 0x5c, 0x33, 0xff, 0x97, 0x5a, 0x32, 0xff, 0x96, 0x59, 0x32, 0xff, 0x96, 0x5a, 0x32, 0xff, 0x97, 0x5a, 0x32, 0xff, 0x97, 0x5a, 0x32, 0xff, 0x98, 0x5b, 0x33, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x98, 0x5b, 0x33, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x9a, 0x5c, 0x34, 0xff, 0x9b, 0x5d, 0x35, 0xff, 0x9b, 0x61, 0x36, 0xff, 0x9c, 0x62, 0x37, 0xff, 0x9d, 0x63, 0x38, 0xff, 0x9d, 0x65, 0x39, 0xff, 0x9f, 0x66, 0x3b, 0xff, 0x9f, 0x69, 0x3e, 0xff, 0xa0, 0x6c, 0x41, 0xff, 0xa0, 0x6e, 0x42, 0xff, 0xa0, 0x6e, 0x43, 0xff, 0xa1, 0x6e, 0x42, 0xff, 0xa1, 0x6e, 0x42, 0xff, 0xa0, 0x6e, 0x44, 0xff, 0xa0, 0x6e, 0x44, 0xff, 0xa0, 0x6d, 0x44, 0xff, 0xa0, 0x6d, 0x44, 0xff, 0xa1, 0x6c, 0x45, 0xff, 0xa1, 0x69, 0x45, 0xff, 0xa0, 0x68, 0x43, 0xff, 0xa0, 0x68, 0x42, 0xff, 0x9d, 0x65, 0x41, 0xff, 0xa0, 0x67, 0x41, 0xff, 0xb5, 0x7a, 0x4e, 0xff, 0xc1, 0x83, 0x54, 0xff, 0xbf, 0x80, 0x51, 0xff, 0xc1, 0x83, 0x52, 0xff, 0xbd, 0x80, 0x50, 0xff, 0xb8, 0x7b, 0x4b, 0xff, 0xb9, 0x7d, 0x4c, 0xff, 0xbe, 0x82, 0x51, 0xff, 0xc8, 0x8b, 0x58, 0xff, 0xd9, 0x96, 0x61, 0xff, 0xe5, 0xa0, 0x6b, 0xff, 0xe7, 0xa6, 0x71, 0xff, 0xe8, 0xa9, 0x74, 0xff, 0xe7, 0xa4, 0x71, 0xff, 0xde, 0x9c, 0x6a, 0xff, 0xcb, 0x90, 0x5f, 0xff, 0xbb, 0x82, 0x53, 0xff, 0xaf, 0x75, 0x48, 0xff, 0xa7, 0x6c, 0x3f, 0xff, 0x9f, 0x62, 0x38, 0xff, 0x99, 0x5b, 0x34, 0xff, 0x95, 0x56, 0x31, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x8f, 0x51, 0x2e, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8d, 0x4e, 0x2a, 0xff, 0x8a, 0x4c, 0x28, 0xff, 0x89, 0x4b, 0x26, 0xff, 0x89, 0x4a, 0x26, 0xff, 0x89, 0x49, 0x27, 0xff, 0x89, 0x4a, 0x27, 0xff, 0x89, 0x4b, 0x27, 0xff, 0x8a, 0x4c, 0x28, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x8b, 0x4d, 0x2a, 0xff, 0x8c, 0x4c, 0x2a, 0xff, 0x8d, 0x4d, 0x2b, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x93, 0x53, 0x31, 0xff, 0x86, 0x4a, 0x27, 0xff, 0x77, 0x3e, 0x1b, 0xff, 0x6f, 0x3b, 0x19, 0xff, 0x68, 0x35, 0x18, 0xff, 0x67, 0x33, 0x17, 0xff, 0x69, 0x36, 0x17, 0xff, 0x6b, 0x34, 0x17, 0xff, 0x6b, 0x36, 0x17, 0xff, 0x70, 0x3a, 0x19, 0xff, 0x79, 0x40, 0x1d, 0xff, 0x7e, 0x41, 0x20, 0xff, 0x82, 0x45, 0x25, 0xff, 0x97, 0x59, 0x33, 0xff, 0x99, 0x5b, 0x34, 0xff, 0x98, 0x5a, 0x32, 0xff, 0x97, 0x59, 0x32, 0xff, 0x93, 0x56, 0x31, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x9b, 0x5c, 0x34, 0xff, 0x9e, 0x5e, 0x35, 0xff, 0x9b, 0x5b, 0x32, 0xff, 0x97, 0x57, 0x30, 0xff, 0x94, 0x55, 0x30, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x91, 0x51, 0x2f, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x93, 0x54, 0x30, 0xff, 0x95, 0x56, 0x31, 0xff, 0x97, 0x58, 0x33, 0xff, 0x96, 0x58, 0x33, 0xff, 0x96, 0x58, 0x32, 0xff, 0x9a, 0x5c, 0x34, 0xff, 0x93, 0x56, 0x32, 0xff, 0x8b, 0x4f, 0x2f, 0xff, 0x8d, 0x4f, 0x2f, 0xff, 0x8d, 0x50, 0x2f, 0xff, 0x8b, 0x4f, 0x2e, 0xff, 0x89, 0x4c, 0x2e, 0xff, 0x89, 0x4c, 0x2d, 0xff, 0x89, 0x4c, 0x2d, 0xff, 0x7f, 0x44, 0x23, 0xff, 0x7d, 0x42, 0x22, 0xff, 0x7a, 0x3f, 0x1e, 0xff, 0x77, 0x3f, 0x1d, 0xff, 0x77, 0x3e, 0x1d, 0xff, 0x7a, 0x3f, 0x1e, 0xff, 0x79, 0x3e, 0x1d, 0xff, 0x79, 0x3f, 0x1d, 0xff, 0x77, 0x3f, 0x1c, 0xff, 0x75, 0x3d, 0x1c, 0xff, 0x75, 0x3d, 0x1a, 0xff, 0x72, 0x3b, 0x19, 0xff, 0x73, 0x3c, 0x1a, 0xff, 0x73, 0x3b, 0x19, 0xff, 0x72, 0x3e, 0x19, 0xff, 0x71, 0x38, 0x18, 0xff, 0x70, 0x38, 0x17, 0xff, 0x70, 0x38, 0x17, 0xff, 0x6f, 0x38, 0x18, 0xff, 0x6e, 0x36, 0x17, 0xff, 0x6f, 0x37, 0x17, 0xff, 0x6e, 0x36, 0x17, 0xff, 0x6f, 0x37, 0x17, 0xff, 0x71, 0x39, 0x18, 0xff, 0x72, 0x3a, 0x19, 0xff, 0x73, 0x3b, 0x19, 0xff, 0x76, 0x3e, 0x1c, 0xff, 0x76, 0x3e, 0x1b, 0xff, 0x73, 0x3c, 0x19, 0xff, 0x75, 0x3d, 0x1c, 0xff, 0x95, 0x5a, 0x34, 0xff, 0xa5, 0x66, 0x3d, 0xff, 0x9e, 0x60, 0x38, 0xff, 0x9b, 0x5c, 0x36, 0xff, 0x99, 0x5a, 0x33, 0xff, 0x97, 0x57, 0x31, 0xff, + 0x98, 0x58, 0x32, 0xff, 0x95, 0x56, 0x31, 0xff, 0x95, 0x55, 0x31, 0xff, 0x92, 0x52, 0x2f, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8d, 0x4e, 0x2d, 0xff, 0x8d, 0x4e, 0x2d, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x8f, 0x51, 0x2e, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x94, 0x57, 0x31, 0xff, 0x97, 0x5c, 0x36, 0xff, 0x9c, 0x5f, 0x38, 0xff, 0xa1, 0x66, 0x3e, 0xff, 0xa7, 0x6d, 0x46, 0xff, 0xac, 0x73, 0x4d, 0xff, 0xb2, 0x7c, 0x53, 0xff, 0xb8, 0x82, 0x59, 0xff, 0xbb, 0x86, 0x5d, 0xff, 0xbc, 0x86, 0x5d, 0xff, 0xba, 0x86, 0x5d, 0xff, 0xb7, 0x82, 0x5a, 0xff, 0xb3, 0x7d, 0x55, 0xff, 0xb8, 0x82, 0x59, 0xff, 0xb3, 0x7b, 0x53, 0xff, 0xac, 0x74, 0x4d, 0xff, 0xa6, 0x6e, 0x46, 0xff, 0xa0, 0x65, 0x3e, 0xff, 0x99, 0x5e, 0x37, 0xff, 0x93, 0x56, 0x33, 0xff, 0x91, 0x54, 0x31, 0xff, 0x8d, 0x50, 0x2f, 0xff, 0x8a, 0x4d, 0x2d, 0xff, 0x89, 0x4a, 0x2a, 0xff, 0x87, 0x4a, 0x27, 0xff, 0x85, 0x48, 0x26, 0xff, 0x86, 0x49, 0x26, 0xff, 0x85, 0x48, 0x27, 0xff, 0x84, 0x47, 0x26, 0xff, 0x85, 0x49, 0x26, 0xff, 0x87, 0x49, 0x26, 0xff, 0x87, 0x49, 0x28, 0xff, 0x87, 0x4a, 0x28, 0xff, 0x89, 0x4b, 0x2a, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x8e, 0x4e, 0x2d, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x93, 0x55, 0x30, 0xff, 0x95, 0x55, 0x31, 0xff, 0x92, 0x52, 0x30, 0xff, 0x8f, 0x51, 0x2f, 0xff, 0x90, 0x52, 0x2f, 0xff, 0x92, 0x54, 0x30, 0xff, 0x93, 0x57, 0x32, 0xff, 0x96, 0x59, 0x35, 0xff, 0x95, 0x58, 0x34, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x8e, 0x50, 0x2d, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x95, 0x55, 0x30, 0xff, 0x99, 0x58, 0x31, 0xff, 0x9d, 0x5c, 0x32, 0xff, 0x9f, 0x5d, 0x35, 0xff, 0xa2, 0x61, 0x37, 0xff, 0xa6, 0x67, 0x3a, 0xff, 0xa9, 0x6b, 0x3d, 0xff, 0xb0, 0x71, 0x43, 0xff, 0xb5, 0x76, 0x47, 0xff, 0xb8, 0x7a, 0x49, 0xff, 0xbb, 0x7c, 0x49, 0xff, 0xbe, 0x7d, 0x4c, 0xff, 0xc1, 0x7e, 0x4e, 0xff, 0xc8, 0x83, 0x50, 0xff, 0xcb, 0x89, 0x54, 0xff, 0xce, 0x8b, 0x57, 0xff, 0xd2, 0x8d, 0x5a, 0xff, 0xd3, 0x8d, 0x58, 0xff, 0xd2, 0x8b, 0x55, 0xff, 0xc8, 0x85, 0x54, 0xff, 0xaa, 0x6d, 0x42, 0xff, 0x95, 0x57, 0x31, 0xff, 0x96, 0x59, 0x32, 0xff, 0x96, 0x59, 0x32, 0xff, 0x96, 0x59, 0x31, 0xff, 0x96, 0x59, 0x32, 0xff, 0x97, 0x5a, 0x32, 0xff, 0x97, 0x5a, 0x32, 0xff, 0x98, 0x59, 0x31, 0xff, 0x98, 0x5a, 0x32, 0xff, 0x99, 0x5a, 0x33, 0xff, 0x98, 0x5b, 0x33, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x99, 0x5d, 0x34, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0x9c, 0x60, 0x36, 0xff, 0x9c, 0x62, 0x38, 0xff, 0x9d, 0x64, 0x39, 0xff, 0x9f, 0x66, 0x39, 0xff, 0xa0, 0x67, 0x3a, 0xff, 0xa0, 0x6a, 0x3d, 0xff, 0xa1, 0x6d, 0x40, 0xff, 0xa0, 0x6d, 0x40, 0xff, 0xa0, 0x6d, 0x40, 0xff, 0xa0, 0x6e, 0x40, 0xff, 0xa0, 0x6e, 0x40, 0xff, 0xa0, 0x6d, 0x41, 0xff, 0xa0, 0x6d, 0x42, 0xff, 0xa0, 0x6d, 0x42, 0xff, 0xa0, 0x6d, 0x43, 0xff, 0xa0, 0x6c, 0x44, 0xff, 0xa0, 0x6a, 0x44, 0xff, 0xa0, 0x68, 0x43, 0xff, 0x9f, 0x65, 0x41, 0xff, 0x9d, 0x65, 0x40, 0xff, 0x99, 0x60, 0x3d, 0xff, 0xb2, 0x76, 0x4c, 0xff, 0xc4, 0x87, 0x56, 0xff, 0xbf, 0x81, 0x52, 0xff, 0xc1, 0x83, 0x53, 0xff, 0xbc, 0x7e, 0x4f, 0xff, 0xb8, 0x7a, 0x4d, 0xff, 0xba, 0x7d, 0x4e, 0xff, 0xbf, 0x85, 0x53, 0xff, 0xcd, 0x8f, 0x5c, 0xff, 0xe0, 0x9b, 0x66, 0xff, 0xe8, 0xa8, 0x71, 0xff, 0xe8, 0xb3, 0x7c, 0xff, 0xe7, 0xb9, 0x81, 0xff, 0xe8, 0xb6, 0x7e, 0xff, 0xe8, 0xab, 0x77, 0xff, 0xdc, 0x9d, 0x6b, 0xff, 0xc6, 0x8d, 0x5c, 0xff, 0xb5, 0x7d, 0x50, 0xff, 0xaa, 0x70, 0x44, 0xff, 0xa1, 0x66, 0x3b, 0xff, 0x9b, 0x5e, 0x35, 0xff, 0x96, 0x59, 0x31, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x8d, 0x4f, 0x2b, 0xff, 0x8c, 0x4d, 0x2a, 0xff, 0x8a, 0x4c, 0x28, 0xff, 0x89, 0x4b, 0x27, 0xff, 0x89, 0x4c, 0x27, 0xff, 0x89, 0x4b, 0x27, 0xff, 0x8a, 0x4c, 0x27, 0xff, 0x8a, 0x4c, 0x2a, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x8b, 0x4c, 0x2a, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8f, 0x50, 0x2e, 0xff, 0x91, 0x53, 0x30, 0xff, 0x84, 0x49, 0x27, 0xff, 0x79, 0x42, 0x1e, 0xff, 0x6a, 0x37, 0x18, 0xff, 0x69, 0x33, 0x17, 0xff, 0x6d, 0x34, 0x17, 0xff, 0x6c, 0x35, 0x17, 0xff, 0x6d, 0x38, 0x17, 0xff, 0x6d, 0x35, 0x17, 0xff, 0x70, 0x39, 0x18, 0xff, 0x7d, 0x42, 0x20, 0xff, 0x7e, 0x42, 0x22, 0xff, 0x8a, 0x4d, 0x28, 0xff, 0x97, 0x5a, 0x32, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x97, 0x58, 0x31, 0xff, 0x92, 0x55, 0x30, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x9c, 0x5d, 0x34, 0xff, 0x98, 0x59, 0x31, 0xff, 0x95, 0x56, 0x2f, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x93, 0x55, 0x30, 0xff, 0x96, 0x58, 0x32, 0xff, 0x96, 0x57, 0x32, 0xff, 0x96, 0x59, 0x32, 0xff, 0x98, 0x5a, 0x33, 0xff, 0x9b, 0x5d, 0x35, 0xff, 0x94, 0x57, 0x32, 0xff, 0x8c, 0x50, 0x2f, 0xff, 0x8a, 0x4d, 0x2d, 0xff, 0x8c, 0x51, 0x2f, 0xff, 0x8a, 0x50, 0x2f, 0xff, 0x89, 0x4b, 0x2d, 0xff, 0x89, 0x4b, 0x2c, 0xff, 0x86, 0x49, 0x2b, 0xff, 0x80, 0x45, 0x23, 0xff, 0x7d, 0x42, 0x23, 0xff, 0x7c, 0x40, 0x1f, 0xff, 0x78, 0x3e, 0x1c, 0xff, 0x76, 0x3e, 0x1c, 0xff, 0x7a, 0x42, 0x1f, 0xff, 0x79, 0x3e, 0x1c, 0xff, 0x79, 0x40, 0x1e, 0xff, 0x76, 0x3f, 0x1c, 0xff, 0x75, 0x3e, 0x1c, 0xff, 0x73, 0x3b, 0x1a, 0xff, 0x72, 0x3b, 0x19, 0xff, 0x72, 0x39, 0x19, 0xff, 0x73, 0x3a, 0x19, 0xff, 0x72, 0x3c, 0x19, 0xff, 0x71, 0x39, 0x18, 0xff, 0x70, 0x36, 0x17, 0xff, 0x70, 0x38, 0x17, 0xff, 0x70, 0x39, 0x18, 0xff, 0x6f, 0x39, 0x18, 0xff, 0x70, 0x37, 0x17, 0xff, 0x6f, 0x37, 0x17, 0xff, 0x70, 0x3b, 0x17, 0xff, 0x71, 0x3a, 0x18, 0xff, 0x72, 0x39, 0x19, 0xff, 0x73, 0x3b, 0x19, 0xff, 0x76, 0x3e, 0x1c, 0xff, 0x72, 0x3c, 0x19, 0xff, 0x72, 0x3b, 0x19, 0xff, 0x72, 0x3a, 0x19, 0xff, 0x77, 0x3f, 0x1d, 0xff, 0xaa, 0x70, 0x45, 0xff, 0xa5, 0x66, 0x3b, 0xff, 0x9f, 0x60, 0x38, 0xff, 0x9c, 0x5d, 0x36, 0xff, 0x9a, 0x5b, 0x34, 0xff, + 0x9b, 0x5c, 0x34, 0xff, 0x98, 0x59, 0x32, 0xff, 0x95, 0x57, 0x31, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x8f, 0x50, 0x2e, 0xff, 0x8f, 0x4f, 0x2d, 0xff, 0x8e, 0x4e, 0x2d, 0xff, 0x8f, 0x4f, 0x2e, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x92, 0x53, 0x30, 0xff, 0x95, 0x57, 0x33, 0xff, 0x99, 0x5c, 0x35, 0xff, 0x9d, 0x61, 0x3a, 0xff, 0xa4, 0x69, 0x42, 0xff, 0xab, 0x73, 0x4c, 0xff, 0xb3, 0x7c, 0x53, 0xff, 0xbc, 0x86, 0x5d, 0xff, 0xc5, 0x8e, 0x63, 0xff, 0xcc, 0x94, 0x69, 0xff, 0xd1, 0x97, 0x6c, 0xff, 0xd1, 0x97, 0x6c, 0xff, 0xce, 0x95, 0x6a, 0xff, 0xd7, 0x9b, 0x6f, 0xff, 0xc7, 0x92, 0x67, 0xff, 0xbf, 0x89, 0x5f, 0xff, 0xb9, 0x83, 0x5a, 0xff, 0xb0, 0x79, 0x50, 0xff, 0xa7, 0x6f, 0x47, 0xff, 0x9f, 0x64, 0x3e, 0xff, 0x99, 0x5e, 0x37, 0xff, 0x95, 0x58, 0x34, 0xff, 0x92, 0x56, 0x31, 0xff, 0x8e, 0x51, 0x2f, 0xff, 0x8b, 0x4e, 0x2e, 0xff, 0x8a, 0x4c, 0x2d, 0xff, 0x89, 0x4a, 0x2a, 0xff, 0x87, 0x49, 0x27, 0xff, 0x86, 0x49, 0x27, 0xff, 0x86, 0x49, 0x26, 0xff, 0x88, 0x4a, 0x28, 0xff, 0x88, 0x4a, 0x28, 0xff, 0x88, 0x4a, 0x29, 0xff, 0x8b, 0x4b, 0x2a, 0xff, 0x8a, 0x4b, 0x2c, 0xff, 0x8d, 0x4e, 0x2c, 0xff, 0x8f, 0x4f, 0x2e, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x93, 0x54, 0x30, 0xff, 0x93, 0x54, 0x30, 0xff, 0x96, 0x58, 0x31, 0xff, 0x95, 0x58, 0x32, 0xff, 0x92, 0x54, 0x30, 0xff, 0x93, 0x54, 0x31, 0xff, 0x95, 0x58, 0x34, 0xff, 0x96, 0x5a, 0x34, 0xff, 0x8d, 0x50, 0x2c, 0xff, 0x87, 0x49, 0x26, 0xff, 0x8a, 0x4d, 0x2b, 0xff, 0x8e, 0x50, 0x2b, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x97, 0x56, 0x31, 0xff, 0x9a, 0x5b, 0x31, 0xff, 0x9d, 0x5c, 0x34, 0xff, 0xa1, 0x5e, 0x35, 0xff, 0xa4, 0x64, 0x39, 0xff, 0xad, 0x6d, 0x3f, 0xff, 0xb1, 0x72, 0x43, 0xff, 0xb4, 0x76, 0x46, 0xff, 0xb7, 0x78, 0x48, 0xff, 0xbb, 0x7a, 0x49, 0xff, 0xbd, 0x7c, 0x4b, 0xff, 0xc1, 0x82, 0x4e, 0xff, 0xc8, 0x88, 0x52, 0xff, 0xcb, 0x8b, 0x56, 0xff, 0xce, 0x8b, 0x5a, 0xff, 0xd2, 0x8d, 0x5e, 0xff, 0xdb, 0x93, 0x62, 0xff, 0xd4, 0x8f, 0x5d, 0xff, 0xbb, 0x7d, 0x4f, 0xff, 0xb9, 0x79, 0x4d, 0xff, 0xad, 0x6f, 0x44, 0xff, 0x96, 0x59, 0x31, 0xff, 0x95, 0x58, 0x31, 0xff, 0x95, 0x58, 0x31, 0xff, 0x96, 0x59, 0x31, 0xff, 0x97, 0x5a, 0x31, 0xff, 0x96, 0x59, 0x31, 0xff, 0x96, 0x59, 0x32, 0xff, 0x97, 0x59, 0x32, 0xff, 0x98, 0x5a, 0x32, 0xff, 0x99, 0x5b, 0x33, 0xff, 0x99, 0x5d, 0x34, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0x9c, 0x61, 0x36, 0xff, 0x9f, 0x64, 0x38, 0xff, 0x9f, 0x66, 0x39, 0xff, 0xa0, 0x66, 0x3a, 0xff, 0xa0, 0x68, 0x3c, 0xff, 0xa1, 0x6b, 0x3f, 0xff, 0xa0, 0x6c, 0x40, 0xff, 0xa1, 0x6c, 0x3f, 0xff, 0xa0, 0x6d, 0x40, 0xff, 0xa1, 0x6d, 0x40, 0xff, 0xa1, 0x6c, 0x3f, 0xff, 0xa0, 0x6c, 0x3f, 0xff, 0xa0, 0x6d, 0x40, 0xff, 0xa0, 0x6d, 0x40, 0xff, 0xa0, 0x6c, 0x40, 0xff, 0xa0, 0x6a, 0x42, 0xff, 0x9f, 0x6a, 0x43, 0xff, 0x9e, 0x68, 0x42, 0xff, 0x9e, 0x65, 0x41, 0xff, 0x9c, 0x64, 0x40, 0xff, 0x9a, 0x62, 0x3e, 0xff, 0xac, 0x72, 0x49, 0xff, 0xbf, 0x84, 0x55, 0xff, 0xbf, 0x82, 0x53, 0xff, 0xc0, 0x84, 0x53, 0xff, 0xbc, 0x80, 0x51, 0xff, 0xb7, 0x7b, 0x4e, 0xff, 0xba, 0x7f, 0x4f, 0xff, 0xc0, 0x85, 0x54, 0xff, 0xcf, 0x90, 0x5c, 0xff, 0xe1, 0x9d, 0x68, 0xff, 0xe9, 0xad, 0x77, 0xff, 0xe7, 0xc0, 0x83, 0xff, 0xe7, 0xcc, 0x8a, 0xff, 0xe7, 0xc9, 0x8a, 0xff, 0xe8, 0xb9, 0x82, 0xff, 0xe6, 0xa8, 0x74, 0xff, 0xd5, 0x97, 0x67, 0xff, 0xbd, 0x85, 0x58, 0xff, 0xaf, 0x76, 0x4a, 0xff, 0xa6, 0x6a, 0x3f, 0xff, 0x9f, 0x61, 0x38, 0xff, 0x98, 0x5b, 0x33, 0xff, 0x95, 0x58, 0x30, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x90, 0x50, 0x2e, 0xff, 0x8e, 0x4e, 0x2a, 0xff, 0x8c, 0x4c, 0x29, 0xff, 0x8a, 0x4b, 0x28, 0xff, 0x8a, 0x4b, 0x27, 0xff, 0x8a, 0x4b, 0x26, 0xff, 0x8a, 0x4a, 0x26, 0xff, 0x8b, 0x4b, 0x28, 0xff, 0x8b, 0x4b, 0x2a, 0xff, 0x8c, 0x4c, 0x2b, 0xff, 0x8d, 0x4d, 0x2b, 0xff, 0x8d, 0x4e, 0x2c, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x90, 0x52, 0x2f, 0xff, 0x81, 0x46, 0x24, 0xff, 0x74, 0x3f, 0x1b, 0xff, 0x6e, 0x35, 0x17, 0xff, 0x6e, 0x36, 0x17, 0xff, 0x6d, 0x38, 0x17, 0xff, 0x6d, 0x37, 0x17, 0xff, 0x6e, 0x36, 0x17, 0xff, 0x6d, 0x35, 0x16, 0xff, 0x78, 0x3e, 0x1e, 0xff, 0x7e, 0x44, 0x20, 0xff, 0x7f, 0x43, 0x21, 0xff, 0x90, 0x51, 0x2c, 0xff, 0x96, 0x57, 0x31, 0xff, 0x96, 0x57, 0x31, 0xff, 0x92, 0x54, 0x30, 0xff, 0x8c, 0x4f, 0x2d, 0xff, 0x95, 0x56, 0x31, 0xff, 0x99, 0x5a, 0x31, 0xff, 0x97, 0x58, 0x30, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x93, 0x53, 0x30, 0xff, 0x95, 0x56, 0x31, 0xff, 0x97, 0x58, 0x32, 0xff, 0x96, 0x5a, 0x33, 0xff, 0x97, 0x5a, 0x34, 0xff, 0x9b, 0x5e, 0x36, 0xff, 0x90, 0x53, 0x30, 0xff, 0x8b, 0x4f, 0x2f, 0xff, 0x8b, 0x4f, 0x2e, 0xff, 0x8d, 0x4e, 0x2f, 0xff, 0x8b, 0x4f, 0x2e, 0xff, 0x89, 0x4c, 0x2d, 0xff, 0x89, 0x4c, 0x2d, 0xff, 0x84, 0x48, 0x26, 0xff, 0x7f, 0x44, 0x23, 0xff, 0x7d, 0x42, 0x23, 0xff, 0x7c, 0x41, 0x21, 0xff, 0x79, 0x3f, 0x1e, 0xff, 0x77, 0x3f, 0x1d, 0xff, 0x79, 0x3f, 0x1f, 0xff, 0x7a, 0x3e, 0x1c, 0xff, 0x78, 0x3e, 0x1c, 0xff, 0x76, 0x3f, 0x1c, 0xff, 0x76, 0x3e, 0x1c, 0xff, 0x74, 0x3e, 0x1c, 0xff, 0x72, 0x3b, 0x19, 0xff, 0x72, 0x3c, 0x19, 0xff, 0x72, 0x3a, 0x19, 0xff, 0x72, 0x3a, 0x19, 0xff, 0x72, 0x3a, 0x19, 0xff, 0x70, 0x3a, 0x18, 0xff, 0x70, 0x38, 0x17, 0xff, 0x70, 0x38, 0x17, 0xff, 0x70, 0x38, 0x17, 0xff, 0x6e, 0x36, 0x17, 0xff, 0x72, 0x3a, 0x19, 0xff, 0x72, 0x3b, 0x19, 0xff, 0x72, 0x3a, 0x19, 0xff, 0x72, 0x3b, 0x19, 0xff, 0x76, 0x3b, 0x19, 0xff, 0x70, 0x38, 0x1a, 0xff, 0x6b, 0x34, 0x17, 0xff, 0x6e, 0x38, 0x17, 0xff, 0x70, 0x3c, 0x17, 0xff, 0x6e, 0x38, 0x17, 0xff, 0x84, 0x4b, 0x2a, 0xff, 0xaf, 0x73, 0x44, 0xff, 0xa5, 0x66, 0x3c, 0xff, 0xa1, 0x61, 0x38, 0xff, 0x9c, 0x5d, 0x35, 0xff, + 0x9e, 0x5e, 0x35, 0xff, 0x9c, 0x5d, 0x34, 0xff, 0x99, 0x5a, 0x33, 0xff, 0x95, 0x55, 0x31, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x93, 0x54, 0x30, 0xff, 0x93, 0x54, 0x31, 0xff, 0x95, 0x57, 0x32, 0xff, 0x9a, 0x5b, 0x35, 0xff, 0x9e, 0x61, 0x3a, 0xff, 0xa4, 0x6b, 0x41, 0xff, 0xad, 0x74, 0x4b, 0xff, 0xb5, 0x80, 0x56, 0xff, 0xc1, 0x8b, 0x5f, 0xff, 0xce, 0x96, 0x6a, 0xff, 0xdc, 0x9f, 0x72, 0xff, 0xe5, 0xa3, 0x77, 0xff, 0xe2, 0xaa, 0x7b, 0xff, 0xe8, 0xb1, 0x83, 0xff, 0xe8, 0xa8, 0x7b, 0xff, 0xe1, 0x9f, 0x72, 0xff, 0xcf, 0x96, 0x6a, 0xff, 0xc2, 0x8c, 0x61, 0xff, 0xba, 0x84, 0x59, 0xff, 0xb0, 0x7a, 0x50, 0xff, 0xa8, 0x6e, 0x46, 0xff, 0xa1, 0x65, 0x3d, 0xff, 0x9b, 0x5e, 0x37, 0xff, 0x94, 0x58, 0x33, 0xff, 0x93, 0x54, 0x30, 0xff, 0x8f, 0x51, 0x2f, 0xff, 0x8d, 0x4f, 0x2e, 0xff, 0x8a, 0x4c, 0x2d, 0xff, 0x8c, 0x4c, 0x2d, 0xff, 0x8a, 0x4b, 0x2c, 0xff, 0x89, 0x4c, 0x2b, 0xff, 0x89, 0x4c, 0x2b, 0xff, 0x89, 0x4c, 0x2b, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x8d, 0x4e, 0x2d, 0xff, 0x8f, 0x4f, 0x2d, 0xff, 0x8f, 0x4f, 0x2e, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x93, 0x53, 0x30, 0xff, 0x92, 0x53, 0x30, 0xff, 0x94, 0x58, 0x31, 0xff, 0x99, 0x5a, 0x33, 0xff, 0x97, 0x5b, 0x33, 0xff, 0x99, 0x5d, 0x35, 0xff, 0x97, 0x5a, 0x36, 0xff, 0x97, 0x5a, 0x35, 0xff, 0x91, 0x54, 0x30, 0xff, 0x84, 0x47, 0x25, 0xff, 0x86, 0x48, 0x25, 0xff, 0x89, 0x4c, 0x28, 0xff, 0x8c, 0x4d, 0x2c, 0xff, 0x8e, 0x4e, 0x2d, 0xff, 0x8f, 0x4f, 0x2d, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x94, 0x53, 0x2f, 0xff, 0x96, 0x56, 0x2f, 0xff, 0x99, 0x58, 0x31, 0xff, 0x9d, 0x5d, 0x32, 0xff, 0x9f, 0x5f, 0x34, 0xff, 0xa5, 0x66, 0x38, 0xff, 0xad, 0x6d, 0x3f, 0xff, 0xaf, 0x71, 0x42, 0xff, 0xb3, 0x75, 0x46, 0xff, 0xb6, 0x78, 0x48, 0xff, 0xb9, 0x7b, 0x49, 0xff, 0xbb, 0x7a, 0x4a, 0xff, 0xc1, 0x7d, 0x4c, 0xff, 0xc9, 0x86, 0x51, 0xff, 0xcc, 0x89, 0x54, 0xff, 0xcd, 0x8c, 0x59, 0xff, 0xd2, 0x8f, 0x5d, 0xff, 0xd4, 0x8f, 0x5e, 0xff, 0xc2, 0x86, 0x59, 0xff, 0xb8, 0x7f, 0x53, 0xff, 0xbb, 0x7f, 0x50, 0xff, 0xbd, 0x7e, 0x4f, 0xff, 0xb1, 0x73, 0x47, 0xff, 0x98, 0x5a, 0x32, 0xff, 0x94, 0x55, 0x2f, 0xff, 0x96, 0x56, 0x31, 0xff, 0x95, 0x56, 0x31, 0xff, 0x96, 0x57, 0x31, 0xff, 0x97, 0x58, 0x31, 0xff, 0x97, 0x5a, 0x31, 0xff, 0x98, 0x5b, 0x32, 0xff, 0x99, 0x5b, 0x33, 0xff, 0x9a, 0x5c, 0x34, 0xff, 0x9b, 0x5e, 0x36, 0xff, 0x9c, 0x61, 0x36, 0xff, 0x9e, 0x62, 0x37, 0xff, 0x9f, 0x63, 0x39, 0xff, 0xa0, 0x67, 0x3a, 0xff, 0xa0, 0x6a, 0x3c, 0xff, 0xa1, 0x6b, 0x3f, 0xff, 0xa1, 0x6c, 0x3f, 0xff, 0xa1, 0x6c, 0x3f, 0xff, 0xa0, 0x6d, 0x40, 0xff, 0xa0, 0x6d, 0x40, 0xff, 0xa0, 0x6c, 0x40, 0xff, 0xa2, 0x6c, 0x3f, 0xff, 0xa2, 0x6d, 0x3e, 0xff, 0xa0, 0x6b, 0x3d, 0xff, 0xa0, 0x6b, 0x3e, 0xff, 0xa1, 0x6c, 0x3f, 0xff, 0xa1, 0x6b, 0x40, 0xff, 0xa0, 0x69, 0x41, 0xff, 0x9d, 0x66, 0x41, 0xff, 0x9c, 0x63, 0x3f, 0xff, 0x9d, 0x63, 0x3f, 0xff, 0x9c, 0x63, 0x3f, 0xff, 0xa7, 0x6d, 0x46, 0xff, 0xba, 0x7f, 0x51, 0xff, 0xc2, 0x84, 0x55, 0xff, 0xc1, 0x84, 0x54, 0xff, 0xbd, 0x82, 0x52, 0xff, 0xb9, 0x7d, 0x50, 0xff, 0xb9, 0x7f, 0x51, 0xff, 0xbf, 0x84, 0x54, 0xff, 0xcf, 0x8e, 0x5c, 0xff, 0xe1, 0x9e, 0x6a, 0xff, 0xe8, 0xb0, 0x78, 0xff, 0xe8, 0xc5, 0x86, 0xff, 0xe5, 0xd4, 0x8e, 0xff, 0xe4, 0xd7, 0x92, 0xff, 0xe6, 0xcd, 0x8d, 0xff, 0xe9, 0xb7, 0x80, 0xff, 0xe1, 0xa2, 0x70, 0xff, 0xca, 0x8f, 0x5f, 0xff, 0xb6, 0x7e, 0x52, 0xff, 0xab, 0x70, 0x46, 0xff, 0xa3, 0x67, 0x3c, 0xff, 0x9d, 0x60, 0x36, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x95, 0x56, 0x30, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x8d, 0x4e, 0x2b, 0xff, 0x8d, 0x4e, 0x2a, 0xff, 0x8c, 0x4b, 0x27, 0xff, 0x8a, 0x4b, 0x27, 0xff, 0x89, 0x4b, 0x27, 0xff, 0x8a, 0x4c, 0x27, 0xff, 0x8a, 0x4b, 0x28, 0xff, 0x8b, 0x4b, 0x28, 0xff, 0x8c, 0x4d, 0x29, 0xff, 0x8e, 0x4e, 0x2b, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8f, 0x4f, 0x2d, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x8c, 0x4e, 0x28, 0xff, 0x7d, 0x44, 0x1f, 0xff, 0x6f, 0x34, 0x18, 0xff, 0x6a, 0x32, 0x17, 0xff, 0x6b, 0x35, 0x17, 0xff, 0x6c, 0x36, 0x17, 0xff, 0x6c, 0x37, 0x17, 0xff, 0x6c, 0x37, 0x17, 0xff, 0x72, 0x3c, 0x19, 0xff, 0x7c, 0x42, 0x20, 0xff, 0x7c, 0x40, 0x1f, 0xff, 0x84, 0x48, 0x27, 0xff, 0x93, 0x55, 0x30, 0xff, 0x96, 0x58, 0x31, 0xff, 0x92, 0x54, 0x2f, 0xff, 0x8e, 0x4f, 0x2e, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x98, 0x5a, 0x32, 0xff, 0x97, 0x56, 0x31, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x8f, 0x50, 0x2e, 0xff, 0x8e, 0x50, 0x2d, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x94, 0x56, 0x31, 0xff, 0x96, 0x58, 0x33, 0xff, 0x97, 0x5b, 0x33, 0xff, 0x99, 0x5b, 0x35, 0xff, 0x9c, 0x5d, 0x35, 0xff, 0x91, 0x55, 0x30, 0xff, 0x8c, 0x4f, 0x30, 0xff, 0x8a, 0x4e, 0x2e, 0xff, 0x8b, 0x4f, 0x2f, 0xff, 0x8b, 0x4f, 0x2e, 0xff, 0x88, 0x4c, 0x2d, 0xff, 0x88, 0x4b, 0x2d, 0xff, 0x84, 0x48, 0x28, 0xff, 0x80, 0x43, 0x25, 0xff, 0x7e, 0x42, 0x22, 0xff, 0x7b, 0x41, 0x20, 0xff, 0x7a, 0x40, 0x1e, 0xff, 0x78, 0x3e, 0x1c, 0xff, 0x7b, 0x41, 0x20, 0xff, 0x79, 0x3e, 0x1c, 0xff, 0x78, 0x40, 0x1e, 0xff, 0x77, 0x3f, 0x1b, 0xff, 0x76, 0x3e, 0x1c, 0xff, 0x75, 0x3e, 0x1c, 0xff, 0x73, 0x3d, 0x1b, 0xff, 0x72, 0x3b, 0x1a, 0xff, 0x72, 0x3a, 0x19, 0xff, 0x71, 0x3a, 0x19, 0xff, 0x72, 0x3a, 0x19, 0xff, 0x70, 0x36, 0x18, 0xff, 0x70, 0x37, 0x17, 0xff, 0x70, 0x38, 0x17, 0xff, 0x6e, 0x36, 0x17, 0xff, 0x70, 0x38, 0x18, 0xff, 0x71, 0x39, 0x18, 0xff, 0x72, 0x3c, 0x19, 0xff, 0x73, 0x3d, 0x1b, 0xff, 0x76, 0x40, 0x1c, 0xff, 0x79, 0x3e, 0x1c, 0xff, 0x6e, 0x39, 0x1b, 0xff, 0x6e, 0x38, 0x1c, 0xff, 0x6e, 0x38, 0x1c, 0xff, 0x6e, 0x39, 0x1c, 0xff, 0x71, 0x3b, 0x1c, 0xff, 0x69, 0x35, 0x18, 0xff, 0x9c, 0x62, 0x3a, 0xff, 0xad, 0x70, 0x42, 0xff, 0xa5, 0x66, 0x3b, 0xff, 0xa0, 0x60, 0x37, 0xff, + 0xa5, 0x66, 0x3b, 0xff, 0xa3, 0x64, 0x39, 0xff, 0xa1, 0x62, 0x39, 0xff, 0x9c, 0x5e, 0x35, 0xff, 0x94, 0x56, 0x30, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x93, 0x53, 0x30, 0xff, 0x92, 0x52, 0x2f, 0xff, 0x95, 0x55, 0x30, 0xff, 0x95, 0x55, 0x31, 0xff, 0x95, 0x57, 0x32, 0xff, 0x99, 0x5b, 0x34, 0xff, 0x9d, 0x5f, 0x37, 0xff, 0xa2, 0x66, 0x3f, 0xff, 0xaa, 0x71, 0x49, 0xff, 0xb3, 0x7c, 0x53, 0xff, 0xbf, 0x89, 0x5e, 0xff, 0xcf, 0x96, 0x6a, 0xff, 0xdb, 0x9e, 0x72, 0xff, 0xe7, 0xae, 0x7f, 0xff, 0xe7, 0xbd, 0x89, 0xff, 0xe7, 0xb8, 0x87, 0xff, 0xe8, 0xb2, 0x83, 0xff, 0xe8, 0xaa, 0x7c, 0xff, 0xe2, 0xa1, 0x72, 0xff, 0xcf, 0x95, 0x68, 0xff, 0xbf, 0x89, 0x5e, 0xff, 0xb5, 0x7e, 0x55, 0xff, 0xac, 0x74, 0x4c, 0xff, 0xa4, 0x6a, 0x43, 0xff, 0x9e, 0x61, 0x3b, 0xff, 0x98, 0x5b, 0x35, 0xff, 0x93, 0x56, 0x32, 0xff, 0x91, 0x53, 0x30, 0xff, 0x8f, 0x51, 0x2f, 0xff, 0x8f, 0x50, 0x2e, 0xff, 0x8e, 0x4f, 0x2e, 0xff, 0x8d, 0x4e, 0x2e, 0xff, 0x8e, 0x4f, 0x2e, 0xff, 0x8e, 0x50, 0x2e, 0xff, 0x8e, 0x50, 0x2d, 0xff, 0x8e, 0x4e, 0x2c, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x93, 0x55, 0x30, 0xff, 0x94, 0x54, 0x30, 0xff, 0x94, 0x55, 0x30, 0xff, 0x94, 0x56, 0x30, 0xff, 0x98, 0x59, 0x32, 0xff, 0x99, 0x5a, 0x33, 0xff, 0x99, 0x5c, 0x35, 0xff, 0x99, 0x5f, 0x37, 0xff, 0x9b, 0x5f, 0x38, 0xff, 0x95, 0x59, 0x33, 0xff, 0x83, 0x46, 0x24, 0xff, 0x81, 0x43, 0x21, 0xff, 0x85, 0x47, 0x25, 0xff, 0x89, 0x48, 0x27, 0xff, 0x8b, 0x4b, 0x29, 0xff, 0x8c, 0x4d, 0x2a, 0xff, 0x8d, 0x4e, 0x2b, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x95, 0x55, 0x2e, 0xff, 0x98, 0x58, 0x30, 0xff, 0x9b, 0x5a, 0x31, 0xff, 0x9f, 0x5f, 0x35, 0xff, 0xa8, 0x67, 0x3a, 0xff, 0xab, 0x6a, 0x3c, 0xff, 0xae, 0x6f, 0x40, 0xff, 0xb0, 0x72, 0x43, 0xff, 0xb4, 0x75, 0x45, 0xff, 0xb7, 0x78, 0x47, 0xff, 0xb9, 0x77, 0x48, 0xff, 0xbf, 0x7c, 0x4b, 0xff, 0xc7, 0x84, 0x50, 0xff, 0xcc, 0x87, 0x52, 0xff, 0xce, 0x89, 0x54, 0xff, 0xd1, 0x8d, 0x57, 0xff, 0xcb, 0x89, 0x55, 0xff, 0xb7, 0x7c, 0x4e, 0xff, 0xb8, 0x7d, 0x4f, 0xff, 0xba, 0x7d, 0x50, 0xff, 0xbb, 0x7d, 0x4e, 0xff, 0xbd, 0x7f, 0x4f, 0xff, 0xb5, 0x77, 0x4a, 0xff, 0x9a, 0x5b, 0x34, 0xff, 0x93, 0x54, 0x2e, 0xff, 0x97, 0x57, 0x31, 0xff, 0x97, 0x57, 0x30, 0xff, 0x96, 0x58, 0x31, 0xff, 0x97, 0x59, 0x31, 0xff, 0x98, 0x5a, 0x32, 0xff, 0x99, 0x5c, 0x33, 0xff, 0x9a, 0x5c, 0x34, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0x9c, 0x62, 0x36, 0xff, 0x9e, 0x64, 0x37, 0xff, 0xa0, 0x65, 0x39, 0xff, 0xa0, 0x68, 0x3c, 0xff, 0xa1, 0x6b, 0x3f, 0xff, 0xa1, 0x6c, 0x40, 0xff, 0xa0, 0x6b, 0x40, 0xff, 0xa0, 0x6b, 0x40, 0xff, 0xa0, 0x6c, 0x41, 0xff, 0xa0, 0x6c, 0x40, 0xff, 0xa2, 0x6d, 0x40, 0xff, 0xa1, 0x6c, 0x3e, 0xff, 0xa0, 0x6a, 0x3c, 0xff, 0xa1, 0x6b, 0x3c, 0xff, 0xa0, 0x6a, 0x3e, 0xff, 0xa0, 0x6a, 0x3e, 0xff, 0xa0, 0x6a, 0x3e, 0xff, 0xa0, 0x69, 0x3f, 0xff, 0x9d, 0x66, 0x3d, 0xff, 0x9c, 0x64, 0x3d, 0xff, 0x9e, 0x64, 0x3f, 0xff, 0x9c, 0x63, 0x3f, 0xff, 0xa3, 0x69, 0x44, 0xff, 0xb9, 0x7d, 0x51, 0xff, 0xc4, 0x86, 0x57, 0xff, 0xc3, 0x86, 0x56, 0xff, 0xc2, 0x86, 0x55, 0xff, 0xbc, 0x80, 0x52, 0xff, 0xb9, 0x7f, 0x51, 0xff, 0xbd, 0x83, 0x54, 0xff, 0xcb, 0x8c, 0x5b, 0xff, 0xe0, 0x9a, 0x67, 0xff, 0xe9, 0xac, 0x76, 0xff, 0xe7, 0xc7, 0x87, 0xff, 0xe2, 0xd5, 0x93, 0xff, 0xe1, 0xd5, 0x98, 0xff, 0xe4, 0xd5, 0x96, 0xff, 0xe7, 0xc7, 0x8a, 0xff, 0xea, 0xaf, 0x79, 0xff, 0xd7, 0x98, 0x68, 0xff, 0xbe, 0x86, 0x58, 0xff, 0xb1, 0x78, 0x4b, 0xff, 0xa9, 0x6d, 0x42, 0xff, 0xa1, 0x63, 0x38, 0xff, 0x9b, 0x5c, 0x32, 0xff, 0x97, 0x57, 0x30, 0xff, 0x95, 0x54, 0x2e, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x90, 0x4f, 0x2b, 0xff, 0x8e, 0x4d, 0x29, 0xff, 0x8c, 0x4c, 0x27, 0xff, 0x8a, 0x4b, 0x27, 0xff, 0x8a, 0x4a, 0x27, 0xff, 0x8b, 0x4b, 0x28, 0xff, 0x8c, 0x4d, 0x29, 0xff, 0x8d, 0x4d, 0x2a, 0xff, 0x8e, 0x4e, 0x2c, 0xff, 0x8f, 0x4f, 0x2d, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x96, 0x56, 0x31, 0xff, 0x86, 0x49, 0x27, 0xff, 0x72, 0x3a, 0x1a, 0xff, 0x6a, 0x34, 0x17, 0xff, 0x6b, 0x35, 0x17, 0xff, 0x6c, 0x36, 0x17, 0xff, 0x6e, 0x36, 0x17, 0xff, 0x6e, 0x36, 0x17, 0xff, 0x6f, 0x37, 0x17, 0xff, 0x7d, 0x42, 0x21, 0xff, 0x7d, 0x42, 0x21, 0xff, 0x79, 0x3e, 0x1e, 0xff, 0x85, 0x49, 0x27, 0xff, 0x95, 0x57, 0x31, 0xff, 0x93, 0x55, 0x30, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x8e, 0x50, 0x2d, 0xff, 0x98, 0x59, 0x31, 0xff, 0x97, 0x57, 0x30, 0xff, 0x94, 0x55, 0x30, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x91, 0x51, 0x2f, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x94, 0x54, 0x31, 0xff, 0x97, 0x58, 0x32, 0xff, 0x98, 0x5b, 0x34, 0xff, 0x97, 0x5b, 0x35, 0xff, 0x97, 0x5c, 0x36, 0xff, 0x99, 0x5e, 0x36, 0xff, 0x91, 0x55, 0x31, 0xff, 0x8d, 0x50, 0x2f, 0xff, 0x8a, 0x4d, 0x2e, 0xff, 0x89, 0x4c, 0x2d, 0xff, 0x8b, 0x4f, 0x2e, 0xff, 0x88, 0x4c, 0x2d, 0xff, 0x88, 0x4b, 0x2d, 0xff, 0x85, 0x48, 0x27, 0xff, 0x81, 0x45, 0x25, 0xff, 0x7e, 0x43, 0x23, 0xff, 0x7c, 0x42, 0x22, 0xff, 0x7b, 0x3f, 0x1e, 0xff, 0x78, 0x40, 0x1e, 0xff, 0x7b, 0x40, 0x20, 0xff, 0x7a, 0x40, 0x1e, 0xff, 0x7a, 0x40, 0x1e, 0xff, 0x77, 0x3f, 0x1d, 0xff, 0x76, 0x3e, 0x1c, 0xff, 0x77, 0x3e, 0x1b, 0xff, 0x73, 0x3b, 0x1b, 0xff, 0x73, 0x3b, 0x1a, 0xff, 0x72, 0x3c, 0x1a, 0xff, 0x71, 0x3c, 0x19, 0xff, 0x71, 0x38, 0x18, 0xff, 0x6e, 0x34, 0x17, 0xff, 0x6e, 0x36, 0x17, 0xff, 0x76, 0x3d, 0x1c, 0xff, 0x7a, 0x40, 0x21, 0xff, 0x7c, 0x42, 0x22, 0xff, 0x7f, 0x46, 0x23, 0xff, 0x83, 0x48, 0x26, 0xff, 0x8b, 0x4f, 0x2d, 0xff, 0x91, 0x54, 0x31, 0xff, 0x93, 0x55, 0x33, 0xff, 0x97, 0x59, 0x34, 0xff, 0x99, 0x5c, 0x35, 0xff, 0x9c, 0x5e, 0x37, 0xff, 0x9c, 0x5f, 0x37, 0xff, 0x9c, 0x5d, 0x37, 0xff, 0x9b, 0x5d, 0x37, 0xff, 0x95, 0x58, 0x33, 0xff, 0xa5, 0x67, 0x3e, 0xff, 0xad, 0x6f, 0x42, 0xff, 0xa7, 0x68, 0x3d, 0xff, + 0xae, 0x6f, 0x43, 0xff, 0xaf, 0x6f, 0x42, 0xff, 0xae, 0x6f, 0x42, 0xff, 0xac, 0x6e, 0x42, 0xff, 0xa9, 0x6c, 0x42, 0xff, 0xa4, 0x66, 0x3c, 0xff, 0x9b, 0x5b, 0x34, 0xff, 0x95, 0x56, 0x30, 0xff, 0x94, 0x55, 0x2f, 0xff, 0x95, 0x55, 0x31, 0xff, 0x97, 0x58, 0x31, 0xff, 0x98, 0x5b, 0x33, 0xff, 0x9b, 0x5d, 0x36, 0xff, 0xa0, 0x61, 0x39, 0xff, 0xa5, 0x6b, 0x43, 0xff, 0xae, 0x75, 0x4c, 0xff, 0xb8, 0x82, 0x57, 0xff, 0xc3, 0x8c, 0x61, 0xff, 0xde, 0x9f, 0x73, 0xff, 0xe8, 0xae, 0x7d, 0xff, 0xe8, 0xb3, 0x83, 0xff, 0xe7, 0xb3, 0x84, 0xff, 0xe8, 0xb2, 0x82, 0xff, 0xe8, 0xab, 0x7b, 0xff, 0xe6, 0xa2, 0x74, 0xff, 0xd2, 0x96, 0x6b, 0xff, 0xc2, 0x8d, 0x61, 0xff, 0xb7, 0x80, 0x57, 0xff, 0xad, 0x75, 0x4c, 0xff, 0xa7, 0x6e, 0x44, 0xff, 0xa1, 0x64, 0x3d, 0xff, 0x9b, 0x5e, 0x37, 0xff, 0x98, 0x5b, 0x35, 0xff, 0x95, 0x55, 0x32, 0xff, 0x93, 0x54, 0x30, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x8f, 0x51, 0x2e, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x90, 0x51, 0x2f, 0xff, 0x94, 0x55, 0x30, 0xff, 0x98, 0x5a, 0x32, 0xff, 0x99, 0x5c, 0x33, 0xff, 0x99, 0x5a, 0x33, 0xff, 0x97, 0x58, 0x31, 0xff, 0x96, 0x57, 0x31, 0xff, 0x97, 0x57, 0x31, 0xff, 0x96, 0x57, 0x31, 0xff, 0x96, 0x57, 0x31, 0xff, 0x97, 0x59, 0x32, 0xff, 0x98, 0x5b, 0x33, 0xff, 0x99, 0x5c, 0x35, 0xff, 0x9a, 0x5e, 0x37, 0xff, 0x95, 0x59, 0x33, 0xff, 0x7d, 0x41, 0x1f, 0xff, 0x7c, 0x40, 0x20, 0xff, 0x82, 0x44, 0x22, 0xff, 0x84, 0x47, 0x23, 0xff, 0x87, 0x48, 0x26, 0xff, 0x88, 0x4a, 0x28, 0xff, 0x89, 0x4b, 0x29, 0xff, 0x8b, 0x4c, 0x2a, 0xff, 0x8f, 0x4f, 0x2b, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x97, 0x57, 0x30, 0xff, 0x9b, 0x5b, 0x32, 0xff, 0xa2, 0x61, 0x35, 0xff, 0xa6, 0x65, 0x38, 0xff, 0xa9, 0x69, 0x3a, 0xff, 0xab, 0x6c, 0x3c, 0xff, 0xb0, 0x6f, 0x40, 0xff, 0xb2, 0x72, 0x42, 0xff, 0xb5, 0x76, 0x45, 0xff, 0xb8, 0x77, 0x46, 0xff, 0xbd, 0x7c, 0x4a, 0xff, 0xc5, 0x83, 0x50, 0xff, 0xc9, 0x84, 0x50, 0xff, 0xce, 0x87, 0x52, 0xff, 0xce, 0x86, 0x52, 0xff, 0xba, 0x7a, 0x4a, 0xff, 0xb5, 0x77, 0x46, 0xff, 0xb8, 0x79, 0x4a, 0xff, 0xba, 0x7a, 0x4a, 0xff, 0xb9, 0x7a, 0x4b, 0xff, 0xb7, 0x79, 0x4a, 0xff, 0xb9, 0x7a, 0x4c, 0xff, 0xb5, 0x77, 0x49, 0xff, 0xa0, 0x62, 0x39, 0xff, 0x94, 0x55, 0x2e, 0xff, 0x96, 0x59, 0x30, 0xff, 0x95, 0x57, 0x30, 0xff, 0x98, 0x59, 0x31, 0xff, 0x9a, 0x5b, 0x32, 0xff, 0x9a, 0x5d, 0x33, 0xff, 0x9b, 0x5e, 0x34, 0xff, 0x9c, 0x60, 0x35, 0xff, 0x9d, 0x62, 0x37, 0xff, 0x9e, 0x65, 0x38, 0xff, 0x9f, 0x67, 0x3a, 0xff, 0xa1, 0x68, 0x3d, 0xff, 0xa1, 0x6a, 0x40, 0xff, 0xa0, 0x6b, 0x43, 0xff, 0xa1, 0x6c, 0x43, 0xff, 0xa1, 0x6c, 0x43, 0xff, 0xa0, 0x6c, 0x43, 0xff, 0x9f, 0x6b, 0x41, 0xff, 0x9f, 0x6c, 0x40, 0xff, 0xa1, 0x6c, 0x3f, 0xff, 0xa1, 0x6b, 0x3c, 0xff, 0xa0, 0x69, 0x3c, 0xff, 0xa0, 0x69, 0x3c, 0xff, 0xa1, 0x6b, 0x3c, 0xff, 0xa0, 0x6a, 0x3c, 0xff, 0x9e, 0x68, 0x3d, 0xff, 0x9c, 0x65, 0x3c, 0xff, 0x9b, 0x64, 0x3c, 0xff, 0x9e, 0x66, 0x3e, 0xff, 0x9d, 0x65, 0x3f, 0xff, 0xa1, 0x68, 0x42, 0xff, 0xb8, 0x7d, 0x52, 0xff, 0xc7, 0x88, 0x5a, 0xff, 0xc6, 0x88, 0x57, 0xff, 0xc6, 0x89, 0x58, 0xff, 0xbf, 0x84, 0x55, 0xff, 0xba, 0x80, 0x52, 0xff, 0xbc, 0x82, 0x52, 0xff, 0xc7, 0x8a, 0x57, 0xff, 0xdc, 0x99, 0x65, 0xff, 0xe8, 0xaa, 0x74, 0xff, 0xe7, 0xc4, 0x84, 0xff, 0xe3, 0xd4, 0x94, 0xff, 0xe2, 0xd6, 0x9c, 0xff, 0xe2, 0xd6, 0x9b, 0xff, 0xe5, 0xd1, 0x91, 0xff, 0xe9, 0xbb, 0x81, 0xff, 0xe1, 0xa2, 0x70, 0xff, 0xca, 0x90, 0x60, 0xff, 0xb8, 0x7f, 0x51, 0xff, 0xac, 0x70, 0x45, 0xff, 0xa3, 0x68, 0x3b, 0xff, 0x9f, 0x60, 0x35, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x96, 0x56, 0x30, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x91, 0x51, 0x2e, 0xff, 0x8f, 0x4f, 0x2b, 0xff, 0x8d, 0x4d, 0x29, 0xff, 0x8b, 0x4b, 0x26, 0xff, 0x8b, 0x4c, 0x27, 0xff, 0x8b, 0x4a, 0x27, 0xff, 0x8c, 0x4c, 0x28, 0xff, 0x8d, 0x4e, 0x2a, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x8f, 0x51, 0x2e, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x95, 0x55, 0x32, 0xff, 0x76, 0x3e, 0x1e, 0xff, 0x6b, 0x33, 0x16, 0xff, 0x6b, 0x35, 0x16, 0xff, 0x6c, 0x35, 0x16, 0xff, 0x6e, 0x38, 0x18, 0xff, 0x70, 0x39, 0x18, 0xff, 0x73, 0x3c, 0x19, 0xff, 0x7d, 0x42, 0x20, 0xff, 0x7e, 0x42, 0x22, 0xff, 0x7f, 0x43, 0x23, 0xff, 0x7f, 0x45, 0x24, 0xff, 0x88, 0x4c, 0x29, 0xff, 0x92, 0x54, 0x30, 0xff, 0x90, 0x51, 0x2f, 0xff, 0x8c, 0x4e, 0x2d, 0xff, 0x97, 0x57, 0x31, 0xff, 0x96, 0x56, 0x31, 0xff, 0x94, 0x55, 0x2f, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x93, 0x53, 0x30, 0xff, 0x96, 0x56, 0x31, 0xff, 0x96, 0x59, 0x33, 0xff, 0x97, 0x5b, 0x35, 0xff, 0x97, 0x5d, 0x36, 0xff, 0x96, 0x5b, 0x36, 0xff, 0x90, 0x53, 0x30, 0xff, 0x8d, 0x4f, 0x2f, 0xff, 0x8a, 0x4e, 0x2e, 0xff, 0x88, 0x4c, 0x2d, 0xff, 0x8b, 0x4f, 0x2f, 0xff, 0x89, 0x4c, 0x2e, 0xff, 0x88, 0x4b, 0x2d, 0xff, 0x85, 0x4a, 0x27, 0xff, 0x82, 0x47, 0x24, 0xff, 0x7f, 0x43, 0x24, 0xff, 0x7e, 0x43, 0x22, 0xff, 0x7b, 0x41, 0x20, 0xff, 0x7b, 0x40, 0x1e, 0xff, 0x7b, 0x41, 0x20, 0xff, 0x7a, 0x41, 0x20, 0xff, 0x7b, 0x3f, 0x1e, 0xff, 0x78, 0x3f, 0x1e, 0xff, 0x77, 0x3e, 0x1c, 0xff, 0x75, 0x3d, 0x1b, 0xff, 0x76, 0x3d, 0x1b, 0xff, 0x75, 0x3d, 0x1b, 0xff, 0x71, 0x39, 0x18, 0xff, 0x74, 0x3d, 0x1b, 0xff, 0x78, 0x3f, 0x1f, 0xff, 0x81, 0x47, 0x28, 0xff, 0x88, 0x4b, 0x2a, 0xff, 0x88, 0x4d, 0x2d, 0xff, 0x8d, 0x4f, 0x2f, 0xff, 0x8f, 0x52, 0x30, 0xff, 0x92, 0x52, 0x31, 0xff, 0x93, 0x55, 0x31, 0xff, 0x94, 0x56, 0x31, 0xff, 0x93, 0x55, 0x31, 0xff, 0x94, 0x55, 0x32, 0xff, 0x95, 0x57, 0x32, 0xff, 0x96, 0x58, 0x32, 0xff, 0x95, 0x57, 0x32, 0xff, 0x96, 0x58, 0x33, 0xff, 0x98, 0x59, 0x33, 0xff, 0x98, 0x5b, 0x33, 0xff, 0x99, 0x5c, 0x35, 0xff, 0x9c, 0x5e, 0x36, 0xff, 0xab, 0x6d, 0x41, 0xff, 0xaf, 0x70, 0x43, 0xff, + 0xb1, 0x72, 0x43, 0xff, 0xaf, 0x70, 0x42, 0xff, 0xae, 0x70, 0x42, 0xff, 0xb1, 0x72, 0x44, 0xff, 0xb0, 0x72, 0x43, 0xff, 0xb1, 0x71, 0x44, 0xff, 0xaf, 0x71, 0x44, 0xff, 0xaf, 0x70, 0x44, 0xff, 0xa9, 0x6c, 0x40, 0xff, 0x9a, 0x5a, 0x33, 0xff, 0x99, 0x5a, 0x33, 0xff, 0x98, 0x5b, 0x33, 0xff, 0x99, 0x5a, 0x34, 0xff, 0x9d, 0x5e, 0x37, 0xff, 0x9f, 0x62, 0x3b, 0xff, 0xa7, 0x6d, 0x43, 0xff, 0xae, 0x75, 0x4c, 0xff, 0xc1, 0x8a, 0x5f, 0xff, 0xcf, 0x96, 0x68, 0xff, 0xde, 0x9d, 0x6f, 0xff, 0xe5, 0xa3, 0x74, 0xff, 0xe4, 0xa5, 0x79, 0xff, 0xe8, 0xa5, 0x78, 0xff, 0xe4, 0xa2, 0x73, 0xff, 0xdc, 0x9b, 0x6d, 0xff, 0xcc, 0x92, 0x66, 0xff, 0xc0, 0x89, 0x5e, 0xff, 0xb6, 0x7f, 0x55, 0xff, 0xb0, 0x78, 0x4f, 0xff, 0xaa, 0x6f, 0x45, 0xff, 0xa2, 0x66, 0x3d, 0xff, 0x9d, 0x5f, 0x37, 0xff, 0x9a, 0x5a, 0x34, 0xff, 0x97, 0x58, 0x31, 0xff, 0x97, 0x56, 0x30, 0xff, 0x95, 0x54, 0x2f, 0xff, 0x93, 0x53, 0x30, 0xff, 0x95, 0x55, 0x30, 0xff, 0x97, 0x57, 0x31, 0xff, 0x98, 0x59, 0x31, 0xff, 0x9c, 0x5d, 0x34, 0xff, 0x9b, 0x5f, 0x36, 0xff, 0x9c, 0x5f, 0x36, 0xff, 0x9c, 0x5e, 0x35, 0xff, 0x9c, 0x5d, 0x34, 0xff, 0x9b, 0x5d, 0x35, 0xff, 0x9b, 0x5c, 0x33, 0xff, 0x98, 0x59, 0x32, 0xff, 0x99, 0x5a, 0x33, 0xff, 0x99, 0x5a, 0x33, 0xff, 0x99, 0x5b, 0x34, 0xff, 0x9a, 0x5d, 0x36, 0xff, 0x94, 0x59, 0x33, 0xff, 0x7b, 0x41, 0x1d, 0xff, 0x79, 0x3e, 0x1b, 0xff, 0x7d, 0x40, 0x1f, 0xff, 0x7f, 0x42, 0x20, 0xff, 0x82, 0x44, 0x23, 0xff, 0x84, 0x47, 0x25, 0xff, 0x87, 0x49, 0x26, 0xff, 0x88, 0x49, 0x26, 0xff, 0x89, 0x4c, 0x27, 0xff, 0x8e, 0x4e, 0x2b, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x93, 0x54, 0x2e, 0xff, 0x97, 0x56, 0x2e, 0xff, 0x9b, 0x5a, 0x31, 0xff, 0xa0, 0x60, 0x36, 0xff, 0xa3, 0x62, 0x37, 0xff, 0xa6, 0x66, 0x37, 0xff, 0xaa, 0x69, 0x3a, 0xff, 0xad, 0x6e, 0x3d, 0xff, 0xaf, 0x72, 0x41, 0xff, 0xb4, 0x73, 0x43, 0xff, 0xb7, 0x77, 0x46, 0xff, 0xbd, 0x7d, 0x4b, 0xff, 0xc1, 0x83, 0x4f, 0xff, 0xc5, 0x82, 0x4f, 0xff, 0xc7, 0x83, 0x4f, 0xff, 0xbe, 0x7c, 0x4b, 0xff, 0xae, 0x6e, 0x41, 0xff, 0xb3, 0x73, 0x44, 0xff, 0xb5, 0x76, 0x45, 0xff, 0xb6, 0x77, 0x47, 0xff, 0xb7, 0x77, 0x47, 0xff, 0xb5, 0x76, 0x46, 0xff, 0xb5, 0x77, 0x47, 0xff, 0xbb, 0x7c, 0x4d, 0xff, 0xb8, 0x79, 0x4b, 0xff, 0x9c, 0x5d, 0x34, 0xff, 0x95, 0x56, 0x2f, 0xff, 0x96, 0x57, 0x30, 0xff, 0x97, 0x58, 0x30, 0xff, 0x99, 0x5b, 0x31, 0xff, 0x9b, 0x5f, 0x33, 0xff, 0x9b, 0x5f, 0x36, 0xff, 0x9c, 0x60, 0x36, 0xff, 0x9d, 0x62, 0x37, 0xff, 0x9f, 0x65, 0x38, 0xff, 0xa1, 0x69, 0x3b, 0xff, 0xa0, 0x6a, 0x3f, 0xff, 0x9f, 0x6b, 0x42, 0xff, 0xa0, 0x6c, 0x44, 0xff, 0xa0, 0x6c, 0x44, 0xff, 0xa0, 0x6c, 0x44, 0xff, 0xa0, 0x6c, 0x43, 0xff, 0xa0, 0x6c, 0x43, 0xff, 0xa1, 0x6c, 0x41, 0xff, 0xa2, 0x6c, 0x3f, 0xff, 0xa2, 0x6b, 0x3d, 0xff, 0xa1, 0x69, 0x3b, 0xff, 0xa1, 0x6a, 0x3b, 0xff, 0xa0, 0x69, 0x3c, 0xff, 0x9f, 0x67, 0x3b, 0xff, 0x9e, 0x67, 0x3a, 0xff, 0x9c, 0x65, 0x39, 0xff, 0x9b, 0x64, 0x39, 0xff, 0x9d, 0x67, 0x3c, 0xff, 0x9d, 0x67, 0x3e, 0xff, 0x9c, 0x65, 0x3e, 0xff, 0xae, 0x74, 0x4a, 0xff, 0xc4, 0x85, 0x57, 0xff, 0xc9, 0x8a, 0x59, 0xff, 0xcb, 0x8c, 0x5a, 0xff, 0xc4, 0x86, 0x56, 0xff, 0xbb, 0x7e, 0x51, 0xff, 0xbb, 0x81, 0x50, 0xff, 0xc1, 0x87, 0x55, 0xff, 0xd6, 0x91, 0x5e, 0xff, 0xe7, 0xa2, 0x6e, 0xff, 0xe7, 0xbb, 0x80, 0xff, 0xe4, 0xd1, 0x90, 0xff, 0xe2, 0xd7, 0x9a, 0xff, 0xe2, 0xd6, 0x9c, 0xff, 0xe4, 0xd5, 0x96, 0xff, 0xe7, 0xc4, 0x88, 0xff, 0xe8, 0xab, 0x77, 0xff, 0xd5, 0x96, 0x66, 0xff, 0xbe, 0x86, 0x57, 0xff, 0xb1, 0x77, 0x4b, 0xff, 0xa7, 0x6a, 0x3f, 0xff, 0xa0, 0x63, 0x38, 0xff, 0x9c, 0x5d, 0x34, 0xff, 0x98, 0x58, 0x31, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x92, 0x52, 0x2d, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x8e, 0x4f, 0x2b, 0xff, 0x8d, 0x4d, 0x2a, 0xff, 0x8c, 0x4c, 0x29, 0xff, 0x8c, 0x4c, 0x28, 0xff, 0x8c, 0x4c, 0x28, 0xff, 0x8d, 0x4c, 0x29, 0xff, 0x8e, 0x4f, 0x2a, 0xff, 0x8f, 0x50, 0x2c, 0xff, 0x8e, 0x51, 0x2e, 0xff, 0x90, 0x51, 0x2f, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x94, 0x55, 0x30, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x72, 0x3a, 0x1c, 0xff, 0x6b, 0x35, 0x16, 0xff, 0x6e, 0x36, 0x17, 0xff, 0x71, 0x3b, 0x18, 0xff, 0x70, 0x3c, 0x19, 0xff, 0x78, 0x42, 0x20, 0xff, 0x7e, 0x42, 0x24, 0xff, 0x80, 0x44, 0x24, 0xff, 0x81, 0x43, 0x24, 0xff, 0x83, 0x46, 0x26, 0xff, 0x80, 0x44, 0x23, 0xff, 0x85, 0x4a, 0x26, 0xff, 0x8d, 0x4f, 0x2e, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x96, 0x56, 0x30, 0xff, 0x96, 0x56, 0x2f, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x8f, 0x4f, 0x2e, 0xff, 0x8e, 0x4e, 0x2d, 0xff, 0x8f, 0x50, 0x2e, 0xff, 0x92, 0x53, 0x30, 0xff, 0x96, 0x57, 0x32, 0xff, 0x95, 0x59, 0x33, 0xff, 0x95, 0x5b, 0x35, 0xff, 0x96, 0x5d, 0x37, 0xff, 0x91, 0x57, 0x33, 0xff, 0x8d, 0x50, 0x2f, 0xff, 0x8e, 0x50, 0x2f, 0xff, 0x8c, 0x4f, 0x2e, 0xff, 0x89, 0x4c, 0x2e, 0xff, 0x8c, 0x4f, 0x2e, 0xff, 0x89, 0x4c, 0x2e, 0xff, 0x88, 0x4b, 0x2c, 0xff, 0x86, 0x49, 0x29, 0xff, 0x83, 0x48, 0x26, 0xff, 0x80, 0x45, 0x24, 0xff, 0x7f, 0x42, 0x23, 0xff, 0x7c, 0x42, 0x22, 0xff, 0x7b, 0x41, 0x20, 0xff, 0x7b, 0x41, 0x1f, 0xff, 0x7b, 0x3f, 0x1e, 0xff, 0x7a, 0x41, 0x20, 0xff, 0x78, 0x40, 0x1d, 0xff, 0x77, 0x3d, 0x1c, 0xff, 0x77, 0x3f, 0x1b, 0xff, 0x76, 0x3b, 0x1b, 0xff, 0x77, 0x3f, 0x1c, 0xff, 0x86, 0x4c, 0x2b, 0xff, 0x88, 0x4c, 0x2e, 0xff, 0x88, 0x4c, 0x2d, 0xff, 0x89, 0x4c, 0x2e, 0xff, 0x8a, 0x4e, 0x2e, 0xff, 0x8d, 0x4f, 0x2f, 0xff, 0x8e, 0x50, 0x2f, 0xff, 0x90, 0x53, 0x30, 0xff, 0x91, 0x52, 0x30, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x93, 0x55, 0x2f, 0xff, 0x92, 0x53, 0x30, 0xff, 0x95, 0x54, 0x31, 0xff, 0x95, 0x56, 0x31, 0xff, 0x97, 0x59, 0x32, 0xff, 0x98, 0x5a, 0x33, 0xff, 0x99, 0x5d, 0x33, 0xff, 0x9a, 0x5b, 0x34, 0xff, 0x9b, 0x5c, 0x35, 0xff, 0x9b, 0x5c, 0x33, 0xff, 0xb1, 0x72, 0x44, 0xff, + 0xb0, 0x72, 0x44, 0xff, 0xb6, 0x76, 0x44, 0xff, 0xb3, 0x72, 0x43, 0xff, 0xb0, 0x70, 0x42, 0xff, 0xb0, 0x70, 0x42, 0xff, 0xb1, 0x71, 0x43, 0xff, 0xb3, 0x73, 0x45, 0xff, 0xb2, 0x73, 0x45, 0xff, 0xb4, 0x75, 0x46, 0xff, 0xb4, 0x75, 0x48, 0xff, 0xaf, 0x70, 0x44, 0xff, 0xa5, 0x66, 0x3b, 0xff, 0x9c, 0x5d, 0x35, 0xff, 0x9a, 0x5a, 0x35, 0xff, 0x9b, 0x5c, 0x35, 0xff, 0xa0, 0x62, 0x3a, 0xff, 0xab, 0x6f, 0x46, 0xff, 0xb5, 0x7c, 0x51, 0xff, 0xbc, 0x84, 0x59, 0xff, 0xc1, 0x8a, 0x5e, 0xff, 0xc5, 0x8d, 0x61, 0xff, 0xca, 0x8f, 0x65, 0xff, 0xd0, 0x93, 0x67, 0xff, 0xcf, 0x93, 0x67, 0xff, 0xc7, 0x8f, 0x63, 0xff, 0xc0, 0x89, 0x5e, 0xff, 0xb9, 0x82, 0x57, 0xff, 0xb3, 0x7a, 0x51, 0xff, 0xac, 0x74, 0x49, 0xff, 0xa5, 0x6a, 0x41, 0xff, 0xa0, 0x62, 0x3a, 0xff, 0x9d, 0x5d, 0x36, 0xff, 0x9a, 0x5a, 0x33, 0xff, 0x98, 0x59, 0x32, 0xff, 0x96, 0x56, 0x30, 0xff, 0x95, 0x56, 0x30, 0xff, 0x97, 0x58, 0x31, 0xff, 0x97, 0x58, 0x31, 0xff, 0x9a, 0x5b, 0x32, 0xff, 0x9c, 0x5f, 0x35, 0xff, 0x9d, 0x61, 0x37, 0xff, 0x9d, 0x61, 0x37, 0xff, 0x9d, 0x5f, 0x35, 0xff, 0x9d, 0x5f, 0x34, 0xff, 0x9e, 0x5f, 0x35, 0xff, 0x9e, 0x5f, 0x35, 0xff, 0x9d, 0x5e, 0x35, 0xff, 0x9d, 0x5f, 0x35, 0xff, 0x9c, 0x5d, 0x35, 0xff, 0x9b, 0x5d, 0x35, 0xff, 0x9c, 0x5d, 0x35, 0xff, 0x94, 0x58, 0x32, 0xff, 0x7d, 0x44, 0x22, 0xff, 0x76, 0x3c, 0x1a, 0xff, 0x79, 0x3e, 0x1c, 0xff, 0x7a, 0x40, 0x1c, 0xff, 0x7d, 0x41, 0x1f, 0xff, 0x80, 0x44, 0x21, 0xff, 0x83, 0x45, 0x22, 0xff, 0x84, 0x47, 0x24, 0xff, 0x87, 0x49, 0x26, 0xff, 0x8a, 0x4b, 0x27, 0xff, 0x8c, 0x4c, 0x2a, 0xff, 0x90, 0x4f, 0x2c, 0xff, 0x93, 0x53, 0x2d, 0xff, 0x96, 0x55, 0x2f, 0xff, 0x9b, 0x5b, 0x32, 0xff, 0xa0, 0x5f, 0x35, 0xff, 0xa1, 0x60, 0x36, 0xff, 0xa5, 0x64, 0x38, 0xff, 0xa9, 0x69, 0x3a, 0xff, 0xad, 0x6d, 0x3d, 0xff, 0xb0, 0x70, 0x40, 0xff, 0xb3, 0x73, 0x43, 0xff, 0xb6, 0x78, 0x45, 0xff, 0xbb, 0x7c, 0x4a, 0xff, 0xbf, 0x7e, 0x4e, 0xff, 0xc4, 0x83, 0x51, 0xff, 0xc0, 0x7f, 0x4c, 0xff, 0xad, 0x6e, 0x40, 0xff, 0xae, 0x6f, 0x41, 0xff, 0xb0, 0x71, 0x41, 0xff, 0xb3, 0x73, 0x43, 0xff, 0xb6, 0x76, 0x45, 0xff, 0xb6, 0x76, 0x45, 0xff, 0xb5, 0x75, 0x44, 0xff, 0xb5, 0x75, 0x45, 0xff, 0xb6, 0x77, 0x47, 0xff, 0xbd, 0x7e, 0x4e, 0xff, 0xb8, 0x79, 0x4b, 0xff, 0x9b, 0x5c, 0x34, 0xff, 0x94, 0x56, 0x2e, 0xff, 0x98, 0x59, 0x31, 0xff, 0x9a, 0x5b, 0x31, 0xff, 0x9b, 0x5e, 0x33, 0xff, 0x9c, 0x60, 0x36, 0xff, 0x9d, 0x62, 0x37, 0xff, 0x9e, 0x63, 0x38, 0xff, 0x9f, 0x65, 0x3a, 0xff, 0xa0, 0x68, 0x3d, 0xff, 0xa0, 0x6b, 0x40, 0xff, 0xa0, 0x6c, 0x43, 0xff, 0xa1, 0x6c, 0x44, 0xff, 0xa0, 0x6c, 0x44, 0xff, 0xa0, 0x6c, 0x44, 0xff, 0xa1, 0x6c, 0x43, 0xff, 0xa1, 0x6b, 0x44, 0xff, 0xa0, 0x6b, 0x43, 0xff, 0xa0, 0x6c, 0x40, 0xff, 0xa1, 0x6c, 0x3c, 0xff, 0xa1, 0x6a, 0x3b, 0xff, 0xa1, 0x6a, 0x3b, 0xff, 0xa0, 0x68, 0x3a, 0xff, 0x9e, 0x68, 0x39, 0xff, 0x9e, 0x67, 0x39, 0xff, 0x9c, 0x64, 0x39, 0xff, 0x9c, 0x65, 0x39, 0xff, 0x9e, 0x68, 0x3a, 0xff, 0x9f, 0x6a, 0x3e, 0xff, 0x9b, 0x65, 0x3e, 0xff, 0xa7, 0x6e, 0x45, 0xff, 0xc2, 0x84, 0x56, 0xff, 0xcc, 0x8d, 0x5b, 0xff, 0xcd, 0x8d, 0x5b, 0xff, 0xcb, 0x8b, 0x58, 0xff, 0xc0, 0x83, 0x53, 0xff, 0xba, 0x80, 0x51, 0xff, 0xbe, 0x84, 0x54, 0xff, 0xcb, 0x8c, 0x5a, 0xff, 0xe0, 0x9b, 0x67, 0xff, 0xe9, 0xb0, 0x77, 0xff, 0xe7, 0xcb, 0x88, 0xff, 0xe2, 0xd6, 0x95, 0xff, 0xe1, 0xd5, 0x9a, 0xff, 0xe4, 0xd7, 0x96, 0xff, 0xe7, 0xc9, 0x8a, 0xff, 0xea, 0xb1, 0x7a, 0xff, 0xdc, 0x9c, 0x6a, 0xff, 0xc4, 0x8a, 0x5d, 0xff, 0xb4, 0x7b, 0x4f, 0xff, 0xaa, 0x6f, 0x44, 0xff, 0xa3, 0x66, 0x3b, 0xff, 0x9d, 0x5f, 0x36, 0xff, 0x98, 0x5a, 0x32, 0xff, 0x96, 0x55, 0x2e, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x91, 0x51, 0x2e, 0xff, 0x8f, 0x4f, 0x2b, 0xff, 0x8d, 0x4d, 0x2a, 0xff, 0x8c, 0x4c, 0x29, 0xff, 0x8d, 0x4c, 0x28, 0xff, 0x8c, 0x4c, 0x28, 0xff, 0x8d, 0x4d, 0x29, 0xff, 0x8e, 0x4e, 0x2b, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x91, 0x51, 0x2e, 0xff, 0x90, 0x53, 0x2f, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x94, 0x54, 0x30, 0xff, 0x92, 0x52, 0x2f, 0xff, 0x8f, 0x51, 0x2e, 0xff, 0x7b, 0x42, 0x20, 0xff, 0x70, 0x3c, 0x18, 0xff, 0x71, 0x39, 0x18, 0xff, 0x72, 0x3a, 0x19, 0xff, 0x73, 0x3b, 0x1a, 0xff, 0x7f, 0x44, 0x23, 0xff, 0x83, 0x46, 0x25, 0xff, 0x80, 0x43, 0x23, 0xff, 0x80, 0x43, 0x23, 0xff, 0x81, 0x44, 0x24, 0xff, 0x81, 0x47, 0x24, 0xff, 0x7b, 0x41, 0x21, 0xff, 0x84, 0x48, 0x28, 0xff, 0x8c, 0x4e, 0x2d, 0xff, 0x95, 0x55, 0x30, 0xff, 0x95, 0x56, 0x30, 0xff, 0x92, 0x53, 0x2e, 0xff, 0x8f, 0x50, 0x2e, 0xff, 0x8d, 0x4e, 0x2d, 0xff, 0x8d, 0x4f, 0x2e, 0xff, 0x8f, 0x4f, 0x2e, 0xff, 0x90, 0x51, 0x2f, 0xff, 0x94, 0x54, 0x31, 0xff, 0x96, 0x58, 0x33, 0xff, 0x95, 0x5b, 0x34, 0xff, 0x96, 0x5c, 0x36, 0xff, 0x8e, 0x53, 0x31, 0xff, 0x8c, 0x4f, 0x2e, 0xff, 0x8e, 0x51, 0x2f, 0xff, 0x8c, 0x4f, 0x2f, 0xff, 0x89, 0x4c, 0x2e, 0xff, 0x8c, 0x50, 0x2f, 0xff, 0x8a, 0x4d, 0x2e, 0xff, 0x89, 0x4c, 0x2d, 0xff, 0x87, 0x4b, 0x2a, 0xff, 0x85, 0x47, 0x28, 0xff, 0x82, 0x46, 0x26, 0xff, 0x7f, 0x43, 0x23, 0xff, 0x7d, 0x43, 0x22, 0xff, 0x7c, 0x42, 0x20, 0xff, 0x7c, 0x42, 0x21, 0xff, 0x7c, 0x40, 0x1f, 0xff, 0x79, 0x41, 0x20, 0xff, 0x7a, 0x40, 0x20, 0xff, 0x7b, 0x41, 0x20, 0xff, 0x81, 0x46, 0x26, 0xff, 0x88, 0x4c, 0x2e, 0xff, 0x8a, 0x4d, 0x2e, 0xff, 0x87, 0x4b, 0x2c, 0xff, 0x87, 0x4a, 0x2c, 0xff, 0x88, 0x4c, 0x2d, 0xff, 0x89, 0x4b, 0x2e, 0xff, 0x8a, 0x4e, 0x2e, 0xff, 0x8b, 0x4f, 0x2e, 0xff, 0x8d, 0x50, 0x2e, 0xff, 0x8e, 0x51, 0x2e, 0xff, 0x8f, 0x52, 0x2e, 0xff, 0x8f, 0x50, 0x2e, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x94, 0x55, 0x30, 0xff, 0x94, 0x55, 0x30, 0xff, 0x95, 0x56, 0x31, 0xff, 0x97, 0x58, 0x31, 0xff, 0x97, 0x59, 0x32, 0xff, 0x9a, 0x5b, 0x33, 0xff, 0x9a, 0x5b, 0x34, 0xff, 0x9c, 0x5d, 0x35, 0xff, 0x9c, 0x5c, 0x35, 0xff, 0x9e, 0x60, 0x35, 0xff, + 0x9c, 0x5d, 0x33, 0xff, 0xae, 0x6f, 0x40, 0xff, 0xb8, 0x78, 0x46, 0xff, 0xb5, 0x75, 0x45, 0xff, 0xb3, 0x75, 0x44, 0xff, 0xb5, 0x75, 0x45, 0xff, 0xb4, 0x74, 0x44, 0xff, 0xb5, 0x75, 0x44, 0xff, 0xb7, 0x77, 0x47, 0xff, 0xb6, 0x78, 0x49, 0xff, 0xb4, 0x75, 0x47, 0xff, 0xb5, 0x76, 0x47, 0xff, 0xb2, 0x72, 0x46, 0xff, 0xaa, 0x6a, 0x40, 0xff, 0xa2, 0x64, 0x3b, 0xff, 0x9b, 0x5c, 0x35, 0xff, 0xa6, 0x6a, 0x40, 0xff, 0xaa, 0x6e, 0x44, 0xff, 0xaf, 0x72, 0x49, 0xff, 0xb3, 0x79, 0x4e, 0xff, 0xb5, 0x7b, 0x50, 0xff, 0xb5, 0x7d, 0x55, 0xff, 0xb9, 0x81, 0x58, 0xff, 0xb8, 0x81, 0x56, 0xff, 0xb7, 0x80, 0x55, 0xff, 0xb5, 0x7d, 0x53, 0xff, 0xb1, 0x78, 0x4e, 0xff, 0xac, 0x72, 0x47, 0xff, 0xa7, 0x6a, 0x42, 0xff, 0xa1, 0x64, 0x3a, 0xff, 0x9e, 0x5f, 0x38, 0xff, 0x9b, 0x5c, 0x35, 0xff, 0x9b, 0x5c, 0x33, 0xff, 0x97, 0x58, 0x30, 0xff, 0x97, 0x58, 0x30, 0xff, 0x99, 0x59, 0x31, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x9b, 0x5b, 0x33, 0xff, 0x9d, 0x5e, 0x34, 0xff, 0x9f, 0x62, 0x36, 0xff, 0x9f, 0x63, 0x37, 0xff, 0xa0, 0x61, 0x36, 0xff, 0xa0, 0x61, 0x35, 0xff, 0xa0, 0x62, 0x36, 0xff, 0x9f, 0x60, 0x36, 0xff, 0xa0, 0x60, 0x37, 0xff, 0x9f, 0x5f, 0x37, 0xff, 0xa0, 0x5f, 0x37, 0xff, 0x9e, 0x5f, 0x36, 0xff, 0x9d, 0x60, 0x38, 0xff, 0x99, 0x5d, 0x36, 0xff, 0x81, 0x45, 0x23, 0xff, 0x7b, 0x40, 0x20, 0xff, 0x7e, 0x42, 0x22, 0xff, 0x7c, 0x42, 0x21, 0xff, 0x7f, 0x42, 0x21, 0xff, 0x7e, 0x42, 0x1f, 0xff, 0x80, 0x43, 0x20, 0xff, 0x83, 0x46, 0x22, 0xff, 0x84, 0x47, 0x23, 0xff, 0x85, 0x48, 0x24, 0xff, 0x88, 0x4b, 0x26, 0xff, 0x8c, 0x4d, 0x2a, 0xff, 0x8f, 0x4e, 0x2c, 0xff, 0x92, 0x51, 0x2d, 0xff, 0x95, 0x55, 0x2f, 0xff, 0x9a, 0x5b, 0x32, 0xff, 0x9e, 0x5e, 0x34, 0xff, 0xa1, 0x60, 0x36, 0xff, 0xa5, 0x64, 0x38, 0xff, 0xa7, 0x67, 0x3a, 0xff, 0xaa, 0x6b, 0x3c, 0xff, 0xae, 0x6f, 0x40, 0xff, 0xb1, 0x73, 0x43, 0xff, 0xb5, 0x77, 0x46, 0xff, 0xb9, 0x7c, 0x4a, 0xff, 0xbe, 0x80, 0x4e, 0xff, 0xbf, 0x80, 0x4d, 0xff, 0xb3, 0x74, 0x44, 0xff, 0xab, 0x6c, 0x3f, 0xff, 0xae, 0x6e, 0x40, 0xff, 0xb0, 0x70, 0x41, 0xff, 0xb2, 0x73, 0x43, 0xff, 0xb5, 0x75, 0x45, 0xff, 0xb6, 0x77, 0x46, 0xff, 0xb5, 0x76, 0x45, 0xff, 0xb4, 0x75, 0x44, 0xff, 0xb6, 0x76, 0x47, 0xff, 0xb8, 0x78, 0x49, 0xff, 0xbd, 0x7e, 0x4e, 0xff, 0xb9, 0x7a, 0x4b, 0xff, 0x9e, 0x60, 0x37, 0xff, 0x94, 0x55, 0x2e, 0xff, 0x9a, 0x5b, 0x32, 0xff, 0x9b, 0x5e, 0x32, 0xff, 0x9c, 0x5f, 0x34, 0xff, 0x9e, 0x62, 0x36, 0xff, 0x9f, 0x65, 0x39, 0xff, 0x9f, 0x67, 0x3a, 0xff, 0xa0, 0x68, 0x3c, 0xff, 0x9f, 0x6a, 0x41, 0xff, 0xa0, 0x6c, 0x44, 0xff, 0xa1, 0x6c, 0x44, 0xff, 0xa1, 0x6c, 0x44, 0xff, 0xa1, 0x6c, 0x44, 0xff, 0xa0, 0x6e, 0x44, 0xff, 0xa1, 0x6e, 0x44, 0xff, 0xa0, 0x6c, 0x43, 0xff, 0xa1, 0x6c, 0x40, 0xff, 0xa2, 0x6d, 0x40, 0xff, 0xa2, 0x6b, 0x3e, 0xff, 0xa1, 0x6b, 0x3e, 0xff, 0xa1, 0x6a, 0x3d, 0xff, 0xa0, 0x68, 0x3a, 0xff, 0x9e, 0x65, 0x39, 0xff, 0x9c, 0x64, 0x39, 0xff, 0x9c, 0x66, 0x39, 0xff, 0x9d, 0x69, 0x3a, 0xff, 0x9f, 0x6a, 0x3d, 0xff, 0x9e, 0x67, 0x3d, 0xff, 0xa1, 0x6b, 0x43, 0xff, 0xbf, 0x81, 0x53, 0xff, 0xd2, 0x8f, 0x5c, 0xff, 0xd0, 0x8f, 0x5a, 0xff, 0xd1, 0x8f, 0x59, 0xff, 0xc7, 0x89, 0x56, 0xff, 0xbb, 0x82, 0x51, 0xff, 0xbd, 0x84, 0x52, 0xff, 0xc5, 0x8a, 0x58, 0xff, 0xd8, 0x94, 0x60, 0xff, 0xe6, 0xa3, 0x6c, 0xff, 0xe9, 0xb9, 0x7d, 0xff, 0xe6, 0xcf, 0x8c, 0xff, 0xe3, 0xd7, 0x94, 0xff, 0xe3, 0xd6, 0x92, 0xff, 0xe7, 0xc9, 0x8a, 0xff, 0xe9, 0xb3, 0x7e, 0xff, 0xe0, 0xa0, 0x6f, 0xff, 0xcb, 0x8f, 0x5f, 0xff, 0xb8, 0x7f, 0x53, 0xff, 0xad, 0x72, 0x48, 0xff, 0xa5, 0x69, 0x3f, 0xff, 0x9f, 0x61, 0x38, 0xff, 0x9b, 0x5b, 0x33, 0xff, 0x96, 0x58, 0x30, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x91, 0x50, 0x2d, 0xff, 0x8f, 0x4d, 0x2b, 0xff, 0x8d, 0x4e, 0x2a, 0xff, 0x8c, 0x4d, 0x2a, 0xff, 0x8c, 0x4c, 0x29, 0xff, 0x8c, 0x4b, 0x29, 0xff, 0x8c, 0x4b, 0x2a, 0xff, 0x8d, 0x4d, 0x2b, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x93, 0x52, 0x2e, 0xff, 0x94, 0x53, 0x2f, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x8f, 0x4f, 0x2d, 0xff, 0x91, 0x51, 0x2f, 0xff, 0x89, 0x4c, 0x29, 0xff, 0x76, 0x3d, 0x1b, 0xff, 0x71, 0x3a, 0x19, 0xff, 0x73, 0x3c, 0x1b, 0xff, 0x7b, 0x41, 0x20, 0xff, 0x80, 0x45, 0x24, 0xff, 0x81, 0x45, 0x23, 0xff, 0x80, 0x43, 0x22, 0xff, 0x7e, 0x42, 0x22, 0xff, 0x80, 0x44, 0x23, 0xff, 0x80, 0x47, 0x25, 0xff, 0x7d, 0x43, 0x23, 0xff, 0x7a, 0x3e, 0x1f, 0xff, 0x80, 0x44, 0x24, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x96, 0x56, 0x30, 0xff, 0x93, 0x55, 0x2f, 0xff, 0x90, 0x53, 0x2e, 0xff, 0x8e, 0x4f, 0x2e, 0xff, 0x8c, 0x4f, 0x2e, 0xff, 0x8e, 0x50, 0x2d, 0xff, 0x8f, 0x51, 0x2e, 0xff, 0x91, 0x53, 0x30, 0xff, 0x95, 0x56, 0x32, 0xff, 0x95, 0x5a, 0x34, 0xff, 0x96, 0x5b, 0x35, 0xff, 0x8d, 0x52, 0x31, 0xff, 0x8d, 0x4f, 0x2f, 0xff, 0x8e, 0x50, 0x30, 0xff, 0x8c, 0x4f, 0x2f, 0xff, 0x8a, 0x4d, 0x2e, 0xff, 0x8d, 0x51, 0x30, 0xff, 0x8a, 0x4e, 0x2e, 0xff, 0x8b, 0x4e, 0x2e, 0xff, 0x88, 0x4b, 0x2b, 0xff, 0x86, 0x49, 0x29, 0xff, 0x83, 0x48, 0x27, 0xff, 0x81, 0x45, 0x26, 0xff, 0x7f, 0x42, 0x23, 0xff, 0x7c, 0x42, 0x21, 0xff, 0x7d, 0x42, 0x21, 0xff, 0x7c, 0x41, 0x20, 0xff, 0x81, 0x47, 0x27, 0xff, 0x85, 0x49, 0x2a, 0xff, 0x87, 0x4b, 0x2d, 0xff, 0x87, 0x4b, 0x2c, 0xff, 0x86, 0x4a, 0x2b, 0xff, 0x86, 0x4a, 0x2b, 0xff, 0x86, 0x49, 0x2a, 0xff, 0x87, 0x4b, 0x2c, 0xff, 0x88, 0x4c, 0x2d, 0xff, 0x8a, 0x4d, 0x2d, 0xff, 0x8b, 0x4e, 0x2e, 0xff, 0x8c, 0x4e, 0x2e, 0xff, 0x8e, 0x4f, 0x2e, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x8c, 0x4e, 0x2d, 0xff, 0x8e, 0x50, 0x2e, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x92, 0x54, 0x2f, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x97, 0x58, 0x31, 0xff, 0x99, 0x59, 0x32, 0xff, 0x9a, 0x5a, 0x33, 0xff, 0x9b, 0x5d, 0x34, 0xff, 0x9c, 0x5d, 0x35, 0xff, 0x9d, 0x5e, 0x35, 0xff, 0x9d, 0x5d, 0x35, 0xff, 0x9c, 0x5d, 0x34, 0xff, + 0x9f, 0x60, 0x36, 0xff, 0xa0, 0x60, 0x35, 0xff, 0xb1, 0x72, 0x44, 0xff, 0xba, 0x7b, 0x48, 0xff, 0xb5, 0x74, 0x44, 0xff, 0xb8, 0x78, 0x46, 0xff, 0xba, 0x79, 0x49, 0xff, 0xba, 0x79, 0x48, 0xff, 0xba, 0x7a, 0x48, 0xff, 0xb9, 0x79, 0x49, 0xff, 0xb8, 0x79, 0x49, 0xff, 0xb6, 0x78, 0x49, 0xff, 0xb5, 0x77, 0x49, 0xff, 0xb4, 0x75, 0x49, 0xff, 0xb3, 0x75, 0x48, 0xff, 0xb4, 0x75, 0x49, 0xff, 0xa6, 0x68, 0x3e, 0xff, 0xa2, 0x63, 0x3c, 0xff, 0xa6, 0x67, 0x3e, 0xff, 0xa8, 0x6a, 0x41, 0xff, 0xaa, 0x6e, 0x44, 0xff, 0xac, 0x72, 0x47, 0xff, 0xad, 0x72, 0x49, 0xff, 0xac, 0x71, 0x47, 0xff, 0xab, 0x71, 0x47, 0xff, 0xaa, 0x70, 0x46, 0xff, 0xa9, 0x6e, 0x43, 0xff, 0xa5, 0x68, 0x3f, 0xff, 0xa3, 0x65, 0x3a, 0xff, 0xa1, 0x61, 0x39, 0xff, 0x9d, 0x5e, 0x36, 0xff, 0x9d, 0x5d, 0x35, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x98, 0x59, 0x32, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x9b, 0x5a, 0x33, 0xff, 0x9c, 0x5d, 0x33, 0xff, 0x9e, 0x5e, 0x34, 0xff, 0xa1, 0x60, 0x36, 0xff, 0xa2, 0x63, 0x37, 0xff, 0xa1, 0x62, 0x37, 0xff, 0xa2, 0x61, 0x37, 0xff, 0xa1, 0x63, 0x37, 0xff, 0xa1, 0x60, 0x36, 0xff, 0xa1, 0x63, 0x37, 0xff, 0xa1, 0x62, 0x38, 0xff, 0xa1, 0x63, 0x39, 0xff, 0xa0, 0x60, 0x37, 0xff, 0xa0, 0x63, 0x39, 0xff, 0x96, 0x59, 0x34, 0xff, 0x7f, 0x41, 0x21, 0xff, 0x7c, 0x40, 0x1e, 0xff, 0x7b, 0x3e, 0x1d, 0xff, 0x7c, 0x41, 0x20, 0xff, 0x7f, 0x41, 0x20, 0xff, 0x81, 0x43, 0x22, 0xff, 0x81, 0x45, 0x23, 0xff, 0x82, 0x46, 0x23, 0xff, 0x84, 0x46, 0x24, 0xff, 0x83, 0x47, 0x24, 0xff, 0x85, 0x47, 0x24, 0xff, 0x88, 0x49, 0x25, 0xff, 0x8b, 0x4b, 0x28, 0xff, 0x8e, 0x4e, 0x2b, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x96, 0x56, 0x2e, 0xff, 0x9b, 0x5b, 0x31, 0xff, 0x9e, 0x5e, 0x33, 0xff, 0xa0, 0x5e, 0x35, 0xff, 0xa4, 0x62, 0x37, 0xff, 0xa6, 0x67, 0x3a, 0xff, 0xa9, 0x6a, 0x3c, 0xff, 0xac, 0x6c, 0x3f, 0xff, 0xaf, 0x71, 0x43, 0xff, 0xb4, 0x76, 0x48, 0xff, 0xb9, 0x7a, 0x4b, 0xff, 0xbc, 0x7f, 0x4c, 0xff, 0xb9, 0x7c, 0x4b, 0xff, 0xaa, 0x6e, 0x42, 0xff, 0xab, 0x6e, 0x40, 0xff, 0xae, 0x6f, 0x41, 0xff, 0xb0, 0x70, 0x41, 0xff, 0xb1, 0x71, 0x41, 0xff, 0xb3, 0x72, 0x42, 0xff, 0xb5, 0x73, 0x43, 0xff, 0xb4, 0x74, 0x43, 0xff, 0xb3, 0x73, 0x43, 0xff, 0xb5, 0x74, 0x45, 0xff, 0xb7, 0x76, 0x47, 0xff, 0xb8, 0x79, 0x4a, 0xff, 0xbb, 0x7d, 0x4d, 0xff, 0xb2, 0x74, 0x45, 0xff, 0x9b, 0x5d, 0x33, 0xff, 0x98, 0x5a, 0x30, 0xff, 0x9a, 0x5d, 0x33, 0xff, 0x9c, 0x60, 0x34, 0xff, 0x9e, 0x61, 0x35, 0xff, 0xa0, 0x64, 0x37, 0xff, 0xa0, 0x67, 0x3a, 0xff, 0xa0, 0x6a, 0x3c, 0xff, 0xa1, 0x6a, 0x40, 0xff, 0xa0, 0x6b, 0x43, 0xff, 0xa0, 0x6d, 0x44, 0xff, 0xa1, 0x6d, 0x44, 0xff, 0xa1, 0x6f, 0x45, 0xff, 0xa1, 0x6e, 0x45, 0xff, 0x9f, 0x6d, 0x43, 0xff, 0x9f, 0x6e, 0x43, 0xff, 0xa0, 0x6d, 0x41, 0xff, 0xa0, 0x6b, 0x3f, 0xff, 0xa1, 0x6c, 0x3f, 0xff, 0xa1, 0x6d, 0x40, 0xff, 0xa1, 0x6b, 0x3d, 0xff, 0xa0, 0x68, 0x3a, 0xff, 0x9d, 0x65, 0x38, 0xff, 0x9b, 0x63, 0x38, 0xff, 0x9c, 0x65, 0x39, 0xff, 0x9e, 0x67, 0x39, 0xff, 0x9f, 0x69, 0x3c, 0xff, 0xa0, 0x6a, 0x3f, 0xff, 0x98, 0x5f, 0x38, 0xff, 0xb5, 0x78, 0x49, 0xff, 0xdc, 0x96, 0x5f, 0xff, 0xd9, 0x91, 0x5c, 0xff, 0xd3, 0x8d, 0x59, 0xff, 0xd0, 0x8e, 0x59, 0xff, 0xc4, 0x89, 0x55, 0xff, 0xbc, 0x82, 0x50, 0xff, 0xc3, 0x85, 0x54, 0xff, 0xd2, 0x8e, 0x5b, 0xff, 0xe1, 0x9a, 0x65, 0xff, 0xe8, 0xa8, 0x71, 0xff, 0xe8, 0xba, 0x7f, 0xff, 0xe7, 0xca, 0x89, 0xff, 0xe8, 0xcd, 0x8b, 0xff, 0xe8, 0xc1, 0x83, 0xff, 0xe9, 0xb1, 0x7b, 0xff, 0xe4, 0xa0, 0x6f, 0xff, 0xcd, 0x90, 0x61, 0xff, 0xba, 0x81, 0x55, 0xff, 0xaf, 0x75, 0x4a, 0xff, 0xa7, 0x6d, 0x40, 0xff, 0xa3, 0x65, 0x3a, 0xff, 0x9d, 0x5f, 0x36, 0xff, 0x98, 0x59, 0x31, 0xff, 0x95, 0x54, 0x2f, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x8e, 0x4e, 0x2b, 0xff, 0x8c, 0x4d, 0x2a, 0xff, 0x8d, 0x4c, 0x2a, 0xff, 0x8c, 0x4d, 0x2a, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x8e, 0x4d, 0x2c, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x94, 0x53, 0x2f, 0xff, 0x94, 0x54, 0x30, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x8e, 0x4e, 0x2d, 0xff, 0x8e, 0x4f, 0x2e, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x7d, 0x44, 0x23, 0xff, 0x71, 0x39, 0x18, 0xff, 0x7a, 0x40, 0x1f, 0xff, 0x7f, 0x43, 0x23, 0xff, 0x82, 0x45, 0x24, 0xff, 0x80, 0x45, 0x23, 0xff, 0x7d, 0x42, 0x20, 0xff, 0x7c, 0x42, 0x21, 0xff, 0x80, 0x43, 0x23, 0xff, 0x81, 0x47, 0x24, 0xff, 0x7e, 0x44, 0x23, 0xff, 0x7c, 0x41, 0x20, 0xff, 0x7a, 0x3f, 0x1f, 0xff, 0x84, 0x48, 0x26, 0xff, 0x94, 0x57, 0x31, 0xff, 0x94, 0x55, 0x31, 0xff, 0x91, 0x51, 0x2f, 0xff, 0x8f, 0x50, 0x2e, 0xff, 0x8e, 0x4f, 0x2e, 0xff, 0x8e, 0x50, 0x2e, 0xff, 0x8f, 0x50, 0x2e, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x94, 0x54, 0x30, 0xff, 0x94, 0x56, 0x32, 0xff, 0x95, 0x5a, 0x35, 0xff, 0x8e, 0x53, 0x31, 0xff, 0x8c, 0x4e, 0x2e, 0xff, 0x8d, 0x4f, 0x2e, 0xff, 0x8d, 0x51, 0x30, 0xff, 0x8a, 0x4d, 0x2e, 0xff, 0x8d, 0x4f, 0x30, 0xff, 0x8e, 0x52, 0x30, 0xff, 0x8c, 0x50, 0x2e, 0xff, 0x8a, 0x4c, 0x2d, 0xff, 0x88, 0x4b, 0x2b, 0xff, 0x86, 0x48, 0x29, 0xff, 0x83, 0x47, 0x26, 0xff, 0x81, 0x45, 0x26, 0xff, 0x7d, 0x42, 0x21, 0xff, 0x82, 0x47, 0x27, 0xff, 0x87, 0x4b, 0x2c, 0xff, 0x88, 0x4b, 0x2d, 0xff, 0x86, 0x4b, 0x2c, 0xff, 0x86, 0x49, 0x2b, 0xff, 0x86, 0x49, 0x2a, 0xff, 0x87, 0x49, 0x2a, 0xff, 0x85, 0x49, 0x2a, 0xff, 0x87, 0x4b, 0x2b, 0xff, 0x88, 0x4b, 0x2d, 0xff, 0x8a, 0x4d, 0x2d, 0xff, 0x8a, 0x4d, 0x2d, 0xff, 0x8c, 0x4e, 0x2d, 0xff, 0x8d, 0x4f, 0x2e, 0xff, 0x8c, 0x4d, 0x2c, 0xff, 0x8d, 0x4e, 0x2c, 0xff, 0x8e, 0x4e, 0x2d, 0xff, 0x8d, 0x50, 0x2d, 0xff, 0x8e, 0x51, 0x2e, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x94, 0x56, 0x30, 0xff, 0x96, 0x56, 0x30, 0xff, 0x97, 0x59, 0x32, 0xff, 0x99, 0x58, 0x32, 0xff, 0x9b, 0x5b, 0x32, 0xff, 0x9b, 0x5c, 0x33, 0xff, 0x9b, 0x5c, 0x34, 0xff, 0x9d, 0x5e, 0x34, 0xff, 0x9d, 0x5e, 0x34, 0xff, 0x9d, 0x5d, 0x35, 0xff, 0x9e, 0x5e, 0x35, 0xff, + 0x9d, 0x5e, 0x34, 0xff, 0x9f, 0x5e, 0x35, 0xff, 0x9d, 0x5d, 0x32, 0xff, 0xb4, 0x75, 0x48, 0xff, 0xc4, 0x81, 0x4f, 0xff, 0xbe, 0x7d, 0x4c, 0xff, 0xbc, 0x7d, 0x4a, 0xff, 0xbe, 0x7f, 0x4b, 0xff, 0xbe, 0x7e, 0x4b, 0xff, 0xbe, 0x7d, 0x49, 0xff, 0xbe, 0x7c, 0x4b, 0xff, 0xbb, 0x7a, 0x49, 0xff, 0xba, 0x7a, 0x49, 0xff, 0xb8, 0x79, 0x4a, 0xff, 0xbb, 0x7d, 0x4d, 0xff, 0xb9, 0x79, 0x4a, 0xff, 0xba, 0x7b, 0x4e, 0xff, 0xae, 0x6e, 0x43, 0xff, 0xa3, 0x65, 0x3b, 0xff, 0xa2, 0x63, 0x39, 0xff, 0xa4, 0x65, 0x3c, 0xff, 0xa6, 0x68, 0x3f, 0xff, 0xa7, 0x6a, 0x3f, 0xff, 0xa6, 0x69, 0x3e, 0xff, 0xa4, 0x69, 0x3e, 0xff, 0xa3, 0x66, 0x3d, 0xff, 0xa3, 0x63, 0x39, 0xff, 0xa1, 0x62, 0x39, 0xff, 0x9f, 0x60, 0x38, 0xff, 0x9f, 0x5f, 0x37, 0xff, 0x9f, 0x60, 0x36, 0xff, 0x9d, 0x5d, 0x34, 0xff, 0x9d, 0x5d, 0x34, 0xff, 0x9d, 0x5d, 0x34, 0xff, 0x9e, 0x5e, 0x34, 0xff, 0x9f, 0x5e, 0x35, 0xff, 0xa1, 0x60, 0x35, 0xff, 0xa2, 0x63, 0x38, 0xff, 0xa4, 0x65, 0x39, 0xff, 0xa3, 0x65, 0x3a, 0xff, 0xa3, 0x65, 0x39, 0xff, 0xa2, 0x63, 0x38, 0xff, 0xa2, 0x63, 0x38, 0xff, 0xa3, 0x65, 0x39, 0xff, 0xa3, 0x64, 0x39, 0xff, 0xa2, 0x64, 0x39, 0xff, 0xa2, 0x63, 0x39, 0xff, 0xa0, 0x62, 0x38, 0xff, 0x90, 0x55, 0x2f, 0xff, 0x78, 0x3e, 0x1d, 0xff, 0x7e, 0x41, 0x1f, 0xff, 0x7c, 0x42, 0x20, 0xff, 0x7a, 0x40, 0x1d, 0xff, 0x7b, 0x41, 0x1e, 0xff, 0x7c, 0x43, 0x20, 0xff, 0x7f, 0x41, 0x20, 0xff, 0x82, 0x45, 0x22, 0xff, 0x84, 0x46, 0x24, 0xff, 0x86, 0x49, 0x27, 0xff, 0x87, 0x49, 0x27, 0xff, 0x85, 0x47, 0x25, 0xff, 0x87, 0x49, 0x26, 0xff, 0x8a, 0x4c, 0x28, 0xff, 0x8e, 0x4e, 0x2b, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x95, 0x54, 0x2f, 0xff, 0x99, 0x58, 0x31, 0xff, 0x9c, 0x5d, 0x33, 0xff, 0x9f, 0x5f, 0x35, 0xff, 0xa2, 0x62, 0x37, 0xff, 0xa5, 0x66, 0x38, 0xff, 0xa7, 0x69, 0x3a, 0xff, 0xab, 0x6d, 0x3e, 0xff, 0xae, 0x71, 0x43, 0xff, 0xb2, 0x75, 0x47, 0xff, 0xb7, 0x78, 0x4a, 0xff, 0xb9, 0x7a, 0x4b, 0xff, 0xb1, 0x73, 0x47, 0xff, 0xa8, 0x6a, 0x40, 0xff, 0xab, 0x6d, 0x41, 0xff, 0xad, 0x6f, 0x40, 0xff, 0xaf, 0x70, 0x41, 0xff, 0xaf, 0x70, 0x41, 0xff, 0xb2, 0x71, 0x42, 0xff, 0xb2, 0x73, 0x42, 0xff, 0xb2, 0x74, 0x42, 0xff, 0xb1, 0x71, 0x42, 0xff, 0xb3, 0x71, 0x43, 0xff, 0xb4, 0x75, 0x45, 0xff, 0xb6, 0x77, 0x48, 0xff, 0xba, 0x7b, 0x4c, 0xff, 0xbd, 0x7e, 0x4e, 0xff, 0xaf, 0x70, 0x42, 0xff, 0x98, 0x59, 0x30, 0xff, 0x9b, 0x5c, 0x32, 0xff, 0x9c, 0x5f, 0x34, 0xff, 0x9e, 0x61, 0x34, 0xff, 0xa0, 0x64, 0x35, 0xff, 0xa0, 0x67, 0x39, 0xff, 0xa0, 0x69, 0x3d, 0xff, 0xa1, 0x69, 0x3f, 0xff, 0xa0, 0x6a, 0x42, 0xff, 0xa1, 0x6d, 0x44, 0xff, 0xa0, 0x6d, 0x44, 0xff, 0xa1, 0x6d, 0x44, 0xff, 0xa0, 0x6f, 0x44, 0xff, 0xa1, 0x6f, 0x45, 0xff, 0xa0, 0x6d, 0x43, 0xff, 0xa0, 0x6c, 0x40, 0xff, 0xa0, 0x6c, 0x40, 0xff, 0xa1, 0x6d, 0x40, 0xff, 0xa2, 0x6c, 0x3f, 0xff, 0xa0, 0x6a, 0x3c, 0xff, 0x9f, 0x66, 0x3a, 0xff, 0x9c, 0x63, 0x38, 0xff, 0x9b, 0x63, 0x37, 0xff, 0x9b, 0x63, 0x38, 0xff, 0x9c, 0x65, 0x3a, 0xff, 0x9e, 0x67, 0x3b, 0xff, 0x9f, 0x66, 0x3b, 0xff, 0x9d, 0x63, 0x39, 0xff, 0xa0, 0x67, 0x3c, 0xff, 0xcd, 0x89, 0x58, 0xff, 0xe3, 0x99, 0x62, 0xff, 0xd6, 0x8f, 0x59, 0xff, 0xd2, 0x8e, 0x58, 0xff, 0xd0, 0x8e, 0x57, 0xff, 0xc9, 0x88, 0x54, 0xff, 0xc5, 0x86, 0x52, 0xff, 0xcd, 0x8a, 0x57, 0xff, 0xd7, 0x92, 0x5e, 0xff, 0xe2, 0x9c, 0x66, 0xff, 0xe8, 0xa7, 0x71, 0xff, 0xe9, 0xb2, 0x79, 0xff, 0xe9, 0xb8, 0x7e, 0xff, 0xe8, 0xb5, 0x7e, 0xff, 0xe9, 0xac, 0x77, 0xff, 0xe3, 0x9e, 0x6d, 0xff, 0xcf, 0x8f, 0x60, 0xff, 0xbc, 0x82, 0x55, 0xff, 0xb2, 0x77, 0x4c, 0xff, 0xaa, 0x6e, 0x42, 0xff, 0xa3, 0x66, 0x3a, 0xff, 0x9e, 0x5f, 0x36, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x96, 0x56, 0x30, 0xff, 0x94, 0x53, 0x2e, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x8e, 0x4e, 0x2c, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8d, 0x4d, 0x2a, 0xff, 0x8d, 0x4d, 0x2b, 0xff, 0x8e, 0x4e, 0x2d, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x92, 0x53, 0x2e, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x95, 0x55, 0x2e, 0xff, 0x93, 0x52, 0x2e, 0xff, 0x8d, 0x4d, 0x2c, 0xff, 0x8c, 0x4d, 0x2d, 0xff, 0x8e, 0x4e, 0x2d, 0xff, 0x90, 0x51, 0x30, 0xff, 0x81, 0x46, 0x24, 0xff, 0x7d, 0x43, 0x22, 0xff, 0x7e, 0x42, 0x22, 0xff, 0x80, 0x44, 0x23, 0xff, 0x80, 0x43, 0x23, 0xff, 0x7c, 0x42, 0x1d, 0xff, 0x79, 0x40, 0x1c, 0xff, 0x7b, 0x40, 0x1e, 0xff, 0x7d, 0x41, 0x21, 0xff, 0x7e, 0x43, 0x23, 0xff, 0x7d, 0x43, 0x22, 0xff, 0x7c, 0x41, 0x20, 0xff, 0x7a, 0x40, 0x1f, 0xff, 0x7d, 0x43, 0x20, 0xff, 0x8f, 0x51, 0x2e, 0xff, 0x94, 0x54, 0x30, 0xff, 0x93, 0x53, 0x30, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x8f, 0x51, 0x2e, 0xff, 0x8e, 0x50, 0x2e, 0xff, 0x8f, 0x51, 0x2e, 0xff, 0x91, 0x53, 0x30, 0xff, 0x93, 0x54, 0x31, 0xff, 0x96, 0x56, 0x32, 0xff, 0x96, 0x59, 0x35, 0xff, 0x8f, 0x52, 0x31, 0xff, 0x8d, 0x51, 0x2e, 0xff, 0x8d, 0x4f, 0x2f, 0xff, 0x8c, 0x50, 0x30, 0xff, 0x89, 0x4c, 0x2e, 0xff, 0x8e, 0x51, 0x30, 0xff, 0x91, 0x53, 0x31, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8c, 0x4f, 0x2e, 0xff, 0x8a, 0x4d, 0x2d, 0xff, 0x87, 0x4a, 0x2b, 0xff, 0x85, 0x48, 0x29, 0xff, 0x83, 0x47, 0x27, 0xff, 0x87, 0x4b, 0x2b, 0xff, 0x88, 0x4c, 0x2d, 0xff, 0x88, 0x4a, 0x2c, 0xff, 0x86, 0x4a, 0x2c, 0xff, 0x87, 0x4a, 0x2c, 0xff, 0x87, 0x49, 0x2b, 0xff, 0x87, 0x49, 0x2a, 0xff, 0x85, 0x49, 0x2a, 0xff, 0x86, 0x4a, 0x2a, 0xff, 0x87, 0x4b, 0x2c, 0xff, 0x8a, 0x4c, 0x2c, 0xff, 0x89, 0x4b, 0x2c, 0xff, 0x8a, 0x4b, 0x2c, 0xff, 0x8b, 0x4c, 0x2d, 0xff, 0x8b, 0x4e, 0x2c, 0xff, 0x8a, 0x4d, 0x2a, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8d, 0x50, 0x2d, 0xff, 0x8f, 0x51, 0x2f, 0xff, 0x93, 0x55, 0x30, 0xff, 0x93, 0x55, 0x30, 0xff, 0x94, 0x56, 0x30, 0xff, 0x96, 0x57, 0x30, 0xff, 0x96, 0x56, 0x30, 0xff, 0x96, 0x56, 0x30, 0xff, 0x96, 0x57, 0x30, 0xff, 0x98, 0x58, 0x30, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x9c, 0x5c, 0x33, 0xff, 0x9b, 0x5c, 0x34, 0xff, 0x9b, 0x5c, 0x34, 0xff, 0x9d, 0x5d, 0x35, 0xff, + 0x9a, 0x5b, 0x32, 0xff, 0x9c, 0x5c, 0x34, 0xff, 0x9f, 0x5f, 0x34, 0xff, 0x9f, 0x5e, 0x34, 0xff, 0xa8, 0x67, 0x3a, 0xff, 0xc1, 0x7d, 0x4b, 0xff, 0xcc, 0x87, 0x53, 0xff, 0xc4, 0x82, 0x4e, 0xff, 0xc3, 0x81, 0x4d, 0xff, 0xc3, 0x80, 0x4b, 0xff, 0xc3, 0x81, 0x4d, 0xff, 0xc1, 0x7f, 0x4c, 0xff, 0xbf, 0x7d, 0x4b, 0xff, 0xc2, 0x81, 0x4f, 0xff, 0xc2, 0x81, 0x4e, 0xff, 0xc0, 0x7f, 0x4e, 0xff, 0xbc, 0x7d, 0x4d, 0xff, 0xba, 0x7b, 0x4c, 0xff, 0xb9, 0x7a, 0x4d, 0xff, 0xab, 0x6c, 0x41, 0xff, 0xa5, 0x65, 0x3a, 0xff, 0xa3, 0x65, 0x39, 0xff, 0xa7, 0x67, 0x3b, 0xff, 0xa7, 0x67, 0x3b, 0xff, 0xa5, 0x65, 0x3a, 0xff, 0xa2, 0x63, 0x39, 0xff, 0xa1, 0x62, 0x39, 0xff, 0xa1, 0x61, 0x38, 0xff, 0xa1, 0x61, 0x38, 0xff, 0xa1, 0x60, 0x39, 0xff, 0xa0, 0x60, 0x37, 0xff, 0xa0, 0x60, 0x37, 0xff, 0xa1, 0x61, 0x37, 0xff, 0xa1, 0x62, 0x36, 0xff, 0xa3, 0x63, 0x37, 0xff, 0xa5, 0x64, 0x39, 0xff, 0xa6, 0x67, 0x3b, 0xff, 0xa6, 0x69, 0x3c, 0xff, 0xa6, 0x69, 0x3d, 0xff, 0xa6, 0x68, 0x3d, 0xff, 0xa6, 0x66, 0x39, 0xff, 0xa5, 0x67, 0x39, 0xff, 0xa5, 0x66, 0x3a, 0xff, 0xa4, 0x67, 0x3b, 0xff, 0xa4, 0x68, 0x3a, 0xff, 0xa5, 0x67, 0x3c, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x87, 0x4d, 0x29, 0xff, 0x72, 0x39, 0x16, 0xff, 0x7a, 0x3e, 0x1c, 0xff, 0x7b, 0x40, 0x1d, 0xff, 0x7a, 0x42, 0x1e, 0xff, 0x78, 0x40, 0x1d, 0xff, 0x7a, 0x40, 0x1d, 0xff, 0x7c, 0x42, 0x1f, 0xff, 0x7e, 0x41, 0x21, 0xff, 0x80, 0x43, 0x21, 0xff, 0x83, 0x46, 0x22, 0xff, 0x85, 0x47, 0x25, 0xff, 0x87, 0x49, 0x27, 0xff, 0x87, 0x4a, 0x27, 0xff, 0x87, 0x48, 0x25, 0xff, 0x8a, 0x4b, 0x28, 0xff, 0x8d, 0x4d, 0x2a, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x94, 0x53, 0x2e, 0xff, 0x98, 0x58, 0x30, 0xff, 0x9b, 0x5b, 0x32, 0xff, 0x9e, 0x5e, 0x34, 0xff, 0xa2, 0x61, 0x36, 0xff, 0xa4, 0x66, 0x38, 0xff, 0xa7, 0x69, 0x3a, 0xff, 0xaa, 0x6c, 0x3e, 0xff, 0xad, 0x6f, 0x42, 0xff, 0xb1, 0x74, 0x46, 0xff, 0xb5, 0x78, 0x4a, 0xff, 0xb6, 0x78, 0x4a, 0xff, 0xa8, 0x6c, 0x41, 0xff, 0xa6, 0x6a, 0x40, 0xff, 0xa9, 0x6d, 0x41, 0xff, 0xab, 0x6e, 0x40, 0xff, 0xad, 0x6f, 0x40, 0xff, 0xae, 0x6f, 0x40, 0xff, 0xb1, 0x70, 0x42, 0xff, 0xb0, 0x70, 0x41, 0xff, 0xaf, 0x6f, 0x40, 0xff, 0xb0, 0x71, 0x41, 0xff, 0xb1, 0x71, 0x42, 0xff, 0xb2, 0x71, 0x43, 0xff, 0xb4, 0x75, 0x45, 0xff, 0xb6, 0x77, 0x47, 0xff, 0xbb, 0x7b, 0x4b, 0xff, 0xbc, 0x7b, 0x4c, 0xff, 0xaa, 0x6a, 0x3d, 0xff, 0x99, 0x5a, 0x2f, 0xff, 0x9c, 0x5f, 0x33, 0xff, 0x9e, 0x61, 0x34, 0xff, 0x9f, 0x63, 0x36, 0xff, 0xa1, 0x66, 0x38, 0xff, 0xa1, 0x68, 0x3b, 0xff, 0xa0, 0x6a, 0x3f, 0xff, 0xa0, 0x6a, 0x40, 0xff, 0xa0, 0x6a, 0x41, 0xff, 0xa1, 0x6e, 0x44, 0xff, 0xa0, 0x6e, 0x44, 0xff, 0xa1, 0x6f, 0x44, 0xff, 0xa1, 0x6e, 0x44, 0xff, 0xa1, 0x6d, 0x42, 0xff, 0xa0, 0x6d, 0x40, 0xff, 0xa0, 0x6c, 0x3f, 0xff, 0xa0, 0x6c, 0x40, 0xff, 0xa1, 0x6c, 0x3e, 0xff, 0xa1, 0x6a, 0x3d, 0xff, 0x9f, 0x67, 0x3a, 0xff, 0x9c, 0x63, 0x37, 0xff, 0x9b, 0x62, 0x37, 0xff, 0x9b, 0x63, 0x38, 0xff, 0x9b, 0x65, 0x39, 0xff, 0x9c, 0x63, 0x38, 0xff, 0x9e, 0x62, 0x38, 0xff, 0x9f, 0x63, 0x39, 0xff, 0x99, 0x5e, 0x35, 0xff, 0xbb, 0x80, 0x51, 0xff, 0xe3, 0x9e, 0x66, 0xff, 0xe6, 0x97, 0x5e, 0xff, 0xde, 0x93, 0x5b, 0xff, 0xdb, 0x92, 0x5a, 0xff, 0xd8, 0x8f, 0x58, 0xff, 0xc9, 0x87, 0x53, 0xff, 0xc3, 0x84, 0x51, 0xff, 0xc8, 0x8a, 0x55, 0xff, 0xd3, 0x91, 0x5d, 0xff, 0xdf, 0x9a, 0x67, 0xff, 0xe7, 0xa2, 0x6f, 0xff, 0xe9, 0xa7, 0x73, 0xff, 0xe9, 0xa8, 0x74, 0xff, 0xe8, 0xa4, 0x70, 0xff, 0xde, 0x9a, 0x67, 0xff, 0xca, 0x8d, 0x5e, 0xff, 0xba, 0x81, 0x54, 0xff, 0xb0, 0x76, 0x4a, 0xff, 0xa9, 0x6e, 0x42, 0xff, 0xa3, 0x66, 0x3b, 0xff, 0x9f, 0x60, 0x36, 0xff, 0x9b, 0x5c, 0x33, 0xff, 0x97, 0x58, 0x31, 0xff, 0x95, 0x56, 0x2f, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x91, 0x51, 0x2e, 0xff, 0x8f, 0x4f, 0x2d, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8f, 0x4e, 0x2c, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x8f, 0x4f, 0x2d, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x91, 0x51, 0x2e, 0xff, 0x93, 0x52, 0x2e, 0xff, 0x95, 0x55, 0x30, 0xff, 0x94, 0x55, 0x2f, 0xff, 0x8f, 0x50, 0x2c, 0xff, 0x8d, 0x4e, 0x2c, 0xff, 0x8d, 0x4e, 0x2d, 0xff, 0x8d, 0x4e, 0x2d, 0xff, 0x8c, 0x4d, 0x2d, 0xff, 0x95, 0x55, 0x33, 0xff, 0x86, 0x48, 0x28, 0xff, 0x7d, 0x42, 0x20, 0xff, 0x7d, 0x41, 0x21, 0xff, 0x7d, 0x42, 0x22, 0xff, 0x7c, 0x41, 0x20, 0xff, 0x7b, 0x41, 0x20, 0xff, 0x7b, 0x40, 0x20, 0xff, 0x7d, 0x42, 0x21, 0xff, 0x7d, 0x42, 0x21, 0xff, 0x7c, 0x42, 0x20, 0xff, 0x7c, 0x41, 0x20, 0xff, 0x7a, 0x3f, 0x1e, 0xff, 0x7b, 0x40, 0x1f, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x90, 0x53, 0x30, 0xff, 0x90, 0x51, 0x2f, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x92, 0x52, 0x2f, 0xff, 0x91, 0x51, 0x2e, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x92, 0x53, 0x30, 0xff, 0x94, 0x55, 0x30, 0xff, 0x94, 0x57, 0x32, 0xff, 0x96, 0x59, 0x34, 0xff, 0x91, 0x54, 0x32, 0xff, 0x8e, 0x52, 0x30, 0xff, 0x8e, 0x51, 0x30, 0xff, 0x8e, 0x51, 0x30, 0xff, 0x8b, 0x4e, 0x2f, 0xff, 0x91, 0x54, 0x31, 0xff, 0x93, 0x55, 0x31, 0xff, 0x90, 0x54, 0x30, 0xff, 0x8e, 0x51, 0x2e, 0xff, 0x8c, 0x4f, 0x2e, 0xff, 0x89, 0x4c, 0x2d, 0xff, 0x88, 0x4b, 0x2c, 0xff, 0x89, 0x4c, 0x2e, 0xff, 0x88, 0x4a, 0x2c, 0xff, 0x86, 0x4a, 0x2c, 0xff, 0x87, 0x4a, 0x2c, 0xff, 0x86, 0x4b, 0x2c, 0xff, 0x86, 0x4a, 0x2b, 0xff, 0x87, 0x4a, 0x2a, 0xff, 0x86, 0x4a, 0x29, 0xff, 0x86, 0x4a, 0x29, 0xff, 0x87, 0x4a, 0x29, 0xff, 0x86, 0x48, 0x29, 0xff, 0x88, 0x4a, 0x2a, 0xff, 0x88, 0x4a, 0x2a, 0xff, 0x89, 0x4a, 0x2b, 0xff, 0x8a, 0x4b, 0x2a, 0xff, 0x8a, 0x4c, 0x2c, 0xff, 0x8b, 0x4e, 0x2c, 0xff, 0x8d, 0x50, 0x2e, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x91, 0x54, 0x2f, 0xff, 0x92, 0x53, 0x30, 0xff, 0x93, 0x54, 0x30, 0xff, 0x94, 0x54, 0x30, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x94, 0x53, 0x30, 0xff, 0x95, 0x55, 0x30, 0xff, 0x94, 0x55, 0x30, 0xff, 0x96, 0x55, 0x30, 0xff, 0x98, 0x58, 0x32, 0xff, 0x9a, 0x5b, 0x33, 0xff, 0x9b, 0x5c, 0x33, 0xff, 0x9b, 0x5b, 0x33, 0xff, 0x9a, 0x5a, 0x32, 0xff, + 0x9a, 0x5b, 0x32, 0xff, 0x9a, 0x5a, 0x32, 0xff, 0x9d, 0x5d, 0x33, 0xff, 0x9e, 0x5e, 0x35, 0xff, 0xa1, 0x62, 0x37, 0xff, 0xa4, 0x65, 0x39, 0xff, 0xb9, 0x77, 0x46, 0xff, 0xce, 0x8b, 0x55, 0xff, 0xd2, 0x89, 0x54, 0xff, 0xc6, 0x82, 0x4f, 0xff, 0xc5, 0x81, 0x4d, 0xff, 0xc4, 0x81, 0x4e, 0xff, 0xc3, 0x81, 0x4f, 0xff, 0xc7, 0x84, 0x50, 0xff, 0xc5, 0x82, 0x4f, 0xff, 0xc5, 0x82, 0x4f, 0xff, 0xc3, 0x81, 0x4f, 0xff, 0xc1, 0x80, 0x4e, 0xff, 0xbe, 0x7d, 0x4e, 0xff, 0xbd, 0x7f, 0x4e, 0xff, 0xb7, 0x78, 0x4a, 0xff, 0xa9, 0x6a, 0x3e, 0xff, 0xa5, 0x64, 0x39, 0xff, 0xa7, 0x68, 0x3b, 0xff, 0xa8, 0x68, 0x3c, 0xff, 0xa5, 0x67, 0x3b, 0xff, 0xa4, 0x65, 0x3b, 0xff, 0xa2, 0x63, 0x39, 0xff, 0xa1, 0x62, 0x39, 0xff, 0xa1, 0x63, 0x39, 0xff, 0xa3, 0x63, 0x39, 0xff, 0xa3, 0x64, 0x39, 0xff, 0xa6, 0x64, 0x39, 0xff, 0xa5, 0x66, 0x39, 0xff, 0xa8, 0x69, 0x3c, 0xff, 0xa9, 0x6b, 0x3e, 0xff, 0xa9, 0x6d, 0x42, 0xff, 0xa9, 0x6f, 0x42, 0xff, 0xa8, 0x70, 0x42, 0xff, 0xa8, 0x6b, 0x3e, 0xff, 0xa8, 0x69, 0x3b, 0xff, 0xa8, 0x6a, 0x3c, 0xff, 0xa7, 0x68, 0x3c, 0xff, 0xa9, 0x6d, 0x3e, 0xff, 0xa6, 0x69, 0x3f, 0xff, 0x8e, 0x52, 0x2e, 0xff, 0x7b, 0x40, 0x1f, 0xff, 0x77, 0x3d, 0x19, 0xff, 0x78, 0x3f, 0x1c, 0xff, 0x79, 0x3e, 0x1b, 0xff, 0x79, 0x40, 0x1d, 0xff, 0x7a, 0x40, 0x1c, 0xff, 0x77, 0x3e, 0x1b, 0xff, 0x7a, 0x3e, 0x1d, 0xff, 0x7b, 0x41, 0x1f, 0xff, 0x7d, 0x42, 0x20, 0xff, 0x80, 0x42, 0x21, 0xff, 0x81, 0x45, 0x22, 0xff, 0x83, 0x47, 0x23, 0xff, 0x86, 0x48, 0x27, 0xff, 0x86, 0x47, 0x26, 0xff, 0x87, 0x48, 0x27, 0xff, 0x8a, 0x4b, 0x28, 0xff, 0x8b, 0x4d, 0x2a, 0xff, 0x8e, 0x4e, 0x2c, 0xff, 0x93, 0x51, 0x2e, 0xff, 0x97, 0x55, 0x30, 0xff, 0x9a, 0x59, 0x31, 0xff, 0x9d, 0x5e, 0x33, 0xff, 0xa0, 0x5f, 0x36, 0xff, 0xa4, 0x64, 0x38, 0xff, 0xa7, 0x68, 0x3a, 0xff, 0xa9, 0x6b, 0x3e, 0xff, 0xab, 0x6e, 0x42, 0xff, 0xb0, 0x74, 0x45, 0xff, 0xb6, 0x7a, 0x4a, 0xff, 0xb1, 0x75, 0x47, 0xff, 0xa2, 0x66, 0x3d, 0xff, 0xa6, 0x69, 0x40, 0xff, 0xa8, 0x6b, 0x40, 0xff, 0xaa, 0x6e, 0x40, 0xff, 0xac, 0x6e, 0x40, 0xff, 0xad, 0x6e, 0x40, 0xff, 0xae, 0x6f, 0x41, 0xff, 0xae, 0x6e, 0x40, 0xff, 0xae, 0x6e, 0x41, 0xff, 0xae, 0x6f, 0x41, 0xff, 0xaf, 0x70, 0x42, 0xff, 0xaf, 0x70, 0x42, 0xff, 0xb2, 0x72, 0x43, 0xff, 0xb4, 0x76, 0x46, 0xff, 0xb7, 0x78, 0x48, 0xff, 0xbc, 0x7d, 0x4d, 0xff, 0xbb, 0x7c, 0x4c, 0xff, 0xa7, 0x68, 0x3c, 0xff, 0x98, 0x59, 0x2f, 0xff, 0x9f, 0x61, 0x34, 0xff, 0x9f, 0x64, 0x36, 0xff, 0xa0, 0x65, 0x38, 0xff, 0xa1, 0x68, 0x3a, 0xff, 0xa1, 0x69, 0x3c, 0xff, 0xa0, 0x69, 0x3e, 0xff, 0xa0, 0x6b, 0x40, 0xff, 0xa0, 0x6d, 0x41, 0xff, 0xa0, 0x6d, 0x43, 0xff, 0x9f, 0x6f, 0x44, 0xff, 0x9f, 0x6f, 0x42, 0xff, 0xa0, 0x6e, 0x41, 0xff, 0xa0, 0x6d, 0x41, 0xff, 0xa0, 0x6c, 0x3f, 0xff, 0xa1, 0x6d, 0x3f, 0xff, 0xa1, 0x6b, 0x3e, 0xff, 0xa1, 0x6b, 0x3d, 0xff, 0x9f, 0x68, 0x3b, 0xff, 0x9b, 0x63, 0x37, 0xff, 0x9a, 0x62, 0x36, 0xff, 0x9a, 0x62, 0x37, 0xff, 0x9b, 0x61, 0x36, 0xff, 0x9c, 0x60, 0x35, 0xff, 0x9d, 0x62, 0x37, 0xff, 0xa0, 0x64, 0x37, 0xff, 0xa0, 0x63, 0x37, 0xff, 0xa5, 0x6a, 0x3c, 0xff, 0xcf, 0x8f, 0x57, 0xff, 0xed, 0xa0, 0x65, 0xff, 0xe5, 0x95, 0x5b, 0xff, 0xe3, 0x93, 0x59, 0xff, 0xe5, 0x95, 0x5b, 0xff, 0xd5, 0x8d, 0x56, 0xff, 0xc3, 0x84, 0x50, 0xff, 0xc3, 0x86, 0x52, 0xff, 0xc8, 0x8a, 0x57, 0xff, 0xce, 0x8e, 0x5d, 0xff, 0xd8, 0x94, 0x63, 0xff, 0xe0, 0x9a, 0x67, 0xff, 0xe2, 0x9d, 0x6a, 0xff, 0xdd, 0x9a, 0x68, 0xff, 0xd2, 0x91, 0x61, 0xff, 0xc2, 0x86, 0x59, 0xff, 0xb7, 0x7d, 0x51, 0xff, 0xaf, 0x73, 0x48, 0xff, 0xa8, 0x6c, 0x41, 0xff, 0xa3, 0x66, 0x3b, 0xff, 0x9f, 0x60, 0x36, 0xff, 0x9b, 0x5c, 0x34, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x97, 0x57, 0x30, 0xff, 0x96, 0x54, 0x2f, 0xff, 0x93, 0x52, 0x2e, 0xff, 0x92, 0x53, 0x2e, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x94, 0x53, 0x2f, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x8d, 0x4e, 0x2c, 0xff, 0x8e, 0x4d, 0x2d, 0xff, 0x8d, 0x4d, 0x2d, 0xff, 0x8f, 0x50, 0x2e, 0xff, 0x98, 0x59, 0x32, 0xff, 0x8c, 0x4d, 0x2c, 0xff, 0x7b, 0x41, 0x1f, 0xff, 0x7c, 0x42, 0x1e, 0xff, 0x7f, 0x42, 0x22, 0xff, 0x7e, 0x42, 0x22, 0xff, 0x7c, 0x41, 0x20, 0xff, 0x7b, 0x41, 0x20, 0xff, 0x7b, 0x3f, 0x20, 0xff, 0x7b, 0x41, 0x20, 0xff, 0x7b, 0x41, 0x1f, 0xff, 0x7c, 0x41, 0x20, 0xff, 0x7a, 0x40, 0x1e, 0xff, 0x79, 0x3f, 0x1f, 0xff, 0x89, 0x4c, 0x2a, 0xff, 0x91, 0x54, 0x2f, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x8d, 0x4e, 0x2c, 0xff, 0x8d, 0x4e, 0x2d, 0xff, 0x91, 0x52, 0x30, 0xff, 0x93, 0x53, 0x30, 0xff, 0x92, 0x53, 0x30, 0xff, 0x93, 0x54, 0x31, 0xff, 0x95, 0x58, 0x32, 0xff, 0x96, 0x5a, 0x34, 0xff, 0x92, 0x53, 0x32, 0xff, 0x8f, 0x52, 0x30, 0xff, 0x90, 0x53, 0x30, 0xff, 0x8f, 0x53, 0x30, 0xff, 0x8f, 0x53, 0x30, 0xff, 0x93, 0x55, 0x33, 0xff, 0x94, 0x55, 0x32, 0xff, 0x92, 0x54, 0x31, 0xff, 0x90, 0x53, 0x30, 0xff, 0x8e, 0x50, 0x2f, 0xff, 0x89, 0x4c, 0x2e, 0xff, 0x88, 0x4c, 0x2d, 0xff, 0x86, 0x4a, 0x2c, 0xff, 0x86, 0x4a, 0x2c, 0xff, 0x86, 0x49, 0x2c, 0xff, 0x86, 0x4a, 0x2c, 0xff, 0x86, 0x4a, 0x2c, 0xff, 0x86, 0x4a, 0x2a, 0xff, 0x86, 0x49, 0x2a, 0xff, 0x85, 0x4a, 0x28, 0xff, 0x84, 0x4a, 0x28, 0xff, 0x86, 0x48, 0x28, 0xff, 0x86, 0x48, 0x28, 0xff, 0x86, 0x49, 0x29, 0xff, 0x86, 0x49, 0x29, 0xff, 0x88, 0x4a, 0x29, 0xff, 0x89, 0x4b, 0x2b, 0xff, 0x8a, 0x4e, 0x2d, 0xff, 0x8b, 0x4d, 0x2d, 0xff, 0x8d, 0x50, 0x2e, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x91, 0x54, 0x30, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x92, 0x53, 0x2e, 0xff, 0x92, 0x53, 0x2e, 0xff, 0x92, 0x54, 0x2f, 0xff, 0x94, 0x55, 0x30, 0xff, 0x98, 0x59, 0x32, 0xff, 0x9b, 0x5c, 0x34, 0xff, 0x9b, 0x5f, 0x36, 0xff, 0x9d, 0x60, 0x37, 0xff, 0x9f, 0x5e, 0x36, 0xff, 0x9b, 0x5b, 0x33, 0xff, + 0x9e, 0x5d, 0x35, 0xff, 0x9c, 0x5c, 0x34, 0xff, 0x9a, 0x5b, 0x32, 0xff, 0x9d, 0x5d, 0x34, 0xff, 0xa0, 0x62, 0x36, 0xff, 0xa1, 0x64, 0x38, 0xff, 0xa8, 0x6a, 0x3b, 0xff, 0xaa, 0x6b, 0x3d, 0xff, 0xc3, 0x7f, 0x4d, 0xff, 0xd3, 0x8b, 0x56, 0xff, 0xc9, 0x84, 0x51, 0xff, 0xc7, 0x83, 0x50, 0xff, 0xca, 0x84, 0x52, 0xff, 0xc7, 0x82, 0x4f, 0xff, 0xc9, 0x84, 0x51, 0xff, 0xc7, 0x83, 0x50, 0xff, 0xc9, 0x84, 0x51, 0xff, 0xcb, 0x85, 0x52, 0xff, 0xc8, 0x85, 0x52, 0xff, 0xc5, 0x84, 0x51, 0xff, 0xc2, 0x82, 0x52, 0xff, 0xbe, 0x7f, 0x4f, 0xff, 0xb4, 0x75, 0x48, 0xff, 0xa7, 0x68, 0x3a, 0xff, 0xa3, 0x64, 0x39, 0xff, 0xa1, 0x62, 0x39, 0xff, 0xa3, 0x66, 0x3b, 0xff, 0xa3, 0x68, 0x3b, 0xff, 0xa3, 0x66, 0x3b, 0xff, 0xa4, 0x66, 0x3a, 0xff, 0xa4, 0x65, 0x39, 0xff, 0xa6, 0x65, 0x39, 0xff, 0xa9, 0x69, 0x3c, 0xff, 0xaa, 0x6d, 0x3e, 0xff, 0xac, 0x70, 0x43, 0xff, 0xad, 0x72, 0x49, 0xff, 0xac, 0x72, 0x4b, 0xff, 0xac, 0x72, 0x47, 0xff, 0xab, 0x70, 0x43, 0xff, 0xab, 0x6d, 0x3f, 0xff, 0xab, 0x6d, 0x41, 0xff, 0xaa, 0x6d, 0x3f, 0xff, 0xaa, 0x6c, 0x41, 0xff, 0xa5, 0x6a, 0x41, 0xff, 0x76, 0x3b, 0x18, 0xff, 0x76, 0x3c, 0x19, 0xff, 0x78, 0x3e, 0x1b, 0xff, 0x77, 0x3e, 0x1b, 0xff, 0x77, 0x3d, 0x1b, 0xff, 0x78, 0x3e, 0x1b, 0xff, 0x79, 0x3e, 0x1b, 0xff, 0x7a, 0x3f, 0x1d, 0xff, 0x77, 0x3e, 0x1b, 0xff, 0x79, 0x3f, 0x1d, 0xff, 0x7b, 0x40, 0x1e, 0xff, 0x7d, 0x41, 0x20, 0xff, 0x7f, 0x43, 0x22, 0xff, 0x82, 0x44, 0x25, 0xff, 0x83, 0x46, 0x26, 0xff, 0x85, 0x46, 0x24, 0xff, 0x86, 0x48, 0x25, 0xff, 0x85, 0x47, 0x26, 0xff, 0x88, 0x49, 0x28, 0xff, 0x8b, 0x4c, 0x2a, 0xff, 0x8f, 0x4f, 0x2b, 0xff, 0x92, 0x51, 0x2e, 0xff, 0x96, 0x55, 0x30, 0xff, 0x99, 0x59, 0x30, 0xff, 0x9b, 0x5c, 0x33, 0xff, 0xa0, 0x60, 0x35, 0xff, 0xa2, 0x62, 0x37, 0xff, 0xa4, 0x65, 0x39, 0xff, 0xa7, 0x69, 0x3d, 0xff, 0xac, 0x6f, 0x40, 0xff, 0xb0, 0x73, 0x45, 0xff, 0xb1, 0x74, 0x46, 0xff, 0xa7, 0x6b, 0x41, 0xff, 0xa1, 0x63, 0x3d, 0xff, 0xa4, 0x66, 0x3f, 0xff, 0xa7, 0x69, 0x41, 0xff, 0xa9, 0x6e, 0x41, 0xff, 0xaa, 0x6f, 0x41, 0xff, 0xab, 0x6d, 0x40, 0xff, 0xac, 0x6e, 0x3f, 0xff, 0xad, 0x6f, 0x3f, 0xff, 0xac, 0x6d, 0x3e, 0xff, 0xac, 0x6e, 0x3f, 0xff, 0xaf, 0x70, 0x42, 0xff, 0xaf, 0x6f, 0x41, 0xff, 0xaf, 0x70, 0x41, 0xff, 0xb3, 0x73, 0x44, 0xff, 0xb6, 0x76, 0x47, 0xff, 0xb9, 0x79, 0x4a, 0xff, 0xbd, 0x7d, 0x4e, 0xff, 0xb7, 0x79, 0x49, 0xff, 0xa3, 0x65, 0x39, 0xff, 0x9c, 0x5d, 0x32, 0xff, 0x9f, 0x62, 0x36, 0xff, 0x9f, 0x65, 0x36, 0xff, 0xa0, 0x66, 0x38, 0xff, 0xa1, 0x68, 0x3a, 0xff, 0xa1, 0x69, 0x3c, 0xff, 0xa1, 0x6a, 0x3c, 0xff, 0xa0, 0x6c, 0x40, 0xff, 0x9f, 0x6e, 0x42, 0xff, 0xa0, 0x6e, 0x42, 0xff, 0xa0, 0x6f, 0x41, 0xff, 0xa0, 0x6f, 0x40, 0xff, 0xa0, 0x6d, 0x3f, 0xff, 0xa1, 0x6d, 0x40, 0xff, 0xa1, 0x6c, 0x3f, 0xff, 0xa1, 0x6b, 0x3e, 0xff, 0xa1, 0x6c, 0x3d, 0xff, 0x9f, 0x68, 0x3b, 0xff, 0x9a, 0x62, 0x37, 0xff, 0x99, 0x61, 0x36, 0xff, 0x99, 0x60, 0x35, 0xff, 0x99, 0x5d, 0x34, 0xff, 0x9b, 0x5e, 0x35, 0xff, 0x9e, 0x60, 0x35, 0xff, 0xa2, 0x64, 0x37, 0xff, 0xa8, 0x69, 0x3b, 0xff, 0xa6, 0x6a, 0x3a, 0xff, 0xbd, 0x80, 0x4c, 0xff, 0xe1, 0x98, 0x60, 0xff, 0xe9, 0x97, 0x5c, 0xff, 0xe6, 0x94, 0x59, 0xff, 0xe4, 0x93, 0x59, 0xff, 0xe3, 0x93, 0x59, 0xff, 0xcf, 0x8b, 0x53, 0xff, 0xc0, 0x83, 0x4f, 0xff, 0xc1, 0x84, 0x53, 0xff, 0xc4, 0x87, 0x56, 0xff, 0xc8, 0x8a, 0x5b, 0xff, 0xcd, 0x8d, 0x5e, 0xff, 0xcf, 0x91, 0x5f, 0xff, 0xca, 0x8f, 0x5c, 0xff, 0xc2, 0x87, 0x57, 0xff, 0xbb, 0x80, 0x53, 0xff, 0xb4, 0x79, 0x4d, 0xff, 0xad, 0x72, 0x46, 0xff, 0xa8, 0x6c, 0x40, 0xff, 0xa3, 0x66, 0x3b, 0xff, 0xa1, 0x62, 0x38, 0xff, 0x9e, 0x5d, 0x35, 0xff, 0x9b, 0x5b, 0x33, 0xff, 0x98, 0x59, 0x31, 0xff, 0x96, 0x57, 0x30, 0xff, 0x96, 0x56, 0x30, 0xff, 0x95, 0x55, 0x30, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x91, 0x50, 0x2d, 0xff, 0x8e, 0x4d, 0x2d, 0xff, 0x8d, 0x4d, 0x2d, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x93, 0x55, 0x30, 0xff, 0x95, 0x56, 0x30, 0xff, 0x94, 0x57, 0x32, 0xff, 0x7d, 0x42, 0x1f, 0xff, 0x7c, 0x42, 0x22, 0xff, 0x81, 0x47, 0x26, 0xff, 0x7f, 0x43, 0x24, 0xff, 0x7b, 0x40, 0x21, 0xff, 0x79, 0x40, 0x20, 0xff, 0x7b, 0x3f, 0x1e, 0xff, 0x7a, 0x41, 0x1d, 0xff, 0x7b, 0x40, 0x1e, 0xff, 0x7b, 0x3f, 0x20, 0xff, 0x79, 0x41, 0x20, 0xff, 0x78, 0x3f, 0x1e, 0xff, 0x85, 0x49, 0x27, 0xff, 0x8f, 0x53, 0x2f, 0xff, 0x8f, 0x51, 0x2e, 0xff, 0x8d, 0x4e, 0x2e, 0xff, 0x8c, 0x4e, 0x2d, 0xff, 0x8b, 0x4c, 0x2d, 0xff, 0x8c, 0x4f, 0x2e, 0xff, 0x93, 0x55, 0x30, 0xff, 0x95, 0x57, 0x32, 0xff, 0x94, 0x57, 0x32, 0xff, 0x95, 0x57, 0x34, 0xff, 0x92, 0x55, 0x32, 0xff, 0x92, 0x53, 0x30, 0xff, 0x91, 0x52, 0x31, 0xff, 0x8e, 0x51, 0x2e, 0xff, 0xa3, 0x67, 0x3d, 0xff, 0x93, 0x57, 0x33, 0xff, 0x94, 0x55, 0x32, 0xff, 0x94, 0x57, 0x32, 0xff, 0x8e, 0x51, 0x2f, 0xff, 0x88, 0x4b, 0x2d, 0xff, 0x88, 0x4b, 0x2d, 0xff, 0x86, 0x4a, 0x2c, 0xff, 0x86, 0x4a, 0x2c, 0xff, 0x86, 0x4b, 0x2c, 0xff, 0x86, 0x49, 0x2b, 0xff, 0x88, 0x4a, 0x2c, 0xff, 0x88, 0x4a, 0x2c, 0xff, 0x86, 0x4a, 0x2b, 0xff, 0x86, 0x49, 0x2b, 0xff, 0x85, 0x48, 0x2a, 0xff, 0x84, 0x4a, 0x27, 0xff, 0x84, 0x48, 0x26, 0xff, 0x85, 0x48, 0x28, 0xff, 0x86, 0x48, 0x26, 0xff, 0x86, 0x49, 0x29, 0xff, 0x88, 0x4a, 0x2b, 0xff, 0x8b, 0x4c, 0x2c, 0xff, 0x89, 0x4c, 0x2c, 0xff, 0x8a, 0x4d, 0x2e, 0xff, 0x8d, 0x4e, 0x2e, 0xff, 0x8f, 0x51, 0x2e, 0xff, 0x8d, 0x51, 0x2e, 0xff, 0x8f, 0x51, 0x2e, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x8f, 0x51, 0x2d, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x95, 0x55, 0x30, 0xff, 0x96, 0x57, 0x30, 0xff, 0x98, 0x5a, 0x33, 0xff, 0x9a, 0x5d, 0x35, 0xff, 0x9d, 0x60, 0x38, 0xff, 0x9c, 0x60, 0x38, 0xff, 0x9e, 0x62, 0x39, 0xff, 0x9e, 0x5f, 0x35, 0xff, + 0x9c, 0x5c, 0x34, 0xff, 0x9d, 0x5d, 0x34, 0xff, 0x9c, 0x5d, 0x34, 0xff, 0x9e, 0x5d, 0x35, 0xff, 0x9c, 0x5d, 0x35, 0xff, 0x9e, 0x5f, 0x36, 0xff, 0xa4, 0x65, 0x3b, 0xff, 0xa8, 0x6b, 0x3d, 0xff, 0xa9, 0x6b, 0x3f, 0xff, 0xae, 0x70, 0x40, 0xff, 0xc3, 0x81, 0x4d, 0xff, 0xd6, 0x8a, 0x55, 0xff, 0xd2, 0x88, 0x55, 0xff, 0xce, 0x86, 0x53, 0xff, 0xcd, 0x86, 0x51, 0xff, 0xca, 0x85, 0x52, 0xff, 0xcd, 0x85, 0x52, 0xff, 0xd0, 0x87, 0x54, 0xff, 0xd2, 0x89, 0x55, 0xff, 0xcd, 0x87, 0x54, 0xff, 0xc8, 0x84, 0x53, 0xff, 0xc3, 0x83, 0x52, 0xff, 0xbf, 0x7d, 0x50, 0xff, 0xb4, 0x74, 0x48, 0xff, 0xa7, 0x68, 0x3d, 0xff, 0xa8, 0x68, 0x3d, 0xff, 0xa7, 0x69, 0x3e, 0xff, 0xa7, 0x69, 0x3e, 0xff, 0xa7, 0x69, 0x3d, 0xff, 0xaa, 0x6a, 0x3d, 0xff, 0xaa, 0x6c, 0x3f, 0xff, 0xad, 0x6e, 0x41, 0xff, 0xaf, 0x71, 0x44, 0xff, 0xb1, 0x75, 0x49, 0xff, 0xb0, 0x77, 0x4d, 0xff, 0xae, 0x75, 0x4d, 0xff, 0xae, 0x75, 0x4a, 0xff, 0xae, 0x74, 0x45, 0xff, 0xae, 0x71, 0x44, 0xff, 0xb0, 0x74, 0x46, 0xff, 0xab, 0x6f, 0x42, 0xff, 0x9e, 0x61, 0x3a, 0xff, 0x83, 0x49, 0x27, 0xff, 0x6e, 0x37, 0x15, 0xff, 0x76, 0x3c, 0x18, 0xff, 0x76, 0x3d, 0x1a, 0xff, 0x75, 0x3c, 0x1a, 0xff, 0x75, 0x3c, 0x1a, 0xff, 0x75, 0x3d, 0x1b, 0xff, 0x77, 0x3e, 0x1b, 0xff, 0x77, 0x3d, 0x1a, 0xff, 0x77, 0x3e, 0x1c, 0xff, 0x75, 0x3c, 0x19, 0xff, 0x78, 0x3e, 0x1b, 0xff, 0x7a, 0x3e, 0x1e, 0xff, 0x7d, 0x40, 0x20, 0xff, 0x7f, 0x42, 0x1f, 0xff, 0x81, 0x45, 0x22, 0xff, 0x83, 0x47, 0x25, 0xff, 0x85, 0x48, 0x26, 0xff, 0x86, 0x48, 0x26, 0xff, 0x84, 0x47, 0x24, 0xff, 0x86, 0x48, 0x27, 0xff, 0x88, 0x4a, 0x2a, 0xff, 0x8c, 0x4c, 0x2c, 0xff, 0x91, 0x51, 0x2e, 0xff, 0x94, 0x55, 0x2f, 0xff, 0x96, 0x58, 0x31, 0xff, 0x9b, 0x5b, 0x32, 0xff, 0x9d, 0x5e, 0x33, 0xff, 0xa0, 0x61, 0x36, 0xff, 0xa2, 0x63, 0x38, 0xff, 0xa5, 0x68, 0x3a, 0xff, 0xac, 0x6d, 0x3f, 0xff, 0xb0, 0x74, 0x44, 0xff, 0xac, 0x6f, 0x42, 0xff, 0x9d, 0x60, 0x39, 0xff, 0xa2, 0x65, 0x3d, 0xff, 0xa4, 0x67, 0x3e, 0xff, 0xa6, 0x6a, 0x3f, 0xff, 0xa8, 0x6c, 0x40, 0xff, 0xaa, 0x6e, 0x40, 0xff, 0xab, 0x6f, 0x42, 0xff, 0xab, 0x70, 0x43, 0xff, 0xac, 0x6f, 0x40, 0xff, 0xac, 0x6d, 0x3e, 0xff, 0xac, 0x6d, 0x3f, 0xff, 0xac, 0x6e, 0x3f, 0xff, 0xad, 0x6f, 0x3f, 0xff, 0xae, 0x6f, 0x40, 0xff, 0xaf, 0x71, 0x43, 0xff, 0xb3, 0x75, 0x45, 0xff, 0xb6, 0x79, 0x48, 0xff, 0xba, 0x7b, 0x4b, 0xff, 0xbc, 0x7d, 0x4d, 0xff, 0xaf, 0x71, 0x41, 0xff, 0x9e, 0x60, 0x32, 0xff, 0xa0, 0x62, 0x35, 0xff, 0xa0, 0x64, 0x37, 0xff, 0xa1, 0x65, 0x38, 0xff, 0xa1, 0x68, 0x39, 0xff, 0xa0, 0x68, 0x3a, 0xff, 0xa0, 0x68, 0x3c, 0xff, 0x9f, 0x69, 0x3b, 0xff, 0xa0, 0x6c, 0x3d, 0xff, 0xa0, 0x6e, 0x40, 0xff, 0x9f, 0x6d, 0x40, 0xff, 0xa1, 0x6e, 0x3f, 0xff, 0xa1, 0x6d, 0x3f, 0xff, 0xa1, 0x6e, 0x3f, 0xff, 0xa1, 0x6c, 0x3f, 0xff, 0xa1, 0x6c, 0x3f, 0xff, 0xa1, 0x6d, 0x3e, 0xff, 0x9f, 0x6a, 0x3d, 0xff, 0x9b, 0x64, 0x38, 0xff, 0x9a, 0x60, 0x35, 0xff, 0x99, 0x5d, 0x34, 0xff, 0x99, 0x5d, 0x34, 0xff, 0x9c, 0x5f, 0x35, 0xff, 0xa2, 0x64, 0x38, 0xff, 0xa6, 0x68, 0x3a, 0xff, 0xa8, 0x6a, 0x3b, 0xff, 0xa8, 0x6b, 0x3b, 0xff, 0xac, 0x6d, 0x3d, 0xff, 0xcf, 0x88, 0x52, 0xff, 0xe9, 0x98, 0x5e, 0xff, 0xe8, 0x94, 0x5b, 0xff, 0xe4, 0x93, 0x59, 0xff, 0xe1, 0x91, 0x58, 0xff, 0xdf, 0x92, 0x59, 0xff, 0xd3, 0x8f, 0x57, 0xff, 0xc2, 0x85, 0x51, 0xff, 0xbe, 0x80, 0x50, 0xff, 0xc1, 0x82, 0x53, 0xff, 0xbf, 0x82, 0x54, 0xff, 0xbd, 0x82, 0x53, 0xff, 0xbc, 0x81, 0x53, 0xff, 0xba, 0x7e, 0x50, 0xff, 0xb6, 0x7a, 0x4d, 0xff, 0xb1, 0x76, 0x48, 0xff, 0xad, 0x72, 0x44, 0xff, 0xa9, 0x6c, 0x3f, 0xff, 0xa4, 0x66, 0x3a, 0xff, 0xa2, 0x62, 0x38, 0xff, 0xa0, 0x60, 0x36, 0xff, 0x9d, 0x5d, 0x34, 0xff, 0x9c, 0x5b, 0x33, 0xff, 0x9b, 0x5b, 0x32, 0xff, 0x9a, 0x5a, 0x32, 0xff, 0x99, 0x59, 0x31, 0xff, 0x97, 0x58, 0x31, 0xff, 0x97, 0x57, 0x30, 0xff, 0x96, 0x56, 0x30, 0xff, 0x95, 0x55, 0x30, 0xff, 0x95, 0x54, 0x30, 0xff, 0x93, 0x54, 0x30, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x8f, 0x4e, 0x2d, 0xff, 0x8f, 0x4e, 0x2d, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x94, 0x53, 0x30, 0xff, 0x94, 0x54, 0x31, 0xff, 0x8a, 0x4c, 0x2d, 0xff, 0x82, 0x47, 0x2a, 0xff, 0x81, 0x47, 0x2a, 0xff, 0x7e, 0x45, 0x23, 0xff, 0x7b, 0x42, 0x20, 0xff, 0x79, 0x40, 0x1e, 0xff, 0x79, 0x40, 0x20, 0xff, 0x7a, 0x3e, 0x1e, 0xff, 0x7a, 0x40, 0x1e, 0xff, 0x7c, 0x40, 0x20, 0xff, 0x7a, 0x40, 0x1f, 0xff, 0x7a, 0x3e, 0x1e, 0xff, 0x78, 0x3d, 0x1e, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x8e, 0x4f, 0x2e, 0xff, 0x8c, 0x4e, 0x2d, 0xff, 0x8b, 0x4e, 0x2d, 0xff, 0x8c, 0x4e, 0x2d, 0xff, 0x8c, 0x4f, 0x2e, 0xff, 0x8f, 0x51, 0x30, 0xff, 0x92, 0x56, 0x33, 0xff, 0x96, 0x59, 0x34, 0xff, 0x93, 0x55, 0x32, 0xff, 0x93, 0x54, 0x31, 0xff, 0x91, 0x53, 0x30, 0xff, 0x9c, 0x61, 0x39, 0xff, 0xb2, 0x74, 0x45, 0xff, 0xa2, 0x65, 0x3c, 0xff, 0x95, 0x58, 0x33, 0xff, 0x8d, 0x51, 0x30, 0xff, 0x89, 0x4d, 0x2d, 0xff, 0x88, 0x4b, 0x2d, 0xff, 0x88, 0x4b, 0x2c, 0xff, 0x87, 0x49, 0x2b, 0xff, 0x86, 0x49, 0x2b, 0xff, 0x86, 0x4a, 0x2b, 0xff, 0x86, 0x48, 0x2a, 0xff, 0x86, 0x4a, 0x2a, 0xff, 0x86, 0x4a, 0x2c, 0xff, 0x86, 0x4b, 0x2c, 0xff, 0x85, 0x49, 0x2a, 0xff, 0x84, 0x48, 0x26, 0xff, 0x83, 0x47, 0x26, 0xff, 0x83, 0x47, 0x26, 0xff, 0x84, 0x48, 0x26, 0xff, 0x86, 0x48, 0x28, 0xff, 0x88, 0x4a, 0x29, 0xff, 0x88, 0x4a, 0x2b, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x89, 0x4c, 0x2c, 0xff, 0x8b, 0x4d, 0x2d, 0xff, 0x8c, 0x4e, 0x2d, 0xff, 0x8c, 0x4e, 0x2d, 0xff, 0x8c, 0x4e, 0x2d, 0xff, 0x8c, 0x4c, 0x2c, 0xff, 0x8c, 0x4e, 0x2d, 0xff, 0x8f, 0x50, 0x2e, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x91, 0x53, 0x2e, 0xff, 0x93, 0x54, 0x30, 0xff, 0x96, 0x56, 0x30, 0xff, 0x97, 0x57, 0x31, 0xff, 0x99, 0x5a, 0x33, 0xff, 0x9c, 0x5c, 0x34, 0xff, 0x9d, 0x5e, 0x36, 0xff, 0x9d, 0x5d, 0x34, 0xff, 0x9c, 0x5c, 0x34, 0xff, + 0x98, 0x57, 0x31, 0xff, 0x98, 0x59, 0x32, 0xff, 0x9a, 0x59, 0x32, 0xff, 0x9c, 0x5c, 0x34, 0xff, 0x9c, 0x5d, 0x34, 0xff, 0x9c, 0x5c, 0x34, 0xff, 0xa1, 0x62, 0x38, 0xff, 0xa2, 0x64, 0x39, 0xff, 0xa7, 0x68, 0x3d, 0xff, 0xaa, 0x6a, 0x3d, 0xff, 0xaa, 0x6c, 0x3e, 0xff, 0xb4, 0x74, 0x47, 0xff, 0xbf, 0x7b, 0x4a, 0xff, 0xc6, 0x81, 0x4f, 0xff, 0xd7, 0x8b, 0x58, 0xff, 0xd7, 0x8a, 0x55, 0xff, 0xd6, 0x8a, 0x54, 0xff, 0xd5, 0x8b, 0x54, 0xff, 0xd7, 0x8d, 0x59, 0xff, 0xd6, 0x8c, 0x59, 0xff, 0xcf, 0x89, 0x56, 0xff, 0xc9, 0x84, 0x54, 0xff, 0xc4, 0x84, 0x53, 0xff, 0xc1, 0x81, 0x52, 0xff, 0xb9, 0x78, 0x4a, 0xff, 0xad, 0x6f, 0x43, 0xff, 0xaa, 0x6c, 0x41, 0xff, 0xac, 0x6d, 0x42, 0xff, 0xac, 0x6e, 0x42, 0xff, 0xae, 0x6f, 0x42, 0xff, 0xb1, 0x73, 0x44, 0xff, 0xb3, 0x75, 0x46, 0xff, 0xb4, 0x79, 0x4a, 0xff, 0xb3, 0x7a, 0x4d, 0xff, 0xb3, 0x79, 0x4d, 0xff, 0xb3, 0x79, 0x4c, 0xff, 0xb5, 0x7a, 0x4b, 0xff, 0xb4, 0x7a, 0x4a, 0xff, 0xa6, 0x6a, 0x41, 0xff, 0x91, 0x56, 0x2e, 0xff, 0x88, 0x4f, 0x2a, 0xff, 0x79, 0x3f, 0x1f, 0xff, 0x77, 0x3c, 0x1a, 0xff, 0x76, 0x3d, 0x1b, 0xff, 0x73, 0x3b, 0x19, 0xff, 0x73, 0x3a, 0x19, 0xff, 0x73, 0x3b, 0x19, 0xff, 0x73, 0x3b, 0x18, 0xff, 0x72, 0x3a, 0x19, 0xff, 0x76, 0x3d, 0x1b, 0xff, 0x77, 0x3e, 0x1c, 0xff, 0x75, 0x3c, 0x1a, 0xff, 0x73, 0x3b, 0x19, 0xff, 0x78, 0x3d, 0x1a, 0xff, 0x79, 0x3e, 0x1c, 0xff, 0x7b, 0x40, 0x1e, 0xff, 0x7e, 0x42, 0x20, 0xff, 0x81, 0x43, 0x21, 0xff, 0x83, 0x44, 0x23, 0xff, 0x85, 0x46, 0x24, 0xff, 0x86, 0x47, 0x26, 0xff, 0x87, 0x48, 0x26, 0xff, 0x86, 0x48, 0x27, 0xff, 0x88, 0x4b, 0x2a, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x97, 0x57, 0x30, 0xff, 0x9a, 0x5c, 0x31, 0xff, 0x9c, 0x5d, 0x32, 0xff, 0x9f, 0x60, 0x35, 0xff, 0xa2, 0x63, 0x37, 0xff, 0xa5, 0x66, 0x39, 0xff, 0xab, 0x6d, 0x3e, 0xff, 0xad, 0x6f, 0x40, 0xff, 0xa6, 0x69, 0x3e, 0xff, 0x9e, 0x61, 0x39, 0xff, 0xa2, 0x65, 0x3c, 0xff, 0xa3, 0x67, 0x3e, 0xff, 0xa5, 0x69, 0x3e, 0xff, 0xa6, 0x6b, 0x3f, 0xff, 0xa7, 0x6c, 0x3f, 0xff, 0xa9, 0x6d, 0x3f, 0xff, 0xab, 0x6e, 0x40, 0xff, 0xac, 0x6f, 0x40, 0xff, 0xab, 0x6c, 0x3d, 0xff, 0xaa, 0x6b, 0x3f, 0xff, 0xac, 0x6e, 0x3f, 0xff, 0xad, 0x6f, 0x3f, 0xff, 0xad, 0x6e, 0x3f, 0xff, 0xaf, 0x70, 0x40, 0xff, 0xb3, 0x73, 0x44, 0xff, 0xb6, 0x77, 0x46, 0xff, 0xb8, 0x7a, 0x49, 0xff, 0xbd, 0x7e, 0x4e, 0xff, 0xba, 0x7c, 0x4b, 0xff, 0xa9, 0x6a, 0x3c, 0xff, 0x9f, 0x61, 0x33, 0xff, 0xa0, 0x63, 0x36, 0xff, 0xa0, 0x65, 0x38, 0xff, 0xa0, 0x67, 0x39, 0xff, 0xa1, 0x67, 0x39, 0xff, 0xa0, 0x68, 0x3a, 0xff, 0xa0, 0x69, 0x3b, 0xff, 0xa0, 0x6a, 0x3c, 0xff, 0xa0, 0x6c, 0x3e, 0xff, 0xa1, 0x6d, 0x3f, 0xff, 0xa1, 0x6c, 0x3e, 0xff, 0xa1, 0x6d, 0x3e, 0xff, 0xa1, 0x6d, 0x3f, 0xff, 0xa1, 0x6d, 0x3f, 0xff, 0xa0, 0x6b, 0x3d, 0xff, 0xa0, 0x6b, 0x3d, 0xff, 0xa1, 0x6d, 0x3e, 0xff, 0x9c, 0x66, 0x39, 0xff, 0x98, 0x5d, 0x33, 0xff, 0x99, 0x5d, 0x34, 0xff, 0x9c, 0x5f, 0x35, 0xff, 0xa1, 0x63, 0x37, 0xff, 0xa3, 0x65, 0x38, 0xff, 0xa5, 0x67, 0x39, 0xff, 0xa7, 0x69, 0x3a, 0xff, 0xa8, 0x6b, 0x39, 0xff, 0xa4, 0x68, 0x37, 0xff, 0xbb, 0x7b, 0x48, 0xff, 0xe0, 0x93, 0x5b, 0xff, 0xea, 0x96, 0x5c, 0xff, 0xe6, 0x93, 0x59, 0xff, 0xe2, 0x90, 0x57, 0xff, 0xdf, 0x90, 0x57, 0xff, 0xdc, 0x93, 0x5b, 0xff, 0xd5, 0x91, 0x5d, 0xff, 0xc4, 0x83, 0x52, 0xff, 0xb9, 0x7b, 0x4b, 0xff, 0xb7, 0x7a, 0x4b, 0xff, 0xb6, 0x79, 0x4b, 0xff, 0xb5, 0x79, 0x4a, 0xff, 0xb2, 0x76, 0x48, 0xff, 0xb0, 0x74, 0x47, 0xff, 0xae, 0x71, 0x45, 0xff, 0xab, 0x6e, 0x42, 0xff, 0xa9, 0x6a, 0x3d, 0xff, 0xa6, 0x67, 0x3b, 0xff, 0xa3, 0x65, 0x39, 0xff, 0xa1, 0x61, 0x38, 0xff, 0x9f, 0x5f, 0x36, 0xff, 0x9f, 0x5f, 0x35, 0xff, 0x9f, 0x5e, 0x35, 0xff, 0x9e, 0x5d, 0x35, 0xff, 0x9d, 0x5d, 0x34, 0xff, 0x9c, 0x5c, 0x34, 0xff, 0x9a, 0x5b, 0x33, 0xff, 0x9a, 0x5a, 0x32, 0xff, 0x9b, 0x5a, 0x32, 0xff, 0x95, 0x56, 0x30, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8c, 0x4c, 0x2b, 0xff, 0x91, 0x50, 0x2f, 0xff, 0x93, 0x54, 0x30, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x95, 0x56, 0x31, 0xff, 0x91, 0x54, 0x31, 0xff, 0x83, 0x4a, 0x2c, 0xff, 0x81, 0x47, 0x29, 0xff, 0x7d, 0x43, 0x23, 0xff, 0x7a, 0x3f, 0x1e, 0xff, 0x78, 0x3d, 0x1c, 0xff, 0x78, 0x3e, 0x1b, 0xff, 0x7a, 0x3f, 0x1c, 0xff, 0x7a, 0x40, 0x1e, 0xff, 0x7a, 0x41, 0x20, 0xff, 0x7a, 0x3e, 0x1d, 0xff, 0x7a, 0x40, 0x1f, 0xff, 0x79, 0x3e, 0x1d, 0xff, 0x89, 0x4d, 0x2c, 0xff, 0x90, 0x52, 0x2f, 0xff, 0x8f, 0x50, 0x2e, 0xff, 0x8d, 0x4f, 0x2e, 0xff, 0x8c, 0x4e, 0x2d, 0xff, 0x8c, 0x4e, 0x2d, 0xff, 0x8d, 0x4f, 0x2e, 0xff, 0x8f, 0x51, 0x30, 0xff, 0x91, 0x54, 0x30, 0xff, 0x93, 0x56, 0x32, 0xff, 0x8e, 0x52, 0x30, 0xff, 0x8f, 0x54, 0x30, 0xff, 0x90, 0x53, 0x30, 0xff, 0xa0, 0x64, 0x3b, 0xff, 0xac, 0x70, 0x44, 0xff, 0xa5, 0x69, 0x3f, 0xff, 0x90, 0x53, 0x32, 0xff, 0x8a, 0x4d, 0x2e, 0xff, 0x88, 0x4b, 0x2d, 0xff, 0x88, 0x4b, 0x2d, 0xff, 0x88, 0x4b, 0x2c, 0xff, 0x88, 0x4a, 0x2b, 0xff, 0x86, 0x4a, 0x2b, 0xff, 0x85, 0x49, 0x28, 0xff, 0x86, 0x49, 0x2a, 0xff, 0x84, 0x49, 0x2b, 0xff, 0x86, 0x4a, 0x2c, 0xff, 0x85, 0x4a, 0x2b, 0xff, 0x84, 0x49, 0x29, 0xff, 0x83, 0x47, 0x26, 0xff, 0x83, 0x46, 0x26, 0xff, 0x85, 0x47, 0x26, 0xff, 0x84, 0x49, 0x26, 0xff, 0x86, 0x48, 0x28, 0xff, 0x88, 0x4a, 0x29, 0xff, 0x88, 0x49, 0x2b, 0xff, 0x89, 0x4b, 0x2b, 0xff, 0x88, 0x4b, 0x2b, 0xff, 0x8a, 0x4b, 0x2b, 0xff, 0x89, 0x4b, 0x2a, 0xff, 0x88, 0x4a, 0x29, 0xff, 0x8b, 0x4c, 0x2c, 0xff, 0x8d, 0x4e, 0x2d, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x8f, 0x50, 0x2c, 0xff, 0x8f, 0x4f, 0x2d, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x93, 0x53, 0x30, 0xff, 0x95, 0x57, 0x31, 0xff, 0x98, 0x59, 0x31, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x98, 0x59, 0x32, 0xff, 0x98, 0x59, 0x31, 0xff, + 0x96, 0x56, 0x30, 0xff, 0x96, 0x56, 0x30, 0xff, 0x96, 0x56, 0x30, 0xff, 0x97, 0x58, 0x31, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x9c, 0x5d, 0x34, 0xff, 0x9e, 0x5f, 0x35, 0xff, 0xa7, 0x68, 0x3b, 0xff, 0xa5, 0x64, 0x3a, 0xff, 0xa8, 0x68, 0x3d, 0xff, 0xaa, 0x6b, 0x3f, 0xff, 0xaa, 0x6b, 0x3f, 0xff, 0xac, 0x6b, 0x3f, 0xff, 0xac, 0x6d, 0x41, 0xff, 0xb3, 0x71, 0x44, 0xff, 0xba, 0x79, 0x47, 0xff, 0xc6, 0x83, 0x50, 0xff, 0xe2, 0x91, 0x5c, 0xff, 0xe8, 0x94, 0x60, 0xff, 0xe3, 0x92, 0x5d, 0xff, 0xdd, 0x92, 0x5b, 0xff, 0xd7, 0x8c, 0x59, 0xff, 0xd0, 0x89, 0x56, 0xff, 0xcc, 0x86, 0x55, 0xff, 0xc7, 0x84, 0x54, 0xff, 0xc1, 0x7f, 0x4f, 0xff, 0xb5, 0x77, 0x48, 0xff, 0xb1, 0x72, 0x44, 0xff, 0xb3, 0x74, 0x45, 0xff, 0xb7, 0x78, 0x49, 0xff, 0xb8, 0x7a, 0x4a, 0xff, 0xba, 0x7c, 0x4d, 0xff, 0xba, 0x7d, 0x4f, 0xff, 0xbd, 0x82, 0x53, 0xff, 0xbd, 0x82, 0x53, 0xff, 0xa7, 0x6c, 0x42, 0xff, 0x8e, 0x55, 0x32, 0xff, 0x84, 0x4a, 0x29, 0xff, 0x7c, 0x43, 0x21, 0xff, 0x77, 0x40, 0x1e, 0xff, 0x78, 0x40, 0x1f, 0xff, 0x79, 0x3f, 0x1d, 0xff, 0x76, 0x3d, 0x1a, 0xff, 0x72, 0x3a, 0x18, 0xff, 0x72, 0x3a, 0x18, 0xff, 0x71, 0x38, 0x18, 0xff, 0x71, 0x3a, 0x18, 0xff, 0x6e, 0x3a, 0x16, 0xff, 0x71, 0x39, 0x18, 0xff, 0x72, 0x3c, 0x1a, 0xff, 0x74, 0x3c, 0x1b, 0xff, 0x74, 0x3c, 0x1a, 0xff, 0x72, 0x3a, 0x19, 0xff, 0x76, 0x3c, 0x18, 0xff, 0x78, 0x3e, 0x1c, 0xff, 0x7a, 0x3f, 0x1d, 0xff, 0x7e, 0x41, 0x20, 0xff, 0x80, 0x42, 0x21, 0xff, 0x83, 0x45, 0x22, 0xff, 0x85, 0x46, 0x25, 0xff, 0x87, 0x49, 0x27, 0xff, 0x88, 0x4a, 0x27, 0xff, 0x87, 0x48, 0x26, 0xff, 0x87, 0x48, 0x29, 0xff, 0x8a, 0x4b, 0x2a, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x96, 0x57, 0x2f, 0xff, 0x98, 0x59, 0x31, 0xff, 0x9a, 0x5b, 0x33, 0xff, 0x9e, 0x5e, 0x34, 0xff, 0xa0, 0x60, 0x36, 0xff, 0xa5, 0x66, 0x3a, 0xff, 0xaa, 0x6b, 0x3c, 0xff, 0xa9, 0x6b, 0x3e, 0xff, 0x9f, 0x61, 0x38, 0xff, 0x9d, 0x61, 0x38, 0xff, 0xa1, 0x65, 0x3a, 0xff, 0xa2, 0x65, 0x3b, 0xff, 0xa2, 0x65, 0x3b, 0xff, 0xa5, 0x69, 0x3c, 0xff, 0xa6, 0x6b, 0x3c, 0xff, 0xa8, 0x6c, 0x3f, 0xff, 0xa9, 0x6d, 0x3f, 0xff, 0xaa, 0x6d, 0x3e, 0xff, 0xaa, 0x6c, 0x3d, 0xff, 0xaa, 0x6b, 0x3d, 0xff, 0xab, 0x6c, 0x3e, 0xff, 0xad, 0x6e, 0x40, 0xff, 0xad, 0x6e, 0x40, 0xff, 0xad, 0x6d, 0x40, 0xff, 0xb1, 0x72, 0x43, 0xff, 0xb4, 0x76, 0x45, 0xff, 0xb6, 0x79, 0x48, 0xff, 0xb9, 0x7c, 0x4b, 0xff, 0xc1, 0x82, 0x52, 0xff, 0xb4, 0x76, 0x46, 0xff, 0x9a, 0x5b, 0x2f, 0xff, 0xa0, 0x63, 0x36, 0xff, 0xa0, 0x67, 0x39, 0xff, 0xa0, 0x67, 0x39, 0xff, 0xa0, 0x67, 0x39, 0xff, 0xa1, 0x69, 0x3b, 0xff, 0xa0, 0x69, 0x3a, 0xff, 0x9f, 0x69, 0x3a, 0xff, 0xa1, 0x6b, 0x3c, 0xff, 0xa1, 0x6c, 0x3d, 0xff, 0xa0, 0x6b, 0x3d, 0xff, 0xa1, 0x6b, 0x3e, 0xff, 0xa0, 0x6b, 0x3f, 0xff, 0xa1, 0x6d, 0x3f, 0xff, 0xa1, 0x6c, 0x3e, 0xff, 0xa0, 0x6b, 0x3d, 0xff, 0xa1, 0x6c, 0x3e, 0xff, 0xa0, 0x67, 0x3a, 0xff, 0x9a, 0x5d, 0x33, 0xff, 0x9b, 0x5e, 0x34, 0xff, 0xa0, 0x65, 0x37, 0xff, 0xa0, 0x63, 0x37, 0xff, 0xa3, 0x66, 0x38, 0xff, 0xa6, 0x67, 0x39, 0xff, 0xa7, 0x67, 0x38, 0xff, 0xa6, 0x68, 0x39, 0xff, 0xa7, 0x67, 0x38, 0xff, 0xa4, 0x64, 0x36, 0xff, 0xc5, 0x82, 0x4d, 0xff, 0xe8, 0x98, 0x5e, 0xff, 0xe9, 0x93, 0x5b, 0xff, 0xe4, 0x92, 0x58, 0xff, 0xe1, 0x91, 0x56, 0xff, 0xdd, 0x92, 0x59, 0xff, 0xd8, 0x93, 0x5c, 0xff, 0xce, 0x8d, 0x5a, 0xff, 0xc1, 0x84, 0x53, 0xff, 0xb5, 0x78, 0x48, 0xff, 0xb2, 0x74, 0x45, 0xff, 0xb2, 0x73, 0x45, 0xff, 0xad, 0x70, 0x43, 0xff, 0xac, 0x6d, 0x41, 0xff, 0xaa, 0x6c, 0x40, 0xff, 0xa8, 0x6a, 0x3e, 0xff, 0xa7, 0x68, 0x3c, 0xff, 0xa6, 0x67, 0x3a, 0xff, 0xa5, 0x66, 0x39, 0xff, 0xa4, 0x65, 0x39, 0xff, 0xa3, 0x64, 0x38, 0xff, 0xa4, 0x65, 0x39, 0xff, 0xa3, 0x64, 0x39, 0xff, 0xa2, 0x63, 0x38, 0xff, 0xa1, 0x62, 0x38, 0xff, 0xa0, 0x62, 0x37, 0xff, 0xa0, 0x62, 0x37, 0xff, 0x9e, 0x5f, 0x36, 0xff, 0x97, 0x58, 0x32, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x91, 0x53, 0x2d, 0xff, 0x93, 0x54, 0x2e, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x8e, 0x4e, 0x2c, 0xff, 0x8c, 0x4c, 0x2b, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x94, 0x55, 0x30, 0xff, 0x93, 0x54, 0x30, 0xff, 0x96, 0x57, 0x32, 0xff, 0x94, 0x58, 0x33, 0xff, 0x85, 0x4c, 0x2b, 0xff, 0x7f, 0x46, 0x25, 0xff, 0x7c, 0x41, 0x20, 0xff, 0x79, 0x3e, 0x1e, 0xff, 0x78, 0x3d, 0x1a, 0xff, 0x79, 0x3e, 0x1b, 0xff, 0x79, 0x40, 0x1f, 0xff, 0x79, 0x40, 0x20, 0xff, 0x79, 0x40, 0x20, 0xff, 0x7a, 0x3f, 0x1f, 0xff, 0x7a, 0x3f, 0x1f, 0xff, 0x7b, 0x40, 0x21, 0xff, 0x7e, 0x41, 0x20, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x90, 0x51, 0x2f, 0xff, 0x8d, 0x4f, 0x2e, 0xff, 0x8c, 0x4e, 0x2d, 0xff, 0x8d, 0x4f, 0x2e, 0xff, 0x8d, 0x4f, 0x2e, 0xff, 0x8f, 0x51, 0x30, 0xff, 0x91, 0x53, 0x30, 0xff, 0x91, 0x54, 0x31, 0xff, 0x8d, 0x50, 0x2f, 0xff, 0x8c, 0x4f, 0x30, 0xff, 0x93, 0x57, 0x33, 0xff, 0x9a, 0x5d, 0x36, 0xff, 0x95, 0x58, 0x35, 0xff, 0x8e, 0x53, 0x31, 0xff, 0x8b, 0x50, 0x2f, 0xff, 0x88, 0x4b, 0x2d, 0xff, 0x87, 0x4a, 0x2c, 0xff, 0x88, 0x4a, 0x2b, 0xff, 0x86, 0x49, 0x2b, 0xff, 0x85, 0x49, 0x29, 0xff, 0x84, 0x48, 0x28, 0xff, 0x84, 0x49, 0x28, 0xff, 0x84, 0x49, 0x2a, 0xff, 0x83, 0x48, 0x2b, 0xff, 0x85, 0x48, 0x2b, 0xff, 0x85, 0x49, 0x29, 0xff, 0x85, 0x48, 0x26, 0xff, 0x83, 0x46, 0x26, 0xff, 0x83, 0x46, 0x26, 0xff, 0x83, 0x47, 0x26, 0xff, 0x84, 0x48, 0x26, 0xff, 0x86, 0x48, 0x26, 0xff, 0x87, 0x4a, 0x2a, 0xff, 0x87, 0x4a, 0x28, 0xff, 0x87, 0x48, 0x28, 0xff, 0x87, 0x4a, 0x29, 0xff, 0x87, 0x49, 0x2a, 0xff, 0x89, 0x4c, 0x2b, 0xff, 0x8c, 0x4d, 0x2c, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8c, 0x4c, 0x2b, 0xff, 0x8c, 0x4c, 0x2b, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8d, 0x4e, 0x2b, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x95, 0x55, 0x30, 0xff, 0x95, 0x55, 0x30, 0xff, 0x97, 0x57, 0x30, 0xff, + 0x93, 0x54, 0x2f, 0xff, 0x95, 0x56, 0x2f, 0xff, 0x96, 0x57, 0x30, 0xff, 0x96, 0x57, 0x30, 0xff, 0x98, 0x58, 0x31, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x99, 0x5a, 0x33, 0xff, 0xa6, 0x64, 0x39, 0xff, 0xa8, 0x68, 0x3d, 0xff, 0xa9, 0x6a, 0x3d, 0xff, 0xa7, 0x68, 0x3c, 0xff, 0xa7, 0x68, 0x3c, 0xff, 0xaa, 0x6b, 0x3e, 0xff, 0xab, 0x6c, 0x3f, 0xff, 0xaa, 0x6b, 0x3f, 0xff, 0xac, 0x6d, 0x40, 0xff, 0xac, 0x6c, 0x3f, 0xff, 0xa8, 0x68, 0x3c, 0xff, 0xb4, 0x75, 0x45, 0xff, 0xc2, 0x85, 0x54, 0xff, 0xcf, 0x8e, 0x5b, 0xff, 0xd5, 0x8d, 0x5c, 0xff, 0xd6, 0x8b, 0x59, 0xff, 0xd9, 0x8b, 0x58, 0xff, 0xda, 0x8d, 0x58, 0xff, 0xd4, 0x8b, 0x58, 0xff, 0xcb, 0x84, 0x56, 0xff, 0xbb, 0x7c, 0x4d, 0xff, 0xba, 0x7b, 0x4c, 0xff, 0xb4, 0x79, 0x4b, 0xff, 0xae, 0x75, 0x49, 0xff, 0xaa, 0x70, 0x45, 0xff, 0x9e, 0x63, 0x3b, 0xff, 0x87, 0x4b, 0x29, 0xff, 0x6b, 0x35, 0x15, 0xff, 0x71, 0x37, 0x17, 0xff, 0x78, 0x40, 0x1e, 0xff, 0x79, 0x40, 0x1f, 0xff, 0x79, 0x40, 0x1f, 0xff, 0x7a, 0x3f, 0x1d, 0xff, 0x7a, 0x3f, 0x1c, 0xff, 0x78, 0x3f, 0x1d, 0xff, 0x75, 0x3d, 0x1a, 0xff, 0x71, 0x3a, 0x18, 0xff, 0x70, 0x38, 0x18, 0xff, 0x71, 0x38, 0x17, 0xff, 0x6f, 0x36, 0x16, 0xff, 0x6d, 0x37, 0x15, 0xff, 0x70, 0x3a, 0x18, 0xff, 0x71, 0x39, 0x18, 0xff, 0x75, 0x3c, 0x1a, 0xff, 0x72, 0x3c, 0x19, 0xff, 0x70, 0x3b, 0x17, 0xff, 0x74, 0x3c, 0x1a, 0xff, 0x78, 0x3d, 0x1b, 0xff, 0x79, 0x40, 0x1e, 0xff, 0x7c, 0x41, 0x1f, 0xff, 0x7f, 0x42, 0x21, 0xff, 0x81, 0x45, 0x22, 0xff, 0x84, 0x47, 0x25, 0xff, 0x86, 0x49, 0x28, 0xff, 0x87, 0x4a, 0x2a, 0xff, 0x88, 0x49, 0x29, 0xff, 0x88, 0x4a, 0x28, 0xff, 0x8b, 0x4d, 0x2a, 0xff, 0x8e, 0x4e, 0x2c, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x96, 0x56, 0x30, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x9c, 0x5d, 0x34, 0xff, 0x9f, 0x60, 0x36, 0xff, 0xa2, 0x64, 0x38, 0xff, 0xa7, 0x69, 0x39, 0xff, 0xa4, 0x66, 0x39, 0xff, 0x99, 0x5b, 0x34, 0xff, 0x9d, 0x60, 0x37, 0xff, 0x9e, 0x61, 0x38, 0xff, 0xa0, 0x62, 0x38, 0xff, 0xa2, 0x65, 0x38, 0xff, 0xa4, 0x67, 0x39, 0xff, 0xa5, 0x69, 0x3b, 0xff, 0xa7, 0x6b, 0x3c, 0xff, 0xa7, 0x6b, 0x3d, 0xff, 0xa9, 0x6c, 0x3e, 0xff, 0xa9, 0x69, 0x3d, 0xff, 0xa9, 0x6a, 0x3c, 0xff, 0xaa, 0x6b, 0x3c, 0xff, 0xac, 0x6c, 0x3e, 0xff, 0xad, 0x6f, 0x40, 0xff, 0xad, 0x6f, 0x40, 0xff, 0xaf, 0x70, 0x41, 0xff, 0xb3, 0x74, 0x45, 0xff, 0xb6, 0x78, 0x47, 0xff, 0xb8, 0x7c, 0x4b, 0xff, 0xbe, 0x7f, 0x4e, 0xff, 0xc3, 0x83, 0x53, 0xff, 0xb2, 0x75, 0x47, 0xff, 0x9b, 0x62, 0x34, 0xff, 0xa0, 0x67, 0x39, 0xff, 0x9f, 0x67, 0x39, 0xff, 0xa0, 0x67, 0x39, 0xff, 0xa0, 0x67, 0x39, 0xff, 0xa0, 0x68, 0x39, 0xff, 0xa1, 0x6a, 0x3a, 0xff, 0xa0, 0x6a, 0x3c, 0xff, 0xa0, 0x6a, 0x3d, 0xff, 0xa0, 0x6c, 0x3d, 0xff, 0xa1, 0x6c, 0x3e, 0xff, 0xa1, 0x6c, 0x3e, 0xff, 0xa0, 0x6c, 0x3f, 0xff, 0xa0, 0x6b, 0x3e, 0xff, 0xa0, 0x6c, 0x3e, 0xff, 0xa0, 0x6a, 0x3c, 0xff, 0xa0, 0x66, 0x39, 0xff, 0xa0, 0x63, 0x37, 0xff, 0x9f, 0x63, 0x37, 0xff, 0x9f, 0x64, 0x38, 0xff, 0xa1, 0x65, 0x38, 0xff, 0xa4, 0x67, 0x38, 0xff, 0xa6, 0x68, 0x39, 0xff, 0xa7, 0x68, 0x39, 0xff, 0xa7, 0x67, 0x38, 0xff, 0xa7, 0x67, 0x38, 0xff, 0xa6, 0x64, 0x36, 0xff, 0xa7, 0x6a, 0x3c, 0xff, 0xcf, 0x8c, 0x56, 0xff, 0xed, 0x99, 0x5f, 0xff, 0xe6, 0x91, 0x58, 0xff, 0xe2, 0x8e, 0x55, 0xff, 0xdd, 0x8e, 0x55, 0xff, 0xd2, 0x8d, 0x56, 0xff, 0xc9, 0x8a, 0x55, 0xff, 0xc5, 0x87, 0x53, 0xff, 0xc3, 0x84, 0x51, 0xff, 0xba, 0x7a, 0x49, 0xff, 0xb0, 0x70, 0x42, 0xff, 0xae, 0x6e, 0x41, 0xff, 0xac, 0x6d, 0x3f, 0xff, 0xa9, 0x69, 0x3d, 0xff, 0xa7, 0x68, 0x3c, 0xff, 0xa5, 0x66, 0x3b, 0xff, 0xa6, 0x66, 0x3a, 0xff, 0xa6, 0x67, 0x3b, 0xff, 0xa6, 0x67, 0x3b, 0xff, 0xa6, 0x68, 0x3c, 0xff, 0xa7, 0x69, 0x3d, 0xff, 0xa8, 0x69, 0x3d, 0xff, 0xa8, 0x6a, 0x3e, 0xff, 0xa7, 0x6a, 0x3f, 0xff, 0xa6, 0x67, 0x3c, 0xff, 0xa2, 0x63, 0x39, 0xff, 0x9d, 0x5e, 0x36, 0xff, 0x9a, 0x5b, 0x34, 0xff, 0x97, 0x59, 0x32, 0xff, 0x94, 0x57, 0x30, 0xff, 0x95, 0x56, 0x30, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x8f, 0x4f, 0x2d, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x8c, 0x4c, 0x2c, 0xff, 0x8c, 0x4e, 0x2d, 0xff, 0x92, 0x54, 0x2f, 0xff, 0x93, 0x54, 0x30, 0xff, 0x93, 0x53, 0x30, 0xff, 0x95, 0x56, 0x31, 0xff, 0x96, 0x59, 0x34, 0xff, 0x89, 0x4d, 0x2b, 0xff, 0x7e, 0x41, 0x22, 0xff, 0x79, 0x40, 0x1f, 0xff, 0x77, 0x3f, 0x1d, 0xff, 0x77, 0x3d, 0x1d, 0xff, 0x77, 0x3d, 0x1d, 0xff, 0x79, 0x3f, 0x1f, 0xff, 0x79, 0x40, 0x1f, 0xff, 0x7b, 0x41, 0x1f, 0xff, 0x7b, 0x41, 0x1f, 0xff, 0x7b, 0x40, 0x1f, 0xff, 0x7c, 0x40, 0x21, 0xff, 0x7b, 0x40, 0x1e, 0xff, 0x8a, 0x4c, 0x2c, 0xff, 0x90, 0x51, 0x2f, 0xff, 0x8e, 0x4f, 0x2f, 0xff, 0x8d, 0x4f, 0x2e, 0xff, 0x8d, 0x50, 0x2e, 0xff, 0x8d, 0x50, 0x2e, 0xff, 0x8f, 0x52, 0x30, 0xff, 0x90, 0x54, 0x2f, 0xff, 0x90, 0x52, 0x2f, 0xff, 0x8f, 0x51, 0x30, 0xff, 0x8f, 0x52, 0x31, 0xff, 0x98, 0x5b, 0x36, 0xff, 0x94, 0x57, 0x33, 0xff, 0x8c, 0x50, 0x2f, 0xff, 0x8c, 0x4e, 0x2e, 0xff, 0x89, 0x4d, 0x2d, 0xff, 0x88, 0x4b, 0x2d, 0xff, 0x87, 0x4a, 0x2b, 0xff, 0x87, 0x4a, 0x2b, 0xff, 0x85, 0x49, 0x2a, 0xff, 0x85, 0x48, 0x2a, 0xff, 0x84, 0x49, 0x28, 0xff, 0x85, 0x49, 0x2a, 0xff, 0x84, 0x49, 0x2a, 0xff, 0x83, 0x48, 0x2b, 0xff, 0x83, 0x48, 0x2a, 0xff, 0x84, 0x49, 0x29, 0xff, 0x84, 0x47, 0x26, 0xff, 0x83, 0x46, 0x26, 0xff, 0x83, 0x46, 0x26, 0xff, 0x82, 0x47, 0x26, 0xff, 0x85, 0x48, 0x28, 0xff, 0x87, 0x48, 0x28, 0xff, 0x85, 0x48, 0x28, 0xff, 0x86, 0x48, 0x28, 0xff, 0x87, 0x4a, 0x28, 0xff, 0x87, 0x4a, 0x28, 0xff, 0x88, 0x4a, 0x29, 0xff, 0x8c, 0x4c, 0x2b, 0xff, 0x8c, 0x4c, 0x2b, 0xff, 0x8b, 0x4b, 0x2b, 0xff, 0x8a, 0x4a, 0x2a, 0xff, 0x8c, 0x4c, 0x2b, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8f, 0x4e, 0x2d, 0xff, 0x8e, 0x4e, 0x2d, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x93, 0x54, 0x2f, 0xff, + 0x92, 0x52, 0x2e, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x95, 0x55, 0x2f, 0xff, 0x98, 0x57, 0x31, 0xff, 0x96, 0x57, 0x30, 0xff, 0x97, 0x58, 0x31, 0xff, 0x99, 0x59, 0x32, 0xff, 0x9e, 0x5f, 0x34, 0xff, 0xa7, 0x67, 0x3a, 0xff, 0xaa, 0x6a, 0x3d, 0xff, 0xa7, 0x68, 0x3a, 0xff, 0xa6, 0x67, 0x3b, 0xff, 0xa5, 0x66, 0x3b, 0xff, 0xa8, 0x69, 0x3c, 0xff, 0xaa, 0x6b, 0x3e, 0xff, 0xac, 0x6d, 0x3f, 0xff, 0xa9, 0x6a, 0x3f, 0xff, 0xab, 0x6c, 0x3f, 0xff, 0xac, 0x6d, 0x3f, 0xff, 0xad, 0x6d, 0x40, 0xff, 0xad, 0x70, 0x43, 0xff, 0xad, 0x72, 0x46, 0xff, 0xac, 0x72, 0x44, 0xff, 0xa9, 0x6b, 0x3f, 0xff, 0xa7, 0x68, 0x3c, 0xff, 0xa7, 0x68, 0x3c, 0xff, 0xa6, 0x66, 0x3c, 0xff, 0xa6, 0x67, 0x3e, 0xff, 0x7e, 0x43, 0x20, 0xff, 0x6f, 0x34, 0x15, 0xff, 0x76, 0x3b, 0x18, 0xff, 0x74, 0x39, 0x17, 0xff, 0x70, 0x39, 0x18, 0xff, 0x73, 0x3a, 0x19, 0xff, 0x75, 0x3c, 0x1a, 0xff, 0x76, 0x3b, 0x1a, 0xff, 0x79, 0x3f, 0x1d, 0xff, 0x77, 0x3e, 0x1c, 0xff, 0x78, 0x3e, 0x1d, 0xff, 0x79, 0x3f, 0x1c, 0xff, 0x76, 0x3e, 0x1c, 0xff, 0x77, 0x3d, 0x1a, 0xff, 0x72, 0x3a, 0x19, 0xff, 0x70, 0x38, 0x18, 0xff, 0x71, 0x3a, 0x17, 0xff, 0x70, 0x3c, 0x18, 0xff, 0x6e, 0x39, 0x16, 0xff, 0x6d, 0x37, 0x16, 0xff, 0x6d, 0x36, 0x16, 0xff, 0x71, 0x39, 0x18, 0xff, 0x74, 0x3a, 0x1a, 0xff, 0x71, 0x3a, 0x19, 0xff, 0x70, 0x38, 0x17, 0xff, 0x74, 0x3c, 0x18, 0xff, 0x77, 0x3e, 0x1b, 0xff, 0x79, 0x3e, 0x1e, 0xff, 0x7c, 0x3f, 0x1f, 0xff, 0x7e, 0x41, 0x1f, 0xff, 0x81, 0x44, 0x22, 0xff, 0x84, 0x47, 0x25, 0xff, 0x86, 0x49, 0x27, 0xff, 0x88, 0x4a, 0x2a, 0xff, 0x89, 0x4a, 0x29, 0xff, 0x8a, 0x4b, 0x2a, 0xff, 0x8b, 0x4c, 0x2c, 0xff, 0x8e, 0x4f, 0x2b, 0xff, 0x8f, 0x50, 0x2c, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x95, 0x55, 0x30, 0xff, 0x97, 0x58, 0x32, 0xff, 0x9a, 0x5b, 0x34, 0xff, 0x9d, 0x5e, 0x35, 0xff, 0xa2, 0x63, 0x36, 0xff, 0xa3, 0x64, 0x37, 0xff, 0x9e, 0x61, 0x35, 0xff, 0x9a, 0x5c, 0x34, 0xff, 0x9b, 0x5e, 0x35, 0xff, 0x9b, 0x5e, 0x36, 0xff, 0x9d, 0x5e, 0x36, 0xff, 0xa0, 0x62, 0x37, 0xff, 0xa2, 0x64, 0x38, 0xff, 0xa2, 0x65, 0x38, 0xff, 0xa4, 0x67, 0x39, 0xff, 0xa6, 0x69, 0x3b, 0xff, 0xa9, 0x6c, 0x3d, 0xff, 0xaa, 0x6c, 0x3c, 0xff, 0xa6, 0x68, 0x39, 0xff, 0xa8, 0x6a, 0x3b, 0xff, 0xaa, 0x6c, 0x3d, 0xff, 0xab, 0x6d, 0x40, 0xff, 0xad, 0x6e, 0x41, 0xff, 0xaf, 0x70, 0x40, 0xff, 0xb2, 0x73, 0x43, 0xff, 0xb7, 0x78, 0x47, 0xff, 0xbb, 0x7c, 0x4b, 0xff, 0xbd, 0x7f, 0x4e, 0xff, 0xc5, 0x86, 0x54, 0xff, 0xbe, 0x80, 0x4e, 0xff, 0xa2, 0x69, 0x3b, 0xff, 0x9e, 0x65, 0x37, 0xff, 0xa0, 0x67, 0x38, 0xff, 0xa0, 0x68, 0x39, 0xff, 0xa0, 0x68, 0x39, 0xff, 0xa0, 0x68, 0x39, 0xff, 0xa0, 0x68, 0x39, 0xff, 0xa1, 0x6a, 0x3b, 0xff, 0xa1, 0x6a, 0x3c, 0xff, 0xa0, 0x6a, 0x3d, 0xff, 0xa0, 0x6c, 0x3c, 0xff, 0xa1, 0x6c, 0x3d, 0xff, 0xa1, 0x6c, 0x40, 0xff, 0xa0, 0x6d, 0x41, 0xff, 0xa0, 0x6c, 0x3f, 0xff, 0xa0, 0x67, 0x3a, 0xff, 0xa0, 0x65, 0x38, 0xff, 0xa0, 0x65, 0x39, 0xff, 0xa0, 0x63, 0x37, 0xff, 0xa0, 0x64, 0x37, 0xff, 0xa2, 0x67, 0x39, 0xff, 0xa4, 0x66, 0x39, 0xff, 0xa6, 0x66, 0x38, 0xff, 0xa7, 0x68, 0x38, 0xff, 0xa6, 0x67, 0x39, 0xff, 0xa6, 0x66, 0x39, 0xff, 0xa7, 0x66, 0x38, 0xff, 0xa5, 0x63, 0x36, 0xff, 0xae, 0x70, 0x40, 0xff, 0xd6, 0x8e, 0x58, 0xff, 0xec, 0x97, 0x5e, 0xff, 0xe2, 0x90, 0x56, 0xff, 0xd7, 0x8b, 0x54, 0xff, 0xcf, 0x88, 0x53, 0xff, 0xc9, 0x85, 0x50, 0xff, 0xc5, 0x83, 0x4e, 0xff, 0xc1, 0x7f, 0x4c, 0xff, 0xbd, 0x7a, 0x4a, 0xff, 0xba, 0x79, 0x4a, 0xff, 0xb3, 0x74, 0x44, 0xff, 0xac, 0x6c, 0x3f, 0xff, 0xaa, 0x6b, 0x3e, 0xff, 0xa8, 0x69, 0x3e, 0xff, 0xa7, 0x67, 0x3b, 0xff, 0xa6, 0x66, 0x39, 0xff, 0xa5, 0x67, 0x3a, 0xff, 0xa7, 0x69, 0x3c, 0xff, 0xa9, 0x69, 0x3d, 0xff, 0xaa, 0x6c, 0x3e, 0xff, 0xab, 0x6c, 0x40, 0xff, 0xab, 0x6d, 0x42, 0xff, 0xa8, 0x6b, 0x3f, 0xff, 0xa6, 0x68, 0x3d, 0xff, 0xa5, 0x67, 0x3c, 0xff, 0xa2, 0x63, 0x3b, 0xff, 0x9d, 0x5e, 0x37, 0xff, 0x98, 0x5b, 0x34, 0xff, 0x97, 0x59, 0x32, 0xff, 0x95, 0x55, 0x30, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x8e, 0x4e, 0x2c, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8f, 0x50, 0x2c, 0xff, 0x94, 0x54, 0x30, 0xff, 0x94, 0x54, 0x30, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x94, 0x55, 0x30, 0xff, 0x95, 0x57, 0x33, 0xff, 0x89, 0x4c, 0x2a, 0xff, 0x7d, 0x42, 0x21, 0xff, 0x79, 0x3f, 0x1d, 0xff, 0x78, 0x3f, 0x1d, 0xff, 0x78, 0x3f, 0x1d, 0xff, 0x79, 0x40, 0x1f, 0xff, 0x79, 0x3f, 0x1f, 0xff, 0x7a, 0x3f, 0x1f, 0xff, 0x7a, 0x3f, 0x1f, 0xff, 0x7b, 0x40, 0x1f, 0xff, 0x7d, 0x41, 0x21, 0xff, 0x7c, 0x41, 0x21, 0xff, 0x7c, 0x42, 0x21, 0xff, 0x80, 0x46, 0x24, 0xff, 0x8f, 0x51, 0x2f, 0xff, 0x91, 0x52, 0x30, 0xff, 0x8e, 0x51, 0x2f, 0xff, 0x8e, 0x4f, 0x2e, 0xff, 0x8e, 0x51, 0x2f, 0xff, 0x8f, 0x52, 0x30, 0xff, 0x90, 0x52, 0x30, 0xff, 0x92, 0x54, 0x31, 0xff, 0x92, 0x55, 0x32, 0xff, 0x98, 0x5b, 0x36, 0xff, 0x93, 0x57, 0x32, 0xff, 0x8c, 0x50, 0x2f, 0xff, 0x8b, 0x4e, 0x2e, 0xff, 0x8a, 0x4e, 0x2e, 0xff, 0x8a, 0x4d, 0x2d, 0xff, 0x87, 0x4a, 0x2b, 0xff, 0x87, 0x4a, 0x2b, 0xff, 0x86, 0x4a, 0x2a, 0xff, 0x86, 0x4a, 0x2a, 0xff, 0x86, 0x48, 0x28, 0xff, 0x86, 0x4a, 0x2a, 0xff, 0x86, 0x48, 0x2a, 0xff, 0x85, 0x49, 0x29, 0xff, 0x84, 0x48, 0x27, 0xff, 0x82, 0x47, 0x26, 0xff, 0x83, 0x46, 0x26, 0xff, 0x83, 0x46, 0x26, 0xff, 0x82, 0x46, 0x25, 0xff, 0x82, 0x46, 0x24, 0xff, 0x85, 0x48, 0x26, 0xff, 0x85, 0x48, 0x27, 0xff, 0x85, 0x47, 0x28, 0xff, 0x85, 0x48, 0x28, 0xff, 0x84, 0x47, 0x26, 0xff, 0x86, 0x48, 0x26, 0xff, 0x87, 0x49, 0x29, 0xff, 0x89, 0x4b, 0x2a, 0xff, 0x89, 0x4a, 0x2a, 0xff, 0x89, 0x4a, 0x2a, 0xff, 0x89, 0x4a, 0x2a, 0xff, 0x89, 0x4a, 0x2a, 0xff, 0x8a, 0x4a, 0x2a, 0xff, 0x8c, 0x4d, 0x2a, 0xff, 0x8b, 0x4d, 0x2a, 0xff, 0x8c, 0x4d, 0x2a, 0xff, 0x8c, 0x4d, 0x2a, 0xff, 0x8c, 0x4c, 0x2c, 0xff, 0x8d, 0x4d, 0x2c, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x91, 0x51, 0x2e, 0xff, + 0x90, 0x50, 0x2d, 0xff, 0x91, 0x51, 0x2e, 0xff, 0x92, 0x51, 0x2e, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x95, 0x55, 0x2f, 0xff, 0x97, 0x56, 0x30, 0xff, 0x99, 0x5a, 0x31, 0xff, 0x9b, 0x5c, 0x32, 0xff, 0xa5, 0x66, 0x3a, 0xff, 0xa6, 0x64, 0x3a, 0xff, 0xa7, 0x68, 0x3b, 0xff, 0xa7, 0x68, 0x3b, 0xff, 0xa4, 0x65, 0x3a, 0xff, 0xa4, 0x65, 0x3a, 0xff, 0xa7, 0x66, 0x3b, 0xff, 0xa8, 0x68, 0x3c, 0xff, 0xa9, 0x6a, 0x3d, 0xff, 0xa9, 0x6a, 0x3d, 0xff, 0xa9, 0x6a, 0x3d, 0xff, 0xab, 0x6b, 0x3d, 0xff, 0xad, 0x6d, 0x40, 0xff, 0xad, 0x6f, 0x43, 0xff, 0xae, 0x71, 0x45, 0xff, 0xad, 0x70, 0x44, 0xff, 0xac, 0x6d, 0x40, 0xff, 0xab, 0x6a, 0x3f, 0xff, 0xaa, 0x6a, 0x40, 0xff, 0xab, 0x6c, 0x42, 0xff, 0xac, 0x6e, 0x45, 0xff, 0x90, 0x54, 0x2e, 0xff, 0x74, 0x39, 0x18, 0xff, 0x77, 0x3e, 0x1b, 0xff, 0x77, 0x3d, 0x1a, 0xff, 0x74, 0x3b, 0x1a, 0xff, 0x75, 0x3c, 0x19, 0xff, 0x78, 0x3c, 0x1a, 0xff, 0x77, 0x3e, 0x1b, 0xff, 0x77, 0x3e, 0x1b, 0xff, 0x76, 0x3d, 0x1a, 0xff, 0x76, 0x3c, 0x1a, 0xff, 0x73, 0x3b, 0x19, 0xff, 0x73, 0x3b, 0x18, 0xff, 0x71, 0x39, 0x17, 0xff, 0x6f, 0x3b, 0x17, 0xff, 0x70, 0x3a, 0x17, 0xff, 0x6e, 0x39, 0x17, 0xff, 0x6c, 0x32, 0x15, 0xff, 0x6d, 0x36, 0x15, 0xff, 0x6c, 0x37, 0x16, 0xff, 0x70, 0x3a, 0x17, 0xff, 0x71, 0x37, 0x17, 0xff, 0x70, 0x39, 0x17, 0xff, 0x70, 0x38, 0x18, 0xff, 0x74, 0x3c, 0x1a, 0xff, 0x76, 0x3d, 0x1a, 0xff, 0x79, 0x3e, 0x1c, 0xff, 0x7b, 0x3e, 0x1d, 0xff, 0x7e, 0x40, 0x20, 0xff, 0x80, 0x43, 0x21, 0xff, 0x83, 0x46, 0x23, 0xff, 0x85, 0x47, 0x26, 0xff, 0x87, 0x49, 0x29, 0xff, 0x8a, 0x4b, 0x2b, 0xff, 0x8d, 0x4e, 0x2c, 0xff, 0x8c, 0x4c, 0x2c, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x8f, 0x50, 0x2f, 0xff, 0x92, 0x53, 0x30, 0xff, 0x97, 0x57, 0x31, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x9c, 0x5d, 0x34, 0xff, 0x9f, 0x5f, 0x34, 0xff, 0xa0, 0x61, 0x35, 0xff, 0x9b, 0x5d, 0x33, 0xff, 0x98, 0x5a, 0x32, 0xff, 0x9a, 0x5b, 0x34, 0xff, 0x99, 0x5a, 0x34, 0xff, 0x9c, 0x5e, 0x34, 0xff, 0xa0, 0x62, 0x35, 0xff, 0xa0, 0x64, 0x37, 0xff, 0xa2, 0x65, 0x38, 0xff, 0xa3, 0x66, 0x38, 0xff, 0xa5, 0x68, 0x3a, 0xff, 0xa8, 0x6a, 0x3c, 0xff, 0xaa, 0x6c, 0x3c, 0xff, 0xa8, 0x69, 0x3a, 0xff, 0xa8, 0x69, 0x3b, 0xff, 0xa9, 0x6a, 0x3d, 0xff, 0xab, 0x6c, 0x3e, 0xff, 0xad, 0x6f, 0x40, 0xff, 0xb0, 0x72, 0x42, 0xff, 0xb6, 0x76, 0x46, 0xff, 0xbc, 0x7c, 0x4b, 0xff, 0xbf, 0x80, 0x4e, 0xff, 0xbf, 0x81, 0x4f, 0xff, 0xc3, 0x84, 0x52, 0xff, 0xcb, 0x8b, 0x56, 0xff, 0xb9, 0x7b, 0x49, 0xff, 0x9b, 0x64, 0x36, 0xff, 0x9f, 0x68, 0x39, 0xff, 0xa0, 0x68, 0x39, 0xff, 0xa0, 0x66, 0x38, 0xff, 0xa0, 0x66, 0x38, 0xff, 0xa0, 0x68, 0x39, 0xff, 0xa0, 0x68, 0x39, 0xff, 0xa1, 0x68, 0x3b, 0xff, 0xa0, 0x6a, 0x3d, 0xff, 0xa1, 0x6c, 0x3e, 0xff, 0xa0, 0x6b, 0x3e, 0xff, 0xa0, 0x6c, 0x3e, 0xff, 0xa0, 0x6e, 0x3f, 0xff, 0x9f, 0x6a, 0x3d, 0xff, 0x9d, 0x62, 0x36, 0xff, 0x9d, 0x61, 0x36, 0xff, 0x9d, 0x61, 0x37, 0xff, 0x9e, 0x61, 0x37, 0xff, 0xa1, 0x64, 0x37, 0xff, 0xa2, 0x66, 0x38, 0xff, 0xa4, 0x66, 0x38, 0xff, 0xa5, 0x67, 0x38, 0xff, 0xa6, 0x67, 0x38, 0xff, 0xa5, 0x66, 0x38, 0xff, 0xa5, 0x66, 0x39, 0xff, 0xa7, 0x66, 0x39, 0xff, 0xa6, 0x65, 0x38, 0xff, 0xa4, 0x64, 0x36, 0xff, 0xbd, 0x7b, 0x48, 0xff, 0xdf, 0x92, 0x5a, 0xff, 0xdf, 0x8f, 0x56, 0xff, 0xd4, 0x8b, 0x52, 0xff, 0xce, 0x87, 0x52, 0xff, 0xc9, 0x83, 0x4f, 0xff, 0xc3, 0x81, 0x4c, 0xff, 0xbe, 0x7d, 0x4a, 0xff, 0xba, 0x7a, 0x47, 0xff, 0xb7, 0x77, 0x44, 0xff, 0xb4, 0x75, 0x42, 0xff, 0xb1, 0x71, 0x41, 0xff, 0xae, 0x6e, 0x40, 0xff, 0xac, 0x6c, 0x3e, 0xff, 0xaa, 0x6b, 0x3d, 0xff, 0xa9, 0x6a, 0x3c, 0xff, 0xa8, 0x69, 0x3b, 0xff, 0xa7, 0x68, 0x3b, 0xff, 0xa8, 0x69, 0x3d, 0xff, 0xaa, 0x6c, 0x3f, 0xff, 0xab, 0x6e, 0x41, 0xff, 0xad, 0x70, 0x43, 0xff, 0xac, 0x70, 0x44, 0xff, 0xac, 0x70, 0x44, 0xff, 0xa8, 0x6c, 0x41, 0xff, 0xa3, 0x66, 0x3c, 0xff, 0x9e, 0x60, 0x38, 0xff, 0x9a, 0x5b, 0x34, 0xff, 0x9b, 0x5c, 0x33, 0xff, 0x99, 0x59, 0x32, 0xff, 0x93, 0x54, 0x30, 0xff, 0x92, 0x52, 0x2d, 0xff, 0x8f, 0x4f, 0x2d, 0xff, 0x8d, 0x4d, 0x2c, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x95, 0x55, 0x30, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x93, 0x54, 0x30, 0xff, 0x89, 0x4b, 0x29, 0xff, 0x7c, 0x42, 0x21, 0xff, 0x79, 0x3f, 0x1d, 0xff, 0x79, 0x3f, 0x1f, 0xff, 0x78, 0x3e, 0x1d, 0xff, 0x79, 0x40, 0x1f, 0xff, 0x7b, 0x40, 0x1f, 0xff, 0x7b, 0x42, 0x20, 0xff, 0x7b, 0x41, 0x21, 0xff, 0x7c, 0x41, 0x20, 0xff, 0x7e, 0x41, 0x21, 0xff, 0x7d, 0x42, 0x21, 0xff, 0x7c, 0x42, 0x23, 0xff, 0x7d, 0x43, 0x23, 0xff, 0x8a, 0x4d, 0x2b, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x90, 0x52, 0x2f, 0xff, 0x8f, 0x51, 0x2f, 0xff, 0x90, 0x52, 0x2f, 0xff, 0x90, 0x53, 0x30, 0xff, 0x91, 0x53, 0x31, 0xff, 0x94, 0x57, 0x33, 0xff, 0x9e, 0x61, 0x39, 0xff, 0x93, 0x56, 0x32, 0xff, 0x8c, 0x4e, 0x2f, 0xff, 0x8a, 0x4e, 0x2e, 0xff, 0x8a, 0x4e, 0x2e, 0xff, 0x8a, 0x4e, 0x2e, 0xff, 0x89, 0x4c, 0x2d, 0xff, 0x85, 0x49, 0x29, 0xff, 0x86, 0x4a, 0x2a, 0xff, 0x86, 0x49, 0x2a, 0xff, 0x87, 0x49, 0x2a, 0xff, 0x87, 0x4a, 0x2b, 0xff, 0x86, 0x49, 0x2a, 0xff, 0x85, 0x48, 0x29, 0xff, 0x84, 0x48, 0x28, 0xff, 0x83, 0x48, 0x26, 0xff, 0x82, 0x46, 0x26, 0xff, 0x81, 0x45, 0x25, 0xff, 0x84, 0x47, 0x26, 0xff, 0x81, 0x44, 0x24, 0xff, 0x84, 0x46, 0x26, 0xff, 0x83, 0x46, 0x25, 0xff, 0x83, 0x46, 0x26, 0xff, 0x85, 0x47, 0x26, 0xff, 0x85, 0x48, 0x26, 0xff, 0x85, 0x47, 0x27, 0xff, 0x87, 0x49, 0x28, 0xff, 0x88, 0x4a, 0x29, 0xff, 0x89, 0x4a, 0x2a, 0xff, 0x89, 0x4a, 0x2a, 0xff, 0x87, 0x49, 0x28, 0xff, 0x89, 0x4a, 0x28, 0xff, 0x89, 0x4a, 0x28, 0xff, 0x89, 0x4a, 0x2a, 0xff, 0x88, 0x4a, 0x2a, 0xff, 0x89, 0x4a, 0x28, 0xff, 0x89, 0x4a, 0x29, 0xff, 0x8b, 0x49, 0x2a, 0xff, 0x8b, 0x4c, 0x2a, 0xff, 0x8d, 0x4d, 0x2c, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x91, 0x53, 0x2e, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x92, 0x52, 0x2f, 0xff, 0x90, 0x51, 0x2d, 0xff, + 0x90, 0x50, 0x2d, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x93, 0x52, 0x2f, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x95, 0x55, 0x2f, 0xff, 0x96, 0x57, 0x30, 0xff, 0x9b, 0x5b, 0x33, 0xff, 0xa1, 0x61, 0x38, 0xff, 0xa3, 0x63, 0x38, 0xff, 0xa6, 0x66, 0x39, 0xff, 0xa7, 0x65, 0x3a, 0xff, 0xa7, 0x66, 0x3b, 0xff, 0xa2, 0x63, 0x39, 0xff, 0xa4, 0x63, 0x38, 0xff, 0xa6, 0x64, 0x3a, 0xff, 0xa7, 0x66, 0x3a, 0xff, 0xa7, 0x68, 0x3a, 0xff, 0xa7, 0x67, 0x3a, 0xff, 0xa9, 0x68, 0x3d, 0xff, 0xa9, 0x69, 0x3c, 0xff, 0xab, 0x6b, 0x3e, 0xff, 0xac, 0x6d, 0x41, 0xff, 0xad, 0x6f, 0x42, 0xff, 0xad, 0x6e, 0x41, 0xff, 0xaa, 0x6b, 0x3f, 0xff, 0xa9, 0x6a, 0x40, 0xff, 0xac, 0x6a, 0x40, 0xff, 0xac, 0x6d, 0x43, 0xff, 0xae, 0x71, 0x45, 0xff, 0x88, 0x50, 0x2c, 0xff, 0x72, 0x3a, 0x18, 0xff, 0x75, 0x3c, 0x1a, 0xff, 0x76, 0x3e, 0x1a, 0xff, 0x77, 0x3d, 0x1a, 0xff, 0x78, 0x3d, 0x1a, 0xff, 0x75, 0x3e, 0x1a, 0xff, 0x76, 0x3d, 0x1a, 0xff, 0x75, 0x3c, 0x18, 0xff, 0x73, 0x3b, 0x1a, 0xff, 0x73, 0x3a, 0x1a, 0xff, 0x70, 0x34, 0x16, 0xff, 0x6d, 0x38, 0x15, 0xff, 0x6e, 0x36, 0x15, 0xff, 0x6d, 0x38, 0x15, 0xff, 0x6c, 0x34, 0x15, 0xff, 0x6c, 0x36, 0x15, 0xff, 0x6e, 0x33, 0x15, 0xff, 0x6c, 0x35, 0x15, 0xff, 0x6e, 0x37, 0x15, 0xff, 0x71, 0x39, 0x17, 0xff, 0x6f, 0x39, 0x17, 0xff, 0x71, 0x39, 0x17, 0xff, 0x73, 0x3b, 0x19, 0xff, 0x78, 0x3d, 0x1a, 0xff, 0x79, 0x3e, 0x1b, 0xff, 0x7b, 0x3f, 0x1c, 0xff, 0x7c, 0x40, 0x1d, 0xff, 0x80, 0x42, 0x21, 0xff, 0x82, 0x44, 0x23, 0xff, 0x83, 0x45, 0x25, 0xff, 0x85, 0x48, 0x27, 0xff, 0x8a, 0x4b, 0x2c, 0xff, 0x8d, 0x4e, 0x2d, 0xff, 0x8e, 0x50, 0x2e, 0xff, 0x8d, 0x4e, 0x2c, 0xff, 0x8f, 0x50, 0x2e, 0xff, 0x8f, 0x51, 0x2f, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x95, 0x56, 0x30, 0xff, 0x97, 0x58, 0x32, 0xff, 0x9a, 0x5b, 0x33, 0xff, 0x9c, 0x5d, 0x32, 0xff, 0x9e, 0x5d, 0x33, 0xff, 0x9a, 0x59, 0x32, 0xff, 0x97, 0x57, 0x31, 0xff, 0x98, 0x59, 0x31, 0xff, 0x9a, 0x5b, 0x32, 0xff, 0x9d, 0x5f, 0x33, 0xff, 0x9f, 0x60, 0x35, 0xff, 0xa3, 0x62, 0x36, 0xff, 0xa4, 0x65, 0x38, 0xff, 0xa5, 0x67, 0x39, 0xff, 0xa6, 0x68, 0x39, 0xff, 0xa8, 0x6a, 0x3b, 0xff, 0xab, 0x6e, 0x3e, 0xff, 0xab, 0x6c, 0x3e, 0xff, 0xa6, 0x67, 0x3a, 0xff, 0xaa, 0x6a, 0x3d, 0xff, 0xab, 0x6d, 0x3d, 0xff, 0xaf, 0x72, 0x41, 0xff, 0xb7, 0x77, 0x46, 0xff, 0xb9, 0x7a, 0x49, 0xff, 0xbc, 0x7e, 0x4c, 0xff, 0xbe, 0x7f, 0x4d, 0xff, 0xbe, 0x82, 0x4f, 0xff, 0xc0, 0x84, 0x50, 0xff, 0xcd, 0x8d, 0x57, 0xff, 0xc9, 0x89, 0x55, 0xff, 0xa6, 0x6f, 0x3f, 0xff, 0x9d, 0x67, 0x37, 0xff, 0x9f, 0x67, 0x39, 0xff, 0xa0, 0x67, 0x38, 0xff, 0xa0, 0x68, 0x3a, 0xff, 0xa0, 0x69, 0x3a, 0xff, 0xa0, 0x68, 0x39, 0xff, 0xa0, 0x67, 0x39, 0xff, 0xa1, 0x6a, 0x3b, 0xff, 0xa1, 0x6c, 0x3d, 0xff, 0xa0, 0x6c, 0x3d, 0xff, 0xa2, 0x6d, 0x3f, 0xff, 0x9a, 0x65, 0x39, 0xff, 0x91, 0x59, 0x31, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x9e, 0x63, 0x37, 0xff, 0x9c, 0x61, 0x36, 0xff, 0x9c, 0x61, 0x37, 0xff, 0x9c, 0x5f, 0x36, 0xff, 0x9f, 0x64, 0x38, 0xff, 0xa3, 0x67, 0x39, 0xff, 0xa4, 0x66, 0x38, 0xff, 0xa5, 0x66, 0x38, 0xff, 0xa6, 0x68, 0x38, 0xff, 0xa7, 0x68, 0x39, 0xff, 0xa7, 0x68, 0x39, 0xff, 0xa7, 0x68, 0x39, 0xff, 0xa7, 0x68, 0x39, 0xff, 0x9f, 0x61, 0x33, 0xff, 0xc6, 0x80, 0x50, 0xff, 0xe2, 0x96, 0x60, 0xff, 0xd7, 0x8b, 0x54, 0xff, 0xce, 0x87, 0x52, 0xff, 0xc7, 0x83, 0x4f, 0xff, 0xc2, 0x80, 0x4d, 0xff, 0xbe, 0x7d, 0x4a, 0xff, 0xba, 0x79, 0x47, 0xff, 0xb6, 0x75, 0x45, 0xff, 0xb3, 0x72, 0x42, 0xff, 0xaf, 0x70, 0x40, 0xff, 0xad, 0x6c, 0x3e, 0xff, 0xab, 0x6c, 0x3d, 0xff, 0xaa, 0x6b, 0x3d, 0xff, 0xaa, 0x6a, 0x3d, 0xff, 0xa9, 0x6a, 0x3e, 0xff, 0xaa, 0x6c, 0x3f, 0xff, 0xac, 0x6d, 0x40, 0xff, 0xad, 0x70, 0x43, 0xff, 0xae, 0x72, 0x45, 0xff, 0xad, 0x71, 0x44, 0xff, 0xab, 0x70, 0x44, 0xff, 0xac, 0x70, 0x46, 0xff, 0xaa, 0x6e, 0x44, 0xff, 0xa7, 0x6c, 0x40, 0xff, 0xa3, 0x66, 0x3c, 0xff, 0x9f, 0x60, 0x38, 0xff, 0xa0, 0x60, 0x37, 0xff, 0x9c, 0x5c, 0x34, 0xff, 0x97, 0x56, 0x30, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x92, 0x53, 0x2e, 0xff, 0x94, 0x53, 0x30, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2e, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x8d, 0x4e, 0x2c, 0xff, 0x7e, 0x41, 0x20, 0xff, 0x78, 0x3f, 0x1e, 0xff, 0x78, 0x40, 0x1f, 0xff, 0x79, 0x3f, 0x1c, 0xff, 0x7a, 0x3e, 0x1e, 0xff, 0x7b, 0x40, 0x20, 0xff, 0x7c, 0x40, 0x21, 0xff, 0x7e, 0x40, 0x21, 0xff, 0x7e, 0x42, 0x21, 0xff, 0x7f, 0x42, 0x23, 0xff, 0x7f, 0x43, 0x23, 0xff, 0x7f, 0x45, 0x23, 0xff, 0x80, 0x45, 0x24, 0xff, 0x88, 0x4a, 0x2b, 0xff, 0x91, 0x52, 0x30, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x91, 0x54, 0x30, 0xff, 0x93, 0x55, 0x31, 0xff, 0x93, 0x54, 0x31, 0xff, 0x92, 0x52, 0x31, 0xff, 0x9d, 0x5f, 0x38, 0xff, 0x9b, 0x5f, 0x37, 0xff, 0x8e, 0x50, 0x2f, 0xff, 0x8a, 0x4e, 0x2e, 0xff, 0x89, 0x4d, 0x2e, 0xff, 0x89, 0x4d, 0x2d, 0xff, 0x8b, 0x4e, 0x2e, 0xff, 0x89, 0x4c, 0x2d, 0xff, 0x80, 0x45, 0x26, 0xff, 0x86, 0x49, 0x2a, 0xff, 0x86, 0x49, 0x2a, 0xff, 0x86, 0x49, 0x2a, 0xff, 0x87, 0x4b, 0x2b, 0xff, 0x86, 0x49, 0x2a, 0xff, 0x84, 0x48, 0x28, 0xff, 0x84, 0x46, 0x26, 0xff, 0x81, 0x45, 0x25, 0xff, 0x82, 0x47, 0x26, 0xff, 0x86, 0x48, 0x27, 0xff, 0x83, 0x46, 0x25, 0xff, 0x81, 0x45, 0x24, 0xff, 0x81, 0x44, 0x23, 0xff, 0x83, 0x46, 0x23, 0xff, 0x84, 0x45, 0x23, 0xff, 0x83, 0x46, 0x26, 0xff, 0x84, 0x47, 0x27, 0xff, 0x87, 0x49, 0x28, 0xff, 0x86, 0x49, 0x28, 0xff, 0x87, 0x4a, 0x28, 0xff, 0x87, 0x48, 0x26, 0xff, 0x87, 0x49, 0x28, 0xff, 0x86, 0x49, 0x28, 0xff, 0x87, 0x49, 0x28, 0xff, 0x87, 0x49, 0x28, 0xff, 0x88, 0x49, 0x28, 0xff, 0x88, 0x48, 0x28, 0xff, 0x89, 0x4a, 0x28, 0xff, 0x88, 0x49, 0x28, 0xff, 0x88, 0x49, 0x28, 0xff, 0x8b, 0x4b, 0x2a, 0xff, 0x8c, 0x4e, 0x2d, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x91, 0x51, 0x2f, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x91, 0x51, 0x2e, 0xff, + 0x8f, 0x50, 0x2d, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x91, 0x51, 0x2e, 0xff, 0x92, 0x53, 0x2e, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x96, 0x55, 0x30, 0xff, 0x95, 0x55, 0x2f, 0xff, 0x9d, 0x5d, 0x35, 0xff, 0x9e, 0x5e, 0x35, 0xff, 0xa1, 0x61, 0x38, 0xff, 0xa2, 0x62, 0x38, 0xff, 0xa3, 0x63, 0x39, 0xff, 0xa4, 0x63, 0x39, 0xff, 0xa4, 0x65, 0x3a, 0xff, 0xa1, 0x61, 0x38, 0xff, 0xa2, 0x62, 0x38, 0xff, 0xa4, 0x64, 0x38, 0xff, 0xa3, 0x63, 0x39, 0xff, 0xa3, 0x63, 0x39, 0xff, 0xa7, 0x67, 0x3c, 0xff, 0xab, 0x6c, 0x3d, 0xff, 0xa7, 0x68, 0x3b, 0xff, 0xaa, 0x6a, 0x3d, 0xff, 0xaa, 0x6b, 0x3f, 0xff, 0xac, 0x6d, 0x40, 0xff, 0xaa, 0x6b, 0x3f, 0xff, 0xaa, 0x6c, 0x40, 0xff, 0xaa, 0x6a, 0x40, 0xff, 0xab, 0x6b, 0x41, 0xff, 0xb5, 0x77, 0x4b, 0xff, 0xab, 0x6c, 0x43, 0xff, 0x80, 0x46, 0x23, 0xff, 0x77, 0x3e, 0x1b, 0xff, 0x77, 0x3e, 0x1a, 0xff, 0x77, 0x3d, 0x1a, 0xff, 0x75, 0x3e, 0x1a, 0xff, 0x77, 0x3c, 0x1a, 0xff, 0x76, 0x3d, 0x1a, 0xff, 0x74, 0x3c, 0x1a, 0xff, 0x73, 0x3b, 0x1a, 0xff, 0x74, 0x3a, 0x17, 0xff, 0x6e, 0x39, 0x17, 0xff, 0x6d, 0x39, 0x15, 0xff, 0x6d, 0x39, 0x15, 0xff, 0x6d, 0x39, 0x15, 0xff, 0x6c, 0x36, 0x15, 0xff, 0x6c, 0x34, 0x15, 0xff, 0x6c, 0x35, 0x15, 0xff, 0x6d, 0x39, 0x15, 0xff, 0x6e, 0x36, 0x15, 0xff, 0x71, 0x39, 0x17, 0xff, 0x6e, 0x36, 0x15, 0xff, 0x70, 0x39, 0x17, 0xff, 0x74, 0x3c, 0x19, 0xff, 0x78, 0x3d, 0x1a, 0xff, 0x77, 0x3e, 0x1b, 0xff, 0x79, 0x3d, 0x1c, 0xff, 0x7c, 0x41, 0x1d, 0xff, 0x7f, 0x42, 0x21, 0xff, 0x81, 0x43, 0x22, 0xff, 0x84, 0x46, 0x23, 0xff, 0x86, 0x48, 0x26, 0xff, 0x8a, 0x4c, 0x29, 0xff, 0x8c, 0x4d, 0x2d, 0xff, 0x8f, 0x4f, 0x2e, 0xff, 0x92, 0x55, 0x2f, 0xff, 0x90, 0x53, 0x2e, 0xff, 0x8f, 0x50, 0x2e, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x94, 0x56, 0x30, 0xff, 0x96, 0x58, 0x30, 0xff, 0x98, 0x59, 0x30, 0xff, 0x9a, 0x5a, 0x31, 0xff, 0x9a, 0x5c, 0x31, 0xff, 0x97, 0x58, 0x31, 0xff, 0x96, 0x55, 0x30, 0xff, 0x97, 0x58, 0x31, 0xff, 0x9a, 0x5a, 0x32, 0xff, 0x9f, 0x5e, 0x34, 0xff, 0xa0, 0x61, 0x35, 0xff, 0xa2, 0x64, 0x37, 0xff, 0xa5, 0x66, 0x38, 0xff, 0xa6, 0x69, 0x39, 0xff, 0xa8, 0x6a, 0x3a, 0xff, 0xab, 0x6b, 0x3c, 0xff, 0xac, 0x6d, 0x3e, 0xff, 0xac, 0x6e, 0x3f, 0xff, 0xab, 0x6d, 0x3e, 0xff, 0xaa, 0x6c, 0x3d, 0xff, 0xaf, 0x6f, 0x41, 0xff, 0xb4, 0x76, 0x45, 0xff, 0xb7, 0x7a, 0x47, 0xff, 0xba, 0x7c, 0x4a, 0xff, 0xba, 0x7d, 0x4c, 0xff, 0xbb, 0x7f, 0x4d, 0xff, 0xc0, 0x83, 0x4f, 0xff, 0xca, 0x8a, 0x55, 0xff, 0xd6, 0x91, 0x5a, 0xff, 0xd5, 0x8d, 0x58, 0xff, 0xb4, 0x76, 0x44, 0xff, 0x9d, 0x67, 0x38, 0xff, 0xa0, 0x69, 0x39, 0xff, 0xa0, 0x68, 0x38, 0xff, 0xa0, 0x68, 0x39, 0xff, 0x9f, 0x68, 0x39, 0xff, 0xa1, 0x68, 0x3a, 0xff, 0xa1, 0x68, 0x3a, 0xff, 0xa0, 0x6a, 0x3b, 0xff, 0xa1, 0x6c, 0x3d, 0xff, 0xa0, 0x6b, 0x3d, 0xff, 0xa2, 0x6f, 0x42, 0xff, 0x96, 0x61, 0x38, 0xff, 0x85, 0x4d, 0x2b, 0xff, 0x8c, 0x54, 0x30, 0xff, 0x98, 0x5e, 0x35, 0xff, 0x9d, 0x62, 0x37, 0xff, 0x9c, 0x60, 0x37, 0xff, 0x9b, 0x5e, 0x36, 0xff, 0x9d, 0x62, 0x37, 0xff, 0xa3, 0x68, 0x3b, 0xff, 0xa6, 0x6a, 0x3c, 0xff, 0xa6, 0x69, 0x3a, 0xff, 0xa6, 0x6a, 0x39, 0xff, 0xa6, 0x68, 0x39, 0xff, 0xa7, 0x67, 0x39, 0xff, 0xa7, 0x68, 0x39, 0xff, 0xa6, 0x67, 0x39, 0xff, 0xa2, 0x63, 0x37, 0xff, 0x98, 0x5d, 0x32, 0xff, 0xc0, 0x7e, 0x4c, 0xff, 0xdd, 0x93, 0x5c, 0xff, 0xd1, 0x89, 0x54, 0xff, 0xc9, 0x85, 0x51, 0xff, 0xc3, 0x80, 0x4e, 0xff, 0xbf, 0x7c, 0x4b, 0xff, 0xbb, 0x7b, 0x49, 0xff, 0xb7, 0x78, 0x46, 0xff, 0xb5, 0x75, 0x44, 0xff, 0xb2, 0x71, 0x42, 0xff, 0xaf, 0x6e, 0x40, 0xff, 0xad, 0x6c, 0x3f, 0xff, 0xac, 0x6c, 0x3f, 0xff, 0xac, 0x6c, 0x3f, 0xff, 0xaa, 0x6b, 0x3f, 0xff, 0xa9, 0x6a, 0x3f, 0xff, 0xa8, 0x6a, 0x40, 0xff, 0xa8, 0x6c, 0x41, 0xff, 0xab, 0x70, 0x44, 0xff, 0xad, 0x73, 0x46, 0xff, 0xaf, 0x76, 0x48, 0xff, 0xaf, 0x76, 0x49, 0xff, 0xaf, 0x74, 0x49, 0xff, 0xac, 0x71, 0x46, 0xff, 0xa8, 0x6b, 0x42, 0xff, 0xa7, 0x6a, 0x40, 0xff, 0xa4, 0x66, 0x3a, 0xff, 0x9f, 0x5f, 0x36, 0xff, 0x9a, 0x59, 0x33, 0xff, 0x97, 0x56, 0x31, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x91, 0x53, 0x2d, 0xff, 0x93, 0x55, 0x2f, 0xff, 0x94, 0x54, 0x30, 0xff, 0x93, 0x52, 0x2f, 0xff, 0x91, 0x51, 0x2f, 0xff, 0x8f, 0x50, 0x2e, 0xff, 0x90, 0x51, 0x2f, 0xff, 0x91, 0x52, 0x30, 0xff, 0x7d, 0x43, 0x21, 0xff, 0x79, 0x3f, 0x1c, 0xff, 0x7a, 0x3f, 0x1f, 0xff, 0x7b, 0x3f, 0x1f, 0xff, 0x7b, 0x40, 0x1f, 0xff, 0x7c, 0x42, 0x21, 0xff, 0x7d, 0x42, 0x21, 0xff, 0x7f, 0x41, 0x21, 0xff, 0x7f, 0x43, 0x23, 0xff, 0x7f, 0x44, 0x23, 0xff, 0x7f, 0x45, 0x23, 0xff, 0x81, 0x45, 0x25, 0xff, 0x82, 0x47, 0x26, 0xff, 0x82, 0x44, 0x26, 0xff, 0x8e, 0x50, 0x2e, 0xff, 0x94, 0x54, 0x31, 0xff, 0x94, 0x55, 0x33, 0xff, 0x94, 0x56, 0x33, 0xff, 0x90, 0x53, 0x31, 0xff, 0x99, 0x5b, 0x35, 0xff, 0xa2, 0x63, 0x3a, 0xff, 0x92, 0x54, 0x32, 0xff, 0x8b, 0x4d, 0x2f, 0xff, 0x8a, 0x4e, 0x2e, 0xff, 0x88, 0x4c, 0x2d, 0xff, 0x89, 0x4d, 0x2d, 0xff, 0x8b, 0x4c, 0x2e, 0xff, 0x89, 0x4b, 0x2d, 0xff, 0x82, 0x46, 0x27, 0xff, 0x7f, 0x42, 0x25, 0xff, 0x85, 0x48, 0x29, 0xff, 0x86, 0x49, 0x2a, 0xff, 0x86, 0x49, 0x2a, 0xff, 0x86, 0x49, 0x2b, 0xff, 0x86, 0x49, 0x29, 0xff, 0x84, 0x46, 0x25, 0xff, 0x82, 0x45, 0x25, 0xff, 0x86, 0x48, 0x28, 0xff, 0x85, 0x47, 0x28, 0xff, 0x7f, 0x45, 0x23, 0xff, 0x7f, 0x43, 0x23, 0xff, 0x7f, 0x43, 0x23, 0xff, 0x81, 0x45, 0x25, 0xff, 0x83, 0x45, 0x23, 0xff, 0x83, 0x46, 0x24, 0xff, 0x87, 0x4a, 0x28, 0xff, 0x87, 0x49, 0x2a, 0xff, 0x87, 0x4a, 0x2a, 0xff, 0x86, 0x48, 0x28, 0xff, 0x85, 0x47, 0x27, 0xff, 0x86, 0x48, 0x26, 0xff, 0x86, 0x48, 0x28, 0xff, 0x87, 0x48, 0x26, 0xff, 0x86, 0x49, 0x28, 0xff, 0x88, 0x49, 0x28, 0xff, 0x88, 0x48, 0x28, 0xff, 0x88, 0x48, 0x28, 0xff, 0x88, 0x49, 0x28, 0xff, 0x88, 0x4a, 0x2a, 0xff, 0x88, 0x4a, 0x2a, 0xff, 0x8b, 0x4c, 0x2c, 0xff, 0x8c, 0x4d, 0x2c, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x8f, 0x50, 0x2e, 0xff, 0x8f, 0x50, 0x2d, 0xff, + 0x8f, 0x50, 0x2d, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x92, 0x54, 0x2e, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x95, 0x55, 0x30, 0xff, 0x98, 0x59, 0x31, 0xff, 0x9c, 0x5c, 0x36, 0xff, 0x9c, 0x5c, 0x35, 0xff, 0xa0, 0x5f, 0x38, 0xff, 0xa0, 0x60, 0x38, 0xff, 0xa0, 0x60, 0x38, 0xff, 0xa2, 0x60, 0x38, 0xff, 0xa2, 0x63, 0x38, 0xff, 0xa4, 0x65, 0x39, 0xff, 0xa1, 0x61, 0x37, 0xff, 0xa1, 0x61, 0x36, 0xff, 0xa2, 0x62, 0x38, 0xff, 0xa2, 0x62, 0x38, 0xff, 0xa3, 0x62, 0x38, 0xff, 0xac, 0x6b, 0x3f, 0xff, 0xa9, 0x68, 0x3d, 0xff, 0xa5, 0x64, 0x38, 0xff, 0xa7, 0x67, 0x3c, 0xff, 0xa8, 0x68, 0x3d, 0xff, 0xa9, 0x6a, 0x3f, 0xff, 0xab, 0x6b, 0x3f, 0xff, 0xab, 0x6a, 0x40, 0xff, 0xab, 0x6b, 0x41, 0xff, 0xaf, 0x70, 0x44, 0xff, 0xb5, 0x76, 0x49, 0xff, 0xa6, 0x69, 0x3f, 0xff, 0x7b, 0x40, 0x20, 0xff, 0x78, 0x3e, 0x1c, 0xff, 0x77, 0x3e, 0x1b, 0xff, 0x77, 0x3d, 0x1b, 0xff, 0x75, 0x3d, 0x1b, 0xff, 0x74, 0x3c, 0x1a, 0xff, 0x74, 0x3b, 0x18, 0xff, 0x74, 0x3a, 0x19, 0xff, 0x70, 0x3a, 0x17, 0xff, 0x6e, 0x39, 0x17, 0xff, 0x6c, 0x38, 0x15, 0xff, 0x6d, 0x39, 0x15, 0xff, 0x6e, 0x37, 0x15, 0xff, 0x6c, 0x35, 0x15, 0xff, 0x6b, 0x36, 0x15, 0xff, 0x6c, 0x39, 0x15, 0xff, 0x6d, 0x38, 0x15, 0xff, 0x6f, 0x38, 0x17, 0xff, 0x70, 0x38, 0x17, 0xff, 0x6f, 0x38, 0x16, 0xff, 0x71, 0x38, 0x17, 0xff, 0x73, 0x3a, 0x19, 0xff, 0x75, 0x3c, 0x1a, 0xff, 0x78, 0x3c, 0x1a, 0xff, 0x7a, 0x3d, 0x1b, 0xff, 0x7c, 0x41, 0x1e, 0xff, 0x7d, 0x41, 0x20, 0xff, 0x7f, 0x43, 0x21, 0xff, 0x84, 0x46, 0x23, 0xff, 0x87, 0x48, 0x26, 0xff, 0x88, 0x4a, 0x29, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x92, 0x53, 0x30, 0xff, 0x94, 0x57, 0x32, 0xff, 0x93, 0x55, 0x31, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x96, 0x56, 0x2f, 0xff, 0x98, 0x58, 0x30, 0xff, 0x99, 0x58, 0x30, 0xff, 0x97, 0x56, 0x30, 0xff, 0x96, 0x56, 0x30, 0xff, 0x97, 0x58, 0x31, 0xff, 0x9b, 0x5a, 0x32, 0xff, 0x9f, 0x5e, 0x34, 0xff, 0xa1, 0x61, 0x35, 0xff, 0xa4, 0x65, 0x37, 0xff, 0xa6, 0x67, 0x39, 0xff, 0xa8, 0x6a, 0x3a, 0xff, 0xaa, 0x6b, 0x3c, 0xff, 0xac, 0x6d, 0x3e, 0xff, 0xad, 0x70, 0x40, 0xff, 0xae, 0x73, 0x42, 0xff, 0xae, 0x72, 0x41, 0xff, 0xae, 0x70, 0x40, 0xff, 0xb1, 0x73, 0x43, 0xff, 0xb2, 0x77, 0x45, 0xff, 0xb7, 0x7c, 0x49, 0xff, 0xba, 0x7d, 0x4a, 0xff, 0xba, 0x7d, 0x4b, 0xff, 0xbc, 0x7e, 0x4d, 0xff, 0xc6, 0x86, 0x52, 0xff, 0xce, 0x8d, 0x56, 0xff, 0xcf, 0x8d, 0x56, 0xff, 0xda, 0x94, 0x5e, 0xff, 0xc9, 0x88, 0x53, 0xff, 0xa1, 0x6a, 0x3b, 0xff, 0x9f, 0x6a, 0x3a, 0xff, 0xa0, 0x6a, 0x3a, 0xff, 0xa0, 0x68, 0x3a, 0xff, 0xa0, 0x69, 0x3a, 0xff, 0xa0, 0x69, 0x3a, 0xff, 0xa0, 0x68, 0x3b, 0xff, 0xa1, 0x6a, 0x3d, 0xff, 0xa0, 0x6c, 0x3d, 0xff, 0xa2, 0x6e, 0x3f, 0xff, 0x9a, 0x65, 0x39, 0xff, 0x8c, 0x52, 0x2e, 0xff, 0x89, 0x4f, 0x2d, 0xff, 0x87, 0x4f, 0x2d, 0xff, 0x8a, 0x53, 0x2f, 0xff, 0x96, 0x5c, 0x34, 0xff, 0x9d, 0x5f, 0x36, 0xff, 0x9d, 0x5f, 0x35, 0xff, 0x9b, 0x5e, 0x34, 0xff, 0xa0, 0x65, 0x39, 0xff, 0xa4, 0x6b, 0x3d, 0xff, 0xa6, 0x6c, 0x3d, 0xff, 0xa7, 0x6b, 0x3d, 0xff, 0xa8, 0x6d, 0x3d, 0xff, 0xaa, 0x6e, 0x3e, 0xff, 0xa9, 0x6c, 0x3d, 0xff, 0xa3, 0x64, 0x38, 0xff, 0x9e, 0x5e, 0x35, 0xff, 0x9c, 0x5c, 0x34, 0xff, 0x9d, 0x5d, 0x33, 0xff, 0xbd, 0x79, 0x48, 0xff, 0xd6, 0x8e, 0x58, 0xff, 0xce, 0x89, 0x54, 0xff, 0xc5, 0x83, 0x51, 0xff, 0xc0, 0x7f, 0x4e, 0xff, 0xbc, 0x7b, 0x4a, 0xff, 0xb8, 0x77, 0x47, 0xff, 0xb5, 0x76, 0x45, 0xff, 0xb2, 0x74, 0x43, 0xff, 0xaf, 0x6f, 0x40, 0xff, 0xac, 0x6d, 0x3e, 0xff, 0xaa, 0x6b, 0x3d, 0xff, 0xa8, 0x69, 0x3c, 0xff, 0xa6, 0x68, 0x3d, 0xff, 0xa6, 0x68, 0x3d, 0xff, 0xa8, 0x6b, 0x40, 0xff, 0xab, 0x6f, 0x43, 0xff, 0xae, 0x73, 0x47, 0xff, 0xb2, 0x76, 0x4a, 0xff, 0xb4, 0x78, 0x4c, 0xff, 0xb5, 0x7b, 0x4f, 0xff, 0xb5, 0x7a, 0x4e, 0xff, 0xb3, 0x78, 0x4b, 0xff, 0xae, 0x72, 0x47, 0xff, 0xa9, 0x6c, 0x42, 0xff, 0xa8, 0x69, 0x3e, 0xff, 0xa2, 0x62, 0x39, 0xff, 0x9c, 0x5d, 0x34, 0xff, 0x99, 0x59, 0x32, 0xff, 0x94, 0x54, 0x30, 0xff, 0x94, 0x53, 0x2e, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x97, 0x57, 0x30, 0xff, 0x94, 0x54, 0x30, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x91, 0x51, 0x2f, 0xff, 0x95, 0x55, 0x32, 0xff, 0x82, 0x44, 0x22, 0xff, 0x7a, 0x40, 0x1e, 0xff, 0x7b, 0x40, 0x20, 0xff, 0x7c, 0x40, 0x20, 0xff, 0x7d, 0x40, 0x21, 0xff, 0x7f, 0x42, 0x22, 0xff, 0x7f, 0x42, 0x22, 0xff, 0x7e, 0x41, 0x23, 0xff, 0x80, 0x43, 0x24, 0xff, 0x81, 0x45, 0x24, 0xff, 0x81, 0x45, 0x25, 0xff, 0x83, 0x46, 0x27, 0xff, 0x84, 0x49, 0x28, 0xff, 0x84, 0x48, 0x29, 0xff, 0x89, 0x4b, 0x2c, 0xff, 0x96, 0x59, 0x34, 0xff, 0x95, 0x58, 0x35, 0xff, 0x91, 0x53, 0x31, 0xff, 0x9b, 0x5c, 0x36, 0xff, 0xa8, 0x6a, 0x3f, 0xff, 0x95, 0x56, 0x32, 0xff, 0x8f, 0x52, 0x30, 0xff, 0x8b, 0x50, 0x2e, 0xff, 0x8b, 0x4d, 0x2e, 0xff, 0x8a, 0x4d, 0x2d, 0xff, 0x89, 0x4d, 0x2d, 0xff, 0x8a, 0x4d, 0x2d, 0xff, 0x86, 0x49, 0x2b, 0xff, 0x82, 0x45, 0x26, 0xff, 0x7f, 0x42, 0x25, 0xff, 0x80, 0x45, 0x25, 0xff, 0x86, 0x49, 0x2a, 0xff, 0x85, 0x49, 0x29, 0xff, 0x86, 0x4a, 0x2a, 0xff, 0x85, 0x49, 0x29, 0xff, 0x85, 0x48, 0x28, 0xff, 0x87, 0x49, 0x2a, 0xff, 0x87, 0x48, 0x29, 0xff, 0x82, 0x46, 0x25, 0xff, 0x7f, 0x44, 0x23, 0xff, 0x81, 0x43, 0x23, 0xff, 0x81, 0x43, 0x23, 0xff, 0x80, 0x43, 0x23, 0xff, 0x81, 0x46, 0x25, 0xff, 0x86, 0x48, 0x28, 0xff, 0x86, 0x49, 0x28, 0xff, 0x86, 0x49, 0x28, 0xff, 0x86, 0x48, 0x28, 0xff, 0x85, 0x47, 0x26, 0xff, 0x85, 0x47, 0x25, 0xff, 0x86, 0x47, 0x25, 0xff, 0x86, 0x47, 0x25, 0xff, 0x86, 0x47, 0x25, 0xff, 0x86, 0x48, 0x26, 0xff, 0x86, 0x48, 0x27, 0xff, 0x86, 0x47, 0x27, 0xff, 0x87, 0x49, 0x28, 0xff, 0x87, 0x48, 0x27, 0xff, 0x88, 0x49, 0x28, 0xff, 0x88, 0x49, 0x29, 0xff, 0x89, 0x4a, 0x2a, 0xff, 0x8b, 0x4c, 0x2c, 0xff, 0x8c, 0x4c, 0x2c, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8f, 0x50, 0x2c, 0xff, 0x8f, 0x50, 0x2d, 0xff, + 0x90, 0x50, 0x2d, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x93, 0x52, 0x2f, 0xff, 0x94, 0x54, 0x30, 0xff, 0x96, 0x57, 0x30, 0xff, 0x99, 0x5a, 0x33, 0xff, 0x9b, 0x5c, 0x35, 0xff, 0x9c, 0x5c, 0x34, 0xff, 0x9e, 0x5e, 0x35, 0xff, 0xa0, 0x60, 0x38, 0xff, 0x9f, 0x5f, 0x37, 0xff, 0xa0, 0x5f, 0x38, 0xff, 0xa2, 0x62, 0x38, 0xff, 0xa4, 0x63, 0x38, 0xff, 0xa2, 0x63, 0x38, 0xff, 0x9f, 0x5f, 0x36, 0xff, 0xa0, 0x60, 0x36, 0xff, 0xa0, 0x60, 0x37, 0xff, 0xa1, 0x62, 0x38, 0xff, 0xa4, 0x64, 0x38, 0xff, 0xac, 0x6c, 0x3f, 0xff, 0xa9, 0x69, 0x3c, 0xff, 0xa4, 0x64, 0x39, 0xff, 0xa6, 0x68, 0x3c, 0xff, 0xa9, 0x69, 0x3d, 0xff, 0xaa, 0x6a, 0x40, 0xff, 0xab, 0x6c, 0x41, 0xff, 0xac, 0x6c, 0x40, 0xff, 0xad, 0x6f, 0x43, 0xff, 0xb5, 0x76, 0x49, 0xff, 0xb1, 0x72, 0x46, 0xff, 0xa3, 0x67, 0x40, 0xff, 0x79, 0x3f, 0x20, 0xff, 0x7a, 0x3f, 0x1b, 0xff, 0x79, 0x3f, 0x1c, 0xff, 0x77, 0x3e, 0x1c, 0xff, 0x74, 0x3e, 0x1b, 0xff, 0x74, 0x3c, 0x18, 0xff, 0x74, 0x3a, 0x17, 0xff, 0x6f, 0x3a, 0x16, 0xff, 0x6e, 0x37, 0x16, 0xff, 0x6f, 0x38, 0x17, 0xff, 0x6e, 0x34, 0x15, 0xff, 0x6d, 0x38, 0x15, 0xff, 0x6c, 0x37, 0x15, 0xff, 0x6c, 0x35, 0x15, 0xff, 0x6d, 0x37, 0x15, 0xff, 0x6f, 0x39, 0x17, 0xff, 0x70, 0x38, 0x17, 0xff, 0x70, 0x37, 0x17, 0xff, 0x70, 0x3a, 0x17, 0xff, 0x72, 0x3a, 0x19, 0xff, 0x74, 0x3a, 0x19, 0xff, 0x76, 0x3c, 0x18, 0xff, 0x77, 0x3d, 0x1c, 0xff, 0x7a, 0x40, 0x1e, 0xff, 0x7e, 0x41, 0x1f, 0xff, 0x7e, 0x41, 0x1f, 0xff, 0x81, 0x44, 0x21, 0xff, 0x84, 0x45, 0x23, 0xff, 0x86, 0x46, 0x26, 0xff, 0x89, 0x49, 0x28, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x8d, 0x4f, 0x2e, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x94, 0x57, 0x30, 0xff, 0x93, 0x54, 0x30, 0xff, 0x8f, 0x50, 0x2e, 0xff, 0x91, 0x53, 0x2d, 0xff, 0x93, 0x52, 0x2d, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x96, 0x55, 0x2f, 0xff, 0x97, 0x56, 0x30, 0xff, 0x94, 0x54, 0x30, 0xff, 0x96, 0x57, 0x30, 0xff, 0x98, 0x59, 0x31, 0xff, 0x9c, 0x5d, 0x32, 0xff, 0xa0, 0x5f, 0x34, 0xff, 0xa3, 0x63, 0x36, 0xff, 0xa6, 0x66, 0x39, 0xff, 0xaa, 0x6a, 0x3b, 0xff, 0xab, 0x6d, 0x3e, 0xff, 0xad, 0x6e, 0x3f, 0xff, 0xaf, 0x70, 0x41, 0xff, 0xb0, 0x74, 0x43, 0xff, 0xb2, 0x76, 0x44, 0xff, 0xb3, 0x78, 0x46, 0xff, 0xb3, 0x76, 0x45, 0xff, 0xb4, 0x76, 0x44, 0xff, 0xb6, 0x7a, 0x47, 0xff, 0xb7, 0x7d, 0x4b, 0xff, 0xb9, 0x7e, 0x4c, 0xff, 0xba, 0x80, 0x4d, 0xff, 0xc1, 0x84, 0x50, 0xff, 0xcd, 0x8c, 0x55, 0xff, 0xcd, 0x8c, 0x54, 0xff, 0xcc, 0x8c, 0x55, 0xff, 0xd7, 0x92, 0x5b, 0xff, 0xd1, 0x8d, 0x57, 0xff, 0xa9, 0x72, 0x41, 0xff, 0x9f, 0x68, 0x39, 0xff, 0x9f, 0x6a, 0x3b, 0xff, 0xa0, 0x6a, 0x3c, 0xff, 0xa1, 0x6b, 0x3d, 0xff, 0xa0, 0x6a, 0x3d, 0xff, 0xa1, 0x6b, 0x3d, 0xff, 0xa0, 0x6a, 0x3c, 0xff, 0xa0, 0x6b, 0x3c, 0xff, 0xa1, 0x6d, 0x3e, 0xff, 0x96, 0x5f, 0x36, 0xff, 0x88, 0x4f, 0x2c, 0xff, 0x88, 0x50, 0x2d, 0xff, 0x88, 0x51, 0x2e, 0xff, 0x88, 0x51, 0x2e, 0xff, 0x88, 0x4f, 0x2e, 0xff, 0x90, 0x54, 0x30, 0xff, 0x9b, 0x5d, 0x34, 0xff, 0x9d, 0x5f, 0x36, 0xff, 0x9e, 0x61, 0x37, 0xff, 0xa3, 0x67, 0x3b, 0xff, 0xa6, 0x6b, 0x3e, 0xff, 0xa7, 0x6c, 0x3e, 0xff, 0xa8, 0x6c, 0x3d, 0xff, 0xaa, 0x6d, 0x3e, 0xff, 0xa4, 0x67, 0x39, 0xff, 0x9f, 0x60, 0x35, 0xff, 0x9e, 0x5d, 0x34, 0xff, 0x9e, 0x5c, 0x35, 0xff, 0x9d, 0x5d, 0x34, 0xff, 0x9d, 0x5e, 0x33, 0xff, 0xbe, 0x7b, 0x4c, 0xff, 0xd3, 0x8d, 0x59, 0xff, 0xc8, 0x85, 0x53, 0xff, 0xc0, 0x80, 0x4e, 0xff, 0xbc, 0x7c, 0x4a, 0xff, 0xb7, 0x77, 0x47, 0xff, 0xb5, 0x75, 0x45, 0xff, 0xb2, 0x72, 0x43, 0xff, 0xaf, 0x6f, 0x42, 0xff, 0xac, 0x6d, 0x3f, 0xff, 0xa9, 0x6a, 0x3d, 0xff, 0xa7, 0x68, 0x3c, 0xff, 0xa6, 0x68, 0x3c, 0xff, 0xa7, 0x6a, 0x3f, 0xff, 0xaa, 0x6e, 0x43, 0xff, 0xad, 0x71, 0x45, 0xff, 0xb1, 0x75, 0x48, 0xff, 0xb5, 0x7a, 0x4d, 0xff, 0xb8, 0x7e, 0x51, 0xff, 0xb9, 0x80, 0x54, 0xff, 0xb8, 0x7e, 0x53, 0xff, 0xb6, 0x7c, 0x50, 0xff, 0xb2, 0x77, 0x4b, 0xff, 0xac, 0x71, 0x45, 0xff, 0xaa, 0x6e, 0x42, 0xff, 0xa4, 0x66, 0x3b, 0xff, 0x9e, 0x5e, 0x35, 0xff, 0x9a, 0x5b, 0x32, 0xff, 0x95, 0x56, 0x2f, 0xff, 0x93, 0x52, 0x2f, 0xff, 0x93, 0x52, 0x2e, 0xff, 0x95, 0x56, 0x30, 0xff, 0x95, 0x54, 0x30, 0xff, 0x92, 0x54, 0x2f, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x92, 0x52, 0x2f, 0xff, 0x95, 0x55, 0x31, 0xff, 0x89, 0x4c, 0x2a, 0xff, 0x7f, 0x41, 0x21, 0xff, 0x7c, 0x41, 0x21, 0xff, 0x7d, 0x41, 0x22, 0xff, 0x7f, 0x41, 0x22, 0xff, 0x80, 0x43, 0x23, 0xff, 0x7e, 0x44, 0x23, 0xff, 0x7f, 0x45, 0x25, 0xff, 0x81, 0x46, 0x25, 0xff, 0x84, 0x47, 0x26, 0xff, 0x86, 0x49, 0x28, 0xff, 0x87, 0x4a, 0x2b, 0xff, 0x88, 0x49, 0x2c, 0xff, 0x87, 0x4a, 0x2c, 0xff, 0x88, 0x4c, 0x2d, 0xff, 0x8d, 0x50, 0x2f, 0xff, 0x92, 0x55, 0x32, 0xff, 0x9f, 0x61, 0x38, 0xff, 0xac, 0x6b, 0x42, 0xff, 0x95, 0x58, 0x34, 0xff, 0x8f, 0x51, 0x30, 0xff, 0x91, 0x53, 0x31, 0xff, 0x8d, 0x51, 0x30, 0xff, 0x8b, 0x4d, 0x2e, 0xff, 0x89, 0x4d, 0x2d, 0xff, 0x88, 0x4b, 0x2c, 0xff, 0x87, 0x4a, 0x2b, 0xff, 0x84, 0x48, 0x27, 0xff, 0x81, 0x45, 0x27, 0xff, 0x7f, 0x44, 0x25, 0xff, 0x7e, 0x42, 0x23, 0xff, 0x82, 0x46, 0x27, 0xff, 0x85, 0x48, 0x28, 0xff, 0x85, 0x48, 0x28, 0xff, 0x84, 0x49, 0x2a, 0xff, 0x88, 0x4c, 0x2d, 0xff, 0x88, 0x4a, 0x2b, 0xff, 0x85, 0x47, 0x28, 0xff, 0x80, 0x46, 0x24, 0xff, 0x80, 0x44, 0x23, 0xff, 0x7f, 0x43, 0x23, 0xff, 0x81, 0x44, 0x25, 0xff, 0x81, 0x44, 0x24, 0xff, 0x84, 0x47, 0x26, 0xff, 0x86, 0x47, 0x26, 0xff, 0x87, 0x48, 0x2a, 0xff, 0x86, 0x48, 0x27, 0xff, 0x85, 0x47, 0x27, 0xff, 0x85, 0x47, 0x27, 0xff, 0x85, 0x47, 0x26, 0xff, 0x85, 0x46, 0x25, 0xff, 0x85, 0x46, 0x25, 0xff, 0x86, 0x47, 0x25, 0xff, 0x85, 0x46, 0x25, 0xff, 0x86, 0x47, 0x25, 0xff, 0x86, 0x46, 0x25, 0xff, 0x87, 0x47, 0x26, 0xff, 0x86, 0x48, 0x27, 0xff, 0x88, 0x48, 0x27, 0xff, 0x89, 0x4a, 0x27, 0xff, 0x89, 0x4a, 0x29, 0xff, 0x88, 0x4b, 0x29, 0xff, 0x8a, 0x4b, 0x2b, 0xff, 0x8c, 0x4d, 0x2c, 0xff, 0x8d, 0x4d, 0x2c, 0xff, 0x8f, 0x50, 0x2c, 0xff, + 0x90, 0x50, 0x2d, 0xff, 0x93, 0x52, 0x2e, 0xff, 0x93, 0x53, 0x30, 0xff, 0x96, 0x57, 0x30, 0xff, 0x98, 0x57, 0x31, 0xff, 0x9a, 0x59, 0x33, 0xff, 0x9a, 0x5b, 0x34, 0xff, 0x9a, 0x5d, 0x35, 0xff, 0x9c, 0x5d, 0x36, 0xff, 0x9e, 0x5e, 0x38, 0xff, 0xa0, 0x60, 0x39, 0xff, 0xa1, 0x60, 0x38, 0xff, 0xa1, 0x61, 0x38, 0xff, 0xa1, 0x60, 0x38, 0xff, 0xa1, 0x62, 0x38, 0xff, 0xa4, 0x63, 0x39, 0xff, 0xa2, 0x62, 0x38, 0xff, 0x9f, 0x5e, 0x35, 0xff, 0x9e, 0x5e, 0x35, 0xff, 0xa0, 0x60, 0x37, 0xff, 0xa1, 0x61, 0x38, 0xff, 0xa5, 0x66, 0x39, 0xff, 0xab, 0x6b, 0x3f, 0xff, 0xa9, 0x68, 0x3d, 0xff, 0xa5, 0x66, 0x3a, 0xff, 0xa7, 0x67, 0x3d, 0xff, 0xa9, 0x69, 0x3f, 0xff, 0xa9, 0x6a, 0x3f, 0xff, 0xab, 0x6b, 0x41, 0xff, 0xad, 0x6f, 0x43, 0xff, 0xb5, 0x76, 0x49, 0xff, 0xb5, 0x75, 0x48, 0xff, 0xb0, 0x72, 0x45, 0xff, 0x9a, 0x5e, 0x38, 0xff, 0x76, 0x3c, 0x1b, 0xff, 0x79, 0x3f, 0x1f, 0xff, 0x79, 0x3d, 0x1c, 0xff, 0x78, 0x3d, 0x1b, 0xff, 0x75, 0x3c, 0x18, 0xff, 0x73, 0x3b, 0x1a, 0xff, 0x70, 0x38, 0x17, 0xff, 0x72, 0x3a, 0x17, 0xff, 0x70, 0x3a, 0x17, 0xff, 0x6c, 0x39, 0x15, 0xff, 0x6d, 0x37, 0x15, 0xff, 0x6d, 0x34, 0x15, 0xff, 0x70, 0x38, 0x17, 0xff, 0x70, 0x37, 0x17, 0xff, 0x72, 0x3a, 0x19, 0xff, 0x72, 0x3a, 0x1a, 0xff, 0x70, 0x38, 0x17, 0xff, 0x70, 0x3b, 0x18, 0xff, 0x72, 0x3a, 0x18, 0xff, 0x73, 0x3b, 0x17, 0xff, 0x75, 0x3b, 0x18, 0xff, 0x78, 0x3d, 0x1c, 0xff, 0x7b, 0x3f, 0x1e, 0xff, 0x7d, 0x40, 0x1f, 0xff, 0x7e, 0x41, 0x1f, 0xff, 0x80, 0x42, 0x20, 0xff, 0x84, 0x45, 0x23, 0xff, 0x86, 0x47, 0x26, 0xff, 0x88, 0x49, 0x29, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x8e, 0x50, 0x2d, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x93, 0x53, 0x2d, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x95, 0x55, 0x2f, 0xff, 0x95, 0x56, 0x30, 0xff, 0x96, 0x58, 0x30, 0xff, 0x99, 0x5a, 0x31, 0xff, 0x9e, 0x5d, 0x33, 0xff, 0xa1, 0x61, 0x35, 0xff, 0xa4, 0x65, 0x37, 0xff, 0xa8, 0x69, 0x3a, 0xff, 0xac, 0x6d, 0x3d, 0xff, 0xae, 0x71, 0x41, 0xff, 0xb1, 0x73, 0x44, 0xff, 0xb3, 0x77, 0x45, 0xff, 0xb5, 0x79, 0x47, 0xff, 0xb5, 0x7b, 0x4a, 0xff, 0xb5, 0x7b, 0x4b, 0xff, 0xb6, 0x7b, 0x4a, 0xff, 0xb6, 0x7a, 0x49, 0xff, 0xb7, 0x7c, 0x4a, 0xff, 0xb9, 0x7e, 0x4c, 0xff, 0xba, 0x7f, 0x4d, 0xff, 0xbc, 0x82, 0x4e, 0xff, 0xc5, 0x89, 0x52, 0xff, 0xce, 0x8f, 0x56, 0xff, 0xcd, 0x8e, 0x56, 0xff, 0xcc, 0x8d, 0x57, 0xff, 0xd1, 0x90, 0x59, 0xff, 0xda, 0x96, 0x60, 0xff, 0xbd, 0x80, 0x4f, 0xff, 0x99, 0x65, 0x37, 0xff, 0xa1, 0x6c, 0x3c, 0xff, 0xa1, 0x6a, 0x3c, 0xff, 0xa0, 0x6b, 0x3d, 0xff, 0xa0, 0x6c, 0x3e, 0xff, 0xa0, 0x6b, 0x3d, 0xff, 0xa0, 0x6a, 0x3d, 0xff, 0xa2, 0x6d, 0x3e, 0xff, 0x9d, 0x68, 0x3c, 0xff, 0x8f, 0x57, 0x32, 0xff, 0x88, 0x4f, 0x2c, 0xff, 0x88, 0x51, 0x2d, 0xff, 0x89, 0x51, 0x2e, 0xff, 0x88, 0x50, 0x2e, 0xff, 0x81, 0x49, 0x28, 0xff, 0x81, 0x47, 0x27, 0xff, 0x8e, 0x53, 0x2f, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x9e, 0x60, 0x37, 0xff, 0xa0, 0x64, 0x3a, 0xff, 0xa4, 0x69, 0x3d, 0xff, 0xa7, 0x6c, 0x3f, 0xff, 0xa9, 0x6e, 0x3f, 0xff, 0xa4, 0x68, 0x3a, 0xff, 0x9f, 0x61, 0x35, 0xff, 0xa0, 0x60, 0x37, 0xff, 0x9f, 0x60, 0x36, 0xff, 0x9e, 0x5e, 0x34, 0xff, 0x9e, 0x5e, 0x34, 0xff, 0x9e, 0x5d, 0x35, 0xff, 0x98, 0x59, 0x30, 0xff, 0xb8, 0x76, 0x47, 0xff, 0xcf, 0x8b, 0x58, 0xff, 0xc4, 0x83, 0x50, 0xff, 0xbd, 0x7e, 0x4c, 0xff, 0xba, 0x7a, 0x4a, 0xff, 0xb5, 0x76, 0x47, 0xff, 0xb1, 0x72, 0x44, 0xff, 0xaf, 0x6f, 0x42, 0xff, 0xad, 0x6e, 0x40, 0xff, 0xa9, 0x6a, 0x3e, 0xff, 0xa6, 0x67, 0x3d, 0xff, 0xa6, 0x69, 0x3f, 0xff, 0xa8, 0x6b, 0x40, 0xff, 0xab, 0x6f, 0x43, 0xff, 0xaf, 0x74, 0x47, 0xff, 0xb2, 0x77, 0x4b, 0xff, 0xb8, 0x7c, 0x50, 0xff, 0xbc, 0x81, 0x55, 0xff, 0xba, 0x84, 0x56, 0xff, 0xb9, 0x83, 0x56, 0xff, 0xb7, 0x80, 0x54, 0xff, 0xb5, 0x7b, 0x4f, 0xff, 0xb0, 0x75, 0x48, 0xff, 0xaa, 0x6d, 0x41, 0xff, 0xa6, 0x68, 0x3c, 0xff, 0xa2, 0x62, 0x37, 0xff, 0x9d, 0x5d, 0x34, 0xff, 0x97, 0x57, 0x31, 0xff, 0x95, 0x56, 0x2f, 0xff, 0x95, 0x54, 0x2f, 0xff, 0x95, 0x56, 0x2f, 0xff, 0x95, 0x55, 0x30, 0xff, 0x94, 0x54, 0x30, 0xff, 0x94, 0x54, 0x30, 0xff, 0x94, 0x54, 0x30, 0xff, 0x95, 0x55, 0x30, 0xff, 0x8f, 0x51, 0x2f, 0xff, 0x83, 0x46, 0x25, 0xff, 0x7e, 0x43, 0x21, 0xff, 0x7f, 0x44, 0x22, 0xff, 0x80, 0x46, 0x24, 0xff, 0x83, 0x46, 0x25, 0xff, 0x81, 0x46, 0x24, 0xff, 0x83, 0x47, 0x26, 0xff, 0x86, 0x48, 0x2a, 0xff, 0x88, 0x4c, 0x2d, 0xff, 0x8b, 0x4f, 0x2f, 0xff, 0x8a, 0x4e, 0x2d, 0xff, 0x87, 0x4a, 0x2c, 0xff, 0x89, 0x4c, 0x2c, 0xff, 0x89, 0x4d, 0x2d, 0xff, 0x86, 0x4b, 0x2d, 0xff, 0x9e, 0x61, 0x3a, 0xff, 0xb8, 0x79, 0x4d, 0xff, 0x9c, 0x5e, 0x37, 0xff, 0x8f, 0x52, 0x31, 0xff, 0x90, 0x54, 0x31, 0xff, 0x93, 0x54, 0x31, 0xff, 0x90, 0x53, 0x30, 0xff, 0x8b, 0x4e, 0x2e, 0xff, 0x88, 0x4b, 0x2c, 0xff, 0x87, 0x49, 0x2b, 0xff, 0x85, 0x49, 0x29, 0xff, 0x83, 0x46, 0x27, 0xff, 0x81, 0x46, 0x25, 0xff, 0x7f, 0x44, 0x23, 0xff, 0x7f, 0x44, 0x23, 0xff, 0x80, 0x45, 0x25, 0xff, 0x85, 0x49, 0x28, 0xff, 0x83, 0x47, 0x27, 0xff, 0x86, 0x4a, 0x2a, 0xff, 0x88, 0x4d, 0x2d, 0xff, 0x88, 0x4a, 0x2c, 0xff, 0x85, 0x47, 0x27, 0xff, 0x82, 0x46, 0x25, 0xff, 0x80, 0x44, 0x23, 0xff, 0x80, 0x41, 0x23, 0xff, 0x80, 0x44, 0x24, 0xff, 0x83, 0x46, 0x25, 0xff, 0x85, 0x47, 0x25, 0xff, 0x85, 0x47, 0x27, 0xff, 0x85, 0x47, 0x25, 0xff, 0x85, 0x47, 0x27, 0xff, 0x85, 0x47, 0x27, 0xff, 0x86, 0x49, 0x28, 0xff, 0x85, 0x47, 0x26, 0xff, 0x85, 0x47, 0x27, 0xff, 0x85, 0x47, 0x25, 0xff, 0x84, 0x47, 0x25, 0xff, 0x83, 0x46, 0x24, 0xff, 0x84, 0x46, 0x25, 0xff, 0x85, 0x47, 0x25, 0xff, 0x87, 0x48, 0x25, 0xff, 0x87, 0x48, 0x25, 0xff, 0x88, 0x48, 0x27, 0xff, 0x88, 0x49, 0x27, 0xff, 0x89, 0x4a, 0x28, 0xff, 0x88, 0x4a, 0x29, 0xff, 0x88, 0x49, 0x2b, 0xff, 0x8c, 0x4d, 0x29, 0xff, 0x8e, 0x4d, 0x2c, 0xff, 0x90, 0x50, 0x2d, 0xff, + 0x93, 0x53, 0x2f, 0xff, 0x95, 0x55, 0x30, 0xff, 0x96, 0x57, 0x31, 0xff, 0x98, 0x59, 0x33, 0xff, 0x9c, 0x5c, 0x35, 0xff, 0x9c, 0x5e, 0x35, 0xff, 0x9a, 0x5d, 0x36, 0xff, 0x9d, 0x5d, 0x37, 0xff, 0x9f, 0x60, 0x39, 0xff, 0x9f, 0x62, 0x3a, 0xff, 0xa1, 0x63, 0x3c, 0xff, 0xa3, 0x65, 0x3c, 0xff, 0xa1, 0x63, 0x3a, 0xff, 0xa2, 0x63, 0x3a, 0xff, 0xa2, 0x62, 0x38, 0xff, 0xa2, 0x63, 0x39, 0xff, 0xa4, 0x63, 0x39, 0xff, 0xa1, 0x61, 0x36, 0xff, 0x9d, 0x5d, 0x35, 0xff, 0x9e, 0x5e, 0x35, 0xff, 0x9f, 0x5e, 0x37, 0xff, 0xa2, 0x63, 0x39, 0xff, 0xaa, 0x6a, 0x3c, 0xff, 0xad, 0x6d, 0x3f, 0xff, 0xa7, 0x68, 0x3d, 0xff, 0xa6, 0x66, 0x3c, 0xff, 0xa8, 0x6a, 0x3e, 0xff, 0xab, 0x6c, 0x41, 0xff, 0xab, 0x6c, 0x43, 0xff, 0xad, 0x6f, 0x42, 0xff, 0xb1, 0x73, 0x46, 0xff, 0xb4, 0x75, 0x48, 0xff, 0xb4, 0x76, 0x49, 0xff, 0xb0, 0x72, 0x49, 0xff, 0x8e, 0x52, 0x2d, 0xff, 0x7b, 0x40, 0x20, 0xff, 0x7b, 0x41, 0x1e, 0xff, 0x79, 0x3e, 0x1b, 0xff, 0x78, 0x3d, 0x1b, 0xff, 0x75, 0x3b, 0x17, 0xff, 0x75, 0x3a, 0x18, 0xff, 0x73, 0x3b, 0x17, 0xff, 0x71, 0x39, 0x17, 0xff, 0x71, 0x39, 0x17, 0xff, 0x70, 0x3a, 0x17, 0xff, 0x71, 0x39, 0x17, 0xff, 0x71, 0x39, 0x18, 0xff, 0x74, 0x3c, 0x18, 0xff, 0x75, 0x3d, 0x1b, 0xff, 0x72, 0x3d, 0x1a, 0xff, 0x70, 0x3b, 0x1a, 0xff, 0x71, 0x3a, 0x1a, 0xff, 0x71, 0x3a, 0x19, 0xff, 0x74, 0x39, 0x17, 0xff, 0x78, 0x3d, 0x18, 0xff, 0x79, 0x3f, 0x1b, 0xff, 0x7b, 0x3f, 0x1c, 0xff, 0x7c, 0x40, 0x1f, 0xff, 0x7f, 0x43, 0x1f, 0xff, 0x81, 0x44, 0x21, 0xff, 0x81, 0x45, 0x22, 0xff, 0x83, 0x45, 0x24, 0xff, 0x86, 0x48, 0x27, 0xff, 0x89, 0x4b, 0x2c, 0xff, 0x8b, 0x4e, 0x2d, 0xff, 0x8f, 0x50, 0x2e, 0xff, 0x90, 0x52, 0x2d, 0xff, 0x8c, 0x4e, 0x2a, 0xff, 0x8a, 0x4b, 0x2a, 0xff, 0x8d, 0x4e, 0x2c, 0xff, 0x8e, 0x4f, 0x2b, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x95, 0x56, 0x2f, 0xff, 0x96, 0x57, 0x30, 0xff, 0x99, 0x59, 0x31, 0xff, 0x9e, 0x5e, 0x32, 0xff, 0xa0, 0x5f, 0x34, 0xff, 0xa2, 0x62, 0x36, 0xff, 0xa7, 0x67, 0x38, 0xff, 0xab, 0x6c, 0x3b, 0xff, 0xaf, 0x71, 0x40, 0xff, 0xb2, 0x75, 0x45, 0xff, 0xb5, 0x78, 0x48, 0xff, 0xb7, 0x7c, 0x4b, 0xff, 0xb9, 0x80, 0x4e, 0xff, 0xba, 0x82, 0x50, 0xff, 0xba, 0x82, 0x4f, 0xff, 0xb9, 0x81, 0x4e, 0xff, 0xb8, 0x80, 0x4d, 0xff, 0xb8, 0x80, 0x4c, 0xff, 0xb9, 0x80, 0x4d, 0xff, 0xb9, 0x81, 0x4d, 0xff, 0xc0, 0x85, 0x50, 0xff, 0xcf, 0x90, 0x58, 0xff, 0xd2, 0x90, 0x58, 0xff, 0xd0, 0x90, 0x57, 0xff, 0xce, 0x8e, 0x57, 0xff, 0xd0, 0x8f, 0x58, 0xff, 0xde, 0x96, 0x5e, 0xff, 0xce, 0x8c, 0x57, 0xff, 0xa2, 0x70, 0x41, 0xff, 0x9f, 0x6b, 0x3d, 0xff, 0xa1, 0x6c, 0x3e, 0xff, 0xa1, 0x6c, 0x3e, 0xff, 0x9f, 0x6b, 0x3d, 0xff, 0xa0, 0x6c, 0x3f, 0xff, 0xa0, 0x6b, 0x3e, 0xff, 0xa0, 0x6b, 0x3d, 0xff, 0x99, 0x62, 0x38, 0xff, 0x8b, 0x52, 0x2f, 0xff, 0x89, 0x4e, 0x2d, 0xff, 0x8a, 0x50, 0x2d, 0xff, 0x8a, 0x52, 0x2f, 0xff, 0x84, 0x4c, 0x29, 0xff, 0x7e, 0x45, 0x24, 0xff, 0x7f, 0x46, 0x27, 0xff, 0x82, 0x47, 0x29, 0xff, 0x88, 0x4d, 0x2c, 0xff, 0x96, 0x5a, 0x33, 0xff, 0x9f, 0x61, 0x37, 0xff, 0xa1, 0x66, 0x3a, 0xff, 0xa7, 0x6d, 0x40, 0xff, 0xa7, 0x6c, 0x3f, 0xff, 0xa2, 0x64, 0x38, 0xff, 0xa0, 0x61, 0x37, 0xff, 0xa0, 0x63, 0x38, 0xff, 0xa0, 0x62, 0x36, 0xff, 0x9e, 0x60, 0x34, 0xff, 0x9d, 0x5e, 0x35, 0xff, 0x9d, 0x5d, 0x34, 0xff, 0x9e, 0x5f, 0x35, 0xff, 0x96, 0x56, 0x2d, 0xff, 0xae, 0x6f, 0x41, 0xff, 0xc4, 0x84, 0x54, 0xff, 0xc0, 0x7f, 0x4f, 0xff, 0xba, 0x7b, 0x4b, 0xff, 0xb6, 0x77, 0x48, 0xff, 0xb2, 0x74, 0x45, 0xff, 0xb0, 0x72, 0x44, 0xff, 0xab, 0x6d, 0x40, 0xff, 0xa9, 0x6c, 0x40, 0xff, 0xa8, 0x6a, 0x3f, 0xff, 0xa7, 0x69, 0x3f, 0xff, 0xa9, 0x6c, 0x41, 0xff, 0xac, 0x70, 0x44, 0xff, 0xb0, 0x75, 0x49, 0xff, 0xb7, 0x7b, 0x4e, 0xff, 0xbc, 0x80, 0x52, 0xff, 0xbe, 0x83, 0x55, 0xff, 0xbd, 0x86, 0x59, 0xff, 0xba, 0x85, 0x5b, 0xff, 0xb8, 0x82, 0x57, 0xff, 0xb8, 0x7f, 0x53, 0xff, 0xb4, 0x78, 0x4c, 0xff, 0xae, 0x71, 0x45, 0xff, 0xaa, 0x6c, 0x40, 0xff, 0xa4, 0x65, 0x3a, 0xff, 0x9e, 0x60, 0x36, 0xff, 0x9a, 0x5a, 0x33, 0xff, 0x98, 0x59, 0x31, 0xff, 0x97, 0x57, 0x30, 0xff, 0x96, 0x58, 0x31, 0xff, 0x95, 0x58, 0x30, 0xff, 0x96, 0x57, 0x31, 0xff, 0x95, 0x55, 0x30, 0xff, 0x96, 0x56, 0x32, 0xff, 0x96, 0x57, 0x31, 0xff, 0x94, 0x55, 0x31, 0xff, 0x86, 0x49, 0x28, 0xff, 0x80, 0x45, 0x24, 0xff, 0x80, 0x46, 0x25, 0xff, 0x81, 0x45, 0x26, 0xff, 0x84, 0x46, 0x27, 0xff, 0x84, 0x48, 0x27, 0xff, 0x86, 0x4a, 0x2b, 0xff, 0x8a, 0x4e, 0x2f, 0xff, 0x89, 0x50, 0x2f, 0xff, 0x8a, 0x4f, 0x2e, 0xff, 0x88, 0x4c, 0x2c, 0xff, 0x89, 0x4d, 0x2c, 0xff, 0x89, 0x4c, 0x2d, 0xff, 0x87, 0x4a, 0x2c, 0xff, 0x86, 0x48, 0x29, 0xff, 0x8b, 0x4c, 0x28, 0xff, 0xa1, 0x64, 0x3c, 0xff, 0x93, 0x55, 0x33, 0xff, 0x92, 0x52, 0x32, 0xff, 0x94, 0x56, 0x32, 0xff, 0x94, 0x54, 0x31, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x89, 0x4d, 0x2d, 0xff, 0x87, 0x4a, 0x2c, 0xff, 0x87, 0x49, 0x2b, 0xff, 0x83, 0x47, 0x29, 0xff, 0x82, 0x45, 0x26, 0xff, 0x80, 0x44, 0x24, 0xff, 0x81, 0x45, 0x25, 0xff, 0x7f, 0x44, 0x23, 0xff, 0x7d, 0x41, 0x22, 0xff, 0x82, 0x45, 0x26, 0xff, 0x85, 0x48, 0x28, 0xff, 0x89, 0x4b, 0x2b, 0xff, 0x88, 0x4b, 0x2c, 0xff, 0x87, 0x4a, 0x2c, 0xff, 0x85, 0x48, 0x28, 0xff, 0x83, 0x46, 0x25, 0xff, 0x81, 0x46, 0x24, 0xff, 0x7f, 0x43, 0x23, 0xff, 0x81, 0x44, 0x22, 0xff, 0x83, 0x46, 0x25, 0xff, 0x84, 0x46, 0x25, 0xff, 0x82, 0x45, 0x25, 0xff, 0x83, 0x45, 0x23, 0xff, 0x83, 0x46, 0x25, 0xff, 0x85, 0x47, 0x27, 0xff, 0x85, 0x47, 0x27, 0xff, 0x85, 0x47, 0x25, 0xff, 0x85, 0x47, 0x25, 0xff, 0x84, 0x47, 0x27, 0xff, 0x84, 0x46, 0x25, 0xff, 0x84, 0x45, 0x23, 0xff, 0x85, 0x46, 0x23, 0xff, 0x84, 0x46, 0x25, 0xff, 0x85, 0x47, 0x26, 0xff, 0x86, 0x49, 0x26, 0xff, 0x87, 0x49, 0x25, 0xff, 0x88, 0x49, 0x29, 0xff, 0x88, 0x4a, 0x29, 0xff, 0x88, 0x4a, 0x29, 0xff, 0x8a, 0x4b, 0x2b, 0xff, 0x8c, 0x4d, 0x2c, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x91, 0x51, 0x2e, 0xff, + 0x95, 0x55, 0x30, 0xff, 0x97, 0x58, 0x31, 0xff, 0x9a, 0x5b, 0x34, 0xff, 0x9d, 0x5d, 0x37, 0xff, 0xa0, 0x62, 0x38, 0xff, 0x9e, 0x61, 0x39, 0xff, 0x9d, 0x61, 0x38, 0xff, 0xa1, 0x65, 0x3c, 0xff, 0xa1, 0x65, 0x3e, 0xff, 0xa3, 0x67, 0x40, 0xff, 0xa4, 0x68, 0x40, 0xff, 0xa8, 0x6c, 0x42, 0xff, 0xa7, 0x69, 0x41, 0xff, 0xa5, 0x67, 0x3f, 0xff, 0xa4, 0x66, 0x3c, 0xff, 0xa4, 0x65, 0x3b, 0xff, 0xa4, 0x65, 0x3b, 0xff, 0xa3, 0x64, 0x39, 0xff, 0x9f, 0x5f, 0x36, 0xff, 0x9f, 0x5d, 0x35, 0xff, 0x9f, 0x5f, 0x37, 0xff, 0xa0, 0x60, 0x37, 0xff, 0xa4, 0x64, 0x3a, 0xff, 0xa9, 0x6a, 0x3c, 0xff, 0xac, 0x6e, 0x40, 0xff, 0xa6, 0x67, 0x3c, 0xff, 0xa9, 0x6a, 0x3f, 0xff, 0xaa, 0x6b, 0x41, 0xff, 0xab, 0x6d, 0x41, 0xff, 0xab, 0x6e, 0x42, 0xff, 0xae, 0x72, 0x44, 0xff, 0xb2, 0x75, 0x47, 0xff, 0xb5, 0x75, 0x48, 0xff, 0xb6, 0x77, 0x4b, 0xff, 0xa9, 0x6c, 0x44, 0xff, 0x7e, 0x41, 0x21, 0xff, 0x7f, 0x41, 0x22, 0xff, 0x7c, 0x40, 0x1f, 0xff, 0x7a, 0x3e, 0x1b, 0xff, 0x77, 0x3d, 0x18, 0xff, 0x76, 0x3c, 0x1a, 0xff, 0x75, 0x3b, 0x18, 0xff, 0x72, 0x39, 0x16, 0xff, 0x73, 0x3b, 0x18, 0xff, 0x74, 0x3b, 0x17, 0xff, 0x76, 0x3b, 0x17, 0xff, 0x75, 0x3c, 0x19, 0xff, 0x75, 0x3d, 0x1b, 0xff, 0x76, 0x3d, 0x1b, 0xff, 0x72, 0x3b, 0x1a, 0xff, 0x70, 0x3b, 0x1a, 0xff, 0x71, 0x3b, 0x19, 0xff, 0x73, 0x3a, 0x18, 0xff, 0x74, 0x3b, 0x17, 0xff, 0x77, 0x3c, 0x18, 0xff, 0x78, 0x3e, 0x1a, 0xff, 0x7a, 0x3f, 0x1b, 0xff, 0x7d, 0x40, 0x1f, 0xff, 0x7f, 0x41, 0x1f, 0xff, 0x80, 0x44, 0x21, 0xff, 0x81, 0x45, 0x21, 0xff, 0x84, 0x45, 0x24, 0xff, 0x86, 0x48, 0x26, 0xff, 0x87, 0x4a, 0x2b, 0xff, 0x8a, 0x4c, 0x2c, 0xff, 0x8b, 0x4e, 0x2d, 0xff, 0x8b, 0x4c, 0x29, 0xff, 0x88, 0x4a, 0x25, 0xff, 0x89, 0x4a, 0x28, 0xff, 0x8a, 0x4a, 0x29, 0xff, 0x8c, 0x4d, 0x2a, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x94, 0x55, 0x2f, 0xff, 0x96, 0x57, 0x31, 0xff, 0x9b, 0x5c, 0x33, 0xff, 0xa0, 0x5f, 0x34, 0xff, 0xa1, 0x61, 0x35, 0xff, 0xa5, 0x64, 0x37, 0xff, 0xa9, 0x69, 0x39, 0xff, 0xae, 0x6e, 0x3e, 0xff, 0xb4, 0x74, 0x44, 0xff, 0xb7, 0x7a, 0x48, 0xff, 0xb9, 0x7f, 0x4d, 0xff, 0xbd, 0x83, 0x51, 0xff, 0xbf, 0x85, 0x53, 0xff, 0xbf, 0x89, 0x56, 0xff, 0xbf, 0x89, 0x56, 0xff, 0xbe, 0x89, 0x55, 0xff, 0xbc, 0x85, 0x53, 0xff, 0xba, 0x82, 0x50, 0xff, 0xbb, 0x82, 0x50, 0xff, 0xbb, 0x83, 0x51, 0xff, 0xc6, 0x8a, 0x55, 0xff, 0xd6, 0x92, 0x5b, 0xff, 0xd4, 0x90, 0x5a, 0xff, 0xd3, 0x91, 0x5b, 0xff, 0xcf, 0x91, 0x5a, 0xff, 0xd0, 0x91, 0x5a, 0xff, 0xd9, 0x94, 0x5c, 0xff, 0xd4, 0x93, 0x5c, 0xff, 0xb2, 0x7c, 0x4c, 0xff, 0x9d, 0x6a, 0x3e, 0xff, 0xa0, 0x6e, 0x40, 0xff, 0xa0, 0x6e, 0x3f, 0xff, 0xa0, 0x6d, 0x3f, 0xff, 0xa1, 0x6d, 0x3f, 0xff, 0xa1, 0x6c, 0x3f, 0xff, 0x9f, 0x6a, 0x3d, 0xff, 0x94, 0x5c, 0x34, 0xff, 0x89, 0x50, 0x2d, 0xff, 0x89, 0x50, 0x2e, 0xff, 0x8a, 0x51, 0x2e, 0xff, 0x88, 0x50, 0x2d, 0xff, 0x81, 0x49, 0x29, 0xff, 0x7f, 0x46, 0x26, 0xff, 0x7f, 0x46, 0x27, 0xff, 0x7f, 0x46, 0x26, 0xff, 0x81, 0x48, 0x28, 0xff, 0x87, 0x4d, 0x2c, 0xff, 0x92, 0x55, 0x31, 0xff, 0x9d, 0x60, 0x37, 0xff, 0xa4, 0x69, 0x3b, 0xff, 0xa2, 0x67, 0x39, 0xff, 0x9f, 0x61, 0x37, 0xff, 0xa0, 0x61, 0x38, 0xff, 0xa0, 0x63, 0x37, 0xff, 0xa1, 0x63, 0x37, 0xff, 0xa1, 0x63, 0x36, 0xff, 0x9f, 0x60, 0x34, 0xff, 0x9d, 0x5d, 0x33, 0xff, 0x9c, 0x5d, 0x33, 0xff, 0x9c, 0x5d, 0x34, 0xff, 0x98, 0x59, 0x31, 0xff, 0xa2, 0x63, 0x38, 0xff, 0xb9, 0x7b, 0x4b, 0xff, 0xbe, 0x7f, 0x4f, 0xff, 0xb8, 0x79, 0x4a, 0xff, 0xb4, 0x76, 0x47, 0xff, 0xaf, 0x70, 0x44, 0xff, 0xac, 0x6d, 0x42, 0xff, 0xab, 0x6c, 0x41, 0xff, 0xaa, 0x6b, 0x40, 0xff, 0xa9, 0x6b, 0x41, 0xff, 0xab, 0x6d, 0x41, 0xff, 0xae, 0x71, 0x44, 0xff, 0xb3, 0x77, 0x4b, 0xff, 0xb7, 0x7c, 0x4f, 0xff, 0xbd, 0x81, 0x53, 0xff, 0xbf, 0x85, 0x58, 0xff, 0xbe, 0x89, 0x5a, 0xff, 0xbd, 0x89, 0x5b, 0xff, 0xbb, 0x86, 0x59, 0xff, 0xb9, 0x81, 0x55, 0xff, 0xb6, 0x7c, 0x4e, 0xff, 0xb0, 0x75, 0x47, 0xff, 0xab, 0x6e, 0x42, 0xff, 0xa7, 0x68, 0x3c, 0xff, 0xa2, 0x63, 0x38, 0xff, 0x9d, 0x5e, 0x36, 0xff, 0x9a, 0x5c, 0x34, 0xff, 0x99, 0x5b, 0x32, 0xff, 0x98, 0x59, 0x32, 0xff, 0x97, 0x59, 0x32, 0xff, 0x97, 0x58, 0x32, 0xff, 0x98, 0x58, 0x32, 0xff, 0x98, 0x59, 0x32, 0xff, 0x98, 0x59, 0x32, 0xff, 0x97, 0x59, 0x33, 0xff, 0x89, 0x4b, 0x2a, 0xff, 0x84, 0x47, 0x27, 0xff, 0x84, 0x47, 0x27, 0xff, 0x83, 0x47, 0x26, 0xff, 0x82, 0x47, 0x26, 0xff, 0x85, 0x49, 0x29, 0xff, 0x87, 0x4a, 0x2c, 0xff, 0x88, 0x4c, 0x2c, 0xff, 0x89, 0x4b, 0x2c, 0xff, 0x88, 0x4b, 0x2c, 0xff, 0x86, 0x4a, 0x2b, 0xff, 0x87, 0x4a, 0x2c, 0xff, 0x87, 0x4a, 0x2b, 0xff, 0x85, 0x48, 0x29, 0xff, 0x85, 0x47, 0x27, 0xff, 0x85, 0x47, 0x27, 0xff, 0x8b, 0x4d, 0x2d, 0xff, 0x93, 0x55, 0x32, 0xff, 0x95, 0x58, 0x33, 0xff, 0x93, 0x57, 0x32, 0xff, 0x91, 0x54, 0x30, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x89, 0x4d, 0x2d, 0xff, 0x86, 0x49, 0x2b, 0xff, 0x85, 0x49, 0x2a, 0xff, 0x82, 0x46, 0x27, 0xff, 0x82, 0x45, 0x25, 0xff, 0x81, 0x45, 0x24, 0xff, 0x7e, 0x44, 0x22, 0xff, 0x7e, 0x41, 0x23, 0xff, 0x7d, 0x41, 0x21, 0xff, 0x7c, 0x41, 0x22, 0xff, 0x85, 0x48, 0x28, 0xff, 0x85, 0x48, 0x29, 0xff, 0x87, 0x48, 0x2b, 0xff, 0x87, 0x49, 0x29, 0xff, 0x85, 0x49, 0x28, 0xff, 0x85, 0x47, 0x26, 0xff, 0x82, 0x45, 0x24, 0xff, 0x80, 0x44, 0x23, 0xff, 0x82, 0x46, 0x23, 0xff, 0x83, 0x45, 0x24, 0xff, 0x83, 0x45, 0x23, 0xff, 0x82, 0x45, 0x24, 0xff, 0x82, 0x45, 0x23, 0xff, 0x83, 0x46, 0x24, 0xff, 0x84, 0x47, 0x25, 0xff, 0x84, 0x45, 0x25, 0xff, 0x85, 0x47, 0x27, 0xff, 0x85, 0x47, 0x26, 0xff, 0x84, 0x47, 0x25, 0xff, 0x85, 0x46, 0x25, 0xff, 0x85, 0x46, 0x25, 0xff, 0x84, 0x46, 0x24, 0xff, 0x85, 0x46, 0x25, 0xff, 0x84, 0x46, 0x26, 0xff, 0x85, 0x47, 0x27, 0xff, 0x86, 0x47, 0x26, 0xff, 0x88, 0x49, 0x29, 0xff, 0x89, 0x4a, 0x29, 0xff, 0x8a, 0x4b, 0x2b, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8e, 0x50, 0x2c, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x94, 0x54, 0x2f, 0xff, + 0x99, 0x5a, 0x32, 0xff, 0x9b, 0x5c, 0x35, 0xff, 0x9f, 0x60, 0x37, 0xff, 0xa2, 0x65, 0x3b, 0xff, 0xa4, 0x67, 0x3f, 0xff, 0x9f, 0x62, 0x3a, 0xff, 0x9f, 0x62, 0x3c, 0xff, 0xa5, 0x67, 0x41, 0xff, 0xa8, 0x6c, 0x45, 0xff, 0xaa, 0x6f, 0x47, 0xff, 0xab, 0x71, 0x49, 0xff, 0xab, 0x71, 0x49, 0xff, 0xaf, 0x74, 0x49, 0xff, 0xae, 0x71, 0x48, 0xff, 0xa9, 0x6e, 0x44, 0xff, 0xa7, 0x69, 0x41, 0xff, 0xa7, 0x69, 0x3f, 0xff, 0xa6, 0x67, 0x3d, 0xff, 0xa2, 0x62, 0x38, 0xff, 0x9f, 0x5f, 0x37, 0xff, 0x9f, 0x5f, 0x37, 0xff, 0xa1, 0x60, 0x38, 0xff, 0xa1, 0x61, 0x39, 0xff, 0xa6, 0x67, 0x3c, 0xff, 0xa4, 0x65, 0x3a, 0xff, 0xa9, 0x69, 0x3f, 0xff, 0xa6, 0x68, 0x3c, 0xff, 0xa9, 0x6b, 0x3f, 0xff, 0xab, 0x6b, 0x41, 0xff, 0xab, 0x6c, 0x41, 0xff, 0xac, 0x6e, 0x43, 0xff, 0xaf, 0x72, 0x46, 0xff, 0xb2, 0x75, 0x47, 0xff, 0xb4, 0x77, 0x4a, 0xff, 0xb7, 0x79, 0x4c, 0xff, 0x9f, 0x62, 0x3c, 0xff, 0x7e, 0x40, 0x21, 0xff, 0x7e, 0x41, 0x21, 0xff, 0x7a, 0x41, 0x1e, 0xff, 0x7a, 0x3d, 0x1e, 0xff, 0x79, 0x3f, 0x1b, 0xff, 0x77, 0x3e, 0x19, 0xff, 0x77, 0x3c, 0x19, 0xff, 0x78, 0x3e, 0x1a, 0xff, 0x78, 0x3e, 0x19, 0xff, 0x76, 0x3d, 0x1a, 0xff, 0x74, 0x3d, 0x1b, 0xff, 0x78, 0x3e, 0x1c, 0xff, 0x76, 0x3c, 0x1c, 0xff, 0x72, 0x3b, 0x1a, 0xff, 0x72, 0x3b, 0x19, 0xff, 0x74, 0x3b, 0x17, 0xff, 0x73, 0x3b, 0x18, 0xff, 0x75, 0x3b, 0x19, 0xff, 0x77, 0x3c, 0x1a, 0xff, 0x78, 0x3d, 0x1a, 0xff, 0x78, 0x3e, 0x1b, 0xff, 0x7b, 0x3f, 0x1d, 0xff, 0x7e, 0x40, 0x20, 0xff, 0x81, 0x43, 0x21, 0xff, 0x82, 0x44, 0x22, 0xff, 0x82, 0x45, 0x23, 0xff, 0x85, 0x48, 0x26, 0xff, 0x87, 0x49, 0x28, 0xff, 0x88, 0x4b, 0x2a, 0xff, 0x89, 0x4b, 0x2a, 0xff, 0x87, 0x47, 0x24, 0xff, 0x86, 0x47, 0x25, 0xff, 0x87, 0x47, 0x25, 0xff, 0x88, 0x4a, 0x28, 0xff, 0x8b, 0x4c, 0x2a, 0xff, 0x8d, 0x4e, 0x2b, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x99, 0x5a, 0x31, 0xff, 0x9f, 0x5f, 0x33, 0xff, 0xa2, 0x63, 0x37, 0xff, 0xa4, 0x64, 0x37, 0xff, 0xa6, 0x66, 0x38, 0xff, 0xab, 0x6b, 0x3c, 0xff, 0xb0, 0x72, 0x41, 0xff, 0xb6, 0x7a, 0x48, 0xff, 0xba, 0x7e, 0x4c, 0xff, 0xc0, 0x85, 0x52, 0xff, 0xc4, 0x8b, 0x56, 0xff, 0xc7, 0x8f, 0x5a, 0xff, 0xc9, 0x92, 0x5c, 0xff, 0xc8, 0x93, 0x5d, 0xff, 0xc6, 0x92, 0x5c, 0xff, 0xc1, 0x8c, 0x57, 0xff, 0xbf, 0x87, 0x55, 0xff, 0xbf, 0x86, 0x56, 0xff, 0xbd, 0x84, 0x54, 0xff, 0xc4, 0x89, 0x56, 0xff, 0xd5, 0x92, 0x5b, 0xff, 0xd7, 0x92, 0x5c, 0xff, 0xd3, 0x92, 0x5c, 0xff, 0xd4, 0x93, 0x5d, 0xff, 0xd3, 0x93, 0x5c, 0xff, 0xd6, 0x94, 0x5d, 0xff, 0xdc, 0x97, 0x60, 0xff, 0xbe, 0x82, 0x51, 0xff, 0x9b, 0x6c, 0x3f, 0xff, 0xa2, 0x71, 0x44, 0xff, 0xa2, 0x70, 0x43, 0xff, 0xa0, 0x6f, 0x41, 0xff, 0xa0, 0x6d, 0x3f, 0xff, 0xa1, 0x6c, 0x3f, 0xff, 0xa0, 0x6b, 0x3e, 0xff, 0x96, 0x5d, 0x35, 0xff, 0x8a, 0x50, 0x2d, 0xff, 0x8a, 0x51, 0x2f, 0xff, 0x8c, 0x52, 0x2f, 0xff, 0x87, 0x50, 0x2c, 0xff, 0x81, 0x48, 0x29, 0xff, 0x80, 0x47, 0x28, 0xff, 0x80, 0x47, 0x27, 0xff, 0x7f, 0x47, 0x27, 0xff, 0x7f, 0x46, 0x26, 0xff, 0x81, 0x46, 0x28, 0xff, 0x87, 0x4c, 0x2c, 0xff, 0x8c, 0x51, 0x2f, 0xff, 0x95, 0x59, 0x33, 0xff, 0x9e, 0x61, 0x37, 0xff, 0xa1, 0x62, 0x39, 0xff, 0xa1, 0x62, 0x38, 0xff, 0xa1, 0x62, 0x37, 0xff, 0xa0, 0x62, 0x37, 0xff, 0xa1, 0x62, 0x37, 0xff, 0xa0, 0x62, 0x37, 0xff, 0x9e, 0x60, 0x34, 0xff, 0x9d, 0x5e, 0x33, 0xff, 0x9d, 0x5d, 0x32, 0xff, 0x9b, 0x5c, 0x32, 0xff, 0x99, 0x59, 0x31, 0xff, 0x96, 0x56, 0x2e, 0xff, 0xb1, 0x73, 0x47, 0xff, 0xc0, 0x82, 0x52, 0xff, 0xb7, 0x78, 0x4b, 0xff, 0xb1, 0x73, 0x46, 0xff, 0xae, 0x71, 0x44, 0xff, 0xac, 0x6e, 0x42, 0xff, 0xab, 0x6c, 0x40, 0xff, 0xab, 0x6d, 0x41, 0xff, 0xad, 0x70, 0x44, 0xff, 0xb0, 0x74, 0x47, 0xff, 0xb5, 0x79, 0x4c, 0xff, 0xba, 0x7d, 0x4f, 0xff, 0xbe, 0x82, 0x55, 0xff, 0xc1, 0x87, 0x59, 0xff, 0xc0, 0x8b, 0x5a, 0xff, 0xc0, 0x8a, 0x5c, 0xff, 0xbd, 0x87, 0x5b, 0xff, 0xbb, 0x83, 0x57, 0xff, 0xb8, 0x7f, 0x52, 0xff, 0xb2, 0x78, 0x4b, 0xff, 0xac, 0x6f, 0x43, 0xff, 0xaa, 0x6b, 0x3d, 0xff, 0xa6, 0x67, 0x39, 0xff, 0xa1, 0x62, 0x37, 0xff, 0x9e, 0x5d, 0x34, 0xff, 0x9c, 0x5d, 0x34, 0xff, 0x9a, 0x5c, 0x34, 0xff, 0x99, 0x5b, 0x34, 0xff, 0x99, 0x5b, 0x34, 0xff, 0x9a, 0x5b, 0x33, 0xff, 0x9a, 0x5b, 0x34, 0xff, 0x9a, 0x5b, 0x34, 0xff, 0x9a, 0x5b, 0x34, 0xff, 0x8a, 0x4d, 0x2c, 0xff, 0x87, 0x49, 0x2b, 0xff, 0x85, 0x47, 0x29, 0xff, 0x84, 0x48, 0x29, 0xff, 0x84, 0x47, 0x29, 0xff, 0x85, 0x49, 0x2a, 0xff, 0x87, 0x49, 0x2b, 0xff, 0x87, 0x4c, 0x2d, 0xff, 0x87, 0x4a, 0x2c, 0xff, 0x87, 0x4a, 0x2c, 0xff, 0x89, 0x4c, 0x2d, 0xff, 0x86, 0x4a, 0x2a, 0xff, 0x85, 0x48, 0x28, 0xff, 0x85, 0x47, 0x25, 0xff, 0x84, 0x47, 0x26, 0xff, 0x88, 0x4b, 0x2c, 0xff, 0x89, 0x4b, 0x2e, 0xff, 0x91, 0x55, 0x32, 0xff, 0x96, 0x58, 0x34, 0xff, 0x94, 0x57, 0x32, 0xff, 0x91, 0x53, 0x30, 0xff, 0x90, 0x50, 0x2e, 0xff, 0x8b, 0x4d, 0x2c, 0xff, 0x87, 0x4a, 0x2a, 0xff, 0x84, 0x47, 0x2a, 0xff, 0x81, 0x46, 0x26, 0xff, 0x81, 0x45, 0x25, 0xff, 0x7f, 0x45, 0x24, 0xff, 0x80, 0x44, 0x23, 0xff, 0x7e, 0x41, 0x23, 0xff, 0x7d, 0x42, 0x21, 0xff, 0x7d, 0x42, 0x21, 0xff, 0x7c, 0x41, 0x20, 0xff, 0x87, 0x49, 0x2a, 0xff, 0x86, 0x48, 0x29, 0xff, 0x87, 0x49, 0x29, 0xff, 0x87, 0x49, 0x29, 0xff, 0x86, 0x48, 0x29, 0xff, 0x84, 0x47, 0x25, 0xff, 0x82, 0x45, 0x25, 0xff, 0x82, 0x46, 0x24, 0xff, 0x82, 0x45, 0x23, 0xff, 0x81, 0x43, 0x23, 0xff, 0x82, 0x45, 0x23, 0xff, 0x82, 0x45, 0x23, 0xff, 0x83, 0x45, 0x23, 0xff, 0x83, 0x45, 0x23, 0xff, 0x83, 0x45, 0x23, 0xff, 0x85, 0x46, 0x26, 0xff, 0x84, 0x47, 0x25, 0xff, 0x85, 0x47, 0x25, 0xff, 0x85, 0x46, 0x27, 0xff, 0x85, 0x45, 0x25, 0xff, 0x85, 0x46, 0x25, 0xff, 0x83, 0x46, 0x23, 0xff, 0x85, 0x46, 0x25, 0xff, 0x85, 0x47, 0x25, 0xff, 0x86, 0x47, 0x26, 0xff, 0x87, 0x49, 0x28, 0xff, 0x8a, 0x4b, 0x2b, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x96, 0x57, 0x30, 0xff, + 0x9b, 0x5c, 0x35, 0xff, 0xa0, 0x60, 0x38, 0xff, 0xa4, 0x67, 0x3c, 0xff, 0xa9, 0x6c, 0x41, 0xff, 0xab, 0x70, 0x46, 0xff, 0x9d, 0x61, 0x3b, 0xff, 0xa5, 0x69, 0x43, 0xff, 0xa9, 0x70, 0x47, 0xff, 0xae, 0x73, 0x4c, 0xff, 0xb1, 0x79, 0x50, 0xff, 0xb4, 0x7b, 0x52, 0xff, 0xb5, 0x7e, 0x54, 0xff, 0xb8, 0x7f, 0x54, 0xff, 0xb8, 0x7d, 0x54, 0xff, 0xb3, 0x79, 0x4e, 0xff, 0xae, 0x73, 0x49, 0xff, 0xab, 0x6e, 0x44, 0xff, 0xa9, 0x6b, 0x40, 0xff, 0xa6, 0x67, 0x3c, 0xff, 0xa3, 0x63, 0x39, 0xff, 0xa0, 0x61, 0x37, 0xff, 0xa1, 0x60, 0x38, 0xff, 0xa3, 0x63, 0x38, 0xff, 0xa3, 0x64, 0x38, 0xff, 0xa2, 0x64, 0x38, 0xff, 0xa6, 0x67, 0x3c, 0xff, 0xa7, 0x68, 0x3c, 0xff, 0xa7, 0x69, 0x3d, 0xff, 0xa9, 0x69, 0x40, 0xff, 0xa9, 0x6b, 0x40, 0xff, 0xaa, 0x6f, 0x41, 0xff, 0xae, 0x73, 0x45, 0xff, 0xb0, 0x71, 0x46, 0xff, 0xb2, 0x75, 0x46, 0xff, 0xb7, 0x79, 0x4c, 0xff, 0xb5, 0x78, 0x4d, 0xff, 0x89, 0x4b, 0x2a, 0xff, 0x80, 0x43, 0x20, 0xff, 0x80, 0x42, 0x21, 0xff, 0x7b, 0x40, 0x1e, 0xff, 0x79, 0x3d, 0x1c, 0xff, 0x78, 0x3d, 0x1c, 0xff, 0x79, 0x3e, 0x1a, 0xff, 0x77, 0x3d, 0x19, 0xff, 0x79, 0x3c, 0x1c, 0xff, 0x78, 0x3e, 0x1d, 0xff, 0x77, 0x3f, 0x1e, 0xff, 0x78, 0x3f, 0x1f, 0xff, 0x76, 0x3f, 0x1c, 0xff, 0x74, 0x3c, 0x1a, 0xff, 0x72, 0x3a, 0x19, 0xff, 0x74, 0x3b, 0x19, 0xff, 0x74, 0x3a, 0x17, 0xff, 0x76, 0x3c, 0x19, 0xff, 0x77, 0x3c, 0x19, 0xff, 0x78, 0x3e, 0x19, 0xff, 0x79, 0x3e, 0x1b, 0xff, 0x7b, 0x3f, 0x1d, 0xff, 0x7f, 0x41, 0x20, 0xff, 0x80, 0x44, 0x21, 0xff, 0x82, 0x46, 0x23, 0xff, 0x84, 0x47, 0x26, 0xff, 0x84, 0x47, 0x28, 0xff, 0x87, 0x49, 0x29, 0xff, 0x87, 0x48, 0x27, 0xff, 0x82, 0x44, 0x22, 0xff, 0x84, 0x45, 0x23, 0xff, 0x84, 0x46, 0x23, 0xff, 0x86, 0x46, 0x25, 0xff, 0x87, 0x49, 0x26, 0xff, 0x89, 0x4b, 0x28, 0xff, 0x8c, 0x4e, 0x2a, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x96, 0x55, 0x30, 0xff, 0x9b, 0x5a, 0x32, 0xff, 0xa0, 0x5f, 0x35, 0xff, 0xa4, 0x65, 0x38, 0xff, 0xa7, 0x68, 0x39, 0xff, 0xaa, 0x6a, 0x3a, 0xff, 0xad, 0x6e, 0x3e, 0xff, 0xb3, 0x76, 0x45, 0xff, 0xba, 0x7e, 0x4b, 0xff, 0xbf, 0x84, 0x51, 0xff, 0xc7, 0x8c, 0x58, 0xff, 0xd1, 0x92, 0x5d, 0xff, 0xd7, 0x98, 0x61, 0xff, 0xd8, 0x9b, 0x64, 0xff, 0xd5, 0x9c, 0x65, 0xff, 0xd0, 0x99, 0x63, 0xff, 0xca, 0x91, 0x5e, 0xff, 0xc5, 0x8e, 0x5d, 0xff, 0xc2, 0x8b, 0x5a, 0xff, 0xbf, 0x88, 0x56, 0xff, 0xc2, 0x89, 0x56, 0xff, 0xd0, 0x8f, 0x5c, 0xff, 0xde, 0x95, 0x60, 0xff, 0xd7, 0x93, 0x5e, 0xff, 0xd4, 0x92, 0x5d, 0xff, 0xd5, 0x96, 0x5e, 0xff, 0xd5, 0x96, 0x5d, 0xff, 0xd9, 0x97, 0x5f, 0xff, 0xc8, 0x8d, 0x59, 0xff, 0xa7, 0x78, 0x4b, 0xff, 0xa2, 0x71, 0x45, 0xff, 0xa3, 0x72, 0x46, 0xff, 0xa1, 0x71, 0x45, 0xff, 0xa1, 0x6e, 0x42, 0xff, 0xa0, 0x6e, 0x40, 0xff, 0x9e, 0x6a, 0x3c, 0xff, 0x97, 0x5d, 0x34, 0xff, 0x8d, 0x54, 0x30, 0xff, 0x8b, 0x52, 0x2f, 0xff, 0x8b, 0x52, 0x2f, 0xff, 0x88, 0x4f, 0x2d, 0xff, 0x83, 0x4a, 0x2b, 0xff, 0x82, 0x49, 0x2a, 0xff, 0x82, 0x48, 0x29, 0xff, 0x81, 0x49, 0x29, 0xff, 0x80, 0x49, 0x28, 0xff, 0x80, 0x48, 0x27, 0xff, 0x83, 0x49, 0x29, 0xff, 0x84, 0x49, 0x29, 0xff, 0x83, 0x46, 0x27, 0xff, 0x89, 0x4b, 0x2b, 0xff, 0x99, 0x5b, 0x34, 0xff, 0xa2, 0x63, 0x39, 0xff, 0xa2, 0x63, 0x37, 0xff, 0xa1, 0x63, 0x37, 0xff, 0xa0, 0x62, 0x37, 0xff, 0xa1, 0x62, 0x36, 0xff, 0xa1, 0x62, 0x36, 0xff, 0xa0, 0x60, 0x35, 0xff, 0x9c, 0x5d, 0x33, 0xff, 0x9a, 0x5c, 0x33, 0xff, 0x99, 0x59, 0x32, 0xff, 0x97, 0x58, 0x31, 0xff, 0x94, 0x55, 0x2d, 0xff, 0xa0, 0x60, 0x36, 0xff, 0xb1, 0x73, 0x48, 0xff, 0xb4, 0x78, 0x4b, 0xff, 0xaf, 0x72, 0x46, 0xff, 0xad, 0x70, 0x44, 0xff, 0xac, 0x6f, 0x42, 0xff, 0xad, 0x6e, 0x43, 0xff, 0xaf, 0x71, 0x45, 0xff, 0xb2, 0x75, 0x48, 0xff, 0xb6, 0x79, 0x4c, 0xff, 0xbb, 0x7e, 0x50, 0xff, 0xc0, 0x83, 0x55, 0xff, 0xc4, 0x87, 0x59, 0xff, 0xc3, 0x8a, 0x5c, 0xff, 0xc1, 0x8b, 0x5c, 0xff, 0xc0, 0x8b, 0x5b, 0xff, 0xbe, 0x86, 0x57, 0xff, 0xbb, 0x81, 0x52, 0xff, 0xb6, 0x7a, 0x4c, 0xff, 0xad, 0x71, 0x44, 0xff, 0xa9, 0x6c, 0x40, 0xff, 0xa8, 0x68, 0x3c, 0xff, 0xa3, 0x63, 0x37, 0xff, 0x9f, 0x60, 0x35, 0xff, 0x9c, 0x5d, 0x34, 0xff, 0x9d, 0x5d, 0x35, 0xff, 0x9c, 0x5d, 0x34, 0xff, 0x9b, 0x5d, 0x34, 0xff, 0x9b, 0x5d, 0x34, 0xff, 0x9b, 0x5d, 0x34, 0xff, 0x9a, 0x5c, 0x35, 0xff, 0x9a, 0x5b, 0x36, 0xff, 0x8d, 0x4e, 0x2d, 0xff, 0x87, 0x4b, 0x2c, 0xff, 0x85, 0x48, 0x2b, 0xff, 0x85, 0x48, 0x29, 0xff, 0x87, 0x49, 0x2b, 0xff, 0x85, 0x48, 0x2b, 0xff, 0x85, 0x48, 0x2b, 0xff, 0x87, 0x47, 0x2c, 0xff, 0x87, 0x48, 0x2c, 0xff, 0x87, 0x4b, 0x2c, 0xff, 0x83, 0x47, 0x26, 0xff, 0x83, 0x46, 0x26, 0xff, 0x85, 0x47, 0x26, 0xff, 0x86, 0x48, 0x28, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x8b, 0x4e, 0x2e, 0xff, 0x8b, 0x4e, 0x2d, 0xff, 0x89, 0x4c, 0x2d, 0xff, 0x93, 0x55, 0x32, 0xff, 0x94, 0x55, 0x32, 0xff, 0x91, 0x54, 0x2f, 0xff, 0x8f, 0x50, 0x2f, 0xff, 0x8e, 0x4f, 0x2e, 0xff, 0x85, 0x49, 0x2a, 0xff, 0x83, 0x46, 0x28, 0xff, 0x82, 0x45, 0x25, 0xff, 0x82, 0x45, 0x25, 0xff, 0x80, 0x44, 0x24, 0xff, 0x80, 0x44, 0x23, 0xff, 0x7f, 0x42, 0x23, 0xff, 0x7f, 0x42, 0x23, 0xff, 0x7f, 0x43, 0x23, 0xff, 0x7e, 0x40, 0x21, 0xff, 0x7e, 0x42, 0x21, 0xff, 0x84, 0x48, 0x29, 0xff, 0x87, 0x49, 0x29, 0xff, 0x87, 0x49, 0x29, 0xff, 0x86, 0x49, 0x29, 0xff, 0x84, 0x47, 0x28, 0xff, 0x84, 0x47, 0x25, 0xff, 0x82, 0x45, 0x24, 0xff, 0x80, 0x44, 0x23, 0xff, 0x80, 0x42, 0x23, 0xff, 0x82, 0x43, 0x23, 0xff, 0x83, 0x45, 0x23, 0xff, 0x83, 0x45, 0x23, 0xff, 0x83, 0x45, 0x23, 0xff, 0x83, 0x45, 0x23, 0xff, 0x83, 0x45, 0x23, 0xff, 0x84, 0x47, 0x25, 0xff, 0x85, 0x47, 0x25, 0xff, 0x85, 0x47, 0x25, 0xff, 0x85, 0x45, 0x25, 0xff, 0x85, 0x45, 0x25, 0xff, 0x85, 0x45, 0x25, 0xff, 0x85, 0x45, 0x24, 0xff, 0x85, 0x46, 0x24, 0xff, 0x86, 0x47, 0x27, 0xff, 0x89, 0x4a, 0x2a, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x8b, 0x4e, 0x2c, 0xff, 0x8f, 0x51, 0x2e, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x95, 0x56, 0x30, 0xff, 0x9a, 0x5b, 0x34, 0xff, + 0x9e, 0x5f, 0x37, 0xff, 0xa4, 0x65, 0x3b, 0xff, 0xa9, 0x6c, 0x42, 0xff, 0xb0, 0x73, 0x47, 0xff, 0xa8, 0x6c, 0x43, 0xff, 0xa1, 0x66, 0x3f, 0xff, 0xa9, 0x6f, 0x46, 0xff, 0xb0, 0x76, 0x4d, 0xff, 0xb6, 0x7e, 0x55, 0xff, 0xbc, 0x84, 0x5a, 0xff, 0xc1, 0x8a, 0x5f, 0xff, 0xc4, 0x8b, 0x60, 0xff, 0xc3, 0x8c, 0x61, 0xff, 0xc6, 0x8d, 0x5f, 0xff, 0xc1, 0x87, 0x5c, 0xff, 0xba, 0x80, 0x54, 0xff, 0xb3, 0x77, 0x4c, 0xff, 0xad, 0x6f, 0x46, 0xff, 0xa9, 0x6c, 0x41, 0xff, 0xa7, 0x68, 0x3d, 0xff, 0xa4, 0x65, 0x3a, 0xff, 0xa3, 0x63, 0x39, 0xff, 0xa1, 0x62, 0x38, 0xff, 0xa1, 0x61, 0x37, 0xff, 0xa2, 0x62, 0x38, 0xff, 0xa4, 0x64, 0x3a, 0xff, 0xa7, 0x67, 0x3c, 0xff, 0xa6, 0x66, 0x3c, 0xff, 0xa8, 0x68, 0x3c, 0xff, 0xa9, 0x6a, 0x3f, 0xff, 0xa9, 0x6b, 0x40, 0xff, 0xab, 0x6f, 0x41, 0xff, 0xaf, 0x73, 0x45, 0xff, 0xb0, 0x72, 0x45, 0xff, 0xb4, 0x75, 0x48, 0xff, 0xb7, 0x7b, 0x4d, 0xff, 0xad, 0x6f, 0x47, 0xff, 0x80, 0x43, 0x22, 0xff, 0x81, 0x45, 0x23, 0xff, 0x7f, 0x43, 0x21, 0xff, 0x7d, 0x40, 0x1f, 0xff, 0x7c, 0x3f, 0x1e, 0xff, 0x7b, 0x3f, 0x1d, 0xff, 0x7c, 0x3f, 0x1d, 0xff, 0x7a, 0x3f, 0x1c, 0xff, 0x7a, 0x40, 0x1b, 0xff, 0x79, 0x3f, 0x1e, 0xff, 0x79, 0x3e, 0x1c, 0xff, 0x78, 0x3c, 0x1a, 0xff, 0x76, 0x3c, 0x18, 0xff, 0x75, 0x3b, 0x17, 0xff, 0x76, 0x3c, 0x19, 0xff, 0x75, 0x3c, 0x19, 0xff, 0x76, 0x3c, 0x19, 0xff, 0x78, 0x3e, 0x19, 0xff, 0x79, 0x3f, 0x19, 0xff, 0x79, 0x3f, 0x1b, 0xff, 0x7a, 0x3f, 0x1c, 0xff, 0x7c, 0x40, 0x1e, 0xff, 0x7d, 0x40, 0x21, 0xff, 0x80, 0x43, 0x23, 0xff, 0x83, 0x46, 0x25, 0xff, 0x84, 0x47, 0x26, 0xff, 0x84, 0x47, 0x25, 0xff, 0x82, 0x44, 0x21, 0xff, 0x81, 0x44, 0x21, 0xff, 0x81, 0x44, 0x22, 0xff, 0x82, 0x44, 0x24, 0xff, 0x84, 0x45, 0x23, 0xff, 0x87, 0x48, 0x25, 0xff, 0x89, 0x4a, 0x26, 0xff, 0x8b, 0x4c, 0x29, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x97, 0x57, 0x30, 0xff, 0x9d, 0x5d, 0x32, 0xff, 0xa1, 0x61, 0x36, 0xff, 0xa7, 0x67, 0x3a, 0xff, 0xaa, 0x6b, 0x3c, 0xff, 0xab, 0x6d, 0x3e, 0xff, 0xaf, 0x71, 0x41, 0xff, 0xb7, 0x7a, 0x47, 0xff, 0xbe, 0x82, 0x4f, 0xff, 0xc6, 0x8b, 0x57, 0xff, 0xd3, 0x95, 0x5f, 0xff, 0xe0, 0x9d, 0x65, 0xff, 0xe6, 0xa3, 0x6b, 0xff, 0xe8, 0xa7, 0x6e, 0xff, 0xe5, 0xa6, 0x6e, 0xff, 0xdc, 0x9f, 0x6a, 0xff, 0xd4, 0x99, 0x65, 0xff, 0xcd, 0x94, 0x62, 0xff, 0xc7, 0x8e, 0x5f, 0xff, 0xc4, 0x8c, 0x5b, 0xff, 0xc3, 0x8b, 0x5a, 0xff, 0xca, 0x8d, 0x5c, 0xff, 0xd9, 0x94, 0x60, 0xff, 0xde, 0x96, 0x61, 0xff, 0xdb, 0x96, 0x60, 0xff, 0xd6, 0x96, 0x5f, 0xff, 0xd8, 0x97, 0x60, 0xff, 0xdb, 0x98, 0x61, 0xff, 0xd4, 0x93, 0x5f, 0xff, 0xb6, 0x82, 0x55, 0xff, 0xa1, 0x74, 0x4a, 0xff, 0xa4, 0x74, 0x4a, 0xff, 0xa4, 0x73, 0x48, 0xff, 0xa2, 0x72, 0x46, 0xff, 0xa3, 0x70, 0x44, 0xff, 0xa0, 0x67, 0x3d, 0xff, 0x97, 0x5c, 0x34, 0xff, 0x8f, 0x56, 0x31, 0xff, 0x8c, 0x53, 0x2f, 0xff, 0x8c, 0x52, 0x2f, 0xff, 0x89, 0x4f, 0x2c, 0xff, 0x85, 0x4b, 0x2b, 0xff, 0x84, 0x4a, 0x2b, 0xff, 0x84, 0x4a, 0x2a, 0xff, 0x83, 0x49, 0x2b, 0xff, 0x82, 0x48, 0x2b, 0xff, 0x83, 0x49, 0x2a, 0xff, 0x83, 0x49, 0x2a, 0xff, 0x7b, 0x42, 0x21, 0xff, 0x79, 0x3f, 0x1d, 0xff, 0x80, 0x44, 0x24, 0xff, 0x84, 0x49, 0x29, 0xff, 0x90, 0x53, 0x2f, 0xff, 0x9d, 0x5e, 0x35, 0xff, 0xa3, 0x64, 0x38, 0xff, 0xa3, 0x65, 0x39, 0xff, 0xa1, 0x63, 0x37, 0xff, 0xa1, 0x62, 0x37, 0xff, 0xa0, 0x62, 0x36, 0xff, 0x9d, 0x5f, 0x34, 0xff, 0x9b, 0x5c, 0x33, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x98, 0x5a, 0x31, 0xff, 0x9b, 0x5c, 0x33, 0xff, 0x91, 0x52, 0x2d, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x9f, 0x61, 0x3a, 0xff, 0xaf, 0x72, 0x46, 0xff, 0xb4, 0x75, 0x49, 0xff, 0xb1, 0x73, 0x46, 0xff, 0xb0, 0x72, 0x46, 0xff, 0xb2, 0x74, 0x47, 0xff, 0xb4, 0x77, 0x49, 0xff, 0xb8, 0x7b, 0x4e, 0xff, 0xbd, 0x7f, 0x52, 0xff, 0xc2, 0x84, 0x56, 0xff, 0xc7, 0x89, 0x59, 0xff, 0xc7, 0x8d, 0x5b, 0xff, 0xc5, 0x8d, 0x5c, 0xff, 0xc2, 0x8a, 0x5b, 0xff, 0xc1, 0x86, 0x59, 0xff, 0xbe, 0x82, 0x54, 0xff, 0xb7, 0x7b, 0x4d, 0xff, 0xb2, 0x73, 0x46, 0xff, 0xab, 0x6b, 0x3f, 0xff, 0xa9, 0x6a, 0x3c, 0xff, 0xa6, 0x67, 0x3a, 0xff, 0xa2, 0x63, 0x37, 0xff, 0xa0, 0x60, 0x37, 0xff, 0xa0, 0x62, 0x36, 0xff, 0x9f, 0x60, 0x36, 0xff, 0x9f, 0x60, 0x35, 0xff, 0x9e, 0x5f, 0x35, 0xff, 0x9d, 0x5e, 0x36, 0xff, 0x9f, 0x5f, 0x37, 0xff, 0x9e, 0x60, 0x36, 0xff, 0x8f, 0x51, 0x2e, 0xff, 0x88, 0x4a, 0x2c, 0xff, 0x86, 0x48, 0x2a, 0xff, 0x84, 0x47, 0x2a, 0xff, 0x83, 0x49, 0x2a, 0xff, 0x85, 0x48, 0x2b, 0xff, 0x88, 0x4a, 0x2e, 0xff, 0x87, 0x4b, 0x2a, 0xff, 0x84, 0x47, 0x27, 0xff, 0x81, 0x45, 0x25, 0xff, 0x82, 0x46, 0x24, 0xff, 0x86, 0x48, 0x26, 0xff, 0x8a, 0x4a, 0x2a, 0xff, 0x8e, 0x4e, 0x2d, 0xff, 0x8d, 0x51, 0x30, 0xff, 0x8e, 0x50, 0x30, 0xff, 0x8c, 0x4e, 0x2e, 0xff, 0x8c, 0x4f, 0x2e, 0xff, 0x8b, 0x4d, 0x2d, 0xff, 0x91, 0x52, 0x30, 0xff, 0x91, 0x52, 0x30, 0xff, 0x90, 0x51, 0x2f, 0xff, 0x8f, 0x50, 0x2e, 0xff, 0x88, 0x4b, 0x2c, 0xff, 0x83, 0x45, 0x29, 0xff, 0x81, 0x46, 0x25, 0xff, 0x81, 0x45, 0x24, 0xff, 0x80, 0x44, 0x23, 0xff, 0x80, 0x43, 0x23, 0xff, 0x7f, 0x43, 0x23, 0xff, 0x81, 0x44, 0x23, 0xff, 0x80, 0x42, 0x21, 0xff, 0x7e, 0x44, 0x22, 0xff, 0x7d, 0x41, 0x22, 0xff, 0x81, 0x45, 0x27, 0xff, 0x86, 0x49, 0x28, 0xff, 0x86, 0x49, 0x2b, 0xff, 0x88, 0x4a, 0x2b, 0xff, 0x87, 0x49, 0x29, 0xff, 0x85, 0x46, 0x28, 0xff, 0x84, 0x46, 0x26, 0xff, 0x82, 0x44, 0x25, 0xff, 0x83, 0x45, 0x24, 0xff, 0x80, 0x43, 0x21, 0xff, 0x82, 0x45, 0x25, 0xff, 0x84, 0x45, 0x24, 0xff, 0x83, 0x44, 0x23, 0xff, 0x83, 0x44, 0x23, 0xff, 0x83, 0x44, 0x23, 0xff, 0x83, 0x45, 0x23, 0xff, 0x83, 0x46, 0x25, 0xff, 0x84, 0x45, 0x23, 0xff, 0x85, 0x45, 0x23, 0xff, 0x86, 0x46, 0x25, 0xff, 0x86, 0x45, 0x25, 0xff, 0x85, 0x46, 0x25, 0xff, 0x85, 0x47, 0x26, 0xff, 0x86, 0x47, 0x27, 0xff, 0x89, 0x4a, 0x29, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x8d, 0x4e, 0x2d, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x94, 0x55, 0x30, 0xff, 0x97, 0x58, 0x31, 0xff, 0x9a, 0x5b, 0x34, 0xff, + 0xa1, 0x62, 0x38, 0xff, 0xa5, 0x69, 0x3e, 0xff, 0xac, 0x71, 0x45, 0xff, 0xb4, 0x7a, 0x4e, 0xff, 0xa4, 0x68, 0x40, 0xff, 0xa6, 0x6b, 0x44, 0xff, 0xae, 0x76, 0x4d, 0xff, 0xb5, 0x7e, 0x54, 0xff, 0xbf, 0x87, 0x5c, 0xff, 0xc9, 0x91, 0x65, 0xff, 0xd7, 0x98, 0x6a, 0xff, 0xdd, 0x9c, 0x6e, 0xff, 0xdf, 0x9d, 0x6f, 0xff, 0xdc, 0x9b, 0x6d, 0xff, 0xda, 0x9b, 0x6b, 0xff, 0xca, 0x8f, 0x61, 0xff, 0xbd, 0x83, 0x59, 0xff, 0xb4, 0x7a, 0x4e, 0xff, 0xaf, 0x73, 0x48, 0xff, 0xac, 0x6e, 0x43, 0xff, 0xa9, 0x6a, 0x3f, 0xff, 0xab, 0x6b, 0x40, 0xff, 0xa1, 0x62, 0x37, 0xff, 0xa2, 0x62, 0x38, 0xff, 0xa2, 0x62, 0x38, 0xff, 0xa3, 0x62, 0x38, 0xff, 0xa5, 0x67, 0x3a, 0xff, 0xa6, 0x66, 0x3a, 0xff, 0xa6, 0x64, 0x3a, 0xff, 0xa7, 0x68, 0x3c, 0xff, 0xa9, 0x69, 0x3e, 0xff, 0xa9, 0x6b, 0x40, 0xff, 0xae, 0x71, 0x44, 0xff, 0xaf, 0x71, 0x45, 0xff, 0xb1, 0x72, 0x46, 0xff, 0xb6, 0x77, 0x4a, 0xff, 0xb4, 0x77, 0x4a, 0xff, 0x96, 0x57, 0x34, 0xff, 0x80, 0x42, 0x22, 0xff, 0x82, 0x44, 0x22, 0xff, 0x7f, 0x44, 0x22, 0xff, 0x7e, 0x41, 0x20, 0xff, 0x7d, 0x40, 0x1e, 0xff, 0x7e, 0x41, 0x1e, 0xff, 0x7c, 0x40, 0x1e, 0xff, 0x7b, 0x3f, 0x1e, 0xff, 0x7a, 0x3f, 0x1d, 0xff, 0x79, 0x3d, 0x1b, 0xff, 0x77, 0x3d, 0x19, 0xff, 0x77, 0x3e, 0x18, 0xff, 0x77, 0x3d, 0x1b, 0xff, 0x77, 0x3c, 0x19, 0xff, 0x77, 0x3c, 0x19, 0xff, 0x77, 0x3d, 0x19, 0xff, 0x78, 0x3d, 0x1a, 0xff, 0x7a, 0x3f, 0x1c, 0xff, 0x7a, 0x3f, 0x1c, 0xff, 0x7b, 0x40, 0x1e, 0xff, 0x7b, 0x40, 0x1e, 0xff, 0x7d, 0x41, 0x21, 0xff, 0x7f, 0x42, 0x22, 0xff, 0x81, 0x44, 0x23, 0xff, 0x81, 0x45, 0x22, 0xff, 0x80, 0x43, 0x20, 0xff, 0x80, 0x41, 0x21, 0xff, 0x80, 0x43, 0x20, 0xff, 0x80, 0x44, 0x21, 0xff, 0x82, 0x44, 0x22, 0xff, 0x84, 0x44, 0x24, 0xff, 0x86, 0x47, 0x25, 0xff, 0x88, 0x4a, 0x26, 0xff, 0x8c, 0x4c, 0x29, 0xff, 0x95, 0x53, 0x2d, 0xff, 0x9b, 0x5b, 0x31, 0xff, 0x9d, 0x5d, 0x33, 0xff, 0xa1, 0x62, 0x36, 0xff, 0xa8, 0x69, 0x3a, 0xff, 0xab, 0x6d, 0x3e, 0xff, 0xad, 0x70, 0x40, 0xff, 0xb2, 0x75, 0x44, 0xff, 0xba, 0x7e, 0x4b, 0xff, 0xc2, 0x87, 0x53, 0xff, 0xcf, 0x92, 0x5b, 0xff, 0xe0, 0x9d, 0x66, 0xff, 0xea, 0xa7, 0x6f, 0xff, 0xea, 0xb0, 0x75, 0xff, 0xea, 0xb4, 0x79, 0xff, 0xe9, 0xb3, 0x7a, 0xff, 0xe7, 0xa8, 0x72, 0xff, 0xdf, 0xa0, 0x6d, 0xff, 0xd7, 0x9a, 0x6a, 0xff, 0xd0, 0x94, 0x65, 0xff, 0xcb, 0x90, 0x61, 0xff, 0xc9, 0x8d, 0x5e, 0xff, 0xc8, 0x8c, 0x5e, 0xff, 0xd1, 0x90, 0x60, 0xff, 0xde, 0x97, 0x64, 0xff, 0xdc, 0x97, 0x64, 0xff, 0xda, 0x98, 0x62, 0xff, 0xdc, 0x99, 0x62, 0xff, 0xe1, 0x9b, 0x64, 0xff, 0xdb, 0x96, 0x62, 0xff, 0xbb, 0x85, 0x58, 0xff, 0xa3, 0x76, 0x4f, 0xff, 0xa6, 0x76, 0x4f, 0xff, 0xa6, 0x77, 0x4c, 0xff, 0xa5, 0x75, 0x48, 0xff, 0xa4, 0x72, 0x45, 0xff, 0xa0, 0x69, 0x3e, 0xff, 0x9b, 0x60, 0x37, 0xff, 0x94, 0x5a, 0x34, 0xff, 0x8d, 0x55, 0x30, 0xff, 0x8d, 0x54, 0x2f, 0xff, 0x8a, 0x51, 0x2d, 0xff, 0x86, 0x4c, 0x2b, 0xff, 0x86, 0x4c, 0x2b, 0xff, 0x86, 0x4c, 0x2b, 0xff, 0x84, 0x4a, 0x2b, 0xff, 0x83, 0x49, 0x2b, 0xff, 0x83, 0x4a, 0x2c, 0xff, 0x80, 0x47, 0x27, 0xff, 0x7a, 0x40, 0x20, 0xff, 0x79, 0x40, 0x1f, 0xff, 0x7a, 0x41, 0x20, 0xff, 0x7d, 0x42, 0x21, 0xff, 0x81, 0x45, 0x24, 0xff, 0x88, 0x4b, 0x2a, 0xff, 0x93, 0x56, 0x30, 0xff, 0x9c, 0x5f, 0x34, 0xff, 0xa4, 0x66, 0x3a, 0xff, 0xa4, 0x65, 0x3a, 0xff, 0xa0, 0x61, 0x36, 0xff, 0x9f, 0x60, 0x35, 0xff, 0x9f, 0x60, 0x35, 0xff, 0x9d, 0x5e, 0x34, 0xff, 0x9c, 0x5c, 0x33, 0xff, 0x95, 0x57, 0x30, 0xff, 0x8e, 0x50, 0x2e, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x93, 0x54, 0x31, 0xff, 0x9f, 0x62, 0x39, 0xff, 0xae, 0x72, 0x45, 0xff, 0xb7, 0x79, 0x4c, 0xff, 0xb6, 0x78, 0x4b, 0xff, 0xb6, 0x79, 0x4b, 0xff, 0xb9, 0x7c, 0x4e, 0xff, 0xbd, 0x80, 0x52, 0xff, 0xc2, 0x85, 0x57, 0xff, 0xc7, 0x8b, 0x5b, 0xff, 0xcb, 0x8c, 0x5c, 0xff, 0xc9, 0x8c, 0x5c, 0xff, 0xc6, 0x8a, 0x5b, 0xff, 0xc3, 0x86, 0x58, 0xff, 0xbf, 0x82, 0x53, 0xff, 0xb9, 0x7c, 0x4d, 0xff, 0xb3, 0x75, 0x47, 0xff, 0xad, 0x6e, 0x42, 0xff, 0xaa, 0x6a, 0x3d, 0xff, 0xa9, 0x6a, 0x3d, 0xff, 0xa6, 0x68, 0x3a, 0xff, 0xa4, 0x65, 0x38, 0xff, 0xa3, 0x64, 0x38, 0xff, 0xa1, 0x62, 0x38, 0xff, 0xa1, 0x64, 0x37, 0xff, 0xa0, 0x63, 0x38, 0xff, 0x9f, 0x61, 0x37, 0xff, 0x9f, 0x61, 0x38, 0xff, 0x9f, 0x60, 0x38, 0xff, 0x91, 0x55, 0x30, 0xff, 0x88, 0x4b, 0x2c, 0xff, 0x86, 0x48, 0x2b, 0xff, 0x86, 0x49, 0x2c, 0xff, 0x88, 0x4c, 0x2d, 0xff, 0x85, 0x49, 0x2a, 0xff, 0x83, 0x46, 0x27, 0xff, 0x7f, 0x42, 0x21, 0xff, 0x7f, 0x42, 0x21, 0xff, 0x84, 0x46, 0x25, 0xff, 0x87, 0x4a, 0x28, 0xff, 0x8b, 0x4e, 0x2a, 0xff, 0x8d, 0x4e, 0x2b, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x90, 0x52, 0x30, 0xff, 0x8e, 0x50, 0x2f, 0xff, 0x8c, 0x4e, 0x2f, 0xff, 0x8c, 0x4f, 0x2d, 0xff, 0x8a, 0x4c, 0x2d, 0xff, 0x88, 0x4a, 0x2b, 0xff, 0x90, 0x52, 0x2f, 0xff, 0x92, 0x52, 0x30, 0xff, 0x92, 0x51, 0x2f, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x82, 0x47, 0x27, 0xff, 0x81, 0x44, 0x25, 0xff, 0x80, 0x44, 0x23, 0xff, 0x7f, 0x44, 0x23, 0xff, 0x80, 0x44, 0x23, 0xff, 0x82, 0x45, 0x25, 0xff, 0x81, 0x45, 0x24, 0xff, 0x82, 0x45, 0x22, 0xff, 0x80, 0x43, 0x22, 0xff, 0x7e, 0x43, 0x23, 0xff, 0x7d, 0x41, 0x22, 0xff, 0x84, 0x48, 0x28, 0xff, 0x88, 0x49, 0x2a, 0xff, 0x88, 0x49, 0x2a, 0xff, 0x87, 0x49, 0x29, 0xff, 0x86, 0x48, 0x29, 0xff, 0x85, 0x46, 0x26, 0xff, 0x84, 0x46, 0x24, 0xff, 0x82, 0x44, 0x25, 0xff, 0x81, 0x44, 0x23, 0xff, 0x82, 0x44, 0x23, 0xff, 0x84, 0x45, 0x23, 0xff, 0x86, 0x46, 0x25, 0xff, 0x86, 0x47, 0x24, 0xff, 0x86, 0x46, 0x24, 0xff, 0x85, 0x46, 0x25, 0xff, 0x86, 0x47, 0x25, 0xff, 0x86, 0x46, 0x24, 0xff, 0x86, 0x46, 0x25, 0xff, 0x87, 0x47, 0x25, 0xff, 0x87, 0x47, 0x25, 0xff, 0x86, 0x48, 0x25, 0xff, 0x86, 0x47, 0x26, 0xff, 0x87, 0x4a, 0x29, 0xff, 0x89, 0x49, 0x29, 0xff, 0x8d, 0x4c, 0x2b, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x97, 0x58, 0x31, 0xff, 0x9a, 0x5a, 0x33, 0xff, 0x9d, 0x5d, 0x36, 0xff, + 0xa2, 0x64, 0x3a, 0xff, 0xa8, 0x6c, 0x41, 0xff, 0xb0, 0x74, 0x49, 0xff, 0xba, 0x7e, 0x54, 0xff, 0xa3, 0x67, 0x3f, 0xff, 0xa8, 0x6e, 0x46, 0xff, 0xb2, 0x79, 0x50, 0xff, 0xbc, 0x84, 0x5a, 0xff, 0xca, 0x90, 0x65, 0xff, 0xdd, 0x9b, 0x6e, 0xff, 0xea, 0xa7, 0x76, 0xff, 0xea, 0xab, 0x7c, 0xff, 0xea, 0xae, 0x7e, 0xff, 0xea, 0xad, 0x7d, 0xff, 0xe8, 0xa7, 0x78, 0xff, 0xe3, 0x9f, 0x70, 0xff, 0xd1, 0x93, 0x64, 0xff, 0xc0, 0x85, 0x5a, 0xff, 0xb6, 0x7c, 0x50, 0xff, 0xaf, 0x72, 0x47, 0xff, 0xab, 0x6e, 0x41, 0xff, 0xa8, 0x69, 0x3c, 0xff, 0xa4, 0x66, 0x3b, 0xff, 0xa1, 0x61, 0x38, 0xff, 0xa3, 0x63, 0x39, 0xff, 0xa2, 0x62, 0x38, 0xff, 0xa4, 0x63, 0x39, 0xff, 0xa6, 0x67, 0x3b, 0xff, 0xa4, 0x65, 0x38, 0xff, 0xa6, 0x65, 0x3a, 0xff, 0xa7, 0x68, 0x3c, 0xff, 0xa8, 0x69, 0x3d, 0xff, 0xac, 0x6e, 0x42, 0xff, 0xaf, 0x6f, 0x44, 0xff, 0xaf, 0x6e, 0x43, 0xff, 0xb2, 0x74, 0x45, 0xff, 0xb6, 0x77, 0x4b, 0xff, 0xa9, 0x6c, 0x40, 0xff, 0x89, 0x4c, 0x2a, 0xff, 0x84, 0x46, 0x24, 0xff, 0x82, 0x46, 0x23, 0xff, 0x81, 0x43, 0x21, 0xff, 0x7f, 0x43, 0x21, 0xff, 0x7e, 0x42, 0x1e, 0xff, 0x7d, 0x40, 0x1e, 0xff, 0x7d, 0x40, 0x1e, 0xff, 0x7a, 0x3f, 0x1c, 0xff, 0x7a, 0x40, 0x1b, 0xff, 0x77, 0x3d, 0x1a, 0xff, 0x78, 0x3d, 0x1b, 0xff, 0x78, 0x3c, 0x1b, 0xff, 0x77, 0x3c, 0x19, 0xff, 0x77, 0x3d, 0x19, 0xff, 0x78, 0x3d, 0x1a, 0xff, 0x79, 0x3e, 0x1c, 0xff, 0x78, 0x3d, 0x1b, 0xff, 0x7b, 0x3f, 0x1e, 0xff, 0x7b, 0x3f, 0x1e, 0xff, 0x7c, 0x3f, 0x1e, 0xff, 0x7e, 0x41, 0x1f, 0xff, 0x7f, 0x42, 0x21, 0xff, 0x80, 0x42, 0x22, 0xff, 0x7d, 0x42, 0x20, 0xff, 0x7c, 0x3f, 0x1d, 0xff, 0x7d, 0x41, 0x1f, 0xff, 0x7e, 0x41, 0x21, 0xff, 0x7f, 0x44, 0x21, 0xff, 0x81, 0x45, 0x22, 0xff, 0x86, 0x47, 0x23, 0xff, 0x86, 0x48, 0x26, 0xff, 0x88, 0x48, 0x28, 0xff, 0x8f, 0x4e, 0x2b, 0xff, 0x98, 0x57, 0x2d, 0xff, 0x9b, 0x5a, 0x30, 0xff, 0x9f, 0x5e, 0x33, 0xff, 0xa1, 0x62, 0x35, 0xff, 0xa6, 0x68, 0x39, 0xff, 0xab, 0x6e, 0x3e, 0xff, 0xaf, 0x72, 0x42, 0xff, 0xb5, 0x79, 0x47, 0xff, 0xbd, 0x83, 0x4f, 0xff, 0xc9, 0x8c, 0x58, 0xff, 0xda, 0x99, 0x62, 0xff, 0xe9, 0xa5, 0x6c, 0xff, 0xe9, 0xb1, 0x76, 0xff, 0xe9, 0xbe, 0x7f, 0xff, 0xea, 0xc7, 0x85, 0xff, 0xe9, 0xc0, 0x85, 0xff, 0xea, 0xb3, 0x7e, 0xff, 0xe8, 0xaa, 0x79, 0xff, 0xe2, 0xa1, 0x72, 0xff, 0xdc, 0x9b, 0x6c, 0xff, 0xd6, 0x97, 0x67, 0xff, 0xd0, 0x91, 0x63, 0xff, 0xc8, 0x8d, 0x5f, 0xff, 0xca, 0x8f, 0x60, 0xff, 0xdc, 0x95, 0x66, 0xff, 0xe1, 0x98, 0x67, 0xff, 0xde, 0x9a, 0x66, 0xff, 0xdf, 0x9a, 0x65, 0xff, 0xe4, 0x9d, 0x67, 0xff, 0xe0, 0x99, 0x64, 0xff, 0xc2, 0x88, 0x5a, 0xff, 0xa7, 0x79, 0x54, 0xff, 0xa9, 0x78, 0x53, 0xff, 0xa7, 0x77, 0x4f, 0xff, 0xa6, 0x76, 0x4c, 0xff, 0xa5, 0x73, 0x47, 0xff, 0xa1, 0x69, 0x3d, 0xff, 0x9e, 0x62, 0x39, 0xff, 0x97, 0x5d, 0x36, 0xff, 0x90, 0x57, 0x31, 0xff, 0x8f, 0x55, 0x30, 0xff, 0x8c, 0x51, 0x2d, 0xff, 0x89, 0x4e, 0x2d, 0xff, 0x85, 0x4d, 0x2d, 0xff, 0x85, 0x4d, 0x2d, 0xff, 0x86, 0x4d, 0x2c, 0xff, 0x86, 0x4b, 0x2c, 0xff, 0x84, 0x48, 0x2a, 0xff, 0x7c, 0x41, 0x21, 0xff, 0x78, 0x3d, 0x1d, 0xff, 0x7a, 0x40, 0x20, 0xff, 0x7b, 0x40, 0x21, 0xff, 0x7b, 0x41, 0x20, 0xff, 0x7d, 0x43, 0x22, 0xff, 0x7e, 0x45, 0x23, 0xff, 0x83, 0x48, 0x27, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x92, 0x54, 0x2f, 0xff, 0x99, 0x59, 0x33, 0xff, 0x9f, 0x60, 0x37, 0xff, 0x9f, 0x63, 0x36, 0xff, 0xa0, 0x62, 0x36, 0xff, 0xa2, 0x63, 0x37, 0xff, 0x9e, 0x60, 0x35, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x8d, 0x4e, 0x2d, 0xff, 0x8f, 0x4f, 0x2d, 0xff, 0x8e, 0x50, 0x2d, 0xff, 0x8f, 0x52, 0x2e, 0xff, 0x91, 0x54, 0x30, 0xff, 0x92, 0x53, 0x2e, 0xff, 0x9f, 0x60, 0x38, 0xff, 0xb2, 0x75, 0x49, 0xff, 0xbc, 0x7f, 0x50, 0xff, 0xbe, 0x80, 0x51, 0xff, 0xbe, 0x81, 0x53, 0xff, 0xc2, 0x84, 0x57, 0xff, 0xc7, 0x88, 0x5a, 0xff, 0xc9, 0x8c, 0x5a, 0xff, 0xc9, 0x8c, 0x5b, 0xff, 0xc7, 0x8a, 0x5b, 0xff, 0xc4, 0x86, 0x57, 0xff, 0xc0, 0x81, 0x53, 0xff, 0xba, 0x7c, 0x4f, 0xff, 0xb5, 0x77, 0x48, 0xff, 0xaf, 0x72, 0x43, 0xff, 0xac, 0x6f, 0x41, 0xff, 0xab, 0x6c, 0x3f, 0xff, 0xaa, 0x6c, 0x3e, 0xff, 0xa7, 0x6a, 0x3d, 0xff, 0xa5, 0x67, 0x3c, 0xff, 0xa4, 0x67, 0x3c, 0xff, 0xa2, 0x66, 0x3c, 0xff, 0xa1, 0x65, 0x3a, 0xff, 0x9f, 0x64, 0x3c, 0xff, 0x9f, 0x63, 0x3b, 0xff, 0x9f, 0x62, 0x3a, 0xff, 0x92, 0x56, 0x31, 0xff, 0x8b, 0x4f, 0x2f, 0xff, 0x8a, 0x4d, 0x2e, 0xff, 0x87, 0x4a, 0x2d, 0xff, 0x7e, 0x43, 0x21, 0xff, 0x7b, 0x41, 0x1f, 0xff, 0x7d, 0x41, 0x21, 0xff, 0x81, 0x43, 0x21, 0xff, 0x87, 0x48, 0x27, 0xff, 0x88, 0x4a, 0x29, 0xff, 0x89, 0x4c, 0x2a, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x92, 0x53, 0x31, 0xff, 0x92, 0x53, 0x30, 0xff, 0x8f, 0x50, 0x2f, 0xff, 0x8d, 0x50, 0x2e, 0xff, 0x8c, 0x4e, 0x2d, 0xff, 0x8a, 0x4c, 0x2d, 0xff, 0x88, 0x4a, 0x2b, 0xff, 0x86, 0x47, 0x2a, 0xff, 0x92, 0x53, 0x30, 0xff, 0x93, 0x54, 0x30, 0xff, 0x8e, 0x4e, 0x2e, 0xff, 0x82, 0x47, 0x27, 0xff, 0x81, 0x44, 0x25, 0xff, 0x81, 0x44, 0x25, 0xff, 0x80, 0x44, 0x23, 0xff, 0x7e, 0x44, 0x23, 0xff, 0x81, 0x46, 0x23, 0xff, 0x83, 0x44, 0x24, 0xff, 0x81, 0x44, 0x22, 0xff, 0x81, 0x44, 0x23, 0xff, 0x80, 0x44, 0x23, 0xff, 0x7e, 0x42, 0x21, 0xff, 0x7d, 0x40, 0x21, 0xff, 0x86, 0x4a, 0x2a, 0xff, 0x87, 0x49, 0x28, 0xff, 0x86, 0x49, 0x28, 0xff, 0x86, 0x49, 0x29, 0xff, 0x87, 0x49, 0x27, 0xff, 0x85, 0x47, 0x27, 0xff, 0x85, 0x45, 0x26, 0xff, 0x85, 0x45, 0x25, 0xff, 0x83, 0x45, 0x25, 0xff, 0x84, 0x45, 0x25, 0xff, 0x86, 0x47, 0x27, 0xff, 0x86, 0x49, 0x27, 0xff, 0x86, 0x49, 0x27, 0xff, 0x86, 0x46, 0x26, 0xff, 0x86, 0x47, 0x25, 0xff, 0x86, 0x47, 0x25, 0xff, 0x86, 0x47, 0x25, 0xff, 0x86, 0x47, 0x25, 0xff, 0x87, 0x47, 0x27, 0xff, 0x86, 0x47, 0x26, 0xff, 0x88, 0x49, 0x26, 0xff, 0x88, 0x49, 0x29, 0xff, 0x8b, 0x4a, 0x29, 0xff, 0x8d, 0x4e, 0x2b, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x92, 0x51, 0x2f, 0xff, 0x97, 0x58, 0x30, 0xff, 0x9b, 0x5b, 0x34, 0xff, 0x9f, 0x5f, 0x37, 0xff, + 0xa3, 0x65, 0x3b, 0xff, 0xa9, 0x6e, 0x42, 0xff, 0xb2, 0x77, 0x4b, 0xff, 0xbd, 0x83, 0x58, 0xff, 0x9f, 0x64, 0x3c, 0xff, 0xab, 0x70, 0x49, 0xff, 0xb4, 0x7b, 0x53, 0xff, 0xc2, 0x8b, 0x5f, 0xff, 0xd6, 0x97, 0x6a, 0xff, 0xe8, 0xa6, 0x77, 0xff, 0xea, 0xb0, 0x80, 0xff, 0xea, 0xba, 0x89, 0xff, 0xea, 0xc3, 0x8d, 0xff, 0xea, 0xc3, 0x8d, 0xff, 0xe9, 0xb9, 0x87, 0xff, 0xea, 0xac, 0x7d, 0xff, 0xe7, 0xa5, 0x74, 0xff, 0xd8, 0x97, 0x68, 0xff, 0xc2, 0x87, 0x5a, 0xff, 0xb6, 0x7c, 0x4f, 0xff, 0xad, 0x70, 0x45, 0xff, 0xab, 0x6b, 0x41, 0xff, 0xa7, 0x69, 0x3d, 0xff, 0xa3, 0x64, 0x39, 0xff, 0xa3, 0x64, 0x38, 0xff, 0xa3, 0x62, 0x38, 0xff, 0xa4, 0x62, 0x38, 0xff, 0xa6, 0x66, 0x3b, 0xff, 0xa2, 0x61, 0x38, 0xff, 0xa3, 0x64, 0x38, 0xff, 0xa5, 0x64, 0x39, 0xff, 0xa6, 0x66, 0x39, 0xff, 0xa8, 0x6a, 0x3e, 0xff, 0xac, 0x6d, 0x41, 0xff, 0xac, 0x6d, 0x41, 0xff, 0xad, 0x6e, 0x42, 0xff, 0xb1, 0x72, 0x47, 0xff, 0xb0, 0x72, 0x46, 0xff, 0x90, 0x54, 0x2e, 0xff, 0x84, 0x47, 0x26, 0xff, 0x83, 0x46, 0x25, 0xff, 0x83, 0x44, 0x22, 0xff, 0x81, 0x44, 0x21, 0xff, 0x7f, 0x43, 0x20, 0xff, 0x7e, 0x42, 0x1e, 0xff, 0x7e, 0x42, 0x1e, 0xff, 0x7d, 0x40, 0x1e, 0xff, 0x7b, 0x3f, 0x1d, 0xff, 0x7a, 0x3e, 0x1b, 0xff, 0x7a, 0x40, 0x1e, 0xff, 0x78, 0x3d, 0x1a, 0xff, 0x78, 0x3d, 0x19, 0xff, 0x78, 0x3d, 0x19, 0xff, 0x78, 0x3d, 0x1a, 0xff, 0x7a, 0x3f, 0x1c, 0xff, 0x7a, 0x40, 0x1b, 0xff, 0x7b, 0x3f, 0x1e, 0xff, 0x7c, 0x3f, 0x1e, 0xff, 0x7b, 0x40, 0x1e, 0xff, 0x7c, 0x41, 0x1f, 0xff, 0x7d, 0x40, 0x20, 0xff, 0x7c, 0x41, 0x1f, 0xff, 0x79, 0x3e, 0x1b, 0xff, 0x7c, 0x40, 0x1d, 0xff, 0x7d, 0x40, 0x1e, 0xff, 0x7e, 0x42, 0x1e, 0xff, 0x81, 0x43, 0x21, 0xff, 0x83, 0x45, 0x23, 0xff, 0x86, 0x47, 0x26, 0xff, 0x87, 0x48, 0x27, 0xff, 0x8c, 0x4c, 0x27, 0xff, 0x93, 0x53, 0x29, 0xff, 0x98, 0x57, 0x2d, 0xff, 0x9c, 0x5b, 0x31, 0xff, 0xa0, 0x60, 0x35, 0xff, 0xa2, 0x63, 0x37, 0xff, 0xa5, 0x67, 0x3a, 0xff, 0xaa, 0x6d, 0x3e, 0xff, 0xb0, 0x74, 0x45, 0xff, 0xb6, 0x7b, 0x4b, 0xff, 0xc2, 0x86, 0x53, 0xff, 0xd1, 0x92, 0x5d, 0xff, 0xe2, 0x9f, 0x68, 0xff, 0xea, 0xae, 0x74, 0xff, 0xea, 0xc1, 0x7f, 0xff, 0xe9, 0xd2, 0x8b, 0xff, 0xe9, 0xdc, 0x92, 0xff, 0xe7, 0xd3, 0x91, 0xff, 0xea, 0xc4, 0x8c, 0xff, 0xea, 0xb7, 0x86, 0xff, 0xe7, 0xa7, 0x7b, 0xff, 0xe0, 0x9f, 0x71, 0xff, 0xdc, 0x9a, 0x6c, 0xff, 0xd5, 0x96, 0x68, 0xff, 0xcd, 0x90, 0x63, 0xff, 0xc9, 0x8c, 0x5f, 0xff, 0xd3, 0x92, 0x63, 0xff, 0xe5, 0x9c, 0x6a, 0xff, 0xe1, 0x9b, 0x67, 0xff, 0xe0, 0x9c, 0x66, 0xff, 0xe7, 0xa0, 0x69, 0xff, 0xe8, 0xa1, 0x6a, 0xff, 0xcb, 0x8f, 0x5f, 0xff, 0xab, 0x7c, 0x55, 0xff, 0xa8, 0x79, 0x55, 0xff, 0xa8, 0x78, 0x52, 0xff, 0xa8, 0x79, 0x50, 0xff, 0xa6, 0x75, 0x48, 0xff, 0xa2, 0x6a, 0x3d, 0xff, 0xa1, 0x65, 0x39, 0xff, 0x99, 0x5f, 0x37, 0xff, 0x91, 0x59, 0x33, 0xff, 0x91, 0x57, 0x30, 0xff, 0x8f, 0x53, 0x2f, 0xff, 0x8a, 0x51, 0x2e, 0xff, 0x88, 0x4f, 0x2d, 0xff, 0x88, 0x4e, 0x2d, 0xff, 0x86, 0x4d, 0x2d, 0xff, 0x87, 0x4c, 0x2d, 0xff, 0x83, 0x48, 0x29, 0xff, 0x7a, 0x41, 0x21, 0xff, 0x79, 0x3f, 0x1f, 0xff, 0x7b, 0x41, 0x20, 0xff, 0x7b, 0x40, 0x21, 0xff, 0x7b, 0x41, 0x20, 0xff, 0x7d, 0x43, 0x22, 0xff, 0x7d, 0x43, 0x22, 0xff, 0x80, 0x45, 0x22, 0xff, 0x82, 0x47, 0x26, 0xff, 0x86, 0x4a, 0x29, 0xff, 0x89, 0x4c, 0x2b, 0xff, 0x89, 0x4c, 0x2a, 0xff, 0x94, 0x57, 0x30, 0xff, 0x9e, 0x5f, 0x36, 0xff, 0xa0, 0x61, 0x38, 0xff, 0x96, 0x57, 0x31, 0xff, 0x8d, 0x4f, 0x2c, 0xff, 0x8d, 0x50, 0x2d, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x8e, 0x50, 0x2d, 0xff, 0x8f, 0x52, 0x2e, 0xff, 0x8f, 0x53, 0x2f, 0xff, 0x93, 0x57, 0x2f, 0xff, 0x97, 0x5a, 0x32, 0xff, 0x9a, 0x5d, 0x36, 0xff, 0xa1, 0x64, 0x3c, 0xff, 0xb3, 0x76, 0x4b, 0xff, 0xbe, 0x81, 0x53, 0xff, 0xc2, 0x85, 0x56, 0xff, 0xc5, 0x88, 0x58, 0xff, 0xc7, 0x8b, 0x59, 0xff, 0xc9, 0x8a, 0x5a, 0xff, 0xc8, 0x8a, 0x5a, 0xff, 0xc5, 0x87, 0x57, 0xff, 0xc1, 0x83, 0x53, 0xff, 0xbd, 0x80, 0x4f, 0xff, 0xb8, 0x7c, 0x4d, 0xff, 0xb4, 0x79, 0x4b, 0xff, 0xaf, 0x74, 0x47, 0xff, 0xac, 0x72, 0x45, 0xff, 0xaa, 0x70, 0x44, 0xff, 0xa7, 0x6e, 0x41, 0xff, 0xa6, 0x6c, 0x41, 0xff, 0xa5, 0x6a, 0x40, 0xff, 0xa3, 0x68, 0x3f, 0xff, 0xa2, 0x66, 0x3e, 0xff, 0xa1, 0x64, 0x3d, 0xff, 0xa1, 0x64, 0x3a, 0xff, 0xa1, 0x63, 0x3b, 0xff, 0x92, 0x55, 0x32, 0xff, 0x84, 0x48, 0x28, 0xff, 0x7e, 0x42, 0x20, 0xff, 0x7c, 0x41, 0x21, 0xff, 0x7c, 0x42, 0x1f, 0xff, 0x82, 0x44, 0x23, 0xff, 0x85, 0x47, 0x26, 0xff, 0x87, 0x49, 0x26, 0xff, 0x88, 0x49, 0x27, 0xff, 0x8a, 0x4a, 0x29, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x8b, 0x4c, 0x2c, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x95, 0x56, 0x31, 0xff, 0x93, 0x54, 0x30, 0xff, 0x90, 0x50, 0x2f, 0xff, 0x8e, 0x50, 0x2f, 0xff, 0x8c, 0x4f, 0x2d, 0xff, 0x8a, 0x4d, 0x2c, 0xff, 0x88, 0x4a, 0x2a, 0xff, 0x87, 0x4a, 0x2a, 0xff, 0x86, 0x48, 0x29, 0xff, 0x92, 0x53, 0x30, 0xff, 0x95, 0x55, 0x31, 0xff, 0x85, 0x48, 0x28, 0xff, 0x7f, 0x43, 0x25, 0xff, 0x81, 0x44, 0x25, 0xff, 0x81, 0x45, 0x23, 0xff, 0x80, 0x45, 0x23, 0xff, 0x82, 0x45, 0x23, 0xff, 0x83, 0x46, 0x25, 0xff, 0x82, 0x45, 0x25, 0xff, 0x82, 0x44, 0x22, 0xff, 0x82, 0x46, 0x22, 0xff, 0x81, 0x44, 0x23, 0xff, 0x80, 0x44, 0x21, 0xff, 0x7e, 0x40, 0x21, 0xff, 0x85, 0x49, 0x2a, 0xff, 0x86, 0x49, 0x29, 0xff, 0x86, 0x49, 0x29, 0xff, 0x88, 0x49, 0x29, 0xff, 0x88, 0x49, 0x28, 0xff, 0x85, 0x47, 0x25, 0xff, 0x86, 0x47, 0x27, 0xff, 0x86, 0x46, 0x26, 0xff, 0x86, 0x48, 0x26, 0xff, 0x85, 0x45, 0x25, 0xff, 0x86, 0x47, 0x25, 0xff, 0x88, 0x48, 0x27, 0xff, 0x87, 0x48, 0x27, 0xff, 0x86, 0x47, 0x25, 0xff, 0x86, 0x48, 0x25, 0xff, 0x86, 0x48, 0x25, 0xff, 0x88, 0x49, 0x25, 0xff, 0x88, 0x49, 0x27, 0xff, 0x88, 0x49, 0x26, 0xff, 0x89, 0x49, 0x26, 0xff, 0x8b, 0x4b, 0x27, 0xff, 0x8d, 0x4c, 0x2b, 0xff, 0x8f, 0x4f, 0x2d, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x91, 0x52, 0x2d, 0xff, 0x97, 0x56, 0x31, 0xff, 0x9b, 0x5a, 0x33, 0xff, 0x9f, 0x60, 0x38, 0xff, + 0xa2, 0x64, 0x3a, 0xff, 0xa9, 0x6d, 0x42, 0xff, 0xb3, 0x78, 0x4c, 0xff, 0xb0, 0x75, 0x4b, 0xff, 0xa1, 0x64, 0x3e, 0xff, 0xab, 0x71, 0x49, 0xff, 0xb5, 0x7e, 0x54, 0xff, 0xc2, 0x8b, 0x61, 0xff, 0xd8, 0x9d, 0x6d, 0xff, 0xea, 0xa9, 0x7c, 0xff, 0xea, 0xb9, 0x86, 0xff, 0xea, 0xca, 0x90, 0xff, 0xe9, 0xd4, 0x96, 0xff, 0xe8, 0xd8, 0x99, 0xff, 0xea, 0xd1, 0x95, 0xff, 0xea, 0xc3, 0x8b, 0xff, 0xe9, 0xb2, 0x80, 0xff, 0xea, 0xa7, 0x76, 0xff, 0xd7, 0x95, 0x65, 0xff, 0xbe, 0x84, 0x57, 0xff, 0xb1, 0x75, 0x4a, 0xff, 0xac, 0x6d, 0x43, 0xff, 0xa9, 0x69, 0x40, 0xff, 0xa8, 0x68, 0x3e, 0xff, 0xa5, 0x65, 0x3a, 0xff, 0xa4, 0x64, 0x39, 0xff, 0xa4, 0x63, 0x39, 0xff, 0xa5, 0x64, 0x39, 0xff, 0xa3, 0x62, 0x38, 0xff, 0xa3, 0x63, 0x39, 0xff, 0xa4, 0x64, 0x39, 0xff, 0xa4, 0x63, 0x39, 0xff, 0xa4, 0x66, 0x3b, 0xff, 0xa9, 0x69, 0x3e, 0xff, 0xab, 0x6b, 0x3f, 0xff, 0xab, 0x6c, 0x41, 0xff, 0xae, 0x6e, 0x43, 0xff, 0xb2, 0x73, 0x46, 0xff, 0xa6, 0x69, 0x40, 0xff, 0x83, 0x47, 0x25, 0xff, 0x84, 0x47, 0x27, 0xff, 0x85, 0x46, 0x25, 0xff, 0x83, 0x44, 0x22, 0xff, 0x80, 0x44, 0x21, 0xff, 0x7f, 0x42, 0x20, 0xff, 0x80, 0x42, 0x1f, 0xff, 0x7f, 0x43, 0x1f, 0xff, 0x7d, 0x40, 0x1e, 0xff, 0x7b, 0x40, 0x1d, 0xff, 0x79, 0x3f, 0x1d, 0xff, 0x78, 0x3e, 0x1b, 0xff, 0x78, 0x3d, 0x1b, 0xff, 0x79, 0x3e, 0x1a, 0xff, 0x79, 0x3f, 0x1d, 0xff, 0x7b, 0x40, 0x1e, 0xff, 0x7b, 0x40, 0x1d, 0xff, 0x7b, 0x40, 0x1e, 0xff, 0x7c, 0x40, 0x1e, 0xff, 0x7b, 0x40, 0x20, 0xff, 0x7d, 0x41, 0x20, 0xff, 0x7b, 0x40, 0x1e, 0xff, 0x7a, 0x3f, 0x1b, 0xff, 0x7a, 0x40, 0x1d, 0xff, 0x7c, 0x40, 0x1e, 0xff, 0x7c, 0x40, 0x1e, 0xff, 0x7e, 0x41, 0x20, 0xff, 0x81, 0x43, 0x22, 0xff, 0x85, 0x45, 0x25, 0xff, 0x87, 0x49, 0x29, 0xff, 0x8b, 0x4b, 0x28, 0xff, 0x8e, 0x4d, 0x24, 0xff, 0x92, 0x51, 0x27, 0xff, 0x97, 0x56, 0x2c, 0xff, 0x9c, 0x5b, 0x31, 0xff, 0xa0, 0x61, 0x35, 0xff, 0xa3, 0x65, 0x38, 0xff, 0xa6, 0x68, 0x3a, 0xff, 0xac, 0x6f, 0x40, 0xff, 0xb1, 0x75, 0x45, 0xff, 0xba, 0x7e, 0x4e, 0xff, 0xc7, 0x8a, 0x58, 0xff, 0xd8, 0x97, 0x61, 0xff, 0xe8, 0xa6, 0x6d, 0xff, 0xea, 0xb9, 0x7b, 0xff, 0xea, 0xcf, 0x89, 0xff, 0xe6, 0xdb, 0x94, 0xff, 0xe3, 0xda, 0x9d, 0xff, 0xe6, 0xdb, 0x9f, 0xff, 0xe8, 0xd8, 0x9a, 0xff, 0xea, 0xc9, 0x91, 0xff, 0xea, 0xb3, 0x84, 0xff, 0xe7, 0xa6, 0x78, 0xff, 0xdf, 0x9d, 0x6f, 0xff, 0xd8, 0x98, 0x69, 0xff, 0xd2, 0x94, 0x64, 0xff, 0xd0, 0x91, 0x62, 0xff, 0xce, 0x91, 0x62, 0xff, 0xd8, 0x96, 0x65, 0xff, 0xe5, 0x9e, 0x6a, 0xff, 0xe5, 0x9e, 0x69, 0xff, 0xe8, 0xa1, 0x6c, 0xff, 0xed, 0xa6, 0x6e, 0xff, 0xd8, 0x96, 0x64, 0xff, 0xb2, 0x7e, 0x55, 0xff, 0xaa, 0x7a, 0x54, 0xff, 0xab, 0x7b, 0x54, 0xff, 0xaa, 0x7c, 0x52, 0xff, 0xa7, 0x74, 0x49, 0xff, 0xa2, 0x68, 0x3c, 0xff, 0xa3, 0x69, 0x3c, 0xff, 0x9d, 0x62, 0x38, 0xff, 0x94, 0x5b, 0x34, 0xff, 0x92, 0x59, 0x32, 0xff, 0x91, 0x56, 0x2f, 0xff, 0x8f, 0x54, 0x2f, 0xff, 0x8b, 0x51, 0x2e, 0xff, 0x8a, 0x51, 0x2e, 0xff, 0x8a, 0x50, 0x2d, 0xff, 0x8a, 0x4f, 0x2e, 0xff, 0x7f, 0x45, 0x24, 0xff, 0x77, 0x3d, 0x1d, 0xff, 0x79, 0x40, 0x20, 0xff, 0x7a, 0x40, 0x20, 0xff, 0x7b, 0x40, 0x20, 0xff, 0x7c, 0x42, 0x21, 0xff, 0x7d, 0x43, 0x21, 0xff, 0x7c, 0x43, 0x22, 0xff, 0x7d, 0x45, 0x22, 0xff, 0x7f, 0x45, 0x24, 0xff, 0x80, 0x45, 0x25, 0xff, 0x83, 0x47, 0x26, 0xff, 0x88, 0x4c, 0x29, 0xff, 0x88, 0x4c, 0x2b, 0xff, 0x89, 0x4d, 0x2a, 0xff, 0x8b, 0x4d, 0x2a, 0xff, 0x8a, 0x4c, 0x2a, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x8d, 0x4e, 0x2d, 0xff, 0x8e, 0x4e, 0x2d, 0xff, 0x8f, 0x50, 0x2e, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x90, 0x53, 0x2f, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x96, 0x57, 0x32, 0xff, 0x9a, 0x5c, 0x35, 0xff, 0xa0, 0x62, 0x3a, 0xff, 0xa4, 0x68, 0x3f, 0xff, 0xab, 0x72, 0x48, 0xff, 0xb4, 0x7b, 0x50, 0xff, 0xbd, 0x83, 0x57, 0xff, 0xc4, 0x89, 0x5b, 0xff, 0xc7, 0x8c, 0x5d, 0xff, 0xc7, 0x8c, 0x5c, 0xff, 0xc5, 0x89, 0x59, 0xff, 0xc2, 0x86, 0x56, 0xff, 0xbd, 0x83, 0x54, 0xff, 0xb8, 0x7f, 0x53, 0xff, 0xb4, 0x7a, 0x51, 0xff, 0xb0, 0x76, 0x4d, 0xff, 0xad, 0x72, 0x48, 0xff, 0xab, 0x70, 0x43, 0xff, 0xa9, 0x6c, 0x41, 0xff, 0xa7, 0x6a, 0x41, 0xff, 0xa7, 0x69, 0x40, 0xff, 0xa6, 0x68, 0x3e, 0xff, 0xa7, 0x69, 0x3e, 0xff, 0xa9, 0x6a, 0x40, 0xff, 0xaf, 0x6f, 0x43, 0xff, 0xb2, 0x74, 0x49, 0xff, 0x87, 0x49, 0x27, 0xff, 0x7c, 0x40, 0x1f, 0xff, 0x80, 0x44, 0x23, 0xff, 0x83, 0x45, 0x24, 0xff, 0x85, 0x46, 0x23, 0xff, 0x88, 0x49, 0x26, 0xff, 0x8a, 0x4c, 0x29, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8b, 0x4c, 0x29, 0xff, 0x8a, 0x4b, 0x29, 0xff, 0x8a, 0x4c, 0x2a, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x95, 0x56, 0x32, 0xff, 0x96, 0x57, 0x32, 0xff, 0x92, 0x54, 0x30, 0xff, 0x8f, 0x50, 0x2f, 0xff, 0x8e, 0x50, 0x2f, 0xff, 0x8d, 0x4f, 0x2e, 0xff, 0x8b, 0x4d, 0x2d, 0xff, 0x8a, 0x4c, 0x2c, 0xff, 0x89, 0x4a, 0x2b, 0xff, 0x8a, 0x4c, 0x2c, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x8e, 0x4f, 0x2e, 0xff, 0x81, 0x45, 0x24, 0xff, 0x80, 0x45, 0x25, 0xff, 0x82, 0x45, 0x25, 0xff, 0x82, 0x45, 0x25, 0xff, 0x83, 0x45, 0x25, 0xff, 0x83, 0x46, 0x25, 0xff, 0x84, 0x45, 0x25, 0xff, 0x82, 0x45, 0x25, 0xff, 0x85, 0x46, 0x25, 0xff, 0x85, 0x47, 0x26, 0xff, 0x80, 0x43, 0x23, 0xff, 0x7f, 0x42, 0x21, 0xff, 0x80, 0x43, 0x22, 0xff, 0x85, 0x48, 0x29, 0xff, 0x87, 0x49, 0x29, 0xff, 0x87, 0x48, 0x2a, 0xff, 0x88, 0x49, 0x2a, 0xff, 0x87, 0x49, 0x28, 0xff, 0x86, 0x49, 0x28, 0xff, 0x88, 0x47, 0x27, 0xff, 0x87, 0x49, 0x27, 0xff, 0x88, 0x48, 0x28, 0xff, 0x87, 0x48, 0x25, 0xff, 0x88, 0x49, 0x28, 0xff, 0x89, 0x4a, 0x28, 0xff, 0x8a, 0x4a, 0x28, 0xff, 0x88, 0x49, 0x28, 0xff, 0x89, 0x4a, 0x27, 0xff, 0x88, 0x48, 0x27, 0xff, 0x89, 0x48, 0x27, 0xff, 0x8a, 0x4a, 0x27, 0xff, 0x8b, 0x4b, 0x28, 0xff, 0x8e, 0x4d, 0x2b, 0xff, 0x8e, 0x4d, 0x2a, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x93, 0x52, 0x2e, 0xff, 0x96, 0x56, 0x30, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x9e, 0x5e, 0x37, 0xff, + 0xa2, 0x63, 0x39, 0xff, 0xa8, 0x6c, 0x41, 0xff, 0xb3, 0x78, 0x4c, 0xff, 0xa1, 0x65, 0x3c, 0xff, 0xa2, 0x66, 0x3e, 0xff, 0xab, 0x70, 0x48, 0xff, 0xb3, 0x7a, 0x52, 0xff, 0xc2, 0x8d, 0x61, 0xff, 0xd5, 0x9c, 0x6d, 0xff, 0xe8, 0xa9, 0x7b, 0xff, 0xea, 0xbb, 0x89, 0xff, 0xea, 0xd0, 0x94, 0xff, 0xe4, 0xda, 0x9d, 0xff, 0xe4, 0xdb, 0xa0, 0xff, 0xe6, 0xdb, 0x9e, 0xff, 0xe7, 0xd5, 0x96, 0xff, 0xea, 0xc2, 0x8b, 0xff, 0xe9, 0xaf, 0x7d, 0xff, 0xe7, 0xa0, 0x6e, 0xff, 0xc8, 0x8b, 0x5e, 0xff, 0xb7, 0x7c, 0x4f, 0xff, 0xaf, 0x72, 0x47, 0xff, 0xac, 0x6d, 0x42, 0xff, 0xaa, 0x6a, 0x3f, 0xff, 0xaa, 0x6a, 0x3e, 0xff, 0xa5, 0x66, 0x3b, 0xff, 0xa6, 0x66, 0x3b, 0xff, 0xa4, 0x64, 0x39, 0xff, 0xa3, 0x62, 0x39, 0xff, 0xa3, 0x64, 0x38, 0xff, 0xa3, 0x62, 0x38, 0xff, 0xa3, 0x62, 0x38, 0xff, 0xa3, 0x62, 0x38, 0xff, 0xa8, 0x68, 0x3d, 0xff, 0xa9, 0x6a, 0x3e, 0xff, 0xaa, 0x69, 0x3f, 0xff, 0xab, 0x6c, 0x40, 0xff, 0xaf, 0x70, 0x44, 0xff, 0xae, 0x70, 0x44, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x84, 0x47, 0x28, 0xff, 0x85, 0x46, 0x25, 0xff, 0x84, 0x46, 0x22, 0xff, 0x82, 0x44, 0x24, 0xff, 0x81, 0x43, 0x20, 0xff, 0x82, 0x43, 0x22, 0xff, 0x7f, 0x43, 0x20, 0xff, 0x7c, 0x40, 0x1c, 0xff, 0x7b, 0x3f, 0x1d, 0xff, 0x79, 0x3f, 0x1b, 0xff, 0x77, 0x3d, 0x1b, 0xff, 0x7a, 0x3f, 0x1b, 0xff, 0x79, 0x40, 0x1c, 0xff, 0x7a, 0x40, 0x1e, 0xff, 0x7b, 0x3f, 0x1e, 0xff, 0x7b, 0x3f, 0x1e, 0xff, 0x7b, 0x40, 0x1e, 0xff, 0x7b, 0x40, 0x1e, 0xff, 0x7a, 0x40, 0x1f, 0xff, 0x7b, 0x3e, 0x1e, 0xff, 0x7a, 0x3f, 0x1b, 0xff, 0x7a, 0x40, 0x1b, 0xff, 0x7a, 0x40, 0x1d, 0xff, 0x7b, 0x3f, 0x1e, 0xff, 0x7c, 0x40, 0x1e, 0xff, 0x7e, 0x41, 0x20, 0xff, 0x82, 0x44, 0x22, 0xff, 0x85, 0x46, 0x25, 0xff, 0x88, 0x49, 0x26, 0xff, 0x8b, 0x4b, 0x24, 0xff, 0x8e, 0x4e, 0x24, 0xff, 0x92, 0x51, 0x27, 0xff, 0x96, 0x57, 0x2b, 0xff, 0x9d, 0x5c, 0x31, 0xff, 0xa0, 0x62, 0x35, 0xff, 0xa6, 0x67, 0x39, 0xff, 0xa7, 0x6a, 0x3c, 0xff, 0xad, 0x70, 0x43, 0xff, 0xb4, 0x77, 0x49, 0xff, 0xbc, 0x82, 0x52, 0xff, 0xca, 0x8e, 0x59, 0xff, 0xde, 0x9b, 0x65, 0xff, 0xea, 0xae, 0x73, 0xff, 0xea, 0xc5, 0x82, 0xff, 0xe6, 0xd9, 0x92, 0xff, 0xe5, 0xdb, 0xa0, 0xff, 0xe8, 0xdb, 0xac, 0xff, 0xe8, 0xdb, 0xae, 0xff, 0xe7, 0xdb, 0xa8, 0xff, 0xe7, 0xd6, 0x9c, 0xff, 0xea, 0xc4, 0x8d, 0xff, 0xea, 0xae, 0x80, 0xff, 0xe3, 0xa0, 0x73, 0xff, 0xd3, 0x97, 0x6a, 0xff, 0xd2, 0x94, 0x66, 0xff, 0xd4, 0x94, 0x66, 0xff, 0xd2, 0x94, 0x64, 0xff, 0xd4, 0x95, 0x64, 0xff, 0xde, 0x9a, 0x69, 0xff, 0xe8, 0x9f, 0x6b, 0xff, 0xe8, 0xa2, 0x6d, 0xff, 0xec, 0xa8, 0x71, 0xff, 0xdc, 0x9d, 0x69, 0xff, 0xb8, 0x85, 0x5a, 0xff, 0xab, 0x7d, 0x54, 0xff, 0xac, 0x7c, 0x55, 0xff, 0xad, 0x7f, 0x56, 0xff, 0xa9, 0x75, 0x4a, 0xff, 0xa2, 0x68, 0x3c, 0xff, 0xa4, 0x69, 0x3b, 0xff, 0x9e, 0x61, 0x35, 0xff, 0x96, 0x5b, 0x33, 0xff, 0x93, 0x59, 0x32, 0xff, 0x92, 0x56, 0x2f, 0xff, 0x8f, 0x54, 0x2f, 0xff, 0x8b, 0x51, 0x2e, 0xff, 0x8b, 0x51, 0x2e, 0xff, 0x8b, 0x51, 0x2e, 0xff, 0x84, 0x4a, 0x29, 0xff, 0x7a, 0x41, 0x20, 0xff, 0x79, 0x3f, 0x1f, 0xff, 0x7a, 0x40, 0x1f, 0xff, 0x7a, 0x40, 0x21, 0xff, 0x7a, 0x41, 0x22, 0xff, 0x7b, 0x42, 0x22, 0xff, 0x7d, 0x43, 0x23, 0xff, 0x7e, 0x44, 0x22, 0xff, 0x7d, 0x44, 0x22, 0xff, 0x7e, 0x43, 0x22, 0xff, 0x7e, 0x44, 0x22, 0xff, 0x7f, 0x45, 0x23, 0xff, 0x81, 0x46, 0x25, 0xff, 0x87, 0x4b, 0x2b, 0xff, 0x89, 0x4c, 0x2c, 0xff, 0x86, 0x49, 0x27, 0xff, 0x84, 0x46, 0x25, 0xff, 0x84, 0x46, 0x27, 0xff, 0x86, 0x48, 0x28, 0xff, 0x87, 0x4a, 0x29, 0xff, 0x88, 0x4a, 0x2b, 0xff, 0x8b, 0x4d, 0x2c, 0xff, 0x8d, 0x50, 0x2e, 0xff, 0x91, 0x53, 0x2e, 0xff, 0x95, 0x56, 0x31, 0xff, 0x99, 0x5a, 0x33, 0xff, 0x9d, 0x5f, 0x36, 0xff, 0xa1, 0x66, 0x3c, 0xff, 0xa7, 0x6c, 0x42, 0xff, 0xad, 0x72, 0x49, 0xff, 0xb3, 0x7a, 0x50, 0xff, 0xba, 0x82, 0x58, 0xff, 0xbf, 0x87, 0x5c, 0xff, 0xc2, 0x88, 0x5d, 0xff, 0xc0, 0x87, 0x5b, 0xff, 0xbe, 0x83, 0x57, 0xff, 0xba, 0x7f, 0x53, 0xff, 0xb6, 0x7c, 0x51, 0xff, 0xb2, 0x75, 0x4b, 0xff, 0xae, 0x70, 0x45, 0xff, 0xab, 0x6d, 0x3f, 0xff, 0xa9, 0x6b, 0x3c, 0xff, 0xa7, 0x69, 0x3c, 0xff, 0xaa, 0x6a, 0x3d, 0xff, 0xad, 0x6c, 0x3f, 0xff, 0xad, 0x6e, 0x41, 0xff, 0xaf, 0x6f, 0x42, 0xff, 0xb1, 0x72, 0x45, 0xff, 0xb4, 0x75, 0x47, 0xff, 0xb5, 0x77, 0x4a, 0xff, 0x8a, 0x4c, 0x29, 0xff, 0x81, 0x43, 0x22, 0xff, 0x83, 0x46, 0x24, 0xff, 0x83, 0x44, 0x23, 0xff, 0x84, 0x45, 0x22, 0xff, 0x85, 0x46, 0x23, 0xff, 0x89, 0x49, 0x26, 0xff, 0x8b, 0x4b, 0x29, 0xff, 0x8e, 0x4e, 0x2c, 0xff, 0x91, 0x50, 0x2d, 0xff, 0x92, 0x53, 0x2e, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x98, 0x5a, 0x35, 0xff, 0x97, 0x58, 0x34, 0xff, 0x92, 0x54, 0x31, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x90, 0x51, 0x2f, 0xff, 0x8e, 0x4f, 0x2e, 0xff, 0x8c, 0x4f, 0x2d, 0xff, 0x8c, 0x4d, 0x2d, 0xff, 0x8b, 0x4c, 0x2c, 0xff, 0x8a, 0x4a, 0x2b, 0xff, 0x8a, 0x4a, 0x2a, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x88, 0x49, 0x29, 0xff, 0x81, 0x45, 0x24, 0xff, 0x82, 0x46, 0x25, 0xff, 0x82, 0x46, 0x25, 0xff, 0x84, 0x46, 0x26, 0xff, 0x84, 0x46, 0x25, 0xff, 0x84, 0x46, 0x26, 0xff, 0x84, 0x46, 0x24, 0xff, 0x85, 0x48, 0x26, 0xff, 0x86, 0x47, 0x28, 0xff, 0x84, 0x45, 0x25, 0xff, 0x80, 0x43, 0x22, 0xff, 0x7e, 0x41, 0x21, 0xff, 0x7e, 0x41, 0x21, 0xff, 0x86, 0x4a, 0x2b, 0xff, 0x8a, 0x4b, 0x2c, 0xff, 0x88, 0x4a, 0x2b, 0xff, 0x87, 0x48, 0x2a, 0xff, 0x88, 0x49, 0x27, 0xff, 0x88, 0x49, 0x27, 0xff, 0x8a, 0x49, 0x2a, 0xff, 0x8a, 0x4b, 0x29, 0xff, 0x89, 0x49, 0x28, 0xff, 0x89, 0x49, 0x29, 0xff, 0x8a, 0x49, 0x2a, 0xff, 0x8a, 0x4a, 0x29, 0xff, 0x8b, 0x4c, 0x2a, 0xff, 0x8a, 0x4a, 0x28, 0xff, 0x8a, 0x4b, 0x29, 0xff, 0x8e, 0x4d, 0x2a, 0xff, 0x8f, 0x4e, 0x2a, 0xff, 0x8f, 0x4f, 0x2a, 0xff, 0x8f, 0x4e, 0x2a, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x94, 0x53, 0x2e, 0xff, 0x96, 0x55, 0x30, 0xff, 0x99, 0x59, 0x32, 0xff, 0x9e, 0x5e, 0x37, 0xff, + 0xa1, 0x62, 0x39, 0xff, 0xa6, 0x68, 0x3e, 0xff, 0xb1, 0x76, 0x4b, 0xff, 0x98, 0x5b, 0x34, 0xff, 0xa0, 0x63, 0x3c, 0xff, 0xa8, 0x6d, 0x45, 0xff, 0xb2, 0x79, 0x50, 0xff, 0xbd, 0x87, 0x5d, 0xff, 0xd1, 0x97, 0x69, 0xff, 0xe7, 0xa7, 0x78, 0xff, 0xea, 0xb6, 0x85, 0xff, 0xea, 0xcc, 0x91, 0xff, 0xe8, 0xdb, 0x9b, 0xff, 0xe5, 0xdb, 0xa2, 0xff, 0xe5, 0xdb, 0xa1, 0xff, 0xe6, 0xdb, 0x9d, 0xff, 0xea, 0xd1, 0x92, 0xff, 0xeb, 0xb2, 0x81, 0xff, 0xe8, 0xa2, 0x73, 0xff, 0xcf, 0x91, 0x60, 0xff, 0xbc, 0x81, 0x54, 0xff, 0xb2, 0x75, 0x4a, 0xff, 0xaf, 0x73, 0x45, 0xff, 0xac, 0x6d, 0x41, 0xff, 0xad, 0x6d, 0x41, 0xff, 0xaa, 0x6b, 0x3f, 0xff, 0xa5, 0x66, 0x3a, 0xff, 0xa4, 0x65, 0x3a, 0xff, 0xa3, 0x64, 0x38, 0xff, 0xa4, 0x65, 0x39, 0xff, 0xa3, 0x64, 0x38, 0xff, 0xa2, 0x62, 0x38, 0xff, 0xa3, 0x63, 0x39, 0xff, 0xa7, 0x67, 0x3a, 0xff, 0xa9, 0x69, 0x3d, 0xff, 0xa8, 0x6a, 0x3c, 0xff, 0xaa, 0x6b, 0x3e, 0xff, 0xad, 0x6d, 0x41, 0xff, 0xae, 0x6f, 0x42, 0xff, 0xa4, 0x64, 0x3d, 0xff, 0x7e, 0x3e, 0x1e, 0xff, 0x85, 0x46, 0x24, 0xff, 0x84, 0x45, 0x22, 0xff, 0x84, 0x44, 0x22, 0xff, 0x83, 0x44, 0x22, 0xff, 0x80, 0x41, 0x20, 0xff, 0x7c, 0x3f, 0x1d, 0xff, 0x7b, 0x40, 0x1b, 0xff, 0x7c, 0x3f, 0x1e, 0xff, 0x7a, 0x3f, 0x1c, 0xff, 0x79, 0x3f, 0x1e, 0xff, 0x7b, 0x3f, 0x1e, 0xff, 0x7a, 0x40, 0x1e, 0xff, 0x7b, 0x40, 0x1e, 0xff, 0x7b, 0x3f, 0x1e, 0xff, 0x7b, 0x3f, 0x1f, 0xff, 0x7b, 0x3f, 0x20, 0xff, 0x7b, 0x3f, 0x20, 0xff, 0x7a, 0x3d, 0x1e, 0xff, 0x79, 0x3f, 0x1a, 0xff, 0x79, 0x3f, 0x1d, 0xff, 0x79, 0x3e, 0x1c, 0xff, 0x79, 0x40, 0x1e, 0xff, 0x7c, 0x3f, 0x1e, 0xff, 0x7d, 0x3f, 0x20, 0xff, 0x7f, 0x42, 0x21, 0xff, 0x83, 0x45, 0x24, 0xff, 0x85, 0x46, 0x23, 0xff, 0x87, 0x46, 0x20, 0xff, 0x8a, 0x4a, 0x21, 0xff, 0x8d, 0x4d, 0x24, 0xff, 0x92, 0x51, 0x27, 0xff, 0x96, 0x57, 0x2b, 0xff, 0x9e, 0x5d, 0x32, 0xff, 0xa0, 0x62, 0x36, 0xff, 0xa3, 0x67, 0x39, 0xff, 0xaa, 0x6d, 0x40, 0xff, 0xaf, 0x72, 0x45, 0xff, 0xb5, 0x7a, 0x4b, 0xff, 0xbe, 0x84, 0x54, 0xff, 0xce, 0x90, 0x5e, 0xff, 0xe4, 0x9e, 0x6a, 0xff, 0xec, 0xb2, 0x77, 0xff, 0xea, 0xcc, 0x87, 0xff, 0xe6, 0xdb, 0x9a, 0xff, 0xe7, 0xda, 0xb0, 0xff, 0xea, 0xdb, 0xc1, 0xff, 0xeb, 0xda, 0xc3, 0xff, 0xe9, 0xda, 0xb7, 0xff, 0xe8, 0xdc, 0xa7, 0xff, 0xe9, 0xd3, 0x98, 0xff, 0xeb, 0xbb, 0x87, 0xff, 0xe7, 0xa8, 0x7a, 0xff, 0xd9, 0x9a, 0x6d, 0xff, 0xce, 0x93, 0x66, 0xff, 0xd2, 0x93, 0x65, 0xff, 0xd6, 0x96, 0x67, 0xff, 0xd5, 0x95, 0x67, 0xff, 0xd8, 0x96, 0x67, 0xff, 0xe3, 0x9e, 0x6a, 0xff, 0xeb, 0xa4, 0x6d, 0xff, 0xec, 0xa7, 0x70, 0xff, 0xe0, 0xa0, 0x6b, 0xff, 0xbe, 0x8b, 0x5f, 0xff, 0xac, 0x7f, 0x57, 0xff, 0xad, 0x7e, 0x54, 0xff, 0xae, 0x81, 0x55, 0xff, 0xaa, 0x77, 0x4a, 0xff, 0xa4, 0x69, 0x3c, 0xff, 0xa7, 0x6a, 0x3c, 0xff, 0xa2, 0x63, 0x38, 0xff, 0x98, 0x5c, 0x34, 0xff, 0x95, 0x5b, 0x32, 0xff, 0x94, 0x59, 0x30, 0xff, 0x91, 0x56, 0x30, 0xff, 0x8e, 0x53, 0x2e, 0xff, 0x8f, 0x54, 0x2e, 0xff, 0x8f, 0x53, 0x2f, 0xff, 0x84, 0x48, 0x28, 0xff, 0x79, 0x3e, 0x1f, 0xff, 0x7a, 0x3f, 0x20, 0xff, 0x7b, 0x41, 0x20, 0xff, 0x7c, 0x42, 0x20, 0xff, 0x7c, 0x42, 0x20, 0xff, 0x7b, 0x41, 0x22, 0xff, 0x7d, 0x43, 0x22, 0xff, 0x7e, 0x45, 0x22, 0xff, 0x7e, 0x45, 0x22, 0xff, 0x7e, 0x44, 0x22, 0xff, 0x7e, 0x44, 0x23, 0xff, 0x80, 0x45, 0x24, 0xff, 0x81, 0x46, 0x23, 0xff, 0x80, 0x45, 0x23, 0xff, 0x81, 0x45, 0x23, 0xff, 0x82, 0x45, 0x24, 0xff, 0x83, 0x46, 0x26, 0xff, 0x84, 0x48, 0x27, 0xff, 0x85, 0x48, 0x27, 0xff, 0x86, 0x48, 0x28, 0xff, 0x86, 0x48, 0x29, 0xff, 0x86, 0x48, 0x29, 0xff, 0x88, 0x48, 0x29, 0xff, 0x8a, 0x4b, 0x2b, 0xff, 0x8d, 0x50, 0x2e, 0xff, 0x93, 0x54, 0x30, 0xff, 0x97, 0x59, 0x33, 0xff, 0x9c, 0x5f, 0x37, 0xff, 0xa1, 0x66, 0x3e, 0xff, 0xa8, 0x6d, 0x45, 0xff, 0xae, 0x75, 0x4c, 0xff, 0xb3, 0x7c, 0x51, 0xff, 0xb6, 0x7e, 0x53, 0xff, 0xb8, 0x80, 0x55, 0xff, 0xb9, 0x7f, 0x55, 0xff, 0xb9, 0x7e, 0x53, 0xff, 0xb6, 0x7a, 0x4f, 0xff, 0xb3, 0x78, 0x4c, 0xff, 0xae, 0x74, 0x4a, 0xff, 0xab, 0x71, 0x44, 0xff, 0xab, 0x6d, 0x3f, 0xff, 0xa7, 0x68, 0x3a, 0xff, 0xa6, 0x66, 0x39, 0xff, 0xa6, 0x65, 0x39, 0xff, 0xaa, 0x69, 0x3c, 0xff, 0xac, 0x6b, 0x40, 0xff, 0xaf, 0x6f, 0x42, 0xff, 0xb1, 0x72, 0x44, 0xff, 0xb6, 0x76, 0x48, 0xff, 0xb3, 0x75, 0x4a, 0xff, 0x87, 0x4d, 0x29, 0xff, 0x80, 0x43, 0x21, 0xff, 0x83, 0x44, 0x22, 0xff, 0x82, 0x44, 0x22, 0xff, 0x83, 0x45, 0x20, 0xff, 0x85, 0x46, 0x23, 0xff, 0x88, 0x49, 0x26, 0xff, 0x8a, 0x4a, 0x27, 0xff, 0x8b, 0x4b, 0x29, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x9a, 0x5b, 0x34, 0xff, 0x9a, 0x5b, 0x35, 0xff, 0x96, 0x57, 0x33, 0xff, 0x96, 0x58, 0x32, 0xff, 0x96, 0x57, 0x31, 0xff, 0x94, 0x54, 0x30, 0xff, 0x92, 0x55, 0x2f, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x8c, 0x4d, 0x2d, 0xff, 0x8a, 0x4c, 0x2a, 0xff, 0x8a, 0x4c, 0x2a, 0xff, 0x88, 0x49, 0x27, 0xff, 0x8a, 0x4a, 0x2a, 0xff, 0x85, 0x46, 0x28, 0xff, 0x84, 0x46, 0x27, 0xff, 0x85, 0x48, 0x27, 0xff, 0x84, 0x46, 0x27, 0xff, 0x84, 0x47, 0x27, 0xff, 0x86, 0x48, 0x28, 0xff, 0x87, 0x48, 0x2a, 0xff, 0x87, 0x49, 0x29, 0xff, 0x87, 0x49, 0x29, 0xff, 0x85, 0x47, 0x27, 0xff, 0x82, 0x44, 0x22, 0xff, 0x80, 0x43, 0x20, 0xff, 0x7f, 0x43, 0x20, 0xff, 0x7f, 0x42, 0x20, 0xff, 0x87, 0x49, 0x2a, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x8a, 0x4a, 0x2a, 0xff, 0x8a, 0x4b, 0x29, 0xff, 0x8a, 0x4a, 0x29, 0xff, 0x89, 0x49, 0x29, 0xff, 0x88, 0x49, 0x27, 0xff, 0x89, 0x4a, 0x29, 0xff, 0x8a, 0x4a, 0x29, 0xff, 0x8a, 0x4a, 0x2a, 0xff, 0x8c, 0x4d, 0x2a, 0xff, 0x8c, 0x4d, 0x2a, 0xff, 0x8f, 0x4f, 0x2d, 0xff, 0x91, 0x4f, 0x2d, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x92, 0x51, 0x2c, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x90, 0x4f, 0x2c, 0xff, 0x92, 0x51, 0x2c, 0xff, 0x91, 0x52, 0x2d, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x97, 0x56, 0x2f, 0xff, 0x9a, 0x5a, 0x32, 0xff, 0x9e, 0x5d, 0x35, 0xff, + 0xa0, 0x61, 0x38, 0xff, 0xa6, 0x68, 0x3d, 0xff, 0xab, 0x70, 0x43, 0xff, 0x97, 0x5a, 0x34, 0xff, 0x9d, 0x61, 0x39, 0xff, 0xa6, 0x6a, 0x41, 0xff, 0xae, 0x75, 0x4b, 0xff, 0xb8, 0x81, 0x57, 0xff, 0xc7, 0x90, 0x63, 0xff, 0xdf, 0x9f, 0x70, 0xff, 0xea, 0xad, 0x7d, 0xff, 0xea, 0xc1, 0x8b, 0xff, 0xe9, 0xd5, 0x97, 0xff, 0xe6, 0xda, 0x9d, 0xff, 0xe5, 0xdb, 0x9e, 0xff, 0xe4, 0xda, 0x9d, 0xff, 0xe8, 0xd1, 0x93, 0xff, 0xeb, 0xb9, 0x84, 0xff, 0xe5, 0xa0, 0x71, 0xff, 0xcc, 0x90, 0x61, 0xff, 0xc0, 0x84, 0x57, 0xff, 0xb6, 0x7a, 0x4d, 0xff, 0xb0, 0x72, 0x46, 0xff, 0xb0, 0x70, 0x44, 0xff, 0xb0, 0x71, 0x42, 0xff, 0xad, 0x6e, 0x42, 0xff, 0xaa, 0x6a, 0x3f, 0xff, 0xa4, 0x64, 0x3a, 0xff, 0xa4, 0x65, 0x39, 0xff, 0xa3, 0x64, 0x39, 0xff, 0xa4, 0x64, 0x39, 0xff, 0xa4, 0x62, 0x38, 0xff, 0xa3, 0x62, 0x38, 0xff, 0xa6, 0x66, 0x39, 0xff, 0xa9, 0x69, 0x3c, 0xff, 0xa8, 0x69, 0x3d, 0xff, 0xa9, 0x6a, 0x3e, 0xff, 0xac, 0x6d, 0x41, 0xff, 0xae, 0x6f, 0x43, 0xff, 0xae, 0x6f, 0x45, 0xff, 0x88, 0x49, 0x26, 0xff, 0x84, 0x46, 0x22, 0xff, 0x84, 0x46, 0x22, 0xff, 0x83, 0x45, 0x22, 0xff, 0x81, 0x44, 0x23, 0xff, 0x7f, 0x42, 0x21, 0xff, 0x7e, 0x40, 0x1f, 0xff, 0x7e, 0x41, 0x1f, 0xff, 0x7d, 0x40, 0x1e, 0xff, 0x7b, 0x41, 0x1e, 0xff, 0x79, 0x3e, 0x1e, 0xff, 0x7b, 0x40, 0x1f, 0xff, 0x7c, 0x40, 0x1f, 0xff, 0x7b, 0x40, 0x1e, 0xff, 0x7b, 0x40, 0x1e, 0xff, 0x7a, 0x40, 0x1f, 0xff, 0x7c, 0x40, 0x1f, 0xff, 0x7b, 0x40, 0x1e, 0xff, 0x79, 0x3e, 0x1a, 0xff, 0x79, 0x3e, 0x1d, 0xff, 0x79, 0x3f, 0x1e, 0xff, 0x79, 0x3f, 0x1c, 0xff, 0x7b, 0x3f, 0x1e, 0xff, 0x7c, 0x41, 0x1f, 0xff, 0x7f, 0x42, 0x20, 0xff, 0x81, 0x42, 0x21, 0xff, 0x81, 0x43, 0x1f, 0xff, 0x83, 0x42, 0x1c, 0xff, 0x85, 0x45, 0x1f, 0xff, 0x87, 0x48, 0x21, 0xff, 0x8e, 0x4b, 0x23, 0xff, 0x92, 0x50, 0x27, 0xff, 0x97, 0x57, 0x2b, 0xff, 0x9e, 0x5f, 0x33, 0xff, 0xa3, 0x64, 0x39, 0xff, 0xa4, 0x66, 0x3a, 0xff, 0xa9, 0x6c, 0x3f, 0xff, 0xb0, 0x74, 0x47, 0xff, 0xb7, 0x7c, 0x4e, 0xff, 0xc1, 0x85, 0x56, 0xff, 0xd2, 0x92, 0x5f, 0xff, 0xe6, 0xa1, 0x6d, 0xff, 0xec, 0xb7, 0x7d, 0xff, 0xe8, 0xd2, 0x8c, 0xff, 0xe5, 0xdc, 0x9f, 0xff, 0xe9, 0xdb, 0xb8, 0xff, 0xeb, 0xda, 0xca, 0xff, 0xeb, 0xda, 0xcb, 0xff, 0xea, 0xdb, 0xc8, 0xff, 0xe8, 0xdb, 0xb7, 0xff, 0xe7, 0xd9, 0x9f, 0xff, 0xea, 0xc8, 0x8e, 0xff, 0xe8, 0xab, 0x7e, 0xff, 0xdf, 0x9d, 0x71, 0xff, 0xcf, 0x95, 0x68, 0xff, 0xca, 0x91, 0x63, 0xff, 0xd2, 0x93, 0x64, 0xff, 0xd9, 0x96, 0x66, 0xff, 0xd6, 0x95, 0x65, 0xff, 0xd9, 0x98, 0x67, 0xff, 0xe7, 0xa4, 0x6d, 0xff, 0xec, 0xa9, 0x70, 0xff, 0xe4, 0xa3, 0x6c, 0xff, 0xc5, 0x8e, 0x5e, 0xff, 0xae, 0x7d, 0x55, 0xff, 0xb0, 0x7d, 0x53, 0xff, 0xae, 0x7b, 0x4e, 0xff, 0xa8, 0x70, 0x44, 0xff, 0xa4, 0x67, 0x3a, 0xff, 0xa5, 0x67, 0x3a, 0xff, 0xa0, 0x61, 0x37, 0xff, 0x96, 0x5a, 0x32, 0xff, 0x94, 0x57, 0x30, 0xff, 0x95, 0x57, 0x2f, 0xff, 0x92, 0x55, 0x2f, 0xff, 0x8e, 0x53, 0x2d, 0xff, 0x91, 0x55, 0x2f, 0xff, 0x8d, 0x50, 0x2d, 0xff, 0x81, 0x45, 0x25, 0xff, 0x7c, 0x40, 0x21, 0xff, 0x7e, 0x41, 0x21, 0xff, 0x7e, 0x43, 0x21, 0xff, 0x7e, 0x44, 0x23, 0xff, 0x7d, 0x44, 0x23, 0xff, 0x7e, 0x45, 0x23, 0xff, 0x7d, 0x45, 0x24, 0xff, 0x7d, 0x44, 0x24, 0xff, 0x7e, 0x44, 0x23, 0xff, 0x7e, 0x45, 0x23, 0xff, 0x7e, 0x44, 0x24, 0xff, 0x80, 0x45, 0x24, 0xff, 0x80, 0x46, 0x24, 0xff, 0x7e, 0x43, 0x22, 0xff, 0x7d, 0x42, 0x21, 0xff, 0x80, 0x45, 0x23, 0xff, 0x81, 0x45, 0x24, 0xff, 0x83, 0x46, 0x25, 0xff, 0x85, 0x48, 0x27, 0xff, 0x85, 0x48, 0x28, 0xff, 0x86, 0x48, 0x28, 0xff, 0x84, 0x47, 0x25, 0xff, 0x85, 0x48, 0x27, 0xff, 0x88, 0x49, 0x2a, 0xff, 0x8b, 0x4c, 0x2c, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x8f, 0x53, 0x2f, 0xff, 0x92, 0x55, 0x30, 0xff, 0x97, 0x59, 0x33, 0xff, 0x9c, 0x5f, 0x38, 0xff, 0xa1, 0x66, 0x3f, 0xff, 0xa6, 0x6b, 0x45, 0xff, 0xaa, 0x6f, 0x47, 0xff, 0xac, 0x71, 0x49, 0xff, 0xad, 0x72, 0x48, 0xff, 0xac, 0x71, 0x47, 0xff, 0xab, 0x70, 0x45, 0xff, 0xaa, 0x6f, 0x43, 0xff, 0xa7, 0x6c, 0x41, 0xff, 0xa5, 0x69, 0x3f, 0xff, 0xa4, 0x66, 0x3a, 0xff, 0xa3, 0x64, 0x37, 0xff, 0xa4, 0x64, 0x37, 0xff, 0xa6, 0x64, 0x38, 0xff, 0xa9, 0x69, 0x3c, 0xff, 0xad, 0x6d, 0x40, 0xff, 0xb1, 0x70, 0x42, 0xff, 0xb2, 0x72, 0x45, 0xff, 0xb9, 0x7a, 0x4b, 0xff, 0xad, 0x70, 0x44, 0xff, 0x86, 0x4a, 0x26, 0xff, 0x81, 0x42, 0x20, 0xff, 0x82, 0x44, 0x22, 0xff, 0x81, 0x42, 0x21, 0xff, 0x81, 0x43, 0x22, 0xff, 0x85, 0x46, 0x22, 0xff, 0x87, 0x47, 0x23, 0xff, 0x88, 0x48, 0x26, 0xff, 0x8b, 0x4b, 0x28, 0xff, 0x8e, 0x4e, 0x2b, 0xff, 0x91, 0x51, 0x2e, 0xff, 0x9d, 0x5e, 0x37, 0xff, 0x9d, 0x5e, 0x38, 0xff, 0x9a, 0x5b, 0x34, 0xff, 0x98, 0x5a, 0x34, 0xff, 0x97, 0x59, 0x33, 0xff, 0x97, 0x59, 0x33, 0xff, 0x96, 0x58, 0x31, 0xff, 0x94, 0x56, 0x2f, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8d, 0x4e, 0x2d, 0xff, 0x8a, 0x4b, 0x2a, 0xff, 0x89, 0x4b, 0x29, 0xff, 0x8a, 0x4b, 0x28, 0xff, 0x85, 0x47, 0x26, 0xff, 0x85, 0x47, 0x29, 0xff, 0x86, 0x49, 0x29, 0xff, 0x86, 0x48, 0x29, 0xff, 0x85, 0x46, 0x27, 0xff, 0x86, 0x49, 0x28, 0xff, 0x8b, 0x4b, 0x2b, 0xff, 0x89, 0x4b, 0x2a, 0xff, 0x8a, 0x4a, 0x2a, 0xff, 0x86, 0x48, 0x27, 0xff, 0x83, 0x45, 0x24, 0xff, 0x81, 0x44, 0x22, 0xff, 0x81, 0x44, 0x21, 0xff, 0x80, 0x43, 0x21, 0xff, 0x80, 0x44, 0x21, 0xff, 0x89, 0x4b, 0x2a, 0xff, 0x8c, 0x4d, 0x2c, 0xff, 0x8c, 0x4c, 0x2c, 0xff, 0x8c, 0x4d, 0x2c, 0xff, 0x8a, 0x4c, 0x29, 0xff, 0x8b, 0x4c, 0x2a, 0xff, 0x8a, 0x4b, 0x29, 0xff, 0x8a, 0x4b, 0x29, 0xff, 0x8c, 0x4c, 0x2a, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x8c, 0x4d, 0x2a, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x8f, 0x4e, 0x2c, 0xff, 0x93, 0x52, 0x2c, 0xff, 0x94, 0x53, 0x2d, 0xff, 0x92, 0x52, 0x2d, 0xff, 0x92, 0x52, 0x2d, 0xff, 0x93, 0x51, 0x2c, 0xff, 0x94, 0x52, 0x2d, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x96, 0x55, 0x2f, 0xff, 0x98, 0x57, 0x31, 0xff, 0x9b, 0x5a, 0x32, 0xff, 0x9e, 0x5e, 0x34, 0xff, + 0xa0, 0x60, 0x36, 0xff, 0xa4, 0x66, 0x39, 0xff, 0xa8, 0x6a, 0x3e, 0xff, 0x96, 0x58, 0x33, 0xff, 0x9a, 0x5d, 0x36, 0xff, 0xa2, 0x64, 0x3e, 0xff, 0xa9, 0x70, 0x46, 0xff, 0xb2, 0x79, 0x50, 0xff, 0xbe, 0x85, 0x5b, 0xff, 0xd0, 0x93, 0x67, 0xff, 0xe5, 0xa3, 0x75, 0xff, 0xeb, 0xb2, 0x80, 0xff, 0xea, 0xc3, 0x8c, 0xff, 0xeb, 0xd2, 0x92, 0xff, 0xe8, 0xd7, 0x99, 0xff, 0xe9, 0xd6, 0x96, 0xff, 0xea, 0xc8, 0x8e, 0xff, 0xe9, 0xb0, 0x7f, 0xff, 0xe4, 0x9e, 0x6f, 0xff, 0xc9, 0x8e, 0x61, 0xff, 0xbb, 0x81, 0x54, 0xff, 0xb7, 0x7a, 0x4e, 0xff, 0xb3, 0x76, 0x4a, 0xff, 0xb2, 0x73, 0x46, 0xff, 0xb2, 0x73, 0x45, 0xff, 0xaf, 0x70, 0x43, 0xff, 0xa7, 0x69, 0x3d, 0xff, 0xa2, 0x63, 0x39, 0xff, 0xa3, 0x65, 0x39, 0xff, 0xa4, 0x65, 0x39, 0xff, 0xa5, 0x63, 0x39, 0xff, 0xa5, 0x63, 0x39, 0xff, 0xa4, 0x64, 0x38, 0xff, 0xa6, 0x64, 0x39, 0xff, 0xa8, 0x68, 0x3c, 0xff, 0xa8, 0x68, 0x3c, 0xff, 0xaa, 0x6a, 0x3e, 0xff, 0xad, 0x6d, 0x41, 0xff, 0xae, 0x6f, 0x43, 0xff, 0xac, 0x6c, 0x40, 0xff, 0x9b, 0x5c, 0x35, 0xff, 0x81, 0x41, 0x1f, 0xff, 0x85, 0x45, 0x23, 0xff, 0x84, 0x46, 0x22, 0xff, 0x83, 0x45, 0x25, 0xff, 0x81, 0x44, 0x23, 0xff, 0x80, 0x44, 0x22, 0xff, 0x80, 0x43, 0x20, 0xff, 0x7e, 0x42, 0x1f, 0xff, 0x7d, 0x40, 0x1f, 0xff, 0x7b, 0x40, 0x20, 0xff, 0x7b, 0x40, 0x20, 0xff, 0x7d, 0x41, 0x20, 0xff, 0x7c, 0x41, 0x1f, 0xff, 0x7c, 0x40, 0x1f, 0xff, 0x7c, 0x40, 0x1e, 0xff, 0x7b, 0x40, 0x1b, 0xff, 0x7c, 0x40, 0x1a, 0xff, 0x7a, 0x3f, 0x1c, 0xff, 0x7b, 0x3f, 0x1d, 0xff, 0x7b, 0x3f, 0x1f, 0xff, 0x7b, 0x3f, 0x1f, 0xff, 0x7d, 0x3f, 0x1f, 0xff, 0x7e, 0x40, 0x1f, 0xff, 0x7d, 0x40, 0x1f, 0xff, 0x7b, 0x3d, 0x17, 0xff, 0x7c, 0x3e, 0x16, 0xff, 0x81, 0x42, 0x1d, 0xff, 0x85, 0x45, 0x1f, 0xff, 0x89, 0x49, 0x21, 0xff, 0x8d, 0x4c, 0x23, 0xff, 0x92, 0x51, 0x27, 0xff, 0x97, 0x56, 0x2b, 0xff, 0x9e, 0x5f, 0x33, 0xff, 0xa6, 0x67, 0x39, 0xff, 0xa5, 0x68, 0x3a, 0xff, 0xa7, 0x6a, 0x40, 0xff, 0xad, 0x72, 0x45, 0xff, 0xb5, 0x79, 0x4d, 0xff, 0xc0, 0x84, 0x55, 0xff, 0xd3, 0x92, 0x60, 0xff, 0xe5, 0xa1, 0x6d, 0xff, 0xeb, 0xb5, 0x7c, 0xff, 0xe8, 0xd0, 0x8b, 0xff, 0xe5, 0xdc, 0x9f, 0xff, 0xe8, 0xdb, 0xb9, 0xff, 0xeb, 0xdb, 0xcd, 0xff, 0xeb, 0xdc, 0xcd, 0xff, 0xeb, 0xdb, 0xcc, 0xff, 0xea, 0xda, 0xc2, 0xff, 0xe8, 0xdb, 0xa9, 0xff, 0xe7, 0xce, 0x94, 0xff, 0xeb, 0xb2, 0x82, 0xff, 0xe5, 0xa1, 0x74, 0xff, 0xd5, 0x97, 0x6a, 0xff, 0xcb, 0x92, 0x64, 0xff, 0xcb, 0x8e, 0x63, 0xff, 0xd0, 0x91, 0x64, 0xff, 0xd6, 0x95, 0x65, 0xff, 0xdb, 0x98, 0x65, 0xff, 0xe5, 0x9f, 0x68, 0xff, 0xec, 0xa5, 0x6d, 0xff, 0xe7, 0xa2, 0x6b, 0xff, 0xca, 0x8d, 0x5b, 0xff, 0xb0, 0x78, 0x4c, 0xff, 0xb1, 0x7a, 0x4e, 0xff, 0xb1, 0x79, 0x4d, 0xff, 0xac, 0x70, 0x43, 0xff, 0xa6, 0x68, 0x3b, 0xff, 0xa6, 0x69, 0x3a, 0xff, 0xa2, 0x63, 0x37, 0xff, 0x98, 0x59, 0x32, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x95, 0x55, 0x2f, 0xff, 0x92, 0x53, 0x2d, 0xff, 0x8d, 0x4f, 0x2b, 0xff, 0x8f, 0x51, 0x2d, 0xff, 0x89, 0x4c, 0x28, 0xff, 0x80, 0x44, 0x22, 0xff, 0x7f, 0x43, 0x22, 0xff, 0x81, 0x43, 0x22, 0xff, 0x80, 0x45, 0x24, 0xff, 0x81, 0x46, 0x24, 0xff, 0x80, 0x46, 0x25, 0xff, 0x81, 0x45, 0x24, 0xff, 0x81, 0x46, 0x25, 0xff, 0x7f, 0x45, 0x26, 0xff, 0x7f, 0x44, 0x24, 0xff, 0x80, 0x45, 0x24, 0xff, 0x80, 0x45, 0x24, 0xff, 0x80, 0x46, 0x25, 0xff, 0x7f, 0x46, 0x25, 0xff, 0x7e, 0x42, 0x23, 0xff, 0x80, 0x44, 0x23, 0xff, 0x81, 0x46, 0x24, 0xff, 0x80, 0x44, 0x23, 0xff, 0x80, 0x44, 0x23, 0xff, 0x82, 0x46, 0x25, 0xff, 0x85, 0x47, 0x28, 0xff, 0x82, 0x45, 0x26, 0xff, 0x82, 0x44, 0x23, 0xff, 0x83, 0x44, 0x24, 0xff, 0x85, 0x46, 0x27, 0xff, 0x88, 0x49, 0x2a, 0xff, 0x8a, 0x4d, 0x2c, 0xff, 0x8c, 0x4f, 0x2e, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x94, 0x56, 0x31, 0xff, 0x97, 0x5b, 0x34, 0xff, 0x9c, 0x5f, 0x39, 0xff, 0xa0, 0x64, 0x3d, 0xff, 0xa3, 0x67, 0x40, 0xff, 0xa5, 0x69, 0x41, 0xff, 0xa5, 0x6a, 0x41, 0xff, 0xa6, 0x6a, 0x40, 0xff, 0xa7, 0x6a, 0x40, 0xff, 0xa6, 0x6a, 0x3e, 0xff, 0xa5, 0x6a, 0x3f, 0xff, 0xa4, 0x68, 0x40, 0xff, 0xa4, 0x66, 0x3b, 0xff, 0xa3, 0x64, 0x37, 0xff, 0xa3, 0x63, 0x36, 0xff, 0xa6, 0x65, 0x38, 0xff, 0xaa, 0x69, 0x3d, 0xff, 0xae, 0x6e, 0x41, 0xff, 0xb3, 0x75, 0x46, 0xff, 0xb7, 0x77, 0x48, 0xff, 0xc2, 0x83, 0x53, 0xff, 0xa0, 0x64, 0x3d, 0xff, 0x82, 0x46, 0x23, 0xff, 0x80, 0x43, 0x21, 0xff, 0x81, 0x44, 0x22, 0xff, 0x81, 0x44, 0x22, 0xff, 0x82, 0x44, 0x21, 0xff, 0x84, 0x45, 0x22, 0xff, 0x87, 0x48, 0x23, 0xff, 0x88, 0x49, 0x27, 0xff, 0x89, 0x4b, 0x29, 0xff, 0x8d, 0x4d, 0x2b, 0xff, 0x96, 0x57, 0x32, 0xff, 0x9f, 0x5f, 0x38, 0xff, 0x9d, 0x5e, 0x37, 0xff, 0x9a, 0x5b, 0x35, 0xff, 0x99, 0x5d, 0x36, 0xff, 0x9a, 0x5e, 0x36, 0xff, 0x9a, 0x5c, 0x35, 0xff, 0x98, 0x5a, 0x34, 0xff, 0x96, 0x58, 0x32, 0xff, 0x94, 0x56, 0x30, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x8d, 0x4f, 0x2c, 0xff, 0x89, 0x4b, 0x29, 0xff, 0x8a, 0x4b, 0x28, 0xff, 0x89, 0x4b, 0x29, 0xff, 0x85, 0x47, 0x27, 0xff, 0x84, 0x47, 0x28, 0xff, 0x86, 0x47, 0x29, 0xff, 0x86, 0x48, 0x29, 0xff, 0x84, 0x46, 0x26, 0xff, 0x88, 0x49, 0x2a, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x8b, 0x4c, 0x29, 0xff, 0x86, 0x49, 0x29, 0xff, 0x86, 0x48, 0x27, 0xff, 0x83, 0x44, 0x23, 0xff, 0x82, 0x44, 0x22, 0xff, 0x81, 0x44, 0x22, 0xff, 0x81, 0x43, 0x21, 0xff, 0x83, 0x44, 0x23, 0xff, 0x8a, 0x4d, 0x2b, 0xff, 0x8e, 0x50, 0x2d, 0xff, 0x8d, 0x4f, 0x2c, 0xff, 0x8d, 0x4d, 0x2b, 0xff, 0x8d, 0x4e, 0x2b, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8c, 0x4c, 0x2b, 0xff, 0x8c, 0x4c, 0x29, 0xff, 0x8e, 0x4d, 0x2b, 0xff, 0x8e, 0x4e, 0x2b, 0xff, 0x8e, 0x4e, 0x2c, 0xff, 0x8e, 0x4c, 0x2a, 0xff, 0x8f, 0x4e, 0x2b, 0xff, 0x91, 0x4f, 0x2c, 0xff, 0x95, 0x53, 0x2e, 0xff, 0x94, 0x53, 0x2e, 0xff, 0x96, 0x53, 0x2e, 0xff, 0x96, 0x56, 0x2f, 0xff, 0x97, 0x55, 0x2f, 0xff, 0x98, 0x58, 0x30, 0xff, 0x9b, 0x5a, 0x32, 0xff, 0x9b, 0x5b, 0x34, 0xff, 0x9f, 0x5f, 0x35, 0xff, + 0xa2, 0x62, 0x37, 0xff, 0xa4, 0x63, 0x39, 0xff, 0xa5, 0x67, 0x3c, 0xff, 0x95, 0x56, 0x32, 0xff, 0x99, 0x5b, 0x34, 0xff, 0x9e, 0x60, 0x39, 0xff, 0xa4, 0x68, 0x40, 0xff, 0xad, 0x72, 0x49, 0xff, 0xb5, 0x7d, 0x53, 0xff, 0xc2, 0x88, 0x5e, 0xff, 0xd6, 0x97, 0x69, 0xff, 0xe8, 0xa6, 0x75, 0xff, 0xea, 0xaf, 0x7d, 0xff, 0xea, 0xb8, 0x85, 0xff, 0xea, 0xc3, 0x8d, 0xff, 0xea, 0xc3, 0x8b, 0xff, 0xea, 0xb7, 0x84, 0xff, 0xeb, 0xa6, 0x76, 0xff, 0xdd, 0x99, 0x6a, 0xff, 0xc6, 0x8a, 0x5d, 0xff, 0xb9, 0x7f, 0x52, 0xff, 0xb1, 0x77, 0x4a, 0xff, 0xad, 0x71, 0x44, 0xff, 0xb3, 0x72, 0x46, 0xff, 0xb2, 0x73, 0x43, 0xff, 0xac, 0x6e, 0x40, 0xff, 0xa2, 0x63, 0x38, 0xff, 0xa2, 0x62, 0x38, 0xff, 0xa3, 0x62, 0x38, 0xff, 0xa3, 0x62, 0x38, 0xff, 0xa3, 0x63, 0x38, 0xff, 0xa3, 0x63, 0x38, 0xff, 0xa5, 0x63, 0x39, 0xff, 0xa7, 0x65, 0x3a, 0xff, 0xa9, 0x68, 0x3b, 0xff, 0xa8, 0x6a, 0x3c, 0xff, 0xa9, 0x69, 0x3d, 0xff, 0xae, 0x6e, 0x42, 0xff, 0xb0, 0x70, 0x43, 0xff, 0xad, 0x6d, 0x41, 0xff, 0xa3, 0x62, 0x3a, 0xff, 0x81, 0x42, 0x1f, 0xff, 0x85, 0x46, 0x24, 0xff, 0x85, 0x46, 0x22, 0xff, 0x84, 0x45, 0x24, 0xff, 0x83, 0x44, 0x22, 0xff, 0x82, 0x43, 0x22, 0xff, 0x80, 0x45, 0x21, 0xff, 0x7f, 0x44, 0x21, 0xff, 0x7e, 0x43, 0x20, 0xff, 0x7d, 0x41, 0x20, 0xff, 0x7e, 0x43, 0x20, 0xff, 0x7d, 0x40, 0x20, 0xff, 0x7d, 0x3f, 0x20, 0xff, 0x7b, 0x40, 0x20, 0xff, 0x7e, 0x40, 0x1f, 0xff, 0x7d, 0x41, 0x1d, 0xff, 0x7e, 0x41, 0x1d, 0xff, 0x7d, 0x40, 0x1e, 0xff, 0x7c, 0x3f, 0x1e, 0xff, 0x7e, 0x41, 0x20, 0xff, 0x7d, 0x3f, 0x20, 0xff, 0x7b, 0x3f, 0x1e, 0xff, 0x77, 0x3d, 0x1a, 0xff, 0x70, 0x35, 0x14, 0xff, 0x76, 0x3a, 0x14, 0xff, 0x7d, 0x3f, 0x17, 0xff, 0x81, 0x42, 0x1b, 0xff, 0x84, 0x44, 0x1f, 0xff, 0x89, 0x49, 0x21, 0xff, 0x8d, 0x4c, 0x23, 0xff, 0x92, 0x51, 0x27, 0xff, 0x96, 0x57, 0x2b, 0xff, 0x9e, 0x5f, 0x31, 0xff, 0xa4, 0x66, 0x39, 0xff, 0xa6, 0x68, 0x3d, 0xff, 0xa9, 0x6c, 0x41, 0xff, 0xad, 0x72, 0x44, 0xff, 0xb2, 0x77, 0x4a, 0xff, 0xbb, 0x81, 0x53, 0xff, 0xcb, 0x8e, 0x5e, 0xff, 0xe1, 0x9c, 0x6a, 0xff, 0xec, 0xb3, 0x79, 0xff, 0xea, 0xd0, 0x8a, 0xff, 0xe7, 0xdc, 0x9c, 0xff, 0xe8, 0xdb, 0xb5, 0xff, 0xea, 0xdb, 0xca, 0xff, 0xeb, 0xdc, 0xcd, 0xff, 0xeb, 0xdb, 0xcd, 0xff, 0xea, 0xdc, 0xc7, 0xff, 0xe8, 0xdc, 0xb0, 0xff, 0xe8, 0xd2, 0x99, 0xff, 0xec, 0xb8, 0x86, 0xff, 0xe8, 0xa4, 0x77, 0xff, 0xd9, 0x9a, 0x6c, 0xff, 0xcd, 0x93, 0x67, 0xff, 0xcb, 0x8f, 0x63, 0xff, 0xcd, 0x90, 0x61, 0xff, 0xd3, 0x94, 0x61, 0xff, 0xda, 0x98, 0x62, 0xff, 0xe4, 0x9c, 0x65, 0xff, 0xec, 0xa1, 0x69, 0xff, 0xe9, 0xa2, 0x6a, 0xff, 0xcf, 0x8f, 0x5c, 0xff, 0xb2, 0x7c, 0x4c, 0xff, 0xb3, 0x7c, 0x4d, 0xff, 0xb3, 0x7a, 0x4c, 0xff, 0xaf, 0x73, 0x45, 0xff, 0xa8, 0x6a, 0x3c, 0xff, 0xa7, 0x69, 0x3b, 0xff, 0xa5, 0x65, 0x37, 0xff, 0x9c, 0x5c, 0x32, 0xff, 0x96, 0x58, 0x30, 0xff, 0x97, 0x59, 0x30, 0xff, 0x95, 0x55, 0x2f, 0xff, 0x91, 0x52, 0x2d, 0xff, 0x91, 0x53, 0x2d, 0xff, 0x8a, 0x4b, 0x28, 0xff, 0x82, 0x44, 0x24, 0xff, 0x82, 0x45, 0x24, 0xff, 0x84, 0x45, 0x23, 0xff, 0x83, 0x46, 0x24, 0xff, 0x83, 0x48, 0x27, 0xff, 0x84, 0x48, 0x27, 0xff, 0x83, 0x46, 0x26, 0xff, 0x84, 0x47, 0x28, 0xff, 0x83, 0x48, 0x29, 0xff, 0x81, 0x47, 0x27, 0xff, 0x81, 0x47, 0x27, 0xff, 0x80, 0x45, 0x27, 0xff, 0x81, 0x46, 0x25, 0xff, 0x7e, 0x44, 0x23, 0xff, 0x7e, 0x43, 0x22, 0xff, 0x81, 0x44, 0x22, 0xff, 0x81, 0x45, 0x23, 0xff, 0x80, 0x45, 0x24, 0xff, 0x81, 0x45, 0x24, 0xff, 0x81, 0x45, 0x24, 0xff, 0x80, 0x44, 0x23, 0xff, 0x80, 0x43, 0x21, 0xff, 0x80, 0x43, 0x21, 0xff, 0x7f, 0x42, 0x21, 0xff, 0x80, 0x44, 0x21, 0xff, 0x83, 0x46, 0x25, 0xff, 0x87, 0x48, 0x2a, 0xff, 0x89, 0x4b, 0x2c, 0xff, 0x8d, 0x4e, 0x2d, 0xff, 0x92, 0x53, 0x2e, 0xff, 0x93, 0x55, 0x31, 0xff, 0x97, 0x59, 0x35, 0xff, 0x9b, 0x5e, 0x37, 0xff, 0x9d, 0x61, 0x39, 0xff, 0x9f, 0x63, 0x3a, 0xff, 0xa0, 0x63, 0x3a, 0xff, 0xa1, 0x62, 0x3a, 0xff, 0xa2, 0x63, 0x3a, 0xff, 0xa3, 0x65, 0x3b, 0xff, 0xa3, 0x67, 0x3c, 0xff, 0xa2, 0x67, 0x3d, 0xff, 0xa3, 0x67, 0x3b, 0xff, 0xa3, 0x63, 0x39, 0xff, 0xa2, 0x61, 0x37, 0xff, 0xa5, 0x64, 0x38, 0xff, 0xa9, 0x69, 0x3c, 0xff, 0xae, 0x6e, 0x40, 0xff, 0xb4, 0x74, 0x46, 0xff, 0xb7, 0x78, 0x48, 0xff, 0xca, 0x8b, 0x5a, 0xff, 0x8f, 0x51, 0x2a, 0xff, 0x7d, 0x41, 0x1c, 0xff, 0x81, 0x44, 0x21, 0xff, 0x81, 0x44, 0x22, 0xff, 0x81, 0x44, 0x22, 0xff, 0x81, 0x43, 0x22, 0xff, 0x82, 0x44, 0x22, 0xff, 0x85, 0x47, 0x23, 0xff, 0x87, 0x49, 0x26, 0xff, 0x8b, 0x4b, 0x29, 0xff, 0x8f, 0x4e, 0x2a, 0xff, 0x99, 0x59, 0x34, 0xff, 0xa0, 0x60, 0x39, 0xff, 0x9f, 0x5e, 0x37, 0xff, 0x9b, 0x5c, 0x36, 0xff, 0x9b, 0x5d, 0x36, 0xff, 0x9c, 0x61, 0x39, 0xff, 0x9b, 0x61, 0x38, 0xff, 0x9a, 0x5e, 0x36, 0xff, 0x98, 0x5a, 0x34, 0xff, 0x96, 0x59, 0x32, 0xff, 0x96, 0x59, 0x31, 0xff, 0x95, 0x57, 0x2f, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x8c, 0x4e, 0x2a, 0xff, 0x8a, 0x4b, 0x29, 0xff, 0x8b, 0x4c, 0x29, 0xff, 0x87, 0x49, 0x28, 0xff, 0x85, 0x48, 0x27, 0xff, 0x84, 0x46, 0x25, 0xff, 0x86, 0x49, 0x28, 0xff, 0x87, 0x48, 0x2a, 0xff, 0x87, 0x49, 0x29, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x8b, 0x4b, 0x2b, 0xff, 0x8b, 0x4c, 0x2a, 0xff, 0x88, 0x48, 0x29, 0xff, 0x84, 0x46, 0x25, 0xff, 0x84, 0x44, 0x24, 0xff, 0x84, 0x46, 0x24, 0xff, 0x84, 0x47, 0x24, 0xff, 0x84, 0x46, 0x24, 0xff, 0x82, 0x46, 0x23, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x8e, 0x50, 0x2d, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x8e, 0x4e, 0x2c, 0xff, 0x8d, 0x4d, 0x2b, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x8f, 0x4e, 0x2c, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x8e, 0x4e, 0x2c, 0xff, 0x91, 0x4f, 0x2c, 0xff, 0x97, 0x56, 0x2f, 0xff, 0x9a, 0x58, 0x30, 0xff, 0x9b, 0x5a, 0x31, 0xff, 0x9b, 0x5b, 0x31, 0xff, 0x9b, 0x5b, 0x32, 0xff, 0x9e, 0x5d, 0x33, 0xff, 0x9e, 0x5e, 0x34, 0xff, 0xa0, 0x60, 0x36, 0xff, + 0xa4, 0x64, 0x38, 0xff, 0xa7, 0x67, 0x39, 0xff, 0xa6, 0x67, 0x3a, 0xff, 0x94, 0x54, 0x30, 0xff, 0x97, 0x59, 0x32, 0xff, 0x9b, 0x5c, 0x36, 0xff, 0xa0, 0x61, 0x3b, 0xff, 0xa8, 0x6c, 0x42, 0xff, 0xaf, 0x74, 0x4a, 0xff, 0xb8, 0x7e, 0x53, 0xff, 0xc3, 0x8b, 0x5d, 0xff, 0xd4, 0x96, 0x67, 0xff, 0xe7, 0xa0, 0x70, 0xff, 0xea, 0xa8, 0x78, 0xff, 0xeb, 0xac, 0x7b, 0xff, 0xeb, 0xad, 0x7d, 0xff, 0xe8, 0xa5, 0x74, 0xff, 0xe4, 0x9e, 0x6d, 0xff, 0xd1, 0x91, 0x65, 0xff, 0xc1, 0x86, 0x58, 0xff, 0xb6, 0x7b, 0x50, 0xff, 0xaf, 0x74, 0x47, 0xff, 0xa9, 0x6c, 0x41, 0xff, 0xac, 0x6c, 0x40, 0xff, 0xb1, 0x70, 0x43, 0xff, 0xa4, 0x62, 0x39, 0xff, 0xa4, 0x62, 0x39, 0xff, 0xa3, 0x63, 0x38, 0xff, 0xa2, 0x61, 0x36, 0xff, 0xa1, 0x61, 0x37, 0xff, 0xa2, 0x62, 0x38, 0xff, 0xa2, 0x62, 0x38, 0xff, 0xa3, 0x62, 0x38, 0xff, 0xa7, 0x65, 0x3a, 0xff, 0xa8, 0x68, 0x3b, 0xff, 0xa8, 0x68, 0x3b, 0xff, 0xaa, 0x69, 0x3c, 0xff, 0xae, 0x6e, 0x42, 0xff, 0xb0, 0x72, 0x44, 0xff, 0xad, 0x6e, 0x43, 0xff, 0xa8, 0x69, 0x3f, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x85, 0x47, 0x26, 0xff, 0x86, 0x48, 0x26, 0xff, 0x84, 0x45, 0x24, 0xff, 0x83, 0x45, 0x23, 0xff, 0x83, 0x45, 0x24, 0xff, 0x83, 0x45, 0x24, 0xff, 0x80, 0x43, 0x21, 0xff, 0x80, 0x45, 0x20, 0xff, 0x80, 0x43, 0x20, 0xff, 0x7f, 0x43, 0x22, 0xff, 0x7e, 0x41, 0x21, 0xff, 0x7c, 0x40, 0x20, 0xff, 0x7d, 0x40, 0x20, 0xff, 0x7e, 0x41, 0x1e, 0xff, 0x80, 0x41, 0x20, 0xff, 0x80, 0x41, 0x20, 0xff, 0x7f, 0x41, 0x20, 0xff, 0x7c, 0x3f, 0x1f, 0xff, 0x7a, 0x3f, 0x1e, 0xff, 0x76, 0x3d, 0x1a, 0xff, 0x6b, 0x36, 0x18, 0xff, 0x66, 0x30, 0x14, 0xff, 0x6d, 0x34, 0x14, 0xff, 0x75, 0x39, 0x14, 0xff, 0x7a, 0x3e, 0x16, 0xff, 0x81, 0x42, 0x1a, 0xff, 0x84, 0x44, 0x1f, 0xff, 0x86, 0x46, 0x20, 0xff, 0x8b, 0x4a, 0x22, 0xff, 0x90, 0x4f, 0x25, 0xff, 0x94, 0x54, 0x2a, 0xff, 0x9b, 0x5b, 0x30, 0xff, 0xa4, 0x65, 0x38, 0xff, 0xa8, 0x6a, 0x3c, 0xff, 0xaa, 0x6e, 0x40, 0xff, 0xae, 0x71, 0x45, 0xff, 0xb3, 0x77, 0x4b, 0xff, 0xbb, 0x80, 0x53, 0xff, 0xc9, 0x8c, 0x5b, 0xff, 0xe1, 0x9d, 0x67, 0xff, 0xec, 0xad, 0x74, 0xff, 0xea, 0xc6, 0x82, 0xff, 0xe6, 0xda, 0x95, 0xff, 0xe8, 0xdb, 0xad, 0xff, 0xeb, 0xdb, 0xc8, 0xff, 0xeb, 0xdc, 0xce, 0xff, 0xeb, 0xdc, 0xce, 0xff, 0xeb, 0xdc, 0xc9, 0xff, 0xe9, 0xdc, 0xb3, 0xff, 0xe9, 0xd3, 0x99, 0xff, 0xec, 0xba, 0x88, 0xff, 0xea, 0xa6, 0x78, 0xff, 0xde, 0x9a, 0x6e, 0xff, 0xcf, 0x93, 0x65, 0xff, 0xcc, 0x90, 0x62, 0xff, 0xcf, 0x90, 0x60, 0xff, 0xd4, 0x95, 0x5f, 0xff, 0xd9, 0x99, 0x60, 0xff, 0xe3, 0x99, 0x60, 0xff, 0xeb, 0x9d, 0x64, 0xff, 0xea, 0xa1, 0x67, 0xff, 0xd2, 0x91, 0x5a, 0xff, 0xb5, 0x7d, 0x4a, 0xff, 0xb5, 0x7e, 0x4c, 0xff, 0xb4, 0x7d, 0x4d, 0xff, 0xb0, 0x73, 0x44, 0xff, 0xad, 0x6d, 0x3d, 0xff, 0xac, 0x6d, 0x3c, 0xff, 0xa7, 0x68, 0x38, 0xff, 0x9e, 0x5f, 0x33, 0xff, 0x99, 0x5a, 0x31, 0xff, 0x9a, 0x5c, 0x31, 0xff, 0x98, 0x5a, 0x30, 0xff, 0x95, 0x56, 0x2e, 0xff, 0x92, 0x52, 0x2d, 0xff, 0x89, 0x4a, 0x28, 0xff, 0x84, 0x45, 0x25, 0xff, 0x84, 0x45, 0x24, 0xff, 0x85, 0x47, 0x25, 0xff, 0x86, 0x48, 0x27, 0xff, 0x86, 0x48, 0x29, 0xff, 0x85, 0x48, 0x27, 0xff, 0x86, 0x48, 0x27, 0xff, 0x86, 0x49, 0x29, 0xff, 0x86, 0x49, 0x28, 0xff, 0x84, 0x49, 0x29, 0xff, 0x83, 0x48, 0x29, 0xff, 0x83, 0x47, 0x26, 0xff, 0x82, 0x47, 0x26, 0xff, 0x80, 0x45, 0x24, 0xff, 0x82, 0x44, 0x23, 0xff, 0x83, 0x46, 0x24, 0xff, 0x81, 0x45, 0x24, 0xff, 0x80, 0x45, 0x24, 0xff, 0x81, 0x46, 0x24, 0xff, 0x81, 0x46, 0x24, 0xff, 0x7f, 0x44, 0x22, 0xff, 0x7d, 0x41, 0x20, 0xff, 0x7c, 0x3f, 0x20, 0xff, 0x7e, 0x41, 0x21, 0xff, 0x7f, 0x43, 0x22, 0xff, 0x7f, 0x44, 0x23, 0xff, 0x82, 0x45, 0x24, 0xff, 0x86, 0x49, 0x29, 0xff, 0x8a, 0x4d, 0x2d, 0xff, 0x8d, 0x51, 0x2e, 0xff, 0x91, 0x53, 0x2e, 0xff, 0x95, 0x57, 0x31, 0xff, 0x97, 0x5a, 0x33, 0xff, 0x99, 0x5b, 0x35, 0xff, 0x9c, 0x5d, 0x36, 0xff, 0x9d, 0x5d, 0x37, 0xff, 0x9e, 0x5f, 0x37, 0xff, 0x9f, 0x60, 0x38, 0xff, 0xa0, 0x61, 0x38, 0xff, 0xa1, 0x63, 0x39, 0xff, 0xa2, 0x66, 0x3b, 0xff, 0xa3, 0x66, 0x3a, 0xff, 0xa2, 0x64, 0x37, 0xff, 0xa2, 0x61, 0x37, 0xff, 0xa5, 0x64, 0x38, 0xff, 0xa9, 0x69, 0x3c, 0xff, 0xae, 0x6e, 0x40, 0xff, 0xb3, 0x76, 0x46, 0xff, 0xba, 0x7b, 0x4b, 0xff, 0xbf, 0x7f, 0x50, 0xff, 0x8c, 0x4f, 0x25, 0xff, 0x7e, 0x41, 0x1e, 0xff, 0x80, 0x43, 0x22, 0xff, 0x80, 0x44, 0x21, 0xff, 0x80, 0x44, 0x20, 0xff, 0x81, 0x44, 0x20, 0xff, 0x84, 0x45, 0x21, 0xff, 0x87, 0x46, 0x23, 0xff, 0x89, 0x49, 0x26, 0xff, 0x8d, 0x4b, 0x28, 0xff, 0x94, 0x55, 0x2f, 0xff, 0x9c, 0x5c, 0x35, 0xff, 0xa0, 0x60, 0x38, 0xff, 0xa0, 0x5f, 0x37, 0xff, 0x9e, 0x5d, 0x36, 0xff, 0x9b, 0x5e, 0x37, 0xff, 0x9e, 0x61, 0x39, 0xff, 0x9d, 0x63, 0x3b, 0xff, 0x9a, 0x61, 0x3a, 0xff, 0x9a, 0x5e, 0x37, 0xff, 0x98, 0x5c, 0x34, 0xff, 0x98, 0x5a, 0x33, 0xff, 0x96, 0x58, 0x31, 0xff, 0x95, 0x55, 0x30, 0xff, 0x91, 0x53, 0x2d, 0xff, 0x8d, 0x4f, 0x2b, 0xff, 0x8b, 0x4c, 0x2a, 0xff, 0x8b, 0x4a, 0x29, 0xff, 0x8b, 0x4b, 0x29, 0xff, 0x85, 0x48, 0x27, 0xff, 0x85, 0x46, 0x26, 0xff, 0x85, 0x48, 0x26, 0xff, 0x85, 0x48, 0x24, 0xff, 0x8a, 0x4c, 0x29, 0xff, 0x88, 0x4b, 0x2a, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x8b, 0x4b, 0x29, 0xff, 0x86, 0x49, 0x27, 0xff, 0x85, 0x47, 0x24, 0xff, 0x86, 0x48, 0x24, 0xff, 0x85, 0x46, 0x27, 0xff, 0x85, 0x47, 0x24, 0xff, 0x86, 0x48, 0x23, 0xff, 0x85, 0x46, 0x27, 0xff, 0x88, 0x4b, 0x2a, 0xff, 0x91, 0x53, 0x2e, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x8f, 0x50, 0x2c, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x90, 0x4f, 0x2c, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x92, 0x51, 0x2c, 0xff, 0x91, 0x4f, 0x2c, 0xff, 0x91, 0x50, 0x2b, 0xff, 0x91, 0x50, 0x2c, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x99, 0x59, 0x31, 0xff, 0x9a, 0x5a, 0x31, 0xff, 0x9e, 0x5d, 0x33, 0xff, 0xa1, 0x61, 0x34, 0xff, 0xa2, 0x62, 0x36, 0xff, 0xa3, 0x63, 0x37, 0xff, 0xa3, 0x62, 0x37, 0xff, + 0xa8, 0x67, 0x39, 0xff, 0xab, 0x6b, 0x3b, 0xff, 0xaa, 0x6a, 0x3b, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x96, 0x58, 0x31, 0xff, 0x9a, 0x5b, 0x34, 0xff, 0x9f, 0x60, 0x38, 0xff, 0xa4, 0x67, 0x3c, 0xff, 0xaa, 0x6e, 0x43, 0xff, 0xb0, 0x75, 0x4b, 0xff, 0xb8, 0x7e, 0x52, 0xff, 0xc2, 0x86, 0x5b, 0xff, 0xd0, 0x8f, 0x62, 0xff, 0xdc, 0x97, 0x68, 0xff, 0xe6, 0x9e, 0x6d, 0xff, 0xdd, 0x9a, 0x6c, 0xff, 0xd4, 0x95, 0x67, 0xff, 0xce, 0x92, 0x63, 0xff, 0xc4, 0x8a, 0x5b, 0xff, 0xba, 0x80, 0x54, 0xff, 0xb0, 0x76, 0x4a, 0xff, 0xaa, 0x6d, 0x42, 0xff, 0xa7, 0x67, 0x3e, 0xff, 0xac, 0x6c, 0x3f, 0xff, 0x9e, 0x5e, 0x36, 0xff, 0x9f, 0x5e, 0x35, 0xff, 0xa1, 0x60, 0x36, 0xff, 0xa2, 0x61, 0x36, 0xff, 0xa2, 0x62, 0x36, 0xff, 0xa1, 0x60, 0x36, 0xff, 0x9f, 0x5f, 0x36, 0xff, 0xa0, 0x60, 0x36, 0xff, 0xa1, 0x5f, 0x37, 0xff, 0xa4, 0x63, 0x38, 0xff, 0xa8, 0x68, 0x3a, 0xff, 0xaa, 0x68, 0x3b, 0xff, 0xaa, 0x6a, 0x3e, 0xff, 0xae, 0x6e, 0x42, 0xff, 0xb0, 0x72, 0x45, 0xff, 0xb0, 0x70, 0x43, 0xff, 0xab, 0x6b, 0x41, 0xff, 0x99, 0x5a, 0x36, 0xff, 0x86, 0x47, 0x25, 0xff, 0x86, 0x48, 0x26, 0xff, 0x86, 0x48, 0x26, 0xff, 0x85, 0x48, 0x27, 0xff, 0x84, 0x47, 0x27, 0xff, 0x83, 0x46, 0x25, 0xff, 0x83, 0x45, 0x24, 0xff, 0x82, 0x44, 0x23, 0xff, 0x82, 0x44, 0x23, 0xff, 0x7e, 0x42, 0x22, 0xff, 0x7d, 0x40, 0x21, 0xff, 0x7e, 0x43, 0x21, 0xff, 0x80, 0x44, 0x21, 0xff, 0x80, 0x42, 0x20, 0xff, 0x80, 0x44, 0x20, 0xff, 0x7f, 0x42, 0x1e, 0xff, 0x7d, 0x41, 0x1f, 0xff, 0x73, 0x3b, 0x1b, 0xff, 0x66, 0x32, 0x16, 0xff, 0x5e, 0x2e, 0x14, 0xff, 0x60, 0x2f, 0x14, 0xff, 0x68, 0x2f, 0x14, 0xff, 0x6d, 0x32, 0x13, 0xff, 0x73, 0x37, 0x14, 0xff, 0x79, 0x3c, 0x15, 0xff, 0x81, 0x41, 0x1a, 0xff, 0x84, 0x44, 0x1e, 0xff, 0x86, 0x46, 0x1f, 0xff, 0x89, 0x49, 0x21, 0xff, 0x8f, 0x4e, 0x25, 0xff, 0x93, 0x51, 0x29, 0xff, 0x99, 0x59, 0x2d, 0xff, 0xa3, 0x64, 0x36, 0xff, 0xa8, 0x6b, 0x3d, 0xff, 0xab, 0x6e, 0x41, 0xff, 0xae, 0x70, 0x44, 0xff, 0xb2, 0x76, 0x4a, 0xff, 0xba, 0x7e, 0x52, 0xff, 0xc8, 0x8a, 0x5a, 0xff, 0xdd, 0x98, 0x65, 0xff, 0xeb, 0xaa, 0x70, 0xff, 0xea, 0xc0, 0x7e, 0xff, 0xe7, 0xd8, 0x90, 0xff, 0xe6, 0xdd, 0xa6, 0xff, 0xea, 0xdc, 0xbe, 0xff, 0xeb, 0xdb, 0xcb, 0xff, 0xeb, 0xdc, 0xce, 0xff, 0xeb, 0xdc, 0xc9, 0xff, 0xe9, 0xdd, 0xb3, 0xff, 0xea, 0xd5, 0x9a, 0xff, 0xeb, 0xbd, 0x89, 0xff, 0xea, 0xa7, 0x7b, 0xff, 0xe1, 0x9c, 0x70, 0xff, 0xd1, 0x95, 0x67, 0xff, 0xcd, 0x91, 0x62, 0xff, 0xce, 0x91, 0x5f, 0xff, 0xd3, 0x95, 0x5f, 0xff, 0xd9, 0x95, 0x5e, 0xff, 0xe1, 0x98, 0x5f, 0xff, 0xe9, 0x9c, 0x62, 0xff, 0xec, 0x9f, 0x66, 0xff, 0xd3, 0x90, 0x59, 0xff, 0xb6, 0x7a, 0x48, 0xff, 0xb7, 0x7a, 0x4a, 0xff, 0xb6, 0x7b, 0x4b, 0xff, 0xb2, 0x76, 0x44, 0xff, 0xaf, 0x70, 0x3e, 0xff, 0xae, 0x6e, 0x3d, 0xff, 0xa8, 0x68, 0x39, 0xff, 0x9e, 0x5e, 0x33, 0xff, 0x99, 0x5a, 0x31, 0xff, 0x9a, 0x5b, 0x31, 0xff, 0x99, 0x5a, 0x30, 0xff, 0x97, 0x59, 0x2f, 0xff, 0x92, 0x54, 0x2d, 0xff, 0x89, 0x4c, 0x2a, 0xff, 0x86, 0x48, 0x27, 0xff, 0x87, 0x48, 0x26, 0xff, 0x88, 0x49, 0x27, 0xff, 0x88, 0x4b, 0x2a, 0xff, 0x88, 0x4b, 0x2b, 0xff, 0x88, 0x4a, 0x2a, 0xff, 0x88, 0x4a, 0x28, 0xff, 0x88, 0x4b, 0x28, 0xff, 0x88, 0x4b, 0x2a, 0xff, 0x87, 0x4b, 0x2a, 0xff, 0x85, 0x4a, 0x2a, 0xff, 0x85, 0x4a, 0x2b, 0xff, 0x84, 0x48, 0x28, 0xff, 0x83, 0x46, 0x25, 0xff, 0x84, 0x45, 0x25, 0xff, 0x83, 0x46, 0x25, 0xff, 0x83, 0x46, 0x25, 0xff, 0x82, 0x45, 0x26, 0xff, 0x82, 0x45, 0x25, 0xff, 0x82, 0x45, 0x25, 0xff, 0x7f, 0x43, 0x23, 0xff, 0x7c, 0x41, 0x20, 0xff, 0x7b, 0x40, 0x20, 0xff, 0x7c, 0x40, 0x20, 0xff, 0x7e, 0x42, 0x21, 0xff, 0x7e, 0x42, 0x21, 0xff, 0x7f, 0x42, 0x21, 0xff, 0x82, 0x44, 0x24, 0xff, 0x86, 0x48, 0x28, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x8f, 0x4f, 0x2d, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x93, 0x55, 0x30, 0xff, 0x95, 0x57, 0x32, 0xff, 0x97, 0x59, 0x33, 0xff, 0x99, 0x5b, 0x33, 0xff, 0x9a, 0x5b, 0x33, 0xff, 0x9c, 0x5c, 0x34, 0xff, 0x9e, 0x5d, 0x35, 0xff, 0x9f, 0x61, 0x37, 0xff, 0xa0, 0x62, 0x38, 0xff, 0xa2, 0x63, 0x37, 0xff, 0xa1, 0x62, 0x36, 0xff, 0xa2, 0x62, 0x36, 0xff, 0xa4, 0x64, 0x37, 0xff, 0xa8, 0x68, 0x3a, 0xff, 0xac, 0x6d, 0x40, 0xff, 0xb5, 0x76, 0x47, 0xff, 0xbe, 0x7d, 0x4d, 0xff, 0xb1, 0x72, 0x45, 0xff, 0x8c, 0x4d, 0x28, 0xff, 0x80, 0x42, 0x21, 0xff, 0x81, 0x43, 0x21, 0xff, 0x83, 0x44, 0x21, 0xff, 0x84, 0x45, 0x21, 0xff, 0x86, 0x48, 0x22, 0xff, 0x87, 0x49, 0x23, 0xff, 0x88, 0x49, 0x26, 0xff, 0x8c, 0x4b, 0x28, 0xff, 0x8f, 0x4f, 0x29, 0xff, 0x99, 0x59, 0x33, 0xff, 0x9c, 0x5e, 0x36, 0xff, 0x9d, 0x5d, 0x35, 0xff, 0xa0, 0x5f, 0x37, 0xff, 0x9f, 0x60, 0x38, 0xff, 0x9f, 0x62, 0x39, 0xff, 0x9f, 0x63, 0x3c, 0xff, 0x9f, 0x65, 0x3c, 0xff, 0x9e, 0x63, 0x3c, 0xff, 0x9a, 0x61, 0x3a, 0xff, 0x99, 0x5e, 0x36, 0xff, 0x99, 0x5d, 0x35, 0xff, 0x98, 0x5b, 0x33, 0xff, 0x98, 0x5a, 0x31, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x8f, 0x51, 0x2b, 0xff, 0x8d, 0x4d, 0x2b, 0xff, 0x8b, 0x4b, 0x29, 0xff, 0x8b, 0x4b, 0x29, 0xff, 0x8a, 0x4b, 0x28, 0xff, 0x85, 0x48, 0x27, 0xff, 0x86, 0x48, 0x27, 0xff, 0x86, 0x48, 0x29, 0xff, 0x85, 0x48, 0x27, 0xff, 0x87, 0x49, 0x27, 0xff, 0x8a, 0x4b, 0x2a, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8c, 0x4c, 0x2b, 0xff, 0x89, 0x4b, 0x29, 0xff, 0x87, 0x48, 0x27, 0xff, 0x88, 0x49, 0x27, 0xff, 0x87, 0x48, 0x26, 0xff, 0x86, 0x48, 0x27, 0xff, 0x87, 0x49, 0x28, 0xff, 0x86, 0x48, 0x26, 0xff, 0x85, 0x48, 0x27, 0xff, 0x8a, 0x4b, 0x2b, 0xff, 0x8f, 0x51, 0x2e, 0xff, 0x94, 0x55, 0x2f, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x93, 0x51, 0x2e, 0xff, 0x92, 0x51, 0x2d, 0xff, 0x91, 0x50, 0x2d, 0xff, 0x92, 0x51, 0x2d, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x95, 0x54, 0x2e, 0xff, 0x96, 0x55, 0x2f, 0xff, 0x9a, 0x59, 0x31, 0xff, 0x9f, 0x5d, 0x34, 0xff, 0xa0, 0x60, 0x35, 0xff, 0xa3, 0x62, 0x37, 0xff, 0xa5, 0x64, 0x38, 0xff, 0xa6, 0x65, 0x38, 0xff, + 0xab, 0x6b, 0x3c, 0xff, 0xad, 0x6b, 0x3e, 0xff, 0xab, 0x6a, 0x3c, 0xff, 0x96, 0x56, 0x30, 0xff, 0x98, 0x58, 0x31, 0xff, 0x9b, 0x5c, 0x33, 0xff, 0x9e, 0x5e, 0x36, 0xff, 0xa1, 0x61, 0x39, 0xff, 0xa5, 0x68, 0x3e, 0xff, 0xaa, 0x6d, 0x43, 0xff, 0xaf, 0x74, 0x49, 0xff, 0xb7, 0x7c, 0x50, 0xff, 0xbd, 0x83, 0x56, 0xff, 0xc7, 0x8b, 0x5d, 0xff, 0xc5, 0x8a, 0x5b, 0xff, 0xc2, 0x88, 0x5c, 0xff, 0xc4, 0x89, 0x5d, 0xff, 0xc2, 0x88, 0x5a, 0xff, 0xba, 0x7f, 0x53, 0xff, 0xb5, 0x7a, 0x4d, 0xff, 0xaf, 0x73, 0x46, 0xff, 0xa9, 0x6c, 0x40, 0xff, 0xac, 0x6d, 0x3f, 0xff, 0xa4, 0x65, 0x39, 0xff, 0x9e, 0x5d, 0x35, 0xff, 0x9d, 0x5b, 0x34, 0xff, 0x9b, 0x5b, 0x33, 0xff, 0x9d, 0x5b, 0x33, 0xff, 0x9d, 0x5d, 0x33, 0xff, 0xa1, 0x5f, 0x35, 0xff, 0xa1, 0x5f, 0x35, 0xff, 0x9f, 0x5e, 0x36, 0xff, 0x9f, 0x5e, 0x35, 0xff, 0xa3, 0x64, 0x38, 0xff, 0xa7, 0x67, 0x3b, 0xff, 0xa8, 0x69, 0x3b, 0xff, 0xab, 0x6a, 0x3c, 0xff, 0xaf, 0x6e, 0x41, 0xff, 0xb1, 0x71, 0x45, 0xff, 0xb2, 0x72, 0x43, 0xff, 0xab, 0x6c, 0x41, 0xff, 0x9d, 0x5d, 0x36, 0xff, 0x89, 0x4a, 0x28, 0xff, 0x88, 0x4a, 0x28, 0xff, 0x89, 0x4a, 0x28, 0xff, 0x87, 0x49, 0x2a, 0xff, 0x85, 0x47, 0x28, 0xff, 0x85, 0x48, 0x28, 0xff, 0x85, 0x48, 0x26, 0xff, 0x84, 0x45, 0x24, 0xff, 0x82, 0x45, 0x24, 0xff, 0x80, 0x45, 0x26, 0xff, 0x80, 0x46, 0x26, 0xff, 0x80, 0x45, 0x25, 0xff, 0x82, 0x44, 0x23, 0xff, 0x81, 0x45, 0x22, 0xff, 0x7e, 0x42, 0x20, 0xff, 0x6e, 0x3b, 0x19, 0xff, 0x5c, 0x2c, 0x14, 0xff, 0x57, 0x2a, 0x14, 0xff, 0x58, 0x27, 0x13, 0xff, 0x5d, 0x2c, 0x13, 0xff, 0x61, 0x30, 0x13, 0xff, 0x65, 0x2f, 0x13, 0xff, 0x6a, 0x33, 0x14, 0xff, 0x71, 0x38, 0x13, 0xff, 0x77, 0x3a, 0x15, 0xff, 0x80, 0x40, 0x19, 0xff, 0x85, 0x44, 0x1e, 0xff, 0x86, 0x46, 0x1f, 0xff, 0x89, 0x49, 0x21, 0xff, 0x8e, 0x4b, 0x23, 0xff, 0x92, 0x50, 0x27, 0xff, 0x97, 0x58, 0x2c, 0xff, 0xa4, 0x64, 0x36, 0xff, 0xab, 0x6b, 0x3d, 0xff, 0xac, 0x6e, 0x41, 0xff, 0xad, 0x71, 0x44, 0xff, 0xb1, 0x75, 0x48, 0xff, 0xb9, 0x7e, 0x50, 0xff, 0xc5, 0x88, 0x57, 0xff, 0xdb, 0x95, 0x61, 0xff, 0xeb, 0xa4, 0x6c, 0xff, 0xeb, 0xb8, 0x79, 0xff, 0xe9, 0xd1, 0x8a, 0xff, 0xe5, 0xdd, 0x9c, 0xff, 0xe9, 0xdb, 0xb0, 0xff, 0xeb, 0xdc, 0xc2, 0xff, 0xeb, 0xdb, 0xc9, 0xff, 0xea, 0xdc, 0xc0, 0xff, 0xe8, 0xdd, 0xad, 0xff, 0xe8, 0xd5, 0x97, 0xff, 0xeb, 0xbd, 0x86, 0xff, 0xeb, 0xaa, 0x7a, 0xff, 0xe4, 0x9f, 0x6e, 0xff, 0xd4, 0x96, 0x66, 0xff, 0xce, 0x92, 0x61, 0xff, 0xcf, 0x92, 0x5e, 0xff, 0xd3, 0x94, 0x5d, 0xff, 0xd6, 0x94, 0x5b, 0xff, 0xde, 0x93, 0x5b, 0xff, 0xe8, 0x96, 0x5e, 0xff, 0xeb, 0x9b, 0x63, 0xff, 0xd2, 0x8e, 0x58, 0xff, 0xb6, 0x79, 0x46, 0xff, 0xb8, 0x79, 0x48, 0xff, 0xb8, 0x7b, 0x4a, 0xff, 0xb5, 0x75, 0x46, 0xff, 0xb1, 0x70, 0x3f, 0xff, 0xb2, 0x71, 0x3f, 0xff, 0xac, 0x6b, 0x3b, 0xff, 0xa0, 0x60, 0x33, 0xff, 0x9b, 0x5b, 0x30, 0xff, 0x9c, 0x5c, 0x31, 0xff, 0x9a, 0x59, 0x30, 0xff, 0x99, 0x58, 0x2f, 0xff, 0x92, 0x53, 0x2d, 0xff, 0x8a, 0x4b, 0x2a, 0xff, 0x87, 0x49, 0x27, 0xff, 0x87, 0x49, 0x27, 0xff, 0x89, 0x4b, 0x28, 0xff, 0x8b, 0x4e, 0x2b, 0xff, 0x8a, 0x4f, 0x2c, 0xff, 0x8b, 0x4e, 0x2b, 0xff, 0x8a, 0x4e, 0x2a, 0xff, 0x8b, 0x4e, 0x2a, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x88, 0x4c, 0x2b, 0xff, 0x86, 0x4b, 0x2b, 0xff, 0x85, 0x49, 0x29, 0xff, 0x85, 0x48, 0x27, 0xff, 0x85, 0x48, 0x27, 0xff, 0x84, 0x48, 0x27, 0xff, 0x84, 0x47, 0x26, 0xff, 0x84, 0x47, 0x27, 0xff, 0x83, 0x47, 0x26, 0xff, 0x82, 0x46, 0x25, 0xff, 0x7e, 0x42, 0x22, 0xff, 0x7c, 0x40, 0x20, 0xff, 0x7c, 0x40, 0x20, 0xff, 0x7d, 0x41, 0x20, 0xff, 0x7d, 0x41, 0x20, 0xff, 0x7e, 0x41, 0x20, 0xff, 0x7d, 0x41, 0x21, 0xff, 0x7f, 0x44, 0x22, 0xff, 0x82, 0x45, 0x24, 0xff, 0x86, 0x47, 0x29, 0xff, 0x89, 0x4a, 0x2b, 0xff, 0x8c, 0x4d, 0x2d, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x93, 0x55, 0x30, 0xff, 0x95, 0x56, 0x31, 0xff, 0x96, 0x57, 0x31, 0xff, 0x98, 0x59, 0x32, 0xff, 0x99, 0x5a, 0x33, 0xff, 0x9b, 0x5b, 0x33, 0xff, 0x9d, 0x5c, 0x35, 0xff, 0x9f, 0x61, 0x37, 0xff, 0xa0, 0x62, 0x37, 0xff, 0xa2, 0x61, 0x37, 0xff, 0xa2, 0x60, 0x37, 0xff, 0xa4, 0x64, 0x38, 0xff, 0xa8, 0x68, 0x3a, 0xff, 0xad, 0x6c, 0x3e, 0xff, 0xb6, 0x75, 0x47, 0xff, 0xbe, 0x7f, 0x4d, 0xff, 0xaa, 0x6a, 0x3f, 0xff, 0x8b, 0x4c, 0x27, 0xff, 0x84, 0x44, 0x21, 0xff, 0x86, 0x47, 0x22, 0xff, 0x88, 0x47, 0x23, 0xff, 0x88, 0x47, 0x23, 0xff, 0x86, 0x46, 0x22, 0xff, 0x87, 0x47, 0x22, 0xff, 0x8a, 0x49, 0x24, 0xff, 0x8b, 0x4a, 0x25, 0xff, 0x8e, 0x4c, 0x28, 0xff, 0x9a, 0x59, 0x33, 0xff, 0x9e, 0x5d, 0x36, 0xff, 0x9d, 0x5d, 0x35, 0xff, 0x9e, 0x5f, 0x36, 0xff, 0xa0, 0x60, 0x38, 0xff, 0xa0, 0x63, 0x3a, 0xff, 0xa1, 0x66, 0x3c, 0xff, 0xa0, 0x67, 0x3e, 0xff, 0x9e, 0x66, 0x3c, 0xff, 0x9d, 0x62, 0x3d, 0xff, 0x9b, 0x61, 0x3b, 0xff, 0x9a, 0x5f, 0x38, 0xff, 0x99, 0x5d, 0x35, 0xff, 0x98, 0x5c, 0x33, 0xff, 0x96, 0x55, 0x30, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x8f, 0x4d, 0x2b, 0xff, 0x8c, 0x4d, 0x29, 0xff, 0x8c, 0x4c, 0x29, 0xff, 0x8c, 0x4d, 0x28, 0xff, 0x8a, 0x4c, 0x29, 0xff, 0x87, 0x48, 0x29, 0xff, 0x88, 0x4a, 0x29, 0xff, 0x87, 0x4a, 0x28, 0xff, 0x89, 0x4b, 0x29, 0xff, 0x8a, 0x4b, 0x29, 0xff, 0x8c, 0x4c, 0x2b, 0xff, 0x8d, 0x4f, 0x2c, 0xff, 0x8b, 0x4b, 0x2a, 0xff, 0x8b, 0x4b, 0x29, 0xff, 0x89, 0x4a, 0x28, 0xff, 0x89, 0x4a, 0x28, 0xff, 0x89, 0x4a, 0x28, 0xff, 0x88, 0x4a, 0x28, 0xff, 0x87, 0x49, 0x29, 0xff, 0x85, 0x48, 0x28, 0xff, 0x86, 0x48, 0x29, 0xff, 0x89, 0x4d, 0x29, 0xff, 0x8c, 0x4d, 0x29, 0xff, 0x95, 0x57, 0x31, 0xff, 0x95, 0x54, 0x2f, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x93, 0x53, 0x2d, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x97, 0x55, 0x30, 0xff, 0x98, 0x58, 0x2e, 0xff, 0x98, 0x57, 0x30, 0xff, 0x99, 0x59, 0x30, 0xff, 0x98, 0x58, 0x30, 0xff, 0x9a, 0x59, 0x31, 0xff, 0x9d, 0x5c, 0x33, 0xff, 0xa2, 0x63, 0x37, 0xff, 0xa8, 0x66, 0x3a, 0xff, 0xa7, 0x67, 0x3b, 0xff, 0xa9, 0x69, 0x3b, 0xff, + 0xb1, 0x71, 0x41, 0xff, 0xb5, 0x77, 0x47, 0xff, 0xb2, 0x75, 0x45, 0xff, 0x98, 0x5a, 0x33, 0xff, 0x9a, 0x5b, 0x32, 0xff, 0x9b, 0x5a, 0x33, 0xff, 0x9d, 0x5c, 0x35, 0xff, 0x9f, 0x5f, 0x37, 0xff, 0xa1, 0x62, 0x38, 0xff, 0xa6, 0x69, 0x3d, 0xff, 0xad, 0x6e, 0x43, 0xff, 0xaf, 0x74, 0x47, 0xff, 0xb6, 0x7a, 0x4e, 0xff, 0xb5, 0x7a, 0x4f, 0xff, 0xb5, 0x7a, 0x4e, 0xff, 0xb8, 0x7c, 0x51, 0xff, 0xb9, 0x7e, 0x53, 0xff, 0xb7, 0x7a, 0x50, 0xff, 0xb5, 0x7a, 0x4e, 0xff, 0xb2, 0x76, 0x49, 0xff, 0xad, 0x6f, 0x45, 0xff, 0xa8, 0x6d, 0x40, 0xff, 0xa9, 0x68, 0x3c, 0xff, 0xa2, 0x62, 0x37, 0xff, 0xa0, 0x5f, 0x35, 0xff, 0x9e, 0x5e, 0x34, 0xff, 0x9f, 0x5c, 0x33, 0xff, 0x9d, 0x5b, 0x33, 0xff, 0x9c, 0x5c, 0x32, 0xff, 0x9b, 0x5a, 0x33, 0xff, 0x9d, 0x5c, 0x33, 0xff, 0x9e, 0x5c, 0x33, 0xff, 0x9f, 0x5f, 0x36, 0xff, 0xa4, 0x61, 0x38, 0xff, 0xaa, 0x6a, 0x3e, 0xff, 0xa9, 0x69, 0x3c, 0xff, 0xaa, 0x6a, 0x3e, 0xff, 0xad, 0x6e, 0x40, 0xff, 0xb0, 0x71, 0x43, 0xff, 0xb2, 0x72, 0x45, 0xff, 0xad, 0x6e, 0x42, 0xff, 0xa3, 0x63, 0x3b, 0xff, 0x8d, 0x4d, 0x2b, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x8a, 0x4d, 0x2b, 0xff, 0x89, 0x4a, 0x2b, 0xff, 0x87, 0x47, 0x2a, 0xff, 0x85, 0x48, 0x29, 0xff, 0x85, 0x47, 0x28, 0xff, 0x85, 0x47, 0x28, 0xff, 0x84, 0x47, 0x28, 0xff, 0x83, 0x47, 0x26, 0xff, 0x83, 0x45, 0x24, 0xff, 0x7f, 0x43, 0x23, 0xff, 0x78, 0x3f, 0x1f, 0xff, 0x62, 0x34, 0x18, 0xff, 0x52, 0x29, 0x13, 0xff, 0x4e, 0x26, 0x13, 0xff, 0x52, 0x26, 0x13, 0xff, 0x54, 0x27, 0x13, 0xff, 0x57, 0x27, 0x13, 0xff, 0x5d, 0x2b, 0x13, 0xff, 0x60, 0x2f, 0x13, 0xff, 0x65, 0x2e, 0x13, 0xff, 0x6a, 0x34, 0x14, 0xff, 0x70, 0x36, 0x13, 0xff, 0x76, 0x3a, 0x14, 0xff, 0x7e, 0x3e, 0x19, 0xff, 0x84, 0x43, 0x1d, 0xff, 0x85, 0x46, 0x1d, 0xff, 0x88, 0x48, 0x1f, 0xff, 0x8c, 0x4a, 0x22, 0xff, 0x91, 0x4f, 0x25, 0xff, 0x97, 0x55, 0x2b, 0xff, 0xa2, 0x62, 0x33, 0xff, 0xab, 0x6b, 0x3d, 0xff, 0xaa, 0x6d, 0x3f, 0xff, 0xad, 0x70, 0x41, 0xff, 0xb1, 0x74, 0x46, 0xff, 0xb7, 0x7d, 0x4d, 0xff, 0xc1, 0x85, 0x53, 0xff, 0xd5, 0x92, 0x5d, 0xff, 0xea, 0x9f, 0x68, 0xff, 0xeb, 0xaf, 0x74, 0xff, 0xe9, 0xc9, 0x83, 0xff, 0xe4, 0xdc, 0x94, 0xff, 0xe5, 0xdb, 0xa5, 0xff, 0xe9, 0xdc, 0xb1, 0xff, 0xe9, 0xdc, 0xb7, 0xff, 0xe8, 0xdc, 0xb0, 0xff, 0xe6, 0xdb, 0xa2, 0xff, 0xe8, 0xd3, 0x92, 0xff, 0xec, 0xbc, 0x82, 0xff, 0xeb, 0xaa, 0x77, 0xff, 0xe3, 0xa0, 0x6c, 0xff, 0xd6, 0x98, 0x63, 0xff, 0xd1, 0x95, 0x5e, 0xff, 0xd3, 0x95, 0x5d, 0xff, 0xd4, 0x94, 0x5d, 0xff, 0xd6, 0x92, 0x5c, 0xff, 0xdd, 0x92, 0x5b, 0xff, 0xe7, 0x93, 0x5c, 0xff, 0xeb, 0x99, 0x61, 0xff, 0xd4, 0x8d, 0x57, 0xff, 0xb8, 0x79, 0x46, 0xff, 0xb9, 0x7b, 0x47, 0xff, 0xbb, 0x7d, 0x4a, 0xff, 0xb7, 0x77, 0x45, 0xff, 0xb2, 0x71, 0x3f, 0xff, 0xb4, 0x71, 0x40, 0xff, 0xaf, 0x6e, 0x3d, 0xff, 0xa2, 0x61, 0x35, 0xff, 0x9d, 0x5c, 0x32, 0xff, 0x9d, 0x5d, 0x32, 0xff, 0x9c, 0x5c, 0x30, 0xff, 0x9c, 0x5c, 0x30, 0xff, 0x95, 0x55, 0x2e, 0xff, 0x8c, 0x4d, 0x2a, 0xff, 0x8a, 0x4c, 0x29, 0xff, 0x8a, 0x4c, 0x29, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x8c, 0x4e, 0x2d, 0xff, 0x8d, 0x4e, 0x2b, 0xff, 0x8c, 0x4e, 0x2a, 0xff, 0x8c, 0x50, 0x2b, 0xff, 0x8c, 0x50, 0x2c, 0xff, 0x8b, 0x4e, 0x2b, 0xff, 0x89, 0x4c, 0x2b, 0xff, 0x88, 0x4b, 0x2c, 0xff, 0x87, 0x4a, 0x2a, 0xff, 0x87, 0x4a, 0x29, 0xff, 0x86, 0x48, 0x28, 0xff, 0x85, 0x47, 0x28, 0xff, 0x85, 0x48, 0x2a, 0xff, 0x85, 0x48, 0x2a, 0xff, 0x82, 0x46, 0x25, 0xff, 0x7e, 0x41, 0x22, 0xff, 0x7c, 0x41, 0x20, 0xff, 0x7c, 0x41, 0x20, 0xff, 0x7d, 0x41, 0x20, 0xff, 0x7c, 0x41, 0x1f, 0xff, 0x7b, 0x40, 0x1f, 0xff, 0x7d, 0x41, 0x20, 0xff, 0x7f, 0x41, 0x21, 0xff, 0x81, 0x44, 0x23, 0xff, 0x83, 0x46, 0x25, 0xff, 0x87, 0x48, 0x28, 0xff, 0x89, 0x4a, 0x2a, 0xff, 0x8b, 0x4c, 0x2c, 0xff, 0x8d, 0x4f, 0x2c, 0xff, 0x90, 0x52, 0x2d, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x95, 0x57, 0x31, 0xff, 0x97, 0x5b, 0x32, 0xff, 0x99, 0x5c, 0x33, 0xff, 0x9b, 0x5b, 0x33, 0xff, 0x9e, 0x5e, 0x34, 0xff, 0xa0, 0x61, 0x36, 0xff, 0xa2, 0x61, 0x37, 0xff, 0xa3, 0x63, 0x37, 0xff, 0xa6, 0x65, 0x37, 0xff, 0xaa, 0x69, 0x3b, 0xff, 0xae, 0x6e, 0x3d, 0xff, 0xb3, 0x74, 0x43, 0xff, 0xc0, 0x7f, 0x4e, 0xff, 0xa4, 0x64, 0x3a, 0xff, 0x86, 0x48, 0x22, 0xff, 0x83, 0x43, 0x1d, 0xff, 0x85, 0x45, 0x1f, 0xff, 0x86, 0x46, 0x21, 0xff, 0x88, 0x47, 0x22, 0xff, 0x88, 0x48, 0x22, 0xff, 0x89, 0x48, 0x24, 0xff, 0x8b, 0x4a, 0x24, 0xff, 0x8a, 0x4a, 0x22, 0xff, 0x8e, 0x4d, 0x27, 0xff, 0x9a, 0x5a, 0x34, 0xff, 0x9f, 0x5e, 0x36, 0xff, 0x9d, 0x5c, 0x35, 0xff, 0x9d, 0x5c, 0x35, 0xff, 0x9f, 0x60, 0x36, 0xff, 0xa1, 0x65, 0x39, 0xff, 0xa3, 0x67, 0x3d, 0xff, 0xa2, 0x69, 0x3e, 0xff, 0x9f, 0x67, 0x40, 0xff, 0x9f, 0x65, 0x3f, 0xff, 0x9c, 0x63, 0x3d, 0xff, 0x9c, 0x60, 0x3a, 0xff, 0x9c, 0x5f, 0x38, 0xff, 0x9b, 0x5e, 0x36, 0xff, 0x96, 0x56, 0x31, 0xff, 0x92, 0x51, 0x2d, 0xff, 0x90, 0x50, 0x2b, 0xff, 0x8d, 0x4d, 0x29, 0xff, 0x8c, 0x4c, 0x28, 0xff, 0x8e, 0x4d, 0x28, 0xff, 0x8e, 0x4e, 0x2a, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x8b, 0x4b, 0x2b, 0xff, 0x8a, 0x4b, 0x2a, 0xff, 0x8b, 0x4c, 0x2a, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x8b, 0x4b, 0x2b, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x8b, 0x4c, 0x2a, 0xff, 0x8b, 0x4b, 0x2a, 0xff, 0x8a, 0x4c, 0x2a, 0xff, 0x88, 0x4b, 0x2a, 0xff, 0x87, 0x4a, 0x28, 0xff, 0x87, 0x4a, 0x28, 0xff, 0x87, 0x49, 0x2a, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x8c, 0x4d, 0x2a, 0xff, 0x97, 0x58, 0x31, 0xff, 0x96, 0x57, 0x30, 0xff, 0x95, 0x55, 0x2f, 0xff, 0x95, 0x54, 0x2e, 0xff, 0x95, 0x54, 0x2e, 0xff, 0x96, 0x55, 0x2f, 0xff, 0x9c, 0x5b, 0x31, 0xff, 0x9c, 0x5a, 0x30, 0xff, 0x9d, 0x5b, 0x31, 0xff, 0x9c, 0x5c, 0x32, 0xff, 0x9e, 0x5d, 0x33, 0xff, 0xa0, 0x5d, 0x34, 0xff, 0xa2, 0x62, 0x36, 0xff, 0xa6, 0x66, 0x39, 0xff, 0xad, 0x6b, 0x3f, 0xff, 0xaf, 0x6f, 0x40, 0xff, + 0xb4, 0x7d, 0x4c, 0xff, 0xb6, 0x81, 0x4e, 0xff, 0xb4, 0x7b, 0x4b, 0xff, 0x97, 0x58, 0x31, 0xff, 0x97, 0x57, 0x31, 0xff, 0x9b, 0x5a, 0x33, 0xff, 0x9d, 0x5d, 0x34, 0xff, 0x9f, 0x5e, 0x36, 0xff, 0xa2, 0x62, 0x37, 0xff, 0xa6, 0x67, 0x3b, 0xff, 0xaa, 0x6a, 0x3e, 0xff, 0xad, 0x6e, 0x43, 0xff, 0xac, 0x6f, 0x43, 0xff, 0xac, 0x6f, 0x43, 0xff, 0xad, 0x72, 0x46, 0xff, 0xb0, 0x75, 0x48, 0xff, 0xb2, 0x76, 0x49, 0xff, 0xb1, 0x76, 0x4a, 0xff, 0xb0, 0x75, 0x48, 0xff, 0xae, 0x72, 0x46, 0xff, 0xaa, 0x6f, 0x43, 0xff, 0xa7, 0x6b, 0x3e, 0xff, 0xa7, 0x68, 0x3b, 0xff, 0xa4, 0x64, 0x37, 0xff, 0xa3, 0x62, 0x37, 0xff, 0xa2, 0x62, 0x35, 0xff, 0x9f, 0x5e, 0x35, 0xff, 0x9e, 0x5d, 0x34, 0xff, 0x9d, 0x5a, 0x33, 0xff, 0x9c, 0x5b, 0x31, 0xff, 0x9b, 0x5a, 0x33, 0xff, 0x9a, 0x5a, 0x32, 0xff, 0x9b, 0x5a, 0x33, 0xff, 0xa0, 0x60, 0x37, 0xff, 0xab, 0x6b, 0x3d, 0xff, 0xab, 0x6a, 0x3d, 0xff, 0xaa, 0x6a, 0x3e, 0xff, 0xad, 0x6d, 0x42, 0xff, 0xb0, 0x70, 0x44, 0xff, 0xaf, 0x72, 0x43, 0xff, 0xab, 0x6d, 0x41, 0xff, 0xa5, 0x67, 0x3e, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x8c, 0x4d, 0x2c, 0xff, 0x8a, 0x4b, 0x2b, 0xff, 0x88, 0x49, 0x2b, 0xff, 0x88, 0x4a, 0x2b, 0xff, 0x86, 0x49, 0x2a, 0xff, 0x83, 0x46, 0x27, 0xff, 0x80, 0x43, 0x25, 0xff, 0x7a, 0x3f, 0x22, 0xff, 0x72, 0x3c, 0x1d, 0xff, 0x66, 0x36, 0x18, 0xff, 0x54, 0x29, 0x13, 0xff, 0x47, 0x22, 0x13, 0xff, 0x4c, 0x25, 0x13, 0xff, 0x4d, 0x27, 0x13, 0xff, 0x50, 0x25, 0x13, 0xff, 0x52, 0x27, 0x13, 0xff, 0x54, 0x28, 0x13, 0xff, 0x57, 0x27, 0x13, 0xff, 0x5d, 0x2c, 0x13, 0xff, 0x5f, 0x2e, 0x13, 0xff, 0x64, 0x2e, 0x13, 0xff, 0x69, 0x32, 0x13, 0xff, 0x6e, 0x34, 0x13, 0xff, 0x75, 0x39, 0x13, 0xff, 0x7c, 0x3e, 0x16, 0xff, 0x83, 0x43, 0x1c, 0xff, 0x84, 0x44, 0x1d, 0xff, 0x87, 0x47, 0x1f, 0xff, 0x8c, 0x4a, 0x22, 0xff, 0x90, 0x50, 0x25, 0xff, 0x95, 0x54, 0x2a, 0xff, 0x9f, 0x5d, 0x30, 0xff, 0xab, 0x6c, 0x3c, 0xff, 0xaa, 0x6c, 0x3c, 0xff, 0xad, 0x70, 0x40, 0xff, 0xb1, 0x75, 0x45, 0xff, 0xb7, 0x7c, 0x4a, 0xff, 0xc0, 0x83, 0x51, 0xff, 0xd2, 0x8f, 0x59, 0xff, 0xe5, 0x9c, 0x63, 0xff, 0xec, 0xa8, 0x6e, 0xff, 0xeb, 0xbd, 0x7c, 0xff, 0xe8, 0xd6, 0x8c, 0xff, 0xe3, 0xdd, 0x9a, 0xff, 0xe7, 0xdd, 0xa4, 0xff, 0xe7, 0xdc, 0xa7, 0xff, 0xe5, 0xdb, 0xa1, 0xff, 0xe5, 0xdb, 0x98, 0xff, 0xe9, 0xd1, 0x8c, 0xff, 0xeb, 0xb9, 0x7e, 0xff, 0xea, 0xa9, 0x73, 0xff, 0xe4, 0xa0, 0x69, 0xff, 0xda, 0x98, 0x60, 0xff, 0xd4, 0x95, 0x5d, 0xff, 0xd4, 0x95, 0x5c, 0xff, 0xd6, 0x94, 0x5b, 0xff, 0xd8, 0x93, 0x59, 0xff, 0xdc, 0x91, 0x5a, 0xff, 0xe5, 0x92, 0x5b, 0xff, 0xec, 0x98, 0x5f, 0xff, 0xd6, 0x8c, 0x55, 0xff, 0xba, 0x7a, 0x46, 0xff, 0xbc, 0x7b, 0x46, 0xff, 0xbd, 0x7f, 0x48, 0xff, 0xba, 0x7a, 0x46, 0xff, 0xb5, 0x72, 0x41, 0xff, 0xb6, 0x74, 0x42, 0xff, 0xb2, 0x70, 0x3f, 0xff, 0xa6, 0x67, 0x37, 0xff, 0x9f, 0x5f, 0x33, 0xff, 0xa0, 0x60, 0x34, 0xff, 0x9f, 0x5f, 0x33, 0xff, 0x9d, 0x5d, 0x32, 0xff, 0x95, 0x56, 0x2f, 0xff, 0x8e, 0x4e, 0x2c, 0xff, 0x8c, 0x4c, 0x2b, 0xff, 0x8c, 0x4c, 0x2a, 0xff, 0x8d, 0x4e, 0x2c, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x8f, 0x52, 0x2e, 0xff, 0x8f, 0x52, 0x2c, 0xff, 0x8f, 0x51, 0x2c, 0xff, 0x8f, 0x51, 0x2c, 0xff, 0x8d, 0x51, 0x2c, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x89, 0x4c, 0x2b, 0xff, 0x88, 0x4b, 0x2a, 0xff, 0x87, 0x49, 0x29, 0xff, 0x87, 0x4a, 0x2a, 0xff, 0x85, 0x49, 0x2a, 0xff, 0x82, 0x44, 0x24, 0xff, 0x80, 0x42, 0x22, 0xff, 0x7e, 0x42, 0x21, 0xff, 0x7f, 0x42, 0x21, 0xff, 0x7e, 0x42, 0x22, 0xff, 0x7c, 0x40, 0x20, 0xff, 0x7c, 0x3f, 0x20, 0xff, 0x7d, 0x41, 0x20, 0xff, 0x7f, 0x42, 0x20, 0xff, 0x81, 0x43, 0x22, 0xff, 0x83, 0x45, 0x24, 0xff, 0x85, 0x46, 0x25, 0xff, 0x86, 0x48, 0x28, 0xff, 0x88, 0x4a, 0x2a, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x8e, 0x4e, 0x2d, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x91, 0x55, 0x2f, 0xff, 0x93, 0x55, 0x30, 0xff, 0x95, 0x55, 0x30, 0xff, 0x97, 0x56, 0x30, 0xff, 0x9b, 0x5b, 0x31, 0xff, 0x9d, 0x5c, 0x33, 0xff, 0x9f, 0x5e, 0x34, 0xff, 0xa1, 0x61, 0x35, 0xff, 0xa4, 0x64, 0x37, 0xff, 0xa9, 0x69, 0x39, 0xff, 0xac, 0x6c, 0x3d, 0xff, 0xb0, 0x70, 0x40, 0xff, 0xb6, 0x77, 0x47, 0xff, 0x95, 0x57, 0x2f, 0xff, 0x7f, 0x41, 0x1d, 0xff, 0x80, 0x41, 0x1e, 0xff, 0x83, 0x44, 0x20, 0xff, 0x84, 0x44, 0x1f, 0xff, 0x85, 0x45, 0x20, 0xff, 0x86, 0x47, 0x20, 0xff, 0x8a, 0x49, 0x23, 0xff, 0x8b, 0x4a, 0x25, 0xff, 0x8a, 0x4a, 0x22, 0xff, 0x90, 0x4f, 0x28, 0xff, 0x9b, 0x5c, 0x34, 0xff, 0x9d, 0x5d, 0x36, 0xff, 0x9d, 0x5c, 0x34, 0xff, 0x9e, 0x5c, 0x35, 0xff, 0x9f, 0x60, 0x36, 0xff, 0xa1, 0x64, 0x3a, 0xff, 0xa2, 0x67, 0x3d, 0xff, 0xa2, 0x6a, 0x40, 0xff, 0xa0, 0x69, 0x3f, 0xff, 0x9e, 0x65, 0x3e, 0xff, 0x9d, 0x62, 0x3e, 0xff, 0x9d, 0x62, 0x3d, 0xff, 0x9d, 0x62, 0x39, 0xff, 0x9d, 0x60, 0x36, 0xff, 0x96, 0x58, 0x30, 0xff, 0x93, 0x54, 0x2e, 0xff, 0x91, 0x50, 0x2b, 0xff, 0x8e, 0x4e, 0x29, 0xff, 0x8e, 0x4d, 0x29, 0xff, 0x8e, 0x4d, 0x28, 0xff, 0x90, 0x50, 0x2b, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8c, 0x4f, 0x2b, 0xff, 0x8c, 0x4d, 0x2c, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8d, 0x4f, 0x2c, 0xff, 0x8d, 0x4e, 0x2b, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x8d, 0x4e, 0x2c, 0xff, 0x8e, 0x51, 0x2d, 0xff, 0x8f, 0x50, 0x2e, 0xff, 0x8d, 0x4e, 0x2c, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x88, 0x4b, 0x2a, 0xff, 0x87, 0x4a, 0x29, 0xff, 0x88, 0x4b, 0x29, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x88, 0x49, 0x28, 0xff, 0x91, 0x51, 0x2e, 0xff, 0x97, 0x59, 0x30, 0xff, 0x98, 0x57, 0x30, 0xff, 0x98, 0x58, 0x2f, 0xff, 0x98, 0x56, 0x30, 0xff, 0x98, 0x58, 0x2f, 0xff, 0x9d, 0x5c, 0x32, 0xff, 0x9f, 0x5d, 0x33, 0xff, 0xa2, 0x5f, 0x35, 0xff, 0xa2, 0x60, 0x36, 0xff, 0xa5, 0x65, 0x38, 0xff, 0xa7, 0x67, 0x3a, 0xff, 0xaa, 0x6b, 0x3d, 0xff, 0xad, 0x6e, 0x3e, 0xff, 0xb2, 0x79, 0x48, 0xff, + 0xb4, 0x7d, 0x4c, 0xff, 0xb6, 0x80, 0x50, 0xff, 0xb2, 0x7d, 0x4e, 0xff, 0x96, 0x59, 0x31, 0xff, 0x98, 0x59, 0x33, 0xff, 0x9c, 0x5c, 0x34, 0xff, 0x9f, 0x5f, 0x35, 0xff, 0xa1, 0x61, 0x36, 0xff, 0xa4, 0x64, 0x38, 0xff, 0xa7, 0x67, 0x3b, 0xff, 0xa7, 0x67, 0x3b, 0xff, 0xa5, 0x66, 0x3b, 0xff, 0xa4, 0x65, 0x3b, 0xff, 0xa5, 0x67, 0x3d, 0xff, 0xa6, 0x69, 0x3e, 0xff, 0xaa, 0x6f, 0x41, 0xff, 0xad, 0x71, 0x43, 0xff, 0xae, 0x71, 0x44, 0xff, 0xac, 0x70, 0x43, 0xff, 0xa9, 0x6d, 0x41, 0xff, 0xa6, 0x6a, 0x3e, 0xff, 0xa8, 0x69, 0x3d, 0xff, 0xa5, 0x67, 0x38, 0xff, 0xa5, 0x65, 0x38, 0xff, 0xa4, 0x65, 0x38, 0xff, 0xa3, 0x63, 0x37, 0xff, 0xa2, 0x61, 0x35, 0xff, 0x9f, 0x5f, 0x35, 0xff, 0x9f, 0x5d, 0x34, 0xff, 0x9c, 0x5c, 0x33, 0xff, 0x9c, 0x5b, 0x33, 0xff, 0x9c, 0x5c, 0x33, 0xff, 0x9c, 0x5b, 0x33, 0xff, 0x9e, 0x5d, 0x35, 0xff, 0xa8, 0x68, 0x39, 0xff, 0xa7, 0x67, 0x3a, 0xff, 0xa7, 0x66, 0x3a, 0xff, 0xa9, 0x6b, 0x3f, 0xff, 0xac, 0x6d, 0x41, 0xff, 0xab, 0x6e, 0x42, 0xff, 0xa7, 0x68, 0x3e, 0xff, 0xa4, 0x66, 0x3c, 0xff, 0x8f, 0x51, 0x2e, 0xff, 0x86, 0x49, 0x28, 0xff, 0x86, 0x49, 0x28, 0xff, 0x7d, 0x43, 0x23, 0xff, 0x73, 0x3c, 0x1f, 0xff, 0x6a, 0x37, 0x1d, 0xff, 0x62, 0x33, 0x17, 0xff, 0x59, 0x2d, 0x15, 0xff, 0x4b, 0x24, 0x13, 0xff, 0x4b, 0x25, 0x13, 0xff, 0x49, 0x24, 0x13, 0xff, 0x4b, 0x26, 0x13, 0xff, 0x4e, 0x24, 0x13, 0xff, 0x4e, 0x27, 0x13, 0xff, 0x4e, 0x27, 0x13, 0xff, 0x4e, 0x26, 0x13, 0xff, 0x50, 0x26, 0x13, 0xff, 0x53, 0x27, 0x13, 0xff, 0x57, 0x26, 0x13, 0xff, 0x5b, 0x2b, 0x13, 0xff, 0x5d, 0x2c, 0x13, 0xff, 0x62, 0x2d, 0x13, 0xff, 0x68, 0x2e, 0x13, 0xff, 0x6a, 0x33, 0x13, 0xff, 0x71, 0x38, 0x13, 0xff, 0x78, 0x3b, 0x15, 0xff, 0x81, 0x41, 0x1c, 0xff, 0x84, 0x44, 0x1e, 0xff, 0x87, 0x47, 0x1e, 0xff, 0x8b, 0x4a, 0x20, 0xff, 0x90, 0x4d, 0x25, 0xff, 0x94, 0x52, 0x29, 0xff, 0x9b, 0x59, 0x2e, 0xff, 0xa7, 0x67, 0x37, 0xff, 0xad, 0x6d, 0x3c, 0xff, 0xad, 0x6f, 0x3e, 0xff, 0xb1, 0x74, 0x43, 0xff, 0xb6, 0x79, 0x48, 0xff, 0xbe, 0x80, 0x4e, 0xff, 0xcf, 0x8b, 0x55, 0xff, 0xe3, 0x96, 0x5e, 0xff, 0xeb, 0xa2, 0x69, 0xff, 0xeb, 0xb2, 0x74, 0xff, 0xeb, 0xcb, 0x82, 0xff, 0xe7, 0xdd, 0x90, 0xff, 0xe3, 0xdc, 0x97, 0xff, 0xe3, 0xdb, 0x9a, 0xff, 0xe3, 0xdc, 0x97, 0xff, 0xe7, 0xda, 0x90, 0xff, 0xec, 0xca, 0x84, 0xff, 0xec, 0xb5, 0x78, 0xff, 0xeb, 0xa9, 0x6f, 0xff, 0xe4, 0xa0, 0x66, 0xff, 0xda, 0x98, 0x60, 0xff, 0xd7, 0x95, 0x5c, 0xff, 0xd5, 0x94, 0x5c, 0xff, 0xd6, 0x92, 0x5b, 0xff, 0xd9, 0x92, 0x59, 0xff, 0xdd, 0x92, 0x59, 0xff, 0xe5, 0x93, 0x5a, 0xff, 0xec, 0x97, 0x5e, 0xff, 0xd6, 0x8c, 0x56, 0xff, 0xbc, 0x7b, 0x45, 0xff, 0xbd, 0x7c, 0x47, 0xff, 0xbe, 0x7e, 0x49, 0xff, 0xbc, 0x7c, 0x47, 0xff, 0xb8, 0x75, 0x44, 0xff, 0xb8, 0x76, 0x44, 0xff, 0xb4, 0x73, 0x40, 0xff, 0xab, 0x6a, 0x39, 0xff, 0xa4, 0x64, 0x35, 0xff, 0xa1, 0x61, 0x33, 0xff, 0xa2, 0x62, 0x34, 0xff, 0x9d, 0x5d, 0x32, 0xff, 0x96, 0x55, 0x2e, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x8f, 0x4f, 0x2b, 0xff, 0x8f, 0x4f, 0x2b, 0xff, 0x91, 0x52, 0x2c, 0xff, 0x92, 0x53, 0x2e, 0xff, 0x91, 0x54, 0x2f, 0xff, 0x91, 0x54, 0x2f, 0xff, 0x92, 0x54, 0x2f, 0xff, 0x90, 0x52, 0x2d, 0xff, 0x8f, 0x52, 0x2d, 0xff, 0x90, 0x52, 0x2d, 0xff, 0x90, 0x50, 0x2b, 0xff, 0x8e, 0x4e, 0x2b, 0xff, 0x8c, 0x4d, 0x2c, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8b, 0x4e, 0x2b, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x89, 0x4b, 0x2a, 0xff, 0x87, 0x4a, 0x2a, 0xff, 0x86, 0x49, 0x2a, 0xff, 0x84, 0x47, 0x26, 0xff, 0x81, 0x44, 0x23, 0xff, 0x80, 0x43, 0x22, 0xff, 0x80, 0x42, 0x22, 0xff, 0x7e, 0x42, 0x21, 0xff, 0x7d, 0x41, 0x1f, 0xff, 0x7d, 0x3f, 0x20, 0xff, 0x7e, 0x40, 0x20, 0xff, 0x7e, 0x42, 0x21, 0xff, 0x80, 0x43, 0x22, 0xff, 0x82, 0x44, 0x23, 0xff, 0x83, 0x46, 0x25, 0xff, 0x85, 0x47, 0x26, 0xff, 0x86, 0x48, 0x29, 0xff, 0x8a, 0x4b, 0x2b, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x90, 0x52, 0x2f, 0xff, 0x92, 0x54, 0x30, 0xff, 0x93, 0x55, 0x30, 0xff, 0x97, 0x57, 0x30, 0xff, 0x9a, 0x5a, 0x31, 0xff, 0x9c, 0x5c, 0x32, 0xff, 0xa0, 0x5f, 0x34, 0xff, 0xa1, 0x62, 0x36, 0xff, 0xa5, 0x66, 0x38, 0xff, 0xa9, 0x69, 0x3a, 0xff, 0xab, 0x6b, 0x3b, 0xff, 0xaf, 0x6f, 0x40, 0xff, 0xab, 0x6b, 0x3f, 0xff, 0x84, 0x46, 0x20, 0xff, 0x7b, 0x3d, 0x18, 0xff, 0x7e, 0x40, 0x1a, 0xff, 0x81, 0x43, 0x1c, 0xff, 0x84, 0x44, 0x1d, 0xff, 0x85, 0x44, 0x1e, 0xff, 0x84, 0x46, 0x1f, 0xff, 0x86, 0x47, 0x20, 0xff, 0x8a, 0x49, 0x24, 0xff, 0x8b, 0x4a, 0x24, 0xff, 0x94, 0x53, 0x2c, 0xff, 0x9c, 0x5c, 0x35, 0xff, 0x9b, 0x5c, 0x35, 0xff, 0x9c, 0x5b, 0x34, 0xff, 0x9d, 0x5c, 0x34, 0xff, 0x9f, 0x5f, 0x36, 0xff, 0x9f, 0x62, 0x37, 0xff, 0xa0, 0x65, 0x3b, 0xff, 0xa0, 0x67, 0x3e, 0xff, 0x9f, 0x67, 0x3e, 0xff, 0x9e, 0x65, 0x3f, 0xff, 0x9e, 0x64, 0x3e, 0xff, 0x9e, 0x64, 0x3e, 0xff, 0x9f, 0x64, 0x3d, 0xff, 0x9e, 0x63, 0x39, 0xff, 0x95, 0x57, 0x2f, 0xff, 0x93, 0x54, 0x2e, 0xff, 0x92, 0x51, 0x2c, 0xff, 0x8f, 0x4f, 0x2b, 0xff, 0x8f, 0x4f, 0x29, 0xff, 0x90, 0x4f, 0x2b, 0xff, 0x8f, 0x4f, 0x2b, 0xff, 0x92, 0x52, 0x2c, 0xff, 0x8f, 0x50, 0x2c, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x8e, 0x50, 0x2c, 0xff, 0x8f, 0x51, 0x2c, 0xff, 0x8f, 0x51, 0x2d, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x8c, 0x50, 0x2c, 0xff, 0x8e, 0x50, 0x2d, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x92, 0x54, 0x2f, 0xff, 0x92, 0x55, 0x2f, 0xff, 0x92, 0x56, 0x30, 0xff, 0x91, 0x55, 0x30, 0xff, 0x8f, 0x54, 0x2f, 0xff, 0x8e, 0x52, 0x2e, 0xff, 0x8c, 0x4f, 0x2b, 0xff, 0x8f, 0x52, 0x2e, 0xff, 0x8f, 0x50, 0x2c, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x98, 0x59, 0x30, 0xff, 0x9d, 0x5c, 0x32, 0xff, 0x9d, 0x5b, 0x33, 0xff, 0x9d, 0x5c, 0x31, 0xff, 0x9d, 0x5c, 0x33, 0xff, 0xa1, 0x5f, 0x34, 0xff, 0xa5, 0x65, 0x37, 0xff, 0xaa, 0x69, 0x3a, 0xff, 0xac, 0x6d, 0x3e, 0xff, 0xae, 0x6f, 0x41, 0xff, 0xaf, 0x75, 0x44, 0xff, 0xb1, 0x78, 0x47, 0xff, 0xb2, 0x7a, 0x4a, 0xff, + 0xb3, 0x7e, 0x51, 0xff, 0xb4, 0x7d, 0x51, 0xff, 0xb2, 0x7b, 0x4f, 0xff, 0x97, 0x59, 0x33, 0xff, 0x99, 0x5a, 0x33, 0xff, 0x9c, 0x5c, 0x33, 0xff, 0x9f, 0x5e, 0x34, 0xff, 0xa2, 0x62, 0x36, 0xff, 0xa5, 0x64, 0x38, 0xff, 0xa3, 0x63, 0x37, 0xff, 0x9f, 0x61, 0x35, 0xff, 0xa0, 0x60, 0x36, 0xff, 0xa2, 0x61, 0x38, 0xff, 0xa4, 0x63, 0x38, 0xff, 0xa3, 0x65, 0x3a, 0xff, 0xa8, 0x6a, 0x3e, 0xff, 0xaa, 0x6b, 0x3e, 0xff, 0xa9, 0x6a, 0x3e, 0xff, 0xa7, 0x6c, 0x3e, 0xff, 0xa5, 0x69, 0x3e, 0xff, 0xa6, 0x67, 0x3c, 0xff, 0xa5, 0x67, 0x39, 0xff, 0xa5, 0x65, 0x38, 0xff, 0xa5, 0x65, 0x38, 0xff, 0xa5, 0x65, 0x38, 0xff, 0xa4, 0x65, 0x38, 0xff, 0xa2, 0x64, 0x38, 0xff, 0xa1, 0x62, 0x37, 0xff, 0xa1, 0x5f, 0x35, 0xff, 0x9f, 0x5d, 0x33, 0xff, 0x9d, 0x5c, 0x33, 0xff, 0x9f, 0x5c, 0x33, 0xff, 0x9c, 0x5c, 0x33, 0xff, 0x9e, 0x5e, 0x34, 0xff, 0xa7, 0x66, 0x3b, 0xff, 0xaa, 0x6a, 0x3d, 0xff, 0xa7, 0x67, 0x3b, 0xff, 0xa8, 0x68, 0x3b, 0xff, 0xa7, 0x69, 0x3e, 0xff, 0xa7, 0x67, 0x3e, 0xff, 0xa4, 0x64, 0x3b, 0xff, 0xa1, 0x62, 0x3a, 0xff, 0x96, 0x59, 0x33, 0xff, 0x81, 0x45, 0x25, 0xff, 0x72, 0x3a, 0x1c, 0xff, 0x5e, 0x2c, 0x13, 0xff, 0x5b, 0x2a, 0x13, 0xff, 0x56, 0x2a, 0x13, 0xff, 0x54, 0x27, 0x13, 0xff, 0x50, 0x26, 0x13, 0xff, 0x4f, 0x25, 0x13, 0xff, 0x4f, 0x25, 0x13, 0xff, 0x4f, 0x25, 0x13, 0xff, 0x4d, 0x26, 0x13, 0xff, 0x4f, 0x25, 0x13, 0xff, 0x4f, 0x25, 0x13, 0xff, 0x50, 0x25, 0x13, 0xff, 0x52, 0x27, 0x13, 0xff, 0x52, 0x28, 0x13, 0xff, 0x54, 0x26, 0x13, 0xff, 0x57, 0x26, 0x13, 0xff, 0x5b, 0x2a, 0x13, 0xff, 0x5d, 0x2c, 0x13, 0xff, 0x61, 0x2f, 0x13, 0xff, 0x65, 0x2e, 0x13, 0xff, 0x6a, 0x33, 0x13, 0xff, 0x6f, 0x34, 0x13, 0xff, 0x76, 0x39, 0x14, 0xff, 0x7d, 0x3f, 0x18, 0xff, 0x85, 0x45, 0x1d, 0xff, 0x87, 0x47, 0x1f, 0xff, 0x8a, 0x49, 0x20, 0xff, 0x8e, 0x4b, 0x24, 0xff, 0x91, 0x50, 0x29, 0xff, 0x97, 0x54, 0x2c, 0xff, 0xa3, 0x61, 0x33, 0xff, 0xad, 0x6d, 0x3c, 0xff, 0xae, 0x6e, 0x3e, 0xff, 0xb2, 0x73, 0x40, 0xff, 0xb6, 0x77, 0x45, 0xff, 0xbd, 0x7c, 0x4b, 0xff, 0xca, 0x86, 0x51, 0xff, 0xdd, 0x92, 0x5b, 0xff, 0xeb, 0x9e, 0x64, 0xff, 0xeb, 0xaa, 0x6e, 0xff, 0xeb, 0xba, 0x7a, 0xff, 0xeb, 0xce, 0x85, 0xff, 0xe9, 0xd9, 0x8e, 0xff, 0xe9, 0xdb, 0x8f, 0xff, 0xe9, 0xd8, 0x8c, 0xff, 0xeb, 0xcd, 0x87, 0xff, 0xec, 0xba, 0x7c, 0xff, 0xec, 0xae, 0x73, 0xff, 0xeb, 0xa6, 0x6b, 0xff, 0xe4, 0x9e, 0x63, 0xff, 0xdb, 0x96, 0x5d, 0xff, 0xd9, 0x93, 0x5b, 0xff, 0xd9, 0x94, 0x5a, 0xff, 0xda, 0x93, 0x5b, 0xff, 0xdc, 0x92, 0x5a, 0xff, 0xe0, 0x91, 0x59, 0xff, 0xe7, 0x93, 0x5a, 0xff, 0xea, 0x98, 0x5f, 0xff, 0xd3, 0x8b, 0x54, 0xff, 0xbb, 0x79, 0x44, 0xff, 0xbe, 0x7d, 0x49, 0xff, 0xc0, 0x7f, 0x49, 0xff, 0xbf, 0x7e, 0x48, 0xff, 0xbb, 0x78, 0x45, 0xff, 0xbb, 0x78, 0x45, 0xff, 0xb6, 0x75, 0x42, 0xff, 0xae, 0x6d, 0x3b, 0xff, 0xaa, 0x69, 0x39, 0xff, 0xa4, 0x64, 0x36, 0xff, 0xa3, 0x63, 0x35, 0xff, 0x9e, 0x5f, 0x33, 0xff, 0x98, 0x58, 0x2f, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x94, 0x52, 0x2d, 0xff, 0x95, 0x55, 0x2f, 0xff, 0x95, 0x56, 0x30, 0xff, 0x95, 0x56, 0x30, 0xff, 0x92, 0x55, 0x2e, 0xff, 0x90, 0x52, 0x2d, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x91, 0x52, 0x2d, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x8f, 0x51, 0x2d, 0xff, 0x8e, 0x51, 0x2d, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8c, 0x4d, 0x2c, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x89, 0x4b, 0x2b, 0xff, 0x87, 0x4a, 0x2a, 0xff, 0x83, 0x46, 0x25, 0xff, 0x82, 0x43, 0x22, 0xff, 0x82, 0x43, 0x22, 0xff, 0x82, 0x43, 0x21, 0xff, 0x7f, 0x42, 0x20, 0xff, 0x7d, 0x41, 0x21, 0xff, 0x7f, 0x40, 0x20, 0xff, 0x7e, 0x41, 0x21, 0xff, 0x7e, 0x43, 0x22, 0xff, 0x80, 0x43, 0x22, 0xff, 0x81, 0x43, 0x23, 0xff, 0x82, 0x44, 0x24, 0xff, 0x84, 0x45, 0x25, 0xff, 0x86, 0x47, 0x26, 0xff, 0x86, 0x48, 0x29, 0xff, 0x8a, 0x4b, 0x2b, 0xff, 0x8d, 0x4d, 0x2d, 0xff, 0x8e, 0x51, 0x2e, 0xff, 0x90, 0x53, 0x30, 0xff, 0x93, 0x55, 0x30, 0xff, 0x96, 0x57, 0x30, 0xff, 0x99, 0x59, 0x31, 0xff, 0x9c, 0x5b, 0x32, 0xff, 0xa0, 0x5f, 0x34, 0xff, 0xa2, 0x63, 0x37, 0xff, 0xa5, 0x65, 0x38, 0xff, 0xa8, 0x69, 0x3a, 0xff, 0xab, 0x6b, 0x3d, 0xff, 0xb1, 0x70, 0x41, 0xff, 0xa3, 0x66, 0x3a, 0xff, 0x81, 0x44, 0x1c, 0xff, 0x7b, 0x3d, 0x18, 0xff, 0x7e, 0x40, 0x19, 0xff, 0x81, 0x42, 0x1b, 0xff, 0x83, 0x43, 0x1d, 0xff, 0x84, 0x44, 0x1f, 0xff, 0x85, 0x45, 0x1f, 0xff, 0x86, 0x46, 0x1f, 0xff, 0x8c, 0x4b, 0x24, 0xff, 0x8f, 0x4e, 0x27, 0xff, 0x9a, 0x59, 0x33, 0xff, 0x9b, 0x5d, 0x35, 0xff, 0x9c, 0x5b, 0x33, 0xff, 0x9c, 0x5b, 0x33, 0xff, 0x9d, 0x5c, 0x34, 0xff, 0x9f, 0x5e, 0x35, 0xff, 0x9f, 0x61, 0x37, 0xff, 0x9f, 0x63, 0x39, 0xff, 0x9f, 0x65, 0x3a, 0xff, 0x9f, 0x68, 0x3e, 0xff, 0x9e, 0x66, 0x3e, 0xff, 0x9f, 0x67, 0x3e, 0xff, 0x9f, 0x66, 0x3e, 0xff, 0xa0, 0x67, 0x3f, 0xff, 0x9d, 0x62, 0x39, 0xff, 0x96, 0x58, 0x31, 0xff, 0x94, 0x53, 0x2d, 0xff, 0x92, 0x52, 0x2c, 0xff, 0x90, 0x50, 0x2b, 0xff, 0x8f, 0x4f, 0x2a, 0xff, 0x8f, 0x4e, 0x2a, 0xff, 0x8f, 0x4f, 0x2b, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x8f, 0x51, 0x2d, 0xff, 0x8e, 0x50, 0x2d, 0xff, 0x8f, 0x52, 0x2e, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x8e, 0x50, 0x2d, 0xff, 0x8e, 0x51, 0x2d, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x92, 0x54, 0x2e, 0xff, 0x94, 0x56, 0x30, 0xff, 0x94, 0x57, 0x30, 0xff, 0x93, 0x59, 0x30, 0xff, 0x92, 0x57, 0x31, 0xff, 0x92, 0x59, 0x30, 0xff, 0x93, 0x56, 0x30, 0xff, 0x92, 0x55, 0x2f, 0xff, 0x94, 0x55, 0x2f, 0xff, 0x96, 0x58, 0x30, 0xff, 0x97, 0x58, 0x2f, 0xff, 0x97, 0x56, 0x2e, 0xff, 0x9b, 0x5b, 0x31, 0xff, 0xa1, 0x60, 0x34, 0xff, 0xa2, 0x61, 0x35, 0xff, 0xa2, 0x62, 0x36, 0xff, 0xa6, 0x64, 0x37, 0xff, 0xaa, 0x6a, 0x3b, 0xff, 0xac, 0x6f, 0x40, 0xff, 0xae, 0x73, 0x43, 0xff, 0xb0, 0x77, 0x47, 0xff, 0xb0, 0x7a, 0x4b, 0xff, 0xb3, 0x7c, 0x4e, 0xff, + 0xb2, 0x7d, 0x51, 0xff, 0xb5, 0x7f, 0x54, 0xff, 0xb4, 0x7e, 0x54, 0xff, 0x9a, 0x5b, 0x35, 0xff, 0x9b, 0x5b, 0x34, 0xff, 0x9c, 0x5c, 0x34, 0xff, 0x9e, 0x5e, 0x34, 0xff, 0xa1, 0x62, 0x37, 0xff, 0x9f, 0x61, 0x35, 0xff, 0x9e, 0x5d, 0x35, 0xff, 0x9e, 0x5e, 0x35, 0xff, 0x9f, 0x5f, 0x35, 0xff, 0xa1, 0x61, 0x36, 0xff, 0xa3, 0x61, 0x37, 0xff, 0xa4, 0x64, 0x38, 0xff, 0xa5, 0x65, 0x38, 0xff, 0xa6, 0x66, 0x39, 0xff, 0xa5, 0x66, 0x3a, 0xff, 0xa4, 0x65, 0x39, 0xff, 0xa4, 0x65, 0x39, 0xff, 0xa6, 0x64, 0x38, 0xff, 0xa6, 0x64, 0x38, 0xff, 0xa6, 0x67, 0x38, 0xff, 0xa6, 0x67, 0x38, 0xff, 0xa5, 0x69, 0x38, 0xff, 0xa5, 0x67, 0x3a, 0xff, 0xa4, 0x65, 0x39, 0xff, 0xa2, 0x64, 0x37, 0xff, 0xa3, 0x61, 0x35, 0xff, 0xa1, 0x5f, 0x34, 0xff, 0xa0, 0x5e, 0x34, 0xff, 0x9f, 0x5f, 0x34, 0xff, 0xa0, 0x5f, 0x35, 0xff, 0x9f, 0x5f, 0x35, 0xff, 0xa6, 0x66, 0x3b, 0xff, 0xaa, 0x6a, 0x3d, 0xff, 0xa7, 0x67, 0x3b, 0xff, 0xa7, 0x67, 0x3b, 0xff, 0xa6, 0x67, 0x3b, 0xff, 0xa5, 0x66, 0x3b, 0xff, 0xa2, 0x62, 0x3a, 0xff, 0xa2, 0x62, 0x3b, 0xff, 0x91, 0x54, 0x31, 0xff, 0x66, 0x32, 0x11, 0xff, 0x64, 0x31, 0x13, 0xff, 0x5e, 0x29, 0x13, 0xff, 0x5e, 0x2c, 0x13, 0xff, 0x5a, 0x28, 0x13, 0xff, 0x57, 0x26, 0x13, 0xff, 0x53, 0x28, 0x13, 0xff, 0x4f, 0x25, 0x13, 0xff, 0x4f, 0x25, 0x13, 0xff, 0x4d, 0x25, 0x13, 0xff, 0x50, 0x26, 0x13, 0xff, 0x52, 0x28, 0x13, 0xff, 0x4f, 0x25, 0x13, 0xff, 0x52, 0x27, 0x13, 0xff, 0x52, 0x28, 0x13, 0xff, 0x52, 0x27, 0x13, 0xff, 0x53, 0x26, 0x13, 0xff, 0x59, 0x28, 0x13, 0xff, 0x5b, 0x2a, 0x13, 0xff, 0x5d, 0x2c, 0x13, 0xff, 0x62, 0x2f, 0x13, 0xff, 0x64, 0x2e, 0x13, 0xff, 0x69, 0x33, 0x13, 0xff, 0x6d, 0x34, 0x13, 0xff, 0x74, 0x38, 0x13, 0xff, 0x7a, 0x3e, 0x16, 0xff, 0x85, 0x45, 0x20, 0xff, 0x86, 0x46, 0x1e, 0xff, 0x8a, 0x4a, 0x20, 0xff, 0x8d, 0x4c, 0x24, 0xff, 0x91, 0x50, 0x29, 0xff, 0x94, 0x52, 0x2a, 0xff, 0x9d, 0x5b, 0x30, 0xff, 0xaf, 0x6f, 0x3e, 0xff, 0xae, 0x6c, 0x3b, 0xff, 0xb1, 0x6f, 0x3e, 0xff, 0xb7, 0x74, 0x43, 0xff, 0xbd, 0x7b, 0x48, 0xff, 0xc8, 0x85, 0x4f, 0xff, 0xdb, 0x90, 0x57, 0xff, 0xeb, 0x96, 0x5f, 0xff, 0xeb, 0x9f, 0x67, 0xff, 0xec, 0xac, 0x72, 0xff, 0xec, 0xba, 0x7c, 0xff, 0xec, 0xc8, 0x82, 0xff, 0xec, 0xcc, 0x83, 0xff, 0xec, 0xc8, 0x82, 0xff, 0xec, 0xbd, 0x7e, 0xff, 0xec, 0xb0, 0x75, 0xff, 0xeb, 0xa7, 0x6c, 0xff, 0xeb, 0xa0, 0x67, 0xff, 0xe6, 0x9b, 0x60, 0xff, 0xde, 0x94, 0x5a, 0xff, 0xdb, 0x93, 0x59, 0xff, 0xdc, 0x93, 0x59, 0xff, 0xdd, 0x92, 0x59, 0xff, 0xe0, 0x90, 0x59, 0xff, 0xe4, 0x91, 0x59, 0xff, 0xe8, 0x94, 0x5a, 0xff, 0xe8, 0x96, 0x5d, 0xff, 0xd1, 0x89, 0x53, 0xff, 0xbc, 0x7b, 0x46, 0xff, 0xc1, 0x7e, 0x48, 0xff, 0xc2, 0x80, 0x49, 0xff, 0xc2, 0x80, 0x49, 0xff, 0xbf, 0x7d, 0x48, 0xff, 0xbe, 0x7b, 0x47, 0xff, 0xb9, 0x76, 0x45, 0xff, 0xb2, 0x71, 0x3e, 0xff, 0xaf, 0x6f, 0x3c, 0xff, 0xa7, 0x66, 0x37, 0xff, 0xa3, 0x63, 0x35, 0xff, 0xa0, 0x60, 0x34, 0xff, 0x9a, 0x5a, 0x31, 0xff, 0x97, 0x56, 0x2f, 0xff, 0x94, 0x53, 0x2d, 0xff, 0x94, 0x53, 0x2d, 0xff, 0x96, 0x56, 0x2d, 0xff, 0x98, 0x59, 0x2f, 0xff, 0x97, 0x57, 0x30, 0xff, 0x94, 0x56, 0x30, 0xff, 0x94, 0x55, 0x2e, 0xff, 0x93, 0x53, 0x2d, 0xff, 0x93, 0x52, 0x2d, 0xff, 0x94, 0x53, 0x2e, 0xff, 0x94, 0x54, 0x2d, 0xff, 0x94, 0x53, 0x2d, 0xff, 0x93, 0x52, 0x2e, 0xff, 0x90, 0x51, 0x2f, 0xff, 0x8e, 0x51, 0x2d, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x8a, 0x4d, 0x2c, 0xff, 0x89, 0x4b, 0x29, 0xff, 0x89, 0x4a, 0x29, 0xff, 0x85, 0x47, 0x27, 0xff, 0x83, 0x44, 0x24, 0xff, 0x82, 0x45, 0x24, 0xff, 0x82, 0x45, 0x24, 0xff, 0x80, 0x44, 0x23, 0xff, 0x7e, 0x42, 0x22, 0xff, 0x7e, 0x43, 0x22, 0xff, 0x7f, 0x43, 0x22, 0xff, 0x80, 0x43, 0x22, 0xff, 0x81, 0x43, 0x22, 0xff, 0x81, 0x43, 0x22, 0xff, 0x82, 0x43, 0x23, 0xff, 0x83, 0x46, 0x24, 0xff, 0x85, 0x46, 0x25, 0xff, 0x86, 0x47, 0x29, 0xff, 0x88, 0x4a, 0x2b, 0xff, 0x8b, 0x4e, 0x2c, 0xff, 0x8e, 0x50, 0x2d, 0xff, 0x90, 0x52, 0x2f, 0xff, 0x91, 0x55, 0x30, 0xff, 0x95, 0x56, 0x30, 0xff, 0x98, 0x58, 0x31, 0xff, 0x9b, 0x5c, 0x32, 0xff, 0x9e, 0x60, 0x34, 0xff, 0xa1, 0x63, 0x37, 0xff, 0xa5, 0x66, 0x39, 0xff, 0xa7, 0x68, 0x3b, 0xff, 0xac, 0x6c, 0x3d, 0xff, 0xb2, 0x73, 0x44, 0xff, 0x96, 0x59, 0x31, 0xff, 0x7b, 0x3f, 0x1b, 0xff, 0x7c, 0x3d, 0x17, 0xff, 0x7e, 0x3f, 0x1c, 0xff, 0x80, 0x40, 0x1d, 0xff, 0x82, 0x41, 0x1d, 0xff, 0x84, 0x43, 0x1e, 0xff, 0x86, 0x46, 0x20, 0xff, 0x89, 0x49, 0x21, 0xff, 0x8d, 0x4a, 0x24, 0xff, 0x8f, 0x4d, 0x27, 0xff, 0x9e, 0x5d, 0x35, 0xff, 0x9f, 0x5e, 0x36, 0xff, 0x9b, 0x5b, 0x34, 0xff, 0x9c, 0x5b, 0x33, 0xff, 0x9c, 0x5b, 0x33, 0xff, 0x9d, 0x5c, 0x34, 0xff, 0x9f, 0x61, 0x36, 0xff, 0x9f, 0x62, 0x38, 0xff, 0x9f, 0x65, 0x39, 0xff, 0x9f, 0x65, 0x3d, 0xff, 0x9e, 0x69, 0x3e, 0xff, 0x9f, 0x67, 0x3d, 0xff, 0xa0, 0x68, 0x3e, 0xff, 0xa2, 0x6a, 0x3d, 0xff, 0x99, 0x60, 0x37, 0xff, 0x97, 0x5a, 0x33, 0xff, 0x95, 0x56, 0x2f, 0xff, 0x91, 0x52, 0x2c, 0xff, 0x91, 0x50, 0x2b, 0xff, 0x91, 0x51, 0x2a, 0xff, 0x8f, 0x4f, 0x2a, 0xff, 0x91, 0x50, 0x2b, 0xff, 0x92, 0x51, 0x2c, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x8e, 0x51, 0x2c, 0xff, 0x90, 0x52, 0x2d, 0xff, 0x91, 0x54, 0x2e, 0xff, 0x93, 0x52, 0x2d, 0xff, 0x92, 0x53, 0x2d, 0xff, 0x92, 0x53, 0x2d, 0xff, 0x94, 0x55, 0x2f, 0xff, 0x8f, 0x52, 0x2d, 0xff, 0x8f, 0x52, 0x2e, 0xff, 0x91, 0x54, 0x2e, 0xff, 0x93, 0x56, 0x30, 0xff, 0x94, 0x56, 0x30, 0xff, 0x97, 0x58, 0x31, 0xff, 0x95, 0x59, 0x32, 0xff, 0x94, 0x59, 0x31, 0xff, 0x94, 0x58, 0x30, 0xff, 0x94, 0x58, 0x30, 0xff, 0x94, 0x56, 0x30, 0xff, 0x94, 0x57, 0x30, 0xff, 0x95, 0x57, 0x2f, 0xff, 0x97, 0x58, 0x2f, 0xff, 0x97, 0x57, 0x2f, 0xff, 0x95, 0x55, 0x2e, 0xff, 0x95, 0x55, 0x2e, 0xff, 0xa0, 0x61, 0x35, 0xff, 0xa5, 0x64, 0x37, 0xff, 0xa7, 0x66, 0x39, 0xff, 0xaa, 0x6a, 0x3b, 0xff, 0xab, 0x6d, 0x3f, 0xff, 0xb0, 0x77, 0x46, 0xff, 0xb2, 0x7a, 0x4a, 0xff, 0xb3, 0x7d, 0x4e, 0xff, 0xb1, 0x7d, 0x50, 0xff, + 0xb5, 0x80, 0x52, 0xff, 0xb5, 0x80, 0x54, 0xff, 0xb7, 0x81, 0x57, 0xff, 0x99, 0x5b, 0x34, 0xff, 0x9c, 0x5e, 0x35, 0xff, 0x9e, 0x5f, 0x35, 0xff, 0x9d, 0x5d, 0x34, 0xff, 0x9b, 0x5b, 0x31, 0xff, 0x9b, 0x5b, 0x32, 0xff, 0x9e, 0x5e, 0x34, 0xff, 0xa0, 0x60, 0x36, 0xff, 0xa1, 0x62, 0x36, 0xff, 0xa2, 0x63, 0x37, 0xff, 0xa2, 0x61, 0x37, 0xff, 0xa1, 0x62, 0x36, 0xff, 0xa4, 0x63, 0x38, 0xff, 0xa4, 0x62, 0x38, 0xff, 0xa4, 0x63, 0x37, 0xff, 0xa2, 0x62, 0x37, 0xff, 0xa3, 0x62, 0x36, 0xff, 0xa4, 0x62, 0x35, 0xff, 0xa4, 0x63, 0x35, 0xff, 0xa7, 0x65, 0x38, 0xff, 0xa6, 0x67, 0x38, 0xff, 0xa6, 0x67, 0x3a, 0xff, 0xa5, 0x69, 0x3b, 0xff, 0xa5, 0x67, 0x3a, 0xff, 0xa5, 0x66, 0x38, 0xff, 0xa4, 0x63, 0x37, 0xff, 0xa3, 0x61, 0x35, 0xff, 0xa1, 0x60, 0x35, 0xff, 0xa1, 0x61, 0x35, 0xff, 0xa1, 0x61, 0x35, 0xff, 0xa1, 0x61, 0x36, 0xff, 0xa7, 0x65, 0x3c, 0xff, 0xab, 0x6b, 0x3d, 0xff, 0xa8, 0x68, 0x3b, 0xff, 0xa6, 0x66, 0x3a, 0xff, 0xa4, 0x64, 0x39, 0xff, 0xa0, 0x60, 0x39, 0xff, 0x9b, 0x5b, 0x34, 0xff, 0x99, 0x59, 0x34, 0xff, 0x91, 0x53, 0x31, 0xff, 0x68, 0x32, 0x11, 0xff, 0x63, 0x2d, 0x13, 0xff, 0x60, 0x2c, 0x13, 0xff, 0x5e, 0x2c, 0x13, 0xff, 0x59, 0x2a, 0x13, 0xff, 0x57, 0x27, 0x13, 0xff, 0x55, 0x25, 0x13, 0xff, 0x53, 0x27, 0x13, 0xff, 0x52, 0x27, 0x13, 0xff, 0x51, 0x26, 0x13, 0xff, 0x50, 0x26, 0x13, 0xff, 0x50, 0x26, 0x13, 0xff, 0x52, 0x28, 0x13, 0xff, 0x51, 0x26, 0x13, 0xff, 0x52, 0x28, 0x13, 0xff, 0x53, 0x26, 0x13, 0xff, 0x56, 0x26, 0x13, 0xff, 0x5a, 0x29, 0x13, 0xff, 0x5b, 0x2b, 0x13, 0xff, 0x5f, 0x2e, 0x13, 0xff, 0x61, 0x2c, 0x13, 0xff, 0x64, 0x2e, 0x13, 0xff, 0x69, 0x32, 0x13, 0xff, 0x6d, 0x34, 0x13, 0xff, 0x72, 0x38, 0x13, 0xff, 0x77, 0x3a, 0x14, 0xff, 0x81, 0x41, 0x1a, 0xff, 0x87, 0x46, 0x1f, 0xff, 0x89, 0x49, 0x20, 0xff, 0x8d, 0x4c, 0x25, 0xff, 0x90, 0x4f, 0x28, 0xff, 0x92, 0x51, 0x2a, 0xff, 0x98, 0x57, 0x2d, 0xff, 0xa7, 0x65, 0x36, 0xff, 0xb0, 0x6e, 0x3e, 0xff, 0xb2, 0x6f, 0x3f, 0xff, 0xb8, 0x75, 0x42, 0xff, 0xbd, 0x7c, 0x46, 0xff, 0xc6, 0x81, 0x4c, 0xff, 0xd3, 0x89, 0x53, 0xff, 0xe4, 0x93, 0x5b, 0xff, 0xed, 0x9c, 0x64, 0xff, 0xeb, 0xa5, 0x6b, 0xff, 0xec, 0xaf, 0x73, 0xff, 0xec, 0xb6, 0x79, 0xff, 0xec, 0xb7, 0x7a, 0xff, 0xec, 0xb6, 0x78, 0xff, 0xec, 0xaf, 0x73, 0xff, 0xeb, 0xa5, 0x6b, 0xff, 0xeb, 0x9f, 0x67, 0xff, 0xeb, 0x9b, 0x62, 0xff, 0xe9, 0x97, 0x5d, 0xff, 0xe1, 0x91, 0x59, 0xff, 0xdd, 0x90, 0x58, 0xff, 0xdd, 0x91, 0x58, 0xff, 0xe0, 0x92, 0x59, 0xff, 0xe3, 0x92, 0x59, 0xff, 0xe6, 0x91, 0x59, 0xff, 0xeb, 0x95, 0x5c, 0xff, 0xe7, 0x95, 0x5f, 0xff, 0xcf, 0x87, 0x52, 0xff, 0xbe, 0x7b, 0x45, 0xff, 0xc1, 0x7f, 0x49, 0xff, 0xc3, 0x82, 0x4b, 0xff, 0xc4, 0x82, 0x4b, 0xff, 0xc2, 0x80, 0x4b, 0xff, 0xc0, 0x7d, 0x4a, 0xff, 0xbc, 0x7a, 0x46, 0xff, 0xb5, 0x73, 0x41, 0xff, 0xb2, 0x71, 0x3f, 0xff, 0xab, 0x6c, 0x3b, 0xff, 0xa4, 0x65, 0x37, 0xff, 0xa1, 0x60, 0x35, 0xff, 0x9d, 0x5c, 0x32, 0xff, 0x99, 0x5a, 0x30, 0xff, 0x97, 0x56, 0x2f, 0xff, 0x98, 0x56, 0x2e, 0xff, 0x99, 0x58, 0x2e, 0xff, 0x98, 0x58, 0x30, 0xff, 0x97, 0x58, 0x32, 0xff, 0x97, 0x58, 0x32, 0xff, 0x96, 0x57, 0x31, 0xff, 0x97, 0x55, 0x2f, 0xff, 0x96, 0x54, 0x2d, 0xff, 0x96, 0x54, 0x2e, 0xff, 0x97, 0x56, 0x2f, 0xff, 0x95, 0x55, 0x2e, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x94, 0x54, 0x30, 0xff, 0x92, 0x54, 0x2e, 0xff, 0x8e, 0x51, 0x2c, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8b, 0x4b, 0x2c, 0xff, 0x8b, 0x4b, 0x2a, 0xff, 0x87, 0x48, 0x27, 0xff, 0x86, 0x47, 0x26, 0xff, 0x85, 0x47, 0x23, 0xff, 0x84, 0x46, 0x22, 0xff, 0x82, 0x44, 0x22, 0xff, 0x82, 0x42, 0x21, 0xff, 0x81, 0x43, 0x22, 0xff, 0x81, 0x43, 0x22, 0xff, 0x81, 0x43, 0x22, 0xff, 0x81, 0x43, 0x22, 0xff, 0x81, 0x44, 0x22, 0xff, 0x82, 0x44, 0x23, 0xff, 0x84, 0x45, 0x25, 0xff, 0x85, 0x46, 0x25, 0xff, 0x86, 0x48, 0x27, 0xff, 0x89, 0x4a, 0x29, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x8e, 0x51, 0x2e, 0xff, 0x92, 0x54, 0x2f, 0xff, 0x94, 0x55, 0x30, 0xff, 0x97, 0x58, 0x31, 0xff, 0x9b, 0x5b, 0x32, 0xff, 0x9e, 0x5f, 0x34, 0xff, 0xa0, 0x61, 0x37, 0xff, 0xa4, 0x65, 0x39, 0xff, 0xa9, 0x69, 0x3b, 0xff, 0xab, 0x6b, 0x3d, 0xff, 0xb1, 0x73, 0x48, 0xff, 0x7d, 0x40, 0x1f, 0xff, 0x75, 0x39, 0x15, 0xff, 0x7d, 0x3e, 0x18, 0xff, 0x7d, 0x3e, 0x19, 0xff, 0x80, 0x3f, 0x1e, 0xff, 0x83, 0x42, 0x1d, 0xff, 0x84, 0x44, 0x1f, 0xff, 0x87, 0x47, 0x1f, 0xff, 0x89, 0x49, 0x20, 0xff, 0x8b, 0x49, 0x22, 0xff, 0x8e, 0x4c, 0x28, 0xff, 0x9f, 0x5f, 0x36, 0xff, 0xa0, 0x60, 0x38, 0xff, 0x9d, 0x5d, 0x35, 0xff, 0x9c, 0x5b, 0x33, 0xff, 0x9c, 0x5c, 0x33, 0xff, 0x9e, 0x5e, 0x34, 0xff, 0x9e, 0x5f, 0x35, 0xff, 0x9f, 0x61, 0x36, 0xff, 0x9f, 0x62, 0x38, 0xff, 0x9e, 0x64, 0x3a, 0xff, 0xa0, 0x66, 0x3c, 0xff, 0x9f, 0x67, 0x3d, 0xff, 0xa1, 0x69, 0x3c, 0xff, 0xa3, 0x6b, 0x3c, 0xff, 0x9a, 0x60, 0x36, 0xff, 0x98, 0x5d, 0x33, 0xff, 0x96, 0x56, 0x30, 0xff, 0x93, 0x53, 0x2c, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x91, 0x51, 0x2b, 0xff, 0x90, 0x50, 0x2a, 0xff, 0x91, 0x51, 0x2b, 0xff, 0x92, 0x52, 0x2c, 0xff, 0x93, 0x54, 0x2e, 0xff, 0x91, 0x54, 0x2d, 0xff, 0x90, 0x52, 0x2d, 0xff, 0x91, 0x52, 0x2d, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x94, 0x53, 0x2e, 0xff, 0x94, 0x54, 0x2d, 0xff, 0x95, 0x56, 0x2f, 0xff, 0x91, 0x53, 0x2d, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x92, 0x55, 0x2f, 0xff, 0x93, 0x56, 0x30, 0xff, 0x97, 0x59, 0x32, 0xff, 0x97, 0x5b, 0x33, 0xff, 0x98, 0x59, 0x33, 0xff, 0x97, 0x5a, 0x33, 0xff, 0x98, 0x5b, 0x33, 0xff, 0x97, 0x5c, 0x33, 0xff, 0x96, 0x5b, 0x33, 0xff, 0x94, 0x59, 0x31, 0xff, 0x96, 0x59, 0x30, 0xff, 0x94, 0x56, 0x2e, 0xff, 0x96, 0x57, 0x2e, 0xff, 0x99, 0x59, 0x2f, 0xff, 0x97, 0x56, 0x2e, 0xff, 0x97, 0x57, 0x2e, 0xff, 0x9c, 0x5b, 0x32, 0xff, 0xa3, 0x64, 0x36, 0xff, 0xaa, 0x6b, 0x3d, 0xff, 0xad, 0x71, 0x40, 0xff, 0xaf, 0x75, 0x44, 0xff, 0xb2, 0x7b, 0x4b, 0xff, 0xb2, 0x7f, 0x4f, 0xff, 0xb5, 0x80, 0x51, 0xff, + 0xb5, 0x81, 0x50, 0xff, 0xb6, 0x82, 0x51, 0xff, 0xba, 0x85, 0x56, 0xff, 0x9a, 0x5b, 0x33, 0xff, 0x9c, 0x5f, 0x34, 0xff, 0x9b, 0x5e, 0x33, 0xff, 0x9d, 0x5b, 0x33, 0xff, 0x9c, 0x5e, 0x33, 0xff, 0x9e, 0x5e, 0x35, 0xff, 0xa1, 0x62, 0x38, 0xff, 0xa2, 0x62, 0x37, 0xff, 0xa1, 0x62, 0x36, 0xff, 0xa1, 0x61, 0x36, 0xff, 0xa0, 0x5f, 0x35, 0xff, 0xa1, 0x5f, 0x35, 0xff, 0xa1, 0x5f, 0x35, 0xff, 0x9e, 0x5d, 0x34, 0xff, 0xa1, 0x60, 0x35, 0xff, 0xa0, 0x5e, 0x34, 0xff, 0xa2, 0x61, 0x34, 0xff, 0xa2, 0x61, 0x33, 0xff, 0xa5, 0x62, 0x34, 0xff, 0xa5, 0x63, 0x35, 0xff, 0xa5, 0x65, 0x37, 0xff, 0xa4, 0x67, 0x38, 0xff, 0xa4, 0x66, 0x3a, 0xff, 0xa4, 0x67, 0x3a, 0xff, 0xa4, 0x64, 0x38, 0xff, 0xa4, 0x63, 0x36, 0xff, 0xa1, 0x5f, 0x35, 0xff, 0xa1, 0x60, 0x34, 0xff, 0xa0, 0x5f, 0x35, 0xff, 0x9e, 0x5f, 0x35, 0xff, 0x9f, 0x5f, 0x35, 0xff, 0xa4, 0x63, 0x38, 0xff, 0xa9, 0x69, 0x3c, 0xff, 0xa4, 0x63, 0x38, 0xff, 0x9e, 0x5e, 0x35, 0xff, 0x9b, 0x5b, 0x35, 0xff, 0x99, 0x58, 0x32, 0xff, 0x97, 0x58, 0x32, 0xff, 0x98, 0x59, 0x34, 0xff, 0x94, 0x56, 0x31, 0xff, 0x67, 0x31, 0x11, 0xff, 0x64, 0x30, 0x13, 0xff, 0x61, 0x2e, 0x13, 0xff, 0x5e, 0x2c, 0x13, 0xff, 0x5b, 0x2c, 0x13, 0xff, 0x59, 0x29, 0x13, 0xff, 0x59, 0x27, 0x13, 0xff, 0x57, 0x26, 0x13, 0xff, 0x55, 0x25, 0x13, 0xff, 0x54, 0x27, 0x13, 0xff, 0x52, 0x29, 0x13, 0xff, 0x52, 0x26, 0x13, 0xff, 0x52, 0x26, 0x13, 0xff, 0x54, 0x26, 0x13, 0xff, 0x54, 0x27, 0x13, 0xff, 0x56, 0x29, 0x13, 0xff, 0x59, 0x26, 0x13, 0xff, 0x5b, 0x2a, 0x13, 0xff, 0x5d, 0x2c, 0x13, 0xff, 0x5f, 0x2e, 0x13, 0xff, 0x62, 0x2d, 0x13, 0xff, 0x66, 0x2e, 0x13, 0xff, 0x69, 0x32, 0x13, 0xff, 0x6d, 0x34, 0x13, 0xff, 0x72, 0x38, 0x13, 0xff, 0x75, 0x3a, 0x14, 0xff, 0x7c, 0x3f, 0x18, 0xff, 0x87, 0x46, 0x1f, 0xff, 0x89, 0x48, 0x22, 0xff, 0x8c, 0x4b, 0x26, 0xff, 0x8f, 0x50, 0x29, 0xff, 0x92, 0x52, 0x2b, 0xff, 0x94, 0x53, 0x2c, 0xff, 0xa0, 0x5e, 0x32, 0xff, 0xb2, 0x6f, 0x3e, 0xff, 0xb4, 0x70, 0x3e, 0xff, 0xb9, 0x77, 0x43, 0xff, 0xbc, 0x7c, 0x47, 0xff, 0xc4, 0x81, 0x4c, 0xff, 0xd1, 0x88, 0x52, 0xff, 0xe2, 0x92, 0x59, 0xff, 0xeb, 0x99, 0x5f, 0xff, 0xeb, 0xa0, 0x66, 0xff, 0xeb, 0xa6, 0x6c, 0xff, 0xeb, 0xab, 0x6f, 0xff, 0xeb, 0xab, 0x71, 0xff, 0xeb, 0xa8, 0x6e, 0xff, 0xea, 0xa4, 0x69, 0xff, 0xeb, 0x9d, 0x66, 0xff, 0xeb, 0x9a, 0x63, 0xff, 0xeb, 0x96, 0x5e, 0xff, 0xe9, 0x95, 0x5b, 0xff, 0xe2, 0x92, 0x58, 0xff, 0xdf, 0x91, 0x57, 0xff, 0xe2, 0x92, 0x57, 0xff, 0xe4, 0x92, 0x58, 0xff, 0xe7, 0x92, 0x59, 0xff, 0xea, 0x94, 0x5a, 0xff, 0xed, 0x97, 0x5d, 0xff, 0xe4, 0x94, 0x5c, 0xff, 0xcb, 0x85, 0x4f, 0xff, 0xbf, 0x7c, 0x47, 0xff, 0xc3, 0x7f, 0x4a, 0xff, 0xc7, 0x82, 0x4c, 0xff, 0xc8, 0x84, 0x4e, 0xff, 0xc6, 0x84, 0x4e, 0xff, 0xc3, 0x81, 0x4d, 0xff, 0xbe, 0x7d, 0x49, 0xff, 0xb8, 0x77, 0x44, 0xff, 0xb5, 0x74, 0x41, 0xff, 0xaf, 0x6f, 0x3c, 0xff, 0xa8, 0x69, 0x39, 0xff, 0xa3, 0x63, 0x36, 0xff, 0x9f, 0x5f, 0x33, 0xff, 0x9d, 0x5c, 0x31, 0xff, 0x9b, 0x59, 0x30, 0xff, 0x99, 0x58, 0x2f, 0xff, 0x98, 0x58, 0x2f, 0xff, 0x99, 0x5b, 0x31, 0xff, 0x9a, 0x5c, 0x33, 0xff, 0x9a, 0x5b, 0x33, 0xff, 0x99, 0x5b, 0x31, 0xff, 0x99, 0x5a, 0x2f, 0xff, 0x98, 0x58, 0x2e, 0xff, 0x99, 0x58, 0x2e, 0xff, 0x99, 0x59, 0x2f, 0xff, 0x97, 0x57, 0x2f, 0xff, 0x97, 0x58, 0x30, 0xff, 0x96, 0x59, 0x31, 0xff, 0x92, 0x55, 0x2e, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x8e, 0x4e, 0x2c, 0xff, 0x8d, 0x4d, 0x2c, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x89, 0x4a, 0x28, 0xff, 0x87, 0x48, 0x27, 0xff, 0x86, 0x48, 0x26, 0xff, 0x85, 0x46, 0x24, 0xff, 0x83, 0x44, 0x23, 0xff, 0x83, 0x44, 0x23, 0xff, 0x82, 0x45, 0x23, 0xff, 0x82, 0x44, 0x23, 0xff, 0x82, 0x44, 0x23, 0xff, 0x83, 0x45, 0x24, 0xff, 0x83, 0x45, 0x25, 0xff, 0x84, 0x46, 0x24, 0xff, 0x85, 0x46, 0x24, 0xff, 0x86, 0x47, 0x27, 0xff, 0x86, 0x48, 0x28, 0xff, 0x89, 0x49, 0x29, 0xff, 0x8c, 0x4c, 0x2b, 0xff, 0x8e, 0x4e, 0x2c, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x96, 0x57, 0x2f, 0xff, 0x99, 0x5b, 0x32, 0xff, 0x9c, 0x5d, 0x34, 0xff, 0xa0, 0x61, 0x37, 0xff, 0xa4, 0x65, 0x39, 0xff, 0xa8, 0x69, 0x3b, 0xff, 0xaf, 0x6f, 0x41, 0xff, 0x96, 0x59, 0x33, 0xff, 0x78, 0x3c, 0x18, 0xff, 0x76, 0x39, 0x14, 0xff, 0x7a, 0x3d, 0x17, 0xff, 0x7d, 0x40, 0x18, 0xff, 0x80, 0x41, 0x1c, 0xff, 0x83, 0x43, 0x1d, 0xff, 0x84, 0x44, 0x1e, 0xff, 0x87, 0x46, 0x1f, 0xff, 0x89, 0x48, 0x20, 0xff, 0x8a, 0x48, 0x23, 0xff, 0x8e, 0x4b, 0x25, 0xff, 0xa1, 0x61, 0x37, 0xff, 0xa1, 0x62, 0x38, 0xff, 0x9f, 0x5e, 0x36, 0xff, 0x9d, 0x5c, 0x34, 0xff, 0x9c, 0x5a, 0x33, 0xff, 0x9d, 0x5d, 0x33, 0xff, 0x9d, 0x5c, 0x34, 0xff, 0x9e, 0x5d, 0x35, 0xff, 0x9f, 0x60, 0x37, 0xff, 0x9e, 0x62, 0x38, 0xff, 0x9f, 0x63, 0x3a, 0xff, 0xa1, 0x67, 0x3c, 0xff, 0xa1, 0x69, 0x3b, 0xff, 0xa2, 0x68, 0x3c, 0xff, 0x99, 0x5d, 0x33, 0xff, 0x98, 0x5b, 0x31, 0xff, 0x98, 0x59, 0x2f, 0xff, 0x94, 0x52, 0x2d, 0xff, 0x93, 0x52, 0x2c, 0xff, 0x91, 0x52, 0x2b, 0xff, 0x90, 0x50, 0x2a, 0xff, 0x91, 0x51, 0x2b, 0xff, 0x93, 0x51, 0x2c, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x93, 0x56, 0x2e, 0xff, 0x91, 0x53, 0x2d, 0xff, 0x90, 0x53, 0x2d, 0xff, 0x92, 0x52, 0x2d, 0xff, 0x94, 0x55, 0x2f, 0xff, 0x94, 0x53, 0x2e, 0xff, 0x96, 0x56, 0x2f, 0xff, 0x93, 0x54, 0x2d, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x94, 0x56, 0x30, 0xff, 0x95, 0x58, 0x32, 0xff, 0x97, 0x59, 0x33, 0xff, 0x99, 0x5b, 0x33, 0xff, 0x99, 0x5b, 0x33, 0xff, 0x99, 0x5b, 0x33, 0xff, 0x99, 0x5c, 0x33, 0xff, 0x99, 0x5f, 0x34, 0xff, 0x99, 0x5f, 0x34, 0xff, 0x99, 0x5d, 0x33, 0xff, 0x99, 0x5b, 0x32, 0xff, 0x98, 0x5a, 0x30, 0xff, 0x97, 0x57, 0x2f, 0xff, 0x98, 0x58, 0x2e, 0xff, 0x97, 0x58, 0x2e, 0xff, 0x99, 0x59, 0x2e, 0xff, 0x9a, 0x5c, 0x30, 0xff, 0x9e, 0x5e, 0x33, 0xff, 0xa3, 0x64, 0x37, 0xff, 0xa7, 0x6c, 0x3e, 0xff, 0xad, 0x72, 0x43, 0xff, 0xb0, 0x77, 0x49, 0xff, 0xb2, 0x7c, 0x4b, 0xff, 0xb3, 0x80, 0x4e, 0xff, + 0xb4, 0x7b, 0x4a, 0xff, 0xb5, 0x7b, 0x4a, 0xff, 0xb7, 0x80, 0x4f, 0xff, 0x9b, 0x5d, 0x32, 0xff, 0x99, 0x5b, 0x32, 0xff, 0x9c, 0x5c, 0x32, 0xff, 0x9e, 0x5d, 0x33, 0xff, 0x9e, 0x5e, 0x34, 0xff, 0x9e, 0x5e, 0x34, 0xff, 0xa0, 0x61, 0x36, 0xff, 0xa3, 0x63, 0x36, 0xff, 0xa2, 0x63, 0x36, 0xff, 0xa1, 0x61, 0x35, 0xff, 0xa0, 0x60, 0x34, 0xff, 0xa1, 0x5e, 0x34, 0xff, 0xa0, 0x5f, 0x33, 0xff, 0x9f, 0x5d, 0x33, 0xff, 0xa1, 0x5f, 0x32, 0xff, 0xa1, 0x5f, 0x32, 0xff, 0xa2, 0x61, 0x33, 0xff, 0xa2, 0x60, 0x33, 0xff, 0xa5, 0x62, 0x34, 0xff, 0xa7, 0x63, 0x36, 0xff, 0xa5, 0x64, 0x38, 0xff, 0xa5, 0x66, 0x38, 0xff, 0xa4, 0x66, 0x38, 0xff, 0xa4, 0x65, 0x38, 0xff, 0xa4, 0x63, 0x37, 0xff, 0xa3, 0x61, 0x35, 0xff, 0xa1, 0x60, 0x34, 0xff, 0xa1, 0x5e, 0x34, 0xff, 0xa1, 0x5e, 0x34, 0xff, 0xa1, 0x61, 0x35, 0xff, 0x9d, 0x5c, 0x33, 0xff, 0x99, 0x58, 0x31, 0xff, 0x9f, 0x5f, 0x35, 0xff, 0x9c, 0x5b, 0x33, 0xff, 0x99, 0x5b, 0x32, 0xff, 0x98, 0x58, 0x32, 0xff, 0x97, 0x58, 0x32, 0xff, 0x98, 0x57, 0x32, 0xff, 0x97, 0x5a, 0x33, 0xff, 0x97, 0x5a, 0x33, 0xff, 0x65, 0x30, 0x11, 0xff, 0x63, 0x2c, 0x12, 0xff, 0x63, 0x2c, 0x12, 0xff, 0x5f, 0x2b, 0x13, 0xff, 0x5e, 0x2e, 0x13, 0xff, 0x5b, 0x2b, 0x13, 0xff, 0x59, 0x28, 0x13, 0xff, 0x5b, 0x26, 0x13, 0xff, 0x58, 0x27, 0x13, 0xff, 0x59, 0x29, 0x13, 0xff, 0x58, 0x27, 0x13, 0xff, 0x57, 0x26, 0x13, 0xff, 0x58, 0x27, 0x13, 0xff, 0x57, 0x26, 0x13, 0xff, 0x58, 0x2a, 0x13, 0xff, 0x59, 0x2a, 0x13, 0xff, 0x5c, 0x2a, 0x13, 0xff, 0x5d, 0x2e, 0x13, 0xff, 0x5e, 0x2e, 0x12, 0xff, 0x61, 0x2c, 0x13, 0xff, 0x64, 0x2e, 0x13, 0xff, 0x68, 0x31, 0x13, 0xff, 0x6a, 0x32, 0x13, 0xff, 0x6e, 0x35, 0x13, 0xff, 0x72, 0x37, 0x13, 0xff, 0x75, 0x38, 0x13, 0xff, 0x79, 0x3c, 0x17, 0xff, 0x83, 0x44, 0x1e, 0xff, 0x8a, 0x4a, 0x23, 0xff, 0x8d, 0x4d, 0x27, 0xff, 0x8f, 0x4f, 0x2b, 0xff, 0x94, 0x53, 0x2c, 0xff, 0x96, 0x54, 0x2c, 0xff, 0x9e, 0x5d, 0x31, 0xff, 0xae, 0x6b, 0x3b, 0xff, 0xb5, 0x72, 0x40, 0xff, 0xb9, 0x76, 0x44, 0xff, 0xbf, 0x7c, 0x48, 0xff, 0xc8, 0x82, 0x4d, 0xff, 0xd4, 0x88, 0x53, 0xff, 0xe3, 0x91, 0x58, 0xff, 0xe9, 0x96, 0x5f, 0xff, 0xeb, 0x9b, 0x63, 0xff, 0xeb, 0xa0, 0x66, 0xff, 0xeb, 0xa3, 0x68, 0xff, 0xeb, 0xa4, 0x6a, 0xff, 0xeb, 0xa1, 0x68, 0xff, 0xea, 0x9b, 0x64, 0xff, 0xeb, 0x98, 0x61, 0xff, 0xeb, 0x96, 0x5e, 0xff, 0xeb, 0x95, 0x5b, 0xff, 0xe8, 0x92, 0x58, 0xff, 0xe4, 0x92, 0x58, 0xff, 0xe3, 0x93, 0x57, 0xff, 0xe4, 0x92, 0x57, 0xff, 0xe8, 0x93, 0x59, 0xff, 0xeb, 0x95, 0x5a, 0xff, 0xeb, 0x94, 0x5b, 0xff, 0xed, 0x95, 0x5e, 0xff, 0xe2, 0x92, 0x5b, 0xff, 0xc9, 0x84, 0x4f, 0xff, 0xc0, 0x7f, 0x49, 0xff, 0xc5, 0x81, 0x4b, 0xff, 0xc9, 0x85, 0x4e, 0xff, 0xcb, 0x85, 0x4f, 0xff, 0xca, 0x86, 0x51, 0xff, 0xc7, 0x85, 0x50, 0xff, 0xc1, 0x82, 0x4b, 0xff, 0xbb, 0x7d, 0x45, 0xff, 0xb6, 0x77, 0x42, 0xff, 0xb5, 0x74, 0x41, 0xff, 0xad, 0x6c, 0x3b, 0xff, 0xa3, 0x62, 0x34, 0xff, 0xa1, 0x61, 0x34, 0xff, 0xa0, 0x5f, 0x34, 0xff, 0x9b, 0x5a, 0x31, 0xff, 0x99, 0x58, 0x2f, 0xff, 0x9a, 0x59, 0x2f, 0xff, 0x9c, 0x5c, 0x31, 0xff, 0x9d, 0x5d, 0x33, 0xff, 0x9d, 0x5e, 0x33, 0xff, 0x9b, 0x5c, 0x33, 0xff, 0x9c, 0x5b, 0x32, 0xff, 0x9c, 0x5a, 0x30, 0xff, 0x9b, 0x5b, 0x2f, 0xff, 0x9a, 0x5a, 0x30, 0xff, 0x99, 0x59, 0x30, 0xff, 0x99, 0x5a, 0x31, 0xff, 0x98, 0x58, 0x31, 0xff, 0x94, 0x53, 0x2e, 0xff, 0x91, 0x50, 0x2c, 0xff, 0x90, 0x4f, 0x2c, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8c, 0x4c, 0x2c, 0xff, 0x8b, 0x4a, 0x2a, 0xff, 0x89, 0x4a, 0x28, 0xff, 0x88, 0x4a, 0x2a, 0xff, 0x87, 0x48, 0x27, 0xff, 0x85, 0x47, 0x25, 0xff, 0x85, 0x46, 0x26, 0xff, 0x85, 0x45, 0x26, 0xff, 0x85, 0x45, 0x25, 0xff, 0x85, 0x46, 0x24, 0xff, 0x84, 0x47, 0x25, 0xff, 0x85, 0x46, 0x26, 0xff, 0x85, 0x45, 0x26, 0xff, 0x86, 0x47, 0x26, 0xff, 0x86, 0x47, 0x27, 0xff, 0x88, 0x49, 0x28, 0xff, 0x8a, 0x4b, 0x29, 0xff, 0x8c, 0x4c, 0x2b, 0xff, 0x8d, 0x4e, 0x2c, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x90, 0x50, 0x2e, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x96, 0x56, 0x30, 0xff, 0x99, 0x59, 0x32, 0xff, 0x9d, 0x5e, 0x35, 0xff, 0xa1, 0x61, 0x37, 0xff, 0xa6, 0x66, 0x3c, 0xff, 0xa8, 0x69, 0x3e, 0xff, 0xb8, 0x7a, 0x4e, 0xff, 0x81, 0x48, 0x22, 0xff, 0x73, 0x37, 0x13, 0xff, 0x78, 0x3b, 0x18, 0xff, 0x7a, 0x3e, 0x18, 0xff, 0x7c, 0x3e, 0x18, 0xff, 0x80, 0x3f, 0x1b, 0xff, 0x83, 0x41, 0x1e, 0xff, 0x85, 0x43, 0x1f, 0xff, 0x86, 0x46, 0x1f, 0xff, 0x87, 0x47, 0x20, 0xff, 0x89, 0x4a, 0x21, 0xff, 0x8c, 0x49, 0x23, 0xff, 0xa3, 0x63, 0x3a, 0xff, 0xa3, 0x64, 0x3a, 0xff, 0x9f, 0x60, 0x37, 0xff, 0x9e, 0x5e, 0x35, 0xff, 0x9c, 0x5b, 0x34, 0xff, 0x9e, 0x5d, 0x33, 0xff, 0x9b, 0x5b, 0x33, 0xff, 0x9c, 0x5c, 0x33, 0xff, 0x9e, 0x5f, 0x34, 0xff, 0xa0, 0x62, 0x38, 0xff, 0xa0, 0x64, 0x38, 0xff, 0xa1, 0x65, 0x3a, 0xff, 0xa2, 0x69, 0x3b, 0xff, 0x9e, 0x63, 0x37, 0xff, 0x99, 0x5b, 0x33, 0xff, 0x99, 0x5b, 0x30, 0xff, 0x99, 0x58, 0x2f, 0xff, 0x98, 0x58, 0x2f, 0xff, 0x95, 0x53, 0x2c, 0xff, 0x93, 0x51, 0x2b, 0xff, 0x92, 0x51, 0x2b, 0xff, 0x90, 0x50, 0x2a, 0xff, 0x93, 0x53, 0x2c, 0xff, 0x93, 0x53, 0x2d, 0xff, 0x94, 0x57, 0x2f, 0xff, 0x91, 0x53, 0x2d, 0xff, 0x93, 0x54, 0x2d, 0xff, 0x90, 0x53, 0x2c, 0xff, 0x92, 0x51, 0x2d, 0xff, 0x94, 0x55, 0x2f, 0xff, 0x97, 0x56, 0x2f, 0xff, 0x96, 0x55, 0x2f, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x94, 0x56, 0x2e, 0xff, 0x98, 0x5a, 0x30, 0xff, 0x99, 0x5b, 0x33, 0xff, 0x9a, 0x5c, 0x34, 0xff, 0x9b, 0x5d, 0x34, 0xff, 0x9b, 0x5e, 0x34, 0xff, 0x9b, 0x61, 0x35, 0xff, 0x9b, 0x61, 0x34, 0xff, 0x9c, 0x5f, 0x34, 0xff, 0x9b, 0x5d, 0x32, 0xff, 0x99, 0x5b, 0x31, 0xff, 0x99, 0x5b, 0x30, 0xff, 0x98, 0x58, 0x2f, 0xff, 0x98, 0x59, 0x2e, 0xff, 0x97, 0x57, 0x2d, 0xff, 0x95, 0x56, 0x2d, 0xff, 0x98, 0x58, 0x2e, 0xff, 0x9d, 0x5c, 0x32, 0xff, 0xa0, 0x5f, 0x35, 0xff, 0xa2, 0x64, 0x38, 0xff, 0xa7, 0x6d, 0x3f, 0xff, 0xac, 0x71, 0x44, 0xff, 0xaf, 0x77, 0x49, 0xff, 0xb2, 0x7a, 0x4a, 0xff, + 0xaf, 0x74, 0x44, 0xff, 0xaf, 0x73, 0x43, 0xff, 0xb2, 0x75, 0x45, 0xff, 0xa4, 0x68, 0x3a, 0xff, 0x99, 0x59, 0x30, 0xff, 0x9d, 0x5d, 0x33, 0xff, 0x9e, 0x5c, 0x32, 0xff, 0x9e, 0x5d, 0x33, 0xff, 0x9e, 0x60, 0x34, 0xff, 0xa0, 0x60, 0x34, 0xff, 0xa1, 0x62, 0x36, 0xff, 0xa2, 0x61, 0x37, 0xff, 0xa1, 0x61, 0x35, 0xff, 0xa1, 0x5e, 0x34, 0xff, 0xa1, 0x61, 0x34, 0xff, 0xa1, 0x5e, 0x34, 0xff, 0x9e, 0x5c, 0x32, 0xff, 0xa1, 0x5d, 0x32, 0xff, 0xa1, 0x5f, 0x33, 0xff, 0xa3, 0x61, 0x33, 0xff, 0xa4, 0x62, 0x34, 0xff, 0xa6, 0x63, 0x35, 0xff, 0xa6, 0x63, 0x35, 0xff, 0xa7, 0x66, 0x38, 0xff, 0xa5, 0x66, 0x38, 0xff, 0xa5, 0x66, 0x38, 0xff, 0xa6, 0x66, 0x38, 0xff, 0xa6, 0x63, 0x36, 0xff, 0xa3, 0x62, 0x35, 0xff, 0xa0, 0x60, 0x33, 0xff, 0xa0, 0x5d, 0x33, 0xff, 0x9c, 0x5c, 0x32, 0xff, 0x98, 0x57, 0x30, 0xff, 0x96, 0x56, 0x2f, 0xff, 0x92, 0x51, 0x2e, 0xff, 0x9a, 0x59, 0x31, 0xff, 0x9b, 0x5a, 0x33, 0xff, 0x98, 0x58, 0x31, 0xff, 0x96, 0x57, 0x30, 0xff, 0x96, 0x57, 0x31, 0xff, 0x96, 0x58, 0x32, 0xff, 0x97, 0x59, 0x33, 0xff, 0x96, 0x59, 0x33, 0xff, 0x6f, 0x38, 0x15, 0xff, 0x66, 0x30, 0x12, 0xff, 0x67, 0x2f, 0x13, 0xff, 0x64, 0x2c, 0x12, 0xff, 0x61, 0x2e, 0x13, 0xff, 0x5f, 0x2d, 0x12, 0xff, 0x5e, 0x2e, 0x12, 0xff, 0x5e, 0x2c, 0x13, 0xff, 0x5d, 0x2b, 0x13, 0xff, 0x5b, 0x2a, 0x13, 0xff, 0x5b, 0x2a, 0x13, 0xff, 0x59, 0x29, 0x13, 0xff, 0x5a, 0x26, 0x13, 0xff, 0x5b, 0x29, 0x13, 0xff, 0x5b, 0x2a, 0x13, 0xff, 0x5b, 0x2a, 0x13, 0xff, 0x5c, 0x2d, 0x13, 0xff, 0x5e, 0x2d, 0x13, 0xff, 0x60, 0x2b, 0x13, 0xff, 0x63, 0x2e, 0x12, 0xff, 0x67, 0x2f, 0x12, 0xff, 0x69, 0x31, 0x13, 0xff, 0x6b, 0x32, 0x12, 0xff, 0x6f, 0x35, 0x13, 0xff, 0x72, 0x37, 0x13, 0xff, 0x76, 0x39, 0x13, 0xff, 0x79, 0x3c, 0x16, 0xff, 0x81, 0x42, 0x1d, 0xff, 0x8a, 0x48, 0x24, 0xff, 0x8d, 0x4c, 0x26, 0xff, 0x91, 0x50, 0x2b, 0xff, 0x93, 0x54, 0x2d, 0xff, 0x98, 0x58, 0x2e, 0xff, 0x9b, 0x59, 0x2e, 0xff, 0xa8, 0x66, 0x37, 0xff, 0xb7, 0x73, 0x41, 0xff, 0xbc, 0x77, 0x45, 0xff, 0xc2, 0x7d, 0x4a, 0xff, 0xc9, 0x85, 0x4e, 0xff, 0xd2, 0x8b, 0x53, 0xff, 0xdb, 0x90, 0x59, 0xff, 0xe6, 0x96, 0x5d, 0xff, 0xec, 0x9a, 0x60, 0xff, 0xeb, 0x9d, 0x63, 0xff, 0xeb, 0x9f, 0x66, 0xff, 0xea, 0x9f, 0x65, 0xff, 0xeb, 0x9a, 0x61, 0xff, 0xeb, 0x97, 0x5e, 0xff, 0xeb, 0x95, 0x5c, 0xff, 0xeb, 0x95, 0x5b, 0xff, 0xe9, 0x93, 0x59, 0xff, 0xe8, 0x92, 0x58, 0xff, 0xe9, 0x93, 0x59, 0xff, 0xe9, 0x92, 0x58, 0xff, 0xeb, 0x91, 0x58, 0xff, 0xeb, 0x92, 0x5a, 0xff, 0xeb, 0x96, 0x5c, 0xff, 0xeb, 0x96, 0x5c, 0xff, 0xed, 0x97, 0x5e, 0xff, 0xe0, 0x90, 0x5a, 0xff, 0xc9, 0x82, 0x4d, 0xff, 0xc6, 0x81, 0x4a, 0xff, 0xc9, 0x84, 0x4c, 0xff, 0xcb, 0x86, 0x4e, 0xff, 0xce, 0x89, 0x51, 0xff, 0xd0, 0x8e, 0x54, 0xff, 0xcc, 0x89, 0x51, 0xff, 0xc5, 0x83, 0x4e, 0xff, 0xbf, 0x80, 0x4a, 0xff, 0xba, 0x7b, 0x46, 0xff, 0xb9, 0x78, 0x43, 0xff, 0xb1, 0x72, 0x3f, 0xff, 0xa5, 0x66, 0x38, 0xff, 0xa2, 0x62, 0x35, 0xff, 0x9e, 0x5f, 0x33, 0xff, 0x9b, 0x5b, 0x31, 0xff, 0x9b, 0x5a, 0x30, 0xff, 0x9c, 0x5a, 0x30, 0xff, 0x9e, 0x5b, 0x31, 0xff, 0x9e, 0x5d, 0x33, 0xff, 0x9e, 0x5e, 0x34, 0xff, 0x9d, 0x5d, 0x33, 0xff, 0x9d, 0x5e, 0x32, 0xff, 0x9e, 0x5e, 0x31, 0xff, 0x9e, 0x5c, 0x32, 0xff, 0x9c, 0x5b, 0x31, 0xff, 0x9a, 0x5a, 0x31, 0xff, 0x9b, 0x5c, 0x34, 0xff, 0x98, 0x59, 0x32, 0xff, 0x94, 0x53, 0x2e, 0xff, 0x93, 0x52, 0x2d, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x8e, 0x4e, 0x2c, 0xff, 0x8d, 0x4e, 0x2b, 0xff, 0x8b, 0x4d, 0x2a, 0xff, 0x8a, 0x4b, 0x29, 0xff, 0x89, 0x48, 0x28, 0xff, 0x87, 0x47, 0x27, 0xff, 0x88, 0x48, 0x27, 0xff, 0x87, 0x47, 0x28, 0xff, 0x85, 0x47, 0x27, 0xff, 0x85, 0x46, 0x25, 0xff, 0x85, 0x47, 0x24, 0xff, 0x86, 0x47, 0x25, 0xff, 0x87, 0x47, 0x26, 0xff, 0x87, 0x47, 0x27, 0xff, 0x87, 0x47, 0x26, 0xff, 0x89, 0x49, 0x28, 0xff, 0x8b, 0x4b, 0x2a, 0xff, 0x8c, 0x4c, 0x2c, 0xff, 0x8e, 0x4e, 0x2c, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x94, 0x53, 0x2f, 0xff, 0x96, 0x56, 0x2f, 0xff, 0x9a, 0x5a, 0x33, 0xff, 0x9f, 0x5f, 0x37, 0xff, 0xa1, 0x62, 0x38, 0xff, 0xa5, 0x66, 0x3a, 0xff, 0xb0, 0x70, 0x43, 0xff, 0x96, 0x5a, 0x36, 0xff, 0x77, 0x3c, 0x19, 0xff, 0x73, 0x38, 0x14, 0xff, 0x77, 0x3b, 0x15, 0xff, 0x79, 0x3d, 0x16, 0xff, 0x7c, 0x3e, 0x18, 0xff, 0x7f, 0x3f, 0x1b, 0xff, 0x82, 0x41, 0x1e, 0xff, 0x84, 0x43, 0x1f, 0xff, 0x86, 0x45, 0x20, 0xff, 0x89, 0x48, 0x23, 0xff, 0x8a, 0x49, 0x22, 0xff, 0x90, 0x50, 0x29, 0xff, 0xa5, 0x64, 0x3b, 0xff, 0xa5, 0x65, 0x3a, 0xff, 0xa1, 0x61, 0x38, 0xff, 0x9e, 0x5f, 0x37, 0xff, 0x9d, 0x5e, 0x35, 0xff, 0x9e, 0x5e, 0x34, 0xff, 0x9c, 0x5e, 0x32, 0xff, 0x9d, 0x5d, 0x33, 0xff, 0x9e, 0x5e, 0x34, 0xff, 0xa0, 0x60, 0x35, 0xff, 0xa0, 0x62, 0x38, 0xff, 0xa1, 0x63, 0x38, 0xff, 0xa4, 0x66, 0x39, 0xff, 0x9b, 0x5f, 0x34, 0xff, 0x9a, 0x5b, 0x31, 0xff, 0x99, 0x5a, 0x2f, 0xff, 0x99, 0x5b, 0x2f, 0xff, 0x99, 0x59, 0x2f, 0xff, 0x94, 0x54, 0x2c, 0xff, 0x93, 0x53, 0x2b, 0xff, 0x92, 0x50, 0x2b, 0xff, 0x92, 0x51, 0x2b, 0xff, 0x93, 0x52, 0x2c, 0xff, 0x94, 0x53, 0x2d, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x90, 0x53, 0x2c, 0xff, 0x92, 0x53, 0x2d, 0xff, 0x92, 0x53, 0x2c, 0xff, 0x90, 0x50, 0x2b, 0xff, 0x92, 0x52, 0x2c, 0xff, 0x95, 0x55, 0x2f, 0xff, 0x96, 0x57, 0x2f, 0xff, 0x96, 0x57, 0x2e, 0xff, 0x97, 0x58, 0x2f, 0xff, 0x99, 0x59, 0x2f, 0xff, 0x99, 0x5b, 0x31, 0xff, 0x9c, 0x5e, 0x33, 0xff, 0x9e, 0x61, 0x35, 0xff, 0x9d, 0x61, 0x35, 0xff, 0x9b, 0x61, 0x35, 0xff, 0x9d, 0x61, 0x35, 0xff, 0x9e, 0x61, 0x34, 0xff, 0x9e, 0x5f, 0x33, 0xff, 0x9c, 0x5e, 0x32, 0xff, 0x9a, 0x5b, 0x30, 0xff, 0x99, 0x5a, 0x2f, 0xff, 0x98, 0x58, 0x2e, 0xff, 0x98, 0x58, 0x2e, 0xff, 0x97, 0x57, 0x2d, 0xff, 0x96, 0x55, 0x2e, 0xff, 0x96, 0x57, 0x2e, 0xff, 0x9b, 0x5b, 0x31, 0xff, 0xa0, 0x60, 0x34, 0xff, 0xa3, 0x64, 0x37, 0xff, 0xa7, 0x6b, 0x3c, 0xff, 0xad, 0x6f, 0x40, 0xff, 0xaf, 0x70, 0x43, 0xff, + 0xa9, 0x69, 0x38, 0xff, 0xa9, 0x6a, 0x3a, 0xff, 0xad, 0x6d, 0x3c, 0xff, 0xac, 0x6e, 0x40, 0xff, 0x99, 0x58, 0x2e, 0xff, 0x9b, 0x5a, 0x31, 0xff, 0x9a, 0x59, 0x30, 0xff, 0x9b, 0x5c, 0x32, 0xff, 0x9d, 0x5d, 0x32, 0xff, 0x9f, 0x5f, 0x34, 0xff, 0x9f, 0x5e, 0x34, 0xff, 0x9f, 0x5f, 0x33, 0xff, 0x9f, 0x5e, 0x33, 0xff, 0xa0, 0x5d, 0x34, 0xff, 0xa2, 0x5f, 0x34, 0xff, 0xa0, 0x5e, 0x34, 0xff, 0x9d, 0x5a, 0x31, 0xff, 0xa1, 0x5e, 0x32, 0xff, 0xa2, 0x60, 0x33, 0xff, 0xa3, 0x60, 0x32, 0xff, 0xa3, 0x60, 0x33, 0xff, 0xa3, 0x61, 0x33, 0xff, 0xa6, 0x63, 0x35, 0xff, 0xa6, 0x65, 0x36, 0xff, 0xa3, 0x63, 0x37, 0xff, 0xa2, 0x62, 0x36, 0xff, 0xa1, 0x61, 0x35, 0xff, 0x9f, 0x5d, 0x33, 0xff, 0x9b, 0x5a, 0x30, 0xff, 0x9a, 0x5a, 0x30, 0xff, 0x9b, 0x5a, 0x32, 0xff, 0x9a, 0x59, 0x30, 0xff, 0x95, 0x54, 0x2f, 0xff, 0x91, 0x50, 0x2c, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x99, 0x59, 0x32, 0xff, 0x98, 0x57, 0x31, 0xff, 0x96, 0x56, 0x30, 0xff, 0x95, 0x57, 0x31, 0xff, 0x95, 0x56, 0x30, 0xff, 0x96, 0x59, 0x33, 0xff, 0x96, 0x58, 0x34, 0xff, 0x76, 0x3c, 0x1e, 0xff, 0x65, 0x2e, 0x11, 0xff, 0x68, 0x31, 0x13, 0xff, 0x66, 0x2d, 0x12, 0xff, 0x64, 0x2d, 0x12, 0xff, 0x64, 0x2e, 0x12, 0xff, 0x61, 0x2c, 0x13, 0xff, 0x60, 0x2c, 0x12, 0xff, 0x5f, 0x2b, 0x12, 0xff, 0x5f, 0x2e, 0x12, 0xff, 0x5d, 0x2e, 0x13, 0xff, 0x5b, 0x2c, 0x12, 0xff, 0x5c, 0x2b, 0x12, 0xff, 0x5e, 0x2c, 0x13, 0xff, 0x5d, 0x2e, 0x12, 0xff, 0x5e, 0x2e, 0x12, 0xff, 0x5e, 0x2c, 0x13, 0xff, 0x60, 0x2b, 0x12, 0xff, 0x63, 0x2d, 0x12, 0xff, 0x67, 0x2e, 0x13, 0xff, 0x6a, 0x31, 0x12, 0xff, 0x6b, 0x33, 0x13, 0xff, 0x6d, 0x34, 0x12, 0xff, 0x70, 0x35, 0x12, 0xff, 0x73, 0x36, 0x12, 0xff, 0x75, 0x39, 0x14, 0xff, 0x7a, 0x3d, 0x17, 0xff, 0x7f, 0x40, 0x1b, 0xff, 0x89, 0x48, 0x22, 0xff, 0x8f, 0x4d, 0x28, 0xff, 0x92, 0x51, 0x2b, 0xff, 0x94, 0x54, 0x2d, 0xff, 0x97, 0x57, 0x2e, 0xff, 0x99, 0x58, 0x2e, 0xff, 0xa2, 0x60, 0x34, 0xff, 0xb6, 0x73, 0x41, 0xff, 0xbd, 0x79, 0x45, 0xff, 0xc3, 0x80, 0x4a, 0xff, 0xc9, 0x87, 0x50, 0xff, 0xd2, 0x8d, 0x56, 0xff, 0xdc, 0x95, 0x5c, 0xff, 0xe5, 0x99, 0x60, 0xff, 0xea, 0x99, 0x61, 0xff, 0xeb, 0x9a, 0x62, 0xff, 0xeb, 0x9b, 0x62, 0xff, 0xeb, 0x99, 0x61, 0xff, 0xeb, 0x97, 0x5f, 0xff, 0xea, 0x93, 0x5b, 0xff, 0xe9, 0x90, 0x59, 0xff, 0xe8, 0x90, 0x57, 0xff, 0xeb, 0x90, 0x58, 0xff, 0xeb, 0x92, 0x59, 0xff, 0xeb, 0x95, 0x5b, 0xff, 0xeb, 0x95, 0x5c, 0xff, 0xeb, 0x95, 0x5c, 0xff, 0xeb, 0x96, 0x5c, 0xff, 0xeb, 0x96, 0x5d, 0xff, 0xeb, 0x97, 0x5e, 0xff, 0xec, 0x99, 0x60, 0xff, 0xe1, 0x92, 0x5a, 0xff, 0xcf, 0x86, 0x4f, 0xff, 0xcd, 0x85, 0x4e, 0xff, 0xcf, 0x87, 0x50, 0xff, 0xd2, 0x89, 0x51, 0xff, 0xd3, 0x8c, 0x53, 0xff, 0xd5, 0x8f, 0x55, 0xff, 0xd2, 0x8b, 0x53, 0xff, 0xca, 0x88, 0x51, 0xff, 0xc4, 0x84, 0x4e, 0xff, 0xbd, 0x7e, 0x48, 0xff, 0xbb, 0x7c, 0x45, 0xff, 0xb5, 0x75, 0x41, 0xff, 0xa9, 0x68, 0x3a, 0xff, 0x9f, 0x5f, 0x34, 0xff, 0x9c, 0x5c, 0x33, 0xff, 0x9f, 0x5d, 0x34, 0xff, 0x9f, 0x5c, 0x32, 0xff, 0x9e, 0x5c, 0x32, 0xff, 0x9e, 0x5d, 0x33, 0xff, 0xa0, 0x5f, 0x33, 0xff, 0xa0, 0x60, 0x34, 0xff, 0x9f, 0x5f, 0x34, 0xff, 0xa0, 0x60, 0x34, 0xff, 0xa1, 0x61, 0x33, 0xff, 0xa0, 0x60, 0x32, 0xff, 0x9e, 0x5e, 0x32, 0xff, 0x9c, 0x5c, 0x32, 0xff, 0x9c, 0x5c, 0x34, 0xff, 0x98, 0x58, 0x31, 0xff, 0x94, 0x55, 0x2e, 0xff, 0x95, 0x55, 0x2e, 0xff, 0x93, 0x53, 0x2d, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x90, 0x4f, 0x2c, 0xff, 0x8f, 0x4e, 0x2c, 0xff, 0x8d, 0x4d, 0x2b, 0xff, 0x8b, 0x4b, 0x29, 0xff, 0x8a, 0x49, 0x28, 0xff, 0x8a, 0x4a, 0x2a, 0xff, 0x89, 0x49, 0x29, 0xff, 0x87, 0x48, 0x28, 0xff, 0x88, 0x47, 0x26, 0xff, 0x88, 0x48, 0x26, 0xff, 0x87, 0x48, 0x26, 0xff, 0x88, 0x49, 0x27, 0xff, 0x87, 0x49, 0x29, 0xff, 0x89, 0x4a, 0x29, 0xff, 0x8b, 0x4b, 0x2a, 0xff, 0x8c, 0x4c, 0x2b, 0xff, 0x8d, 0x4d, 0x2c, 0xff, 0x8e, 0x50, 0x2c, 0xff, 0x90, 0x52, 0x2d, 0xff, 0x91, 0x53, 0x2e, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x99, 0x59, 0x33, 0xff, 0x9d, 0x5c, 0x34, 0xff, 0x9e, 0x5f, 0x36, 0xff, 0xa2, 0x63, 0x37, 0xff, 0xa7, 0x68, 0x3b, 0xff, 0xad, 0x6f, 0x43, 0xff, 0x84, 0x4a, 0x24, 0xff, 0x72, 0x39, 0x13, 0xff, 0x72, 0x38, 0x13, 0xff, 0x76, 0x3a, 0x16, 0xff, 0x78, 0x3b, 0x15, 0xff, 0x7c, 0x3d, 0x16, 0xff, 0x7e, 0x3f, 0x1b, 0xff, 0x81, 0x41, 0x1e, 0xff, 0x84, 0x44, 0x20, 0xff, 0x86, 0x46, 0x21, 0xff, 0x89, 0x49, 0x23, 0xff, 0x8b, 0x49, 0x23, 0xff, 0x95, 0x54, 0x2c, 0xff, 0xa6, 0x66, 0x3c, 0xff, 0xa5, 0x67, 0x3b, 0xff, 0xa2, 0x64, 0x39, 0xff, 0x9f, 0x61, 0x37, 0xff, 0x9e, 0x5f, 0x37, 0xff, 0x9e, 0x5e, 0x35, 0xff, 0x9e, 0x5e, 0x34, 0xff, 0x9d, 0x5b, 0x34, 0xff, 0x9e, 0x5d, 0x34, 0xff, 0x9d, 0x5d, 0x34, 0xff, 0x9f, 0x5f, 0x35, 0xff, 0xa1, 0x63, 0x37, 0xff, 0xa1, 0x63, 0x36, 0xff, 0x9c, 0x5e, 0x33, 0xff, 0x9a, 0x5b, 0x31, 0xff, 0x99, 0x5b, 0x30, 0xff, 0x99, 0x59, 0x2f, 0xff, 0x99, 0x58, 0x2e, 0xff, 0x99, 0x56, 0x2e, 0xff, 0x95, 0x52, 0x2c, 0xff, 0x93, 0x53, 0x2c, 0xff, 0x93, 0x53, 0x2c, 0xff, 0x93, 0x53, 0x2c, 0xff, 0x94, 0x54, 0x2c, 0xff, 0x96, 0x55, 0x2e, 0xff, 0x92, 0x51, 0x2c, 0xff, 0x93, 0x53, 0x2c, 0xff, 0x93, 0x54, 0x2c, 0xff, 0x94, 0x54, 0x2c, 0xff, 0x93, 0x53, 0x2b, 0xff, 0x95, 0x53, 0x2c, 0xff, 0x96, 0x56, 0x2f, 0xff, 0x97, 0x59, 0x2f, 0xff, 0x98, 0x58, 0x30, 0xff, 0x99, 0x5a, 0x2f, 0xff, 0x9a, 0x5a, 0x30, 0xff, 0x9e, 0x5e, 0x34, 0xff, 0x9f, 0x61, 0x34, 0xff, 0x9f, 0x62, 0x35, 0xff, 0x9e, 0x61, 0x35, 0xff, 0x9e, 0x61, 0x34, 0xff, 0x9e, 0x60, 0x33, 0xff, 0x9e, 0x5e, 0x33, 0xff, 0x9e, 0x5e, 0x32, 0xff, 0x9b, 0x5c, 0x30, 0xff, 0x9a, 0x59, 0x2f, 0xff, 0x99, 0x58, 0x2e, 0xff, 0x98, 0x58, 0x2e, 0xff, 0x97, 0x57, 0x2e, 0xff, 0x97, 0x58, 0x2d, 0xff, 0x97, 0x57, 0x2e, 0xff, 0x99, 0x59, 0x2f, 0xff, 0x9a, 0x59, 0x30, 0xff, 0xa0, 0x61, 0x32, 0xff, 0xa2, 0x62, 0x35, 0xff, 0xa7, 0x67, 0x39, 0xff, 0xa7, 0x67, 0x38, 0xff, + 0xa2, 0x61, 0x34, 0xff, 0xa4, 0x63, 0x34, 0xff, 0xa7, 0x67, 0x37, 0xff, 0xac, 0x6c, 0x3b, 0xff, 0x9a, 0x59, 0x2f, 0xff, 0x9b, 0x5a, 0x30, 0xff, 0x99, 0x57, 0x2f, 0xff, 0x98, 0x58, 0x2f, 0xff, 0x99, 0x59, 0x2f, 0xff, 0x9a, 0x5a, 0x30, 0xff, 0x9b, 0x5a, 0x30, 0xff, 0x9b, 0x5a, 0x30, 0xff, 0x99, 0x58, 0x2f, 0xff, 0x99, 0x58, 0x30, 0xff, 0x9b, 0x5a, 0x30, 0xff, 0x99, 0x56, 0x2f, 0xff, 0x99, 0x57, 0x2f, 0xff, 0x9a, 0x57, 0x2e, 0xff, 0x9d, 0x5a, 0x2f, 0xff, 0x9e, 0x5c, 0x2f, 0xff, 0x9e, 0x5c, 0x30, 0xff, 0xa0, 0x5d, 0x30, 0xff, 0xa1, 0x60, 0x33, 0xff, 0xa0, 0x5f, 0x33, 0xff, 0x9f, 0x60, 0x32, 0xff, 0x9e, 0x5d, 0x33, 0xff, 0x9e, 0x5b, 0x32, 0xff, 0x9e, 0x5c, 0x32, 0xff, 0x9b, 0x5c, 0x33, 0xff, 0x9d, 0x5d, 0x33, 0xff, 0x99, 0x57, 0x32, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x90, 0x4f, 0x2c, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x9a, 0x5a, 0x33, 0xff, 0x98, 0x57, 0x31, 0xff, 0x96, 0x56, 0x30, 0xff, 0x96, 0x57, 0x31, 0xff, 0x96, 0x57, 0x31, 0xff, 0x96, 0x58, 0x32, 0xff, 0x97, 0x58, 0x33, 0xff, 0x7c, 0x42, 0x25, 0xff, 0x67, 0x31, 0x11, 0xff, 0x69, 0x30, 0x12, 0xff, 0x68, 0x2f, 0x12, 0xff, 0x67, 0x30, 0x12, 0xff, 0x67, 0x2f, 0x12, 0xff, 0x67, 0x30, 0x12, 0xff, 0x65, 0x2d, 0x12, 0xff, 0x64, 0x2d, 0x12, 0xff, 0x63, 0x2c, 0x12, 0xff, 0x62, 0x2c, 0x12, 0xff, 0x60, 0x2e, 0x12, 0xff, 0x61, 0x2e, 0x12, 0xff, 0x61, 0x2b, 0x12, 0xff, 0x60, 0x2d, 0x12, 0xff, 0x61, 0x2a, 0x12, 0xff, 0x62, 0x2c, 0x12, 0xff, 0x64, 0x2c, 0x12, 0xff, 0x65, 0x2f, 0x12, 0xff, 0x68, 0x32, 0x12, 0xff, 0x69, 0x32, 0x12, 0xff, 0x6c, 0x33, 0x12, 0xff, 0x6f, 0x35, 0x12, 0xff, 0x71, 0x36, 0x12, 0xff, 0x75, 0x39, 0x13, 0xff, 0x79, 0x3b, 0x16, 0xff, 0x7c, 0x3c, 0x18, 0xff, 0x7f, 0x3f, 0x19, 0xff, 0x85, 0x44, 0x1f, 0xff, 0x90, 0x4e, 0x29, 0xff, 0x92, 0x50, 0x2b, 0xff, 0x95, 0x52, 0x2c, 0xff, 0x97, 0x55, 0x2d, 0xff, 0x99, 0x57, 0x2e, 0xff, 0x9e, 0x5b, 0x30, 0xff, 0xb0, 0x6d, 0x3c, 0xff, 0xc1, 0x7e, 0x48, 0xff, 0xc3, 0x81, 0x4b, 0xff, 0xc8, 0x89, 0x54, 0xff, 0xd1, 0x93, 0x5b, 0xff, 0xdc, 0x9a, 0x61, 0xff, 0xe5, 0x9d, 0x65, 0xff, 0xea, 0x9f, 0x65, 0xff, 0xea, 0x9e, 0x65, 0xff, 0xeb, 0x9d, 0x63, 0xff, 0xeb, 0x99, 0x60, 0xff, 0xeb, 0x97, 0x5e, 0xff, 0xeb, 0x94, 0x5b, 0xff, 0xe8, 0x8f, 0x58, 0xff, 0xe5, 0x8c, 0x55, 0xff, 0xea, 0x90, 0x57, 0xff, 0xeb, 0x95, 0x59, 0xff, 0xeb, 0x95, 0x5c, 0xff, 0xeb, 0x97, 0x5e, 0xff, 0xeb, 0x99, 0x5f, 0xff, 0xeb, 0x9a, 0x5f, 0xff, 0xeb, 0x9a, 0x5f, 0xff, 0xeb, 0x9a, 0x60, 0xff, 0xe9, 0x9a, 0x62, 0xff, 0xe1, 0x91, 0x5a, 0xff, 0xd9, 0x89, 0x52, 0xff, 0xd8, 0x88, 0x52, 0xff, 0xd8, 0x8a, 0x54, 0xff, 0xd9, 0x8b, 0x54, 0xff, 0xd9, 0x8d, 0x55, 0xff, 0xda, 0x90, 0x57, 0xff, 0xd7, 0x8f, 0x56, 0xff, 0xd3, 0x8c, 0x54, 0xff, 0xcb, 0x88, 0x52, 0xff, 0xc1, 0x81, 0x4d, 0xff, 0xbe, 0x7e, 0x48, 0xff, 0xb9, 0x78, 0x43, 0xff, 0xa8, 0x66, 0x38, 0xff, 0x9c, 0x5c, 0x32, 0xff, 0x9d, 0x5c, 0x32, 0xff, 0xa0, 0x5e, 0x33, 0xff, 0xa1, 0x60, 0x34, 0xff, 0xa0, 0x60, 0x33, 0xff, 0xa2, 0x60, 0x34, 0xff, 0xa2, 0x60, 0x33, 0xff, 0xa1, 0x60, 0x33, 0xff, 0xa1, 0x61, 0x34, 0xff, 0xa4, 0x64, 0x36, 0xff, 0xa4, 0x65, 0x36, 0xff, 0xa3, 0x63, 0x35, 0xff, 0x9e, 0x5f, 0x33, 0xff, 0x9b, 0x5a, 0x32, 0xff, 0x9a, 0x5a, 0x33, 0xff, 0x98, 0x59, 0x31, 0xff, 0x96, 0x57, 0x2f, 0xff, 0x97, 0x55, 0x2f, 0xff, 0x97, 0x54, 0x2f, 0xff, 0x94, 0x53, 0x2f, 0xff, 0x92, 0x53, 0x2e, 0xff, 0x92, 0x52, 0x2d, 0xff, 0x92, 0x50, 0x2c, 0xff, 0x8f, 0x4e, 0x2c, 0xff, 0x8d, 0x4d, 0x2b, 0xff, 0x8c, 0x4c, 0x29, 0xff, 0x8a, 0x4c, 0x2a, 0xff, 0x8a, 0x4b, 0x29, 0xff, 0x8b, 0x4b, 0x29, 0xff, 0x8a, 0x4b, 0x28, 0xff, 0x8a, 0x4b, 0x28, 0xff, 0x8a, 0x4a, 0x29, 0xff, 0x89, 0x49, 0x29, 0xff, 0x8a, 0x4a, 0x29, 0xff, 0x8a, 0x4a, 0x2a, 0xff, 0x8c, 0x4c, 0x2b, 0xff, 0x8d, 0x4e, 0x2c, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x8f, 0x51, 0x2d, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x93, 0x55, 0x2f, 0xff, 0x97, 0x57, 0x31, 0xff, 0x99, 0x59, 0x32, 0xff, 0x9c, 0x5b, 0x34, 0xff, 0x9f, 0x5f, 0x36, 0xff, 0xa2, 0x63, 0x38, 0xff, 0xac, 0x6c, 0x3f, 0xff, 0x99, 0x5e, 0x37, 0xff, 0x75, 0x3c, 0x1a, 0xff, 0x6e, 0x36, 0x11, 0xff, 0x72, 0x38, 0x12, 0xff, 0x75, 0x39, 0x13, 0xff, 0x78, 0x3b, 0x17, 0xff, 0x7a, 0x3e, 0x17, 0xff, 0x7d, 0x3f, 0x1b, 0xff, 0x81, 0x41, 0x1d, 0xff, 0x83, 0x44, 0x20, 0xff, 0x86, 0x47, 0x22, 0xff, 0x89, 0x4a, 0x25, 0xff, 0x8a, 0x49, 0x25, 0xff, 0x97, 0x57, 0x30, 0xff, 0xa8, 0x6a, 0x3d, 0xff, 0xa6, 0x68, 0x3c, 0xff, 0xa3, 0x66, 0x3a, 0xff, 0xa1, 0x64, 0x38, 0xff, 0x9f, 0x62, 0x38, 0xff, 0x9e, 0x60, 0x36, 0xff, 0x9e, 0x60, 0x34, 0xff, 0x9e, 0x5e, 0x34, 0xff, 0x9e, 0x5e, 0x34, 0xff, 0xa0, 0x60, 0x35, 0xff, 0xa1, 0x60, 0x34, 0xff, 0xa2, 0x62, 0x35, 0xff, 0x9f, 0x5e, 0x33, 0xff, 0x9b, 0x5c, 0x30, 0xff, 0x9b, 0x5b, 0x31, 0xff, 0x9a, 0x5a, 0x2f, 0xff, 0x99, 0x58, 0x2f, 0xff, 0x9a, 0x58, 0x2f, 0xff, 0x99, 0x57, 0x2e, 0xff, 0x96, 0x55, 0x2c, 0xff, 0x95, 0x54, 0x2d, 0xff, 0x95, 0x55, 0x2c, 0xff, 0x95, 0x55, 0x2c, 0xff, 0x95, 0x54, 0x2c, 0xff, 0x98, 0x56, 0x2d, 0xff, 0x94, 0x54, 0x2c, 0xff, 0x95, 0x55, 0x2c, 0xff, 0x96, 0x55, 0x2c, 0xff, 0x95, 0x55, 0x2c, 0xff, 0x95, 0x55, 0x2c, 0xff, 0x97, 0x55, 0x2c, 0xff, 0x96, 0x56, 0x2c, 0xff, 0x90, 0x50, 0x29, 0xff, 0x96, 0x57, 0x2f, 0xff, 0x9b, 0x5c, 0x31, 0xff, 0x9e, 0x5e, 0x32, 0xff, 0x9f, 0x61, 0x32, 0xff, 0xa0, 0x61, 0x33, 0xff, 0xa1, 0x62, 0x34, 0xff, 0xa1, 0x62, 0x35, 0xff, 0xa1, 0x62, 0x34, 0xff, 0xa0, 0x61, 0x34, 0xff, 0x9e, 0x60, 0x33, 0xff, 0x9d, 0x5d, 0x32, 0xff, 0x9c, 0x5c, 0x30, 0xff, 0x9b, 0x5b, 0x2f, 0xff, 0x9a, 0x57, 0x2f, 0xff, 0x99, 0x58, 0x2e, 0xff, 0x98, 0x57, 0x2e, 0xff, 0x98, 0x57, 0x2e, 0xff, 0x99, 0x58, 0x2e, 0xff, 0x98, 0x57, 0x2e, 0xff, 0x99, 0x58, 0x2e, 0xff, 0x9b, 0x5a, 0x2f, 0xff, 0x9f, 0x5e, 0x31, 0xff, 0xa2, 0x61, 0x33, 0xff, 0xa2, 0x61, 0x33, 0xff, + 0xa0, 0x5f, 0x32, 0xff, 0xa3, 0x62, 0x33, 0xff, 0xa6, 0x65, 0x35, 0xff, 0xa8, 0x68, 0x37, 0xff, 0x9d, 0x5a, 0x31, 0xff, 0x9b, 0x5a, 0x30, 0xff, 0x98, 0x58, 0x2f, 0xff, 0x99, 0x57, 0x2f, 0xff, 0x99, 0x59, 0x2f, 0xff, 0x9a, 0x59, 0x2f, 0xff, 0x9b, 0x5a, 0x30, 0xff, 0x9b, 0x5a, 0x30, 0xff, 0x99, 0x5a, 0x2f, 0xff, 0x94, 0x52, 0x2c, 0xff, 0x98, 0x58, 0x2f, 0xff, 0x96, 0x52, 0x2d, 0xff, 0x95, 0x52, 0x2c, 0xff, 0x99, 0x56, 0x2e, 0xff, 0x9d, 0x5b, 0x2f, 0xff, 0x9e, 0x5a, 0x2f, 0xff, 0x9e, 0x5a, 0x30, 0xff, 0xa0, 0x5d, 0x30, 0xff, 0xa1, 0x5f, 0x32, 0xff, 0xa1, 0x5f, 0x33, 0xff, 0xa0, 0x5d, 0x32, 0xff, 0x9e, 0x5c, 0x32, 0xff, 0x9e, 0x5d, 0x33, 0xff, 0x9e, 0x5b, 0x33, 0xff, 0x9b, 0x5b, 0x32, 0xff, 0x96, 0x56, 0x30, 0xff, 0x90, 0x4f, 0x2c, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x90, 0x4f, 0x2c, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x96, 0x56, 0x2f, 0xff, 0x97, 0x57, 0x30, 0xff, 0x95, 0x56, 0x30, 0xff, 0x95, 0x56, 0x30, 0xff, 0x95, 0x56, 0x31, 0xff, 0x97, 0x58, 0x32, 0xff, 0x96, 0x57, 0x32, 0xff, 0x80, 0x44, 0x27, 0xff, 0x6c, 0x31, 0x10, 0xff, 0x6f, 0x35, 0x12, 0xff, 0x6e, 0x35, 0x12, 0xff, 0x6c, 0x33, 0x12, 0xff, 0x6a, 0x32, 0x12, 0xff, 0x69, 0x30, 0x12, 0xff, 0x69, 0x31, 0x12, 0xff, 0x67, 0x31, 0x12, 0xff, 0x67, 0x31, 0x12, 0xff, 0x67, 0x2d, 0x12, 0xff, 0x65, 0x2d, 0x12, 0xff, 0x63, 0x2c, 0x12, 0xff, 0x63, 0x2c, 0x12, 0xff, 0x63, 0x2c, 0x12, 0xff, 0x63, 0x2c, 0x12, 0xff, 0x64, 0x2d, 0x12, 0xff, 0x67, 0x30, 0x12, 0xff, 0x69, 0x31, 0x12, 0xff, 0x6a, 0x32, 0x12, 0xff, 0x6b, 0x32, 0x12, 0xff, 0x6f, 0x33, 0x12, 0xff, 0x72, 0x37, 0x12, 0xff, 0x74, 0x39, 0x13, 0xff, 0x79, 0x3c, 0x16, 0xff, 0x7b, 0x3d, 0x18, 0xff, 0x7f, 0x3f, 0x19, 0xff, 0x81, 0x42, 0x1c, 0xff, 0x85, 0x44, 0x1e, 0xff, 0x8b, 0x49, 0x23, 0xff, 0x92, 0x50, 0x2d, 0xff, 0x94, 0x52, 0x2c, 0xff, 0x97, 0x56, 0x2d, 0xff, 0x9b, 0x57, 0x2e, 0xff, 0x9b, 0x58, 0x2e, 0xff, 0xa6, 0x62, 0x35, 0xff, 0xbf, 0x7c, 0x49, 0xff, 0xc4, 0x82, 0x4c, 0xff, 0xc9, 0x8a, 0x54, 0xff, 0xd0, 0x93, 0x5e, 0xff, 0xd7, 0x97, 0x66, 0xff, 0xdf, 0x9c, 0x6a, 0xff, 0xe8, 0xa0, 0x6b, 0xff, 0xeb, 0xa1, 0x69, 0xff, 0xeb, 0xa2, 0x67, 0xff, 0xeb, 0x9e, 0x63, 0xff, 0xec, 0x99, 0x5f, 0xff, 0xe8, 0x92, 0x5b, 0xff, 0xe1, 0x8b, 0x54, 0xff, 0xe3, 0x8c, 0x53, 0xff, 0xe9, 0x90, 0x56, 0xff, 0xeb, 0x94, 0x5b, 0xff, 0xeb, 0x94, 0x5d, 0xff, 0xeb, 0x98, 0x60, 0xff, 0xeb, 0x9e, 0x62, 0xff, 0xeb, 0x9f, 0x62, 0xff, 0xea, 0x9f, 0x62, 0xff, 0xeb, 0x9e, 0x63, 0xff, 0xeb, 0x9a, 0x63, 0xff, 0xea, 0x95, 0x5d, 0xff, 0xe7, 0x92, 0x59, 0xff, 0xe7, 0x90, 0x5a, 0xff, 0xe6, 0x90, 0x59, 0xff, 0xe0, 0x91, 0x57, 0xff, 0xe0, 0x91, 0x58, 0xff, 0xe3, 0x91, 0x58, 0xff, 0xe0, 0x91, 0x57, 0xff, 0xdd, 0x90, 0x57, 0xff, 0xd3, 0x8c, 0x54, 0xff, 0xc6, 0x85, 0x4e, 0xff, 0xc3, 0x83, 0x4c, 0xff, 0xb7, 0x76, 0x42, 0xff, 0xa5, 0x65, 0x37, 0xff, 0xa1, 0x61, 0x35, 0xff, 0x9f, 0x5f, 0x33, 0xff, 0xa2, 0x61, 0x35, 0xff, 0xa4, 0x62, 0x35, 0xff, 0xa3, 0x61, 0x34, 0xff, 0xa3, 0x62, 0x35, 0xff, 0xa3, 0x61, 0x34, 0xff, 0xa4, 0x63, 0x34, 0xff, 0xa6, 0x64, 0x36, 0xff, 0xa7, 0x68, 0x38, 0xff, 0xa7, 0x68, 0x38, 0xff, 0x9d, 0x5d, 0x32, 0xff, 0x99, 0x58, 0x30, 0xff, 0x9b, 0x5a, 0x33, 0xff, 0x9b, 0x5a, 0x33, 0xff, 0x9a, 0x59, 0x31, 0xff, 0x98, 0x58, 0x30, 0xff, 0x99, 0x5a, 0x30, 0xff, 0x99, 0x58, 0x2f, 0xff, 0x97, 0x56, 0x2f, 0xff, 0x97, 0x56, 0x2f, 0xff, 0x96, 0x54, 0x2e, 0xff, 0x95, 0x54, 0x2f, 0xff, 0x93, 0x52, 0x2d, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x8d, 0x4e, 0x2b, 0xff, 0x8d, 0x4d, 0x2b, 0xff, 0x8e, 0x4e, 0x2c, 0xff, 0x8d, 0x4d, 0x2b, 0xff, 0x8d, 0x4e, 0x2a, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8c, 0x4c, 0x2b, 0xff, 0x8b, 0x4b, 0x2a, 0xff, 0x8a, 0x4a, 0x2a, 0xff, 0x8a, 0x4d, 0x2b, 0xff, 0x8c, 0x4d, 0x2c, 0xff, 0x8e, 0x4e, 0x2d, 0xff, 0x91, 0x50, 0x2e, 0xff, 0x94, 0x52, 0x2f, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x94, 0x55, 0x30, 0xff, 0x97, 0x57, 0x32, 0xff, 0x9a, 0x59, 0x34, 0xff, 0x9c, 0x5b, 0x34, 0xff, 0xa0, 0x5f, 0x36, 0xff, 0xa4, 0x65, 0x3a, 0xff, 0xa7, 0x69, 0x3e, 0xff, 0x82, 0x46, 0x25, 0xff, 0x6e, 0x35, 0x14, 0xff, 0x6e, 0x35, 0x12, 0xff, 0x72, 0x37, 0x12, 0xff, 0x73, 0x38, 0x12, 0xff, 0x77, 0x3b, 0x17, 0xff, 0x7a, 0x3e, 0x18, 0xff, 0x7d, 0x3e, 0x1a, 0xff, 0x81, 0x43, 0x1d, 0xff, 0x84, 0x46, 0x20, 0xff, 0x85, 0x46, 0x23, 0xff, 0x88, 0x48, 0x26, 0xff, 0x88, 0x4a, 0x28, 0xff, 0x9a, 0x5a, 0x31, 0xff, 0xaa, 0x6c, 0x3e, 0xff, 0xa8, 0x6b, 0x3e, 0xff, 0xa5, 0x66, 0x3c, 0xff, 0xa1, 0x66, 0x3b, 0xff, 0xa1, 0x65, 0x39, 0xff, 0x9f, 0x61, 0x37, 0xff, 0x9e, 0x61, 0x37, 0xff, 0x9f, 0x60, 0x35, 0xff, 0x9f, 0x5f, 0x34, 0xff, 0xa1, 0x5e, 0x34, 0xff, 0xa1, 0x5f, 0x34, 0xff, 0xa2, 0x60, 0x34, 0xff, 0x9d, 0x5d, 0x31, 0xff, 0x9b, 0x5a, 0x30, 0xff, 0x9b, 0x5a, 0x30, 0xff, 0x9a, 0x5a, 0x2f, 0xff, 0x9a, 0x58, 0x2f, 0xff, 0x9b, 0x59, 0x2f, 0xff, 0x9b, 0x59, 0x2e, 0xff, 0x98, 0x57, 0x2d, 0xff, 0x96, 0x56, 0x2c, 0xff, 0x95, 0x56, 0x2d, 0xff, 0x96, 0x55, 0x2c, 0xff, 0x95, 0x55, 0x2c, 0xff, 0x98, 0x55, 0x2c, 0xff, 0x95, 0x55, 0x2c, 0xff, 0x96, 0x56, 0x2c, 0xff, 0x95, 0x53, 0x2c, 0xff, 0x97, 0x55, 0x2c, 0xff, 0x98, 0x57, 0x2c, 0xff, 0x97, 0x56, 0x2d, 0xff, 0x97, 0x55, 0x2c, 0xff, 0x91, 0x52, 0x28, 0xff, 0x97, 0x57, 0x2c, 0xff, 0x9b, 0x5c, 0x30, 0xff, 0x9e, 0x5c, 0x32, 0xff, 0xa1, 0x60, 0x33, 0xff, 0x9f, 0x5f, 0x32, 0xff, 0x9f, 0x5f, 0x32, 0xff, 0xa3, 0x63, 0x34, 0xff, 0xa1, 0x61, 0x34, 0xff, 0xa1, 0x61, 0x34, 0xff, 0xa0, 0x60, 0x33, 0xff, 0x9f, 0x60, 0x32, 0xff, 0x9e, 0x5d, 0x31, 0xff, 0x9b, 0x5c, 0x30, 0xff, 0x9b, 0x5b, 0x2f, 0xff, 0x99, 0x5a, 0x2e, 0xff, 0x99, 0x58, 0x2e, 0xff, 0x9b, 0x58, 0x2e, 0xff, 0x9b, 0x5a, 0x2e, 0xff, 0x9a, 0x59, 0x2e, 0xff, 0x9a, 0x5a, 0x2f, 0xff, 0x9b, 0x5b, 0x2f, 0xff, 0x9e, 0x5b, 0x2f, 0xff, 0xa0, 0x5d, 0x32, 0xff, 0xa1, 0x5f, 0x32, 0xff, + 0xa2, 0x5f, 0x32, 0xff, 0xa4, 0x61, 0x32, 0xff, 0xa7, 0x65, 0x34, 0xff, 0xa9, 0x65, 0x36, 0xff, 0xa0, 0x5e, 0x32, 0xff, 0x9d, 0x5b, 0x31, 0xff, 0x9b, 0x5a, 0x30, 0xff, 0x98, 0x58, 0x2e, 0xff, 0x99, 0x59, 0x2f, 0xff, 0x98, 0x59, 0x2f, 0xff, 0x9b, 0x58, 0x30, 0xff, 0x99, 0x5a, 0x2f, 0xff, 0x98, 0x57, 0x2e, 0xff, 0x99, 0x57, 0x2c, 0xff, 0x9a, 0x5a, 0x2f, 0xff, 0x97, 0x55, 0x2d, 0xff, 0x97, 0x55, 0x2d, 0xff, 0x98, 0x55, 0x2d, 0xff, 0x9b, 0x5a, 0x2e, 0xff, 0x9c, 0x5a, 0x2e, 0xff, 0x9d, 0x5c, 0x2e, 0xff, 0xa0, 0x5d, 0x30, 0xff, 0x9f, 0x5c, 0x31, 0xff, 0xa0, 0x5d, 0x32, 0xff, 0x9c, 0x5a, 0x30, 0xff, 0x9a, 0x5a, 0x30, 0xff, 0x98, 0x58, 0x2f, 0xff, 0x97, 0x58, 0x31, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x91, 0x51, 0x2e, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x8e, 0x4e, 0x2b, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x97, 0x58, 0x31, 0xff, 0x95, 0x56, 0x30, 0xff, 0x96, 0x57, 0x31, 0xff, 0x96, 0x57, 0x31, 0xff, 0x96, 0x57, 0x31, 0xff, 0x95, 0x57, 0x31, 0xff, 0x82, 0x45, 0x27, 0xff, 0x70, 0x35, 0x10, 0xff, 0x73, 0x38, 0x12, 0xff, 0x74, 0x37, 0x12, 0xff, 0x73, 0x38, 0x12, 0xff, 0x71, 0x36, 0x12, 0xff, 0x70, 0x35, 0x12, 0xff, 0x70, 0x35, 0x12, 0xff, 0x6e, 0x35, 0x12, 0xff, 0x6c, 0x33, 0x12, 0xff, 0x6b, 0x32, 0x12, 0xff, 0x6a, 0x32, 0x12, 0xff, 0x68, 0x32, 0x12, 0xff, 0x68, 0x32, 0x12, 0xff, 0x68, 0x31, 0x12, 0xff, 0x68, 0x31, 0x12, 0xff, 0x68, 0x32, 0x12, 0xff, 0x68, 0x31, 0x12, 0xff, 0x6b, 0x31, 0x12, 0xff, 0x6c, 0x34, 0x12, 0xff, 0x6f, 0x36, 0x12, 0xff, 0x73, 0x37, 0x12, 0xff, 0x75, 0x38, 0x13, 0xff, 0x79, 0x3b, 0x13, 0xff, 0x7a, 0x3c, 0x16, 0xff, 0x7c, 0x3f, 0x18, 0xff, 0x80, 0x40, 0x1a, 0xff, 0x83, 0x43, 0x1d, 0xff, 0x85, 0x44, 0x1f, 0xff, 0x86, 0x45, 0x21, 0xff, 0x8e, 0x4c, 0x27, 0xff, 0x95, 0x52, 0x2c, 0xff, 0x97, 0x55, 0x2d, 0xff, 0x9a, 0x57, 0x2e, 0xff, 0x9d, 0x5b, 0x30, 0xff, 0xa3, 0x61, 0x33, 0xff, 0xb4, 0x71, 0x3f, 0xff, 0xc9, 0x87, 0x50, 0xff, 0xcb, 0x8b, 0x53, 0xff, 0xd2, 0x92, 0x5c, 0xff, 0xd9, 0x97, 0x66, 0xff, 0xdd, 0x9a, 0x6c, 0xff, 0xe5, 0x9f, 0x6f, 0xff, 0xea, 0xa2, 0x6f, 0xff, 0xec, 0xa2, 0x6b, 0xff, 0xec, 0x9f, 0x67, 0xff, 0xeb, 0x9a, 0x61, 0xff, 0xea, 0x92, 0x5a, 0xff, 0xe8, 0x90, 0x57, 0xff, 0xe7, 0x8f, 0x53, 0xff, 0xe8, 0x8f, 0x54, 0xff, 0xe9, 0x92, 0x58, 0xff, 0xec, 0x98, 0x5f, 0xff, 0xeb, 0x9b, 0x61, 0xff, 0xeb, 0x9f, 0x63, 0xff, 0xeb, 0xa3, 0x66, 0xff, 0xec, 0xa4, 0x68, 0xff, 0xea, 0xa1, 0x67, 0xff, 0xea, 0x9e, 0x64, 0xff, 0xec, 0x9d, 0x64, 0xff, 0xec, 0x9b, 0x63, 0xff, 0xeb, 0x98, 0x61, 0xff, 0xeb, 0x97, 0x5f, 0xff, 0xea, 0x95, 0x5d, 0xff, 0xea, 0x95, 0x5d, 0xff, 0xe8, 0x94, 0x5c, 0xff, 0xe3, 0x95, 0x5b, 0xff, 0xe4, 0x95, 0x5a, 0xff, 0xde, 0x90, 0x56, 0xff, 0xcf, 0x89, 0x52, 0xff, 0xc4, 0x83, 0x4d, 0xff, 0xb6, 0x77, 0x42, 0xff, 0xac, 0x6b, 0x3a, 0xff, 0xa6, 0x65, 0x37, 0xff, 0xa2, 0x62, 0x35, 0xff, 0xa3, 0x62, 0x35, 0xff, 0xa6, 0x64, 0x37, 0xff, 0xa7, 0x65, 0x38, 0xff, 0xa6, 0x65, 0x36, 0xff, 0xa7, 0x66, 0x36, 0xff, 0xa9, 0x67, 0x36, 0xff, 0xaa, 0x69, 0x38, 0xff, 0xa5, 0x65, 0x37, 0xff, 0x9d, 0x5f, 0x34, 0xff, 0x9b, 0x5b, 0x32, 0xff, 0x9c, 0x5c, 0x33, 0xff, 0x9e, 0x5d, 0x34, 0xff, 0x9c, 0x5b, 0x34, 0xff, 0x9b, 0x5a, 0x32, 0xff, 0x9b, 0x5b, 0x31, 0xff, 0x9b, 0x5b, 0x32, 0xff, 0x9a, 0x5a, 0x31, 0xff, 0x9a, 0x5a, 0x30, 0xff, 0x9a, 0x5a, 0x30, 0xff, 0x9a, 0x59, 0x2f, 0xff, 0x9a, 0x59, 0x2f, 0xff, 0x95, 0x55, 0x2f, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x90, 0x4e, 0x2b, 0xff, 0x90, 0x4f, 0x2c, 0xff, 0x8f, 0x4f, 0x2b, 0xff, 0x8e, 0x4e, 0x2b, 0xff, 0x8c, 0x4c, 0x2b, 0xff, 0x8c, 0x4c, 0x2b, 0xff, 0x8e, 0x4e, 0x2c, 0xff, 0x8f, 0x4f, 0x2d, 0xff, 0x91, 0x51, 0x2e, 0xff, 0x93, 0x52, 0x2f, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x96, 0x56, 0x31, 0xff, 0x99, 0x59, 0x32, 0xff, 0x9b, 0x5a, 0x34, 0xff, 0x9d, 0x5c, 0x35, 0xff, 0xa0, 0x5f, 0x36, 0xff, 0xa6, 0x67, 0x3c, 0xff, 0x9e, 0x62, 0x3b, 0xff, 0x72, 0x3a, 0x1b, 0xff, 0x6b, 0x34, 0x11, 0xff, 0x6f, 0x36, 0x12, 0xff, 0x72, 0x37, 0x12, 0xff, 0x74, 0x39, 0x13, 0xff, 0x78, 0x3a, 0x15, 0xff, 0x7a, 0x3d, 0x17, 0xff, 0x7d, 0x3e, 0x18, 0xff, 0x80, 0x41, 0x1d, 0xff, 0x82, 0x44, 0x20, 0xff, 0x84, 0x46, 0x23, 0xff, 0x87, 0x48, 0x27, 0xff, 0x88, 0x4a, 0x28, 0xff, 0x9b, 0x5b, 0x33, 0xff, 0xab, 0x6b, 0x40, 0xff, 0xa8, 0x6b, 0x40, 0xff, 0xa5, 0x69, 0x3f, 0xff, 0xa3, 0x67, 0x3e, 0xff, 0xa1, 0x65, 0x3c, 0xff, 0xa1, 0x64, 0x3b, 0xff, 0x9f, 0x62, 0x37, 0xff, 0x9e, 0x62, 0x37, 0xff, 0xa0, 0x61, 0x35, 0xff, 0xa0, 0x5f, 0x34, 0xff, 0xa1, 0x5f, 0x34, 0xff, 0xa0, 0x5f, 0x32, 0xff, 0x9c, 0x5b, 0x30, 0xff, 0x9b, 0x5a, 0x30, 0xff, 0x9b, 0x5b, 0x2e, 0xff, 0x9b, 0x5a, 0x2f, 0xff, 0x9a, 0x59, 0x2f, 0xff, 0x9c, 0x59, 0x2e, 0xff, 0x9b, 0x5a, 0x2e, 0xff, 0x9b, 0x59, 0x2e, 0xff, 0x98, 0x58, 0x2e, 0xff, 0x98, 0x59, 0x2e, 0xff, 0x98, 0x57, 0x2d, 0xff, 0x99, 0x57, 0x2d, 0xff, 0x99, 0x57, 0x2c, 0xff, 0x98, 0x55, 0x2c, 0xff, 0x97, 0x54, 0x2c, 0xff, 0x99, 0x57, 0x2c, 0xff, 0x99, 0x59, 0x2c, 0xff, 0x9a, 0x59, 0x2c, 0xff, 0x9a, 0x5a, 0x2c, 0xff, 0x9c, 0x5a, 0x2d, 0xff, 0x98, 0x59, 0x2b, 0xff, 0x98, 0x58, 0x2b, 0xff, 0x98, 0x57, 0x2b, 0xff, 0x99, 0x5a, 0x2d, 0xff, 0x9e, 0x5e, 0x32, 0xff, 0xa0, 0x60, 0x33, 0xff, 0xa1, 0x61, 0x32, 0xff, 0xa1, 0x62, 0x33, 0xff, 0xa1, 0x61, 0x34, 0xff, 0xa2, 0x62, 0x34, 0xff, 0xa1, 0x61, 0x34, 0xff, 0xa1, 0x60, 0x33, 0xff, 0x9f, 0x5d, 0x31, 0xff, 0x9e, 0x5d, 0x31, 0xff, 0x9d, 0x5d, 0x30, 0xff, 0x9c, 0x5b, 0x2f, 0xff, 0x9a, 0x5a, 0x2f, 0xff, 0x9b, 0x5a, 0x2e, 0xff, 0x9b, 0x5a, 0x2e, 0xff, 0x9d, 0x5b, 0x2f, 0xff, 0x9c, 0x5b, 0x2f, 0xff, 0x9e, 0x5c, 0x2f, 0xff, 0x9f, 0x5d, 0x2f, 0xff, 0xa0, 0x5e, 0x32, 0xff, 0xa2, 0x60, 0x32, 0xff, + 0xa3, 0x62, 0x33, 0xff, 0xa6, 0x63, 0x34, 0xff, 0xa8, 0x65, 0x36, 0xff, 0xa9, 0x66, 0x37, 0xff, 0xa7, 0x64, 0x36, 0xff, 0x9e, 0x5c, 0x31, 0xff, 0x9c, 0x5a, 0x30, 0xff, 0x9b, 0x5a, 0x30, 0xff, 0x99, 0x58, 0x2f, 0xff, 0x97, 0x57, 0x2e, 0xff, 0x99, 0x58, 0x2e, 0xff, 0x99, 0x59, 0x2e, 0xff, 0x98, 0x57, 0x2e, 0xff, 0x98, 0x56, 0x2e, 0xff, 0x9b, 0x59, 0x2e, 0xff, 0x9a, 0x57, 0x2e, 0xff, 0x9a, 0x57, 0x2e, 0xff, 0x97, 0x57, 0x2d, 0xff, 0x9d, 0x5b, 0x2f, 0xff, 0x9d, 0x5b, 0x2f, 0xff, 0x9e, 0x5b, 0x30, 0xff, 0xa0, 0x5c, 0x31, 0xff, 0x9f, 0x5c, 0x30, 0xff, 0xa0, 0x5c, 0x31, 0xff, 0x9a, 0x5a, 0x30, 0xff, 0x99, 0x59, 0x2e, 0xff, 0x95, 0x54, 0x2d, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x93, 0x52, 0x2e, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x92, 0x51, 0x2d, 0xff, 0x91, 0x50, 0x2c, 0xff, 0x8f, 0x4e, 0x2b, 0xff, 0x8f, 0x50, 0x2c, 0xff, 0x8f, 0x50, 0x2c, 0xff, 0x8f, 0x4e, 0x2c, 0xff, 0x91, 0x52, 0x2c, 0xff, 0x96, 0x57, 0x30, 0xff, 0x96, 0x57, 0x30, 0xff, 0x95, 0x56, 0x30, 0xff, 0x96, 0x57, 0x31, 0xff, 0x96, 0x57, 0x31, 0xff, 0x95, 0x57, 0x31, 0xff, 0x84, 0x45, 0x27, 0xff, 0x75, 0x38, 0x11, 0xff, 0x77, 0x3a, 0x14, 0xff, 0x77, 0x39, 0x13, 0xff, 0x77, 0x3b, 0x12, 0xff, 0x77, 0x39, 0x14, 0xff, 0x75, 0x39, 0x13, 0xff, 0x74, 0x39, 0x13, 0xff, 0x73, 0x38, 0x13, 0xff, 0x72, 0x38, 0x13, 0xff, 0x71, 0x36, 0x12, 0xff, 0x70, 0x37, 0x12, 0xff, 0x6e, 0x35, 0x12, 0xff, 0x6b, 0x33, 0x12, 0xff, 0x69, 0x31, 0x12, 0xff, 0x6a, 0x32, 0x12, 0xff, 0x6c, 0x32, 0x12, 0xff, 0x6c, 0x33, 0x12, 0xff, 0x6c, 0x34, 0x12, 0xff, 0x6f, 0x34, 0x12, 0xff, 0x71, 0x35, 0x12, 0xff, 0x73, 0x37, 0x12, 0xff, 0x77, 0x3b, 0x15, 0xff, 0x7a, 0x3c, 0x16, 0xff, 0x7c, 0x3d, 0x17, 0xff, 0x7f, 0x40, 0x18, 0xff, 0x83, 0x41, 0x1e, 0xff, 0x83, 0x42, 0x1f, 0xff, 0x83, 0x43, 0x1f, 0xff, 0x86, 0x45, 0x21, 0xff, 0x8c, 0x49, 0x25, 0xff, 0x94, 0x52, 0x2c, 0xff, 0x98, 0x55, 0x2e, 0xff, 0x99, 0x56, 0x2d, 0xff, 0x9d, 0x5a, 0x2f, 0xff, 0xa2, 0x5e, 0x32, 0xff, 0xaa, 0x67, 0x38, 0xff, 0xc1, 0x7e, 0x49, 0xff, 0xd0, 0x8b, 0x53, 0xff, 0xd5, 0x91, 0x59, 0xff, 0xdc, 0x99, 0x63, 0xff, 0xe1, 0x9b, 0x6c, 0xff, 0xe7, 0x9e, 0x6f, 0xff, 0xea, 0xa1, 0x70, 0xff, 0xec, 0xa2, 0x6f, 0xff, 0xec, 0xa1, 0x6a, 0xff, 0xeb, 0x9a, 0x61, 0xff, 0xec, 0x95, 0x5c, 0xff, 0xec, 0x92, 0x5a, 0xff, 0xe9, 0x8f, 0x55, 0xff, 0xe6, 0x8d, 0x53, 0xff, 0xe9, 0x91, 0x58, 0xff, 0xeb, 0x99, 0x5e, 0xff, 0xeb, 0x9e, 0x62, 0xff, 0xec, 0xa2, 0x66, 0xff, 0xec, 0xa4, 0x68, 0xff, 0xec, 0xa6, 0x69, 0xff, 0xec, 0xa4, 0x68, 0xff, 0xe9, 0xa3, 0x6a, 0xff, 0xe9, 0xa7, 0x6d, 0xff, 0xec, 0xa8, 0x6d, 0xff, 0xec, 0xa3, 0x69, 0xff, 0xeb, 0x9f, 0x66, 0xff, 0xec, 0x9d, 0x65, 0xff, 0xec, 0x9d, 0x64, 0xff, 0xea, 0x9b, 0x62, 0xff, 0xe7, 0x98, 0x5f, 0xff, 0xe9, 0x98, 0x5e, 0xff, 0xe9, 0x97, 0x5c, 0xff, 0xd8, 0x8e, 0x54, 0xff, 0xc5, 0x82, 0x4c, 0xff, 0xba, 0x79, 0x46, 0xff, 0xb0, 0x6f, 0x3f, 0xff, 0xaa, 0x68, 0x3a, 0xff, 0xa6, 0x65, 0x38, 0xff, 0xa4, 0x64, 0x36, 0xff, 0xa7, 0x66, 0x36, 0xff, 0xa9, 0x67, 0x38, 0xff, 0xa9, 0x66, 0x37, 0xff, 0xaa, 0x67, 0x37, 0xff, 0xa8, 0x66, 0x37, 0xff, 0xa1, 0x62, 0x34, 0xff, 0x9f, 0x5e, 0x34, 0xff, 0xa0, 0x61, 0x36, 0xff, 0x9f, 0x61, 0x35, 0xff, 0x9f, 0x5f, 0x34, 0xff, 0x9f, 0x5e, 0x34, 0xff, 0x9e, 0x5c, 0x33, 0xff, 0x9e, 0x5c, 0x34, 0xff, 0x9f, 0x5e, 0x34, 0xff, 0x9e, 0x5e, 0x33, 0xff, 0x9e, 0x5d, 0x33, 0xff, 0x9e, 0x5c, 0x32, 0xff, 0x9c, 0x5a, 0x31, 0xff, 0x9b, 0x5a, 0x31, 0xff, 0x9b, 0x5b, 0x31, 0xff, 0x99, 0x59, 0x31, 0xff, 0x96, 0x57, 0x30, 0xff, 0x95, 0x56, 0x2e, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x93, 0x51, 0x2d, 0xff, 0x93, 0x51, 0x2d, 0xff, 0x91, 0x50, 0x2c, 0xff, 0x8f, 0x4f, 0x2b, 0xff, 0x8f, 0x4e, 0x2b, 0xff, 0x8f, 0x4e, 0x2c, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x94, 0x55, 0x30, 0xff, 0x96, 0x57, 0x31, 0xff, 0x99, 0x59, 0x33, 0xff, 0x9c, 0x5c, 0x34, 0xff, 0x9e, 0x5e, 0x35, 0xff, 0xa2, 0x61, 0x37, 0xff, 0xab, 0x6f, 0x44, 0xff, 0x7a, 0x41, 0x1f, 0xff, 0x6a, 0x31, 0x10, 0xff, 0x6f, 0x36, 0x12, 0xff, 0x71, 0x37, 0x12, 0xff, 0x72, 0x36, 0x12, 0xff, 0x74, 0x37, 0x13, 0xff, 0x75, 0x3a, 0x14, 0xff, 0x78, 0x3c, 0x16, 0xff, 0x7b, 0x3d, 0x17, 0xff, 0x7f, 0x3f, 0x1c, 0xff, 0x82, 0x42, 0x1f, 0xff, 0x84, 0x45, 0x22, 0xff, 0x87, 0x48, 0x26, 0xff, 0x88, 0x4a, 0x29, 0xff, 0x9b, 0x5c, 0x34, 0xff, 0xac, 0x6d, 0x41, 0xff, 0xaa, 0x6e, 0x41, 0xff, 0xa6, 0x6b, 0x40, 0xff, 0xa6, 0x69, 0x40, 0xff, 0xa4, 0x66, 0x3f, 0xff, 0xa1, 0x64, 0x3e, 0xff, 0xa0, 0x64, 0x3b, 0xff, 0xa0, 0x63, 0x38, 0xff, 0xa0, 0x62, 0x37, 0xff, 0xa1, 0x62, 0x35, 0xff, 0xa3, 0x62, 0x34, 0xff, 0x9f, 0x5f, 0x32, 0xff, 0x9b, 0x5b, 0x2e, 0xff, 0x9a, 0x5a, 0x2e, 0xff, 0x9b, 0x5b, 0x2e, 0xff, 0x9d, 0x5a, 0x2e, 0xff, 0x9c, 0x5a, 0x2e, 0xff, 0x9c, 0x59, 0x2e, 0xff, 0x9c, 0x5a, 0x2e, 0xff, 0x9c, 0x5b, 0x2e, 0xff, 0x99, 0x5a, 0x2e, 0xff, 0x99, 0x59, 0x2e, 0xff, 0x99, 0x58, 0x2e, 0xff, 0x99, 0x57, 0x2e, 0xff, 0x9a, 0x59, 0x2c, 0xff, 0x99, 0x57, 0x2c, 0xff, 0x98, 0x58, 0x2c, 0xff, 0x9a, 0x58, 0x2c, 0xff, 0x9c, 0x5a, 0x2c, 0xff, 0x9e, 0x5b, 0x2d, 0xff, 0x9e, 0x5d, 0x2e, 0xff, 0x9c, 0x5a, 0x2d, 0xff, 0x97, 0x57, 0x2a, 0xff, 0x98, 0x57, 0x2b, 0xff, 0x99, 0x59, 0x2c, 0xff, 0x9a, 0x5a, 0x2c, 0xff, 0x9b, 0x5a, 0x2e, 0xff, 0x9b, 0x5c, 0x2f, 0xff, 0x9e, 0x5d, 0x32, 0xff, 0xa1, 0x60, 0x32, 0xff, 0xa1, 0x60, 0x33, 0xff, 0xa1, 0x60, 0x33, 0xff, 0xa2, 0x63, 0x34, 0xff, 0xa2, 0x60, 0x33, 0xff, 0xa0, 0x5f, 0x33, 0xff, 0xa0, 0x5d, 0x32, 0xff, 0x9e, 0x5d, 0x30, 0xff, 0x9d, 0x5b, 0x2f, 0xff, 0x9d, 0x5b, 0x2f, 0xff, 0x9c, 0x5b, 0x2f, 0xff, 0x9d, 0x5b, 0x2e, 0xff, 0x9e, 0x5b, 0x2f, 0xff, 0x9f, 0x5d, 0x30, 0xff, 0x9f, 0x5c, 0x31, 0xff, 0xa0, 0x5d, 0x31, 0xff, 0xa3, 0x60, 0x32, 0xff, 0xa3, 0x60, 0x33, 0xff, + 0xa5, 0x64, 0x34, 0xff, 0xa7, 0x65, 0x34, 0xff, 0xa9, 0x66, 0x37, 0xff, 0xaa, 0x68, 0x37, 0xff, 0xaa, 0x69, 0x37, 0xff, 0xa1, 0x61, 0x34, 0xff, 0x9d, 0x5c, 0x31, 0xff, 0x98, 0x58, 0x2e, 0xff, 0x97, 0x57, 0x2e, 0xff, 0x95, 0x54, 0x2e, 0xff, 0x97, 0x57, 0x2e, 0xff, 0x9a, 0x59, 0x2f, 0xff, 0x99, 0x57, 0x2e, 0xff, 0x99, 0x57, 0x2e, 0xff, 0x99, 0x57, 0x2e, 0xff, 0x9a, 0x58, 0x2e, 0xff, 0x9a, 0x59, 0x2e, 0xff, 0x9a, 0x58, 0x2e, 0xff, 0x9e, 0x5c, 0x30, 0xff, 0x9e, 0x5c, 0x30, 0xff, 0x9f, 0x5c, 0x31, 0xff, 0x9f, 0x5c, 0x31, 0xff, 0x9e, 0x5c, 0x31, 0xff, 0x9c, 0x5a, 0x31, 0xff, 0x95, 0x54, 0x2d, 0xff, 0x94, 0x54, 0x2c, 0xff, 0x92, 0x52, 0x2c, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x91, 0x51, 0x2e, 0xff, 0x91, 0x51, 0x2e, 0xff, 0x92, 0x51, 0x2d, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x8f, 0x4f, 0x2b, 0xff, 0x8f, 0x4f, 0x2b, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x8f, 0x4e, 0x2c, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x95, 0x54, 0x2f, 0xff, 0x97, 0x57, 0x31, 0xff, 0x96, 0x57, 0x31, 0xff, 0x95, 0x57, 0x31, 0xff, 0x97, 0x58, 0x32, 0xff, 0x98, 0x58, 0x33, 0xff, 0x85, 0x46, 0x25, 0xff, 0x7a, 0x3d, 0x14, 0xff, 0x7d, 0x3c, 0x17, 0xff, 0x7c, 0x3c, 0x17, 0xff, 0x7a, 0x3c, 0x14, 0xff, 0x7a, 0x3d, 0x15, 0xff, 0x7a, 0x3c, 0x17, 0xff, 0x79, 0x3c, 0x17, 0xff, 0x77, 0x3c, 0x16, 0xff, 0x77, 0x3c, 0x14, 0xff, 0x76, 0x3c, 0x16, 0xff, 0x76, 0x39, 0x14, 0xff, 0x73, 0x38, 0x13, 0xff, 0x71, 0x38, 0x12, 0xff, 0x70, 0x37, 0x12, 0xff, 0x6e, 0x35, 0x12, 0xff, 0x6f, 0x35, 0x12, 0xff, 0x6e, 0x34, 0x12, 0xff, 0x6f, 0x37, 0x12, 0xff, 0x72, 0x37, 0x12, 0xff, 0x74, 0x38, 0x12, 0xff, 0x76, 0x3a, 0x14, 0xff, 0x7a, 0x3b, 0x15, 0xff, 0x7d, 0x3f, 0x17, 0xff, 0x80, 0x3f, 0x19, 0xff, 0x82, 0x42, 0x1c, 0xff, 0x83, 0x43, 0x1e, 0xff, 0x82, 0x42, 0x1e, 0xff, 0x85, 0x45, 0x20, 0xff, 0x89, 0x47, 0x22, 0xff, 0x8b, 0x49, 0x25, 0xff, 0x91, 0x4d, 0x29, 0xff, 0x99, 0x57, 0x2e, 0xff, 0x9d, 0x5b, 0x2f, 0xff, 0x9f, 0x5c, 0x31, 0xff, 0xa4, 0x61, 0x33, 0xff, 0xa8, 0x66, 0x37, 0xff, 0xb7, 0x72, 0x40, 0xff, 0xd0, 0x87, 0x51, 0xff, 0xda, 0x90, 0x58, 0xff, 0xe0, 0x95, 0x5d, 0xff, 0xe4, 0x9c, 0x68, 0xff, 0xe9, 0x9e, 0x6f, 0xff, 0xec, 0xa1, 0x71, 0xff, 0xec, 0xa2, 0x6e, 0xff, 0xec, 0xa2, 0x6a, 0xff, 0xec, 0x9d, 0x63, 0xff, 0xec, 0x96, 0x5e, 0xff, 0xeb, 0x93, 0x59, 0xff, 0xe9, 0x8d, 0x55, 0xff, 0xe9, 0x8e, 0x55, 0xff, 0xeb, 0x94, 0x5a, 0xff, 0xec, 0x99, 0x60, 0xff, 0xec, 0x9f, 0x64, 0xff, 0xec, 0xa3, 0x68, 0xff, 0xec, 0xa7, 0x6a, 0xff, 0xec, 0xa9, 0x6c, 0xff, 0xec, 0xa8, 0x6c, 0xff, 0xec, 0xb0, 0x73, 0xff, 0xec, 0xbc, 0x7c, 0xff, 0xeb, 0xb6, 0x77, 0xff, 0xed, 0xae, 0x72, 0xff, 0xed, 0xaa, 0x71, 0xff, 0xec, 0xaa, 0x71, 0xff, 0xeb, 0xa7, 0x6e, 0xff, 0xec, 0xa1, 0x67, 0xff, 0xec, 0xa0, 0x65, 0xff, 0xeb, 0x9f, 0x61, 0xff, 0xec, 0x9c, 0x60, 0xff, 0xdd, 0x92, 0x58, 0xff, 0xcc, 0x87, 0x50, 0xff, 0xc4, 0x82, 0x4e, 0xff, 0xb6, 0x76, 0x46, 0xff, 0xae, 0x6d, 0x3f, 0xff, 0xab, 0x6a, 0x3b, 0xff, 0xa9, 0x69, 0x38, 0xff, 0xa9, 0x69, 0x38, 0xff, 0xac, 0x6c, 0x3b, 0xff, 0xae, 0x6d, 0x3b, 0xff, 0xa7, 0x66, 0x37, 0xff, 0xa0, 0x5f, 0x34, 0xff, 0xa0, 0x60, 0x35, 0xff, 0xa2, 0x63, 0x37, 0xff, 0xa3, 0x64, 0x38, 0xff, 0xa2, 0x64, 0x38, 0xff, 0xa1, 0x62, 0x37, 0xff, 0xa1, 0x62, 0x37, 0xff, 0xa1, 0x60, 0x36, 0xff, 0xa1, 0x60, 0x35, 0xff, 0xa2, 0x62, 0x37, 0xff, 0xa1, 0x61, 0x36, 0xff, 0xa0, 0x5f, 0x35, 0xff, 0x9f, 0x5e, 0x34, 0xff, 0x9e, 0x5d, 0x33, 0xff, 0x9f, 0x5c, 0x32, 0xff, 0x9f, 0x5c, 0x32, 0xff, 0x9c, 0x5b, 0x33, 0xff, 0x9a, 0x5a, 0x32, 0xff, 0x98, 0x59, 0x31, 0xff, 0x98, 0x58, 0x30, 0xff, 0x98, 0x58, 0x30, 0xff, 0x96, 0x54, 0x2f, 0xff, 0x93, 0x51, 0x2d, 0xff, 0x92, 0x51, 0x2d, 0xff, 0x92, 0x51, 0x2d, 0xff, 0x92, 0x51, 0x2c, 0xff, 0x92, 0x51, 0x2d, 0xff, 0x93, 0x52, 0x2e, 0xff, 0x94, 0x53, 0x2e, 0xff, 0x94, 0x53, 0x2f, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x95, 0x55, 0x30, 0xff, 0x96, 0x57, 0x31, 0xff, 0x98, 0x59, 0x32, 0xff, 0x99, 0x5b, 0x33, 0xff, 0x9d, 0x5d, 0x36, 0xff, 0xa0, 0x60, 0x36, 0xff, 0xaf, 0x71, 0x45, 0xff, 0x85, 0x4b, 0x27, 0xff, 0x6c, 0x34, 0x13, 0xff, 0x6c, 0x34, 0x12, 0xff, 0x6e, 0x36, 0x14, 0xff, 0x6e, 0x35, 0x13, 0xff, 0x71, 0x36, 0x12, 0xff, 0x73, 0x37, 0x12, 0xff, 0x75, 0x39, 0x13, 0xff, 0x79, 0x3b, 0x16, 0xff, 0x7b, 0x3d, 0x17, 0xff, 0x7f, 0x3e, 0x1b, 0xff, 0x80, 0x41, 0x1d, 0xff, 0x83, 0x45, 0x21, 0xff, 0x85, 0x48, 0x25, 0xff, 0x87, 0x47, 0x28, 0xff, 0x99, 0x59, 0x32, 0xff, 0xac, 0x6e, 0x43, 0xff, 0xad, 0x6f, 0x43, 0xff, 0xab, 0x6d, 0x40, 0xff, 0xa8, 0x6c, 0x41, 0xff, 0xa5, 0x69, 0x40, 0xff, 0xa4, 0x66, 0x3f, 0xff, 0xa0, 0x65, 0x3e, 0xff, 0xa0, 0x65, 0x3b, 0xff, 0xa0, 0x65, 0x37, 0xff, 0xa3, 0x62, 0x36, 0xff, 0xa3, 0x62, 0x35, 0xff, 0x9c, 0x5c, 0x2f, 0xff, 0x9b, 0x5b, 0x2e, 0xff, 0x9b, 0x59, 0x2e, 0xff, 0x9b, 0x5a, 0x2f, 0xff, 0x9c, 0x5b, 0x2e, 0xff, 0x9c, 0x5a, 0x2e, 0xff, 0x9b, 0x59, 0x2e, 0xff, 0x9c, 0x5a, 0x2f, 0xff, 0x9e, 0x5c, 0x2e, 0xff, 0x9a, 0x5b, 0x2f, 0xff, 0x9b, 0x5b, 0x2f, 0xff, 0x9a, 0x5a, 0x2e, 0xff, 0x9a, 0x5a, 0x2e, 0xff, 0x9b, 0x5c, 0x2e, 0xff, 0x9c, 0x5a, 0x2c, 0xff, 0x9e, 0x5c, 0x2d, 0xff, 0x9e, 0x5c, 0x2f, 0xff, 0x9f, 0x5c, 0x2e, 0xff, 0x9e, 0x5b, 0x2d, 0xff, 0xa0, 0x5e, 0x2e, 0xff, 0x9c, 0x5a, 0x2e, 0xff, 0x99, 0x5a, 0x2b, 0xff, 0x99, 0x59, 0x2b, 0xff, 0x9a, 0x5a, 0x2c, 0xff, 0x9a, 0x5a, 0x2b, 0xff, 0x9a, 0x5a, 0x2c, 0xff, 0x9a, 0x59, 0x2c, 0xff, 0x99, 0x59, 0x2c, 0xff, 0x9a, 0x5b, 0x2e, 0xff, 0x9f, 0x5f, 0x31, 0xff, 0xa1, 0x61, 0x33, 0xff, 0xa0, 0x5f, 0x31, 0xff, 0xa0, 0x60, 0x32, 0xff, 0x9f, 0x5f, 0x32, 0xff, 0xa1, 0x5f, 0x32, 0xff, 0xa0, 0x5f, 0x33, 0xff, 0x9f, 0x5d, 0x31, 0xff, 0x9e, 0x5c, 0x30, 0xff, 0x9e, 0x5c, 0x30, 0xff, 0x9e, 0x5c, 0x30, 0xff, 0x9e, 0x5d, 0x30, 0xff, 0x9f, 0x5d, 0x31, 0xff, 0xa0, 0x60, 0x31, 0xff, 0xa1, 0x5f, 0x32, 0xff, 0xa3, 0x60, 0x33, 0xff, 0xa5, 0x63, 0x34, 0xff, + 0xa5, 0x64, 0x34, 0xff, 0xa8, 0x65, 0x34, 0xff, 0xa8, 0x67, 0x37, 0xff, 0xab, 0x68, 0x38, 0xff, 0xa9, 0x68, 0x37, 0xff, 0xa0, 0x61, 0x35, 0xff, 0x9b, 0x59, 0x31, 0xff, 0x99, 0x57, 0x2e, 0xff, 0x97, 0x55, 0x2e, 0xff, 0x97, 0x57, 0x2e, 0xff, 0x96, 0x56, 0x2c, 0xff, 0x9b, 0x59, 0x2e, 0xff, 0x9c, 0x59, 0x2e, 0xff, 0x9a, 0x57, 0x2e, 0xff, 0x99, 0x59, 0x2e, 0xff, 0x9d, 0x59, 0x2e, 0xff, 0x9b, 0x5b, 0x2e, 0xff, 0x9b, 0x59, 0x2e, 0xff, 0x9e, 0x5c, 0x30, 0xff, 0x9e, 0x5f, 0x32, 0xff, 0x9e, 0x5e, 0x31, 0xff, 0x9b, 0x5b, 0x31, 0xff, 0x9a, 0x58, 0x2e, 0xff, 0x96, 0x54, 0x2d, 0xff, 0x93, 0x50, 0x2c, 0xff, 0x91, 0x51, 0x2b, 0xff, 0x92, 0x53, 0x2c, 0xff, 0x90, 0x52, 0x2c, 0xff, 0x90, 0x52, 0x2c, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x92, 0x52, 0x2b, 0xff, 0x91, 0x50, 0x2b, 0xff, 0x91, 0x50, 0x2b, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x91, 0x50, 0x2d, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x96, 0x57, 0x31, 0xff, 0x95, 0x57, 0x31, 0xff, 0x95, 0x57, 0x31, 0xff, 0x98, 0x58, 0x32, 0xff, 0x98, 0x59, 0x33, 0xff, 0x85, 0x45, 0x22, 0xff, 0x80, 0x41, 0x18, 0xff, 0x81, 0x41, 0x19, 0xff, 0x80, 0x40, 0x19, 0xff, 0x7e, 0x3f, 0x17, 0xff, 0x7e, 0x3e, 0x17, 0xff, 0x7d, 0x3f, 0x17, 0xff, 0x7c, 0x40, 0x19, 0xff, 0x7c, 0x3e, 0x19, 0xff, 0x7c, 0x3e, 0x19, 0xff, 0x7b, 0x3e, 0x1a, 0xff, 0x79, 0x3e, 0x18, 0xff, 0x78, 0x3b, 0x15, 0xff, 0x75, 0x39, 0x13, 0xff, 0x74, 0x39, 0x12, 0xff, 0x74, 0x39, 0x12, 0xff, 0x72, 0x37, 0x12, 0xff, 0x71, 0x38, 0x12, 0xff, 0x73, 0x36, 0x12, 0xff, 0x74, 0x39, 0x12, 0xff, 0x77, 0x3a, 0x14, 0xff, 0x7a, 0x3b, 0x15, 0xff, 0x7d, 0x3e, 0x17, 0xff, 0x7f, 0x40, 0x19, 0xff, 0x83, 0x42, 0x1d, 0xff, 0x84, 0x43, 0x1f, 0xff, 0x83, 0x42, 0x1f, 0xff, 0x85, 0x44, 0x1f, 0xff, 0x86, 0x46, 0x21, 0xff, 0x89, 0x48, 0x24, 0xff, 0x8e, 0x4b, 0x26, 0xff, 0x90, 0x4e, 0x2a, 0xff, 0x95, 0x52, 0x2d, 0xff, 0x9e, 0x5c, 0x32, 0xff, 0xa3, 0x60, 0x34, 0xff, 0xa5, 0x63, 0x35, 0xff, 0xa9, 0x66, 0x37, 0xff, 0xb0, 0x6e, 0x3b, 0xff, 0xc5, 0x80, 0x4a, 0xff, 0xdb, 0x8f, 0x56, 0xff, 0xe6, 0x95, 0x5a, 0xff, 0xe7, 0x9a, 0x60, 0xff, 0xeb, 0xa1, 0x67, 0xff, 0xec, 0xa2, 0x69, 0xff, 0xec, 0xa0, 0x68, 0xff, 0xec, 0x9d, 0x65, 0xff, 0xec, 0x9c, 0x61, 0xff, 0xec, 0x99, 0x5d, 0xff, 0xec, 0x94, 0x5a, 0xff, 0xec, 0x8f, 0x59, 0xff, 0xec, 0x92, 0x5a, 0xff, 0xec, 0x97, 0x5c, 0xff, 0xec, 0x9f, 0x61, 0xff, 0xec, 0xa1, 0x65, 0xff, 0xec, 0xa4, 0x69, 0xff, 0xeb, 0xab, 0x6c, 0xff, 0xeb, 0xae, 0x6f, 0xff, 0xe9, 0xb0, 0x72, 0xff, 0xe8, 0xc4, 0x7f, 0xff, 0xeb, 0xd7, 0x88, 0xff, 0xe9, 0xca, 0x84, 0xff, 0xeb, 0xc3, 0x81, 0xff, 0xed, 0xc0, 0x7e, 0xff, 0xec, 0xb9, 0x7a, 0xff, 0xeb, 0xaf, 0x74, 0xff, 0xea, 0xa8, 0x6f, 0xff, 0xeb, 0xa3, 0x6a, 0xff, 0xea, 0xa1, 0x67, 0xff, 0xe6, 0x9b, 0x62, 0xff, 0xe4, 0x95, 0x5c, 0xff, 0xe2, 0x93, 0x59, 0xff, 0xd2, 0x8a, 0x53, 0xff, 0xbe, 0x7d, 0x4a, 0xff, 0xb4, 0x75, 0x44, 0xff, 0xb1, 0x70, 0x40, 0xff, 0xad, 0x6c, 0x3d, 0xff, 0xac, 0x6b, 0x3a, 0xff, 0xae, 0x6d, 0x3c, 0xff, 0xa7, 0x67, 0x39, 0xff, 0xa0, 0x61, 0x34, 0xff, 0xa2, 0x62, 0x35, 0xff, 0xa3, 0x63, 0x37, 0xff, 0xa3, 0x64, 0x37, 0xff, 0xa4, 0x67, 0x3a, 0xff, 0xa5, 0x69, 0x3b, 0xff, 0xa6, 0x67, 0x39, 0xff, 0xa6, 0x65, 0x38, 0xff, 0xa6, 0x64, 0x37, 0xff, 0xa6, 0x66, 0x38, 0xff, 0xa7, 0x68, 0x39, 0xff, 0xa6, 0x67, 0x39, 0xff, 0xa4, 0x64, 0x37, 0xff, 0xa2, 0x62, 0x36, 0xff, 0xa1, 0x60, 0x35, 0xff, 0xa1, 0x60, 0x34, 0xff, 0xa1, 0x60, 0x34, 0xff, 0x9f, 0x5f, 0x34, 0xff, 0x9d, 0x5c, 0x34, 0xff, 0x9b, 0x5a, 0x33, 0xff, 0x9b, 0x5a, 0x33, 0xff, 0x97, 0x57, 0x30, 0xff, 0x95, 0x55, 0x2e, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x93, 0x52, 0x2e, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x94, 0x53, 0x2e, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x93, 0x55, 0x2f, 0xff, 0x94, 0x56, 0x30, 0xff, 0x96, 0x57, 0x31, 0xff, 0x98, 0x58, 0x32, 0xff, 0x99, 0x59, 0x32, 0xff, 0x9d, 0x5c, 0x36, 0xff, 0x9f, 0x5f, 0x37, 0xff, 0xa6, 0x66, 0x3b, 0xff, 0x96, 0x59, 0x36, 0xff, 0x73, 0x3a, 0x1a, 0xff, 0x6a, 0x31, 0x11, 0xff, 0x6c, 0x34, 0x12, 0xff, 0x6e, 0x35, 0x12, 0xff, 0x6f, 0x36, 0x12, 0xff, 0x72, 0x38, 0x13, 0xff, 0x74, 0x38, 0x13, 0xff, 0x76, 0x39, 0x14, 0xff, 0x79, 0x3a, 0x14, 0xff, 0x7c, 0x3c, 0x16, 0xff, 0x7d, 0x3d, 0x19, 0xff, 0x7f, 0x3f, 0x19, 0xff, 0x82, 0x42, 0x1e, 0xff, 0x85, 0x47, 0x22, 0xff, 0x85, 0x48, 0x25, 0xff, 0x95, 0x57, 0x2f, 0xff, 0xae, 0x6f, 0x43, 0xff, 0xae, 0x6f, 0x44, 0xff, 0xaa, 0x6f, 0x43, 0xff, 0xa9, 0x6d, 0x42, 0xff, 0xa6, 0x6a, 0x40, 0xff, 0xa4, 0x68, 0x41, 0xff, 0xa2, 0x67, 0x3f, 0xff, 0xa1, 0x67, 0x3c, 0xff, 0xa2, 0x66, 0x39, 0xff, 0xa3, 0x66, 0x38, 0xff, 0xa0, 0x60, 0x33, 0xff, 0x9c, 0x5c, 0x2f, 0xff, 0x9b, 0x5a, 0x2e, 0xff, 0x9b, 0x59, 0x2e, 0xff, 0x9c, 0x59, 0x2e, 0xff, 0x9b, 0x5a, 0x2e, 0xff, 0x9d, 0x5b, 0x2e, 0xff, 0x9b, 0x5b, 0x2e, 0xff, 0x9d, 0x5b, 0x2e, 0xff, 0x9e, 0x5c, 0x2e, 0xff, 0x9d, 0x5c, 0x2f, 0xff, 0x9d, 0x5c, 0x30, 0xff, 0x9d, 0x5c, 0x30, 0xff, 0x9d, 0x5e, 0x2f, 0xff, 0xa0, 0x5f, 0x2e, 0xff, 0x9f, 0x5f, 0x2e, 0xff, 0x9e, 0x5c, 0x2e, 0xff, 0x9f, 0x5b, 0x2c, 0xff, 0x9f, 0x5c, 0x2e, 0xff, 0x9f, 0x5d, 0x2e, 0xff, 0xa1, 0x5f, 0x30, 0xff, 0x9c, 0x5d, 0x2c, 0xff, 0x9b, 0x5b, 0x2b, 0xff, 0x9b, 0x5b, 0x2b, 0xff, 0x99, 0x5a, 0x2b, 0xff, 0x9a, 0x5a, 0x2b, 0xff, 0x99, 0x59, 0x2b, 0xff, 0x99, 0x59, 0x2b, 0xff, 0x98, 0x58, 0x2b, 0xff, 0x98, 0x58, 0x2b, 0xff, 0x97, 0x57, 0x2b, 0xff, 0x9a, 0x5a, 0x2d, 0xff, 0xa0, 0x5f, 0x32, 0xff, 0xa0, 0x5f, 0x32, 0xff, 0x9f, 0x5f, 0x32, 0xff, 0x9d, 0x5f, 0x31, 0xff, 0x9e, 0x5e, 0x31, 0xff, 0x9f, 0x5f, 0x32, 0xff, 0x9d, 0x5e, 0x32, 0xff, 0x9e, 0x5e, 0x31, 0xff, 0x9e, 0x5c, 0x31, 0xff, 0x9e, 0x5e, 0x31, 0xff, 0xa0, 0x5e, 0x31, 0xff, 0xa1, 0x5f, 0x33, 0xff, 0xa3, 0x60, 0x32, 0xff, 0xa5, 0x62, 0x34, 0xff, 0xa5, 0x64, 0x34, 0xff, + 0xa4, 0x63, 0x33, 0xff, 0xa5, 0x64, 0x34, 0xff, 0xa6, 0x63, 0x33, 0xff, 0xa4, 0x64, 0x34, 0xff, 0xa6, 0x64, 0x34, 0xff, 0xa0, 0x5f, 0x34, 0xff, 0x9c, 0x5b, 0x31, 0xff, 0x98, 0x58, 0x2e, 0xff, 0x98, 0x57, 0x2e, 0xff, 0x98, 0x56, 0x2e, 0xff, 0x97, 0x58, 0x2e, 0xff, 0x9a, 0x59, 0x2f, 0xff, 0x9d, 0x5b, 0x2e, 0xff, 0x9c, 0x5a, 0x2e, 0xff, 0x9c, 0x5b, 0x2e, 0xff, 0x9b, 0x5a, 0x30, 0xff, 0x9c, 0x5b, 0x2f, 0xff, 0x9a, 0x5a, 0x2e, 0xff, 0x9b, 0x5c, 0x30, 0xff, 0x9a, 0x59, 0x31, 0xff, 0x96, 0x56, 0x2e, 0xff, 0x96, 0x56, 0x2e, 0xff, 0x96, 0x54, 0x2e, 0xff, 0x95, 0x53, 0x2e, 0xff, 0x91, 0x50, 0x2b, 0xff, 0x91, 0x50, 0x2b, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x90, 0x4f, 0x2c, 0xff, 0x91, 0x50, 0x2b, 0xff, 0x92, 0x51, 0x2c, 0xff, 0x92, 0x51, 0x2c, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x91, 0x50, 0x2d, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x91, 0x51, 0x2e, 0xff, 0x97, 0x57, 0x31, 0xff, 0x97, 0x57, 0x32, 0xff, 0x97, 0x56, 0x31, 0xff, 0x98, 0x59, 0x33, 0xff, 0x98, 0x59, 0x32, 0xff, 0x86, 0x46, 0x1e, 0xff, 0x84, 0x45, 0x1e, 0xff, 0x85, 0x44, 0x1c, 0xff, 0x83, 0x43, 0x1d, 0xff, 0x83, 0x43, 0x1b, 0xff, 0x82, 0x43, 0x1c, 0xff, 0x82, 0x43, 0x1c, 0xff, 0x82, 0x43, 0x1d, 0xff, 0x80, 0x42, 0x1d, 0xff, 0x80, 0x42, 0x1d, 0xff, 0x7f, 0x41, 0x1d, 0xff, 0x7d, 0x40, 0x1c, 0xff, 0x7c, 0x3e, 0x18, 0xff, 0x7b, 0x3d, 0x17, 0xff, 0x79, 0x3b, 0x16, 0xff, 0x76, 0x3b, 0x15, 0xff, 0x74, 0x39, 0x15, 0xff, 0x75, 0x39, 0x15, 0xff, 0x74, 0x39, 0x13, 0xff, 0x77, 0x3a, 0x14, 0xff, 0x7a, 0x3c, 0x15, 0xff, 0x7d, 0x3d, 0x17, 0xff, 0x80, 0x40, 0x19, 0xff, 0x82, 0x42, 0x1b, 0xff, 0x83, 0x43, 0x1c, 0xff, 0x83, 0x43, 0x1d, 0xff, 0x86, 0x45, 0x21, 0xff, 0x89, 0x47, 0x22, 0xff, 0x8b, 0x48, 0x24, 0xff, 0x8d, 0x4b, 0x26, 0xff, 0x90, 0x4e, 0x29, 0xff, 0x92, 0x51, 0x2b, 0xff, 0x96, 0x53, 0x2c, 0xff, 0x9a, 0x57, 0x2e, 0xff, 0xa2, 0x60, 0x33, 0xff, 0xa7, 0x65, 0x37, 0xff, 0xaa, 0x67, 0x38, 0xff, 0xac, 0x6b, 0x3a, 0xff, 0xba, 0x76, 0x43, 0xff, 0xda, 0x8c, 0x52, 0xff, 0xe3, 0x91, 0x56, 0xff, 0xea, 0x97, 0x5b, 0xff, 0xec, 0x9a, 0x5d, 0xff, 0xec, 0x9b, 0x5e, 0xff, 0xeb, 0x97, 0x5c, 0xff, 0xec, 0x97, 0x5d, 0xff, 0xec, 0x98, 0x5c, 0xff, 0xeb, 0x95, 0x5a, 0xff, 0xec, 0x90, 0x59, 0xff, 0xec, 0x92, 0x5a, 0xff, 0xec, 0x96, 0x5b, 0xff, 0xec, 0x9b, 0x5f, 0xff, 0xec, 0x9e, 0x64, 0xff, 0xeb, 0xa4, 0x69, 0xff, 0xec, 0xab, 0x6d, 0xff, 0xeb, 0xaf, 0x71, 0xff, 0xec, 0xb1, 0x71, 0xff, 0xea, 0xbb, 0x79, 0xff, 0xe4, 0xd2, 0x8c, 0xff, 0xe5, 0xdf, 0x96, 0xff, 0xe9, 0xdd, 0x93, 0xff, 0xea, 0xdd, 0x91, 0xff, 0xe9, 0xda, 0x8d, 0xff, 0xeb, 0xce, 0x86, 0xff, 0xed, 0xc2, 0x7f, 0xff, 0xed, 0xba, 0x7a, 0xff, 0xec, 0xb2, 0x77, 0xff, 0xea, 0xad, 0x72, 0xff, 0xeb, 0xa2, 0x68, 0xff, 0xeb, 0x9d, 0x63, 0xff, 0xec, 0x9c, 0x62, 0xff, 0xe6, 0x94, 0x5c, 0xff, 0xcc, 0x86, 0x52, 0xff, 0xbb, 0x7c, 0x4b, 0xff, 0xb7, 0x78, 0x46, 0xff, 0xb3, 0x75, 0x42, 0xff, 0xad, 0x6e, 0x3d, 0xff, 0xa3, 0x63, 0x38, 0xff, 0xa4, 0x64, 0x39, 0xff, 0xa7, 0x66, 0x39, 0xff, 0xa5, 0x65, 0x37, 0xff, 0xa5, 0x65, 0x37, 0xff, 0xa5, 0x66, 0x38, 0xff, 0xa7, 0x69, 0x3b, 0xff, 0xa9, 0x6b, 0x3e, 0xff, 0xa9, 0x6b, 0x3e, 0xff, 0xaa, 0x6b, 0x3c, 0xff, 0xaa, 0x6a, 0x3b, 0xff, 0xab, 0x6a, 0x3c, 0xff, 0xac, 0x6c, 0x3e, 0xff, 0xac, 0x6d, 0x3e, 0xff, 0xaa, 0x6b, 0x3d, 0xff, 0xa7, 0x66, 0x39, 0xff, 0xa5, 0x64, 0x37, 0xff, 0xa4, 0x63, 0x36, 0xff, 0xa4, 0x64, 0x36, 0xff, 0xa3, 0x63, 0x35, 0xff, 0xa0, 0x60, 0x34, 0xff, 0x9e, 0x5d, 0x34, 0xff, 0x9a, 0x59, 0x31, 0xff, 0x99, 0x57, 0x31, 0xff, 0x99, 0x58, 0x31, 0xff, 0x9a, 0x59, 0x31, 0xff, 0x9a, 0x59, 0x31, 0xff, 0x98, 0x58, 0x30, 0xff, 0x95, 0x56, 0x2f, 0xff, 0x95, 0x56, 0x30, 0xff, 0x95, 0x56, 0x30, 0xff, 0x95, 0x56, 0x30, 0xff, 0x97, 0x57, 0x31, 0xff, 0x98, 0x58, 0x31, 0xff, 0x99, 0x59, 0x32, 0xff, 0x99, 0x59, 0x33, 0xff, 0x9c, 0x5b, 0x34, 0xff, 0x9e, 0x5d, 0x36, 0xff, 0xa0, 0x5f, 0x37, 0xff, 0xa2, 0x65, 0x3c, 0xff, 0x7d, 0x44, 0x23, 0xff, 0x6c, 0x34, 0x13, 0xff, 0x6b, 0x33, 0x12, 0xff, 0x6c, 0x34, 0x12, 0xff, 0x6d, 0x35, 0x12, 0xff, 0x70, 0x36, 0x12, 0xff, 0x73, 0x36, 0x12, 0xff, 0x73, 0x38, 0x12, 0xff, 0x75, 0x38, 0x14, 0xff, 0x77, 0x3a, 0x14, 0xff, 0x7b, 0x3c, 0x16, 0xff, 0x7e, 0x3f, 0x17, 0xff, 0x7f, 0x3f, 0x18, 0xff, 0x81, 0x43, 0x1c, 0xff, 0x84, 0x45, 0x21, 0xff, 0x86, 0x47, 0x23, 0xff, 0x8c, 0x4f, 0x27, 0xff, 0xb0, 0x72, 0x45, 0xff, 0xb0, 0x71, 0x44, 0xff, 0xad, 0x70, 0x43, 0xff, 0xac, 0x6f, 0x42, 0xff, 0xa8, 0x6c, 0x41, 0xff, 0xa5, 0x68, 0x41, 0xff, 0xa2, 0x68, 0x3f, 0xff, 0xa2, 0x68, 0x3d, 0xff, 0xa3, 0x68, 0x3c, 0xff, 0xa3, 0x65, 0x38, 0xff, 0x9b, 0x5d, 0x32, 0xff, 0x9c, 0x5c, 0x2f, 0xff, 0x9a, 0x5a, 0x2f, 0xff, 0x9b, 0x59, 0x2e, 0xff, 0x9b, 0x5a, 0x2e, 0xff, 0x9b, 0x5c, 0x2e, 0xff, 0x9d, 0x5b, 0x2e, 0xff, 0x9d, 0x5b, 0x2e, 0xff, 0x9e, 0x5c, 0x2f, 0xff, 0x9f, 0x5d, 0x2f, 0xff, 0xa0, 0x5f, 0x30, 0xff, 0x9f, 0x61, 0x31, 0xff, 0xa0, 0x62, 0x33, 0xff, 0xa0, 0x62, 0x31, 0xff, 0xa0, 0x63, 0x31, 0xff, 0xa0, 0x5f, 0x2e, 0xff, 0x9f, 0x5d, 0x2e, 0xff, 0x9f, 0x5d, 0x2e, 0xff, 0x9f, 0x5c, 0x2e, 0xff, 0x9f, 0x5f, 0x2e, 0xff, 0xa0, 0x5f, 0x30, 0xff, 0x9d, 0x5d, 0x2d, 0xff, 0x9b, 0x5c, 0x2b, 0xff, 0x9b, 0x5c, 0x2b, 0xff, 0x9a, 0x5a, 0x2b, 0xff, 0x9a, 0x5a, 0x2b, 0xff, 0x9b, 0x5a, 0x2b, 0xff, 0x9a, 0x59, 0x2b, 0xff, 0x99, 0x59, 0x2a, 0xff, 0x99, 0x58, 0x29, 0xff, 0x97, 0x57, 0x2b, 0xff, 0x96, 0x57, 0x2b, 0xff, 0x94, 0x54, 0x28, 0xff, 0x98, 0x58, 0x2b, 0xff, 0x9c, 0x5b, 0x30, 0xff, 0x9d, 0x5e, 0x31, 0xff, 0x9d, 0x5e, 0x32, 0xff, 0x9e, 0x5f, 0x32, 0xff, 0x9c, 0x5c, 0x30, 0xff, 0x9d, 0x5c, 0x30, 0xff, 0x9d, 0x5d, 0x31, 0xff, 0x9d, 0x5c, 0x31, 0xff, 0x9f, 0x5d, 0x31, 0xff, 0x9f, 0x5d, 0x31, 0xff, 0xa0, 0x5f, 0x32, 0xff, 0xa3, 0x60, 0x33, 0xff, 0xa4, 0x62, 0x34, 0xff, + 0xa1, 0x60, 0x33, 0xff, 0xa3, 0x61, 0x33, 0xff, 0xa4, 0x62, 0x33, 0xff, 0xa5, 0x64, 0x33, 0xff, 0xa5, 0x62, 0x33, 0xff, 0xa3, 0x62, 0x34, 0xff, 0x9c, 0x5c, 0x34, 0xff, 0x98, 0x59, 0x2e, 0xff, 0x98, 0x56, 0x2e, 0xff, 0x99, 0x55, 0x2e, 0xff, 0x98, 0x55, 0x2e, 0xff, 0x9a, 0x57, 0x2e, 0xff, 0x9d, 0x5b, 0x30, 0xff, 0x9b, 0x58, 0x30, 0xff, 0x9a, 0x5a, 0x30, 0xff, 0x99, 0x57, 0x2f, 0xff, 0x95, 0x55, 0x2e, 0xff, 0x94, 0x53, 0x2d, 0xff, 0x95, 0x55, 0x2e, 0xff, 0x94, 0x53, 0x2e, 0xff, 0x94, 0x53, 0x2e, 0xff, 0x97, 0x53, 0x2e, 0xff, 0x95, 0x53, 0x2d, 0xff, 0x94, 0x53, 0x2e, 0xff, 0x91, 0x50, 0x2b, 0xff, 0x90, 0x4f, 0x2b, 0xff, 0x8f, 0x4f, 0x2b, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x90, 0x50, 0x2b, 0xff, 0x90, 0x50, 0x2b, 0xff, 0x92, 0x51, 0x2c, 0xff, 0x93, 0x51, 0x2c, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x91, 0x50, 0x2c, 0xff, 0x91, 0x50, 0x2d, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x91, 0x51, 0x2e, 0xff, 0x95, 0x54, 0x30, 0xff, 0x97, 0x58, 0x32, 0xff, 0x97, 0x56, 0x31, 0xff, 0x99, 0x59, 0x33, 0xff, 0x98, 0x58, 0x32, 0xff, 0x88, 0x46, 0x1e, 0xff, 0x8a, 0x49, 0x21, 0xff, 0x8a, 0x49, 0x21, 0xff, 0x88, 0x48, 0x20, 0xff, 0x88, 0x48, 0x20, 0xff, 0x88, 0x48, 0x21, 0xff, 0x87, 0x47, 0x1f, 0xff, 0x88, 0x48, 0x1f, 0xff, 0x87, 0x47, 0x1f, 0xff, 0x85, 0x47, 0x20, 0xff, 0x83, 0x45, 0x20, 0xff, 0x82, 0x43, 0x1f, 0xff, 0x81, 0x41, 0x1d, 0xff, 0x7f, 0x40, 0x1a, 0xff, 0x7c, 0x3e, 0x18, 0xff, 0x7a, 0x3e, 0x18, 0xff, 0x79, 0x3c, 0x16, 0xff, 0x79, 0x3c, 0x17, 0xff, 0x7a, 0x3c, 0x15, 0xff, 0x7b, 0x3c, 0x16, 0xff, 0x7d, 0x3d, 0x16, 0xff, 0x81, 0x40, 0x19, 0xff, 0x82, 0x41, 0x1c, 0xff, 0x83, 0x42, 0x1d, 0xff, 0x85, 0x44, 0x1f, 0xff, 0x88, 0x46, 0x22, 0xff, 0x8a, 0x48, 0x23, 0xff, 0x8d, 0x4b, 0x26, 0xff, 0x8f, 0x4e, 0x29, 0xff, 0x93, 0x50, 0x2a, 0xff, 0x95, 0x52, 0x2b, 0xff, 0x98, 0x54, 0x2c, 0xff, 0x99, 0x57, 0x2d, 0xff, 0x9b, 0x59, 0x2f, 0xff, 0xa0, 0x5d, 0x31, 0xff, 0xa6, 0x63, 0x35, 0xff, 0xad, 0x6a, 0x39, 0xff, 0xb0, 0x6e, 0x3c, 0xff, 0xb2, 0x70, 0x40, 0xff, 0xc1, 0x7d, 0x49, 0xff, 0xe0, 0x92, 0x57, 0xff, 0xe7, 0x93, 0x57, 0xff, 0xea, 0x94, 0x59, 0xff, 0xea, 0x92, 0x58, 0xff, 0xeb, 0x91, 0x58, 0xff, 0xec, 0x93, 0x59, 0xff, 0xeb, 0x92, 0x58, 0xff, 0xea, 0x91, 0x56, 0xff, 0xeb, 0x93, 0x59, 0xff, 0xec, 0x94, 0x5b, 0xff, 0xec, 0x97, 0x5e, 0xff, 0xec, 0x9f, 0x62, 0xff, 0xeb, 0xa6, 0x68, 0xff, 0xec, 0xad, 0x6e, 0xff, 0xeb, 0xb1, 0x72, 0xff, 0xed, 0xb6, 0x75, 0xff, 0xea, 0xb2, 0x72, 0xff, 0xe4, 0xc2, 0x84, 0xff, 0xe6, 0xe2, 0xa4, 0xff, 0xe8, 0xde, 0xa6, 0xff, 0xe8, 0xdd, 0xa7, 0xff, 0xe6, 0xde, 0xa0, 0xff, 0xe6, 0xdf, 0x9a, 0xff, 0xe5, 0xde, 0x97, 0xff, 0xe7, 0xdb, 0x91, 0xff, 0xe8, 0xd7, 0x8a, 0xff, 0xeb, 0xcf, 0x85, 0xff, 0xed, 0xbe, 0x7e, 0xff, 0xec, 0xae, 0x73, 0xff, 0xeb, 0xa8, 0x6d, 0xff, 0xeb, 0xa6, 0x6b, 0xff, 0xeb, 0xa2, 0x68, 0xff, 0xdb, 0x92, 0x5d, 0xff, 0xc7, 0x84, 0x52, 0xff, 0xbf, 0x7e, 0x4d, 0xff, 0xb4, 0x74, 0x44, 0xff, 0xa9, 0x69, 0x3c, 0xff, 0xa2, 0x63, 0x37, 0xff, 0xa3, 0x65, 0x38, 0xff, 0xaa, 0x6b, 0x3c, 0xff, 0xaa, 0x6a, 0x3c, 0xff, 0xa8, 0x68, 0x3a, 0xff, 0xa9, 0x6a, 0x3b, 0xff, 0xa8, 0x6a, 0x3c, 0xff, 0xaa, 0x6d, 0x40, 0xff, 0xac, 0x6e, 0x41, 0xff, 0xac, 0x6c, 0x3f, 0xff, 0xac, 0x6c, 0x3f, 0xff, 0xac, 0x6e, 0x40, 0xff, 0xad, 0x70, 0x42, 0xff, 0xad, 0x71, 0x43, 0xff, 0xac, 0x6f, 0x42, 0xff, 0xaa, 0x6d, 0x3f, 0xff, 0xa9, 0x69, 0x3c, 0xff, 0xa9, 0x69, 0x3a, 0xff, 0xa9, 0x6a, 0x39, 0xff, 0xa8, 0x67, 0x38, 0xff, 0xa3, 0x63, 0x36, 0xff, 0x9e, 0x5e, 0x34, 0xff, 0x9b, 0x5b, 0x33, 0xff, 0x9b, 0x59, 0x33, 0xff, 0x9d, 0x5a, 0x33, 0xff, 0x9b, 0x5b, 0x33, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x97, 0x57, 0x30, 0xff, 0x97, 0x56, 0x30, 0xff, 0x97, 0x56, 0x30, 0xff, 0x97, 0x56, 0x30, 0xff, 0x98, 0x59, 0x31, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x9a, 0x5a, 0x33, 0xff, 0x9b, 0x5b, 0x34, 0xff, 0x9d, 0x5c, 0x35, 0xff, 0x9e, 0x5d, 0x36, 0xff, 0x9f, 0x5f, 0x37, 0xff, 0xa6, 0x65, 0x3d, 0xff, 0x88, 0x4d, 0x29, 0xff, 0x6f, 0x35, 0x15, 0xff, 0x6b, 0x32, 0x12, 0xff, 0x6c, 0x35, 0x12, 0xff, 0x6d, 0x35, 0x12, 0xff, 0x6f, 0x35, 0x12, 0xff, 0x71, 0x36, 0x12, 0xff, 0x72, 0x37, 0x12, 0xff, 0x74, 0x38, 0x13, 0xff, 0x77, 0x3a, 0x14, 0xff, 0x78, 0x3a, 0x14, 0xff, 0x7b, 0x3c, 0x15, 0xff, 0x7e, 0x3e, 0x17, 0xff, 0x80, 0x3f, 0x18, 0xff, 0x81, 0x41, 0x1c, 0xff, 0x83, 0x44, 0x1e, 0xff, 0x85, 0x47, 0x22, 0xff, 0x85, 0x46, 0x1d, 0xff, 0xb0, 0x71, 0x43, 0xff, 0xb2, 0x73, 0x45, 0xff, 0xac, 0x6d, 0x40, 0xff, 0xac, 0x6f, 0x42, 0xff, 0xaa, 0x6e, 0x41, 0xff, 0xa7, 0x6b, 0x40, 0xff, 0xa4, 0x6a, 0x40, 0xff, 0xa3, 0x69, 0x3e, 0xff, 0xa3, 0x69, 0x3e, 0xff, 0x9e, 0x62, 0x36, 0xff, 0x9c, 0x5e, 0x32, 0xff, 0x9b, 0x5a, 0x30, 0xff, 0x9b, 0x59, 0x2e, 0xff, 0x9c, 0x59, 0x2e, 0xff, 0x9b, 0x5a, 0x2e, 0xff, 0x9b, 0x5b, 0x2e, 0xff, 0x9d, 0x5b, 0x2e, 0xff, 0x9d, 0x5d, 0x30, 0xff, 0x9d, 0x5f, 0x30, 0xff, 0x9e, 0x5f, 0x30, 0xff, 0xa0, 0x62, 0x31, 0xff, 0xa0, 0x63, 0x33, 0xff, 0xa0, 0x63, 0x33, 0xff, 0xa1, 0x65, 0x33, 0xff, 0xa0, 0x61, 0x32, 0xff, 0xa0, 0x60, 0x2e, 0xff, 0xa0, 0x5f, 0x2e, 0xff, 0x9e, 0x5c, 0x2e, 0xff, 0xa0, 0x5f, 0x2e, 0xff, 0xa0, 0x5f, 0x2f, 0xff, 0xa0, 0x60, 0x31, 0xff, 0x9c, 0x5c, 0x2c, 0xff, 0x9c, 0x5c, 0x2c, 0xff, 0x9b, 0x5c, 0x2b, 0xff, 0x9b, 0x5c, 0x2b, 0xff, 0x9b, 0x5b, 0x2b, 0xff, 0x9b, 0x5b, 0x2b, 0xff, 0x99, 0x59, 0x2b, 0xff, 0x97, 0x57, 0x2b, 0xff, 0x99, 0x57, 0x2b, 0xff, 0x97, 0x56, 0x2a, 0xff, 0x96, 0x56, 0x2a, 0xff, 0x96, 0x55, 0x2a, 0xff, 0x96, 0x55, 0x29, 0xff, 0x95, 0x53, 0x2a, 0xff, 0x97, 0x54, 0x2b, 0xff, 0x97, 0x57, 0x2c, 0xff, 0x99, 0x5a, 0x2e, 0xff, 0x9a, 0x59, 0x2f, 0xff, 0x9c, 0x5b, 0x30, 0xff, 0x9b, 0x5c, 0x30, 0xff, 0x9c, 0x5c, 0x2f, 0xff, 0x9c, 0x5c, 0x2f, 0xff, 0x9d, 0x5c, 0x30, 0xff, 0x9d, 0x5e, 0x30, 0xff, 0xa0, 0x5f, 0x31, 0xff, 0xa0, 0x5f, 0x32, 0xff, + 0xa0, 0x5f, 0x32, 0xff, 0xa0, 0x5f, 0x33, 0xff, 0xa2, 0x5f, 0x33, 0xff, 0xa2, 0x60, 0x33, 0xff, 0xa3, 0x60, 0x34, 0xff, 0xa3, 0x61, 0x33, 0xff, 0x9d, 0x5c, 0x34, 0xff, 0x99, 0x5b, 0x30, 0xff, 0x99, 0x59, 0x2e, 0xff, 0x9a, 0x58, 0x2f, 0xff, 0x98, 0x58, 0x2e, 0xff, 0x95, 0x54, 0x2d, 0xff, 0x94, 0x52, 0x2d, 0xff, 0x94, 0x53, 0x2d, 0xff, 0x96, 0x53, 0x2d, 0xff, 0x94, 0x52, 0x2d, 0xff, 0x93, 0x51, 0x2d, 0xff, 0x93, 0x52, 0x2d, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x93, 0x52, 0x2e, 0xff, 0x94, 0x54, 0x2d, 0xff, 0x93, 0x52, 0x2d, 0xff, 0x94, 0x53, 0x2d, 0xff, 0x91, 0x50, 0x2b, 0xff, 0x90, 0x4f, 0x2b, 0xff, 0x90, 0x4f, 0x2b, 0xff, 0x90, 0x4f, 0x2b, 0xff, 0x90, 0x4f, 0x2b, 0xff, 0x90, 0x4f, 0x2b, 0xff, 0x8f, 0x4f, 0x2b, 0xff, 0x91, 0x50, 0x2d, 0xff, 0x92, 0x51, 0x2d, 0xff, 0x90, 0x4f, 0x2c, 0xff, 0x90, 0x4f, 0x2d, 0xff, 0x92, 0x51, 0x2d, 0xff, 0x91, 0x50, 0x2e, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x98, 0x58, 0x31, 0xff, 0x99, 0x58, 0x32, 0xff, 0x99, 0x59, 0x32, 0xff, 0x98, 0x58, 0x32, 0xff, 0x8f, 0x4c, 0x24, 0xff, 0x90, 0x4f, 0x25, 0xff, 0x90, 0x4e, 0x25, 0xff, 0x8f, 0x50, 0x27, 0xff, 0x8f, 0x4e, 0x27, 0xff, 0x8e, 0x4f, 0x25, 0xff, 0x8f, 0x50, 0x27, 0xff, 0x8d, 0x4d, 0x27, 0xff, 0x8d, 0x4d, 0x27, 0xff, 0x8e, 0x4d, 0x26, 0xff, 0x8a, 0x4b, 0x24, 0xff, 0x89, 0x48, 0x21, 0xff, 0x87, 0x45, 0x20, 0xff, 0x84, 0x44, 0x1e, 0xff, 0x7f, 0x41, 0x1b, 0xff, 0x7d, 0x3e, 0x19, 0xff, 0x7c, 0x3e, 0x1a, 0xff, 0x7b, 0x3c, 0x18, 0xff, 0x7d, 0x3d, 0x19, 0xff, 0x7f, 0x40, 0x17, 0xff, 0x81, 0x41, 0x1a, 0xff, 0x80, 0x40, 0x1b, 0xff, 0x82, 0x42, 0x1a, 0xff, 0x83, 0x42, 0x1e, 0xff, 0x86, 0x45, 0x21, 0xff, 0x8a, 0x49, 0x24, 0xff, 0x8e, 0x4b, 0x26, 0xff, 0x90, 0x4f, 0x2a, 0xff, 0x95, 0x52, 0x2c, 0xff, 0x97, 0x54, 0x2c, 0xff, 0x99, 0x56, 0x2d, 0xff, 0x9b, 0x57, 0x2e, 0xff, 0x9d, 0x59, 0x2e, 0xff, 0xa0, 0x5c, 0x30, 0xff, 0xa4, 0x60, 0x33, 0xff, 0xa6, 0x62, 0x34, 0xff, 0xa7, 0x64, 0x36, 0xff, 0xb0, 0x6d, 0x3d, 0xff, 0xb5, 0x73, 0x41, 0xff, 0xb4, 0x71, 0x40, 0xff, 0xca, 0x7f, 0x4b, 0xff, 0xeb, 0x93, 0x57, 0xff, 0xe8, 0x8f, 0x53, 0xff, 0xe7, 0x8e, 0x55, 0xff, 0xed, 0x92, 0x5a, 0xff, 0xec, 0x93, 0x59, 0xff, 0xec, 0x93, 0x57, 0xff, 0xeb, 0x91, 0x57, 0xff, 0xeb, 0x94, 0x5a, 0xff, 0xec, 0x99, 0x5d, 0xff, 0xec, 0x9b, 0x60, 0xff, 0xec, 0xa2, 0x65, 0xff, 0xec, 0xaa, 0x6b, 0xff, 0xec, 0xaf, 0x6f, 0xff, 0xed, 0xb7, 0x75, 0xff, 0xed, 0xbe, 0x79, 0xff, 0xec, 0xbf, 0x7f, 0xff, 0xea, 0xd0, 0x99, 0xff, 0xea, 0xe0, 0xb2, 0xff, 0xeb, 0xde, 0xb8, 0xff, 0xea, 0xde, 0xb8, 0xff, 0xea, 0xdf, 0xb8, 0xff, 0xea, 0xdf, 0xb5, 0xff, 0xe9, 0xde, 0xac, 0xff, 0xe7, 0xde, 0xa3, 0xff, 0xe5, 0xde, 0x9d, 0xff, 0xe6, 0xde, 0x96, 0xff, 0xea, 0xd7, 0x8c, 0xff, 0xec, 0xc9, 0x82, 0xff, 0xed, 0xbb, 0x7a, 0xff, 0xed, 0xb3, 0x76, 0xff, 0xeb, 0xae, 0x73, 0xff, 0xe8, 0x9f, 0x67, 0xff, 0xdb, 0x90, 0x5a, 0xff, 0xc3, 0x81, 0x4f, 0xff, 0xb2, 0x74, 0x45, 0xff, 0xac, 0x6d, 0x40, 0xff, 0xa7, 0x68, 0x3d, 0xff, 0xa4, 0x65, 0x39, 0xff, 0xa8, 0x68, 0x3b, 0xff, 0xac, 0x6d, 0x3f, 0xff, 0xac, 0x6e, 0x3f, 0xff, 0xab, 0x6c, 0x3f, 0xff, 0xa8, 0x6b, 0x3f, 0xff, 0xaa, 0x6e, 0x41, 0xff, 0xb0, 0x71, 0x42, 0xff, 0xb0, 0x6f, 0x40, 0xff, 0xae, 0x6d, 0x40, 0xff, 0xaf, 0x70, 0x42, 0xff, 0xb0, 0x73, 0x45, 0xff, 0xae, 0x72, 0x46, 0xff, 0xad, 0x71, 0x46, 0xff, 0xad, 0x71, 0x46, 0xff, 0xad, 0x70, 0x44, 0xff, 0xad, 0x70, 0x41, 0xff, 0xae, 0x6f, 0x3f, 0xff, 0xab, 0x69, 0x3b, 0xff, 0xa3, 0x63, 0x38, 0xff, 0xa1, 0x62, 0x36, 0xff, 0xa0, 0x60, 0x35, 0xff, 0x9f, 0x5e, 0x34, 0xff, 0x9f, 0x5e, 0x34, 0xff, 0x9b, 0x5c, 0x33, 0xff, 0x99, 0x59, 0x32, 0xff, 0x98, 0x58, 0x32, 0xff, 0x98, 0x58, 0x32, 0xff, 0x98, 0x59, 0x32, 0xff, 0x99, 0x59, 0x32, 0xff, 0x9a, 0x59, 0x32, 0xff, 0x9b, 0x5a, 0x33, 0xff, 0x9d, 0x5c, 0x34, 0xff, 0x9e, 0x5d, 0x35, 0xff, 0x9f, 0x5e, 0x37, 0xff, 0x9f, 0x5f, 0x37, 0xff, 0xa5, 0x65, 0x3c, 0xff, 0x8d, 0x50, 0x2c, 0xff, 0x73, 0x39, 0x17, 0xff, 0x6d, 0x35, 0x12, 0xff, 0x6e, 0x34, 0x12, 0xff, 0x6e, 0x34, 0x12, 0xff, 0x6e, 0x34, 0x12, 0xff, 0x6e, 0x36, 0x12, 0xff, 0x72, 0x36, 0x12, 0xff, 0x74, 0x37, 0x12, 0xff, 0x74, 0x38, 0x12, 0xff, 0x77, 0x3a, 0x14, 0xff, 0x7a, 0x3b, 0x12, 0xff, 0x7b, 0x3d, 0x15, 0xff, 0x7e, 0x3e, 0x17, 0xff, 0x81, 0x40, 0x1b, 0xff, 0x83, 0x41, 0x1d, 0xff, 0x84, 0x43, 0x1e, 0xff, 0x85, 0x45, 0x20, 0xff, 0x86, 0x45, 0x1e, 0xff, 0xae, 0x6f, 0x42, 0xff, 0xb0, 0x71, 0x43, 0xff, 0xae, 0x6e, 0x41, 0xff, 0xac, 0x6e, 0x40, 0xff, 0xaa, 0x6d, 0x40, 0xff, 0xa8, 0x6c, 0x3f, 0xff, 0xa6, 0x6a, 0x40, 0xff, 0xa5, 0x6a, 0x40, 0xff, 0xa2, 0x66, 0x3b, 0xff, 0x9e, 0x60, 0x35, 0xff, 0x9b, 0x5d, 0x32, 0xff, 0x9c, 0x5c, 0x30, 0xff, 0x9b, 0x5c, 0x30, 0xff, 0x9c, 0x5c, 0x2f, 0xff, 0x9b, 0x5b, 0x2e, 0xff, 0x9b, 0x5c, 0x2e, 0xff, 0x9d, 0x5c, 0x30, 0xff, 0x9d, 0x5c, 0x30, 0xff, 0x9d, 0x5f, 0x31, 0xff, 0x9f, 0x5f, 0x30, 0xff, 0xa0, 0x62, 0x31, 0xff, 0xa0, 0x62, 0x33, 0xff, 0xa0, 0x64, 0x34, 0xff, 0xa0, 0x63, 0x33, 0xff, 0xa0, 0x65, 0x32, 0xff, 0xa0, 0x60, 0x2f, 0xff, 0xa0, 0x60, 0x2e, 0xff, 0xa0, 0x60, 0x2e, 0xff, 0xa0, 0x5f, 0x2e, 0xff, 0xa0, 0x5f, 0x30, 0xff, 0xa0, 0x5f, 0x2f, 0xff, 0x9e, 0x5d, 0x2d, 0xff, 0x9d, 0x5c, 0x2c, 0xff, 0x9d, 0x5e, 0x2d, 0xff, 0x9d, 0x5f, 0x2d, 0xff, 0x9b, 0x5b, 0x2b, 0xff, 0x9b, 0x59, 0x2b, 0xff, 0x9a, 0x5b, 0x2b, 0xff, 0x99, 0x57, 0x2b, 0xff, 0x97, 0x58, 0x29, 0xff, 0x97, 0x55, 0x2b, 0xff, 0x97, 0x57, 0x2b, 0xff, 0x97, 0x55, 0x2b, 0xff, 0x96, 0x56, 0x2b, 0xff, 0x96, 0x55, 0x2b, 0xff, 0x96, 0x56, 0x2b, 0xff, 0x97, 0x55, 0x2b, 0xff, 0x96, 0x54, 0x2b, 0xff, 0x97, 0x54, 0x2b, 0xff, 0x95, 0x55, 0x2b, 0xff, 0x94, 0x53, 0x28, 0xff, 0x94, 0x55, 0x2b, 0xff, 0x99, 0x57, 0x2e, 0xff, 0x9b, 0x5c, 0x2f, 0xff, 0x9c, 0x5c, 0x31, 0xff, 0x9d, 0x5e, 0x32, 0xff, 0x9f, 0x5f, 0x32, 0xff, + 0x99, 0x59, 0x2d, 0xff, 0x99, 0x59, 0x2d, 0xff, 0x99, 0x59, 0x2e, 0xff, 0x9a, 0x5a, 0x2d, 0xff, 0x9a, 0x5b, 0x2e, 0xff, 0x9a, 0x5b, 0x2e, 0xff, 0x96, 0x57, 0x2d, 0xff, 0x93, 0x53, 0x2d, 0xff, 0x92, 0x52, 0x2b, 0xff, 0x91, 0x50, 0x2b, 0xff, 0x90, 0x4f, 0x2b, 0xff, 0x90, 0x4f, 0x2b, 0xff, 0x92, 0x51, 0x2c, 0xff, 0x96, 0x53, 0x2e, 0xff, 0x96, 0x55, 0x2d, 0xff, 0x94, 0x52, 0x2d, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x93, 0x52, 0x2d, 0xff, 0x93, 0x52, 0x2e, 0xff, 0x93, 0x52, 0x2e, 0xff, 0x93, 0x54, 0x2d, 0xff, 0x94, 0x52, 0x2d, 0xff, 0x93, 0x52, 0x2d, 0xff, 0x93, 0x51, 0x2c, 0xff, 0x91, 0x4f, 0x2b, 0xff, 0x90, 0x4f, 0x2b, 0xff, 0x91, 0x50, 0x2b, 0xff, 0x8f, 0x4f, 0x2a, 0xff, 0x90, 0x4f, 0x2b, 0xff, 0x90, 0x4f, 0x2b, 0xff, 0x90, 0x4f, 0x2b, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x93, 0x52, 0x2d, 0xff, 0x92, 0x51, 0x2d, 0xff, 0x92, 0x51, 0x2d, 0xff, 0x92, 0x51, 0x2d, 0xff, 0x93, 0x52, 0x2d, 0xff, 0x93, 0x52, 0x2e, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x98, 0x58, 0x30, 0xff, 0x9b, 0x5a, 0x32, 0xff, 0x9b, 0x5a, 0x33, 0xff, 0x97, 0x56, 0x32, 0xff, 0x95, 0x53, 0x28, 0xff, 0x95, 0x52, 0x29, 0xff, 0x96, 0x53, 0x2b, 0xff, 0x96, 0x53, 0x2b, 0xff, 0x97, 0x55, 0x2c, 0xff, 0x98, 0x56, 0x2c, 0xff, 0x97, 0x58, 0x2d, 0xff, 0x95, 0x56, 0x2d, 0xff, 0x95, 0x56, 0x2d, 0xff, 0x95, 0x56, 0x2c, 0xff, 0x93, 0x52, 0x2c, 0xff, 0x8f, 0x50, 0x2a, 0xff, 0x8d, 0x4e, 0x27, 0xff, 0x8a, 0x4b, 0x25, 0xff, 0x84, 0x47, 0x22, 0xff, 0x84, 0x45, 0x21, 0xff, 0x83, 0x43, 0x1e, 0xff, 0x82, 0x43, 0x1d, 0xff, 0x82, 0x42, 0x1d, 0xff, 0x82, 0x42, 0x1c, 0xff, 0x80, 0x40, 0x1b, 0xff, 0x82, 0x42, 0x1c, 0xff, 0x83, 0x41, 0x1d, 0xff, 0x85, 0x44, 0x20, 0xff, 0x8a, 0x47, 0x22, 0xff, 0x8f, 0x4b, 0x26, 0xff, 0x92, 0x4e, 0x29, 0xff, 0x94, 0x51, 0x2b, 0xff, 0x97, 0x53, 0x2c, 0xff, 0x99, 0x57, 0x2d, 0xff, 0x9b, 0x59, 0x2e, 0xff, 0x9d, 0x5b, 0x2f, 0xff, 0xa0, 0x5d, 0x30, 0xff, 0xa3, 0x60, 0x33, 0xff, 0xa5, 0x61, 0x34, 0xff, 0xa5, 0x61, 0x33, 0xff, 0xa8, 0x65, 0x36, 0xff, 0xab, 0x6a, 0x39, 0xff, 0xad, 0x6b, 0x3b, 0xff, 0xb3, 0x6f, 0x3f, 0xff, 0xba, 0x77, 0x44, 0xff, 0xd4, 0x87, 0x4f, 0xff, 0xed, 0x93, 0x59, 0xff, 0xeb, 0x91, 0x55, 0xff, 0xe9, 0x8f, 0x55, 0xff, 0xea, 0x90, 0x56, 0xff, 0xec, 0x93, 0x59, 0xff, 0xec, 0x96, 0x5d, 0xff, 0xec, 0x99, 0x5d, 0xff, 0xec, 0x9e, 0x61, 0xff, 0xec, 0xa2, 0x64, 0xff, 0xeb, 0xa4, 0x67, 0xff, 0xeb, 0xab, 0x6c, 0xff, 0xeb, 0xb5, 0x72, 0xff, 0xec, 0xbb, 0x78, 0xff, 0xeb, 0xbb, 0x79, 0xff, 0xe7, 0xc5, 0x84, 0xff, 0xe9, 0xdc, 0xa2, 0xff, 0xeb, 0xe0, 0xb3, 0xff, 0xec, 0xdf, 0xc6, 0xff, 0xed, 0xdf, 0xd2, 0xff, 0xed, 0xdf, 0xd2, 0xff, 0xed, 0xdf, 0xd1, 0xff, 0xed, 0xde, 0xcd, 0xff, 0xec, 0xdf, 0xc1, 0xff, 0xeb, 0xde, 0xb0, 0xff, 0xe8, 0xde, 0xa6, 0xff, 0xe5, 0xdf, 0x9b, 0xff, 0xe7, 0xdd, 0x92, 0xff, 0xea, 0xd3, 0x89, 0xff, 0xea, 0xc4, 0x7f, 0xff, 0xeb, 0xc0, 0x7e, 0xff, 0xec, 0xb1, 0x75, 0xff, 0xd8, 0x93, 0x5f, 0xff, 0xc0, 0x81, 0x53, 0xff, 0xb6, 0x78, 0x4b, 0xff, 0xb2, 0x73, 0x45, 0xff, 0xae, 0x6f, 0x41, 0xff, 0xaa, 0x6c, 0x3e, 0xff, 0xa8, 0x69, 0x3b, 0xff, 0xab, 0x6c, 0x3e, 0xff, 0xaf, 0x71, 0x42, 0xff, 0xac, 0x6d, 0x40, 0xff, 0xa9, 0x6a, 0x3f, 0xff, 0xac, 0x6d, 0x41, 0xff, 0xb1, 0x71, 0x42, 0xff, 0xb2, 0x71, 0x42, 0xff, 0xb1, 0x70, 0x42, 0xff, 0xb2, 0x72, 0x44, 0xff, 0xb1, 0x73, 0x46, 0xff, 0xb0, 0x74, 0x48, 0xff, 0xb1, 0x75, 0x49, 0xff, 0xb1, 0x74, 0x49, 0xff, 0xaf, 0x74, 0x47, 0xff, 0xae, 0x70, 0x43, 0xff, 0xab, 0x6c, 0x3d, 0xff, 0xaa, 0x69, 0x3c, 0xff, 0xa8, 0x68, 0x3b, 0xff, 0xa6, 0x68, 0x39, 0xff, 0xa6, 0x65, 0x38, 0xff, 0xa4, 0x64, 0x38, 0xff, 0x9f, 0x5f, 0x35, 0xff, 0x9c, 0x5c, 0x34, 0xff, 0x9b, 0x5a, 0x33, 0xff, 0x9b, 0x5a, 0x33, 0xff, 0x9a, 0x59, 0x32, 0xff, 0x99, 0x59, 0x33, 0xff, 0x9b, 0x5a, 0x33, 0xff, 0x9c, 0x5b, 0x33, 0xff, 0x9d, 0x5c, 0x34, 0xff, 0x9e, 0x5e, 0x35, 0xff, 0x9f, 0x5f, 0x36, 0xff, 0xa0, 0x60, 0x36, 0xff, 0xa4, 0x65, 0x3b, 0xff, 0x96, 0x59, 0x35, 0xff, 0x77, 0x3d, 0x1a, 0xff, 0x70, 0x35, 0x11, 0xff, 0x71, 0x38, 0x12, 0xff, 0x71, 0x37, 0x12, 0xff, 0x70, 0x37, 0x12, 0xff, 0x71, 0x36, 0x12, 0xff, 0x71, 0x36, 0x12, 0xff, 0x72, 0x36, 0x12, 0xff, 0x74, 0x37, 0x12, 0xff, 0x75, 0x39, 0x12, 0xff, 0x76, 0x37, 0x12, 0xff, 0x79, 0x3b, 0x12, 0xff, 0x7b, 0x3c, 0x15, 0xff, 0x7d, 0x3d, 0x17, 0xff, 0x80, 0x3f, 0x18, 0xff, 0x82, 0x42, 0x1b, 0xff, 0x83, 0x45, 0x1d, 0xff, 0x87, 0x45, 0x1f, 0xff, 0x88, 0x47, 0x20, 0xff, 0xac, 0x6e, 0x40, 0xff, 0xb3, 0x73, 0x44, 0xff, 0xb1, 0x71, 0x41, 0xff, 0xad, 0x6f, 0x3f, 0xff, 0xab, 0x6d, 0x3f, 0xff, 0xa9, 0x6c, 0x40, 0xff, 0xa7, 0x6d, 0x3f, 0xff, 0xa6, 0x6b, 0x3f, 0xff, 0xa0, 0x65, 0x39, 0xff, 0x9d, 0x62, 0x35, 0xff, 0x9d, 0x60, 0x34, 0xff, 0x9c, 0x5d, 0x31, 0xff, 0x9c, 0x5c, 0x30, 0xff, 0x9c, 0x5c, 0x2f, 0xff, 0x9c, 0x5c, 0x2f, 0xff, 0x9b, 0x5c, 0x30, 0xff, 0x9d, 0x5c, 0x30, 0xff, 0x9c, 0x5e, 0x30, 0xff, 0x9d, 0x5f, 0x31, 0xff, 0x9e, 0x60, 0x32, 0xff, 0xa0, 0x61, 0x32, 0xff, 0xa0, 0x61, 0x33, 0xff, 0xa0, 0x62, 0x34, 0xff, 0xa0, 0x63, 0x33, 0xff, 0xa0, 0x63, 0x32, 0xff, 0xa0, 0x63, 0x31, 0xff, 0x9f, 0x60, 0x30, 0xff, 0x9f, 0x5f, 0x2f, 0xff, 0x9f, 0x5f, 0x2f, 0xff, 0x9f, 0x5f, 0x30, 0xff, 0xa0, 0x5f, 0x2f, 0xff, 0x9f, 0x5e, 0x2e, 0xff, 0x9e, 0x5b, 0x2e, 0xff, 0x9c, 0x5a, 0x2d, 0xff, 0x9b, 0x59, 0x2d, 0xff, 0x9a, 0x59, 0x2c, 0xff, 0x99, 0x59, 0x2c, 0xff, 0x9a, 0x58, 0x2c, 0xff, 0x98, 0x58, 0x2b, 0xff, 0x98, 0x56, 0x2b, 0xff, 0x97, 0x55, 0x2b, 0xff, 0x97, 0x54, 0x2b, 0xff, 0x96, 0x53, 0x2b, 0xff, 0x97, 0x55, 0x2b, 0xff, 0x96, 0x54, 0x2b, 0xff, 0x97, 0x56, 0x2b, 0xff, 0x98, 0x56, 0x2b, 0xff, 0x98, 0x55, 0x2b, 0xff, 0x97, 0x54, 0x2b, 0xff, 0x97, 0x55, 0x2b, 0xff, 0x95, 0x53, 0x2b, 0xff, 0x94, 0x54, 0x2b, 0xff, 0x94, 0x53, 0x2b, 0xff, 0x92, 0x53, 0x2b, 0xff, 0x94, 0x54, 0x2b, 0xff, 0x97, 0x56, 0x2e, 0xff, 0x98, 0x58, 0x2d, 0xff, + 0x96, 0x58, 0x2d, 0xff, 0x96, 0x59, 0x2d, 0xff, 0x96, 0x57, 0x2d, 0xff, 0x96, 0x57, 0x2c, 0xff, 0x97, 0x57, 0x2c, 0xff, 0x98, 0x56, 0x2d, 0xff, 0x92, 0x52, 0x2a, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x92, 0x51, 0x2c, 0xff, 0x92, 0x51, 0x2c, 0xff, 0x92, 0x52, 0x2b, 0xff, 0x90, 0x50, 0x2a, 0xff, 0x92, 0x51, 0x2c, 0xff, 0x96, 0x54, 0x2e, 0xff, 0x96, 0x56, 0x2e, 0xff, 0x93, 0x54, 0x2d, 0xff, 0x93, 0x52, 0x2e, 0xff, 0x93, 0x53, 0x2d, 0xff, 0x92, 0x53, 0x2d, 0xff, 0x93, 0x54, 0x2e, 0xff, 0x93, 0x52, 0x2d, 0xff, 0x92, 0x51, 0x2d, 0xff, 0x94, 0x52, 0x2d, 0xff, 0x92, 0x51, 0x2c, 0xff, 0x92, 0x51, 0x2c, 0xff, 0x90, 0x4f, 0x2b, 0xff, 0x90, 0x4f, 0x2a, 0xff, 0x90, 0x4f, 0x2b, 0xff, 0x8f, 0x4f, 0x2b, 0xff, 0x8f, 0x4f, 0x2b, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x8f, 0x4f, 0x2b, 0xff, 0x91, 0x50, 0x2d, 0xff, 0x93, 0x51, 0x2c, 0xff, 0x92, 0x51, 0x2d, 0xff, 0x92, 0x51, 0x2d, 0xff, 0x93, 0x52, 0x2d, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x97, 0x56, 0x2f, 0xff, 0x99, 0x58, 0x30, 0xff, 0x9b, 0x5a, 0x33, 0xff, 0x9a, 0x5a, 0x33, 0xff, 0x99, 0x5a, 0x31, 0xff, 0x9a, 0x58, 0x2c, 0xff, 0x9c, 0x5a, 0x2d, 0xff, 0x9c, 0x5b, 0x2e, 0xff, 0x9c, 0x5d, 0x30, 0xff, 0x9c, 0x5d, 0x30, 0xff, 0x9c, 0x5e, 0x31, 0xff, 0x9c, 0x5f, 0x32, 0xff, 0x9b, 0x60, 0x33, 0xff, 0x9b, 0x5f, 0x33, 0xff, 0x99, 0x5f, 0x33, 0xff, 0x99, 0x5d, 0x31, 0xff, 0x98, 0x5a, 0x30, 0xff, 0x95, 0x57, 0x2e, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x8c, 0x4d, 0x29, 0xff, 0x87, 0x48, 0x26, 0xff, 0x87, 0x48, 0x23, 0xff, 0x85, 0x45, 0x20, 0xff, 0x85, 0x44, 0x1e, 0xff, 0x84, 0x43, 0x1d, 0xff, 0x84, 0x44, 0x1d, 0xff, 0x84, 0x43, 0x1e, 0xff, 0x84, 0x44, 0x1d, 0xff, 0x87, 0x47, 0x1f, 0xff, 0x89, 0x49, 0x23, 0xff, 0x90, 0x4d, 0x28, 0xff, 0x94, 0x50, 0x2a, 0xff, 0x97, 0x55, 0x2b, 0xff, 0x99, 0x56, 0x2c, 0xff, 0x9c, 0x59, 0x2d, 0xff, 0x9e, 0x5b, 0x2f, 0xff, 0xa0, 0x5d, 0x30, 0xff, 0xa3, 0x5f, 0x32, 0xff, 0xa5, 0x63, 0x34, 0xff, 0xa6, 0x63, 0x35, 0xff, 0xa6, 0x63, 0x35, 0xff, 0xaa, 0x67, 0x38, 0xff, 0xaa, 0x67, 0x37, 0xff, 0xa6, 0x64, 0x36, 0xff, 0xab, 0x69, 0x38, 0xff, 0xb0, 0x6f, 0x3d, 0xff, 0xb8, 0x74, 0x42, 0xff, 0xd4, 0x85, 0x4f, 0xff, 0xea, 0x95, 0x5d, 0xff, 0xe6, 0x94, 0x5a, 0xff, 0xe6, 0x91, 0x57, 0xff, 0xe5, 0x8e, 0x56, 0xff, 0xe2, 0x8e, 0x56, 0xff, 0xe1, 0x92, 0x5a, 0xff, 0xea, 0x9a, 0x5f, 0xff, 0xeb, 0x9a, 0x5f, 0xff, 0xea, 0x9a, 0x60, 0xff, 0xeb, 0xa4, 0x68, 0xff, 0xeb, 0xae, 0x71, 0xff, 0xec, 0xb6, 0x78, 0xff, 0xea, 0xb9, 0x78, 0xff, 0xe6, 0xc9, 0x85, 0xff, 0xe6, 0xdf, 0x9f, 0xff, 0xe9, 0xdf, 0xb2, 0xff, 0xec, 0xdf, 0xcb, 0xff, 0xed, 0xdf, 0xd3, 0xff, 0xed, 0xdf, 0xd2, 0xff, 0xed, 0xdf, 0xd2, 0xff, 0xec, 0xdf, 0xd2, 0xff, 0xec, 0xde, 0xd3, 0xff, 0xed, 0xde, 0xce, 0xff, 0xec, 0xdf, 0xbd, 0xff, 0xea, 0xdf, 0xac, 0xff, 0xe6, 0xde, 0xa1, 0xff, 0xe3, 0xdf, 0x97, 0xff, 0xe8, 0xdd, 0x8e, 0xff, 0xe9, 0xcc, 0x85, 0xff, 0xe3, 0xad, 0x76, 0xff, 0xda, 0x97, 0x66, 0xff, 0xcb, 0x8a, 0x5c, 0xff, 0xbf, 0x80, 0x54, 0xff, 0xb8, 0x79, 0x4c, 0xff, 0xb3, 0x74, 0x47, 0xff, 0xaf, 0x72, 0x42, 0xff, 0xac, 0x6d, 0x3f, 0xff, 0xa9, 0x6a, 0x3d, 0xff, 0xac, 0x6e, 0x40, 0xff, 0xaf, 0x70, 0x42, 0xff, 0xac, 0x6e, 0x42, 0xff, 0xac, 0x6e, 0x42, 0xff, 0xb2, 0x71, 0x43, 0xff, 0xb4, 0x73, 0x43, 0xff, 0xb3, 0x73, 0x42, 0xff, 0xb2, 0x74, 0x42, 0xff, 0xb3, 0x75, 0x43, 0xff, 0xb3, 0x77, 0x48, 0xff, 0xb4, 0x7a, 0x4c, 0xff, 0xb2, 0x76, 0x4a, 0xff, 0xad, 0x6f, 0x43, 0xff, 0xac, 0x6d, 0x41, 0xff, 0xad, 0x6e, 0x42, 0xff, 0xad, 0x6e, 0x42, 0xff, 0xac, 0x6d, 0x40, 0xff, 0xac, 0x6d, 0x40, 0xff, 0xaa, 0x6b, 0x3d, 0xff, 0xa2, 0x61, 0x37, 0xff, 0x9f, 0x5d, 0x35, 0xff, 0x9e, 0x5e, 0x34, 0xff, 0x9d, 0x5d, 0x33, 0xff, 0x9c, 0x5c, 0x33, 0xff, 0x9c, 0x5b, 0x34, 0xff, 0x9d, 0x5b, 0x34, 0xff, 0x9e, 0x5e, 0x35, 0xff, 0x9e, 0x5e, 0x36, 0xff, 0x9e, 0x5f, 0x36, 0xff, 0xa1, 0x61, 0x36, 0xff, 0xa1, 0x61, 0x36, 0xff, 0xa3, 0x65, 0x3a, 0xff, 0x9b, 0x5d, 0x36, 0xff, 0x7d, 0x41, 0x1d, 0xff, 0x73, 0x37, 0x14, 0xff, 0x73, 0x38, 0x14, 0xff, 0x72, 0x36, 0x13, 0xff, 0x71, 0x37, 0x12, 0xff, 0x71, 0x36, 0x12, 0xff, 0x70, 0x36, 0x12, 0xff, 0x71, 0x36, 0x12, 0xff, 0x73, 0x36, 0x12, 0xff, 0x74, 0x38, 0x12, 0xff, 0x75, 0x38, 0x12, 0xff, 0x78, 0x39, 0x14, 0xff, 0x79, 0x3c, 0x12, 0xff, 0x7a, 0x3c, 0x14, 0xff, 0x7d, 0x3d, 0x16, 0xff, 0x7f, 0x40, 0x18, 0xff, 0x82, 0x41, 0x1b, 0xff, 0x84, 0x42, 0x1c, 0xff, 0x84, 0x44, 0x1d, 0xff, 0x86, 0x47, 0x20, 0xff, 0xaa, 0x6c, 0x3f, 0xff, 0xb6, 0x77, 0x45, 0xff, 0xb1, 0x71, 0x41, 0xff, 0xae, 0x6f, 0x40, 0xff, 0xac, 0x6d, 0x3f, 0xff, 0xab, 0x6d, 0x3f, 0xff, 0xaa, 0x6d, 0x3f, 0xff, 0xa4, 0x6a, 0x3a, 0xff, 0xa0, 0x66, 0x37, 0xff, 0xa0, 0x63, 0x35, 0xff, 0x9d, 0x60, 0x33, 0xff, 0x9e, 0x5f, 0x32, 0xff, 0x9c, 0x5c, 0x30, 0xff, 0x9d, 0x5c, 0x30, 0xff, 0x9c, 0x5b, 0x2e, 0xff, 0x9c, 0x5b, 0x2f, 0xff, 0x9c, 0x5d, 0x30, 0xff, 0x9d, 0x5e, 0x30, 0xff, 0x9e, 0x5f, 0x32, 0xff, 0x9f, 0x60, 0x32, 0xff, 0x9f, 0x61, 0x33, 0xff, 0xa0, 0x62, 0x34, 0xff, 0xa0, 0x61, 0x33, 0xff, 0xa0, 0x62, 0x34, 0xff, 0x9f, 0x62, 0x33, 0xff, 0xa0, 0x62, 0x32, 0xff, 0xa0, 0x60, 0x31, 0xff, 0xa0, 0x60, 0x30, 0xff, 0x9f, 0x5e, 0x30, 0xff, 0xa0, 0x5f, 0x30, 0xff, 0xa0, 0x5d, 0x31, 0xff, 0x9d, 0x5b, 0x2f, 0xff, 0x9d, 0x5b, 0x2e, 0xff, 0x9c, 0x5b, 0x2e, 0xff, 0x9b, 0x5a, 0x2e, 0xff, 0x9c, 0x5a, 0x2e, 0xff, 0x9a, 0x59, 0x2d, 0xff, 0x9b, 0x5a, 0x2d, 0xff, 0x9a, 0x58, 0x2c, 0xff, 0x9a, 0x59, 0x2c, 0xff, 0x99, 0x58, 0x2b, 0xff, 0x99, 0x56, 0x2b, 0xff, 0x98, 0x57, 0x2b, 0xff, 0x98, 0x57, 0x2b, 0xff, 0x99, 0x56, 0x2b, 0xff, 0x9a, 0x58, 0x2b, 0xff, 0x9a, 0x58, 0x2b, 0xff, 0x98, 0x57, 0x2b, 0xff, 0x98, 0x55, 0x2b, 0xff, 0x98, 0x55, 0x2b, 0xff, 0x97, 0x56, 0x2c, 0xff, 0x97, 0x55, 0x2b, 0xff, 0x97, 0x56, 0x2c, 0xff, 0x95, 0x56, 0x2d, 0xff, 0x94, 0x56, 0x2e, 0xff, 0x96, 0x56, 0x2d, 0xff, 0x96, 0x58, 0x2e, 0xff, + 0x95, 0x56, 0x2e, 0xff, 0x95, 0x57, 0x2e, 0xff, 0x96, 0x58, 0x2d, 0xff, 0x95, 0x57, 0x2c, 0xff, 0x96, 0x56, 0x2c, 0xff, 0x95, 0x55, 0x2c, 0xff, 0x8f, 0x51, 0x29, 0xff, 0x88, 0x4a, 0x23, 0xff, 0x93, 0x53, 0x2d, 0xff, 0x93, 0x50, 0x2b, 0xff, 0x92, 0x50, 0x2b, 0xff, 0x92, 0x51, 0x2b, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x96, 0x57, 0x2e, 0xff, 0x96, 0x55, 0x2e, 0xff, 0x94, 0x54, 0x2d, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x94, 0x55, 0x2e, 0xff, 0x95, 0x55, 0x2e, 0xff, 0x94, 0x52, 0x2d, 0xff, 0x92, 0x52, 0x2d, 0xff, 0x93, 0x52, 0x2d, 0xff, 0x92, 0x50, 0x2c, 0xff, 0x92, 0x51, 0x2d, 0xff, 0x90, 0x4f, 0x2b, 0xff, 0x90, 0x51, 0x2c, 0xff, 0x90, 0x4f, 0x2b, 0xff, 0x90, 0x4f, 0x2c, 0xff, 0x90, 0x4e, 0x2c, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x90, 0x4f, 0x2c, 0xff, 0x92, 0x51, 0x2d, 0xff, 0x93, 0x52, 0x2e, 0xff, 0x96, 0x55, 0x2e, 0xff, 0x98, 0x57, 0x2f, 0xff, 0x9a, 0x5a, 0x31, 0xff, 0x9c, 0x5b, 0x32, 0xff, 0x9b, 0x5a, 0x33, 0xff, 0x9b, 0x5a, 0x33, 0xff, 0x9d, 0x5b, 0x31, 0xff, 0xa1, 0x5e, 0x2e, 0xff, 0xa0, 0x5f, 0x30, 0xff, 0xa1, 0x62, 0x32, 0xff, 0xa1, 0x64, 0x34, 0xff, 0xa1, 0x66, 0x36, 0xff, 0x9f, 0x66, 0x38, 0xff, 0x9f, 0x67, 0x3a, 0xff, 0x9f, 0x67, 0x3b, 0xff, 0x9f, 0x67, 0x3c, 0xff, 0x9d, 0x67, 0x3c, 0xff, 0x9d, 0x66, 0x3b, 0xff, 0x9c, 0x63, 0x38, 0xff, 0x9a, 0x60, 0x34, 0xff, 0x97, 0x5a, 0x30, 0xff, 0x92, 0x53, 0x2d, 0xff, 0x8e, 0x4e, 0x2b, 0xff, 0x8c, 0x4c, 0x2a, 0xff, 0x8b, 0x4b, 0x27, 0xff, 0x8a, 0x4a, 0x24, 0xff, 0x89, 0x49, 0x23, 0xff, 0x87, 0x46, 0x21, 0xff, 0x85, 0x45, 0x20, 0xff, 0x88, 0x47, 0x20, 0xff, 0x8a, 0x48, 0x22, 0xff, 0x8e, 0x4c, 0x24, 0xff, 0x93, 0x50, 0x28, 0xff, 0x95, 0x52, 0x2b, 0xff, 0x99, 0x56, 0x2d, 0xff, 0x9d, 0x59, 0x2e, 0xff, 0x9e, 0x5b, 0x2e, 0xff, 0xa0, 0x5d, 0x31, 0xff, 0xa3, 0x60, 0x32, 0xff, 0xa5, 0x62, 0x33, 0xff, 0xa7, 0x63, 0x34, 0xff, 0xa6, 0x62, 0x34, 0xff, 0xa9, 0x65, 0x37, 0xff, 0xa7, 0x65, 0x36, 0xff, 0xa2, 0x61, 0x34, 0xff, 0xa7, 0x65, 0x37, 0xff, 0xac, 0x69, 0x39, 0xff, 0xad, 0x6b, 0x3a, 0xff, 0xa9, 0x68, 0x38, 0xff, 0xb0, 0x6c, 0x3c, 0xff, 0xd1, 0x84, 0x4f, 0xff, 0xea, 0x94, 0x5a, 0xff, 0xdf, 0x8c, 0x53, 0xff, 0xdd, 0x8c, 0x53, 0xff, 0xd8, 0x8a, 0x51, 0xff, 0xda, 0x8c, 0x53, 0xff, 0xe7, 0x94, 0x5a, 0xff, 0xed, 0x96, 0x5d, 0xff, 0xeb, 0x98, 0x5f, 0xff, 0xeb, 0xa0, 0x63, 0xff, 0xed, 0xab, 0x6d, 0xff, 0xec, 0xb0, 0x73, 0xff, 0xec, 0xb3, 0x75, 0xff, 0xea, 0xcd, 0x85, 0xff, 0xe5, 0xe0, 0x99, 0xff, 0xe7, 0xde, 0xab, 0xff, 0xec, 0xdf, 0xc3, 0xff, 0xed, 0xdf, 0xd3, 0xff, 0xed, 0xdf, 0xd2, 0xff, 0xed, 0xdf, 0xd2, 0xff, 0xec, 0xde, 0xd2, 0xff, 0xec, 0xdf, 0xd2, 0xff, 0xed, 0xe0, 0xd2, 0xff, 0xed, 0xdf, 0xcf, 0xff, 0xed, 0xe0, 0xc2, 0xff, 0xea, 0xdf, 0xaf, 0xff, 0xe6, 0xdf, 0xa3, 0xff, 0xe5, 0xda, 0x97, 0xff, 0xe6, 0xbc, 0x80, 0xff, 0xe3, 0x9f, 0x6d, 0xff, 0xe4, 0x9d, 0x6b, 0xff, 0xde, 0x97, 0x66, 0xff, 0xc9, 0x88, 0x58, 0xff, 0xbd, 0x80, 0x50, 0xff, 0xb9, 0x7b, 0x4b, 0xff, 0xb6, 0x76, 0x46, 0xff, 0xb1, 0x72, 0x43, 0xff, 0xad, 0x6e, 0x40, 0xff, 0xa8, 0x6a, 0x3d, 0xff, 0xa7, 0x69, 0x3c, 0xff, 0xae, 0x70, 0x43, 0xff, 0xb1, 0x72, 0x45, 0xff, 0xb2, 0x72, 0x43, 0xff, 0xb6, 0x76, 0x45, 0xff, 0xb6, 0x76, 0x46, 0xff, 0xb4, 0x73, 0x42, 0xff, 0xb4, 0x75, 0x43, 0xff, 0xb4, 0x78, 0x47, 0xff, 0xb2, 0x75, 0x47, 0xff, 0xaf, 0x70, 0x43, 0xff, 0xac, 0x6f, 0x41, 0xff, 0xaf, 0x71, 0x42, 0xff, 0xaf, 0x71, 0x44, 0xff, 0xae, 0x72, 0x45, 0xff, 0xb1, 0x74, 0x45, 0xff, 0xb0, 0x73, 0x44, 0xff, 0xa8, 0x69, 0x3d, 0xff, 0xa3, 0x61, 0x37, 0xff, 0xa1, 0x60, 0x36, 0xff, 0x9f, 0x5f, 0x36, 0xff, 0x9f, 0x5f, 0x36, 0xff, 0x9f, 0x5e, 0x36, 0xff, 0x9f, 0x5e, 0x36, 0xff, 0x9f, 0x5f, 0x36, 0xff, 0x9f, 0x60, 0x37, 0xff, 0xa0, 0x61, 0x38, 0xff, 0xa2, 0x62, 0x38, 0xff, 0xa3, 0x63, 0x38, 0xff, 0xa5, 0x65, 0x39, 0xff, 0xa2, 0x65, 0x3e, 0xff, 0x85, 0x47, 0x24, 0xff, 0x77, 0x3a, 0x17, 0xff, 0x77, 0x3a, 0x17, 0xff, 0x76, 0x39, 0x16, 0xff, 0x74, 0x38, 0x15, 0xff, 0x73, 0x38, 0x13, 0xff, 0x74, 0x37, 0x13, 0xff, 0x73, 0x37, 0x11, 0xff, 0x72, 0x36, 0x12, 0xff, 0x73, 0x37, 0x12, 0xff, 0x75, 0x39, 0x12, 0xff, 0x76, 0x39, 0x14, 0xff, 0x79, 0x3b, 0x13, 0xff, 0x7b, 0x3e, 0x14, 0xff, 0x7b, 0x3c, 0x17, 0xff, 0x7e, 0x3e, 0x18, 0xff, 0x81, 0x41, 0x19, 0xff, 0x83, 0x43, 0x1b, 0xff, 0x83, 0x44, 0x1e, 0xff, 0x85, 0x45, 0x1e, 0xff, 0x86, 0x47, 0x1f, 0xff, 0xa5, 0x67, 0x3a, 0xff, 0xb8, 0x78, 0x47, 0xff, 0xb5, 0x76, 0x44, 0xff, 0xb1, 0x6f, 0x41, 0xff, 0xae, 0x6f, 0x3f, 0xff, 0xab, 0x6c, 0x3f, 0xff, 0xa9, 0x6b, 0x3b, 0xff, 0xa7, 0x6a, 0x3a, 0xff, 0xa3, 0x67, 0x39, 0xff, 0xa0, 0x63, 0x36, 0xff, 0x9f, 0x61, 0x33, 0xff, 0x9d, 0x5e, 0x32, 0xff, 0x9d, 0x5e, 0x30, 0xff, 0x9e, 0x5c, 0x30, 0xff, 0x9d, 0x5b, 0x2f, 0xff, 0x9d, 0x5c, 0x30, 0xff, 0x9c, 0x5c, 0x30, 0xff, 0x9d, 0x5e, 0x32, 0xff, 0x9d, 0x5e, 0x32, 0xff, 0x9e, 0x60, 0x33, 0xff, 0x9f, 0x61, 0x33, 0xff, 0x9f, 0x61, 0x33, 0xff, 0x9f, 0x61, 0x33, 0xff, 0x9f, 0x61, 0x33, 0xff, 0xa0, 0x61, 0x33, 0xff, 0xa0, 0x64, 0x34, 0xff, 0xa0, 0x62, 0x33, 0xff, 0xa0, 0x61, 0x31, 0xff, 0xa0, 0x5d, 0x31, 0xff, 0x9f, 0x5d, 0x30, 0xff, 0x9f, 0x5e, 0x30, 0xff, 0x9f, 0x5d, 0x30, 0xff, 0x9f, 0x5e, 0x2f, 0xff, 0x9e, 0x5b, 0x2e, 0xff, 0x9c, 0x5b, 0x2d, 0xff, 0x9c, 0x59, 0x2d, 0xff, 0x9c, 0x5a, 0x2d, 0xff, 0x9c, 0x5d, 0x2d, 0xff, 0x9c, 0x58, 0x2d, 0xff, 0x9c, 0x5b, 0x2d, 0xff, 0x9b, 0x5a, 0x2c, 0xff, 0x9b, 0x59, 0x2c, 0xff, 0x9a, 0x58, 0x2c, 0xff, 0x99, 0x57, 0x2b, 0xff, 0x99, 0x58, 0x2b, 0xff, 0x99, 0x58, 0x2b, 0xff, 0x9a, 0x57, 0x2c, 0xff, 0x9a, 0x58, 0x2b, 0xff, 0x99, 0x57, 0x2b, 0xff, 0x99, 0x58, 0x2c, 0xff, 0x98, 0x58, 0x2c, 0xff, 0x98, 0x57, 0x2d, 0xff, 0x97, 0x58, 0x2e, 0xff, 0x97, 0x58, 0x2d, 0xff, 0x97, 0x58, 0x2e, 0xff, 0x95, 0x57, 0x2e, 0xff, 0x96, 0x57, 0x2f, 0xff, + 0x95, 0x56, 0x2e, 0xff, 0x93, 0x56, 0x2d, 0xff, 0x94, 0x55, 0x2d, 0xff, 0x95, 0x55, 0x2c, 0xff, 0x95, 0x54, 0x2c, 0xff, 0x94, 0x53, 0x2c, 0xff, 0x8c, 0x4c, 0x26, 0xff, 0x82, 0x42, 0x1d, 0xff, 0x92, 0x51, 0x2d, 0xff, 0x92, 0x50, 0x2b, 0xff, 0x92, 0x51, 0x2b, 0xff, 0x92, 0x52, 0x2c, 0xff, 0x90, 0x50, 0x2b, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x99, 0x59, 0x30, 0xff, 0x98, 0x57, 0x2f, 0xff, 0x97, 0x55, 0x2f, 0xff, 0x96, 0x55, 0x2e, 0xff, 0x96, 0x55, 0x2f, 0xff, 0x98, 0x59, 0x30, 0xff, 0x95, 0x55, 0x2e, 0xff, 0x96, 0x55, 0x2f, 0xff, 0x97, 0x54, 0x2f, 0xff, 0x97, 0x58, 0x30, 0xff, 0x95, 0x55, 0x2e, 0xff, 0x92, 0x51, 0x2c, 0xff, 0x91, 0x50, 0x2c, 0xff, 0x91, 0x50, 0x2c, 0xff, 0x91, 0x50, 0x2c, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x90, 0x4f, 0x2c, 0xff, 0x92, 0x52, 0x2c, 0xff, 0x96, 0x55, 0x2e, 0xff, 0x98, 0x57, 0x30, 0xff, 0x9a, 0x59, 0x30, 0xff, 0x9b, 0x5b, 0x33, 0xff, 0x9c, 0x5c, 0x33, 0xff, 0x9b, 0x5a, 0x33, 0xff, 0x9d, 0x5b, 0x34, 0xff, 0xa1, 0x5f, 0x33, 0xff, 0xa5, 0x62, 0x32, 0xff, 0xa5, 0x65, 0x33, 0xff, 0xa5, 0x68, 0x36, 0xff, 0xa5, 0x6a, 0x39, 0xff, 0xa5, 0x6c, 0x3d, 0xff, 0xa2, 0x6c, 0x40, 0xff, 0xa3, 0x6c, 0x42, 0xff, 0xa2, 0x6a, 0x43, 0xff, 0xa1, 0x6a, 0x42, 0xff, 0xa0, 0x69, 0x42, 0xff, 0xa0, 0x69, 0x42, 0xff, 0x9f, 0x67, 0x41, 0xff, 0x9d, 0x64, 0x3d, 0xff, 0x9b, 0x62, 0x38, 0xff, 0x98, 0x5c, 0x32, 0xff, 0x97, 0x59, 0x30, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x8f, 0x4e, 0x2b, 0xff, 0x8d, 0x4c, 0x28, 0xff, 0x8b, 0x4a, 0x26, 0xff, 0x8a, 0x49, 0x25, 0xff, 0x8b, 0x4a, 0x25, 0xff, 0x8e, 0x4c, 0x27, 0xff, 0x90, 0x4e, 0x28, 0xff, 0x95, 0x52, 0x2a, 0xff, 0x98, 0x55, 0x2b, 0xff, 0x9a, 0x58, 0x2d, 0xff, 0x9e, 0x5a, 0x2f, 0xff, 0xa0, 0x5c, 0x31, 0xff, 0xa3, 0x61, 0x32, 0xff, 0xa5, 0x62, 0x33, 0xff, 0xa6, 0x62, 0x34, 0xff, 0xa5, 0x61, 0x34, 0xff, 0xa9, 0x66, 0x37, 0xff, 0xa6, 0x64, 0x35, 0xff, 0x9f, 0x5d, 0x31, 0xff, 0xa5, 0x62, 0x34, 0xff, 0xaa, 0x66, 0x37, 0xff, 0xac, 0x6b, 0x39, 0xff, 0xac, 0x6a, 0x3a, 0xff, 0xac, 0x6a, 0x3a, 0xff, 0xaf, 0x6d, 0x3d, 0xff, 0xb8, 0x75, 0x43, 0xff, 0xd6, 0x8b, 0x53, 0xff, 0xf0, 0x96, 0x5d, 0xff, 0xe6, 0x8e, 0x56, 0xff, 0xde, 0x8b, 0x53, 0xff, 0xe2, 0x8d, 0x55, 0xff, 0xe7, 0x93, 0x59, 0xff, 0xec, 0x9b, 0x62, 0xff, 0xec, 0x9d, 0x62, 0xff, 0xec, 0xa2, 0x65, 0xff, 0xeb, 0xa9, 0x6b, 0xff, 0xe9, 0xab, 0x6f, 0xff, 0xea, 0xb0, 0x73, 0xff, 0xec, 0xc5, 0x7d, 0xff, 0xe9, 0xdc, 0x8b, 0xff, 0xe6, 0xe0, 0x9d, 0xff, 0xe9, 0xdf, 0xae, 0xff, 0xec, 0xe0, 0xc3, 0xff, 0xed, 0xdf, 0xd1, 0xff, 0xed, 0xe0, 0xd2, 0xff, 0xed, 0xdf, 0xd2, 0xff, 0xed, 0xe0, 0xd2, 0xff, 0xed, 0xe0, 0xd2, 0xff, 0xed, 0xdf, 0xd2, 0xff, 0xec, 0xdf, 0xcd, 0xff, 0xea, 0xdf, 0xbb, 0xff, 0xe9, 0xe0, 0xab, 0xff, 0xea, 0xce, 0x96, 0xff, 0xed, 0xb3, 0x7f, 0xff, 0xeb, 0xa8, 0x76, 0xff, 0xec, 0xa8, 0x75, 0xff, 0xe8, 0xa2, 0x6d, 0xff, 0xd5, 0x91, 0x5e, 0xff, 0xc4, 0x85, 0x55, 0xff, 0xbe, 0x7e, 0x4f, 0xff, 0xb9, 0x79, 0x4a, 0xff, 0xb5, 0x75, 0x46, 0xff, 0xb2, 0x72, 0x43, 0xff, 0xac, 0x6d, 0x3f, 0xff, 0xa6, 0x68, 0x3b, 0xff, 0xa5, 0x68, 0x3b, 0xff, 0xad, 0x71, 0x43, 0xff, 0xb7, 0x77, 0x48, 0xff, 0xb8, 0x76, 0x46, 0xff, 0xb7, 0x77, 0x46, 0xff, 0xb6, 0x77, 0x45, 0xff, 0xb6, 0x76, 0x45, 0xff, 0xb4, 0x74, 0x44, 0xff, 0xb1, 0x71, 0x42, 0xff, 0xb0, 0x70, 0x42, 0xff, 0xaf, 0x70, 0x42, 0xff, 0xb0, 0x70, 0x42, 0xff, 0xb0, 0x72, 0x44, 0xff, 0xaf, 0x75, 0x46, 0xff, 0xb1, 0x79, 0x49, 0xff, 0xab, 0x70, 0x41, 0xff, 0xa5, 0x66, 0x3a, 0xff, 0xa5, 0x63, 0x38, 0xff, 0xa4, 0x63, 0x37, 0xff, 0xa2, 0x63, 0x38, 0xff, 0xa2, 0x63, 0x37, 0xff, 0xa1, 0x61, 0x37, 0xff, 0xa1, 0x60, 0x37, 0xff, 0xa2, 0x62, 0x38, 0xff, 0xa3, 0x63, 0x39, 0xff, 0xa3, 0x63, 0x3a, 0xff, 0xa4, 0x64, 0x3a, 0xff, 0xa5, 0x65, 0x3b, 0xff, 0xa6, 0x69, 0x40, 0xff, 0x83, 0x45, 0x1f, 0xff, 0x79, 0x3a, 0x19, 0xff, 0x7c, 0x3e, 0x1b, 0xff, 0x7a, 0x3d, 0x18, 0xff, 0x78, 0x3c, 0x17, 0xff, 0x76, 0x3a, 0x16, 0xff, 0x76, 0x39, 0x14, 0xff, 0x75, 0x38, 0x14, 0xff, 0x74, 0x3a, 0x13, 0xff, 0x75, 0x39, 0x12, 0xff, 0x76, 0x39, 0x14, 0xff, 0x77, 0x39, 0x13, 0xff, 0x79, 0x3a, 0x12, 0xff, 0x79, 0x3c, 0x14, 0xff, 0x7a, 0x3b, 0x14, 0xff, 0x7b, 0x3c, 0x16, 0xff, 0x7d, 0x3e, 0x16, 0xff, 0x7f, 0x40, 0x1b, 0xff, 0x82, 0x41, 0x1c, 0xff, 0x82, 0x43, 0x1d, 0xff, 0x87, 0x47, 0x1e, 0xff, 0x86, 0x47, 0x1f, 0xff, 0x9c, 0x5d, 0x32, 0xff, 0xb7, 0x76, 0x47, 0xff, 0xb9, 0x76, 0x46, 0xff, 0xb5, 0x75, 0x44, 0xff, 0xb0, 0x71, 0x42, 0xff, 0xac, 0x6c, 0x3d, 0xff, 0xab, 0x6c, 0x3b, 0xff, 0xa9, 0x6a, 0x3b, 0xff, 0xa7, 0x69, 0x3a, 0xff, 0xa3, 0x65, 0x37, 0xff, 0xa0, 0x61, 0x33, 0xff, 0x9f, 0x5e, 0x33, 0xff, 0x9d, 0x5d, 0x31, 0xff, 0x9e, 0x5c, 0x30, 0xff, 0x9e, 0x5c, 0x30, 0xff, 0x9e, 0x5d, 0x30, 0xff, 0x9e, 0x5f, 0x31, 0xff, 0x9e, 0x5f, 0x31, 0xff, 0x9e, 0x60, 0x33, 0xff, 0x9e, 0x60, 0x33, 0xff, 0x9f, 0x61, 0x33, 0xff, 0x9f, 0x61, 0x33, 0xff, 0x9f, 0x62, 0x35, 0xff, 0x9f, 0x61, 0x34, 0xff, 0xa1, 0x63, 0x36, 0xff, 0xa1, 0x62, 0x34, 0xff, 0xa0, 0x62, 0x35, 0xff, 0xa2, 0x62, 0x33, 0xff, 0xa2, 0x63, 0x34, 0xff, 0xa2, 0x61, 0x33, 0xff, 0xa3, 0x64, 0x34, 0xff, 0xa4, 0x63, 0x33, 0xff, 0xa3, 0x62, 0x32, 0xff, 0xa2, 0x5f, 0x30, 0xff, 0xa1, 0x5e, 0x30, 0xff, 0x9f, 0x5c, 0x2e, 0xff, 0x9f, 0x5e, 0x2e, 0xff, 0x9f, 0x5d, 0x2e, 0xff, 0x9d, 0x5d, 0x2d, 0xff, 0x9d, 0x5d, 0x2d, 0xff, 0x9c, 0x59, 0x2d, 0xff, 0x9a, 0x58, 0x2c, 0xff, 0x9a, 0x58, 0x2c, 0xff, 0x9a, 0x58, 0x2c, 0xff, 0x9a, 0x58, 0x2b, 0xff, 0x9c, 0x58, 0x2c, 0xff, 0x9a, 0x57, 0x2c, 0xff, 0x9b, 0x58, 0x2b, 0xff, 0x99, 0x58, 0x2b, 0xff, 0x99, 0x58, 0x2c, 0xff, 0x99, 0x59, 0x2d, 0xff, 0x99, 0x59, 0x2d, 0xff, 0x99, 0x57, 0x2d, 0xff, 0x98, 0x59, 0x2e, 0xff, 0x98, 0x59, 0x2f, 0xff, 0x96, 0x57, 0x2f, 0xff, 0x95, 0x56, 0x2e, 0xff, + 0x94, 0x55, 0x2d, 0xff, 0x92, 0x54, 0x2d, 0xff, 0x92, 0x52, 0x2c, 0xff, 0x92, 0x53, 0x2c, 0xff, 0x92, 0x53, 0x2c, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x89, 0x4b, 0x26, 0xff, 0x82, 0x45, 0x1f, 0xff, 0x87, 0x48, 0x21, 0xff, 0x94, 0x53, 0x2d, 0xff, 0x94, 0x54, 0x2d, 0xff, 0x93, 0x51, 0x2c, 0xff, 0x92, 0x51, 0x2c, 0xff, 0x92, 0x51, 0x2c, 0xff, 0x94, 0x54, 0x2d, 0xff, 0x99, 0x59, 0x30, 0xff, 0x97, 0x57, 0x2e, 0xff, 0x96, 0x55, 0x2e, 0xff, 0x97, 0x56, 0x2f, 0xff, 0x98, 0x57, 0x30, 0xff, 0x97, 0x56, 0x30, 0xff, 0x98, 0x57, 0x30, 0xff, 0x97, 0x57, 0x30, 0xff, 0x95, 0x54, 0x30, 0xff, 0x95, 0x54, 0x2f, 0xff, 0x92, 0x53, 0x2d, 0xff, 0x93, 0x54, 0x2e, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x92, 0x50, 0x2c, 0xff, 0x92, 0x51, 0x2c, 0xff, 0x91, 0x50, 0x2c, 0xff, 0x92, 0x51, 0x2c, 0xff, 0x92, 0x51, 0x2d, 0xff, 0x93, 0x54, 0x2e, 0xff, 0x97, 0x57, 0x2f, 0xff, 0x9b, 0x5b, 0x30, 0xff, 0x9d, 0x5d, 0x33, 0xff, 0x9e, 0x5d, 0x34, 0xff, 0x9d, 0x5d, 0x33, 0xff, 0x9e, 0x5c, 0x35, 0xff, 0x9c, 0x5b, 0x34, 0xff, 0xa7, 0x67, 0x34, 0xff, 0xaa, 0x67, 0x34, 0xff, 0xa9, 0x69, 0x36, 0xff, 0xa9, 0x6b, 0x38, 0xff, 0xa8, 0x6d, 0x3c, 0xff, 0xa8, 0x6f, 0x41, 0xff, 0xa8, 0x71, 0x45, 0xff, 0xa6, 0x70, 0x46, 0xff, 0xa5, 0x6f, 0x46, 0xff, 0xa5, 0x6f, 0x47, 0xff, 0xa4, 0x6d, 0x48, 0xff, 0xa3, 0x6d, 0x47, 0xff, 0xa2, 0x6b, 0x45, 0xff, 0xa0, 0x69, 0x44, 0xff, 0x9f, 0x68, 0x3f, 0xff, 0x9e, 0x65, 0x38, 0xff, 0x9b, 0x5e, 0x34, 0xff, 0x9a, 0x5b, 0x31, 0xff, 0x97, 0x58, 0x2f, 0xff, 0x94, 0x55, 0x2d, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x8f, 0x4f, 0x2a, 0xff, 0x8f, 0x4e, 0x29, 0xff, 0x90, 0x4e, 0x29, 0xff, 0x92, 0x4f, 0x2a, 0xff, 0x95, 0x52, 0x2a, 0xff, 0x98, 0x55, 0x2c, 0xff, 0x9c, 0x58, 0x2d, 0xff, 0x9f, 0x5b, 0x2f, 0xff, 0xa2, 0x5e, 0x31, 0xff, 0xa5, 0x60, 0x33, 0xff, 0xa7, 0x63, 0x34, 0xff, 0xa7, 0x63, 0x34, 0xff, 0xa7, 0x63, 0x34, 0xff, 0xa9, 0x68, 0x36, 0xff, 0xa6, 0x65, 0x35, 0xff, 0xa2, 0x5f, 0x32, 0xff, 0xa4, 0x61, 0x33, 0xff, 0xa7, 0x65, 0x35, 0xff, 0xab, 0x68, 0x37, 0xff, 0xac, 0x69, 0x38, 0xff, 0xaa, 0x68, 0x38, 0xff, 0xaf, 0x6c, 0x3b, 0xff, 0xb3, 0x70, 0x3f, 0xff, 0xb4, 0x73, 0x3f, 0xff, 0xba, 0x78, 0x44, 0xff, 0xd8, 0x8c, 0x57, 0xff, 0xef, 0x99, 0x61, 0xff, 0xed, 0x94, 0x5b, 0xff, 0xec, 0x91, 0x59, 0xff, 0xed, 0x95, 0x5b, 0xff, 0xec, 0x9c, 0x62, 0xff, 0xec, 0xa0, 0x65, 0xff, 0xec, 0xa5, 0x68, 0xff, 0xeb, 0xa6, 0x6a, 0xff, 0xea, 0xa4, 0x68, 0xff, 0xed, 0xac, 0x6e, 0xff, 0xed, 0xb7, 0x75, 0xff, 0xed, 0xcd, 0x7e, 0xff, 0xea, 0xe0, 0x8a, 0xff, 0xe5, 0xe0, 0x97, 0xff, 0xe7, 0xe0, 0xa6, 0xff, 0xeb, 0xe0, 0xc1, 0xff, 0xed, 0xe0, 0xd3, 0xff, 0xed, 0xe0, 0xd2, 0xff, 0xed, 0xe0, 0xd2, 0xff, 0xed, 0xe0, 0xd2, 0xff, 0xed, 0xe0, 0xcf, 0xff, 0xed, 0xe0, 0xc8, 0xff, 0xeb, 0xe0, 0xbb, 0xff, 0xea, 0xd7, 0xa3, 0xff, 0xec, 0xc5, 0x8d, 0xff, 0xed, 0xb7, 0x82, 0xff, 0xed, 0xad, 0x7a, 0xff, 0xeb, 0xab, 0x79, 0xff, 0xea, 0xa5, 0x72, 0xff, 0xe0, 0x97, 0x63, 0xff, 0xd0, 0x8c, 0x5a, 0xff, 0xc5, 0x83, 0x53, 0xff, 0xbe, 0x7d, 0x4d, 0xff, 0xb8, 0x78, 0x48, 0xff, 0xb3, 0x74, 0x44, 0xff, 0xae, 0x6d, 0x40, 0xff, 0xa9, 0x6a, 0x3d, 0xff, 0xa7, 0x69, 0x3c, 0xff, 0xa6, 0x68, 0x3b, 0xff, 0xb1, 0x70, 0x42, 0xff, 0xb9, 0x78, 0x48, 0xff, 0xb8, 0x78, 0x46, 0xff, 0xba, 0x7a, 0x48, 0xff, 0xb7, 0x76, 0x46, 0xff, 0xb3, 0x73, 0x43, 0xff, 0xb2, 0x73, 0x43, 0xff, 0xb2, 0x73, 0x42, 0xff, 0xb2, 0x73, 0x42, 0xff, 0xaf, 0x70, 0x42, 0xff, 0xb0, 0x70, 0x44, 0xff, 0xb1, 0x74, 0x47, 0xff, 0xaf, 0x73, 0x44, 0xff, 0xaa, 0x6b, 0x3e, 0xff, 0xa8, 0x6a, 0x3d, 0xff, 0xa7, 0x68, 0x3d, 0xff, 0xa8, 0x67, 0x3c, 0xff, 0xa8, 0x67, 0x3b, 0xff, 0xa6, 0x64, 0x39, 0xff, 0xa4, 0x63, 0x39, 0xff, 0xa4, 0x64, 0x39, 0xff, 0xa4, 0x64, 0x39, 0xff, 0xa5, 0x65, 0x39, 0xff, 0xa5, 0x66, 0x3b, 0xff, 0xa6, 0x67, 0x3c, 0xff, 0xa6, 0x68, 0x3f, 0xff, 0x87, 0x47, 0x23, 0xff, 0x7e, 0x3e, 0x1c, 0xff, 0x80, 0x42, 0x1f, 0xff, 0x7d, 0x40, 0x1d, 0xff, 0x7b, 0x3d, 0x1b, 0xff, 0x7b, 0x3c, 0x18, 0xff, 0x7a, 0x3c, 0x17, 0xff, 0x79, 0x3b, 0x17, 0xff, 0x76, 0x3b, 0x16, 0xff, 0x78, 0x3a, 0x15, 0xff, 0x76, 0x3a, 0x11, 0xff, 0x77, 0x3a, 0x13, 0xff, 0x78, 0x3a, 0x13, 0xff, 0x79, 0x3b, 0x13, 0xff, 0x7a, 0x3c, 0x14, 0xff, 0x7c, 0x3e, 0x16, 0xff, 0x7c, 0x3e, 0x17, 0xff, 0x7e, 0x3f, 0x18, 0xff, 0x80, 0x41, 0x19, 0xff, 0x83, 0x43, 0x1b, 0xff, 0x84, 0x45, 0x1e, 0xff, 0x86, 0x48, 0x1e, 0xff, 0x85, 0x46, 0x1f, 0xff, 0x91, 0x51, 0x25, 0xff, 0xb6, 0x76, 0x47, 0xff, 0xbc, 0x7a, 0x4b, 0xff, 0xb9, 0x78, 0x46, 0xff, 0xb2, 0x74, 0x42, 0xff, 0xae, 0x70, 0x3f, 0xff, 0xac, 0x6c, 0x3b, 0xff, 0xab, 0x6c, 0x3b, 0xff, 0xa9, 0x6a, 0x3a, 0xff, 0xa7, 0x6a, 0x39, 0xff, 0xa3, 0x64, 0x35, 0xff, 0xa2, 0x60, 0x33, 0xff, 0xa0, 0x5e, 0x32, 0xff, 0x9e, 0x5e, 0x30, 0xff, 0x9e, 0x5c, 0x30, 0xff, 0x9e, 0x5d, 0x30, 0xff, 0x9d, 0x5e, 0x32, 0xff, 0x9f, 0x5f, 0x33, 0xff, 0x9f, 0x60, 0x33, 0xff, 0x9f, 0x61, 0x33, 0xff, 0xa0, 0x62, 0x35, 0xff, 0xa0, 0x61, 0x35, 0xff, 0x9f, 0x62, 0x36, 0xff, 0xa1, 0x64, 0x38, 0xff, 0xa2, 0x67, 0x39, 0xff, 0xa3, 0x67, 0x38, 0xff, 0xa3, 0x64, 0x37, 0xff, 0xa5, 0x65, 0x36, 0xff, 0xa3, 0x62, 0x36, 0xff, 0xa2, 0x63, 0x33, 0xff, 0xa4, 0x65, 0x34, 0xff, 0xa5, 0x64, 0x33, 0xff, 0xa4, 0x63, 0x33, 0xff, 0xa3, 0x61, 0x31, 0xff, 0xa2, 0x60, 0x30, 0xff, 0xa0, 0x5f, 0x2f, 0xff, 0xa2, 0x5f, 0x2e, 0xff, 0xa1, 0x5f, 0x2f, 0xff, 0xa0, 0x5e, 0x2e, 0xff, 0xa0, 0x5d, 0x30, 0xff, 0x9f, 0x5c, 0x30, 0xff, 0x9e, 0x5b, 0x2e, 0xff, 0x9c, 0x58, 0x2d, 0xff, 0x9b, 0x5b, 0x2c, 0xff, 0x9b, 0x5a, 0x2c, 0xff, 0x9a, 0x5a, 0x2c, 0xff, 0x9b, 0x57, 0x2c, 0xff, 0x9c, 0x59, 0x2c, 0xff, 0x9b, 0x5b, 0x2b, 0xff, 0x9b, 0x59, 0x2c, 0xff, 0x9a, 0x5a, 0x2d, 0xff, 0x98, 0x58, 0x2d, 0xff, 0x99, 0x5a, 0x2e, 0xff, 0x99, 0x5a, 0x2e, 0xff, 0x98, 0x59, 0x2f, 0xff, 0x96, 0x58, 0x30, 0xff, 0x95, 0x56, 0x2e, 0xff, + 0x95, 0x56, 0x2e, 0xff, 0x92, 0x54, 0x2d, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x91, 0x52, 0x2c, 0xff, 0x90, 0x50, 0x2b, 0xff, 0x90, 0x51, 0x2c, 0xff, 0x89, 0x4a, 0x26, 0xff, 0x85, 0x47, 0x22, 0xff, 0x88, 0x49, 0x25, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x93, 0x52, 0x2d, 0xff, 0x93, 0x51, 0x2c, 0xff, 0x93, 0x52, 0x2c, 0xff, 0x92, 0x51, 0x2c, 0xff, 0x92, 0x51, 0x2c, 0xff, 0x97, 0x57, 0x2f, 0xff, 0x98, 0x58, 0x2f, 0xff, 0x98, 0x57, 0x2e, 0xff, 0x97, 0x57, 0x2f, 0xff, 0x98, 0x57, 0x30, 0xff, 0x98, 0x58, 0x31, 0xff, 0x99, 0x59, 0x2f, 0xff, 0x98, 0x58, 0x31, 0xff, 0x98, 0x57, 0x31, 0xff, 0x95, 0x56, 0x30, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x93, 0x52, 0x2e, 0xff, 0x92, 0x53, 0x2d, 0xff, 0x92, 0x51, 0x2e, 0xff, 0x93, 0x51, 0x2d, 0xff, 0x92, 0x51, 0x2d, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x95, 0x56, 0x2f, 0xff, 0x98, 0x57, 0x2f, 0xff, 0x9a, 0x5a, 0x31, 0xff, 0x9d, 0x5d, 0x33, 0xff, 0x9d, 0x5d, 0x33, 0xff, 0x9e, 0x5e, 0x34, 0xff, 0x9d, 0x5d, 0x36, 0xff, 0xa1, 0x60, 0x36, 0xff, 0xad, 0x6a, 0x36, 0xff, 0xad, 0x6b, 0x37, 0xff, 0xae, 0x6e, 0x38, 0xff, 0xae, 0x70, 0x3b, 0xff, 0xae, 0x71, 0x3e, 0xff, 0xae, 0x73, 0x43, 0xff, 0xad, 0x74, 0x47, 0xff, 0xab, 0x75, 0x4a, 0xff, 0xab, 0x75, 0x4b, 0xff, 0xaa, 0x73, 0x4c, 0xff, 0xa9, 0x72, 0x4c, 0xff, 0xa7, 0x72, 0x4c, 0xff, 0xa4, 0x6d, 0x4a, 0xff, 0xa3, 0x6c, 0x47, 0xff, 0xa3, 0x6b, 0x44, 0xff, 0xa2, 0x68, 0x3f, 0xff, 0x9f, 0x66, 0x39, 0xff, 0x9e, 0x60, 0x35, 0xff, 0x9c, 0x5d, 0x32, 0xff, 0x98, 0x57, 0x2f, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x93, 0x52, 0x2d, 0xff, 0x94, 0x53, 0x2c, 0xff, 0x94, 0x53, 0x2c, 0xff, 0x96, 0x53, 0x2c, 0xff, 0x99, 0x56, 0x2c, 0xff, 0x9c, 0x59, 0x2e, 0xff, 0xa0, 0x5b, 0x2f, 0xff, 0xa3, 0x5e, 0x31, 0xff, 0xa7, 0x63, 0x33, 0xff, 0xa8, 0x64, 0x34, 0xff, 0xa8, 0x65, 0x35, 0xff, 0xa9, 0x65, 0x36, 0xff, 0xac, 0x69, 0x37, 0xff, 0xa7, 0x64, 0x35, 0xff, 0xa3, 0x60, 0x33, 0xff, 0xa6, 0x62, 0x33, 0xff, 0xa8, 0x64, 0x34, 0xff, 0xaa, 0x67, 0x36, 0xff, 0xac, 0x6a, 0x37, 0xff, 0xad, 0x6a, 0x39, 0xff, 0xaf, 0x6b, 0x3b, 0xff, 0xb2, 0x6e, 0x3e, 0xff, 0xb5, 0x72, 0x40, 0xff, 0xb5, 0x73, 0x43, 0xff, 0xb8, 0x75, 0x43, 0xff, 0xc0, 0x7b, 0x48, 0xff, 0xda, 0x8f, 0x59, 0xff, 0xef, 0x9c, 0x64, 0xff, 0xec, 0x99, 0x60, 0xff, 0xec, 0x97, 0x5e, 0xff, 0xeb, 0x9a, 0x61, 0xff, 0xeb, 0xa4, 0x68, 0xff, 0xed, 0xa8, 0x6c, 0xff, 0xec, 0xa5, 0x6a, 0xff, 0xea, 0xa0, 0x67, 0xff, 0xeb, 0xa6, 0x6b, 0xff, 0xec, 0xb1, 0x72, 0xff, 0xec, 0xbd, 0x78, 0xff, 0xec, 0xca, 0x7e, 0xff, 0xeb, 0xd4, 0x83, 0xff, 0xe8, 0xdd, 0x92, 0xff, 0xe7, 0xe0, 0xa6, 0xff, 0xeb, 0xdf, 0xb8, 0xff, 0xec, 0xe0, 0xc2, 0xff, 0xec, 0xe0, 0xc8, 0xff, 0xec, 0xdf, 0xc2, 0xff, 0xeb, 0xdf, 0xb6, 0xff, 0xea, 0xe1, 0xb2, 0xff, 0xea, 0xd9, 0xa4, 0xff, 0xeb, 0xca, 0x8d, 0xff, 0xed, 0xc1, 0x86, 0xff, 0xee, 0xb7, 0x83, 0xff, 0xee, 0xac, 0x7a, 0xff, 0xeb, 0xa8, 0x74, 0xff, 0xec, 0xa6, 0x71, 0xff, 0xe6, 0x9b, 0x67, 0xff, 0xd8, 0x91, 0x5d, 0xff, 0xcc, 0x89, 0x57, 0xff, 0xc2, 0x83, 0x51, 0xff, 0xbd, 0x7c, 0x4c, 0xff, 0xb6, 0x75, 0x45, 0xff, 0xaf, 0x6e, 0x40, 0xff, 0xac, 0x6c, 0x3e, 0xff, 0xaa, 0x6b, 0x3e, 0xff, 0xa9, 0x6b, 0x3f, 0xff, 0xae, 0x70, 0x41, 0xff, 0xb1, 0x72, 0x42, 0xff, 0xb1, 0x71, 0x42, 0xff, 0xb4, 0x73, 0x44, 0xff, 0xb7, 0x75, 0x45, 0xff, 0xb6, 0x75, 0x45, 0xff, 0xb6, 0x75, 0x45, 0xff, 0xb5, 0x75, 0x45, 0xff, 0xb2, 0x73, 0x43, 0xff, 0xae, 0x6e, 0x41, 0xff, 0xb1, 0x71, 0x44, 0xff, 0xae, 0x70, 0x43, 0xff, 0xa9, 0x6b, 0x3d, 0xff, 0xa9, 0x6b, 0x3e, 0xff, 0xab, 0x6c, 0x3f, 0xff, 0xab, 0x6b, 0x3e, 0xff, 0xaa, 0x6a, 0x3d, 0xff, 0xa8, 0x69, 0x3c, 0xff, 0xa8, 0x68, 0x3b, 0xff, 0xa7, 0x67, 0x3c, 0xff, 0xa6, 0x67, 0x3c, 0xff, 0xa5, 0x66, 0x3b, 0xff, 0xa5, 0x66, 0x3a, 0xff, 0xa9, 0x6a, 0x3f, 0xff, 0xa1, 0x62, 0x38, 0xff, 0x8b, 0x4b, 0x26, 0xff, 0x83, 0x45, 0x20, 0xff, 0x83, 0x43, 0x20, 0xff, 0x83, 0x42, 0x1f, 0xff, 0x80, 0x41, 0x1d, 0xff, 0x7e, 0x40, 0x1d, 0xff, 0x7d, 0x3f, 0x1b, 0xff, 0x7b, 0x3e, 0x18, 0xff, 0x7b, 0x3d, 0x17, 0xff, 0x7a, 0x3b, 0x15, 0xff, 0x79, 0x3b, 0x12, 0xff, 0x79, 0x3a, 0x12, 0xff, 0x78, 0x3a, 0x14, 0xff, 0x78, 0x3a, 0x14, 0xff, 0x79, 0x3b, 0x14, 0xff, 0x7b, 0x3d, 0x16, 0xff, 0x7c, 0x3d, 0x17, 0xff, 0x7d, 0x3e, 0x17, 0xff, 0x7e, 0x3f, 0x17, 0xff, 0x80, 0x40, 0x1b, 0xff, 0x83, 0x43, 0x1d, 0xff, 0x84, 0x45, 0x1e, 0xff, 0x86, 0x47, 0x20, 0xff, 0x86, 0x47, 0x20, 0xff, 0x8c, 0x4d, 0x24, 0xff, 0xac, 0x6d, 0x3f, 0xff, 0xb9, 0x79, 0x48, 0xff, 0xba, 0x78, 0x48, 0xff, 0xb5, 0x77, 0x46, 0xff, 0xb2, 0x74, 0x42, 0xff, 0xaf, 0x6f, 0x3f, 0xff, 0xae, 0x6d, 0x3b, 0xff, 0xac, 0x6d, 0x3b, 0xff, 0xa8, 0x6b, 0x39, 0xff, 0xa8, 0x68, 0x37, 0xff, 0xa4, 0x64, 0x34, 0xff, 0xa2, 0x61, 0x33, 0xff, 0xa0, 0x5d, 0x32, 0xff, 0x9f, 0x5d, 0x31, 0xff, 0x9f, 0x5e, 0x32, 0xff, 0x9f, 0x60, 0x33, 0xff, 0xa1, 0x5f, 0x33, 0xff, 0xa0, 0x60, 0x33, 0xff, 0xa0, 0x61, 0x34, 0xff, 0xa0, 0x63, 0x36, 0xff, 0xa1, 0x64, 0x36, 0xff, 0xa2, 0x63, 0x37, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa2, 0x67, 0x39, 0xff, 0xa3, 0x67, 0x38, 0xff, 0xa2, 0x63, 0x36, 0xff, 0xa3, 0x63, 0x36, 0xff, 0xa2, 0x63, 0x35, 0xff, 0xa2, 0x64, 0x35, 0xff, 0xa5, 0x68, 0x37, 0xff, 0xa5, 0x67, 0x35, 0xff, 0xa5, 0x63, 0x33, 0xff, 0xa5, 0x62, 0x32, 0xff, 0xa3, 0x62, 0x30, 0xff, 0xa3, 0x62, 0x30, 0xff, 0xa2, 0x60, 0x30, 0xff, 0xa2, 0x60, 0x30, 0xff, 0xa1, 0x5e, 0x2e, 0xff, 0xa1, 0x5d, 0x2f, 0xff, 0xa0, 0x5d, 0x2e, 0xff, 0x9f, 0x5d, 0x2f, 0xff, 0x9f, 0x5c, 0x2e, 0xff, 0x9f, 0x5c, 0x2e, 0xff, 0x9e, 0x5c, 0x2e, 0xff, 0x9e, 0x5c, 0x2d, 0xff, 0x9d, 0x5a, 0x2c, 0xff, 0x9c, 0x5a, 0x2c, 0xff, 0x9b, 0x5a, 0x2c, 0xff, 0x9b, 0x5a, 0x2d, 0xff, 0x9b, 0x5a, 0x2e, 0xff, 0x9a, 0x5b, 0x2e, 0xff, 0x9a, 0x5a, 0x2e, 0xff, 0x99, 0x5a, 0x2f, 0xff, 0x99, 0x5a, 0x30, 0xff, 0x98, 0x58, 0x30, 0xff, 0x95, 0x57, 0x2f, 0xff, + 0x95, 0x56, 0x2e, 0xff, 0x93, 0x53, 0x2d, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x90, 0x4f, 0x2b, 0xff, 0x92, 0x52, 0x2d, 0xff, 0x91, 0x50, 0x2c, 0xff, 0x89, 0x49, 0x29, 0xff, 0x85, 0x45, 0x22, 0xff, 0x84, 0x46, 0x22, 0xff, 0x8a, 0x4a, 0x28, 0xff, 0x92, 0x51, 0x2c, 0xff, 0x92, 0x51, 0x2c, 0xff, 0x93, 0x51, 0x2c, 0xff, 0x92, 0x52, 0x2c, 0xff, 0x92, 0x50, 0x2c, 0xff, 0x94, 0x52, 0x2d, 0xff, 0x98, 0x58, 0x2f, 0xff, 0x98, 0x57, 0x2e, 0xff, 0x97, 0x57, 0x2f, 0xff, 0x98, 0x59, 0x32, 0xff, 0x99, 0x59, 0x31, 0xff, 0x99, 0x58, 0x31, 0xff, 0x98, 0x58, 0x31, 0xff, 0x99, 0x59, 0x32, 0xff, 0x98, 0x58, 0x32, 0xff, 0x95, 0x56, 0x31, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x94, 0x55, 0x2f, 0xff, 0x95, 0x55, 0x2f, 0xff, 0x94, 0x53, 0x2e, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x93, 0x54, 0x2e, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x98, 0x56, 0x2f, 0xff, 0x9a, 0x59, 0x30, 0xff, 0x9b, 0x5a, 0x31, 0xff, 0x9c, 0x5e, 0x32, 0xff, 0x9f, 0x60, 0x34, 0xff, 0x9f, 0x60, 0x36, 0xff, 0x9e, 0x60, 0x37, 0xff, 0xa6, 0x65, 0x38, 0xff, 0xb4, 0x71, 0x3b, 0xff, 0xb5, 0x73, 0x3d, 0xff, 0xb4, 0x73, 0x3c, 0xff, 0xb5, 0x76, 0x3f, 0xff, 0xb5, 0x78, 0x42, 0xff, 0xb4, 0x79, 0x45, 0xff, 0xb4, 0x7c, 0x47, 0xff, 0xb2, 0x7b, 0x4c, 0xff, 0xb2, 0x7c, 0x4f, 0xff, 0xaf, 0x7b, 0x50, 0xff, 0xae, 0x79, 0x50, 0xff, 0xad, 0x77, 0x4e, 0xff, 0xaa, 0x73, 0x4c, 0xff, 0xa8, 0x71, 0x4b, 0xff, 0xa8, 0x6e, 0x47, 0xff, 0xa7, 0x6d, 0x43, 0xff, 0xa5, 0x6c, 0x3d, 0xff, 0xa2, 0x66, 0x38, 0xff, 0x9f, 0x60, 0x33, 0xff, 0x9b, 0x59, 0x31, 0xff, 0x99, 0x59, 0x30, 0xff, 0x98, 0x59, 0x2f, 0xff, 0x98, 0x57, 0x2f, 0xff, 0x99, 0x58, 0x2f, 0xff, 0x9a, 0x58, 0x2e, 0xff, 0x9d, 0x59, 0x2f, 0xff, 0x9f, 0x5c, 0x30, 0xff, 0xa4, 0x61, 0x32, 0xff, 0xa7, 0x62, 0x33, 0xff, 0xa8, 0x65, 0x34, 0xff, 0xa9, 0x66, 0x34, 0xff, 0xac, 0x6a, 0x37, 0xff, 0xac, 0x69, 0x38, 0xff, 0xa5, 0x61, 0x33, 0xff, 0xa8, 0x63, 0x35, 0xff, 0xa9, 0x65, 0x36, 0xff, 0xab, 0x67, 0x37, 0xff, 0xac, 0x69, 0x37, 0xff, 0xaf, 0x6c, 0x39, 0xff, 0xaf, 0x6c, 0x3a, 0xff, 0xae, 0x6c, 0x3b, 0xff, 0xb2, 0x6f, 0x3f, 0xff, 0xb5, 0x72, 0x40, 0xff, 0xb6, 0x72, 0x41, 0xff, 0xb9, 0x74, 0x43, 0xff, 0xbb, 0x77, 0x46, 0xff, 0xbd, 0x7a, 0x46, 0xff, 0xbe, 0x7d, 0x47, 0xff, 0xd3, 0x89, 0x53, 0xff, 0xf0, 0x99, 0x61, 0xff, 0xed, 0x97, 0x5f, 0xff, 0xed, 0x98, 0x60, 0xff, 0xec, 0x9c, 0x62, 0xff, 0xed, 0xa3, 0x68, 0xff, 0xeb, 0xa1, 0x67, 0xff, 0xeb, 0x9f, 0x66, 0xff, 0xec, 0xa3, 0x69, 0xff, 0xeb, 0xa9, 0x6d, 0xff, 0xec, 0xb2, 0x73, 0xff, 0xee, 0xb8, 0x75, 0xff, 0xed, 0xbc, 0x78, 0xff, 0xec, 0xc9, 0x81, 0xff, 0xe9, 0xdb, 0x8e, 0xff, 0xe5, 0xe0, 0x99, 0xff, 0xe6, 0xe0, 0xa3, 0xff, 0xe7, 0xdf, 0xa6, 0xff, 0xe6, 0xdf, 0xa2, 0xff, 0xe4, 0xe2, 0x9e, 0xff, 0xe5, 0xd1, 0x95, 0xff, 0xea, 0xbb, 0x85, 0xff, 0xed, 0xb9, 0x82, 0xff, 0xec, 0xb5, 0x80, 0xff, 0xed, 0xae, 0x7b, 0xff, 0xec, 0xa7, 0x73, 0xff, 0xe7, 0xa3, 0x6e, 0xff, 0xeb, 0xa3, 0x6e, 0xff, 0xe9, 0x9c, 0x67, 0xff, 0xda, 0x90, 0x5d, 0xff, 0xd0, 0x8b, 0x58, 0xff, 0xc8, 0x86, 0x54, 0xff, 0xbf, 0x7c, 0x4d, 0xff, 0xb8, 0x76, 0x45, 0xff, 0xb3, 0x74, 0x43, 0xff, 0xaf, 0x70, 0x41, 0xff, 0xad, 0x6d, 0x3f, 0xff, 0xab, 0x6c, 0x3f, 0xff, 0xb1, 0x72, 0x43, 0xff, 0xb4, 0x74, 0x44, 0xff, 0xb2, 0x70, 0x42, 0xff, 0xad, 0x6c, 0x40, 0xff, 0xb1, 0x71, 0x42, 0xff, 0xb7, 0x77, 0x47, 0xff, 0xb7, 0x77, 0x47, 0xff, 0xb5, 0x75, 0x44, 0xff, 0xb0, 0x6f, 0x41, 0xff, 0xae, 0x6e, 0x3f, 0xff, 0xae, 0x6d, 0x3f, 0xff, 0xab, 0x69, 0x3e, 0xff, 0xa9, 0x69, 0x3c, 0xff, 0xaa, 0x6b, 0x3e, 0xff, 0xac, 0x6d, 0x40, 0xff, 0xad, 0x6c, 0x3f, 0xff, 0xac, 0x6b, 0x3e, 0xff, 0xab, 0x6b, 0x3d, 0xff, 0xaa, 0x6a, 0x3e, 0xff, 0xaa, 0x6a, 0x3d, 0xff, 0xa9, 0x69, 0x3e, 0xff, 0xa8, 0x69, 0x3d, 0xff, 0xac, 0x6c, 0x40, 0xff, 0xa0, 0x61, 0x37, 0xff, 0x8c, 0x4e, 0x2a, 0xff, 0x87, 0x47, 0x23, 0xff, 0x86, 0x47, 0x22, 0xff, 0x85, 0x47, 0x21, 0xff, 0x84, 0x45, 0x21, 0xff, 0x83, 0x43, 0x1f, 0xff, 0x83, 0x43, 0x1e, 0xff, 0x80, 0x42, 0x1d, 0xff, 0x7e, 0x40, 0x1b, 0xff, 0x7d, 0x3e, 0x1c, 0xff, 0x7c, 0x3d, 0x19, 0xff, 0x7a, 0x3e, 0x15, 0xff, 0x7a, 0x3d, 0x14, 0xff, 0x79, 0x3b, 0x14, 0xff, 0x7a, 0x3b, 0x14, 0xff, 0x7a, 0x3b, 0x13, 0xff, 0x7b, 0x3c, 0x13, 0xff, 0x7c, 0x3e, 0x16, 0xff, 0x7d, 0x3f, 0x16, 0xff, 0x7e, 0x40, 0x17, 0xff, 0x82, 0x43, 0x1b, 0xff, 0x83, 0x46, 0x1d, 0xff, 0x85, 0x48, 0x20, 0xff, 0x86, 0x47, 0x1e, 0xff, 0x87, 0x46, 0x1f, 0xff, 0x88, 0x48, 0x22, 0xff, 0xa4, 0x66, 0x3a, 0xff, 0xb7, 0x77, 0x48, 0xff, 0xbc, 0x7b, 0x4b, 0xff, 0xb9, 0x79, 0x4a, 0xff, 0xb6, 0x79, 0x48, 0xff, 0xb2, 0x73, 0x41, 0xff, 0xb0, 0x70, 0x3d, 0xff, 0xae, 0x6e, 0x3c, 0xff, 0xac, 0x6c, 0x3b, 0xff, 0xaa, 0x6a, 0x39, 0xff, 0xa6, 0x65, 0x37, 0xff, 0xa3, 0x62, 0x34, 0xff, 0xa1, 0x60, 0x33, 0xff, 0xa1, 0x5f, 0x33, 0xff, 0xa2, 0x60, 0x33, 0xff, 0xa1, 0x62, 0x34, 0xff, 0xa2, 0x60, 0x34, 0xff, 0xa1, 0x62, 0x35, 0xff, 0xa2, 0x63, 0x37, 0xff, 0xa2, 0x64, 0x37, 0xff, 0xa2, 0x64, 0x37, 0xff, 0xa2, 0x65, 0x38, 0xff, 0xa2, 0x67, 0x39, 0xff, 0xa3, 0x67, 0x38, 0xff, 0xa3, 0x67, 0x38, 0xff, 0xa3, 0x64, 0x36, 0xff, 0xa2, 0x62, 0x36, 0xff, 0xa2, 0x63, 0x35, 0xff, 0xa2, 0x67, 0x36, 0xff, 0xa5, 0x6a, 0x37, 0xff, 0xa5, 0x67, 0x36, 0xff, 0xa5, 0x65, 0x34, 0xff, 0xa5, 0x63, 0x33, 0xff, 0xa5, 0x62, 0x31, 0xff, 0xa5, 0x62, 0x31, 0xff, 0xa4, 0x62, 0x2f, 0xff, 0xa3, 0x60, 0x2f, 0xff, 0xa2, 0x60, 0x30, 0xff, 0xa2, 0x5f, 0x2e, 0xff, 0xa0, 0x5e, 0x2d, 0xff, 0x9f, 0x5d, 0x2e, 0xff, 0xa0, 0x5c, 0x2d, 0xff, 0x9f, 0x5e, 0x2e, 0xff, 0xa1, 0x5e, 0x2e, 0xff, 0xa1, 0x5e, 0x2e, 0xff, 0xa0, 0x5d, 0x2f, 0xff, 0xa0, 0x5d, 0x2f, 0xff, 0x9e, 0x5d, 0x2d, 0xff, 0x9b, 0x5a, 0x2e, 0xff, 0x9b, 0x5a, 0x2e, 0xff, 0x9a, 0x5a, 0x2f, 0xff, 0x9a, 0x5a, 0x2f, 0xff, 0x9b, 0x59, 0x30, 0xff, 0x99, 0x5a, 0x2e, 0xff, 0x98, 0x5a, 0x30, 0xff, 0x96, 0x58, 0x2e, 0xff, + 0x95, 0x56, 0x2e, 0xff, 0x93, 0x53, 0x2d, 0xff, 0x93, 0x53, 0x2d, 0xff, 0x93, 0x52, 0x2e, 0xff, 0x92, 0x51, 0x2d, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x87, 0x47, 0x26, 0xff, 0x85, 0x46, 0x22, 0xff, 0x84, 0x44, 0x22, 0xff, 0x83, 0x44, 0x22, 0xff, 0x92, 0x53, 0x2e, 0xff, 0x92, 0x51, 0x2d, 0xff, 0x93, 0x52, 0x2d, 0xff, 0x91, 0x50, 0x2c, 0xff, 0x92, 0x52, 0x2c, 0xff, 0x92, 0x52, 0x2c, 0xff, 0x97, 0x57, 0x2e, 0xff, 0x98, 0x57, 0x2e, 0xff, 0x98, 0x58, 0x2f, 0xff, 0x99, 0x59, 0x2f, 0xff, 0x98, 0x59, 0x32, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x98, 0x5b, 0x33, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x98, 0x5a, 0x32, 0xff, 0x97, 0x59, 0x32, 0xff, 0x95, 0x56, 0x2f, 0xff, 0x96, 0x57, 0x2f, 0xff, 0x95, 0x54, 0x2e, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x96, 0x57, 0x2f, 0xff, 0x99, 0x59, 0x2f, 0xff, 0x9b, 0x5a, 0x31, 0xff, 0x9b, 0x5a, 0x33, 0xff, 0x9d, 0x5d, 0x32, 0xff, 0x9e, 0x5f, 0x35, 0xff, 0x9f, 0x60, 0x38, 0xff, 0x9d, 0x61, 0x37, 0xff, 0xad, 0x6b, 0x3a, 0xff, 0xbf, 0x7c, 0x44, 0xff, 0xbd, 0x7b, 0x44, 0xff, 0xbe, 0x7c, 0x45, 0xff, 0xbe, 0x7c, 0x45, 0xff, 0xbd, 0x7e, 0x46, 0xff, 0xbe, 0x80, 0x47, 0xff, 0xbd, 0x82, 0x4a, 0xff, 0xbc, 0x84, 0x4d, 0xff, 0xba, 0x82, 0x4f, 0xff, 0xb9, 0x83, 0x51, 0xff, 0xb6, 0x81, 0x52, 0xff, 0xb3, 0x7e, 0x52, 0xff, 0xb0, 0x7b, 0x4f, 0xff, 0xaf, 0x78, 0x4c, 0xff, 0xad, 0x75, 0x48, 0xff, 0xab, 0x71, 0x44, 0xff, 0xa9, 0x6d, 0x3e, 0xff, 0xa5, 0x67, 0x39, 0xff, 0xa1, 0x61, 0x34, 0xff, 0x9f, 0x5e, 0x32, 0xff, 0x9e, 0x5c, 0x31, 0xff, 0x9c, 0x5a, 0x31, 0xff, 0x9b, 0x5a, 0x2f, 0xff, 0x9d, 0x5c, 0x2f, 0xff, 0x9e, 0x5c, 0x2f, 0xff, 0xa0, 0x5d, 0x31, 0xff, 0xa3, 0x60, 0x32, 0xff, 0xa5, 0x62, 0x34, 0xff, 0xa8, 0x66, 0x35, 0xff, 0xa9, 0x65, 0x34, 0xff, 0xac, 0x68, 0x36, 0xff, 0xac, 0x68, 0x38, 0xff, 0xa5, 0x63, 0x33, 0xff, 0xa9, 0x68, 0x36, 0xff, 0xae, 0x6d, 0x39, 0xff, 0xb0, 0x6d, 0x3a, 0xff, 0xb2, 0x6d, 0x3c, 0xff, 0xb4, 0x70, 0x3e, 0xff, 0xb6, 0x73, 0x3f, 0xff, 0xb4, 0x71, 0x3f, 0xff, 0xb5, 0x71, 0x40, 0xff, 0xb8, 0x74, 0x42, 0xff, 0xb9, 0x75, 0x43, 0xff, 0xba, 0x77, 0x44, 0xff, 0xbc, 0x79, 0x45, 0xff, 0xbf, 0x7a, 0x48, 0xff, 0xc0, 0x7c, 0x49, 0xff, 0xc2, 0x7e, 0x49, 0xff, 0xc7, 0x82, 0x4d, 0xff, 0xd8, 0x8c, 0x57, 0xff, 0xeb, 0x98, 0x61, 0xff, 0xed, 0x9b, 0x64, 0xff, 0xed, 0x9e, 0x65, 0xff, 0xeb, 0xa0, 0x67, 0xff, 0xeb, 0x9e, 0x65, 0xff, 0xed, 0x9d, 0x66, 0xff, 0xed, 0xa5, 0x69, 0xff, 0xeb, 0xa9, 0x6c, 0xff, 0xea, 0xac, 0x6e, 0xff, 0xea, 0xae, 0x70, 0xff, 0xeb, 0xb1, 0x74, 0xff, 0xec, 0xb8, 0x78, 0xff, 0xec, 0xbd, 0x7b, 0xff, 0xec, 0xc5, 0x80, 0xff, 0xeb, 0xd1, 0x89, 0xff, 0xed, 0xd9, 0x8f, 0xff, 0xec, 0xdc, 0x8d, 0xff, 0xe9, 0xce, 0x85, 0xff, 0xe8, 0xb1, 0x79, 0xff, 0xed, 0xa6, 0x72, 0xff, 0xee, 0xa8, 0x72, 0xff, 0xee, 0xa7, 0x72, 0xff, 0xed, 0xa3, 0x70, 0xff, 0xe6, 0x9d, 0x6b, 0xff, 0xdb, 0x97, 0x64, 0xff, 0xe0, 0x9a, 0x65, 0xff, 0xe8, 0x9b, 0x65, 0xff, 0xdd, 0x91, 0x5d, 0xff, 0xd3, 0x8b, 0x58, 0xff, 0xca, 0x85, 0x53, 0xff, 0xc0, 0x7f, 0x4e, 0xff, 0xba, 0x7b, 0x4a, 0xff, 0xb6, 0x76, 0x46, 0xff, 0xb2, 0x73, 0x42, 0xff, 0xaf, 0x70, 0x40, 0xff, 0xae, 0x70, 0x40, 0xff, 0xb4, 0x74, 0x43, 0xff, 0xb8, 0x76, 0x45, 0xff, 0xb6, 0x75, 0x45, 0xff, 0xb2, 0x71, 0x42, 0xff, 0xae, 0x6c, 0x3f, 0xff, 0xaf, 0x6e, 0x40, 0xff, 0xb7, 0x74, 0x46, 0xff, 0xb8, 0x76, 0x47, 0xff, 0xb3, 0x75, 0x42, 0xff, 0xb1, 0x70, 0x42, 0xff, 0xad, 0x6c, 0x40, 0xff, 0xaa, 0x6a, 0x3e, 0xff, 0xab, 0x69, 0x3d, 0xff, 0xab, 0x6b, 0x3f, 0xff, 0xac, 0x6c, 0x3f, 0xff, 0xad, 0x6d, 0x40, 0xff, 0xad, 0x6c, 0x3f, 0xff, 0xad, 0x6b, 0x3f, 0xff, 0xad, 0x6d, 0x3f, 0xff, 0xad, 0x6c, 0x40, 0xff, 0xad, 0x6c, 0x3f, 0xff, 0xaf, 0x6e, 0x42, 0xff, 0x9f, 0x60, 0x37, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x8e, 0x4f, 0x2a, 0xff, 0x8d, 0x4e, 0x29, 0xff, 0x89, 0x4b, 0x26, 0xff, 0x89, 0x48, 0x24, 0xff, 0x89, 0x48, 0x23, 0xff, 0x86, 0x47, 0x1f, 0xff, 0x84, 0x44, 0x1f, 0xff, 0x83, 0x43, 0x1f, 0xff, 0x82, 0x42, 0x1f, 0xff, 0x81, 0x41, 0x1d, 0xff, 0x80, 0x40, 0x1d, 0xff, 0x7e, 0x3e, 0x19, 0xff, 0x7b, 0x3c, 0x16, 0xff, 0x7c, 0x3c, 0x14, 0xff, 0x7c, 0x3c, 0x15, 0xff, 0x7b, 0x3c, 0x16, 0xff, 0x7b, 0x3c, 0x16, 0xff, 0x7c, 0x3d, 0x16, 0xff, 0x7e, 0x3f, 0x17, 0xff, 0x80, 0x40, 0x18, 0xff, 0x82, 0x42, 0x1b, 0xff, 0x84, 0x45, 0x1e, 0xff, 0x85, 0x49, 0x1f, 0xff, 0x85, 0x48, 0x20, 0xff, 0x87, 0x48, 0x22, 0xff, 0x85, 0x45, 0x20, 0xff, 0xa1, 0x62, 0x39, 0xff, 0xb6, 0x77, 0x48, 0xff, 0xbc, 0x7c, 0x4b, 0xff, 0xbb, 0x7c, 0x4b, 0xff, 0xb8, 0x7a, 0x4c, 0xff, 0xb7, 0x78, 0x48, 0xff, 0xb5, 0x74, 0x43, 0xff, 0xb1, 0x6f, 0x3e, 0xff, 0xaf, 0x6d, 0x3c, 0xff, 0xab, 0x6b, 0x3a, 0xff, 0xa8, 0x67, 0x37, 0xff, 0xa5, 0x63, 0x37, 0xff, 0xa5, 0x62, 0x35, 0xff, 0xa3, 0x63, 0x35, 0xff, 0xa3, 0x62, 0x35, 0xff, 0xa3, 0x63, 0x35, 0xff, 0xa3, 0x63, 0x36, 0xff, 0xa4, 0x65, 0x37, 0xff, 0xa4, 0x65, 0x37, 0xff, 0xa3, 0x65, 0x38, 0xff, 0xa2, 0x64, 0x37, 0xff, 0xa3, 0x67, 0x39, 0xff, 0xa3, 0x68, 0x3a, 0xff, 0xa2, 0x67, 0x38, 0xff, 0xa4, 0x65, 0x37, 0xff, 0xa2, 0x64, 0x37, 0xff, 0xa3, 0x64, 0x36, 0xff, 0xa2, 0x62, 0x33, 0xff, 0xa4, 0x68, 0x39, 0xff, 0xa4, 0x69, 0x38, 0xff, 0xa4, 0x67, 0x36, 0xff, 0xa5, 0x65, 0x34, 0xff, 0xa4, 0x64, 0x32, 0xff, 0xa7, 0x63, 0x32, 0xff, 0xa7, 0x65, 0x31, 0xff, 0xa4, 0x61, 0x31, 0xff, 0xa4, 0x62, 0x2f, 0xff, 0xa4, 0x60, 0x2e, 0xff, 0xa2, 0x5f, 0x2e, 0xff, 0xa2, 0x5e, 0x2e, 0xff, 0xa1, 0x5e, 0x2e, 0xff, 0x9f, 0x5e, 0x2e, 0xff, 0xa1, 0x5e, 0x2e, 0xff, 0xa1, 0x5d, 0x2e, 0xff, 0xa0, 0x5f, 0x2f, 0xff, 0xa1, 0x5f, 0x2f, 0xff, 0xa0, 0x60, 0x2f, 0xff, 0xa2, 0x60, 0x30, 0xff, 0xa0, 0x60, 0x2f, 0xff, 0x9d, 0x5d, 0x2e, 0xff, 0x9d, 0x5c, 0x30, 0xff, 0x9b, 0x5c, 0x30, 0xff, 0x9b, 0x59, 0x30, 0xff, 0x99, 0x5a, 0x30, 0xff, 0x98, 0x59, 0x2f, 0xff, 0x95, 0x56, 0x2f, 0xff, + 0x97, 0x56, 0x2e, 0xff, 0x97, 0x57, 0x2f, 0xff, 0x96, 0x56, 0x2e, 0xff, 0x93, 0x52, 0x2d, 0xff, 0x91, 0x52, 0x2c, 0xff, 0x90, 0x4f, 0x2c, 0xff, 0x88, 0x4b, 0x26, 0xff, 0x86, 0x46, 0x26, 0xff, 0x85, 0x46, 0x22, 0xff, 0x84, 0x45, 0x22, 0xff, 0x86, 0x47, 0x25, 0xff, 0x94, 0x53, 0x2f, 0xff, 0x92, 0x51, 0x2d, 0xff, 0x93, 0x51, 0x2d, 0xff, 0x93, 0x52, 0x2d, 0xff, 0x91, 0x50, 0x2c, 0xff, 0x92, 0x51, 0x2c, 0xff, 0x97, 0x56, 0x2f, 0xff, 0x99, 0x58, 0x2f, 0xff, 0x99, 0x59, 0x2f, 0xff, 0x98, 0x59, 0x30, 0xff, 0x98, 0x59, 0x31, 0xff, 0x99, 0x59, 0x32, 0xff, 0x98, 0x59, 0x32, 0xff, 0x98, 0x59, 0x32, 0xff, 0x98, 0x59, 0x31, 0xff, 0x98, 0x59, 0x32, 0xff, 0x96, 0x57, 0x2f, 0xff, 0x96, 0x56, 0x2f, 0xff, 0x96, 0x56, 0x2f, 0xff, 0x94, 0x53, 0x2e, 0xff, 0x95, 0x54, 0x2f, 0xff, 0x96, 0x56, 0x2f, 0xff, 0x99, 0x58, 0x2f, 0xff, 0x9b, 0x5a, 0x30, 0xff, 0x9b, 0x5a, 0x31, 0xff, 0x9b, 0x5c, 0x32, 0xff, 0x9e, 0x5f, 0x34, 0xff, 0x9f, 0x61, 0x37, 0xff, 0x9f, 0x60, 0x39, 0xff, 0xa0, 0x62, 0x37, 0xff, 0xbf, 0x7a, 0x44, 0xff, 0xd1, 0x8a, 0x4f, 0xff, 0xd0, 0x88, 0x4f, 0xff, 0xd0, 0x89, 0x4f, 0xff, 0xd0, 0x88, 0x4f, 0xff, 0xcf, 0x88, 0x4f, 0xff, 0xce, 0x89, 0x4f, 0xff, 0xcd, 0x8b, 0x51, 0xff, 0xcb, 0x8c, 0x52, 0xff, 0xc9, 0x8d, 0x53, 0xff, 0xc6, 0x8d, 0x53, 0xff, 0xc3, 0x89, 0x51, 0xff, 0xbd, 0x85, 0x4f, 0xff, 0xba, 0x81, 0x4d, 0xff, 0xb7, 0x7d, 0x49, 0xff, 0xb3, 0x77, 0x44, 0xff, 0xaf, 0x73, 0x40, 0xff, 0xad, 0x6e, 0x3d, 0xff, 0xa9, 0x69, 0x39, 0xff, 0xa4, 0x63, 0x36, 0xff, 0xa4, 0x63, 0x35, 0xff, 0xa3, 0x61, 0x34, 0xff, 0xa2, 0x60, 0x33, 0xff, 0xa2, 0x61, 0x33, 0xff, 0xa3, 0x5f, 0x34, 0xff, 0xa4, 0x62, 0x34, 0xff, 0xa5, 0x63, 0x34, 0xff, 0xa7, 0x63, 0x34, 0xff, 0xa9, 0x65, 0x36, 0xff, 0xaa, 0x66, 0x36, 0xff, 0xa8, 0x66, 0x35, 0xff, 0xa6, 0x63, 0x35, 0xff, 0xa6, 0x63, 0x35, 0xff, 0xaa, 0x68, 0x38, 0xff, 0xad, 0x6c, 0x3a, 0xff, 0xb2, 0x71, 0x3e, 0xff, 0xb6, 0x73, 0x40, 0xff, 0xb9, 0x74, 0x42, 0xff, 0xbd, 0x79, 0x46, 0xff, 0xbe, 0x7a, 0x46, 0xff, 0xbb, 0x78, 0x45, 0xff, 0xbc, 0x79, 0x45, 0xff, 0xbf, 0x79, 0x46, 0xff, 0xbf, 0x7a, 0x47, 0xff, 0xbe, 0x7a, 0x46, 0xff, 0xc0, 0x7c, 0x47, 0xff, 0xc2, 0x7d, 0x4a, 0xff, 0xc2, 0x7f, 0x4a, 0xff, 0xc6, 0x80, 0x4d, 0xff, 0xcd, 0x83, 0x50, 0xff, 0xd5, 0x88, 0x53, 0xff, 0xdf, 0x90, 0x59, 0xff, 0xea, 0x9a, 0x63, 0xff, 0xee, 0xa0, 0x69, 0xff, 0xed, 0x9e, 0x67, 0xff, 0xec, 0x9d, 0x66, 0xff, 0xec, 0xa0, 0x67, 0xff, 0xec, 0xa1, 0x68, 0xff, 0xed, 0xa7, 0x6a, 0xff, 0xee, 0xab, 0x6f, 0xff, 0xec, 0xb0, 0x74, 0xff, 0xea, 0xb0, 0x75, 0xff, 0xeb, 0xaf, 0x72, 0xff, 0xed, 0xad, 0x6f, 0xff, 0xee, 0xae, 0x70, 0xff, 0xed, 0xb1, 0x73, 0xff, 0xec, 0xb1, 0x76, 0xff, 0xea, 0xb4, 0x77, 0xff, 0xe0, 0xa5, 0x6d, 0xff, 0xdd, 0x95, 0x63, 0xff, 0xe4, 0x9a, 0x65, 0xff, 0xe6, 0x9a, 0x67, 0xff, 0xe5, 0x9a, 0x66, 0xff, 0xde, 0x97, 0x64, 0xff, 0xd8, 0x94, 0x60, 0xff, 0xcf, 0x8f, 0x5b, 0xff, 0xda, 0x94, 0x60, 0xff, 0xe9, 0x9a, 0x63, 0xff, 0xe0, 0x92, 0x5d, 0xff, 0xcf, 0x89, 0x56, 0xff, 0xc3, 0x82, 0x50, 0xff, 0xc0, 0x7e, 0x4d, 0xff, 0xbe, 0x7b, 0x4c, 0xff, 0xba, 0x7a, 0x48, 0xff, 0xb6, 0x76, 0x45, 0xff, 0xb3, 0x74, 0x43, 0xff, 0xb2, 0x73, 0x42, 0xff, 0xb6, 0x75, 0x44, 0xff, 0xbb, 0x79, 0x48, 0xff, 0xba, 0x78, 0x48, 0xff, 0xb6, 0x74, 0x44, 0xff, 0xb2, 0x72, 0x41, 0xff, 0xb0, 0x6e, 0x41, 0xff, 0xb0, 0x6f, 0x40, 0xff, 0xb1, 0x70, 0x41, 0xff, 0xb2, 0x71, 0x43, 0xff, 0xb2, 0x72, 0x44, 0xff, 0xaf, 0x70, 0x42, 0xff, 0xad, 0x6d, 0x40, 0xff, 0xac, 0x6c, 0x3f, 0xff, 0xad, 0x6c, 0x3f, 0xff, 0xad, 0x6c, 0x40, 0xff, 0xb0, 0x6f, 0x42, 0xff, 0xb1, 0x70, 0x42, 0xff, 0xb0, 0x6f, 0x42, 0xff, 0xb0, 0x6e, 0x42, 0xff, 0xaf, 0x6f, 0x42, 0xff, 0xac, 0x6d, 0x41, 0xff, 0xa2, 0x61, 0x36, 0xff, 0x99, 0x59, 0x30, 0xff, 0x96, 0x57, 0x2e, 0xff, 0x94, 0x54, 0x2d, 0xff, 0x91, 0x52, 0x2c, 0xff, 0x8e, 0x4e, 0x2b, 0xff, 0x8c, 0x4c, 0x29, 0xff, 0x8a, 0x4a, 0x27, 0xff, 0x8a, 0x49, 0x23, 0xff, 0x88, 0x47, 0x20, 0xff, 0x86, 0x44, 0x20, 0xff, 0x83, 0x44, 0x20, 0xff, 0x83, 0x44, 0x1f, 0xff, 0x83, 0x44, 0x1f, 0xff, 0x82, 0x42, 0x1c, 0xff, 0x80, 0x41, 0x1a, 0xff, 0x7d, 0x3e, 0x17, 0xff, 0x7b, 0x3d, 0x16, 0xff, 0x7c, 0x3d, 0x16, 0xff, 0x7b, 0x3d, 0x16, 0xff, 0x7d, 0x3f, 0x16, 0xff, 0x80, 0x41, 0x17, 0xff, 0x83, 0x43, 0x1a, 0xff, 0x82, 0x45, 0x1c, 0xff, 0x83, 0x43, 0x1e, 0xff, 0x85, 0x45, 0x1e, 0xff, 0x86, 0x47, 0x21, 0xff, 0x88, 0x49, 0x22, 0xff, 0x85, 0x47, 0x21, 0xff, 0x97, 0x5a, 0x30, 0xff, 0xb2, 0x76, 0x46, 0xff, 0xbb, 0x7c, 0x4b, 0xff, 0xbe, 0x7c, 0x4c, 0xff, 0xbc, 0x7e, 0x4d, 0xff, 0xb9, 0x7d, 0x4d, 0xff, 0xb7, 0x7b, 0x48, 0xff, 0xb7, 0x77, 0x44, 0xff, 0xb1, 0x71, 0x3e, 0xff, 0xac, 0x6c, 0x3a, 0xff, 0xa9, 0x69, 0x39, 0xff, 0xa8, 0x69, 0x39, 0xff, 0xa7, 0x67, 0x39, 0xff, 0xa8, 0x67, 0x39, 0xff, 0xaa, 0x69, 0x3b, 0xff, 0xab, 0x6a, 0x3e, 0xff, 0xac, 0x6c, 0x3e, 0xff, 0xac, 0x6c, 0x3f, 0xff, 0xac, 0x6d, 0x3f, 0xff, 0xab, 0x6c, 0x3f, 0xff, 0xab, 0x6c, 0x3f, 0xff, 0xac, 0x6c, 0x40, 0xff, 0xac, 0x6c, 0x40, 0xff, 0xab, 0x6b, 0x3f, 0xff, 0xab, 0x6b, 0x3c, 0xff, 0xab, 0x6a, 0x3c, 0xff, 0xa9, 0x6a, 0x39, 0xff, 0xa8, 0x66, 0x39, 0xff, 0xaa, 0x6d, 0x3d, 0xff, 0xa9, 0x6c, 0x3a, 0xff, 0xa8, 0x6b, 0x38, 0xff, 0xa8, 0x68, 0x36, 0xff, 0xa8, 0x68, 0x35, 0xff, 0xa8, 0x66, 0x34, 0xff, 0xa7, 0x66, 0x32, 0xff, 0xa5, 0x64, 0x31, 0xff, 0xa5, 0x63, 0x2f, 0xff, 0xa4, 0x61, 0x2f, 0xff, 0xa3, 0x60, 0x2f, 0xff, 0xa2, 0x60, 0x2e, 0xff, 0xa2, 0x5e, 0x2f, 0xff, 0xa1, 0x5f, 0x2f, 0xff, 0xa2, 0x60, 0x2f, 0xff, 0xa2, 0x61, 0x2f, 0xff, 0xa1, 0x60, 0x2f, 0xff, 0xa1, 0x60, 0x2f, 0xff, 0xa5, 0x61, 0x31, 0xff, 0xa2, 0x61, 0x30, 0xff, 0xa2, 0x62, 0x31, 0xff, 0xa1, 0x63, 0x32, 0xff, 0x9e, 0x5e, 0x2f, 0xff, 0x9b, 0x5d, 0x2f, 0xff, 0x9b, 0x5b, 0x30, 0xff, 0x99, 0x5c, 0x30, 0xff, 0x99, 0x5b, 0x2f, 0xff, 0x97, 0x59, 0x2e, 0xff, + 0x99, 0x59, 0x2f, 0xff, 0x99, 0x58, 0x2e, 0xff, 0x96, 0x56, 0x2e, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x92, 0x53, 0x2d, 0xff, 0x91, 0x52, 0x2d, 0xff, 0x8a, 0x4c, 0x29, 0xff, 0x87, 0x48, 0x27, 0xff, 0x85, 0x46, 0x24, 0xff, 0x84, 0x45, 0x22, 0xff, 0x84, 0x45, 0x22, 0xff, 0x8a, 0x4c, 0x27, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x93, 0x51, 0x2d, 0xff, 0x92, 0x51, 0x2d, 0xff, 0x91, 0x50, 0x2c, 0xff, 0x8f, 0x4f, 0x2b, 0xff, 0x91, 0x50, 0x2c, 0xff, 0x98, 0x59, 0x2f, 0xff, 0x98, 0x58, 0x2e, 0xff, 0x98, 0x58, 0x2f, 0xff, 0x98, 0x58, 0x2f, 0xff, 0x98, 0x59, 0x2f, 0xff, 0x97, 0x59, 0x30, 0xff, 0x97, 0x58, 0x2f, 0xff, 0x99, 0x59, 0x32, 0xff, 0x97, 0x59, 0x30, 0xff, 0x96, 0x57, 0x2f, 0xff, 0x95, 0x56, 0x2f, 0xff, 0x96, 0x57, 0x2f, 0xff, 0x97, 0x55, 0x2f, 0xff, 0x97, 0x55, 0x2f, 0xff, 0x98, 0x58, 0x2f, 0xff, 0x99, 0x5a, 0x2f, 0xff, 0x9a, 0x59, 0x30, 0xff, 0x9d, 0x5c, 0x32, 0xff, 0x9d, 0x5d, 0x33, 0xff, 0x9f, 0x5f, 0x36, 0xff, 0x9e, 0x60, 0x36, 0xff, 0x9e, 0x60, 0x38, 0xff, 0xac, 0x69, 0x3e, 0xff, 0xe2, 0x95, 0x57, 0xff, 0xe4, 0x93, 0x55, 0xff, 0xea, 0x95, 0x5a, 0xff, 0xea, 0x9b, 0x5d, 0xff, 0xea, 0x9b, 0x5f, 0xff, 0xe8, 0x9c, 0x5f, 0xff, 0xe8, 0x9c, 0x5f, 0xff, 0xe7, 0x9b, 0x5d, 0xff, 0xe6, 0x9c, 0x5d, 0xff, 0xe4, 0x9a, 0x5d, 0xff, 0xe1, 0x98, 0x5b, 0xff, 0xdc, 0x95, 0x58, 0xff, 0xd2, 0x8d, 0x55, 0xff, 0xcc, 0x88, 0x51, 0xff, 0xc2, 0x85, 0x4e, 0xff, 0xbd, 0x7f, 0x4a, 0xff, 0xba, 0x7c, 0x44, 0xff, 0xb6, 0x76, 0x43, 0xff, 0xaf, 0x6e, 0x3e, 0xff, 0xab, 0x6a, 0x3b, 0xff, 0xab, 0x69, 0x39, 0xff, 0xa9, 0x69, 0x38, 0xff, 0xa8, 0x68, 0x38, 0xff, 0xa9, 0x69, 0x38, 0xff, 0xa9, 0x69, 0x39, 0xff, 0xa9, 0x69, 0x3a, 0xff, 0xa9, 0x69, 0x38, 0xff, 0xa8, 0x68, 0x38, 0xff, 0xa2, 0x5e, 0x32, 0xff, 0xa2, 0x5f, 0x32, 0xff, 0xa1, 0x5f, 0x31, 0xff, 0xa5, 0x63, 0x33, 0xff, 0xac, 0x68, 0x37, 0xff, 0xaf, 0x6c, 0x39, 0xff, 0xb2, 0x70, 0x3d, 0xff, 0xb8, 0x75, 0x42, 0xff, 0xbd, 0x79, 0x45, 0xff, 0xc1, 0x7e, 0x48, 0xff, 0xc5, 0x81, 0x4b, 0xff, 0xc4, 0x80, 0x4b, 0xff, 0xc2, 0x7f, 0x49, 0xff, 0xc6, 0x81, 0x4b, 0xff, 0xc7, 0x81, 0x4b, 0xff, 0xc4, 0x7e, 0x4a, 0xff, 0xc5, 0x7f, 0x4b, 0xff, 0xc8, 0x80, 0x4c, 0xff, 0xc9, 0x80, 0x4c, 0xff, 0xc9, 0x81, 0x4d, 0xff, 0xce, 0x85, 0x50, 0xff, 0xd6, 0x88, 0x53, 0xff, 0xde, 0x8d, 0x57, 0xff, 0xe3, 0x8f, 0x58, 0xff, 0xe8, 0x93, 0x5c, 0xff, 0xe9, 0x9a, 0x63, 0xff, 0xe8, 0x9c, 0x66, 0xff, 0xee, 0xa1, 0x68, 0xff, 0xec, 0xa3, 0x69, 0xff, 0xec, 0xa5, 0x6a, 0xff, 0xed, 0xa7, 0x6b, 0xff, 0xed, 0xa8, 0x6c, 0xff, 0xed, 0xab, 0x6f, 0xff, 0xec, 0xae, 0x73, 0xff, 0xeb, 0xae, 0x73, 0xff, 0xeb, 0xac, 0x6f, 0xff, 0xec, 0xa9, 0x6c, 0xff, 0xec, 0xa8, 0x6a, 0xff, 0xec, 0xa8, 0x6b, 0xff, 0xdc, 0x9b, 0x64, 0xff, 0xc5, 0x88, 0x57, 0xff, 0xc7, 0x88, 0x57, 0xff, 0xcc, 0x8c, 0x5a, 0xff, 0xcd, 0x8d, 0x5b, 0xff, 0xcd, 0x8c, 0x5a, 0xff, 0xc9, 0x8a, 0x57, 0xff, 0xc5, 0x88, 0x56, 0xff, 0xc2, 0x85, 0x53, 0xff, 0xc5, 0x85, 0x53, 0xff, 0xd6, 0x8e, 0x59, 0xff, 0xd4, 0x8d, 0x59, 0xff, 0xc4, 0x83, 0x51, 0xff, 0xbf, 0x7f, 0x4e, 0xff, 0xbe, 0x7c, 0x4c, 0xff, 0xbe, 0x7b, 0x4b, 0xff, 0xbc, 0x7c, 0x4a, 0xff, 0xb9, 0x79, 0x48, 0xff, 0xb7, 0x77, 0x45, 0xff, 0xb5, 0x74, 0x42, 0xff, 0xb9, 0x7a, 0x47, 0xff, 0xc1, 0x7e, 0x4c, 0xff, 0xbf, 0x7c, 0x4b, 0xff, 0xba, 0x78, 0x47, 0xff, 0xb7, 0x74, 0x44, 0xff, 0xb5, 0x73, 0x43, 0xff, 0xb3, 0x72, 0x43, 0xff, 0xae, 0x6c, 0x3f, 0xff, 0xac, 0x6d, 0x40, 0xff, 0xaf, 0x70, 0x42, 0xff, 0xaf, 0x70, 0x42, 0xff, 0xae, 0x6f, 0x41, 0xff, 0xae, 0x6e, 0x41, 0xff, 0xad, 0x6e, 0x41, 0xff, 0xae, 0x6f, 0x41, 0xff, 0xae, 0x6e, 0x40, 0xff, 0xaf, 0x6f, 0x41, 0xff, 0xb0, 0x6f, 0x42, 0xff, 0xaf, 0x70, 0x43, 0xff, 0xaa, 0x6a, 0x3e, 0xff, 0xa3, 0x61, 0x35, 0xff, 0x9f, 0x5f, 0x33, 0xff, 0x9e, 0x5f, 0x34, 0xff, 0x9d, 0x5e, 0x34, 0xff, 0x9b, 0x5c, 0x32, 0xff, 0x98, 0x58, 0x30, 0xff, 0x95, 0x55, 0x2e, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x8e, 0x4e, 0x2a, 0xff, 0x8c, 0x4c, 0x27, 0xff, 0x8b, 0x4b, 0x23, 0xff, 0x89, 0x49, 0x21, 0xff, 0x88, 0x47, 0x1f, 0xff, 0x87, 0x46, 0x20, 0xff, 0x85, 0x46, 0x20, 0xff, 0x83, 0x45, 0x1f, 0xff, 0x82, 0x43, 0x1d, 0xff, 0x81, 0x41, 0x19, 0xff, 0x7f, 0x3f, 0x18, 0xff, 0x7e, 0x40, 0x17, 0xff, 0x7f, 0x3f, 0x16, 0xff, 0x81, 0x40, 0x16, 0xff, 0x82, 0x42, 0x17, 0xff, 0x82, 0x43, 0x1a, 0xff, 0x83, 0x43, 0x1d, 0xff, 0x83, 0x43, 0x1e, 0xff, 0x84, 0x44, 0x1f, 0xff, 0x87, 0x47, 0x21, 0xff, 0x88, 0x49, 0x22, 0xff, 0x88, 0x4b, 0x25, 0xff, 0x85, 0x46, 0x20, 0xff, 0xaa, 0x6c, 0x40, 0xff, 0xba, 0x7c, 0x4c, 0xff, 0xc0, 0x80, 0x4e, 0xff, 0xbf, 0x80, 0x4e, 0xff, 0xbc, 0x7f, 0x4f, 0xff, 0xba, 0x7e, 0x4f, 0xff, 0xb6, 0x78, 0x47, 0xff, 0xb0, 0x70, 0x40, 0xff, 0xaf, 0x71, 0x3f, 0xff, 0xaf, 0x71, 0x41, 0xff, 0xb1, 0x72, 0x42, 0xff, 0xb3, 0x73, 0x43, 0xff, 0xb6, 0x76, 0x48, 0xff, 0xb7, 0x77, 0x49, 0xff, 0xb7, 0x78, 0x4a, 0xff, 0xb8, 0x79, 0x4b, 0xff, 0xb8, 0x76, 0x4a, 0xff, 0xb4, 0x76, 0x47, 0xff, 0xb4, 0x74, 0x45, 0xff, 0xb3, 0x73, 0x45, 0xff, 0xb1, 0x72, 0x44, 0xff, 0xb1, 0x71, 0x42, 0xff, 0xae, 0x6f, 0x41, 0xff, 0xad, 0x6d, 0x3e, 0xff, 0xae, 0x6c, 0x3d, 0xff, 0xac, 0x6c, 0x3c, 0xff, 0xad, 0x6f, 0x3f, 0xff, 0xae, 0x70, 0x3f, 0xff, 0xae, 0x6f, 0x3c, 0xff, 0xae, 0x6d, 0x3c, 0xff, 0xaf, 0x6c, 0x3c, 0xff, 0xaf, 0x6c, 0x3b, 0xff, 0xae, 0x6b, 0x39, 0xff, 0xae, 0x6a, 0x38, 0xff, 0xac, 0x6a, 0x36, 0xff, 0xab, 0x69, 0x35, 0xff, 0xa6, 0x65, 0x32, 0xff, 0xa2, 0x61, 0x2e, 0xff, 0xa4, 0x60, 0x2f, 0xff, 0xa2, 0x5f, 0x2f, 0xff, 0xa2, 0x5f, 0x2e, 0xff, 0xa4, 0x63, 0x30, 0xff, 0xa4, 0x63, 0x32, 0xff, 0xa5, 0x64, 0x32, 0xff, 0xa5, 0x62, 0x32, 0xff, 0xa4, 0x62, 0x32, 0xff, 0xa3, 0x61, 0x31, 0xff, 0xa3, 0x63, 0x32, 0xff, 0xa1, 0x62, 0x32, 0xff, 0xa2, 0x62, 0x32, 0xff, 0x9f, 0x60, 0x32, 0xff, 0x9d, 0x5e, 0x31, 0xff, 0x99, 0x5b, 0x2f, 0xff, 0x9a, 0x5a, 0x2f, 0xff, 0x9c, 0x5c, 0x30, 0xff, + 0x9a, 0x5b, 0x2f, 0xff, 0x99, 0x59, 0x2f, 0xff, 0x97, 0x56, 0x2e, 0xff, 0x95, 0x55, 0x2d, 0xff, 0x92, 0x52, 0x2d, 0xff, 0x93, 0x52, 0x2c, 0xff, 0x8a, 0x4c, 0x28, 0xff, 0x87, 0x48, 0x25, 0xff, 0x84, 0x45, 0x24, 0xff, 0x85, 0x47, 0x22, 0xff, 0x84, 0x45, 0x22, 0xff, 0x86, 0x48, 0x25, 0xff, 0x8d, 0x4f, 0x2a, 0xff, 0x92, 0x52, 0x2d, 0xff, 0x92, 0x51, 0x2d, 0xff, 0x91, 0x52, 0x2c, 0xff, 0x91, 0x4f, 0x2b, 0xff, 0x8f, 0x4f, 0x2b, 0xff, 0x95, 0x54, 0x2d, 0xff, 0x98, 0x58, 0x2f, 0xff, 0x98, 0x58, 0x2f, 0xff, 0x97, 0x57, 0x2e, 0xff, 0x98, 0x58, 0x2f, 0xff, 0x98, 0x57, 0x2e, 0xff, 0x97, 0x58, 0x2f, 0xff, 0x98, 0x58, 0x2f, 0xff, 0x98, 0x57, 0x2f, 0xff, 0x97, 0x57, 0x2f, 0xff, 0x95, 0x56, 0x2f, 0xff, 0x95, 0x55, 0x2f, 0xff, 0x97, 0x56, 0x2f, 0xff, 0x98, 0x58, 0x2f, 0xff, 0x99, 0x59, 0x2f, 0xff, 0x99, 0x59, 0x2f, 0xff, 0x9a, 0x5a, 0x30, 0xff, 0x9e, 0x5d, 0x33, 0xff, 0xa0, 0x61, 0x36, 0xff, 0xa1, 0x62, 0x38, 0xff, 0x9e, 0x5f, 0x37, 0xff, 0x9f, 0x60, 0x37, 0xff, 0xb8, 0x76, 0x42, 0xff, 0xf2, 0xa1, 0x61, 0xff, 0xec, 0xa1, 0x62, 0xff, 0xeb, 0xa5, 0x64, 0xff, 0xec, 0xa8, 0x68, 0xff, 0xeb, 0xab, 0x6d, 0xff, 0xed, 0xb0, 0x71, 0xff, 0xee, 0xb4, 0x72, 0xff, 0xed, 0xb5, 0x72, 0xff, 0xec, 0xaf, 0x72, 0xff, 0xed, 0xad, 0x6f, 0xff, 0xed, 0xa9, 0x6b, 0xff, 0xeb, 0xa6, 0x68, 0xff, 0xec, 0xa2, 0x65, 0xff, 0xe9, 0x9b, 0x5e, 0xff, 0xdf, 0x95, 0x5d, 0xff, 0xd4, 0x8f, 0x5a, 0xff, 0xc9, 0x88, 0x54, 0xff, 0xbe, 0x81, 0x4d, 0xff, 0xb9, 0x79, 0x47, 0xff, 0xb3, 0x75, 0x44, 0xff, 0xb3, 0x72, 0x41, 0xff, 0xb1, 0x71, 0x3f, 0xff, 0xaf, 0x70, 0x3f, 0xff, 0xae, 0x6f, 0x3d, 0xff, 0xad, 0x6c, 0x3d, 0xff, 0xa9, 0x68, 0x37, 0xff, 0xa1, 0x5f, 0x33, 0xff, 0x98, 0x56, 0x2c, 0xff, 0x99, 0x57, 0x2e, 0xff, 0x9e, 0x5d, 0x2f, 0xff, 0xa6, 0x64, 0x33, 0xff, 0xa9, 0x65, 0x34, 0xff, 0xac, 0x6b, 0x38, 0xff, 0xb1, 0x6f, 0x3b, 0xff, 0xb6, 0x71, 0x3e, 0xff, 0xbd, 0x78, 0x43, 0xff, 0xc2, 0x7c, 0x48, 0xff, 0xc7, 0x82, 0x4d, 0xff, 0xcb, 0x86, 0x51, 0xff, 0xc8, 0x83, 0x4f, 0xff, 0xc7, 0x82, 0x4e, 0xff, 0xcd, 0x87, 0x50, 0xff, 0xcf, 0x85, 0x4f, 0xff, 0xca, 0x82, 0x4c, 0xff, 0xcc, 0x84, 0x4d, 0xff, 0xcf, 0x85, 0x4e, 0xff, 0xd0, 0x85, 0x4f, 0xff, 0xd2, 0x85, 0x50, 0xff, 0xd7, 0x8a, 0x52, 0xff, 0xdd, 0x8e, 0x56, 0xff, 0xe1, 0x8f, 0x58, 0xff, 0xe7, 0x91, 0x5a, 0xff, 0xe9, 0x92, 0x5c, 0xff, 0xcb, 0x84, 0x50, 0xff, 0xbf, 0x81, 0x4f, 0xff, 0xe3, 0x9e, 0x68, 0xff, 0xef, 0xa5, 0x6b, 0xff, 0xed, 0xa4, 0x6a, 0xff, 0xed, 0xa8, 0x6d, 0xff, 0xed, 0xa8, 0x6e, 0xff, 0xed, 0xa8, 0x6e, 0xff, 0xed, 0xa9, 0x6e, 0xff, 0xed, 0xab, 0x6f, 0xff, 0xed, 0xaa, 0x6d, 0xff, 0xed, 0xa8, 0x6a, 0xff, 0xef, 0xaa, 0x6b, 0xff, 0xdf, 0x9d, 0x61, 0xff, 0xc4, 0x85, 0x52, 0xff, 0xc0, 0x82, 0x52, 0xff, 0xc1, 0x83, 0x52, 0xff, 0xc1, 0x82, 0x52, 0xff, 0xc0, 0x81, 0x52, 0xff, 0xbf, 0x7f, 0x51, 0xff, 0xbd, 0x7e, 0x4e, 0xff, 0xbc, 0x7f, 0x4e, 0xff, 0xbc, 0x7e, 0x4d, 0xff, 0xb8, 0x7b, 0x4b, 0xff, 0xc5, 0x82, 0x51, 0xff, 0xcd, 0x89, 0x54, 0xff, 0xc4, 0x82, 0x4f, 0xff, 0xbf, 0x7c, 0x4c, 0xff, 0xbe, 0x7c, 0x4c, 0xff, 0xbd, 0x7d, 0x4a, 0xff, 0xbc, 0x7c, 0x49, 0xff, 0xbe, 0x7d, 0x4b, 0xff, 0xbd, 0x7d, 0x4b, 0xff, 0xb8, 0x79, 0x47, 0xff, 0xbd, 0x7d, 0x4b, 0xff, 0xc6, 0x82, 0x50, 0xff, 0xc5, 0x81, 0x4d, 0xff, 0xc0, 0x7d, 0x4a, 0xff, 0xbc, 0x7a, 0x49, 0xff, 0xb8, 0x77, 0x46, 0xff, 0xb5, 0x74, 0x44, 0xff, 0xb1, 0x71, 0x43, 0xff, 0xb2, 0x72, 0x44, 0xff, 0xb2, 0x72, 0x43, 0xff, 0xb0, 0x70, 0x42, 0xff, 0xaf, 0x6f, 0x42, 0xff, 0xaf, 0x6f, 0x42, 0xff, 0xac, 0x6d, 0x41, 0xff, 0xad, 0x6e, 0x41, 0xff, 0xaf, 0x6f, 0x42, 0xff, 0xb0, 0x70, 0x44, 0xff, 0xb1, 0x72, 0x45, 0xff, 0xa8, 0x67, 0x3a, 0xff, 0xa6, 0x63, 0x35, 0xff, 0xa5, 0x62, 0x35, 0xff, 0xa4, 0x62, 0x35, 0xff, 0xa4, 0x66, 0x37, 0xff, 0xa4, 0x67, 0x38, 0xff, 0xa2, 0x65, 0x37, 0xff, 0xa0, 0x62, 0x36, 0xff, 0x9c, 0x5d, 0x33, 0xff, 0x98, 0x58, 0x30, 0xff, 0x94, 0x53, 0x2c, 0xff, 0x90, 0x51, 0x2a, 0xff, 0x8f, 0x4e, 0x29, 0xff, 0x8d, 0x4c, 0x26, 0xff, 0x8a, 0x4a, 0x23, 0xff, 0x88, 0x49, 0x20, 0xff, 0x87, 0x46, 0x20, 0xff, 0x84, 0x45, 0x1f, 0xff, 0x85, 0x45, 0x1d, 0xff, 0x83, 0x44, 0x19, 0xff, 0x81, 0x42, 0x18, 0xff, 0x82, 0x43, 0x16, 0xff, 0x81, 0x42, 0x16, 0xff, 0x81, 0x3f, 0x16, 0xff, 0x82, 0x42, 0x17, 0xff, 0x82, 0x43, 0x1a, 0xff, 0x82, 0x43, 0x1c, 0xff, 0x83, 0x45, 0x1e, 0xff, 0x84, 0x45, 0x1e, 0xff, 0x87, 0x46, 0x21, 0xff, 0x88, 0x49, 0x24, 0xff, 0x88, 0x4a, 0x25, 0xff, 0x85, 0x46, 0x23, 0xff, 0xa5, 0x68, 0x3d, 0xff, 0xb6, 0x78, 0x48, 0xff, 0xc0, 0x82, 0x4d, 0xff, 0xc1, 0x81, 0x4c, 0xff, 0xbd, 0x82, 0x50, 0xff, 0xb7, 0x7a, 0x4a, 0xff, 0xb6, 0x79, 0x49, 0xff, 0xba, 0x7a, 0x4b, 0xff, 0xbb, 0x7b, 0x4c, 0xff, 0xb8, 0x78, 0x49, 0xff, 0xb7, 0x79, 0x49, 0xff, 0xb8, 0x78, 0x49, 0xff, 0xb5, 0x75, 0x49, 0xff, 0xb7, 0x78, 0x4b, 0xff, 0xba, 0x7b, 0x4d, 0xff, 0xbb, 0x7c, 0x4d, 0xff, 0xbc, 0x7c, 0x4e, 0xff, 0xba, 0x7b, 0x4d, 0xff, 0xb9, 0x79, 0x4b, 0xff, 0xb7, 0x79, 0x49, 0xff, 0xb4, 0x78, 0x47, 0xff, 0xb4, 0x75, 0x45, 0xff, 0xb1, 0x72, 0x43, 0xff, 0xb1, 0x70, 0x41, 0xff, 0xae, 0x6e, 0x3f, 0xff, 0xae, 0x6a, 0x3c, 0xff, 0xb0, 0x6f, 0x3f, 0xff, 0xb0, 0x70, 0x3f, 0xff, 0xaf, 0x6f, 0x3c, 0xff, 0xaf, 0x6e, 0x3b, 0xff, 0xaf, 0x6c, 0x3b, 0xff, 0xb1, 0x6c, 0x3b, 0xff, 0xb1, 0x6c, 0x3b, 0xff, 0xb2, 0x6f, 0x3b, 0xff, 0xb1, 0x6d, 0x39, 0xff, 0xb1, 0x6c, 0x3b, 0xff, 0xb2, 0x6e, 0x3c, 0xff, 0xaf, 0x6e, 0x3b, 0xff, 0xaa, 0x68, 0x33, 0xff, 0xa4, 0x61, 0x2f, 0xff, 0xa3, 0x60, 0x30, 0xff, 0xa3, 0x5f, 0x2f, 0xff, 0xa6, 0x63, 0x32, 0xff, 0xa7, 0x66, 0x32, 0xff, 0xa4, 0x64, 0x32, 0xff, 0xa5, 0x62, 0x32, 0xff, 0xa4, 0x62, 0x32, 0xff, 0xa3, 0x63, 0x32, 0xff, 0xa3, 0x62, 0x32, 0xff, 0xa2, 0x62, 0x32, 0xff, 0xa2, 0x60, 0x32, 0xff, 0xa1, 0x62, 0x33, 0xff, 0x9e, 0x5e, 0x32, 0xff, 0x9e, 0x5f, 0x32, 0xff, 0x9d, 0x5d, 0x32, 0xff, + 0x9d, 0x5d, 0x32, 0xff, 0x98, 0x5a, 0x2f, 0xff, 0x97, 0x58, 0x2e, 0xff, 0x96, 0x55, 0x2e, 0xff, 0x92, 0x51, 0x2d, 0xff, 0x94, 0x54, 0x2c, 0xff, 0x8c, 0x4c, 0x28, 0xff, 0x87, 0x49, 0x25, 0xff, 0x87, 0x48, 0x25, 0xff, 0x86, 0x47, 0x25, 0xff, 0x85, 0x47, 0x25, 0xff, 0x84, 0x46, 0x24, 0xff, 0x87, 0x48, 0x24, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x91, 0x50, 0x2d, 0xff, 0x91, 0x50, 0x2b, 0xff, 0x90, 0x50, 0x2b, 0xff, 0x8f, 0x51, 0x2b, 0xff, 0x90, 0x51, 0x2b, 0xff, 0x95, 0x54, 0x2e, 0xff, 0x97, 0x56, 0x2e, 0xff, 0x97, 0x57, 0x2f, 0xff, 0x97, 0x53, 0x2f, 0xff, 0x97, 0x57, 0x2e, 0xff, 0x97, 0x56, 0x2e, 0xff, 0x97, 0x57, 0x2e, 0xff, 0x97, 0x58, 0x2e, 0xff, 0x97, 0x57, 0x2f, 0xff, 0x97, 0x55, 0x2f, 0xff, 0x96, 0x55, 0x2f, 0xff, 0x99, 0x58, 0x2f, 0xff, 0x9a, 0x59, 0x2f, 0xff, 0x99, 0x58, 0x2f, 0xff, 0x9a, 0x5a, 0x30, 0xff, 0x9a, 0x59, 0x32, 0xff, 0x9f, 0x5e, 0x35, 0xff, 0xa1, 0x64, 0x38, 0xff, 0xa1, 0x65, 0x3a, 0xff, 0x9c, 0x5f, 0x35, 0xff, 0x9d, 0x60, 0x36, 0xff, 0xd5, 0x9e, 0x61, 0xff, 0xf0, 0xac, 0x6a, 0xff, 0xec, 0xb0, 0x6b, 0xff, 0xeb, 0xb7, 0x70, 0xff, 0xee, 0xc7, 0x7b, 0xff, 0xed, 0xce, 0x80, 0xff, 0xea, 0xcc, 0x7e, 0xff, 0xe9, 0xd6, 0x82, 0xff, 0xeb, 0xe1, 0x89, 0xff, 0xeb, 0xe0, 0x8a, 0xff, 0xed, 0xd8, 0x85, 0xff, 0xec, 0xcf, 0x82, 0xff, 0xed, 0xc5, 0x7d, 0xff, 0xee, 0xbb, 0x78, 0xff, 0xed, 0xb2, 0x75, 0xff, 0xee, 0xac, 0x6d, 0xff, 0xee, 0xa6, 0x68, 0xff, 0xe8, 0x9d, 0x64, 0xff, 0xd1, 0x90, 0x5a, 0xff, 0xc6, 0x88, 0x54, 0xff, 0xbe, 0x81, 0x4f, 0xff, 0xba, 0x7b, 0x4b, 0xff, 0xb6, 0x78, 0x47, 0xff, 0xb1, 0x71, 0x41, 0xff, 0xa9, 0x68, 0x3a, 0xff, 0x9e, 0x5c, 0x30, 0xff, 0x9a, 0x5a, 0x2e, 0xff, 0x9d, 0x5c, 0x2f, 0xff, 0x9e, 0x5a, 0x2f, 0xff, 0x9d, 0x5b, 0x2f, 0xff, 0x9e, 0x5c, 0x2f, 0xff, 0xa2, 0x60, 0x30, 0xff, 0xab, 0x67, 0x36, 0xff, 0xae, 0x6b, 0x38, 0xff, 0xb4, 0x71, 0x3c, 0xff, 0xba, 0x77, 0x41, 0xff, 0xc0, 0x79, 0x46, 0xff, 0xc6, 0x80, 0x47, 0xff, 0xcd, 0x87, 0x4d, 0xff, 0xcb, 0x86, 0x50, 0xff, 0xc8, 0x83, 0x4d, 0xff, 0xd0, 0x87, 0x50, 0xff, 0xd1, 0x88, 0x52, 0xff, 0xd0, 0x85, 0x4f, 0xff, 0xd3, 0x83, 0x50, 0xff, 0xd4, 0x86, 0x51, 0xff, 0xd5, 0x88, 0x51, 0xff, 0xd8, 0x8a, 0x52, 0xff, 0xdd, 0x8c, 0x53, 0xff, 0xe0, 0x8d, 0x56, 0xff, 0xe2, 0x8f, 0x58, 0xff, 0xe7, 0x91, 0x59, 0xff, 0xee, 0x97, 0x5f, 0xff, 0xd3, 0x8a, 0x55, 0xff, 0xae, 0x71, 0x41, 0xff, 0xb9, 0x7b, 0x4a, 0xff, 0xba, 0x7d, 0x4c, 0xff, 0xd2, 0x92, 0x5e, 0xff, 0xee, 0xa8, 0x70, 0xff, 0xed, 0xa5, 0x6c, 0xff, 0xee, 0xa3, 0x69, 0xff, 0xed, 0xa3, 0x6a, 0xff, 0xed, 0xa5, 0x6b, 0xff, 0xed, 0xa7, 0x6a, 0xff, 0xed, 0xa4, 0x68, 0xff, 0xef, 0xa2, 0x67, 0xff, 0xe5, 0x9e, 0x63, 0xff, 0xcf, 0x8c, 0x58, 0xff, 0xc7, 0x83, 0x53, 0xff, 0xc6, 0x84, 0x53, 0xff, 0xc2, 0x81, 0x51, 0xff, 0xbe, 0x7e, 0x4e, 0xff, 0xbb, 0x7d, 0x4d, 0xff, 0xbb, 0x7e, 0x4d, 0xff, 0xbb, 0x7d, 0x4c, 0xff, 0xbb, 0x7d, 0x4c, 0xff, 0xbb, 0x7d, 0x4c, 0xff, 0xb8, 0x7a, 0x4a, 0xff, 0xbc, 0x7c, 0x4c, 0xff, 0xc9, 0x85, 0x52, 0xff, 0xc9, 0x86, 0x51, 0xff, 0xc0, 0x80, 0x4d, 0xff, 0xbd, 0x7d, 0x4a, 0xff, 0xbe, 0x7b, 0x4b, 0xff, 0xbf, 0x7c, 0x4b, 0xff, 0xbe, 0x7a, 0x49, 0xff, 0xc0, 0x7e, 0x4b, 0xff, 0xc1, 0x82, 0x4d, 0xff, 0xc3, 0x81, 0x4e, 0xff, 0xcf, 0x86, 0x52, 0xff, 0xcf, 0x86, 0x51, 0xff, 0xc7, 0x81, 0x4f, 0xff, 0xc2, 0x7f, 0x4d, 0xff, 0xbd, 0x7b, 0x4a, 0xff, 0xba, 0x78, 0x48, 0xff, 0xb8, 0x79, 0x49, 0xff, 0xb8, 0x78, 0x49, 0xff, 0xb6, 0x77, 0x46, 0xff, 0xb3, 0x74, 0x45, 0xff, 0xb2, 0x72, 0x45, 0xff, 0xb3, 0x73, 0x45, 0xff, 0xb2, 0x73, 0x44, 0xff, 0xb1, 0x72, 0x45, 0xff, 0xb3, 0x73, 0x45, 0xff, 0xb0, 0x71, 0x42, 0xff, 0xa9, 0x69, 0x39, 0xff, 0xa7, 0x66, 0x35, 0xff, 0xa8, 0x67, 0x36, 0xff, 0xa7, 0x66, 0x36, 0xff, 0xa7, 0x67, 0x37, 0xff, 0xa9, 0x69, 0x3a, 0xff, 0xaa, 0x6a, 0x3c, 0xff, 0xa8, 0x6c, 0x3f, 0xff, 0xa5, 0x6a, 0x3e, 0xff, 0xa3, 0x67, 0x3a, 0xff, 0x9f, 0x62, 0x36, 0xff, 0x9b, 0x5d, 0x32, 0xff, 0x97, 0x57, 0x2d, 0xff, 0x92, 0x53, 0x2b, 0xff, 0x8f, 0x50, 0x27, 0xff, 0x8d, 0x4d, 0x25, 0xff, 0x8c, 0x4c, 0x24, 0xff, 0x8b, 0x4a, 0x22, 0xff, 0x89, 0x48, 0x20, 0xff, 0x87, 0x47, 0x1e, 0xff, 0x86, 0x46, 0x1d, 0xff, 0x84, 0x43, 0x19, 0xff, 0x83, 0x43, 0x18, 0xff, 0x82, 0x42, 0x19, 0xff, 0x82, 0x42, 0x18, 0xff, 0x82, 0x42, 0x19, 0xff, 0x82, 0x40, 0x1b, 0xff, 0x83, 0x42, 0x1d, 0xff, 0x84, 0x44, 0x1e, 0xff, 0x85, 0x48, 0x21, 0xff, 0x88, 0x48, 0x22, 0xff, 0x88, 0x49, 0x24, 0xff, 0x89, 0x4d, 0x25, 0xff, 0x86, 0x4b, 0x23, 0xff, 0x91, 0x53, 0x2a, 0xff, 0xb5, 0x76, 0x49, 0xff, 0xbe, 0x7f, 0x4f, 0xff, 0xc1, 0x82, 0x4f, 0xff, 0xc3, 0x84, 0x52, 0xff, 0xbc, 0x7d, 0x4f, 0xff, 0xbf, 0x7f, 0x51, 0xff, 0xc1, 0x80, 0x51, 0xff, 0xbf, 0x7f, 0x4e, 0xff, 0xbb, 0x7c, 0x4c, 0xff, 0xbb, 0x7b, 0x4c, 0xff, 0xb5, 0x77, 0x49, 0xff, 0xb5, 0x76, 0x4c, 0xff, 0xb7, 0x78, 0x4c, 0xff, 0xba, 0x7b, 0x4e, 0xff, 0xc1, 0x81, 0x52, 0xff, 0xc4, 0x83, 0x54, 0xff, 0xc2, 0x82, 0x53, 0xff, 0xbf, 0x80, 0x52, 0xff, 0xbf, 0x80, 0x4f, 0xff, 0xbd, 0x7d, 0x4d, 0xff, 0xb9, 0x7a, 0x4a, 0xff, 0xb6, 0x77, 0x46, 0xff, 0xb4, 0x76, 0x45, 0xff, 0xb3, 0x73, 0x42, 0xff, 0xb1, 0x71, 0x42, 0xff, 0xb1, 0x72, 0x40, 0xff, 0xb1, 0x70, 0x3f, 0xff, 0xb0, 0x6f, 0x3e, 0xff, 0xaf, 0x6c, 0x3c, 0xff, 0xb1, 0x6d, 0x3b, 0xff, 0xb1, 0x6d, 0x3a, 0xff, 0xb1, 0x6c, 0x3a, 0xff, 0xb2, 0x6f, 0x3b, 0xff, 0xb1, 0x70, 0x3c, 0xff, 0xb1, 0x70, 0x3a, 0xff, 0xb1, 0x6d, 0x3b, 0xff, 0xb1, 0x70, 0x3c, 0xff, 0xb1, 0x70, 0x3c, 0xff, 0xb2, 0x70, 0x3e, 0xff, 0xae, 0x6c, 0x38, 0xff, 0xa7, 0x64, 0x32, 0xff, 0xa7, 0x66, 0x32, 0xff, 0xa6, 0x62, 0x32, 0xff, 0xa5, 0x64, 0x31, 0xff, 0xa4, 0x63, 0x32, 0xff, 0xa5, 0x62, 0x32, 0xff, 0xa4, 0x64, 0x32, 0xff, 0xa4, 0x63, 0x33, 0xff, 0xa3, 0x64, 0x32, 0xff, 0xa1, 0x63, 0x35, 0xff, 0xa1, 0x62, 0x33, 0xff, 0xa1, 0x5f, 0x33, 0xff, 0x9f, 0x5f, 0x32, 0xff, 0x9e, 0x5e, 0x32, 0xff, + 0x9d, 0x5d, 0x31, 0xff, 0x99, 0x5a, 0x30, 0xff, 0x98, 0x58, 0x2e, 0xff, 0x97, 0x55, 0x2d, 0xff, 0x95, 0x54, 0x2e, 0xff, 0x96, 0x55, 0x2d, 0xff, 0x8d, 0x4e, 0x2a, 0xff, 0x8a, 0x4b, 0x28, 0xff, 0x88, 0x49, 0x27, 0xff, 0x87, 0x48, 0x28, 0xff, 0x86, 0x47, 0x26, 0xff, 0x84, 0x46, 0x24, 0xff, 0x83, 0x45, 0x23, 0xff, 0x88, 0x49, 0x27, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x8f, 0x4e, 0x2c, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x8f, 0x4e, 0x2d, 0xff, 0x90, 0x4f, 0x2d, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x95, 0x54, 0x2e, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x96, 0x54, 0x2e, 0xff, 0x96, 0x54, 0x2e, 0xff, 0x96, 0x54, 0x2e, 0xff, 0x97, 0x55, 0x2f, 0xff, 0x97, 0x56, 0x2f, 0xff, 0x96, 0x54, 0x2e, 0xff, 0x96, 0x57, 0x2f, 0xff, 0x98, 0x58, 0x2e, 0xff, 0x99, 0x59, 0x2f, 0xff, 0x99, 0x58, 0x2f, 0xff, 0x99, 0x5a, 0x2f, 0xff, 0x9a, 0x59, 0x31, 0xff, 0x9a, 0x5a, 0x32, 0xff, 0x9e, 0x5d, 0x35, 0xff, 0xa1, 0x66, 0x3c, 0xff, 0x9f, 0x61, 0x39, 0xff, 0x9a, 0x5e, 0x37, 0xff, 0xaa, 0x77, 0x48, 0xff, 0xf3, 0xc8, 0x7e, 0xff, 0xed, 0xc6, 0x79, 0xff, 0xeb, 0xd4, 0x80, 0xff, 0xe8, 0xd9, 0x86, 0xff, 0xe8, 0xde, 0x8a, 0xff, 0xe5, 0xe0, 0x90, 0xff, 0xe3, 0xdf, 0x94, 0xff, 0xe4, 0xe0, 0x97, 0xff, 0xe3, 0xdf, 0x99, 0xff, 0xe3, 0xe1, 0x99, 0xff, 0xe3, 0xe1, 0x98, 0xff, 0xe2, 0xe1, 0x96, 0xff, 0xe6, 0xe1, 0x91, 0xff, 0xe9, 0xde, 0x8a, 0xff, 0xec, 0xce, 0x83, 0xff, 0xed, 0xbd, 0x7c, 0xff, 0xed, 0xaf, 0x73, 0xff, 0xe7, 0x9e, 0x69, 0xff, 0xd8, 0x94, 0x5f, 0xff, 0xc7, 0x88, 0x56, 0xff, 0xbb, 0x7f, 0x4e, 0xff, 0xb2, 0x76, 0x47, 0xff, 0xac, 0x6f, 0x3f, 0xff, 0xa7, 0x6a, 0x3b, 0xff, 0xa4, 0x66, 0x38, 0xff, 0xa4, 0x65, 0x36, 0xff, 0xa2, 0x62, 0x35, 0xff, 0xa1, 0x61, 0x32, 0xff, 0xa1, 0x5e, 0x31, 0xff, 0xa1, 0x5f, 0x32, 0xff, 0xa2, 0x61, 0x31, 0xff, 0xa3, 0x62, 0x32, 0xff, 0xa8, 0x65, 0x34, 0xff, 0xb0, 0x6d, 0x39, 0xff, 0xb2, 0x70, 0x3b, 0xff, 0xb9, 0x74, 0x3f, 0xff, 0xc0, 0x7a, 0x46, 0xff, 0xc4, 0x7e, 0x47, 0xff, 0xca, 0x82, 0x4a, 0xff, 0xcc, 0x83, 0x4c, 0xff, 0xcd, 0x84, 0x4d, 0xff, 0xd1, 0x86, 0x4f, 0xff, 0xd4, 0x87, 0x4f, 0xff, 0xd4, 0x87, 0x4f, 0xff, 0xd9, 0x88, 0x52, 0xff, 0xd9, 0x8a, 0x52, 0xff, 0xdd, 0x8c, 0x54, 0xff, 0xe3, 0x8d, 0x56, 0xff, 0xe4, 0x8d, 0x57, 0xff, 0xe3, 0x8f, 0x57, 0xff, 0xe7, 0x91, 0x5a, 0xff, 0xed, 0x95, 0x5e, 0xff, 0xd7, 0x8c, 0x58, 0xff, 0xb4, 0x76, 0x45, 0xff, 0xb5, 0x76, 0x45, 0xff, 0xb9, 0x79, 0x49, 0xff, 0xbe, 0x7d, 0x4e, 0xff, 0xc4, 0x84, 0x53, 0xff, 0xc8, 0x8b, 0x56, 0xff, 0xd1, 0x92, 0x5d, 0xff, 0xe3, 0x9f, 0x67, 0xff, 0xee, 0xa7, 0x6c, 0xff, 0xee, 0xa6, 0x6a, 0xff, 0xed, 0xa4, 0x69, 0xff, 0xed, 0xa3, 0x69, 0xff, 0xec, 0xa2, 0x68, 0xff, 0xdc, 0x96, 0x5e, 0xff, 0xc8, 0x86, 0x53, 0xff, 0xc7, 0x84, 0x52, 0xff, 0xca, 0x87, 0x53, 0xff, 0xc9, 0x87, 0x54, 0xff, 0xc3, 0x83, 0x51, 0xff, 0xbf, 0x7e, 0x4d, 0xff, 0xbd, 0x7c, 0x4c, 0xff, 0xbc, 0x7c, 0x4b, 0xff, 0xbd, 0x7d, 0x4b, 0xff, 0xbc, 0x7d, 0x4c, 0xff, 0xbb, 0x7c, 0x4b, 0xff, 0xb4, 0x75, 0x45, 0xff, 0xc2, 0x7f, 0x4c, 0xff, 0xd0, 0x89, 0x53, 0xff, 0xc6, 0x83, 0x4e, 0xff, 0xc1, 0x80, 0x4c, 0xff, 0xc0, 0x7f, 0x4c, 0xff, 0xc1, 0x81, 0x4d, 0xff, 0xc1, 0x81, 0x4d, 0xff, 0xc1, 0x80, 0x4b, 0xff, 0xc3, 0x82, 0x4f, 0xff, 0xc7, 0x85, 0x52, 0xff, 0xd7, 0x8b, 0x54, 0xff, 0xdb, 0x8c, 0x55, 0xff, 0xd1, 0x88, 0x52, 0xff, 0xcb, 0x85, 0x50, 0xff, 0xc7, 0x81, 0x4f, 0xff, 0xc3, 0x7f, 0x4e, 0xff, 0xc3, 0x80, 0x4f, 0xff, 0xc1, 0x7e, 0x4e, 0xff, 0xbc, 0x7c, 0x4c, 0xff, 0xba, 0x7a, 0x4a, 0xff, 0xb9, 0x78, 0x49, 0xff, 0xba, 0x7b, 0x4a, 0xff, 0xb7, 0x79, 0x4a, 0xff, 0xb1, 0x72, 0x45, 0xff, 0xab, 0x6c, 0x3f, 0xff, 0xaa, 0x6b, 0x3c, 0xff, 0xaa, 0x6a, 0x3b, 0xff, 0xac, 0x6b, 0x3b, 0xff, 0xaa, 0x6a, 0x39, 0xff, 0xac, 0x6b, 0x39, 0xff, 0xac, 0x6c, 0x39, 0xff, 0xac, 0x6c, 0x3b, 0xff, 0xab, 0x6f, 0x40, 0xff, 0xaa, 0x72, 0x43, 0xff, 0xa8, 0x72, 0x45, 0xff, 0xa6, 0x6d, 0x43, 0xff, 0xa4, 0x6c, 0x40, 0xff, 0xa2, 0x68, 0x3a, 0xff, 0x9f, 0x60, 0x34, 0xff, 0x9a, 0x5a, 0x2f, 0xff, 0x95, 0x55, 0x2c, 0xff, 0x92, 0x51, 0x29, 0xff, 0x90, 0x50, 0x27, 0xff, 0x8e, 0x4e, 0x25, 0xff, 0x8b, 0x4b, 0x22, 0xff, 0x88, 0x48, 0x1f, 0xff, 0x87, 0x45, 0x1c, 0xff, 0x86, 0x45, 0x1c, 0xff, 0x85, 0x45, 0x1a, 0xff, 0x84, 0x43, 0x1c, 0xff, 0x84, 0x44, 0x1a, 0xff, 0x82, 0x42, 0x1b, 0xff, 0x82, 0x42, 0x1c, 0xff, 0x84, 0x44, 0x1e, 0xff, 0x85, 0x45, 0x1e, 0xff, 0x86, 0x46, 0x21, 0xff, 0x88, 0x49, 0x22, 0xff, 0x88, 0x4a, 0x24, 0xff, 0x89, 0x4b, 0x25, 0xff, 0x8a, 0x4d, 0x26, 0xff, 0x86, 0x49, 0x23, 0xff, 0xaf, 0x71, 0x45, 0xff, 0xbc, 0x7d, 0x4f, 0xff, 0xc9, 0x87, 0x55, 0xff, 0xc0, 0x7e, 0x4f, 0xff, 0xbc, 0x7c, 0x4b, 0xff, 0xc0, 0x7f, 0x4f, 0xff, 0xc2, 0x84, 0x54, 0xff, 0xc2, 0x84, 0x52, 0xff, 0xc2, 0x82, 0x51, 0xff, 0xbc, 0x7d, 0x4e, 0xff, 0xb7, 0x78, 0x4b, 0xff, 0xba, 0x7b, 0x4e, 0xff, 0xbd, 0x7e, 0x51, 0xff, 0xbf, 0x80, 0x53, 0xff, 0xc2, 0x84, 0x55, 0xff, 0xc8, 0x89, 0x59, 0xff, 0xce, 0x8a, 0x5a, 0xff, 0xcd, 0x8a, 0x59, 0xff, 0xc9, 0x88, 0x58, 0xff, 0xc7, 0x86, 0x56, 0xff, 0xc4, 0x83, 0x51, 0xff, 0xbe, 0x7e, 0x4c, 0xff, 0xb9, 0x7a, 0x49, 0xff, 0xb6, 0x76, 0x46, 0xff, 0xb7, 0x78, 0x46, 0xff, 0xb4, 0x73, 0x42, 0xff, 0xb4, 0x73, 0x41, 0xff, 0xb3, 0x71, 0x3f, 0xff, 0xb3, 0x71, 0x3f, 0xff, 0xb2, 0x70, 0x3c, 0xff, 0xb2, 0x6f, 0x3b, 0xff, 0xb1, 0x6d, 0x3a, 0xff, 0xb1, 0x6e, 0x39, 0xff, 0xb1, 0x6d, 0x3a, 0xff, 0xb1, 0x6f, 0x3b, 0xff, 0xb1, 0x70, 0x3b, 0xff, 0xb2, 0x6f, 0x3c, 0xff, 0xb2, 0x6f, 0x3c, 0xff, 0xb4, 0x71, 0x3e, 0xff, 0xb5, 0x71, 0x3e, 0xff, 0xb4, 0x71, 0x3f, 0xff, 0xb1, 0x6e, 0x3c, 0xff, 0xad, 0x69, 0x38, 0xff, 0xa7, 0x65, 0x33, 0xff, 0xa6, 0x63, 0x32, 0xff, 0xa5, 0x62, 0x32, 0xff, 0xa5, 0x62, 0x33, 0xff, 0xa4, 0x63, 0x33, 0xff, 0xa4, 0x63, 0x33, 0xff, 0xa3, 0x63, 0x34, 0xff, 0xa1, 0x62, 0x33, 0xff, 0xa1, 0x61, 0x33, 0xff, 0x9f, 0x60, 0x33, 0xff, 0x9e, 0x5f, 0x32, 0xff, + 0x9c, 0x5c, 0x31, 0xff, 0x99, 0x5a, 0x2e, 0xff, 0x96, 0x57, 0x2e, 0xff, 0x97, 0x56, 0x2e, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x96, 0x58, 0x2e, 0xff, 0x8f, 0x4f, 0x2b, 0xff, 0x8b, 0x4c, 0x29, 0xff, 0x8b, 0x4c, 0x29, 0xff, 0x89, 0x4a, 0x2a, 0xff, 0x89, 0x4a, 0x27, 0xff, 0x85, 0x48, 0x26, 0xff, 0x83, 0x47, 0x27, 0xff, 0x82, 0x46, 0x24, 0xff, 0x89, 0x4a, 0x28, 0xff, 0x91, 0x51, 0x2e, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x90, 0x50, 0x2e, 0xff, 0x90, 0x4f, 0x2b, 0xff, 0x90, 0x51, 0x2c, 0xff, 0x8f, 0x4e, 0x2b, 0xff, 0x95, 0x54, 0x2e, 0xff, 0x93, 0x52, 0x2e, 0xff, 0x94, 0x53, 0x2e, 0xff, 0x96, 0x54, 0x2e, 0xff, 0x96, 0x54, 0x2e, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x96, 0x55, 0x2e, 0xff, 0x9a, 0x58, 0x2f, 0xff, 0x9a, 0x58, 0x2f, 0xff, 0x99, 0x58, 0x2f, 0xff, 0x99, 0x58, 0x31, 0xff, 0x9a, 0x59, 0x30, 0xff, 0x9a, 0x5a, 0x31, 0xff, 0x9a, 0x5b, 0x33, 0xff, 0x9b, 0x5d, 0x36, 0xff, 0xa0, 0x65, 0x3b, 0xff, 0x9b, 0x5d, 0x36, 0xff, 0x9a, 0x61, 0x37, 0xff, 0xd0, 0xaf, 0x70, 0xff, 0xef, 0xdd, 0x84, 0xff, 0xe5, 0xdf, 0x8d, 0xff, 0xe5, 0xe0, 0x96, 0xff, 0xe5, 0xe0, 0x9d, 0xff, 0xe7, 0xe1, 0xa5, 0xff, 0xe9, 0xe1, 0xae, 0xff, 0xeb, 0xe1, 0xbb, 0xff, 0xed, 0xe0, 0xc4, 0xff, 0xec, 0xe0, 0xc5, 0xff, 0xed, 0xe0, 0xc5, 0xff, 0xec, 0xe0, 0xc3, 0xff, 0xeb, 0xe1, 0xb9, 0xff, 0xe8, 0xe0, 0xaa, 0xff, 0xe6, 0xe0, 0x9d, 0xff, 0xe8, 0xde, 0x93, 0xff, 0xee, 0xd4, 0x89, 0xff, 0xed, 0xbe, 0x7d, 0xff, 0xec, 0xa5, 0x6e, 0xff, 0xe3, 0x9d, 0x65, 0xff, 0xd5, 0x92, 0x5e, 0xff, 0xc5, 0x87, 0x57, 0xff, 0xbc, 0x81, 0x50, 0xff, 0xb6, 0x78, 0x47, 0xff, 0xb2, 0x74, 0x43, 0xff, 0xae, 0x70, 0x3f, 0xff, 0xaa, 0x6b, 0x3a, 0xff, 0xa9, 0x6a, 0x38, 0xff, 0xa8, 0x68, 0x36, 0xff, 0xa7, 0x66, 0x35, 0xff, 0xa7, 0x65, 0x34, 0xff, 0xa7, 0x66, 0x33, 0xff, 0xa8, 0x64, 0x32, 0xff, 0xa9, 0x66, 0x33, 0xff, 0xae, 0x6a, 0x37, 0xff, 0xb6, 0x72, 0x3d, 0xff, 0xba, 0x76, 0x41, 0xff, 0xc1, 0x7b, 0x46, 0xff, 0xca, 0x82, 0x4a, 0xff, 0xce, 0x82, 0x4b, 0xff, 0xcb, 0x81, 0x4b, 0xff, 0xd0, 0x86, 0x4c, 0xff, 0xd6, 0x86, 0x4e, 0xff, 0xd8, 0x86, 0x4f, 0xff, 0xd9, 0x87, 0x51, 0xff, 0xdf, 0x8a, 0x53, 0xff, 0xe5, 0x8e, 0x56, 0xff, 0xe8, 0x8f, 0x58, 0xff, 0xdf, 0x8d, 0x54, 0xff, 0xe1, 0x8e, 0x57, 0xff, 0xe7, 0x8f, 0x59, 0xff, 0xea, 0x93, 0x5d, 0xff, 0xdb, 0x90, 0x5c, 0xff, 0xbc, 0x7c, 0x4b, 0xff, 0xb2, 0x74, 0x43, 0xff, 0xb6, 0x77, 0x46, 0xff, 0xb9, 0x7a, 0x49, 0xff, 0xc0, 0x80, 0x4f, 0xff, 0xc4, 0x84, 0x53, 0xff, 0xb4, 0x77, 0x49, 0xff, 0xaa, 0x72, 0x44, 0xff, 0xb4, 0x7b, 0x4c, 0xff, 0xc6, 0x89, 0x57, 0xff, 0xe2, 0xa1, 0x69, 0xff, 0xf0, 0xa9, 0x6e, 0xff, 0xee, 0xa5, 0x69, 0xff, 0xe7, 0x9e, 0x64, 0xff, 0xd9, 0x93, 0x5c, 0xff, 0xd2, 0x8e, 0x59, 0xff, 0xce, 0x8c, 0x57, 0xff, 0xca, 0x87, 0x54, 0xff, 0xcc, 0x89, 0x54, 0xff, 0xce, 0x8c, 0x57, 0xff, 0xca, 0x89, 0x56, 0xff, 0xc4, 0x83, 0x52, 0xff, 0xc1, 0x80, 0x4e, 0xff, 0xc1, 0x80, 0x4d, 0xff, 0xbf, 0x80, 0x4d, 0xff, 0xbe, 0x7e, 0x4c, 0xff, 0xb8, 0x7a, 0x4a, 0xff, 0xbd, 0x7c, 0x4b, 0xff, 0xd1, 0x89, 0x53, 0xff, 0xd3, 0x8a, 0x54, 0xff, 0xc8, 0x84, 0x50, 0xff, 0xc5, 0x82, 0x4e, 0xff, 0xc4, 0x81, 0x4e, 0xff, 0xc5, 0x83, 0x4f, 0xff, 0xc3, 0x82, 0x4e, 0xff, 0xc7, 0x85, 0x50, 0xff, 0xcc, 0x86, 0x52, 0xff, 0xd8, 0x8a, 0x56, 0xff, 0xe3, 0x90, 0x59, 0xff, 0xe0, 0x90, 0x59, 0xff, 0xdd, 0x8d, 0x57, 0xff, 0xda, 0x8b, 0x55, 0xff, 0xd8, 0x8b, 0x56, 0xff, 0xd5, 0x8b, 0x56, 0xff, 0xd1, 0x87, 0x56, 0xff, 0xcc, 0x85, 0x53, 0xff, 0xcb, 0x86, 0x52, 0xff, 0xc7, 0x85, 0x54, 0xff, 0xbb, 0x7b, 0x4c, 0xff, 0xb1, 0x73, 0x45, 0xff, 0xac, 0x6e, 0x41, 0xff, 0xa9, 0x6b, 0x3e, 0xff, 0xae, 0x6f, 0x41, 0xff, 0xaf, 0x70, 0x41, 0xff, 0xac, 0x6d, 0x3c, 0xff, 0xaf, 0x6f, 0x3e, 0xff, 0xb1, 0x70, 0x3f, 0xff, 0xb0, 0x6d, 0x3c, 0xff, 0xaf, 0x6e, 0x3c, 0xff, 0xad, 0x71, 0x40, 0xff, 0xac, 0x74, 0x44, 0xff, 0xab, 0x73, 0x48, 0xff, 0xa9, 0x72, 0x49, 0xff, 0xa8, 0x71, 0x47, 0xff, 0xa7, 0x70, 0x43, 0xff, 0xa5, 0x6a, 0x3c, 0xff, 0xa1, 0x61, 0x35, 0xff, 0x9c, 0x5b, 0x2f, 0xff, 0x97, 0x56, 0x2c, 0xff, 0x94, 0x53, 0x29, 0xff, 0x8f, 0x50, 0x27, 0xff, 0x8c, 0x4c, 0x23, 0xff, 0x8c, 0x4b, 0x21, 0xff, 0x8a, 0x47, 0x1e, 0xff, 0x89, 0x46, 0x1d, 0xff, 0x87, 0x45, 0x1d, 0xff, 0x88, 0x46, 0x1e, 0xff, 0x86, 0x45, 0x1f, 0xff, 0x87, 0x46, 0x1e, 0xff, 0x87, 0x46, 0x20, 0xff, 0x88, 0x47, 0x21, 0xff, 0x88, 0x49, 0x22, 0xff, 0x87, 0x47, 0x23, 0xff, 0x88, 0x48, 0x21, 0xff, 0x88, 0x49, 0x21, 0xff, 0x88, 0x49, 0x23, 0xff, 0x8f, 0x51, 0x2c, 0xff, 0x91, 0x53, 0x2e, 0xff, 0x9d, 0x60, 0x37, 0xff, 0xba, 0x7c, 0x4e, 0xff, 0xbe, 0x7e, 0x50, 0xff, 0xc1, 0x82, 0x50, 0xff, 0xbe, 0x7d, 0x4d, 0xff, 0xbe, 0x7d, 0x4c, 0xff, 0xc2, 0x82, 0x52, 0xff, 0xc4, 0x88, 0x57, 0xff, 0xc4, 0x86, 0x56, 0xff, 0xbb, 0x7b, 0x4d, 0xff, 0xbb, 0x7a, 0x4d, 0xff, 0xbd, 0x7f, 0x51, 0xff, 0xc1, 0x82, 0x54, 0xff, 0xc9, 0x88, 0x58, 0xff, 0xd0, 0x8d, 0x5c, 0xff, 0xd6, 0x92, 0x5f, 0xff, 0xdb, 0x93, 0x60, 0xff, 0xdf, 0x94, 0x61, 0xff, 0xdd, 0x93, 0x60, 0xff, 0xd6, 0x91, 0x5d, 0xff, 0xd1, 0x8c, 0x5a, 0xff, 0xca, 0x87, 0x57, 0xff, 0xc3, 0x82, 0x52, 0xff, 0xbe, 0x7f, 0x4d, 0xff, 0xbd, 0x7c, 0x4a, 0xff, 0xb9, 0x79, 0x46, 0xff, 0xb8, 0x76, 0x44, 0xff, 0xb8, 0x76, 0x44, 0xff, 0xb6, 0x75, 0x42, 0xff, 0xb5, 0x71, 0x3f, 0xff, 0xb4, 0x70, 0x3c, 0xff, 0xb2, 0x6f, 0x3b, 0xff, 0xb1, 0x6f, 0x3a, 0xff, 0xb1, 0x6f, 0x3b, 0xff, 0xb1, 0x6e, 0x3b, 0xff, 0xb1, 0x71, 0x3c, 0xff, 0xb5, 0x70, 0x3e, 0xff, 0xb4, 0x73, 0x3f, 0xff, 0xb4, 0x74, 0x3f, 0xff, 0xb7, 0x73, 0x3f, 0xff, 0xb5, 0x71, 0x3f, 0xff, 0xb5, 0x73, 0x3f, 0xff, 0xb4, 0x70, 0x3f, 0xff, 0xb2, 0x6f, 0x3b, 0xff, 0xae, 0x6a, 0x3a, 0xff, 0xa6, 0x64, 0x32, 0xff, 0xa4, 0x62, 0x32, 0xff, 0xa4, 0x61, 0x32, 0xff, 0xa2, 0x63, 0x34, 0xff, 0xa2, 0x62, 0x34, 0xff, 0xa1, 0x62, 0x33, 0xff, 0xa0, 0x62, 0x34, 0xff, 0xa0, 0x5f, 0x32, 0xff, 0x9c, 0x5c, 0x31, 0xff, + 0x9d, 0x5d, 0x31, 0xff, 0x9a, 0x5b, 0x31, 0xff, 0x98, 0x58, 0x2e, 0xff, 0x96, 0x57, 0x2e, 0xff, 0x96, 0x55, 0x2e, 0xff, 0x9a, 0x5b, 0x2f, 0xff, 0x93, 0x56, 0x2d, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8c, 0x4f, 0x2b, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x8a, 0x4c, 0x2a, 0xff, 0x88, 0x4a, 0x2a, 0xff, 0x86, 0x47, 0x27, 0xff, 0x85, 0x47, 0x27, 0xff, 0x82, 0x46, 0x27, 0xff, 0x8c, 0x4c, 0x2c, 0xff, 0x91, 0x51, 0x2e, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x8f, 0x4e, 0x2d, 0xff, 0x8f, 0x4e, 0x2b, 0xff, 0x90, 0x4f, 0x2c, 0xff, 0x95, 0x54, 0x2e, 0xff, 0x93, 0x52, 0x2e, 0xff, 0x92, 0x53, 0x2d, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x95, 0x54, 0x2d, 0xff, 0x99, 0x58, 0x2f, 0xff, 0x99, 0x58, 0x2f, 0xff, 0x98, 0x58, 0x30, 0xff, 0x99, 0x59, 0x2f, 0xff, 0x99, 0x5a, 0x2f, 0xff, 0x98, 0x58, 0x30, 0xff, 0x9a, 0x5a, 0x32, 0xff, 0x9a, 0x5b, 0x34, 0xff, 0x97, 0x5b, 0x36, 0xff, 0x9d, 0x62, 0x3b, 0xff, 0x99, 0x5e, 0x37, 0xff, 0xa0, 0x71, 0x43, 0xff, 0xed, 0xe5, 0x88, 0xff, 0xe3, 0xe0, 0x8f, 0xff, 0xe4, 0xe2, 0x9b, 0xff, 0xe7, 0xe1, 0xa8, 0xff, 0xec, 0xe1, 0xbc, 0xff, 0xed, 0xe1, 0xcd, 0xff, 0xee, 0xe1, 0xd5, 0xff, 0xee, 0xe1, 0xd4, 0xff, 0xee, 0xe1, 0xd4, 0xff, 0xee, 0xe1, 0xd4, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe1, 0xd4, 0xff, 0xee, 0xe1, 0xd4, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe0, 0xcd, 0xff, 0xeb, 0xe1, 0xb9, 0xff, 0xea, 0xe0, 0xa7, 0xff, 0xec, 0xde, 0x96, 0xff, 0xed, 0xca, 0x87, 0xff, 0xee, 0xb1, 0x7a, 0xff, 0xed, 0xa8, 0x6e, 0xff, 0xe5, 0x9e, 0x66, 0xff, 0xd4, 0x91, 0x5d, 0xff, 0xc5, 0x87, 0x55, 0xff, 0xbc, 0x80, 0x4d, 0xff, 0xb7, 0x79, 0x49, 0xff, 0xb4, 0x75, 0x43, 0xff, 0xb0, 0x70, 0x3e, 0xff, 0xae, 0x6e, 0x3c, 0xff, 0xac, 0x6b, 0x3a, 0xff, 0xad, 0x6c, 0x38, 0xff, 0xab, 0x6a, 0x37, 0xff, 0xad, 0x6b, 0x37, 0xff, 0xae, 0x6d, 0x37, 0xff, 0xaf, 0x6e, 0x37, 0xff, 0xb3, 0x70, 0x3a, 0xff, 0xba, 0x74, 0x40, 0xff, 0xc4, 0x7e, 0x47, 0xff, 0xcf, 0x84, 0x4c, 0xff, 0xd3, 0x84, 0x4d, 0xff, 0xd7, 0x88, 0x4f, 0xff, 0xdc, 0x88, 0x50, 0xff, 0xde, 0x89, 0x51, 0xff, 0xe0, 0x89, 0x52, 0xff, 0xe6, 0x8e, 0x54, 0xff, 0xe6, 0x8d, 0x55, 0xff, 0xdd, 0x8a, 0x52, 0xff, 0xdc, 0x8b, 0x55, 0xff, 0xdf, 0x8c, 0x56, 0xff, 0xe6, 0x8f, 0x58, 0xff, 0xec, 0x94, 0x5b, 0xff, 0xe4, 0x92, 0x5c, 0xff, 0xc2, 0x81, 0x4e, 0xff, 0xad, 0x6f, 0x3f, 0xff, 0xb5, 0x76, 0x44, 0xff, 0xb6, 0x76, 0x47, 0xff, 0xbc, 0x7b, 0x4c, 0xff, 0xc4, 0x83, 0x54, 0xff, 0xb5, 0x77, 0x48, 0xff, 0xa2, 0x65, 0x38, 0xff, 0xa9, 0x6e, 0x41, 0xff, 0xad, 0x72, 0x43, 0xff, 0xb0, 0x75, 0x45, 0xff, 0xb2, 0x78, 0x47, 0xff, 0xba, 0x84, 0x50, 0xff, 0xd9, 0x9f, 0x67, 0xff, 0xe7, 0xa1, 0x6a, 0xff, 0xd9, 0x8e, 0x5a, 0xff, 0xda, 0x93, 0x5d, 0xff, 0xd7, 0x96, 0x61, 0xff, 0xd7, 0x95, 0x62, 0xff, 0xd5, 0x91, 0x5c, 0xff, 0xd2, 0x8c, 0x57, 0xff, 0xd1, 0x8b, 0x57, 0xff, 0xd3, 0x8d, 0x58, 0xff, 0xce, 0x8b, 0x55, 0xff, 0xc8, 0x87, 0x50, 0xff, 0xc7, 0x86, 0x4f, 0xff, 0xc4, 0x87, 0x50, 0xff, 0xbe, 0x80, 0x4d, 0xff, 0xb8, 0x7b, 0x4a, 0xff, 0xcd, 0x88, 0x53, 0xff, 0xdf, 0x90, 0x58, 0xff, 0xd6, 0x8a, 0x54, 0xff, 0xce, 0x86, 0x51, 0xff, 0xc9, 0x86, 0x51, 0xff, 0xc9, 0x86, 0x51, 0xff, 0xcb, 0x86, 0x50, 0xff, 0xca, 0x86, 0x51, 0xff, 0xce, 0x88, 0x54, 0xff, 0xe2, 0x92, 0x5b, 0xff, 0xed, 0x95, 0x5d, 0xff, 0xec, 0x94, 0x5c, 0xff, 0xed, 0x97, 0x5e, 0xff, 0xed, 0x9b, 0x62, 0xff, 0xed, 0x9c, 0x64, 0xff, 0xec, 0x99, 0x63, 0xff, 0xe9, 0x97, 0x61, 0xff, 0xdd, 0x91, 0x5d, 0xff, 0xcb, 0x87, 0x56, 0xff, 0xc0, 0x80, 0x4f, 0xff, 0xbc, 0x7d, 0x4f, 0xff, 0xb8, 0x79, 0x4c, 0xff, 0xb3, 0x74, 0x47, 0xff, 0xb0, 0x72, 0x44, 0xff, 0xae, 0x70, 0x42, 0xff, 0xb4, 0x75, 0x45, 0xff, 0xb3, 0x75, 0x44, 0xff, 0xb0, 0x71, 0x40, 0xff, 0xb3, 0x72, 0x41, 0xff, 0xb6, 0x75, 0x42, 0xff, 0xb4, 0x73, 0x3f, 0xff, 0xb2, 0x73, 0x41, 0xff, 0xb0, 0x75, 0x44, 0xff, 0xae, 0x76, 0x48, 0xff, 0xac, 0x75, 0x4b, 0xff, 0xaa, 0x73, 0x4a, 0xff, 0xa8, 0x72, 0x48, 0xff, 0xa6, 0x6e, 0x43, 0xff, 0xa5, 0x6a, 0x3a, 0xff, 0xa2, 0x65, 0x34, 0xff, 0x9c, 0x5e, 0x2f, 0xff, 0x97, 0x56, 0x2c, 0xff, 0x93, 0x52, 0x29, 0xff, 0x8d, 0x4d, 0x24, 0xff, 0x8b, 0x4a, 0x21, 0xff, 0x89, 0x49, 0x20, 0xff, 0x8a, 0x49, 0x21, 0xff, 0x8a, 0x49, 0x22, 0xff, 0x89, 0x49, 0x20, 0xff, 0x88, 0x47, 0x20, 0xff, 0x88, 0x48, 0x21, 0xff, 0x89, 0x49, 0x22, 0xff, 0x8b, 0x49, 0x24, 0xff, 0x8c, 0x4a, 0x25, 0xff, 0x8e, 0x4c, 0x27, 0xff, 0x8f, 0x4e, 0x2a, 0xff, 0x90, 0x50, 0x2b, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x92, 0x54, 0x2f, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x91, 0x54, 0x2e, 0xff, 0xb5, 0x78, 0x4a, 0xff, 0xbb, 0x7c, 0x4e, 0xff, 0xbd, 0x7c, 0x4e, 0xff, 0xc1, 0x80, 0x50, 0xff, 0xbe, 0x7d, 0x4c, 0xff, 0xc1, 0x81, 0x51, 0xff, 0xc4, 0x87, 0x57, 0xff, 0xc1, 0x87, 0x57, 0xff, 0xb9, 0x7c, 0x4e, 0xff, 0xbd, 0x7d, 0x4e, 0xff, 0xc0, 0x82, 0x53, 0xff, 0xc7, 0x8a, 0x59, 0xff, 0xd0, 0x8f, 0x5e, 0xff, 0xdd, 0x98, 0x64, 0xff, 0xe6, 0x9a, 0x68, 0xff, 0xec, 0x9b, 0x6a, 0xff, 0xed, 0x9f, 0x6b, 0xff, 0xed, 0x9e, 0x6a, 0xff, 0xe8, 0x9b, 0x68, 0xff, 0xe2, 0x96, 0x64, 0xff, 0xd8, 0x91, 0x5d, 0xff, 0xd1, 0x8c, 0x59, 0xff, 0xce, 0x89, 0x56, 0xff, 0xc6, 0x87, 0x52, 0xff, 0xc0, 0x81, 0x4d, 0xff, 0xbe, 0x7d, 0x49, 0xff, 0xbb, 0x7a, 0x45, 0xff, 0xba, 0x77, 0x42, 0xff, 0xb8, 0x76, 0x42, 0xff, 0xb6, 0x73, 0x3f, 0xff, 0xb3, 0x70, 0x3b, 0xff, 0xb4, 0x71, 0x3c, 0xff, 0xb3, 0x70, 0x3c, 0xff, 0xb4, 0x71, 0x3c, 0xff, 0xb5, 0x73, 0x3e, 0xff, 0xb6, 0x73, 0x3f, 0xff, 0xb8, 0x76, 0x41, 0xff, 0xba, 0x77, 0x42, 0xff, 0xb8, 0x74, 0x43, 0xff, 0xb8, 0x75, 0x42, 0xff, 0xb8, 0x76, 0x42, 0xff, 0xb8, 0x76, 0x42, 0xff, 0xb6, 0x72, 0x40, 0xff, 0xb4, 0x72, 0x3f, 0xff, 0xb2, 0x6f, 0x3d, 0xff, 0xab, 0x6a, 0x38, 0xff, 0xa1, 0x61, 0x31, 0xff, 0xa2, 0x63, 0x34, 0xff, 0xa2, 0x62, 0x34, 0xff, 0xa2, 0x62, 0x34, 0xff, 0xa0, 0x60, 0x32, 0xff, 0x9d, 0x5e, 0x31, 0xff, 0x9d, 0x5d, 0x31, 0xff, + 0x9d, 0x5e, 0x32, 0xff, 0x9a, 0x5d, 0x31, 0xff, 0x98, 0x59, 0x31, 0xff, 0x98, 0x59, 0x30, 0xff, 0x9a, 0x5d, 0x31, 0xff, 0x9c, 0x61, 0x33, 0xff, 0x95, 0x5a, 0x30, 0xff, 0x90, 0x54, 0x2e, 0xff, 0x8e, 0x52, 0x2d, 0xff, 0x8e, 0x51, 0x2e, 0xff, 0x8b, 0x4f, 0x2b, 0xff, 0x8b, 0x4d, 0x2a, 0xff, 0x87, 0x4a, 0x2a, 0xff, 0x85, 0x48, 0x29, 0xff, 0x84, 0x47, 0x28, 0xff, 0x83, 0x46, 0x27, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x8f, 0x4e, 0x2d, 0xff, 0x90, 0x4f, 0x2d, 0xff, 0x8f, 0x4e, 0x2b, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x92, 0x52, 0x2d, 0xff, 0x92, 0x52, 0x2d, 0xff, 0x93, 0x52, 0x2d, 0xff, 0x97, 0x57, 0x2e, 0xff, 0x97, 0x57, 0x2f, 0xff, 0x98, 0x57, 0x2e, 0xff, 0x98, 0x58, 0x2f, 0xff, 0x97, 0x58, 0x30, 0xff, 0x97, 0x57, 0x31, 0xff, 0x98, 0x59, 0x31, 0xff, 0x99, 0x58, 0x33, 0xff, 0x98, 0x5a, 0x34, 0xff, 0x99, 0x5e, 0x36, 0xff, 0x9b, 0x60, 0x37, 0xff, 0x9c, 0x64, 0x3b, 0xff, 0xd5, 0xbc, 0x74, 0xff, 0xe5, 0xe2, 0x8c, 0xff, 0xe4, 0xe1, 0x99, 0xff, 0xe9, 0xe2, 0xaa, 0xff, 0xed, 0xe1, 0xc2, 0xff, 0xee, 0xe0, 0xd6, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe1, 0xd4, 0xff, 0xee, 0xe1, 0xd4, 0xff, 0xee, 0xe1, 0xd4, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe1, 0xd4, 0xff, 0xee, 0xe1, 0xd4, 0xff, 0xee, 0xe1, 0xd4, 0xff, 0xee, 0xe1, 0xd3, 0xff, 0xed, 0xe0, 0xca, 0xff, 0xe9, 0xe1, 0xb2, 0xff, 0xe7, 0xe1, 0x9d, 0xff, 0xed, 0xd8, 0x8d, 0xff, 0xed, 0xbe, 0x80, 0xff, 0xee, 0xad, 0x74, 0xff, 0xeb, 0xa2, 0x6a, 0xff, 0xdc, 0x96, 0x60, 0xff, 0xcc, 0x8d, 0x58, 0xff, 0xc3, 0x84, 0x52, 0xff, 0xbc, 0x7e, 0x4c, 0xff, 0xb8, 0x78, 0x48, 0xff, 0xb4, 0x75, 0x43, 0xff, 0xb3, 0x73, 0x3f, 0xff, 0xb2, 0x71, 0x3d, 0xff, 0xb1, 0x70, 0x3b, 0xff, 0xb1, 0x71, 0x3b, 0xff, 0xb3, 0x70, 0x3a, 0xff, 0xb6, 0x70, 0x3b, 0xff, 0xb9, 0x73, 0x3d, 0xff, 0xba, 0x75, 0x40, 0xff, 0xbd, 0x78, 0x42, 0xff, 0xc6, 0x80, 0x48, 0xff, 0xce, 0x86, 0x4c, 0xff, 0xd2, 0x86, 0x4d, 0xff, 0xdc, 0x89, 0x51, 0xff, 0xe2, 0x8c, 0x54, 0xff, 0xe1, 0x8c, 0x55, 0xff, 0xdb, 0x8b, 0x52, 0xff, 0xda, 0x8a, 0x53, 0xff, 0xe2, 0x8e, 0x55, 0xff, 0xe5, 0x8f, 0x56, 0xff, 0xe6, 0x90, 0x58, 0xff, 0xec, 0x91, 0x5b, 0xff, 0xe5, 0x92, 0x5b, 0xff, 0xc2, 0x80, 0x4d, 0xff, 0xac, 0x6f, 0x3e, 0xff, 0xb4, 0x76, 0x45, 0xff, 0xb6, 0x77, 0x46, 0xff, 0xba, 0x7b, 0x4a, 0xff, 0xbf, 0x80, 0x4f, 0xff, 0xae, 0x6f, 0x41, 0xff, 0x9a, 0x5c, 0x30, 0xff, 0xa4, 0x67, 0x3a, 0xff, 0xa6, 0x6b, 0x3d, 0xff, 0xa9, 0x6e, 0x41, 0xff, 0xac, 0x70, 0x42, 0xff, 0xaf, 0x73, 0x43, 0xff, 0xb1, 0x75, 0x46, 0xff, 0xa2, 0x65, 0x3a, 0xff, 0x97, 0x5c, 0x35, 0xff, 0xad, 0x73, 0x4b, 0xff, 0xc5, 0x81, 0x54, 0xff, 0xd6, 0x8e, 0x5b, 0xff, 0xdd, 0x99, 0x65, 0xff, 0xe0, 0x9b, 0x68, 0xff, 0xdd, 0x99, 0x63, 0xff, 0xdc, 0x94, 0x5d, 0xff, 0xd9, 0x8f, 0x59, 0xff, 0xdb, 0x90, 0x5a, 0xff, 0xd9, 0x8f, 0x5a, 0xff, 0xd3, 0x8c, 0x57, 0xff, 0xd1, 0x8c, 0x56, 0xff, 0xc8, 0x86, 0x52, 0xff, 0xbd, 0x7d, 0x4c, 0xff, 0xc7, 0x84, 0x52, 0xff, 0xe0, 0x94, 0x5d, 0xff, 0xe8, 0x95, 0x5c, 0xff, 0xe0, 0x90, 0x58, 0xff, 0xdb, 0x8d, 0x56, 0xff, 0xd5, 0x89, 0x54, 0xff, 0xd4, 0x89, 0x54, 0xff, 0xd4, 0x8b, 0x53, 0xff, 0xd3, 0x8a, 0x53, 0xff, 0xdd, 0x8f, 0x58, 0xff, 0xeb, 0x97, 0x60, 0xff, 0xee, 0x9a, 0x63, 0xff, 0xed, 0x9b, 0x64, 0xff, 0xec, 0x9d, 0x64, 0xff, 0xeb, 0x9b, 0x64, 0xff, 0xe8, 0x96, 0x60, 0xff, 0xdf, 0x91, 0x5d, 0xff, 0xd3, 0x8e, 0x5a, 0xff, 0xcf, 0x8d, 0x59, 0xff, 0xcd, 0x8a, 0x58, 0xff, 0xc8, 0x87, 0x56, 0xff, 0xc2, 0x84, 0x53, 0xff, 0xbd, 0x80, 0x50, 0xff, 0xba, 0x7c, 0x4d, 0xff, 0xb5, 0x77, 0x4a, 0xff, 0xb6, 0x78, 0x49, 0xff, 0xb9, 0x7a, 0x49, 0xff, 0xb6, 0x78, 0x46, 0xff, 0xb3, 0x73, 0x42, 0xff, 0xb8, 0x77, 0x44, 0xff, 0xba, 0x79, 0x45, 0xff, 0xb6, 0x77, 0x43, 0xff, 0xb4, 0x78, 0x44, 0xff, 0xb2, 0x79, 0x47, 0xff, 0xb0, 0x76, 0x4a, 0xff, 0xae, 0x74, 0x4a, 0xff, 0xac, 0x72, 0x47, 0xff, 0xaa, 0x70, 0x44, 0xff, 0xa8, 0x6d, 0x41, 0xff, 0xa5, 0x6a, 0x3a, 0xff, 0xa1, 0x63, 0x33, 0xff, 0x9b, 0x5a, 0x2e, 0xff, 0x94, 0x53, 0x2c, 0xff, 0x8f, 0x4f, 0x28, 0xff, 0x8c, 0x4b, 0x24, 0xff, 0x8b, 0x4a, 0x23, 0xff, 0x8a, 0x49, 0x22, 0xff, 0x8b, 0x49, 0x22, 0xff, 0x89, 0x47, 0x22, 0xff, 0x8a, 0x48, 0x22, 0xff, 0x8a, 0x49, 0x22, 0xff, 0x8a, 0x49, 0x22, 0xff, 0x8b, 0x4a, 0x22, 0xff, 0x8c, 0x4b, 0x22, 0xff, 0x8d, 0x4c, 0x27, 0xff, 0x8f, 0x4d, 0x2d, 0xff, 0x8f, 0x50, 0x2e, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x91, 0x54, 0x2e, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0xa0, 0x61, 0x39, 0xff, 0xba, 0x7b, 0x4d, 0xff, 0xb8, 0x79, 0x4b, 0xff, 0xbf, 0x80, 0x4f, 0xff, 0xbf, 0x7d, 0x4d, 0xff, 0xbe, 0x7f, 0x4d, 0xff, 0xc4, 0x85, 0x55, 0xff, 0xc2, 0x85, 0x55, 0xff, 0xba, 0x7b, 0x4d, 0xff, 0xbe, 0x7f, 0x51, 0xff, 0xc4, 0x85, 0x55, 0xff, 0xcc, 0x8c, 0x5c, 0xff, 0xd8, 0x95, 0x64, 0xff, 0xe7, 0x9c, 0x6a, 0xff, 0xee, 0xa5, 0x70, 0xff, 0xed, 0xa8, 0x74, 0xff, 0xed, 0xaa, 0x77, 0xff, 0xed, 0xa8, 0x75, 0xff, 0xee, 0xa8, 0x71, 0xff, 0xed, 0xa3, 0x6e, 0xff, 0xeb, 0x9e, 0x68, 0xff, 0xe4, 0x98, 0x63, 0xff, 0xe3, 0x95, 0x60, 0xff, 0xd9, 0x8e, 0x5a, 0xff, 0xd0, 0x88, 0x54, 0xff, 0xc7, 0x83, 0x4e, 0xff, 0xc1, 0x7f, 0x4a, 0xff, 0xbd, 0x7b, 0x47, 0xff, 0xbb, 0x76, 0x44, 0xff, 0xb9, 0x76, 0x42, 0xff, 0xb5, 0x72, 0x3e, 0xff, 0xb4, 0x72, 0x3c, 0xff, 0xb6, 0x73, 0x3f, 0xff, 0xb7, 0x74, 0x3f, 0xff, 0xb8, 0x75, 0x40, 0xff, 0xba, 0x77, 0x42, 0xff, 0xbb, 0x78, 0x44, 0xff, 0xbc, 0x79, 0x46, 0xff, 0xbb, 0x7b, 0x47, 0xff, 0xb9, 0x7a, 0x47, 0xff, 0xb9, 0x79, 0x45, 0xff, 0xb8, 0x79, 0x43, 0xff, 0xb8, 0x75, 0x43, 0xff, 0xb7, 0x72, 0x41, 0xff, 0xb5, 0x72, 0x3f, 0xff, 0xb4, 0x6f, 0x3f, 0xff, 0xb0, 0x70, 0x3e, 0xff, 0xa6, 0x66, 0x37, 0xff, 0xa2, 0x62, 0x34, 0xff, 0xa0, 0x62, 0x33, 0xff, 0xa1, 0x67, 0x38, 0xff, 0x9e, 0x61, 0x33, 0xff, 0x9d, 0x5e, 0x32, 0xff, + 0x9c, 0x5d, 0x32, 0xff, 0x9a, 0x5c, 0x32, 0xff, 0x9a, 0x5b, 0x32, 0xff, 0x9a, 0x5b, 0x33, 0xff, 0x9e, 0x64, 0x36, 0xff, 0x9d, 0x64, 0x37, 0xff, 0x97, 0x5f, 0x34, 0xff, 0x91, 0x57, 0x31, 0xff, 0x90, 0x57, 0x30, 0xff, 0x8f, 0x53, 0x2e, 0xff, 0x8e, 0x50, 0x2d, 0xff, 0x8c, 0x4d, 0x2c, 0xff, 0x8a, 0x4b, 0x2b, 0xff, 0x87, 0x49, 0x29, 0xff, 0x85, 0x48, 0x28, 0xff, 0x84, 0x46, 0x26, 0xff, 0x84, 0x45, 0x26, 0xff, 0x8b, 0x4d, 0x2a, 0xff, 0x8f, 0x4e, 0x2c, 0xff, 0x8f, 0x4f, 0x2d, 0xff, 0x8f, 0x4e, 0x2d, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x8e, 0x4e, 0x2d, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x96, 0x55, 0x2e, 0xff, 0x97, 0x57, 0x2f, 0xff, 0x97, 0x57, 0x30, 0xff, 0x97, 0x57, 0x30, 0xff, 0x96, 0x57, 0x30, 0xff, 0x97, 0x58, 0x31, 0xff, 0x97, 0x5a, 0x31, 0xff, 0x97, 0x59, 0x33, 0xff, 0x98, 0x5b, 0x34, 0xff, 0x99, 0x5c, 0x35, 0xff, 0x99, 0x5c, 0x35, 0xff, 0x99, 0x5e, 0x38, 0xff, 0xa4, 0x74, 0x46, 0xff, 0xe4, 0xd2, 0x81, 0xff, 0xe4, 0xe1, 0x91, 0xff, 0xe8, 0xe1, 0xa0, 0xff, 0xec, 0xe2, 0xb8, 0xff, 0xee, 0xe2, 0xd3, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe1, 0xd4, 0xff, 0xee, 0xe1, 0xd4, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe1, 0xd4, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe1, 0xd4, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe2, 0xd1, 0xff, 0xeb, 0xe1, 0xbb, 0xff, 0xe9, 0xe1, 0xa3, 0xff, 0xeb, 0xdc, 0x91, 0xff, 0xed, 0xc6, 0x83, 0xff, 0xee, 0xb0, 0x77, 0xff, 0xec, 0xa4, 0x6b, 0xff, 0xe1, 0x98, 0x61, 0xff, 0xd2, 0x8f, 0x59, 0xff, 0xc7, 0x88, 0x54, 0xff, 0xbf, 0x81, 0x4e, 0xff, 0xbc, 0x7d, 0x4a, 0xff, 0xb9, 0x7a, 0x47, 0xff, 0xb8, 0x77, 0x43, 0xff, 0xb7, 0x76, 0x41, 0xff, 0xb8, 0x75, 0x40, 0xff, 0xb9, 0x75, 0x3f, 0xff, 0xbb, 0x76, 0x40, 0xff, 0xbe, 0x78, 0x41, 0xff, 0xc0, 0x7b, 0x43, 0xff, 0xc4, 0x7f, 0x46, 0xff, 0xcd, 0x84, 0x4a, 0xff, 0xd4, 0x86, 0x4e, 0xff, 0xd6, 0x87, 0x50, 0xff, 0xdb, 0x8a, 0x52, 0xff, 0xdd, 0x8b, 0x53, 0xff, 0xdd, 0x8b, 0x53, 0xff, 0xdf, 0x8e, 0x54, 0xff, 0xe4, 0x8e, 0x55, 0xff, 0xe7, 0x90, 0x57, 0xff, 0xe8, 0x92, 0x59, 0xff, 0xec, 0x95, 0x5c, 0xff, 0xe5, 0x93, 0x5c, 0xff, 0xc0, 0x7d, 0x4a, 0xff, 0xad, 0x6f, 0x3d, 0xff, 0xb4, 0x74, 0x44, 0xff, 0xb6, 0x76, 0x46, 0xff, 0xb9, 0x79, 0x49, 0xff, 0xbb, 0x7d, 0x4c, 0xff, 0xad, 0x70, 0x42, 0xff, 0x9b, 0x5d, 0x31, 0xff, 0x9f, 0x60, 0x33, 0xff, 0xa1, 0x64, 0x37, 0xff, 0xa3, 0x67, 0x39, 0xff, 0xa6, 0x6a, 0x3c, 0xff, 0xa9, 0x6d, 0x3e, 0xff, 0xac, 0x70, 0x41, 0xff, 0xab, 0x70, 0x41, 0xff, 0x99, 0x5d, 0x35, 0xff, 0x89, 0x4c, 0x2b, 0xff, 0x8a, 0x4b, 0x2b, 0xff, 0x87, 0x49, 0x29, 0xff, 0x92, 0x55, 0x31, 0xff, 0xaa, 0x6a, 0x43, 0xff, 0xb7, 0x76, 0x49, 0xff, 0xbc, 0x7d, 0x4d, 0xff, 0xc8, 0x89, 0x57, 0xff, 0xdc, 0x97, 0x61, 0xff, 0xeb, 0x9e, 0x66, 0xff, 0xed, 0x9d, 0x64, 0xff, 0xea, 0x98, 0x61, 0xff, 0xe4, 0x95, 0x5e, 0xff, 0xd8, 0x91, 0x59, 0xff, 0xcd, 0x8c, 0x56, 0xff, 0xcc, 0x89, 0x55, 0xff, 0xdc, 0x98, 0x61, 0xff, 0xee, 0xa3, 0x6a, 0xff, 0xee, 0xa1, 0x66, 0xff, 0xee, 0x9e, 0x66, 0xff, 0xec, 0x9c, 0x64, 0xff, 0xea, 0x9b, 0x63, 0xff, 0xee, 0x9c, 0x65, 0xff, 0xe3, 0x95, 0x5f, 0xff, 0xce, 0x8a, 0x55, 0xff, 0xd9, 0x8f, 0x59, 0xff, 0xea, 0x97, 0x60, 0xff, 0xeb, 0x97, 0x60, 0xff, 0xec, 0x99, 0x61, 0xff, 0xea, 0x99, 0x61, 0xff, 0xe8, 0x95, 0x5f, 0xff, 0xe5, 0x98, 0x60, 0xff, 0xe3, 0x98, 0x60, 0xff, 0xde, 0x95, 0x60, 0xff, 0xda, 0x95, 0x60, 0xff, 0xd7, 0x95, 0x5e, 0xff, 0xd2, 0x90, 0x5b, 0xff, 0xcd, 0x8c, 0x59, 0xff, 0xc8, 0x8a, 0x57, 0xff, 0xc2, 0x86, 0x54, 0xff, 0xbc, 0x80, 0x4f, 0xff, 0xbf, 0x81, 0x51, 0xff, 0xc0, 0x82, 0x50, 0xff, 0xba, 0x7b, 0x49, 0xff, 0xb8, 0x78, 0x46, 0xff, 0xba, 0x7b, 0x47, 0xff, 0xbd, 0x7e, 0x48, 0xff, 0xba, 0x7b, 0x46, 0xff, 0xb6, 0x79, 0x48, 0xff, 0xb4, 0x7a, 0x4b, 0xff, 0xb2, 0x79, 0x4b, 0xff, 0xae, 0x75, 0x48, 0xff, 0xab, 0x70, 0x45, 0xff, 0xab, 0x6f, 0x45, 0xff, 0xa3, 0x67, 0x3c, 0xff, 0x9b, 0x5d, 0x30, 0xff, 0x96, 0x57, 0x2c, 0xff, 0x93, 0x54, 0x2b, 0xff, 0x92, 0x52, 0x2a, 0xff, 0x8f, 0x4f, 0x25, 0xff, 0x8d, 0x4c, 0x24, 0xff, 0x8c, 0x4a, 0x23, 0xff, 0x8c, 0x4a, 0x23, 0xff, 0x8b, 0x49, 0x22, 0xff, 0x8c, 0x4a, 0x24, 0xff, 0x8b, 0x4a, 0x22, 0xff, 0x8c, 0x4a, 0x22, 0xff, 0x8c, 0x4b, 0x26, 0xff, 0x8c, 0x4c, 0x2a, 0xff, 0x8c, 0x4e, 0x2e, 0xff, 0x8d, 0x4e, 0x2d, 0xff, 0x8e, 0x4e, 0x2d, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x8e, 0x50, 0x2d, 0xff, 0x8f, 0x4f, 0x2d, 0xff, 0x8f, 0x4e, 0x2d, 0xff, 0x92, 0x55, 0x2f, 0xff, 0xb9, 0x79, 0x4a, 0xff, 0xbe, 0x7d, 0x4f, 0xff, 0xb9, 0x79, 0x4a, 0xff, 0xbf, 0x7c, 0x4d, 0xff, 0xbe, 0x7c, 0x4c, 0xff, 0xc3, 0x81, 0x50, 0xff, 0xbc, 0x7d, 0x4e, 0xff, 0xbb, 0x7c, 0x4e, 0xff, 0xbf, 0x81, 0x51, 0xff, 0xc5, 0x89, 0x58, 0xff, 0xd0, 0x8f, 0x5e, 0xff, 0xdf, 0x98, 0x65, 0xff, 0xec, 0xa2, 0x70, 0xff, 0xee, 0xab, 0x76, 0xff, 0xee, 0xb0, 0x7c, 0xff, 0xee, 0xb6, 0x80, 0xff, 0xee, 0xb7, 0x7e, 0xff, 0xee, 0xb4, 0x7d, 0xff, 0xee, 0xaf, 0x7b, 0xff, 0xee, 0xa9, 0x73, 0xff, 0xee, 0xa7, 0x70, 0xff, 0xec, 0xa2, 0x6b, 0xff, 0xeb, 0x9a, 0x64, 0xff, 0xe0, 0x93, 0x5b, 0xff, 0xd2, 0x8b, 0x56, 0xff, 0xc9, 0x87, 0x50, 0xff, 0xc5, 0x81, 0x4c, 0xff, 0xc0, 0x7d, 0x49, 0xff, 0xbd, 0x7c, 0x45, 0xff, 0xbb, 0x77, 0x42, 0xff, 0xba, 0x76, 0x40, 0xff, 0xb8, 0x75, 0x3f, 0xff, 0xb8, 0x76, 0x41, 0xff, 0xbb, 0x78, 0x43, 0xff, 0xbe, 0x7a, 0x45, 0xff, 0xc2, 0x7e, 0x49, 0xff, 0xc2, 0x82, 0x4d, 0xff, 0xc2, 0x86, 0x4f, 0xff, 0xbe, 0x82, 0x4c, 0xff, 0xbd, 0x80, 0x4b, 0xff, 0xbc, 0x7d, 0x49, 0xff, 0xba, 0x7a, 0x45, 0xff, 0xb9, 0x76, 0x43, 0xff, 0xb8, 0x76, 0x42, 0xff, 0xb4, 0x72, 0x3f, 0xff, 0xb4, 0x71, 0x3f, 0xff, 0xb1, 0x6f, 0x3f, 0xff, 0xaa, 0x6a, 0x3a, 0xff, 0xa4, 0x68, 0x38, 0xff, 0xa2, 0x69, 0x38, 0xff, 0xa0, 0x64, 0x35, 0xff, 0x9d, 0x5e, 0x32, 0xff, + 0x9a, 0x5b, 0x32, 0xff, 0x9c, 0x5e, 0x33, 0xff, 0x9c, 0x5e, 0x33, 0xff, 0x99, 0x5d, 0x34, 0xff, 0xa0, 0x6a, 0x3b, 0xff, 0x9f, 0x69, 0x3b, 0xff, 0x9a, 0x62, 0x38, 0xff, 0x93, 0x5a, 0x33, 0xff, 0x92, 0x58, 0x32, 0xff, 0x91, 0x56, 0x30, 0xff, 0x91, 0x52, 0x2d, 0xff, 0x8f, 0x50, 0x2c, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x88, 0x4b, 0x29, 0xff, 0x85, 0x48, 0x28, 0xff, 0x84, 0x46, 0x26, 0xff, 0x82, 0x45, 0x26, 0xff, 0x81, 0x44, 0x24, 0xff, 0x8c, 0x4d, 0x2c, 0xff, 0x8f, 0x4f, 0x2d, 0xff, 0x8f, 0x4f, 0x2d, 0xff, 0x8f, 0x4f, 0x2d, 0xff, 0x91, 0x50, 0x2d, 0xff, 0x93, 0x53, 0x2d, 0xff, 0x94, 0x53, 0x2d, 0xff, 0x96, 0x57, 0x30, 0xff, 0x96, 0x56, 0x30, 0xff, 0x97, 0x57, 0x31, 0xff, 0x97, 0x58, 0x30, 0xff, 0x97, 0x58, 0x31, 0xff, 0x97, 0x57, 0x31, 0xff, 0x98, 0x58, 0x32, 0xff, 0x99, 0x5b, 0x34, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x99, 0x5c, 0x35, 0xff, 0x99, 0x5d, 0x37, 0xff, 0x9b, 0x62, 0x3b, 0xff, 0xc4, 0x9f, 0x63, 0xff, 0xf0, 0xdb, 0x85, 0xff, 0xe6, 0xe1, 0x8e, 0xff, 0xe7, 0xe0, 0xa0, 0xff, 0xec, 0xe2, 0xb5, 0xff, 0xee, 0xe2, 0xd4, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe2, 0xd3, 0xff, 0xed, 0xe1, 0xbe, 0xff, 0xe9, 0xe2, 0xa0, 0xff, 0xeb, 0xdd, 0x90, 0xff, 0xee, 0xc4, 0x82, 0xff, 0xec, 0xad, 0x76, 0xff, 0xed, 0xa1, 0x6b, 0xff, 0xe6, 0x98, 0x60, 0xff, 0xd4, 0x90, 0x58, 0xff, 0xca, 0x89, 0x54, 0xff, 0xc5, 0x85, 0x51, 0xff, 0xc2, 0x80, 0x4d, 0xff, 0xc0, 0x7f, 0x4b, 0xff, 0xbe, 0x7d, 0x48, 0xff, 0xbe, 0x7c, 0x47, 0xff, 0xbe, 0x7b, 0x45, 0xff, 0xc1, 0x7a, 0x44, 0xff, 0xc3, 0x7d, 0x45, 0xff, 0xc6, 0x81, 0x46, 0xff, 0xcc, 0x84, 0x49, 0xff, 0xd6, 0x87, 0x4e, 0xff, 0xe0, 0x8c, 0x53, 0xff, 0xe7, 0x8e, 0x54, 0xff, 0xe8, 0x8f, 0x55, 0xff, 0xe6, 0x90, 0x55, 0xff, 0xe9, 0x90, 0x57, 0xff, 0xec, 0x91, 0x59, 0xff, 0xed, 0x93, 0x59, 0xff, 0xed, 0x94, 0x59, 0xff, 0xef, 0x96, 0x5c, 0xff, 0xe6, 0x93, 0x5c, 0xff, 0xc6, 0x80, 0x4d, 0xff, 0xb2, 0x72, 0x42, 0xff, 0xb5, 0x75, 0x45, 0xff, 0xb7, 0x76, 0x46, 0xff, 0xbb, 0x7b, 0x49, 0xff, 0xbc, 0x7c, 0x4b, 0xff, 0xa8, 0x68, 0x3d, 0xff, 0x95, 0x56, 0x2d, 0xff, 0x9b, 0x5d, 0x32, 0xff, 0x9d, 0x5e, 0x33, 0xff, 0x9e, 0x61, 0x35, 0xff, 0xa2, 0x64, 0x37, 0xff, 0xa5, 0x67, 0x39, 0xff, 0xa7, 0x6b, 0x3c, 0xff, 0xaa, 0x6e, 0x3f, 0xff, 0x9f, 0x63, 0x39, 0xff, 0x8b, 0x4f, 0x2c, 0xff, 0x8b, 0x4e, 0x2d, 0xff, 0x8c, 0x4e, 0x2d, 0xff, 0x8c, 0x4f, 0x2d, 0xff, 0x8b, 0x4e, 0x2c, 0xff, 0x8c, 0x4d, 0x2c, 0xff, 0x8e, 0x50, 0x2e, 0xff, 0x91, 0x55, 0x31, 0xff, 0x95, 0x58, 0x34, 0xff, 0x95, 0x56, 0x33, 0xff, 0x9c, 0x5a, 0x34, 0xff, 0xa9, 0x68, 0x3c, 0xff, 0xb3, 0x75, 0x47, 0xff, 0xbc, 0x7f, 0x50, 0xff, 0xbd, 0x81, 0x51, 0xff, 0xbc, 0x81, 0x51, 0xff, 0xbe, 0x84, 0x53, 0xff, 0xbc, 0x87, 0x55, 0xff, 0xd7, 0x9c, 0x66, 0xff, 0xe4, 0xa3, 0x6b, 0xff, 0xd3, 0x94, 0x60, 0xff, 0xc9, 0x8b, 0x58, 0xff, 0xc2, 0x83, 0x4f, 0xff, 0xbc, 0x79, 0x45, 0xff, 0xb7, 0x75, 0x42, 0xff, 0xb5, 0x76, 0x45, 0xff, 0xc9, 0x85, 0x52, 0xff, 0xe1, 0x90, 0x5b, 0xff, 0xeb, 0x94, 0x5e, 0xff, 0xee, 0x99, 0x62, 0xff, 0xed, 0x9d, 0x65, 0xff, 0xee, 0x9d, 0x65, 0xff, 0xec, 0x9e, 0x64, 0xff, 0xe7, 0x9d, 0x66, 0xff, 0xe4, 0x9d, 0x67, 0xff, 0xe0, 0x9f, 0x67, 0xff, 0xdc, 0x9f, 0x67, 0xff, 0xd7, 0x9c, 0x66, 0xff, 0xd5, 0x98, 0x64, 0xff, 0xd5, 0x97, 0x62, 0xff, 0xd4, 0x93, 0x60, 0xff, 0xce, 0x8e, 0x5c, 0xff, 0xc3, 0x85, 0x55, 0xff, 0xc7, 0x88, 0x57, 0xff, 0xc8, 0x88, 0x56, 0xff, 0xbf, 0x82, 0x4e, 0xff, 0xbd, 0x81, 0x4c, 0xff, 0xbb, 0x7e, 0x4a, 0xff, 0xbd, 0x7f, 0x49, 0xff, 0xbc, 0x80, 0x49, 0xff, 0xb9, 0x7f, 0x49, 0xff, 0xb5, 0x7c, 0x4b, 0xff, 0xb2, 0x78, 0x4a, 0xff, 0xb0, 0x74, 0x4a, 0xff, 0xa4, 0x67, 0x3c, 0xff, 0x9b, 0x5c, 0x30, 0xff, 0x99, 0x59, 0x2e, 0xff, 0x98, 0x58, 0x2e, 0xff, 0x97, 0x56, 0x2d, 0xff, 0x96, 0x54, 0x2a, 0xff, 0x93, 0x50, 0x2a, 0xff, 0x90, 0x4f, 0x28, 0xff, 0x8f, 0x4e, 0x27, 0xff, 0x8e, 0x4d, 0x26, 0xff, 0x8b, 0x4b, 0x23, 0xff, 0x8d, 0x4b, 0x23, 0xff, 0x8e, 0x4b, 0x24, 0xff, 0x8d, 0x4c, 0x28, 0xff, 0x8a, 0x4d, 0x2d, 0xff, 0x8a, 0x4c, 0x2c, 0xff, 0x8a, 0x4b, 0x2b, 0xff, 0x8c, 0x4c, 0x2b, 0xff, 0x8c, 0x4d, 0x2c, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x8c, 0x4f, 0x2d, 0xff, 0x8f, 0x4f, 0x2d, 0xff, 0x8b, 0x49, 0x2a, 0xff, 0xa2, 0x65, 0x3c, 0xff, 0xbe, 0x7c, 0x4f, 0xff, 0xba, 0x7b, 0x4b, 0xff, 0xbd, 0x7b, 0x4d, 0xff, 0xbe, 0x7e, 0x4c, 0xff, 0xbd, 0x7d, 0x4c, 0xff, 0xb9, 0x79, 0x4a, 0xff, 0xba, 0x7c, 0x4d, 0xff, 0xbe, 0x7f, 0x52, 0xff, 0xc4, 0x87, 0x57, 0xff, 0xd0, 0x8e, 0x5e, 0xff, 0xe7, 0x9b, 0x67, 0xff, 0xee, 0xa6, 0x73, 0xff, 0xee, 0xb0, 0x7a, 0xff, 0xee, 0xba, 0x82, 0xff, 0xee, 0xc4, 0x88, 0xff, 0xed, 0xcb, 0x8c, 0xff, 0xed, 0xc9, 0x8a, 0xff, 0xee, 0xc0, 0x87, 0xff, 0xee, 0xbd, 0x82, 0xff, 0xee, 0xb3, 0x7a, 0xff, 0xee, 0xa9, 0x74, 0xff, 0xee, 0xa7, 0x6c, 0xff, 0xed, 0x9e, 0x65, 0xff, 0xe1, 0x93, 0x5d, 0xff, 0xd3, 0x8c, 0x56, 0xff, 0xcc, 0x86, 0x51, 0xff, 0xc6, 0x83, 0x4b, 0xff, 0xc1, 0x7f, 0x48, 0xff, 0xc0, 0x7d, 0x45, 0xff, 0xbe, 0x78, 0x43, 0xff, 0xbc, 0x77, 0x42, 0xff, 0xbb, 0x77, 0x42, 0xff, 0xbb, 0x79, 0x44, 0xff, 0xc0, 0x7c, 0x47, 0xff, 0xc6, 0x84, 0x4c, 0xff, 0xc8, 0x88, 0x52, 0xff, 0xc7, 0x8c, 0x55, 0xff, 0xc8, 0x8d, 0x54, 0xff, 0xc4, 0x87, 0x51, 0xff, 0xc1, 0x84, 0x51, 0xff, 0xbe, 0x80, 0x4b, 0xff, 0xbb, 0x7c, 0x48, 0xff, 0xb8, 0x79, 0x43, 0xff, 0xb6, 0x75, 0x42, 0xff, 0xb4, 0x72, 0x40, 0xff, 0xb4, 0x72, 0x3f, 0xff, 0xb2, 0x6f, 0x3f, 0xff, 0xb4, 0x74, 0x42, 0xff, 0xa9, 0x6d, 0x3b, 0xff, 0xa2, 0x64, 0x37, 0xff, 0x9d, 0x5e, 0x33, 0xff, + 0x9a, 0x5b, 0x33, 0xff, 0x9c, 0x5d, 0x34, 0xff, 0x9c, 0x5f, 0x35, 0xff, 0xa0, 0x66, 0x3b, 0xff, 0xa2, 0x6c, 0x3f, 0xff, 0xa0, 0x6a, 0x3e, 0xff, 0x9f, 0x68, 0x3c, 0xff, 0x96, 0x59, 0x34, 0xff, 0x95, 0x58, 0x32, 0xff, 0x93, 0x57, 0x30, 0xff, 0x91, 0x53, 0x2d, 0xff, 0x8e, 0x50, 0x2d, 0xff, 0x8b, 0x4d, 0x2a, 0xff, 0x89, 0x4a, 0x2a, 0xff, 0x85, 0x48, 0x28, 0xff, 0x84, 0x46, 0x27, 0xff, 0x84, 0x46, 0x27, 0xff, 0x83, 0x44, 0x26, 0xff, 0x82, 0x44, 0x27, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x92, 0x52, 0x2f, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x95, 0x56, 0x2f, 0xff, 0x95, 0x56, 0x2f, 0xff, 0x95, 0x54, 0x2e, 0xff, 0x97, 0x58, 0x31, 0xff, 0x97, 0x57, 0x31, 0xff, 0x97, 0x58, 0x31, 0xff, 0x96, 0x57, 0x31, 0xff, 0x96, 0x57, 0x32, 0xff, 0x97, 0x57, 0x32, 0xff, 0x98, 0x5a, 0x33, 0xff, 0x98, 0x5b, 0x34, 0xff, 0x97, 0x59, 0x33, 0xff, 0x97, 0x59, 0x34, 0xff, 0xa5, 0x6a, 0x3e, 0xff, 0xec, 0xb8, 0x75, 0xff, 0xef, 0xc8, 0x7d, 0xff, 0xed, 0xdd, 0x87, 0xff, 0xe3, 0xe2, 0x99, 0xff, 0xe9, 0xe1, 0xab, 0xff, 0xee, 0xe1, 0xcb, 0xff, 0xee, 0xe2, 0xd6, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xef, 0xe2, 0xd6, 0xff, 0xef, 0xe2, 0xd6, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xef, 0xe2, 0xd6, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xef, 0xe2, 0xcf, 0xff, 0xea, 0xe2, 0xb1, 0xff, 0xe7, 0xe1, 0x99, 0xff, 0xef, 0xd6, 0x8a, 0xff, 0xee, 0xb5, 0x7a, 0xff, 0xee, 0xa5, 0x6e, 0xff, 0xeb, 0x9a, 0x65, 0xff, 0xe2, 0x93, 0x5d, 0xff, 0xd8, 0x8f, 0x58, 0xff, 0xd2, 0x8b, 0x54, 0xff, 0xcf, 0x89, 0x53, 0xff, 0xcd, 0x86, 0x52, 0xff, 0xcc, 0x86, 0x50, 0xff, 0xcd, 0x86, 0x4f, 0xff, 0xd0, 0x86, 0x4e, 0xff, 0xd5, 0x86, 0x4f, 0xff, 0xdb, 0x88, 0x4f, 0xff, 0xdb, 0x8c, 0x4e, 0xff, 0xd8, 0x8a, 0x4e, 0xff, 0xe3, 0x8e, 0x53, 0xff, 0xec, 0x91, 0x59, 0xff, 0xec, 0x92, 0x58, 0xff, 0xec, 0x90, 0x57, 0xff, 0xed, 0x93, 0x5a, 0xff, 0xee, 0x94, 0x5b, 0xff, 0xee, 0x95, 0x5b, 0xff, 0xee, 0x96, 0x5c, 0xff, 0xee, 0x97, 0x5d, 0xff, 0xe8, 0x96, 0x5d, 0xff, 0xca, 0x84, 0x4f, 0xff, 0xb0, 0x70, 0x3e, 0xff, 0xb8, 0x77, 0x45, 0xff, 0xb9, 0x78, 0x46, 0xff, 0xbd, 0x7a, 0x4a, 0xff, 0xba, 0x78, 0x49, 0xff, 0xa3, 0x65, 0x39, 0xff, 0x92, 0x54, 0x2b, 0xff, 0x9a, 0x5a, 0x30, 0xff, 0x9b, 0x5b, 0x30, 0xff, 0x9c, 0x5d, 0x31, 0xff, 0x9e, 0x60, 0x33, 0xff, 0xa1, 0x62, 0x35, 0xff, 0xa3, 0x64, 0x38, 0xff, 0xa6, 0x68, 0x3a, 0xff, 0xa4, 0x67, 0x3a, 0xff, 0x96, 0x59, 0x33, 0xff, 0x8a, 0x4e, 0x2c, 0xff, 0x8a, 0x4d, 0x2d, 0xff, 0x8b, 0x4e, 0x2d, 0xff, 0x8b, 0x4f, 0x2d, 0xff, 0x8b, 0x4f, 0x2d, 0xff, 0x8c, 0x4f, 0x2d, 0xff, 0x8f, 0x51, 0x2e, 0xff, 0x90, 0x53, 0x2f, 0xff, 0x90, 0x55, 0x31, 0xff, 0x93, 0x58, 0x32, 0xff, 0x97, 0x59, 0x32, 0xff, 0x97, 0x58, 0x31, 0xff, 0x96, 0x58, 0x32, 0xff, 0x97, 0x5a, 0x33, 0xff, 0x8f, 0x53, 0x2e, 0xff, 0x89, 0x4e, 0x2b, 0xff, 0x8b, 0x4f, 0x2c, 0xff, 0x86, 0x48, 0x28, 0xff, 0x9c, 0x61, 0x39, 0xff, 0xc1, 0x86, 0x53, 0xff, 0xc5, 0x85, 0x53, 0xff, 0xbd, 0x7f, 0x4d, 0xff, 0xba, 0x7c, 0x49, 0xff, 0xb9, 0x79, 0x46, 0xff, 0xb8, 0x78, 0x45, 0xff, 0xb3, 0x75, 0x44, 0xff, 0xba, 0x7a, 0x49, 0xff, 0xde, 0x90, 0x5a, 0xff, 0xf0, 0x99, 0x62, 0xff, 0xee, 0x99, 0x62, 0xff, 0xed, 0x9f, 0x66, 0xff, 0xec, 0xa1, 0x67, 0xff, 0xed, 0xa2, 0x69, 0xff, 0xef, 0xa4, 0x6b, 0xff, 0xeb, 0xa6, 0x6c, 0xff, 0xe5, 0xa7, 0x6f, 0xff, 0xe1, 0xa8, 0x71, 0xff, 0xdb, 0xa6, 0x6f, 0xff, 0xd9, 0xa5, 0x70, 0xff, 0xd9, 0xa5, 0x6f, 0xff, 0xd9, 0xa1, 0x6a, 0xff, 0xd9, 0x9c, 0x67, 0xff, 0xd8, 0x96, 0x62, 0xff, 0xce, 0x8e, 0x5c, 0xff, 0xd7, 0x92, 0x5f, 0xff, 0xd5, 0x90, 0x5a, 0xff, 0xc7, 0x89, 0x52, 0xff, 0xc3, 0x87, 0x50, 0xff, 0xc0, 0x82, 0x4b, 0xff, 0xbd, 0x7e, 0x49, 0xff, 0xbe, 0x81, 0x4a, 0xff, 0xbb, 0x81, 0x49, 0xff, 0xb8, 0x7f, 0x4a, 0xff, 0xaa, 0x6c, 0x3c, 0xff, 0xa2, 0x62, 0x34, 0xff, 0x9e, 0x5f, 0x33, 0xff, 0x9c, 0x5c, 0x31, 0xff, 0x9b, 0x5b, 0x30, 0xff, 0x99, 0x5a, 0x2f, 0xff, 0x99, 0x57, 0x2d, 0xff, 0x98, 0x54, 0x2c, 0xff, 0x93, 0x51, 0x28, 0xff, 0x91, 0x4e, 0x27, 0xff, 0x8f, 0x4d, 0x24, 0xff, 0x90, 0x4d, 0x23, 0xff, 0x90, 0x4d, 0x22, 0xff, 0x8c, 0x4d, 0x29, 0xff, 0x89, 0x4c, 0x2b, 0xff, 0x88, 0x4a, 0x2a, 0xff, 0x88, 0x49, 0x2b, 0xff, 0x8a, 0x4a, 0x2a, 0xff, 0x8b, 0x4b, 0x2a, 0xff, 0x8b, 0x4b, 0x2a, 0xff, 0x8b, 0x4b, 0x2b, 0xff, 0x8b, 0x4b, 0x2a, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x8c, 0x4c, 0x29, 0xff, 0xb9, 0x78, 0x4b, 0xff, 0xc1, 0x7f, 0x51, 0xff, 0xb8, 0x77, 0x49, 0xff, 0xbf, 0x7e, 0x4e, 0xff, 0xbf, 0x7f, 0x4d, 0xff, 0xb9, 0x79, 0x49, 0xff, 0xba, 0x79, 0x4b, 0xff, 0xbd, 0x7e, 0x4f, 0xff, 0xc3, 0x85, 0x53, 0xff, 0xd0, 0x8e, 0x5b, 0xff, 0xe7, 0x9a, 0x66, 0xff, 0xee, 0xa4, 0x71, 0xff, 0xee, 0xaf, 0x7a, 0xff, 0xee, 0xbe, 0x84, 0xff, 0xee, 0xd2, 0x8f, 0xff, 0xee, 0xda, 0x95, 0xff, 0xee, 0xe1, 0x96, 0xff, 0xee, 0xe0, 0x96, 0xff, 0xed, 0xdb, 0x93, 0xff, 0xee, 0xc9, 0x87, 0xff, 0xee, 0xb9, 0x7f, 0xff, 0xec, 0xad, 0x77, 0xff, 0xee, 0xa7, 0x6f, 0xff, 0xec, 0x9e, 0x66, 0xff, 0xdf, 0x94, 0x5a, 0xff, 0xd4, 0x8d, 0x55, 0xff, 0xcd, 0x86, 0x51, 0xff, 0xc6, 0x83, 0x4c, 0xff, 0xc3, 0x80, 0x49, 0xff, 0xc0, 0x7d, 0x45, 0xff, 0xbc, 0x78, 0x42, 0xff, 0xbc, 0x78, 0x43, 0xff, 0xbb, 0x79, 0x44, 0xff, 0xbf, 0x7e, 0x46, 0xff, 0xc5, 0x82, 0x4a, 0xff, 0xca, 0x86, 0x4f, 0xff, 0xcc, 0x8d, 0x55, 0xff, 0xcb, 0x8e, 0x56, 0xff, 0xc8, 0x8a, 0x55, 0xff, 0xc5, 0x86, 0x52, 0xff, 0xc0, 0x83, 0x50, 0xff, 0xbe, 0x7f, 0x4b, 0xff, 0xbb, 0x7a, 0x48, 0xff, 0xb8, 0x79, 0x44, 0xff, 0xb7, 0x75, 0x42, 0xff, 0xb6, 0x72, 0x42, 0xff, 0xb9, 0x76, 0x43, 0xff, 0xb7, 0x75, 0x42, 0xff, 0xb6, 0x75, 0x43, 0xff, 0xaa, 0x6b, 0x3b, 0xff, 0xa1, 0x61, 0x37, 0xff, + 0xa3, 0x64, 0x39, 0xff, 0x9c, 0x5d, 0x35, 0xff, 0x9c, 0x5f, 0x38, 0xff, 0xa5, 0x6e, 0x44, 0xff, 0xa4, 0x6e, 0x43, 0xff, 0xa1, 0x6d, 0x40, 0xff, 0xa1, 0x6d, 0x3f, 0xff, 0x97, 0x5c, 0x34, 0xff, 0x97, 0x59, 0x32, 0xff, 0x95, 0x56, 0x30, 0xff, 0x91, 0x52, 0x2d, 0xff, 0x8e, 0x51, 0x2c, 0xff, 0x8c, 0x4d, 0x2a, 0xff, 0x89, 0x4b, 0x2a, 0xff, 0x87, 0x48, 0x29, 0xff, 0x85, 0x48, 0x28, 0xff, 0x84, 0x47, 0x27, 0xff, 0x85, 0x48, 0x27, 0xff, 0x84, 0x48, 0x2a, 0xff, 0x87, 0x4c, 0x2a, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x96, 0x56, 0x30, 0xff, 0x96, 0x55, 0x30, 0xff, 0x95, 0x55, 0x2f, 0xff, 0x95, 0x55, 0x30, 0xff, 0x95, 0x56, 0x30, 0xff, 0x95, 0x56, 0x2f, 0xff, 0x97, 0x57, 0x31, 0xff, 0x96, 0x56, 0x31, 0xff, 0x96, 0x56, 0x31, 0xff, 0x98, 0x58, 0x32, 0xff, 0x98, 0x58, 0x32, 0xff, 0x98, 0x58, 0x33, 0xff, 0x98, 0x57, 0x33, 0xff, 0x97, 0x57, 0x32, 0xff, 0x98, 0x5a, 0x34, 0xff, 0xd3, 0x9b, 0x63, 0xff, 0xf1, 0xb1, 0x70, 0xff, 0xec, 0xbc, 0x76, 0xff, 0xee, 0xd2, 0x82, 0xff, 0xe7, 0xe2, 0x90, 0xff, 0xe5, 0xe1, 0x9f, 0xff, 0xeb, 0xe2, 0xb5, 0xff, 0xee, 0xe2, 0xd3, 0xff, 0xef, 0xe2, 0xd6, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xef, 0xe2, 0xd6, 0xff, 0xef, 0xe2, 0xd6, 0xff, 0xef, 0xe2, 0xd6, 0xff, 0xef, 0xe2, 0xd6, 0xff, 0xef, 0xe2, 0xd6, 0xff, 0xef, 0xe2, 0xd6, 0xff, 0xef, 0xe2, 0xd6, 0xff, 0xee, 0xe2, 0xd5, 0xff, 0xef, 0xe2, 0xd6, 0xff, 0xef, 0xe2, 0xd6, 0xff, 0xef, 0xe2, 0xd6, 0xff, 0xef, 0xe2, 0xd6, 0xff, 0xed, 0xe2, 0xcd, 0xff, 0xeb, 0xe2, 0xb1, 0xff, 0xeb, 0xdf, 0x98, 0xff, 0xed, 0xd0, 0x87, 0xff, 0xee, 0xb5, 0x79, 0xff, 0xee, 0xa7, 0x6f, 0xff, 0xed, 0xa0, 0x68, 0xff, 0xe9, 0x98, 0x5f, 0xff, 0xde, 0x90, 0x59, 0xff, 0xd7, 0x8e, 0x55, 0xff, 0xd3, 0x8c, 0x54, 0xff, 0xd3, 0x8a, 0x53, 0xff, 0xd6, 0x8a, 0x53, 0xff, 0xd9, 0x8a, 0x52, 0xff, 0xdb, 0x8b, 0x53, 0xff, 0xdf, 0x8c, 0x52, 0xff, 0xe5, 0x8e, 0x54, 0xff, 0xea, 0x91, 0x55, 0xff, 0xee, 0x92, 0x57, 0xff, 0xee, 0x95, 0x5a, 0xff, 0xee, 0x96, 0x5b, 0xff, 0xed, 0x94, 0x59, 0xff, 0xee, 0x95, 0x5b, 0xff, 0xee, 0x98, 0x5d, 0xff, 0xee, 0x98, 0x5d, 0xff, 0xee, 0x97, 0x5d, 0xff, 0xef, 0x99, 0x5f, 0xff, 0xe5, 0x96, 0x5e, 0xff, 0xc7, 0x83, 0x4f, 0xff, 0xb5, 0x75, 0x43, 0xff, 0xbb, 0x7a, 0x48, 0xff, 0xbc, 0x7c, 0x49, 0xff, 0xbf, 0x7f, 0x4c, 0xff, 0xb9, 0x79, 0x48, 0xff, 0xa1, 0x61, 0x35, 0xff, 0x96, 0x56, 0x2d, 0xff, 0x99, 0x5a, 0x2f, 0xff, 0x99, 0x5a, 0x2e, 0xff, 0x9b, 0x5b, 0x2f, 0xff, 0x9c, 0x5d, 0x30, 0xff, 0x9d, 0x5f, 0x31, 0xff, 0xa0, 0x60, 0x33, 0xff, 0xa1, 0x62, 0x36, 0xff, 0xa3, 0x67, 0x39, 0xff, 0x9c, 0x5f, 0x36, 0xff, 0x8d, 0x4f, 0x2f, 0xff, 0x89, 0x4c, 0x2d, 0xff, 0x8a, 0x4e, 0x2d, 0xff, 0x8b, 0x4d, 0x2d, 0xff, 0x8b, 0x4d, 0x2d, 0xff, 0x8b, 0x4e, 0x2d, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x90, 0x53, 0x30, 0xff, 0x91, 0x54, 0x30, 0xff, 0x94, 0x57, 0x32, 0xff, 0x95, 0x57, 0x31, 0xff, 0x95, 0x57, 0x30, 0xff, 0x96, 0x59, 0x32, 0xff, 0x94, 0x57, 0x32, 0xff, 0x8e, 0x50, 0x2e, 0xff, 0x8b, 0x4e, 0x2c, 0xff, 0x8b, 0x4f, 0x2c, 0xff, 0x8b, 0x4f, 0x2b, 0xff, 0x88, 0x4c, 0x28, 0xff, 0xa9, 0x6c, 0x40, 0xff, 0xc9, 0x8a, 0x57, 0xff, 0xc5, 0x86, 0x53, 0xff, 0xc0, 0x80, 0x4d, 0xff, 0xbc, 0x7d, 0x49, 0xff, 0xb9, 0x79, 0x46, 0xff, 0xb5, 0x75, 0x46, 0xff, 0xb4, 0x77, 0x47, 0xff, 0xcf, 0x8a, 0x55, 0xff, 0xe9, 0x97, 0x5f, 0xff, 0xed, 0x9a, 0x62, 0xff, 0xed, 0x9e, 0x66, 0xff, 0xed, 0xa1, 0x68, 0xff, 0xee, 0xa2, 0x69, 0xff, 0xed, 0xa7, 0x6d, 0xff, 0xed, 0xac, 0x73, 0xff, 0xec, 0xad, 0x75, 0xff, 0xe8, 0xab, 0x77, 0xff, 0xe1, 0xa9, 0x78, 0xff, 0xde, 0xa8, 0x7a, 0xff, 0xde, 0xa9, 0x7b, 0xff, 0xde, 0xa9, 0x79, 0xff, 0xdf, 0xa9, 0x75, 0xff, 0xde, 0xa5, 0x70, 0xff, 0xde, 0x9f, 0x6a, 0xff, 0xdb, 0x98, 0x63, 0xff, 0xe1, 0x9a, 0x63, 0xff, 0xe1, 0x98, 0x60, 0xff, 0xd3, 0x8e, 0x57, 0xff, 0xcb, 0x8b, 0x53, 0xff, 0xc5, 0x87, 0x4f, 0xff, 0xbe, 0x80, 0x48, 0xff, 0xba, 0x7b, 0x45, 0xff, 0xb0, 0x71, 0x3e, 0xff, 0xa8, 0x6a, 0x39, 0xff, 0xa4, 0x65, 0x37, 0xff, 0xa2, 0x62, 0x36, 0xff, 0xa1, 0x62, 0x37, 0xff, 0xa2, 0x63, 0x37, 0xff, 0xa1, 0x62, 0x36, 0xff, 0xa2, 0x61, 0x34, 0xff, 0xa1, 0x60, 0x34, 0xff, 0xa0, 0x5f, 0x33, 0xff, 0xa1, 0x5e, 0x33, 0xff, 0xa1, 0x5e, 0x34, 0xff, 0x9e, 0x5d, 0x33, 0xff, 0x94, 0x55, 0x31, 0xff, 0x8a, 0x4d, 0x2e, 0xff, 0x89, 0x4b, 0x2d, 0xff, 0x8b, 0x4c, 0x2c, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x8a, 0x4b, 0x2a, 0xff, 0x8b, 0x4a, 0x2a, 0xff, 0x89, 0x4a, 0x2a, 0xff, 0x8a, 0x4b, 0x2a, 0xff, 0x8a, 0x4b, 0x2a, 0xff, 0x8a, 0x4b, 0x2a, 0xff, 0x8b, 0x4b, 0x2a, 0xff, 0x8d, 0x4b, 0x2b, 0xff, 0x8a, 0x4b, 0x29, 0xff, 0x96, 0x58, 0x32, 0xff, 0xc0, 0x80, 0x52, 0xff, 0xbf, 0x7f, 0x4e, 0xff, 0xb7, 0x76, 0x48, 0xff, 0xc0, 0x7f, 0x4e, 0xff, 0xba, 0x7a, 0x4b, 0xff, 0xb8, 0x79, 0x4b, 0xff, 0xbc, 0x7c, 0x4c, 0xff, 0xc3, 0x83, 0x53, 0xff, 0xcf, 0x8b, 0x59, 0xff, 0xde, 0x95, 0x62, 0xff, 0xed, 0x9e, 0x6c, 0xff, 0xef, 0xad, 0x77, 0xff, 0xee, 0xbb, 0x85, 0xff, 0xee, 0xd5, 0x8f, 0xff, 0xeb, 0xe0, 0x9a, 0xff, 0xe7, 0xe2, 0x9e, 0xff, 0xe7, 0xe1, 0xa3, 0xff, 0xe7, 0xe1, 0xa0, 0xff, 0xea, 0xe0, 0x96, 0xff, 0xee, 0xd4, 0x8c, 0xff, 0xed, 0xbf, 0x81, 0xff, 0xee, 0xb1, 0x77, 0xff, 0xef, 0xa6, 0x6c, 0xff, 0xeb, 0x9c, 0x64, 0xff, 0xe0, 0x93, 0x5d, 0xff, 0xd5, 0x8e, 0x55, 0xff, 0xcd, 0x87, 0x4f, 0xff, 0xc6, 0x82, 0x4b, 0xff, 0xc2, 0x80, 0x48, 0xff, 0xbf, 0x7b, 0x45, 0xff, 0xbe, 0x79, 0x43, 0xff, 0xbd, 0x79, 0x42, 0xff, 0xbe, 0x7a, 0x43, 0xff, 0xc0, 0x7d, 0x45, 0xff, 0xc5, 0x81, 0x49, 0xff, 0xc9, 0x85, 0x4d, 0xff, 0xca, 0x88, 0x50, 0xff, 0xc8, 0x87, 0x50, 0xff, 0xc4, 0x85, 0x50, 0xff, 0xc1, 0x83, 0x4f, 0xff, 0xc0, 0x81, 0x4c, 0xff, 0xbf, 0x80, 0x4a, 0xff, 0xbd, 0x7d, 0x47, 0xff, 0xba, 0x7a, 0x46, 0xff, 0xbb, 0x7c, 0x46, 0xff, 0xbb, 0x79, 0x45, 0xff, 0xb8, 0x76, 0x45, 0xff, 0xb8, 0x75, 0x43, 0xff, 0xb6, 0x75, 0x43, 0xff, 0xad, 0x6d, 0x3d, 0xff, + 0xb0, 0x71, 0x40, 0xff, 0xa4, 0x66, 0x3b, 0xff, 0x9e, 0x63, 0x3c, 0xff, 0xa6, 0x6e, 0x47, 0xff, 0xa5, 0x6e, 0x45, 0xff, 0xa4, 0x6d, 0x41, 0xff, 0xa2, 0x6b, 0x3e, 0xff, 0x9c, 0x5f, 0x35, 0xff, 0x96, 0x58, 0x31, 0xff, 0x94, 0x56, 0x2f, 0xff, 0x90, 0x52, 0x2d, 0xff, 0x8f, 0x51, 0x2c, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8a, 0x4b, 0x2a, 0xff, 0x89, 0x4b, 0x2a, 0xff, 0x88, 0x49, 0x29, 0xff, 0x87, 0x4a, 0x29, 0xff, 0x88, 0x4b, 0x2a, 0xff, 0x88, 0x4b, 0x2c, 0xff, 0x8a, 0x4f, 0x2d, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x98, 0x58, 0x32, 0xff, 0x96, 0x56, 0x30, 0xff, 0x95, 0x55, 0x30, 0xff, 0x96, 0x57, 0x30, 0xff, 0x95, 0x56, 0x30, 0xff, 0x95, 0x56, 0x30, 0xff, 0x95, 0x55, 0x30, 0xff, 0x96, 0x56, 0x31, 0xff, 0x97, 0x57, 0x32, 0xff, 0x98, 0x57, 0x33, 0xff, 0x98, 0x58, 0x32, 0xff, 0x96, 0x58, 0x33, 0xff, 0x95, 0x54, 0x31, 0xff, 0xb4, 0x79, 0x49, 0xff, 0xf3, 0xa9, 0x68, 0xff, 0xed, 0xae, 0x6c, 0xff, 0xee, 0xb1, 0x70, 0xff, 0xef, 0xc1, 0x78, 0xff, 0xeb, 0xd5, 0x82, 0xff, 0xe6, 0xe3, 0x91, 0xff, 0xe5, 0xe1, 0x9f, 0xff, 0xeb, 0xe2, 0xb6, 0xff, 0xee, 0xe2, 0xd0, 0xff, 0xef, 0xe2, 0xd7, 0xff, 0xef, 0xe2, 0xd6, 0xff, 0xef, 0xe2, 0xd6, 0xff, 0xef, 0xe2, 0xd6, 0xff, 0xef, 0xe2, 0xd6, 0xff, 0xef, 0xe2, 0xd6, 0xff, 0xef, 0xe2, 0xd6, 0xff, 0xef, 0xe2, 0xd6, 0xff, 0xef, 0xe2, 0xd6, 0xff, 0xef, 0xe2, 0xd6, 0xff, 0xef, 0xe2, 0xd6, 0xff, 0xef, 0xe2, 0xd6, 0xff, 0xef, 0xe2, 0xd4, 0xff, 0xed, 0xe2, 0xc2, 0xff, 0xea, 0xe2, 0xa8, 0xff, 0xed, 0xe1, 0x97, 0xff, 0xee, 0xd4, 0x87, 0xff, 0xee, 0xb9, 0x78, 0xff, 0xee, 0xa9, 0x6f, 0xff, 0xee, 0xa1, 0x67, 0xff, 0xed, 0x98, 0x61, 0xff, 0xe9, 0x94, 0x5b, 0xff, 0xe2, 0x92, 0x5a, 0xff, 0xdd, 0x90, 0x58, 0xff, 0xdd, 0x8f, 0x56, 0xff, 0xde, 0x8f, 0x56, 0xff, 0xde, 0x8e, 0x55, 0xff, 0xdf, 0x8e, 0x55, 0xff, 0xe3, 0x8e, 0x55, 0xff, 0xea, 0x90, 0x56, 0xff, 0xed, 0x94, 0x59, 0xff, 0xed, 0x96, 0x5c, 0xff, 0xee, 0x9a, 0x5e, 0xff, 0xee, 0x9d, 0x61, 0xff, 0xee, 0x9c, 0x60, 0xff, 0xed, 0x9a, 0x5f, 0xff, 0xed, 0x99, 0x5e, 0xff, 0xee, 0x9c, 0x60, 0xff, 0xee, 0x9f, 0x63, 0xff, 0xe0, 0x99, 0x60, 0xff, 0xc4, 0x86, 0x50, 0xff, 0xbb, 0x7c, 0x48, 0xff, 0xbf, 0x7d, 0x4a, 0xff, 0xc0, 0x7e, 0x4b, 0xff, 0xc7, 0x85, 0x52, 0xff, 0xbe, 0x7d, 0x4c, 0xff, 0x9d, 0x5d, 0x31, 0xff, 0x9a, 0x5a, 0x2f, 0xff, 0x99, 0x5a, 0x2f, 0xff, 0x9a, 0x5a, 0x2e, 0xff, 0x9a, 0x5a, 0x2f, 0xff, 0x9b, 0x5a, 0x2f, 0xff, 0x9c, 0x5c, 0x30, 0xff, 0x9d, 0x5f, 0x31, 0xff, 0x9e, 0x60, 0x33, 0xff, 0xa1, 0x62, 0x35, 0xff, 0xa1, 0x64, 0x37, 0xff, 0x96, 0x5a, 0x33, 0xff, 0x8a, 0x4c, 0x2d, 0xff, 0x8a, 0x4c, 0x2d, 0xff, 0x8a, 0x4c, 0x2d, 0xff, 0x8c, 0x4c, 0x2d, 0xff, 0x8c, 0x4d, 0x2d, 0xff, 0x8b, 0x4e, 0x2c, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8f, 0x51, 0x2d, 0xff, 0x8f, 0x52, 0x2e, 0xff, 0x92, 0x54, 0x30, 0xff, 0x93, 0x56, 0x31, 0xff, 0x92, 0x54, 0x2f, 0xff, 0x93, 0x54, 0x2e, 0xff, 0x96, 0x58, 0x30, 0xff, 0x90, 0x54, 0x2f, 0xff, 0x8a, 0x4d, 0x2c, 0xff, 0x8a, 0x4d, 0x2b, 0xff, 0x8b, 0x4e, 0x2b, 0xff, 0x8a, 0x4e, 0x2a, 0xff, 0x89, 0x4d, 0x29, 0xff, 0x90, 0x55, 0x2d, 0xff, 0xb7, 0x76, 0x46, 0xff, 0xcd, 0x89, 0x55, 0xff, 0xc5, 0x85, 0x51, 0xff, 0xc1, 0x81, 0x4e, 0xff, 0xba, 0x7a, 0x49, 0xff, 0xb7, 0x7a, 0x49, 0xff, 0xb4, 0x77, 0x49, 0xff, 0xc7, 0x86, 0x54, 0xff, 0xe6, 0x99, 0x60, 0xff, 0xef, 0x9b, 0x61, 0xff, 0xee, 0x9d, 0x64, 0xff, 0xed, 0xa1, 0x67, 0xff, 0xec, 0xa4, 0x68, 0xff, 0xed, 0xa8, 0x6d, 0xff, 0xee, 0xad, 0x73, 0xff, 0xef, 0xaf, 0x78, 0xff, 0xec, 0xad, 0x7d, 0xff, 0xe7, 0xab, 0x7f, 0xff, 0xe5, 0xa9, 0x81, 0xff, 0xe3, 0xa8, 0x84, 0xff, 0xe4, 0xaa, 0x85, 0xff, 0xe5, 0xab, 0x82, 0xff, 0xe5, 0xac, 0x7e, 0xff, 0xe8, 0xae, 0x79, 0xff, 0xe9, 0xa9, 0x72, 0xff, 0xe8, 0xa2, 0x6a, 0xff, 0xe9, 0x9f, 0x65, 0xff, 0xe9, 0x9e, 0x65, 0xff, 0xe1, 0x97, 0x5c, 0xff, 0xd7, 0x93, 0x57, 0xff, 0xcc, 0x8d, 0x52, 0xff, 0xb7, 0x79, 0x46, 0xff, 0xaa, 0x6c, 0x3e, 0xff, 0xa7, 0x68, 0x3c, 0xff, 0xa5, 0x68, 0x3b, 0xff, 0xa3, 0x65, 0x3a, 0xff, 0xa3, 0x64, 0x39, 0xff, 0xa3, 0x64, 0x37, 0xff, 0xa2, 0x62, 0x36, 0xff, 0xa2, 0x60, 0x34, 0xff, 0xa1, 0x5e, 0x33, 0xff, 0xa0, 0x5e, 0x31, 0xff, 0xa0, 0x5c, 0x31, 0xff, 0x9a, 0x57, 0x30, 0xff, 0x8f, 0x50, 0x2e, 0xff, 0x89, 0x4b, 0x2b, 0xff, 0x88, 0x49, 0x2b, 0xff, 0x89, 0x4b, 0x2b, 0xff, 0x8b, 0x4b, 0x2a, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x8d, 0x4e, 0x2c, 0xff, 0x8c, 0x4d, 0x2c, 0xff, 0x8e, 0x4d, 0x2b, 0xff, 0x8e, 0x4d, 0x2c, 0xff, 0x8d, 0x4c, 0x2b, 0xff, 0x89, 0x49, 0x2a, 0xff, 0x88, 0x49, 0x29, 0xff, 0x8a, 0x4b, 0x2a, 0xff, 0x8d, 0x4d, 0x2b, 0xff, 0x89, 0x49, 0x27, 0xff, 0xad, 0x6c, 0x41, 0xff, 0xc5, 0x83, 0x53, 0xff, 0xbc, 0x7b, 0x4d, 0xff, 0xb7, 0x77, 0x48, 0xff, 0xbd, 0x7c, 0x4d, 0xff, 0xbb, 0x7a, 0x4c, 0xff, 0xba, 0x7b, 0x4c, 0xff, 0xc0, 0x7f, 0x4f, 0xff, 0xc7, 0x86, 0x55, 0xff, 0xd2, 0x8c, 0x5c, 0xff, 0xe4, 0x98, 0x65, 0xff, 0xee, 0xa9, 0x74, 0xff, 0xee, 0xb6, 0x80, 0xff, 0xee, 0xce, 0x8d, 0xff, 0xea, 0xe0, 0x9b, 0xff, 0xe8, 0xe1, 0xa4, 0xff, 0xe8, 0xe2, 0xa8, 0xff, 0xe8, 0xe2, 0xa6, 0xff, 0xe8, 0xe2, 0xa2, 0xff, 0xe8, 0xe2, 0x98, 0xff, 0xed, 0xdc, 0x8f, 0xff, 0xef, 0xc3, 0x82, 0xff, 0xed, 0xb2, 0x76, 0xff, 0xee, 0xa5, 0x6b, 0xff, 0xe9, 0x9a, 0x61, 0xff, 0xdd, 0x92, 0x5b, 0xff, 0xd4, 0x8d, 0x55, 0xff, 0xcd, 0x87, 0x50, 0xff, 0xc6, 0x81, 0x4b, 0xff, 0xc2, 0x7e, 0x48, 0xff, 0xc0, 0x79, 0x45, 0xff, 0xbe, 0x79, 0x42, 0xff, 0xbf, 0x79, 0x42, 0xff, 0xbf, 0x7a, 0x43, 0xff, 0xc0, 0x7b, 0x45, 0xff, 0xc4, 0x80, 0x47, 0xff, 0xc5, 0x80, 0x49, 0xff, 0xc4, 0x82, 0x4b, 0xff, 0xc2, 0x80, 0x4c, 0xff, 0xc1, 0x80, 0x4c, 0xff, 0xc1, 0x81, 0x4b, 0xff, 0xc1, 0x80, 0x49, 0xff, 0xbf, 0x7d, 0x48, 0xff, 0xc0, 0x80, 0x49, 0xff, 0xbf, 0x7f, 0x48, 0xff, 0xbc, 0x7d, 0x47, 0xff, 0xb9, 0x79, 0x46, 0xff, 0xb7, 0x74, 0x43, 0xff, 0xb5, 0x73, 0x42, 0xff, 0xb4, 0x72, 0x42, 0xff, + 0xb3, 0x72, 0x42, 0xff, 0xb1, 0x72, 0x42, 0xff, 0xaa, 0x71, 0x46, 0xff, 0xa6, 0x6c, 0x47, 0xff, 0xa6, 0x6d, 0x45, 0xff, 0xa4, 0x6b, 0x41, 0xff, 0xa0, 0x67, 0x3d, 0xff, 0x9d, 0x60, 0x37, 0xff, 0x94, 0x55, 0x31, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x8f, 0x51, 0x2d, 0xff, 0x8f, 0x50, 0x2c, 0xff, 0x8d, 0x4e, 0x2b, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8b, 0x4f, 0x2b, 0xff, 0x8b, 0x4e, 0x2b, 0xff, 0x8b, 0x4e, 0x2b, 0xff, 0x8b, 0x4e, 0x2c, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8e, 0x50, 0x2d, 0xff, 0x96, 0x57, 0x32, 0xff, 0x96, 0x57, 0x31, 0xff, 0x96, 0x56, 0x31, 0xff, 0x94, 0x55, 0x30, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x94, 0x55, 0x30, 0xff, 0x95, 0x56, 0x30, 0xff, 0x98, 0x59, 0x32, 0xff, 0x98, 0x58, 0x33, 0xff, 0x98, 0x5b, 0x34, 0xff, 0x95, 0x58, 0x33, 0xff, 0xa5, 0x6a, 0x3e, 0xff, 0xe9, 0x9b, 0x62, 0xff, 0xee, 0x9c, 0x5f, 0xff, 0xed, 0xa5, 0x65, 0xff, 0xed, 0xaf, 0x6e, 0xff, 0xec, 0xb1, 0x73, 0xff, 0xef, 0xc0, 0x78, 0xff, 0xeb, 0xd2, 0x82, 0xff, 0xe5, 0xe2, 0x8f, 0xff, 0xe5, 0xe2, 0x9b, 0xff, 0xea, 0xe1, 0xad, 0xff, 0xee, 0xe2, 0xc5, 0xff, 0xef, 0xe2, 0xd7, 0xff, 0xef, 0xe2, 0xd6, 0xff, 0xef, 0xe2, 0xd6, 0xff, 0xef, 0xe2, 0xd6, 0xff, 0xef, 0xe2, 0xd6, 0xff, 0xef, 0xe2, 0xd6, 0xff, 0xef, 0xe2, 0xd6, 0xff, 0xef, 0xe2, 0xd6, 0xff, 0xef, 0xe3, 0xd7, 0xff, 0xef, 0xe2, 0xd6, 0xff, 0xef, 0xe2, 0xd5, 0xff, 0xee, 0xe1, 0xc9, 0xff, 0xe8, 0xe2, 0xae, 0xff, 0xe8, 0xe2, 0xa0, 0xff, 0xec, 0xe0, 0x92, 0xff, 0xef, 0xcf, 0x84, 0xff, 0xef, 0xb7, 0x78, 0xff, 0xee, 0xaa, 0x6e, 0xff, 0xee, 0xa1, 0x67, 0xff, 0xee, 0x9a, 0x60, 0xff, 0xed, 0x97, 0x5d, 0xff, 0xeb, 0x95, 0x5b, 0xff, 0xe7, 0x91, 0x5a, 0xff, 0xe4, 0x91, 0x5a, 0xff, 0xe2, 0x92, 0x59, 0xff, 0xe4, 0x92, 0x58, 0xff, 0xe5, 0x93, 0x58, 0xff, 0xe9, 0x93, 0x59, 0xff, 0xef, 0x94, 0x5a, 0xff, 0xee, 0x95, 0x5a, 0xff, 0xee, 0x96, 0x5b, 0xff, 0xee, 0x9b, 0x60, 0xff, 0xee, 0xa2, 0x64, 0xff, 0xed, 0xa2, 0x65, 0xff, 0xee, 0xa2, 0x65, 0xff, 0xed, 0xa0, 0x63, 0xff, 0xef, 0xa3, 0x67, 0xff, 0xdf, 0x9c, 0x63, 0xff, 0xc0, 0x81, 0x4c, 0xff, 0xc6, 0x84, 0x4d, 0xff, 0xc6, 0x86, 0x4f, 0xff, 0xcb, 0x87, 0x51, 0xff, 0xce, 0x8a, 0x56, 0xff, 0xb2, 0x71, 0x42, 0xff, 0x9b, 0x5b, 0x30, 0xff, 0x9d, 0x5e, 0x32, 0xff, 0x9c, 0x5e, 0x32, 0xff, 0x9d, 0x5e, 0x32, 0xff, 0x9c, 0x5c, 0x31, 0xff, 0x9c, 0x5d, 0x30, 0xff, 0x9d, 0x5d, 0x30, 0xff, 0x9c, 0x5e, 0x30, 0xff, 0x9d, 0x5e, 0x31, 0xff, 0xa0, 0x61, 0x33, 0xff, 0xa2, 0x62, 0x35, 0xff, 0x9e, 0x5f, 0x35, 0xff, 0x92, 0x56, 0x30, 0xff, 0x8a, 0x4e, 0x2d, 0xff, 0x8b, 0x4e, 0x2d, 0xff, 0x8c, 0x4d, 0x2d, 0xff, 0x8b, 0x4e, 0x2d, 0xff, 0x8d, 0x4e, 0x2d, 0xff, 0x8c, 0x4f, 0x2d, 0xff, 0x8d, 0x50, 0x2d, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x91, 0x54, 0x2f, 0xff, 0x92, 0x55, 0x30, 0xff, 0x92, 0x54, 0x2f, 0xff, 0x91, 0x52, 0x2d, 0xff, 0x91, 0x52, 0x2d, 0xff, 0x92, 0x54, 0x2f, 0xff, 0x8f, 0x52, 0x2e, 0xff, 0x89, 0x4d, 0x2a, 0xff, 0x89, 0x4c, 0x2a, 0xff, 0x8a, 0x4b, 0x29, 0xff, 0x8a, 0x4c, 0x29, 0xff, 0x8a, 0x4f, 0x2a, 0xff, 0x88, 0x4c, 0x28, 0xff, 0x99, 0x5d, 0x36, 0xff, 0xc6, 0x82, 0x52, 0xff, 0xd3, 0x8c, 0x56, 0xff, 0xc4, 0x82, 0x4f, 0xff, 0xbe, 0x80, 0x4c, 0xff, 0xbb, 0x7b, 0x49, 0xff, 0xbb, 0x7b, 0x4b, 0xff, 0xb4, 0x77, 0x48, 0xff, 0xd4, 0x8e, 0x5b, 0xff, 0xf0, 0x9e, 0x65, 0xff, 0xed, 0x9d, 0x62, 0xff, 0xed, 0xa1, 0x67, 0xff, 0xee, 0xa2, 0x68, 0xff, 0xee, 0xa6, 0x6b, 0xff, 0xef, 0xae, 0x71, 0xff, 0xef, 0xb2, 0x76, 0xff, 0xef, 0xb1, 0x7d, 0xff, 0xed, 0xaf, 0x84, 0xff, 0xec, 0xad, 0x85, 0xff, 0xec, 0xac, 0x86, 0xff, 0xec, 0xad, 0x88, 0xff, 0xec, 0xaf, 0x87, 0xff, 0xec, 0xae, 0x8a, 0xff, 0xee, 0xb1, 0x88, 0xff, 0xef, 0xb5, 0x83, 0xff, 0xef, 0xb3, 0x7a, 0xff, 0xef, 0xab, 0x70, 0xff, 0xec, 0xa5, 0x6a, 0xff, 0xf0, 0xa8, 0x6b, 0xff, 0xdf, 0x9a, 0x60, 0xff, 0xc5, 0x88, 0x54, 0xff, 0xb6, 0x7a, 0x4b, 0xff, 0xb0, 0x73, 0x46, 0xff, 0xac, 0x6f, 0x43, 0xff, 0xa8, 0x6c, 0x3f, 0xff, 0xa6, 0x69, 0x3c, 0xff, 0xa5, 0x67, 0x39, 0xff, 0xa3, 0x65, 0x37, 0xff, 0xa3, 0x63, 0x37, 0xff, 0xa2, 0x61, 0x35, 0xff, 0xa1, 0x5f, 0x33, 0xff, 0xa0, 0x5e, 0x32, 0xff, 0x9b, 0x58, 0x30, 0xff, 0x8d, 0x4e, 0x2e, 0xff, 0x89, 0x4b, 0x2c, 0xff, 0x87, 0x49, 0x2a, 0xff, 0x87, 0x48, 0x2a, 0xff, 0x89, 0x47, 0x2a, 0xff, 0x89, 0x49, 0x2a, 0xff, 0x8a, 0x4b, 0x2a, 0xff, 0x8b, 0x4b, 0x2b, 0xff, 0x8e, 0x4d, 0x2b, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x8e, 0x4e, 0x2b, 0xff, 0x90, 0x4f, 0x2d, 0xff, 0x90, 0x4f, 0x2d, 0xff, 0x8f, 0x4d, 0x2c, 0xff, 0x8b, 0x4b, 0x29, 0xff, 0x8d, 0x4c, 0x2b, 0xff, 0x8d, 0x4b, 0x2b, 0xff, 0x91, 0x51, 0x2d, 0xff, 0xba, 0x78, 0x4a, 0xff, 0xc0, 0x81, 0x4f, 0xff, 0xba, 0x7a, 0x4b, 0xff, 0xbb, 0x7a, 0x4b, 0xff, 0xbe, 0x7d, 0x4f, 0xff, 0xbb, 0x7c, 0x4c, 0xff, 0xbb, 0x7b, 0x4c, 0xff, 0xc1, 0x81, 0x50, 0xff, 0xc8, 0x88, 0x55, 0xff, 0xdb, 0x93, 0x5f, 0xff, 0xed, 0xa0, 0x6d, 0xff, 0xef, 0xae, 0x79, 0xff, 0xee, 0xc2, 0x86, 0xff, 0xec, 0xdf, 0x96, 0xff, 0xe8, 0xe2, 0xa3, 0xff, 0xea, 0xe1, 0xab, 0xff, 0xea, 0xe1, 0xad, 0xff, 0xe8, 0xe2, 0xa7, 0xff, 0xe5, 0xe2, 0x9f, 0xff, 0xe7, 0xe3, 0x96, 0xff, 0xee, 0xd4, 0x8d, 0xff, 0xef, 0xbe, 0x80, 0xff, 0xee, 0xaf, 0x72, 0xff, 0xee, 0xa3, 0x69, 0xff, 0xe8, 0x99, 0x60, 0xff, 0xd7, 0x90, 0x57, 0xff, 0xcd, 0x87, 0x52, 0xff, 0xca, 0x86, 0x4e, 0xff, 0xc8, 0x83, 0x4d, 0xff, 0xc2, 0x7e, 0x47, 0xff, 0xc0, 0x7a, 0x44, 0xff, 0xc0, 0x7a, 0x44, 0xff, 0xc0, 0x79, 0x43, 0xff, 0xc0, 0x7a, 0x44, 0xff, 0xc0, 0x7a, 0x44, 0xff, 0xc2, 0x7c, 0x45, 0xff, 0xc2, 0x7c, 0x47, 0xff, 0xc2, 0x80, 0x48, 0xff, 0xc2, 0x7f, 0x49, 0xff, 0xc1, 0x7e, 0x49, 0xff, 0xbe, 0x7c, 0x48, 0xff, 0xc2, 0x80, 0x48, 0xff, 0xc2, 0x80, 0x48, 0xff, 0xbf, 0x7e, 0x47, 0xff, 0xbc, 0x7a, 0x45, 0xff, 0xb9, 0x79, 0x46, 0xff, 0xb7, 0x73, 0x43, 0xff, 0xb5, 0x72, 0x41, 0xff, 0xb4, 0x72, 0x42, 0xff, + 0xb0, 0x70, 0x41, 0xff, 0xb3, 0x73, 0x43, 0xff, 0xb5, 0x79, 0x4b, 0xff, 0xaa, 0x72, 0x47, 0xff, 0xa5, 0x6c, 0x45, 0xff, 0xa2, 0x68, 0x40, 0xff, 0x9f, 0x66, 0x3c, 0xff, 0x9b, 0x60, 0x37, 0xff, 0x95, 0x55, 0x30, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x91, 0x50, 0x2d, 0xff, 0x8f, 0x51, 0x2c, 0xff, 0x8f, 0x4f, 0x2d, 0xff, 0x8f, 0x51, 0x2d, 0xff, 0x90, 0x53, 0x2c, 0xff, 0x8f, 0x51, 0x2b, 0xff, 0x8e, 0x51, 0x2c, 0xff, 0x8d, 0x51, 0x2d, 0xff, 0x8d, 0x50, 0x2c, 0xff, 0x8c, 0x50, 0x2c, 0xff, 0x8b, 0x4f, 0x2b, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x8b, 0x4f, 0x2b, 0xff, 0x8d, 0x4f, 0x2c, 0xff, 0x94, 0x55, 0x30, 0xff, 0x96, 0x56, 0x31, 0xff, 0x96, 0x56, 0x31, 0xff, 0x96, 0x57, 0x31, 0xff, 0x96, 0x56, 0x30, 0xff, 0x95, 0x56, 0x30, 0xff, 0x97, 0x56, 0x30, 0xff, 0x97, 0x57, 0x32, 0xff, 0x97, 0x56, 0x32, 0xff, 0x9d, 0x5e, 0x36, 0xff, 0xcf, 0x8b, 0x53, 0xff, 0xf0, 0x9c, 0x61, 0xff, 0xee, 0x9c, 0x61, 0xff, 0xee, 0x9e, 0x61, 0xff, 0xeb, 0xa1, 0x64, 0xff, 0xec, 0xad, 0x6d, 0xff, 0xed, 0xb1, 0x72, 0xff, 0xef, 0xba, 0x77, 0xff, 0xed, 0xcb, 0x7c, 0xff, 0xe8, 0xdf, 0x87, 0xff, 0xe5, 0xe3, 0x95, 0xff, 0xe6, 0xe1, 0xa0, 0xff, 0xec, 0xe3, 0xb2, 0xff, 0xed, 0xe1, 0xcb, 0xff, 0xee, 0xe3, 0xd3, 0xff, 0xef, 0xe3, 0xd3, 0xff, 0xef, 0xe2, 0xd3, 0xff, 0xef, 0xe2, 0xd0, 0xff, 0xee, 0xe2, 0xd0, 0xff, 0xee, 0xe3, 0xcf, 0xff, 0xee, 0xe2, 0xcb, 0xff, 0xed, 0xe1, 0xc3, 0xff, 0xeb, 0xe2, 0xb1, 0xff, 0xe8, 0xe2, 0xa6, 0xff, 0xe8, 0xe1, 0x9d, 0xff, 0xea, 0xdf, 0x93, 0xff, 0xee, 0xd1, 0x89, 0xff, 0xed, 0xbf, 0x7d, 0xff, 0xee, 0xb2, 0x74, 0xff, 0xee, 0xa9, 0x6c, 0xff, 0xee, 0xa2, 0x65, 0xff, 0xee, 0x9a, 0x60, 0xff, 0xee, 0x97, 0x5c, 0xff, 0xee, 0x95, 0x5b, 0xff, 0xeb, 0x94, 0x5a, 0xff, 0xe9, 0x93, 0x5a, 0xff, 0xeb, 0x94, 0x5a, 0xff, 0xee, 0x95, 0x5a, 0xff, 0xef, 0x96, 0x5c, 0xff, 0xee, 0x97, 0x5d, 0xff, 0xed, 0x99, 0x5e, 0xff, 0xee, 0x9c, 0x5f, 0xff, 0xee, 0x9c, 0x60, 0xff, 0xee, 0x9f, 0x62, 0xff, 0xed, 0xa1, 0x63, 0xff, 0xed, 0xa3, 0x65, 0xff, 0xee, 0xa4, 0x69, 0xff, 0xe9, 0xa2, 0x67, 0xff, 0xd4, 0x92, 0x58, 0xff, 0xc0, 0x7c, 0x47, 0xff, 0xca, 0x87, 0x50, 0xff, 0xcf, 0x8a, 0x53, 0xff, 0xd4, 0x8c, 0x56, 0xff, 0xc8, 0x84, 0x4f, 0xff, 0xac, 0x6f, 0x3e, 0xff, 0xa0, 0x62, 0x35, 0xff, 0xa3, 0x63, 0x37, 0xff, 0xa1, 0x62, 0x36, 0xff, 0xa0, 0x60, 0x35, 0xff, 0xa0, 0x61, 0x35, 0xff, 0x9f, 0x61, 0x34, 0xff, 0x9f, 0x60, 0x33, 0xff, 0xa1, 0x60, 0x33, 0xff, 0xa0, 0x61, 0x33, 0xff, 0x9f, 0x61, 0x33, 0xff, 0xa0, 0x61, 0x34, 0xff, 0xa1, 0x65, 0x35, 0xff, 0x99, 0x5b, 0x32, 0xff, 0x8c, 0x4b, 0x2c, 0xff, 0x8d, 0x4d, 0x2d, 0xff, 0x8d, 0x4e, 0x2c, 0xff, 0x8c, 0x4f, 0x2d, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x8e, 0x51, 0x2d, 0xff, 0x8f, 0x52, 0x2d, 0xff, 0x91, 0x54, 0x2e, 0xff, 0x91, 0x54, 0x2e, 0xff, 0x90, 0x52, 0x2c, 0xff, 0x8f, 0x52, 0x2c, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x8d, 0x50, 0x2d, 0xff, 0x88, 0x4a, 0x2a, 0xff, 0x88, 0x4c, 0x29, 0xff, 0x89, 0x4b, 0x29, 0xff, 0x8a, 0x4b, 0x29, 0xff, 0x8a, 0x4d, 0x2a, 0xff, 0x8c, 0x4f, 0x2b, 0xff, 0x86, 0x47, 0x23, 0xff, 0x9f, 0x63, 0x38, 0xff, 0xcc, 0x8a, 0x57, 0xff, 0xcf, 0x89, 0x55, 0xff, 0xc3, 0x81, 0x4f, 0xff, 0xbf, 0x80, 0x4e, 0xff, 0xbe, 0x7f, 0x4e, 0xff, 0xb9, 0x7b, 0x4a, 0xff, 0xc0, 0x84, 0x52, 0xff, 0xe1, 0x9c, 0x63, 0xff, 0xf0, 0xa2, 0x67, 0xff, 0xec, 0x9f, 0x65, 0xff, 0xec, 0xa1, 0x67, 0xff, 0xed, 0xa5, 0x69, 0xff, 0xef, 0xaa, 0x6e, 0xff, 0xef, 0xb3, 0x75, 0xff, 0xef, 0xb3, 0x7b, 0xff, 0xef, 0xb0, 0x83, 0xff, 0xef, 0xb0, 0x87, 0xff, 0xee, 0xb0, 0x89, 0xff, 0xee, 0xb0, 0x89, 0xff, 0xee, 0xb0, 0x8c, 0xff, 0xee, 0xb4, 0x8e, 0xff, 0xee, 0xb5, 0x91, 0xff, 0xee, 0xb9, 0x91, 0xff, 0xef, 0xc1, 0x8c, 0xff, 0xed, 0xc1, 0x82, 0xff, 0xe1, 0xab, 0x72, 0xff, 0xca, 0x90, 0x5e, 0xff, 0xc8, 0x8a, 0x59, 0xff, 0xbd, 0x81, 0x52, 0xff, 0xb8, 0x7b, 0x4e, 0xff, 0xb5, 0x79, 0x4d, 0xff, 0xb1, 0x74, 0x49, 0xff, 0xaf, 0x72, 0x45, 0xff, 0xab, 0x6e, 0x40, 0xff, 0xa9, 0x6a, 0x3d, 0xff, 0xa8, 0x68, 0x3a, 0xff, 0xa6, 0x66, 0x38, 0xff, 0xa4, 0x62, 0x36, 0xff, 0xa3, 0x61, 0x34, 0xff, 0x9b, 0x5c, 0x33, 0xff, 0x8d, 0x4e, 0x2e, 0xff, 0x89, 0x4c, 0x2d, 0xff, 0x88, 0x4a, 0x2c, 0xff, 0x86, 0x48, 0x2a, 0xff, 0x87, 0x48, 0x2a, 0xff, 0x87, 0x48, 0x2a, 0xff, 0x88, 0x49, 0x29, 0xff, 0x89, 0x48, 0x29, 0xff, 0x8a, 0x4a, 0x2b, 0xff, 0x8b, 0x4b, 0x2b, 0xff, 0x8e, 0x4d, 0x2c, 0xff, 0x8f, 0x4e, 0x2c, 0xff, 0x8f, 0x4e, 0x2b, 0xff, 0x90, 0x4e, 0x2d, 0xff, 0x92, 0x50, 0x2d, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x91, 0x50, 0x2c, 0xff, 0x8e, 0x4d, 0x2b, 0xff, 0x89, 0x49, 0x28, 0xff, 0xa6, 0x65, 0x3d, 0xff, 0xc6, 0x82, 0x52, 0xff, 0xc0, 0x7e, 0x4e, 0xff, 0xbc, 0x7a, 0x4b, 0xff, 0xbb, 0x7a, 0x4b, 0xff, 0xbd, 0x7c, 0x4c, 0xff, 0xba, 0x7c, 0x4b, 0xff, 0xba, 0x7c, 0x4c, 0xff, 0xc1, 0x80, 0x50, 0xff, 0xcd, 0x8c, 0x58, 0xff, 0xe2, 0x96, 0x63, 0xff, 0xed, 0xa4, 0x70, 0xff, 0xef, 0xb8, 0x7f, 0xff, 0xee, 0xd9, 0x90, 0xff, 0xe8, 0xe2, 0x9c, 0xff, 0xe8, 0xe2, 0xa5, 0xff, 0xea, 0xe2, 0xac, 0xff, 0xea, 0xe3, 0xab, 0xff, 0xe8, 0xe2, 0xa4, 0xff, 0xe2, 0xde, 0x9a, 0xff, 0xeb, 0xde, 0x91, 0xff, 0xef, 0xcc, 0x85, 0xff, 0xef, 0xb9, 0x7b, 0xff, 0xee, 0xab, 0x71, 0xff, 0xed, 0xa0, 0x66, 0xff, 0xe3, 0x96, 0x5e, 0xff, 0xd5, 0x8f, 0x56, 0xff, 0xca, 0x87, 0x4f, 0xff, 0xc5, 0x83, 0x4d, 0xff, 0xc5, 0x80, 0x4a, 0xff, 0xc2, 0x7c, 0x46, 0xff, 0xc1, 0x7c, 0x46, 0xff, 0xc1, 0x7b, 0x45, 0xff, 0xbf, 0x7a, 0x45, 0xff, 0xc0, 0x7a, 0x44, 0xff, 0xbf, 0x79, 0x45, 0xff, 0xc0, 0x7c, 0x45, 0xff, 0xc0, 0x7b, 0x45, 0xff, 0xc0, 0x7b, 0x45, 0xff, 0xc2, 0x7e, 0x49, 0xff, 0xc2, 0x7f, 0x48, 0xff, 0xc2, 0x81, 0x48, 0xff, 0xc1, 0x7e, 0x46, 0xff, 0xbe, 0x7d, 0x45, 0xff, 0xbb, 0x7a, 0x45, 0xff, 0xba, 0x77, 0x42, 0xff, 0xb7, 0x73, 0x43, 0xff, 0xb4, 0x72, 0x42, 0xff, 0xb4, 0x71, 0x41, 0xff, + 0xb0, 0x6e, 0x3e, 0xff, 0xb0, 0x73, 0x44, 0xff, 0xb4, 0x78, 0x48, 0xff, 0xb4, 0x7a, 0x4b, 0xff, 0xac, 0x71, 0x45, 0xff, 0xa1, 0x67, 0x3f, 0xff, 0x9d, 0x63, 0x3b, 0xff, 0x9b, 0x60, 0x36, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x94, 0x55, 0x2e, 0xff, 0x94, 0x55, 0x2e, 0xff, 0x94, 0x55, 0x2d, 0xff, 0x92, 0x54, 0x2c, 0xff, 0x91, 0x53, 0x2c, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x8e, 0x51, 0x2c, 0xff, 0x8f, 0x52, 0x2d, 0xff, 0x8f, 0x51, 0x2c, 0xff, 0x8d, 0x50, 0x2c, 0xff, 0x8c, 0x4f, 0x2b, 0xff, 0x8c, 0x4e, 0x2a, 0xff, 0x8b, 0x4e, 0x2b, 0xff, 0x8b, 0x4e, 0x2b, 0xff, 0x8a, 0x4d, 0x29, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x95, 0x55, 0x30, 0xff, 0x98, 0x58, 0x32, 0xff, 0x98, 0x58, 0x32, 0xff, 0x98, 0x57, 0x32, 0xff, 0x96, 0x57, 0x31, 0xff, 0x95, 0x56, 0x30, 0xff, 0x97, 0x57, 0x34, 0xff, 0xb8, 0x79, 0x4b, 0xff, 0xf2, 0xa8, 0x6b, 0xff, 0xed, 0x9f, 0x63, 0xff, 0xee, 0x9f, 0x62, 0xff, 0xee, 0x9e, 0x61, 0xff, 0xee, 0xa0, 0x62, 0xff, 0xed, 0xa2, 0x64, 0xff, 0xec, 0xa7, 0x68, 0xff, 0xed, 0xb2, 0x6f, 0xff, 0xed, 0xba, 0x74, 0xff, 0xee, 0xc6, 0x79, 0xff, 0xe9, 0xda, 0x83, 0xff, 0xe6, 0xe1, 0x90, 0xff, 0xe3, 0xe2, 0x98, 0xff, 0xe5, 0xe3, 0x9e, 0xff, 0xe8, 0xe3, 0xa8, 0xff, 0xe9, 0xe3, 0xb1, 0xff, 0xe8, 0xe3, 0xae, 0xff, 0xe6, 0xe2, 0xa1, 0xff, 0xe7, 0xe3, 0xa1, 0xff, 0xe6, 0xe3, 0x9c, 0xff, 0xeb, 0xe3, 0x98, 0xff, 0xeb, 0xe1, 0x94, 0xff, 0xe9, 0xde, 0x8f, 0xff, 0xec, 0xd7, 0x89, 0xff, 0xee, 0xd0, 0x83, 0xff, 0xef, 0xc5, 0x7d, 0xff, 0xef, 0xb8, 0x77, 0xff, 0xef, 0xae, 0x6f, 0xff, 0xed, 0xa8, 0x6b, 0xff, 0xed, 0xa2, 0x66, 0xff, 0xee, 0x9e, 0x61, 0xff, 0xee, 0x9a, 0x5f, 0xff, 0xee, 0x96, 0x5c, 0xff, 0xee, 0x94, 0x5a, 0xff, 0xee, 0x95, 0x5a, 0xff, 0xee, 0x95, 0x5c, 0xff, 0xee, 0x97, 0x5d, 0xff, 0xee, 0x98, 0x5d, 0xff, 0xee, 0x99, 0x5e, 0xff, 0xed, 0x9e, 0x62, 0xff, 0xed, 0xa2, 0x68, 0xff, 0xee, 0xa4, 0x6a, 0xff, 0xee, 0xa7, 0x69, 0xff, 0xee, 0xa4, 0x67, 0xff, 0xef, 0xa2, 0x65, 0xff, 0xed, 0xa6, 0x68, 0xff, 0xdf, 0x9b, 0x61, 0xff, 0xcb, 0x89, 0x53, 0xff, 0xc7, 0x83, 0x4f, 0xff, 0xcf, 0x87, 0x51, 0xff, 0xd4, 0x8c, 0x55, 0xff, 0xd1, 0x8a, 0x54, 0xff, 0xbf, 0x7d, 0x4a, 0xff, 0xa8, 0x6f, 0x3f, 0xff, 0xa5, 0x69, 0x3a, 0xff, 0xa9, 0x6c, 0x3e, 0xff, 0xa9, 0x6b, 0x3c, 0xff, 0xa7, 0x6a, 0x3a, 0xff, 0xa6, 0x67, 0x39, 0xff, 0xa5, 0x67, 0x37, 0xff, 0xa4, 0x66, 0x37, 0xff, 0xa3, 0x64, 0x37, 0xff, 0xa2, 0x64, 0x37, 0xff, 0xa2, 0x65, 0x36, 0xff, 0xa3, 0x66, 0x35, 0xff, 0xa2, 0x66, 0x36, 0xff, 0xa1, 0x64, 0x35, 0xff, 0x96, 0x59, 0x31, 0xff, 0x8d, 0x4e, 0x2d, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x8f, 0x50, 0x2e, 0xff, 0x8f, 0x51, 0x2d, 0xff, 0x8f, 0x51, 0x2e, 0xff, 0x8f, 0x51, 0x2d, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x8f, 0x51, 0x2d, 0xff, 0x8e, 0x50, 0x2c, 0xff, 0x8e, 0x50, 0x2c, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x8a, 0x4e, 0x2a, 0xff, 0x87, 0x4b, 0x29, 0xff, 0x87, 0x4a, 0x29, 0xff, 0x87, 0x4a, 0x28, 0xff, 0x89, 0x4b, 0x28, 0xff, 0x89, 0x4c, 0x2a, 0xff, 0x8c, 0x4e, 0x2a, 0xff, 0x8e, 0x50, 0x2c, 0xff, 0x86, 0x47, 0x23, 0xff, 0xa6, 0x66, 0x3b, 0xff, 0xd4, 0x8f, 0x5c, 0xff, 0xce, 0x8b, 0x57, 0xff, 0xc0, 0x81, 0x4f, 0xff, 0xbe, 0x7f, 0x4d, 0xff, 0xbf, 0x7f, 0x4c, 0xff, 0xb8, 0x78, 0x46, 0xff, 0xcd, 0x8c, 0x58, 0xff, 0xeb, 0xa2, 0x67, 0xff, 0xee, 0xa3, 0x66, 0xff, 0xec, 0xa1, 0x67, 0xff, 0xed, 0xa3, 0x68, 0xff, 0xee, 0xa8, 0x6b, 0xff, 0xee, 0xae, 0x6f, 0xff, 0xef, 0xb3, 0x77, 0xff, 0xef, 0xb4, 0x81, 0xff, 0xee, 0xb3, 0x89, 0xff, 0xee, 0xb3, 0x8c, 0xff, 0xee, 0xb2, 0x8c, 0xff, 0xee, 0xb3, 0x8e, 0xff, 0xee, 0xb9, 0x92, 0xff, 0xef, 0xbd, 0x93, 0xff, 0xf0, 0xc2, 0x99, 0xff, 0xe4, 0xbd, 0x8f, 0xff, 0xcb, 0xa3, 0x73, 0xff, 0xbe, 0x8c, 0x5d, 0xff, 0xc5, 0x8c, 0x5c, 0xff, 0xc5, 0x8a, 0x5a, 0xff, 0xc3, 0x87, 0x57, 0xff, 0xc1, 0x85, 0x57, 0xff, 0xbf, 0x82, 0x54, 0xff, 0xbc, 0x7f, 0x50, 0xff, 0xb6, 0x7b, 0x4c, 0xff, 0xb1, 0x75, 0x47, 0xff, 0xae, 0x6f, 0x42, 0xff, 0xaa, 0x6b, 0x3f, 0xff, 0xa8, 0x69, 0x3b, 0xff, 0xa7, 0x67, 0x38, 0xff, 0x9e, 0x5e, 0x34, 0xff, 0x8e, 0x50, 0x2e, 0xff, 0x8b, 0x4c, 0x2d, 0xff, 0x89, 0x4b, 0x2c, 0xff, 0x87, 0x49, 0x2a, 0xff, 0x87, 0x47, 0x2a, 0xff, 0x87, 0x47, 0x29, 0xff, 0x87, 0x47, 0x2a, 0xff, 0x89, 0x47, 0x29, 0xff, 0x89, 0x49, 0x2a, 0xff, 0x8a, 0x4a, 0x2a, 0xff, 0x8c, 0x4b, 0x2a, 0xff, 0x8d, 0x4d, 0x2b, 0xff, 0x8f, 0x4e, 0x2b, 0xff, 0x90, 0x4f, 0x2c, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x91, 0x4f, 0x2d, 0xff, 0x92, 0x50, 0x2d, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x96, 0x55, 0x2e, 0xff, 0x93, 0x52, 0x2d, 0xff, 0x87, 0x45, 0x23, 0xff, 0xb7, 0x74, 0x47, 0xff, 0xcc, 0x85, 0x53, 0xff, 0xc0, 0x7d, 0x4e, 0xff, 0xbf, 0x7c, 0x4c, 0xff, 0xb9, 0x79, 0x49, 0xff, 0xba, 0x79, 0x49, 0xff, 0xba, 0x79, 0x4a, 0xff, 0xbd, 0x7d, 0x4c, 0xff, 0xc3, 0x83, 0x52, 0xff, 0xd0, 0x8c, 0x59, 0xff, 0xe5, 0x9a, 0x66, 0xff, 0xee, 0xaf, 0x77, 0xff, 0xef, 0xc3, 0x83, 0xff, 0xed, 0xd9, 0x90, 0xff, 0xe7, 0xe2, 0x9b, 0xff, 0xe8, 0xe3, 0xa1, 0xff, 0xe7, 0xe2, 0xa6, 0xff, 0xe8, 0xe2, 0xa6, 0xff, 0xe7, 0xe2, 0x9d, 0xff, 0xea, 0xe0, 0x94, 0xff, 0xef, 0xd0, 0x88, 0xff, 0xee, 0xbd, 0x7f, 0xff, 0xef, 0xb0, 0x76, 0xff, 0xee, 0xa7, 0x6d, 0xff, 0xed, 0x9f, 0x65, 0xff, 0xe3, 0x96, 0x5d, 0xff, 0xd6, 0x8e, 0x57, 0xff, 0xcf, 0x89, 0x53, 0xff, 0xc8, 0x86, 0x4f, 0xff, 0xc2, 0x80, 0x49, 0xff, 0xc0, 0x7c, 0x47, 0xff, 0xc0, 0x7b, 0x45, 0xff, 0xbe, 0x79, 0x43, 0xff, 0xbe, 0x78, 0x44, 0xff, 0xbe, 0x79, 0x45, 0xff, 0xbe, 0x79, 0x44, 0xff, 0xbd, 0x79, 0x44, 0xff, 0xc1, 0x7c, 0x45, 0xff, 0xc2, 0x7e, 0x46, 0xff, 0xc2, 0x7f, 0x46, 0xff, 0xbf, 0x7c, 0x45, 0xff, 0xbd, 0x7b, 0x45, 0xff, 0xbb, 0x79, 0x44, 0xff, 0xb8, 0x76, 0x42, 0xff, 0xb6, 0x78, 0x41, 0xff, 0xb4, 0x71, 0x41, 0xff, 0xb4, 0x71, 0x40, 0xff, 0xb1, 0x72, 0x3f, 0xff, + 0xaf, 0x6f, 0x3e, 0xff, 0xb4, 0x78, 0x4a, 0xff, 0xb3, 0x75, 0x48, 0xff, 0xb3, 0x77, 0x47, 0xff, 0xb0, 0x75, 0x46, 0xff, 0xa6, 0x6a, 0x3f, 0xff, 0xa0, 0x65, 0x3c, 0xff, 0x9e, 0x65, 0x3a, 0xff, 0x99, 0x5d, 0x34, 0xff, 0x97, 0x5a, 0x31, 0xff, 0x97, 0x58, 0x31, 0xff, 0x96, 0x58, 0x2f, 0xff, 0x95, 0x56, 0x2e, 0xff, 0x94, 0x55, 0x2d, 0xff, 0x92, 0x55, 0x2d, 0xff, 0x91, 0x54, 0x2c, 0xff, 0x91, 0x54, 0x2c, 0xff, 0x91, 0x53, 0x2c, 0xff, 0x90, 0x54, 0x2c, 0xff, 0x8e, 0x51, 0x2b, 0xff, 0x8e, 0x50, 0x2c, 0xff, 0x8d, 0x4e, 0x2b, 0xff, 0x8c, 0x50, 0x2a, 0xff, 0x8c, 0x4e, 0x2a, 0xff, 0x8c, 0x4f, 0x2b, 0xff, 0x8d, 0x4f, 0x2b, 0xff, 0x8d, 0x50, 0x2c, 0xff, 0x95, 0x56, 0x31, 0xff, 0x98, 0x5a, 0x33, 0xff, 0x94, 0x56, 0x31, 0xff, 0x96, 0x57, 0x32, 0xff, 0x97, 0x58, 0x32, 0xff, 0xa6, 0x68, 0x3b, 0xff, 0xee, 0xa1, 0x64, 0xff, 0xed, 0xa0, 0x61, 0xff, 0xed, 0xa5, 0x69, 0xff, 0xee, 0xa6, 0x69, 0xff, 0xed, 0xa7, 0x69, 0xff, 0xec, 0xa3, 0x66, 0xff, 0xeb, 0xa3, 0x68, 0xff, 0xed, 0xa2, 0x64, 0xff, 0xee, 0xa4, 0x67, 0xff, 0xed, 0xa7, 0x68, 0xff, 0xeb, 0xb8, 0x73, 0xff, 0xef, 0xcb, 0x79, 0xff, 0xec, 0xd1, 0x7c, 0xff, 0xe8, 0xe1, 0x86, 0xff, 0xe6, 0xe2, 0x8b, 0xff, 0xe5, 0xe1, 0x8c, 0xff, 0xeb, 0xda, 0x86, 0xff, 0xeb, 0xdf, 0x87, 0xff, 0xea, 0xdf, 0x84, 0xff, 0xeb, 0xde, 0x86, 0xff, 0xed, 0xd0, 0x80, 0xff, 0xed, 0xc8, 0x7d, 0xff, 0xef, 0xc2, 0x78, 0xff, 0xed, 0xbd, 0x77, 0xff, 0xed, 0xb4, 0x72, 0xff, 0xef, 0xb0, 0x6f, 0xff, 0xee, 0xab, 0x6c, 0xff, 0xed, 0xa7, 0x6a, 0xff, 0xed, 0xa3, 0x65, 0xff, 0xed, 0xa2, 0x63, 0xff, 0xed, 0x9f, 0x62, 0xff, 0xee, 0x9b, 0x60, 0xff, 0xee, 0x9a, 0x5e, 0xff, 0xee, 0x9a, 0x5e, 0xff, 0xee, 0x99, 0x5d, 0xff, 0xee, 0x98, 0x5d, 0xff, 0xee, 0x98, 0x5d, 0xff, 0xee, 0x9b, 0x5d, 0xff, 0xee, 0x9d, 0x5f, 0xff, 0xee, 0xa1, 0x64, 0xff, 0xed, 0xa6, 0x6a, 0xff, 0xee, 0xa9, 0x6f, 0xff, 0xee, 0xaa, 0x71, 0xff, 0xee, 0xa8, 0x6d, 0xff, 0xf0, 0xa9, 0x6b, 0xff, 0xe6, 0xa2, 0x66, 0xff, 0xcd, 0x8e, 0x55, 0xff, 0xc7, 0x84, 0x4d, 0xff, 0xcd, 0x87, 0x51, 0xff, 0xd6, 0x8c, 0x55, 0xff, 0xd8, 0x8d, 0x58, 0xff, 0xc2, 0x80, 0x4c, 0xff, 0xad, 0x6e, 0x3d, 0xff, 0xa9, 0x6d, 0x3d, 0xff, 0xa9, 0x6f, 0x40, 0xff, 0xa8, 0x6f, 0x42, 0xff, 0xaa, 0x70, 0x43, 0xff, 0xad, 0x72, 0x43, 0xff, 0xad, 0x73, 0x42, 0xff, 0xad, 0x70, 0x40, 0xff, 0xab, 0x6e, 0x3e, 0xff, 0xaa, 0x6d, 0x3d, 0xff, 0xa9, 0x6d, 0x3e, 0xff, 0xa8, 0x6c, 0x3d, 0xff, 0xa8, 0x6b, 0x3b, 0xff, 0xa7, 0x6a, 0x3a, 0xff, 0xa8, 0x6c, 0x3b, 0xff, 0xa1, 0x64, 0x37, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x8f, 0x51, 0x2f, 0xff, 0x8f, 0x51, 0x2e, 0xff, 0x8f, 0x51, 0x2e, 0xff, 0x91, 0x51, 0x2e, 0xff, 0x91, 0x53, 0x2e, 0xff, 0x90, 0x53, 0x2e, 0xff, 0x92, 0x54, 0x2f, 0xff, 0x91, 0x53, 0x2e, 0xff, 0x91, 0x53, 0x2e, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x8e, 0x4f, 0x2b, 0xff, 0x8e, 0x4f, 0x2b, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x8e, 0x4e, 0x2c, 0xff, 0x88, 0x4a, 0x28, 0xff, 0x86, 0x48, 0x26, 0xff, 0x86, 0x4a, 0x27, 0xff, 0x88, 0x4a, 0x28, 0xff, 0x88, 0x4a, 0x29, 0xff, 0x8a, 0x4d, 0x29, 0xff, 0x8b, 0x4e, 0x29, 0xff, 0x8c, 0x4f, 0x2b, 0xff, 0x8d, 0x4f, 0x2c, 0xff, 0x8a, 0x4d, 0x29, 0xff, 0xa9, 0x6a, 0x41, 0xff, 0xcd, 0x8a, 0x58, 0xff, 0xcc, 0x89, 0x55, 0xff, 0xc2, 0x83, 0x4f, 0xff, 0xc1, 0x82, 0x4f, 0xff, 0xc1, 0x80, 0x4e, 0xff, 0xc1, 0x81, 0x4f, 0xff, 0xdf, 0x9b, 0x63, 0xff, 0xef, 0xa7, 0x6a, 0xff, 0xec, 0xa2, 0x65, 0xff, 0xed, 0xa1, 0x66, 0xff, 0xee, 0xa4, 0x69, 0xff, 0xee, 0xa8, 0x6b, 0xff, 0xef, 0xaf, 0x72, 0xff, 0xef, 0xb7, 0x7a, 0xff, 0xef, 0xb7, 0x82, 0xff, 0xee, 0xb5, 0x8b, 0xff, 0xee, 0xb6, 0x90, 0xff, 0xee, 0xb7, 0x91, 0xff, 0xef, 0xba, 0x91, 0xff, 0xf2, 0xc8, 0x9e, 0xff, 0xd5, 0xae, 0x86, 0xff, 0xc0, 0x8e, 0x66, 0xff, 0xc1, 0x8b, 0x61, 0xff, 0xca, 0x93, 0x64, 0xff, 0xd1, 0x96, 0x65, 0xff, 0xd4, 0x95, 0x64, 0xff, 0xd3, 0x92, 0x62, 0xff, 0xcd, 0x8f, 0x5e, 0xff, 0xc7, 0x8b, 0x5b, 0xff, 0xc3, 0x87, 0x58, 0xff, 0xbe, 0x83, 0x54, 0xff, 0xb8, 0x7d, 0x4f, 0xff, 0xb4, 0x77, 0x4b, 0xff, 0xb0, 0x72, 0x46, 0xff, 0xae, 0x70, 0x41, 0xff, 0xa4, 0x65, 0x3a, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x8c, 0x4f, 0x2d, 0xff, 0x8b, 0x4d, 0x2c, 0xff, 0x8a, 0x4b, 0x2b, 0xff, 0x87, 0x48, 0x2a, 0xff, 0x86, 0x47, 0x29, 0xff, 0x87, 0x48, 0x29, 0xff, 0x87, 0x47, 0x29, 0xff, 0x88, 0x49, 0x29, 0xff, 0x8a, 0x4b, 0x2a, 0xff, 0x8b, 0x4c, 0x2a, 0xff, 0x8d, 0x4c, 0x2b, 0xff, 0x8c, 0x4b, 0x2a, 0xff, 0x8d, 0x4c, 0x2b, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x92, 0x51, 0x2d, 0xff, 0x91, 0x50, 0x2d, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x92, 0x52, 0x2d, 0xff, 0x95, 0x55, 0x2d, 0xff, 0x98, 0x55, 0x2e, 0xff, 0x98, 0x57, 0x2f, 0xff, 0x88, 0x46, 0x21, 0xff, 0xbd, 0x80, 0x50, 0xff, 0xca, 0x86, 0x53, 0xff, 0xc3, 0x80, 0x4f, 0xff, 0xbd, 0x7a, 0x4c, 0xff, 0xb8, 0x77, 0x48, 0xff, 0xb8, 0x77, 0x48, 0xff, 0xba, 0x7b, 0x4b, 0xff, 0xbe, 0x7b, 0x4c, 0xff, 0xc7, 0x85, 0x53, 0xff, 0xe3, 0x96, 0x60, 0xff, 0xef, 0xa0, 0x69, 0xff, 0xed, 0xae, 0x77, 0xff, 0xef, 0xbf, 0x83, 0xff, 0xed, 0xd3, 0x8f, 0xff, 0xeb, 0xe2, 0x96, 0xff, 0xe7, 0xe2, 0x9d, 0xff, 0xe7, 0xe3, 0x9e, 0xff, 0xe6, 0xe1, 0x9d, 0xff, 0xea, 0xe4, 0x95, 0xff, 0xee, 0xd5, 0x8d, 0xff, 0xef, 0xc1, 0x82, 0xff, 0xef, 0xb1, 0x77, 0xff, 0xed, 0xab, 0x72, 0xff, 0xed, 0xa2, 0x69, 0xff, 0xed, 0x9d, 0x63, 0xff, 0xe4, 0x96, 0x5e, 0xff, 0xdc, 0x91, 0x5a, 0xff, 0xd6, 0x8e, 0x57, 0xff, 0xcf, 0x88, 0x4f, 0xff, 0xc6, 0x81, 0x4c, 0xff, 0xc3, 0x7f, 0x49, 0xff, 0xbf, 0x7c, 0x48, 0xff, 0xbf, 0x7b, 0x45, 0xff, 0xbd, 0x79, 0x44, 0xff, 0xbb, 0x77, 0x41, 0xff, 0xbc, 0x77, 0x42, 0xff, 0xbc, 0x78, 0x42, 0xff, 0xbd, 0x77, 0x42, 0xff, 0xbc, 0x79, 0x42, 0xff, 0xb9, 0x76, 0x40, 0xff, 0xb8, 0x76, 0x40, 0xff, 0xb6, 0x73, 0x3e, 0xff, 0xb5, 0x72, 0x3f, 0xff, 0xb4, 0x71, 0x3e, 0xff, 0xb3, 0x71, 0x3e, 0xff, 0xb0, 0x6e, 0x3e, 0xff, 0xb0, 0x6e, 0x3e, 0xff, + 0xb1, 0x71, 0x41, 0xff, 0xb5, 0x7b, 0x49, 0xff, 0xb3, 0x76, 0x48, 0xff, 0xb0, 0x72, 0x45, 0xff, 0xaf, 0x75, 0x47, 0xff, 0xae, 0x79, 0x4b, 0xff, 0xad, 0x7f, 0x54, 0xff, 0xac, 0x7c, 0x4d, 0xff, 0xa3, 0x70, 0x40, 0xff, 0x98, 0x5b, 0x32, 0xff, 0x98, 0x5b, 0x32, 0xff, 0x97, 0x5b, 0x31, 0xff, 0x96, 0x59, 0x2f, 0xff, 0x95, 0x58, 0x2e, 0xff, 0x95, 0x57, 0x2d, 0xff, 0x93, 0x54, 0x2d, 0xff, 0x92, 0x54, 0x2d, 0xff, 0x93, 0x55, 0x2e, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x90, 0x51, 0x2c, 0xff, 0x8f, 0x52, 0x2b, 0xff, 0x8c, 0x4e, 0x2a, 0xff, 0x8c, 0x4e, 0x2a, 0xff, 0x8d, 0x4d, 0x2a, 0xff, 0x8d, 0x50, 0x2c, 0xff, 0x8f, 0x52, 0x2b, 0xff, 0x8f, 0x50, 0x2b, 0xff, 0x8d, 0x50, 0x2b, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x96, 0x59, 0x33, 0xff, 0x95, 0x57, 0x32, 0xff, 0x97, 0x58, 0x33, 0xff, 0xe8, 0xa1, 0x65, 0xff, 0xf0, 0x9f, 0x62, 0xff, 0xee, 0xa0, 0x61, 0xff, 0xec, 0xa0, 0x5f, 0xff, 0xec, 0xa6, 0x67, 0xff, 0xee, 0xa9, 0x6a, 0xff, 0xee, 0xab, 0x6b, 0xff, 0xee, 0xac, 0x6c, 0xff, 0xee, 0xae, 0x6f, 0xff, 0xec, 0xaa, 0x6c, 0xff, 0xec, 0xa5, 0x67, 0xff, 0xee, 0xb4, 0x71, 0xff, 0xeb, 0xb5, 0x71, 0xff, 0xea, 0xbf, 0x74, 0xff, 0xed, 0xd5, 0x7d, 0xff, 0xed, 0xd8, 0x7d, 0xff, 0xec, 0xc3, 0x77, 0xff, 0xef, 0xbd, 0x75, 0xff, 0xed, 0xc5, 0x78, 0xff, 0xef, 0xc9, 0x79, 0xff, 0xed, 0xc1, 0x77, 0xff, 0xed, 0xba, 0x75, 0xff, 0xef, 0xb8, 0x73, 0xff, 0xec, 0xae, 0x6f, 0xff, 0xee, 0xad, 0x6c, 0xff, 0xee, 0xae, 0x6b, 0xff, 0xed, 0xa7, 0x68, 0xff, 0xee, 0xa7, 0x68, 0xff, 0xee, 0xa2, 0x66, 0xff, 0xed, 0xa3, 0x65, 0xff, 0xee, 0xa3, 0x64, 0xff, 0xee, 0xa0, 0x62, 0xff, 0xee, 0x9e, 0x61, 0xff, 0xee, 0x9e, 0x61, 0xff, 0xee, 0x9b, 0x61, 0xff, 0xed, 0x9b, 0x5f, 0xff, 0xee, 0x9e, 0x5f, 0xff, 0xee, 0xa0, 0x62, 0xff, 0xee, 0xa2, 0x64, 0xff, 0xed, 0xa4, 0x66, 0xff, 0xee, 0xa8, 0x6a, 0xff, 0xee, 0xac, 0x6e, 0xff, 0xee, 0xaf, 0x72, 0xff, 0xee, 0xae, 0x6f, 0xff, 0xec, 0xa9, 0x6a, 0xff, 0xd8, 0x98, 0x5f, 0xff, 0xbf, 0x83, 0x4c, 0xff, 0xc5, 0x84, 0x4f, 0xff, 0xd0, 0x89, 0x52, 0xff, 0xd8, 0x8f, 0x57, 0xff, 0xcc, 0x87, 0x53, 0xff, 0xa8, 0x6a, 0x39, 0xff, 0xa6, 0x67, 0x38, 0xff, 0xab, 0x6e, 0x3e, 0xff, 0xac, 0x71, 0x40, 0xff, 0xac, 0x72, 0x44, 0xff, 0xaa, 0x6f, 0x46, 0xff, 0xac, 0x71, 0x48, 0xff, 0xad, 0x74, 0x48, 0xff, 0xaf, 0x77, 0x46, 0xff, 0xb1, 0x77, 0x45, 0xff, 0xb0, 0x75, 0x45, 0xff, 0xaf, 0x74, 0x44, 0xff, 0xb0, 0x75, 0x43, 0xff, 0xae, 0x72, 0x41, 0xff, 0xad, 0x70, 0x40, 0xff, 0xad, 0x71, 0x41, 0xff, 0xab, 0x6f, 0x40, 0xff, 0x9e, 0x61, 0x37, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x91, 0x54, 0x2f, 0xff, 0x92, 0x54, 0x2f, 0xff, 0x91, 0x53, 0x2e, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x92, 0x54, 0x2f, 0xff, 0x92, 0x53, 0x2e, 0xff, 0x91, 0x52, 0x2d, 0xff, 0x8e, 0x50, 0x2b, 0xff, 0x8f, 0x50, 0x2b, 0xff, 0x8e, 0x4f, 0x2b, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x86, 0x48, 0x27, 0xff, 0x85, 0x47, 0x26, 0xff, 0x87, 0x49, 0x27, 0xff, 0x88, 0x49, 0x28, 0xff, 0x88, 0x4a, 0x28, 0xff, 0x8a, 0x4c, 0x28, 0xff, 0x8b, 0x4e, 0x2a, 0xff, 0x8c, 0x4d, 0x2c, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x83, 0x49, 0x26, 0xff, 0xb4, 0x76, 0x4a, 0xff, 0xdc, 0x97, 0x61, 0xff, 0xcd, 0x8b, 0x55, 0xff, 0xc6, 0x87, 0x51, 0xff, 0xc6, 0x87, 0x51, 0xff, 0xc2, 0x83, 0x4e, 0xff, 0xcd, 0x8f, 0x58, 0xff, 0xe6, 0xa3, 0x67, 0xff, 0xef, 0xa7, 0x6a, 0xff, 0xed, 0xa3, 0x66, 0xff, 0xee, 0xa2, 0x65, 0xff, 0xee, 0xa6, 0x69, 0xff, 0xee, 0xac, 0x6e, 0xff, 0xef, 0xb3, 0x74, 0xff, 0xef, 0xba, 0x7b, 0xff, 0xef, 0xbb, 0x83, 0xff, 0xee, 0xb9, 0x8d, 0xff, 0xee, 0xb9, 0x92, 0xff, 0xf3, 0xca, 0xa0, 0xff, 0xc6, 0x99, 0x6f, 0xff, 0xb8, 0x83, 0x5a, 0xff, 0xc3, 0x8d, 0x64, 0xff, 0xcc, 0x94, 0x69, 0xff, 0xd5, 0x9a, 0x6b, 0xff, 0xdf, 0xa0, 0x6e, 0xff, 0xe9, 0xa2, 0x6f, 0xff, 0xe9, 0xa0, 0x6d, 0xff, 0xe2, 0x9c, 0x68, 0xff, 0xd9, 0x97, 0x64, 0xff, 0xcd, 0x8e, 0x5d, 0xff, 0xc4, 0x88, 0x59, 0xff, 0xc2, 0x86, 0x55, 0xff, 0xbd, 0x84, 0x51, 0xff, 0xb7, 0x7c, 0x4d, 0xff, 0xb2, 0x75, 0x49, 0xff, 0x97, 0x59, 0x34, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x8d, 0x4e, 0x2c, 0xff, 0x8c, 0x4c, 0x2c, 0xff, 0x8b, 0x4b, 0x2a, 0xff, 0x89, 0x49, 0x2b, 0xff, 0x88, 0x47, 0x29, 0xff, 0x87, 0x47, 0x29, 0xff, 0x88, 0x47, 0x29, 0xff, 0x88, 0x47, 0x29, 0xff, 0x89, 0x49, 0x29, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x8b, 0x4b, 0x2b, 0xff, 0x8c, 0x4c, 0x2b, 0xff, 0x8d, 0x4d, 0x2b, 0xff, 0x8f, 0x4e, 0x2b, 0xff, 0x91, 0x50, 0x2c, 0xff, 0x92, 0x55, 0x2d, 0xff, 0x90, 0x52, 0x2d, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x95, 0x54, 0x2e, 0xff, 0x96, 0x55, 0x2d, 0xff, 0x9b, 0x59, 0x30, 0xff, 0x94, 0x53, 0x2d, 0xff, 0xd2, 0x8a, 0x5a, 0xff, 0xcf, 0x88, 0x55, 0xff, 0xc3, 0x7e, 0x4e, 0xff, 0xbc, 0x79, 0x49, 0xff, 0xb9, 0x78, 0x49, 0xff, 0xb4, 0x75, 0x44, 0xff, 0xb8, 0x78, 0x49, 0xff, 0xc9, 0x86, 0x53, 0xff, 0xd6, 0x8d, 0x59, 0xff, 0xe7, 0x95, 0x60, 0xff, 0xee, 0xa0, 0x69, 0xff, 0xee, 0xaa, 0x73, 0xff, 0xef, 0xb8, 0x7f, 0xff, 0xee, 0xc7, 0x88, 0xff, 0xee, 0xd6, 0x90, 0xff, 0xee, 0xdf, 0x93, 0xff, 0xed, 0xdf, 0x92, 0xff, 0xed, 0xde, 0x90, 0xff, 0xef, 0xd3, 0x8b, 0xff, 0xef, 0xc2, 0x84, 0xff, 0xef, 0xba, 0x7b, 0xff, 0xef, 0xae, 0x74, 0xff, 0xee, 0xa8, 0x6e, 0xff, 0xee, 0xa1, 0x69, 0xff, 0xed, 0x9a, 0x61, 0xff, 0xea, 0x95, 0x5e, 0xff, 0xe3, 0x92, 0x5b, 0xff, 0xdf, 0x92, 0x5b, 0xff, 0xd6, 0x8d, 0x54, 0xff, 0xce, 0x87, 0x50, 0xff, 0xc7, 0x83, 0x4e, 0xff, 0xc4, 0x80, 0x4b, 0xff, 0xc2, 0x7e, 0x49, 0xff, 0xc1, 0x7f, 0x49, 0xff, 0xc0, 0x7b, 0x45, 0xff, 0xbe, 0x7b, 0x43, 0xff, 0xbb, 0x77, 0x41, 0xff, 0xba, 0x75, 0x41, 0xff, 0xb8, 0x76, 0x3f, 0xff, 0xb5, 0x73, 0x3e, 0xff, 0xb4, 0x72, 0x3e, 0xff, 0xb1, 0x70, 0x3e, 0xff, 0xb2, 0x6e, 0x3e, 0xff, 0xb1, 0x6e, 0x3e, 0xff, 0xb0, 0x6e, 0x3e, 0xff, 0xaf, 0x6e, 0x3c, 0xff, + 0xb6, 0x83, 0x53, 0xff, 0xb5, 0x83, 0x55, 0xff, 0xb3, 0x83, 0x56, 0xff, 0xb1, 0x80, 0x55, 0xff, 0xb0, 0x7e, 0x53, 0xff, 0xae, 0x7b, 0x4e, 0xff, 0xac, 0x76, 0x49, 0xff, 0xad, 0x7c, 0x4f, 0xff, 0xa7, 0x74, 0x45, 0xff, 0x9c, 0x60, 0x36, 0xff, 0x9a, 0x5d, 0x33, 0xff, 0x99, 0x5b, 0x31, 0xff, 0x98, 0x5a, 0x30, 0xff, 0x97, 0x59, 0x30, 0xff, 0x97, 0x58, 0x2f, 0xff, 0x95, 0x57, 0x2e, 0xff, 0x94, 0x55, 0x2e, 0xff, 0x93, 0x54, 0x2d, 0xff, 0x93, 0x53, 0x2d, 0xff, 0x92, 0x53, 0x2b, 0xff, 0x90, 0x51, 0x2b, 0xff, 0x8f, 0x50, 0x2b, 0xff, 0x8f, 0x50, 0x2b, 0xff, 0x8e, 0x4f, 0x2b, 0xff, 0x8e, 0x50, 0x2b, 0xff, 0x8e, 0x50, 0x2b, 0xff, 0x8c, 0x4f, 0x2b, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x8f, 0x50, 0x2c, 0xff, 0x8e, 0x50, 0x2c, 0xff, 0x99, 0x5c, 0x33, 0xff, 0xd5, 0x96, 0x5d, 0xff, 0xed, 0xa2, 0x64, 0xff, 0xef, 0xa2, 0x66, 0xff, 0xed, 0xa1, 0x64, 0xff, 0xee, 0xa3, 0x65, 0xff, 0xee, 0xa1, 0x62, 0xff, 0xed, 0xa4, 0x66, 0xff, 0xee, 0xaa, 0x6a, 0xff, 0xee, 0xad, 0x6e, 0xff, 0xee, 0xaf, 0x71, 0xff, 0xed, 0xb1, 0x73, 0xff, 0xed, 0xb3, 0x73, 0xff, 0xef, 0xbb, 0x76, 0xff, 0xee, 0xba, 0x74, 0xff, 0xee, 0xbc, 0x74, 0xff, 0xee, 0xbc, 0x74, 0xff, 0xec, 0xb4, 0x6f, 0xff, 0xee, 0xb2, 0x6e, 0xff, 0xee, 0xb6, 0x71, 0xff, 0xee, 0xb6, 0x72, 0xff, 0xee, 0xb6, 0x72, 0xff, 0xed, 0xb2, 0x71, 0xff, 0xed, 0xb1, 0x71, 0xff, 0xed, 0xb1, 0x72, 0xff, 0xee, 0xaf, 0x70, 0xff, 0xee, 0xad, 0x6e, 0xff, 0xee, 0xac, 0x6e, 0xff, 0xee, 0xac, 0x6e, 0xff, 0xee, 0xa9, 0x69, 0xff, 0xee, 0xa8, 0x69, 0xff, 0xee, 0xa7, 0x68, 0xff, 0xee, 0xa3, 0x66, 0xff, 0xee, 0xa3, 0x65, 0xff, 0xee, 0xa2, 0x63, 0xff, 0xee, 0xa1, 0x62, 0xff, 0xee, 0xa3, 0x62, 0xff, 0xed, 0xa3, 0x63, 0xff, 0xee, 0xa4, 0x67, 0xff, 0xee, 0xa5, 0x6a, 0xff, 0xee, 0xa8, 0x6c, 0xff, 0xee, 0xab, 0x6e, 0xff, 0xee, 0xae, 0x73, 0xff, 0xef, 0xae, 0x76, 0xff, 0xeb, 0xad, 0x72, 0xff, 0xda, 0xa0, 0x68, 0xff, 0xc0, 0x8a, 0x56, 0xff, 0xbc, 0x83, 0x50, 0xff, 0xc3, 0x88, 0x54, 0xff, 0xc3, 0x87, 0x51, 0xff, 0xc0, 0x7f, 0x4a, 0xff, 0xb0, 0x6e, 0x3d, 0xff, 0xa3, 0x64, 0x34, 0xff, 0xa8, 0x69, 0x38, 0xff, 0xaa, 0x6c, 0x39, 0xff, 0xac, 0x6e, 0x3c, 0xff, 0xae, 0x72, 0x41, 0xff, 0xb0, 0x74, 0x44, 0xff, 0xae, 0x74, 0x47, 0xff, 0xaf, 0x75, 0x4a, 0xff, 0xb0, 0x78, 0x4c, 0xff, 0xb1, 0x7a, 0x4c, 0xff, 0xb5, 0x7c, 0x4b, 0xff, 0xb7, 0x7c, 0x4a, 0xff, 0xb7, 0x7b, 0x4b, 0xff, 0xb6, 0x7a, 0x4a, 0xff, 0xb6, 0x7b, 0x4a, 0xff, 0xb6, 0x7b, 0x49, 0xff, 0xb7, 0x7b, 0x4a, 0xff, 0xae, 0x73, 0x44, 0xff, 0x9d, 0x5f, 0x37, 0xff, 0x96, 0x57, 0x33, 0xff, 0x94, 0x57, 0x31, 0xff, 0x93, 0x56, 0x30, 0xff, 0x95, 0x55, 0x30, 0xff, 0x95, 0x55, 0x30, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x94, 0x55, 0x30, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x90, 0x50, 0x2b, 0xff, 0x90, 0x50, 0x2b, 0xff, 0x8d, 0x4e, 0x2b, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x89, 0x4a, 0x29, 0xff, 0x85, 0x47, 0x26, 0xff, 0x85, 0x47, 0x27, 0xff, 0x86, 0x49, 0x28, 0xff, 0x88, 0x4a, 0x27, 0xff, 0x88, 0x4a, 0x28, 0xff, 0x89, 0x4c, 0x29, 0xff, 0x8b, 0x4e, 0x2b, 0xff, 0x8c, 0x4f, 0x2b, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x8d, 0x4e, 0x2c, 0xff, 0x8b, 0x4c, 0x2a, 0xff, 0x7f, 0x46, 0x25, 0xff, 0xb2, 0x72, 0x4a, 0xff, 0xdd, 0x97, 0x65, 0xff, 0xd2, 0x8f, 0x57, 0xff, 0xcb, 0x88, 0x52, 0xff, 0xc9, 0x86, 0x51, 0xff, 0xc9, 0x86, 0x51, 0xff, 0xde, 0x9d, 0x62, 0xff, 0xee, 0xac, 0x6e, 0xff, 0xee, 0xa9, 0x6b, 0xff, 0xed, 0xa4, 0x66, 0xff, 0xed, 0xa3, 0x66, 0xff, 0xed, 0xa4, 0x67, 0xff, 0xee, 0xa8, 0x6a, 0xff, 0xef, 0xaf, 0x6f, 0xff, 0xef, 0xb6, 0x77, 0xff, 0xf1, 0xbe, 0x83, 0xff, 0xe4, 0xb7, 0x87, 0xff, 0xc2, 0x90, 0x66, 0xff, 0xbb, 0x83, 0x5a, 0xff, 0xc0, 0x88, 0x60, 0xff, 0xc7, 0x91, 0x66, 0xff, 0xd2, 0x9a, 0x6d, 0xff, 0xe2, 0xa1, 0x73, 0xff, 0xed, 0xab, 0x77, 0xff, 0xef, 0xaf, 0x77, 0xff, 0xee, 0xab, 0x76, 0xff, 0xee, 0xa9, 0x75, 0xff, 0xec, 0xa3, 0x6f, 0xff, 0xe4, 0x9c, 0x6a, 0xff, 0xd8, 0x96, 0x64, 0xff, 0xcb, 0x8e, 0x5c, 0xff, 0xc5, 0x89, 0x58, 0xff, 0xbb, 0x80, 0x53, 0xff, 0x99, 0x5b, 0x36, 0xff, 0x8f, 0x51, 0x2f, 0xff, 0x8f, 0x50, 0x2f, 0xff, 0x8e, 0x4e, 0x2e, 0xff, 0x8d, 0x4d, 0x2d, 0xff, 0x8b, 0x4c, 0x2c, 0xff, 0x88, 0x4a, 0x2a, 0xff, 0x87, 0x47, 0x29, 0xff, 0x88, 0x47, 0x29, 0xff, 0x88, 0x47, 0x29, 0xff, 0x89, 0x48, 0x29, 0xff, 0x8a, 0x4a, 0x29, 0xff, 0x8a, 0x4b, 0x29, 0xff, 0x8b, 0x4b, 0x2b, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8d, 0x4c, 0x2a, 0xff, 0x8f, 0x4d, 0x2a, 0xff, 0x90, 0x4e, 0x2c, 0xff, 0x91, 0x50, 0x2c, 0xff, 0x91, 0x52, 0x2d, 0xff, 0x91, 0x53, 0x2d, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x95, 0x55, 0x2d, 0xff, 0x95, 0x54, 0x2d, 0xff, 0x96, 0x53, 0x2d, 0xff, 0x98, 0x55, 0x2d, 0xff, 0xa1, 0x5f, 0x35, 0xff, 0xd3, 0x8b, 0x56, 0xff, 0xd1, 0x88, 0x55, 0xff, 0xc4, 0x81, 0x4f, 0xff, 0xbd, 0x7c, 0x4c, 0xff, 0xb8, 0x79, 0x48, 0xff, 0xbb, 0x7a, 0x4a, 0xff, 0xbd, 0x7d, 0x4b, 0xff, 0xc5, 0x82, 0x4e, 0xff, 0xd2, 0x8a, 0x56, 0xff, 0xe1, 0x92, 0x5d, 0xff, 0xeb, 0x9c, 0x67, 0xff, 0xef, 0xa8, 0x6e, 0xff, 0xed, 0xae, 0x78, 0xff, 0xef, 0xb9, 0x7e, 0xff, 0xef, 0xc0, 0x84, 0xff, 0xee, 0xcb, 0x88, 0xff, 0xee, 0xce, 0x88, 0xff, 0xef, 0xc8, 0x85, 0xff, 0xef, 0xc0, 0x81, 0xff, 0xef, 0xb6, 0x7a, 0xff, 0xef, 0xaf, 0x76, 0xff, 0xee, 0xab, 0x72, 0xff, 0xee, 0xa5, 0x6b, 0xff, 0xee, 0xa3, 0x68, 0xff, 0xee, 0x9e, 0x64, 0xff, 0xed, 0x9c, 0x62, 0xff, 0xe3, 0x99, 0x5f, 0xff, 0xdc, 0x8f, 0x58, 0xff, 0xd3, 0x8f, 0x57, 0xff, 0xce, 0x8b, 0x55, 0xff, 0xcd, 0x8a, 0x53, 0xff, 0xcc, 0x87, 0x51, 0xff, 0xc6, 0x83, 0x4d, 0xff, 0xc2, 0x7f, 0x49, 0xff, 0xbe, 0x7b, 0x45, 0xff, 0xbb, 0x78, 0x42, 0xff, 0xba, 0x75, 0x3f, 0xff, 0xb8, 0x75, 0x3e, 0xff, 0xb6, 0x73, 0x3e, 0xff, 0xb4, 0x70, 0x3e, 0xff, 0xb1, 0x71, 0x3e, 0xff, 0xb0, 0x6e, 0x3e, 0xff, 0xb0, 0x6d, 0x3d, 0xff, 0xb0, 0x6d, 0x3c, 0xff, 0xaf, 0x72, 0x41, 0xff, + 0xb6, 0x88, 0x55, 0xff, 0xb4, 0x85, 0x55, 0xff, 0xb3, 0x83, 0x55, 0xff, 0xb1, 0x81, 0x53, 0xff, 0xb0, 0x7d, 0x50, 0xff, 0xad, 0x7b, 0x4c, 0xff, 0xad, 0x78, 0x4a, 0xff, 0xab, 0x76, 0x47, 0xff, 0xa8, 0x76, 0x45, 0xff, 0x9e, 0x64, 0x39, 0xff, 0x9b, 0x5e, 0x33, 0xff, 0x9b, 0x5e, 0x33, 0xff, 0x9a, 0x5b, 0x32, 0xff, 0x99, 0x5a, 0x31, 0xff, 0x97, 0x5a, 0x31, 0xff, 0x96, 0x59, 0x2f, 0xff, 0x96, 0x58, 0x2f, 0xff, 0x96, 0x57, 0x2e, 0xff, 0x93, 0x54, 0x2d, 0xff, 0x92, 0x52, 0x2c, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x90, 0x50, 0x2b, 0xff, 0x90, 0x50, 0x2b, 0xff, 0x8e, 0x4f, 0x2b, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8c, 0x4e, 0x2a, 0xff, 0x8d, 0x50, 0x2b, 0xff, 0x8e, 0x50, 0x2b, 0xff, 0x91, 0x53, 0x2e, 0xff, 0x94, 0x56, 0x2f, 0xff, 0xb0, 0x73, 0x3a, 0xff, 0xb8, 0x7b, 0x39, 0xff, 0xca, 0x8c, 0x4b, 0xff, 0xd6, 0x96, 0x55, 0xff, 0xf1, 0xac, 0x6e, 0xff, 0xef, 0xa6, 0x6a, 0xff, 0xed, 0xa4, 0x67, 0xff, 0xec, 0xa4, 0x66, 0xff, 0xec, 0xa6, 0x66, 0xff, 0xec, 0xa9, 0x6a, 0xff, 0xec, 0xa9, 0x6c, 0xff, 0xeb, 0xaf, 0x70, 0xff, 0xec, 0xc0, 0x79, 0xff, 0xee, 0xc9, 0x7b, 0xff, 0xee, 0xc9, 0x7a, 0xff, 0xee, 0xc6, 0x7a, 0xff, 0xee, 0xba, 0x74, 0xff, 0xec, 0xad, 0x6e, 0xff, 0xee, 0xb2, 0x71, 0xff, 0xee, 0xb2, 0x6f, 0xff, 0xee, 0xb1, 0x6e, 0xff, 0xee, 0xb2, 0x6f, 0xff, 0xee, 0xaf, 0x6d, 0xff, 0xee, 0xae, 0x6f, 0xff, 0xee, 0xaf, 0x72, 0xff, 0xef, 0xaf, 0x74, 0xff, 0xef, 0xb1, 0x74, 0xff, 0xee, 0xaf, 0x73, 0xff, 0xee, 0xae, 0x74, 0xff, 0xee, 0xab, 0x70, 0xff, 0xee, 0xa9, 0x6a, 0xff, 0xee, 0xa8, 0x6a, 0xff, 0xee, 0xa8, 0x69, 0xff, 0xee, 0xa5, 0x67, 0xff, 0xee, 0xa3, 0x65, 0xff, 0xee, 0xa5, 0x66, 0xff, 0xed, 0xa8, 0x67, 0xff, 0xee, 0xaa, 0x6a, 0xff, 0xee, 0xa8, 0x6c, 0xff, 0xee, 0xaa, 0x6e, 0xff, 0xee, 0xac, 0x71, 0xff, 0xf0, 0xad, 0x74, 0xff, 0xe9, 0xa8, 0x72, 0xff, 0xd4, 0x99, 0x66, 0xff, 0xca, 0x90, 0x60, 0xff, 0xc2, 0x8b, 0x5b, 0xff, 0xc7, 0x8e, 0x5b, 0xff, 0xba, 0x7f, 0x4d, 0xff, 0xa0, 0x62, 0x34, 0xff, 0x9a, 0x5c, 0x2f, 0xff, 0x98, 0x59, 0x2b, 0xff, 0xa5, 0x65, 0x35, 0xff, 0xa9, 0x68, 0x37, 0xff, 0xa9, 0x69, 0x38, 0xff, 0xab, 0x6b, 0x3a, 0xff, 0xae, 0x6e, 0x3c, 0xff, 0xb0, 0x70, 0x3f, 0xff, 0xb1, 0x73, 0x42, 0xff, 0xb1, 0x76, 0x45, 0xff, 0xb1, 0x79, 0x4a, 0xff, 0xb2, 0x7b, 0x4e, 0xff, 0xb6, 0x7f, 0x50, 0xff, 0xba, 0x81, 0x50, 0xff, 0xbd, 0x82, 0x50, 0xff, 0xbf, 0x82, 0x50, 0xff, 0xbf, 0x83, 0x51, 0xff, 0xbf, 0x83, 0x50, 0xff, 0xbf, 0x85, 0x50, 0xff, 0xc2, 0x88, 0x53, 0xff, 0xb6, 0x7b, 0x4b, 0xff, 0x9d, 0x60, 0x39, 0xff, 0x99, 0x5b, 0x35, 0xff, 0x98, 0x5a, 0x34, 0xff, 0x97, 0x57, 0x32, 0xff, 0x97, 0x57, 0x31, 0xff, 0x98, 0x57, 0x31, 0xff, 0x96, 0x58, 0x32, 0xff, 0x96, 0x58, 0x30, 0xff, 0x96, 0x57, 0x30, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x91, 0x50, 0x2c, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x8e, 0x50, 0x2b, 0xff, 0x8d, 0x4e, 0x2c, 0xff, 0x8e, 0x50, 0x2c, 0xff, 0x88, 0x4b, 0x27, 0xff, 0x83, 0x46, 0x23, 0xff, 0x85, 0x48, 0x25, 0xff, 0x86, 0x49, 0x27, 0xff, 0x88, 0x4a, 0x27, 0xff, 0x88, 0x4a, 0x27, 0xff, 0x8a, 0x4c, 0x29, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x8b, 0x4e, 0x2b, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x8a, 0x4c, 0x2a, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x86, 0x48, 0x27, 0xff, 0xa1, 0x64, 0x3e, 0xff, 0xd3, 0x92, 0x61, 0xff, 0xdb, 0x95, 0x5d, 0xff, 0xcf, 0x89, 0x52, 0xff, 0xc9, 0x86, 0x51, 0xff, 0xd6, 0x90, 0x5b, 0xff, 0xe8, 0xa6, 0x6a, 0xff, 0xef, 0xb0, 0x71, 0xff, 0xee, 0xab, 0x6c, 0xff, 0xee, 0xa4, 0x67, 0xff, 0xed, 0xa3, 0x65, 0xff, 0xed, 0xa3, 0x65, 0xff, 0xee, 0xa6, 0x67, 0xff, 0xf1, 0xaf, 0x6e, 0xff, 0xda, 0xa8, 0x6d, 0xff, 0xbc, 0x8c, 0x5a, 0xff, 0xb7, 0x82, 0x54, 0xff, 0xbc, 0x84, 0x59, 0xff, 0xc0, 0x8a, 0x5e, 0xff, 0xc9, 0x93, 0x66, 0xff, 0xda, 0x9c, 0x6e, 0xff, 0xeb, 0xa8, 0x76, 0xff, 0xf0, 0xb2, 0x7d, 0xff, 0xef, 0xb9, 0x81, 0xff, 0xee, 0xb8, 0x82, 0xff, 0xee, 0xb4, 0x7f, 0xff, 0xef, 0xaf, 0x7c, 0xff, 0xef, 0xaa, 0x76, 0xff, 0xec, 0xa4, 0x71, 0xff, 0xe6, 0x9d, 0x6b, 0xff, 0xce, 0x8f, 0x5f, 0xff, 0xa3, 0x67, 0x40, 0xff, 0x91, 0x53, 0x32, 0xff, 0x8f, 0x52, 0x30, 0xff, 0x8f, 0x51, 0x2f, 0xff, 0x8d, 0x4f, 0x2e, 0xff, 0x8b, 0x4e, 0x2d, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x8a, 0x4b, 0x2b, 0xff, 0x88, 0x48, 0x29, 0xff, 0x88, 0x47, 0x29, 0xff, 0x89, 0x47, 0x29, 0xff, 0x89, 0x49, 0x29, 0xff, 0x89, 0x49, 0x29, 0xff, 0x88, 0x49, 0x28, 0xff, 0x89, 0x49, 0x28, 0xff, 0x8c, 0x4b, 0x2a, 0xff, 0x8c, 0x4c, 0x29, 0xff, 0x8c, 0x4b, 0x29, 0xff, 0x8e, 0x4c, 0x2a, 0xff, 0x90, 0x4f, 0x2b, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x91, 0x50, 0x2d, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x94, 0x54, 0x2d, 0xff, 0x96, 0x55, 0x2d, 0xff, 0x97, 0x56, 0x2d, 0xff, 0x96, 0x55, 0x2d, 0xff, 0xa8, 0x67, 0x3a, 0xff, 0xe0, 0x94, 0x60, 0xff, 0xd5, 0x8c, 0x56, 0xff, 0xc7, 0x82, 0x4e, 0xff, 0xc6, 0x83, 0x50, 0xff, 0xc0, 0x7f, 0x4d, 0xff, 0xbc, 0x7a, 0x49, 0xff, 0xbb, 0x79, 0x49, 0xff, 0xbe, 0x7f, 0x4c, 0xff, 0xc5, 0x82, 0x50, 0xff, 0xd5, 0x8c, 0x5a, 0xff, 0xea, 0x9a, 0x63, 0xff, 0xef, 0x9f, 0x6a, 0xff, 0xef, 0xa7, 0x6f, 0xff, 0xee, 0xac, 0x77, 0xff, 0xef, 0xb3, 0x7a, 0xff, 0xef, 0xb9, 0x7d, 0xff, 0xef, 0xb8, 0x7d, 0xff, 0xef, 0xb5, 0x7c, 0xff, 0xef, 0xb1, 0x78, 0xff, 0xef, 0xaf, 0x75, 0xff, 0xee, 0xac, 0x72, 0xff, 0xee, 0xa7, 0x6c, 0xff, 0xee, 0xa6, 0x6b, 0xff, 0xee, 0xa3, 0x69, 0xff, 0xee, 0xa2, 0x68, 0xff, 0xe9, 0xa2, 0x67, 0xff, 0xdf, 0x9b, 0x61, 0xff, 0xd8, 0x98, 0x5f, 0xff, 0xd5, 0x96, 0x5d, 0xff, 0xd1, 0x93, 0x5b, 0xff, 0xcd, 0x8e, 0x56, 0xff, 0xca, 0x88, 0x51, 0xff, 0xc4, 0x84, 0x4d, 0xff, 0xbf, 0x7f, 0x49, 0xff, 0xbc, 0x7c, 0x45, 0xff, 0xbb, 0x7a, 0x42, 0xff, 0xb8, 0x75, 0x40, 0xff, 0xb5, 0x75, 0x3e, 0xff, 0xb4, 0x71, 0x3e, 0xff, 0xb3, 0x71, 0x3f, 0xff, 0xb1, 0x71, 0x3e, 0xff, 0xb0, 0x71, 0x3f, 0xff, 0xac, 0x6b, 0x3a, 0xff, 0xb7, 0x85, 0x50, 0xff, + 0xb7, 0x88, 0x4f, 0xff, 0xb4, 0x85, 0x4d, 0xff, 0xb4, 0x84, 0x50, 0xff, 0xb1, 0x81, 0x4f, 0xff, 0xb0, 0x80, 0x4f, 0xff, 0xae, 0x7c, 0x4b, 0xff, 0xad, 0x7a, 0x49, 0xff, 0xac, 0x78, 0x48, 0xff, 0xac, 0x77, 0x46, 0xff, 0xa2, 0x69, 0x3a, 0xff, 0x9d, 0x60, 0x36, 0xff, 0x9c, 0x5d, 0x33, 0xff, 0x9c, 0x5c, 0x33, 0xff, 0x9a, 0x5a, 0x32, 0xff, 0x99, 0x5d, 0x31, 0xff, 0x98, 0x59, 0x30, 0xff, 0x96, 0x58, 0x2f, 0xff, 0x96, 0x57, 0x2d, 0xff, 0x93, 0x54, 0x2c, 0xff, 0x92, 0x53, 0x2c, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x90, 0x50, 0x2b, 0xff, 0x90, 0x50, 0x2b, 0xff, 0x8f, 0x50, 0x2b, 0xff, 0x8e, 0x50, 0x2b, 0xff, 0x8f, 0x50, 0x2b, 0xff, 0x8f, 0x50, 0x2b, 0xff, 0x91, 0x53, 0x2e, 0xff, 0x93, 0x56, 0x2e, 0xff, 0xb7, 0x79, 0x40, 0xff, 0xbf, 0x80, 0x43, 0xff, 0xbc, 0x80, 0x3d, 0xff, 0xb9, 0x7c, 0x36, 0xff, 0xb9, 0x7f, 0x39, 0xff, 0xbb, 0x81, 0x3e, 0xff, 0xc7, 0x8f, 0x51, 0xff, 0xf2, 0xae, 0x71, 0xff, 0xef, 0xae, 0x70, 0xff, 0xef, 0xa9, 0x6a, 0xff, 0xec, 0xaa, 0x69, 0xff, 0xea, 0xaa, 0x69, 0xff, 0xec, 0xb8, 0x73, 0xff, 0xed, 0xbe, 0x75, 0xff, 0xe5, 0xba, 0x75, 0xff, 0xec, 0xd9, 0x83, 0xff, 0xef, 0xdf, 0x86, 0xff, 0xec, 0xbe, 0x77, 0xff, 0xef, 0xb9, 0x75, 0xff, 0xed, 0xb2, 0x74, 0xff, 0xef, 0xb4, 0x72, 0xff, 0xee, 0xb5, 0x71, 0xff, 0xed, 0xb2, 0x70, 0xff, 0xee, 0xae, 0x6d, 0xff, 0xee, 0xad, 0x6e, 0xff, 0xee, 0xb0, 0x71, 0xff, 0xee, 0xb1, 0x75, 0xff, 0xee, 0xb0, 0x75, 0xff, 0xef, 0xb2, 0x76, 0xff, 0xef, 0xb1, 0x75, 0xff, 0xef, 0xb2, 0x74, 0xff, 0xee, 0xae, 0x73, 0xff, 0xee, 0xab, 0x6f, 0xff, 0xef, 0xab, 0x6a, 0xff, 0xee, 0xab, 0x69, 0xff, 0xef, 0xa8, 0x6a, 0xff, 0xee, 0xaa, 0x6a, 0xff, 0xee, 0xad, 0x6c, 0xff, 0xef, 0xac, 0x6d, 0xff, 0xef, 0xac, 0x6d, 0xff, 0xee, 0xae, 0x70, 0xff, 0xe2, 0xa1, 0x67, 0xff, 0xce, 0x92, 0x59, 0xff, 0xc9, 0x8c, 0x56, 0xff, 0xce, 0x92, 0x5b, 0xff, 0xc5, 0x89, 0x54, 0xff, 0xa6, 0x69, 0x3a, 0xff, 0x95, 0x57, 0x2a, 0xff, 0x8d, 0x4e, 0x22, 0xff, 0x8c, 0x4d, 0x22, 0xff, 0x8d, 0x4d, 0x21, 0xff, 0x91, 0x51, 0x26, 0xff, 0x9f, 0x60, 0x32, 0xff, 0xaf, 0x6f, 0x3e, 0xff, 0xab, 0x6a, 0x3a, 0xff, 0xac, 0x6c, 0x3b, 0xff, 0xae, 0x6e, 0x3d, 0xff, 0xb0, 0x71, 0x3f, 0xff, 0xb2, 0x73, 0x41, 0xff, 0xb3, 0x77, 0x43, 0xff, 0xb5, 0x78, 0x46, 0xff, 0xb7, 0x7a, 0x4b, 0xff, 0xb9, 0x7e, 0x4e, 0xff, 0xbd, 0x82, 0x50, 0xff, 0xc0, 0x85, 0x52, 0xff, 0xc4, 0x88, 0x55, 0xff, 0xc6, 0x8c, 0x57, 0xff, 0xc6, 0x8d, 0x5a, 0xff, 0xc8, 0x90, 0x5c, 0xff, 0xc6, 0x8f, 0x5a, 0xff, 0xb4, 0x7c, 0x4c, 0xff, 0xa0, 0x65, 0x3c, 0xff, 0x9e, 0x60, 0x38, 0xff, 0x9e, 0x5f, 0x36, 0xff, 0x9c, 0x5f, 0x36, 0xff, 0x9a, 0x5d, 0x35, 0xff, 0x9a, 0x5a, 0x34, 0xff, 0x98, 0x59, 0x32, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x96, 0x57, 0x31, 0xff, 0x92, 0x53, 0x2e, 0xff, 0x92, 0x52, 0x2d, 0xff, 0x92, 0x52, 0x2d, 0xff, 0x91, 0x50, 0x2c, 0xff, 0x8f, 0x4e, 0x2c, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x8e, 0x4e, 0x2b, 0xff, 0x87, 0x49, 0x27, 0xff, 0x85, 0x47, 0x26, 0xff, 0x86, 0x48, 0x27, 0xff, 0x86, 0x48, 0x26, 0xff, 0x88, 0x49, 0x28, 0xff, 0x88, 0x4b, 0x29, 0xff, 0x8a, 0x4b, 0x29, 0xff, 0x8b, 0x4d, 0x29, 0xff, 0x8b, 0x4e, 0x2b, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8b, 0x4c, 0x2a, 0xff, 0x8a, 0x4c, 0x2a, 0xff, 0x8b, 0x4e, 0x2b, 0xff, 0x88, 0x4b, 0x29, 0xff, 0x9c, 0x63, 0x3d, 0xff, 0xd3, 0x8f, 0x60, 0xff, 0xe2, 0x99, 0x61, 0xff, 0xd6, 0x8e, 0x56, 0xff, 0xd0, 0x8a, 0x54, 0xff, 0xe1, 0x9b, 0x61, 0xff, 0xee, 0xae, 0x71, 0xff, 0xee, 0xb1, 0x73, 0xff, 0xee, 0xad, 0x6c, 0xff, 0xef, 0xa8, 0x66, 0xff, 0xef, 0xa3, 0x63, 0xff, 0xf2, 0xa7, 0x67, 0xff, 0xd6, 0x9c, 0x61, 0xff, 0xb8, 0x80, 0x4f, 0xff, 0xb5, 0x79, 0x4b, 0xff, 0xb7, 0x7f, 0x51, 0xff, 0xbc, 0x84, 0x55, 0xff, 0xc1, 0x8a, 0x5b, 0xff, 0xcb, 0x93, 0x64, 0xff, 0xe0, 0x9f, 0x6e, 0xff, 0xed, 0xab, 0x75, 0xff, 0xef, 0xba, 0x80, 0xff, 0xef, 0xc4, 0x85, 0xff, 0xee, 0xc7, 0x89, 0xff, 0xee, 0xc8, 0x89, 0xff, 0xef, 0xc4, 0x85, 0xff, 0xef, 0xba, 0x83, 0xff, 0xf0, 0xb1, 0x7d, 0xff, 0xee, 0xae, 0x79, 0xff, 0xba, 0x7f, 0x53, 0xff, 0x99, 0x5b, 0x39, 0xff, 0x93, 0x57, 0x33, 0xff, 0x91, 0x55, 0x32, 0xff, 0x8f, 0x52, 0x30, 0xff, 0x8f, 0x50, 0x2f, 0xff, 0x8c, 0x4f, 0x2e, 0xff, 0x89, 0x4c, 0x2b, 0xff, 0x89, 0x4a, 0x2b, 0xff, 0x88, 0x49, 0x2a, 0xff, 0x87, 0x47, 0x28, 0xff, 0x87, 0x47, 0x28, 0xff, 0x86, 0x47, 0x29, 0xff, 0x88, 0x48, 0x28, 0xff, 0x88, 0x48, 0x28, 0xff, 0x89, 0x48, 0x28, 0xff, 0x8b, 0x49, 0x29, 0xff, 0x8c, 0x4c, 0x2a, 0xff, 0x8c, 0x4d, 0x29, 0xff, 0x8e, 0x4d, 0x2a, 0xff, 0x8f, 0x4d, 0x2b, 0xff, 0x91, 0x4f, 0x2c, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x92, 0x52, 0x2d, 0xff, 0x93, 0x53, 0x2d, 0xff, 0x96, 0x56, 0x2d, 0xff, 0x96, 0x55, 0x2c, 0xff, 0x96, 0x55, 0x2c, 0xff, 0x97, 0x57, 0x2e, 0xff, 0x96, 0x56, 0x2c, 0xff, 0xa4, 0x67, 0x36, 0xff, 0xe7, 0x9a, 0x64, 0xff, 0xe3, 0x92, 0x5c, 0xff, 0xd0, 0x88, 0x53, 0xff, 0xc5, 0x81, 0x50, 0xff, 0xc2, 0x7f, 0x4c, 0xff, 0xbd, 0x79, 0x49, 0xff, 0xbb, 0x7a, 0x48, 0xff, 0xbc, 0x79, 0x49, 0xff, 0xbf, 0x7d, 0x4b, 0xff, 0xc8, 0x85, 0x52, 0xff, 0xd2, 0x8d, 0x58, 0xff, 0xe0, 0x97, 0x61, 0xff, 0xec, 0x9e, 0x68, 0xff, 0xef, 0xa7, 0x6f, 0xff, 0xee, 0xaa, 0x74, 0xff, 0xee, 0xab, 0x74, 0xff, 0xee, 0xad, 0x76, 0xff, 0xee, 0xac, 0x74, 0xff, 0xed, 0xab, 0x72, 0xff, 0xee, 0xab, 0x71, 0xff, 0xee, 0xa9, 0x6f, 0xff, 0xee, 0xa8, 0x6d, 0xff, 0xee, 0xa8, 0x6c, 0xff, 0xee, 0xa8, 0x6c, 0xff, 0xec, 0xa8, 0x6a, 0xff, 0xe5, 0xa4, 0x6b, 0xff, 0xdd, 0xa0, 0x66, 0xff, 0xd8, 0x9d, 0x65, 0xff, 0xd4, 0x99, 0x60, 0xff, 0xcf, 0x93, 0x5d, 0xff, 0xcd, 0x8e, 0x57, 0xff, 0xc9, 0x88, 0x52, 0xff, 0xc3, 0x83, 0x4d, 0xff, 0xbf, 0x7f, 0x49, 0xff, 0xbb, 0x79, 0x46, 0xff, 0xb7, 0x77, 0x41, 0xff, 0xb4, 0x75, 0x40, 0xff, 0xb3, 0x70, 0x3f, 0xff, 0xb1, 0x71, 0x3d, 0xff, 0xb0, 0x70, 0x3e, 0xff, 0xae, 0x6d, 0x3b, 0xff, 0xb5, 0x7c, 0x45, 0xff, 0xb8, 0x88, 0x4e, 0xff, + 0xb7, 0x83, 0x4a, 0xff, 0xb6, 0x85, 0x4b, 0xff, 0xb4, 0x82, 0x4b, 0xff, 0xb3, 0x82, 0x4b, 0xff, 0xb0, 0x7f, 0x4b, 0xff, 0xb0, 0x7c, 0x49, 0xff, 0xae, 0x7a, 0x48, 0xff, 0xad, 0x76, 0x47, 0xff, 0xac, 0x75, 0x44, 0xff, 0xa6, 0x6d, 0x41, 0xff, 0x9f, 0x62, 0x36, 0xff, 0x9c, 0x5e, 0x35, 0xff, 0x9b, 0x5c, 0x32, 0xff, 0x9b, 0x5c, 0x32, 0xff, 0x99, 0x5a, 0x31, 0xff, 0x97, 0x5a, 0x31, 0xff, 0x98, 0x59, 0x2e, 0xff, 0x96, 0x57, 0x2d, 0xff, 0x96, 0x56, 0x2d, 0xff, 0x93, 0x54, 0x2c, 0xff, 0x92, 0x53, 0x2c, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x91, 0x52, 0x2c, 0xff, 0x90, 0x53, 0x2c, 0xff, 0x8f, 0x51, 0x2c, 0xff, 0x8f, 0x51, 0x2c, 0xff, 0x91, 0x53, 0x2e, 0xff, 0x94, 0x58, 0x2f, 0xff, 0xb3, 0x73, 0x3b, 0xff, 0xc2, 0x84, 0x42, 0xff, 0xc1, 0x81, 0x45, 0xff, 0xbc, 0x7d, 0x3c, 0xff, 0xbb, 0x82, 0x3b, 0xff, 0xba, 0x7f, 0x38, 0xff, 0xba, 0x7f, 0x3a, 0xff, 0xb9, 0x7d, 0x36, 0xff, 0xb1, 0x76, 0x33, 0xff, 0xc1, 0x8b, 0x4a, 0xff, 0xd9, 0xa5, 0x65, 0xff, 0xe7, 0xbc, 0x78, 0xff, 0xed, 0xd1, 0x81, 0xff, 0xee, 0xc4, 0x7a, 0xff, 0xec, 0xc1, 0x78, 0xff, 0xef, 0xc5, 0x76, 0xff, 0xe9, 0xb6, 0x71, 0xff, 0xea, 0xba, 0x74, 0xff, 0xed, 0xbf, 0x79, 0xff, 0xee, 0xc0, 0x77, 0xff, 0xef, 0xc2, 0x79, 0xff, 0xee, 0xbd, 0x77, 0xff, 0xef, 0xbb, 0x75, 0xff, 0xef, 0xb9, 0x75, 0xff, 0xee, 0xb1, 0x74, 0xff, 0xed, 0xb2, 0x74, 0xff, 0xed, 0xb2, 0x72, 0xff, 0xed, 0xb2, 0x74, 0xff, 0xee, 0xb2, 0x74, 0xff, 0xef, 0xb3, 0x74, 0xff, 0xef, 0xb3, 0x74, 0xff, 0xef, 0xb4, 0x73, 0xff, 0xed, 0xb3, 0x74, 0xff, 0xed, 0xb0, 0x71, 0xff, 0xef, 0xae, 0x6f, 0xff, 0xef, 0xae, 0x70, 0xff, 0xef, 0xaf, 0x71, 0xff, 0xef, 0xaf, 0x70, 0xff, 0xee, 0xad, 0x6d, 0xff, 0xea, 0xaa, 0x6c, 0xff, 0xdf, 0x9f, 0x66, 0xff, 0xce, 0x8e, 0x57, 0xff, 0xc5, 0x85, 0x4f, 0xff, 0xbc, 0x81, 0x4d, 0xff, 0xaf, 0x75, 0x44, 0xff, 0x94, 0x58, 0x29, 0xff, 0x85, 0x46, 0x19, 0xff, 0x8b, 0x4d, 0x21, 0xff, 0x8d, 0x4d, 0x23, 0xff, 0x8e, 0x4e, 0x23, 0xff, 0x8f, 0x4f, 0x23, 0xff, 0x8f, 0x50, 0x24, 0xff, 0x8e, 0x4e, 0x24, 0xff, 0x92, 0x53, 0x27, 0xff, 0xa5, 0x65, 0x34, 0xff, 0xb2, 0x71, 0x3e, 0xff, 0xae, 0x6e, 0x3b, 0xff, 0xaf, 0x71, 0x3d, 0xff, 0xb0, 0x72, 0x3f, 0xff, 0xb2, 0x76, 0x42, 0xff, 0xb3, 0x78, 0x45, 0xff, 0xb5, 0x77, 0x45, 0xff, 0xb7, 0x77, 0x46, 0xff, 0xb9, 0x7d, 0x49, 0xff, 0xbc, 0x81, 0x4e, 0xff, 0xc1, 0x86, 0x52, 0xff, 0xc7, 0x8c, 0x57, 0xff, 0xc8, 0x91, 0x5d, 0xff, 0xc8, 0x97, 0x60, 0xff, 0xcb, 0x9a, 0x64, 0xff, 0xc5, 0x93, 0x5f, 0xff, 0xaf, 0x78, 0x4c, 0xff, 0xa2, 0x68, 0x3f, 0xff, 0xa2, 0x66, 0x3d, 0xff, 0xa0, 0x64, 0x3a, 0xff, 0xa0, 0x62, 0x38, 0xff, 0x9e, 0x60, 0x36, 0xff, 0x9d, 0x5d, 0x36, 0xff, 0x9d, 0x5d, 0x35, 0xff, 0x9a, 0x5a, 0x32, 0xff, 0x96, 0x57, 0x2f, 0xff, 0x96, 0x57, 0x2f, 0xff, 0x96, 0x56, 0x2e, 0xff, 0x94, 0x54, 0x2d, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x91, 0x50, 0x2d, 0xff, 0x91, 0x50, 0x2d, 0xff, 0x8c, 0x4b, 0x29, 0xff, 0x86, 0x48, 0x25, 0xff, 0x86, 0x48, 0x26, 0xff, 0x87, 0x49, 0x26, 0xff, 0x88, 0x4a, 0x26, 0xff, 0x87, 0x49, 0x28, 0xff, 0x88, 0x49, 0x29, 0xff, 0x8a, 0x4c, 0x2a, 0xff, 0x8b, 0x4e, 0x2a, 0xff, 0x8b, 0x4e, 0x2a, 0xff, 0x8b, 0x4e, 0x2c, 0xff, 0x8b, 0x4d, 0x2c, 0xff, 0x89, 0x4d, 0x2a, 0xff, 0x89, 0x4c, 0x2a, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x86, 0x48, 0x24, 0xff, 0x94, 0x5f, 0x38, 0xff, 0xcc, 0x8d, 0x5d, 0xff, 0xe4, 0x9a, 0x63, 0xff, 0xda, 0x8f, 0x59, 0xff, 0xd8, 0x91, 0x5a, 0xff, 0xe6, 0xa0, 0x64, 0xff, 0xef, 0xb0, 0x71, 0xff, 0xee, 0xb4, 0x74, 0xff, 0xee, 0xb0, 0x6d, 0xff, 0xf1, 0xab, 0x68, 0xff, 0xe1, 0xa0, 0x62, 0xff, 0xc1, 0x84, 0x52, 0xff, 0xb6, 0x77, 0x49, 0xff, 0xb7, 0x79, 0x4a, 0xff, 0xb7, 0x7b, 0x4c, 0xff, 0xbc, 0x80, 0x51, 0xff, 0xc0, 0x87, 0x57, 0xff, 0xc9, 0x90, 0x5f, 0xff, 0xde, 0x9c, 0x68, 0xff, 0xed, 0xaa, 0x73, 0xff, 0xef, 0xb9, 0x80, 0xff, 0xee, 0xc5, 0x88, 0xff, 0xee, 0xd1, 0x8f, 0xff, 0xef, 0xda, 0x94, 0xff, 0xee, 0xd7, 0x92, 0xff, 0xef, 0xd2, 0x8e, 0xff, 0xf3, 0xcc, 0x8e, 0xff, 0xce, 0x9f, 0x6e, 0xff, 0x9e, 0x63, 0x3d, 0xff, 0x94, 0x58, 0x34, 0xff, 0x95, 0x58, 0x36, 0xff, 0x94, 0x56, 0x34, 0xff, 0x92, 0x55, 0x32, 0xff, 0x8f, 0x52, 0x30, 0xff, 0x8d, 0x4e, 0x2e, 0xff, 0x8c, 0x4d, 0x2d, 0xff, 0x8b, 0x4b, 0x2b, 0xff, 0x88, 0x49, 0x2a, 0xff, 0x88, 0x48, 0x2a, 0xff, 0x88, 0x47, 0x29, 0xff, 0x87, 0x49, 0x29, 0xff, 0x87, 0x48, 0x29, 0xff, 0x88, 0x49, 0x29, 0xff, 0x89, 0x49, 0x29, 0xff, 0x8b, 0x4a, 0x29, 0xff, 0x8c, 0x4b, 0x29, 0xff, 0x8d, 0x4b, 0x29, 0xff, 0x8f, 0x4c, 0x2a, 0xff, 0x90, 0x4f, 0x2a, 0xff, 0x93, 0x50, 0x2b, 0xff, 0x92, 0x4f, 0x2c, 0xff, 0x93, 0x51, 0x2c, 0xff, 0x95, 0x54, 0x2c, 0xff, 0x96, 0x53, 0x2d, 0xff, 0x96, 0x54, 0x2c, 0xff, 0x96, 0x55, 0x2c, 0xff, 0x97, 0x57, 0x2d, 0xff, 0x99, 0x59, 0x2f, 0xff, 0x98, 0x58, 0x2e, 0xff, 0xb0, 0x74, 0x44, 0xff, 0xe8, 0x9a, 0x62, 0xff, 0xe3, 0x94, 0x59, 0xff, 0xce, 0x87, 0x51, 0xff, 0xc4, 0x81, 0x4d, 0xff, 0xc0, 0x7d, 0x4b, 0xff, 0xbc, 0x7a, 0x48, 0xff, 0xb9, 0x78, 0x46, 0xff, 0xba, 0x7a, 0x49, 0xff, 0xbc, 0x7c, 0x4b, 0xff, 0xbe, 0x80, 0x4d, 0xff, 0xc4, 0x84, 0x52, 0xff, 0xd0, 0x8c, 0x57, 0xff, 0xde, 0x93, 0x5d, 0xff, 0xe8, 0x99, 0x61, 0xff, 0xea, 0x9e, 0x67, 0xff, 0xed, 0xa0, 0x6a, 0xff, 0xee, 0xa1, 0x6b, 0xff, 0xee, 0xa4, 0x6b, 0xff, 0xef, 0xa5, 0x6b, 0xff, 0xee, 0xa4, 0x6c, 0xff, 0xee, 0xa8, 0x6c, 0xff, 0xee, 0xa9, 0x6f, 0xff, 0xee, 0xab, 0x71, 0xff, 0xeb, 0xac, 0x71, 0xff, 0xe5, 0xaa, 0x70, 0xff, 0xde, 0xa7, 0x6d, 0xff, 0xd8, 0xa4, 0x69, 0xff, 0xd5, 0xa0, 0x69, 0xff, 0xd1, 0x9c, 0x63, 0xff, 0xcc, 0x94, 0x5d, 0xff, 0xc8, 0x8e, 0x57, 0xff, 0xc8, 0x88, 0x52, 0xff, 0xc2, 0x82, 0x4c, 0xff, 0xbd, 0x7c, 0x49, 0xff, 0xb8, 0x78, 0x45, 0xff, 0xb5, 0x73, 0x41, 0xff, 0xb2, 0x71, 0x3e, 0xff, 0xb0, 0x6d, 0x3d, 0xff, 0xaf, 0x6e, 0x3c, 0xff, 0xaf, 0x6e, 0x3c, 0xff, 0xb7, 0x7f, 0x45, 0xff, 0xb9, 0x85, 0x4a, 0xff, + 0xb8, 0x83, 0x48, 0xff, 0xb6, 0x81, 0x49, 0xff, 0xb5, 0x80, 0x47, 0xff, 0xb4, 0x80, 0x47, 0xff, 0xb1, 0x7d, 0x46, 0xff, 0xb0, 0x7a, 0x46, 0xff, 0xaf, 0x78, 0x45, 0xff, 0xaf, 0x78, 0x44, 0xff, 0xac, 0x74, 0x43, 0xff, 0xab, 0x71, 0x41, 0xff, 0xa1, 0x62, 0x36, 0xff, 0x9d, 0x60, 0x35, 0xff, 0x9c, 0x5c, 0x33, 0xff, 0x9b, 0x5c, 0x32, 0xff, 0x9a, 0x5c, 0x32, 0xff, 0x99, 0x5a, 0x31, 0xff, 0x9a, 0x5a, 0x2f, 0xff, 0x97, 0x59, 0x2e, 0xff, 0x97, 0x57, 0x2d, 0xff, 0x95, 0x57, 0x2d, 0xff, 0x95, 0x55, 0x2c, 0xff, 0x93, 0x54, 0x2d, 0xff, 0x92, 0x53, 0x2d, 0xff, 0x92, 0x53, 0x2d, 0xff, 0x92, 0x53, 0x2e, 0xff, 0x93, 0x54, 0x2e, 0xff, 0x99, 0x5b, 0x32, 0xff, 0xb7, 0x76, 0x3e, 0xff, 0xc3, 0x83, 0x41, 0xff, 0xbf, 0x7f, 0x3e, 0xff, 0xc3, 0x83, 0x45, 0xff, 0xc0, 0x80, 0x44, 0xff, 0xbe, 0x82, 0x3d, 0xff, 0xbb, 0x82, 0x3c, 0xff, 0xbb, 0x80, 0x3c, 0xff, 0xb9, 0x7b, 0x3b, 0xff, 0xbd, 0x82, 0x3e, 0xff, 0xb7, 0x7b, 0x37, 0xff, 0xb4, 0x77, 0x35, 0xff, 0xb0, 0x77, 0x35, 0xff, 0xc0, 0x91, 0x51, 0xff, 0xda, 0xb5, 0x6d, 0xff, 0xda, 0xb8, 0x70, 0xff, 0xdc, 0xb2, 0x6c, 0xff, 0xe3, 0xb9, 0x71, 0xff, 0xed, 0xc7, 0x7b, 0xff, 0xef, 0xc6, 0x7d, 0xff, 0xef, 0xba, 0x78, 0xff, 0xf0, 0xb6, 0x76, 0xff, 0xef, 0xba, 0x76, 0xff, 0xef, 0xc0, 0x7a, 0xff, 0xef, 0xbd, 0x77, 0xff, 0xef, 0xb3, 0x74, 0xff, 0xef, 0xb4, 0x74, 0xff, 0xef, 0xb4, 0x74, 0xff, 0xef, 0xb4, 0x75, 0xff, 0xef, 0xb4, 0x76, 0xff, 0xef, 0xb6, 0x78, 0xff, 0xef, 0xb8, 0x79, 0xff, 0xef, 0xbc, 0x7c, 0xff, 0xed, 0xbc, 0x7c, 0xff, 0xe2, 0xad, 0x71, 0xff, 0xd8, 0xa3, 0x69, 0xff, 0xd5, 0x9b, 0x64, 0xff, 0xd2, 0x95, 0x5e, 0xff, 0xcc, 0x8d, 0x58, 0xff, 0xbf, 0x7f, 0x4d, 0xff, 0xb9, 0x7a, 0x4a, 0xff, 0xaf, 0x72, 0x45, 0xff, 0x98, 0x5d, 0x31, 0xff, 0x88, 0x4c, 0x21, 0xff, 0x87, 0x49, 0x22, 0xff, 0x8a, 0x4d, 0x24, 0xff, 0x8c, 0x4e, 0x25, 0xff, 0x8e, 0x4f, 0x26, 0xff, 0x8d, 0x4f, 0x25, 0xff, 0x8d, 0x4f, 0x24, 0xff, 0x8e, 0x4f, 0x25, 0xff, 0x8f, 0x4f, 0x24, 0xff, 0x8f, 0x50, 0x24, 0xff, 0x8f, 0x50, 0x23, 0xff, 0x8e, 0x4e, 0x22, 0xff, 0x93, 0x54, 0x26, 0xff, 0xa8, 0x69, 0x37, 0xff, 0xb2, 0x72, 0x3e, 0xff, 0xb1, 0x71, 0x3e, 0xff, 0xb3, 0x72, 0x40, 0xff, 0xb4, 0x74, 0x42, 0xff, 0xb5, 0x78, 0x47, 0xff, 0xb6, 0x7c, 0x4a, 0xff, 0xb6, 0x7c, 0x48, 0xff, 0xb9, 0x7c, 0x48, 0xff, 0xbc, 0x80, 0x4c, 0xff, 0xc3, 0x86, 0x52, 0xff, 0xc9, 0x8d, 0x57, 0xff, 0xcb, 0x95, 0x5f, 0xff, 0xcc, 0x9c, 0x67, 0xff, 0xcd, 0xa0, 0x6d, 0xff, 0xc4, 0x95, 0x67, 0xff, 0xaf, 0x7a, 0x52, 0xff, 0xa4, 0x6c, 0x44, 0xff, 0xa3, 0x6a, 0x41, 0xff, 0xa2, 0x67, 0x3e, 0xff, 0xa1, 0x64, 0x3c, 0xff, 0xa1, 0x63, 0x39, 0xff, 0xa1, 0x62, 0x37, 0xff, 0x9e, 0x5f, 0x35, 0xff, 0x9b, 0x5a, 0x33, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x97, 0x5a, 0x31, 0xff, 0x97, 0x58, 0x2f, 0xff, 0x96, 0x55, 0x2f, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x93, 0x53, 0x2d, 0xff, 0x8d, 0x4e, 0x29, 0xff, 0x88, 0x4a, 0x27, 0xff, 0x88, 0x4a, 0x27, 0xff, 0x88, 0x49, 0x27, 0xff, 0x88, 0x49, 0x27, 0xff, 0x88, 0x4b, 0x27, 0xff, 0x88, 0x4b, 0x29, 0xff, 0x89, 0x4c, 0x29, 0xff, 0x8b, 0x4e, 0x29, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x89, 0x4d, 0x2a, 0xff, 0x89, 0x4b, 0x2a, 0xff, 0x8b, 0x4b, 0x2a, 0xff, 0x8a, 0x4d, 0x2b, 0xff, 0x8c, 0x4f, 0x2b, 0xff, 0x8d, 0x50, 0x2c, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x8c, 0x50, 0x2c, 0xff, 0xb6, 0x7a, 0x4c, 0xff, 0xdf, 0x99, 0x63, 0xff, 0xe2, 0x95, 0x5d, 0xff, 0xe4, 0x9c, 0x63, 0xff, 0xec, 0xa9, 0x6c, 0xff, 0xec, 0xb3, 0x71, 0xff, 0xef, 0xb8, 0x72, 0xff, 0xea, 0xb0, 0x6c, 0xff, 0xcc, 0x8e, 0x58, 0xff, 0xbb, 0x7c, 0x4c, 0xff, 0xb9, 0x7a, 0x4a, 0xff, 0xb8, 0x7a, 0x49, 0xff, 0xb8, 0x7b, 0x4b, 0xff, 0xbc, 0x80, 0x4e, 0xff, 0xbf, 0x84, 0x52, 0xff, 0xc8, 0x8b, 0x5a, 0xff, 0xda, 0x98, 0x62, 0xff, 0xeb, 0xa5, 0x6f, 0xff, 0xef, 0xb5, 0x7d, 0xff, 0xef, 0xc2, 0x88, 0xff, 0xef, 0xd3, 0x91, 0xff, 0xee, 0xdf, 0x94, 0xff, 0xec, 0xe3, 0x98, 0xff, 0xf0, 0xe7, 0x9a, 0xff, 0xdf, 0xcf, 0x90, 0xff, 0xa6, 0x79, 0x51, 0xff, 0x97, 0x5d, 0x38, 0xff, 0x98, 0x5d, 0x39, 0xff, 0x97, 0x5b, 0x37, 0xff, 0x96, 0x58, 0x36, 0xff, 0x94, 0x56, 0x34, 0xff, 0x91, 0x54, 0x32, 0xff, 0x8f, 0x50, 0x2f, 0xff, 0x8e, 0x4e, 0x2d, 0xff, 0x8d, 0x4d, 0x2c, 0xff, 0x8b, 0x4b, 0x2b, 0xff, 0x8b, 0x4b, 0x2a, 0xff, 0x8a, 0x4a, 0x2a, 0xff, 0x89, 0x4a, 0x2a, 0xff, 0x8b, 0x4b, 0x2a, 0xff, 0x8b, 0x4b, 0x2b, 0xff, 0x8c, 0x4b, 0x2a, 0xff, 0x8c, 0x4b, 0x2a, 0xff, 0x8e, 0x4d, 0x29, 0xff, 0x8f, 0x4d, 0x2a, 0xff, 0x8f, 0x4e, 0x2a, 0xff, 0x91, 0x4f, 0x2a, 0xff, 0x92, 0x50, 0x2b, 0xff, 0x93, 0x50, 0x2b, 0xff, 0x92, 0x4f, 0x2b, 0xff, 0x94, 0x50, 0x2c, 0xff, 0x96, 0x52, 0x2c, 0xff, 0x96, 0x53, 0x2c, 0xff, 0x96, 0x53, 0x2c, 0xff, 0x97, 0x57, 0x2d, 0xff, 0x9b, 0x5b, 0x2f, 0xff, 0x9c, 0x5c, 0x31, 0xff, 0x99, 0x59, 0x2e, 0xff, 0xab, 0x6c, 0x3e, 0xff, 0xe6, 0x96, 0x60, 0xff, 0xe5, 0x92, 0x5a, 0xff, 0xcc, 0x85, 0x51, 0xff, 0xc3, 0x81, 0x4e, 0xff, 0xbf, 0x7e, 0x4b, 0xff, 0xbb, 0x7b, 0x48, 0xff, 0xb8, 0x75, 0x45, 0xff, 0xb8, 0x78, 0x46, 0xff, 0xba, 0x79, 0x47, 0xff, 0xbc, 0x7b, 0x4b, 0xff, 0xc1, 0x80, 0x50, 0xff, 0xc7, 0x86, 0x53, 0xff, 0xce, 0x8b, 0x57, 0xff, 0xd6, 0x8e, 0x5b, 0xff, 0xdd, 0x93, 0x5e, 0xff, 0xe3, 0x98, 0x62, 0xff, 0xeb, 0x9a, 0x66, 0xff, 0xef, 0x9d, 0x67, 0xff, 0xee, 0xa2, 0x69, 0xff, 0xee, 0xa3, 0x6a, 0xff, 0xef, 0xa8, 0x6d, 0xff, 0xee, 0xaa, 0x70, 0xff, 0xeb, 0xad, 0x71, 0xff, 0xe4, 0xae, 0x72, 0xff, 0xdd, 0xa8, 0x70, 0xff, 0xd9, 0xa8, 0x6f, 0xff, 0xd6, 0xa4, 0x6d, 0xff, 0xd2, 0xa1, 0x6a, 0xff, 0xce, 0x9b, 0x64, 0xff, 0xca, 0x93, 0x5e, 0xff, 0xc8, 0x8d, 0x57, 0xff, 0xc6, 0x87, 0x51, 0xff, 0xbf, 0x80, 0x4b, 0xff, 0xb9, 0x78, 0x47, 0xff, 0xb5, 0x75, 0x42, 0xff, 0xb1, 0x71, 0x3f, 0xff, 0xaf, 0x6f, 0x3d, 0xff, 0xad, 0x6d, 0x3c, 0xff, 0xb5, 0x77, 0x3f, 0xff, 0xbe, 0x83, 0x49, 0xff, 0xb9, 0x81, 0x47, 0xff, + 0xb9, 0x7d, 0x45, 0xff, 0xb7, 0x7d, 0x45, 0xff, 0xb6, 0x7d, 0x45, 0xff, 0xb4, 0x7c, 0x44, 0xff, 0xb4, 0x7a, 0x43, 0xff, 0xb0, 0x78, 0x43, 0xff, 0xb0, 0x77, 0x42, 0xff, 0xaf, 0x74, 0x41, 0xff, 0xad, 0x72, 0x41, 0xff, 0xab, 0x70, 0x3f, 0xff, 0xa9, 0x69, 0x3d, 0xff, 0x9d, 0x5e, 0x35, 0xff, 0x9d, 0x5e, 0x34, 0xff, 0x9c, 0x5d, 0x32, 0xff, 0x9c, 0x5a, 0x32, 0xff, 0x9a, 0x5b, 0x32, 0xff, 0x9b, 0x5a, 0x31, 0xff, 0x99, 0x58, 0x2e, 0xff, 0x9a, 0x57, 0x2e, 0xff, 0x98, 0x59, 0x2e, 0xff, 0x96, 0x56, 0x2e, 0xff, 0x96, 0x57, 0x2e, 0xff, 0x96, 0x57, 0x2e, 0xff, 0x96, 0x57, 0x2e, 0xff, 0x96, 0x57, 0x30, 0xff, 0x9b, 0x5b, 0x32, 0xff, 0xb9, 0x7a, 0x3f, 0xff, 0xc5, 0x85, 0x42, 0xff, 0xc3, 0x81, 0x40, 0xff, 0xc3, 0x82, 0x41, 0xff, 0xc3, 0x84, 0x45, 0xff, 0xc0, 0x82, 0x47, 0xff, 0xbc, 0x7d, 0x41, 0xff, 0xbf, 0x85, 0x40, 0xff, 0xbe, 0x82, 0x3f, 0xff, 0xbe, 0x81, 0x3d, 0xff, 0xbc, 0x7f, 0x3d, 0xff, 0xbb, 0x80, 0x3d, 0xff, 0xbb, 0x80, 0x3d, 0xff, 0xb9, 0x7f, 0x3e, 0xff, 0xb8, 0x7c, 0x3b, 0xff, 0xb7, 0x7a, 0x3a, 0xff, 0xb8, 0x80, 0x3e, 0xff, 0xbb, 0x84, 0x45, 0xff, 0xbe, 0x89, 0x47, 0xff, 0xc0, 0x8b, 0x49, 0xff, 0xc3, 0x94, 0x4c, 0xff, 0xcd, 0x9f, 0x5c, 0xff, 0xcc, 0xa1, 0x61, 0xff, 0xd6, 0xa9, 0x6a, 0xff, 0xe0, 0xaf, 0x6e, 0xff, 0xdb, 0xaf, 0x71, 0xff, 0xcf, 0xa5, 0x6e, 0xff, 0xd2, 0xa6, 0x6d, 0xff, 0xd2, 0xa4, 0x6d, 0xff, 0xd2, 0xa1, 0x68, 0xff, 0xce, 0x9e, 0x66, 0xff, 0xc3, 0x92, 0x5c, 0xff, 0xba, 0x86, 0x52, 0xff, 0xb3, 0x7c, 0x47, 0xff, 0xa6, 0x6d, 0x3b, 0xff, 0x9f, 0x68, 0x3a, 0xff, 0x9a, 0x64, 0x37, 0xff, 0x98, 0x5f, 0x31, 0xff, 0x95, 0x5a, 0x2e, 0xff, 0x94, 0x58, 0x2d, 0xff, 0x92, 0x56, 0x2c, 0xff, 0x8f, 0x54, 0x2b, 0xff, 0x8d, 0x51, 0x2a, 0xff, 0x8f, 0x54, 0x2b, 0xff, 0x90, 0x54, 0x2c, 0xff, 0x8f, 0x53, 0x2b, 0xff, 0x8e, 0x52, 0x29, 0xff, 0x8f, 0x52, 0x28, 0xff, 0x8f, 0x53, 0x29, 0xff, 0x90, 0x52, 0x28, 0xff, 0x8f, 0x53, 0x27, 0xff, 0x8f, 0x52, 0x26, 0xff, 0x8e, 0x50, 0x23, 0xff, 0x8f, 0x4f, 0x1f, 0xff, 0x8f, 0x50, 0x1e, 0xff, 0x8f, 0x50, 0x1e, 0xff, 0x8f, 0x4f, 0x20, 0xff, 0x96, 0x58, 0x27, 0xff, 0xa8, 0x6a, 0x37, 0xff, 0xaf, 0x70, 0x3c, 0xff, 0xb3, 0x73, 0x40, 0xff, 0xb7, 0x78, 0x44, 0xff, 0xb8, 0x79, 0x46, 0xff, 0xb8, 0x7c, 0x49, 0xff, 0xb8, 0x7c, 0x4b, 0xff, 0xba, 0x7d, 0x4a, 0xff, 0xbd, 0x81, 0x4b, 0xff, 0xc3, 0x86, 0x50, 0xff, 0xca, 0x8d, 0x56, 0xff, 0xcd, 0x95, 0x5d, 0xff, 0xcf, 0x9e, 0x67, 0xff, 0xd2, 0xa2, 0x70, 0xff, 0xc6, 0x92, 0x69, 0xff, 0xac, 0x75, 0x50, 0xff, 0xa4, 0x6c, 0x46, 0xff, 0xa3, 0x6b, 0x44, 0xff, 0xa3, 0x69, 0x42, 0xff, 0xa3, 0x69, 0x3f, 0xff, 0xa4, 0x68, 0x3d, 0xff, 0xa2, 0x64, 0x3a, 0xff, 0x9f, 0x60, 0x36, 0xff, 0x9c, 0x5c, 0x35, 0xff, 0x9a, 0x5c, 0x32, 0xff, 0x9a, 0x5c, 0x32, 0xff, 0x99, 0x58, 0x32, 0xff, 0x97, 0x57, 0x32, 0xff, 0x96, 0x57, 0x30, 0xff, 0x97, 0x57, 0x31, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x8d, 0x4e, 0x2a, 0xff, 0x8b, 0x4c, 0x2a, 0xff, 0x8b, 0x4c, 0x28, 0xff, 0x89, 0x4b, 0x28, 0xff, 0x8a, 0x4b, 0x28, 0xff, 0x8b, 0x4c, 0x2a, 0xff, 0x8b, 0x4c, 0x2a, 0xff, 0x8b, 0x4d, 0x2a, 0xff, 0x8b, 0x4e, 0x2b, 0xff, 0x8b, 0x4e, 0x2b, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x89, 0x4b, 0x29, 0xff, 0x89, 0x4b, 0x29, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x8c, 0x4f, 0x2b, 0xff, 0x8d, 0x4f, 0x2b, 0xff, 0x8e, 0x50, 0x2c, 0xff, 0x8e, 0x51, 0x2d, 0xff, 0x8e, 0x50, 0x2c, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0xa0, 0x65, 0x3c, 0xff, 0xd2, 0x90, 0x5c, 0xff, 0xeb, 0x9e, 0x65, 0xff, 0xea, 0xa4, 0x67, 0xff, 0xeb, 0xa8, 0x69, 0xff, 0xed, 0xb2, 0x70, 0xff, 0xd4, 0x9b, 0x5f, 0xff, 0xc1, 0x83, 0x50, 0xff, 0xbf, 0x80, 0x4f, 0xff, 0xbc, 0x7d, 0x4d, 0xff, 0xb9, 0x7c, 0x4a, 0xff, 0xb9, 0x7c, 0x4b, 0xff, 0xbd, 0x7e, 0x4c, 0xff, 0xbe, 0x81, 0x51, 0xff, 0xc2, 0x87, 0x55, 0xff, 0xd1, 0x91, 0x5b, 0xff, 0xe7, 0x9d, 0x68, 0xff, 0xf0, 0xaf, 0x78, 0xff, 0xef, 0xbd, 0x83, 0xff, 0xef, 0xce, 0x8c, 0xff, 0xec, 0xdf, 0x95, 0xff, 0xe8, 0xe4, 0x9b, 0xff, 0xf1, 0xed, 0xaf, 0xff, 0xb4, 0x8f, 0x66, 0xff, 0x99, 0x63, 0x3f, 0xff, 0x9a, 0x63, 0x3f, 0xff, 0x98, 0x61, 0x3d, 0xff, 0x99, 0x5f, 0x3b, 0xff, 0x9a, 0x5c, 0x37, 0xff, 0x97, 0x59, 0x35, 0xff, 0x94, 0x57, 0x33, 0xff, 0x91, 0x53, 0x31, 0xff, 0x8f, 0x50, 0x2e, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8d, 0x4b, 0x2b, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8b, 0x4e, 0x2c, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x8f, 0x4d, 0x2b, 0xff, 0x8f, 0x4d, 0x2b, 0xff, 0x8f, 0x4e, 0x2b, 0xff, 0x8f, 0x4e, 0x2b, 0xff, 0x90, 0x4f, 0x2b, 0xff, 0x92, 0x50, 0x2b, 0xff, 0x92, 0x50, 0x2b, 0xff, 0x92, 0x4f, 0x2b, 0xff, 0x92, 0x4f, 0x2b, 0xff, 0x93, 0x4f, 0x2b, 0xff, 0x94, 0x50, 0x2b, 0xff, 0x96, 0x52, 0x2b, 0xff, 0x97, 0x54, 0x2c, 0xff, 0x9a, 0x57, 0x2d, 0xff, 0x9b, 0x58, 0x2d, 0xff, 0x9c, 0x59, 0x2e, 0xff, 0x9b, 0x5b, 0x2f, 0xff, 0x99, 0x59, 0x2e, 0xff, 0xa9, 0x68, 0x3a, 0xff, 0xe3, 0x96, 0x61, 0xff, 0xe0, 0x90, 0x59, 0xff, 0xce, 0x88, 0x52, 0xff, 0xc4, 0x83, 0x4e, 0xff, 0xc0, 0x7f, 0x4c, 0xff, 0xbc, 0x79, 0x48, 0xff, 0xb7, 0x75, 0x45, 0xff, 0xb8, 0x78, 0x45, 0xff, 0xb9, 0x79, 0x48, 0xff, 0xbc, 0x7a, 0x49, 0xff, 0xbf, 0x7e, 0x4d, 0xff, 0xc3, 0x82, 0x4f, 0xff, 0xc5, 0x85, 0x53, 0xff, 0xcc, 0x8b, 0x56, 0xff, 0xd2, 0x8e, 0x58, 0xff, 0xdd, 0x92, 0x5d, 0xff, 0xe6, 0x97, 0x62, 0xff, 0xed, 0x9b, 0x65, 0xff, 0xed, 0x9d, 0x67, 0xff, 0xee, 0xa2, 0x6a, 0xff, 0xee, 0xa8, 0x6e, 0xff, 0xe8, 0xa9, 0x70, 0xff, 0xe4, 0xae, 0x73, 0xff, 0xdd, 0xaa, 0x72, 0xff, 0xd9, 0xa6, 0x71, 0xff, 0xd6, 0xa4, 0x71, 0xff, 0xd3, 0xa2, 0x6e, 0xff, 0xcf, 0x9e, 0x69, 0xff, 0xcc, 0x99, 0x63, 0xff, 0xca, 0x92, 0x5d, 0xff, 0xc7, 0x8b, 0x57, 0xff, 0xc2, 0x82, 0x50, 0xff, 0xbb, 0x7b, 0x49, 0xff, 0xb6, 0x75, 0x44, 0xff, 0xb3, 0x71, 0x41, 0xff, 0xad, 0x6d, 0x3d, 0xff, 0xb0, 0x6e, 0x3b, 0xff, 0xbf, 0x81, 0x47, 0xff, 0xbb, 0x7f, 0x44, 0xff, 0xb9, 0x7f, 0x45, 0xff, + 0xb9, 0x7a, 0x41, 0xff, 0xb8, 0x7a, 0x42, 0xff, 0xb6, 0x7a, 0x43, 0xff, 0xb5, 0x7b, 0x42, 0xff, 0xb4, 0x76, 0x42, 0xff, 0xb1, 0x76, 0x41, 0xff, 0xb1, 0x75, 0x41, 0xff, 0xaf, 0x72, 0x3f, 0xff, 0xac, 0x70, 0x3e, 0xff, 0xac, 0x6f, 0x3e, 0xff, 0xaa, 0x6b, 0x3c, 0xff, 0xa2, 0x63, 0x36, 0xff, 0x9d, 0x5f, 0x34, 0xff, 0x9c, 0x5d, 0x32, 0xff, 0x9c, 0x5d, 0x32, 0xff, 0x9b, 0x5c, 0x32, 0xff, 0x9c, 0x5a, 0x31, 0xff, 0x9c, 0x59, 0x31, 0xff, 0x9a, 0x5b, 0x31, 0xff, 0x99, 0x5a, 0x2f, 0xff, 0x9a, 0x59, 0x30, 0xff, 0x98, 0x59, 0x2e, 0xff, 0x97, 0x59, 0x2f, 0xff, 0x99, 0x59, 0x32, 0xff, 0x9c, 0x5e, 0x32, 0xff, 0xc5, 0x85, 0x46, 0xff, 0xc3, 0x80, 0x3f, 0xff, 0xc3, 0x82, 0x41, 0xff, 0xc4, 0x86, 0x45, 0xff, 0xc1, 0x81, 0x42, 0xff, 0xc4, 0x87, 0x47, 0xff, 0xc2, 0x83, 0x46, 0xff, 0xbf, 0x82, 0x48, 0xff, 0xbd, 0x7e, 0x3c, 0xff, 0xbe, 0x83, 0x41, 0xff, 0xbe, 0x80, 0x3d, 0xff, 0xbf, 0x87, 0x42, 0xff, 0xbd, 0x82, 0x42, 0xff, 0xba, 0x7e, 0x3c, 0xff, 0xbc, 0x83, 0x3e, 0xff, 0xba, 0x7d, 0x3d, 0xff, 0xbb, 0x80, 0x3f, 0xff, 0xba, 0x7d, 0x40, 0xff, 0xbc, 0x84, 0x40, 0xff, 0xbc, 0x82, 0x3e, 0xff, 0xbb, 0x83, 0x42, 0xff, 0xbd, 0x84, 0x44, 0xff, 0xbb, 0x82, 0x43, 0xff, 0xb9, 0x80, 0x3f, 0xff, 0xbb, 0x81, 0x43, 0xff, 0xbb, 0x83, 0x49, 0xff, 0xb1, 0x76, 0x40, 0xff, 0x9e, 0x64, 0x34, 0xff, 0xa2, 0x67, 0x37, 0xff, 0x9f, 0x61, 0x34, 0xff, 0x9a, 0x5e, 0x32, 0xff, 0x9a, 0x5f, 0x32, 0xff, 0x9a, 0x60, 0x32, 0xff, 0x9a, 0x61, 0x33, 0xff, 0x9a, 0x5e, 0x32, 0xff, 0x99, 0x5d, 0x32, 0xff, 0x98, 0x5d, 0x30, 0xff, 0x98, 0x5d, 0x30, 0xff, 0x97, 0x5c, 0x30, 0xff, 0x96, 0x5c, 0x2e, 0xff, 0x96, 0x5a, 0x2e, 0xff, 0x95, 0x5a, 0x2e, 0xff, 0x95, 0x59, 0x2e, 0xff, 0x94, 0x58, 0x2e, 0xff, 0x92, 0x57, 0x2e, 0xff, 0x91, 0x58, 0x2e, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x91, 0x55, 0x2d, 0xff, 0x90, 0x52, 0x2a, 0xff, 0x8f, 0x52, 0x26, 0xff, 0x8e, 0x51, 0x23, 0xff, 0x8f, 0x50, 0x23, 0xff, 0x8e, 0x51, 0x22, 0xff, 0x8f, 0x51, 0x21, 0xff, 0x8f, 0x52, 0x21, 0xff, 0x8f, 0x52, 0x20, 0xff, 0x8f, 0x52, 0x20, 0xff, 0x90, 0x51, 0x20, 0xff, 0x91, 0x53, 0x24, 0xff, 0x9a, 0x5b, 0x2b, 0xff, 0xab, 0x6c, 0x37, 0xff, 0xac, 0x6d, 0x39, 0xff, 0xad, 0x6e, 0x3e, 0xff, 0xb3, 0x74, 0x40, 0xff, 0xba, 0x7e, 0x47, 0xff, 0xbc, 0x81, 0x4d, 0xff, 0xbd, 0x80, 0x50, 0xff, 0xc0, 0x82, 0x4f, 0xff, 0xc3, 0x86, 0x4f, 0xff, 0xcb, 0x8b, 0x56, 0xff, 0xd1, 0x93, 0x5d, 0xff, 0xcf, 0x9a, 0x63, 0xff, 0xc8, 0x9c, 0x68, 0xff, 0xb8, 0x86, 0x5d, 0xff, 0xa7, 0x6d, 0x49, 0xff, 0xa6, 0x6b, 0x47, 0xff, 0xa6, 0x6b, 0x45, 0xff, 0xa5, 0x6b, 0x45, 0xff, 0xa6, 0x6d, 0x44, 0xff, 0xa5, 0x6b, 0x3e, 0xff, 0xa1, 0x63, 0x38, 0xff, 0xa1, 0x61, 0x36, 0xff, 0xa0, 0x61, 0x36, 0xff, 0x9e, 0x5e, 0x35, 0xff, 0x9d, 0x5c, 0x33, 0xff, 0x9c, 0x5b, 0x34, 0xff, 0x9a, 0x59, 0x32, 0xff, 0x9a, 0x59, 0x32, 0xff, 0x98, 0x58, 0x31, 0xff, 0x93, 0x55, 0x2d, 0xff, 0x90, 0x51, 0x2b, 0xff, 0x90, 0x4f, 0x2b, 0xff, 0x8e, 0x4e, 0x2a, 0xff, 0x8d, 0x4c, 0x2a, 0xff, 0x8c, 0x4c, 0x2a, 0xff, 0x8b, 0x4e, 0x2a, 0xff, 0x8c, 0x4e, 0x29, 0xff, 0x8d, 0x4e, 0x29, 0xff, 0x8e, 0x50, 0x2b, 0xff, 0x8e, 0x50, 0x2b, 0xff, 0x8b, 0x4d, 0x2a, 0xff, 0x89, 0x4b, 0x29, 0xff, 0x8a, 0x4b, 0x29, 0xff, 0x8c, 0x4e, 0x2a, 0xff, 0x8d, 0x4f, 0x2b, 0xff, 0x8e, 0x50, 0x2c, 0xff, 0x8e, 0x50, 0x2c, 0xff, 0x8e, 0x51, 0x2d, 0xff, 0x8e, 0x50, 0x2c, 0xff, 0x8e, 0x51, 0x2d, 0xff, 0x91, 0x56, 0x31, 0xff, 0x8c, 0x53, 0x2c, 0xff, 0xb5, 0x7c, 0x4b, 0xff, 0xe5, 0xa4, 0x6b, 0xff, 0xf3, 0xb0, 0x72, 0xff, 0xe1, 0x9f, 0x64, 0xff, 0xce, 0x8b, 0x56, 0xff, 0xc7, 0x88, 0x54, 0xff, 0xc4, 0x87, 0x54, 0xff, 0xc1, 0x84, 0x51, 0xff, 0xbd, 0x7e, 0x4d, 0xff, 0xba, 0x7c, 0x4b, 0xff, 0xbc, 0x7d, 0x4d, 0xff, 0xbc, 0x7e, 0x4d, 0xff, 0xbf, 0x83, 0x51, 0xff, 0xcb, 0x8b, 0x59, 0xff, 0xdf, 0x96, 0x62, 0xff, 0xeb, 0xa7, 0x70, 0xff, 0xed, 0xb4, 0x7f, 0xff, 0xef, 0xc7, 0x89, 0xff, 0xee, 0xdc, 0x92, 0xff, 0xf4, 0xeb, 0xaa, 0xff, 0xbe, 0x9c, 0x6f, 0xff, 0x9f, 0x6b, 0x47, 0xff, 0x9d, 0x67, 0x45, 0xff, 0x9d, 0x65, 0x44, 0xff, 0x9b, 0x65, 0x41, 0xff, 0x9c, 0x64, 0x3f, 0xff, 0x9b, 0x62, 0x3b, 0xff, 0x99, 0x5d, 0x37, 0xff, 0x97, 0x5a, 0x35, 0xff, 0x94, 0x57, 0x33, 0xff, 0x92, 0x54, 0x31, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x8e, 0x4d, 0x2c, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8c, 0x4c, 0x2c, 0xff, 0x8e, 0x4e, 0x2d, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x91, 0x4f, 0x2c, 0xff, 0x91, 0x4e, 0x2c, 0xff, 0x91, 0x50, 0x2d, 0xff, 0x92, 0x52, 0x2d, 0xff, 0x92, 0x53, 0x2e, 0xff, 0x92, 0x52, 0x2d, 0xff, 0x94, 0x50, 0x2c, 0xff, 0x92, 0x50, 0x2c, 0xff, 0x92, 0x4f, 0x2b, 0xff, 0x94, 0x50, 0x2b, 0xff, 0x96, 0x52, 0x2b, 0xff, 0x96, 0x54, 0x2b, 0xff, 0x97, 0x55, 0x2c, 0xff, 0x9a, 0x57, 0x2c, 0xff, 0x9b, 0x59, 0x2d, 0xff, 0x9c, 0x59, 0x2e, 0xff, 0x9c, 0x5a, 0x2f, 0xff, 0x9d, 0x5a, 0x31, 0xff, 0x92, 0x53, 0x2c, 0xff, 0xe4, 0x98, 0x64, 0xff, 0xe6, 0x95, 0x5c, 0xff, 0xd4, 0x88, 0x54, 0xff, 0xc7, 0x85, 0x51, 0xff, 0xc1, 0x7f, 0x4c, 0xff, 0xbc, 0x7a, 0x47, 0xff, 0xb9, 0x78, 0x46, 0xff, 0xb9, 0x78, 0x46, 0xff, 0xb9, 0x78, 0x47, 0xff, 0xbb, 0x7b, 0x49, 0xff, 0xbe, 0x7b, 0x4b, 0xff, 0xc1, 0x7d, 0x4d, 0xff, 0xc3, 0x81, 0x4f, 0xff, 0xc7, 0x86, 0x54, 0xff, 0xcd, 0x8b, 0x55, 0xff, 0xd4, 0x8e, 0x59, 0xff, 0xde, 0x93, 0x5d, 0xff, 0xe9, 0x98, 0x62, 0xff, 0xef, 0x9d, 0x66, 0xff, 0xeb, 0xa2, 0x6a, 0xff, 0xe7, 0xa7, 0x6e, 0xff, 0xe2, 0xa9, 0x72, 0xff, 0xdd, 0xa8, 0x74, 0xff, 0xd9, 0xa7, 0x71, 0xff, 0xd8, 0xa3, 0x73, 0xff, 0xd3, 0xa4, 0x70, 0xff, 0xd0, 0xa1, 0x6b, 0xff, 0xce, 0x9a, 0x66, 0xff, 0xcc, 0x96, 0x5f, 0xff, 0xc8, 0x8d, 0x5a, 0xff, 0xc3, 0x86, 0x53, 0xff, 0xbb, 0x7d, 0x4c, 0xff, 0xb6, 0x77, 0x46, 0xff, 0xb3, 0x73, 0x41, 0xff, 0xaf, 0x6c, 0x3d, 0xff, 0xc0, 0x81, 0x49, 0xff, 0xbf, 0x7f, 0x45, 0xff, 0xbc, 0x7e, 0x42, 0xff, 0xba, 0x7b, 0x42, 0xff, + 0xb9, 0x79, 0x40, 0xff, 0xb7, 0x78, 0x3f, 0xff, 0xb6, 0x78, 0x41, 0xff, 0xb5, 0x76, 0x41, 0xff, 0xb4, 0x75, 0x40, 0xff, 0xb3, 0x74, 0x40, 0xff, 0xb1, 0x73, 0x3e, 0xff, 0xb0, 0x72, 0x3e, 0xff, 0xaf, 0x70, 0x3d, 0xff, 0xad, 0x6c, 0x3b, 0xff, 0xaa, 0x6c, 0x3c, 0xff, 0xa7, 0x66, 0x3a, 0xff, 0xa0, 0x61, 0x36, 0xff, 0x9e, 0x5d, 0x34, 0xff, 0x9d, 0x5d, 0x32, 0xff, 0x9d, 0x5a, 0x32, 0xff, 0x9d, 0x5b, 0x32, 0xff, 0x9d, 0x5d, 0x32, 0xff, 0x9c, 0x5c, 0x32, 0xff, 0x9b, 0x5b, 0x32, 0xff, 0x9a, 0x5b, 0x31, 0xff, 0x9a, 0x5a, 0x32, 0xff, 0x9e, 0x5f, 0x34, 0xff, 0xa9, 0x6d, 0x3a, 0xff, 0xc4, 0x83, 0x43, 0xff, 0xc3, 0x81, 0x40, 0xff, 0xc6, 0x86, 0x43, 0xff, 0xc5, 0x84, 0x43, 0xff, 0xc4, 0x83, 0x43, 0xff, 0xc5, 0x86, 0x45, 0xff, 0xc4, 0x84, 0x47, 0xff, 0xc3, 0x83, 0x49, 0xff, 0xc1, 0x82, 0x49, 0xff, 0xc0, 0x83, 0x44, 0xff, 0xc0, 0x84, 0x40, 0xff, 0xbe, 0x85, 0x44, 0xff, 0xba, 0x7d, 0x40, 0xff, 0xbd, 0x83, 0x42, 0xff, 0xbf, 0x85, 0x45, 0xff, 0xbc, 0x80, 0x41, 0xff, 0xbb, 0x81, 0x41, 0xff, 0xba, 0x7e, 0x40, 0xff, 0xbb, 0x82, 0x41, 0xff, 0xbf, 0x87, 0x46, 0xff, 0xbe, 0x84, 0x45, 0xff, 0xbf, 0x87, 0x43, 0xff, 0xbc, 0x84, 0x43, 0xff, 0xbd, 0x89, 0x47, 0xff, 0xbf, 0x86, 0x47, 0xff, 0xbd, 0x87, 0x45, 0xff, 0xbb, 0x85, 0x47, 0xff, 0xb3, 0x7b, 0x40, 0xff, 0xa0, 0x65, 0x34, 0xff, 0xa3, 0x69, 0x37, 0xff, 0xa1, 0x65, 0x36, 0xff, 0x9e, 0x5e, 0x31, 0xff, 0x9d, 0x5e, 0x31, 0xff, 0x9c, 0x60, 0x31, 0xff, 0x9c, 0x5c, 0x31, 0xff, 0x9a, 0x5b, 0x30, 0xff, 0x9a, 0x5d, 0x31, 0xff, 0x98, 0x5b, 0x30, 0xff, 0x99, 0x5b, 0x2e, 0xff, 0x97, 0x5b, 0x2e, 0xff, 0x96, 0x5a, 0x2e, 0xff, 0x97, 0x5a, 0x2c, 0xff, 0x95, 0x57, 0x2b, 0xff, 0x95, 0x56, 0x2a, 0xff, 0x94, 0x56, 0x2a, 0xff, 0x93, 0x56, 0x2a, 0xff, 0x92, 0x57, 0x2a, 0xff, 0x91, 0x56, 0x29, 0xff, 0x91, 0x54, 0x29, 0xff, 0x91, 0x53, 0x29, 0xff, 0x91, 0x55, 0x28, 0xff, 0x91, 0x56, 0x27, 0xff, 0x91, 0x53, 0x25, 0xff, 0x91, 0x52, 0x25, 0xff, 0x91, 0x52, 0x24, 0xff, 0x92, 0x53, 0x23, 0xff, 0x91, 0x54, 0x21, 0xff, 0x91, 0x52, 0x22, 0xff, 0x92, 0x52, 0x22, 0xff, 0x92, 0x52, 0x21, 0xff, 0x91, 0x53, 0x23, 0xff, 0x9c, 0x5e, 0x2c, 0xff, 0xb1, 0x71, 0x3d, 0xff, 0xaf, 0x6e, 0x3d, 0xff, 0xaf, 0x71, 0x3e, 0xff, 0xb0, 0x72, 0x3e, 0xff, 0xb1, 0x74, 0x41, 0xff, 0xb4, 0x79, 0x48, 0xff, 0xb4, 0x79, 0x49, 0xff, 0xb6, 0x7b, 0x48, 0xff, 0xba, 0x80, 0x4a, 0xff, 0xbf, 0x83, 0x4e, 0xff, 0xc1, 0x8b, 0x54, 0xff, 0xc5, 0x94, 0x5d, 0xff, 0xb7, 0x83, 0x54, 0xff, 0xa5, 0x6b, 0x43, 0xff, 0xa8, 0x6f, 0x47, 0xff, 0xa7, 0x6e, 0x46, 0xff, 0xa7, 0x6f, 0x47, 0xff, 0xa5, 0x6d, 0x43, 0xff, 0xa0, 0x68, 0x3c, 0xff, 0xa0, 0x66, 0x39, 0xff, 0xa2, 0x66, 0x39, 0xff, 0xa2, 0x63, 0x37, 0xff, 0xa0, 0x60, 0x35, 0xff, 0x9d, 0x5f, 0x35, 0xff, 0x9d, 0x5d, 0x35, 0xff, 0x9d, 0x5d, 0x34, 0xff, 0x9c, 0x5d, 0x33, 0xff, 0x99, 0x5b, 0x31, 0xff, 0x95, 0x57, 0x2e, 0xff, 0x93, 0x55, 0x2d, 0xff, 0x91, 0x54, 0x2c, 0xff, 0x90, 0x52, 0x2c, 0xff, 0x90, 0x51, 0x2b, 0xff, 0x8e, 0x4f, 0x2a, 0xff, 0x8e, 0x4e, 0x2a, 0xff, 0x8d, 0x4e, 0x2a, 0xff, 0x8d, 0x50, 0x2a, 0xff, 0x8e, 0x51, 0x2c, 0xff, 0x8e, 0x50, 0x2c, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x8a, 0x4c, 0x2a, 0xff, 0x8b, 0x4e, 0x2a, 0xff, 0x8c, 0x4e, 0x2a, 0xff, 0x8d, 0x4f, 0x2a, 0xff, 0x8e, 0x50, 0x2c, 0xff, 0x8e, 0x50, 0x2c, 0xff, 0x8e, 0x50, 0x2d, 0xff, 0x8e, 0x50, 0x2d, 0xff, 0x8f, 0x55, 0x2f, 0xff, 0x91, 0x57, 0x30, 0xff, 0x91, 0x58, 0x31, 0xff, 0x8d, 0x52, 0x2c, 0xff, 0x9a, 0x63, 0x37, 0xff, 0xc5, 0x8c, 0x57, 0xff, 0xdb, 0x94, 0x5e, 0xff, 0xd8, 0x8c, 0x59, 0xff, 0xd1, 0x8b, 0x56, 0xff, 0xcb, 0x8b, 0x55, 0xff, 0xc5, 0x88, 0x54, 0xff, 0xc0, 0x84, 0x51, 0xff, 0xbe, 0x81, 0x4e, 0xff, 0xba, 0x7c, 0x4a, 0xff, 0xbb, 0x7d, 0x4c, 0xff, 0xbe, 0x80, 0x4f, 0xff, 0xc2, 0x86, 0x53, 0xff, 0xd2, 0x8f, 0x5c, 0xff, 0xe8, 0x9e, 0x6a, 0xff, 0xf0, 0xb0, 0x78, 0xff, 0xf0, 0xbc, 0x83, 0xff, 0xf2, 0xd2, 0x8f, 0xff, 0xe1, 0xce, 0x91, 0xff, 0xb1, 0x88, 0x5e, 0xff, 0x9d, 0x67, 0x45, 0xff, 0x9f, 0x6b, 0x47, 0xff, 0x9e, 0x6a, 0x47, 0xff, 0x9d, 0x69, 0x45, 0xff, 0x9d, 0x69, 0x43, 0xff, 0x9d, 0x65, 0x40, 0xff, 0x9c, 0x61, 0x3b, 0xff, 0x9a, 0x5d, 0x38, 0xff, 0x97, 0x5a, 0x36, 0xff, 0x94, 0x56, 0x33, 0xff, 0x93, 0x56, 0x31, 0xff, 0x92, 0x54, 0x2e, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x8e, 0x4d, 0x2c, 0xff, 0x8e, 0x4d, 0x2c, 0xff, 0x8e, 0x4d, 0x2d, 0xff, 0x8f, 0x4e, 0x2c, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x91, 0x52, 0x2d, 0xff, 0x90, 0x54, 0x2e, 0xff, 0x92, 0x56, 0x2f, 0xff, 0x92, 0x56, 0x30, 0xff, 0x92, 0x56, 0x2f, 0xff, 0x94, 0x55, 0x2e, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x95, 0x52, 0x2c, 0xff, 0x95, 0x52, 0x2a, 0xff, 0x96, 0x52, 0x2b, 0xff, 0x95, 0x52, 0x2b, 0xff, 0x97, 0x53, 0x2b, 0xff, 0x98, 0x55, 0x2c, 0xff, 0x98, 0x55, 0x2d, 0xff, 0x9a, 0x58, 0x2d, 0xff, 0x9c, 0x59, 0x2e, 0xff, 0x9d, 0x59, 0x2e, 0xff, 0x9b, 0x57, 0x2e, 0xff, 0x90, 0x54, 0x2d, 0xff, 0xc9, 0x84, 0x52, 0xff, 0xe8, 0x96, 0x5f, 0xff, 0xdd, 0x8f, 0x58, 0xff, 0xcd, 0x87, 0x51, 0xff, 0xc5, 0x82, 0x4d, 0xff, 0xc0, 0x7d, 0x4a, 0xff, 0xbb, 0x7a, 0x48, 0xff, 0xba, 0x79, 0x47, 0xff, 0xba, 0x7a, 0x49, 0xff, 0xbb, 0x79, 0x49, 0xff, 0xbd, 0x7c, 0x4a, 0xff, 0xbf, 0x7e, 0x4c, 0xff, 0xc2, 0x83, 0x4f, 0xff, 0xc5, 0x85, 0x52, 0xff, 0xcb, 0x89, 0x54, 0xff, 0xd1, 0x8e, 0x58, 0xff, 0xdd, 0x92, 0x5c, 0xff, 0xe7, 0x98, 0x62, 0xff, 0xe9, 0x9d, 0x67, 0xff, 0xe6, 0xa1, 0x69, 0xff, 0xe0, 0xa5, 0x6e, 0xff, 0xdd, 0xa8, 0x70, 0xff, 0xdc, 0xa8, 0x70, 0xff, 0xd8, 0xa5, 0x70, 0xff, 0xd3, 0xa3, 0x6e, 0xff, 0xd0, 0xa0, 0x6b, 0xff, 0xce, 0x9a, 0x67, 0xff, 0xce, 0x94, 0x61, 0xff, 0xca, 0x8e, 0x5b, 0xff, 0xc5, 0x88, 0x53, 0xff, 0xbc, 0x7d, 0x4c, 0xff, 0xb6, 0x78, 0x48, 0xff, 0xb0, 0x71, 0x41, 0xff, 0xbd, 0x7c, 0x46, 0xff, 0xbf, 0x7e, 0x45, 0xff, 0xbe, 0x7d, 0x44, 0xff, 0xbc, 0x7c, 0x43, 0xff, 0xba, 0x78, 0x41, 0xff, + 0xb9, 0x77, 0x40, 0xff, 0xb9, 0x78, 0x40, 0xff, 0xb8, 0x78, 0x41, 0xff, 0xb5, 0x75, 0x3f, 0xff, 0xb4, 0x74, 0x3e, 0xff, 0xb4, 0x74, 0x3e, 0xff, 0xb0, 0x70, 0x3c, 0xff, 0xb0, 0x70, 0x3d, 0xff, 0xaf, 0x70, 0x3b, 0xff, 0xae, 0x6d, 0x3b, 0xff, 0xac, 0x6c, 0x3b, 0xff, 0xa9, 0x69, 0x3a, 0xff, 0xa4, 0x64, 0x38, 0xff, 0xa0, 0x61, 0x35, 0xff, 0x9f, 0x5e, 0x34, 0xff, 0x9f, 0x5d, 0x34, 0xff, 0x9f, 0x5d, 0x34, 0xff, 0x9d, 0x5e, 0x35, 0xff, 0x9e, 0x5e, 0x34, 0xff, 0x9d, 0x5e, 0x33, 0xff, 0x9d, 0x5e, 0x33, 0xff, 0xa2, 0x64, 0x38, 0xff, 0xb8, 0x78, 0x42, 0xff, 0xc4, 0x83, 0x43, 0xff, 0xc4, 0x83, 0x41, 0xff, 0xc4, 0x84, 0x43, 0xff, 0xc3, 0x81, 0x41, 0xff, 0xc5, 0x85, 0x43, 0xff, 0xc3, 0x83, 0x45, 0xff, 0xc6, 0x86, 0x48, 0xff, 0xc4, 0x84, 0x47, 0xff, 0xc3, 0x83, 0x47, 0xff, 0xc3, 0x85, 0x49, 0xff, 0xbe, 0x80, 0x46, 0xff, 0xbe, 0x84, 0x41, 0xff, 0xbb, 0x80, 0x3f, 0xff, 0xbc, 0x80, 0x3e, 0xff, 0xba, 0x7e, 0x41, 0xff, 0xbb, 0x7f, 0x41, 0xff, 0xb9, 0x80, 0x41, 0xff, 0xba, 0x80, 0x41, 0xff, 0xbb, 0x80, 0x43, 0xff, 0xbb, 0x7f, 0x41, 0xff, 0xba, 0x81, 0x40, 0xff, 0xbb, 0x7f, 0x43, 0xff, 0xbb, 0x84, 0x45, 0xff, 0xbe, 0x85, 0x45, 0xff, 0xbd, 0x80, 0x43, 0xff, 0xbe, 0x85, 0x42, 0xff, 0xbf, 0x85, 0x48, 0xff, 0xbf, 0x88, 0x48, 0xff, 0xb2, 0x79, 0x42, 0xff, 0xa3, 0x68, 0x36, 0xff, 0xa5, 0x6a, 0x38, 0xff, 0xa4, 0x68, 0x34, 0xff, 0xa0, 0x62, 0x32, 0xff, 0x9f, 0x62, 0x33, 0xff, 0x9d, 0x60, 0x32, 0xff, 0x9e, 0x5e, 0x32, 0xff, 0x9d, 0x5d, 0x31, 0xff, 0x9c, 0x5f, 0x32, 0xff, 0x9c, 0x5f, 0x31, 0xff, 0x9a, 0x5d, 0x31, 0xff, 0x99, 0x5d, 0x30, 0xff, 0x99, 0x5c, 0x30, 0xff, 0x98, 0x5b, 0x2e, 0xff, 0x97, 0x5c, 0x2f, 0xff, 0x96, 0x5a, 0x2d, 0xff, 0x97, 0x58, 0x2c, 0xff, 0x95, 0x56, 0x2a, 0xff, 0x95, 0x57, 0x2a, 0xff, 0x94, 0x56, 0x2a, 0xff, 0x92, 0x56, 0x2a, 0xff, 0x92, 0x55, 0x29, 0xff, 0x92, 0x56, 0x2a, 0xff, 0x91, 0x56, 0x2a, 0xff, 0x93, 0x56, 0x29, 0xff, 0x93, 0x55, 0x27, 0xff, 0x93, 0x55, 0x25, 0xff, 0x94, 0x53, 0x22, 0xff, 0x93, 0x54, 0x23, 0xff, 0x93, 0x55, 0x22, 0xff, 0x94, 0x54, 0x20, 0xff, 0x93, 0x54, 0x20, 0xff, 0x93, 0x53, 0x21, 0xff, 0x94, 0x57, 0x23, 0xff, 0x9d, 0x5e, 0x2f, 0xff, 0xaf, 0x6f, 0x3d, 0xff, 0xb4, 0x76, 0x42, 0xff, 0xb2, 0x73, 0x41, 0xff, 0xb3, 0x75, 0x41, 0xff, 0xb5, 0x78, 0x43, 0xff, 0xb6, 0x79, 0x46, 0xff, 0xb6, 0x7b, 0x46, 0xff, 0xb8, 0x7c, 0x47, 0xff, 0xbc, 0x7f, 0x4b, 0xff, 0xc1, 0x85, 0x4e, 0xff, 0xc0, 0x88, 0x51, 0xff, 0xb2, 0x7b, 0x4b, 0xff, 0xa9, 0x6f, 0x44, 0xff, 0xab, 0x70, 0x45, 0xff, 0xab, 0x70, 0x47, 0xff, 0xa8, 0x6e, 0x46, 0xff, 0xa3, 0x6a, 0x40, 0xff, 0xa1, 0x69, 0x3d, 0xff, 0xa1, 0x67, 0x39, 0xff, 0xa2, 0x65, 0x38, 0xff, 0xa4, 0x65, 0x38, 0xff, 0xa3, 0x63, 0x36, 0xff, 0xa0, 0x60, 0x36, 0xff, 0x9e, 0x5f, 0x34, 0xff, 0x9d, 0x5e, 0x34, 0xff, 0x9d, 0x5e, 0x35, 0xff, 0x9b, 0x5c, 0x33, 0xff, 0x97, 0x5a, 0x30, 0xff, 0x95, 0x59, 0x2f, 0xff, 0x95, 0x57, 0x2e, 0xff, 0x94, 0x55, 0x2e, 0xff, 0x91, 0x55, 0x2c, 0xff, 0x91, 0x53, 0x2b, 0xff, 0x91, 0x52, 0x2c, 0xff, 0x8f, 0x50, 0x2b, 0xff, 0x8e, 0x50, 0x2b, 0xff, 0x90, 0x52, 0x2c, 0xff, 0x90, 0x50, 0x2b, 0xff, 0x8d, 0x4f, 0x2a, 0xff, 0x8d, 0x51, 0x2b, 0xff, 0x8f, 0x52, 0x2c, 0xff, 0x8e, 0x52, 0x2d, 0xff, 0x8e, 0x51, 0x2d, 0xff, 0x8e, 0x51, 0x2c, 0xff, 0x8e, 0x50, 0x2c, 0xff, 0x8e, 0x50, 0x2d, 0xff, 0x8e, 0x52, 0x2e, 0xff, 0x8e, 0x54, 0x2f, 0xff, 0x90, 0x55, 0x2f, 0xff, 0x90, 0x55, 0x2f, 0xff, 0x92, 0x56, 0x2f, 0xff, 0x8f, 0x54, 0x2b, 0xff, 0x87, 0x4e, 0x2a, 0xff, 0xaf, 0x6f, 0x44, 0xff, 0xda, 0x8e, 0x59, 0xff, 0xde, 0x90, 0x5a, 0xff, 0xd5, 0x8f, 0x58, 0xff, 0xcc, 0x8a, 0x55, 0xff, 0xc5, 0x86, 0x51, 0xff, 0xbe, 0x82, 0x4e, 0xff, 0xba, 0x7e, 0x4c, 0xff, 0xbb, 0x7f, 0x4d, 0xff, 0xbc, 0x81, 0x4f, 0xff, 0xc0, 0x83, 0x50, 0xff, 0xc9, 0x8b, 0x55, 0xff, 0xdd, 0x98, 0x62, 0xff, 0xed, 0xa7, 0x71, 0xff, 0xf1, 0xb2, 0x7c, 0xff, 0xef, 0xc3, 0x86, 0xff, 0xc4, 0x9d, 0x6a, 0xff, 0xa3, 0x70, 0x4a, 0xff, 0xa0, 0x6a, 0x46, 0xff, 0xa1, 0x6c, 0x48, 0xff, 0x9f, 0x6b, 0x47, 0xff, 0xa0, 0x6c, 0x47, 0xff, 0xa0, 0x6c, 0x47, 0xff, 0x9f, 0x69, 0x43, 0xff, 0x9e, 0x66, 0x40, 0xff, 0x9d, 0x63, 0x3d, 0xff, 0x9c, 0x5e, 0x39, 0xff, 0x99, 0x5b, 0x36, 0xff, 0x96, 0x59, 0x33, 0xff, 0x94, 0x57, 0x32, 0xff, 0x92, 0x54, 0x2f, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x8f, 0x4f, 0x2d, 0xff, 0x8e, 0x4e, 0x2c, 0xff, 0x8e, 0x4e, 0x2c, 0xff, 0x8f, 0x4f, 0x2d, 0xff, 0x91, 0x51, 0x2e, 0xff, 0x91, 0x54, 0x2e, 0xff, 0x91, 0x56, 0x30, 0xff, 0x91, 0x58, 0x32, 0xff, 0x93, 0x59, 0x33, 0xff, 0x94, 0x58, 0x33, 0xff, 0x96, 0x5a, 0x32, 0xff, 0x95, 0x59, 0x31, 0xff, 0x98, 0x57, 0x2e, 0xff, 0x96, 0x53, 0x2b, 0xff, 0x95, 0x52, 0x2b, 0xff, 0x95, 0x51, 0x2a, 0xff, 0x95, 0x51, 0x2a, 0xff, 0x96, 0x54, 0x2b, 0xff, 0x97, 0x55, 0x2c, 0xff, 0x99, 0x56, 0x2d, 0xff, 0x9a, 0x59, 0x2d, 0xff, 0x9c, 0x59, 0x2e, 0xff, 0x9e, 0x5a, 0x2f, 0xff, 0x92, 0x51, 0x2a, 0xff, 0x8f, 0x51, 0x2b, 0xff, 0xad, 0x67, 0x3b, 0xff, 0xe1, 0x99, 0x62, 0xff, 0xe5, 0x98, 0x61, 0xff, 0xd8, 0x8d, 0x56, 0xff, 0xc9, 0x84, 0x4f, 0xff, 0xc2, 0x7f, 0x4b, 0xff, 0xbc, 0x7a, 0x49, 0xff, 0xbb, 0x7b, 0x49, 0xff, 0xbb, 0x7a, 0x48, 0xff, 0xbb, 0x79, 0x49, 0xff, 0xbb, 0x7a, 0x49, 0xff, 0xbf, 0x7f, 0x4b, 0xff, 0xc2, 0x80, 0x4f, 0xff, 0xc4, 0x83, 0x50, 0xff, 0xc9, 0x88, 0x54, 0xff, 0xd0, 0x8b, 0x58, 0xff, 0xd9, 0x91, 0x5b, 0xff, 0xe5, 0x97, 0x5f, 0xff, 0xe5, 0x9a, 0x65, 0xff, 0xe0, 0x9e, 0x68, 0xff, 0xdf, 0xa2, 0x6b, 0xff, 0xda, 0xa3, 0x6c, 0xff, 0xd9, 0xa3, 0x6e, 0xff, 0xd5, 0xa2, 0x6d, 0xff, 0xd2, 0x9e, 0x6a, 0xff, 0xce, 0x99, 0x66, 0xff, 0xce, 0x95, 0x61, 0xff, 0xcb, 0x8f, 0x5d, 0xff, 0xc6, 0x87, 0x57, 0xff, 0xbe, 0x7e, 0x4f, 0xff, 0xb8, 0x7a, 0x49, 0xff, 0xbc, 0x7d, 0x49, 0xff, 0xc3, 0x80, 0x49, 0xff, 0xc0, 0x7f, 0x45, 0xff, 0xbe, 0x7d, 0x45, 0xff, 0xbb, 0x7a, 0x42, 0xff, 0xba, 0x79, 0x41, 0xff, + 0xb8, 0x77, 0x40, 0xff, 0xb8, 0x74, 0x3e, 0xff, 0xb6, 0x76, 0x40, 0xff, 0xb6, 0x75, 0x3e, 0xff, 0xb4, 0x72, 0x3e, 0xff, 0xb1, 0x70, 0x3d, 0xff, 0xb0, 0x70, 0x3d, 0xff, 0xaf, 0x6d, 0x3a, 0xff, 0xae, 0x6e, 0x3b, 0xff, 0xae, 0x6d, 0x3c, 0xff, 0xac, 0x6c, 0x3d, 0xff, 0xab, 0x6c, 0x3b, 0xff, 0xa8, 0x68, 0x3b, 0xff, 0xa1, 0x64, 0x38, 0xff, 0xa2, 0x62, 0x37, 0xff, 0xa1, 0x62, 0x35, 0xff, 0xa1, 0x60, 0x36, 0xff, 0xa1, 0x62, 0x36, 0xff, 0xa0, 0x61, 0x36, 0xff, 0xa1, 0x61, 0x35, 0xff, 0xae, 0x6f, 0x40, 0xff, 0xc2, 0x81, 0x42, 0xff, 0xc5, 0x82, 0x44, 0xff, 0xc4, 0x83, 0x42, 0xff, 0xc7, 0x84, 0x44, 0xff, 0xc3, 0x82, 0x42, 0xff, 0xc3, 0x83, 0x44, 0xff, 0xc2, 0x83, 0x43, 0xff, 0xc6, 0x85, 0x45, 0xff, 0xc5, 0x85, 0x47, 0xff, 0xc7, 0x86, 0x49, 0xff, 0xbf, 0x80, 0x43, 0xff, 0xbc, 0x81, 0x47, 0xff, 0xb9, 0x7c, 0x44, 0xff, 0xbb, 0x80, 0x3f, 0xff, 0xbe, 0x83, 0x42, 0xff, 0xbb, 0x80, 0x3d, 0xff, 0xbd, 0x83, 0x42, 0xff, 0xbd, 0x81, 0x43, 0xff, 0xbb, 0x80, 0x40, 0xff, 0xbd, 0x84, 0x45, 0xff, 0xbd, 0x82, 0x42, 0xff, 0xbd, 0x84, 0x45, 0xff, 0xbc, 0x83, 0x42, 0xff, 0xbf, 0x87, 0x46, 0xff, 0xc0, 0x86, 0x45, 0xff, 0xbf, 0x84, 0x46, 0xff, 0xc1, 0x8b, 0x48, 0xff, 0xc2, 0x8a, 0x4c, 0xff, 0xc0, 0x86, 0x47, 0xff, 0xbe, 0x82, 0x47, 0xff, 0xb4, 0x79, 0x42, 0xff, 0xa6, 0x69, 0x38, 0xff, 0xa8, 0x6d, 0x3c, 0xff, 0xa8, 0x6c, 0x38, 0xff, 0xa2, 0x64, 0x35, 0xff, 0xa2, 0x64, 0x34, 0xff, 0xa1, 0x64, 0x35, 0xff, 0xa0, 0x63, 0x34, 0xff, 0x9e, 0x62, 0x33, 0xff, 0x9e, 0x62, 0x34, 0xff, 0x9d, 0x61, 0x33, 0xff, 0x9d, 0x61, 0x32, 0xff, 0x9d, 0x61, 0x32, 0xff, 0x9d, 0x60, 0x33, 0xff, 0x9c, 0x5f, 0x32, 0xff, 0x9b, 0x5f, 0x31, 0xff, 0x9a, 0x5d, 0x30, 0xff, 0x99, 0x5a, 0x2e, 0xff, 0x99, 0x59, 0x2e, 0xff, 0x97, 0x5a, 0x2d, 0xff, 0x96, 0x58, 0x2b, 0xff, 0x95, 0x57, 0x29, 0xff, 0x94, 0x56, 0x2a, 0xff, 0x95, 0x57, 0x2a, 0xff, 0x95, 0x57, 0x2a, 0xff, 0x95, 0x57, 0x2a, 0xff, 0x95, 0x57, 0x29, 0xff, 0x96, 0x56, 0x28, 0xff, 0x95, 0x55, 0x26, 0xff, 0x94, 0x56, 0x25, 0xff, 0x95, 0x55, 0x23, 0xff, 0x96, 0x56, 0x21, 0xff, 0x97, 0x55, 0x21, 0xff, 0x96, 0x56, 0x22, 0xff, 0x95, 0x56, 0x25, 0xff, 0x94, 0x56, 0x26, 0xff, 0x9f, 0x5e, 0x2e, 0xff, 0xb1, 0x72, 0x3d, 0xff, 0xb5, 0x78, 0x43, 0xff, 0xb4, 0x77, 0x43, 0xff, 0xb6, 0x78, 0x44, 0xff, 0xb8, 0x78, 0x44, 0xff, 0xb8, 0x7a, 0x46, 0xff, 0xb8, 0x7b, 0x47, 0xff, 0xba, 0x7d, 0x48, 0xff, 0xbd, 0x82, 0x4b, 0xff, 0xbb, 0x7e, 0x4a, 0xff, 0xaf, 0x73, 0x45, 0xff, 0xac, 0x70, 0x44, 0xff, 0xac, 0x70, 0x45, 0xff, 0xa9, 0x6e, 0x43, 0xff, 0xa4, 0x69, 0x3f, 0xff, 0xa4, 0x69, 0x3e, 0xff, 0xa4, 0x69, 0x3d, 0xff, 0xa4, 0x68, 0x3b, 0xff, 0xa4, 0x66, 0x38, 0xff, 0xa4, 0x64, 0x37, 0xff, 0xa4, 0x64, 0x37, 0xff, 0xa2, 0x63, 0x37, 0xff, 0xa1, 0x60, 0x36, 0xff, 0x9f, 0x5f, 0x36, 0xff, 0x9d, 0x5f, 0x35, 0xff, 0x9b, 0x5e, 0x33, 0xff, 0x98, 0x5b, 0x31, 0xff, 0x97, 0x5a, 0x31, 0xff, 0x97, 0x5a, 0x31, 0xff, 0x95, 0x59, 0x2f, 0xff, 0x95, 0x57, 0x2e, 0xff, 0x94, 0x55, 0x2e, 0xff, 0x92, 0x54, 0x2e, 0xff, 0x90, 0x54, 0x2c, 0xff, 0x8f, 0x52, 0x2c, 0xff, 0x90, 0x53, 0x2d, 0xff, 0x90, 0x52, 0x2c, 0xff, 0x8f, 0x52, 0x2c, 0xff, 0x90, 0x53, 0x2e, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x90, 0x53, 0x2e, 0xff, 0x8f, 0x52, 0x2c, 0xff, 0x8e, 0x51, 0x2c, 0xff, 0x8e, 0x52, 0x2d, 0xff, 0x8e, 0x52, 0x2d, 0xff, 0x8f, 0x54, 0x2e, 0xff, 0x90, 0x54, 0x2f, 0xff, 0x90, 0x54, 0x2e, 0xff, 0x91, 0x56, 0x2e, 0xff, 0x8e, 0x52, 0x2e, 0xff, 0x89, 0x4b, 0x2b, 0xff, 0x87, 0x4c, 0x2c, 0xff, 0xb5, 0x79, 0x4d, 0xff, 0xd7, 0x90, 0x5b, 0xff, 0xd4, 0x8d, 0x58, 0xff, 0xd4, 0x8c, 0x57, 0xff, 0xca, 0x86, 0x51, 0xff, 0xc0, 0x82, 0x4d, 0xff, 0xbd, 0x81, 0x4c, 0xff, 0xbd, 0x80, 0x4d, 0xff, 0xbc, 0x80, 0x4e, 0xff, 0xbd, 0x82, 0x4f, 0xff, 0xc2, 0x86, 0x52, 0xff, 0xd2, 0x90, 0x5a, 0xff, 0xe8, 0x9c, 0x67, 0xff, 0xf1, 0xaa, 0x73, 0xff, 0xea, 0xb5, 0x7d, 0xff, 0xb2, 0x7e, 0x54, 0xff, 0x9e, 0x68, 0x43, 0xff, 0xa1, 0x6d, 0x47, 0xff, 0xa2, 0x6f, 0x49, 0xff, 0xa1, 0x6e, 0x49, 0xff, 0xa1, 0x6c, 0x48, 0xff, 0xa3, 0x6e, 0x49, 0xff, 0xa2, 0x6e, 0x47, 0xff, 0xa0, 0x6a, 0x45, 0xff, 0x9e, 0x67, 0x42, 0xff, 0x9d, 0x64, 0x3e, 0xff, 0x9c, 0x5f, 0x3a, 0xff, 0x9a, 0x5c, 0x36, 0xff, 0x97, 0x5a, 0x33, 0xff, 0x95, 0x56, 0x31, 0xff, 0x92, 0x54, 0x2f, 0xff, 0x91, 0x51, 0x2e, 0xff, 0x8f, 0x4e, 0x2d, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x90, 0x4f, 0x2d, 0xff, 0x91, 0x51, 0x2e, 0xff, 0x91, 0x54, 0x2f, 0xff, 0x91, 0x57, 0x32, 0xff, 0x92, 0x57, 0x34, 0xff, 0x91, 0x58, 0x33, 0xff, 0x93, 0x59, 0x32, 0xff, 0x94, 0x59, 0x32, 0xff, 0x96, 0x59, 0x32, 0xff, 0x96, 0x58, 0x2f, 0xff, 0x98, 0x57, 0x2d, 0xff, 0x97, 0x53, 0x2b, 0xff, 0x94, 0x51, 0x2b, 0xff, 0x97, 0x53, 0x2c, 0xff, 0x97, 0x55, 0x2c, 0xff, 0x96, 0x52, 0x2b, 0xff, 0x97, 0x55, 0x2c, 0xff, 0x99, 0x56, 0x2d, 0xff, 0x99, 0x59, 0x2d, 0xff, 0x9c, 0x58, 0x2e, 0xff, 0x98, 0x58, 0x2d, 0xff, 0x90, 0x50, 0x2a, 0xff, 0x8b, 0x4d, 0x25, 0xff, 0x9b, 0x5c, 0x33, 0xff, 0xcf, 0x8b, 0x5a, 0xff, 0xeb, 0x9d, 0x68, 0xff, 0xdf, 0x94, 0x5e, 0xff, 0xcf, 0x88, 0x53, 0xff, 0xc4, 0x81, 0x4d, 0xff, 0xbf, 0x7e, 0x4b, 0xff, 0xbd, 0x7c, 0x49, 0xff, 0xbb, 0x79, 0x49, 0xff, 0xbb, 0x79, 0x49, 0xff, 0xbd, 0x7c, 0x4c, 0xff, 0xc0, 0x80, 0x4e, 0xff, 0xc2, 0x81, 0x4f, 0xff, 0xc3, 0x83, 0x50, 0xff, 0xc8, 0x87, 0x54, 0xff, 0xce, 0x8c, 0x58, 0xff, 0xd8, 0x91, 0x5c, 0xff, 0xe1, 0x95, 0x5f, 0xff, 0xe3, 0x98, 0x62, 0xff, 0xdf, 0x9a, 0x66, 0xff, 0xdd, 0x9e, 0x68, 0xff, 0xd9, 0x9e, 0x68, 0xff, 0xd4, 0x9a, 0x68, 0xff, 0xd2, 0x99, 0x67, 0xff, 0xd0, 0x96, 0x64, 0xff, 0xce, 0x93, 0x62, 0xff, 0xcb, 0x8d, 0x5c, 0xff, 0xc7, 0x86, 0x56, 0xff, 0xbf, 0x81, 0x50, 0xff, 0xbd, 0x7d, 0x4b, 0xff, 0xc5, 0x85, 0x4c, 0xff, 0xc3, 0x82, 0x48, 0xff, 0xc0, 0x7d, 0x45, 0xff, 0xbb, 0x7c, 0x43, 0xff, 0xba, 0x79, 0x42, 0xff, 0xb8, 0x77, 0x3f, 0xff, + 0xb7, 0x76, 0x3f, 0xff, 0xb5, 0x76, 0x40, 0xff, 0xb4, 0x73, 0x3e, 0xff, 0xb4, 0x72, 0x3e, 0xff, 0xb2, 0x70, 0x3d, 0xff, 0xb1, 0x71, 0x3f, 0xff, 0xaf, 0x70, 0x3b, 0xff, 0xb0, 0x6f, 0x3d, 0xff, 0xae, 0x6e, 0x3c, 0xff, 0xae, 0x6e, 0x3d, 0xff, 0xac, 0x6c, 0x3b, 0xff, 0xad, 0x6c, 0x3d, 0xff, 0xac, 0x6c, 0x3e, 0xff, 0xa7, 0x67, 0x3b, 0xff, 0xa4, 0x65, 0x39, 0xff, 0xa2, 0x64, 0x39, 0xff, 0xa2, 0x64, 0x39, 0xff, 0xa2, 0x64, 0x37, 0xff, 0xa5, 0x65, 0x39, 0xff, 0xb7, 0x78, 0x43, 0xff, 0xc9, 0x86, 0x46, 0xff, 0xc8, 0x84, 0x47, 0xff, 0xcb, 0x86, 0x48, 0xff, 0xc4, 0x83, 0x44, 0xff, 0xc3, 0x81, 0x41, 0xff, 0xc4, 0x85, 0x43, 0xff, 0xc3, 0x80, 0x43, 0xff, 0xc3, 0x80, 0x43, 0xff, 0xc1, 0x80, 0x45, 0xff, 0xc4, 0x84, 0x46, 0xff, 0xbf, 0x7e, 0x44, 0xff, 0xbf, 0x7f, 0x45, 0xff, 0xbc, 0x7d, 0x44, 0xff, 0xb9, 0x7f, 0x49, 0xff, 0xbc, 0x7f, 0x42, 0xff, 0xbf, 0x83, 0x43, 0xff, 0xc0, 0x87, 0x45, 0xff, 0xbe, 0x83, 0x43, 0xff, 0xbd, 0x86, 0x45, 0xff, 0xbf, 0x88, 0x47, 0xff, 0xbe, 0x80, 0x45, 0xff, 0xbf, 0x86, 0x47, 0xff, 0xbe, 0x82, 0x45, 0xff, 0xbf, 0x81, 0x46, 0xff, 0xc3, 0x8b, 0x4a, 0xff, 0xc4, 0x8b, 0x4c, 0xff, 0xc5, 0x8e, 0x4c, 0xff, 0xc4, 0x88, 0x48, 0xff, 0xc3, 0x88, 0x47, 0xff, 0xc4, 0x89, 0x4c, 0xff, 0xc3, 0x88, 0x4b, 0xff, 0xb5, 0x7a, 0x42, 0xff, 0xac, 0x6c, 0x3c, 0xff, 0xae, 0x70, 0x3d, 0xff, 0xac, 0x6f, 0x3c, 0xff, 0xa6, 0x6b, 0x37, 0xff, 0xa5, 0x67, 0x37, 0xff, 0xa2, 0x66, 0x35, 0xff, 0xa1, 0x65, 0x36, 0xff, 0xa2, 0x65, 0x36, 0xff, 0xa1, 0x64, 0x35, 0xff, 0xa1, 0x64, 0x35, 0xff, 0xa0, 0x64, 0x35, 0xff, 0xa0, 0x64, 0x35, 0xff, 0x9f, 0x63, 0x35, 0xff, 0x9e, 0x61, 0x35, 0xff, 0x9e, 0x62, 0x34, 0xff, 0x9d, 0x60, 0x32, 0xff, 0x9b, 0x61, 0x33, 0xff, 0x9a, 0x5f, 0x31, 0xff, 0x9a, 0x5d, 0x2f, 0xff, 0x99, 0x5c, 0x2e, 0xff, 0x98, 0x5a, 0x2d, 0xff, 0x97, 0x58, 0x2b, 0xff, 0x95, 0x58, 0x2a, 0xff, 0x97, 0x5a, 0x2a, 0xff, 0x97, 0x58, 0x2a, 0xff, 0x97, 0x59, 0x2b, 0xff, 0x98, 0x59, 0x2a, 0xff, 0x97, 0x59, 0x2a, 0xff, 0x96, 0x57, 0x29, 0xff, 0x97, 0x59, 0x27, 0xff, 0x97, 0x58, 0x25, 0xff, 0x98, 0x56, 0x23, 0xff, 0x97, 0x57, 0x24, 0xff, 0x98, 0x59, 0x24, 0xff, 0x98, 0x5b, 0x26, 0xff, 0x96, 0x59, 0x26, 0xff, 0x9c, 0x5e, 0x2e, 0xff, 0xb2, 0x73, 0x40, 0xff, 0xb8, 0x7a, 0x45, 0xff, 0xb7, 0x79, 0x44, 0xff, 0xb8, 0x7a, 0x45, 0xff, 0xb9, 0x7b, 0x47, 0xff, 0xb9, 0x7c, 0x49, 0xff, 0xba, 0x7e, 0x49, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xb7, 0x7a, 0x49, 0xff, 0xad, 0x6e, 0x43, 0xff, 0xad, 0x6f, 0x42, 0xff, 0xa9, 0x6c, 0x3f, 0xff, 0xa6, 0x69, 0x3d, 0xff, 0xa6, 0x6a, 0x3e, 0xff, 0xa4, 0x68, 0x3d, 0xff, 0xa4, 0x66, 0x3b, 0xff, 0xa5, 0x66, 0x38, 0xff, 0xa2, 0x63, 0x37, 0xff, 0xa3, 0x64, 0x37, 0xff, 0xa5, 0x65, 0x38, 0xff, 0xa3, 0x64, 0x36, 0xff, 0xa1, 0x62, 0x36, 0xff, 0xa1, 0x61, 0x36, 0xff, 0x9e, 0x5f, 0x34, 0xff, 0x9c, 0x5d, 0x31, 0xff, 0x9b, 0x5d, 0x32, 0xff, 0x9a, 0x5b, 0x31, 0xff, 0x98, 0x5b, 0x32, 0xff, 0x98, 0x5a, 0x31, 0xff, 0x97, 0x58, 0x2f, 0xff, 0x96, 0x58, 0x2e, 0xff, 0x95, 0x57, 0x2d, 0xff, 0x92, 0x54, 0x2d, 0xff, 0x91, 0x54, 0x2d, 0xff, 0x92, 0x54, 0x2d, 0xff, 0x92, 0x55, 0x2d, 0xff, 0x91, 0x55, 0x2d, 0xff, 0x90, 0x54, 0x2d, 0xff, 0x90, 0x54, 0x2e, 0xff, 0x90, 0x53, 0x2e, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x8e, 0x50, 0x2c, 0xff, 0x8e, 0x51, 0x2d, 0xff, 0x8d, 0x50, 0x2d, 0xff, 0x8d, 0x52, 0x2e, 0xff, 0x8f, 0x54, 0x2e, 0xff, 0x90, 0x55, 0x2e, 0xff, 0x8f, 0x54, 0x2d, 0xff, 0x90, 0x54, 0x2d, 0xff, 0x8e, 0x50, 0x2d, 0xff, 0x8b, 0x4d, 0x2c, 0xff, 0x89, 0x4c, 0x2a, 0xff, 0x8f, 0x54, 0x31, 0xff, 0xbf, 0x7d, 0x4f, 0xff, 0xd4, 0x8e, 0x58, 0xff, 0xc7, 0x85, 0x51, 0xff, 0xc2, 0x83, 0x4e, 0xff, 0xc3, 0x81, 0x4b, 0xff, 0xc1, 0x80, 0x4c, 0xff, 0xbf, 0x80, 0x4c, 0xff, 0xbf, 0x80, 0x4c, 0xff, 0xbf, 0x81, 0x4e, 0xff, 0xc0, 0x83, 0x50, 0xff, 0xc5, 0x87, 0x52, 0xff, 0xdd, 0x96, 0x60, 0xff, 0xf2, 0xaa, 0x70, 0xff, 0xc1, 0x89, 0x5a, 0xff, 0xa3, 0x6b, 0x44, 0xff, 0xa2, 0x6a, 0x43, 0xff, 0xa1, 0x6c, 0x47, 0xff, 0xa3, 0x6f, 0x49, 0xff, 0xa3, 0x70, 0x48, 0xff, 0xa3, 0x6f, 0x49, 0xff, 0xa4, 0x70, 0x49, 0xff, 0xa4, 0x70, 0x48, 0xff, 0xa2, 0x6d, 0x46, 0xff, 0x9f, 0x69, 0x44, 0xff, 0xa0, 0x67, 0x42, 0xff, 0x9f, 0x64, 0x3e, 0xff, 0x9d, 0x60, 0x3a, 0xff, 0x9a, 0x5d, 0x37, 0xff, 0x97, 0x58, 0x34, 0xff, 0x95, 0x56, 0x32, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x90, 0x4f, 0x2d, 0xff, 0x91, 0x50, 0x2d, 0xff, 0x91, 0x53, 0x2e, 0xff, 0x90, 0x54, 0x2f, 0xff, 0x91, 0x56, 0x32, 0xff, 0x91, 0x57, 0x31, 0xff, 0x92, 0x59, 0x32, 0xff, 0x93, 0x58, 0x34, 0xff, 0x94, 0x5a, 0x33, 0xff, 0x96, 0x5b, 0x33, 0xff, 0x97, 0x5a, 0x31, 0xff, 0x97, 0x56, 0x2e, 0xff, 0x98, 0x56, 0x2d, 0xff, 0x95, 0x52, 0x2c, 0xff, 0x97, 0x54, 0x2c, 0xff, 0x98, 0x55, 0x2c, 0xff, 0x99, 0x56, 0x2d, 0xff, 0x98, 0x55, 0x2b, 0xff, 0x98, 0x56, 0x2c, 0xff, 0x99, 0x56, 0x2d, 0xff, 0x99, 0x58, 0x2d, 0xff, 0x9a, 0x58, 0x2e, 0xff, 0x93, 0x53, 0x2b, 0xff, 0x8e, 0x4e, 0x29, 0xff, 0x92, 0x54, 0x2a, 0xff, 0x8d, 0x4d, 0x25, 0xff, 0xb1, 0x78, 0x49, 0xff, 0xe9, 0x9d, 0x69, 0xff, 0xe7, 0x99, 0x62, 0xff, 0xd6, 0x8c, 0x57, 0xff, 0xc7, 0x84, 0x50, 0xff, 0xc0, 0x7f, 0x4c, 0xff, 0xbe, 0x7c, 0x4b, 0xff, 0xbe, 0x7c, 0x4b, 0xff, 0xbf, 0x7f, 0x4d, 0xff, 0xbf, 0x7c, 0x4c, 0xff, 0xc0, 0x80, 0x4e, 0xff, 0xc1, 0x80, 0x50, 0xff, 0xc4, 0x83, 0x51, 0xff, 0xc7, 0x86, 0x53, 0xff, 0xca, 0x88, 0x56, 0xff, 0xd4, 0x8d, 0x59, 0xff, 0xdc, 0x92, 0x5c, 0xff, 0xe1, 0x96, 0x61, 0xff, 0xdf, 0x96, 0x63, 0xff, 0xdc, 0x98, 0x64, 0xff, 0xd7, 0x99, 0x63, 0xff, 0xd4, 0x95, 0x63, 0xff, 0xd2, 0x93, 0x61, 0xff, 0xd1, 0x8d, 0x5e, 0xff, 0xcb, 0x8a, 0x5b, 0xff, 0xc4, 0x85, 0x57, 0xff, 0xbf, 0x81, 0x50, 0xff, 0xca, 0x8a, 0x52, 0xff, 0xc6, 0x83, 0x4b, 0xff, 0xc1, 0x80, 0x48, 0xff, 0xbd, 0x7d, 0x44, 0xff, 0xbb, 0x79, 0x42, 0xff, 0xb9, 0x79, 0x41, 0xff, 0xb8, 0x78, 0x41, 0xff, + 0xb5, 0x75, 0x3f, 0xff, 0xb4, 0x74, 0x3e, 0xff, 0xb4, 0x72, 0x40, 0xff, 0xb4, 0x72, 0x3e, 0xff, 0xb3, 0x71, 0x3e, 0xff, 0xb0, 0x72, 0x3c, 0xff, 0xb0, 0x70, 0x3e, 0xff, 0xb0, 0x6e, 0x3b, 0xff, 0xb0, 0x70, 0x3e, 0xff, 0xaf, 0x6f, 0x3d, 0xff, 0xad, 0x6f, 0x3e, 0xff, 0xae, 0x70, 0x3f, 0xff, 0xac, 0x6d, 0x3f, 0xff, 0xab, 0x6b, 0x3f, 0xff, 0xa6, 0x68, 0x3b, 0xff, 0xa4, 0x67, 0x3b, 0xff, 0xa8, 0x6a, 0x3d, 0xff, 0xae, 0x70, 0x40, 0xff, 0xc2, 0x84, 0x49, 0xff, 0xc4, 0x84, 0x4b, 0xff, 0xc5, 0x83, 0x48, 0xff, 0xc8, 0x88, 0x49, 0xff, 0xc8, 0x83, 0x46, 0xff, 0xc7, 0x86, 0x48, 0xff, 0xc4, 0x84, 0x46, 0xff, 0xc2, 0x81, 0x44, 0xff, 0xc6, 0x83, 0x45, 0xff, 0xc3, 0x81, 0x44, 0xff, 0xbe, 0x7e, 0x42, 0xff, 0xbb, 0x7a, 0x41, 0xff, 0xbe, 0x80, 0x44, 0xff, 0xbf, 0x7f, 0x43, 0xff, 0xbe, 0x7f, 0x44, 0xff, 0xba, 0x7e, 0x49, 0xff, 0xbc, 0x81, 0x46, 0xff, 0xbf, 0x83, 0x45, 0xff, 0xbf, 0x83, 0x42, 0xff, 0xc1, 0x87, 0x46, 0xff, 0xc1, 0x86, 0x43, 0xff, 0xc0, 0x86, 0x48, 0xff, 0xc0, 0x83, 0x45, 0xff, 0xc0, 0x84, 0x47, 0xff, 0xc1, 0x88, 0x49, 0xff, 0xc3, 0x8e, 0x4b, 0xff, 0xc7, 0x8b, 0x4c, 0xff, 0xcb, 0x91, 0x4f, 0xff, 0xca, 0x8f, 0x50, 0xff, 0xc9, 0x8e, 0x4e, 0xff, 0xca, 0x8e, 0x4d, 0xff, 0xc9, 0x8c, 0x4d, 0xff, 0xc9, 0x91, 0x4f, 0xff, 0xb9, 0x7e, 0x45, 0xff, 0xaf, 0x73, 0x3f, 0xff, 0xb0, 0x74, 0x41, 0xff, 0xb0, 0x75, 0x3f, 0xff, 0xab, 0x6f, 0x3c, 0xff, 0xa8, 0x6c, 0x39, 0xff, 0xa8, 0x6b, 0x3a, 0xff, 0xa6, 0x69, 0x38, 0xff, 0xa5, 0x68, 0x39, 0xff, 0xa4, 0x69, 0x37, 0xff, 0xa4, 0x68, 0x38, 0xff, 0xa4, 0x68, 0x38, 0xff, 0xa2, 0x68, 0x37, 0xff, 0xa1, 0x66, 0x37, 0xff, 0xa2, 0x66, 0x37, 0xff, 0xa1, 0x66, 0x36, 0xff, 0x9f, 0x63, 0x36, 0xff, 0x9e, 0x62, 0x35, 0xff, 0x9e, 0x63, 0x36, 0xff, 0x9e, 0x61, 0x34, 0xff, 0x9b, 0x60, 0x32, 0xff, 0x9a, 0x5e, 0x30, 0xff, 0x9a, 0x5c, 0x2e, 0xff, 0x99, 0x5b, 0x2d, 0xff, 0x99, 0x5a, 0x2c, 0xff, 0x99, 0x5c, 0x2b, 0xff, 0x98, 0x5c, 0x2c, 0xff, 0x99, 0x5b, 0x2d, 0xff, 0x99, 0x5c, 0x2b, 0xff, 0x99, 0x5c, 0x2b, 0xff, 0x99, 0x5a, 0x2a, 0xff, 0x9a, 0x59, 0x29, 0xff, 0x9a, 0x59, 0x27, 0xff, 0x98, 0x58, 0x26, 0xff, 0x9a, 0x5a, 0x27, 0xff, 0x99, 0x5a, 0x28, 0xff, 0x9a, 0x5a, 0x29, 0xff, 0x9a, 0x5b, 0x29, 0xff, 0x9b, 0x5d, 0x2b, 0xff, 0xac, 0x6d, 0x39, 0xff, 0xba, 0x7b, 0x45, 0xff, 0xbc, 0x7d, 0x46, 0xff, 0xbc, 0x7d, 0x46, 0xff, 0xbc, 0x7e, 0x47, 0xff, 0xbe, 0x7f, 0x48, 0xff, 0xbf, 0x81, 0x4a, 0xff, 0xb9, 0x7b, 0x49, 0xff, 0xac, 0x6e, 0x41, 0xff, 0xa7, 0x6a, 0x3c, 0xff, 0xa6, 0x68, 0x3b, 0xff, 0xa7, 0x68, 0x3b, 0xff, 0xa6, 0x68, 0x3a, 0xff, 0xa4, 0x67, 0x39, 0xff, 0xa5, 0x66, 0x38, 0xff, 0xa4, 0x65, 0x37, 0xff, 0xa4, 0x63, 0x37, 0xff, 0xa2, 0x63, 0x35, 0xff, 0xa3, 0x63, 0x36, 0xff, 0xa3, 0x63, 0x37, 0xff, 0xa1, 0x61, 0x36, 0xff, 0xa0, 0x5f, 0x34, 0xff, 0x9e, 0x5f, 0x32, 0xff, 0x9c, 0x5e, 0x31, 0xff, 0x9c, 0x5f, 0x31, 0xff, 0x9b, 0x5f, 0x32, 0xff, 0x9b, 0x5e, 0x32, 0xff, 0x99, 0x5d, 0x31, 0xff, 0x99, 0x5d, 0x31, 0xff, 0x98, 0x5b, 0x2f, 0xff, 0x98, 0x58, 0x2f, 0xff, 0x96, 0x58, 0x2e, 0xff, 0x94, 0x58, 0x2f, 0xff, 0x94, 0x56, 0x2e, 0xff, 0x92, 0x56, 0x2d, 0xff, 0x91, 0x55, 0x2d, 0xff, 0x92, 0x56, 0x2d, 0xff, 0x92, 0x56, 0x2d, 0xff, 0x91, 0x53, 0x2d, 0xff, 0x8e, 0x51, 0x2c, 0xff, 0x8d, 0x50, 0x2d, 0xff, 0x8d, 0x52, 0x2c, 0xff, 0x8e, 0x52, 0x2c, 0xff, 0x8d, 0x53, 0x2e, 0xff, 0x8d, 0x53, 0x2f, 0xff, 0x8f, 0x54, 0x2d, 0xff, 0x8f, 0x54, 0x2c, 0xff, 0x8e, 0x52, 0x2d, 0xff, 0x8d, 0x50, 0x2d, 0xff, 0x8d, 0x4e, 0x2c, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x82, 0x44, 0x23, 0xff, 0x93, 0x5b, 0x35, 0xff, 0xca, 0x89, 0x56, 0xff, 0xd2, 0x8c, 0x57, 0xff, 0xc3, 0x81, 0x4e, 0xff, 0xbd, 0x7d, 0x49, 0xff, 0xbb, 0x7c, 0x47, 0xff, 0xbc, 0x7d, 0x48, 0xff, 0xbe, 0x7f, 0x49, 0xff, 0xbd, 0x80, 0x4a, 0xff, 0xbf, 0x80, 0x4b, 0xff, 0xc2, 0x84, 0x51, 0xff, 0xd4, 0x8e, 0x59, 0xff, 0xdc, 0x97, 0x62, 0xff, 0xb1, 0x75, 0x49, 0xff, 0xa2, 0x68, 0x41, 0xff, 0xa4, 0x6c, 0x44, 0xff, 0xa1, 0x6b, 0x42, 0xff, 0xa5, 0x71, 0x47, 0xff, 0xa5, 0x70, 0x48, 0xff, 0xa3, 0x6e, 0x47, 0xff, 0xa5, 0x6f, 0x49, 0xff, 0xa5, 0x70, 0x48, 0xff, 0xa4, 0x6f, 0x47, 0xff, 0xa3, 0x6d, 0x45, 0xff, 0xa0, 0x69, 0x43, 0xff, 0xa1, 0x66, 0x41, 0xff, 0xa0, 0x61, 0x3e, 0xff, 0x9b, 0x5e, 0x39, 0xff, 0x99, 0x5a, 0x35, 0xff, 0x94, 0x56, 0x31, 0xff, 0x92, 0x54, 0x2f, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x90, 0x4f, 0x2d, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x90, 0x53, 0x2e, 0xff, 0x90, 0x57, 0x31, 0xff, 0x92, 0x58, 0x32, 0xff, 0x93, 0x58, 0x34, 0xff, 0x94, 0x59, 0x35, 0xff, 0x94, 0x5c, 0x35, 0xff, 0x96, 0x5c, 0x33, 0xff, 0x96, 0x59, 0x2f, 0xff, 0x98, 0x55, 0x2d, 0xff, 0x98, 0x55, 0x2d, 0xff, 0x95, 0x55, 0x2c, 0xff, 0x96, 0x55, 0x2c, 0xff, 0x96, 0x55, 0x2c, 0xff, 0x99, 0x56, 0x2c, 0xff, 0x98, 0x56, 0x2c, 0xff, 0x97, 0x56, 0x2c, 0xff, 0x99, 0x56, 0x2d, 0xff, 0x99, 0x58, 0x2d, 0xff, 0x99, 0x58, 0x2f, 0xff, 0x92, 0x53, 0x2c, 0xff, 0x90, 0x51, 0x2a, 0xff, 0x91, 0x52, 0x2a, 0xff, 0x8d, 0x4d, 0x25, 0xff, 0x91, 0x55, 0x2a, 0xff, 0xcf, 0x88, 0x57, 0xff, 0xe1, 0x98, 0x64, 0xff, 0xe2, 0x94, 0x5d, 0xff, 0xd1, 0x88, 0x54, 0xff, 0xc5, 0x82, 0x4e, 0xff, 0xc0, 0x80, 0x4c, 0xff, 0xbf, 0x7c, 0x4c, 0xff, 0xbf, 0x7c, 0x4c, 0xff, 0xbf, 0x7c, 0x4d, 0xff, 0xbf, 0x80, 0x4d, 0xff, 0xc1, 0x80, 0x50, 0xff, 0xc3, 0x83, 0x52, 0xff, 0xc6, 0x85, 0x54, 0xff, 0xca, 0x88, 0x55, 0xff, 0xcf, 0x8a, 0x58, 0xff, 0xd4, 0x8f, 0x5c, 0xff, 0xd3, 0x8f, 0x5d, 0xff, 0xd5, 0x8f, 0x5d, 0xff, 0xd6, 0x93, 0x5f, 0xff, 0xd4, 0x91, 0x5e, 0xff, 0xcf, 0x8d, 0x5c, 0xff, 0xcc, 0x8a, 0x5a, 0xff, 0xc5, 0x87, 0x57, 0xff, 0xc3, 0x85, 0x54, 0xff, 0xcc, 0x8c, 0x54, 0xff, 0xc8, 0x88, 0x4f, 0xff, 0xc5, 0x83, 0x4c, 0xff, 0xbf, 0x7f, 0x47, 0xff, 0xbd, 0x7d, 0x45, 0xff, 0xba, 0x78, 0x41, 0xff, 0xb8, 0x75, 0x3f, 0xff, 0xb7, 0x77, 0x41, 0xff, + 0xb4, 0x74, 0x3e, 0xff, 0xb4, 0x74, 0x3d, 0xff, 0xb3, 0x71, 0x3e, 0xff, 0xb4, 0x72, 0x3e, 0xff, 0xb2, 0x70, 0x3d, 0xff, 0xb2, 0x71, 0x3d, 0xff, 0xb0, 0x70, 0x3d, 0xff, 0xb0, 0x70, 0x3d, 0xff, 0xb0, 0x70, 0x3f, 0xff, 0xb0, 0x71, 0x40, 0xff, 0xb0, 0x71, 0x40, 0xff, 0xb0, 0x70, 0x41, 0xff, 0xad, 0x6f, 0x41, 0xff, 0xac, 0x6c, 0x41, 0xff, 0xa8, 0x6a, 0x3f, 0xff, 0xb4, 0x76, 0x44, 0xff, 0xbf, 0x81, 0x4a, 0xff, 0xc4, 0x86, 0x4e, 0xff, 0xc4, 0x84, 0x4b, 0xff, 0xc4, 0x84, 0x4a, 0xff, 0xc4, 0x84, 0x49, 0xff, 0xc7, 0x87, 0x4a, 0xff, 0xc9, 0x87, 0x4c, 0xff, 0xc5, 0x85, 0x49, 0xff, 0xc5, 0x83, 0x47, 0xff, 0xc5, 0x84, 0x47, 0xff, 0xc4, 0x83, 0x46, 0xff, 0xbe, 0x7e, 0x42, 0xff, 0xbc, 0x7b, 0x40, 0xff, 0xbc, 0x7c, 0x41, 0xff, 0xbb, 0x7c, 0x42, 0xff, 0xbf, 0x7f, 0x45, 0xff, 0xbe, 0x7f, 0x43, 0xff, 0xbb, 0x7e, 0x47, 0xff, 0xbd, 0x80, 0x47, 0xff, 0xc1, 0x88, 0x46, 0xff, 0xc1, 0x84, 0x47, 0xff, 0xc2, 0x88, 0x46, 0xff, 0xc3, 0x8a, 0x49, 0xff, 0xc4, 0x87, 0x49, 0xff, 0xc4, 0x8c, 0x4a, 0xff, 0xc5, 0x8b, 0x4a, 0xff, 0xc5, 0x8c, 0x4b, 0xff, 0xc4, 0x8b, 0x4d, 0xff, 0xd0, 0x91, 0x51, 0xff, 0xd0, 0x94, 0x52, 0xff, 0xd3, 0x95, 0x53, 0xff, 0xd1, 0x94, 0x53, 0xff, 0xd3, 0x94, 0x54, 0xff, 0xd3, 0x95, 0x54, 0xff, 0xd6, 0x97, 0x55, 0xff, 0xbd, 0x84, 0x4a, 0xff, 0xb5, 0x78, 0x43, 0xff, 0xb7, 0x7b, 0x44, 0xff, 0xb5, 0x78, 0x44, 0xff, 0xb2, 0x76, 0x43, 0xff, 0xac, 0x70, 0x3d, 0xff, 0xac, 0x70, 0x3d, 0xff, 0xab, 0x6e, 0x3d, 0xff, 0xaa, 0x6e, 0x3c, 0xff, 0xa8, 0x6c, 0x3b, 0xff, 0xa8, 0x6c, 0x3a, 0xff, 0xa8, 0x6c, 0x3b, 0xff, 0xa6, 0x6a, 0x39, 0xff, 0xa5, 0x69, 0x3a, 0xff, 0xa4, 0x69, 0x39, 0xff, 0xa4, 0x69, 0x39, 0xff, 0xa3, 0x68, 0x39, 0xff, 0xa2, 0x67, 0x39, 0xff, 0xa0, 0x66, 0x38, 0xff, 0xa0, 0x65, 0x37, 0xff, 0x9f, 0x63, 0x37, 0xff, 0x9e, 0x62, 0x35, 0xff, 0x9c, 0x60, 0x33, 0xff, 0x9c, 0x5e, 0x31, 0xff, 0x9b, 0x5f, 0x2f, 0xff, 0x9c, 0x5e, 0x2e, 0xff, 0x9c, 0x5c, 0x2d, 0xff, 0x9c, 0x5d, 0x2c, 0xff, 0x9b, 0x5e, 0x2c, 0xff, 0x9b, 0x5c, 0x2c, 0xff, 0x9c, 0x5c, 0x2c, 0xff, 0x9b, 0x5d, 0x2b, 0xff, 0x9c, 0x5e, 0x2a, 0xff, 0x9b, 0x5d, 0x28, 0xff, 0x9c, 0x5c, 0x28, 0xff, 0x9c, 0x5c, 0x29, 0xff, 0x9c, 0x5d, 0x29, 0xff, 0x9d, 0x5f, 0x2b, 0xff, 0x9c, 0x5e, 0x2c, 0xff, 0x9d, 0x5e, 0x2e, 0xff, 0xa5, 0x68, 0x35, 0xff, 0xb7, 0x78, 0x43, 0xff, 0xc2, 0x82, 0x4a, 0xff, 0xc1, 0x80, 0x49, 0xff, 0xc0, 0x80, 0x49, 0xff, 0xc1, 0x82, 0x4b, 0xff, 0xb8, 0x7a, 0x48, 0xff, 0xa9, 0x6c, 0x3f, 0xff, 0xa9, 0x6b, 0x3d, 0xff, 0xa9, 0x68, 0x3c, 0xff, 0xa7, 0x68, 0x3a, 0xff, 0xa6, 0x67, 0x39, 0xff, 0xa6, 0x65, 0x39, 0xff, 0xa5, 0x65, 0x38, 0xff, 0xa5, 0x65, 0x37, 0xff, 0xa4, 0x63, 0x35, 0xff, 0xa2, 0x62, 0x35, 0xff, 0xa2, 0x62, 0x35, 0xff, 0xa4, 0x63, 0x37, 0xff, 0xa4, 0x63, 0x37, 0xff, 0xa2, 0x61, 0x35, 0xff, 0x9f, 0x5f, 0x33, 0xff, 0x9e, 0x5f, 0x32, 0xff, 0x9e, 0x5f, 0x32, 0xff, 0x9e, 0x5e, 0x33, 0xff, 0x9e, 0x5e, 0x33, 0xff, 0x9c, 0x5f, 0x33, 0xff, 0x9b, 0x5e, 0x32, 0xff, 0x9b, 0x5b, 0x31, 0xff, 0x9b, 0x5b, 0x31, 0xff, 0x99, 0x5b, 0x31, 0xff, 0x98, 0x5a, 0x31, 0xff, 0x97, 0x58, 0x30, 0xff, 0x95, 0x57, 0x2f, 0xff, 0x94, 0x56, 0x2f, 0xff, 0x94, 0x56, 0x2e, 0xff, 0x91, 0x54, 0x2c, 0xff, 0x8e, 0x51, 0x2c, 0xff, 0x8d, 0x50, 0x2c, 0xff, 0x8d, 0x52, 0x2d, 0xff, 0x8e, 0x52, 0x2d, 0xff, 0x8e, 0x53, 0x2d, 0xff, 0x8f, 0x54, 0x2d, 0xff, 0x8f, 0x54, 0x2d, 0xff, 0x8d, 0x52, 0x2b, 0xff, 0x8d, 0x52, 0x2a, 0xff, 0x8f, 0x52, 0x2d, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x8c, 0x4f, 0x2b, 0xff, 0x89, 0x4a, 0x2a, 0xff, 0x84, 0x46, 0x26, 0xff, 0x91, 0x52, 0x2c, 0xff, 0xc7, 0x83, 0x53, 0xff, 0xd2, 0x8d, 0x58, 0xff, 0xc6, 0x84, 0x4e, 0xff, 0xc1, 0x82, 0x4c, 0xff, 0xbb, 0x7b, 0x47, 0xff, 0xb8, 0x78, 0x45, 0xff, 0xb5, 0x75, 0x42, 0xff, 0xb1, 0x71, 0x41, 0xff, 0xb4, 0x74, 0x43, 0xff, 0xc1, 0x82, 0x4f, 0xff, 0xb5, 0x77, 0x49, 0xff, 0xa7, 0x69, 0x40, 0xff, 0xa7, 0x69, 0x41, 0xff, 0xa6, 0x6a, 0x42, 0xff, 0xa3, 0x6a, 0x42, 0xff, 0xa6, 0x6e, 0x45, 0xff, 0xa7, 0x72, 0x46, 0xff, 0xa5, 0x71, 0x45, 0xff, 0xa7, 0x71, 0x47, 0xff, 0xa7, 0x70, 0x46, 0xff, 0xa7, 0x70, 0x45, 0xff, 0xa5, 0x6e, 0x45, 0xff, 0xa4, 0x6a, 0x44, 0xff, 0xa3, 0x69, 0x43, 0xff, 0xa0, 0x64, 0x3f, 0xff, 0x9b, 0x5d, 0x37, 0xff, 0x99, 0x5b, 0x34, 0xff, 0x95, 0x57, 0x32, 0xff, 0x93, 0x55, 0x30, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x8d, 0x4e, 0x2d, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x8d, 0x4e, 0x2d, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x91, 0x53, 0x2e, 0xff, 0x92, 0x55, 0x30, 0xff, 0x92, 0x57, 0x31, 0xff, 0x93, 0x59, 0x34, 0xff, 0x94, 0x5a, 0x35, 0xff, 0x94, 0x5a, 0x34, 0xff, 0x95, 0x5a, 0x33, 0xff, 0x97, 0x59, 0x31, 0xff, 0x97, 0x55, 0x2d, 0xff, 0x98, 0x54, 0x2d, 0xff, 0x96, 0x55, 0x2c, 0xff, 0x94, 0x54, 0x2c, 0xff, 0x95, 0x56, 0x2c, 0xff, 0x96, 0x55, 0x2d, 0xff, 0x98, 0x57, 0x2d, 0xff, 0x98, 0x57, 0x2d, 0xff, 0x98, 0x55, 0x2d, 0xff, 0x9b, 0x57, 0x2e, 0xff, 0x9d, 0x5c, 0x31, 0xff, 0x94, 0x54, 0x2c, 0xff, 0x90, 0x50, 0x2a, 0xff, 0x90, 0x4f, 0x2a, 0xff, 0x90, 0x50, 0x2a, 0xff, 0x8f, 0x4f, 0x29, 0xff, 0x8e, 0x4f, 0x28, 0xff, 0xa0, 0x5e, 0x36, 0xff, 0xc5, 0x85, 0x55, 0xff, 0xe5, 0x98, 0x64, 0xff, 0xda, 0x8f, 0x59, 0xff, 0xc9, 0x86, 0x51, 0xff, 0xc4, 0x80, 0x4e, 0xff, 0xc0, 0x7e, 0x4c, 0xff, 0xc0, 0x7f, 0x4e, 0xff, 0xbf, 0x7f, 0x4c, 0xff, 0xbf, 0x7d, 0x4d, 0xff, 0xc0, 0x80, 0x4f, 0xff, 0xc2, 0x82, 0x51, 0xff, 0xc3, 0x83, 0x53, 0xff, 0xc6, 0x85, 0x55, 0xff, 0xcb, 0x88, 0x58, 0xff, 0xcb, 0x8a, 0x58, 0xff, 0xcb, 0x8a, 0x59, 0xff, 0xcb, 0x8c, 0x5b, 0xff, 0xc9, 0x8a, 0x59, 0xff, 0xd1, 0x91, 0x5f, 0xff, 0xc4, 0x87, 0x57, 0xff, 0xc5, 0x84, 0x55, 0xff, 0xcf, 0x8c, 0x55, 0xff, 0xcd, 0x8a, 0x52, 0xff, 0xc8, 0x86, 0x4e, 0xff, 0xc2, 0x80, 0x4a, 0xff, 0xbf, 0x7e, 0x46, 0xff, 0xbb, 0x7a, 0x44, 0xff, 0xb9, 0x79, 0x42, 0xff, 0xb8, 0x76, 0x41, 0xff, 0xb5, 0x75, 0x3f, 0xff, + 0xb4, 0x74, 0x3e, 0xff, 0xb4, 0x74, 0x3e, 0xff, 0xb4, 0x72, 0x3f, 0xff, 0xb3, 0x6f, 0x3e, 0xff, 0xb1, 0x71, 0x3e, 0xff, 0xb3, 0x73, 0x3f, 0xff, 0xb4, 0x72, 0x41, 0xff, 0xb2, 0x72, 0x40, 0xff, 0xb1, 0x73, 0x41, 0xff, 0xb1, 0x73, 0x41, 0xff, 0xb0, 0x70, 0x42, 0xff, 0xb0, 0x72, 0x41, 0xff, 0xae, 0x70, 0x40, 0xff, 0xb9, 0x7b, 0x48, 0xff, 0xdb, 0x92, 0x59, 0xff, 0xc4, 0x87, 0x4f, 0xff, 0xc5, 0x86, 0x4e, 0xff, 0xc4, 0x85, 0x50, 0xff, 0xc4, 0x86, 0x4d, 0xff, 0xc2, 0x83, 0x4b, 0xff, 0xc2, 0x84, 0x4c, 0xff, 0xc3, 0x83, 0x49, 0xff, 0xc8, 0x86, 0x4c, 0xff, 0xc7, 0x86, 0x4d, 0xff, 0xc5, 0x84, 0x49, 0xff, 0xc4, 0x86, 0x49, 0xff, 0xc0, 0x81, 0x48, 0xff, 0xbc, 0x7e, 0x44, 0xff, 0xbc, 0x7c, 0x42, 0xff, 0xbb, 0x7b, 0x41, 0xff, 0xbb, 0x7d, 0x43, 0xff, 0xba, 0x79, 0x41, 0xff, 0xbf, 0x80, 0x44, 0xff, 0xbd, 0x7e, 0x47, 0xff, 0xbb, 0x7e, 0x47, 0xff, 0xc2, 0x85, 0x48, 0xff, 0xc5, 0x92, 0x4a, 0xff, 0xc8, 0x8d, 0x4d, 0xff, 0xc4, 0x88, 0x49, 0xff, 0xc8, 0x8d, 0x4d, 0xff, 0xc8, 0x8b, 0x50, 0xff, 0xc6, 0x89, 0x4a, 0xff, 0xcc, 0x96, 0x51, 0xff, 0xd1, 0x90, 0x55, 0xff, 0xd8, 0x95, 0x55, 0xff, 0xdc, 0x97, 0x55, 0xff, 0xdd, 0x9d, 0x56, 0xff, 0xe1, 0x9d, 0x5b, 0xff, 0xde, 0x9e, 0x5a, 0xff, 0xe0, 0x9f, 0x5d, 0xff, 0xdc, 0x9b, 0x56, 0xff, 0xcc, 0x8f, 0x57, 0xff, 0xba, 0x7e, 0x4a, 0xff, 0xbb, 0x7e, 0x4b, 0xff, 0xbc, 0x81, 0x49, 0xff, 0xb8, 0x7c, 0x48, 0xff, 0xb3, 0x77, 0x44, 0xff, 0xb0, 0x74, 0x41, 0xff, 0xb0, 0x74, 0x41, 0xff, 0xae, 0x72, 0x40, 0xff, 0xac, 0x71, 0x40, 0xff, 0xab, 0x70, 0x3d, 0xff, 0xa9, 0x6f, 0x3e, 0xff, 0xac, 0x70, 0x3e, 0xff, 0xaa, 0x6f, 0x3e, 0xff, 0xa7, 0x6c, 0x3c, 0xff, 0xa6, 0x6a, 0x3b, 0xff, 0xa5, 0x69, 0x3b, 0xff, 0xa4, 0x6a, 0x3b, 0xff, 0xa3, 0x68, 0x3a, 0xff, 0xa4, 0x6a, 0x3d, 0xff, 0xa1, 0x68, 0x39, 0xff, 0xa0, 0x67, 0x38, 0xff, 0xa0, 0x64, 0x38, 0xff, 0x9f, 0x64, 0x37, 0xff, 0x9e, 0x61, 0x34, 0xff, 0x9d, 0x5f, 0x31, 0xff, 0x9c, 0x5f, 0x2f, 0xff, 0x9d, 0x60, 0x2d, 0xff, 0x9d, 0x5f, 0x2e, 0xff, 0x9c, 0x5f, 0x2d, 0xff, 0x9e, 0x5f, 0x2d, 0xff, 0x9e, 0x5f, 0x2d, 0xff, 0x9e, 0x5f, 0x2c, 0xff, 0x9d, 0x60, 0x2c, 0xff, 0x9e, 0x60, 0x2a, 0xff, 0x9f, 0x5f, 0x2a, 0xff, 0x9f, 0x5e, 0x2a, 0xff, 0x9e, 0x60, 0x29, 0xff, 0x9f, 0x61, 0x2a, 0xff, 0xa0, 0x64, 0x2e, 0xff, 0xa0, 0x63, 0x31, 0xff, 0x9f, 0x63, 0x31, 0xff, 0xa9, 0x6c, 0x39, 0xff, 0xc0, 0x81, 0x49, 0xff, 0xc6, 0x84, 0x4c, 0xff, 0xc5, 0x85, 0x4e, 0xff, 0xbc, 0x7c, 0x4b, 0xff, 0xab, 0x6b, 0x40, 0xff, 0xac, 0x6d, 0x40, 0xff, 0xab, 0x6c, 0x3e, 0xff, 0xa9, 0x6a, 0x3d, 0xff, 0xa8, 0x68, 0x3b, 0xff, 0xa7, 0x68, 0x38, 0xff, 0xa6, 0x68, 0x37, 0xff, 0xa6, 0x67, 0x37, 0xff, 0xa4, 0x64, 0x36, 0xff, 0xa4, 0x63, 0x36, 0xff, 0xa3, 0x63, 0x37, 0xff, 0xa4, 0x64, 0x36, 0xff, 0xa5, 0x64, 0x37, 0xff, 0xa4, 0x64, 0x37, 0xff, 0xa3, 0x63, 0x35, 0xff, 0xa1, 0x61, 0x35, 0xff, 0xa1, 0x61, 0x34, 0xff, 0xa1, 0x61, 0x32, 0xff, 0x9f, 0x5f, 0x32, 0xff, 0x9f, 0x5f, 0x32, 0xff, 0xa0, 0x60, 0x34, 0xff, 0x9f, 0x5f, 0x33, 0xff, 0x9c, 0x5d, 0x30, 0xff, 0x9c, 0x5c, 0x30, 0xff, 0x9a, 0x5b, 0x2f, 0xff, 0x99, 0x59, 0x2e, 0xff, 0x99, 0x58, 0x2e, 0xff, 0x94, 0x56, 0x2c, 0xff, 0x8f, 0x53, 0x2b, 0xff, 0x8f, 0x53, 0x2b, 0xff, 0x90, 0x54, 0x2c, 0xff, 0x90, 0x54, 0x2c, 0xff, 0x8f, 0x53, 0x2d, 0xff, 0x8f, 0x53, 0x2d, 0xff, 0x90, 0x54, 0x2e, 0xff, 0x8f, 0x52, 0x2e, 0xff, 0x8d, 0x51, 0x2c, 0xff, 0x8d, 0x51, 0x2a, 0xff, 0x8f, 0x53, 0x2c, 0xff, 0x91, 0x54, 0x2f, 0xff, 0x91, 0x54, 0x2f, 0xff, 0x90, 0x53, 0x2e, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x89, 0x4c, 0x29, 0xff, 0x88, 0x4c, 0x29, 0xff, 0x83, 0x45, 0x24, 0xff, 0x8a, 0x4b, 0x27, 0xff, 0xc6, 0x83, 0x51, 0xff, 0xd5, 0x8f, 0x58, 0xff, 0xc8, 0x86, 0x4f, 0xff, 0xc4, 0x83, 0x4d, 0xff, 0xbd, 0x7c, 0x49, 0xff, 0xb8, 0x77, 0x46, 0xff, 0xb3, 0x73, 0x42, 0xff, 0xaf, 0x6f, 0x3f, 0xff, 0xac, 0x6d, 0x40, 0xff, 0xa1, 0x62, 0x3a, 0xff, 0x9f, 0x5f, 0x38, 0xff, 0xa0, 0x61, 0x3a, 0xff, 0xa0, 0x62, 0x3b, 0xff, 0xa3, 0x66, 0x3e, 0xff, 0xa6, 0x6c, 0x42, 0xff, 0xa8, 0x6f, 0x45, 0xff, 0xa7, 0x6d, 0x43, 0xff, 0xa8, 0x6d, 0x43, 0xff, 0xa8, 0x6e, 0x43, 0xff, 0xa8, 0x6c, 0x41, 0xff, 0xa6, 0x6c, 0x41, 0xff, 0xa5, 0x6c, 0x41, 0xff, 0xa2, 0x66, 0x3e, 0xff, 0x9c, 0x5f, 0x38, 0xff, 0x97, 0x59, 0x34, 0xff, 0x95, 0x57, 0x32, 0xff, 0x92, 0x56, 0x31, 0xff, 0x8f, 0x53, 0x30, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x8e, 0x50, 0x2d, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x91, 0x54, 0x2e, 0xff, 0x90, 0x56, 0x30, 0xff, 0x92, 0x58, 0x32, 0xff, 0x92, 0x59, 0x32, 0xff, 0x93, 0x5a, 0x33, 0xff, 0x94, 0x59, 0x32, 0xff, 0x95, 0x59, 0x30, 0xff, 0x96, 0x57, 0x2d, 0xff, 0x96, 0x55, 0x2d, 0xff, 0x96, 0x54, 0x2c, 0xff, 0x95, 0x54, 0x2c, 0xff, 0x96, 0x55, 0x2d, 0xff, 0x96, 0x55, 0x2d, 0xff, 0x97, 0x55, 0x2d, 0xff, 0x98, 0x58, 0x2d, 0xff, 0x9a, 0x59, 0x2d, 0xff, 0x99, 0x58, 0x2d, 0xff, 0x9b, 0x5a, 0x2e, 0xff, 0x9b, 0x59, 0x2f, 0xff, 0x8e, 0x4f, 0x2b, 0xff, 0x8f, 0x4f, 0x2a, 0xff, 0x8f, 0x4f, 0x2a, 0xff, 0x8f, 0x4f, 0x2a, 0xff, 0x90, 0x4f, 0x2a, 0xff, 0x90, 0x50, 0x2a, 0xff, 0x94, 0x55, 0x2d, 0xff, 0x92, 0x53, 0x2a, 0xff, 0xc6, 0x83, 0x50, 0xff, 0xde, 0x94, 0x5f, 0xff, 0xd3, 0x87, 0x56, 0xff, 0xca, 0x84, 0x52, 0xff, 0xc5, 0x82, 0x50, 0xff, 0xc0, 0x7d, 0x4c, 0xff, 0xbf, 0x7d, 0x4d, 0xff, 0xbf, 0x7d, 0x4d, 0xff, 0xc0, 0x7f, 0x4f, 0xff, 0xc0, 0x80, 0x51, 0xff, 0xc2, 0x82, 0x52, 0xff, 0xc4, 0x83, 0x54, 0xff, 0xc4, 0x86, 0x55, 0xff, 0xc4, 0x85, 0x55, 0xff, 0xc4, 0x86, 0x55, 0xff, 0xc7, 0x89, 0x56, 0xff, 0xd1, 0x92, 0x5d, 0xff, 0xc3, 0x86, 0x54, 0xff, 0xd1, 0x8d, 0x55, 0xff, 0xce, 0x8b, 0x54, 0xff, 0xca, 0x88, 0x51, 0xff, 0xc3, 0x84, 0x4c, 0xff, 0xc1, 0x81, 0x4a, 0xff, 0xbc, 0x7c, 0x46, 0xff, 0xba, 0x7a, 0x44, 0xff, 0xb8, 0x78, 0x42, 0xff, 0xb6, 0x77, 0x41, 0xff, 0xb6, 0x74, 0x41, 0xff, + 0xb4, 0x72, 0x41, 0xff, 0xb4, 0x74, 0x40, 0xff, 0xb4, 0x72, 0x40, 0xff, 0xb3, 0x72, 0x40, 0xff, 0xb4, 0x71, 0x41, 0xff, 0xb4, 0x73, 0x41, 0xff, 0xb4, 0x76, 0x41, 0xff, 0xb5, 0x74, 0x43, 0xff, 0xb3, 0x74, 0x43, 0xff, 0xb3, 0x74, 0x45, 0xff, 0xb4, 0x76, 0x44, 0xff, 0xc3, 0x84, 0x4d, 0xff, 0xe0, 0x93, 0x56, 0xff, 0xe8, 0x96, 0x57, 0xff, 0xdf, 0x94, 0x56, 0xff, 0xd3, 0x8c, 0x58, 0xff, 0xc6, 0x88, 0x52, 0xff, 0xc7, 0x86, 0x50, 0xff, 0xc6, 0x87, 0x4e, 0xff, 0xc7, 0x86, 0x4c, 0xff, 0xc5, 0x86, 0x4d, 0xff, 0xc3, 0x83, 0x4c, 0xff, 0xc3, 0x84, 0x4b, 0xff, 0xc4, 0x87, 0x4b, 0xff, 0xc4, 0x85, 0x4c, 0xff, 0xc4, 0x86, 0x4a, 0xff, 0xbf, 0x80, 0x46, 0xff, 0xbe, 0x7f, 0x47, 0xff, 0xbc, 0x7f, 0x43, 0xff, 0xbb, 0x7a, 0x44, 0xff, 0xbb, 0x7b, 0x43, 0xff, 0xb8, 0x7a, 0x43, 0xff, 0xbd, 0x7c, 0x46, 0xff, 0xbd, 0x7e, 0x47, 0xff, 0xb9, 0x7e, 0x47, 0xff, 0xc5, 0x8c, 0x4c, 0xff, 0xc5, 0x87, 0x4a, 0xff, 0xc8, 0x8c, 0x4b, 0xff, 0xc8, 0x8c, 0x4c, 0xff, 0xc9, 0x8d, 0x4d, 0xff, 0xcd, 0x93, 0x52, 0xff, 0xd0, 0x95, 0x54, 0xff, 0xd2, 0x90, 0x50, 0xff, 0xd5, 0x99, 0x55, 0xff, 0xe0, 0x9d, 0x5a, 0xff, 0xe8, 0xa4, 0x5e, 0xff, 0xe7, 0xa0, 0x5c, 0xff, 0xe4, 0xa5, 0x60, 0xff, 0xe8, 0xa6, 0x60, 0xff, 0xe8, 0xa4, 0x63, 0xff, 0xe9, 0xa9, 0x6a, 0xff, 0xd3, 0x98, 0x5b, 0xff, 0xc2, 0x89, 0x53, 0xff, 0xc5, 0x8b, 0x54, 0xff, 0xc2, 0x87, 0x4f, 0xff, 0xbf, 0x84, 0x4d, 0xff, 0xbb, 0x80, 0x4b, 0xff, 0xb9, 0x7d, 0x4a, 0xff, 0xb6, 0x7b, 0x48, 0xff, 0xb4, 0x77, 0x45, 0xff, 0xb3, 0x77, 0x44, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xb0, 0x74, 0x42, 0xff, 0xad, 0x73, 0x41, 0xff, 0xac, 0x70, 0x41, 0xff, 0xac, 0x70, 0x40, 0xff, 0xac, 0x71, 0x41, 0xff, 0xaa, 0x6f, 0x3f, 0xff, 0xa9, 0x6d, 0x3e, 0xff, 0xa7, 0x6c, 0x3f, 0xff, 0xa5, 0x6b, 0x3d, 0xff, 0xa5, 0x6a, 0x3d, 0xff, 0xa3, 0x69, 0x3d, 0xff, 0xa2, 0x69, 0x3c, 0xff, 0xa1, 0x67, 0x39, 0xff, 0xa0, 0x64, 0x37, 0xff, 0x9f, 0x62, 0x34, 0xff, 0xa0, 0x62, 0x32, 0xff, 0x9f, 0x61, 0x31, 0xff, 0xa0, 0x64, 0x30, 0xff, 0x9f, 0x63, 0x2e, 0xff, 0x9f, 0x62, 0x2d, 0xff, 0x9f, 0x64, 0x2d, 0xff, 0x9f, 0x63, 0x2d, 0xff, 0x9f, 0x62, 0x2e, 0xff, 0xa0, 0x62, 0x2d, 0xff, 0xa0, 0x62, 0x2c, 0xff, 0xa0, 0x61, 0x2b, 0xff, 0xa0, 0x61, 0x2a, 0xff, 0xa0, 0x62, 0x2b, 0xff, 0xa0, 0x62, 0x2d, 0xff, 0xa1, 0x63, 0x30, 0xff, 0xa1, 0x65, 0x32, 0xff, 0xa1, 0x65, 0x33, 0xff, 0xa2, 0x65, 0x35, 0xff, 0xb2, 0x74, 0x3f, 0xff, 0xc5, 0x84, 0x4c, 0xff, 0xbd, 0x7d, 0x4a, 0xff, 0xaf, 0x70, 0x41, 0xff, 0xaf, 0x6f, 0x41, 0xff, 0xac, 0x6d, 0x3f, 0xff, 0xac, 0x6c, 0x3d, 0xff, 0xaa, 0x6a, 0x3b, 0xff, 0xa8, 0x68, 0x39, 0xff, 0xa8, 0x69, 0x39, 0xff, 0xa8, 0x69, 0x39, 0xff, 0xa8, 0x68, 0x38, 0xff, 0xa7, 0x68, 0x38, 0xff, 0xa6, 0x66, 0x37, 0xff, 0xa4, 0x64, 0x37, 0xff, 0xa4, 0x66, 0x38, 0xff, 0xa6, 0x68, 0x38, 0xff, 0xa6, 0x67, 0x37, 0xff, 0xa4, 0x65, 0x37, 0xff, 0xa4, 0x65, 0x36, 0xff, 0xa2, 0x63, 0x36, 0xff, 0xa1, 0x62, 0x35, 0xff, 0xa0, 0x61, 0x35, 0xff, 0xa0, 0x62, 0x35, 0xff, 0x9f, 0x61, 0x35, 0xff, 0x9f, 0x5f, 0x34, 0xff, 0x9e, 0x5e, 0x32, 0xff, 0x9c, 0x5d, 0x30, 0xff, 0x98, 0x5a, 0x30, 0xff, 0x94, 0x56, 0x2e, 0xff, 0x91, 0x54, 0x2c, 0xff, 0x90, 0x54, 0x2c, 0xff, 0x90, 0x54, 0x2d, 0xff, 0x91, 0x55, 0x2d, 0xff, 0x90, 0x54, 0x2d, 0xff, 0x90, 0x54, 0x2d, 0xff, 0x90, 0x55, 0x2d, 0xff, 0x8f, 0x54, 0x2d, 0xff, 0x8e, 0x53, 0x2d, 0xff, 0x8d, 0x52, 0x2c, 0xff, 0x8c, 0x52, 0x29, 0xff, 0x93, 0x56, 0x2e, 0xff, 0x95, 0x56, 0x31, 0xff, 0x93, 0x54, 0x30, 0xff, 0x8f, 0x51, 0x2d, 0xff, 0x8b, 0x4e, 0x2a, 0xff, 0x8b, 0x4c, 0x29, 0xff, 0x88, 0x4a, 0x29, 0xff, 0x85, 0x46, 0x25, 0xff, 0x7f, 0x41, 0x1f, 0xff, 0x95, 0x58, 0x31, 0xff, 0xc3, 0x82, 0x4f, 0xff, 0xd0, 0x8b, 0x54, 0xff, 0xca, 0x88, 0x51, 0xff, 0xc2, 0x83, 0x4f, 0xff, 0xbd, 0x7e, 0x4a, 0xff, 0xba, 0x7a, 0x46, 0xff, 0xb5, 0x75, 0x43, 0xff, 0xaa, 0x6b, 0x3e, 0xff, 0x9f, 0x60, 0x38, 0xff, 0x9b, 0x5d, 0x36, 0xff, 0x9d, 0x5f, 0x37, 0xff, 0x9d, 0x60, 0x37, 0xff, 0x9d, 0x5e, 0x37, 0xff, 0x9f, 0x5f, 0x38, 0xff, 0xa5, 0x67, 0x3e, 0xff, 0xa7, 0x6a, 0x3f, 0xff, 0xa6, 0x68, 0x3f, 0xff, 0xa6, 0x6a, 0x41, 0xff, 0xa5, 0x67, 0x3e, 0xff, 0xa1, 0x66, 0x3b, 0xff, 0x9e, 0x61, 0x39, 0xff, 0x99, 0x5c, 0x36, 0xff, 0x96, 0x59, 0x33, 0xff, 0x95, 0x57, 0x32, 0xff, 0x95, 0x57, 0x33, 0xff, 0x94, 0x56, 0x32, 0xff, 0x92, 0x55, 0x31, 0xff, 0x8f, 0x54, 0x2f, 0xff, 0x8d, 0x50, 0x2e, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x90, 0x4f, 0x2d, 0xff, 0x91, 0x53, 0x2e, 0xff, 0x91, 0x54, 0x2e, 0xff, 0x92, 0x55, 0x30, 0xff, 0x93, 0x58, 0x31, 0xff, 0x93, 0x58, 0x31, 0xff, 0x94, 0x58, 0x31, 0xff, 0x95, 0x58, 0x30, 0xff, 0x97, 0x56, 0x2d, 0xff, 0x96, 0x56, 0x2d, 0xff, 0x94, 0x53, 0x2c, 0xff, 0x94, 0x53, 0x2b, 0xff, 0x95, 0x52, 0x2c, 0xff, 0x95, 0x54, 0x2c, 0xff, 0x97, 0x55, 0x2d, 0xff, 0x99, 0x58, 0x2d, 0xff, 0x99, 0x58, 0x2d, 0xff, 0x99, 0x58, 0x2d, 0xff, 0x99, 0x58, 0x2d, 0xff, 0x99, 0x56, 0x2d, 0xff, 0x91, 0x50, 0x2a, 0xff, 0x8d, 0x4c, 0x2a, 0xff, 0x8d, 0x4e, 0x2a, 0xff, 0x90, 0x50, 0x2a, 0xff, 0x8f, 0x4f, 0x2a, 0xff, 0x90, 0x50, 0x2a, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x92, 0x53, 0x2c, 0xff, 0x8f, 0x4e, 0x27, 0xff, 0x94, 0x56, 0x2b, 0xff, 0xb4, 0x78, 0x48, 0xff, 0xd8, 0x8d, 0x59, 0xff, 0xca, 0x87, 0x53, 0xff, 0xc6, 0x82, 0x52, 0xff, 0xc1, 0x7e, 0x4e, 0xff, 0xbf, 0x7e, 0x4e, 0xff, 0xbf, 0x7e, 0x4f, 0xff, 0xc0, 0x81, 0x51, 0xff, 0xc1, 0x80, 0x51, 0xff, 0xc1, 0x80, 0x51, 0xff, 0xc1, 0x81, 0x52, 0xff, 0xc0, 0x80, 0x52, 0xff, 0xc0, 0x80, 0x51, 0xff, 0xc7, 0x85, 0x55, 0xff, 0xcb, 0x8a, 0x55, 0xff, 0xdd, 0x93, 0x5b, 0xff, 0xcc, 0x89, 0x53, 0xff, 0xc8, 0x88, 0x51, 0xff, 0xc4, 0x84, 0x4e, 0xff, 0xc2, 0x83, 0x4d, 0xff, 0xbf, 0x80, 0x49, 0xff, 0xbc, 0x7c, 0x48, 0xff, 0xba, 0x79, 0x47, 0xff, 0xb8, 0x79, 0x44, 0xff, 0xb6, 0x75, 0x41, 0xff, 0xb7, 0x75, 0x42, 0xff, + 0xb6, 0x77, 0x41, 0xff, 0xb5, 0x74, 0x41, 0xff, 0xb6, 0x74, 0x43, 0xff, 0xb5, 0x73, 0x44, 0xff, 0xb6, 0x73, 0x43, 0xff, 0xb5, 0x76, 0x45, 0xff, 0xb6, 0x76, 0x46, 0xff, 0xbb, 0x7c, 0x49, 0xff, 0xc5, 0x81, 0x4b, 0xff, 0xc6, 0x85, 0x4b, 0xff, 0xd6, 0x8c, 0x50, 0xff, 0xe4, 0x98, 0x54, 0xff, 0xe3, 0x94, 0x55, 0xff, 0xe0, 0x93, 0x55, 0xff, 0xdd, 0x95, 0x56, 0xff, 0xd7, 0x90, 0x56, 0xff, 0xd0, 0x8f, 0x56, 0xff, 0xca, 0x8b, 0x52, 0xff, 0xca, 0x8a, 0x52, 0xff, 0xc8, 0x88, 0x50, 0xff, 0xc6, 0x85, 0x4d, 0xff, 0xc5, 0x87, 0x4e, 0xff, 0xc4, 0x85, 0x4d, 0xff, 0xc4, 0x84, 0x4d, 0xff, 0xc4, 0x88, 0x4d, 0xff, 0xbe, 0x81, 0x4a, 0xff, 0xbe, 0x80, 0x49, 0xff, 0xbe, 0x80, 0x49, 0xff, 0xbc, 0x7f, 0x47, 0xff, 0xbc, 0x7e, 0x46, 0xff, 0xbb, 0x7c, 0x44, 0xff, 0xb9, 0x79, 0x44, 0xff, 0xb9, 0x7a, 0x42, 0xff, 0xbf, 0x7f, 0x47, 0xff, 0xbb, 0x7e, 0x46, 0xff, 0xc5, 0x88, 0x4a, 0xff, 0xcc, 0x91, 0x4f, 0xff, 0xcb, 0x90, 0x4d, 0xff, 0xcc, 0x8f, 0x51, 0xff, 0xd1, 0x94, 0x54, 0xff, 0xd7, 0x96, 0x52, 0xff, 0xd4, 0x95, 0x54, 0xff, 0xdd, 0x9b, 0x5a, 0xff, 0xe0, 0x9b, 0x5b, 0xff, 0xeb, 0xa6, 0x61, 0xff, 0xe9, 0xa4, 0x61, 0xff, 0xed, 0xad, 0x66, 0xff, 0xed, 0xae, 0x68, 0xff, 0xea, 0xad, 0x66, 0xff, 0xec, 0xb0, 0x69, 0xff, 0xea, 0xab, 0x67, 0xff, 0xe2, 0xa1, 0x67, 0xff, 0xd1, 0x91, 0x5c, 0xff, 0xd3, 0x96, 0x5d, 0xff, 0xd0, 0x93, 0x5b, 0xff, 0xcc, 0x90, 0x58, 0xff, 0xc3, 0x87, 0x52, 0xff, 0xbf, 0x83, 0x51, 0xff, 0xbc, 0x80, 0x4e, 0xff, 0xb9, 0x7f, 0x4c, 0xff, 0xb8, 0x7e, 0x4a, 0xff, 0xb6, 0x7b, 0x49, 0xff, 0xb4, 0x7a, 0x49, 0xff, 0xb3, 0x79, 0x47, 0xff, 0xb1, 0x78, 0x46, 0xff, 0xb0, 0x75, 0x44, 0xff, 0xae, 0x73, 0x42, 0xff, 0xac, 0x73, 0x43, 0xff, 0xac, 0x72, 0x42, 0xff, 0xa9, 0x70, 0x41, 0xff, 0xa9, 0x6f, 0x40, 0xff, 0xa8, 0x6d, 0x40, 0xff, 0xa7, 0x6e, 0x3e, 0xff, 0xa6, 0x6c, 0x3d, 0xff, 0xa5, 0x6b, 0x3d, 0xff, 0xa3, 0x6a, 0x3c, 0xff, 0xa1, 0x68, 0x3a, 0xff, 0xa2, 0x68, 0x3a, 0xff, 0xa2, 0x67, 0x37, 0xff, 0xa1, 0x65, 0x34, 0xff, 0xa3, 0x66, 0x32, 0xff, 0xa2, 0x64, 0x30, 0xff, 0xa2, 0x64, 0x2e, 0xff, 0xa1, 0x64, 0x2e, 0xff, 0xa2, 0x65, 0x2f, 0xff, 0xa2, 0x66, 0x2e, 0xff, 0xa2, 0x65, 0x2d, 0xff, 0xa3, 0x64, 0x2d, 0xff, 0xa3, 0x63, 0x2c, 0xff, 0xa2, 0x64, 0x2b, 0xff, 0xa2, 0x64, 0x2c, 0xff, 0xa3, 0x67, 0x2f, 0xff, 0xa4, 0x67, 0x31, 0xff, 0xa4, 0x67, 0x33, 0xff, 0xa5, 0x68, 0x35, 0xff, 0xa3, 0x66, 0x34, 0xff, 0xa7, 0x6a, 0x38, 0xff, 0xb0, 0x72, 0x42, 0xff, 0xaf, 0x6f, 0x42, 0xff, 0xb0, 0x70, 0x41, 0xff, 0xb1, 0x71, 0x41, 0xff, 0xaf, 0x70, 0x40, 0xff, 0xad, 0x6e, 0x3e, 0xff, 0xab, 0x6c, 0x3d, 0xff, 0xab, 0x6a, 0x3c, 0xff, 0xab, 0x6a, 0x3a, 0xff, 0xaa, 0x6b, 0x3a, 0xff, 0xaa, 0x6a, 0x3a, 0xff, 0xa8, 0x68, 0x38, 0xff, 0xa8, 0x68, 0x37, 0xff, 0xa5, 0x67, 0x37, 0xff, 0xa5, 0x67, 0x36, 0xff, 0xa7, 0x68, 0x37, 0xff, 0xa7, 0x68, 0x39, 0xff, 0xa7, 0x68, 0x39, 0xff, 0xa5, 0x66, 0x37, 0xff, 0xa5, 0x65, 0x37, 0xff, 0xa5, 0x65, 0x37, 0xff, 0xa3, 0x66, 0x39, 0xff, 0xa3, 0x65, 0x38, 0xff, 0x9f, 0x60, 0x35, 0xff, 0x9a, 0x5d, 0x31, 0xff, 0x96, 0x58, 0x2e, 0xff, 0x92, 0x55, 0x2d, 0xff, 0x91, 0x55, 0x2d, 0xff, 0x92, 0x54, 0x2c, 0xff, 0x92, 0x54, 0x2c, 0xff, 0x92, 0x56, 0x2d, 0xff, 0x92, 0x56, 0x2d, 0xff, 0x92, 0x55, 0x2c, 0xff, 0x90, 0x53, 0x2c, 0xff, 0x8e, 0x52, 0x2b, 0xff, 0x8d, 0x52, 0x2c, 0xff, 0x8e, 0x53, 0x2b, 0xff, 0x8e, 0x52, 0x2a, 0xff, 0x8f, 0x52, 0x2c, 0xff, 0x94, 0x57, 0x30, 0xff, 0x97, 0x57, 0x31, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x8e, 0x50, 0x2b, 0xff, 0x8c, 0x4d, 0x2a, 0xff, 0x89, 0x49, 0x2a, 0xff, 0x87, 0x48, 0x25, 0xff, 0x85, 0x48, 0x22, 0xff, 0x7c, 0x3c, 0x17, 0xff, 0x89, 0x4c, 0x25, 0xff, 0xbd, 0x7e, 0x4c, 0xff, 0xd0, 0x8c, 0x56, 0xff, 0xc6, 0x87, 0x53, 0xff, 0xc0, 0x85, 0x52, 0xff, 0xbd, 0x81, 0x4f, 0xff, 0xbb, 0x7c, 0x4c, 0xff, 0xaa, 0x6b, 0x3f, 0xff, 0xa0, 0x5f, 0x37, 0xff, 0x9d, 0x5c, 0x36, 0xff, 0x9c, 0x5c, 0x35, 0xff, 0x9d, 0x5d, 0x35, 0xff, 0x9d, 0x5f, 0x36, 0xff, 0x9d, 0x5f, 0x36, 0xff, 0x9f, 0x62, 0x38, 0xff, 0xa5, 0x6a, 0x3f, 0xff, 0xa6, 0x69, 0x3f, 0xff, 0xa6, 0x6a, 0x3f, 0xff, 0xa5, 0x69, 0x3e, 0xff, 0xa1, 0x66, 0x3a, 0xff, 0x9c, 0x5e, 0x36, 0xff, 0x98, 0x58, 0x33, 0xff, 0x97, 0x58, 0x32, 0xff, 0x96, 0x57, 0x32, 0xff, 0x96, 0x58, 0x32, 0xff, 0x94, 0x57, 0x32, 0xff, 0x91, 0x56, 0x31, 0xff, 0x90, 0x55, 0x31, 0xff, 0x8e, 0x53, 0x2f, 0xff, 0x8d, 0x50, 0x2e, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x8e, 0x50, 0x2d, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x91, 0x53, 0x2d, 0xff, 0x92, 0x55, 0x2e, 0xff, 0x94, 0x57, 0x2e, 0xff, 0x96, 0x57, 0x2f, 0xff, 0x97, 0x57, 0x2e, 0xff, 0x97, 0x57, 0x2e, 0xff, 0x95, 0x55, 0x2d, 0xff, 0x94, 0x53, 0x2c, 0xff, 0x94, 0x51, 0x2c, 0xff, 0x94, 0x52, 0x2b, 0xff, 0x95, 0x52, 0x2c, 0xff, 0x96, 0x54, 0x2c, 0xff, 0x96, 0x56, 0x2c, 0xff, 0x98, 0x55, 0x2d, 0xff, 0x99, 0x58, 0x2d, 0xff, 0x99, 0x56, 0x2e, 0xff, 0x97, 0x57, 0x2d, 0xff, 0x94, 0x53, 0x2c, 0xff, 0x8c, 0x4d, 0x2a, 0xff, 0x8d, 0x4c, 0x2a, 0xff, 0x8d, 0x4c, 0x2a, 0xff, 0x8f, 0x4e, 0x2b, 0xff, 0x8f, 0x4f, 0x2b, 0xff, 0x8f, 0x4e, 0x2b, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x90, 0x50, 0x2b, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x8d, 0x4d, 0x27, 0xff, 0x92, 0x54, 0x2c, 0xff, 0xac, 0x6d, 0x40, 0xff, 0xb3, 0x71, 0x44, 0xff, 0xbc, 0x7c, 0x4c, 0xff, 0xc9, 0x88, 0x58, 0xff, 0xc5, 0x83, 0x54, 0xff, 0xc4, 0x83, 0x53, 0xff, 0xc2, 0x7f, 0x52, 0xff, 0xc0, 0x80, 0x51, 0xff, 0xc0, 0x80, 0x51, 0xff, 0xbe, 0x7e, 0x4f, 0xff, 0xc1, 0x83, 0x51, 0xff, 0xca, 0x88, 0x55, 0xff, 0xd8, 0x8e, 0x55, 0xff, 0xd7, 0x8f, 0x55, 0xff, 0xcf, 0x8b, 0x53, 0xff, 0xc4, 0x85, 0x4e, 0xff, 0xc2, 0x82, 0x4e, 0xff, 0xc0, 0x81, 0x4d, 0xff, 0xbe, 0x7e, 0x4a, 0xff, 0xbb, 0x7c, 0x48, 0xff, 0xb8, 0x7c, 0x47, 0xff, 0xb8, 0x78, 0x45, 0xff, 0xb8, 0x77, 0x44, 0xff, 0xb7, 0x75, 0x42, 0xff, + 0xb9, 0x79, 0x47, 0xff, 0xb8, 0x78, 0x47, 0xff, 0xb8, 0x78, 0x49, 0xff, 0xba, 0x7a, 0x46, 0xff, 0xbc, 0x7b, 0x46, 0xff, 0xbf, 0x80, 0x47, 0xff, 0xc5, 0x84, 0x49, 0xff, 0xc9, 0x86, 0x4a, 0xff, 0xd2, 0x90, 0x50, 0xff, 0xd6, 0x8f, 0x50, 0xff, 0xd8, 0x91, 0x51, 0xff, 0xda, 0x93, 0x52, 0xff, 0xdc, 0x94, 0x55, 0xff, 0xde, 0x91, 0x56, 0xff, 0xdc, 0x95, 0x55, 0xff, 0xd6, 0x8f, 0x55, 0xff, 0xd2, 0x91, 0x59, 0xff, 0xce, 0x90, 0x57, 0xff, 0xcb, 0x8c, 0x55, 0xff, 0xc9, 0x8a, 0x52, 0xff, 0xc8, 0x88, 0x50, 0xff, 0xc7, 0x84, 0x4d, 0xff, 0xc4, 0x85, 0x4d, 0xff, 0xc2, 0x83, 0x4b, 0xff, 0xc4, 0x85, 0x4e, 0xff, 0xc0, 0x81, 0x4b, 0xff, 0xc0, 0x82, 0x4c, 0xff, 0xbf, 0x81, 0x4b, 0xff, 0xbd, 0x81, 0x49, 0xff, 0xbd, 0x80, 0x4a, 0xff, 0xbd, 0x80, 0x49, 0xff, 0xba, 0x7d, 0x47, 0xff, 0xb8, 0x79, 0x46, 0xff, 0xbb, 0x7b, 0x46, 0xff, 0xbb, 0x7d, 0x48, 0xff, 0xbe, 0x83, 0x4a, 0xff, 0xc9, 0x8e, 0x4f, 0xff, 0xcc, 0x91, 0x51, 0xff, 0xd5, 0x95, 0x56, 0xff, 0xda, 0x9c, 0x57, 0xff, 0xde, 0x9c, 0x58, 0xff, 0xe1, 0x9c, 0x59, 0xff, 0xe6, 0xa0, 0x5d, 0xff, 0xeb, 0xa4, 0x65, 0xff, 0xe7, 0xab, 0x66, 0xff, 0xec, 0xb3, 0x6c, 0xff, 0xed, 0xb3, 0x6b, 0xff, 0xed, 0xb4, 0x6e, 0xff, 0xeb, 0xb6, 0x70, 0xff, 0xed, 0xbd, 0x72, 0xff, 0xed, 0xbf, 0x73, 0xff, 0xea, 0xb0, 0x70, 0xff, 0xe6, 0x9d, 0x64, 0xff, 0xea, 0xa2, 0x65, 0xff, 0xe7, 0x9f, 0x64, 0xff, 0xdd, 0x99, 0x61, 0xff, 0xd2, 0x93, 0x5c, 0xff, 0xc9, 0x8d, 0x57, 0xff, 0xc4, 0x89, 0x55, 0xff, 0xc2, 0x86, 0x53, 0xff, 0xbe, 0x84, 0x51, 0xff, 0xbc, 0x83, 0x50, 0xff, 0xbb, 0x81, 0x4d, 0xff, 0xb9, 0x7f, 0x4c, 0xff, 0xb4, 0x7a, 0x49, 0xff, 0xb5, 0x7a, 0x49, 0xff, 0xb3, 0x78, 0x48, 0xff, 0xb2, 0x79, 0x49, 0xff, 0xaf, 0x76, 0x47, 0xff, 0xad, 0x75, 0x45, 0xff, 0xad, 0x74, 0x44, 0xff, 0xab, 0x73, 0x42, 0xff, 0xaa, 0x71, 0x41, 0xff, 0xa9, 0x70, 0x40, 0xff, 0xa8, 0x6f, 0x3f, 0xff, 0xa7, 0x6e, 0x3e, 0xff, 0xa3, 0x6a, 0x3c, 0xff, 0xa4, 0x6a, 0x3c, 0xff, 0xa4, 0x69, 0x3b, 0xff, 0xa5, 0x69, 0x39, 0xff, 0xa6, 0x69, 0x37, 0xff, 0xa5, 0x68, 0x34, 0xff, 0xa4, 0x68, 0x32, 0xff, 0xa5, 0x67, 0x32, 0xff, 0xa4, 0x68, 0x31, 0xff, 0xa4, 0x68, 0x30, 0xff, 0xa4, 0x67, 0x2f, 0xff, 0xa3, 0x67, 0x2f, 0xff, 0xa4, 0x67, 0x2e, 0xff, 0xa5, 0x67, 0x2e, 0xff, 0xa5, 0x67, 0x2d, 0xff, 0xa5, 0x68, 0x2e, 0xff, 0xa5, 0x67, 0x31, 0xff, 0xa6, 0x69, 0x33, 0xff, 0xa8, 0x6b, 0x36, 0xff, 0xa8, 0x6a, 0x36, 0xff, 0xa8, 0x6b, 0x38, 0xff, 0xac, 0x6f, 0x3f, 0xff, 0xac, 0x6d, 0x42, 0xff, 0xaa, 0x6b, 0x3d, 0xff, 0xab, 0x6b, 0x3d, 0xff, 0xab, 0x6c, 0x3d, 0xff, 0xac, 0x6d, 0x3e, 0xff, 0xae, 0x70, 0x41, 0xff, 0xb0, 0x70, 0x41, 0xff, 0xae, 0x6f, 0x3f, 0xff, 0xad, 0x6f, 0x3e, 0xff, 0xad, 0x6d, 0x3d, 0xff, 0xab, 0x6b, 0x3c, 0xff, 0xab, 0x6b, 0x3b, 0xff, 0xaa, 0x6b, 0x3a, 0xff, 0xa8, 0x69, 0x3a, 0xff, 0xa8, 0x69, 0x38, 0xff, 0xa8, 0x6a, 0x39, 0xff, 0xab, 0x6c, 0x3c, 0xff, 0xac, 0x6d, 0x3e, 0xff, 0xa7, 0x68, 0x39, 0xff, 0xa0, 0x62, 0x34, 0xff, 0x9b, 0x5d, 0x32, 0xff, 0x98, 0x5a, 0x30, 0xff, 0x96, 0x58, 0x2d, 0xff, 0x94, 0x57, 0x2c, 0xff, 0x93, 0x57, 0x2c, 0xff, 0x93, 0x57, 0x2c, 0xff, 0x94, 0x58, 0x2e, 0xff, 0x94, 0x57, 0x2d, 0xff, 0x94, 0x57, 0x2e, 0xff, 0x93, 0x56, 0x2d, 0xff, 0x90, 0x53, 0x2c, 0xff, 0x8e, 0x52, 0x2b, 0xff, 0x8e, 0x52, 0x2b, 0xff, 0x8d, 0x52, 0x2b, 0xff, 0x8d, 0x52, 0x2a, 0xff, 0x90, 0x54, 0x2a, 0xff, 0x8d, 0x50, 0x27, 0xff, 0x94, 0x57, 0x2f, 0xff, 0x9a, 0x5d, 0x34, 0xff, 0x99, 0x59, 0x31, 0xff, 0x94, 0x55, 0x2f, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x92, 0x54, 0x2d, 0xff, 0x8e, 0x52, 0x2b, 0xff, 0x8a, 0x4b, 0x29, 0xff, 0x87, 0x48, 0x26, 0xff, 0x85, 0x46, 0x23, 0xff, 0x84, 0x45, 0x20, 0xff, 0x7d, 0x40, 0x19, 0xff, 0x85, 0x49, 0x20, 0xff, 0xae, 0x71, 0x45, 0xff, 0xcc, 0x89, 0x56, 0xff, 0xc7, 0x89, 0x55, 0xff, 0xc0, 0x88, 0x56, 0xff, 0xb8, 0x7e, 0x50, 0xff, 0xa8, 0x6a, 0x42, 0xff, 0xa3, 0x63, 0x3a, 0xff, 0xa0, 0x5f, 0x37, 0xff, 0x9c, 0x5b, 0x35, 0xff, 0x9b, 0x5b, 0x33, 0xff, 0x9e, 0x5e, 0x34, 0xff, 0x9d, 0x5e, 0x35, 0xff, 0x9b, 0x5c, 0x34, 0xff, 0x9e, 0x60, 0x37, 0xff, 0xa4, 0x68, 0x3e, 0xff, 0xa4, 0x6a, 0x3f, 0xff, 0xa4, 0x6a, 0x40, 0xff, 0xa1, 0x63, 0x39, 0xff, 0x9c, 0x5c, 0x35, 0xff, 0x99, 0x59, 0x33, 0xff, 0x97, 0x57, 0x30, 0xff, 0x95, 0x55, 0x30, 0xff, 0x97, 0x56, 0x32, 0xff, 0x96, 0x58, 0x32, 0xff, 0x94, 0x56, 0x33, 0xff, 0x91, 0x56, 0x32, 0xff, 0x8e, 0x55, 0x31, 0xff, 0x8e, 0x52, 0x2f, 0xff, 0x8f, 0x52, 0x2c, 0xff, 0x8e, 0x50, 0x2d, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x90, 0x4e, 0x2c, 0xff, 0x8f, 0x4e, 0x2b, 0xff, 0x90, 0x4f, 0x2c, 0xff, 0x91, 0x50, 0x2d, 0xff, 0x93, 0x52, 0x2d, 0xff, 0x95, 0x56, 0x2e, 0xff, 0x96, 0x56, 0x2d, 0xff, 0x97, 0x56, 0x2e, 0xff, 0x95, 0x56, 0x2d, 0xff, 0x92, 0x54, 0x2c, 0xff, 0x94, 0x52, 0x2c, 0xff, 0x94, 0x52, 0x2a, 0xff, 0x93, 0x53, 0x2c, 0xff, 0x95, 0x55, 0x2c, 0xff, 0x95, 0x56, 0x2c, 0xff, 0x96, 0x55, 0x2c, 0xff, 0x98, 0x55, 0x2d, 0xff, 0x98, 0x58, 0x2d, 0xff, 0x95, 0x55, 0x2c, 0xff, 0x96, 0x55, 0x2d, 0xff, 0x8c, 0x4d, 0x29, 0xff, 0x8c, 0x4c, 0x2a, 0xff, 0x8d, 0x4c, 0x2a, 0xff, 0x8d, 0x4e, 0x2a, 0xff, 0x8d, 0x4f, 0x2a, 0xff, 0x8e, 0x4d, 0x2a, 0xff, 0x8e, 0x4e, 0x2b, 0xff, 0x8f, 0x4e, 0x2b, 0xff, 0x90, 0x50, 0x2b, 0xff, 0x90, 0x50, 0x2b, 0xff, 0x92, 0x52, 0x2c, 0xff, 0x92, 0x52, 0x2c, 0xff, 0x92, 0x53, 0x2a, 0xff, 0x97, 0x59, 0x30, 0xff, 0xa0, 0x61, 0x37, 0xff, 0xa7, 0x67, 0x3c, 0xff, 0xb3, 0x73, 0x45, 0xff, 0xc3, 0x83, 0x54, 0xff, 0xcd, 0x8b, 0x5a, 0xff, 0xc5, 0x84, 0x55, 0xff, 0xc3, 0x81, 0x53, 0xff, 0xcb, 0x89, 0x55, 0xff, 0xd4, 0x8e, 0x56, 0xff, 0xd4, 0x8f, 0x55, 0xff, 0xd1, 0x8d, 0x55, 0xff, 0xce, 0x8b, 0x53, 0xff, 0xc5, 0x86, 0x50, 0xff, 0xc0, 0x80, 0x4f, 0xff, 0xbf, 0x80, 0x4c, 0xff, 0xbe, 0x7d, 0x4b, 0xff, 0xbc, 0x7c, 0x4a, 0xff, 0xbc, 0x7c, 0x49, 0xff, 0xb8, 0x79, 0x49, 0xff, 0xb8, 0x78, 0x47, 0xff, 0xb8, 0x78, 0x45, 0xff, + 0xb9, 0x7b, 0x46, 0xff, 0xba, 0x7a, 0x40, 0xff, 0xb9, 0x7a, 0x40, 0xff, 0xbe, 0x7d, 0x43, 0xff, 0xbf, 0x80, 0x42, 0xff, 0xc2, 0x84, 0x47, 0xff, 0xc3, 0x84, 0x46, 0xff, 0xc4, 0x85, 0x48, 0xff, 0xc9, 0x88, 0x4d, 0xff, 0xd3, 0x8d, 0x4f, 0xff, 0xd5, 0x8a, 0x51, 0xff, 0xd5, 0x8f, 0x50, 0xff, 0xd8, 0x92, 0x55, 0xff, 0xd8, 0x90, 0x52, 0xff, 0xd7, 0x91, 0x57, 0xff, 0xd4, 0x8d, 0x57, 0xff, 0xce, 0x94, 0x59, 0xff, 0xcc, 0x8f, 0x59, 0xff, 0xd1, 0x90, 0x56, 0xff, 0xcb, 0x8b, 0x53, 0xff, 0xc8, 0x88, 0x51, 0xff, 0xc8, 0x88, 0x4f, 0xff, 0xc4, 0x84, 0x4e, 0xff, 0xc4, 0x85, 0x4d, 0xff, 0xc0, 0x82, 0x4a, 0xff, 0xc2, 0x83, 0x4d, 0xff, 0xc0, 0x80, 0x4b, 0xff, 0xbd, 0x7f, 0x4a, 0xff, 0xb9, 0x79, 0x48, 0xff, 0xb3, 0x75, 0x44, 0xff, 0xb0, 0x72, 0x41, 0xff, 0xae, 0x6f, 0x40, 0xff, 0xae, 0x6e, 0x40, 0xff, 0xb3, 0x74, 0x41, 0xff, 0xb6, 0x76, 0x44, 0xff, 0xb5, 0x76, 0x45, 0xff, 0xba, 0x7d, 0x49, 0xff, 0xbc, 0x80, 0x49, 0xff, 0xc0, 0x83, 0x4b, 0xff, 0xc6, 0x85, 0x4f, 0xff, 0xd2, 0x8d, 0x56, 0xff, 0xdd, 0x96, 0x5c, 0xff, 0xe7, 0xa2, 0x63, 0xff, 0xee, 0xa7, 0x65, 0xff, 0xef, 0xb5, 0x6f, 0xff, 0xec, 0xb9, 0x73, 0xff, 0xe8, 0xbc, 0x76, 0xff, 0xed, 0xce, 0x79, 0xff, 0xeb, 0xc6, 0x7c, 0xff, 0xee, 0xce, 0x80, 0xff, 0xf1, 0xda, 0x86, 0xff, 0xed, 0xca, 0x7c, 0xff, 0xec, 0xa7, 0x6e, 0xff, 0xed, 0xad, 0x72, 0xff, 0xed, 0xad, 0x71, 0xff, 0xee, 0xa6, 0x6a, 0xff, 0xe6, 0xa1, 0x66, 0xff, 0xd9, 0x98, 0x60, 0xff, 0xdb, 0x96, 0x5e, 0xff, 0xd5, 0x95, 0x5d, 0xff, 0xcd, 0x91, 0x5a, 0xff, 0xc6, 0x8b, 0x55, 0xff, 0xc3, 0x88, 0x55, 0xff, 0xc0, 0x88, 0x53, 0xff, 0xc0, 0x86, 0x52, 0xff, 0xba, 0x7f, 0x4e, 0xff, 0xb8, 0x7d, 0x4c, 0xff, 0xb7, 0x7c, 0x4b, 0xff, 0xb5, 0x7f, 0x4b, 0xff, 0xb2, 0x78, 0x49, 0xff, 0xae, 0x76, 0x47, 0xff, 0xac, 0x73, 0x44, 0xff, 0xab, 0x72, 0x43, 0xff, 0xab, 0x6f, 0x42, 0xff, 0xac, 0x70, 0x43, 0xff, 0xae, 0x70, 0x43, 0xff, 0xb1, 0x74, 0x45, 0xff, 0xb1, 0x74, 0x47, 0xff, 0xb1, 0x77, 0x48, 0xff, 0xb0, 0x76, 0x45, 0xff, 0xac, 0x73, 0x43, 0xff, 0xaa, 0x70, 0x3f, 0xff, 0xa8, 0x6c, 0x3a, 0xff, 0xa6, 0x67, 0x33, 0xff, 0xa6, 0x68, 0x32, 0xff, 0xa6, 0x69, 0x31, 0xff, 0xa6, 0x68, 0x30, 0xff, 0xa7, 0x68, 0x30, 0xff, 0xa7, 0x68, 0x30, 0xff, 0xa7, 0x69, 0x30, 0xff, 0xa7, 0x69, 0x2f, 0xff, 0xa7, 0x67, 0x2e, 0xff, 0xa8, 0x69, 0x30, 0xff, 0xa8, 0x6b, 0x33, 0xff, 0xa9, 0x6c, 0x34, 0xff, 0xa8, 0x6d, 0x35, 0xff, 0xab, 0x6e, 0x39, 0xff, 0xaf, 0x70, 0x42, 0xff, 0xad, 0x71, 0x44, 0xff, 0xab, 0x6e, 0x3f, 0xff, 0xaa, 0x6b, 0x3e, 0xff, 0xa8, 0x69, 0x3c, 0xff, 0xa6, 0x69, 0x3c, 0xff, 0xa3, 0x66, 0x39, 0xff, 0xa4, 0x65, 0x37, 0xff, 0xa7, 0x68, 0x39, 0xff, 0xaa, 0x6a, 0x3c, 0xff, 0xaa, 0x6a, 0x3d, 0xff, 0xa8, 0x6a, 0x3c, 0xff, 0xa8, 0x6a, 0x3b, 0xff, 0xa6, 0x68, 0x38, 0xff, 0xa4, 0x65, 0x37, 0xff, 0xa1, 0x62, 0x35, 0xff, 0x9c, 0x5e, 0x32, 0xff, 0x95, 0x59, 0x2d, 0xff, 0x90, 0x52, 0x2a, 0xff, 0x91, 0x54, 0x2b, 0xff, 0x94, 0x58, 0x2d, 0xff, 0x95, 0x57, 0x2e, 0xff, 0x96, 0x57, 0x2e, 0xff, 0x97, 0x59, 0x2f, 0xff, 0x97, 0x5a, 0x2f, 0xff, 0x95, 0x59, 0x2d, 0xff, 0x93, 0x58, 0x2c, 0xff, 0x93, 0x58, 0x2c, 0xff, 0x92, 0x56, 0x2c, 0xff, 0x8f, 0x53, 0x2a, 0xff, 0x8d, 0x52, 0x29, 0xff, 0x8e, 0x51, 0x2b, 0xff, 0x8e, 0x52, 0x2b, 0xff, 0x8f, 0x52, 0x2b, 0xff, 0x8f, 0x52, 0x2a, 0xff, 0x8f, 0x52, 0x2a, 0xff, 0x8e, 0x51, 0x29, 0xff, 0x8e, 0x50, 0x28, 0xff, 0x97, 0x59, 0x30, 0xff, 0x9e, 0x60, 0x35, 0xff, 0x96, 0x58, 0x32, 0xff, 0x95, 0x55, 0x30, 0xff, 0x94, 0x56, 0x2f, 0xff, 0x93, 0x56, 0x2f, 0xff, 0x91, 0x54, 0x2d, 0xff, 0x8c, 0x4e, 0x29, 0xff, 0x8a, 0x4b, 0x28, 0xff, 0x87, 0x49, 0x24, 0xff, 0x84, 0x46, 0x21, 0xff, 0x83, 0x44, 0x1d, 0xff, 0x7c, 0x3e, 0x1b, 0xff, 0x78, 0x3c, 0x1b, 0xff, 0xa9, 0x6e, 0x41, 0xff, 0xc8, 0x88, 0x55, 0xff, 0xc7, 0x89, 0x56, 0xff, 0xb9, 0x7d, 0x51, 0xff, 0xa8, 0x6c, 0x44, 0xff, 0xa4, 0x67, 0x3e, 0xff, 0xa3, 0x64, 0x3a, 0xff, 0x9f, 0x60, 0x37, 0xff, 0x9d, 0x5c, 0x34, 0xff, 0x9b, 0x5a, 0x34, 0xff, 0x9c, 0x5b, 0x34, 0xff, 0x9c, 0x5c, 0x33, 0xff, 0x9b, 0x5b, 0x34, 0xff, 0x9a, 0x5d, 0x34, 0xff, 0xa0, 0x64, 0x3b, 0xff, 0xa2, 0x66, 0x3d, 0xff, 0xa0, 0x64, 0x39, 0xff, 0x9e, 0x60, 0x35, 0xff, 0x9b, 0x5b, 0x32, 0xff, 0x98, 0x56, 0x30, 0xff, 0x96, 0x57, 0x30, 0xff, 0x97, 0x57, 0x31, 0xff, 0x97, 0x56, 0x31, 0xff, 0x95, 0x58, 0x32, 0xff, 0x92, 0x58, 0x32, 0xff, 0x91, 0x54, 0x31, 0xff, 0x8f, 0x53, 0x2f, 0xff, 0x8e, 0x54, 0x2e, 0xff, 0x8e, 0x51, 0x2c, 0xff, 0x8e, 0x4e, 0x2c, 0xff, 0x8e, 0x4d, 0x2b, 0xff, 0x8d, 0x4c, 0x2a, 0xff, 0x8d, 0x4c, 0x2a, 0xff, 0x8f, 0x4d, 0x2b, 0xff, 0x91, 0x4e, 0x2c, 0xff, 0x92, 0x51, 0x2d, 0xff, 0x94, 0x53, 0x2e, 0xff, 0x94, 0x55, 0x2e, 0xff, 0x92, 0x54, 0x2d, 0xff, 0x92, 0x52, 0x2d, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x93, 0x4f, 0x2c, 0xff, 0x94, 0x50, 0x2b, 0xff, 0x93, 0x53, 0x2a, 0xff, 0x95, 0x54, 0x2c, 0xff, 0x95, 0x54, 0x2c, 0xff, 0x95, 0x52, 0x2c, 0xff, 0x98, 0x56, 0x2c, 0xff, 0x97, 0x55, 0x2c, 0xff, 0x95, 0x54, 0x2c, 0xff, 0x8e, 0x4e, 0x2a, 0xff, 0x8c, 0x4c, 0x2a, 0xff, 0x8b, 0x4c, 0x2a, 0xff, 0x8d, 0x4e, 0x2a, 0xff, 0x8c, 0x4c, 0x2a, 0xff, 0x8d, 0x4e, 0x2a, 0xff, 0x8d, 0x4e, 0x2a, 0xff, 0x8f, 0x4f, 0x2b, 0xff, 0x90, 0x4e, 0x2c, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x91, 0x4f, 0x2c, 0xff, 0x92, 0x51, 0x2c, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x92, 0x52, 0x2d, 0xff, 0x95, 0x57, 0x2f, 0xff, 0x97, 0x57, 0x30, 0xff, 0x97, 0x58, 0x31, 0xff, 0x99, 0x59, 0x33, 0xff, 0xaa, 0x6a, 0x3f, 0xff, 0xbf, 0x83, 0x4c, 0xff, 0xcf, 0x8d, 0x56, 0xff, 0xd1, 0x8e, 0x56, 0xff, 0xd3, 0x8d, 0x56, 0xff, 0xd1, 0x8b, 0x55, 0xff, 0xd1, 0x8c, 0x55, 0xff, 0xd0, 0x8b, 0x55, 0xff, 0xc5, 0x84, 0x53, 0xff, 0xc3, 0x83, 0x51, 0xff, 0xc0, 0x82, 0x4d, 0xff, 0xbe, 0x7e, 0x4c, 0xff, 0xbc, 0x7c, 0x4c, 0xff, 0xba, 0x7c, 0x49, 0xff, 0xb9, 0x7b, 0x47, 0xff, 0xba, 0x7c, 0x49, 0xff, + 0xb6, 0x77, 0x3b, 0xff, 0xb7, 0x79, 0x3c, 0xff, 0xb8, 0x7c, 0x3d, 0xff, 0xbb, 0x7b, 0x41, 0xff, 0xbc, 0x7c, 0x43, 0xff, 0xbf, 0x80, 0x44, 0xff, 0xc0, 0x81, 0x45, 0xff, 0xc1, 0x81, 0x48, 0xff, 0xc4, 0x87, 0x4a, 0xff, 0xcd, 0x8a, 0x4b, 0xff, 0xd3, 0x8e, 0x50, 0xff, 0xd0, 0x8e, 0x50, 0xff, 0xd2, 0x8f, 0x52, 0xff, 0xd5, 0x92, 0x57, 0xff, 0xd1, 0x8e, 0x57, 0xff, 0xd0, 0x8e, 0x58, 0xff, 0xd0, 0x90, 0x59, 0xff, 0xc8, 0x96, 0x5d, 0xff, 0xd2, 0x91, 0x5a, 0xff, 0xcf, 0x8c, 0x55, 0xff, 0xcb, 0x8c, 0x52, 0xff, 0xc8, 0x88, 0x51, 0xff, 0xc4, 0x83, 0x4d, 0xff, 0xc1, 0x83, 0x4d, 0xff, 0xbb, 0x7b, 0x48, 0xff, 0xb3, 0x74, 0x43, 0xff, 0xb2, 0x73, 0x42, 0xff, 0xb2, 0x73, 0x42, 0xff, 0xb3, 0x73, 0x43, 0xff, 0xb3, 0x74, 0x44, 0xff, 0xb3, 0x73, 0x44, 0xff, 0xb3, 0x73, 0x44, 0xff, 0xb1, 0x71, 0x43, 0xff, 0xb2, 0x73, 0x41, 0xff, 0xb6, 0x76, 0x44, 0xff, 0xb6, 0x76, 0x45, 0xff, 0xbe, 0x81, 0x4d, 0xff, 0xc2, 0x84, 0x4d, 0xff, 0xc5, 0x87, 0x4e, 0xff, 0xce, 0x8d, 0x56, 0xff, 0xd6, 0x92, 0x57, 0xff, 0xdf, 0x95, 0x5b, 0xff, 0xe9, 0x99, 0x60, 0xff, 0xef, 0xa0, 0x66, 0xff, 0xed, 0xb0, 0x70, 0xff, 0xed, 0xbd, 0x79, 0xff, 0xed, 0xc6, 0x7d, 0xff, 0xe5, 0xd8, 0x83, 0xff, 0xec, 0xe3, 0x87, 0xff, 0xe3, 0xe0, 0x8c, 0xff, 0xe9, 0xd8, 0x8c, 0xff, 0xe6, 0xd7, 0x8c, 0xff, 0xef, 0xbf, 0x7f, 0xff, 0xef, 0xc1, 0x7e, 0xff, 0xef, 0xb6, 0x7a, 0xff, 0xee, 0xb3, 0x78, 0xff, 0xee, 0xb4, 0x76, 0xff, 0xee, 0xaa, 0x71, 0xff, 0xee, 0xa6, 0x6b, 0xff, 0xec, 0xa1, 0x66, 0xff, 0xe4, 0x9c, 0x65, 0xff, 0xda, 0x9a, 0x62, 0xff, 0xd4, 0x95, 0x5d, 0xff, 0xcf, 0x93, 0x5c, 0xff, 0xc1, 0x88, 0x53, 0xff, 0xbc, 0x82, 0x4f, 0xff, 0xb8, 0x7c, 0x4d, 0xff, 0xac, 0x70, 0x44, 0xff, 0xa0, 0x64, 0x3a, 0xff, 0x9e, 0x62, 0x39, 0xff, 0xa2, 0x66, 0x3c, 0xff, 0xa3, 0x67, 0x3d, 0xff, 0xa4, 0x67, 0x3c, 0xff, 0xa8, 0x6a, 0x3e, 0xff, 0xab, 0x6c, 0x40, 0xff, 0xad, 0x71, 0x42, 0xff, 0xb2, 0x75, 0x46, 0xff, 0xb8, 0x78, 0x4a, 0xff, 0xbc, 0x7d, 0x4d, 0xff, 0xc0, 0x84, 0x54, 0xff, 0xc3, 0x89, 0x5b, 0xff, 0xc5, 0x8c, 0x5e, 0xff, 0xcb, 0x90, 0x60, 0xff, 0xca, 0x8d, 0x5e, 0xff, 0xbb, 0x7e, 0x49, 0xff, 0xb2, 0x73, 0x3a, 0xff, 0xaf, 0x71, 0x38, 0xff, 0xaa, 0x6e, 0x33, 0xff, 0xa7, 0x6a, 0x2f, 0xff, 0xaa, 0x6b, 0x30, 0xff, 0xaa, 0x6b, 0x30, 0xff, 0xaa, 0x6a, 0x31, 0xff, 0xaa, 0x6b, 0x32, 0xff, 0xab, 0x6b, 0x34, 0xff, 0xaa, 0x6b, 0x35, 0xff, 0xab, 0x6e, 0x36, 0xff, 0xad, 0x71, 0x3a, 0xff, 0xb2, 0x76, 0x46, 0xff, 0xb3, 0x76, 0x48, 0xff, 0xb0, 0x71, 0x42, 0xff, 0xad, 0x6f, 0x41, 0xff, 0xaa, 0x6d, 0x3f, 0xff, 0xa9, 0x69, 0x3d, 0xff, 0xa7, 0x68, 0x3d, 0xff, 0xa7, 0x68, 0x3b, 0xff, 0xa7, 0x67, 0x3b, 0xff, 0xa8, 0x69, 0x3d, 0xff, 0x9f, 0x61, 0x35, 0xff, 0x95, 0x59, 0x2b, 0xff, 0x96, 0x5a, 0x2d, 0xff, 0x95, 0x59, 0x2c, 0xff, 0x94, 0x58, 0x2c, 0xff, 0x93, 0x57, 0x2d, 0xff, 0x92, 0x55, 0x2c, 0xff, 0x92, 0x55, 0x2c, 0xff, 0x93, 0x56, 0x2b, 0xff, 0x92, 0x54, 0x2b, 0xff, 0x91, 0x53, 0x2c, 0xff, 0x92, 0x56, 0x2c, 0xff, 0x92, 0x54, 0x2c, 0xff, 0x8e, 0x50, 0x2a, 0xff, 0x8c, 0x50, 0x28, 0xff, 0x8c, 0x51, 0x29, 0xff, 0x8d, 0x51, 0x2a, 0xff, 0x8d, 0x52, 0x29, 0xff, 0x8d, 0x52, 0x2a, 0xff, 0x8d, 0x51, 0x2a, 0xff, 0x8e, 0x51, 0x29, 0xff, 0x8d, 0x53, 0x29, 0xff, 0x8e, 0x53, 0x2b, 0xff, 0x8f, 0x53, 0x2b, 0xff, 0x8f, 0x52, 0x29, 0xff, 0x8f, 0x52, 0x29, 0xff, 0x8e, 0x52, 0x29, 0xff, 0x90, 0x54, 0x2b, 0xff, 0x9b, 0x5d, 0x33, 0xff, 0x9b, 0x5b, 0x33, 0xff, 0x96, 0x56, 0x2f, 0xff, 0x97, 0x58, 0x30, 0xff, 0x96, 0x58, 0x2f, 0xff, 0x96, 0x58, 0x30, 0xff, 0x92, 0x53, 0x2e, 0xff, 0x8e, 0x4f, 0x2b, 0xff, 0x8b, 0x4b, 0x28, 0xff, 0x89, 0x49, 0x25, 0xff, 0x87, 0x47, 0x23, 0xff, 0x84, 0x45, 0x20, 0xff, 0x7d, 0x3f, 0x1d, 0xff, 0x79, 0x3c, 0x1b, 0xff, 0x6c, 0x30, 0x15, 0xff, 0xa1, 0x64, 0x3f, 0xff, 0xc5, 0x88, 0x57, 0xff, 0xb6, 0x7a, 0x4c, 0xff, 0xaa, 0x6c, 0x43, 0xff, 0xa7, 0x69, 0x41, 0xff, 0xa3, 0x67, 0x3d, 0xff, 0xa1, 0x63, 0x39, 0xff, 0xa0, 0x60, 0x37, 0xff, 0x9d, 0x5d, 0x35, 0xff, 0x9b, 0x5b, 0x33, 0xff, 0x9c, 0x5d, 0x34, 0xff, 0x9c, 0x5c, 0x33, 0xff, 0x9c, 0x5b, 0x33, 0xff, 0x9b, 0x5a, 0x33, 0xff, 0x9e, 0x60, 0x37, 0xff, 0x9f, 0x62, 0x38, 0xff, 0x9e, 0x61, 0x37, 0xff, 0x9c, 0x5f, 0x34, 0xff, 0x9a, 0x5b, 0x31, 0xff, 0x98, 0x57, 0x30, 0xff, 0x97, 0x57, 0x2f, 0xff, 0x96, 0x57, 0x31, 0xff, 0x94, 0x57, 0x31, 0xff, 0x93, 0x55, 0x30, 0xff, 0x91, 0x55, 0x30, 0xff, 0x8f, 0x55, 0x30, 0xff, 0x8e, 0x53, 0x2f, 0xff, 0x8f, 0x51, 0x2c, 0xff, 0x8e, 0x50, 0x2c, 0xff, 0x8d, 0x4d, 0x2a, 0xff, 0x8b, 0x4b, 0x2a, 0xff, 0x8b, 0x4c, 0x2a, 0xff, 0x8b, 0x4b, 0x29, 0xff, 0x8c, 0x4d, 0x2a, 0xff, 0x90, 0x4f, 0x2c, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x90, 0x52, 0x2c, 0xff, 0x90, 0x52, 0x2c, 0xff, 0x8f, 0x50, 0x2c, 0xff, 0x8f, 0x50, 0x2c, 0xff, 0x91, 0x50, 0x2a, 0xff, 0x92, 0x50, 0x2a, 0xff, 0x92, 0x4e, 0x2a, 0xff, 0x93, 0x52, 0x2a, 0xff, 0x93, 0x50, 0x2a, 0xff, 0x93, 0x52, 0x2c, 0xff, 0x95, 0x53, 0x2c, 0xff, 0x97, 0x55, 0x2c, 0xff, 0x96, 0x54, 0x2c, 0xff, 0x90, 0x4e, 0x2b, 0xff, 0x8a, 0x4b, 0x29, 0xff, 0x8a, 0x4d, 0x29, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x8b, 0x4c, 0x2a, 0xff, 0x8b, 0x4e, 0x2a, 0xff, 0x8d, 0x4d, 0x2a, 0xff, 0x8e, 0x4e, 0x2b, 0xff, 0x8f, 0x4e, 0x2b, 0xff, 0x8f, 0x4e, 0x2c, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x93, 0x52, 0x2c, 0xff, 0x91, 0x50, 0x2c, 0xff, 0x93, 0x53, 0x2d, 0xff, 0x95, 0x55, 0x30, 0xff, 0x97, 0x57, 0x30, 0xff, 0x9a, 0x5a, 0x32, 0xff, 0xb1, 0x73, 0x44, 0xff, 0xac, 0x73, 0x3a, 0xff, 0xaf, 0x77, 0x3c, 0xff, 0xb3, 0x78, 0x40, 0xff, 0xb2, 0x77, 0x3d, 0xff, 0xb4, 0x7b, 0x3e, 0xff, 0xb6, 0x7c, 0x3d, 0xff, 0xb5, 0x7b, 0x3c, 0xff, 0xb7, 0x77, 0x3c, 0xff, 0xab, 0x72, 0x38, 0xff, 0xad, 0x71, 0x38, 0xff, 0xae, 0x6f, 0x39, 0xff, 0xae, 0x71, 0x39, 0xff, 0xaf, 0x72, 0x38, 0xff, 0xb1, 0x73, 0x39, 0xff, 0xb3, 0x73, 0x39, 0xff, + 0xb1, 0x73, 0x39, 0xff, 0xb3, 0x74, 0x39, 0xff, 0xb6, 0x76, 0x3d, 0xff, 0xb8, 0x7a, 0x3f, 0xff, 0xba, 0x7b, 0x40, 0xff, 0xbb, 0x7d, 0x42, 0xff, 0xbc, 0x7e, 0x44, 0xff, 0xbe, 0x80, 0x46, 0xff, 0xc2, 0x85, 0x48, 0xff, 0xc9, 0x88, 0x4b, 0xff, 0xc9, 0x87, 0x4c, 0xff, 0xcc, 0x8c, 0x4e, 0xff, 0xd0, 0x8c, 0x53, 0xff, 0xd3, 0x90, 0x57, 0xff, 0xd1, 0x8e, 0x59, 0xff, 0xce, 0x8d, 0x58, 0xff, 0xd1, 0x90, 0x5c, 0xff, 0xc2, 0x90, 0x56, 0xff, 0xce, 0x95, 0x59, 0xff, 0xd3, 0x8f, 0x59, 0xff, 0xc7, 0x84, 0x51, 0xff, 0xbd, 0x7f, 0x4d, 0xff, 0xb8, 0x79, 0x49, 0xff, 0xb4, 0x76, 0x45, 0xff, 0xb4, 0x75, 0x44, 0xff, 0xb4, 0x75, 0x44, 0xff, 0xb5, 0x75, 0x44, 0xff, 0xb4, 0x75, 0x44, 0xff, 0xb4, 0x73, 0x43, 0xff, 0xb3, 0x74, 0x44, 0xff, 0xb4, 0x74, 0x44, 0xff, 0xb5, 0x76, 0x45, 0xff, 0xb5, 0x76, 0x45, 0xff, 0xb4, 0x74, 0x44, 0xff, 0xb5, 0x76, 0x44, 0xff, 0xb6, 0x77, 0x46, 0xff, 0xc1, 0x84, 0x4e, 0xff, 0xc5, 0x87, 0x4f, 0xff, 0xca, 0x8b, 0x53, 0xff, 0xd3, 0x8f, 0x56, 0xff, 0xde, 0x95, 0x5c, 0xff, 0xea, 0x9d, 0x60, 0xff, 0xee, 0xa2, 0x65, 0xff, 0xec, 0xa7, 0x6b, 0xff, 0xef, 0xb8, 0x78, 0xff, 0xf0, 0xc4, 0x7d, 0xff, 0xef, 0xd2, 0x84, 0xff, 0xed, 0xde, 0x89, 0xff, 0xe6, 0xe3, 0x91, 0xff, 0xe4, 0xe3, 0x98, 0xff, 0xe4, 0xe5, 0x9e, 0xff, 0xe6, 0xe1, 0x9c, 0xff, 0xeb, 0xdd, 0x93, 0xff, 0xee, 0xdb, 0x8e, 0xff, 0xef, 0xd7, 0x8b, 0xff, 0xee, 0xd3, 0x88, 0xff, 0xef, 0xcf, 0x85, 0xff, 0xef, 0xc8, 0x81, 0xff, 0xed, 0xb5, 0x79, 0xff, 0xee, 0xb0, 0x75, 0xff, 0xf2, 0xaf, 0x73, 0xff, 0xeb, 0xab, 0x73, 0xff, 0xcf, 0x93, 0x5e, 0xff, 0xbc, 0x7d, 0x4c, 0xff, 0xa7, 0x6c, 0x41, 0xff, 0xa0, 0x63, 0x3b, 0xff, 0x9f, 0x60, 0x37, 0xff, 0x9f, 0x60, 0x37, 0xff, 0xa1, 0x64, 0x3b, 0xff, 0xa2, 0x66, 0x3b, 0xff, 0xa3, 0x66, 0x3b, 0xff, 0xa5, 0x67, 0x3c, 0xff, 0xa6, 0x69, 0x3d, 0xff, 0xa8, 0x69, 0x3e, 0xff, 0xaa, 0x6b, 0x3f, 0xff, 0xac, 0x6e, 0x40, 0xff, 0xae, 0x70, 0x42, 0xff, 0xb2, 0x74, 0x44, 0xff, 0xb7, 0x78, 0x48, 0xff, 0xbb, 0x7d, 0x4b, 0xff, 0xc0, 0x82, 0x4f, 0xff, 0xc4, 0x87, 0x52, 0xff, 0xc7, 0x8a, 0x55, 0xff, 0xcc, 0x8d, 0x57, 0xff, 0xd2, 0x90, 0x59, 0xff, 0xd5, 0x8f, 0x59, 0xff, 0xd1, 0x8a, 0x55, 0xff, 0xca, 0x84, 0x4e, 0xff, 0xbc, 0x7a, 0x42, 0xff, 0xaf, 0x72, 0x36, 0xff, 0xaa, 0x6d, 0x30, 0xff, 0xab, 0x6a, 0x30, 0xff, 0xac, 0x6c, 0x33, 0xff, 0xac, 0x6e, 0x33, 0xff, 0xad, 0x6e, 0x35, 0xff, 0xae, 0x6f, 0x36, 0xff, 0xaf, 0x72, 0x3c, 0xff, 0xb4, 0x7a, 0x48, 0xff, 0xb7, 0x7b, 0x4c, 0xff, 0xb4, 0x77, 0x46, 0xff, 0xb1, 0x73, 0x43, 0xff, 0xae, 0x70, 0x41, 0xff, 0xac, 0x6d, 0x40, 0xff, 0xaa, 0x6c, 0x3e, 0xff, 0xa9, 0x6c, 0x3d, 0xff, 0xaa, 0x6b, 0x3e, 0xff, 0xa4, 0x66, 0x39, 0xff, 0x9c, 0x5f, 0x32, 0xff, 0x9a, 0x5d, 0x30, 0xff, 0x98, 0x5b, 0x2e, 0xff, 0x97, 0x5a, 0x2d, 0xff, 0x97, 0x5b, 0x2d, 0xff, 0x97, 0x58, 0x2d, 0xff, 0x96, 0x57, 0x2c, 0xff, 0x95, 0x58, 0x2b, 0xff, 0x93, 0x57, 0x2b, 0xff, 0x93, 0x55, 0x2c, 0xff, 0x93, 0x55, 0x2b, 0xff, 0x93, 0x56, 0x2c, 0xff, 0x90, 0x54, 0x2b, 0xff, 0x8e, 0x52, 0x2a, 0xff, 0x8e, 0x52, 0x2a, 0xff, 0x8e, 0x52, 0x29, 0xff, 0x8f, 0x52, 0x29, 0xff, 0x8e, 0x51, 0x29, 0xff, 0x8d, 0x51, 0x29, 0xff, 0x8e, 0x52, 0x29, 0xff, 0x8d, 0x52, 0x29, 0xff, 0x8e, 0x52, 0x2a, 0xff, 0x8d, 0x51, 0x2a, 0xff, 0x8e, 0x52, 0x29, 0xff, 0x8f, 0x52, 0x29, 0xff, 0x8f, 0x52, 0x29, 0xff, 0x8e, 0x51, 0x29, 0xff, 0x93, 0x57, 0x2d, 0xff, 0x9b, 0x5e, 0x34, 0xff, 0x9c, 0x5d, 0x35, 0xff, 0x97, 0x59, 0x30, 0xff, 0x96, 0x58, 0x2f, 0xff, 0x97, 0x5a, 0x2f, 0xff, 0x96, 0x58, 0x2d, 0xff, 0x93, 0x54, 0x2b, 0xff, 0x90, 0x50, 0x2a, 0xff, 0x8e, 0x4e, 0x28, 0xff, 0x8b, 0x4b, 0x26, 0xff, 0x89, 0x4a, 0x24, 0xff, 0x84, 0x44, 0x22, 0xff, 0x7f, 0x41, 0x1f, 0xff, 0x7c, 0x3e, 0x1d, 0xff, 0x76, 0x3a, 0x1b, 0xff, 0x6e, 0x33, 0x15, 0xff, 0x87, 0x4c, 0x2a, 0xff, 0xa8, 0x6c, 0x42, 0xff, 0xaf, 0x71, 0x45, 0xff, 0xab, 0x6e, 0x42, 0xff, 0xa5, 0x6a, 0x40, 0xff, 0xa3, 0x66, 0x3d, 0xff, 0xa2, 0x64, 0x39, 0xff, 0xa0, 0x60, 0x36, 0xff, 0x9d, 0x5c, 0x34, 0xff, 0x9b, 0x5a, 0x32, 0xff, 0x9d, 0x5b, 0x33, 0xff, 0x9c, 0x5c, 0x33, 0xff, 0x9b, 0x5a, 0x31, 0xff, 0x99, 0x58, 0x31, 0xff, 0x9e, 0x5f, 0x36, 0xff, 0x9f, 0x61, 0x36, 0xff, 0x9d, 0x60, 0x34, 0xff, 0x9b, 0x5b, 0x32, 0xff, 0x99, 0x58, 0x30, 0xff, 0x97, 0x57, 0x2f, 0xff, 0x98, 0x57, 0x2f, 0xff, 0x97, 0x55, 0x30, 0xff, 0x95, 0x55, 0x30, 0xff, 0x92, 0x56, 0x30, 0xff, 0x91, 0x55, 0x2f, 0xff, 0x8f, 0x52, 0x2d, 0xff, 0x8f, 0x52, 0x2c, 0xff, 0x8e, 0x51, 0x2c, 0xff, 0x8d, 0x4e, 0x2a, 0xff, 0x8b, 0x4d, 0x2a, 0xff, 0x8a, 0x4a, 0x29, 0xff, 0x89, 0x49, 0x29, 0xff, 0x89, 0x4a, 0x28, 0xff, 0x8a, 0x4a, 0x28, 0xff, 0x8d, 0x4c, 0x2a, 0xff, 0x8d, 0x4e, 0x2b, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x8c, 0x50, 0x2c, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x92, 0x4f, 0x2a, 0xff, 0x90, 0x4e, 0x2a, 0xff, 0x91, 0x50, 0x2a, 0xff, 0x90, 0x4e, 0x2b, 0xff, 0x92, 0x4f, 0x2b, 0xff, 0x94, 0x51, 0x2c, 0xff, 0x95, 0x55, 0x2c, 0xff, 0x96, 0x55, 0x2c, 0xff, 0x8e, 0x4e, 0x2b, 0xff, 0x8a, 0x4a, 0x29, 0xff, 0x8a, 0x4c, 0x29, 0xff, 0x8a, 0x4d, 0x29, 0xff, 0x8b, 0x4e, 0x2a, 0xff, 0x8c, 0x4d, 0x2a, 0xff, 0x8d, 0x4e, 0x2a, 0xff, 0x8d, 0x4e, 0x2a, 0xff, 0x8e, 0x4d, 0x2b, 0xff, 0x8e, 0x4e, 0x2a, 0xff, 0x8f, 0x4e, 0x2b, 0xff, 0x8f, 0x4e, 0x2b, 0xff, 0x8f, 0x4f, 0x2b, 0xff, 0x90, 0x4f, 0x2c, 0xff, 0x91, 0x50, 0x2c, 0xff, 0x92, 0x52, 0x2d, 0xff, 0x93, 0x53, 0x2d, 0xff, 0x98, 0x5a, 0x31, 0xff, 0xa7, 0x69, 0x39, 0xff, 0xb3, 0x74, 0x41, 0xff, 0xa7, 0x6d, 0x35, 0xff, 0xab, 0x70, 0x38, 0xff, 0xad, 0x72, 0x39, 0xff, 0xaf, 0x73, 0x3a, 0xff, 0xaf, 0x73, 0x39, 0xff, 0xb1, 0x74, 0x3a, 0xff, 0xb2, 0x75, 0x3b, 0xff, 0xb3, 0x77, 0x3b, 0xff, 0xaf, 0x74, 0x3c, 0xff, 0xab, 0x6e, 0x37, 0xff, 0xab, 0x6f, 0x37, 0xff, 0xab, 0x6f, 0x38, 0xff, 0xac, 0x6f, 0x38, 0xff, 0xae, 0x71, 0x38, 0xff, 0xb0, 0x73, 0x39, 0xff, + 0xaf, 0x73, 0x38, 0xff, 0xb0, 0x73, 0x3a, 0xff, 0xb3, 0x76, 0x3b, 0xff, 0xb6, 0x76, 0x3c, 0xff, 0xb8, 0x79, 0x40, 0xff, 0xb8, 0x7a, 0x40, 0xff, 0xbb, 0x7c, 0x44, 0xff, 0xba, 0x7b, 0x42, 0xff, 0xc0, 0x81, 0x49, 0xff, 0xc4, 0x84, 0x49, 0xff, 0xc8, 0x88, 0x4c, 0xff, 0xc5, 0x86, 0x4d, 0xff, 0xcb, 0x8e, 0x53, 0xff, 0xd0, 0x91, 0x5a, 0xff, 0xcd, 0x8e, 0x5a, 0xff, 0xcd, 0x8b, 0x56, 0xff, 0xd1, 0x91, 0x5c, 0xff, 0xc6, 0x93, 0x59, 0xff, 0xb1, 0x7a, 0x45, 0xff, 0xb3, 0x76, 0x47, 0xff, 0xc0, 0x82, 0x51, 0xff, 0xb8, 0x7b, 0x4a, 0xff, 0xb7, 0x79, 0x49, 0xff, 0xb6, 0x77, 0x47, 0xff, 0xb6, 0x77, 0x46, 0xff, 0xb7, 0x77, 0x45, 0xff, 0xb5, 0x76, 0x45, 0xff, 0xb5, 0x76, 0x45, 0xff, 0xb3, 0x76, 0x45, 0xff, 0xb5, 0x76, 0x45, 0xff, 0xb5, 0x76, 0x45, 0xff, 0xb4, 0x75, 0x44, 0xff, 0xb5, 0x72, 0x45, 0xff, 0xb5, 0x76, 0x45, 0xff, 0xb8, 0x77, 0x46, 0xff, 0xb9, 0x78, 0x49, 0xff, 0xc4, 0x86, 0x4e, 0xff, 0xc6, 0x89, 0x52, 0xff, 0xd1, 0x8d, 0x57, 0xff, 0xda, 0x93, 0x58, 0xff, 0xe5, 0x9a, 0x5e, 0xff, 0xee, 0xa1, 0x63, 0xff, 0xed, 0xa6, 0x6a, 0xff, 0xed, 0xb1, 0x71, 0xff, 0xef, 0xc5, 0x7e, 0xff, 0xed, 0xd2, 0x83, 0xff, 0xed, 0xe3, 0x8d, 0xff, 0xe6, 0xe4, 0x95, 0xff, 0xe7, 0xe5, 0x9b, 0xff, 0xe9, 0xe5, 0xa3, 0xff, 0xe8, 0xe4, 0xaa, 0xff, 0xea, 0xe4, 0xac, 0xff, 0xe8, 0xe4, 0xa4, 0xff, 0xe7, 0xe6, 0x9f, 0xff, 0xe8, 0xe4, 0x9e, 0xff, 0xea, 0xe4, 0xa0, 0xff, 0xe9, 0xe5, 0x9b, 0xff, 0xe7, 0xe5, 0x96, 0xff, 0xeb, 0xdc, 0x92, 0xff, 0xed, 0xcb, 0x8a, 0xff, 0xc8, 0xa0, 0x6f, 0xff, 0x9e, 0x62, 0x38, 0xff, 0xa2, 0x68, 0x3f, 0xff, 0x9f, 0x62, 0x3b, 0xff, 0xa0, 0x63, 0x3a, 0xff, 0xa1, 0x63, 0x3a, 0xff, 0xa2, 0x65, 0x3a, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa2, 0x66, 0x3a, 0xff, 0xa3, 0x65, 0x3a, 0xff, 0xa5, 0x67, 0x3c, 0xff, 0xa7, 0x68, 0x3d, 0xff, 0xa6, 0x67, 0x3e, 0xff, 0xa8, 0x69, 0x3c, 0xff, 0xaa, 0x6b, 0x3f, 0xff, 0xac, 0x6d, 0x41, 0xff, 0xae, 0x70, 0x42, 0xff, 0xb1, 0x72, 0x42, 0xff, 0xb5, 0x76, 0x46, 0xff, 0xb8, 0x7a, 0x4a, 0xff, 0xbc, 0x7d, 0x4c, 0xff, 0xc0, 0x80, 0x4e, 0xff, 0xc6, 0x84, 0x51, 0xff, 0xcd, 0x89, 0x54, 0xff, 0xcf, 0x8b, 0x55, 0xff, 0xd3, 0x8f, 0x55, 0xff, 0xd6, 0x8f, 0x54, 0xff, 0xda, 0x8f, 0x56, 0xff, 0xd9, 0x8f, 0x55, 0xff, 0xcf, 0x8a, 0x51, 0xff, 0xc6, 0x85, 0x4b, 0xff, 0xb8, 0x77, 0x3c, 0xff, 0xac, 0x6b, 0x2e, 0xff, 0xaf, 0x6f, 0x32, 0xff, 0xaf, 0x72, 0x35, 0xff, 0xaf, 0x72, 0x39, 0xff, 0xb1, 0x74, 0x3d, 0xff, 0xb6, 0x7b, 0x4a, 0xff, 0xb8, 0x7f, 0x51, 0xff, 0xb7, 0x7b, 0x4b, 0xff, 0xb6, 0x77, 0x47, 0xff, 0xb2, 0x73, 0x43, 0xff, 0xaf, 0x6f, 0x43, 0xff, 0xae, 0x6f, 0x42, 0xff, 0xac, 0x6e, 0x41, 0xff, 0xaa, 0x6c, 0x3e, 0xff, 0xa2, 0x65, 0x37, 0xff, 0x9e, 0x5f, 0x33, 0xff, 0x9d, 0x5e, 0x32, 0xff, 0x9a, 0x5e, 0x30, 0xff, 0x99, 0x5c, 0x2e, 0xff, 0x99, 0x5a, 0x2e, 0xff, 0x98, 0x59, 0x2d, 0xff, 0x96, 0x59, 0x2c, 0xff, 0x96, 0x5a, 0x2d, 0xff, 0x95, 0x57, 0x2b, 0xff, 0x94, 0x56, 0x2b, 0xff, 0x94, 0x5a, 0x2c, 0xff, 0x92, 0x57, 0x2b, 0xff, 0x8f, 0x53, 0x2a, 0xff, 0x8f, 0x52, 0x29, 0xff, 0x8f, 0x51, 0x29, 0xff, 0x8e, 0x52, 0x2a, 0xff, 0x8e, 0x52, 0x2a, 0xff, 0x8d, 0x51, 0x29, 0xff, 0x8d, 0x51, 0x2a, 0xff, 0x8e, 0x52, 0x29, 0xff, 0x8d, 0x52, 0x2a, 0xff, 0x8d, 0x51, 0x29, 0xff, 0x8f, 0x53, 0x2a, 0xff, 0x8e, 0x54, 0x2a, 0xff, 0x8f, 0x52, 0x28, 0xff, 0x8f, 0x52, 0x28, 0xff, 0x8e, 0x51, 0x2a, 0xff, 0x94, 0x56, 0x2e, 0xff, 0x9d, 0x5f, 0x34, 0xff, 0x9e, 0x5f, 0x34, 0xff, 0x9a, 0x5b, 0x31, 0xff, 0x96, 0x57, 0x2e, 0xff, 0x98, 0x58, 0x2e, 0xff, 0x98, 0x58, 0x2e, 0xff, 0x94, 0x53, 0x2c, 0xff, 0x90, 0x50, 0x2a, 0xff, 0x8e, 0x4d, 0x29, 0xff, 0x8d, 0x4d, 0x29, 0xff, 0x89, 0x4b, 0x26, 0xff, 0x83, 0x44, 0x22, 0xff, 0x80, 0x41, 0x1f, 0xff, 0x7c, 0x3e, 0x1e, 0xff, 0x7a, 0x3c, 0x1d, 0xff, 0x74, 0x37, 0x19, 0xff, 0x84, 0x47, 0x26, 0xff, 0x96, 0x57, 0x32, 0xff, 0xa4, 0x65, 0x3d, 0xff, 0xac, 0x6e, 0x43, 0xff, 0xaa, 0x6c, 0x40, 0xff, 0xa7, 0x6b, 0x3e, 0xff, 0xa4, 0x67, 0x3d, 0xff, 0xa2, 0x63, 0x3a, 0xff, 0x9f, 0x60, 0x36, 0xff, 0x9c, 0x5c, 0x33, 0xff, 0x9a, 0x59, 0x32, 0xff, 0x99, 0x58, 0x31, 0xff, 0x98, 0x57, 0x31, 0xff, 0x97, 0x55, 0x2f, 0xff, 0x98, 0x56, 0x2f, 0xff, 0x9e, 0x5d, 0x34, 0xff, 0x9c, 0x5b, 0x33, 0xff, 0x9a, 0x59, 0x30, 0xff, 0x99, 0x58, 0x2f, 0xff, 0x96, 0x55, 0x2d, 0xff, 0x96, 0x54, 0x2d, 0xff, 0x96, 0x54, 0x2e, 0xff, 0x96, 0x56, 0x2e, 0xff, 0x93, 0x55, 0x2e, 0xff, 0x92, 0x55, 0x2e, 0xff, 0x92, 0x52, 0x2d, 0xff, 0x91, 0x50, 0x2c, 0xff, 0x8e, 0x4e, 0x2b, 0xff, 0x8c, 0x4c, 0x29, 0xff, 0x89, 0x4a, 0x28, 0xff, 0x85, 0x46, 0x27, 0xff, 0x86, 0x46, 0x27, 0xff, 0x86, 0x46, 0x27, 0xff, 0x87, 0x47, 0x27, 0xff, 0x89, 0x48, 0x29, 0xff, 0x8b, 0x4c, 0x2a, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8b, 0x4d, 0x2a, 0xff, 0x8d, 0x4f, 0x2b, 0xff, 0x8f, 0x4f, 0x2b, 0xff, 0x90, 0x4e, 0x2a, 0xff, 0x90, 0x4f, 0x29, 0xff, 0x8f, 0x4e, 0x2a, 0xff, 0x90, 0x4f, 0x2a, 0xff, 0x91, 0x4f, 0x2b, 0xff, 0x93, 0x51, 0x2b, 0xff, 0x93, 0x52, 0x2c, 0xff, 0x95, 0x54, 0x2b, 0xff, 0x8f, 0x4f, 0x2b, 0xff, 0x89, 0x4a, 0x29, 0xff, 0x8a, 0x4b, 0x29, 0xff, 0x8a, 0x4d, 0x29, 0xff, 0x8b, 0x4d, 0x2a, 0xff, 0x8b, 0x4d, 0x2a, 0xff, 0x8b, 0x4e, 0x2a, 0xff, 0x8e, 0x4e, 0x2b, 0xff, 0x8e, 0x4d, 0x2b, 0xff, 0x8f, 0x4e, 0x2a, 0xff, 0x8d, 0x4d, 0x2b, 0xff, 0x8e, 0x4d, 0x2a, 0xff, 0x8f, 0x4f, 0x2b, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x92, 0x51, 0x2b, 0xff, 0x98, 0x5b, 0x31, 0xff, 0xa3, 0x63, 0x36, 0xff, 0xa8, 0x6c, 0x38, 0xff, 0xac, 0x6f, 0x3c, 0xff, 0xa3, 0x69, 0x33, 0xff, 0xa7, 0x6c, 0x33, 0xff, 0xa7, 0x6c, 0x36, 0xff, 0xaa, 0x6e, 0x36, 0xff, 0xaa, 0x6f, 0x33, 0xff, 0xab, 0x6f, 0x38, 0xff, 0xab, 0x72, 0x35, 0xff, 0xad, 0x72, 0x38, 0xff, 0xad, 0x72, 0x37, 0xff, 0xac, 0x72, 0x38, 0xff, 0xa7, 0x69, 0x35, 0xff, 0xa8, 0x6b, 0x34, 0xff, 0xaa, 0x6b, 0x36, 0xff, 0xac, 0x6e, 0x35, 0xff, 0xae, 0x6f, 0x38, 0xff, + 0xac, 0x6e, 0x36, 0xff, 0xae, 0x70, 0x37, 0xff, 0xaf, 0x72, 0x39, 0xff, 0xb3, 0x73, 0x3b, 0xff, 0xb3, 0x76, 0x3d, 0xff, 0xb5, 0x78, 0x3f, 0xff, 0xb7, 0x7b, 0x42, 0xff, 0xb8, 0x7b, 0x43, 0xff, 0xbe, 0x80, 0x47, 0xff, 0xc0, 0x83, 0x49, 0xff, 0xc0, 0x81, 0x49, 0xff, 0xc3, 0x86, 0x4c, 0xff, 0xc9, 0x8c, 0x55, 0xff, 0xc9, 0x8f, 0x58, 0xff, 0xcd, 0x8d, 0x58, 0xff, 0xca, 0x89, 0x56, 0xff, 0xc6, 0x8a, 0x56, 0xff, 0xb8, 0x81, 0x53, 0xff, 0x9b, 0x61, 0x32, 0xff, 0xa2, 0x63, 0x36, 0xff, 0xb9, 0x79, 0x4b, 0xff, 0xbc, 0x7f, 0x4e, 0xff, 0xb9, 0x7b, 0x4b, 0xff, 0xb8, 0x7a, 0x49, 0xff, 0xb7, 0x79, 0x49, 0xff, 0xb7, 0x77, 0x47, 0xff, 0xb5, 0x76, 0x45, 0xff, 0xb5, 0x76, 0x45, 0xff, 0xb5, 0x76, 0x45, 0xff, 0xb5, 0x76, 0x45, 0xff, 0xb5, 0x75, 0x45, 0xff, 0xb5, 0x75, 0x47, 0xff, 0xb5, 0x76, 0x45, 0xff, 0xb4, 0x77, 0x46, 0xff, 0xb8, 0x77, 0x48, 0xff, 0xba, 0x7a, 0x4a, 0xff, 0xce, 0x8d, 0x56, 0xff, 0xcd, 0x8b, 0x54, 0xff, 0xd1, 0x8d, 0x56, 0xff, 0xde, 0x96, 0x5f, 0xff, 0xe6, 0x9d, 0x62, 0xff, 0xed, 0xa3, 0x6a, 0xff, 0xee, 0xaa, 0x6d, 0xff, 0xee, 0xbc, 0x79, 0xff, 0xef, 0xd0, 0x81, 0xff, 0xee, 0xde, 0x8a, 0xff, 0xe4, 0xe4, 0x92, 0xff, 0xe6, 0xe6, 0x9b, 0xff, 0xe8, 0xe3, 0xa8, 0xff, 0xee, 0xe7, 0xb4, 0xff, 0xec, 0xe5, 0xbc, 0xff, 0xef, 0xe4, 0xc3, 0xff, 0xee, 0xe6, 0xbb, 0xff, 0xeb, 0xe4, 0xb2, 0xff, 0xeb, 0xe7, 0xb4, 0xff, 0xeb, 0xe5, 0xb1, 0xff, 0xed, 0xe5, 0xb3, 0xff, 0xe9, 0xe1, 0xaf, 0xff, 0xd5, 0xc0, 0x9d, 0xff, 0x97, 0x67, 0x44, 0xff, 0x96, 0x5d, 0x39, 0xff, 0x9c, 0x66, 0x40, 0xff, 0x9f, 0x66, 0x3d, 0xff, 0xa1, 0x67, 0x3e, 0xff, 0xa3, 0x66, 0x3d, 0xff, 0xa4, 0x66, 0x3c, 0xff, 0xa4, 0x68, 0x3c, 0xff, 0xa5, 0x68, 0x3c, 0xff, 0xa6, 0x67, 0x3b, 0xff, 0xa6, 0x68, 0x3c, 0xff, 0xa7, 0x69, 0x3c, 0xff, 0xa8, 0x69, 0x3d, 0xff, 0xa9, 0x69, 0x3e, 0xff, 0xab, 0x6d, 0x40, 0xff, 0xac, 0x6e, 0x3f, 0xff, 0xad, 0x6e, 0x41, 0xff, 0xaf, 0x70, 0x42, 0xff, 0xb3, 0x73, 0x43, 0xff, 0xb5, 0x76, 0x45, 0xff, 0xb7, 0x78, 0x47, 0xff, 0xbb, 0x7b, 0x49, 0xff, 0xbf, 0x7f, 0x4a, 0xff, 0xc3, 0x82, 0x4d, 0xff, 0xcb, 0x88, 0x51, 0xff, 0xd1, 0x8d, 0x54, 0xff, 0xd5, 0x8d, 0x56, 0xff, 0xd9, 0x8e, 0x55, 0xff, 0xdd, 0x8f, 0x56, 0xff, 0xe0, 0x91, 0x56, 0xff, 0xe2, 0x93, 0x55, 0xff, 0xdc, 0x8f, 0x54, 0xff, 0xd6, 0x8c, 0x54, 0xff, 0xcf, 0x88, 0x4e, 0xff, 0xb7, 0x76, 0x3a, 0xff, 0xb0, 0x71, 0x34, 0xff, 0xb3, 0x74, 0x39, 0xff, 0xb4, 0x75, 0x3f, 0xff, 0xb8, 0x7d, 0x4c, 0xff, 0xbb, 0x81, 0x54, 0xff, 0xb8, 0x7f, 0x50, 0xff, 0xb8, 0x7c, 0x4b, 0xff, 0xb7, 0x78, 0x47, 0xff, 0xb4, 0x75, 0x44, 0xff, 0xb1, 0x72, 0x43, 0xff, 0xad, 0x6f, 0x40, 0xff, 0xa6, 0x69, 0x3a, 0xff, 0xa1, 0x65, 0x36, 0xff, 0xa0, 0x64, 0x35, 0xff, 0x9e, 0x62, 0x32, 0xff, 0x9d, 0x60, 0x31, 0xff, 0x9c, 0x5d, 0x31, 0xff, 0x99, 0x5b, 0x2e, 0xff, 0x98, 0x5a, 0x2d, 0xff, 0x99, 0x5a, 0x2e, 0xff, 0x96, 0x5a, 0x2c, 0xff, 0x95, 0x59, 0x2c, 0xff, 0x96, 0x59, 0x2c, 0xff, 0x94, 0x57, 0x2b, 0xff, 0x91, 0x54, 0x2a, 0xff, 0x90, 0x52, 0x2a, 0xff, 0x90, 0x51, 0x2a, 0xff, 0x8e, 0x51, 0x2a, 0xff, 0x8f, 0x51, 0x28, 0xff, 0x90, 0x52, 0x28, 0xff, 0x8e, 0x51, 0x2a, 0xff, 0x8f, 0x52, 0x29, 0xff, 0x8e, 0x51, 0x2a, 0xff, 0x8e, 0x52, 0x2a, 0xff, 0x8e, 0x51, 0x29, 0xff, 0x8e, 0x51, 0x2a, 0xff, 0x8e, 0x52, 0x2a, 0xff, 0x8f, 0x52, 0x28, 0xff, 0x8f, 0x52, 0x29, 0xff, 0x8f, 0x52, 0x28, 0xff, 0x95, 0x59, 0x2e, 0xff, 0xa0, 0x62, 0x36, 0xff, 0xa0, 0x60, 0x35, 0xff, 0x9b, 0x5d, 0x31, 0xff, 0x99, 0x5b, 0x2f, 0xff, 0x98, 0x57, 0x2d, 0xff, 0x98, 0x58, 0x2d, 0xff, 0x96, 0x56, 0x2c, 0xff, 0x93, 0x53, 0x2a, 0xff, 0x91, 0x50, 0x2a, 0xff, 0x90, 0x4f, 0x29, 0xff, 0x8b, 0x4b, 0x28, 0xff, 0x86, 0x46, 0x27, 0xff, 0x83, 0x44, 0x26, 0xff, 0x7e, 0x40, 0x21, 0xff, 0x7a, 0x3d, 0x1d, 0xff, 0x75, 0x39, 0x18, 0xff, 0x8f, 0x52, 0x2d, 0xff, 0x99, 0x5a, 0x35, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x92, 0x53, 0x2e, 0xff, 0xa5, 0x68, 0x3d, 0xff, 0xab, 0x6c, 0x40, 0xff, 0xa8, 0x6a, 0x3d, 0xff, 0xa4, 0x67, 0x3c, 0xff, 0xa1, 0x63, 0x38, 0xff, 0x9f, 0x60, 0x36, 0xff, 0x9c, 0x5c, 0x33, 0xff, 0x9a, 0x5a, 0x30, 0xff, 0x99, 0x57, 0x31, 0xff, 0x97, 0x57, 0x30, 0xff, 0x95, 0x55, 0x2f, 0xff, 0x98, 0x56, 0x30, 0xff, 0x9c, 0x5c, 0x32, 0xff, 0x9b, 0x5b, 0x32, 0xff, 0x9a, 0x59, 0x30, 0xff, 0x97, 0x56, 0x2f, 0xff, 0x94, 0x52, 0x2d, 0xff, 0x96, 0x54, 0x2c, 0xff, 0x94, 0x53, 0x2d, 0xff, 0x94, 0x53, 0x2c, 0xff, 0x93, 0x51, 0x2c, 0xff, 0x90, 0x50, 0x2b, 0xff, 0x8f, 0x4e, 0x2b, 0xff, 0x8c, 0x4d, 0x29, 0xff, 0x89, 0x4b, 0x28, 0xff, 0x89, 0x4a, 0x28, 0xff, 0x87, 0x48, 0x27, 0xff, 0x86, 0x46, 0x27, 0xff, 0x86, 0x46, 0x27, 0xff, 0x85, 0x45, 0x25, 0xff, 0x87, 0x47, 0x27, 0xff, 0x89, 0x48, 0x28, 0xff, 0x8a, 0x4c, 0x29, 0xff, 0x8b, 0x4d, 0x29, 0xff, 0x8d, 0x4c, 0x2a, 0xff, 0x8d, 0x4c, 0x2a, 0xff, 0x8d, 0x4c, 0x2a, 0xff, 0x8d, 0x4d, 0x29, 0xff, 0x8d, 0x4c, 0x29, 0xff, 0x90, 0x4d, 0x2a, 0xff, 0x90, 0x4d, 0x2a, 0xff, 0x91, 0x4f, 0x2b, 0xff, 0x92, 0x51, 0x2b, 0xff, 0x92, 0x51, 0x2b, 0xff, 0x91, 0x4f, 0x2b, 0xff, 0x8b, 0x4b, 0x29, 0xff, 0x8a, 0x4b, 0x29, 0xff, 0x8a, 0x4d, 0x29, 0xff, 0x8b, 0x4d, 0x2a, 0xff, 0x8b, 0x4c, 0x2a, 0xff, 0x8d, 0x4e, 0x2a, 0xff, 0x8d, 0x4f, 0x2a, 0xff, 0x8d, 0x4d, 0x2b, 0xff, 0x8d, 0x4d, 0x2b, 0xff, 0x8e, 0x4d, 0x2b, 0xff, 0x90, 0x4f, 0x2b, 0xff, 0x90, 0x50, 0x2b, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x93, 0x52, 0x2d, 0xff, 0x98, 0x58, 0x2f, 0xff, 0x9f, 0x5f, 0x33, 0xff, 0xa1, 0x63, 0x33, 0xff, 0xa4, 0x66, 0x35, 0xff, 0xa8, 0x6a, 0x37, 0xff, 0x9e, 0x64, 0x30, 0xff, 0xa2, 0x67, 0x32, 0xff, 0xa4, 0x69, 0x33, 0xff, 0xa6, 0x6a, 0x33, 0xff, 0xa8, 0x69, 0x33, 0xff, 0xa6, 0x6a, 0x33, 0xff, 0xa7, 0x6b, 0x33, 0xff, 0xa9, 0x6b, 0x34, 0xff, 0xaa, 0x6f, 0x35, 0xff, 0xab, 0x6f, 0x36, 0xff, 0xa8, 0x6c, 0x34, 0xff, 0xa7, 0x69, 0x35, 0xff, 0xa7, 0x6a, 0x35, 0xff, 0xa8, 0x6b, 0x36, 0xff, 0xac, 0x6c, 0x36, 0xff, + 0xaa, 0x6a, 0x36, 0xff, 0xab, 0x6c, 0x37, 0xff, 0xad, 0x6f, 0x39, 0xff, 0xaf, 0x73, 0x3c, 0xff, 0xb0, 0x74, 0x3c, 0xff, 0xb3, 0x73, 0x3d, 0xff, 0xb4, 0x77, 0x40, 0xff, 0xb7, 0x79, 0x43, 0xff, 0xbd, 0x80, 0x48, 0xff, 0xbe, 0x80, 0x46, 0xff, 0xbf, 0x80, 0x49, 0xff, 0xc0, 0x82, 0x4a, 0xff, 0xc4, 0x89, 0x51, 0xff, 0xc8, 0x8d, 0x58, 0xff, 0xc1, 0x83, 0x51, 0xff, 0xba, 0x7b, 0x4c, 0xff, 0xb7, 0x7b, 0x4e, 0xff, 0xbd, 0x86, 0x56, 0xff, 0x9c, 0x60, 0x33, 0xff, 0x9e, 0x5f, 0x33, 0xff, 0xa0, 0x63, 0x35, 0xff, 0xba, 0x7d, 0x4c, 0xff, 0xbd, 0x7f, 0x4e, 0xff, 0xb9, 0x7b, 0x4b, 0xff, 0xb8, 0x79, 0x49, 0xff, 0xb8, 0x7a, 0x49, 0xff, 0xb7, 0x77, 0x47, 0xff, 0xb6, 0x77, 0x46, 0xff, 0xb6, 0x77, 0x46, 0xff, 0xb5, 0x76, 0x45, 0xff, 0xb6, 0x77, 0x46, 0xff, 0xb6, 0x76, 0x45, 0xff, 0xb6, 0x76, 0x45, 0xff, 0xb6, 0x77, 0x47, 0xff, 0xb8, 0x79, 0x49, 0xff, 0xba, 0x79, 0x4b, 0xff, 0xd1, 0x8f, 0x59, 0xff, 0xd6, 0x91, 0x57, 0xff, 0xdb, 0x95, 0x5b, 0xff, 0xe0, 0x99, 0x5f, 0xff, 0xec, 0x9f, 0x64, 0xff, 0xec, 0xa3, 0x69, 0xff, 0xef, 0xb0, 0x71, 0xff, 0xf0, 0xc6, 0x7e, 0xff, 0xef, 0xd8, 0x85, 0xff, 0xe7, 0xe2, 0x8f, 0xff, 0xe4, 0xe5, 0x98, 0xff, 0xe7, 0xe5, 0xa2, 0xff, 0xe9, 0xe5, 0xad, 0xff, 0xec, 0xe5, 0xbb, 0xff, 0xf0, 0xe5, 0xd1, 0xff, 0xf1, 0xe5, 0xda, 0xff, 0xf1, 0xe6, 0xd5, 0xff, 0xf0, 0xe7, 0xd0, 0xff, 0xf1, 0xe8, 0xd5, 0xff, 0xef, 0xe3, 0xd4, 0xff, 0xd6, 0xc1, 0xaa, 0xff, 0xa8, 0x82, 0x6a, 0xff, 0x89, 0x4e, 0x30, 0xff, 0x97, 0x60, 0x41, 0xff, 0x9a, 0x66, 0x42, 0xff, 0x9d, 0x68, 0x43, 0xff, 0x9f, 0x68, 0x43, 0xff, 0xa1, 0x6a, 0x41, 0xff, 0xa3, 0x6a, 0x41, 0xff, 0xa5, 0x6c, 0x40, 0xff, 0xa8, 0x6b, 0x40, 0xff, 0xa9, 0x6c, 0x3f, 0xff, 0xaa, 0x6b, 0x3e, 0xff, 0xa9, 0x6a, 0x3c, 0xff, 0xa9, 0x6a, 0x3c, 0xff, 0xa9, 0x6b, 0x3d, 0xff, 0xaa, 0x6e, 0x3e, 0xff, 0xac, 0x6f, 0x3f, 0xff, 0xaf, 0x70, 0x40, 0xff, 0xaf, 0x72, 0x42, 0xff, 0xb0, 0x73, 0x43, 0xff, 0xb3, 0x75, 0x44, 0xff, 0xb5, 0x76, 0x45, 0xff, 0xb7, 0x78, 0x48, 0xff, 0xba, 0x7b, 0x49, 0xff, 0xbd, 0x7d, 0x4b, 0xff, 0xc2, 0x82, 0x4e, 0xff, 0xcb, 0x89, 0x51, 0xff, 0xd4, 0x8e, 0x54, 0xff, 0xd9, 0x92, 0x57, 0xff, 0xdd, 0x94, 0x5b, 0xff, 0xdf, 0x93, 0x58, 0xff, 0xe1, 0x92, 0x56, 0xff, 0xe5, 0x94, 0x59, 0xff, 0xe6, 0x93, 0x57, 0xff, 0xdf, 0x8f, 0x53, 0xff, 0xe5, 0x93, 0x56, 0xff, 0xe9, 0x96, 0x59, 0xff, 0xd0, 0x89, 0x4f, 0xff, 0xb9, 0x78, 0x3f, 0xff, 0xb4, 0x76, 0x3e, 0xff, 0xbb, 0x7f, 0x4c, 0xff, 0xbe, 0x82, 0x57, 0xff, 0xbb, 0x81, 0x53, 0xff, 0xbb, 0x7e, 0x4e, 0xff, 0xb9, 0x7b, 0x4b, 0xff, 0xb7, 0x78, 0x48, 0xff, 0xb4, 0x76, 0x46, 0xff, 0xab, 0x6f, 0x40, 0xff, 0xa5, 0x68, 0x38, 0xff, 0xa3, 0x67, 0x38, 0xff, 0xa1, 0x65, 0x36, 0xff, 0xa0, 0x63, 0x34, 0xff, 0x9f, 0x61, 0x32, 0xff, 0x9d, 0x5f, 0x30, 0xff, 0x9c, 0x5e, 0x30, 0xff, 0x9a, 0x5c, 0x2f, 0xff, 0x99, 0x5b, 0x2e, 0xff, 0x99, 0x5b, 0x2f, 0xff, 0x98, 0x5a, 0x2e, 0xff, 0x96, 0x59, 0x2d, 0xff, 0x92, 0x56, 0x2b, 0xff, 0x90, 0x54, 0x2a, 0xff, 0x90, 0x53, 0x2a, 0xff, 0x90, 0x53, 0x2a, 0xff, 0x90, 0x53, 0x2a, 0xff, 0x8f, 0x54, 0x28, 0xff, 0x8f, 0x54, 0x28, 0xff, 0x8e, 0x52, 0x29, 0xff, 0x8f, 0x51, 0x29, 0xff, 0x8f, 0x52, 0x28, 0xff, 0x8e, 0x52, 0x28, 0xff, 0x8f, 0x51, 0x2a, 0xff, 0x8f, 0x51, 0x2a, 0xff, 0x90, 0x53, 0x29, 0xff, 0x90, 0x53, 0x29, 0xff, 0x8f, 0x54, 0x29, 0xff, 0x8f, 0x52, 0x29, 0xff, 0x98, 0x5b, 0x31, 0xff, 0xa2, 0x66, 0x39, 0xff, 0xa1, 0x64, 0x39, 0xff, 0x9e, 0x5f, 0x34, 0xff, 0x9b, 0x5c, 0x30, 0xff, 0x99, 0x59, 0x2e, 0xff, 0x98, 0x58, 0x2c, 0xff, 0x97, 0x58, 0x2c, 0xff, 0x95, 0x55, 0x2b, 0xff, 0x92, 0x53, 0x2b, 0xff, 0x8f, 0x50, 0x2b, 0xff, 0x89, 0x4b, 0x28, 0xff, 0x86, 0x47, 0x27, 0xff, 0x82, 0x43, 0x22, 0xff, 0x7e, 0x40, 0x1f, 0xff, 0x7b, 0x3f, 0x1f, 0xff, 0x73, 0x37, 0x17, 0xff, 0x92, 0x53, 0x2e, 0xff, 0x9b, 0x5b, 0x36, 0xff, 0x95, 0x54, 0x30, 0xff, 0x91, 0x52, 0x2d, 0xff, 0x8c, 0x4b, 0x2a, 0xff, 0x97, 0x57, 0x31, 0xff, 0xa3, 0x64, 0x3a, 0xff, 0xa6, 0x67, 0x3c, 0xff, 0xa4, 0x65, 0x38, 0xff, 0xa1, 0x62, 0x37, 0xff, 0x9e, 0x5f, 0x36, 0xff, 0x9e, 0x5d, 0x34, 0xff, 0x9c, 0x5b, 0x33, 0xff, 0x99, 0x58, 0x31, 0xff, 0x96, 0x55, 0x2f, 0xff, 0x95, 0x54, 0x2e, 0xff, 0x99, 0x58, 0x31, 0xff, 0x9d, 0x5c, 0x33, 0xff, 0x9c, 0x5c, 0x33, 0xff, 0x9a, 0x58, 0x32, 0xff, 0x97, 0x56, 0x2f, 0xff, 0x96, 0x55, 0x2d, 0xff, 0x95, 0x53, 0x2c, 0xff, 0x94, 0x53, 0x2d, 0xff, 0x93, 0x52, 0x2d, 0xff, 0x91, 0x51, 0x2c, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x8e, 0x4d, 0x2b, 0xff, 0x8d, 0x4c, 0x28, 0xff, 0x8a, 0x4a, 0x29, 0xff, 0x89, 0x49, 0x28, 0xff, 0x87, 0x47, 0x26, 0xff, 0x85, 0x45, 0x25, 0xff, 0x85, 0x45, 0x25, 0xff, 0x85, 0x46, 0x26, 0xff, 0x87, 0x48, 0x27, 0xff, 0x89, 0x49, 0x27, 0xff, 0x89, 0x4b, 0x28, 0xff, 0x8b, 0x4b, 0x29, 0xff, 0x8d, 0x4c, 0x29, 0xff, 0x8d, 0x4c, 0x29, 0xff, 0x8d, 0x4c, 0x29, 0xff, 0x8d, 0x4c, 0x29, 0xff, 0x8e, 0x4d, 0x2a, 0xff, 0x8e, 0x4d, 0x2a, 0xff, 0x90, 0x4d, 0x2b, 0xff, 0x91, 0x4e, 0x2b, 0xff, 0x93, 0x50, 0x2b, 0xff, 0x92, 0x50, 0x2b, 0xff, 0x8b, 0x4b, 0x29, 0xff, 0x8a, 0x4b, 0x29, 0xff, 0x8a, 0x4c, 0x29, 0xff, 0x8b, 0x4d, 0x2a, 0xff, 0x8b, 0x4d, 0x2a, 0xff, 0x8d, 0x4f, 0x2a, 0xff, 0x8d, 0x4e, 0x2a, 0xff, 0x8d, 0x4d, 0x2b, 0xff, 0x8f, 0x4d, 0x2b, 0xff, 0x8f, 0x4d, 0x2b, 0xff, 0x90, 0x4f, 0x2b, 0xff, 0x91, 0x52, 0x2c, 0xff, 0x93, 0x54, 0x2c, 0xff, 0x98, 0x59, 0x2e, 0xff, 0x9c, 0x5d, 0x30, 0xff, 0x9d, 0x5e, 0x30, 0xff, 0x9f, 0x60, 0x32, 0xff, 0xa2, 0x63, 0x33, 0xff, 0xa3, 0x64, 0x34, 0xff, 0x9c, 0x5d, 0x2e, 0xff, 0x9e, 0x60, 0x2f, 0xff, 0xa0, 0x64, 0x30, 0xff, 0xa2, 0x65, 0x32, 0xff, 0xa3, 0x66, 0x33, 0xff, 0xa2, 0x66, 0x31, 0xff, 0xa2, 0x66, 0x32, 0xff, 0xa4, 0x68, 0x32, 0xff, 0xa5, 0x69, 0x32, 0xff, 0xa7, 0x6a, 0x33, 0xff, 0xa8, 0x6b, 0x35, 0xff, 0xa5, 0x69, 0x31, 0xff, 0xa5, 0x66, 0x33, 0xff, 0xa7, 0x6a, 0x34, 0xff, 0xaa, 0x6b, 0x36, 0xff, + 0xa6, 0x69, 0x35, 0xff, 0xa8, 0x6d, 0x35, 0xff, 0xab, 0x6f, 0x38, 0xff, 0xad, 0x6e, 0x37, 0xff, 0xad, 0x72, 0x3c, 0xff, 0xaf, 0x73, 0x3c, 0xff, 0xb2, 0x77, 0x3f, 0xff, 0xb3, 0x74, 0x40, 0xff, 0xb9, 0x7b, 0x45, 0xff, 0xba, 0x7b, 0x45, 0xff, 0xbc, 0x7f, 0x47, 0xff, 0xbd, 0x80, 0x49, 0xff, 0xbe, 0x82, 0x4d, 0xff, 0xb8, 0x7c, 0x4c, 0xff, 0xb0, 0x74, 0x46, 0xff, 0xaf, 0x71, 0x44, 0xff, 0xb5, 0x78, 0x4a, 0xff, 0xb8, 0x7f, 0x50, 0xff, 0x9d, 0x60, 0x34, 0xff, 0x9b, 0x5d, 0x32, 0xff, 0x9b, 0x5d, 0x33, 0xff, 0x9f, 0x62, 0x34, 0xff, 0xb8, 0x78, 0x48, 0xff, 0xc0, 0x80, 0x50, 0xff, 0xbb, 0x7b, 0x4b, 0xff, 0xb9, 0x7a, 0x49, 0xff, 0xb8, 0x7a, 0x4a, 0xff, 0xb8, 0x78, 0x49, 0xff, 0xb7, 0x78, 0x48, 0xff, 0xb6, 0x77, 0x48, 0xff, 0xb5, 0x77, 0x46, 0xff, 0xb7, 0x76, 0x46, 0xff, 0xb7, 0x77, 0x46, 0xff, 0xb7, 0x77, 0x47, 0xff, 0xb8, 0x79, 0x49, 0xff, 0xba, 0x7a, 0x4a, 0xff, 0xd7, 0x90, 0x5a, 0xff, 0xd7, 0x90, 0x57, 0xff, 0xdf, 0x96, 0x5b, 0xff, 0xe8, 0x9c, 0x62, 0xff, 0xee, 0xa2, 0x66, 0xff, 0xef, 0xa7, 0x6a, 0xff, 0xee, 0xb2, 0x74, 0xff, 0xef, 0xc0, 0x7d, 0xff, 0xec, 0xda, 0x87, 0xff, 0xe8, 0xe6, 0x91, 0xff, 0xe5, 0xe6, 0x9a, 0xff, 0xe8, 0xe5, 0xa5, 0xff, 0xec, 0xe5, 0xb3, 0xff, 0xef, 0xe6, 0xc3, 0xff, 0xf0, 0xe4, 0xd5, 0xff, 0xf1, 0xe7, 0xdd, 0xff, 0xf1, 0xe7, 0xdc, 0xff, 0xf2, 0xe8, 0xde, 0xff, 0xe8, 0xda, 0xcd, 0xff, 0xb0, 0x8a, 0x75, 0xff, 0x96, 0x62, 0x46, 0xff, 0x94, 0x5d, 0x40, 0xff, 0x96, 0x5f, 0x44, 0xff, 0x99, 0x62, 0x45, 0xff, 0x9a, 0x66, 0x46, 0xff, 0x9c, 0x6a, 0x44, 0xff, 0xa0, 0x6e, 0x46, 0xff, 0xa3, 0x6f, 0x45, 0xff, 0xa6, 0x6f, 0x44, 0xff, 0xa8, 0x71, 0x44, 0xff, 0xaa, 0x70, 0x44, 0xff, 0xac, 0x72, 0x44, 0xff, 0xad, 0x6f, 0x42, 0xff, 0xac, 0x6d, 0x40, 0xff, 0xab, 0x6c, 0x3e, 0xff, 0xab, 0x6d, 0x3e, 0xff, 0xac, 0x6d, 0x40, 0xff, 0xaf, 0x72, 0x41, 0xff, 0xb0, 0x73, 0x42, 0xff, 0xb1, 0x73, 0x42, 0xff, 0xb3, 0x76, 0x45, 0xff, 0xb3, 0x78, 0x47, 0xff, 0xb6, 0x7a, 0x49, 0xff, 0xb9, 0x7c, 0x4a, 0xff, 0xbb, 0x7f, 0x4b, 0xff, 0xbd, 0x81, 0x4c, 0xff, 0xc1, 0x83, 0x4e, 0xff, 0xc8, 0x88, 0x4f, 0xff, 0xd3, 0x8c, 0x54, 0xff, 0xd9, 0x91, 0x59, 0xff, 0xe0, 0x95, 0x5d, 0xff, 0xe2, 0x94, 0x5c, 0xff, 0xe1, 0x94, 0x59, 0xff, 0xe3, 0x91, 0x55, 0xff, 0xe9, 0x94, 0x58, 0xff, 0xe6, 0x95, 0x59, 0xff, 0xde, 0x90, 0x54, 0xff, 0xe5, 0x91, 0x55, 0xff, 0xe9, 0x93, 0x5a, 0xff, 0xe3, 0x92, 0x58, 0xff, 0xcc, 0x86, 0x4c, 0xff, 0xba, 0x80, 0x4c, 0xff, 0xc1, 0x84, 0x58, 0xff, 0xbf, 0x84, 0x56, 0xff, 0xbe, 0x83, 0x51, 0xff, 0xbd, 0x7e, 0x4c, 0xff, 0xb9, 0x79, 0x48, 0xff, 0xaf, 0x73, 0x41, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xa7, 0x6c, 0x3c, 0xff, 0xa6, 0x6a, 0x39, 0xff, 0xa4, 0x68, 0x36, 0xff, 0xa3, 0x65, 0x34, 0xff, 0xa1, 0x63, 0x34, 0xff, 0x9f, 0x61, 0x32, 0xff, 0x9d, 0x61, 0x30, 0xff, 0x9d, 0x5f, 0x30, 0xff, 0x9b, 0x5e, 0x30, 0xff, 0x9a, 0x5c, 0x2f, 0xff, 0x99, 0x5b, 0x2f, 0xff, 0x96, 0x58, 0x2c, 0xff, 0x92, 0x55, 0x2a, 0xff, 0x91, 0x55, 0x2a, 0xff, 0x90, 0x54, 0x2a, 0xff, 0x90, 0x53, 0x29, 0xff, 0x91, 0x53, 0x29, 0xff, 0x91, 0x54, 0x28, 0xff, 0x90, 0x54, 0x28, 0xff, 0x8f, 0x52, 0x29, 0xff, 0x8f, 0x52, 0x29, 0xff, 0x8f, 0x52, 0x29, 0xff, 0x8e, 0x51, 0x29, 0xff, 0x8e, 0x52, 0x29, 0xff, 0x90, 0x52, 0x29, 0xff, 0x90, 0x53, 0x29, 0xff, 0x90, 0x54, 0x29, 0xff, 0x90, 0x54, 0x2a, 0xff, 0x90, 0x53, 0x2a, 0xff, 0x9d, 0x5f, 0x33, 0xff, 0xa9, 0x6a, 0x3d, 0xff, 0xa5, 0x67, 0x3a, 0xff, 0xa0, 0x63, 0x35, 0xff, 0x9e, 0x5e, 0x31, 0xff, 0x9c, 0x5c, 0x2f, 0xff, 0x9a, 0x5a, 0x2f, 0xff, 0x9a, 0x59, 0x2f, 0xff, 0x97, 0x59, 0x2e, 0xff, 0x92, 0x54, 0x2c, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x89, 0x49, 0x28, 0xff, 0x85, 0x46, 0x27, 0xff, 0x81, 0x43, 0x24, 0xff, 0x7e, 0x40, 0x20, 0xff, 0x7b, 0x3d, 0x1e, 0xff, 0x7c, 0x3e, 0x1f, 0xff, 0x96, 0x58, 0x33, 0xff, 0x9b, 0x5b, 0x36, 0xff, 0x96, 0x55, 0x31, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x90, 0x4f, 0x2d, 0xff, 0x8a, 0x4b, 0x2a, 0xff, 0x8b, 0x4d, 0x2c, 0xff, 0x92, 0x55, 0x2f, 0xff, 0xa1, 0x62, 0x37, 0xff, 0xa5, 0x65, 0x39, 0xff, 0xa1, 0x61, 0x36, 0xff, 0xa0, 0x60, 0x37, 0xff, 0x9f, 0x5e, 0x34, 0xff, 0x9d, 0x5b, 0x31, 0xff, 0x99, 0x57, 0x30, 0xff, 0x96, 0x56, 0x2f, 0xff, 0x95, 0x54, 0x2e, 0xff, 0x97, 0x57, 0x30, 0xff, 0x9d, 0x5d, 0x35, 0xff, 0x9b, 0x5b, 0x35, 0xff, 0x99, 0x58, 0x32, 0xff, 0x98, 0x57, 0x30, 0xff, 0x96, 0x54, 0x2e, 0xff, 0x96, 0x54, 0x2d, 0xff, 0x94, 0x52, 0x2c, 0xff, 0x93, 0x52, 0x2c, 0xff, 0x92, 0x51, 0x2c, 0xff, 0x91, 0x50, 0x2b, 0xff, 0x8d, 0x4d, 0x2a, 0xff, 0x8b, 0x4b, 0x28, 0xff, 0x89, 0x4a, 0x28, 0xff, 0x88, 0x47, 0x28, 0xff, 0x87, 0x48, 0x27, 0xff, 0x86, 0x46, 0x26, 0xff, 0x86, 0x45, 0x25, 0xff, 0x84, 0x44, 0x26, 0xff, 0x87, 0x47, 0x26, 0xff, 0x87, 0x47, 0x27, 0xff, 0x88, 0x49, 0x28, 0xff, 0x89, 0x49, 0x27, 0xff, 0x8c, 0x4b, 0x28, 0xff, 0x8b, 0x49, 0x27, 0xff, 0x8c, 0x4b, 0x28, 0xff, 0x8d, 0x4b, 0x28, 0xff, 0x8d, 0x4c, 0x29, 0xff, 0x8f, 0x4d, 0x2a, 0xff, 0x91, 0x4e, 0x2b, 0xff, 0x91, 0x50, 0x2b, 0xff, 0x91, 0x4f, 0x2c, 0xff, 0x8c, 0x4b, 0x2a, 0xff, 0x8a, 0x4b, 0x29, 0xff, 0x8b, 0x4d, 0x29, 0xff, 0x8c, 0x4e, 0x2a, 0xff, 0x8c, 0x4c, 0x2a, 0xff, 0x8d, 0x4d, 0x2a, 0xff, 0x8d, 0x4d, 0x2b, 0xff, 0x8f, 0x4f, 0x2b, 0xff, 0x8f, 0x4d, 0x2b, 0xff, 0x90, 0x50, 0x2b, 0xff, 0x92, 0x51, 0x2c, 0xff, 0x94, 0x55, 0x2c, 0xff, 0x96, 0x57, 0x2d, 0xff, 0x99, 0x5a, 0x2f, 0xff, 0x99, 0x59, 0x2e, 0xff, 0x9a, 0x5b, 0x2f, 0xff, 0x9c, 0x5d, 0x31, 0xff, 0x9e, 0x5f, 0x31, 0xff, 0x9e, 0x60, 0x32, 0xff, 0x99, 0x5c, 0x2c, 0xff, 0x9b, 0x5e, 0x2d, 0xff, 0x9d, 0x5e, 0x2f, 0xff, 0x9e, 0x61, 0x30, 0xff, 0x9f, 0x62, 0x30, 0xff, 0x9f, 0x63, 0x30, 0xff, 0x9e, 0x63, 0x30, 0xff, 0xa1, 0x65, 0x31, 0xff, 0xa2, 0x67, 0x32, 0xff, 0xa3, 0x68, 0x32, 0xff, 0xa4, 0x66, 0x32, 0xff, 0xa5, 0x67, 0x33, 0xff, 0xa7, 0x6a, 0x34, 0xff, 0xa5, 0x68, 0x33, 0xff, 0xa5, 0x67, 0x34, 0xff, + 0xa6, 0x69, 0x35, 0xff, 0xa6, 0x68, 0x37, 0xff, 0xa9, 0x6a, 0x36, 0xff, 0xaa, 0x6f, 0x3a, 0xff, 0xab, 0x6d, 0x3a, 0xff, 0xae, 0x6f, 0x3a, 0xff, 0xaf, 0x73, 0x3d, 0xff, 0xb1, 0x75, 0x3f, 0xff, 0xb5, 0x76, 0x41, 0xff, 0xb7, 0x7a, 0x43, 0xff, 0xb7, 0x79, 0x44, 0xff, 0xb7, 0x7b, 0x45, 0xff, 0xaf, 0x6e, 0x40, 0xff, 0xaf, 0x6f, 0x42, 0xff, 0xad, 0x6f, 0x42, 0xff, 0xae, 0x6e, 0x42, 0xff, 0xaf, 0x6f, 0x44, 0xff, 0xb4, 0x77, 0x4b, 0xff, 0xa1, 0x64, 0x37, 0xff, 0x98, 0x5c, 0x30, 0xff, 0x9a, 0x5e, 0x32, 0xff, 0x9b, 0x5d, 0x33, 0xff, 0xa1, 0x65, 0x38, 0xff, 0xbc, 0x7e, 0x4e, 0xff, 0xc0, 0x80, 0x4e, 0xff, 0xbc, 0x7b, 0x4d, 0xff, 0xba, 0x7d, 0x4c, 0xff, 0xb9, 0x79, 0x4a, 0xff, 0xb8, 0x7a, 0x49, 0xff, 0xb7, 0x79, 0x49, 0xff, 0xb7, 0x77, 0x48, 0xff, 0xb7, 0x77, 0x47, 0xff, 0xb8, 0x7a, 0x49, 0xff, 0xb8, 0x7a, 0x49, 0xff, 0xb8, 0x79, 0x49, 0xff, 0xbb, 0x7a, 0x4a, 0xff, 0xd8, 0x92, 0x58, 0xff, 0xdc, 0x91, 0x58, 0xff, 0xe5, 0x98, 0x5d, 0xff, 0xef, 0x9f, 0x60, 0xff, 0xee, 0xa2, 0x66, 0xff, 0xee, 0xa9, 0x6c, 0xff, 0xed, 0xb6, 0x77, 0xff, 0xef, 0xc7, 0x82, 0xff, 0xf0, 0xdc, 0x88, 0xff, 0xe7, 0xe3, 0x91, 0xff, 0xe5, 0xe5, 0x9b, 0xff, 0xe8, 0xe3, 0xa6, 0xff, 0xeb, 0xe6, 0xb6, 0xff, 0xef, 0xe5, 0xc4, 0xff, 0xf1, 0xe6, 0xda, 0xff, 0xf1, 0xe7, 0xdd, 0xff, 0xf0, 0xe5, 0xda, 0xff, 0xd7, 0xc1, 0xb2, 0xff, 0x99, 0x68, 0x50, 0xff, 0x94, 0x5b, 0x41, 0xff, 0x95, 0x60, 0x44, 0xff, 0x95, 0x5e, 0x44, 0xff, 0x95, 0x61, 0x44, 0xff, 0x98, 0x64, 0x47, 0xff, 0x9b, 0x67, 0x49, 0xff, 0x9f, 0x6b, 0x49, 0xff, 0xa0, 0x6e, 0x49, 0xff, 0xa4, 0x71, 0x4a, 0xff, 0xa8, 0x74, 0x49, 0xff, 0xaa, 0x74, 0x47, 0xff, 0xae, 0x76, 0x47, 0xff, 0xae, 0x74, 0x45, 0xff, 0xaf, 0x73, 0x44, 0xff, 0xaf, 0x71, 0x42, 0xff, 0xae, 0x71, 0x42, 0xff, 0xaf, 0x73, 0x41, 0xff, 0xaf, 0x71, 0x42, 0xff, 0xae, 0x72, 0x41, 0xff, 0xb0, 0x74, 0x42, 0xff, 0xb3, 0x78, 0x45, 0xff, 0xb5, 0x7b, 0x48, 0xff, 0xb9, 0x7c, 0x4a, 0xff, 0xbb, 0x7d, 0x4d, 0xff, 0xbc, 0x7f, 0x4d, 0xff, 0xbe, 0x80, 0x4d, 0xff, 0xc0, 0x82, 0x4e, 0xff, 0xc3, 0x86, 0x4f, 0xff, 0xc7, 0x87, 0x52, 0xff, 0xcd, 0x8b, 0x52, 0xff, 0xd4, 0x8f, 0x55, 0xff, 0xde, 0x92, 0x59, 0xff, 0xe4, 0x93, 0x5a, 0xff, 0xe3, 0x95, 0x5b, 0xff, 0xe3, 0x94, 0x58, 0xff, 0xdd, 0x90, 0x55, 0xff, 0xd4, 0x8c, 0x53, 0xff, 0xe2, 0x93, 0x57, 0xff, 0xe6, 0x92, 0x56, 0xff, 0xe9, 0x93, 0x57, 0xff, 0xef, 0x97, 0x5b, 0xff, 0xf0, 0x99, 0x5d, 0xff, 0xe0, 0x94, 0x5d, 0xff, 0xc7, 0x8a, 0x58, 0xff, 0xc1, 0x85, 0x55, 0xff, 0xc1, 0x86, 0x54, 0xff, 0xbf, 0x82, 0x4e, 0xff, 0xb7, 0x79, 0x45, 0xff, 0xae, 0x72, 0x3f, 0xff, 0xac, 0x71, 0x3f, 0xff, 0xab, 0x6d, 0x3d, 0xff, 0xa9, 0x6b, 0x3b, 0xff, 0xa7, 0x6a, 0x38, 0xff, 0xa5, 0x68, 0x36, 0xff, 0xa4, 0x66, 0x33, 0xff, 0xa1, 0x63, 0x32, 0xff, 0xa0, 0x62, 0x32, 0xff, 0x9f, 0x61, 0x31, 0xff, 0x9e, 0x5f, 0x30, 0xff, 0x9c, 0x5e, 0x30, 0xff, 0x98, 0x5a, 0x2d, 0xff, 0x95, 0x58, 0x2b, 0xff, 0x94, 0x58, 0x2b, 0xff, 0x93, 0x56, 0x2a, 0xff, 0x92, 0x56, 0x2a, 0xff, 0x91, 0x54, 0x29, 0xff, 0x91, 0x53, 0x29, 0xff, 0x91, 0x54, 0x29, 0xff, 0x91, 0x54, 0x29, 0xff, 0x90, 0x52, 0x28, 0xff, 0x91, 0x51, 0x29, 0xff, 0x91, 0x53, 0x28, 0xff, 0x8f, 0x53, 0x29, 0xff, 0x8f, 0x53, 0x28, 0xff, 0x91, 0x53, 0x28, 0xff, 0x90, 0x52, 0x2a, 0xff, 0x90, 0x53, 0x2a, 0xff, 0x91, 0x52, 0x29, 0xff, 0x90, 0x52, 0x29, 0xff, 0x9f, 0x63, 0x38, 0xff, 0xac, 0x70, 0x41, 0xff, 0xa9, 0x6d, 0x3d, 0xff, 0xa3, 0x66, 0x37, 0xff, 0xa0, 0x61, 0x34, 0xff, 0x9e, 0x5f, 0x32, 0xff, 0x9d, 0x5d, 0x31, 0xff, 0x9c, 0x5d, 0x32, 0xff, 0x98, 0x59, 0x30, 0xff, 0x95, 0x58, 0x2f, 0xff, 0x90, 0x51, 0x2c, 0xff, 0x8b, 0x4d, 0x29, 0xff, 0x88, 0x49, 0x28, 0xff, 0x84, 0x44, 0x24, 0xff, 0x81, 0x42, 0x22, 0xff, 0x7a, 0x3c, 0x1b, 0xff, 0x8b, 0x4d, 0x28, 0xff, 0x9d, 0x5e, 0x36, 0xff, 0x9c, 0x5c, 0x35, 0xff, 0x97, 0x57, 0x32, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x8f, 0x4e, 0x2d, 0xff, 0x8c, 0x4c, 0x2b, 0xff, 0x89, 0x49, 0x2a, 0xff, 0x85, 0x46, 0x29, 0xff, 0x82, 0x42, 0x26, 0xff, 0x91, 0x51, 0x2d, 0xff, 0xa2, 0x62, 0x37, 0xff, 0xa4, 0x62, 0x38, 0xff, 0xa1, 0x5f, 0x36, 0xff, 0x9f, 0x5d, 0x34, 0xff, 0x9b, 0x5a, 0x32, 0xff, 0x99, 0x58, 0x2f, 0xff, 0x97, 0x57, 0x2e, 0xff, 0x93, 0x52, 0x2d, 0xff, 0x97, 0x57, 0x30, 0xff, 0x9d, 0x5c, 0x34, 0xff, 0x9c, 0x5b, 0x35, 0xff, 0x99, 0x59, 0x33, 0xff, 0x96, 0x58, 0x30, 0xff, 0x95, 0x55, 0x2e, 0xff, 0x93, 0x54, 0x2d, 0xff, 0x94, 0x53, 0x2c, 0xff, 0x93, 0x50, 0x2b, 0xff, 0x90, 0x50, 0x2a, 0xff, 0x8e, 0x4d, 0x2a, 0xff, 0x8d, 0x4b, 0x29, 0xff, 0x8b, 0x48, 0x29, 0xff, 0x89, 0x49, 0x27, 0xff, 0x88, 0x47, 0x28, 0xff, 0x87, 0x46, 0x27, 0xff, 0x86, 0x45, 0x26, 0xff, 0x86, 0x45, 0x25, 0xff, 0x86, 0x47, 0x25, 0xff, 0x85, 0x45, 0x25, 0xff, 0x85, 0x46, 0x26, 0xff, 0x88, 0x46, 0x26, 0xff, 0x88, 0x48, 0x26, 0xff, 0x88, 0x48, 0x27, 0xff, 0x89, 0x4a, 0x28, 0xff, 0x8b, 0x4b, 0x28, 0xff, 0x8d, 0x4c, 0x29, 0xff, 0x90, 0x4d, 0x2a, 0xff, 0x90, 0x4d, 0x2a, 0xff, 0x91, 0x50, 0x2b, 0xff, 0x93, 0x51, 0x2c, 0xff, 0x8c, 0x4c, 0x29, 0xff, 0x8b, 0x4c, 0x2a, 0xff, 0x8b, 0x4c, 0x2a, 0xff, 0x8d, 0x4d, 0x2a, 0xff, 0x8d, 0x4c, 0x2a, 0xff, 0x90, 0x4e, 0x2b, 0xff, 0x8f, 0x4e, 0x2b, 0xff, 0x8e, 0x4d, 0x2b, 0xff, 0x90, 0x50, 0x2b, 0xff, 0x91, 0x53, 0x2c, 0xff, 0x92, 0x52, 0x2b, 0xff, 0x95, 0x56, 0x2d, 0xff, 0x97, 0x58, 0x2e, 0xff, 0x97, 0x58, 0x2e, 0xff, 0x98, 0x58, 0x2d, 0xff, 0x99, 0x59, 0x2e, 0xff, 0x99, 0x5a, 0x2f, 0xff, 0x9c, 0x5c, 0x30, 0xff, 0x9a, 0x5b, 0x2f, 0xff, 0x96, 0x58, 0x2b, 0xff, 0x98, 0x5c, 0x2c, 0xff, 0x9a, 0x5d, 0x2d, 0xff, 0x9c, 0x5e, 0x2e, 0xff, 0x9b, 0x5e, 0x2f, 0xff, 0x9e, 0x60, 0x2f, 0xff, 0x9d, 0x5f, 0x2f, 0xff, 0x9e, 0x62, 0x2f, 0xff, 0x9e, 0x61, 0x30, 0xff, 0x9f, 0x62, 0x30, 0xff, 0xa1, 0x66, 0x31, 0xff, 0xa2, 0x68, 0x33, 0xff, 0xa5, 0x69, 0x33, 0xff, 0xa7, 0x68, 0x36, 0xff, 0xa5, 0x67, 0x33, 0xff, + 0xa3, 0x67, 0x35, 0xff, 0xa5, 0x68, 0x35, 0xff, 0xa6, 0x69, 0x35, 0xff, 0xaa, 0x6c, 0x3a, 0xff, 0xaa, 0x6b, 0x38, 0xff, 0xab, 0x6e, 0x3b, 0xff, 0xab, 0x70, 0x3a, 0xff, 0xaf, 0x72, 0x3d, 0xff, 0xb3, 0x75, 0x3f, 0xff, 0xb5, 0x75, 0x41, 0xff, 0xb3, 0x74, 0x41, 0xff, 0xa5, 0x64, 0x38, 0xff, 0xa9, 0x69, 0x3b, 0xff, 0xaa, 0x6b, 0x3e, 0xff, 0xaa, 0x69, 0x3d, 0xff, 0xab, 0x6b, 0x3f, 0xff, 0xad, 0x6e, 0x41, 0xff, 0xb0, 0x73, 0x46, 0xff, 0xa4, 0x68, 0x3c, 0xff, 0x94, 0x58, 0x2f, 0xff, 0x98, 0x5b, 0x32, 0xff, 0x97, 0x5d, 0x32, 0xff, 0x99, 0x5c, 0x33, 0xff, 0x9f, 0x63, 0x36, 0xff, 0xba, 0x7d, 0x4d, 0xff, 0xc0, 0x83, 0x52, 0xff, 0xbd, 0x7b, 0x4d, 0xff, 0xbb, 0x7c, 0x4c, 0xff, 0xba, 0x7c, 0x4c, 0xff, 0xb8, 0x78, 0x4a, 0xff, 0xb8, 0x7b, 0x49, 0xff, 0xb8, 0x78, 0x49, 0xff, 0xb8, 0x78, 0x4a, 0xff, 0xb8, 0x7a, 0x49, 0xff, 0xb9, 0x7b, 0x4b, 0xff, 0xbc, 0x7b, 0x4b, 0xff, 0xdd, 0x93, 0x5b, 0xff, 0xdf, 0x94, 0x58, 0xff, 0xe4, 0x94, 0x5c, 0xff, 0xe7, 0x9b, 0x5d, 0xff, 0xf0, 0xa8, 0x68, 0xff, 0xef, 0xaf, 0x71, 0xff, 0xf0, 0xbe, 0x7a, 0xff, 0xed, 0xc5, 0x7f, 0xff, 0xed, 0xdb, 0x88, 0xff, 0xe8, 0xe2, 0x94, 0xff, 0xe6, 0xe5, 0x9c, 0xff, 0xe8, 0xe5, 0xa7, 0xff, 0xeb, 0xe6, 0xb2, 0xff, 0xed, 0xe5, 0xbd, 0xff, 0xf1, 0xe6, 0xd7, 0xff, 0xee, 0xe3, 0xd9, 0xff, 0xc9, 0xae, 0x9f, 0xff, 0x91, 0x5a, 0x3f, 0xff, 0x96, 0x5e, 0x43, 0xff, 0x95, 0x61, 0x45, 0xff, 0x96, 0x60, 0x45, 0xff, 0x96, 0x62, 0x45, 0xff, 0x97, 0x61, 0x47, 0xff, 0x9a, 0x65, 0x4a, 0xff, 0x9e, 0x68, 0x4c, 0xff, 0xa2, 0x6c, 0x4e, 0xff, 0xa5, 0x73, 0x4d, 0xff, 0xaa, 0x78, 0x4e, 0xff, 0xac, 0x7b, 0x4f, 0xff, 0xae, 0x7b, 0x51, 0xff, 0xb0, 0x7b, 0x4e, 0xff, 0xb3, 0x7c, 0x4d, 0xff, 0xb5, 0x7b, 0x4b, 0xff, 0xb5, 0x77, 0x48, 0xff, 0xb2, 0x75, 0x44, 0xff, 0xb1, 0x72, 0x41, 0xff, 0xb1, 0x74, 0x43, 0xff, 0xb1, 0x74, 0x42, 0xff, 0xb3, 0x77, 0x43, 0xff, 0xb6, 0x79, 0x46, 0xff, 0xb8, 0x7b, 0x4a, 0xff, 0xba, 0x7d, 0x4c, 0xff, 0xbc, 0x7f, 0x4e, 0xff, 0xbe, 0x80, 0x50, 0xff, 0xc0, 0x82, 0x51, 0xff, 0xc2, 0x84, 0x52, 0xff, 0xc6, 0x85, 0x54, 0xff, 0xc7, 0x86, 0x53, 0xff, 0xc7, 0x88, 0x52, 0xff, 0xd0, 0x8d, 0x55, 0xff, 0xd3, 0x8f, 0x56, 0xff, 0xd8, 0x90, 0x57, 0xff, 0xdd, 0x91, 0x57, 0xff, 0xd5, 0x8c, 0x54, 0xff, 0xcb, 0x86, 0x50, 0xff, 0xd2, 0x8a, 0x52, 0xff, 0xdc, 0x8f, 0x55, 0xff, 0xea, 0x95, 0x59, 0xff, 0xeb, 0x96, 0x59, 0xff, 0xec, 0x96, 0x5c, 0xff, 0xf1, 0x98, 0x5f, 0xff, 0xf2, 0x9c, 0x64, 0xff, 0xe8, 0x9a, 0x65, 0xff, 0xcf, 0x8e, 0x5b, 0xff, 0xc0, 0x86, 0x52, 0xff, 0xba, 0x80, 0x49, 0xff, 0xb3, 0x79, 0x42, 0xff, 0xb1, 0x76, 0x40, 0xff, 0xad, 0x72, 0x3f, 0xff, 0xab, 0x71, 0x3e, 0xff, 0xaa, 0x6e, 0x3b, 0xff, 0xa8, 0x6c, 0x38, 0xff, 0xa6, 0x6a, 0x36, 0xff, 0xa6, 0x69, 0x36, 0xff, 0xa5, 0x66, 0x34, 0xff, 0xa2, 0x64, 0x32, 0xff, 0xa1, 0x63, 0x31, 0xff, 0xa0, 0x62, 0x31, 0xff, 0x9d, 0x5f, 0x30, 0xff, 0x99, 0x5c, 0x2d, 0xff, 0x99, 0x5a, 0x2b, 0xff, 0x97, 0x59, 0x2a, 0xff, 0x94, 0x59, 0x2a, 0xff, 0x92, 0x56, 0x2a, 0xff, 0x92, 0x55, 0x2a, 0xff, 0x92, 0x56, 0x2a, 0xff, 0x90, 0x54, 0x29, 0xff, 0x90, 0x53, 0x29, 0xff, 0x90, 0x54, 0x2a, 0xff, 0x8f, 0x53, 0x29, 0xff, 0x8f, 0x53, 0x28, 0xff, 0x90, 0x54, 0x28, 0xff, 0x8f, 0x53, 0x29, 0xff, 0x90, 0x52, 0x28, 0xff, 0x8f, 0x52, 0x28, 0xff, 0x90, 0x53, 0x2a, 0xff, 0x90, 0x54, 0x2a, 0xff, 0x90, 0x53, 0x29, 0xff, 0xa1, 0x66, 0x3a, 0xff, 0xaf, 0x75, 0x45, 0xff, 0xab, 0x6f, 0x3f, 0xff, 0xa7, 0x68, 0x3a, 0xff, 0xa5, 0x67, 0x36, 0xff, 0xa2, 0x63, 0x34, 0xff, 0xa0, 0x61, 0x33, 0xff, 0x9e, 0x60, 0x33, 0xff, 0x9c, 0x5d, 0x31, 0xff, 0x98, 0x58, 0x2f, 0xff, 0x92, 0x51, 0x2b, 0xff, 0x8c, 0x4e, 0x2a, 0xff, 0x88, 0x4b, 0x28, 0xff, 0x85, 0x46, 0x26, 0xff, 0x85, 0x44, 0x24, 0xff, 0x7b, 0x3a, 0x1a, 0xff, 0x95, 0x58, 0x31, 0xff, 0xa0, 0x62, 0x39, 0xff, 0x9a, 0x5b, 0x34, 0xff, 0x96, 0x55, 0x30, 0xff, 0x91, 0x50, 0x2e, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x8d, 0x4c, 0x2b, 0xff, 0x8a, 0x4a, 0x2a, 0xff, 0x87, 0x48, 0x28, 0xff, 0x85, 0x46, 0x27, 0xff, 0x80, 0x41, 0x23, 0xff, 0x7b, 0x3d, 0x1e, 0xff, 0x8e, 0x4e, 0x2b, 0xff, 0x9f, 0x5e, 0x35, 0xff, 0x9f, 0x5f, 0x34, 0xff, 0xa0, 0x60, 0x34, 0xff, 0x9c, 0x5c, 0x33, 0xff, 0x99, 0x59, 0x31, 0xff, 0x98, 0x58, 0x2e, 0xff, 0x97, 0x54, 0x2e, 0xff, 0x96, 0x55, 0x2e, 0xff, 0x9d, 0x5b, 0x32, 0xff, 0x9d, 0x5e, 0x33, 0xff, 0x9d, 0x5b, 0x33, 0xff, 0x98, 0x57, 0x31, 0xff, 0x96, 0x54, 0x2f, 0xff, 0x95, 0x54, 0x2d, 0xff, 0x92, 0x51, 0x2c, 0xff, 0x91, 0x4f, 0x2b, 0xff, 0x8f, 0x4d, 0x2a, 0xff, 0x8e, 0x4c, 0x2a, 0xff, 0x8c, 0x4c, 0x2a, 0xff, 0x8c, 0x4b, 0x29, 0xff, 0x8a, 0x48, 0x26, 0xff, 0x88, 0x48, 0x28, 0xff, 0x87, 0x46, 0x27, 0xff, 0x88, 0x47, 0x26, 0xff, 0x86, 0x46, 0x26, 0xff, 0x85, 0x45, 0x26, 0xff, 0x86, 0x44, 0x26, 0xff, 0x86, 0x46, 0x26, 0xff, 0x88, 0x46, 0x26, 0xff, 0x89, 0x49, 0x27, 0xff, 0x8a, 0x49, 0x29, 0xff, 0x8d, 0x4c, 0x29, 0xff, 0x8d, 0x4d, 0x29, 0xff, 0x8f, 0x4d, 0x2a, 0xff, 0x8f, 0x4d, 0x2a, 0xff, 0x91, 0x4f, 0x2b, 0xff, 0x93, 0x50, 0x2c, 0xff, 0x8e, 0x4c, 0x2a, 0xff, 0x8c, 0x4c, 0x2a, 0xff, 0x8c, 0x4c, 0x2a, 0xff, 0x8d, 0x4c, 0x2a, 0xff, 0x8d, 0x4d, 0x2b, 0xff, 0x8d, 0x4d, 0x2b, 0xff, 0x8d, 0x4d, 0x2a, 0xff, 0x8e, 0x4f, 0x2a, 0xff, 0x8f, 0x4f, 0x2a, 0xff, 0x91, 0x50, 0x2b, 0xff, 0x93, 0x53, 0x2c, 0xff, 0x95, 0x55, 0x2c, 0xff, 0x95, 0x56, 0x2e, 0xff, 0x95, 0x56, 0x2d, 0xff, 0x95, 0x56, 0x2c, 0xff, 0x96, 0x57, 0x2d, 0xff, 0x99, 0x56, 0x2e, 0xff, 0x9a, 0x5a, 0x2f, 0xff, 0x97, 0x57, 0x2c, 0xff, 0x93, 0x57, 0x2a, 0xff, 0x95, 0x59, 0x2c, 0xff, 0x97, 0x59, 0x2c, 0xff, 0x98, 0x59, 0x2e, 0xff, 0x9b, 0x5c, 0x2d, 0xff, 0x9a, 0x5d, 0x2e, 0xff, 0x9b, 0x5d, 0x2f, 0xff, 0x9b, 0x5e, 0x2e, 0xff, 0x9b, 0x5e, 0x2f, 0xff, 0x9e, 0x5f, 0x2f, 0xff, 0x9e, 0x60, 0x30, 0xff, 0xa0, 0x62, 0x32, 0xff, 0xa1, 0x66, 0x33, 0xff, 0xa4, 0x69, 0x36, 0xff, 0xa5, 0x69, 0x37, 0xff, + 0xa6, 0x69, 0x36, 0xff, 0xa5, 0x67, 0x37, 0xff, 0xa5, 0x68, 0x37, 0xff, 0xa6, 0x68, 0x37, 0xff, 0xa8, 0x6b, 0x3a, 0xff, 0xa9, 0x6d, 0x39, 0xff, 0xaa, 0x6c, 0x3a, 0xff, 0xaf, 0x70, 0x3b, 0xff, 0xb0, 0x72, 0x40, 0xff, 0xa8, 0x68, 0x39, 0xff, 0xa1, 0x61, 0x35, 0xff, 0xa6, 0x65, 0x37, 0xff, 0xa6, 0x66, 0x3a, 0xff, 0xa6, 0x67, 0x3a, 0xff, 0xa8, 0x68, 0x3b, 0xff, 0xa9, 0x69, 0x3d, 0xff, 0xaa, 0x6a, 0x40, 0xff, 0xac, 0x6e, 0x43, 0xff, 0xaa, 0x6d, 0x43, 0xff, 0x8f, 0x54, 0x2c, 0xff, 0x95, 0x59, 0x32, 0xff, 0x95, 0x59, 0x32, 0xff, 0x98, 0x5c, 0x32, 0xff, 0x98, 0x5c, 0x32, 0xff, 0x9d, 0x60, 0x36, 0xff, 0xba, 0x7c, 0x4d, 0xff, 0xc5, 0x85, 0x55, 0xff, 0xbf, 0x7e, 0x4f, 0xff, 0xbd, 0x7e, 0x4f, 0xff, 0xbc, 0x7c, 0x4d, 0xff, 0xba, 0x7b, 0x4b, 0xff, 0xb9, 0x79, 0x4a, 0xff, 0xb9, 0x7c, 0x4c, 0xff, 0xb9, 0x7b, 0x4c, 0xff, 0xb9, 0x7a, 0x4b, 0xff, 0xbc, 0x7a, 0x4b, 0xff, 0xe2, 0x9a, 0x5d, 0xff, 0xdf, 0x96, 0x5a, 0xff, 0xe4, 0x96, 0x5d, 0xff, 0xe7, 0x9b, 0x5f, 0xff, 0xee, 0xa4, 0x65, 0xff, 0xed, 0xb3, 0x71, 0xff, 0xf0, 0xc3, 0x7b, 0xff, 0xf0, 0xc6, 0x80, 0xff, 0xee, 0xcb, 0x88, 0xff, 0xee, 0xdc, 0x91, 0xff, 0xe5, 0xe4, 0x99, 0xff, 0xe6, 0xe5, 0xa4, 0xff, 0xe9, 0xe5, 0xac, 0xff, 0xec, 0xe6, 0xb8, 0xff, 0xeb, 0xde, 0xc7, 0xff, 0xb9, 0x97, 0x84, 0xff, 0x91, 0x59, 0x3c, 0xff, 0x97, 0x60, 0x43, 0xff, 0x97, 0x62, 0x45, 0xff, 0x97, 0x63, 0x46, 0xff, 0x97, 0x62, 0x47, 0xff, 0x98, 0x63, 0x47, 0xff, 0x99, 0x64, 0x48, 0xff, 0x9c, 0x67, 0x4a, 0xff, 0x9f, 0x6b, 0x4e, 0xff, 0xa3, 0x72, 0x52, 0xff, 0xa6, 0x77, 0x54, 0xff, 0xa9, 0x7c, 0x55, 0xff, 0xab, 0x80, 0x55, 0xff, 0xad, 0x81, 0x56, 0xff, 0xb0, 0x80, 0x56, 0xff, 0xb3, 0x80, 0x54, 0xff, 0xb5, 0x7f, 0x51, 0xff, 0xb8, 0x7f, 0x4d, 0xff, 0xb8, 0x7a, 0x4b, 0xff, 0xb6, 0x78, 0x47, 0xff, 0xb4, 0x77, 0x45, 0xff, 0xb3, 0x77, 0x44, 0xff, 0xb5, 0x77, 0x46, 0xff, 0xb6, 0x7a, 0x48, 0xff, 0xb9, 0x7c, 0x4a, 0xff, 0xbc, 0x7f, 0x4e, 0xff, 0xbe, 0x80, 0x50, 0xff, 0xc0, 0x81, 0x51, 0xff, 0xc2, 0x83, 0x52, 0xff, 0xc3, 0x85, 0x53, 0xff, 0xc2, 0x82, 0x51, 0xff, 0xc3, 0x84, 0x52, 0xff, 0xc5, 0x87, 0x52, 0xff, 0xc5, 0x86, 0x4f, 0xff, 0xc8, 0x89, 0x51, 0xff, 0xd1, 0x8d, 0x54, 0xff, 0xd1, 0x8b, 0x51, 0xff, 0xc9, 0x85, 0x4e, 0xff, 0xcc, 0x87, 0x50, 0xff, 0xd0, 0x89, 0x51, 0xff, 0xd8, 0x8d, 0x53, 0xff, 0xe4, 0x92, 0x58, 0xff, 0xed, 0x96, 0x5b, 0xff, 0xf0, 0x97, 0x5c, 0xff, 0xf0, 0x99, 0x5e, 0xff, 0xf0, 0x9e, 0x63, 0xff, 0xf1, 0xa0, 0x69, 0xff, 0xeb, 0x9c, 0x65, 0xff, 0xcd, 0x8b, 0x56, 0xff, 0xb5, 0x7b, 0x47, 0xff, 0xb7, 0x7a, 0x46, 0xff, 0xb5, 0x77, 0x43, 0xff, 0xb2, 0x76, 0x40, 0xff, 0xaf, 0x73, 0x3d, 0xff, 0xad, 0x70, 0x3c, 0xff, 0xaa, 0x6f, 0x39, 0xff, 0xaa, 0x6c, 0x37, 0xff, 0xa8, 0x6b, 0x37, 0xff, 0xa6, 0x69, 0x35, 0xff, 0xa6, 0x68, 0x34, 0xff, 0xa4, 0x65, 0x32, 0xff, 0x9f, 0x61, 0x2f, 0xff, 0x9c, 0x60, 0x2e, 0xff, 0x9c, 0x5d, 0x2e, 0xff, 0x9a, 0x5b, 0x2c, 0xff, 0x98, 0x59, 0x2c, 0xff, 0x97, 0x57, 0x2b, 0xff, 0x95, 0x56, 0x2a, 0xff, 0x94, 0x55, 0x2a, 0xff, 0x92, 0x55, 0x29, 0xff, 0x92, 0x56, 0x29, 0xff, 0x92, 0x55, 0x29, 0xff, 0x90, 0x53, 0x29, 0xff, 0x91, 0x53, 0x28, 0xff, 0x91, 0x54, 0x28, 0xff, 0x90, 0x54, 0x29, 0xff, 0x90, 0x53, 0x28, 0xff, 0x90, 0x53, 0x29, 0xff, 0x90, 0x54, 0x29, 0xff, 0x90, 0x54, 0x29, 0xff, 0x90, 0x53, 0x29, 0xff, 0x90, 0x54, 0x28, 0xff, 0xa2, 0x68, 0x3a, 0xff, 0xb2, 0x76, 0x46, 0xff, 0xaf, 0x72, 0x42, 0xff, 0xa9, 0x6c, 0x3d, 0xff, 0xa7, 0x69, 0x38, 0xff, 0xa6, 0x67, 0x36, 0xff, 0xa3, 0x64, 0x36, 0xff, 0xa0, 0x61, 0x35, 0xff, 0x9d, 0x5e, 0x32, 0xff, 0x9a, 0x5b, 0x30, 0xff, 0x95, 0x55, 0x2c, 0xff, 0x90, 0x50, 0x2a, 0xff, 0x8d, 0x4c, 0x29, 0xff, 0x88, 0x48, 0x26, 0xff, 0x85, 0x46, 0x24, 0xff, 0x7f, 0x41, 0x20, 0xff, 0x97, 0x59, 0x32, 0xff, 0xa1, 0x62, 0x39, 0xff, 0x9b, 0x5b, 0x34, 0xff, 0x97, 0x56, 0x32, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x8d, 0x4e, 0x2b, 0xff, 0x8a, 0x4b, 0x2a, 0xff, 0x87, 0x49, 0x29, 0xff, 0x85, 0x47, 0x28, 0xff, 0x83, 0x44, 0x24, 0xff, 0x84, 0x44, 0x28, 0xff, 0x7f, 0x41, 0x23, 0xff, 0x7e, 0x3f, 0x20, 0xff, 0x85, 0x45, 0x23, 0xff, 0x8e, 0x4f, 0x29, 0xff, 0x97, 0x57, 0x30, 0xff, 0x9c, 0x5b, 0x33, 0xff, 0x9d, 0x5c, 0x33, 0xff, 0x9c, 0x5a, 0x31, 0xff, 0x98, 0x57, 0x2e, 0xff, 0x97, 0x56, 0x2e, 0xff, 0x99, 0x58, 0x30, 0xff, 0x9d, 0x5b, 0x32, 0xff, 0x9d, 0x59, 0x32, 0xff, 0x9a, 0x59, 0x31, 0xff, 0x99, 0x57, 0x2f, 0xff, 0x97, 0x55, 0x2e, 0xff, 0x94, 0x53, 0x2d, 0xff, 0x92, 0x51, 0x2c, 0xff, 0x91, 0x4f, 0x2c, 0xff, 0x90, 0x4e, 0x2a, 0xff, 0x8e, 0x4c, 0x2a, 0xff, 0x8c, 0x4b, 0x29, 0xff, 0x8a, 0x4a, 0x28, 0xff, 0x89, 0x48, 0x29, 0xff, 0x87, 0x47, 0x28, 0xff, 0x87, 0x47, 0x27, 0xff, 0x86, 0x46, 0x27, 0xff, 0x87, 0x46, 0x26, 0xff, 0x87, 0x47, 0x27, 0xff, 0x88, 0x4a, 0x27, 0xff, 0x8b, 0x4b, 0x29, 0xff, 0x8c, 0x4b, 0x29, 0xff, 0x8d, 0x4b, 0x2a, 0xff, 0x8d, 0x4c, 0x2a, 0xff, 0x8f, 0x4d, 0x2a, 0xff, 0x90, 0x4f, 0x2b, 0xff, 0x90, 0x50, 0x2b, 0xff, 0x92, 0x50, 0x2c, 0xff, 0x8e, 0x4d, 0x2a, 0xff, 0x8c, 0x4c, 0x2a, 0xff, 0x8c, 0x4c, 0x2a, 0xff, 0x8b, 0x4a, 0x29, 0xff, 0x89, 0x49, 0x27, 0xff, 0x8b, 0x4b, 0x29, 0xff, 0x8b, 0x4c, 0x29, 0xff, 0x8c, 0x4d, 0x2a, 0xff, 0x8e, 0x4d, 0x2a, 0xff, 0x90, 0x4f, 0x2b, 0xff, 0x91, 0x51, 0x2a, 0xff, 0x90, 0x51, 0x2b, 0xff, 0x94, 0x52, 0x2b, 0xff, 0x93, 0x53, 0x2c, 0xff, 0x94, 0x54, 0x2c, 0xff, 0x95, 0x55, 0x2c, 0xff, 0x95, 0x56, 0x2d, 0xff, 0x98, 0x58, 0x2f, 0xff, 0x93, 0x56, 0x2a, 0xff, 0x91, 0x55, 0x2a, 0xff, 0x93, 0x56, 0x2a, 0xff, 0x94, 0x56, 0x2b, 0xff, 0x96, 0x59, 0x2b, 0xff, 0x97, 0x59, 0x2d, 0xff, 0x97, 0x5b, 0x2d, 0xff, 0x97, 0x5b, 0x2e, 0xff, 0x98, 0x5d, 0x2e, 0xff, 0x99, 0x5c, 0x2e, 0xff, 0x9a, 0x5e, 0x30, 0xff, 0x9b, 0x60, 0x31, 0xff, 0x9d, 0x61, 0x32, 0xff, 0x9e, 0x62, 0x32, 0xff, 0xa1, 0x65, 0x35, 0xff, 0xa3, 0x66, 0x37, 0xff, + 0xa1, 0x64, 0x36, 0xff, 0xa2, 0x66, 0x36, 0xff, 0xa4, 0x69, 0x37, 0xff, 0xa5, 0x69, 0x38, 0xff, 0xa7, 0x69, 0x38, 0xff, 0xa8, 0x6c, 0x3b, 0xff, 0xa8, 0x6a, 0x3b, 0xff, 0xab, 0x6f, 0x3c, 0xff, 0xa1, 0x60, 0x34, 0xff, 0xa0, 0x60, 0x35, 0xff, 0xa1, 0x61, 0x36, 0xff, 0xa2, 0x64, 0x36, 0xff, 0xa4, 0x64, 0x36, 0xff, 0xa6, 0x65, 0x3a, 0xff, 0xa6, 0x65, 0x3a, 0xff, 0xa6, 0x67, 0x3b, 0xff, 0xa9, 0x69, 0x3d, 0xff, 0xa9, 0x69, 0x40, 0xff, 0xab, 0x6e, 0x43, 0xff, 0x90, 0x54, 0x2d, 0xff, 0x94, 0x57, 0x31, 0xff, 0x94, 0x58, 0x31, 0xff, 0x95, 0x59, 0x32, 0xff, 0x96, 0x5a, 0x32, 0xff, 0x97, 0x5b, 0x32, 0xff, 0x9c, 0x5f, 0x37, 0xff, 0xb4, 0x75, 0x49, 0xff, 0xca, 0x89, 0x58, 0xff, 0xc2, 0x81, 0x51, 0xff, 0xc0, 0x81, 0x51, 0xff, 0xbe, 0x7e, 0x4f, 0xff, 0xbd, 0x7b, 0x4b, 0xff, 0xbb, 0x7b, 0x4c, 0xff, 0xbc, 0x7b, 0x4c, 0xff, 0xbb, 0x7b, 0x4d, 0xff, 0xbe, 0x7e, 0x4f, 0xff, 0xe2, 0x95, 0x5d, 0xff, 0xe4, 0x99, 0x5d, 0xff, 0xe8, 0x96, 0x5d, 0xff, 0xea, 0x9d, 0x5e, 0xff, 0xef, 0xa9, 0x69, 0xff, 0xf1, 0xb1, 0x70, 0xff, 0xf1, 0xba, 0x77, 0xff, 0xf1, 0xcb, 0x7e, 0xff, 0xee, 0xc7, 0x83, 0xff, 0xef, 0xd3, 0x8b, 0xff, 0xee, 0xdb, 0x94, 0xff, 0xee, 0xe8, 0x9d, 0xff, 0xea, 0xe7, 0xa9, 0xff, 0xe7, 0xd8, 0xb0, 0xff, 0xa3, 0x7c, 0x5f, 0xff, 0x95, 0x5f, 0x40, 0xff, 0x95, 0x60, 0x42, 0xff, 0x97, 0x62, 0x44, 0xff, 0x99, 0x65, 0x46, 0xff, 0x99, 0x63, 0x46, 0xff, 0x99, 0x64, 0x48, 0xff, 0x9a, 0x64, 0x46, 0xff, 0x9c, 0x65, 0x49, 0xff, 0x9d, 0x68, 0x4b, 0xff, 0xa0, 0x6d, 0x4f, 0xff, 0xa2, 0x73, 0x52, 0xff, 0xa4, 0x78, 0x57, 0xff, 0xa7, 0x7a, 0x57, 0xff, 0xaa, 0x7d, 0x57, 0xff, 0xac, 0x80, 0x56, 0xff, 0xaf, 0x7f, 0x56, 0xff, 0xb1, 0x80, 0x56, 0xff, 0xb5, 0x83, 0x55, 0xff, 0xb8, 0x81, 0x51, 0xff, 0xb9, 0x7f, 0x4c, 0xff, 0xb9, 0x7c, 0x48, 0xff, 0xb8, 0x79, 0x47, 0xff, 0xb7, 0x7a, 0x47, 0xff, 0xb7, 0x7b, 0x49, 0xff, 0xb9, 0x7c, 0x49, 0xff, 0xbc, 0x7f, 0x4a, 0xff, 0xbf, 0x81, 0x4e, 0xff, 0xc0, 0x83, 0x51, 0xff, 0xc2, 0x82, 0x52, 0xff, 0xc3, 0x84, 0x53, 0xff, 0xc2, 0x82, 0x51, 0xff, 0xc4, 0x84, 0x51, 0xff, 0xc0, 0x83, 0x50, 0xff, 0xbd, 0x81, 0x4d, 0xff, 0xc1, 0x85, 0x4e, 0xff, 0xc6, 0x88, 0x4f, 0xff, 0xc9, 0x87, 0x4f, 0xff, 0xc8, 0x85, 0x4d, 0xff, 0xc7, 0x85, 0x4d, 0xff, 0xcb, 0x86, 0x4e, 0xff, 0xd1, 0x88, 0x50, 0xff, 0xd8, 0x8b, 0x52, 0xff, 0xdb, 0x8e, 0x55, 0xff, 0xe5, 0x94, 0x58, 0xff, 0xf2, 0x99, 0x5d, 0xff, 0xf1, 0x99, 0x60, 0xff, 0xf1, 0xa1, 0x66, 0xff, 0xf0, 0xa1, 0x66, 0xff, 0xf1, 0x9e, 0x62, 0xff, 0xee, 0x9c, 0x62, 0xff, 0xd1, 0x8d, 0x56, 0xff, 0xb6, 0x7c, 0x46, 0xff, 0xb8, 0x7a, 0x45, 0xff, 0xb5, 0x78, 0x42, 0xff, 0xb2, 0x75, 0x3e, 0xff, 0xb0, 0x73, 0x3c, 0xff, 0xae, 0x70, 0x3b, 0xff, 0xac, 0x6e, 0x39, 0xff, 0xa9, 0x6d, 0x36, 0xff, 0xa7, 0x6b, 0x36, 0xff, 0xa7, 0x69, 0x36, 0xff, 0xa4, 0x67, 0x33, 0xff, 0xa0, 0x64, 0x2f, 0xff, 0x9e, 0x62, 0x2f, 0xff, 0x9d, 0x60, 0x2e, 0xff, 0x9c, 0x5e, 0x2d, 0xff, 0x9a, 0x5c, 0x2b, 0xff, 0x98, 0x59, 0x2a, 0xff, 0x98, 0x59, 0x2a, 0xff, 0x95, 0x57, 0x2a, 0xff, 0x94, 0x55, 0x2a, 0xff, 0x93, 0x56, 0x28, 0xff, 0x93, 0x57, 0x29, 0xff, 0x92, 0x55, 0x29, 0xff, 0x91, 0x54, 0x28, 0xff, 0x92, 0x55, 0x29, 0xff, 0x90, 0x54, 0x29, 0xff, 0x90, 0x53, 0x29, 0xff, 0x90, 0x53, 0x29, 0xff, 0x90, 0x53, 0x29, 0xff, 0x90, 0x53, 0x29, 0xff, 0x90, 0x53, 0x2a, 0xff, 0x8f, 0x53, 0x29, 0xff, 0xa1, 0x66, 0x37, 0xff, 0xb4, 0x76, 0x46, 0xff, 0xb3, 0x75, 0x44, 0xff, 0xad, 0x70, 0x3f, 0xff, 0xaa, 0x6b, 0x3a, 0xff, 0xa8, 0x69, 0x38, 0xff, 0xa2, 0x65, 0x35, 0xff, 0xa1, 0x64, 0x35, 0xff, 0xa0, 0x61, 0x33, 0xff, 0x9c, 0x5c, 0x30, 0xff, 0x98, 0x57, 0x2d, 0xff, 0x94, 0x54, 0x2b, 0xff, 0x8f, 0x4f, 0x2a, 0xff, 0x8c, 0x4c, 0x28, 0xff, 0x88, 0x47, 0x25, 0xff, 0x86, 0x45, 0x24, 0xff, 0x9a, 0x5b, 0x32, 0xff, 0xa3, 0x64, 0x3a, 0xff, 0x9e, 0x5d, 0x36, 0xff, 0x99, 0x58, 0x32, 0xff, 0x95, 0x55, 0x2f, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x8e, 0x4e, 0x2b, 0xff, 0x8c, 0x4c, 0x2a, 0xff, 0x8a, 0x4a, 0x29, 0xff, 0x87, 0x48, 0x28, 0xff, 0x83, 0x44, 0x25, 0xff, 0x87, 0x46, 0x28, 0xff, 0x84, 0x44, 0x26, 0xff, 0x7f, 0x41, 0x22, 0xff, 0x7d, 0x3e, 0x20, 0xff, 0x7b, 0x3b, 0x1c, 0xff, 0x7b, 0x3c, 0x1e, 0xff, 0x7b, 0x3d, 0x1c, 0xff, 0x80, 0x41, 0x20, 0xff, 0x95, 0x53, 0x2e, 0xff, 0x9e, 0x5c, 0x33, 0xff, 0x9b, 0x59, 0x32, 0xff, 0x98, 0x57, 0x31, 0xff, 0x97, 0x55, 0x2e, 0xff, 0x99, 0x57, 0x30, 0xff, 0x9d, 0x5c, 0x32, 0xff, 0x9c, 0x5a, 0x31, 0xff, 0x99, 0x58, 0x2f, 0xff, 0x98, 0x57, 0x2e, 0xff, 0x97, 0x56, 0x2e, 0xff, 0x95, 0x54, 0x2e, 0xff, 0x94, 0x52, 0x2d, 0xff, 0x93, 0x51, 0x2c, 0xff, 0x91, 0x4f, 0x2b, 0xff, 0x8f, 0x4e, 0x2a, 0xff, 0x8c, 0x4b, 0x29, 0xff, 0x89, 0x49, 0x29, 0xff, 0x89, 0x48, 0x29, 0xff, 0x89, 0x49, 0x29, 0xff, 0x88, 0x48, 0x28, 0xff, 0x8a, 0x49, 0x29, 0xff, 0x88, 0x48, 0x28, 0xff, 0x87, 0x48, 0x28, 0xff, 0x89, 0x48, 0x29, 0xff, 0x8b, 0x4a, 0x29, 0xff, 0x8b, 0x4a, 0x2a, 0xff, 0x8c, 0x4b, 0x2a, 0xff, 0x8e, 0x4d, 0x2a, 0xff, 0x90, 0x4f, 0x2b, 0xff, 0x91, 0x4e, 0x2c, 0xff, 0x88, 0x48, 0x26, 0xff, 0x85, 0x46, 0x25, 0xff, 0x87, 0x48, 0x25, 0xff, 0x87, 0x48, 0x25, 0xff, 0x88, 0x49, 0x28, 0xff, 0x88, 0x4a, 0x27, 0xff, 0x8b, 0x4c, 0x29, 0xff, 0x8c, 0x4c, 0x28, 0xff, 0x8d, 0x4d, 0x29, 0xff, 0x8d, 0x4d, 0x2a, 0xff, 0x8e, 0x4d, 0x29, 0xff, 0x90, 0x4f, 0x2a, 0xff, 0x92, 0x50, 0x2b, 0xff, 0x90, 0x50, 0x2b, 0xff, 0x91, 0x52, 0x2b, 0xff, 0x93, 0x53, 0x2b, 0xff, 0x94, 0x53, 0x2b, 0xff, 0x95, 0x55, 0x2d, 0xff, 0x91, 0x51, 0x2a, 0xff, 0x91, 0x51, 0x2a, 0xff, 0x91, 0x54, 0x2a, 0xff, 0x92, 0x54, 0x2a, 0xff, 0x94, 0x55, 0x2a, 0xff, 0x94, 0x55, 0x2a, 0xff, 0x95, 0x59, 0x2c, 0xff, 0x94, 0x58, 0x2c, 0xff, 0x95, 0x5b, 0x2d, 0xff, 0x97, 0x5c, 0x2f, 0xff, 0x97, 0x5c, 0x31, 0xff, 0x9a, 0x5d, 0x30, 0xff, 0x9b, 0x60, 0x32, 0xff, 0x9d, 0x61, 0x33, 0xff, 0x9e, 0x62, 0x32, 0xff, 0xa1, 0x63, 0x33, 0xff, + 0x9f, 0x64, 0x36, 0xff, 0xa1, 0x62, 0x36, 0xff, 0xa3, 0x67, 0x36, 0xff, 0xa3, 0x64, 0x3a, 0xff, 0xa4, 0x68, 0x38, 0xff, 0xa7, 0x6a, 0x3a, 0xff, 0xa9, 0x6d, 0x3d, 0xff, 0x9c, 0x5c, 0x33, 0xff, 0x9d, 0x5e, 0x34, 0xff, 0x9e, 0x5f, 0x34, 0xff, 0x9e, 0x5f, 0x35, 0xff, 0xa0, 0x60, 0x35, 0xff, 0xa1, 0x61, 0x36, 0xff, 0xa1, 0x63, 0x36, 0xff, 0xa3, 0x64, 0x38, 0xff, 0xa6, 0x67, 0x3b, 0xff, 0xa6, 0x69, 0x3d, 0xff, 0xa8, 0x69, 0x3f, 0xff, 0xa6, 0x68, 0x3f, 0xff, 0x91, 0x55, 0x2e, 0xff, 0x90, 0x54, 0x30, 0xff, 0x92, 0x58, 0x31, 0xff, 0x93, 0x57, 0x31, 0xff, 0x94, 0x58, 0x31, 0xff, 0x97, 0x5b, 0x32, 0xff, 0x96, 0x5b, 0x32, 0xff, 0x97, 0x5a, 0x32, 0xff, 0xb0, 0x73, 0x46, 0xff, 0xcc, 0x8a, 0x58, 0xff, 0xc5, 0x85, 0x54, 0xff, 0xc3, 0x83, 0x52, 0xff, 0xc1, 0x81, 0x50, 0xff, 0xbf, 0x7e, 0x4f, 0xff, 0xbf, 0x7f, 0x4e, 0xff, 0xbd, 0x7d, 0x4d, 0xff, 0xc0, 0x80, 0x4f, 0xff, 0xe9, 0x9e, 0x61, 0xff, 0xe8, 0x99, 0x5f, 0xff, 0xe9, 0x99, 0x5f, 0xff, 0xec, 0xaa, 0x6e, 0xff, 0xef, 0xba, 0x76, 0xff, 0xf0, 0xb3, 0x71, 0xff, 0xee, 0xb1, 0x71, 0xff, 0xf2, 0xbb, 0x78, 0xff, 0xee, 0xc4, 0x7a, 0xff, 0xed, 0xcc, 0x83, 0xff, 0xef, 0xd3, 0x85, 0xff, 0xf2, 0xe4, 0x95, 0xff, 0xe5, 0xdb, 0x9b, 0xff, 0xae, 0x88, 0x61, 0xff, 0x97, 0x5f, 0x3e, 0xff, 0x96, 0x60, 0x40, 0xff, 0x97, 0x61, 0x42, 0xff, 0x96, 0x61, 0x44, 0xff, 0x98, 0x63, 0x42, 0xff, 0x9b, 0x66, 0x45, 0xff, 0x9c, 0x67, 0x46, 0xff, 0x9c, 0x67, 0x46, 0xff, 0x9b, 0x66, 0x47, 0xff, 0x9c, 0x69, 0x47, 0xff, 0x9f, 0x6c, 0x4a, 0xff, 0xa2, 0x72, 0x4e, 0xff, 0xa3, 0x76, 0x52, 0xff, 0xa6, 0x7a, 0x53, 0xff, 0xa9, 0x7d, 0x53, 0xff, 0xab, 0x7e, 0x55, 0xff, 0xae, 0x7e, 0x54, 0xff, 0xb0, 0x7e, 0x55, 0xff, 0xb4, 0x7f, 0x52, 0xff, 0xb6, 0x80, 0x50, 0xff, 0xb8, 0x7f, 0x4c, 0xff, 0xb9, 0x7e, 0x49, 0xff, 0xb9, 0x7b, 0x49, 0xff, 0xb8, 0x7b, 0x49, 0xff, 0xba, 0x7c, 0x49, 0xff, 0xbc, 0x7e, 0x49, 0xff, 0xbe, 0x83, 0x4b, 0xff, 0xc2, 0x83, 0x4e, 0xff, 0xc3, 0x84, 0x51, 0xff, 0xc1, 0x84, 0x50, 0xff, 0xc3, 0x85, 0x50, 0xff, 0xc2, 0x84, 0x51, 0xff, 0xbe, 0x7e, 0x4c, 0xff, 0xbc, 0x80, 0x4b, 0xff, 0xbf, 0x84, 0x4b, 0xff, 0xc1, 0x84, 0x4c, 0xff, 0xc6, 0x84, 0x4d, 0xff, 0xc5, 0x84, 0x4d, 0xff, 0xc3, 0x83, 0x4c, 0xff, 0xc8, 0x84, 0x4d, 0xff, 0xcb, 0x86, 0x4e, 0xff, 0xd1, 0x89, 0x52, 0xff, 0xd8, 0x8c, 0x52, 0xff, 0xdb, 0x8e, 0x53, 0xff, 0xdb, 0x8f, 0x56, 0xff, 0xe8, 0x96, 0x5c, 0xff, 0xf2, 0x9b, 0x60, 0xff, 0xf0, 0xa0, 0x63, 0xff, 0xef, 0xa4, 0x65, 0xff, 0xef, 0xa0, 0x64, 0xff, 0xef, 0x9c, 0x62, 0xff, 0xee, 0x9b, 0x62, 0xff, 0xd2, 0x8c, 0x56, 0xff, 0xb7, 0x7e, 0x46, 0xff, 0xb8, 0x7c, 0x44, 0xff, 0xb6, 0x78, 0x41, 0xff, 0xb3, 0x77, 0x3e, 0xff, 0xb1, 0x75, 0x3b, 0xff, 0xaf, 0x72, 0x3a, 0xff, 0xac, 0x6f, 0x38, 0xff, 0xab, 0x6d, 0x37, 0xff, 0xa8, 0x6a, 0x35, 0xff, 0xa4, 0x67, 0x32, 0xff, 0xa2, 0x66, 0x31, 0xff, 0xa2, 0x64, 0x2f, 0xff, 0xa0, 0x62, 0x2f, 0xff, 0x9e, 0x5f, 0x2d, 0xff, 0x9d, 0x5e, 0x2b, 0xff, 0x9a, 0x5e, 0x2b, 0xff, 0x99, 0x5a, 0x2a, 0xff, 0x98, 0x58, 0x2a, 0xff, 0x96, 0x57, 0x29, 0xff, 0x94, 0x57, 0x29, 0xff, 0x94, 0x57, 0x29, 0xff, 0x94, 0x55, 0x29, 0xff, 0x94, 0x54, 0x28, 0xff, 0x92, 0x54, 0x29, 0xff, 0x91, 0x54, 0x29, 0xff, 0x91, 0x54, 0x28, 0xff, 0x90, 0x55, 0x29, 0xff, 0x90, 0x55, 0x29, 0xff, 0x91, 0x55, 0x29, 0xff, 0x91, 0x53, 0x29, 0xff, 0x8f, 0x53, 0x28, 0xff, 0x9f, 0x63, 0x34, 0xff, 0xb4, 0x76, 0x46, 0xff, 0xb7, 0x78, 0x47, 0xff, 0xb2, 0x73, 0x41, 0xff, 0xac, 0x6f, 0x3d, 0xff, 0xa7, 0x69, 0x39, 0xff, 0xa4, 0x66, 0x34, 0xff, 0xa4, 0x66, 0x36, 0xff, 0xa4, 0x65, 0x35, 0xff, 0x9f, 0x5f, 0x32, 0xff, 0x9a, 0x59, 0x2e, 0xff, 0x96, 0x57, 0x2c, 0xff, 0x93, 0x52, 0x2a, 0xff, 0x90, 0x4f, 0x29, 0xff, 0x8b, 0x4a, 0x27, 0xff, 0x8a, 0x48, 0x24, 0xff, 0x9e, 0x60, 0x36, 0xff, 0xa6, 0x67, 0x3c, 0xff, 0x9f, 0x5f, 0x36, 0xff, 0x9b, 0x59, 0x33, 0xff, 0x97, 0x58, 0x31, 0xff, 0x92, 0x53, 0x2e, 0xff, 0x90, 0x4f, 0x2c, 0xff, 0x8d, 0x4c, 0x2a, 0xff, 0x8b, 0x4a, 0x29, 0xff, 0x89, 0x4a, 0x28, 0xff, 0x85, 0x46, 0x25, 0xff, 0x88, 0x48, 0x29, 0xff, 0x86, 0x46, 0x27, 0xff, 0x83, 0x43, 0x23, 0xff, 0x7e, 0x41, 0x23, 0xff, 0x7b, 0x3d, 0x1e, 0xff, 0x7a, 0x3b, 0x1c, 0xff, 0x78, 0x3a, 0x1b, 0xff, 0x76, 0x37, 0x19, 0xff, 0x73, 0x38, 0x15, 0xff, 0x76, 0x39, 0x19, 0xff, 0x7c, 0x3d, 0x1c, 0xff, 0x87, 0x47, 0x26, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x96, 0x58, 0x31, 0xff, 0x99, 0x59, 0x32, 0xff, 0x9e, 0x5d, 0x35, 0xff, 0x9c, 0x5c, 0x33, 0xff, 0x9b, 0x58, 0x30, 0xff, 0x99, 0x58, 0x30, 0xff, 0x98, 0x57, 0x2e, 0xff, 0x96, 0x55, 0x2e, 0xff, 0x94, 0x53, 0x2d, 0xff, 0x93, 0x53, 0x2d, 0xff, 0x91, 0x50, 0x2c, 0xff, 0x90, 0x4e, 0x2b, 0xff, 0x90, 0x4f, 0x2b, 0xff, 0x8e, 0x4c, 0x2a, 0xff, 0x8b, 0x4b, 0x2a, 0xff, 0x88, 0x48, 0x29, 0xff, 0x88, 0x48, 0x29, 0xff, 0x89, 0x48, 0x29, 0xff, 0x88, 0x49, 0x29, 0xff, 0x8b, 0x4b, 0x2a, 0xff, 0x8a, 0x4a, 0x29, 0xff, 0x89, 0x48, 0x28, 0xff, 0x8a, 0x49, 0x29, 0xff, 0x8a, 0x4a, 0x29, 0xff, 0x8c, 0x4d, 0x2a, 0xff, 0x86, 0x47, 0x25, 0xff, 0x84, 0x44, 0x25, 0xff, 0x84, 0x46, 0x25, 0xff, 0x84, 0x44, 0x25, 0xff, 0x85, 0x46, 0x22, 0xff, 0x86, 0x48, 0x25, 0xff, 0x87, 0x46, 0x25, 0xff, 0x8a, 0x4a, 0x27, 0xff, 0x8b, 0x4a, 0x28, 0xff, 0x8b, 0x4c, 0x28, 0xff, 0x8d, 0x4b, 0x29, 0xff, 0x8e, 0x4e, 0x2a, 0xff, 0x8f, 0x4d, 0x2a, 0xff, 0x8f, 0x4f, 0x2a, 0xff, 0x8f, 0x4e, 0x2a, 0xff, 0x90, 0x51, 0x2a, 0xff, 0x92, 0x53, 0x2c, 0xff, 0x94, 0x53, 0x2c, 0xff, 0x8e, 0x50, 0x2a, 0xff, 0x8d, 0x4f, 0x29, 0xff, 0x8f, 0x51, 0x2a, 0xff, 0x91, 0x54, 0x2b, 0xff, 0x91, 0x54, 0x2b, 0xff, 0x91, 0x54, 0x2b, 0xff, 0x93, 0x55, 0x2c, 0xff, 0x93, 0x57, 0x2d, 0xff, 0x92, 0x58, 0x2e, 0xff, 0x93, 0x58, 0x2e, 0xff, 0x96, 0x5a, 0x2e, 0xff, 0x98, 0x5c, 0x30, 0xff, 0x99, 0x5c, 0x31, 0xff, 0x99, 0x5e, 0x31, 0xff, 0x9d, 0x5e, 0x33, 0xff, 0x9e, 0x63, 0x37, 0xff, + 0x9d, 0x5e, 0x34, 0xff, 0x9e, 0x61, 0x34, 0xff, 0xa0, 0x64, 0x35, 0xff, 0xa1, 0x64, 0x37, 0xff, 0xa1, 0x64, 0x37, 0xff, 0xa1, 0x66, 0x37, 0xff, 0x9a, 0x5b, 0x31, 0xff, 0x9a, 0x5b, 0x32, 0xff, 0x9c, 0x5d, 0x33, 0xff, 0x9d, 0x5e, 0x35, 0xff, 0x9e, 0x5f, 0x35, 0xff, 0x9e, 0x5e, 0x36, 0xff, 0x9f, 0x60, 0x36, 0xff, 0xa1, 0x62, 0x36, 0xff, 0xa2, 0x62, 0x37, 0xff, 0xa3, 0x64, 0x3a, 0xff, 0xa6, 0x67, 0x3d, 0xff, 0xa7, 0x69, 0x3f, 0xff, 0x9f, 0x62, 0x3a, 0xff, 0x91, 0x56, 0x31, 0xff, 0x8f, 0x54, 0x2f, 0xff, 0x90, 0x55, 0x30, 0xff, 0x92, 0x56, 0x30, 0xff, 0x91, 0x57, 0x31, 0xff, 0x93, 0x57, 0x31, 0xff, 0x95, 0x5a, 0x32, 0xff, 0x95, 0x58, 0x32, 0xff, 0x92, 0x55, 0x2e, 0xff, 0xa9, 0x6b, 0x40, 0xff, 0xc7, 0x86, 0x53, 0xff, 0xcb, 0x8a, 0x58, 0xff, 0xc5, 0x84, 0x55, 0xff, 0xc4, 0x82, 0x52, 0xff, 0xc2, 0x82, 0x52, 0xff, 0xbf, 0x80, 0x50, 0xff, 0xc3, 0x83, 0x50, 0xff, 0xe6, 0x9a, 0x5e, 0xff, 0xe9, 0x9b, 0x62, 0xff, 0xec, 0xa9, 0x6b, 0xff, 0xf2, 0xbd, 0x79, 0xff, 0xef, 0xb9, 0x7c, 0xff, 0xef, 0xbc, 0x79, 0xff, 0xf0, 0xb9, 0x75, 0xff, 0xed, 0xb1, 0x71, 0xff, 0xee, 0xbd, 0x79, 0xff, 0xf0, 0xc7, 0x7b, 0xff, 0xef, 0xc7, 0x7e, 0xff, 0xea, 0xc5, 0x7e, 0xff, 0xb6, 0x96, 0x5d, 0xff, 0x93, 0x5c, 0x39, 0xff, 0x97, 0x63, 0x3d, 0xff, 0x96, 0x61, 0x3e, 0xff, 0x96, 0x61, 0x3f, 0xff, 0x97, 0x62, 0x40, 0xff, 0x98, 0x64, 0x3f, 0xff, 0x9c, 0x66, 0x42, 0xff, 0x9b, 0x67, 0x43, 0xff, 0x9b, 0x67, 0x43, 0xff, 0x9c, 0x67, 0x42, 0xff, 0x9b, 0x69, 0x44, 0xff, 0x9d, 0x6c, 0x45, 0xff, 0xa1, 0x70, 0x48, 0xff, 0xa4, 0x75, 0x49, 0xff, 0xa6, 0x79, 0x4b, 0xff, 0xa8, 0x79, 0x4d, 0xff, 0xab, 0x77, 0x4d, 0xff, 0xad, 0x7a, 0x4b, 0xff, 0xb0, 0x7c, 0x4b, 0xff, 0xb3, 0x7d, 0x4d, 0xff, 0xb5, 0x7b, 0x4b, 0xff, 0xb8, 0x7c, 0x4a, 0xff, 0xb9, 0x7e, 0x4b, 0xff, 0xba, 0x7c, 0x49, 0xff, 0xbb, 0x7e, 0x49, 0xff, 0xbd, 0x80, 0x4a, 0xff, 0xbe, 0x80, 0x4b, 0xff, 0xbf, 0x80, 0x4a, 0xff, 0xc0, 0x82, 0x4b, 0xff, 0xc0, 0x83, 0x4b, 0xff, 0xc1, 0x82, 0x4c, 0xff, 0xbf, 0x82, 0x4a, 0xff, 0xbe, 0x82, 0x4a, 0xff, 0xc0, 0x84, 0x4d, 0xff, 0xc2, 0x84, 0x4d, 0xff, 0xc3, 0x85, 0x4d, 0xff, 0xc4, 0x84, 0x4d, 0xff, 0xc5, 0x84, 0x4c, 0xff, 0xc4, 0x85, 0x4d, 0xff, 0xc5, 0x84, 0x4d, 0xff, 0xcb, 0x86, 0x4e, 0xff, 0xcf, 0x89, 0x50, 0xff, 0xd4, 0x8b, 0x52, 0xff, 0xd8, 0x8d, 0x52, 0xff, 0xda, 0x8d, 0x54, 0xff, 0xda, 0x8f, 0x56, 0xff, 0xe1, 0x93, 0x59, 0xff, 0xe3, 0x95, 0x57, 0xff, 0xe2, 0x97, 0x55, 0xff, 0xec, 0xa2, 0x65, 0xff, 0xf1, 0xa8, 0x69, 0xff, 0xf0, 0xa3, 0x64, 0xff, 0xf2, 0xa1, 0x64, 0xff, 0xec, 0x9e, 0x62, 0xff, 0xce, 0x8c, 0x53, 0xff, 0xb8, 0x7c, 0x43, 0xff, 0xb9, 0x79, 0x40, 0xff, 0xb7, 0x78, 0x3f, 0xff, 0xb4, 0x75, 0x3d, 0xff, 0xb1, 0x73, 0x3a, 0xff, 0xaf, 0x71, 0x39, 0xff, 0xac, 0x6d, 0x35, 0xff, 0xa9, 0x6b, 0x33, 0xff, 0xa7, 0x6a, 0x33, 0xff, 0xa5, 0x69, 0x32, 0xff, 0xa3, 0x66, 0x30, 0xff, 0xa1, 0x63, 0x2e, 0xff, 0xa1, 0x62, 0x2d, 0xff, 0x9e, 0x5f, 0x2d, 0xff, 0x9c, 0x5d, 0x2b, 0xff, 0x9c, 0x5c, 0x2a, 0xff, 0x9a, 0x5c, 0x2b, 0xff, 0x98, 0x5b, 0x29, 0xff, 0x97, 0x58, 0x29, 0xff, 0x96, 0x56, 0x29, 0xff, 0x94, 0x57, 0x29, 0xff, 0x93, 0x56, 0x29, 0xff, 0x93, 0x55, 0x29, 0xff, 0x93, 0x56, 0x27, 0xff, 0x93, 0x56, 0x28, 0xff, 0x91, 0x54, 0x29, 0xff, 0x92, 0x55, 0x28, 0xff, 0x91, 0x54, 0x29, 0xff, 0x92, 0x55, 0x29, 0xff, 0x8f, 0x52, 0x27, 0xff, 0x9c, 0x5f, 0x32, 0xff, 0xb4, 0x78, 0x47, 0xff, 0xb9, 0x7c, 0x49, 0xff, 0xb5, 0x76, 0x42, 0xff, 0xb1, 0x70, 0x3e, 0xff, 0xac, 0x6b, 0x3a, 0xff, 0xa7, 0x69, 0x37, 0xff, 0xa6, 0x69, 0x37, 0xff, 0xa6, 0x66, 0x36, 0xff, 0xa3, 0x62, 0x34, 0xff, 0x9f, 0x5f, 0x32, 0xff, 0x9a, 0x5a, 0x2e, 0xff, 0x98, 0x57, 0x2c, 0xff, 0x95, 0x53, 0x2a, 0xff, 0x8f, 0x4e, 0x29, 0xff, 0x8f, 0x4d, 0x29, 0xff, 0xa4, 0x65, 0x3a, 0xff, 0xa9, 0x6a, 0x3c, 0xff, 0xa1, 0x61, 0x37, 0xff, 0x9d, 0x5c, 0x33, 0xff, 0x99, 0x58, 0x30, 0xff, 0x95, 0x55, 0x2e, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x8f, 0x4f, 0x2b, 0xff, 0x8d, 0x4c, 0x29, 0xff, 0x89, 0x4a, 0x28, 0xff, 0x86, 0x47, 0x27, 0xff, 0x8b, 0x4b, 0x29, 0xff, 0x88, 0x49, 0x29, 0xff, 0x84, 0x46, 0x26, 0xff, 0x83, 0x42, 0x22, 0xff, 0x7e, 0x40, 0x20, 0xff, 0x7b, 0x3e, 0x20, 0xff, 0x79, 0x3c, 0x1c, 0xff, 0x76, 0x39, 0x1b, 0xff, 0x75, 0x39, 0x1a, 0xff, 0x75, 0x39, 0x18, 0xff, 0x74, 0x37, 0x18, 0xff, 0x70, 0x34, 0x15, 0xff, 0x6c, 0x30, 0x12, 0xff, 0x6e, 0x31, 0x10, 0xff, 0x77, 0x3a, 0x1b, 0xff, 0x7e, 0x41, 0x22, 0xff, 0x83, 0x47, 0x26, 0xff, 0x8a, 0x4d, 0x28, 0xff, 0x8e, 0x50, 0x2b, 0xff, 0x91, 0x53, 0x2e, 0xff, 0x94, 0x54, 0x2d, 0xff, 0x94, 0x53, 0x2d, 0xff, 0x91, 0x52, 0x2c, 0xff, 0x93, 0x51, 0x2a, 0xff, 0x91, 0x4f, 0x2a, 0xff, 0x8f, 0x4f, 0x2a, 0xff, 0x8c, 0x4d, 0x29, 0xff, 0x8b, 0x4b, 0x27, 0xff, 0x89, 0x49, 0x27, 0xff, 0x88, 0x49, 0x26, 0xff, 0x86, 0x46, 0x27, 0xff, 0x83, 0x44, 0x25, 0xff, 0x80, 0x41, 0x21, 0xff, 0x7e, 0x40, 0x1f, 0xff, 0x80, 0x41, 0x22, 0xff, 0x84, 0x44, 0x25, 0xff, 0x86, 0x46, 0x27, 0xff, 0x88, 0x47, 0x28, 0xff, 0x88, 0x48, 0x28, 0xff, 0x81, 0x43, 0x22, 0xff, 0x80, 0x42, 0x1f, 0xff, 0x80, 0x42, 0x1f, 0xff, 0x81, 0x43, 0x20, 0xff, 0x84, 0x44, 0x24, 0xff, 0x84, 0x46, 0x21, 0xff, 0x85, 0x46, 0x25, 0xff, 0x86, 0x48, 0x26, 0xff, 0x88, 0x47, 0x25, 0xff, 0x89, 0x4a, 0x26, 0xff, 0x8a, 0x4a, 0x28, 0xff, 0x8c, 0x4a, 0x29, 0xff, 0x8b, 0x4d, 0x2a, 0xff, 0x8d, 0x4c, 0x29, 0xff, 0x8b, 0x4a, 0x2a, 0xff, 0x8e, 0x4e, 0x2a, 0xff, 0x8f, 0x4f, 0x2b, 0xff, 0x91, 0x50, 0x2c, 0xff, 0x8d, 0x4f, 0x2a, 0xff, 0x8c, 0x4e, 0x2a, 0xff, 0x8f, 0x52, 0x2a, 0xff, 0x8f, 0x51, 0x2b, 0xff, 0x90, 0x52, 0x2c, 0xff, 0x90, 0x52, 0x2b, 0xff, 0x90, 0x54, 0x2c, 0xff, 0x90, 0x53, 0x2c, 0xff, 0x90, 0x56, 0x2d, 0xff, 0x93, 0x56, 0x2e, 0xff, 0x93, 0x58, 0x2f, 0xff, 0x94, 0x59, 0x2f, 0xff, 0x95, 0x5a, 0x2f, 0xff, 0x97, 0x5b, 0x31, 0xff, 0x99, 0x5e, 0x32, 0xff, 0x9c, 0x5f, 0x33, 0xff, + 0x9a, 0x5e, 0x31, 0xff, 0x9b, 0x5c, 0x32, 0xff, 0x9c, 0x60, 0x34, 0xff, 0x9d, 0x62, 0x36, 0xff, 0xa0, 0x62, 0x36, 0xff, 0x96, 0x57, 0x2f, 0xff, 0x93, 0x53, 0x2d, 0xff, 0x96, 0x56, 0x31, 0xff, 0x9a, 0x5b, 0x32, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x9c, 0x5e, 0x34, 0xff, 0x9e, 0x60, 0x36, 0xff, 0xa0, 0x5f, 0x36, 0xff, 0xa0, 0x60, 0x37, 0xff, 0xa1, 0x62, 0x38, 0xff, 0xa3, 0x64, 0x3b, 0xff, 0xa4, 0x65, 0x3c, 0xff, 0xa0, 0x62, 0x3b, 0xff, 0x9a, 0x5d, 0x36, 0xff, 0x91, 0x57, 0x32, 0xff, 0x8d, 0x53, 0x2d, 0xff, 0x8e, 0x53, 0x30, 0xff, 0x8e, 0x54, 0x30, 0xff, 0x90, 0x54, 0x30, 0xff, 0x91, 0x56, 0x31, 0xff, 0x92, 0x57, 0x30, 0xff, 0x93, 0x57, 0x31, 0xff, 0x95, 0x58, 0x32, 0xff, 0x95, 0x59, 0x31, 0xff, 0x9d, 0x5f, 0x34, 0xff, 0xbb, 0x7e, 0x4e, 0xff, 0xce, 0x8a, 0x58, 0xff, 0xc9, 0x87, 0x55, 0xff, 0xc8, 0x87, 0x53, 0xff, 0xc4, 0x84, 0x54, 0xff, 0xc9, 0x89, 0x53, 0xff, 0xef, 0x9f, 0x62, 0xff, 0xef, 0xa3, 0x64, 0xff, 0xee, 0xaa, 0x6b, 0xff, 0xee, 0xb6, 0x76, 0xff, 0xef, 0xbe, 0x7f, 0xff, 0xef, 0xbe, 0x83, 0xff, 0xef, 0xbc, 0x7c, 0xff, 0xf0, 0xb8, 0x76, 0xff, 0xed, 0xb3, 0x73, 0xff, 0xef, 0xbd, 0x78, 0xff, 0xed, 0xc6, 0x7b, 0xff, 0xbc, 0x90, 0x5e, 0xff, 0x8e, 0x54, 0x31, 0xff, 0x99, 0x60, 0x3a, 0xff, 0x97, 0x5e, 0x38, 0xff, 0x98, 0x61, 0x3b, 0xff, 0x98, 0x64, 0x3d, 0xff, 0x97, 0x65, 0x3f, 0xff, 0x9a, 0x65, 0x3f, 0xff, 0x9b, 0x65, 0x3e, 0xff, 0x9b, 0x67, 0x3e, 0xff, 0x9c, 0x68, 0x3f, 0xff, 0x9c, 0x67, 0x3f, 0xff, 0x9c, 0x68, 0x40, 0xff, 0x9c, 0x6a, 0x40, 0xff, 0x9f, 0x6d, 0x42, 0xff, 0xa2, 0x71, 0x44, 0xff, 0xa4, 0x73, 0x45, 0xff, 0xa6, 0x76, 0x46, 0xff, 0xab, 0x75, 0x46, 0xff, 0xad, 0x76, 0x46, 0xff, 0xaf, 0x77, 0x48, 0xff, 0xb1, 0x79, 0x48, 0xff, 0xb4, 0x7b, 0x4a, 0xff, 0xb7, 0x7d, 0x4a, 0xff, 0xba, 0x7f, 0x4c, 0xff, 0xbc, 0x80, 0x4d, 0xff, 0xbc, 0x80, 0x4c, 0xff, 0xbc, 0x81, 0x4b, 0xff, 0xb9, 0x7e, 0x48, 0xff, 0xb7, 0x7b, 0x44, 0xff, 0xb8, 0x7a, 0x42, 0xff, 0xb9, 0x7a, 0x43, 0xff, 0xbc, 0x7e, 0x45, 0xff, 0xbe, 0x7f, 0x47, 0xff, 0xc0, 0x81, 0x49, 0xff, 0xc2, 0x84, 0x4c, 0xff, 0xc6, 0x88, 0x50, 0xff, 0xca, 0x88, 0x50, 0xff, 0xcf, 0x89, 0x50, 0xff, 0xcf, 0x88, 0x51, 0xff, 0xc7, 0x84, 0x4c, 0xff, 0xcb, 0x86, 0x4e, 0xff, 0xd0, 0x89, 0x52, 0xff, 0xd4, 0x8d, 0x53, 0xff, 0xd9, 0x8d, 0x54, 0xff, 0xdd, 0x8f, 0x55, 0xff, 0xdb, 0x90, 0x56, 0xff, 0xd5, 0x8d, 0x53, 0xff, 0xcb, 0x89, 0x4d, 0xff, 0xd0, 0x8c, 0x4f, 0xff, 0xe2, 0x96, 0x55, 0xff, 0xec, 0xa1, 0x60, 0xff, 0xf0, 0xab, 0x6d, 0xff, 0xf0, 0xab, 0x6b, 0xff, 0xf0, 0xa6, 0x69, 0xff, 0xf2, 0xa5, 0x67, 0xff, 0xec, 0x9f, 0x63, 0xff, 0xcd, 0x89, 0x50, 0xff, 0xb7, 0x79, 0x42, 0xff, 0xb9, 0x7b, 0x43, 0xff, 0xb6, 0x78, 0x3f, 0xff, 0xb3, 0x74, 0x3c, 0xff, 0xb0, 0x72, 0x39, 0xff, 0xae, 0x6f, 0x36, 0xff, 0xad, 0x6e, 0x36, 0xff, 0xaa, 0x6c, 0x35, 0xff, 0xa7, 0x69, 0x33, 0xff, 0xa5, 0x69, 0x31, 0xff, 0xa4, 0x68, 0x2e, 0xff, 0xa2, 0x66, 0x2d, 0xff, 0xa0, 0x63, 0x2d, 0xff, 0x9f, 0x62, 0x2c, 0xff, 0x9d, 0x5f, 0x2b, 0xff, 0x9b, 0x5d, 0x2c, 0xff, 0x9b, 0x5c, 0x2a, 0xff, 0x99, 0x5a, 0x29, 0xff, 0x97, 0x58, 0x29, 0xff, 0x97, 0x58, 0x29, 0xff, 0x97, 0x58, 0x29, 0xff, 0x96, 0x56, 0x29, 0xff, 0x94, 0x54, 0x28, 0xff, 0x93, 0x55, 0x29, 0xff, 0x92, 0x55, 0x29, 0xff, 0x92, 0x55, 0x29, 0xff, 0x93, 0x55, 0x29, 0xff, 0x92, 0x56, 0x29, 0xff, 0x90, 0x53, 0x27, 0xff, 0x9b, 0x5f, 0x31, 0xff, 0xb4, 0x78, 0x47, 0xff, 0xbb, 0x80, 0x4b, 0xff, 0xb7, 0x7a, 0x46, 0xff, 0xb4, 0x76, 0x43, 0xff, 0xb0, 0x72, 0x3e, 0xff, 0xab, 0x6d, 0x39, 0xff, 0xa8, 0x6a, 0x36, 0xff, 0xa9, 0x69, 0x37, 0xff, 0xa7, 0x66, 0x36, 0xff, 0xa2, 0x62, 0x34, 0xff, 0xa0, 0x5f, 0x32, 0xff, 0x9d, 0x5c, 0x2e, 0xff, 0x99, 0x57, 0x2c, 0xff, 0x93, 0x51, 0x29, 0xff, 0x95, 0x53, 0x2b, 0xff, 0xa9, 0x69, 0x3c, 0xff, 0xab, 0x6b, 0x3e, 0xff, 0xa4, 0x64, 0x38, 0xff, 0x9f, 0x5f, 0x34, 0xff, 0x9a, 0x5a, 0x31, 0xff, 0x96, 0x57, 0x2e, 0xff, 0x94, 0x53, 0x2d, 0xff, 0x91, 0x50, 0x2c, 0xff, 0x8f, 0x4e, 0x2b, 0xff, 0x8b, 0x4c, 0x29, 0xff, 0x88, 0x49, 0x28, 0xff, 0x8e, 0x4c, 0x2a, 0xff, 0x8a, 0x4a, 0x2a, 0xff, 0x87, 0x46, 0x27, 0xff, 0x83, 0x44, 0x25, 0xff, 0x81, 0x41, 0x23, 0xff, 0x7e, 0x3f, 0x20, 0xff, 0x7b, 0x3e, 0x1e, 0xff, 0x78, 0x3b, 0x1b, 0xff, 0x77, 0x3a, 0x1b, 0xff, 0x78, 0x3a, 0x1a, 0xff, 0x77, 0x39, 0x18, 0xff, 0x74, 0x37, 0x18, 0xff, 0x73, 0x36, 0x18, 0xff, 0x72, 0x36, 0x16, 0xff, 0x6f, 0x34, 0x17, 0xff, 0x6f, 0x33, 0x13, 0xff, 0x6e, 0x33, 0x12, 0xff, 0x6e, 0x32, 0x12, 0xff, 0x6c, 0x32, 0x12, 0xff, 0x6e, 0x33, 0x12, 0xff, 0x72, 0x36, 0x13, 0xff, 0x75, 0x39, 0x16, 0xff, 0x78, 0x3a, 0x1a, 0xff, 0x79, 0x3a, 0x18, 0xff, 0x7b, 0x3b, 0x1b, 0xff, 0x7b, 0x3d, 0x1e, 0xff, 0x7d, 0x3d, 0x1e, 0xff, 0x7d, 0x3d, 0x1d, 0xff, 0x7e, 0x3e, 0x1f, 0xff, 0x7d, 0x3d, 0x1f, 0xff, 0x7d, 0x3e, 0x1e, 0xff, 0x7e, 0x3e, 0x1e, 0xff, 0x7c, 0x3e, 0x1d, 0xff, 0x7d, 0x3e, 0x1f, 0xff, 0x7d, 0x3e, 0x1f, 0xff, 0x7f, 0x40, 0x20, 0xff, 0x82, 0x42, 0x24, 0xff, 0x82, 0x44, 0x25, 0xff, 0x83, 0x44, 0x25, 0xff, 0x7f, 0x40, 0x20, 0xff, 0x7c, 0x3f, 0x1b, 0xff, 0x7e, 0x40, 0x1e, 0xff, 0x80, 0x40, 0x20, 0xff, 0x81, 0x42, 0x20, 0xff, 0x82, 0x42, 0x21, 0xff, 0x82, 0x42, 0x24, 0xff, 0x83, 0x44, 0x23, 0xff, 0x85, 0x46, 0x23, 0xff, 0x86, 0x47, 0x25, 0xff, 0x87, 0x47, 0x26, 0xff, 0x88, 0x49, 0x28, 0xff, 0x8b, 0x4a, 0x29, 0xff, 0x8a, 0x4a, 0x28, 0xff, 0x8a, 0x4a, 0x29, 0xff, 0x8d, 0x4c, 0x29, 0xff, 0x8e, 0x4e, 0x2a, 0xff, 0x8d, 0x4e, 0x2b, 0xff, 0x8a, 0x4e, 0x29, 0xff, 0x8b, 0x4d, 0x29, 0xff, 0x8b, 0x4e, 0x2a, 0xff, 0x8d, 0x4f, 0x2b, 0xff, 0x8e, 0x51, 0x2c, 0xff, 0x8f, 0x51, 0x2c, 0xff, 0x8f, 0x51, 0x2c, 0xff, 0x8f, 0x53, 0x2c, 0xff, 0x8f, 0x55, 0x2e, 0xff, 0x8f, 0x54, 0x2e, 0xff, 0x91, 0x55, 0x2e, 0xff, 0x92, 0x56, 0x2f, 0xff, 0x93, 0x57, 0x30, 0xff, 0x94, 0x58, 0x2f, 0xff, 0x97, 0x5c, 0x31, 0xff, 0x99, 0x5d, 0x32, 0xff, + 0x97, 0x5a, 0x31, 0xff, 0x98, 0x5c, 0x31, 0xff, 0x99, 0x5d, 0x32, 0xff, 0x9c, 0x5f, 0x34, 0xff, 0x94, 0x56, 0x30, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x91, 0x53, 0x2d, 0xff, 0x93, 0x52, 0x2e, 0xff, 0x96, 0x58, 0x31, 0xff, 0x95, 0x56, 0x30, 0xff, 0x95, 0x55, 0x31, 0xff, 0x97, 0x56, 0x31, 0xff, 0x9a, 0x5c, 0x34, 0xff, 0x9c, 0x5d, 0x36, 0xff, 0x9d, 0x60, 0x37, 0xff, 0x9b, 0x5c, 0x36, 0xff, 0x99, 0x5b, 0x34, 0xff, 0x98, 0x5a, 0x36, 0xff, 0x9a, 0x5c, 0x36, 0xff, 0x91, 0x55, 0x31, 0xff, 0x8b, 0x50, 0x2d, 0xff, 0x8d, 0x50, 0x2d, 0xff, 0x8c, 0x53, 0x2e, 0xff, 0x8e, 0x54, 0x2f, 0xff, 0x8e, 0x56, 0x2f, 0xff, 0x90, 0x54, 0x2f, 0xff, 0x92, 0x56, 0x30, 0xff, 0x94, 0x58, 0x30, 0xff, 0x95, 0x57, 0x31, 0xff, 0x97, 0x5a, 0x31, 0xff, 0x98, 0x5c, 0x32, 0xff, 0xab, 0x6e, 0x41, 0xff, 0xd0, 0x8f, 0x5b, 0xff, 0xd2, 0x8b, 0x57, 0xff, 0xcc, 0x89, 0x56, 0xff, 0xd5, 0x8f, 0x58, 0xff, 0xf4, 0xa5, 0x65, 0xff, 0xf0, 0xa1, 0x64, 0xff, 0xef, 0xa3, 0x66, 0xff, 0xf0, 0xaf, 0x6e, 0xff, 0xee, 0xb5, 0x76, 0xff, 0xed, 0xbc, 0x7e, 0xff, 0xf1, 0xc2, 0x82, 0xff, 0xee, 0xbe, 0x7d, 0xff, 0xf0, 0xbf, 0x78, 0xff, 0xee, 0xba, 0x78, 0xff, 0xc2, 0xa0, 0x69, 0xff, 0x8c, 0x51, 0x2c, 0xff, 0x99, 0x5f, 0x39, 0xff, 0x98, 0x5e, 0x38, 0xff, 0x98, 0x60, 0x37, 0xff, 0x97, 0x5f, 0x3a, 0xff, 0x98, 0x64, 0x39, 0xff, 0x99, 0x64, 0x3b, 0xff, 0x99, 0x63, 0x39, 0xff, 0x99, 0x5f, 0x37, 0xff, 0x9a, 0x62, 0x39, 0xff, 0x9c, 0x65, 0x3b, 0xff, 0x9b, 0x66, 0x3c, 0xff, 0x9c, 0x66, 0x3b, 0xff, 0x9c, 0x65, 0x3c, 0xff, 0x9e, 0x69, 0x40, 0xff, 0xa2, 0x6e, 0x43, 0xff, 0xa4, 0x70, 0x44, 0xff, 0xa7, 0x71, 0x44, 0xff, 0xa9, 0x72, 0x45, 0xff, 0xac, 0x73, 0x46, 0xff, 0xaf, 0x76, 0x47, 0xff, 0xb1, 0x79, 0x46, 0xff, 0xb3, 0x78, 0x48, 0xff, 0xb4, 0x7a, 0x49, 0xff, 0xb5, 0x79, 0x48, 0xff, 0xb2, 0x76, 0x45, 0xff, 0xaf, 0x74, 0x42, 0xff, 0xaf, 0x72, 0x3f, 0xff, 0xb1, 0x74, 0x3f, 0xff, 0xb2, 0x75, 0x40, 0xff, 0xb3, 0x76, 0x3f, 0xff, 0xb6, 0x78, 0x40, 0xff, 0xbd, 0x7d, 0x44, 0xff, 0xc1, 0x81, 0x49, 0xff, 0xc2, 0x82, 0x4a, 0xff, 0xc5, 0x84, 0x4c, 0xff, 0xc9, 0x85, 0x4e, 0xff, 0xd1, 0x8b, 0x51, 0xff, 0xd9, 0x91, 0x56, 0xff, 0xd6, 0x8f, 0x55, 0xff, 0xca, 0x86, 0x50, 0xff, 0xd1, 0x8c, 0x53, 0xff, 0xd7, 0x8f, 0x55, 0xff, 0xdb, 0x92, 0x57, 0xff, 0xdf, 0x92, 0x58, 0xff, 0xe5, 0x93, 0x5a, 0xff, 0xda, 0x90, 0x56, 0xff, 0xc9, 0x8b, 0x4d, 0xff, 0xcb, 0x8a, 0x4e, 0xff, 0xcc, 0x89, 0x4d, 0xff, 0xd3, 0x8f, 0x4f, 0xff, 0xe7, 0x9e, 0x5e, 0xff, 0xf3, 0xab, 0x6b, 0xff, 0xf0, 0xae, 0x6b, 0xff, 0xf1, 0xaf, 0x6d, 0xff, 0xf0, 0xab, 0x6b, 0xff, 0xf2, 0xa7, 0x68, 0xff, 0xeb, 0xa1, 0x64, 0xff, 0xcb, 0x8c, 0x51, 0xff, 0xb7, 0x7a, 0x41, 0xff, 0xb9, 0x79, 0x41, 0xff, 0xb7, 0x76, 0x3d, 0xff, 0xb4, 0x74, 0x3b, 0xff, 0xb0, 0x72, 0x38, 0xff, 0xae, 0x72, 0x36, 0xff, 0xad, 0x6f, 0x35, 0xff, 0xab, 0x6b, 0x33, 0xff, 0xa9, 0x6a, 0x31, 0xff, 0xa6, 0x69, 0x31, 0xff, 0xa4, 0x67, 0x2f, 0xff, 0xa3, 0x65, 0x2d, 0xff, 0xa1, 0x64, 0x2c, 0xff, 0xa1, 0x61, 0x2c, 0xff, 0x9e, 0x5f, 0x2c, 0xff, 0x9c, 0x5f, 0x2a, 0xff, 0x9c, 0x5d, 0x2a, 0xff, 0x99, 0x5a, 0x29, 0xff, 0x97, 0x5a, 0x28, 0xff, 0x98, 0x58, 0x29, 0xff, 0x96, 0x58, 0x28, 0xff, 0x95, 0x57, 0x28, 0xff, 0x95, 0x56, 0x29, 0xff, 0x95, 0x56, 0x29, 0xff, 0x93, 0x55, 0x28, 0xff, 0x94, 0x55, 0x29, 0xff, 0x94, 0x54, 0x29, 0xff, 0x91, 0x53, 0x27, 0xff, 0x9b, 0x60, 0x33, 0xff, 0xb6, 0x79, 0x49, 0xff, 0xbd, 0x80, 0x4c, 0xff, 0xb9, 0x7e, 0x49, 0xff, 0xb7, 0x7d, 0x48, 0xff, 0xb4, 0x79, 0x44, 0xff, 0xb0, 0x71, 0x3e, 0xff, 0xac, 0x6d, 0x39, 0xff, 0xad, 0x6c, 0x39, 0xff, 0xab, 0x6a, 0x38, 0xff, 0xa7, 0x67, 0x36, 0xff, 0xa4, 0x65, 0x35, 0xff, 0xa1, 0x62, 0x33, 0xff, 0x9e, 0x5e, 0x2f, 0xff, 0x99, 0x58, 0x2b, 0xff, 0x9c, 0x5b, 0x2f, 0xff, 0xae, 0x6f, 0x3f, 0xff, 0xb0, 0x70, 0x42, 0xff, 0xa7, 0x66, 0x3a, 0xff, 0xa2, 0x61, 0x35, 0xff, 0x9e, 0x5d, 0x33, 0xff, 0x99, 0x58, 0x30, 0xff, 0x97, 0x56, 0x2e, 0xff, 0x94, 0x54, 0x2c, 0xff, 0x90, 0x4f, 0x2b, 0xff, 0x8f, 0x4d, 0x2a, 0xff, 0x8a, 0x49, 0x26, 0xff, 0x8e, 0x4d, 0x2b, 0xff, 0x8d, 0x4c, 0x2a, 0xff, 0x8a, 0x4a, 0x27, 0xff, 0x87, 0x46, 0x26, 0xff, 0x84, 0x44, 0x25, 0xff, 0x81, 0x41, 0x22, 0xff, 0x7d, 0x3d, 0x1f, 0xff, 0x7a, 0x3b, 0x1c, 0xff, 0x7a, 0x3b, 0x1b, 0xff, 0x7a, 0x3b, 0x1b, 0xff, 0x78, 0x3b, 0x1b, 0xff, 0x75, 0x38, 0x19, 0xff, 0x74, 0x37, 0x18, 0xff, 0x73, 0x36, 0x18, 0xff, 0x71, 0x37, 0x15, 0xff, 0x71, 0x36, 0x18, 0xff, 0x72, 0x36, 0x15, 0xff, 0x70, 0x34, 0x13, 0xff, 0x6f, 0x34, 0x15, 0xff, 0x70, 0x35, 0x13, 0xff, 0x70, 0x35, 0x13, 0xff, 0x71, 0x35, 0x15, 0xff, 0x72, 0x36, 0x15, 0xff, 0x73, 0x36, 0x17, 0xff, 0x74, 0x37, 0x17, 0xff, 0x73, 0x38, 0x16, 0xff, 0x73, 0x35, 0x16, 0xff, 0x73, 0x37, 0x16, 0xff, 0x75, 0x39, 0x18, 0xff, 0x75, 0x39, 0x19, 0xff, 0x77, 0x39, 0x18, 0xff, 0x75, 0x37, 0x19, 0xff, 0x77, 0x3a, 0x1b, 0xff, 0x78, 0x3b, 0x1b, 0xff, 0x7a, 0x3b, 0x1d, 0xff, 0x7b, 0x3c, 0x1d, 0xff, 0x7e, 0x40, 0x1d, 0xff, 0x81, 0x41, 0x22, 0xff, 0x80, 0x40, 0x23, 0xff, 0x7c, 0x3b, 0x1e, 0xff, 0x7a, 0x3d, 0x1b, 0xff, 0x7c, 0x3e, 0x1d, 0xff, 0x7e, 0x3f, 0x1d, 0xff, 0x7e, 0x40, 0x1d, 0xff, 0x7f, 0x40, 0x1e, 0xff, 0x7f, 0x40, 0x20, 0xff, 0x82, 0x43, 0x20, 0xff, 0x83, 0x44, 0x22, 0xff, 0x85, 0x44, 0x25, 0xff, 0x86, 0x45, 0x26, 0xff, 0x86, 0x45, 0x26, 0xff, 0x88, 0x49, 0x28, 0xff, 0x88, 0x47, 0x28, 0xff, 0x8a, 0x49, 0x29, 0xff, 0x8a, 0x4c, 0x29, 0xff, 0x8c, 0x4e, 0x29, 0xff, 0x8b, 0x4d, 0x2a, 0xff, 0x8a, 0x4d, 0x29, 0xff, 0x8a, 0x4d, 0x29, 0xff, 0x8a, 0x4d, 0x29, 0xff, 0x8b, 0x4e, 0x2a, 0xff, 0x8c, 0x4f, 0x2b, 0xff, 0x8d, 0x4e, 0x2b, 0xff, 0x8d, 0x4f, 0x2b, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x8d, 0x51, 0x2c, 0xff, 0x8c, 0x52, 0x2d, 0xff, 0x8d, 0x52, 0x2c, 0xff, 0x8f, 0x52, 0x2d, 0xff, 0x90, 0x53, 0x2d, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x93, 0x57, 0x30, 0xff, 0x95, 0x5a, 0x31, 0xff, + 0x94, 0x56, 0x2f, 0xff, 0x93, 0x56, 0x30, 0xff, 0x95, 0x59, 0x31, 0xff, 0x97, 0x5a, 0x32, 0xff, 0x8a, 0x4c, 0x2a, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8e, 0x50, 0x2c, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x93, 0x55, 0x31, 0xff, 0x93, 0x55, 0x31, 0xff, 0x95, 0x57, 0x31, 0xff, 0x96, 0x56, 0x32, 0xff, 0x97, 0x57, 0x33, 0xff, 0x98, 0x58, 0x34, 0xff, 0x98, 0x5a, 0x36, 0xff, 0x8f, 0x53, 0x31, 0xff, 0x89, 0x4e, 0x2b, 0xff, 0x8d, 0x4f, 0x2c, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x8c, 0x50, 0x2d, 0xff, 0x8d, 0x51, 0x2d, 0xff, 0x8d, 0x54, 0x2d, 0xff, 0x90, 0x53, 0x2e, 0xff, 0x92, 0x56, 0x30, 0xff, 0x95, 0x57, 0x31, 0xff, 0x96, 0x5a, 0x31, 0xff, 0x97, 0x5a, 0x32, 0xff, 0x95, 0x58, 0x31, 0xff, 0x96, 0x59, 0x30, 0xff, 0xc4, 0x86, 0x55, 0xff, 0xd2, 0x8e, 0x58, 0xff, 0xe2, 0x98, 0x60, 0xff, 0xf2, 0xa6, 0x65, 0xff, 0xf0, 0xa5, 0x65, 0xff, 0xf0, 0xa8, 0x69, 0xff, 0xef, 0xa6, 0x69, 0xff, 0xf0, 0xb3, 0x6f, 0xff, 0xf0, 0xb9, 0x74, 0xff, 0xef, 0xc0, 0x7d, 0xff, 0xf2, 0xc6, 0x7c, 0xff, 0xf0, 0xbf, 0x7a, 0xff, 0xe5, 0xba, 0x73, 0xff, 0x96, 0x5c, 0x35, 0xff, 0x9a, 0x62, 0x3b, 0xff, 0x98, 0x5f, 0x39, 0xff, 0x98, 0x60, 0x38, 0xff, 0x97, 0x5f, 0x36, 0xff, 0x99, 0x62, 0x36, 0xff, 0x98, 0x62, 0x36, 0xff, 0x98, 0x62, 0x36, 0xff, 0x9a, 0x63, 0x37, 0xff, 0x98, 0x5f, 0x36, 0xff, 0x98, 0x5f, 0x36, 0xff, 0x99, 0x60, 0x35, 0xff, 0x98, 0x61, 0x36, 0xff, 0x98, 0x60, 0x36, 0xff, 0x99, 0x61, 0x37, 0xff, 0x9c, 0x65, 0x39, 0xff, 0x9f, 0x68, 0x3b, 0xff, 0xa1, 0x6b, 0x3d, 0xff, 0xa2, 0x6c, 0x3e, 0xff, 0xa2, 0x69, 0x3c, 0xff, 0xa4, 0x6a, 0x3d, 0xff, 0xa4, 0x68, 0x3b, 0xff, 0xa5, 0x69, 0x3c, 0xff, 0xa7, 0x6b, 0x3e, 0xff, 0xa9, 0x6d, 0x3e, 0xff, 0xab, 0x6f, 0x40, 0xff, 0xad, 0x71, 0x41, 0xff, 0xaf, 0x73, 0x42, 0xff, 0xb0, 0x74, 0x43, 0xff, 0xb1, 0x75, 0x41, 0xff, 0xb3, 0x77, 0x3f, 0xff, 0xb5, 0x76, 0x40, 0xff, 0xb7, 0x78, 0x3f, 0xff, 0xb9, 0x7a, 0x42, 0xff, 0xbe, 0x7e, 0x47, 0xff, 0xc2, 0x82, 0x49, 0xff, 0xc6, 0x84, 0x4a, 0xff, 0xcb, 0x86, 0x4d, 0xff, 0xd2, 0x8c, 0x50, 0xff, 0xd9, 0x92, 0x57, 0xff, 0xd6, 0x90, 0x58, 0xff, 0xd2, 0x8d, 0x54, 0xff, 0xd8, 0x8f, 0x56, 0xff, 0xdf, 0x93, 0x58, 0xff, 0xe8, 0x96, 0x5c, 0xff, 0xe7, 0x98, 0x5c, 0xff, 0xe1, 0x97, 0x5a, 0xff, 0xdb, 0x96, 0x57, 0xff, 0xd8, 0x93, 0x55, 0xff, 0xd7, 0x93, 0x54, 0xff, 0xd4, 0x91, 0x53, 0xff, 0xcf, 0x8c, 0x50, 0xff, 0xd7, 0x94, 0x57, 0xff, 0xeb, 0xa5, 0x69, 0xff, 0xf1, 0xab, 0x6c, 0xff, 0xf0, 0xad, 0x6b, 0xff, 0xf1, 0xb0, 0x71, 0xff, 0xf0, 0xaf, 0x6f, 0xff, 0xf0, 0xa8, 0x69, 0xff, 0xe5, 0x9b, 0x60, 0xff, 0xc8, 0x87, 0x4b, 0xff, 0xba, 0x7d, 0x41, 0xff, 0xb8, 0x79, 0x3e, 0xff, 0xb8, 0x76, 0x3d, 0xff, 0xb6, 0x76, 0x38, 0xff, 0xb3, 0x73, 0x36, 0xff, 0xaf, 0x71, 0x36, 0xff, 0xad, 0x6f, 0x35, 0xff, 0xaa, 0x6c, 0x32, 0xff, 0xa9, 0x6a, 0x31, 0xff, 0xa8, 0x69, 0x31, 0xff, 0xa5, 0x68, 0x2e, 0xff, 0xa3, 0x65, 0x2d, 0xff, 0xa1, 0x65, 0x2d, 0xff, 0xa1, 0x63, 0x2d, 0xff, 0x9e, 0x61, 0x2d, 0xff, 0x9c, 0x5c, 0x2a, 0xff, 0x9c, 0x5a, 0x29, 0xff, 0x9a, 0x5b, 0x2a, 0xff, 0x99, 0x5a, 0x29, 0xff, 0x99, 0x5a, 0x29, 0xff, 0x97, 0x58, 0x29, 0xff, 0x96, 0x58, 0x29, 0xff, 0x96, 0x57, 0x28, 0xff, 0x94, 0x57, 0x28, 0xff, 0x94, 0x55, 0x28, 0xff, 0x93, 0x54, 0x28, 0xff, 0x92, 0x53, 0x27, 0xff, 0x9a, 0x5e, 0x32, 0xff, 0xb5, 0x7a, 0x48, 0xff, 0xc0, 0x83, 0x4b, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xb9, 0x80, 0x4f, 0xff, 0xb7, 0x7d, 0x4b, 0xff, 0xb5, 0x7a, 0x44, 0xff, 0xb1, 0x73, 0x3d, 0xff, 0xb1, 0x71, 0x3c, 0xff, 0xaf, 0x6e, 0x3c, 0xff, 0xad, 0x6d, 0x38, 0xff, 0xab, 0x6a, 0x36, 0xff, 0xa7, 0x67, 0x36, 0xff, 0xa5, 0x64, 0x33, 0xff, 0xa0, 0x5f, 0x2f, 0xff, 0xa3, 0x63, 0x35, 0xff, 0xb2, 0x72, 0x41, 0xff, 0xb5, 0x76, 0x45, 0xff, 0xac, 0x6c, 0x3d, 0xff, 0xa5, 0x65, 0x37, 0xff, 0xa0, 0x5f, 0x33, 0xff, 0x9c, 0x5c, 0x31, 0xff, 0x99, 0x58, 0x2f, 0xff, 0x98, 0x56, 0x2d, 0xff, 0x94, 0x53, 0x2c, 0xff, 0x90, 0x50, 0x2b, 0xff, 0x8b, 0x4b, 0x28, 0xff, 0x91, 0x4f, 0x2c, 0xff, 0x90, 0x4f, 0x2c, 0xff, 0x8b, 0x4b, 0x29, 0xff, 0x89, 0x49, 0x28, 0xff, 0x86, 0x47, 0x28, 0xff, 0x84, 0x44, 0x25, 0xff, 0x81, 0x41, 0x22, 0xff, 0x7e, 0x40, 0x1f, 0xff, 0x7b, 0x3e, 0x1d, 0xff, 0x7c, 0x3d, 0x1c, 0xff, 0x7a, 0x3b, 0x1b, 0xff, 0x77, 0x39, 0x19, 0xff, 0x76, 0x38, 0x18, 0xff, 0x74, 0x35, 0x18, 0xff, 0x74, 0x38, 0x18, 0xff, 0x72, 0x36, 0x15, 0xff, 0x72, 0x36, 0x17, 0xff, 0x71, 0x35, 0x16, 0xff, 0x6f, 0x34, 0x12, 0xff, 0x71, 0x35, 0x14, 0xff, 0x71, 0x35, 0x15, 0xff, 0x71, 0x37, 0x15, 0xff, 0x71, 0x35, 0x15, 0xff, 0x72, 0x35, 0x16, 0xff, 0x73, 0x37, 0x17, 0xff, 0x73, 0x35, 0x15, 0xff, 0x71, 0x36, 0x18, 0xff, 0x72, 0x35, 0x18, 0xff, 0x74, 0x37, 0x18, 0xff, 0x74, 0x38, 0x18, 0xff, 0x74, 0x37, 0x1b, 0xff, 0x73, 0x36, 0x18, 0xff, 0x75, 0x38, 0x1a, 0xff, 0x77, 0x39, 0x1b, 0xff, 0x78, 0x3a, 0x1b, 0xff, 0x78, 0x3b, 0x1d, 0xff, 0x7c, 0x3d, 0x20, 0xff, 0x7c, 0x3f, 0x22, 0xff, 0x7c, 0x3e, 0x20, 0xff, 0x77, 0x3b, 0x1c, 0xff, 0x78, 0x3b, 0x1a, 0xff, 0x78, 0x3c, 0x1a, 0xff, 0x7a, 0x3c, 0x1c, 0xff, 0x7b, 0x3d, 0x1a, 0xff, 0x7e, 0x40, 0x1d, 0xff, 0x7e, 0x40, 0x1e, 0xff, 0x7f, 0x40, 0x20, 0xff, 0x80, 0x42, 0x22, 0xff, 0x81, 0x41, 0x22, 0xff, 0x83, 0x43, 0x24, 0xff, 0x86, 0x44, 0x26, 0xff, 0x85, 0x48, 0x28, 0xff, 0x85, 0x47, 0x26, 0xff, 0x86, 0x49, 0x28, 0xff, 0x87, 0x49, 0x28, 0xff, 0x8a, 0x4c, 0x29, 0xff, 0x8a, 0x4b, 0x29, 0xff, 0x89, 0x4a, 0x28, 0xff, 0x89, 0x4c, 0x29, 0xff, 0x87, 0x4c, 0x29, 0xff, 0x88, 0x4c, 0x29, 0xff, 0x89, 0x4c, 0x29, 0xff, 0x89, 0x4a, 0x29, 0xff, 0x89, 0x4a, 0x28, 0xff, 0x87, 0x4b, 0x28, 0xff, 0x89, 0x4c, 0x29, 0xff, 0x8a, 0x4d, 0x2b, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x8d, 0x52, 0x2c, 0xff, 0x8d, 0x51, 0x2c, 0xff, 0x8f, 0x52, 0x2d, 0xff, 0x8f, 0x53, 0x2d, 0xff, 0x92, 0x54, 0x2d, 0xff, + 0x90, 0x54, 0x2d, 0xff, 0x92, 0x54, 0x2f, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x85, 0x48, 0x28, 0xff, 0x89, 0x4a, 0x2a, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x91, 0x53, 0x2d, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x91, 0x54, 0x30, 0xff, 0x92, 0x54, 0x31, 0xff, 0x94, 0x56, 0x31, 0xff, 0x94, 0x56, 0x31, 0xff, 0x95, 0x57, 0x33, 0xff, 0x97, 0x59, 0x35, 0xff, 0x8f, 0x53, 0x31, 0xff, 0x88, 0x4d, 0x2b, 0xff, 0x89, 0x4d, 0x2c, 0xff, 0x89, 0x4c, 0x2c, 0xff, 0x8a, 0x4e, 0x2d, 0xff, 0x8c, 0x51, 0x2d, 0xff, 0x8c, 0x51, 0x2d, 0xff, 0x90, 0x54, 0x2f, 0xff, 0x90, 0x55, 0x2e, 0xff, 0x93, 0x56, 0x31, 0xff, 0x94, 0x58, 0x30, 0xff, 0x95, 0x59, 0x31, 0xff, 0x95, 0x59, 0x32, 0xff, 0x97, 0x5a, 0x33, 0xff, 0x95, 0x58, 0x32, 0xff, 0xa9, 0x6e, 0x43, 0xff, 0xe0, 0x9c, 0x64, 0xff, 0xf0, 0xa8, 0x69, 0xff, 0xf2, 0xa7, 0x6a, 0xff, 0xf0, 0xa4, 0x69, 0xff, 0xf0, 0xaa, 0x6b, 0xff, 0xee, 0xaa, 0x6d, 0xff, 0xef, 0xb0, 0x71, 0xff, 0xf0, 0xb9, 0x74, 0xff, 0xf1, 0xbb, 0x78, 0xff, 0xe4, 0xb5, 0x74, 0xff, 0xa3, 0x70, 0x43, 0xff, 0x96, 0x5c, 0x37, 0xff, 0x98, 0x60, 0x3a, 0xff, 0x9b, 0x64, 0x3e, 0xff, 0x9a, 0x61, 0x38, 0xff, 0x99, 0x5f, 0x36, 0xff, 0x98, 0x5f, 0x36, 0xff, 0x99, 0x60, 0x36, 0xff, 0x98, 0x61, 0x36, 0xff, 0x99, 0x63, 0x36, 0xff, 0x99, 0x60, 0x36, 0xff, 0x99, 0x5d, 0x34, 0xff, 0x98, 0x5e, 0x34, 0xff, 0x98, 0x5e, 0x34, 0xff, 0x98, 0x5f, 0x36, 0xff, 0x98, 0x5f, 0x36, 0xff, 0x98, 0x5e, 0x34, 0xff, 0x9b, 0x60, 0x34, 0xff, 0x9d, 0x65, 0x37, 0xff, 0xa0, 0x66, 0x38, 0xff, 0x9e, 0x64, 0x37, 0xff, 0xa1, 0x66, 0x39, 0xff, 0xa3, 0x67, 0x39, 0xff, 0xa5, 0x68, 0x3b, 0xff, 0xa6, 0x6b, 0x3d, 0xff, 0xa9, 0x6e, 0x3f, 0xff, 0xab, 0x6f, 0x40, 0xff, 0xad, 0x70, 0x41, 0xff, 0xae, 0x71, 0x41, 0xff, 0xb0, 0x73, 0x41, 0xff, 0xb2, 0x76, 0x42, 0xff, 0xb5, 0x77, 0x43, 0xff, 0xb6, 0x77, 0x42, 0xff, 0xb8, 0x78, 0x41, 0xff, 0xb9, 0x78, 0x40, 0xff, 0xba, 0x7c, 0x41, 0xff, 0xc0, 0x81, 0x46, 0xff, 0xc6, 0x84, 0x4b, 0xff, 0xc9, 0x85, 0x4c, 0xff, 0xcc, 0x88, 0x4e, 0xff, 0xd2, 0x8c, 0x50, 0xff, 0xd4, 0x8e, 0x53, 0xff, 0xd7, 0x8f, 0x56, 0xff, 0xe0, 0x94, 0x5a, 0xff, 0xe8, 0x98, 0x5c, 0xff, 0xea, 0x9b, 0x5e, 0xff, 0xe9, 0x9e, 0x60, 0xff, 0xed, 0xa1, 0x61, 0xff, 0xee, 0xa2, 0x61, 0xff, 0xec, 0xa1, 0x62, 0xff, 0xea, 0x9e, 0x5e, 0xff, 0xe5, 0x9a, 0x5a, 0xff, 0xdd, 0x93, 0x55, 0xff, 0xdb, 0x93, 0x54, 0xff, 0xe7, 0x9e, 0x61, 0xff, 0xef, 0xaa, 0x6a, 0xff, 0xf0, 0xaf, 0x6a, 0xff, 0xef, 0xae, 0x6b, 0xff, 0xf0, 0xaf, 0x6d, 0xff, 0xf0, 0xab, 0x6a, 0xff, 0xf1, 0xa6, 0x67, 0xff, 0xda, 0x96, 0x58, 0xff, 0xbf, 0x83, 0x46, 0xff, 0xbd, 0x81, 0x44, 0xff, 0xbc, 0x7e, 0x41, 0xff, 0xba, 0x7a, 0x3e, 0xff, 0xb6, 0x78, 0x3a, 0xff, 0xb4, 0x74, 0x37, 0xff, 0xb1, 0x72, 0x36, 0xff, 0xae, 0x70, 0x33, 0xff, 0xab, 0x6e, 0x32, 0xff, 0xaa, 0x6b, 0x30, 0xff, 0xa9, 0x69, 0x2f, 0xff, 0xa6, 0x69, 0x2e, 0xff, 0xa5, 0x67, 0x2d, 0xff, 0xa3, 0x65, 0x2d, 0xff, 0xa0, 0x62, 0x2c, 0xff, 0xa0, 0x61, 0x2b, 0xff, 0x9e, 0x60, 0x2c, 0xff, 0x9c, 0x5e, 0x2b, 0xff, 0x9c, 0x5b, 0x2a, 0xff, 0x9a, 0x5a, 0x29, 0xff, 0x98, 0x5a, 0x28, 0xff, 0x98, 0x58, 0x29, 0xff, 0x98, 0x59, 0x28, 0xff, 0x96, 0x58, 0x28, 0xff, 0x96, 0x59, 0x29, 0xff, 0x96, 0x58, 0x28, 0xff, 0x93, 0x55, 0x28, 0xff, 0x93, 0x56, 0x29, 0xff, 0xb2, 0x75, 0x43, 0xff, 0xc4, 0x87, 0x50, 0xff, 0xbf, 0x83, 0x4d, 0xff, 0xbc, 0x82, 0x51, 0xff, 0xb9, 0x81, 0x53, 0xff, 0xb7, 0x7e, 0x4d, 0xff, 0xb5, 0x78, 0x43, 0xff, 0xb5, 0x75, 0x40, 0xff, 0xb5, 0x73, 0x40, 0xff, 0xb1, 0x72, 0x3d, 0xff, 0xaf, 0x70, 0x3b, 0xff, 0xae, 0x6e, 0x3a, 0xff, 0xad, 0x6d, 0x3a, 0xff, 0xa8, 0x69, 0x36, 0xff, 0xac, 0x6c, 0x3b, 0xff, 0xb9, 0x78, 0x46, 0xff, 0xbb, 0x7c, 0x4a, 0xff, 0xb3, 0x73, 0x43, 0xff, 0xa9, 0x6a, 0x3a, 0xff, 0xa4, 0x65, 0x36, 0xff, 0x9f, 0x5f, 0x32, 0xff, 0x9c, 0x5b, 0x30, 0xff, 0x98, 0x58, 0x2f, 0xff, 0x96, 0x56, 0x2d, 0xff, 0x93, 0x52, 0x2c, 0xff, 0x8f, 0x4e, 0x29, 0xff, 0x91, 0x51, 0x2b, 0xff, 0x93, 0x52, 0x2d, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x8d, 0x4c, 0x2a, 0xff, 0x8b, 0x4a, 0x28, 0xff, 0x87, 0x49, 0x27, 0xff, 0x85, 0x45, 0x25, 0xff, 0x83, 0x42, 0x23, 0xff, 0x80, 0x41, 0x1e, 0xff, 0x7f, 0x40, 0x1e, 0xff, 0x7c, 0x3c, 0x1b, 0xff, 0x7b, 0x3b, 0x1b, 0xff, 0x79, 0x3a, 0x1a, 0xff, 0x76, 0x39, 0x19, 0xff, 0x72, 0x37, 0x19, 0xff, 0x73, 0x37, 0x18, 0xff, 0x73, 0x36, 0x18, 0xff, 0x72, 0x35, 0x16, 0xff, 0x72, 0x35, 0x16, 0xff, 0x71, 0x35, 0x15, 0xff, 0x71, 0x34, 0x16, 0xff, 0x72, 0x35, 0x15, 0xff, 0x72, 0x35, 0x17, 0xff, 0x72, 0x36, 0x16, 0xff, 0x73, 0x36, 0x17, 0xff, 0x71, 0x35, 0x15, 0xff, 0x71, 0x35, 0x15, 0xff, 0x73, 0x37, 0x17, 0xff, 0x74, 0x37, 0x18, 0xff, 0x74, 0x36, 0x18, 0xff, 0x73, 0x37, 0x17, 0xff, 0x72, 0x36, 0x17, 0xff, 0x74, 0x38, 0x19, 0xff, 0x76, 0x38, 0x1b, 0xff, 0x76, 0x3a, 0x1a, 0xff, 0x78, 0x3a, 0x1c, 0xff, 0x7a, 0x3b, 0x1f, 0xff, 0x7d, 0x3e, 0x1f, 0xff, 0x7a, 0x3c, 0x1e, 0xff, 0x75, 0x38, 0x1a, 0xff, 0x76, 0x39, 0x1a, 0xff, 0x76, 0x3a, 0x1a, 0xff, 0x78, 0x3b, 0x1b, 0xff, 0x7a, 0x3b, 0x1d, 0xff, 0x7b, 0x3d, 0x1d, 0xff, 0x7c, 0x3e, 0x1f, 0xff, 0x7d, 0x40, 0x1f, 0xff, 0x7f, 0x40, 0x1f, 0xff, 0x80, 0x40, 0x22, 0xff, 0x81, 0x41, 0x23, 0xff, 0x84, 0x44, 0x25, 0xff, 0x83, 0x46, 0x26, 0xff, 0x86, 0x46, 0x28, 0xff, 0x84, 0x46, 0x27, 0xff, 0x86, 0x46, 0x28, 0xff, 0x87, 0x49, 0x29, 0xff, 0x86, 0x49, 0x29, 0xff, 0x86, 0x4a, 0x29, 0xff, 0x87, 0x4a, 0x28, 0xff, 0x85, 0x48, 0x28, 0xff, 0x86, 0x49, 0x28, 0xff, 0x86, 0x49, 0x29, 0xff, 0x86, 0x49, 0x28, 0xff, 0x86, 0x49, 0x28, 0xff, 0x87, 0x49, 0x28, 0xff, 0x88, 0x4b, 0x29, 0xff, 0x8a, 0x4e, 0x2b, 0xff, 0x89, 0x4d, 0x2a, 0xff, 0x8b, 0x4e, 0x2b, 0xff, 0x8b, 0x4f, 0x2b, 0xff, 0x8e, 0x51, 0x2c, 0xff, 0x8e, 0x52, 0x2d, 0xff, 0x8f, 0x53, 0x2d, 0xff, + 0x8e, 0x51, 0x2d, 0xff, 0x8d, 0x50, 0x2c, 0xff, 0x88, 0x49, 0x29, 0xff, 0x86, 0x47, 0x28, 0xff, 0x87, 0x48, 0x29, 0xff, 0x86, 0x46, 0x28, 0xff, 0x87, 0x47, 0x29, 0xff, 0x89, 0x4b, 0x2a, 0xff, 0x8c, 0x4b, 0x2c, 0xff, 0x8d, 0x4f, 0x2c, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8d, 0x4e, 0x2c, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x8f, 0x51, 0x2d, 0xff, 0x90, 0x51, 0x2f, 0xff, 0x92, 0x53, 0x30, 0xff, 0x93, 0x54, 0x31, 0xff, 0x96, 0x56, 0x33, 0xff, 0x8b, 0x4e, 0x2e, 0xff, 0x83, 0x48, 0x29, 0xff, 0x84, 0x48, 0x2a, 0xff, 0x84, 0x4b, 0x2a, 0xff, 0x86, 0x4b, 0x2c, 0xff, 0x89, 0x4f, 0x2d, 0xff, 0x8d, 0x52, 0x2e, 0xff, 0x8f, 0x54, 0x2f, 0xff, 0x8f, 0x54, 0x30, 0xff, 0x91, 0x55, 0x31, 0xff, 0x92, 0x54, 0x31, 0xff, 0x94, 0x57, 0x31, 0xff, 0x96, 0x59, 0x32, 0xff, 0x95, 0x57, 0x31, 0xff, 0x94, 0x57, 0x31, 0xff, 0x93, 0x57, 0x31, 0xff, 0xbb, 0x85, 0x54, 0xff, 0xcb, 0x93, 0x58, 0xff, 0xe2, 0xa5, 0x6c, 0xff, 0xf3, 0xaf, 0x70, 0xff, 0xf0, 0xad, 0x6c, 0xff, 0xf0, 0xb0, 0x70, 0xff, 0xf1, 0xad, 0x6d, 0xff, 0xef, 0xb3, 0x72, 0xff, 0xea, 0xb1, 0x6f, 0xff, 0xc1, 0x94, 0x60, 0xff, 0x93, 0x5a, 0x36, 0xff, 0x9a, 0x64, 0x3f, 0xff, 0x9b, 0x65, 0x3e, 0xff, 0x9c, 0x68, 0x3f, 0xff, 0x9a, 0x62, 0x3a, 0xff, 0x99, 0x5f, 0x36, 0xff, 0x99, 0x60, 0x36, 0xff, 0x9a, 0x63, 0x36, 0xff, 0x98, 0x61, 0x36, 0xff, 0x99, 0x63, 0x36, 0xff, 0x99, 0x61, 0x36, 0xff, 0x98, 0x5e, 0x34, 0xff, 0x97, 0x5d, 0x33, 0xff, 0x98, 0x5e, 0x33, 0xff, 0x99, 0x5e, 0x33, 0xff, 0x98, 0x5e, 0x34, 0xff, 0x98, 0x5f, 0x34, 0xff, 0x9b, 0x60, 0x34, 0xff, 0x9e, 0x64, 0x36, 0xff, 0xa0, 0x64, 0x37, 0xff, 0xa0, 0x63, 0x36, 0xff, 0xa1, 0x66, 0x37, 0xff, 0xa4, 0x68, 0x3a, 0xff, 0xa6, 0x6a, 0x3b, 0xff, 0xa8, 0x6c, 0x3c, 0xff, 0xa9, 0x6e, 0x3f, 0xff, 0xab, 0x70, 0x40, 0xff, 0xad, 0x72, 0x44, 0xff, 0xae, 0x73, 0x44, 0xff, 0xb0, 0x74, 0x43, 0xff, 0xb3, 0x76, 0x44, 0xff, 0xb5, 0x77, 0x43, 0xff, 0xb7, 0x79, 0x40, 0xff, 0xb8, 0x78, 0x3f, 0xff, 0xba, 0x79, 0x3e, 0xff, 0xbb, 0x7b, 0x40, 0xff, 0xbd, 0x7d, 0x44, 0xff, 0xc3, 0x81, 0x49, 0xff, 0xc9, 0x86, 0x4d, 0xff, 0xd0, 0x8a, 0x4e, 0xff, 0xd4, 0x8a, 0x50, 0xff, 0xd6, 0x8c, 0x53, 0xff, 0xda, 0x8f, 0x56, 0xff, 0xdd, 0x92, 0x58, 0xff, 0xe4, 0x99, 0x5a, 0xff, 0xec, 0xa0, 0x5f, 0xff, 0xf0, 0xa9, 0x67, 0xff, 0xef, 0xae, 0x6b, 0xff, 0xef, 0xb0, 0x70, 0xff, 0xf0, 0xae, 0x70, 0xff, 0xef, 0xac, 0x6a, 0xff, 0xef, 0xa8, 0x66, 0xff, 0xec, 0xa1, 0x5e, 0xff, 0xe9, 0x9a, 0x59, 0xff, 0xed, 0x9d, 0x60, 0xff, 0xef, 0xa4, 0x66, 0xff, 0xee, 0xac, 0x68, 0xff, 0xf0, 0xaf, 0x6a, 0xff, 0xf0, 0xa5, 0x64, 0xff, 0xf0, 0xab, 0x68, 0xff, 0xf2, 0xb0, 0x6e, 0xff, 0xef, 0xa7, 0x69, 0xff, 0xd2, 0x91, 0x53, 0xff, 0xbc, 0x81, 0x43, 0xff, 0xc0, 0x82, 0x45, 0xff, 0xbd, 0x7f, 0x41, 0xff, 0xba, 0x7b, 0x3d, 0xff, 0xb7, 0x77, 0x3a, 0xff, 0xb5, 0x75, 0x38, 0xff, 0xb1, 0x72, 0x34, 0xff, 0xaf, 0x70, 0x31, 0xff, 0xad, 0x6f, 0x31, 0xff, 0xac, 0x6d, 0x31, 0xff, 0xab, 0x6b, 0x2f, 0xff, 0xa8, 0x69, 0x2f, 0xff, 0xa6, 0x68, 0x2f, 0xff, 0xa4, 0x66, 0x2e, 0xff, 0xa2, 0x64, 0x2c, 0xff, 0xa1, 0x62, 0x2b, 0xff, 0xa0, 0x61, 0x2b, 0xff, 0x9d, 0x5e, 0x2b, 0xff, 0x9c, 0x5e, 0x29, 0xff, 0x9b, 0x5c, 0x29, 0xff, 0x9a, 0x5a, 0x29, 0xff, 0x9a, 0x59, 0x28, 0xff, 0x98, 0x5a, 0x29, 0xff, 0x97, 0x5a, 0x28, 0xff, 0x97, 0x5a, 0x29, 0xff, 0x96, 0x58, 0x29, 0xff, 0x8d, 0x50, 0x23, 0xff, 0xad, 0x6e, 0x3d, 0xff, 0xc6, 0x88, 0x51, 0xff, 0xc2, 0x86, 0x4e, 0xff, 0xbf, 0x85, 0x52, 0xff, 0xbc, 0x83, 0x56, 0xff, 0xb9, 0x80, 0x54, 0xff, 0xb8, 0x80, 0x4c, 0xff, 0xb9, 0x7d, 0x46, 0xff, 0xb8, 0x7a, 0x45, 0xff, 0xb8, 0x78, 0x43, 0xff, 0xb8, 0x76, 0x41, 0xff, 0xb7, 0x76, 0x40, 0xff, 0xb4, 0x76, 0x40, 0xff, 0xb0, 0x72, 0x3f, 0xff, 0xb3, 0x76, 0x44, 0xff, 0xbf, 0x81, 0x4e, 0xff, 0xc2, 0x82, 0x4f, 0xff, 0xba, 0x79, 0x48, 0xff, 0xb1, 0x70, 0x3e, 0xff, 0xaa, 0x69, 0x37, 0xff, 0xa4, 0x64, 0x34, 0xff, 0x9e, 0x5f, 0x32, 0xff, 0x9b, 0x5b, 0x30, 0xff, 0x98, 0x58, 0x2e, 0xff, 0x96, 0x56, 0x2c, 0xff, 0x91, 0x52, 0x2a, 0xff, 0x91, 0x50, 0x2b, 0xff, 0x95, 0x55, 0x2d, 0xff, 0x93, 0x54, 0x2d, 0xff, 0x91, 0x52, 0x2c, 0xff, 0x8f, 0x4e, 0x2a, 0xff, 0x8d, 0x4c, 0x28, 0xff, 0x8a, 0x49, 0x28, 0xff, 0x85, 0x47, 0x28, 0xff, 0x84, 0x44, 0x24, 0xff, 0x83, 0x42, 0x21, 0xff, 0x80, 0x3f, 0x1e, 0xff, 0x7c, 0x3d, 0x1d, 0xff, 0x7a, 0x3b, 0x1c, 0xff, 0x79, 0x3b, 0x1a, 0xff, 0x76, 0x3a, 0x1a, 0xff, 0x75, 0x38, 0x1a, 0xff, 0x75, 0x38, 0x1a, 0xff, 0x73, 0x36, 0x19, 0xff, 0x72, 0x35, 0x18, 0xff, 0x72, 0x35, 0x17, 0xff, 0x72, 0x35, 0x18, 0xff, 0x72, 0x36, 0x16, 0xff, 0x72, 0x35, 0x15, 0xff, 0x72, 0x35, 0x17, 0xff, 0x73, 0x36, 0x18, 0xff, 0x72, 0x36, 0x17, 0xff, 0x72, 0x37, 0x16, 0xff, 0x73, 0x36, 0x17, 0xff, 0x73, 0x36, 0x18, 0xff, 0x74, 0x36, 0x18, 0xff, 0x73, 0x36, 0x18, 0xff, 0x73, 0x36, 0x17, 0xff, 0x74, 0x36, 0x19, 0xff, 0x75, 0x38, 0x1a, 0xff, 0x74, 0x38, 0x1a, 0xff, 0x76, 0x3a, 0x1a, 0xff, 0x78, 0x3b, 0x1c, 0xff, 0x7c, 0x3c, 0x21, 0xff, 0x76, 0x39, 0x1a, 0xff, 0x72, 0x36, 0x17, 0xff, 0x73, 0x35, 0x18, 0xff, 0x73, 0x38, 0x19, 0xff, 0x76, 0x3a, 0x1a, 0xff, 0x78, 0x3a, 0x1b, 0xff, 0x78, 0x3c, 0x1d, 0xff, 0x79, 0x3c, 0x1d, 0xff, 0x7b, 0x3e, 0x1f, 0xff, 0x7c, 0x3e, 0x1f, 0xff, 0x7e, 0x40, 0x23, 0xff, 0x7f, 0x40, 0x22, 0xff, 0x80, 0x43, 0x23, 0xff, 0x81, 0x44, 0x25, 0xff, 0x82, 0x44, 0x25, 0xff, 0x82, 0x44, 0x26, 0xff, 0x84, 0x45, 0x26, 0xff, 0x84, 0x46, 0x28, 0xff, 0x83, 0x46, 0x27, 0xff, 0x84, 0x47, 0x26, 0xff, 0x85, 0x49, 0x28, 0xff, 0x83, 0x45, 0x25, 0xff, 0x84, 0x46, 0x25, 0xff, 0x83, 0x46, 0x25, 0xff, 0x85, 0x46, 0x27, 0xff, 0x84, 0x46, 0x27, 0xff, 0x84, 0x47, 0x27, 0xff, 0x84, 0x48, 0x28, 0xff, 0x8a, 0x4e, 0x2b, 0xff, 0x88, 0x4c, 0x29, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x8b, 0x4f, 0x2b, 0xff, 0x8c, 0x51, 0x2d, 0xff, 0x8b, 0x4f, 0x2c, 0xff, 0x8d, 0x50, 0x2d, 0xff, + 0x88, 0x4a, 0x28, 0xff, 0x88, 0x4b, 0x28, 0xff, 0x86, 0x46, 0x28, 0xff, 0x85, 0x46, 0x28, 0xff, 0x88, 0x49, 0x2a, 0xff, 0x8c, 0x4d, 0x2c, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x96, 0x54, 0x31, 0xff, 0x97, 0x57, 0x31, 0xff, 0x97, 0x57, 0x32, 0xff, 0x98, 0x57, 0x32, 0xff, 0x9a, 0x59, 0x34, 0xff, 0x9b, 0x59, 0x35, 0xff, 0x9b, 0x5c, 0x35, 0xff, 0x9c, 0x5b, 0x36, 0xff, 0x9d, 0x5d, 0x36, 0xff, 0x9f, 0x5f, 0x39, 0xff, 0xa0, 0x61, 0x3a, 0xff, 0xa3, 0x67, 0x3e, 0xff, 0xa3, 0x66, 0x3d, 0xff, 0xa0, 0x64, 0x3d, 0xff, 0x9a, 0x5d, 0x37, 0xff, 0x90, 0x54, 0x30, 0xff, 0x85, 0x47, 0x29, 0xff, 0x86, 0x4c, 0x2a, 0xff, 0x8c, 0x50, 0x2e, 0xff, 0x8f, 0x52, 0x30, 0xff, 0x91, 0x54, 0x30, 0xff, 0x92, 0x54, 0x31, 0xff, 0x91, 0x56, 0x31, 0xff, 0x96, 0x59, 0x31, 0xff, 0x92, 0x56, 0x31, 0xff, 0x93, 0x57, 0x32, 0xff, 0x9e, 0x65, 0x3d, 0xff, 0xb6, 0x84, 0x50, 0xff, 0xb7, 0x7f, 0x4e, 0xff, 0xbc, 0x8a, 0x54, 0xff, 0xc9, 0x97, 0x5f, 0xff, 0xed, 0xb1, 0x73, 0xff, 0xf2, 0xb3, 0x72, 0xff, 0xef, 0xb5, 0x74, 0xff, 0xef, 0xb3, 0x73, 0xff, 0xe4, 0xa9, 0x6f, 0xff, 0x95, 0x60, 0x36, 0xff, 0x9a, 0x62, 0x3a, 0xff, 0x9b, 0x63, 0x3b, 0xff, 0x9b, 0x63, 0x3a, 0xff, 0x9b, 0x64, 0x39, 0xff, 0x9b, 0x64, 0x38, 0xff, 0x99, 0x62, 0x36, 0xff, 0x99, 0x62, 0x36, 0xff, 0x99, 0x63, 0x36, 0xff, 0x9a, 0x64, 0x37, 0xff, 0x99, 0x63, 0x36, 0xff, 0x99, 0x63, 0x36, 0xff, 0x98, 0x5e, 0x35, 0xff, 0x98, 0x5e, 0x34, 0xff, 0x9a, 0x5f, 0x34, 0xff, 0x9a, 0x5f, 0x35, 0xff, 0x9b, 0x60, 0x35, 0xff, 0x9a, 0x61, 0x35, 0xff, 0x9c, 0x60, 0x34, 0xff, 0x9d, 0x64, 0x36, 0xff, 0x9e, 0x64, 0x36, 0xff, 0xa0, 0x65, 0x37, 0xff, 0xa2, 0x67, 0x38, 0xff, 0xa4, 0x69, 0x3a, 0xff, 0xa5, 0x6b, 0x3c, 0xff, 0xa7, 0x6c, 0x3d, 0xff, 0xa9, 0x6d, 0x40, 0xff, 0xab, 0x70, 0x41, 0xff, 0xad, 0x73, 0x43, 0xff, 0xae, 0x75, 0x45, 0xff, 0xb0, 0x76, 0x45, 0xff, 0xb3, 0x78, 0x43, 0xff, 0xb6, 0x77, 0x41, 0xff, 0xb8, 0x79, 0x3f, 0xff, 0xba, 0x79, 0x3f, 0xff, 0xbc, 0x7c, 0x42, 0xff, 0xbe, 0x7e, 0x46, 0xff, 0xc0, 0x7f, 0x46, 0xff, 0xc2, 0x80, 0x48, 0xff, 0xc4, 0x82, 0x4a, 0xff, 0xcf, 0x89, 0x4e, 0xff, 0xd9, 0x8e, 0x52, 0xff, 0xcf, 0x8b, 0x50, 0xff, 0xce, 0x8d, 0x4f, 0xff, 0xd8, 0x95, 0x55, 0xff, 0xe8, 0x9d, 0x5d, 0xff, 0xf1, 0xa5, 0x66, 0xff, 0xef, 0xae, 0x6d, 0xff, 0xf0, 0xb8, 0x73, 0xff, 0xf0, 0xc4, 0x7a, 0xff, 0xf0, 0xcb, 0x7d, 0xff, 0xf0, 0xc8, 0x7a, 0xff, 0xef, 0xbc, 0x74, 0xff, 0xf0, 0xaf, 0x6b, 0xff, 0xef, 0xa6, 0x62, 0xff, 0xf1, 0xa3, 0x63, 0xff, 0xf1, 0xa4, 0x66, 0xff, 0xee, 0xa2, 0x64, 0xff, 0xee, 0xa7, 0x63, 0xff, 0xf1, 0xa9, 0x65, 0xff, 0xf1, 0xa8, 0x66, 0xff, 0xf1, 0xb2, 0x6e, 0xff, 0xf3, 0xb5, 0x72, 0xff, 0xe7, 0xa5, 0x65, 0xff, 0xca, 0x91, 0x50, 0xff, 0xbf, 0x86, 0x46, 0xff, 0xbf, 0x83, 0x45, 0xff, 0xbd, 0x81, 0x42, 0xff, 0xbb, 0x7e, 0x3e, 0xff, 0xba, 0x7a, 0x3b, 0xff, 0xb7, 0x78, 0x37, 0xff, 0xb4, 0x75, 0x35, 0xff, 0xb0, 0x71, 0x33, 0xff, 0xae, 0x70, 0x32, 0xff, 0xad, 0x6f, 0x32, 0xff, 0xac, 0x6c, 0x31, 0xff, 0xab, 0x6a, 0x31, 0xff, 0xa7, 0x69, 0x30, 0xff, 0xa5, 0x67, 0x2e, 0xff, 0xa5, 0x65, 0x2d, 0xff, 0xa3, 0x65, 0x2c, 0xff, 0xa1, 0x62, 0x2c, 0xff, 0x9e, 0x60, 0x2b, 0xff, 0x9c, 0x5e, 0x2b, 0xff, 0x9c, 0x5c, 0x2b, 0xff, 0x9c, 0x5b, 0x2b, 0xff, 0x9a, 0x5a, 0x2b, 0xff, 0x9a, 0x5a, 0x2a, 0xff, 0x98, 0x58, 0x29, 0xff, 0x98, 0x58, 0x2b, 0xff, 0x95, 0x55, 0x29, 0xff, 0x9f, 0x60, 0x30, 0xff, 0xbf, 0x7f, 0x4b, 0xff, 0xc8, 0x8a, 0x53, 0xff, 0xc2, 0x88, 0x50, 0xff, 0xbf, 0x85, 0x53, 0xff, 0xbc, 0x83, 0x54, 0xff, 0xb9, 0x82, 0x50, 0xff, 0xbc, 0x82, 0x4c, 0xff, 0xbe, 0x81, 0x49, 0xff, 0xbe, 0x81, 0x49, 0xff, 0xbf, 0x81, 0x49, 0xff, 0xbf, 0x80, 0x49, 0xff, 0xbe, 0x80, 0x49, 0xff, 0xb9, 0x7f, 0x49, 0xff, 0xba, 0x82, 0x4e, 0xff, 0xc7, 0x8c, 0x58, 0xff, 0xc7, 0x89, 0x55, 0xff, 0xc0, 0x81, 0x4f, 0xff, 0xb8, 0x79, 0x46, 0xff, 0xb0, 0x71, 0x3d, 0xff, 0xa9, 0x69, 0x37, 0xff, 0xa3, 0x64, 0x35, 0xff, 0xa1, 0x5e, 0x32, 0xff, 0x9c, 0x5b, 0x30, 0xff, 0x98, 0x56, 0x2d, 0xff, 0x97, 0x55, 0x2c, 0xff, 0x95, 0x54, 0x2c, 0xff, 0x9a, 0x58, 0x30, 0xff, 0x98, 0x57, 0x2f, 0xff, 0x96, 0x56, 0x2d, 0xff, 0x94, 0x54, 0x2c, 0xff, 0x92, 0x51, 0x2b, 0xff, 0x90, 0x4e, 0x2a, 0xff, 0x8d, 0x4d, 0x29, 0xff, 0x88, 0x4b, 0x28, 0xff, 0x86, 0x47, 0x28, 0xff, 0x85, 0x44, 0x23, 0xff, 0x7f, 0x3f, 0x1e, 0xff, 0x7d, 0x3e, 0x1c, 0xff, 0x7c, 0x3c, 0x1a, 0xff, 0x78, 0x3c, 0x1d, 0xff, 0x78, 0x3b, 0x1b, 0xff, 0x77, 0x3a, 0x1a, 0xff, 0x74, 0x38, 0x19, 0xff, 0x74, 0x36, 0x18, 0xff, 0x72, 0x35, 0x18, 0xff, 0x75, 0x38, 0x18, 0xff, 0x73, 0x38, 0x15, 0xff, 0x72, 0x35, 0x17, 0xff, 0x74, 0x36, 0x18, 0xff, 0x72, 0x36, 0x18, 0xff, 0x74, 0x36, 0x18, 0xff, 0x74, 0x36, 0x18, 0xff, 0x74, 0x36, 0x18, 0xff, 0x74, 0x36, 0x18, 0xff, 0x74, 0x36, 0x18, 0xff, 0x72, 0x37, 0x18, 0xff, 0x74, 0x38, 0x18, 0xff, 0x75, 0x38, 0x1a, 0xff, 0x76, 0x37, 0x1a, 0xff, 0x76, 0x38, 0x1a, 0xff, 0x76, 0x39, 0x1a, 0xff, 0x79, 0x3d, 0x1d, 0xff, 0x79, 0x3b, 0x1f, 0xff, 0x73, 0x35, 0x17, 0xff, 0x71, 0x36, 0x15, 0xff, 0x71, 0x37, 0x18, 0xff, 0x72, 0x37, 0x19, 0xff, 0x74, 0x38, 0x1a, 0xff, 0x75, 0x38, 0x1a, 0xff, 0x76, 0x3a, 0x1a, 0xff, 0x77, 0x3b, 0x1b, 0xff, 0x77, 0x3c, 0x1d, 0xff, 0x7b, 0x3e, 0x1f, 0xff, 0x7b, 0x3e, 0x20, 0xff, 0x7d, 0x3f, 0x22, 0xff, 0x7e, 0x40, 0x24, 0xff, 0x7f, 0x40, 0x22, 0xff, 0x80, 0x41, 0x23, 0xff, 0x82, 0x42, 0x23, 0xff, 0x80, 0x43, 0x26, 0xff, 0x85, 0x46, 0x27, 0xff, 0x80, 0x43, 0x24, 0xff, 0x7f, 0x41, 0x23, 0xff, 0x7e, 0x42, 0x22, 0xff, 0x80, 0x43, 0x24, 0xff, 0x80, 0x43, 0x24, 0xff, 0x80, 0x43, 0x26, 0xff, 0x82, 0x43, 0x24, 0xff, 0x82, 0x45, 0x24, 0xff, 0x81, 0x44, 0x25, 0xff, 0x80, 0x41, 0x26, 0xff, 0x80, 0x46, 0x27, 0xff, 0x7f, 0x42, 0x25, 0xff, 0x80, 0x42, 0x26, 0xff, 0x84, 0x47, 0x28, 0xff, 0x84, 0x47, 0x28, 0xff, 0x86, 0x47, 0x28, 0xff, 0x88, 0x4b, 0x28, 0xff, + 0x87, 0x47, 0x29, 0xff, 0x87, 0x48, 0x28, 0xff, 0x8b, 0x4a, 0x2b, 0xff, 0x90, 0x4f, 0x2d, 0xff, 0x90, 0x52, 0x2d, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x95, 0x55, 0x31, 0xff, 0x98, 0x59, 0x32, 0xff, 0x96, 0x55, 0x31, 0xff, 0x98, 0x59, 0x32, 0xff, 0x98, 0x58, 0x33, 0xff, 0x98, 0x58, 0x34, 0xff, 0x98, 0x58, 0x34, 0xff, 0x9a, 0x59, 0x35, 0xff, 0x9c, 0x5c, 0x35, 0xff, 0x9e, 0x5e, 0x37, 0xff, 0xa0, 0x61, 0x3a, 0xff, 0xa7, 0x68, 0x40, 0xff, 0xab, 0x6c, 0x42, 0xff, 0xad, 0x70, 0x43, 0xff, 0xb1, 0x71, 0x45, 0xff, 0xb4, 0x76, 0x4a, 0xff, 0xb9, 0x7b, 0x4e, 0xff, 0xb2, 0x74, 0x47, 0xff, 0xa3, 0x68, 0x3e, 0xff, 0x9c, 0x60, 0x39, 0xff, 0x99, 0x5d, 0x37, 0xff, 0x94, 0x57, 0x34, 0xff, 0x91, 0x55, 0x31, 0xff, 0x92, 0x55, 0x31, 0xff, 0x93, 0x56, 0x31, 0xff, 0x92, 0x56, 0x32, 0xff, 0xa1, 0x6a, 0x3d, 0xff, 0xb6, 0x82, 0x4f, 0xff, 0xb8, 0x88, 0x52, 0xff, 0xba, 0x89, 0x53, 0xff, 0xbd, 0x8c, 0x58, 0xff, 0xbb, 0x89, 0x55, 0xff, 0xce, 0x9c, 0x63, 0xff, 0xe7, 0xb3, 0x72, 0xff, 0xea, 0xb9, 0x76, 0xff, 0xac, 0x86, 0x56, 0xff, 0x93, 0x56, 0x30, 0xff, 0x9b, 0x63, 0x3a, 0xff, 0x9b, 0x61, 0x38, 0xff, 0x9b, 0x61, 0x37, 0xff, 0x9b, 0x63, 0x36, 0xff, 0x9b, 0x63, 0x39, 0xff, 0x99, 0x62, 0x3a, 0xff, 0x99, 0x62, 0x37, 0xff, 0x9a, 0x64, 0x38, 0xff, 0x99, 0x63, 0x3a, 0xff, 0x99, 0x65, 0x3a, 0xff, 0x97, 0x64, 0x3a, 0xff, 0x98, 0x62, 0x37, 0xff, 0x98, 0x5e, 0x35, 0xff, 0x9a, 0x61, 0x35, 0xff, 0x9b, 0x63, 0x35, 0xff, 0x99, 0x63, 0x36, 0xff, 0x9b, 0x63, 0x36, 0xff, 0x9c, 0x64, 0x37, 0xff, 0x9e, 0x64, 0x38, 0xff, 0xa0, 0x66, 0x3a, 0xff, 0xa0, 0x66, 0x3a, 0xff, 0xa2, 0x68, 0x3a, 0xff, 0xa3, 0x69, 0x3b, 0xff, 0xa5, 0x6c, 0x3e, 0xff, 0xa9, 0x6f, 0x3f, 0xff, 0xa9, 0x6e, 0x3f, 0xff, 0xab, 0x70, 0x40, 0xff, 0xad, 0x72, 0x41, 0xff, 0xaf, 0x74, 0x42, 0xff, 0xb1, 0x75, 0x41, 0xff, 0xb3, 0x76, 0x41, 0xff, 0xb4, 0x7a, 0x43, 0xff, 0xb8, 0x7b, 0x44, 0xff, 0xb9, 0x7c, 0x45, 0xff, 0xbb, 0x7e, 0x46, 0xff, 0xbd, 0x80, 0x48, 0xff, 0xc1, 0x81, 0x49, 0xff, 0xc3, 0x81, 0x49, 0xff, 0xc4, 0x84, 0x49, 0xff, 0xc3, 0x83, 0x49, 0xff, 0xc2, 0x84, 0x4a, 0xff, 0xca, 0x8b, 0x4d, 0xff, 0xd5, 0x90, 0x51, 0xff, 0xe0, 0x98, 0x58, 0xff, 0xeb, 0xa0, 0x5c, 0xff, 0xf0, 0xaa, 0x65, 0xff, 0xf1, 0xb8, 0x73, 0xff, 0xf0, 0xcc, 0x7e, 0xff, 0xec, 0xdd, 0x87, 0xff, 0xe8, 0xe4, 0x8b, 0xff, 0xea, 0xe6, 0x8c, 0xff, 0xee, 0xde, 0x88, 0xff, 0xed, 0xcc, 0x7d, 0xff, 0xee, 0xb7, 0x6f, 0xff, 0xee, 0xac, 0x69, 0xff, 0xf2, 0xab, 0x6c, 0xff, 0xf0, 0xa4, 0x65, 0xff, 0xee, 0xa1, 0x5f, 0xff, 0xef, 0xa6, 0x63, 0xff, 0xf1, 0xa6, 0x63, 0xff, 0xf1, 0xaf, 0x6a, 0xff, 0xf2, 0xbc, 0x74, 0xff, 0xf3, 0xb6, 0x71, 0xff, 0xdb, 0x9c, 0x5c, 0xff, 0xc0, 0x89, 0x4a, 0xff, 0xc1, 0x88, 0x49, 0xff, 0xc1, 0x87, 0x46, 0xff, 0xbf, 0x84, 0x42, 0xff, 0xbd, 0x7f, 0x3d, 0xff, 0xbc, 0x7b, 0x3a, 0xff, 0xb9, 0x79, 0x38, 0xff, 0xb6, 0x76, 0x35, 0xff, 0xb3, 0x73, 0x35, 0xff, 0xb1, 0x72, 0x32, 0xff, 0xaf, 0x6f, 0x31, 0xff, 0xad, 0x6d, 0x31, 0xff, 0xab, 0x6d, 0x31, 0xff, 0xa9, 0x6c, 0x30, 0xff, 0xa8, 0x69, 0x2e, 0xff, 0xa5, 0x66, 0x2d, 0xff, 0xa3, 0x64, 0x2c, 0xff, 0xa1, 0x63, 0x2d, 0xff, 0x9f, 0x61, 0x2d, 0xff, 0x9f, 0x5f, 0x2c, 0xff, 0x9d, 0x5e, 0x2b, 0xff, 0x9b, 0x5d, 0x2b, 0xff, 0x9b, 0x5c, 0x2b, 0xff, 0x9b, 0x5b, 0x2b, 0xff, 0x99, 0x5b, 0x2b, 0xff, 0x98, 0x59, 0x2b, 0xff, 0x95, 0x59, 0x28, 0xff, 0xbc, 0x7c, 0x46, 0xff, 0xcf, 0x8d, 0x57, 0xff, 0xc5, 0x88, 0x4f, 0xff, 0xc1, 0x87, 0x4e, 0xff, 0xbf, 0x86, 0x50, 0xff, 0xbd, 0x85, 0x51, 0xff, 0xc1, 0x86, 0x51, 0xff, 0xc4, 0x85, 0x4c, 0xff, 0xc4, 0x86, 0x4d, 0xff, 0xc8, 0x88, 0x4f, 0xff, 0xcc, 0x8a, 0x51, 0xff, 0xcc, 0x8b, 0x53, 0xff, 0xc7, 0x8b, 0x54, 0xff, 0xc6, 0x8c, 0x56, 0xff, 0xd4, 0x96, 0x63, 0xff, 0xd3, 0x92, 0x5d, 0xff, 0xc9, 0x89, 0x54, 0xff, 0xbf, 0x7f, 0x4d, 0xff, 0xb8, 0x76, 0x45, 0xff, 0xb1, 0x6f, 0x3e, 0xff, 0xa9, 0x69, 0x36, 0xff, 0xa5, 0x64, 0x35, 0xff, 0xa1, 0x5f, 0x32, 0xff, 0x9c, 0x5b, 0x30, 0xff, 0x9a, 0x58, 0x2e, 0xff, 0x96, 0x54, 0x2c, 0xff, 0x9c, 0x5b, 0x30, 0xff, 0x9c, 0x5c, 0x32, 0xff, 0x99, 0x59, 0x30, 0xff, 0x97, 0x58, 0x2e, 0xff, 0x97, 0x56, 0x2e, 0xff, 0x96, 0x56, 0x2d, 0xff, 0x93, 0x56, 0x2d, 0xff, 0x8f, 0x51, 0x2c, 0xff, 0x8b, 0x4c, 0x2a, 0xff, 0x89, 0x49, 0x28, 0xff, 0x85, 0x44, 0x24, 0xff, 0x80, 0x41, 0x1e, 0xff, 0x7e, 0x3e, 0x1b, 0xff, 0x7c, 0x3c, 0x1c, 0xff, 0x7b, 0x3d, 0x1f, 0xff, 0x78, 0x3c, 0x1d, 0xff, 0x77, 0x3a, 0x1a, 0xff, 0x75, 0x39, 0x1a, 0xff, 0x75, 0x38, 0x18, 0xff, 0x74, 0x38, 0x18, 0xff, 0x74, 0x36, 0x19, 0xff, 0x74, 0x38, 0x18, 0xff, 0x73, 0x36, 0x18, 0xff, 0x74, 0x36, 0x18, 0xff, 0x73, 0x37, 0x19, 0xff, 0x72, 0x37, 0x18, 0xff, 0x73, 0x37, 0x18, 0xff, 0x75, 0x36, 0x1a, 0xff, 0x75, 0x36, 0x1a, 0xff, 0x74, 0x36, 0x18, 0xff, 0x74, 0x37, 0x18, 0xff, 0x76, 0x39, 0x1a, 0xff, 0x76, 0x38, 0x1a, 0xff, 0x76, 0x38, 0x1a, 0xff, 0x77, 0x38, 0x1c, 0xff, 0x77, 0x3c, 0x1d, 0xff, 0x75, 0x3a, 0x1a, 0xff, 0x70, 0x36, 0x16, 0xff, 0x71, 0x35, 0x17, 0xff, 0x72, 0x35, 0x18, 0xff, 0x71, 0x37, 0x18, 0xff, 0x73, 0x38, 0x19, 0xff, 0x74, 0x38, 0x1a, 0xff, 0x73, 0x38, 0x1a, 0xff, 0x75, 0x3a, 0x1a, 0xff, 0x76, 0x3a, 0x1c, 0xff, 0x77, 0x3c, 0x1a, 0xff, 0x7a, 0x3a, 0x1d, 0xff, 0x7b, 0x3c, 0x1f, 0xff, 0x7c, 0x3d, 0x21, 0xff, 0x7e, 0x40, 0x22, 0xff, 0x7e, 0x3f, 0x22, 0xff, 0x7e, 0x3f, 0x23, 0xff, 0x7e, 0x40, 0x24, 0xff, 0x80, 0x3f, 0x25, 0xff, 0x7e, 0x40, 0x21, 0xff, 0x7f, 0x42, 0x23, 0xff, 0x7e, 0x40, 0x22, 0xff, 0x7f, 0x41, 0x21, 0xff, 0x81, 0x44, 0x24, 0xff, 0x81, 0x43, 0x25, 0xff, 0x81, 0x42, 0x27, 0xff, 0x80, 0x42, 0x25, 0xff, 0x7c, 0x3e, 0x23, 0xff, 0x7d, 0x3e, 0x1f, 0xff, 0x7a, 0x3c, 0x1c, 0xff, 0x7d, 0x3e, 0x20, 0xff, 0x7d, 0x40, 0x1f, 0xff, 0x7f, 0x42, 0x22, 0xff, 0x84, 0x44, 0x26, 0xff, 0x85, 0x46, 0x27, 0xff, 0x87, 0x48, 0x28, 0xff, + 0x8a, 0x49, 0x2a, 0xff, 0x8a, 0x4a, 0x2a, 0xff, 0x8c, 0x4b, 0x2c, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8d, 0x4e, 0x2c, 0xff, 0x8f, 0x4e, 0x2c, 0xff, 0x91, 0x52, 0x30, 0xff, 0x93, 0x54, 0x31, 0xff, 0x96, 0x56, 0x31, 0xff, 0x96, 0x56, 0x31, 0xff, 0x97, 0x56, 0x31, 0xff, 0x98, 0x58, 0x33, 0xff, 0x9a, 0x59, 0x34, 0xff, 0x9b, 0x59, 0x35, 0xff, 0x9a, 0x5a, 0x34, 0xff, 0x9b, 0x5d, 0x35, 0xff, 0x9e, 0x5e, 0x37, 0xff, 0x9f, 0x61, 0x39, 0xff, 0xa5, 0x68, 0x3f, 0xff, 0xa8, 0x6a, 0x3e, 0xff, 0xa9, 0x6c, 0x40, 0xff, 0xab, 0x6e, 0x42, 0xff, 0xae, 0x70, 0x44, 0xff, 0xaf, 0x71, 0x44, 0xff, 0xb4, 0x75, 0x48, 0xff, 0xb8, 0x7a, 0x4c, 0xff, 0xbb, 0x7d, 0x50, 0xff, 0xbe, 0x81, 0x54, 0xff, 0xbb, 0x81, 0x52, 0xff, 0xac, 0x71, 0x47, 0xff, 0xa6, 0x6c, 0x45, 0xff, 0x9e, 0x64, 0x3f, 0xff, 0x8e, 0x53, 0x2e, 0xff, 0x9e, 0x6a, 0x40, 0xff, 0xb5, 0x83, 0x53, 0xff, 0xb5, 0x83, 0x50, 0xff, 0xb9, 0x85, 0x53, 0xff, 0xba, 0x88, 0x53, 0xff, 0xbf, 0x8a, 0x57, 0xff, 0xc1, 0x8f, 0x58, 0xff, 0xc0, 0x8f, 0x5c, 0xff, 0xbf, 0x8e, 0x5c, 0xff, 0x8e, 0x51, 0x2c, 0xff, 0x9b, 0x60, 0x39, 0xff, 0x9b, 0x61, 0x3a, 0xff, 0x99, 0x62, 0x39, 0xff, 0x99, 0x62, 0x3a, 0xff, 0x9a, 0x64, 0x38, 0xff, 0x99, 0x64, 0x3a, 0xff, 0x9a, 0x63, 0x3a, 0xff, 0x9a, 0x64, 0x3a, 0xff, 0x99, 0x65, 0x3a, 0xff, 0x99, 0x66, 0x3b, 0xff, 0x97, 0x65, 0x3d, 0xff, 0x98, 0x64, 0x3e, 0xff, 0x97, 0x63, 0x3c, 0xff, 0x97, 0x5e, 0x35, 0xff, 0x9a, 0x63, 0x36, 0xff, 0x9b, 0x64, 0x37, 0xff, 0x9b, 0x65, 0x39, 0xff, 0x9b, 0x67, 0x39, 0xff, 0x9c, 0x68, 0x3a, 0xff, 0x9d, 0x68, 0x3b, 0xff, 0xa0, 0x69, 0x3c, 0xff, 0xa3, 0x69, 0x3c, 0xff, 0xa4, 0x6c, 0x3e, 0xff, 0xa6, 0x6e, 0x3f, 0xff, 0xa8, 0x71, 0x3f, 0xff, 0xaa, 0x6f, 0x3f, 0xff, 0xab, 0x6f, 0x3d, 0xff, 0xab, 0x6f, 0x3c, 0xff, 0xad, 0x73, 0x3e, 0xff, 0xb0, 0x75, 0x40, 0xff, 0xb2, 0x76, 0x41, 0xff, 0xb4, 0x79, 0x43, 0xff, 0xb5, 0x7b, 0x47, 0xff, 0xb7, 0x7f, 0x4a, 0xff, 0xb9, 0x80, 0x4b, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbd, 0x80, 0x49, 0xff, 0xbf, 0x81, 0x48, 0xff, 0xc1, 0x82, 0x49, 0xff, 0xc1, 0x83, 0x48, 0xff, 0xc2, 0x85, 0x47, 0xff, 0xc6, 0x89, 0x4b, 0xff, 0xce, 0x8e, 0x50, 0xff, 0xd7, 0x93, 0x53, 0xff, 0xe3, 0x99, 0x59, 0xff, 0xef, 0xa3, 0x61, 0xff, 0xf0, 0xad, 0x6a, 0xff, 0xf1, 0xbf, 0x75, 0xff, 0xee, 0xd8, 0x83, 0xff, 0xe7, 0xe6, 0x90, 0xff, 0xe5, 0xe8, 0x9b, 0xff, 0xe6, 0xe7, 0x9e, 0xff, 0xe6, 0xe9, 0x9a, 0xff, 0xe8, 0xe6, 0x90, 0xff, 0xec, 0xd3, 0x7e, 0xff, 0xee, 0xbc, 0x73, 0xff, 0xf1, 0xb4, 0x72, 0xff, 0xf1, 0xab, 0x6a, 0xff, 0xf1, 0xa2, 0x60, 0xff, 0xef, 0xa0, 0x5d, 0xff, 0xef, 0xa6, 0x62, 0xff, 0xf1, 0xa9, 0x64, 0xff, 0xf0, 0xb7, 0x70, 0xff, 0xf2, 0xc0, 0x77, 0xff, 0xec, 0xae, 0x6c, 0xff, 0xd3, 0x95, 0x58, 0xff, 0xc1, 0x87, 0x4b, 0xff, 0xc3, 0x89, 0x4b, 0xff, 0xc2, 0x87, 0x47, 0xff, 0xc0, 0x84, 0x43, 0xff, 0xbf, 0x81, 0x3f, 0xff, 0xbe, 0x7d, 0x3b, 0xff, 0xba, 0x7c, 0x38, 0xff, 0xb7, 0x78, 0x36, 0xff, 0xb5, 0x76, 0x34, 0xff, 0xb3, 0x76, 0x33, 0xff, 0xb2, 0x73, 0x34, 0xff, 0xaf, 0x70, 0x32, 0xff, 0xad, 0x6e, 0x30, 0xff, 0xab, 0x6b, 0x31, 0xff, 0xa9, 0x6a, 0x31, 0xff, 0xa9, 0x6a, 0x2f, 0xff, 0xa6, 0x67, 0x2e, 0xff, 0xa3, 0x65, 0x2d, 0xff, 0xa1, 0x64, 0x2c, 0xff, 0x9f, 0x60, 0x2b, 0xff, 0x9e, 0x60, 0x2c, 0xff, 0x9d, 0x5f, 0x2c, 0xff, 0x9b, 0x5b, 0x2b, 0xff, 0x9b, 0x5d, 0x2c, 0xff, 0x9b, 0x5d, 0x2c, 0xff, 0x93, 0x55, 0x26, 0xff, 0xb5, 0x74, 0x40, 0xff, 0xd1, 0x8f, 0x58, 0xff, 0xcc, 0x8c, 0x54, 0xff, 0xc5, 0x88, 0x4e, 0xff, 0xc1, 0x87, 0x4c, 0xff, 0xc0, 0x87, 0x4d, 0xff, 0xc5, 0x8a, 0x51, 0xff, 0xca, 0x8c, 0x52, 0xff, 0xcc, 0x8a, 0x51, 0xff, 0xd6, 0x8f, 0x54, 0xff, 0xe3, 0x97, 0x5b, 0xff, 0xe6, 0x9a, 0x5f, 0xff, 0xe4, 0x9a, 0x60, 0xff, 0xdf, 0x9b, 0x60, 0xff, 0xe7, 0xa0, 0x6b, 0xff, 0xe5, 0x9a, 0x65, 0xff, 0xd8, 0x91, 0x5d, 0xff, 0xca, 0x8a, 0x55, 0xff, 0xbf, 0x83, 0x4c, 0xff, 0xb8, 0x79, 0x44, 0xff, 0xb1, 0x70, 0x3e, 0xff, 0xaa, 0x69, 0x38, 0xff, 0xa6, 0x66, 0x35, 0xff, 0xa2, 0x60, 0x33, 0xff, 0x9e, 0x5d, 0x31, 0xff, 0x9a, 0x59, 0x2f, 0xff, 0x9c, 0x5c, 0x30, 0xff, 0xa0, 0x60, 0x34, 0xff, 0x9d, 0x5d, 0x32, 0xff, 0x9b, 0x5c, 0x31, 0xff, 0x9b, 0x5b, 0x31, 0xff, 0x99, 0x5c, 0x33, 0xff, 0x97, 0x5a, 0x32, 0xff, 0x95, 0x56, 0x30, 0xff, 0x92, 0x53, 0x2d, 0xff, 0x8e, 0x4f, 0x2a, 0xff, 0x89, 0x4a, 0x28, 0xff, 0x84, 0x44, 0x23, 0xff, 0x81, 0x3f, 0x1e, 0xff, 0x7e, 0x40, 0x1d, 0xff, 0x7d, 0x3e, 0x1f, 0xff, 0x7c, 0x3d, 0x1e, 0xff, 0x7a, 0x3c, 0x1c, 0xff, 0x77, 0x3a, 0x1a, 0xff, 0x75, 0x38, 0x1a, 0xff, 0x76, 0x39, 0x1a, 0xff, 0x74, 0x37, 0x1a, 0xff, 0x74, 0x38, 0x19, 0xff, 0x75, 0x39, 0x19, 0xff, 0x75, 0x38, 0x1a, 0xff, 0x75, 0x37, 0x1a, 0xff, 0x74, 0x37, 0x19, 0xff, 0x75, 0x37, 0x19, 0xff, 0x75, 0x38, 0x1a, 0xff, 0x76, 0x38, 0x1a, 0xff, 0x74, 0x37, 0x1a, 0xff, 0x74, 0x37, 0x1a, 0xff, 0x76, 0x39, 0x1a, 0xff, 0x76, 0x39, 0x1a, 0xff, 0x76, 0x3a, 0x1a, 0xff, 0x77, 0x3a, 0x1b, 0xff, 0x7b, 0x3d, 0x1f, 0xff, 0x71, 0x37, 0x1a, 0xff, 0x6f, 0x33, 0x17, 0xff, 0x70, 0x35, 0x16, 0xff, 0x70, 0x37, 0x16, 0xff, 0x70, 0x37, 0x16, 0xff, 0x71, 0x37, 0x18, 0xff, 0x72, 0x36, 0x1a, 0xff, 0x72, 0x37, 0x18, 0xff, 0x71, 0x37, 0x19, 0xff, 0x73, 0x37, 0x19, 0xff, 0x76, 0x3a, 0x1a, 0xff, 0x77, 0x39, 0x1c, 0xff, 0x79, 0x3c, 0x1d, 0xff, 0x79, 0x3c, 0x1d, 0xff, 0x79, 0x3c, 0x1d, 0xff, 0x79, 0x3c, 0x1d, 0xff, 0x7a, 0x3c, 0x1d, 0xff, 0x7d, 0x3e, 0x23, 0xff, 0x7c, 0x3f, 0x20, 0xff, 0x7e, 0x3f, 0x22, 0xff, 0x7e, 0x41, 0x23, 0xff, 0x7f, 0x41, 0x23, 0xff, 0x7c, 0x40, 0x22, 0xff, 0x7d, 0x3f, 0x21, 0xff, 0x7a, 0x3d, 0x21, 0xff, 0x7d, 0x3e, 0x1f, 0xff, 0x7d, 0x3d, 0x20, 0xff, 0x7d, 0x3f, 0x22, 0xff, 0x7d, 0x40, 0x22, 0xff, 0x7a, 0x3e, 0x1e, 0xff, 0x7b, 0x3c, 0x1e, 0xff, 0x7f, 0x40, 0x21, 0xff, 0x7e, 0x41, 0x22, 0xff, 0x82, 0x43, 0x26, 0xff, 0x83, 0x44, 0x27, 0xff, 0x87, 0x49, 0x29, 0xff, + 0x85, 0x46, 0x28, 0xff, 0x89, 0x4b, 0x2b, 0xff, 0x8b, 0x4a, 0x2b, 0xff, 0x8c, 0x4e, 0x2d, 0xff, 0x8c, 0x4e, 0x2d, 0xff, 0x8e, 0x50, 0x2e, 0xff, 0x8f, 0x51, 0x2e, 0xff, 0x90, 0x51, 0x30, 0xff, 0x93, 0x54, 0x30, 0xff, 0x95, 0x55, 0x31, 0xff, 0x95, 0x55, 0x31, 0xff, 0x95, 0x55, 0x30, 0xff, 0x95, 0x56, 0x32, 0xff, 0x97, 0x57, 0x31, 0xff, 0x99, 0x59, 0x33, 0xff, 0x9a, 0x59, 0x34, 0xff, 0x9c, 0x5c, 0x35, 0xff, 0x9f, 0x5d, 0x35, 0xff, 0xa1, 0x63, 0x3a, 0xff, 0xa3, 0x65, 0x3b, 0xff, 0xa3, 0x66, 0x39, 0xff, 0xa6, 0x68, 0x3c, 0xff, 0xa6, 0x69, 0x3d, 0xff, 0xa9, 0x6c, 0x3f, 0xff, 0xaa, 0x6c, 0x41, 0xff, 0xb0, 0x71, 0x45, 0xff, 0xb3, 0x73, 0x47, 0xff, 0xb6, 0x77, 0x4b, 0xff, 0xb8, 0x79, 0x4d, 0xff, 0xbb, 0x7f, 0x4e, 0xff, 0xbf, 0x85, 0x54, 0xff, 0xc0, 0x88, 0x5a, 0xff, 0xbf, 0x88, 0x5c, 0xff, 0xbe, 0x85, 0x5c, 0xff, 0xbb, 0x86, 0x59, 0xff, 0xb2, 0x81, 0x51, 0xff, 0xaf, 0x7d, 0x4d, 0xff, 0xb9, 0x85, 0x52, 0xff, 0xb8, 0x87, 0x53, 0xff, 0xbd, 0x89, 0x54, 0xff, 0xc2, 0x8d, 0x59, 0xff, 0xc3, 0x93, 0x5d, 0xff, 0x9c, 0x62, 0x3a, 0xff, 0x92, 0x56, 0x32, 0xff, 0x95, 0x59, 0x34, 0xff, 0x94, 0x59, 0x33, 0xff, 0x96, 0x5b, 0x35, 0xff, 0x98, 0x61, 0x37, 0xff, 0x99, 0x63, 0x38, 0xff, 0x9a, 0x65, 0x3b, 0xff, 0x99, 0x65, 0x3d, 0xff, 0x9a, 0x66, 0x3d, 0xff, 0x99, 0x66, 0x3d, 0xff, 0x98, 0x66, 0x3d, 0xff, 0x96, 0x65, 0x3e, 0xff, 0x97, 0x63, 0x3f, 0xff, 0x97, 0x63, 0x41, 0xff, 0x98, 0x64, 0x3d, 0xff, 0x98, 0x60, 0x37, 0xff, 0x9a, 0x65, 0x3b, 0xff, 0x9b, 0x67, 0x3d, 0xff, 0x9b, 0x69, 0x3d, 0xff, 0x9b, 0x6a, 0x40, 0xff, 0x9c, 0x69, 0x41, 0xff, 0x9f, 0x6a, 0x41, 0xff, 0xa1, 0x6d, 0x40, 0xff, 0xa3, 0x6f, 0x40, 0xff, 0xa5, 0x71, 0x41, 0xff, 0xa8, 0x72, 0x3f, 0xff, 0xaa, 0x74, 0x41, 0xff, 0xac, 0x73, 0x3f, 0xff, 0xae, 0x72, 0x3e, 0xff, 0xae, 0x73, 0x3e, 0xff, 0xaf, 0x74, 0x40, 0xff, 0xb1, 0x79, 0x44, 0xff, 0xb4, 0x7c, 0x48, 0xff, 0xb5, 0x7c, 0x49, 0xff, 0xb7, 0x7d, 0x4a, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xba, 0x81, 0x49, 0xff, 0xbd, 0x82, 0x4a, 0xff, 0xc0, 0x83, 0x49, 0xff, 0xc2, 0x85, 0x48, 0xff, 0xc5, 0x87, 0x49, 0xff, 0xc7, 0x88, 0x4a, 0xff, 0xcd, 0x8b, 0x4d, 0xff, 0xd7, 0x91, 0x53, 0xff, 0xdf, 0x96, 0x56, 0xff, 0xe9, 0x9b, 0x5a, 0xff, 0xef, 0xa6, 0x60, 0xff, 0xef, 0xb0, 0x6b, 0xff, 0xf0, 0xc2, 0x78, 0xff, 0xeb, 0xdc, 0x86, 0xff, 0xe4, 0xe7, 0x95, 0xff, 0xe8, 0xe8, 0xa2, 0xff, 0xea, 0xe8, 0xab, 0xff, 0xea, 0xe8, 0xaa, 0xff, 0xe9, 0xe7, 0xa2, 0xff, 0xe7, 0xe5, 0x91, 0xff, 0xeb, 0xd6, 0x80, 0xff, 0xf1, 0xc1, 0x79, 0xff, 0xf3, 0xb7, 0x71, 0xff, 0xf1, 0xac, 0x67, 0xff, 0xef, 0xa1, 0x5c, 0xff, 0xee, 0xa1, 0x5d, 0xff, 0xef, 0xa6, 0x62, 0xff, 0xf0, 0xab, 0x68, 0xff, 0xf2, 0xbd, 0x75, 0xff, 0xf2, 0xbc, 0x75, 0xff, 0xde, 0xa0, 0x62, 0xff, 0xc9, 0x8d, 0x53, 0xff, 0xc6, 0x8b, 0x51, 0xff, 0xc4, 0x8a, 0x4d, 0xff, 0xc3, 0x8a, 0x48, 0xff, 0xc1, 0x87, 0x45, 0xff, 0xc1, 0x84, 0x42, 0xff, 0xc0, 0x81, 0x3e, 0xff, 0xbd, 0x7d, 0x3b, 0xff, 0xbb, 0x7b, 0x39, 0xff, 0xb9, 0x7a, 0x37, 0xff, 0xb7, 0x77, 0x36, 0xff, 0xb4, 0x76, 0x36, 0xff, 0xb2, 0x73, 0x34, 0xff, 0xaf, 0x70, 0x33, 0xff, 0xae, 0x6f, 0x33, 0xff, 0xac, 0x6e, 0x31, 0xff, 0xaa, 0x6b, 0x31, 0xff, 0xa8, 0x68, 0x30, 0xff, 0xa5, 0x67, 0x2e, 0xff, 0xa3, 0x67, 0x2f, 0xff, 0xa0, 0x65, 0x2e, 0xff, 0x9f, 0x62, 0x2d, 0xff, 0x9f, 0x62, 0x2e, 0xff, 0x9d, 0x5e, 0x2c, 0xff, 0x9c, 0x5f, 0x2c, 0xff, 0x9b, 0x5e, 0x2d, 0xff, 0x97, 0x59, 0x29, 0xff, 0xc4, 0x7f, 0x4a, 0xff, 0xd8, 0x93, 0x5b, 0xff, 0xcb, 0x8c, 0x52, 0xff, 0xc6, 0x87, 0x4d, 0xff, 0xc2, 0x85, 0x4d, 0xff, 0xc9, 0x8b, 0x51, 0xff, 0xd1, 0x8e, 0x53, 0xff, 0xd8, 0x8f, 0x54, 0xff, 0xe4, 0x96, 0x5b, 0xff, 0xef, 0xa2, 0x65, 0xff, 0xf1, 0xaa, 0x6d, 0xff, 0xf1, 0xad, 0x70, 0xff, 0xf0, 0xae, 0x6f, 0xff, 0xf1, 0xac, 0x73, 0xff, 0xf1, 0xa8, 0x6e, 0xff, 0xec, 0x9c, 0x65, 0xff, 0xdb, 0x92, 0x5e, 0xff, 0xca, 0x8b, 0x55, 0xff, 0xc2, 0x83, 0x4d, 0xff, 0xbb, 0x7a, 0x46, 0xff, 0xb2, 0x71, 0x3d, 0xff, 0xac, 0x6a, 0x38, 0xff, 0xa8, 0x67, 0x36, 0xff, 0xa3, 0x63, 0x34, 0xff, 0x9e, 0x5d, 0x31, 0xff, 0x9e, 0x5d, 0x31, 0xff, 0xa2, 0x62, 0x34, 0xff, 0xa0, 0x5f, 0x34, 0xff, 0x9d, 0x5e, 0x34, 0xff, 0x9e, 0x61, 0x34, 0xff, 0x9c, 0x62, 0x35, 0xff, 0x9a, 0x60, 0x36, 0xff, 0x97, 0x5e, 0x35, 0xff, 0x95, 0x59, 0x31, 0xff, 0x93, 0x54, 0x2e, 0xff, 0x8e, 0x4f, 0x2b, 0xff, 0x8a, 0x49, 0x27, 0xff, 0x85, 0x44, 0x21, 0xff, 0x81, 0x41, 0x1f, 0xff, 0x7e, 0x40, 0x1f, 0xff, 0x7e, 0x3e, 0x1f, 0xff, 0x7c, 0x3d, 0x1f, 0xff, 0x79, 0x3b, 0x1e, 0xff, 0x77, 0x3b, 0x1b, 0xff, 0x76, 0x3a, 0x1a, 0xff, 0x77, 0x3a, 0x1a, 0xff, 0x78, 0x3b, 0x1a, 0xff, 0x76, 0x39, 0x1a, 0xff, 0x77, 0x39, 0x1a, 0xff, 0x75, 0x39, 0x1a, 0xff, 0x76, 0x3a, 0x1a, 0xff, 0x76, 0x39, 0x1a, 0xff, 0x76, 0x3a, 0x1a, 0xff, 0x77, 0x38, 0x1c, 0xff, 0x76, 0x3a, 0x1a, 0xff, 0x76, 0x39, 0x1a, 0xff, 0x77, 0x3a, 0x1a, 0xff, 0x77, 0x3a, 0x1d, 0xff, 0x77, 0x3c, 0x1c, 0xff, 0x7a, 0x3d, 0x1e, 0xff, 0x78, 0x39, 0x1d, 0xff, 0x71, 0x36, 0x15, 0xff, 0x70, 0x35, 0x14, 0xff, 0x70, 0x35, 0x18, 0xff, 0x70, 0x33, 0x17, 0xff, 0x70, 0x35, 0x17, 0xff, 0x6e, 0x33, 0x14, 0xff, 0x70, 0x35, 0x17, 0xff, 0x70, 0x37, 0x18, 0xff, 0x71, 0x37, 0x18, 0xff, 0x71, 0x37, 0x19, 0xff, 0x74, 0x38, 0x1a, 0xff, 0x74, 0x38, 0x1b, 0xff, 0x75, 0x38, 0x1b, 0xff, 0x75, 0x38, 0x1a, 0xff, 0x74, 0x38, 0x1a, 0xff, 0x76, 0x3a, 0x1b, 0xff, 0x78, 0x3c, 0x1d, 0xff, 0x7c, 0x3d, 0x22, 0xff, 0x79, 0x3c, 0x1d, 0xff, 0x7c, 0x3e, 0x21, 0xff, 0x7a, 0x3d, 0x1d, 0xff, 0x75, 0x38, 0x19, 0xff, 0x75, 0x39, 0x1b, 0xff, 0x78, 0x3b, 0x1d, 0xff, 0x7a, 0x3d, 0x1d, 0xff, 0x7c, 0x3d, 0x1f, 0xff, 0x7b, 0x3d, 0x1f, 0xff, 0x7b, 0x3e, 0x1f, 0xff, 0x7d, 0x3d, 0x1f, 0xff, 0x79, 0x3c, 0x20, 0xff, 0x7d, 0x3f, 0x24, 0xff, 0x7e, 0x40, 0x24, 0xff, 0x82, 0x42, 0x26, 0xff, 0x83, 0x43, 0x27, 0xff, 0x82, 0x43, 0x26, 0xff, 0x83, 0x46, 0x27, 0xff, + 0x84, 0x46, 0x28, 0xff, 0x87, 0x49, 0x2b, 0xff, 0x89, 0x49, 0x2b, 0xff, 0x89, 0x4c, 0x2b, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x8e, 0x4f, 0x2b, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x92, 0x53, 0x30, 0xff, 0x94, 0x53, 0x30, 0xff, 0x95, 0x54, 0x30, 0xff, 0x95, 0x55, 0x31, 0xff, 0x97, 0x56, 0x31, 0xff, 0x99, 0x59, 0x33, 0xff, 0x9a, 0x59, 0x35, 0xff, 0x9c, 0x5e, 0x35, 0xff, 0xa3, 0x66, 0x3c, 0xff, 0xa7, 0x67, 0x3a, 0xff, 0xa5, 0x65, 0x3a, 0xff, 0xa4, 0x66, 0x3a, 0xff, 0xa6, 0x67, 0x3b, 0xff, 0xa7, 0x69, 0x3d, 0xff, 0xa9, 0x6c, 0x3f, 0xff, 0xa9, 0x6b, 0x3f, 0xff, 0xab, 0x6e, 0x40, 0xff, 0xb1, 0x72, 0x45, 0xff, 0xb6, 0x77, 0x49, 0xff, 0xb7, 0x7b, 0x4a, 0xff, 0xba, 0x7e, 0x50, 0xff, 0xbd, 0x80, 0x52, 0xff, 0xc0, 0x82, 0x52, 0xff, 0xc9, 0x8b, 0x5a, 0xff, 0xe5, 0xa1, 0x6d, 0xff, 0xe9, 0xa0, 0x71, 0xff, 0xdf, 0x9f, 0x6d, 0xff, 0xb6, 0x84, 0x51, 0xff, 0xb9, 0x87, 0x53, 0xff, 0xba, 0x89, 0x54, 0xff, 0xbe, 0x8b, 0x58, 0xff, 0xaf, 0x79, 0x4d, 0xff, 0x93, 0x59, 0x33, 0xff, 0x94, 0x59, 0x35, 0xff, 0x94, 0x58, 0x33, 0xff, 0x92, 0x57, 0x34, 0xff, 0x92, 0x59, 0x31, 0xff, 0x95, 0x5b, 0x32, 0xff, 0x95, 0x5c, 0x35, 0xff, 0x97, 0x5e, 0x39, 0xff, 0x9a, 0x63, 0x3a, 0xff, 0x99, 0x65, 0x3c, 0xff, 0x97, 0x63, 0x3b, 0xff, 0x98, 0x65, 0x3e, 0xff, 0x99, 0x64, 0x3f, 0xff, 0x99, 0x66, 0x41, 0xff, 0x97, 0x66, 0x42, 0xff, 0x98, 0x64, 0x41, 0xff, 0x9a, 0x64, 0x3c, 0xff, 0x9a, 0x65, 0x3c, 0xff, 0x9c, 0x68, 0x40, 0xff, 0x9a, 0x6b, 0x42, 0xff, 0x9b, 0x6a, 0x41, 0xff, 0x9b, 0x69, 0x41, 0xff, 0x9c, 0x68, 0x40, 0xff, 0x9f, 0x6b, 0x42, 0xff, 0xa1, 0x6e, 0x44, 0xff, 0xa5, 0x70, 0x45, 0xff, 0xa7, 0x72, 0x45, 0xff, 0xaa, 0x76, 0x45, 0xff, 0xab, 0x77, 0x43, 0xff, 0xad, 0x74, 0x3f, 0xff, 0xaf, 0x76, 0x40, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb3, 0x79, 0x44, 0xff, 0xb4, 0x79, 0x47, 0xff, 0xb7, 0x80, 0x49, 0xff, 0xb9, 0x85, 0x4a, 0xff, 0xbd, 0x84, 0x4c, 0xff, 0xbf, 0x84, 0x4a, 0xff, 0xc1, 0x87, 0x4d, 0xff, 0xc4, 0x88, 0x4e, 0xff, 0xc6, 0x8a, 0x4e, 0xff, 0xca, 0x8c, 0x4e, 0xff, 0xd2, 0x92, 0x51, 0xff, 0xdd, 0x97, 0x56, 0xff, 0xe7, 0x99, 0x5b, 0xff, 0xed, 0xa0, 0x5f, 0xff, 0xef, 0xa7, 0x64, 0xff, 0xef, 0xb1, 0x6c, 0xff, 0xf0, 0xc5, 0x79, 0xff, 0xed, 0xdf, 0x89, 0xff, 0xe7, 0xe6, 0x9c, 0xff, 0xe9, 0xe6, 0xaa, 0xff, 0xec, 0xe6, 0xb3, 0xff, 0xef, 0xe7, 0xbc, 0xff, 0xeb, 0xe7, 0xb5, 0xff, 0xe7, 0xe9, 0xa2, 0xff, 0xe8, 0xe2, 0x8b, 0xff, 0xee, 0xd3, 0x7f, 0xff, 0xf0, 0xc4, 0x7c, 0xff, 0xf0, 0xb1, 0x6e, 0xff, 0xf2, 0xa6, 0x61, 0xff, 0xf0, 0x9d, 0x59, 0xff, 0xef, 0xa2, 0x5f, 0xff, 0xf0, 0xaa, 0x65, 0xff, 0xf1, 0xae, 0x69, 0xff, 0xf4, 0xbb, 0x76, 0xff, 0xea, 0xb0, 0x70, 0xff, 0xd3, 0x96, 0x5b, 0xff, 0xc9, 0x8d, 0x52, 0xff, 0xc9, 0x8d, 0x51, 0xff, 0xc7, 0x8e, 0x4c, 0xff, 0xc5, 0x8c, 0x47, 0xff, 0xc5, 0x8a, 0x45, 0xff, 0xc5, 0x89, 0x41, 0xff, 0xc3, 0x83, 0x3f, 0xff, 0xc1, 0x80, 0x3f, 0xff, 0xc0, 0x7f, 0x3c, 0xff, 0xbd, 0x7c, 0x3a, 0xff, 0xba, 0x7b, 0x3a, 0xff, 0xb9, 0x7a, 0x38, 0xff, 0xb5, 0x77, 0x36, 0xff, 0xb3, 0x75, 0x36, 0xff, 0xb2, 0x74, 0x34, 0xff, 0xae, 0x70, 0x34, 0xff, 0xac, 0x6e, 0x33, 0xff, 0xaa, 0x6b, 0x31, 0xff, 0xa7, 0x68, 0x30, 0xff, 0xa4, 0x67, 0x30, 0xff, 0xa2, 0x65, 0x2f, 0xff, 0xa1, 0x64, 0x30, 0xff, 0xa1, 0x62, 0x2e, 0xff, 0x9e, 0x5f, 0x2d, 0xff, 0x9d, 0x5f, 0x2d, 0xff, 0x99, 0x5c, 0x2c, 0xff, 0xb8, 0x79, 0x47, 0xff, 0xd5, 0x92, 0x5a, 0xff, 0xd2, 0x91, 0x57, 0xff, 0xcb, 0x8b, 0x53, 0xff, 0xc7, 0x87, 0x50, 0xff, 0xcf, 0x8c, 0x52, 0xff, 0xd8, 0x91, 0x55, 0xff, 0xe1, 0x93, 0x58, 0xff, 0xec, 0x9a, 0x5e, 0xff, 0xf2, 0xa9, 0x6c, 0xff, 0xf3, 0xb7, 0x77, 0xff, 0xf2, 0xc2, 0x80, 0xff, 0xf2, 0xc3, 0x82, 0xff, 0xf3, 0xb9, 0x7b, 0xff, 0xf1, 0xb1, 0x76, 0xff, 0xf1, 0xa7, 0x6e, 0xff, 0xec, 0x9c, 0x65, 0xff, 0xde, 0x95, 0x5d, 0xff, 0xcf, 0x8e, 0x55, 0xff, 0xc5, 0x84, 0x4d, 0xff, 0xbb, 0x7b, 0x45, 0xff, 0xb6, 0x74, 0x40, 0xff, 0xb0, 0x6f, 0x3c, 0xff, 0xa9, 0x68, 0x37, 0xff, 0xa4, 0x64, 0x34, 0xff, 0xa0, 0x61, 0x33, 0xff, 0xa3, 0x64, 0x36, 0xff, 0xa4, 0x65, 0x36, 0xff, 0xa3, 0x62, 0x35, 0xff, 0xa1, 0x62, 0x35, 0xff, 0x9f, 0x64, 0x36, 0xff, 0x9e, 0x65, 0x39, 0xff, 0x9a, 0x61, 0x3a, 0xff, 0x97, 0x5e, 0x36, 0xff, 0x9a, 0x5c, 0x32, 0xff, 0x96, 0x56, 0x2d, 0xff, 0x8f, 0x4f, 0x2a, 0xff, 0x8a, 0x4a, 0x27, 0xff, 0x86, 0x45, 0x23, 0xff, 0x83, 0x43, 0x20, 0xff, 0x7f, 0x40, 0x1e, 0xff, 0x7d, 0x40, 0x1e, 0xff, 0x7b, 0x3d, 0x1d, 0xff, 0x78, 0x3a, 0x1c, 0xff, 0x77, 0x3a, 0x1b, 0xff, 0x7a, 0x3d, 0x1e, 0xff, 0x7a, 0x3c, 0x1d, 0xff, 0x77, 0x3b, 0x1c, 0xff, 0x77, 0x3b, 0x1c, 0xff, 0x79, 0x3c, 0x1d, 0xff, 0x77, 0x3b, 0x1c, 0xff, 0x77, 0x3c, 0x1c, 0xff, 0x77, 0x3a, 0x1c, 0xff, 0x79, 0x3b, 0x1d, 0xff, 0x76, 0x3a, 0x1a, 0xff, 0x77, 0x3a, 0x1c, 0xff, 0x77, 0x3a, 0x1d, 0xff, 0x78, 0x3a, 0x1c, 0xff, 0x77, 0x3b, 0x1d, 0xff, 0x79, 0x3c, 0x1d, 0xff, 0x73, 0x38, 0x1a, 0xff, 0x70, 0x37, 0x17, 0xff, 0x70, 0x35, 0x16, 0xff, 0x6e, 0x33, 0x15, 0xff, 0x6d, 0x33, 0x14, 0xff, 0x6e, 0x33, 0x14, 0xff, 0x6f, 0x35, 0x14, 0xff, 0x70, 0x36, 0x14, 0xff, 0x70, 0x37, 0x18, 0xff, 0x70, 0x37, 0x18, 0xff, 0x70, 0x36, 0x17, 0xff, 0x71, 0x35, 0x1a, 0xff, 0x73, 0x38, 0x1a, 0xff, 0x72, 0x36, 0x1a, 0xff, 0x72, 0x36, 0x17, 0xff, 0x72, 0x37, 0x1a, 0xff, 0x75, 0x37, 0x1b, 0xff, 0x78, 0x3a, 0x1e, 0xff, 0x78, 0x3c, 0x1c, 0xff, 0x76, 0x3b, 0x1c, 0xff, 0x6e, 0x33, 0x13, 0xff, 0x71, 0x36, 0x18, 0xff, 0x74, 0x38, 0x1a, 0xff, 0x74, 0x38, 0x1a, 0xff, 0x76, 0x3a, 0x1c, 0xff, 0x79, 0x3b, 0x1d, 0xff, 0x79, 0x3c, 0x1d, 0xff, 0x7a, 0x3c, 0x1d, 0xff, 0x7c, 0x3d, 0x1f, 0xff, 0x7e, 0x40, 0x22, 0xff, 0x7d, 0x3f, 0x21, 0xff, 0x7d, 0x3f, 0x22, 0xff, 0x7e, 0x3f, 0x24, 0xff, 0x7e, 0x3f, 0x24, 0xff, 0x80, 0x41, 0x27, 0xff, 0x83, 0x44, 0x27, 0xff, 0x81, 0x42, 0x26, 0xff, + 0x83, 0x44, 0x26, 0xff, 0x86, 0x47, 0x28, 0xff, 0x85, 0x46, 0x28, 0xff, 0x88, 0x48, 0x29, 0xff, 0x88, 0x49, 0x2a, 0xff, 0x8a, 0x4b, 0x2a, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x8c, 0x4c, 0x2b, 0xff, 0x8e, 0x4e, 0x2b, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x95, 0x55, 0x30, 0xff, 0x99, 0x58, 0x32, 0xff, 0x9a, 0x58, 0x34, 0xff, 0x9c, 0x5d, 0x35, 0xff, 0xa0, 0x62, 0x3b, 0xff, 0xa7, 0x67, 0x3a, 0xff, 0xa8, 0x68, 0x3c, 0xff, 0xa9, 0x69, 0x3e, 0xff, 0xa6, 0x67, 0x3b, 0xff, 0xa6, 0x67, 0x3b, 0xff, 0xa8, 0x68, 0x3e, 0xff, 0xa8, 0x6b, 0x3f, 0xff, 0xaa, 0x6b, 0x3f, 0xff, 0xab, 0x6e, 0x41, 0xff, 0xad, 0x70, 0x41, 0xff, 0xb1, 0x74, 0x48, 0xff, 0xb4, 0x79, 0x4b, 0xff, 0xb9, 0x7c, 0x4f, 0xff, 0xbe, 0x81, 0x53, 0xff, 0xc9, 0x8b, 0x58, 0xff, 0xe0, 0x9a, 0x63, 0xff, 0xe5, 0x9d, 0x64, 0xff, 0xec, 0xa2, 0x68, 0xff, 0xf2, 0xa6, 0x70, 0xff, 0xde, 0x9f, 0x6b, 0xff, 0xc7, 0x92, 0x5d, 0xff, 0xbc, 0x8a, 0x58, 0xff, 0xa7, 0x70, 0x43, 0xff, 0x91, 0x54, 0x31, 0xff, 0x93, 0x57, 0x31, 0xff, 0x92, 0x57, 0x31, 0xff, 0x91, 0x57, 0x30, 0xff, 0x92, 0x58, 0x31, 0xff, 0x94, 0x58, 0x33, 0xff, 0x95, 0x5a, 0x35, 0xff, 0x96, 0x5c, 0x35, 0xff, 0x96, 0x5b, 0x35, 0xff, 0x96, 0x5e, 0x37, 0xff, 0x99, 0x63, 0x3d, 0xff, 0x98, 0x64, 0x40, 0xff, 0x96, 0x64, 0x42, 0xff, 0x97, 0x63, 0x44, 0xff, 0x97, 0x63, 0x44, 0xff, 0x99, 0x66, 0x43, 0xff, 0x9a, 0x66, 0x42, 0xff, 0x9b, 0x64, 0x3c, 0xff, 0x9b, 0x68, 0x42, 0xff, 0x9c, 0x6c, 0x43, 0xff, 0x9b, 0x6c, 0x42, 0xff, 0x9b, 0x6a, 0x43, 0xff, 0x9d, 0x6a, 0x43, 0xff, 0x9e, 0x6b, 0x42, 0xff, 0xa0, 0x6c, 0x44, 0xff, 0xa3, 0x6f, 0x45, 0xff, 0xa5, 0x71, 0x47, 0xff, 0xa8, 0x73, 0x44, 0xff, 0xaa, 0x75, 0x43, 0xff, 0xac, 0x74, 0x41, 0xff, 0xad, 0x71, 0x3d, 0xff, 0xb0, 0x72, 0x3d, 0xff, 0xb1, 0x74, 0x3e, 0xff, 0xb3, 0x79, 0x42, 0xff, 0xb5, 0x80, 0x46, 0xff, 0xb7, 0x7f, 0x47, 0xff, 0xb8, 0x80, 0x49, 0xff, 0xba, 0x84, 0x4b, 0xff, 0xbe, 0x89, 0x4d, 0xff, 0xc0, 0x8a, 0x4f, 0xff, 0xc3, 0x8d, 0x51, 0xff, 0xc7, 0x91, 0x52, 0xff, 0xca, 0x93, 0x54, 0xff, 0xd0, 0x93, 0x55, 0xff, 0xdc, 0x9a, 0x59, 0xff, 0xe7, 0xa1, 0x5e, 0xff, 0xed, 0xa4, 0x60, 0xff, 0xf0, 0xa9, 0x65, 0xff, 0xee, 0xb2, 0x6f, 0xff, 0xee, 0xc9, 0x79, 0xff, 0xec, 0xe2, 0x89, 0xff, 0xe7, 0xe7, 0x99, 0xff, 0xe9, 0xe6, 0xab, 0xff, 0xed, 0xe7, 0xbb, 0xff, 0xf0, 0xe7, 0xc8, 0xff, 0xf0, 0xe7, 0xc4, 0xff, 0xec, 0xe7, 0xb2, 0xff, 0xe6, 0xe7, 0x9b, 0xff, 0xe9, 0xe0, 0x88, 0xff, 0xf0, 0xd2, 0x80, 0xff, 0xf1, 0xbc, 0x74, 0xff, 0xf0, 0xa9, 0x65, 0xff, 0xf1, 0xa3, 0x5e, 0xff, 0xf1, 0x9e, 0x5b, 0xff, 0xf0, 0xa4, 0x60, 0xff, 0xf0, 0xac, 0x66, 0xff, 0xf0, 0xaf, 0x6a, 0xff, 0xf2, 0xb1, 0x70, 0xff, 0xe2, 0xa0, 0x64, 0xff, 0xd0, 0x8f, 0x55, 0xff, 0xcd, 0x90, 0x55, 0xff, 0xcc, 0x8f, 0x53, 0xff, 0xca, 0x8e, 0x4f, 0xff, 0xca, 0x8e, 0x4a, 0xff, 0xcb, 0x8e, 0x48, 0xff, 0xc8, 0x8c, 0x44, 0xff, 0xc6, 0x87, 0x41, 0xff, 0xc6, 0x84, 0x42, 0xff, 0xc4, 0x84, 0x41, 0xff, 0xc1, 0x82, 0x3f, 0xff, 0xbe, 0x81, 0x3f, 0xff, 0xbc, 0x7e, 0x3e, 0xff, 0xba, 0x7c, 0x3b, 0xff, 0xb7, 0x79, 0x39, 0xff, 0xb5, 0x76, 0x38, 0xff, 0xb2, 0x75, 0x37, 0xff, 0xaf, 0x71, 0x35, 0xff, 0xac, 0x6e, 0x33, 0xff, 0xa9, 0x6b, 0x32, 0xff, 0xa6, 0x69, 0x31, 0xff, 0xa4, 0x69, 0x30, 0xff, 0xa4, 0x66, 0x30, 0xff, 0xa1, 0x64, 0x30, 0xff, 0xa0, 0x62, 0x2f, 0xff, 0x9d, 0x60, 0x2d, 0xff, 0xa4, 0x66, 0x32, 0xff, 0xd1, 0x89, 0x53, 0xff, 0xdd, 0x95, 0x5d, 0xff, 0xd1, 0x8d, 0x51, 0xff, 0xcc, 0x8b, 0x4f, 0xff, 0xd5, 0x90, 0x54, 0xff, 0xde, 0x94, 0x5a, 0xff, 0xe7, 0x99, 0x5c, 0xff, 0xee, 0xa0, 0x63, 0xff, 0xf0, 0xaa, 0x6d, 0xff, 0xf2, 0xc3, 0x7d, 0xff, 0xf0, 0xde, 0x8e, 0xff, 0xee, 0xe6, 0x95, 0xff, 0xef, 0xca, 0x88, 0xff, 0xf2, 0xbd, 0x7c, 0xff, 0xf2, 0xb5, 0x75, 0xff, 0xf2, 0xac, 0x6d, 0xff, 0xf0, 0xa2, 0x64, 0xff, 0xe8, 0x99, 0x5d, 0xff, 0xd6, 0x8f, 0x56, 0xff, 0xc9, 0x87, 0x50, 0xff, 0xc0, 0x80, 0x4a, 0xff, 0xb7, 0x78, 0x42, 0xff, 0xb0, 0x70, 0x3c, 0xff, 0xac, 0x6b, 0x38, 0xff, 0xa7, 0x65, 0x35, 0xff, 0xa4, 0x63, 0x35, 0xff, 0xa7, 0x69, 0x39, 0xff, 0xa8, 0x67, 0x3a, 0xff, 0xa5, 0x66, 0x37, 0xff, 0xa3, 0x65, 0x37, 0xff, 0xa0, 0x67, 0x39, 0xff, 0x9e, 0x64, 0x3c, 0xff, 0x9b, 0x62, 0x3b, 0xff, 0x9a, 0x61, 0x36, 0xff, 0x9a, 0x5d, 0x32, 0xff, 0x96, 0x55, 0x2c, 0xff, 0x90, 0x4e, 0x29, 0xff, 0x8a, 0x49, 0x27, 0xff, 0x87, 0x45, 0x25, 0xff, 0x82, 0x43, 0x22, 0xff, 0x7f, 0x40, 0x1f, 0xff, 0x7e, 0x3f, 0x1d, 0xff, 0x7b, 0x3d, 0x1f, 0xff, 0x7c, 0x3c, 0x1f, 0xff, 0x7d, 0x3f, 0x21, 0xff, 0x7c, 0x3e, 0x20, 0xff, 0x7a, 0x3b, 0x1e, 0xff, 0x7c, 0x3d, 0x1e, 0xff, 0x7b, 0x3c, 0x1d, 0xff, 0x7b, 0x3d, 0x1e, 0xff, 0x7a, 0x3c, 0x1e, 0xff, 0x7a, 0x3b, 0x1d, 0xff, 0x78, 0x3b, 0x1d, 0xff, 0x78, 0x3c, 0x1e, 0xff, 0x78, 0x3c, 0x1d, 0xff, 0x77, 0x3b, 0x1c, 0xff, 0x78, 0x3b, 0x1c, 0xff, 0x7a, 0x3a, 0x1d, 0xff, 0x78, 0x3a, 0x1b, 0xff, 0x75, 0x38, 0x1a, 0xff, 0x70, 0x36, 0x18, 0xff, 0x6f, 0x35, 0x17, 0xff, 0x6e, 0x33, 0x15, 0xff, 0x6e, 0x33, 0x14, 0xff, 0x6e, 0x34, 0x15, 0xff, 0x6e, 0x33, 0x17, 0xff, 0x6f, 0x34, 0x14, 0xff, 0x70, 0x35, 0x17, 0xff, 0x6f, 0x36, 0x17, 0xff, 0x6f, 0x36, 0x17, 0xff, 0x70, 0x34, 0x17, 0xff, 0x70, 0x35, 0x19, 0xff, 0x6f, 0x34, 0x17, 0xff, 0x70, 0x36, 0x18, 0xff, 0x72, 0x36, 0x1a, 0xff, 0x74, 0x37, 0x1b, 0xff, 0x75, 0x38, 0x1d, 0xff, 0x6e, 0x34, 0x17, 0xff, 0x6b, 0x30, 0x11, 0xff, 0x6e, 0x34, 0x14, 0xff, 0x6f, 0x33, 0x13, 0xff, 0x71, 0x36, 0x17, 0xff, 0x73, 0x37, 0x1a, 0xff, 0x75, 0x39, 0x1a, 0xff, 0x77, 0x3b, 0x1a, 0xff, 0x77, 0x39, 0x1c, 0xff, 0x79, 0x3a, 0x1f, 0xff, 0x79, 0x3b, 0x1e, 0xff, 0x7a, 0x3d, 0x1e, 0xff, 0x7a, 0x3c, 0x1e, 0xff, 0x7c, 0x3c, 0x20, 0xff, 0x7c, 0x3d, 0x21, 0xff, 0x7e, 0x3f, 0x21, 0xff, 0x7e, 0x40, 0x24, 0xff, 0x81, 0x41, 0x26, 0xff, 0x81, 0x43, 0x27, 0xff, + 0x80, 0x41, 0x24, 0xff, 0x82, 0x44, 0x25, 0xff, 0x84, 0x44, 0x27, 0xff, 0x85, 0x44, 0x27, 0xff, 0x86, 0x47, 0x29, 0xff, 0x87, 0x48, 0x28, 0xff, 0x89, 0x4a, 0x2a, 0xff, 0x8b, 0x4a, 0x2b, 0xff, 0x8d, 0x4d, 0x2b, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8f, 0x50, 0x2c, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x92, 0x52, 0x2f, 0xff, 0x95, 0x54, 0x30, 0xff, 0x97, 0x56, 0x32, 0xff, 0x99, 0x59, 0x34, 0xff, 0x9b, 0x5c, 0x35, 0xff, 0x9f, 0x5f, 0x38, 0xff, 0xa5, 0x67, 0x3a, 0xff, 0xa7, 0x67, 0x3b, 0xff, 0xa8, 0x69, 0x3e, 0xff, 0xa9, 0x6a, 0x3e, 0xff, 0xa9, 0x69, 0x3d, 0xff, 0xa6, 0x68, 0x3b, 0xff, 0xa6, 0x69, 0x3d, 0xff, 0xa9, 0x6a, 0x3e, 0xff, 0xaa, 0x6c, 0x41, 0xff, 0xad, 0x6f, 0x43, 0xff, 0xaf, 0x73, 0x46, 0xff, 0xb1, 0x75, 0x48, 0xff, 0xb2, 0x74, 0x46, 0xff, 0xb7, 0x78, 0x49, 0xff, 0xc7, 0x8b, 0x56, 0xff, 0xd3, 0x93, 0x5c, 0xff, 0xda, 0x96, 0x5e, 0xff, 0xe3, 0x9a, 0x61, 0xff, 0xf0, 0x9f, 0x67, 0xff, 0xf3, 0xa6, 0x6b, 0xff, 0xf1, 0xa6, 0x6e, 0xff, 0xd2, 0x93, 0x5d, 0xff, 0x95, 0x5c, 0x36, 0xff, 0x90, 0x55, 0x31, 0xff, 0x90, 0x56, 0x30, 0xff, 0x90, 0x55, 0x30, 0xff, 0x90, 0x55, 0x30, 0xff, 0x91, 0x55, 0x31, 0xff, 0x92, 0x58, 0x32, 0xff, 0x93, 0x58, 0x33, 0xff, 0x93, 0x57, 0x32, 0xff, 0x94, 0x5b, 0x34, 0xff, 0x95, 0x5e, 0x36, 0xff, 0x97, 0x63, 0x3a, 0xff, 0x98, 0x66, 0x40, 0xff, 0x97, 0x66, 0x44, 0xff, 0x98, 0x64, 0x49, 0xff, 0x98, 0x63, 0x4b, 0xff, 0x99, 0x66, 0x4d, 0xff, 0x9b, 0x67, 0x4b, 0xff, 0x9a, 0x63, 0x42, 0xff, 0x9a, 0x66, 0x41, 0xff, 0x9b, 0x6a, 0x48, 0xff, 0x9c, 0x6b, 0x47, 0xff, 0x9b, 0x6a, 0x43, 0xff, 0x9b, 0x68, 0x41, 0xff, 0x9b, 0x67, 0x40, 0xff, 0x9e, 0x67, 0x3f, 0xff, 0xa1, 0x6a, 0x42, 0xff, 0xa4, 0x6d, 0x43, 0xff, 0xa6, 0x71, 0x43, 0xff, 0xa9, 0x74, 0x44, 0xff, 0xab, 0x74, 0x42, 0xff, 0xad, 0x70, 0x3e, 0xff, 0xb0, 0x72, 0x3e, 0xff, 0xb2, 0x76, 0x3f, 0xff, 0xb4, 0x78, 0x40, 0xff, 0xb5, 0x7b, 0x44, 0xff, 0xb7, 0x80, 0x48, 0xff, 0xb8, 0x84, 0x49, 0xff, 0xba, 0x87, 0x4c, 0xff, 0xbc, 0x89, 0x4e, 0xff, 0xc0, 0x8d, 0x52, 0xff, 0xc3, 0x90, 0x54, 0xff, 0xc5, 0x94, 0x56, 0xff, 0xc9, 0x96, 0x58, 0xff, 0xcf, 0x99, 0x59, 0xff, 0xd8, 0x9f, 0x5f, 0xff, 0xe2, 0xa2, 0x63, 0xff, 0xea, 0xa7, 0x64, 0xff, 0xf0, 0xac, 0x67, 0xff, 0xf0, 0xb5, 0x6f, 0xff, 0xef, 0xc8, 0x79, 0xff, 0xeb, 0xdf, 0x85, 0xff, 0xe5, 0xe8, 0x95, 0xff, 0xe9, 0xe6, 0xa7, 0xff, 0xef, 0xe7, 0xbe, 0xff, 0xf1, 0xe7, 0xcd, 0xff, 0xf1, 0xe8, 0xce, 0xff, 0xee, 0xe7, 0xbe, 0xff, 0xe8, 0xe8, 0xa4, 0xff, 0xe8, 0xe6, 0x8f, 0xff, 0xef, 0xdf, 0x85, 0xff, 0xf2, 0xcb, 0x7d, 0xff, 0xf1, 0xaf, 0x6a, 0xff, 0xf2, 0xa5, 0x60, 0xff, 0xf1, 0x9e, 0x5b, 0xff, 0xee, 0x9d, 0x5a, 0xff, 0xed, 0xa8, 0x62, 0xff, 0xf1, 0xae, 0x69, 0xff, 0xf3, 0xaf, 0x6c, 0xff, 0xe8, 0xa5, 0x66, 0xff, 0xd6, 0x94, 0x58, 0xff, 0xd3, 0x92, 0x56, 0xff, 0xd1, 0x92, 0x56, 0xff, 0xcf, 0x92, 0x53, 0xff, 0xcf, 0x92, 0x4e, 0xff, 0xd1, 0x94, 0x4c, 0xff, 0xd1, 0x93, 0x4b, 0xff, 0xd1, 0x90, 0x4a, 0xff, 0xd0, 0x8d, 0x48, 0xff, 0xce, 0x8b, 0x46, 0xff, 0xca, 0x89, 0x45, 0xff, 0xc7, 0x87, 0x45, 0xff, 0xc5, 0x86, 0x44, 0xff, 0xc3, 0x83, 0x44, 0xff, 0xbf, 0x80, 0x41, 0xff, 0xbc, 0x7e, 0x3e, 0xff, 0xb9, 0x7a, 0x3d, 0xff, 0xb5, 0x78, 0x3b, 0xff, 0xb3, 0x76, 0x39, 0xff, 0xaf, 0x71, 0x36, 0xff, 0xab, 0x6d, 0x34, 0xff, 0xa8, 0x6b, 0x34, 0xff, 0xa6, 0x6a, 0x34, 0xff, 0xa4, 0x67, 0x31, 0xff, 0xa2, 0x66, 0x30, 0xff, 0xa1, 0x63, 0x31, 0xff, 0x9c, 0x62, 0x2f, 0xff, 0xbf, 0x7c, 0x45, 0xff, 0xdc, 0x93, 0x55, 0xff, 0xd7, 0x90, 0x4d, 0xff, 0xcc, 0x89, 0x49, 0xff, 0xd7, 0x90, 0x54, 0xff, 0xe4, 0x96, 0x5c, 0xff, 0xeb, 0x9a, 0x5f, 0xff, 0xf0, 0xa0, 0x65, 0xff, 0xf3, 0xad, 0x70, 0xff, 0xf1, 0xc4, 0x7f, 0xff, 0xed, 0xe0, 0x93, 0xff, 0xea, 0xee, 0xa8, 0xff, 0xeb, 0xc9, 0x91, 0xff, 0xf1, 0xc5, 0x84, 0xff, 0xf2, 0xc2, 0x7e, 0xff, 0xf1, 0xb5, 0x76, 0xff, 0xf2, 0xab, 0x6d, 0xff, 0xf1, 0xa4, 0x65, 0xff, 0xea, 0x9d, 0x60, 0xff, 0xdb, 0x95, 0x5a, 0xff, 0xcb, 0x8c, 0x53, 0xff, 0xc0, 0x80, 0x4b, 0xff, 0xba, 0x7a, 0x44, 0xff, 0xb5, 0x73, 0x40, 0xff, 0xae, 0x6d, 0x3b, 0xff, 0xa6, 0x67, 0x35, 0xff, 0xa8, 0x6b, 0x39, 0xff, 0xab, 0x6c, 0x3e, 0xff, 0xa9, 0x69, 0x3b, 0xff, 0xa6, 0x67, 0x37, 0xff, 0xa3, 0x67, 0x38, 0xff, 0xa0, 0x66, 0x3b, 0xff, 0x9d, 0x66, 0x3c, 0xff, 0x9c, 0x63, 0x39, 0xff, 0x9d, 0x62, 0x36, 0xff, 0x9b, 0x5a, 0x30, 0xff, 0x95, 0x53, 0x2b, 0xff, 0x8f, 0x4d, 0x28, 0xff, 0x8b, 0x49, 0x26, 0xff, 0x86, 0x46, 0x24, 0xff, 0x83, 0x43, 0x22, 0xff, 0x80, 0x42, 0x22, 0xff, 0x81, 0x41, 0x21, 0xff, 0x7f, 0x3f, 0x21, 0xff, 0x7e, 0x3f, 0x21, 0xff, 0x7f, 0x41, 0x23, 0xff, 0x7d, 0x3f, 0x21, 0xff, 0x7c, 0x3e, 0x20, 0xff, 0x7b, 0x3e, 0x20, 0xff, 0x7b, 0x3e, 0x20, 0xff, 0x7b, 0x3d, 0x1f, 0xff, 0x79, 0x3c, 0x1f, 0xff, 0x7a, 0x3d, 0x1f, 0xff, 0x78, 0x3b, 0x1e, 0xff, 0x78, 0x3c, 0x1d, 0xff, 0x78, 0x3b, 0x1e, 0xff, 0x77, 0x3a, 0x1c, 0xff, 0x77, 0x3a, 0x1d, 0xff, 0x77, 0x3b, 0x1c, 0xff, 0x75, 0x3a, 0x1c, 0xff, 0x73, 0x37, 0x1a, 0xff, 0x70, 0x36, 0x17, 0xff, 0x6f, 0x36, 0x17, 0xff, 0x6e, 0x33, 0x16, 0xff, 0x6d, 0x34, 0x14, 0xff, 0x6e, 0x33, 0x14, 0xff, 0x6e, 0x33, 0x17, 0xff, 0x6f, 0x34, 0x13, 0xff, 0x6f, 0x34, 0x14, 0xff, 0x6e, 0x36, 0x17, 0xff, 0x70, 0x35, 0x17, 0xff, 0x6f, 0x33, 0x16, 0xff, 0x6f, 0x33, 0x16, 0xff, 0x70, 0x36, 0x18, 0xff, 0x71, 0x36, 0x18, 0xff, 0x71, 0x34, 0x18, 0xff, 0x6e, 0x33, 0x15, 0xff, 0x6a, 0x32, 0x12, 0xff, 0x6d, 0x31, 0x12, 0xff, 0x6d, 0x32, 0x13, 0xff, 0x6d, 0x32, 0x14, 0xff, 0x6f, 0x32, 0x13, 0xff, 0x72, 0x36, 0x19, 0xff, 0x73, 0x36, 0x1a, 0xff, 0x73, 0x37, 0x1b, 0xff, 0x74, 0x38, 0x1a, 0xff, 0x76, 0x39, 0x1b, 0xff, 0x77, 0x39, 0x1c, 0xff, 0x77, 0x3a, 0x1c, 0xff, 0x78, 0x3c, 0x1c, 0xff, 0x79, 0x3c, 0x1e, 0xff, 0x7c, 0x3c, 0x1f, 0xff, 0x7c, 0x3e, 0x21, 0xff, 0x7d, 0x3f, 0x22, 0xff, 0x7e, 0x3f, 0x25, 0xff, 0x7f, 0x40, 0x23, 0xff, + 0x7e, 0x3f, 0x24, 0xff, 0x7f, 0x40, 0x25, 0xff, 0x81, 0x43, 0x25, 0xff, 0x81, 0x43, 0x27, 0xff, 0x84, 0x45, 0x26, 0xff, 0x85, 0x46, 0x28, 0xff, 0x86, 0x47, 0x29, 0xff, 0x89, 0x49, 0x2a, 0xff, 0x8a, 0x4d, 0x2a, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8f, 0x51, 0x2e, 0xff, 0x8e, 0x4e, 0x2d, 0xff, 0x8f, 0x51, 0x2c, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x95, 0x54, 0x31, 0xff, 0x98, 0x58, 0x32, 0xff, 0x9a, 0x59, 0x35, 0xff, 0x9f, 0x62, 0x37, 0xff, 0xa4, 0x66, 0x39, 0xff, 0xa5, 0x66, 0x3a, 0xff, 0xa8, 0x67, 0x3d, 0xff, 0xa8, 0x68, 0x3d, 0xff, 0xaa, 0x6b, 0x3f, 0xff, 0xaa, 0x6b, 0x3f, 0xff, 0xa8, 0x68, 0x3e, 0xff, 0xa7, 0x68, 0x3d, 0xff, 0xa9, 0x6c, 0x40, 0xff, 0xac, 0x70, 0x44, 0xff, 0xaf, 0x71, 0x45, 0xff, 0xb1, 0x74, 0x47, 0xff, 0xb2, 0x75, 0x46, 0xff, 0xb6, 0x77, 0x4a, 0xff, 0xcb, 0x8e, 0x57, 0xff, 0xcb, 0x8d, 0x5a, 0xff, 0xd2, 0x90, 0x59, 0xff, 0xd4, 0x94, 0x5a, 0xff, 0xd4, 0x93, 0x5d, 0xff, 0xda, 0x94, 0x5e, 0xff, 0xe4, 0x9d, 0x66, 0xff, 0xc8, 0x8c, 0x58, 0xff, 0x90, 0x53, 0x2e, 0xff, 0x98, 0x5b, 0x35, 0xff, 0x93, 0x56, 0x31, 0xff, 0x8e, 0x53, 0x2f, 0xff, 0x90, 0x54, 0x30, 0xff, 0x90, 0x54, 0x30, 0xff, 0x91, 0x55, 0x30, 0xff, 0x8f, 0x54, 0x2f, 0xff, 0x90, 0x56, 0x30, 0xff, 0x91, 0x57, 0x30, 0xff, 0x94, 0x5c, 0x34, 0xff, 0x94, 0x5e, 0x37, 0xff, 0x97, 0x64, 0x3d, 0xff, 0x9a, 0x67, 0x44, 0xff, 0x98, 0x63, 0x49, 0xff, 0x99, 0x64, 0x4b, 0xff, 0x99, 0x67, 0x4d, 0xff, 0x9a, 0x6a, 0x4e, 0xff, 0x9c, 0x6a, 0x4b, 0xff, 0x9b, 0x65, 0x41, 0xff, 0x9b, 0x68, 0x45, 0xff, 0x9b, 0x6c, 0x47, 0xff, 0x9b, 0x6b, 0x45, 0xff, 0x9b, 0x68, 0x41, 0xff, 0x9c, 0x69, 0x3d, 0xff, 0x9d, 0x68, 0x3d, 0xff, 0xa0, 0x6b, 0x3e, 0xff, 0xa3, 0x6d, 0x3f, 0xff, 0xa5, 0x71, 0x3f, 0xff, 0xa9, 0x73, 0x40, 0xff, 0xab, 0x75, 0x41, 0xff, 0xac, 0x72, 0x40, 0xff, 0xae, 0x71, 0x3d, 0xff, 0xb2, 0x75, 0x3e, 0xff, 0xb3, 0x78, 0x3f, 0xff, 0xb5, 0x7c, 0x42, 0xff, 0xb6, 0x7f, 0x45, 0xff, 0xb8, 0x81, 0x49, 0xff, 0xba, 0x86, 0x4a, 0xff, 0xbc, 0x89, 0x4e, 0xff, 0xbf, 0x8c, 0x53, 0xff, 0xc2, 0x93, 0x54, 0xff, 0xc4, 0x96, 0x5a, 0xff, 0xc8, 0x9c, 0x5e, 0xff, 0xcb, 0x9f, 0x5f, 0xff, 0xcf, 0xa1, 0x60, 0xff, 0xdd, 0xa8, 0x65, 0xff, 0xe5, 0xaa, 0x66, 0xff, 0xef, 0xb0, 0x6b, 0xff, 0xf0, 0xb9, 0x70, 0xff, 0xf1, 0xca, 0x7a, 0xff, 0xef, 0xe0, 0x84, 0xff, 0xe6, 0xe8, 0x91, 0xff, 0xe7, 0xe8, 0xa4, 0xff, 0xec, 0xe8, 0xb5, 0xff, 0xf0, 0xe8, 0xc8, 0xff, 0xf0, 0xe8, 0xd1, 0xff, 0xef, 0xe8, 0xc3, 0xff, 0xea, 0xe9, 0xac, 0xff, 0xe7, 0xe7, 0x96, 0xff, 0xe9, 0xe3, 0x88, 0xff, 0xed, 0xd3, 0x82, 0xff, 0xf0, 0xb8, 0x71, 0xff, 0xf0, 0xa9, 0x65, 0xff, 0xf2, 0xa2, 0x5d, 0xff, 0xf2, 0x9e, 0x5b, 0xff, 0xef, 0x9e, 0x5a, 0xff, 0xee, 0xa9, 0x64, 0xff, 0xf1, 0xb0, 0x6b, 0xff, 0xf1, 0xb1, 0x6c, 0xff, 0xe3, 0xa3, 0x61, 0xff, 0xd5, 0x94, 0x53, 0xff, 0xd7, 0x97, 0x57, 0xff, 0xd7, 0x96, 0x56, 0xff, 0xd7, 0x96, 0x52, 0xff, 0xd8, 0x97, 0x52, 0xff, 0xda, 0x98, 0x50, 0xff, 0xdc, 0x95, 0x4e, 0xff, 0xdd, 0x94, 0x4d, 0xff, 0xda, 0x95, 0x4d, 0xff, 0xd9, 0x93, 0x4d, 0xff, 0xd6, 0x90, 0x4b, 0xff, 0xd1, 0x8f, 0x4a, 0xff, 0xcd, 0x8c, 0x4a, 0xff, 0xc9, 0x8a, 0x49, 0xff, 0xc4, 0x88, 0x46, 0xff, 0xc0, 0x83, 0x43, 0xff, 0xbd, 0x81, 0x42, 0xff, 0xba, 0x7d, 0x3f, 0xff, 0xb6, 0x79, 0x3c, 0xff, 0xb2, 0x76, 0x3a, 0xff, 0xae, 0x72, 0x38, 0xff, 0xaa, 0x6f, 0x36, 0xff, 0xa8, 0x6c, 0x34, 0xff, 0xa6, 0x69, 0x33, 0xff, 0xa4, 0x67, 0x33, 0xff, 0xa0, 0x63, 0x2f, 0xff, 0xa6, 0x6c, 0x38, 0xff, 0xd4, 0x8c, 0x4e, 0xff, 0xe3, 0x96, 0x52, 0xff, 0xd4, 0x8f, 0x4f, 0xff, 0xde, 0x91, 0x56, 0xff, 0xe6, 0x97, 0x5c, 0xff, 0xe8, 0x99, 0x5d, 0xff, 0xee, 0x9f, 0x62, 0xff, 0xf0, 0xab, 0x70, 0xff, 0xf2, 0xc5, 0x7f, 0xff, 0xf0, 0xe3, 0x91, 0xff, 0xef, 0xee, 0xae, 0xff, 0xeb, 0xca, 0x9b, 0xff, 0xef, 0xc3, 0x8d, 0xff, 0xf1, 0xc8, 0x89, 0xff, 0xf3, 0xc3, 0x82, 0xff, 0xf1, 0xb7, 0x79, 0xff, 0xf1, 0xac, 0x6d, 0xff, 0xf3, 0xa7, 0x67, 0xff, 0xed, 0xa2, 0x63, 0xff, 0xdb, 0x97, 0x5c, 0xff, 0xcb, 0x8c, 0x54, 0xff, 0xc4, 0x86, 0x4d, 0xff, 0xbd, 0x7e, 0x47, 0xff, 0xb4, 0x75, 0x41, 0xff, 0xae, 0x6f, 0x3b, 0xff, 0xa9, 0x69, 0x37, 0xff, 0xae, 0x71, 0x3f, 0xff, 0xae, 0x6f, 0x3f, 0xff, 0xaa, 0x6b, 0x3a, 0xff, 0xa8, 0x6a, 0x36, 0xff, 0xa5, 0x68, 0x37, 0xff, 0xa2, 0x68, 0x3a, 0xff, 0x9f, 0x66, 0x39, 0xff, 0xa0, 0x65, 0x37, 0xff, 0x9d, 0x60, 0x34, 0xff, 0x98, 0x57, 0x2d, 0xff, 0x91, 0x52, 0x2b, 0xff, 0x8d, 0x4d, 0x2a, 0xff, 0x8a, 0x49, 0x27, 0xff, 0x87, 0x48, 0x27, 0xff, 0x89, 0x47, 0x27, 0xff, 0x86, 0x45, 0x26, 0xff, 0x83, 0x43, 0x25, 0xff, 0x81, 0x44, 0x25, 0xff, 0x80, 0x43, 0x26, 0xff, 0x7f, 0x40, 0x25, 0xff, 0x7d, 0x41, 0x23, 0xff, 0x7d, 0x3f, 0x21, 0xff, 0x7c, 0x3f, 0x1f, 0xff, 0x7c, 0x3e, 0x20, 0xff, 0x7b, 0x3e, 0x20, 0xff, 0x7b, 0x3d, 0x1f, 0xff, 0x79, 0x3b, 0x1f, 0xff, 0x77, 0x39, 0x1d, 0xff, 0x76, 0x3b, 0x1c, 0xff, 0x75, 0x3a, 0x1c, 0xff, 0x79, 0x3a, 0x20, 0xff, 0x79, 0x3d, 0x20, 0xff, 0x76, 0x3a, 0x1d, 0xff, 0x74, 0x37, 0x1a, 0xff, 0x72, 0x36, 0x1a, 0xff, 0x70, 0x36, 0x18, 0xff, 0x70, 0x36, 0x17, 0xff, 0x6d, 0x31, 0x14, 0xff, 0x6d, 0x33, 0x17, 0xff, 0x6e, 0x33, 0x14, 0xff, 0x6d, 0x34, 0x17, 0xff, 0x6d, 0x33, 0x14, 0xff, 0x6e, 0x33, 0x14, 0xff, 0x70, 0x34, 0x17, 0xff, 0x6e, 0x33, 0x14, 0xff, 0x6f, 0x33, 0x17, 0xff, 0x70, 0x35, 0x15, 0xff, 0x6d, 0x34, 0x17, 0xff, 0x6e, 0x34, 0x18, 0xff, 0x6c, 0x33, 0x15, 0xff, 0x69, 0x31, 0x12, 0xff, 0x69, 0x31, 0x11, 0xff, 0x6b, 0x32, 0x12, 0xff, 0x6d, 0x33, 0x13, 0xff, 0x70, 0x35, 0x17, 0xff, 0x71, 0x36, 0x1a, 0xff, 0x70, 0x36, 0x17, 0xff, 0x71, 0x34, 0x17, 0xff, 0x71, 0x34, 0x1a, 0xff, 0x72, 0x38, 0x1a, 0xff, 0x74, 0x37, 0x1a, 0xff, 0x74, 0x37, 0x1a, 0xff, 0x77, 0x39, 0x1c, 0xff, 0x77, 0x3b, 0x1c, 0xff, 0x79, 0x3c, 0x1f, 0xff, 0x79, 0x3c, 0x1f, 0xff, 0x7c, 0x3d, 0x20, 0xff, 0x7b, 0x3e, 0x22, 0xff, 0x7d, 0x3f, 0x21, 0xff, + 0x7d, 0x3f, 0x21, 0xff, 0x7e, 0x3f, 0x24, 0xff, 0x7f, 0x41, 0x24, 0xff, 0x81, 0x41, 0x25, 0xff, 0x81, 0x42, 0x25, 0xff, 0x82, 0x43, 0x27, 0xff, 0x85, 0x46, 0x28, 0xff, 0x86, 0x47, 0x29, 0xff, 0x89, 0x4b, 0x2a, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x8b, 0x4d, 0x2c, 0xff, 0x8e, 0x50, 0x2d, 0xff, 0x8d, 0x4e, 0x2c, 0xff, 0x8f, 0x51, 0x2e, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x95, 0x56, 0x30, 0xff, 0x98, 0x58, 0x33, 0xff, 0x99, 0x5c, 0x36, 0xff, 0x9e, 0x5e, 0x37, 0xff, 0xa3, 0x63, 0x38, 0xff, 0xa4, 0x66, 0x39, 0xff, 0xa4, 0x66, 0x39, 0xff, 0xa8, 0x69, 0x3d, 0xff, 0xa8, 0x69, 0x3e, 0xff, 0xaa, 0x6c, 0x3f, 0xff, 0xab, 0x6b, 0x40, 0xff, 0xab, 0x6b, 0x40, 0xff, 0xa8, 0x6b, 0x3f, 0xff, 0xac, 0x70, 0x44, 0xff, 0xad, 0x72, 0x45, 0xff, 0xb0, 0x73, 0x45, 0xff, 0xb3, 0x75, 0x48, 0xff, 0xc0, 0x83, 0x50, 0xff, 0xc8, 0x8b, 0x59, 0xff, 0xcd, 0x90, 0x59, 0xff, 0xd2, 0x92, 0x59, 0xff, 0xd7, 0x92, 0x5d, 0xff, 0xd1, 0x8f, 0x58, 0xff, 0xd6, 0x92, 0x5c, 0xff, 0xd3, 0x8e, 0x59, 0xff, 0xaa, 0x6f, 0x46, 0xff, 0x91, 0x53, 0x31, 0xff, 0x95, 0x58, 0x32, 0xff, 0x98, 0x5a, 0x34, 0xff, 0x93, 0x57, 0x31, 0xff, 0x8f, 0x53, 0x2e, 0xff, 0x8f, 0x53, 0x2f, 0xff, 0x8e, 0x53, 0x2e, 0xff, 0x8d, 0x53, 0x2e, 0xff, 0x8f, 0x54, 0x2e, 0xff, 0x91, 0x55, 0x30, 0xff, 0x92, 0x58, 0x33, 0xff, 0x94, 0x5c, 0x35, 0xff, 0x94, 0x5f, 0x38, 0xff, 0x97, 0x67, 0x41, 0xff, 0x99, 0x65, 0x48, 0xff, 0x98, 0x64, 0x4a, 0xff, 0x9a, 0x69, 0x4e, 0xff, 0x9b, 0x6a, 0x50, 0xff, 0x9b, 0x6a, 0x51, 0xff, 0x9b, 0x66, 0x47, 0xff, 0x9b, 0x65, 0x41, 0xff, 0x9b, 0x68, 0x44, 0xff, 0x9c, 0x6a, 0x43, 0xff, 0x9d, 0x6a, 0x3f, 0xff, 0x9d, 0x68, 0x3d, 0xff, 0x9c, 0x67, 0x39, 0xff, 0x9e, 0x67, 0x39, 0xff, 0xa0, 0x6a, 0x39, 0xff, 0xa4, 0x6d, 0x3c, 0xff, 0xa7, 0x6f, 0x3d, 0xff, 0xa9, 0x71, 0x3f, 0xff, 0xab, 0x72, 0x40, 0xff, 0xae, 0x70, 0x3e, 0xff, 0xb0, 0x73, 0x3f, 0xff, 0xb2, 0x77, 0x3e, 0xff, 0xb4, 0x7a, 0x41, 0xff, 0xb7, 0x7e, 0x45, 0xff, 0xb7, 0x84, 0x48, 0xff, 0xba, 0x87, 0x4b, 0xff, 0xbc, 0x8b, 0x4e, 0xff, 0xbe, 0x90, 0x51, 0xff, 0xc1, 0x95, 0x59, 0xff, 0xc4, 0x99, 0x5d, 0xff, 0xc3, 0x9c, 0x5e, 0xff, 0xc3, 0x9c, 0x5f, 0xff, 0xcb, 0xa3, 0x65, 0xff, 0xd8, 0xaa, 0x6a, 0xff, 0xe2, 0xaf, 0x6b, 0xff, 0xea, 0xb4, 0x6c, 0xff, 0xf0, 0xbc, 0x73, 0xff, 0xf0, 0xca, 0x78, 0xff, 0xeb, 0xdc, 0x82, 0xff, 0xe6, 0xe6, 0x8f, 0xff, 0xe7, 0xe7, 0x9c, 0xff, 0xeb, 0xe9, 0xaa, 0xff, 0xee, 0xe8, 0xb9, 0xff, 0xef, 0xe8, 0xc4, 0xff, 0xee, 0xe8, 0xbd, 0xff, 0xea, 0xe8, 0xad, 0xff, 0xe7, 0xe8, 0x99, 0xff, 0xe9, 0xe4, 0x82, 0xff, 0xf0, 0xd6, 0x7d, 0xff, 0xf1, 0xc1, 0x77, 0xff, 0xf0, 0xad, 0x67, 0xff, 0xf2, 0xa3, 0x5f, 0xff, 0xf2, 0xa0, 0x5b, 0xff, 0xf2, 0x9f, 0x5b, 0xff, 0xef, 0xa0, 0x5b, 0xff, 0xed, 0xa7, 0x61, 0xff, 0xf2, 0xb0, 0x6d, 0xff, 0xe8, 0xa5, 0x61, 0xff, 0xdd, 0x98, 0x52, 0xff, 0xde, 0x98, 0x53, 0xff, 0xde, 0x98, 0x55, 0xff, 0xdf, 0x99, 0x54, 0xff, 0xe0, 0x9c, 0x53, 0xff, 0xe3, 0x9c, 0x53, 0xff, 0xe5, 0x9c, 0x53, 0xff, 0xe8, 0x9e, 0x53, 0xff, 0xeb, 0x9e, 0x54, 0xff, 0xeb, 0x9b, 0x54, 0xff, 0xe7, 0x99, 0x53, 0xff, 0xe4, 0x99, 0x53, 0xff, 0xe2, 0x9b, 0x53, 0xff, 0xdc, 0x97, 0x51, 0xff, 0xd5, 0x91, 0x4f, 0xff, 0xcf, 0x90, 0x4f, 0xff, 0xc8, 0x8a, 0x4b, 0xff, 0xc1, 0x82, 0x48, 0xff, 0xbd, 0x80, 0x45, 0xff, 0xba, 0x7d, 0x42, 0xff, 0xb5, 0x78, 0x3f, 0xff, 0xb0, 0x74, 0x3b, 0xff, 0xad, 0x71, 0x38, 0xff, 0xaa, 0x6d, 0x37, 0xff, 0xa8, 0x6c, 0x35, 0xff, 0xa7, 0x69, 0x34, 0xff, 0x9b, 0x5c, 0x2c, 0xff, 0xbc, 0x7a, 0x42, 0xff, 0xe5, 0x97, 0x54, 0xff, 0xe2, 0x95, 0x56, 0xff, 0xe2, 0x97, 0x5b, 0xff, 0xed, 0x9a, 0x5e, 0xff, 0xee, 0x99, 0x5f, 0xff, 0xef, 0x9b, 0x60, 0xff, 0xf1, 0xa5, 0x66, 0xff, 0xf3, 0xb8, 0x75, 0xff, 0xf0, 0xd7, 0x89, 0xff, 0xeb, 0xeb, 0x9f, 0xff, 0xe7, 0xd9, 0xa2, 0xff, 0xf0, 0xca, 0x96, 0xff, 0xf3, 0xc9, 0x90, 0xff, 0xf3, 0xc8, 0x8a, 0xff, 0xf3, 0xc4, 0x80, 0xff, 0xf2, 0xb9, 0x78, 0xff, 0xf2, 0xb3, 0x6f, 0xff, 0xf3, 0xab, 0x69, 0xff, 0xe9, 0xa1, 0x65, 0xff, 0xde, 0x9a, 0x5f, 0xff, 0xd2, 0x91, 0x57, 0xff, 0xc8, 0x88, 0x4f, 0xff, 0xc0, 0x80, 0x4a, 0xff, 0xb8, 0x77, 0x44, 0xff, 0xb2, 0x73, 0x3f, 0xff, 0xab, 0x6c, 0x39, 0xff, 0xb2, 0x74, 0x41, 0xff, 0xb1, 0x72, 0x3f, 0xff, 0xad, 0x6c, 0x3b, 0xff, 0xa9, 0x6b, 0x38, 0xff, 0xa7, 0x6a, 0x38, 0xff, 0xa3, 0x67, 0x38, 0xff, 0x9f, 0x65, 0x37, 0xff, 0xa3, 0x63, 0x36, 0xff, 0x9f, 0x5d, 0x30, 0xff, 0x98, 0x57, 0x2d, 0xff, 0x90, 0x4e, 0x2a, 0xff, 0x8d, 0x4d, 0x28, 0xff, 0x8c, 0x4b, 0x29, 0xff, 0x8c, 0x4a, 0x28, 0xff, 0x89, 0x49, 0x28, 0xff, 0x86, 0x48, 0x26, 0xff, 0x85, 0x44, 0x27, 0xff, 0x83, 0x44, 0x26, 0xff, 0x82, 0x44, 0x25, 0xff, 0x81, 0x43, 0x25, 0xff, 0x7d, 0x3f, 0x24, 0xff, 0x7d, 0x3f, 0x21, 0xff, 0x7b, 0x3e, 0x21, 0xff, 0x7c, 0x3d, 0x20, 0xff, 0x7a, 0x3e, 0x1f, 0xff, 0x77, 0x3c, 0x1f, 0xff, 0x76, 0x3c, 0x1d, 0xff, 0x76, 0x3a, 0x1f, 0xff, 0x77, 0x3c, 0x20, 0xff, 0x7e, 0x41, 0x26, 0xff, 0x7a, 0x3f, 0x21, 0xff, 0x76, 0x3b, 0x1f, 0xff, 0x75, 0x39, 0x1c, 0xff, 0x73, 0x38, 0x1a, 0xff, 0x71, 0x36, 0x18, 0xff, 0x70, 0x35, 0x17, 0xff, 0x6e, 0x35, 0x17, 0xff, 0x6e, 0x34, 0x17, 0xff, 0x6e, 0x33, 0x17, 0xff, 0x6d, 0x31, 0x14, 0xff, 0x6e, 0x32, 0x14, 0xff, 0x6e, 0x33, 0x16, 0xff, 0x6c, 0x33, 0x17, 0xff, 0x6e, 0x32, 0x15, 0xff, 0x6f, 0x36, 0x17, 0xff, 0x6c, 0x33, 0x17, 0xff, 0x6d, 0x34, 0x17, 0xff, 0x6c, 0x32, 0x16, 0xff, 0x69, 0x31, 0x12, 0xff, 0x66, 0x30, 0x11, 0xff, 0x68, 0x31, 0x11, 0xff, 0x6a, 0x32, 0x14, 0xff, 0x6e, 0x32, 0x17, 0xff, 0x6e, 0x33, 0x17, 0xff, 0x6c, 0x33, 0x16, 0xff, 0x6d, 0x33, 0x17, 0xff, 0x6f, 0x35, 0x17, 0xff, 0x70, 0x34, 0x17, 0xff, 0x70, 0x35, 0x19, 0xff, 0x71, 0x37, 0x19, 0xff, 0x74, 0x36, 0x1a, 0xff, 0x74, 0x36, 0x1a, 0xff, 0x74, 0x38, 0x1b, 0xff, 0x76, 0x39, 0x1c, 0xff, 0x79, 0x3c, 0x1f, 0xff, 0x7a, 0x3c, 0x1f, 0xff, 0x7a, 0x3e, 0x1c, 0xff, 0x7c, 0x3d, 0x21, 0xff, + 0x7b, 0x3d, 0x1f, 0xff, 0x7d, 0x3f, 0x22, 0xff, 0x7e, 0x3e, 0x24, 0xff, 0x7f, 0x3f, 0x25, 0xff, 0x7e, 0x3f, 0x24, 0xff, 0x82, 0x43, 0x25, 0xff, 0x83, 0x45, 0x28, 0xff, 0x87, 0x46, 0x28, 0xff, 0x88, 0x48, 0x2a, 0xff, 0x88, 0x4b, 0x2b, 0xff, 0x89, 0x4b, 0x2a, 0xff, 0x8b, 0x4c, 0x2c, 0xff, 0x8d, 0x4d, 0x2c, 0xff, 0x8f, 0x4f, 0x2d, 0xff, 0x90, 0x52, 0x2f, 0xff, 0x93, 0x55, 0x30, 0xff, 0x96, 0x57, 0x33, 0xff, 0x96, 0x58, 0x34, 0xff, 0x9e, 0x5f, 0x36, 0xff, 0xa0, 0x61, 0x36, 0xff, 0xa1, 0x61, 0x36, 0xff, 0xa2, 0x63, 0x37, 0xff, 0xa4, 0x64, 0x39, 0xff, 0xa6, 0x67, 0x3a, 0xff, 0xa7, 0x69, 0x3c, 0xff, 0xa8, 0x69, 0x3e, 0xff, 0xac, 0x6d, 0x41, 0xff, 0xab, 0x6c, 0x42, 0xff, 0xa9, 0x6c, 0x43, 0xff, 0xac, 0x70, 0x43, 0xff, 0xaf, 0x71, 0x45, 0xff, 0xb4, 0x76, 0x48, 0xff, 0xc3, 0x89, 0x55, 0xff, 0xca, 0x8d, 0x58, 0xff, 0xcf, 0x92, 0x5b, 0xff, 0xd5, 0x94, 0x5d, 0xff, 0xd9, 0x95, 0x5e, 0xff, 0xd9, 0x94, 0x5e, 0xff, 0xdb, 0x95, 0x5e, 0xff, 0xde, 0x95, 0x5e, 0xff, 0x8e, 0x52, 0x2f, 0xff, 0x92, 0x54, 0x30, 0xff, 0x93, 0x55, 0x30, 0xff, 0x93, 0x54, 0x30, 0xff, 0x94, 0x56, 0x32, 0xff, 0x95, 0x58, 0x33, 0xff, 0x90, 0x53, 0x2e, 0xff, 0x8d, 0x52, 0x2d, 0xff, 0x8d, 0x51, 0x2d, 0xff, 0x8f, 0x52, 0x2d, 0xff, 0x8e, 0x52, 0x2e, 0xff, 0x92, 0x55, 0x31, 0xff, 0x94, 0x5c, 0x33, 0xff, 0x93, 0x5d, 0x35, 0xff, 0x94, 0x62, 0x3b, 0xff, 0x95, 0x63, 0x40, 0xff, 0x99, 0x66, 0x4a, 0xff, 0x9b, 0x69, 0x4f, 0xff, 0x9c, 0x69, 0x4f, 0xff, 0x9b, 0x6b, 0x52, 0xff, 0x9c, 0x6a, 0x50, 0xff, 0x9b, 0x66, 0x42, 0xff, 0x9b, 0x67, 0x43, 0xff, 0x9c, 0x69, 0x43, 0xff, 0x9a, 0x6a, 0x3f, 0xff, 0x9c, 0x67, 0x3c, 0xff, 0x9c, 0x66, 0x37, 0xff, 0x9e, 0x65, 0x36, 0xff, 0xa1, 0x66, 0x36, 0xff, 0xa3, 0x68, 0x38, 0xff, 0xa5, 0x6c, 0x3b, 0xff, 0xa8, 0x70, 0x3d, 0xff, 0xaa, 0x71, 0x3e, 0xff, 0xac, 0x71, 0x3e, 0xff, 0xaf, 0x73, 0x3f, 0xff, 0xb1, 0x77, 0x41, 0xff, 0xb4, 0x7b, 0x42, 0xff, 0xb6, 0x7e, 0x44, 0xff, 0xb8, 0x84, 0x49, 0xff, 0xba, 0x86, 0x4c, 0xff, 0xbc, 0x8c, 0x4f, 0xff, 0xbd, 0x92, 0x54, 0xff, 0xbe, 0x94, 0x58, 0xff, 0xbf, 0x97, 0x59, 0xff, 0xc1, 0x9a, 0x5f, 0xff, 0xc3, 0x9c, 0x62, 0xff, 0xc8, 0xa0, 0x65, 0xff, 0xd2, 0xa6, 0x6c, 0xff, 0xde, 0xac, 0x70, 0xff, 0xe8, 0xb0, 0x72, 0xff, 0xef, 0xba, 0x75, 0xff, 0xf2, 0xcc, 0x7b, 0xff, 0xef, 0xdd, 0x80, 0xff, 0xe8, 0xe7, 0x8a, 0xff, 0xe5, 0xe7, 0x97, 0xff, 0xe8, 0xe7, 0xa3, 0xff, 0xec, 0xe8, 0xad, 0xff, 0xec, 0xe8, 0xb3, 0xff, 0xeb, 0xe8, 0xb2, 0xff, 0xe9, 0xe9, 0xa9, 0xff, 0xe6, 0xe9, 0x99, 0xff, 0xe7, 0xe3, 0x85, 0xff, 0xee, 0xd8, 0x7d, 0xff, 0xf2, 0xc7, 0x79, 0xff, 0xf1, 0xb2, 0x6b, 0xff, 0xf1, 0xa9, 0x62, 0xff, 0xf1, 0xa1, 0x5e, 0xff, 0xf2, 0xa0, 0x5c, 0xff, 0xf2, 0x9e, 0x5a, 0xff, 0xef, 0xa1, 0x5d, 0xff, 0xf0, 0xac, 0x67, 0xff, 0xec, 0xaa, 0x63, 0xff, 0xe4, 0x9c, 0x53, 0xff, 0xe4, 0x99, 0x52, 0xff, 0xe3, 0x9b, 0x53, 0xff, 0xe5, 0x9d, 0x55, 0xff, 0xe7, 0x9e, 0x58, 0xff, 0xec, 0xa1, 0x57, 0xff, 0xf0, 0xa3, 0x57, 0xff, 0xf1, 0xa3, 0x59, 0xff, 0xf0, 0xa3, 0x5a, 0xff, 0xf1, 0xa5, 0x5a, 0xff, 0xf1, 0xa6, 0x5c, 0xff, 0xef, 0xa4, 0x5d, 0xff, 0xef, 0xa3, 0x5b, 0xff, 0xee, 0xa2, 0x5c, 0xff, 0xea, 0x9d, 0x5a, 0xff, 0xe1, 0x99, 0x56, 0xff, 0xd9, 0x96, 0x55, 0xff, 0xd1, 0x91, 0x50, 0xff, 0xc8, 0x8c, 0x4d, 0xff, 0xc1, 0x85, 0x49, 0xff, 0xbc, 0x81, 0x47, 0xff, 0xb8, 0x7d, 0x42, 0xff, 0xb4, 0x78, 0x3e, 0xff, 0xaf, 0x73, 0x3b, 0xff, 0xaa, 0x6e, 0x38, 0xff, 0xa8, 0x6c, 0x36, 0xff, 0xa7, 0x6b, 0x34, 0xff, 0x9f, 0x67, 0x32, 0xff, 0xcb, 0x87, 0x4a, 0xff, 0xec, 0x9b, 0x5d, 0xff, 0xeb, 0x9a, 0x60, 0xff, 0xef, 0x9d, 0x63, 0xff, 0xf0, 0x9d, 0x62, 0xff, 0xef, 0x9c, 0x61, 0xff, 0xf1, 0xa1, 0x62, 0xff, 0xf0, 0xac, 0x6c, 0xff, 0xf0, 0xc0, 0x7a, 0xff, 0xec, 0xe0, 0x8e, 0xff, 0xed, 0xeb, 0xa6, 0xff, 0xf0, 0xcd, 0x94, 0xff, 0xf2, 0xc6, 0x8f, 0xff, 0xf2, 0xca, 0x90, 0xff, 0xf3, 0xc8, 0x87, 0xff, 0xf2, 0xc8, 0x7e, 0xff, 0xf2, 0xc0, 0x78, 0xff, 0xf2, 0xb2, 0x70, 0xff, 0xf2, 0xa7, 0x6c, 0xff, 0xee, 0xa2, 0x69, 0xff, 0xe2, 0x9a, 0x62, 0xff, 0xd4, 0x94, 0x5a, 0xff, 0xcb, 0x8b, 0x52, 0xff, 0xc2, 0x82, 0x4c, 0xff, 0xba, 0x7a, 0x46, 0xff, 0xb2, 0x73, 0x42, 0xff, 0xb3, 0x73, 0x41, 0xff, 0xb6, 0x78, 0x45, 0xff, 0xb4, 0x76, 0x43, 0xff, 0xb0, 0x70, 0x3f, 0xff, 0xac, 0x6e, 0x3b, 0xff, 0xa8, 0x6b, 0x3b, 0xff, 0xa5, 0x67, 0x39, 0xff, 0xa3, 0x66, 0x36, 0xff, 0xa2, 0x63, 0x35, 0xff, 0x9c, 0x5c, 0x30, 0xff, 0x9a, 0x57, 0x2d, 0xff, 0x96, 0x54, 0x2a, 0xff, 0x90, 0x4f, 0x29, 0xff, 0x8b, 0x49, 0x27, 0xff, 0x88, 0x48, 0x27, 0xff, 0x85, 0x47, 0x26, 0xff, 0x85, 0x46, 0x26, 0xff, 0x84, 0x45, 0x26, 0xff, 0x82, 0x44, 0x26, 0xff, 0x81, 0x45, 0x26, 0xff, 0x7f, 0x41, 0x25, 0xff, 0x7d, 0x3f, 0x22, 0xff, 0x7b, 0x3e, 0x22, 0xff, 0x7a, 0x3e, 0x20, 0xff, 0x77, 0x3b, 0x20, 0xff, 0x77, 0x3c, 0x1f, 0xff, 0x77, 0x3b, 0x20, 0xff, 0x77, 0x3c, 0x1f, 0xff, 0x7f, 0x42, 0x28, 0xff, 0x7e, 0x42, 0x28, 0xff, 0x7b, 0x3f, 0x25, 0xff, 0x79, 0x3d, 0x21, 0xff, 0x76, 0x3b, 0x1d, 0xff, 0x74, 0x38, 0x1c, 0xff, 0x73, 0x37, 0x1b, 0xff, 0x70, 0x36, 0x18, 0xff, 0x70, 0x34, 0x18, 0xff, 0x70, 0x35, 0x17, 0xff, 0x6d, 0x33, 0x17, 0xff, 0x6c, 0x33, 0x15, 0xff, 0x6c, 0x33, 0x15, 0xff, 0x6c, 0x33, 0x16, 0xff, 0x6d, 0x33, 0x16, 0xff, 0x6e, 0x32, 0x16, 0xff, 0x6c, 0x33, 0x14, 0xff, 0x6b, 0x33, 0x17, 0xff, 0x6c, 0x33, 0x17, 0xff, 0x6c, 0x32, 0x15, 0xff, 0x66, 0x2e, 0x11, 0xff, 0x69, 0x2f, 0x10, 0xff, 0x67, 0x31, 0x15, 0xff, 0x6a, 0x33, 0x15, 0xff, 0x6a, 0x2f, 0x11, 0xff, 0x6b, 0x33, 0x14, 0xff, 0x6b, 0x33, 0x14, 0xff, 0x6c, 0x32, 0x13, 0xff, 0x6d, 0x33, 0x17, 0xff, 0x6f, 0x34, 0x14, 0xff, 0x6f, 0x33, 0x17, 0xff, 0x70, 0x36, 0x18, 0xff, 0x70, 0x35, 0x19, 0xff, 0x71, 0x37, 0x1a, 0xff, 0x72, 0x38, 0x1a, 0xff, 0x74, 0x39, 0x1b, 0xff, 0x76, 0x3a, 0x1b, 0xff, 0x76, 0x39, 0x1c, 0xff, 0x77, 0x3a, 0x1c, 0xff, 0x77, 0x3b, 0x1d, 0xff, + 0x78, 0x3c, 0x1d, 0xff, 0x7a, 0x3c, 0x1f, 0xff, 0x7c, 0x3e, 0x23, 0xff, 0x7e, 0x3f, 0x24, 0xff, 0x7e, 0x3f, 0x24, 0xff, 0x7f, 0x42, 0x25, 0xff, 0x81, 0x42, 0x27, 0xff, 0x83, 0x46, 0x28, 0xff, 0x87, 0x47, 0x29, 0xff, 0x88, 0x49, 0x2a, 0xff, 0x89, 0x49, 0x2b, 0xff, 0x8a, 0x4b, 0x2a, 0xff, 0x8c, 0x4b, 0x2b, 0xff, 0x8d, 0x4d, 0x2d, 0xff, 0x8f, 0x51, 0x2d, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x93, 0x55, 0x31, 0xff, 0x93, 0x55, 0x34, 0xff, 0x99, 0x59, 0x32, 0xff, 0x9f, 0x5f, 0x35, 0xff, 0xa0, 0x61, 0x35, 0xff, 0xa2, 0x61, 0x37, 0xff, 0xa3, 0x63, 0x38, 0xff, 0xa4, 0x65, 0x39, 0xff, 0xa6, 0x67, 0x3b, 0xff, 0xa8, 0x67, 0x3d, 0xff, 0xab, 0x6b, 0x3f, 0xff, 0xac, 0x6e, 0x43, 0xff, 0xae, 0x70, 0x44, 0xff, 0xac, 0x6e, 0x43, 0xff, 0xad, 0x70, 0x44, 0xff, 0xb9, 0x7e, 0x4f, 0xff, 0xc3, 0x87, 0x55, 0xff, 0xc9, 0x8e, 0x5a, 0xff, 0xcd, 0x93, 0x5c, 0xff, 0xd3, 0x97, 0x60, 0xff, 0xd9, 0x99, 0x62, 0xff, 0xe0, 0x99, 0x62, 0xff, 0xe2, 0x9a, 0x61, 0xff, 0xc7, 0x89, 0x55, 0xff, 0x8a, 0x4b, 0x2b, 0xff, 0x92, 0x54, 0x31, 0xff, 0x91, 0x53, 0x30, 0xff, 0x93, 0x55, 0x2f, 0xff, 0x93, 0x56, 0x30, 0xff, 0x93, 0x56, 0x30, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x90, 0x55, 0x2e, 0xff, 0x8d, 0x52, 0x2c, 0xff, 0x8c, 0x51, 0x2c, 0xff, 0x8e, 0x51, 0x2d, 0xff, 0x8e, 0x53, 0x2e, 0xff, 0x90, 0x56, 0x30, 0xff, 0x92, 0x5a, 0x33, 0xff, 0x92, 0x5d, 0x35, 0xff, 0x93, 0x61, 0x3c, 0xff, 0x94, 0x63, 0x42, 0xff, 0x98, 0x67, 0x4c, 0xff, 0x9b, 0x6b, 0x50, 0xff, 0x9a, 0x6b, 0x51, 0xff, 0x9b, 0x6b, 0x51, 0xff, 0x9d, 0x69, 0x4c, 0xff, 0x9b, 0x64, 0x40, 0xff, 0x9c, 0x68, 0x43, 0xff, 0x9b, 0x6b, 0x40, 0xff, 0x9d, 0x6a, 0x3d, 0xff, 0x9c, 0x67, 0x38, 0xff, 0x9c, 0x65, 0x36, 0xff, 0x9f, 0x65, 0x36, 0xff, 0xa1, 0x66, 0x36, 0xff, 0xa4, 0x6b, 0x38, 0xff, 0xa6, 0x6e, 0x3a, 0xff, 0xa9, 0x70, 0x3e, 0xff, 0xab, 0x70, 0x3d, 0xff, 0xad, 0x71, 0x3c, 0xff, 0xb0, 0x76, 0x3e, 0xff, 0xb3, 0x7a, 0x3f, 0xff, 0xb5, 0x7e, 0x45, 0xff, 0xb7, 0x82, 0x49, 0xff, 0xb9, 0x87, 0x4d, 0xff, 0xba, 0x8c, 0x50, 0xff, 0xbb, 0x91, 0x54, 0xff, 0xbd, 0x94, 0x57, 0xff, 0xbf, 0x97, 0x5b, 0xff, 0xc1, 0x99, 0x60, 0xff, 0xc3, 0x9b, 0x64, 0xff, 0xc6, 0x9d, 0x68, 0xff, 0xcf, 0xa2, 0x70, 0xff, 0xda, 0xaa, 0x76, 0xff, 0xe0, 0xad, 0x76, 0xff, 0xec, 0xb4, 0x79, 0xff, 0xf3, 0xc2, 0x7e, 0xff, 0xf2, 0xd6, 0x83, 0xff, 0xec, 0xe7, 0x88, 0xff, 0xe2, 0xe8, 0x90, 0xff, 0xe6, 0xe8, 0x9a, 0xff, 0xea, 0xe9, 0xa4, 0xff, 0xe9, 0xe9, 0xa7, 0xff, 0xea, 0xe9, 0xa7, 0xff, 0xe8, 0xe8, 0xa1, 0xff, 0xe6, 0xe8, 0x93, 0xff, 0xea, 0xe2, 0x85, 0xff, 0xf2, 0xd7, 0x7a, 0xff, 0xf2, 0xca, 0x79, 0xff, 0xf0, 0xb6, 0x70, 0xff, 0xf0, 0xab, 0x65, 0xff, 0xf2, 0xa7, 0x60, 0xff, 0xf2, 0xa2, 0x5d, 0xff, 0xf1, 0xa0, 0x5c, 0xff, 0xf2, 0xa0, 0x5c, 0xff, 0xef, 0xa1, 0x5e, 0xff, 0xee, 0xaa, 0x66, 0xff, 0xeb, 0xa3, 0x5b, 0xff, 0xe6, 0x98, 0x4c, 0xff, 0xe8, 0x9f, 0x52, 0xff, 0xeb, 0xa1, 0x55, 0xff, 0xef, 0xa2, 0x58, 0xff, 0xf1, 0xa6, 0x5a, 0xff, 0xf2, 0xa8, 0x5b, 0xff, 0xf0, 0xa8, 0x5c, 0xff, 0xf0, 0xa8, 0x5f, 0xff, 0xf1, 0xac, 0x62, 0xff, 0xf2, 0xaf, 0x63, 0xff, 0xf2, 0xaf, 0x64, 0xff, 0xf0, 0xaf, 0x64, 0xff, 0xf1, 0xae, 0x65, 0xff, 0xf1, 0xaa, 0x65, 0xff, 0xef, 0xa5, 0x61, 0xff, 0xee, 0xa2, 0x5e, 0xff, 0xe9, 0xa1, 0x5c, 0xff, 0xdd, 0x9a, 0x58, 0xff, 0xd1, 0x91, 0x53, 0xff, 0xc7, 0x8c, 0x50, 0xff, 0xbf, 0x85, 0x4a, 0xff, 0xba, 0x7f, 0x45, 0xff, 0xb6, 0x7a, 0x42, 0xff, 0xb1, 0x75, 0x3e, 0xff, 0xad, 0x71, 0x3a, 0xff, 0xaa, 0x6f, 0x38, 0xff, 0xa6, 0x69, 0x34, 0xff, 0xa8, 0x6c, 0x37, 0xff, 0xd9, 0x90, 0x58, 0xff, 0xf2, 0xa1, 0x67, 0xff, 0xf0, 0xa2, 0x65, 0xff, 0xf1, 0xa1, 0x65, 0xff, 0xf0, 0x9e, 0x63, 0xff, 0xf0, 0x9f, 0x62, 0xff, 0xf1, 0xa4, 0x65, 0xff, 0xf1, 0xae, 0x6c, 0xff, 0xf1, 0xc8, 0x7d, 0xff, 0xee, 0xe7, 0x95, 0xff, 0xef, 0xd0, 0x8d, 0xff, 0xf3, 0xc7, 0x88, 0xff, 0xf3, 0xcc, 0x8d, 0xff, 0xf2, 0xca, 0x8b, 0xff, 0xf2, 0xce, 0x84, 0xff, 0xf3, 0xc6, 0x7c, 0xff, 0xf2, 0xbc, 0x76, 0xff, 0xf1, 0xb3, 0x75, 0xff, 0xf2, 0xab, 0x70, 0xff, 0xec, 0xa2, 0x69, 0xff, 0xe2, 0x9b, 0x61, 0xff, 0xd7, 0x95, 0x5a, 0xff, 0xce, 0x8d, 0x54, 0xff, 0xc5, 0x85, 0x4f, 0xff, 0xbd, 0x7f, 0x4a, 0xff, 0xba, 0x7b, 0x47, 0xff, 0xb9, 0x7a, 0x48, 0xff, 0xba, 0x7d, 0x4a, 0xff, 0xb6, 0x79, 0x45, 0xff, 0xb2, 0x76, 0x43, 0xff, 0xad, 0x71, 0x3f, 0xff, 0xa9, 0x6c, 0x3c, 0xff, 0xa7, 0x69, 0x39, 0xff, 0xa7, 0x69, 0x39, 0xff, 0xa4, 0x64, 0x35, 0xff, 0x9e, 0x5e, 0x31, 0xff, 0x9a, 0x59, 0x2e, 0xff, 0x94, 0x55, 0x2b, 0xff, 0x90, 0x4f, 0x29, 0xff, 0x8e, 0x4b, 0x28, 0xff, 0x8a, 0x49, 0x27, 0xff, 0x87, 0x48, 0x26, 0xff, 0x83, 0x45, 0x26, 0xff, 0x83, 0x46, 0x26, 0xff, 0x81, 0x44, 0x26, 0xff, 0x7f, 0x43, 0x27, 0xff, 0x7f, 0x41, 0x25, 0xff, 0x7d, 0x3f, 0x23, 0xff, 0x79, 0x3d, 0x20, 0xff, 0x78, 0x3b, 0x21, 0xff, 0x77, 0x3d, 0x20, 0xff, 0x77, 0x3b, 0x20, 0xff, 0x7e, 0x44, 0x27, 0xff, 0x82, 0x46, 0x2a, 0xff, 0x80, 0x44, 0x28, 0xff, 0x7d, 0x40, 0x26, 0xff, 0x7a, 0x40, 0x21, 0xff, 0x79, 0x3e, 0x20, 0xff, 0x77, 0x3b, 0x1d, 0xff, 0x75, 0x37, 0x1a, 0xff, 0x71, 0x38, 0x1a, 0xff, 0x71, 0x35, 0x19, 0xff, 0x70, 0x35, 0x17, 0xff, 0x6e, 0x33, 0x17, 0xff, 0x6c, 0x33, 0x17, 0xff, 0x6d, 0x33, 0x16, 0xff, 0x6d, 0x33, 0x16, 0xff, 0x6a, 0x32, 0x14, 0xff, 0x6d, 0x33, 0x14, 0xff, 0x6c, 0x33, 0x16, 0xff, 0x6b, 0x33, 0x17, 0xff, 0x6e, 0x33, 0x17, 0xff, 0x67, 0x2f, 0x11, 0xff, 0x6a, 0x31, 0x13, 0xff, 0x69, 0x31, 0x12, 0xff, 0x68, 0x31, 0x12, 0xff, 0x68, 0x31, 0x11, 0xff, 0x68, 0x31, 0x11, 0xff, 0x68, 0x2e, 0x12, 0xff, 0x69, 0x2e, 0x12, 0xff, 0x69, 0x31, 0x13, 0xff, 0x6b, 0x30, 0x15, 0xff, 0x6d, 0x33, 0x16, 0xff, 0x6e, 0x32, 0x14, 0xff, 0x70, 0x34, 0x16, 0xff, 0x71, 0x35, 0x19, 0xff, 0x71, 0x36, 0x1a, 0xff, 0x71, 0x35, 0x1a, 0xff, 0x74, 0x37, 0x1a, 0xff, 0x75, 0x39, 0x1a, 0xff, 0x75, 0x38, 0x1b, 0xff, 0x75, 0x39, 0x1b, 0xff, 0x77, 0x3a, 0x1c, 0xff, + 0x76, 0x3a, 0x1c, 0xff, 0x78, 0x3d, 0x1d, 0xff, 0x7a, 0x3c, 0x20, 0xff, 0x7b, 0x3c, 0x21, 0xff, 0x7d, 0x3e, 0x24, 0xff, 0x7e, 0x3f, 0x24, 0xff, 0x7e, 0x41, 0x25, 0xff, 0x83, 0x43, 0x27, 0xff, 0x84, 0x44, 0x28, 0xff, 0x85, 0x45, 0x28, 0xff, 0x89, 0x4a, 0x29, 0xff, 0x88, 0x49, 0x29, 0xff, 0x89, 0x4b, 0x2b, 0xff, 0x89, 0x4b, 0x2b, 0xff, 0x8a, 0x4a, 0x2b, 0xff, 0x8d, 0x4e, 0x2e, 0xff, 0x8f, 0x53, 0x31, 0xff, 0x92, 0x54, 0x30, 0xff, 0x96, 0x56, 0x30, 0xff, 0x98, 0x59, 0x32, 0xff, 0x9f, 0x60, 0x35, 0xff, 0xa2, 0x61, 0x37, 0xff, 0xa2, 0x61, 0x36, 0xff, 0xa3, 0x64, 0x39, 0xff, 0xa6, 0x65, 0x39, 0xff, 0xa7, 0x67, 0x3d, 0xff, 0xaa, 0x6b, 0x3f, 0xff, 0xac, 0x6d, 0x41, 0xff, 0xae, 0x70, 0x43, 0xff, 0xb3, 0x73, 0x45, 0xff, 0xb0, 0x71, 0x44, 0xff, 0xbc, 0x80, 0x51, 0xff, 0xc2, 0x89, 0x55, 0xff, 0xc5, 0x8b, 0x5a, 0xff, 0xcc, 0x94, 0x5d, 0xff, 0xd1, 0x97, 0x61, 0xff, 0xd4, 0x9b, 0x64, 0xff, 0xdd, 0xa0, 0x67, 0xff, 0xe0, 0x9e, 0x66, 0xff, 0xa8, 0x6e, 0x43, 0xff, 0x91, 0x52, 0x30, 0xff, 0x94, 0x56, 0x31, 0xff, 0x93, 0x54, 0x30, 0xff, 0x93, 0x54, 0x30, 0xff, 0x94, 0x56, 0x30, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x94, 0x53, 0x2f, 0xff, 0x94, 0x55, 0x31, 0xff, 0x91, 0x53, 0x2e, 0xff, 0x91, 0x54, 0x2e, 0xff, 0x94, 0x56, 0x2f, 0xff, 0x95, 0x59, 0x31, 0xff, 0x94, 0x5c, 0x33, 0xff, 0x94, 0x5d, 0x36, 0xff, 0x93, 0x5f, 0x39, 0xff, 0x97, 0x66, 0x41, 0xff, 0x98, 0x66, 0x49, 0xff, 0x98, 0x65, 0x4d, 0xff, 0x99, 0x68, 0x4f, 0xff, 0x9b, 0x6c, 0x51, 0xff, 0x9b, 0x6d, 0x52, 0xff, 0x9d, 0x6b, 0x4c, 0xff, 0x9b, 0x67, 0x42, 0xff, 0x9c, 0x6a, 0x42, 0xff, 0x9d, 0x6c, 0x40, 0xff, 0x9c, 0x68, 0x3c, 0xff, 0x9c, 0x66, 0x38, 0xff, 0x9c, 0x66, 0x36, 0xff, 0x9f, 0x69, 0x38, 0xff, 0xa2, 0x6b, 0x37, 0xff, 0xa4, 0x6e, 0x3a, 0xff, 0xa7, 0x70, 0x3e, 0xff, 0xaa, 0x70, 0x3d, 0xff, 0xac, 0x70, 0x3a, 0xff, 0xae, 0x74, 0x3e, 0xff, 0xb1, 0x79, 0x42, 0xff, 0xb3, 0x7c, 0x43, 0xff, 0xb5, 0x81, 0x45, 0xff, 0xb7, 0x85, 0x4b, 0xff, 0xb8, 0x8b, 0x50, 0xff, 0xba, 0x90, 0x55, 0xff, 0xbd, 0x94, 0x59, 0xff, 0xbf, 0x95, 0x5b, 0xff, 0xc1, 0x98, 0x66, 0xff, 0xc2, 0x98, 0x6a, 0xff, 0xc4, 0x9a, 0x6e, 0xff, 0xcb, 0xa1, 0x76, 0xff, 0xd6, 0xa5, 0x7b, 0xff, 0xde, 0xa9, 0x7d, 0xff, 0xe7, 0xaf, 0x80, 0xff, 0xf0, 0xb6, 0x83, 0xff, 0xf2, 0xc6, 0x87, 0xff, 0xf2, 0xda, 0x8a, 0xff, 0xea, 0xe6, 0x8f, 0xff, 0xe5, 0xe7, 0x95, 0xff, 0xe6, 0xe7, 0x99, 0xff, 0xe7, 0xe8, 0x9d, 0xff, 0xe7, 0xe8, 0xa1, 0xff, 0xe5, 0xe7, 0x98, 0xff, 0xe6, 0xea, 0x8f, 0xff, 0xeb, 0xe1, 0x82, 0xff, 0xef, 0xcf, 0x73, 0xff, 0xef, 0xc4, 0x74, 0xff, 0xf2, 0xbb, 0x73, 0xff, 0xf2, 0xb1, 0x69, 0xff, 0xf0, 0xad, 0x65, 0xff, 0xf0, 0xa8, 0x62, 0xff, 0xf2, 0xa3, 0x5e, 0xff, 0xf1, 0xa1, 0x5d, 0xff, 0xf2, 0xa1, 0x5e, 0xff, 0xf0, 0xa4, 0x61, 0xff, 0xed, 0xa1, 0x5b, 0xff, 0xed, 0x9d, 0x50, 0xff, 0xee, 0x9e, 0x51, 0xff, 0xee, 0xa1, 0x54, 0xff, 0xf1, 0xa5, 0x58, 0xff, 0xf2, 0xa8, 0x58, 0xff, 0xf2, 0xa8, 0x5c, 0xff, 0xf0, 0xac, 0x60, 0xff, 0xef, 0xae, 0x63, 0xff, 0xf0, 0xb3, 0x69, 0xff, 0xef, 0xb8, 0x6d, 0xff, 0xf0, 0xbb, 0x6d, 0xff, 0xf1, 0xbd, 0x6f, 0xff, 0xf2, 0xbe, 0x70, 0xff, 0xf0, 0xb9, 0x6d, 0xff, 0xef, 0xb4, 0x6b, 0xff, 0xf0, 0xb2, 0x6b, 0xff, 0xf1, 0xac, 0x67, 0xff, 0xf2, 0xa7, 0x63, 0xff, 0xe7, 0x9d, 0x5c, 0xff, 0xd7, 0x95, 0x56, 0xff, 0xce, 0x90, 0x53, 0xff, 0xc5, 0x8a, 0x4f, 0xff, 0xbd, 0x83, 0x49, 0xff, 0xb7, 0x7c, 0x43, 0xff, 0xb2, 0x78, 0x3f, 0xff, 0xaf, 0x76, 0x3d, 0xff, 0xac, 0x72, 0x3a, 0xff, 0xa7, 0x6b, 0x35, 0xff, 0xb0, 0x72, 0x3c, 0xff, 0xde, 0x97, 0x5c, 0xff, 0xf4, 0xac, 0x6d, 0xff, 0xf1, 0xa7, 0x69, 0xff, 0xf1, 0xa4, 0x64, 0xff, 0xf2, 0xa2, 0x63, 0xff, 0xf1, 0x9e, 0x5f, 0xff, 0xf1, 0xa5, 0x63, 0xff, 0xf2, 0xaf, 0x6e, 0xff, 0xf0, 0xc5, 0x80, 0xff, 0xef, 0xc4, 0x7f, 0xff, 0xf2, 0xca, 0x82, 0xff, 0xf3, 0xcf, 0x87, 0xff, 0xf2, 0xce, 0x87, 0xff, 0xf2, 0xd1, 0x84, 0xff, 0xf1, 0xc2, 0x7c, 0xff, 0xef, 0xb5, 0x74, 0xff, 0xef, 0xab, 0x6c, 0xff, 0xf1, 0xa3, 0x65, 0xff, 0xf1, 0x9d, 0x63, 0xff, 0xec, 0x9e, 0x5f, 0xff, 0xe4, 0x9b, 0x5d, 0xff, 0xdd, 0x95, 0x5b, 0xff, 0xd5, 0x8f, 0x55, 0xff, 0xcb, 0x89, 0x52, 0xff, 0xc4, 0x84, 0x4f, 0xff, 0xc3, 0x85, 0x50, 0xff, 0xbd, 0x7f, 0x4b, 0xff, 0xbe, 0x81, 0x4f, 0xff, 0xba, 0x7d, 0x4b, 0xff, 0xb7, 0x7a, 0x48, 0xff, 0xb3, 0x75, 0x44, 0xff, 0xae, 0x70, 0x40, 0xff, 0xac, 0x6e, 0x3e, 0xff, 0xa9, 0x6c, 0x3b, 0xff, 0xa4, 0x65, 0x36, 0xff, 0x9f, 0x60, 0x33, 0xff, 0x99, 0x5a, 0x2f, 0xff, 0x95, 0x54, 0x2c, 0xff, 0x90, 0x51, 0x2a, 0xff, 0x8d, 0x4d, 0x29, 0xff, 0x8b, 0x4a, 0x28, 0xff, 0x88, 0x48, 0x27, 0xff, 0x85, 0x48, 0x27, 0xff, 0x85, 0x48, 0x28, 0xff, 0x85, 0x47, 0x27, 0xff, 0x7e, 0x42, 0x25, 0xff, 0x7c, 0x3f, 0x24, 0xff, 0x7a, 0x3e, 0x22, 0xff, 0x7a, 0x3d, 0x21, 0xff, 0x7a, 0x3d, 0x23, 0xff, 0x7d, 0x44, 0x25, 0xff, 0x81, 0x4b, 0x2a, 0xff, 0x83, 0x49, 0x2a, 0xff, 0x82, 0x46, 0x29, 0xff, 0x7e, 0x43, 0x28, 0xff, 0x7e, 0x3f, 0x25, 0xff, 0x7b, 0x3e, 0x20, 0xff, 0x78, 0x3c, 0x1f, 0xff, 0x75, 0x39, 0x1d, 0xff, 0x74, 0x37, 0x1a, 0xff, 0x6f, 0x36, 0x19, 0xff, 0x70, 0x35, 0x17, 0xff, 0x70, 0x33, 0x17, 0xff, 0x6f, 0x34, 0x17, 0xff, 0x6d, 0x33, 0x17, 0xff, 0x6b, 0x32, 0x14, 0xff, 0x6b, 0x32, 0x14, 0xff, 0x6c, 0x32, 0x14, 0xff, 0x6d, 0x32, 0x14, 0xff, 0x6c, 0x33, 0x14, 0xff, 0x6b, 0x30, 0x11, 0xff, 0x69, 0x32, 0x15, 0xff, 0x68, 0x30, 0x11, 0xff, 0x68, 0x31, 0x11, 0xff, 0x68, 0x31, 0x11, 0xff, 0x67, 0x30, 0x11, 0xff, 0x67, 0x30, 0x11, 0xff, 0x66, 0x2e, 0x11, 0xff, 0x66, 0x2e, 0x11, 0xff, 0x66, 0x2f, 0x11, 0xff, 0x68, 0x31, 0x11, 0xff, 0x6a, 0x2e, 0x11, 0xff, 0x6b, 0x30, 0x12, 0xff, 0x6c, 0x33, 0x16, 0xff, 0x6e, 0x32, 0x14, 0xff, 0x6e, 0x34, 0x17, 0xff, 0x71, 0x36, 0x18, 0xff, 0x70, 0x34, 0x1a, 0xff, 0x72, 0x37, 0x1a, 0xff, 0x71, 0x36, 0x1a, 0xff, 0x74, 0x37, 0x1a, 0xff, 0x76, 0x39, 0x1c, 0xff, + 0x75, 0x39, 0x1b, 0xff, 0x77, 0x3a, 0x1d, 0xff, 0x79, 0x3b, 0x1f, 0xff, 0x7a, 0x3c, 0x20, 0xff, 0x7b, 0x3c, 0x21, 0xff, 0x7c, 0x3e, 0x23, 0xff, 0x7e, 0x3e, 0x24, 0xff, 0x7f, 0x42, 0x27, 0xff, 0x82, 0x43, 0x28, 0xff, 0x83, 0x44, 0x28, 0xff, 0x83, 0x45, 0x28, 0xff, 0x84, 0x46, 0x28, 0xff, 0x87, 0x49, 0x29, 0xff, 0x88, 0x4a, 0x2a, 0xff, 0x88, 0x4b, 0x2b, 0xff, 0x8d, 0x4e, 0x2e, 0xff, 0x8e, 0x51, 0x31, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x96, 0x56, 0x31, 0xff, 0x98, 0x58, 0x32, 0xff, 0x9e, 0x5f, 0x35, 0xff, 0xa3, 0x64, 0x38, 0xff, 0xa4, 0x65, 0x38, 0xff, 0xa5, 0x66, 0x3a, 0xff, 0xa7, 0x66, 0x3c, 0xff, 0xa8, 0x69, 0x3e, 0xff, 0xaa, 0x6c, 0x40, 0xff, 0xac, 0x6c, 0x40, 0xff, 0xb3, 0x73, 0x44, 0xff, 0xc0, 0x81, 0x4f, 0xff, 0xc2, 0x86, 0x57, 0xff, 0xc0, 0x85, 0x54, 0xff, 0xc3, 0x8c, 0x5a, 0xff, 0xc8, 0x92, 0x5d, 0xff, 0xcd, 0x98, 0x61, 0xff, 0xd1, 0x98, 0x67, 0xff, 0xd9, 0x9e, 0x6a, 0xff, 0xda, 0x9d, 0x6a, 0xff, 0x9f, 0x66, 0x3c, 0xff, 0x96, 0x59, 0x34, 0xff, 0x98, 0x5b, 0x35, 0xff, 0x97, 0x5a, 0x34, 0xff, 0x97, 0x59, 0x33, 0xff, 0x96, 0x57, 0x32, 0xff, 0x96, 0x58, 0x32, 0xff, 0x98, 0x57, 0x32, 0xff, 0x96, 0x5a, 0x31, 0xff, 0x96, 0x57, 0x31, 0xff, 0x95, 0x57, 0x31, 0xff, 0x94, 0x56, 0x30, 0xff, 0x91, 0x54, 0x2e, 0xff, 0x94, 0x58, 0x30, 0xff, 0x97, 0x5c, 0x34, 0xff, 0x98, 0x60, 0x37, 0xff, 0x98, 0x63, 0x3d, 0xff, 0x98, 0x68, 0x43, 0xff, 0x98, 0x67, 0x44, 0xff, 0x98, 0x67, 0x4a, 0xff, 0x97, 0x66, 0x4d, 0xff, 0x98, 0x68, 0x4e, 0xff, 0x9a, 0x69, 0x4e, 0xff, 0x9b, 0x6a, 0x4c, 0xff, 0x9a, 0x68, 0x44, 0xff, 0x9c, 0x6a, 0x42, 0xff, 0x9b, 0x6b, 0x41, 0xff, 0x9c, 0x6a, 0x3f, 0xff, 0x9d, 0x67, 0x3b, 0xff, 0x9c, 0x65, 0x38, 0xff, 0x9e, 0x66, 0x36, 0xff, 0xa1, 0x6a, 0x37, 0xff, 0xa3, 0x6c, 0x39, 0xff, 0xa6, 0x6e, 0x3b, 0xff, 0xa9, 0x70, 0x3e, 0xff, 0xaa, 0x70, 0x3a, 0xff, 0xac, 0x72, 0x3b, 0xff, 0xb0, 0x77, 0x3e, 0xff, 0xb2, 0x7c, 0x41, 0xff, 0xb4, 0x81, 0x46, 0xff, 0xb8, 0x88, 0x4c, 0xff, 0xb9, 0x8d, 0x50, 0xff, 0xbb, 0x93, 0x55, 0xff, 0xbe, 0x96, 0x5b, 0xff, 0xbf, 0x96, 0x62, 0xff, 0xc1, 0x97, 0x69, 0xff, 0xc2, 0x98, 0x70, 0xff, 0xc4, 0x99, 0x73, 0xff, 0xc9, 0x9c, 0x76, 0xff, 0xd2, 0xa1, 0x7c, 0xff, 0xda, 0xa6, 0x80, 0xff, 0xe3, 0xaa, 0x82, 0xff, 0xeb, 0xb0, 0x85, 0xff, 0xf2, 0xb9, 0x89, 0xff, 0xf3, 0xc8, 0x8b, 0xff, 0xf1, 0xdc, 0x8f, 0xff, 0xeb, 0xe8, 0x93, 0xff, 0xe5, 0xe7, 0x95, 0xff, 0xe6, 0xe7, 0x98, 0xff, 0xe4, 0xe9, 0x97, 0xff, 0xe1, 0xe8, 0x92, 0xff, 0xe4, 0xe7, 0x88, 0xff, 0xec, 0xdb, 0x7c, 0xff, 0xf1, 0xc9, 0x73, 0xff, 0xf2, 0xc0, 0x6f, 0xff, 0xf2, 0xba, 0x70, 0xff, 0xf0, 0xb4, 0x6e, 0xff, 0xf0, 0xb2, 0x6d, 0xff, 0xf1, 0xae, 0x69, 0xff, 0xf1, 0xa6, 0x60, 0xff, 0xf2, 0xa3, 0x5f, 0xff, 0xf2, 0xa3, 0x60, 0xff, 0xf2, 0xa1, 0x60, 0xff, 0xf1, 0xa0, 0x5d, 0xff, 0xef, 0xa0, 0x54, 0xff, 0xf0, 0x9f, 0x52, 0xff, 0xef, 0xa0, 0x54, 0xff, 0xf0, 0xa2, 0x57, 0xff, 0xf1, 0xa5, 0x5a, 0xff, 0xf0, 0xac, 0x5f, 0xff, 0xf0, 0xb2, 0x65, 0xff, 0xf2, 0xb7, 0x6a, 0xff, 0xf1, 0xbb, 0x6d, 0xff, 0xf0, 0xbf, 0x72, 0xff, 0xf1, 0xc9, 0x77, 0xff, 0xf2, 0xd1, 0x79, 0xff, 0xf0, 0xce, 0x7b, 0xff, 0xf2, 0xcf, 0x7b, 0xff, 0xf3, 0xd1, 0x7b, 0xff, 0xf2, 0xc5, 0x78, 0xff, 0xf0, 0xba, 0x76, 0xff, 0xf0, 0xb4, 0x71, 0xff, 0xf2, 0xae, 0x6b, 0xff, 0xf0, 0xa8, 0x66, 0xff, 0xe3, 0x9d, 0x5e, 0xff, 0xd5, 0x94, 0x58, 0xff, 0xc9, 0x8d, 0x54, 0xff, 0xc1, 0x87, 0x4f, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xb5, 0x7a, 0x44, 0xff, 0xb0, 0x73, 0x3f, 0xff, 0xad, 0x71, 0x3d, 0xff, 0xa4, 0x6a, 0x38, 0xff, 0xc0, 0x82, 0x4c, 0xff, 0xea, 0xa7, 0x6b, 0xff, 0xf4, 0xad, 0x6e, 0xff, 0xf1, 0xa5, 0x69, 0xff, 0xf2, 0xa4, 0x66, 0xff, 0xf2, 0xa0, 0x5f, 0xff, 0xf1, 0xa0, 0x5c, 0xff, 0xf1, 0xa6, 0x62, 0xff, 0xf1, 0xad, 0x6d, 0xff, 0xf0, 0xb7, 0x78, 0xff, 0xf2, 0xbd, 0x7a, 0xff, 0xf2, 0xc8, 0x7e, 0xff, 0xf1, 0xc6, 0x80, 0xff, 0xf2, 0xbe, 0x7c, 0xff, 0xf3, 0xba, 0x79, 0xff, 0xf2, 0xb6, 0x77, 0xff, 0xf2, 0xb1, 0x70, 0xff, 0xf1, 0xa7, 0x69, 0xff, 0xf2, 0xa2, 0x66, 0xff, 0xef, 0x9c, 0x61, 0xff, 0xeb, 0x9a, 0x5d, 0xff, 0xe8, 0x99, 0x5d, 0xff, 0xe5, 0x97, 0x5c, 0xff, 0xe2, 0x95, 0x5a, 0xff, 0xd8, 0x90, 0x57, 0xff, 0xd3, 0x8e, 0x56, 0xff, 0xce, 0x8d, 0x57, 0xff, 0xc6, 0x89, 0x54, 0xff, 0xc2, 0x86, 0x52, 0xff, 0xbf, 0x85, 0x4f, 0xff, 0xbb, 0x7f, 0x4c, 0xff, 0xb4, 0x79, 0x47, 0xff, 0xb0, 0x71, 0x44, 0xff, 0xae, 0x70, 0x42, 0xff, 0xab, 0x6c, 0x3c, 0xff, 0xa8, 0x68, 0x37, 0xff, 0x9f, 0x60, 0x32, 0xff, 0x99, 0x57, 0x2f, 0xff, 0x95, 0x56, 0x2c, 0xff, 0x92, 0x52, 0x2b, 0xff, 0x8f, 0x4e, 0x2a, 0xff, 0x8c, 0x4d, 0x29, 0xff, 0x8a, 0x4b, 0x29, 0xff, 0x88, 0x49, 0x28, 0xff, 0x84, 0x47, 0x28, 0xff, 0x81, 0x44, 0x28, 0xff, 0x7d, 0x41, 0x26, 0xff, 0x7c, 0x3f, 0x24, 0xff, 0x7c, 0x40, 0x24, 0xff, 0x7e, 0x40, 0x25, 0xff, 0x82, 0x48, 0x2a, 0xff, 0x83, 0x4a, 0x2b, 0xff, 0x83, 0x49, 0x2a, 0xff, 0x82, 0x47, 0x29, 0xff, 0x80, 0x45, 0x28, 0xff, 0x7e, 0x43, 0x26, 0xff, 0x7c, 0x40, 0x24, 0xff, 0x7b, 0x3d, 0x21, 0xff, 0x77, 0x3c, 0x1d, 0xff, 0x75, 0x39, 0x1c, 0xff, 0x73, 0x36, 0x1a, 0xff, 0x70, 0x35, 0x19, 0xff, 0x70, 0x34, 0x1a, 0xff, 0x70, 0x34, 0x1a, 0xff, 0x6e, 0x33, 0x16, 0xff, 0x6c, 0x32, 0x14, 0xff, 0x6a, 0x31, 0x14, 0xff, 0x6c, 0x32, 0x14, 0xff, 0x6d, 0x33, 0x15, 0xff, 0x6c, 0x31, 0x14, 0xff, 0x69, 0x31, 0x11, 0xff, 0x67, 0x31, 0x12, 0xff, 0x68, 0x31, 0x12, 0xff, 0x68, 0x31, 0x11, 0xff, 0x68, 0x30, 0x11, 0xff, 0x68, 0x2f, 0x11, 0xff, 0x66, 0x2e, 0x11, 0xff, 0x66, 0x30, 0x11, 0xff, 0x65, 0x2e, 0x11, 0xff, 0x66, 0x2e, 0x11, 0xff, 0x67, 0x2d, 0x11, 0xff, 0x68, 0x2f, 0x11, 0xff, 0x69, 0x31, 0x14, 0xff, 0x69, 0x31, 0x14, 0xff, 0x69, 0x30, 0x14, 0xff, 0x6c, 0x32, 0x16, 0xff, 0x6d, 0x33, 0x17, 0xff, 0x6e, 0x35, 0x17, 0xff, 0x6f, 0x35, 0x19, 0xff, 0x6f, 0x35, 0x16, 0xff, 0x71, 0x36, 0x19, 0xff, 0x74, 0x37, 0x1a, 0xff, + 0x71, 0x36, 0x19, 0xff, 0x75, 0x38, 0x1c, 0xff, 0x76, 0x3a, 0x1e, 0xff, 0x77, 0x3a, 0x20, 0xff, 0x79, 0x3d, 0x20, 0xff, 0x7b, 0x3d, 0x22, 0xff, 0x7c, 0x3f, 0x23, 0xff, 0x7e, 0x40, 0x25, 0xff, 0x80, 0x42, 0x27, 0xff, 0x7f, 0x42, 0x26, 0xff, 0x81, 0x42, 0x27, 0xff, 0x83, 0x44, 0x28, 0xff, 0x84, 0x45, 0x29, 0xff, 0x87, 0x47, 0x2a, 0xff, 0x89, 0x4a, 0x2a, 0xff, 0x8b, 0x4e, 0x2e, 0xff, 0x8e, 0x51, 0x2f, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x94, 0x55, 0x30, 0xff, 0x96, 0x57, 0x31, 0xff, 0x98, 0x57, 0x31, 0xff, 0x9d, 0x5f, 0x34, 0xff, 0xa2, 0x64, 0x38, 0xff, 0xa6, 0x67, 0x3b, 0xff, 0xa6, 0x66, 0x3b, 0xff, 0xa7, 0x6a, 0x3e, 0xff, 0xa9, 0x6a, 0x3f, 0xff, 0xaa, 0x6b, 0x41, 0xff, 0xb6, 0x75, 0x44, 0xff, 0xe5, 0x96, 0x5c, 0xff, 0xe0, 0x94, 0x5d, 0xff, 0xbb, 0x85, 0x53, 0xff, 0xc1, 0x8b, 0x59, 0xff, 0xc5, 0x90, 0x5c, 0xff, 0xca, 0x94, 0x60, 0xff, 0xcf, 0x99, 0x63, 0xff, 0xd6, 0x9b, 0x68, 0xff, 0xdc, 0x9e, 0x6e, 0xff, 0x99, 0x5d, 0x37, 0xff, 0x9a, 0x5d, 0x38, 0xff, 0x9a, 0x5d, 0x38, 0xff, 0x9a, 0x5e, 0x38, 0xff, 0x9b, 0x5d, 0x36, 0xff, 0x9a, 0x5c, 0x34, 0xff, 0x99, 0x5a, 0x33, 0xff, 0x98, 0x5a, 0x33, 0xff, 0x98, 0x5b, 0x33, 0xff, 0x98, 0x5b, 0x32, 0xff, 0x98, 0x5a, 0x33, 0xff, 0x97, 0x5a, 0x32, 0xff, 0x96, 0x5a, 0x32, 0xff, 0x93, 0x58, 0x31, 0xff, 0x95, 0x58, 0x31, 0xff, 0x97, 0x5b, 0x34, 0xff, 0x98, 0x61, 0x38, 0xff, 0x9a, 0x67, 0x3d, 0xff, 0x9c, 0x6a, 0x44, 0xff, 0x9b, 0x6a, 0x46, 0xff, 0x99, 0x67, 0x49, 0xff, 0x98, 0x66, 0x4a, 0xff, 0x98, 0x69, 0x4c, 0xff, 0x9b, 0x6a, 0x4b, 0xff, 0x9c, 0x6a, 0x47, 0xff, 0x9b, 0x69, 0x41, 0xff, 0x9c, 0x6c, 0x42, 0xff, 0x9c, 0x6b, 0x42, 0xff, 0x9c, 0x69, 0x3e, 0xff, 0x9b, 0x65, 0x38, 0xff, 0x9d, 0x65, 0x37, 0xff, 0x9e, 0x67, 0x36, 0xff, 0xa1, 0x6a, 0x36, 0xff, 0xa4, 0x6c, 0x38, 0xff, 0xa7, 0x6f, 0x3b, 0xff, 0xa8, 0x6e, 0x38, 0xff, 0xaa, 0x70, 0x38, 0xff, 0xae, 0x76, 0x3b, 0xff, 0xb0, 0x7b, 0x41, 0xff, 0xb3, 0x80, 0x48, 0xff, 0xb5, 0x86, 0x4e, 0xff, 0xb7, 0x8d, 0x53, 0xff, 0xba, 0x96, 0x5a, 0xff, 0xbd, 0x97, 0x5f, 0xff, 0xc0, 0x99, 0x65, 0xff, 0xc3, 0x99, 0x6d, 0xff, 0xc3, 0x98, 0x73, 0xff, 0xc5, 0x98, 0x76, 0xff, 0xc7, 0x9c, 0x78, 0xff, 0xcf, 0xa1, 0x7a, 0xff, 0xd9, 0xa5, 0x7f, 0xff, 0xde, 0xa9, 0x82, 0xff, 0xe4, 0xac, 0x86, 0xff, 0xee, 0xb4, 0x8a, 0xff, 0xf3, 0xbc, 0x8e, 0xff, 0xf3, 0xcb, 0x92, 0xff, 0xf1, 0xde, 0x94, 0xff, 0xea, 0xe8, 0x92, 0xff, 0xe5, 0xe9, 0x93, 0xff, 0xe2, 0xe9, 0x93, 0xff, 0xe2, 0xe8, 0x8e, 0xff, 0xe8, 0xe8, 0x87, 0xff, 0xef, 0xdd, 0x7d, 0xff, 0xf0, 0xc5, 0x73, 0xff, 0xed, 0xb7, 0x6c, 0xff, 0xef, 0xb8, 0x6b, 0xff, 0xf2, 0xb9, 0x6e, 0xff, 0xf3, 0xbe, 0x73, 0xff, 0xf2, 0xba, 0x72, 0xff, 0xf0, 0xac, 0x67, 0xff, 0xf0, 0xa7, 0x62, 0xff, 0xf1, 0xa5, 0x61, 0xff, 0xf2, 0xa5, 0x62, 0xff, 0xf2, 0xa4, 0x60, 0xff, 0xf1, 0xa2, 0x58, 0xff, 0xf1, 0xa2, 0x54, 0xff, 0xf1, 0xa1, 0x56, 0xff, 0xf1, 0xa1, 0x58, 0xff, 0xf0, 0xa6, 0x5b, 0xff, 0xf1, 0xad, 0x60, 0xff, 0xf2, 0xb1, 0x63, 0xff, 0xf1, 0xb9, 0x69, 0xff, 0xf0, 0xc3, 0x72, 0xff, 0xf0, 0xcd, 0x78, 0xff, 0xf1, 0xde, 0x7f, 0xff, 0xf0, 0xe2, 0x84, 0xff, 0xed, 0xe5, 0x86, 0xff, 0xed, 0xe6, 0x87, 0xff, 0xed, 0xe1, 0x87, 0xff, 0xf0, 0xe3, 0x87, 0xff, 0xf1, 0xdb, 0x82, 0xff, 0xf2, 0xcc, 0x7d, 0xff, 0xf1, 0xc0, 0x77, 0xff, 0xf1, 0xb5, 0x72, 0xff, 0xf0, 0xac, 0x6c, 0xff, 0xeb, 0xa4, 0x65, 0xff, 0xdd, 0x9a, 0x5e, 0xff, 0xce, 0x90, 0x57, 0xff, 0xc3, 0x88, 0x50, 0xff, 0xbd, 0x82, 0x4b, 0xff, 0xb7, 0x7b, 0x45, 0xff, 0xb2, 0x75, 0x40, 0xff, 0xad, 0x71, 0x3e, 0xff, 0xa6, 0x6b, 0x38, 0xff, 0xbb, 0x83, 0x4d, 0xff, 0xe7, 0xab, 0x6e, 0xff, 0xf3, 0xaf, 0x71, 0xff, 0xf1, 0xa6, 0x69, 0xff, 0xf2, 0xa0, 0x61, 0xff, 0xf2, 0x9d, 0x5d, 0xff, 0xf1, 0xa1, 0x60, 0xff, 0xf1, 0xa6, 0x63, 0xff, 0xf1, 0xae, 0x6e, 0xff, 0xf1, 0xb2, 0x73, 0xff, 0xf0, 0xb4, 0x76, 0xff, 0xf1, 0xb7, 0x77, 0xff, 0xf2, 0xb7, 0x77, 0xff, 0xf1, 0xb8, 0x77, 0xff, 0xf1, 0xb6, 0x76, 0xff, 0xf2, 0xb0, 0x72, 0xff, 0xf1, 0xaa, 0x6a, 0xff, 0xf2, 0xa6, 0x65, 0xff, 0xf2, 0xa3, 0x64, 0xff, 0xf1, 0xa1, 0x61, 0xff, 0xf1, 0x9f, 0x60, 0xff, 0xf1, 0xa1, 0x5f, 0xff, 0xf1, 0xa0, 0x60, 0xff, 0xf1, 0x9f, 0x62, 0xff, 0xed, 0x9d, 0x61, 0xff, 0xe7, 0x9e, 0x63, 0xff, 0xdc, 0x97, 0x5f, 0xff, 0xcf, 0x8f, 0x59, 0xff, 0xc5, 0x8c, 0x56, 0xff, 0xbf, 0x86, 0x52, 0xff, 0xbb, 0x80, 0x4f, 0xff, 0xb5, 0x7a, 0x49, 0xff, 0xb3, 0x75, 0x45, 0xff, 0xaf, 0x72, 0x42, 0xff, 0xac, 0x6d, 0x3d, 0xff, 0xa5, 0x65, 0x36, 0xff, 0x9e, 0x5d, 0x33, 0xff, 0x9b, 0x5a, 0x30, 0xff, 0x97, 0x58, 0x2d, 0xff, 0x94, 0x54, 0x2b, 0xff, 0x91, 0x50, 0x2a, 0xff, 0x8f, 0x4d, 0x2a, 0xff, 0x8a, 0x4b, 0x29, 0xff, 0x85, 0x47, 0x29, 0xff, 0x82, 0x44, 0x29, 0xff, 0x80, 0x44, 0x28, 0xff, 0x7e, 0x41, 0x26, 0xff, 0x7d, 0x40, 0x25, 0xff, 0x85, 0x49, 0x2d, 0xff, 0x86, 0x4b, 0x2e, 0xff, 0x84, 0x4a, 0x2b, 0xff, 0x83, 0x48, 0x29, 0xff, 0x83, 0x47, 0x29, 0xff, 0x82, 0x45, 0x28, 0xff, 0x80, 0x43, 0x28, 0xff, 0x7e, 0x40, 0x24, 0xff, 0x7d, 0x3e, 0x23, 0xff, 0x7a, 0x3c, 0x20, 0xff, 0x75, 0x39, 0x1c, 0xff, 0x73, 0x36, 0x1a, 0xff, 0x71, 0x36, 0x1a, 0xff, 0x70, 0x34, 0x1a, 0xff, 0x6f, 0x34, 0x18, 0xff, 0x6c, 0x32, 0x16, 0xff, 0x6c, 0x33, 0x16, 0xff, 0x6b, 0x33, 0x17, 0xff, 0x6d, 0x31, 0x15, 0xff, 0x6c, 0x31, 0x14, 0xff, 0x69, 0x2f, 0x13, 0xff, 0x67, 0x32, 0x13, 0xff, 0x69, 0x30, 0x13, 0xff, 0x67, 0x30, 0x12, 0xff, 0x67, 0x31, 0x11, 0xff, 0x65, 0x2e, 0x11, 0xff, 0x65, 0x2e, 0x11, 0xff, 0x66, 0x2e, 0x11, 0xff, 0x66, 0x2e, 0x11, 0xff, 0x64, 0x2f, 0x11, 0xff, 0x66, 0x2e, 0x11, 0xff, 0x67, 0x2e, 0x11, 0xff, 0x67, 0x2f, 0x11, 0xff, 0x67, 0x2e, 0x11, 0xff, 0x65, 0x2f, 0x12, 0xff, 0x67, 0x30, 0x12, 0xff, 0x6b, 0x30, 0x14, 0xff, 0x6c, 0x30, 0x15, 0xff, 0x6d, 0x33, 0x18, 0xff, 0x6c, 0x31, 0x15, 0xff, 0x6c, 0x33, 0x16, 0xff, 0x6f, 0x34, 0x19, 0xff, 0x72, 0x35, 0x1a, 0xff, + 0x70, 0x35, 0x19, 0xff, 0x72, 0x37, 0x1c, 0xff, 0x74, 0x3a, 0x1c, 0xff, 0x75, 0x39, 0x1f, 0xff, 0x77, 0x3c, 0x1f, 0xff, 0x78, 0x3d, 0x21, 0xff, 0x7b, 0x3e, 0x21, 0xff, 0x7c, 0x3f, 0x23, 0xff, 0x7c, 0x3f, 0x24, 0xff, 0x7c, 0x3f, 0x24, 0xff, 0x7f, 0x42, 0x27, 0xff, 0x81, 0x43, 0x28, 0xff, 0x82, 0x44, 0x28, 0xff, 0x86, 0x45, 0x2a, 0xff, 0x86, 0x4a, 0x2b, 0xff, 0x8c, 0x4e, 0x2e, 0xff, 0x8c, 0x4e, 0x2e, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x91, 0x50, 0x2d, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x95, 0x55, 0x30, 0xff, 0x95, 0x57, 0x31, 0xff, 0x9a, 0x5a, 0x32, 0xff, 0x9b, 0x5c, 0x33, 0xff, 0x9f, 0x62, 0x36, 0xff, 0xa8, 0x6a, 0x3e, 0xff, 0xa8, 0x69, 0x3e, 0xff, 0xaa, 0x6b, 0x3f, 0xff, 0xa8, 0x69, 0x3d, 0xff, 0xc4, 0x83, 0x4d, 0xff, 0xf5, 0x9c, 0x5e, 0xff, 0xf2, 0x9f, 0x61, 0xff, 0xe0, 0x9e, 0x66, 0xff, 0xb7, 0x81, 0x50, 0xff, 0xc3, 0x8e, 0x59, 0xff, 0xc7, 0x90, 0x5a, 0xff, 0xcb, 0x96, 0x62, 0xff, 0xd2, 0x9a, 0x65, 0xff, 0xd1, 0x99, 0x68, 0xff, 0x99, 0x5a, 0x38, 0xff, 0x9d, 0x60, 0x3a, 0xff, 0x9c, 0x5f, 0x38, 0xff, 0x9d, 0x5f, 0x37, 0xff, 0x9b, 0x5f, 0x37, 0xff, 0x9b, 0x5f, 0x36, 0xff, 0x9b, 0x5e, 0x35, 0xff, 0x9b, 0x5d, 0x35, 0xff, 0x9b, 0x5e, 0x35, 0xff, 0x9a, 0x5e, 0x34, 0xff, 0x9b, 0x5e, 0x34, 0xff, 0x9a, 0x5d, 0x34, 0xff, 0x9a, 0x5d, 0x34, 0xff, 0x99, 0x5c, 0x33, 0xff, 0x97, 0x5a, 0x31, 0xff, 0x97, 0x5b, 0x33, 0xff, 0x98, 0x5f, 0x35, 0xff, 0x9a, 0x66, 0x39, 0xff, 0x9a, 0x66, 0x3d, 0xff, 0x99, 0x69, 0x41, 0xff, 0x9a, 0x6a, 0x44, 0xff, 0x9a, 0x6a, 0x48, 0xff, 0x9a, 0x69, 0x48, 0xff, 0x98, 0x69, 0x46, 0xff, 0x9c, 0x6c, 0x45, 0xff, 0x9c, 0x6e, 0x42, 0xff, 0x9c, 0x6b, 0x41, 0xff, 0x9c, 0x6c, 0x43, 0xff, 0x9c, 0x69, 0x41, 0xff, 0x9b, 0x67, 0x3c, 0xff, 0x9c, 0x66, 0x37, 0xff, 0x9d, 0x67, 0x36, 0xff, 0xa0, 0x69, 0x36, 0xff, 0xa2, 0x6b, 0x37, 0xff, 0xa4, 0x6e, 0x3a, 0xff, 0xa8, 0x6f, 0x39, 0xff, 0xa9, 0x6e, 0x38, 0xff, 0xab, 0x72, 0x3b, 0xff, 0xaf, 0x78, 0x40, 0xff, 0xb1, 0x7e, 0x46, 0xff, 0xb3, 0x85, 0x4e, 0xff, 0xb6, 0x8d, 0x56, 0xff, 0xb8, 0x93, 0x5e, 0xff, 0xba, 0x96, 0x62, 0xff, 0xbe, 0x9a, 0x69, 0xff, 0xc1, 0x9a, 0x6e, 0xff, 0xc3, 0x9b, 0x73, 0xff, 0xc6, 0x9a, 0x76, 0xff, 0xc8, 0x9b, 0x78, 0xff, 0xcc, 0x9f, 0x7a, 0xff, 0xd4, 0xa3, 0x7e, 0xff, 0xdb, 0xa7, 0x7f, 0xff, 0xe1, 0xaa, 0x83, 0xff, 0xe9, 0xad, 0x86, 0xff, 0xf1, 0xb5, 0x8b, 0xff, 0xf3, 0xbe, 0x8f, 0xff, 0xf2, 0xcc, 0x91, 0xff, 0xf2, 0xdd, 0x94, 0xff, 0xeb, 0xe8, 0x93, 0xff, 0xe2, 0xea, 0x8f, 0xff, 0xe2, 0xe8, 0x8b, 0xff, 0xe8, 0xe5, 0x83, 0xff, 0xef, 0xd9, 0x7b, 0xff, 0xef, 0xc3, 0x71, 0xff, 0xef, 0xb5, 0x69, 0xff, 0xf0, 0xb4, 0x67, 0xff, 0xf1, 0xb5, 0x6b, 0xff, 0xf3, 0xc0, 0x76, 0xff, 0xf2, 0xc5, 0x7a, 0xff, 0xf2, 0xb9, 0x71, 0xff, 0xf1, 0xaa, 0x65, 0xff, 0xf2, 0xa5, 0x62, 0xff, 0xf3, 0xa3, 0x62, 0xff, 0xf3, 0xa4, 0x61, 0xff, 0xf1, 0xa2, 0x5a, 0xff, 0xf1, 0xa3, 0x56, 0xff, 0xf0, 0xa1, 0x57, 0xff, 0xf0, 0xa2, 0x58, 0xff, 0xf0, 0xa6, 0x5a, 0xff, 0xf1, 0xab, 0x60, 0xff, 0xf2, 0xb5, 0x67, 0xff, 0xf1, 0xbb, 0x6e, 0xff, 0xf2, 0xcc, 0x77, 0xff, 0xf1, 0xda, 0x7e, 0xff, 0xef, 0xe2, 0x86, 0xff, 0xe7, 0xe6, 0x8b, 0xff, 0xe2, 0xe6, 0x90, 0xff, 0xe6, 0xe9, 0x93, 0xff, 0xe6, 0xe9, 0x95, 0xff, 0xe5, 0xe9, 0x92, 0xff, 0xe7, 0xe9, 0x8e, 0xff, 0xeb, 0xe5, 0x8b, 0xff, 0xf1, 0xdb, 0x86, 0xff, 0xf2, 0xcd, 0x80, 0xff, 0xf1, 0xbd, 0x79, 0xff, 0xf3, 0xaf, 0x70, 0xff, 0xf0, 0xa8, 0x68, 0xff, 0xe2, 0x9e, 0x61, 0xff, 0xd2, 0x94, 0x5b, 0xff, 0xc5, 0x8a, 0x52, 0xff, 0xbd, 0x82, 0x4e, 0xff, 0xb8, 0x7d, 0x47, 0xff, 0xb4, 0x79, 0x43, 0xff, 0xaf, 0x73, 0x40, 0xff, 0xa6, 0x6b, 0x39, 0xff, 0xc3, 0x8b, 0x54, 0xff, 0xeb, 0xaf, 0x71, 0xff, 0xf4, 0xaf, 0x71, 0xff, 0xf2, 0xa5, 0x66, 0xff, 0xf3, 0xa3, 0x63, 0xff, 0xf3, 0xa4, 0x63, 0xff, 0xf2, 0xa4, 0x63, 0xff, 0xf1, 0xa4, 0x64, 0xff, 0xf1, 0xa9, 0x6b, 0xff, 0xf1, 0xad, 0x70, 0xff, 0xf0, 0xb0, 0x73, 0xff, 0xf0, 0xb4, 0x74, 0xff, 0xf1, 0xb6, 0x74, 0xff, 0xf2, 0xb2, 0x70, 0xff, 0xf3, 0xaf, 0x6f, 0xff, 0xf1, 0xab, 0x6c, 0xff, 0xf2, 0xa6, 0x65, 0xff, 0xf2, 0xa5, 0x65, 0xff, 0xf1, 0xa6, 0x65, 0xff, 0xf1, 0xa8, 0x68, 0xff, 0xf1, 0xaa, 0x6a, 0xff, 0xf1, 0xa5, 0x67, 0xff, 0xf1, 0xa8, 0x68, 0xff, 0xf1, 0xaa, 0x69, 0xff, 0xef, 0xa9, 0x6a, 0xff, 0xf0, 0xa7, 0x69, 0xff, 0xee, 0xa2, 0x65, 0xff, 0xdd, 0x98, 0x60, 0xff, 0xcd, 0x92, 0x5b, 0xff, 0xc2, 0x88, 0x57, 0xff, 0xbb, 0x82, 0x52, 0xff, 0xb5, 0x7b, 0x4c, 0xff, 0xb4, 0x78, 0x48, 0xff, 0xb0, 0x72, 0x42, 0xff, 0xaa, 0x6c, 0x3c, 0xff, 0xa4, 0x62, 0x35, 0xff, 0x9f, 0x5e, 0x32, 0xff, 0x9c, 0x5a, 0x30, 0xff, 0x98, 0x57, 0x2d, 0xff, 0x95, 0x54, 0x2d, 0xff, 0x8d, 0x4c, 0x2b, 0xff, 0x8a, 0x4a, 0x29, 0xff, 0x87, 0x49, 0x29, 0xff, 0x82, 0x45, 0x28, 0xff, 0x84, 0x46, 0x29, 0xff, 0x82, 0x44, 0x28, 0xff, 0x87, 0x4d, 0x2e, 0xff, 0x88, 0x4c, 0x2f, 0xff, 0x85, 0x4b, 0x2d, 0xff, 0x85, 0x49, 0x2b, 0xff, 0x84, 0x49, 0x2a, 0xff, 0x82, 0x47, 0x28, 0xff, 0x82, 0x44, 0x28, 0xff, 0x7f, 0x44, 0x27, 0xff, 0x7f, 0x40, 0x25, 0xff, 0x7c, 0x3f, 0x23, 0xff, 0x79, 0x3c, 0x1f, 0xff, 0x75, 0x39, 0x1e, 0xff, 0x74, 0x39, 0x1c, 0xff, 0x74, 0x38, 0x1a, 0xff, 0x71, 0x36, 0x1a, 0xff, 0x6e, 0x31, 0x16, 0xff, 0x6e, 0x34, 0x14, 0xff, 0x6d, 0x32, 0x14, 0xff, 0x6e, 0x31, 0x14, 0xff, 0x6a, 0x32, 0x14, 0xff, 0x6b, 0x2f, 0x13, 0xff, 0x68, 0x31, 0x13, 0xff, 0x6a, 0x2e, 0x14, 0xff, 0x69, 0x2f, 0x12, 0xff, 0x67, 0x2f, 0x12, 0xff, 0x68, 0x2f, 0x11, 0xff, 0x67, 0x31, 0x11, 0xff, 0x64, 0x2e, 0x11, 0xff, 0x66, 0x2e, 0x11, 0xff, 0x66, 0x2e, 0x11, 0xff, 0x64, 0x2e, 0x11, 0xff, 0x66, 0x2e, 0x11, 0xff, 0x67, 0x2d, 0x11, 0xff, 0x64, 0x2d, 0x11, 0xff, 0x64, 0x2f, 0x11, 0xff, 0x66, 0x2f, 0x11, 0xff, 0x66, 0x2e, 0x11, 0xff, 0x67, 0x30, 0x11, 0xff, 0x69, 0x30, 0x13, 0xff, 0x6c, 0x32, 0x14, 0xff, 0x6c, 0x32, 0x14, 0xff, 0x6c, 0x33, 0x18, 0xff, 0x6d, 0x33, 0x17, 0xff, 0x6e, 0x34, 0x1a, 0xff, + 0x6f, 0x32, 0x17, 0xff, 0x70, 0x36, 0x19, 0xff, 0x73, 0x37, 0x1b, 0xff, 0x74, 0x3a, 0x1c, 0xff, 0x76, 0x39, 0x1e, 0xff, 0x78, 0x3c, 0x20, 0xff, 0x77, 0x3b, 0x21, 0xff, 0x78, 0x3b, 0x1e, 0xff, 0x7b, 0x3d, 0x22, 0xff, 0x7c, 0x3f, 0x24, 0xff, 0x7f, 0x40, 0x27, 0xff, 0x7f, 0x40, 0x27, 0xff, 0x81, 0x43, 0x28, 0xff, 0x84, 0x46, 0x29, 0xff, 0x88, 0x4b, 0x2b, 0xff, 0x88, 0x4b, 0x2b, 0xff, 0x8b, 0x4d, 0x2c, 0xff, 0x8d, 0x4e, 0x2b, 0xff, 0x90, 0x4f, 0x2c, 0xff, 0x91, 0x52, 0x2d, 0xff, 0x94, 0x55, 0x2f, 0xff, 0x95, 0x57, 0x31, 0xff, 0x97, 0x57, 0x31, 0xff, 0x9a, 0x5a, 0x33, 0xff, 0x9c, 0x5d, 0x35, 0xff, 0x9d, 0x5f, 0x34, 0xff, 0xa6, 0x66, 0x3c, 0xff, 0xaa, 0x69, 0x3e, 0xff, 0xb0, 0x6f, 0x41, 0xff, 0xeb, 0x99, 0x60, 0xff, 0xed, 0x98, 0x5e, 0xff, 0xf3, 0x9c, 0x5f, 0xff, 0xed, 0xa2, 0x63, 0xff, 0xd9, 0x99, 0x62, 0xff, 0xbc, 0x86, 0x53, 0xff, 0xc4, 0x8e, 0x5a, 0xff, 0xc9, 0x91, 0x5b, 0xff, 0xcf, 0x98, 0x5e, 0xff, 0xbf, 0x8a, 0x57, 0xff, 0x9c, 0x60, 0x39, 0xff, 0x9e, 0x61, 0x3c, 0xff, 0x9d, 0x60, 0x3a, 0xff, 0x9d, 0x61, 0x39, 0xff, 0x9c, 0x5f, 0x39, 0xff, 0x9d, 0x5f, 0x39, 0xff, 0x9d, 0x5f, 0x37, 0xff, 0x9c, 0x60, 0x36, 0xff, 0x9c, 0x60, 0x36, 0xff, 0x9c, 0x5f, 0x35, 0xff, 0x9b, 0x5e, 0x35, 0xff, 0x9d, 0x5e, 0x35, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0x9a, 0x5e, 0x36, 0xff, 0x97, 0x5c, 0x34, 0xff, 0x9b, 0x63, 0x36, 0xff, 0x9c, 0x65, 0x37, 0xff, 0x9a, 0x65, 0x3a, 0xff, 0x9b, 0x68, 0x3d, 0xff, 0x9a, 0x69, 0x40, 0xff, 0x9b, 0x6a, 0x42, 0xff, 0x9b, 0x69, 0x43, 0xff, 0x9d, 0x6b, 0x43, 0xff, 0x9b, 0x6a, 0x40, 0xff, 0x9a, 0x6b, 0x3e, 0xff, 0x9b, 0x6b, 0x3e, 0xff, 0x9c, 0x6c, 0x41, 0xff, 0x9c, 0x6a, 0x43, 0xff, 0x9c, 0x67, 0x40, 0xff, 0x9d, 0x66, 0x39, 0xff, 0x9b, 0x65, 0x36, 0xff, 0x9e, 0x67, 0x36, 0xff, 0xa0, 0x69, 0x36, 0xff, 0xa4, 0x6d, 0x39, 0xff, 0xa5, 0x6d, 0x3b, 0xff, 0xa8, 0x6f, 0x3a, 0xff, 0xaa, 0x74, 0x3d, 0xff, 0xac, 0x77, 0x41, 0xff, 0xae, 0x7b, 0x46, 0xff, 0xb1, 0x84, 0x4d, 0xff, 0xb3, 0x88, 0x54, 0xff, 0xb6, 0x8f, 0x5d, 0xff, 0xb9, 0x96, 0x64, 0xff, 0xbd, 0x97, 0x67, 0xff, 0xbf, 0x9b, 0x6d, 0xff, 0xc3, 0x9d, 0x73, 0xff, 0xc4, 0x9d, 0x77, 0xff, 0xc7, 0x9d, 0x77, 0xff, 0xca, 0x9f, 0x78, 0xff, 0xcf, 0xa1, 0x7b, 0xff, 0xd5, 0xa4, 0x7f, 0xff, 0xde, 0xa6, 0x80, 0xff, 0xe4, 0xaa, 0x84, 0xff, 0xeb, 0xb0, 0x87, 0xff, 0xf1, 0xb6, 0x8b, 0xff, 0xf3, 0xbe, 0x8e, 0xff, 0xf2, 0xcd, 0x90, 0xff, 0xf3, 0xde, 0x91, 0xff, 0xed, 0xe8, 0x8a, 0xff, 0xe5, 0xe8, 0x86, 0xff, 0xea, 0xe6, 0x81, 0xff, 0xf3, 0xdb, 0x79, 0xff, 0xf2, 0xc4, 0x6f, 0xff, 0xf0, 0xb5, 0x65, 0xff, 0xef, 0xb1, 0x64, 0xff, 0xf0, 0xb5, 0x66, 0xff, 0xf2, 0xbc, 0x6e, 0xff, 0xf3, 0xca, 0x7a, 0xff, 0xf2, 0xc7, 0x79, 0xff, 0xf1, 0xb5, 0x6b, 0xff, 0xf2, 0xa8, 0x63, 0xff, 0xf0, 0xa6, 0x63, 0xff, 0xf0, 0xa6, 0x63, 0xff, 0xf1, 0xa8, 0x5d, 0xff, 0xf0, 0xa5, 0x58, 0xff, 0xf1, 0xa4, 0x57, 0xff, 0xf1, 0xa8, 0x59, 0xff, 0xf2, 0xab, 0x5e, 0xff, 0xf2, 0xae, 0x61, 0xff, 0xf0, 0xb2, 0x66, 0xff, 0xef, 0xbf, 0x6f, 0xff, 0xf2, 0xd1, 0x76, 0xff, 0xf2, 0xde, 0x81, 0xff, 0xea, 0xe8, 0x8a, 0xff, 0xe7, 0xe9, 0x91, 0xff, 0xe7, 0xe9, 0x99, 0xff, 0xe7, 0xea, 0xa0, 0xff, 0xe9, 0xe8, 0xa4, 0xff, 0xe9, 0xe9, 0xa3, 0xff, 0xe8, 0xea, 0x9e, 0xff, 0xe7, 0xea, 0x99, 0xff, 0xe8, 0xe8, 0x94, 0xff, 0xef, 0xe4, 0x8d, 0xff, 0xf2, 0xd4, 0x84, 0xff, 0xf2, 0xc3, 0x7c, 0xff, 0xf3, 0xb6, 0x74, 0xff, 0xf2, 0xaa, 0x6c, 0xff, 0xe7, 0x9f, 0x63, 0xff, 0xd6, 0x97, 0x5c, 0xff, 0xc8, 0x8e, 0x56, 0xff, 0xbe, 0x85, 0x50, 0xff, 0xb7, 0x7e, 0x49, 0xff, 0xb3, 0x79, 0x45, 0xff, 0xad, 0x72, 0x40, 0xff, 0xb9, 0x7b, 0x48, 0xff, 0xd0, 0x94, 0x5c, 0xff, 0xeb, 0xaa, 0x6d, 0xff, 0xf4, 0xaf, 0x6f, 0xff, 0xf2, 0xac, 0x6b, 0xff, 0xf2, 0xa8, 0x67, 0xff, 0xf2, 0xa6, 0x65, 0xff, 0xf2, 0xa4, 0x63, 0xff, 0xf2, 0xa4, 0x66, 0xff, 0xf2, 0xa9, 0x6c, 0xff, 0xf2, 0xb1, 0x72, 0xff, 0xf3, 0xb5, 0x70, 0xff, 0xf3, 0xb4, 0x6f, 0xff, 0xf3, 0xb2, 0x71, 0xff, 0xf2, 0xb0, 0x6f, 0xff, 0xf2, 0xac, 0x6d, 0xff, 0xf2, 0xa8, 0x6a, 0xff, 0xf3, 0xa8, 0x66, 0xff, 0xf1, 0xad, 0x6a, 0xff, 0xf2, 0xad, 0x6c, 0xff, 0xf3, 0xae, 0x6c, 0xff, 0xf3, 0xb4, 0x72, 0xff, 0xf3, 0xb5, 0x73, 0xff, 0xf3, 0xb2, 0x71, 0xff, 0xf2, 0xb1, 0x71, 0xff, 0xf3, 0xb1, 0x72, 0xff, 0xf2, 0xad, 0x6f, 0xff, 0xf4, 0xa7, 0x6d, 0xff, 0xea, 0xa1, 0x66, 0xff, 0xd5, 0x98, 0x60, 0xff, 0xc5, 0x8c, 0x5b, 0xff, 0xbc, 0x84, 0x55, 0xff, 0xb7, 0x7d, 0x4f, 0xff, 0xb2, 0x77, 0x4a, 0xff, 0xad, 0x72, 0x45, 0xff, 0xa6, 0x69, 0x3d, 0xff, 0xa1, 0x61, 0x35, 0xff, 0x9e, 0x5d, 0x31, 0xff, 0x9a, 0x5b, 0x2f, 0xff, 0x93, 0x52, 0x2d, 0xff, 0x8f, 0x4e, 0x2b, 0xff, 0x8c, 0x4b, 0x2a, 0xff, 0x87, 0x49, 0x28, 0xff, 0x89, 0x4a, 0x29, 0xff, 0x86, 0x48, 0x28, 0xff, 0x8c, 0x52, 0x31, 0xff, 0x8b, 0x50, 0x30, 0xff, 0x89, 0x4e, 0x2f, 0xff, 0x87, 0x4d, 0x2e, 0xff, 0x85, 0x4b, 0x2d, 0xff, 0x83, 0x48, 0x2b, 0xff, 0x83, 0x48, 0x29, 0xff, 0x82, 0x44, 0x28, 0xff, 0x7f, 0x44, 0x27, 0xff, 0x7f, 0x41, 0x25, 0xff, 0x7d, 0x3f, 0x23, 0xff, 0x7b, 0x3d, 0x1f, 0xff, 0x78, 0x3b, 0x1e, 0xff, 0x75, 0x39, 0x1c, 0xff, 0x74, 0x39, 0x1c, 0xff, 0x70, 0x35, 0x18, 0xff, 0x6f, 0x36, 0x17, 0xff, 0x6e, 0x34, 0x15, 0xff, 0x6e, 0x34, 0x16, 0xff, 0x6c, 0x33, 0x17, 0xff, 0x6e, 0x31, 0x17, 0xff, 0x6b, 0x32, 0x17, 0xff, 0x6a, 0x31, 0x14, 0xff, 0x68, 0x31, 0x13, 0xff, 0x69, 0x2f, 0x12, 0xff, 0x69, 0x31, 0x12, 0xff, 0x67, 0x30, 0x11, 0xff, 0x66, 0x2e, 0x11, 0xff, 0x66, 0x2f, 0x11, 0xff, 0x68, 0x2f, 0x11, 0xff, 0x66, 0x2e, 0x11, 0xff, 0x66, 0x2e, 0x11, 0xff, 0x64, 0x2e, 0x11, 0xff, 0x64, 0x2e, 0x11, 0xff, 0x64, 0x2c, 0x11, 0xff, 0x64, 0x2e, 0x11, 0xff, 0x62, 0x2e, 0x11, 0xff, 0x64, 0x31, 0x11, 0xff, 0x66, 0x2e, 0x12, 0xff, 0x67, 0x2f, 0x13, 0xff, 0x69, 0x2f, 0x13, 0xff, 0x6a, 0x31, 0x14, 0xff, 0x6b, 0x31, 0x13, 0xff, 0x6e, 0x33, 0x15, 0xff, 0x6e, 0x34, 0x19, 0xff, + 0x6e, 0x34, 0x17, 0xff, 0x6e, 0x33, 0x18, 0xff, 0x70, 0x35, 0x1b, 0xff, 0x74, 0x36, 0x1b, 0xff, 0x74, 0x39, 0x1c, 0xff, 0x75, 0x3a, 0x1f, 0xff, 0x75, 0x3a, 0x1e, 0xff, 0x76, 0x3a, 0x20, 0xff, 0x7a, 0x3c, 0x22, 0xff, 0x7c, 0x3e, 0x24, 0xff, 0x7d, 0x3e, 0x25, 0xff, 0x7f, 0x41, 0x27, 0xff, 0x82, 0x43, 0x27, 0xff, 0x86, 0x47, 0x2a, 0xff, 0x87, 0x4a, 0x2b, 0xff, 0x88, 0x4b, 0x2b, 0xff, 0x8a, 0x49, 0x2b, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x8e, 0x4e, 0x2c, 0xff, 0x91, 0x52, 0x2d, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x94, 0x53, 0x30, 0xff, 0x97, 0x58, 0x32, 0xff, 0x9a, 0x59, 0x32, 0xff, 0x9a, 0x5c, 0x34, 0xff, 0x9c, 0x5e, 0x35, 0xff, 0x9c, 0x5e, 0x34, 0xff, 0xa1, 0x61, 0x38, 0xff, 0xc4, 0x84, 0x52, 0xff, 0xe0, 0x95, 0x5a, 0xff, 0xe9, 0x97, 0x5f, 0xff, 0xf2, 0x9d, 0x62, 0xff, 0xf3, 0xa2, 0x60, 0xff, 0xec, 0xa2, 0x63, 0xff, 0xca, 0x91, 0x5b, 0xff, 0xc2, 0x89, 0x56, 0xff, 0xc6, 0x8e, 0x57, 0xff, 0xcc, 0x90, 0x59, 0xff, 0xb8, 0x7f, 0x4f, 0xff, 0x9f, 0x62, 0x3a, 0xff, 0x9e, 0x62, 0x3a, 0xff, 0x9e, 0x63, 0x3a, 0xff, 0x9e, 0x62, 0x3a, 0xff, 0x9d, 0x62, 0x39, 0xff, 0x9e, 0x63, 0x3b, 0xff, 0x9e, 0x63, 0x3a, 0xff, 0x9e, 0x63, 0x38, 0xff, 0x9e, 0x63, 0x38, 0xff, 0x9c, 0x62, 0x37, 0xff, 0x9d, 0x61, 0x36, 0xff, 0x9d, 0x61, 0x36, 0xff, 0x9d, 0x62, 0x36, 0xff, 0x9e, 0x62, 0x36, 0xff, 0x9e, 0x62, 0x36, 0xff, 0x9c, 0x63, 0x37, 0xff, 0x9d, 0x62, 0x37, 0xff, 0x9c, 0x64, 0x37, 0xff, 0x9c, 0x67, 0x3a, 0xff, 0x9e, 0x6a, 0x3d, 0xff, 0x9d, 0x6b, 0x3e, 0xff, 0x9d, 0x6a, 0x3e, 0xff, 0x9b, 0x6a, 0x40, 0xff, 0x9c, 0x6b, 0x41, 0xff, 0x9b, 0x6a, 0x3d, 0xff, 0x9a, 0x69, 0x3c, 0xff, 0x9b, 0x69, 0x3d, 0xff, 0x9b, 0x69, 0x3e, 0xff, 0x9c, 0x6a, 0x42, 0xff, 0x9c, 0x6a, 0x41, 0xff, 0x9b, 0x69, 0x3d, 0xff, 0x9c, 0x68, 0x37, 0xff, 0x9d, 0x67, 0x35, 0xff, 0x9f, 0x69, 0x36, 0xff, 0xa1, 0x6b, 0x39, 0xff, 0xa4, 0x6f, 0x3b, 0xff, 0xa7, 0x6f, 0x3b, 0xff, 0xa9, 0x71, 0x3d, 0xff, 0xac, 0x77, 0x43, 0xff, 0xae, 0x7f, 0x49, 0xff, 0xb1, 0x81, 0x4f, 0xff, 0xb2, 0x86, 0x56, 0xff, 0xb5, 0x8b, 0x5b, 0xff, 0xb9, 0x92, 0x62, 0xff, 0xba, 0x96, 0x67, 0xff, 0xbd, 0x98, 0x6d, 0xff, 0xbf, 0x9d, 0x70, 0xff, 0xc2, 0x9f, 0x75, 0xff, 0xc6, 0x9f, 0x78, 0xff, 0xc9, 0xa0, 0x79, 0xff, 0xcd, 0xa0, 0x7a, 0xff, 0xd3, 0xa4, 0x7e, 0xff, 0xd9, 0xa7, 0x7f, 0xff, 0xe0, 0xaa, 0x82, 0xff, 0xe7, 0xac, 0x83, 0xff, 0xef, 0xb0, 0x86, 0xff, 0xf3, 0xb8, 0x8b, 0xff, 0xf2, 0xc4, 0x8a, 0xff, 0xf3, 0xd4, 0x88, 0xff, 0xf1, 0xe3, 0x8a, 0xff, 0xec, 0xe9, 0x87, 0xff, 0xed, 0xea, 0x84, 0xff, 0xef, 0xde, 0x7c, 0xff, 0xee, 0xc7, 0x71, 0xff, 0xf1, 0xb7, 0x68, 0xff, 0xf1, 0xb0, 0x61, 0xff, 0xf0, 0xb1, 0x64, 0xff, 0xef, 0xb5, 0x6a, 0xff, 0xf1, 0xc0, 0x74, 0xff, 0xf2, 0xc9, 0x79, 0xff, 0xf1, 0xba, 0x70, 0xff, 0xf1, 0xac, 0x65, 0xff, 0xf3, 0xa7, 0x63, 0xff, 0xf2, 0xa4, 0x62, 0xff, 0xf0, 0xa2, 0x5a, 0xff, 0xf0, 0xa3, 0x55, 0xff, 0xf2, 0xa8, 0x58, 0xff, 0xf3, 0xaa, 0x5b, 0xff, 0xf1, 0xab, 0x5c, 0xff, 0xf2, 0xae, 0x62, 0xff, 0xf0, 0xb4, 0x68, 0xff, 0xf0, 0xbc, 0x6e, 0xff, 0xf2, 0xcf, 0x78, 0xff, 0xee, 0xdf, 0x80, 0xff, 0xe6, 0xe5, 0x8a, 0xff, 0xe5, 0xe9, 0x96, 0xff, 0xe8, 0xe9, 0xa0, 0xff, 0xea, 0xea, 0xa8, 0xff, 0xea, 0xea, 0xae, 0xff, 0xec, 0xe9, 0xaf, 0xff, 0xed, 0xe9, 0xae, 0xff, 0xec, 0xeb, 0xa8, 0xff, 0xe9, 0xeb, 0xa1, 0xff, 0xe7, 0xea, 0x9a, 0xff, 0xeb, 0xe9, 0x92, 0xff, 0xf0, 0xdc, 0x8a, 0xff, 0xf0, 0xc5, 0x81, 0xff, 0xf1, 0xb8, 0x78, 0xff, 0xf2, 0xac, 0x6e, 0xff, 0xe8, 0x9f, 0x65, 0xff, 0xd7, 0x95, 0x5e, 0xff, 0xc8, 0x8d, 0x57, 0xff, 0xc0, 0x86, 0x50, 0xff, 0xb9, 0x7d, 0x49, 0xff, 0xb2, 0x76, 0x44, 0xff, 0xb9, 0x7d, 0x49, 0xff, 0xc3, 0x81, 0x47, 0xff, 0xd5, 0x96, 0x5b, 0xff, 0xe7, 0xad, 0x71, 0xff, 0xf2, 0xb3, 0x74, 0xff, 0xf2, 0xae, 0x6f, 0xff, 0xf1, 0xa7, 0x6a, 0xff, 0xf2, 0xa5, 0x66, 0xff, 0xf1, 0xa5, 0x66, 0xff, 0xf2, 0xad, 0x6d, 0xff, 0xf3, 0xb2, 0x73, 0xff, 0xf3, 0xb1, 0x71, 0xff, 0xf2, 0xb0, 0x6e, 0xff, 0xf2, 0xb2, 0x70, 0xff, 0xf3, 0xb1, 0x6e, 0xff, 0xf2, 0xaf, 0x6c, 0xff, 0xf2, 0xaf, 0x6c, 0xff, 0xf2, 0xac, 0x6a, 0xff, 0xf1, 0xab, 0x69, 0xff, 0xf2, 0xb0, 0x6e, 0xff, 0xf3, 0xb7, 0x74, 0xff, 0xf4, 0xbe, 0x78, 0xff, 0xf4, 0xc3, 0x7c, 0xff, 0xf4, 0xc2, 0x7d, 0xff, 0xf4, 0xc2, 0x7c, 0xff, 0xf3, 0xbd, 0x7c, 0xff, 0xf1, 0xbb, 0x7c, 0xff, 0xf3, 0xb5, 0x76, 0xff, 0xf3, 0xae, 0x70, 0xff, 0xf2, 0xa7, 0x6b, 0xff, 0xe1, 0x9b, 0x65, 0xff, 0xcc, 0x90, 0x5f, 0xff, 0xbe, 0x87, 0x57, 0xff, 0xb9, 0x81, 0x50, 0xff, 0xb3, 0x79, 0x4a, 0xff, 0xae, 0x72, 0x44, 0xff, 0xa9, 0x6d, 0x3e, 0xff, 0xa4, 0x65, 0x37, 0xff, 0x9d, 0x5b, 0x32, 0xff, 0x97, 0x57, 0x2f, 0xff, 0x93, 0x52, 0x2d, 0xff, 0x8f, 0x4f, 0x2b, 0xff, 0x8d, 0x4c, 0x2b, 0xff, 0x8c, 0x4e, 0x2a, 0xff, 0x8e, 0x52, 0x2e, 0xff, 0x8e, 0x53, 0x30, 0xff, 0x8b, 0x50, 0x32, 0xff, 0x8b, 0x4f, 0x30, 0xff, 0x89, 0x4e, 0x2d, 0xff, 0x87, 0x4b, 0x2d, 0xff, 0x86, 0x4a, 0x2b, 0xff, 0x85, 0x4a, 0x2a, 0xff, 0x83, 0x47, 0x28, 0xff, 0x81, 0x45, 0x27, 0xff, 0x81, 0x43, 0x25, 0xff, 0x7e, 0x3f, 0x24, 0xff, 0x7b, 0x3d, 0x22, 0xff, 0x79, 0x3c, 0x1e, 0xff, 0x77, 0x3a, 0x1c, 0xff, 0x75, 0x39, 0x1c, 0xff, 0x72, 0x37, 0x1a, 0xff, 0x6f, 0x32, 0x18, 0xff, 0x6f, 0x35, 0x18, 0xff, 0x6f, 0x34, 0x19, 0xff, 0x6f, 0x34, 0x18, 0xff, 0x6d, 0x34, 0x19, 0xff, 0x6c, 0x34, 0x18, 0xff, 0x69, 0x32, 0x18, 0xff, 0x6b, 0x31, 0x13, 0xff, 0x69, 0x31, 0x13, 0xff, 0x68, 0x31, 0x13, 0xff, 0x67, 0x30, 0x12, 0xff, 0x66, 0x2f, 0x11, 0xff, 0x67, 0x2f, 0x11, 0xff, 0x67, 0x2f, 0x12, 0xff, 0x65, 0x2e, 0x11, 0xff, 0x63, 0x2d, 0x0f, 0xff, 0x62, 0x2b, 0x0d, 0xff, 0x62, 0x2f, 0x11, 0xff, 0x63, 0x2e, 0x10, 0xff, 0x62, 0x2e, 0x10, 0xff, 0x64, 0x2d, 0x10, 0xff, 0x65, 0x2f, 0x11, 0xff, 0x66, 0x2f, 0x12, 0xff, 0x68, 0x2f, 0x13, 0xff, 0x68, 0x30, 0x13, 0xff, 0x67, 0x2f, 0x13, 0xff, 0x69, 0x31, 0x13, 0xff, 0x6c, 0x32, 0x16, 0xff, 0x6d, 0x32, 0x17, 0xff, + 0x6e, 0x34, 0x17, 0xff, 0x6e, 0x34, 0x19, 0xff, 0x70, 0x34, 0x19, 0xff, 0x70, 0x35, 0x19, 0xff, 0x72, 0x36, 0x1c, 0xff, 0x73, 0x38, 0x1c, 0xff, 0x75, 0x38, 0x1e, 0xff, 0x75, 0x3a, 0x1e, 0xff, 0x78, 0x3c, 0x20, 0xff, 0x7a, 0x3d, 0x22, 0xff, 0x7c, 0x3e, 0x23, 0xff, 0x7d, 0x40, 0x26, 0xff, 0x82, 0x44, 0x28, 0xff, 0x86, 0x46, 0x2a, 0xff, 0x86, 0x48, 0x2b, 0xff, 0x87, 0x4b, 0x2b, 0xff, 0x88, 0x49, 0x29, 0xff, 0x89, 0x4c, 0x2b, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x94, 0x55, 0x30, 0xff, 0x97, 0x57, 0x32, 0xff, 0x99, 0x5a, 0x34, 0xff, 0x9a, 0x5b, 0x35, 0xff, 0x9c, 0x5e, 0x34, 0xff, 0x9c, 0x5c, 0x33, 0xff, 0xad, 0x6e, 0x42, 0xff, 0xc1, 0x85, 0x52, 0xff, 0xd3, 0x8f, 0x58, 0xff, 0xde, 0x95, 0x5e, 0xff, 0xee, 0x9c, 0x61, 0xff, 0xf4, 0xa0, 0x64, 0xff, 0xf2, 0xa3, 0x64, 0xff, 0xe3, 0xa1, 0x63, 0xff, 0xbf, 0x88, 0x53, 0xff, 0xc4, 0x8d, 0x59, 0xff, 0xc8, 0x90, 0x58, 0xff, 0xb3, 0x76, 0x48, 0xff, 0xa2, 0x65, 0x3c, 0xff, 0xa0, 0x62, 0x39, 0xff, 0x9f, 0x64, 0x39, 0xff, 0x9f, 0x63, 0x39, 0xff, 0xa0, 0x63, 0x39, 0xff, 0x9f, 0x65, 0x3a, 0xff, 0xa0, 0x64, 0x3a, 0xff, 0xa0, 0x64, 0x39, 0xff, 0x9f, 0x63, 0x38, 0xff, 0x9e, 0x64, 0x37, 0xff, 0x9e, 0x62, 0x38, 0xff, 0x9e, 0x62, 0x38, 0xff, 0x9e, 0x63, 0x37, 0xff, 0x9f, 0x64, 0x38, 0xff, 0x9f, 0x65, 0x38, 0xff, 0xa3, 0x69, 0x3b, 0xff, 0xa2, 0x68, 0x3b, 0xff, 0x9e, 0x64, 0x39, 0xff, 0x9e, 0x65, 0x39, 0xff, 0xa0, 0x68, 0x3d, 0xff, 0x9f, 0x6a, 0x3d, 0xff, 0xa0, 0x6b, 0x3e, 0xff, 0x9e, 0x6c, 0x3f, 0xff, 0x9c, 0x6a, 0x3d, 0xff, 0x9d, 0x6a, 0x3d, 0xff, 0x9c, 0x68, 0x3a, 0xff, 0x9c, 0x67, 0x37, 0xff, 0x9c, 0x67, 0x37, 0xff, 0x9c, 0x6a, 0x3c, 0xff, 0x9c, 0x6b, 0x40, 0xff, 0x9b, 0x69, 0x3e, 0xff, 0x9c, 0x68, 0x3a, 0xff, 0x9c, 0x67, 0x37, 0xff, 0x9d, 0x69, 0x37, 0xff, 0xa0, 0x6a, 0x39, 0xff, 0xa2, 0x6d, 0x3b, 0xff, 0xa4, 0x6c, 0x3a, 0xff, 0xa8, 0x71, 0x3e, 0xff, 0xaa, 0x75, 0x43, 0xff, 0xac, 0x79, 0x47, 0xff, 0xaf, 0x80, 0x4c, 0xff, 0xb1, 0x83, 0x53, 0xff, 0xb3, 0x87, 0x5a, 0xff, 0xb6, 0x8c, 0x5e, 0xff, 0xb9, 0x91, 0x63, 0xff, 0xbb, 0x98, 0x6b, 0xff, 0xbe, 0x9b, 0x70, 0xff, 0xc1, 0x9e, 0x73, 0xff, 0xc4, 0xa1, 0x76, 0xff, 0xc6, 0xa1, 0x78, 0xff, 0xca, 0xa1, 0x79, 0xff, 0xcd, 0xa2, 0x7c, 0xff, 0xd4, 0xa5, 0x7f, 0xff, 0xdb, 0xa7, 0x80, 0xff, 0xe2, 0xa9, 0x83, 0xff, 0xe9, 0xad, 0x84, 0xff, 0xf0, 0xb3, 0x83, 0xff, 0xf2, 0xbe, 0x84, 0xff, 0xf4, 0xcd, 0x86, 0xff, 0xf3, 0xdc, 0x89, 0xff, 0xf2, 0xe5, 0x8a, 0xff, 0xf0, 0xe8, 0x86, 0xff, 0xef, 0xe4, 0x7f, 0xff, 0xf1, 0xd0, 0x76, 0xff, 0xf1, 0xba, 0x6c, 0xff, 0xf0, 0xae, 0x63, 0xff, 0xef, 0xac, 0x61, 0xff, 0xf0, 0xaf, 0x65, 0xff, 0xf2, 0xb7, 0x6d, 0xff, 0xf1, 0xbf, 0x74, 0xff, 0xf1, 0xbb, 0x70, 0xff, 0xf3, 0xb0, 0x66, 0xff, 0xf2, 0xa9, 0x62, 0xff, 0xf1, 0xa5, 0x61, 0xff, 0xf1, 0xa5, 0x58, 0xff, 0xf0, 0xa2, 0x50, 0xff, 0xf1, 0xa2, 0x54, 0xff, 0xf1, 0xa8, 0x5b, 0xff, 0xf0, 0xab, 0x5e, 0xff, 0xf2, 0xaf, 0x62, 0xff, 0xf2, 0xb5, 0x68, 0xff, 0xf1, 0xc0, 0x6f, 0xff, 0xf2, 0xcf, 0x78, 0xff, 0xef, 0xe0, 0x80, 0xff, 0xe7, 0xe8, 0x8b, 0xff, 0xe6, 0xe7, 0x99, 0xff, 0xe9, 0xea, 0xa5, 0xff, 0xea, 0xe9, 0xae, 0xff, 0xed, 0xea, 0xb5, 0xff, 0xef, 0xe9, 0xbb, 0xff, 0xef, 0xe9, 0xbd, 0xff, 0xef, 0xea, 0xb6, 0xff, 0xed, 0xe9, 0xaf, 0xff, 0xea, 0xea, 0xa6, 0xff, 0xe7, 0xea, 0x9d, 0xff, 0xea, 0xea, 0x94, 0xff, 0xef, 0xe0, 0x8a, 0xff, 0xef, 0xc7, 0x80, 0xff, 0xf1, 0xb5, 0x78, 0xff, 0xf3, 0xac, 0x70, 0xff, 0xe9, 0xa2, 0x67, 0xff, 0xd7, 0x96, 0x5f, 0xff, 0xc7, 0x8a, 0x57, 0xff, 0xbf, 0x85, 0x50, 0xff, 0xb9, 0x81, 0x4b, 0xff, 0xb9, 0x7f, 0x49, 0xff, 0xd0, 0x8d, 0x51, 0xff, 0xd2, 0x8d, 0x51, 0xff, 0xcb, 0x8f, 0x54, 0xff, 0xde, 0xa6, 0x6b, 0xff, 0xf1, 0xb3, 0x76, 0xff, 0xf1, 0xaf, 0x6e, 0xff, 0xf0, 0xa9, 0x6a, 0xff, 0xf1, 0xb0, 0x6f, 0xff, 0xf2, 0xb4, 0x73, 0xff, 0xf2, 0xb2, 0x72, 0xff, 0xf2, 0xb2, 0x6f, 0xff, 0xf2, 0xb1, 0x6e, 0xff, 0xf3, 0xb0, 0x6e, 0xff, 0xf3, 0xb1, 0x6f, 0xff, 0xf3, 0xb0, 0x6f, 0xff, 0xf1, 0xad, 0x6c, 0xff, 0xf2, 0xad, 0x6c, 0xff, 0xf2, 0xad, 0x6e, 0xff, 0xf3, 0xb0, 0x72, 0xff, 0xf3, 0xb8, 0x77, 0xff, 0xf3, 0xc5, 0x7e, 0xff, 0xf4, 0xd5, 0x86, 0xff, 0xf4, 0xda, 0x8c, 0xff, 0xf0, 0xde, 0x8f, 0xff, 0xf2, 0xdf, 0x90, 0xff, 0xf3, 0xda, 0x8d, 0xff, 0xf2, 0xcc, 0x87, 0xff, 0xf4, 0xc1, 0x81, 0xff, 0xf4, 0xb7, 0x7a, 0xff, 0xf4, 0xac, 0x73, 0xff, 0xed, 0xa3, 0x69, 0xff, 0xd8, 0x95, 0x61, 0xff, 0xc5, 0x89, 0x59, 0xff, 0xbd, 0x81, 0x53, 0xff, 0xb4, 0x79, 0x4b, 0xff, 0xae, 0x73, 0x45, 0xff, 0xa6, 0x69, 0x3c, 0xff, 0xa0, 0x60, 0x35, 0xff, 0x9b, 0x5b, 0x31, 0xff, 0x98, 0x56, 0x2e, 0xff, 0x93, 0x54, 0x2d, 0xff, 0x92, 0x53, 0x2e, 0xff, 0x92, 0x55, 0x2e, 0xff, 0x90, 0x53, 0x2f, 0xff, 0x8e, 0x53, 0x2f, 0xff, 0x8b, 0x52, 0x2f, 0xff, 0x8b, 0x50, 0x30, 0xff, 0x8a, 0x4f, 0x2e, 0xff, 0x89, 0x4f, 0x2d, 0xff, 0x87, 0x4d, 0x2c, 0xff, 0x87, 0x4b, 0x2b, 0xff, 0x84, 0x48, 0x29, 0xff, 0x83, 0x47, 0x28, 0xff, 0x81, 0x44, 0x27, 0xff, 0x7e, 0x40, 0x25, 0xff, 0x7c, 0x3d, 0x23, 0xff, 0x7a, 0x3d, 0x20, 0xff, 0x79, 0x3a, 0x1f, 0xff, 0x74, 0x38, 0x1c, 0xff, 0x73, 0x37, 0x19, 0xff, 0x70, 0x35, 0x19, 0xff, 0x71, 0x35, 0x1a, 0xff, 0x70, 0x35, 0x1a, 0xff, 0x6f, 0x34, 0x19, 0xff, 0x6f, 0x34, 0x19, 0xff, 0x6d, 0x34, 0x18, 0xff, 0x6d, 0x34, 0x17, 0xff, 0x6b, 0x30, 0x13, 0xff, 0x6a, 0x32, 0x13, 0xff, 0x68, 0x30, 0x12, 0xff, 0x68, 0x31, 0x13, 0xff, 0x67, 0x2f, 0x11, 0xff, 0x68, 0x2f, 0x11, 0xff, 0x65, 0x2d, 0x10, 0xff, 0x62, 0x2f, 0x11, 0xff, 0x61, 0x2c, 0x0f, 0xff, 0x61, 0x2f, 0x0d, 0xff, 0x63, 0x2e, 0x11, 0xff, 0x62, 0x2e, 0x0f, 0xff, 0x62, 0x2e, 0x11, 0xff, 0x64, 0x2d, 0x11, 0xff, 0x65, 0x2d, 0x11, 0xff, 0x66, 0x2f, 0x11, 0xff, 0x68, 0x2f, 0x13, 0xff, 0x67, 0x2f, 0x11, 0xff, 0x68, 0x31, 0x13, 0xff, 0x6a, 0x31, 0x13, 0xff, 0x6c, 0x32, 0x16, 0xff, 0x6d, 0x32, 0x17, 0xff, + 0x6f, 0x35, 0x17, 0xff, 0x6f, 0x34, 0x19, 0xff, 0x70, 0x34, 0x19, 0xff, 0x70, 0x33, 0x19, 0xff, 0x70, 0x35, 0x1a, 0xff, 0x74, 0x38, 0x1c, 0xff, 0x74, 0x3a, 0x1e, 0xff, 0x76, 0x37, 0x1e, 0xff, 0x76, 0x3c, 0x21, 0xff, 0x79, 0x3d, 0x21, 0xff, 0x7b, 0x3d, 0x24, 0xff, 0x7f, 0x42, 0x27, 0xff, 0x83, 0x44, 0x28, 0xff, 0x85, 0x47, 0x29, 0xff, 0x88, 0x4b, 0x2b, 0xff, 0x88, 0x4b, 0x2c, 0xff, 0x87, 0x48, 0x28, 0xff, 0x88, 0x4a, 0x2a, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x94, 0x56, 0x30, 0xff, 0x95, 0x56, 0x32, 0xff, 0x97, 0x5a, 0x33, 0xff, 0x9b, 0x5c, 0x33, 0xff, 0x9a, 0x5d, 0x34, 0xff, 0xa6, 0x66, 0x3d, 0xff, 0xc1, 0x86, 0x55, 0xff, 0xc2, 0x85, 0x52, 0xff, 0xcb, 0x8d, 0x56, 0xff, 0xd0, 0x8e, 0x57, 0xff, 0xd9, 0x92, 0x5c, 0xff, 0xe6, 0x99, 0x60, 0xff, 0xf5, 0xa5, 0x66, 0xff, 0xf0, 0xa6, 0x64, 0xff, 0xdb, 0x9e, 0x63, 0xff, 0xc1, 0x89, 0x52, 0xff, 0xc8, 0x92, 0x5a, 0xff, 0xb0, 0x74, 0x47, 0xff, 0xa2, 0x65, 0x3c, 0xff, 0xa2, 0x64, 0x3c, 0xff, 0xa1, 0x66, 0x3b, 0xff, 0xa0, 0x63, 0x39, 0xff, 0xa1, 0x64, 0x3c, 0xff, 0xa1, 0x63, 0x39, 0xff, 0xa1, 0x65, 0x39, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa1, 0x65, 0x37, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa1, 0x65, 0x39, 0xff, 0x9f, 0x64, 0x39, 0xff, 0xa3, 0x67, 0x3b, 0xff, 0xa7, 0x6c, 0x3d, 0xff, 0xa6, 0x6d, 0x3d, 0xff, 0xa2, 0x69, 0x3c, 0xff, 0xa0, 0x65, 0x39, 0xff, 0xa2, 0x69, 0x3b, 0xff, 0xa1, 0x6a, 0x3d, 0xff, 0xa1, 0x6c, 0x3e, 0xff, 0xa1, 0x6d, 0x3d, 0xff, 0xa1, 0x6d, 0x3e, 0xff, 0x9f, 0x6a, 0x3c, 0xff, 0x9e, 0x68, 0x3a, 0xff, 0x9e, 0x67, 0x38, 0xff, 0x9c, 0x64, 0x34, 0xff, 0x9c, 0x65, 0x34, 0xff, 0x9c, 0x67, 0x39, 0xff, 0x9c, 0x6a, 0x3d, 0xff, 0x9c, 0x6a, 0x3a, 0xff, 0x9c, 0x68, 0x39, 0xff, 0x9c, 0x68, 0x38, 0xff, 0x9e, 0x6a, 0x3a, 0xff, 0xa1, 0x6b, 0x3c, 0xff, 0xa4, 0x70, 0x3e, 0xff, 0xa6, 0x71, 0x41, 0xff, 0xa8, 0x72, 0x41, 0xff, 0xaa, 0x76, 0x45, 0xff, 0xac, 0x7d, 0x4a, 0xff, 0xae, 0x7f, 0x4e, 0xff, 0xb1, 0x83, 0x56, 0xff, 0xb4, 0x87, 0x5a, 0xff, 0xb7, 0x8d, 0x60, 0xff, 0xb9, 0x94, 0x65, 0xff, 0xbc, 0x99, 0x6c, 0xff, 0xbf, 0x9c, 0x6f, 0xff, 0xc1, 0xa0, 0x70, 0xff, 0xc4, 0xa1, 0x74, 0xff, 0xc7, 0xa1, 0x77, 0xff, 0xcc, 0xa2, 0x7a, 0xff, 0xd0, 0xa4, 0x7d, 0xff, 0xd6, 0xa6, 0x7c, 0xff, 0xdc, 0xa8, 0x7a, 0xff, 0xe2, 0xaa, 0x7b, 0xff, 0xea, 0xb0, 0x7d, 0xff, 0xf1, 0xb7, 0x7e, 0xff, 0xf1, 0xc3, 0x81, 0xff, 0xf0, 0xd1, 0x88, 0xff, 0xf2, 0xd9, 0x8b, 0xff, 0xf4, 0xdf, 0x8a, 0xff, 0xf2, 0xdf, 0x82, 0xff, 0xf0, 0xd5, 0x79, 0xff, 0xf0, 0xc0, 0x6f, 0xff, 0xf0, 0xaf, 0x65, 0xff, 0xef, 0xab, 0x60, 0xff, 0xef, 0xab, 0x5e, 0xff, 0xf0, 0xb2, 0x66, 0xff, 0xf3, 0xbb, 0x70, 0xff, 0xf3, 0xb9, 0x6c, 0xff, 0xf2, 0xb0, 0x67, 0xff, 0xf3, 0xa9, 0x61, 0xff, 0xf2, 0xa5, 0x5f, 0xff, 0xf0, 0xa2, 0x59, 0xff, 0xf2, 0xa4, 0x52, 0xff, 0xf2, 0xa7, 0x54, 0xff, 0xf0, 0xa8, 0x57, 0xff, 0xf0, 0xae, 0x5c, 0xff, 0xef, 0xb1, 0x61, 0xff, 0xf0, 0xb2, 0x68, 0xff, 0xf0, 0xb5, 0x6a, 0xff, 0xf2, 0xca, 0x74, 0xff, 0xf1, 0xdc, 0x7f, 0xff, 0xe7, 0xe4, 0x8a, 0xff, 0xe4, 0xea, 0x98, 0xff, 0xe9, 0xe9, 0xa3, 0xff, 0xec, 0xea, 0xae, 0xff, 0xf0, 0xea, 0xbc, 0xff, 0xf2, 0xea, 0xcb, 0xff, 0xf2, 0xea, 0xd1, 0xff, 0xf1, 0xe9, 0xca, 0xff, 0xef, 0xe9, 0xbe, 0xff, 0xee, 0xea, 0xb1, 0xff, 0xeb, 0xea, 0xa9, 0xff, 0xe6, 0xe9, 0x9f, 0xff, 0xe8, 0xea, 0x93, 0xff, 0xf1, 0xe4, 0x8a, 0xff, 0xf4, 0xcb, 0x7f, 0xff, 0xf3, 0xb4, 0x75, 0xff, 0xf1, 0xa8, 0x69, 0xff, 0xe6, 0xa0, 0x62, 0xff, 0xd9, 0x98, 0x5d, 0xff, 0xcf, 0x92, 0x58, 0xff, 0xc4, 0x8a, 0x52, 0xff, 0xbc, 0x83, 0x4e, 0xff, 0xc9, 0x8b, 0x50, 0xff, 0xd8, 0x95, 0x55, 0xff, 0xd1, 0x8e, 0x54, 0xff, 0xc6, 0x87, 0x50, 0xff, 0xd5, 0x9b, 0x61, 0xff, 0xeb, 0xae, 0x71, 0xff, 0xf0, 0xb6, 0x74, 0xff, 0xef, 0xb3, 0x70, 0xff, 0xf1, 0xad, 0x6d, 0xff, 0xf3, 0xaf, 0x6f, 0xff, 0xf2, 0xb1, 0x71, 0xff, 0xf3, 0xb0, 0x70, 0xff, 0xf3, 0xb0, 0x6f, 0xff, 0xf3, 0xae, 0x6f, 0xff, 0xf3, 0xad, 0x6e, 0xff, 0xf3, 0xac, 0x6d, 0xff, 0xf3, 0xac, 0x6d, 0xff, 0xf3, 0xaf, 0x70, 0xff, 0xf2, 0xb4, 0x75, 0xff, 0xf4, 0xc2, 0x7d, 0xff, 0xf4, 0xd6, 0x84, 0xff, 0xf0, 0xe8, 0x91, 0xff, 0xe9, 0xeb, 0x9a, 0xff, 0xe9, 0xeb, 0x9c, 0xff, 0xe9, 0xe9, 0xa0, 0xff, 0xe7, 0xeb, 0x9c, 0xff, 0xe9, 0xea, 0x98, 0xff, 0xf2, 0xe1, 0x91, 0xff, 0xf4, 0xce, 0x88, 0xff, 0xf2, 0xbb, 0x7d, 0xff, 0xf1, 0xaf, 0x76, 0xff, 0xef, 0xa5, 0x6d, 0xff, 0xdc, 0x97, 0x61, 0xff, 0xcc, 0x8c, 0x59, 0xff, 0xc4, 0x87, 0x55, 0xff, 0xb5, 0x78, 0x4a, 0xff, 0xa9, 0x6d, 0x40, 0xff, 0xa4, 0x65, 0x38, 0xff, 0x9e, 0x5f, 0x35, 0xff, 0x9a, 0x5d, 0x32, 0xff, 0x9b, 0x5c, 0x30, 0xff, 0x97, 0x58, 0x2f, 0xff, 0x94, 0x55, 0x2f, 0xff, 0x91, 0x55, 0x2e, 0xff, 0x90, 0x54, 0x2f, 0xff, 0x8e, 0x54, 0x2e, 0xff, 0x8b, 0x51, 0x2d, 0xff, 0x8b, 0x51, 0x2d, 0xff, 0x8b, 0x51, 0x2d, 0xff, 0x8b, 0x4e, 0x2d, 0xff, 0x88, 0x4d, 0x2b, 0xff, 0x87, 0x4c, 0x2a, 0xff, 0x84, 0x47, 0x28, 0xff, 0x84, 0x44, 0x27, 0xff, 0x80, 0x42, 0x26, 0xff, 0x7d, 0x40, 0x25, 0xff, 0x7d, 0x3e, 0x23, 0xff, 0x7a, 0x3c, 0x20, 0xff, 0x77, 0x3a, 0x1d, 0xff, 0x75, 0x37, 0x19, 0xff, 0x73, 0x38, 0x19, 0xff, 0x72, 0x38, 0x1c, 0xff, 0x70, 0x36, 0x1c, 0xff, 0x6f, 0x35, 0x1c, 0xff, 0x70, 0x35, 0x19, 0xff, 0x6e, 0x34, 0x18, 0xff, 0x6f, 0x35, 0x17, 0xff, 0x6b, 0x32, 0x17, 0xff, 0x6a, 0x30, 0x13, 0xff, 0x69, 0x31, 0x11, 0xff, 0x6a, 0x31, 0x13, 0xff, 0x6a, 0x31, 0x13, 0xff, 0x64, 0x2d, 0x11, 0xff, 0x62, 0x2d, 0x11, 0xff, 0x62, 0x2e, 0x11, 0xff, 0x62, 0x2e, 0x11, 0xff, 0x62, 0x2f, 0x0e, 0xff, 0x62, 0x2f, 0x10, 0xff, 0x62, 0x2d, 0x11, 0xff, 0x63, 0x2d, 0x11, 0xff, 0x63, 0x2e, 0x11, 0xff, 0x67, 0x30, 0x11, 0xff, 0x66, 0x2e, 0x11, 0xff, 0x67, 0x30, 0x13, 0xff, 0x68, 0x31, 0x13, 0xff, 0x6a, 0x31, 0x13, 0xff, 0x6c, 0x31, 0x14, 0xff, 0x6c, 0x32, 0x14, 0xff, 0x6d, 0x34, 0x17, 0xff, + 0x6e, 0x31, 0x16, 0xff, 0x6e, 0x34, 0x17, 0xff, 0x6f, 0x35, 0x19, 0xff, 0x6f, 0x33, 0x19, 0xff, 0x71, 0x36, 0x1b, 0xff, 0x73, 0x38, 0x1c, 0xff, 0x73, 0x3a, 0x1b, 0xff, 0x73, 0x3a, 0x1b, 0xff, 0x78, 0x3b, 0x22, 0xff, 0x7c, 0x3f, 0x23, 0xff, 0x7d, 0x40, 0x27, 0xff, 0x81, 0x43, 0x27, 0xff, 0x83, 0x45, 0x28, 0xff, 0x86, 0x48, 0x2a, 0xff, 0x89, 0x4b, 0x2d, 0xff, 0x85, 0x45, 0x27, 0xff, 0x89, 0x4a, 0x29, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x8d, 0x4e, 0x2b, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x92, 0x53, 0x30, 0xff, 0x95, 0x57, 0x32, 0xff, 0x97, 0x59, 0x33, 0xff, 0x98, 0x5c, 0x33, 0xff, 0x9c, 0x5d, 0x36, 0xff, 0xb8, 0x7d, 0x4d, 0xff, 0xc7, 0x8c, 0x57, 0xff, 0xc7, 0x8a, 0x57, 0xff, 0xcd, 0x8e, 0x59, 0xff, 0xcf, 0x8f, 0x59, 0xff, 0xd5, 0x90, 0x5a, 0xff, 0xdf, 0x95, 0x5e, 0xff, 0xe8, 0x98, 0x5f, 0xff, 0xf1, 0xa3, 0x65, 0xff, 0xef, 0xa8, 0x69, 0xff, 0xc2, 0x8d, 0x58, 0xff, 0xc6, 0x8e, 0x58, 0xff, 0xb2, 0x76, 0x48, 0xff, 0xa5, 0x68, 0x3e, 0xff, 0xa3, 0x67, 0x3d, 0xff, 0xa3, 0x67, 0x3d, 0xff, 0xa2, 0x66, 0x3c, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa3, 0x66, 0x3a, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa2, 0x65, 0x39, 0xff, 0xa2, 0x66, 0x3a, 0xff, 0xa3, 0x67, 0x39, 0xff, 0xa2, 0x68, 0x3b, 0xff, 0xa3, 0x68, 0x3b, 0xff, 0xa3, 0x69, 0x3b, 0xff, 0xa7, 0x6e, 0x3e, 0xff, 0xa6, 0x6d, 0x3f, 0xff, 0xa8, 0x6e, 0x41, 0xff, 0xa7, 0x6e, 0x41, 0xff, 0xa4, 0x6b, 0x3e, 0xff, 0xa2, 0x6b, 0x3c, 0xff, 0xa3, 0x6b, 0x3b, 0xff, 0xa3, 0x6c, 0x3c, 0xff, 0xa4, 0x6e, 0x3d, 0xff, 0xa2, 0x6b, 0x3d, 0xff, 0xa1, 0x6a, 0x3a, 0xff, 0xa1, 0x69, 0x39, 0xff, 0x9e, 0x69, 0x38, 0xff, 0x9d, 0x67, 0x36, 0xff, 0x9d, 0x65, 0x36, 0xff, 0x9c, 0x64, 0x35, 0xff, 0x9c, 0x66, 0x37, 0xff, 0x9c, 0x69, 0x3a, 0xff, 0x9b, 0x67, 0x3a, 0xff, 0x9b, 0x69, 0x39, 0xff, 0x9e, 0x6b, 0x3c, 0xff, 0xa0, 0x6c, 0x3d, 0xff, 0xa2, 0x6b, 0x3d, 0xff, 0xa4, 0x6e, 0x40, 0xff, 0xa7, 0x71, 0x42, 0xff, 0xa9, 0x75, 0x44, 0xff, 0xab, 0x77, 0x46, 0xff, 0xad, 0x7c, 0x4b, 0xff, 0xb0, 0x81, 0x51, 0xff, 0xb3, 0x86, 0x56, 0xff, 0xb5, 0x89, 0x58, 0xff, 0xb7, 0x90, 0x5d, 0xff, 0xb9, 0x94, 0x61, 0xff, 0xbc, 0x99, 0x64, 0xff, 0xbf, 0x9e, 0x67, 0xff, 0xc2, 0xa0, 0x6b, 0xff, 0xc4, 0x9f, 0x6b, 0xff, 0xc8, 0xa0, 0x6a, 0xff, 0xcd, 0xa2, 0x6d, 0xff, 0xd1, 0xa5, 0x71, 0xff, 0xd5, 0xa7, 0x71, 0xff, 0xdc, 0xa9, 0x71, 0xff, 0xe3, 0xae, 0x74, 0xff, 0xea, 0xb4, 0x78, 0xff, 0xf1, 0xbc, 0x7b, 0xff, 0xf3, 0xc8, 0x82, 0xff, 0xf2, 0xce, 0x89, 0xff, 0xf1, 0xcf, 0x88, 0xff, 0xf2, 0xd6, 0x83, 0xff, 0xf0, 0xd3, 0x7b, 0xff, 0xef, 0xc1, 0x71, 0xff, 0xef, 0xb2, 0x68, 0xff, 0xf0, 0xab, 0x61, 0xff, 0xf1, 0xaa, 0x60, 0xff, 0xf0, 0xad, 0x63, 0xff, 0xf1, 0xb2, 0x68, 0xff, 0xf2, 0xb6, 0x6c, 0xff, 0xf1, 0xb1, 0x67, 0xff, 0xf3, 0xac, 0x64, 0xff, 0xf3, 0xa7, 0x63, 0xff, 0xf3, 0xa9, 0x5c, 0xff, 0xf1, 0xaa, 0x55, 0xff, 0xf1, 0xa9, 0x5a, 0xff, 0xf3, 0xab, 0x5f, 0xff, 0xf2, 0xab, 0x5e, 0xff, 0xf1, 0xaa, 0x5f, 0xff, 0xf1, 0xaf, 0x62, 0xff, 0xf0, 0xb6, 0x68, 0xff, 0xef, 0xc4, 0x72, 0xff, 0xf2, 0xd9, 0x7d, 0xff, 0xef, 0xe6, 0x87, 0xff, 0xe7, 0xeb, 0x93, 0xff, 0xe8, 0xea, 0xa1, 0xff, 0xea, 0xea, 0xad, 0xff, 0xee, 0xea, 0xbb, 0xff, 0xf0, 0xe8, 0xca, 0xff, 0xf2, 0xe8, 0xd4, 0xff, 0xf2, 0xe8, 0xd7, 0xff, 0xf1, 0xe7, 0xcf, 0xff, 0xf1, 0xe7, 0xc2, 0xff, 0xee, 0xe8, 0xb5, 0xff, 0xec, 0xe9, 0xab, 0xff, 0xe8, 0xe9, 0xa0, 0xff, 0xec, 0xe7, 0x94, 0xff, 0xf0, 0xd9, 0x87, 0xff, 0xf1, 0xc6, 0x7e, 0xff, 0xf1, 0xb9, 0x76, 0xff, 0xf1, 0xae, 0x6d, 0xff, 0xec, 0xa4, 0x63, 0xff, 0xdb, 0x99, 0x58, 0xff, 0xcc, 0x92, 0x54, 0xff, 0xc1, 0x89, 0x50, 0xff, 0xca, 0x8b, 0x52, 0xff, 0xe0, 0x94, 0x59, 0xff, 0xde, 0x96, 0x5b, 0xff, 0xd1, 0x8f, 0x57, 0xff, 0xc5, 0x83, 0x4d, 0xff, 0xcc, 0x93, 0x57, 0xff, 0xe5, 0xaf, 0x70, 0xff, 0xf1, 0xb0, 0x71, 0xff, 0xf3, 0xaf, 0x6f, 0xff, 0xf3, 0xb2, 0x72, 0xff, 0xf1, 0xb5, 0x75, 0xff, 0xf2, 0xb4, 0x74, 0xff, 0xf3, 0xb0, 0x72, 0xff, 0xf3, 0xac, 0x6f, 0xff, 0xf3, 0xab, 0x6f, 0xff, 0xf3, 0xad, 0x71, 0xff, 0xf3, 0xaf, 0x6f, 0xff, 0xf3, 0xb1, 0x71, 0xff, 0xf4, 0xb7, 0x75, 0xff, 0xf2, 0xc3, 0x7b, 0xff, 0xf3, 0xde, 0x86, 0xff, 0xeb, 0xe9, 0x94, 0xff, 0xea, 0xe9, 0xa4, 0xff, 0xee, 0xea, 0xaf, 0xff, 0xee, 0xea, 0xb0, 0xff, 0xed, 0xe9, 0xaf, 0xff, 0xec, 0xeb, 0xaa, 0xff, 0xe9, 0xe9, 0xa6, 0xff, 0xed, 0xec, 0x9c, 0xff, 0xf2, 0xdb, 0x8e, 0xff, 0xf4, 0xc2, 0x82, 0xff, 0xf2, 0xb0, 0x7a, 0xff, 0xf1, 0xa7, 0x6f, 0xff, 0xdd, 0x9a, 0x64, 0xff, 0xc8, 0x8c, 0x59, 0xff, 0xbe, 0x80, 0x50, 0xff, 0xb7, 0x78, 0x49, 0xff, 0xae, 0x70, 0x44, 0xff, 0xa7, 0x69, 0x39, 0xff, 0xa3, 0x63, 0x34, 0xff, 0x9f, 0x5f, 0x32, 0xff, 0x9b, 0x5a, 0x2e, 0xff, 0x98, 0x57, 0x2f, 0xff, 0x96, 0x56, 0x2e, 0xff, 0x93, 0x55, 0x2f, 0xff, 0x8f, 0x53, 0x2f, 0xff, 0x8d, 0x53, 0x2e, 0xff, 0x8b, 0x52, 0x2d, 0xff, 0x8c, 0x53, 0x2d, 0xff, 0x8b, 0x51, 0x2d, 0xff, 0x8a, 0x4e, 0x2c, 0xff, 0x89, 0x4a, 0x2a, 0xff, 0x87, 0x48, 0x29, 0xff, 0x83, 0x44, 0x27, 0xff, 0x82, 0x43, 0x26, 0xff, 0x80, 0x43, 0x25, 0xff, 0x7d, 0x3f, 0x25, 0xff, 0x7a, 0x3c, 0x21, 0xff, 0x76, 0x39, 0x1c, 0xff, 0x75, 0x38, 0x1c, 0xff, 0x75, 0x38, 0x1f, 0xff, 0x73, 0x38, 0x1d, 0xff, 0x72, 0x36, 0x1c, 0xff, 0x70, 0x36, 0x1c, 0xff, 0x70, 0x35, 0x19, 0xff, 0x70, 0x35, 0x18, 0xff, 0x70, 0x33, 0x18, 0xff, 0x6d, 0x34, 0x17, 0xff, 0x6d, 0x32, 0x16, 0xff, 0x6c, 0x31, 0x13, 0xff, 0x68, 0x31, 0x13, 0xff, 0x64, 0x2d, 0x11, 0xff, 0x65, 0x2c, 0x0f, 0xff, 0x63, 0x2c, 0x10, 0xff, 0x64, 0x2d, 0x11, 0xff, 0x62, 0x2e, 0x11, 0xff, 0x62, 0x2e, 0x11, 0xff, 0x62, 0x2e, 0x11, 0xff, 0x62, 0x2a, 0x0d, 0xff, 0x63, 0x2e, 0x11, 0xff, 0x65, 0x2e, 0x11, 0xff, 0x65, 0x2f, 0x11, 0xff, 0x67, 0x30, 0x13, 0xff, 0x6b, 0x32, 0x13, 0xff, 0x69, 0x31, 0x13, 0xff, 0x6a, 0x31, 0x14, 0xff, 0x6d, 0x32, 0x14, 0xff, 0x6d, 0x32, 0x17, 0xff, 0x6d, 0x32, 0x17, 0xff, + 0x6e, 0x34, 0x16, 0xff, 0x6e, 0x34, 0x17, 0xff, 0x6f, 0x34, 0x19, 0xff, 0x6f, 0x35, 0x19, 0xff, 0x72, 0x35, 0x1b, 0xff, 0x71, 0x37, 0x1b, 0xff, 0x73, 0x38, 0x1b, 0xff, 0x74, 0x39, 0x1e, 0xff, 0x78, 0x3b, 0x21, 0xff, 0x7f, 0x41, 0x26, 0xff, 0x81, 0x43, 0x28, 0xff, 0x80, 0x44, 0x28, 0xff, 0x84, 0x45, 0x29, 0xff, 0x87, 0x49, 0x2c, 0xff, 0x84, 0x47, 0x2b, 0xff, 0x85, 0x46, 0x27, 0xff, 0x88, 0x49, 0x29, 0xff, 0x8a, 0x4b, 0x29, 0xff, 0x8d, 0x4e, 0x2b, 0xff, 0x8f, 0x51, 0x2c, 0xff, 0x90, 0x52, 0x2f, 0xff, 0x93, 0x54, 0x30, 0xff, 0x94, 0x57, 0x31, 0xff, 0x95, 0x58, 0x32, 0xff, 0x94, 0x57, 0x30, 0xff, 0xaf, 0x7c, 0x4c, 0xff, 0xcb, 0x9a, 0x65, 0xff, 0xc6, 0x90, 0x5b, 0xff, 0xd4, 0x93, 0x5c, 0xff, 0xd4, 0x93, 0x5b, 0xff, 0xce, 0x91, 0x5a, 0xff, 0xd1, 0x8f, 0x58, 0xff, 0xd7, 0x92, 0x5b, 0xff, 0xe3, 0x97, 0x5f, 0xff, 0xef, 0x9d, 0x62, 0xff, 0xf2, 0xa3, 0x65, 0xff, 0xe9, 0xa5, 0x69, 0xff, 0xbd, 0x89, 0x57, 0xff, 0xb2, 0x78, 0x48, 0xff, 0xa8, 0x6d, 0x42, 0xff, 0xa6, 0x6a, 0x40, 0xff, 0xa5, 0x69, 0x3e, 0xff, 0xa6, 0x69, 0x3e, 0xff, 0xa5, 0x69, 0x3e, 0xff, 0xa5, 0x68, 0x3d, 0xff, 0xa5, 0x68, 0x3d, 0xff, 0xa5, 0x68, 0x3c, 0xff, 0xa6, 0x67, 0x3b, 0xff, 0xa6, 0x67, 0x3b, 0xff, 0xa6, 0x69, 0x3b, 0xff, 0xa5, 0x68, 0x3c, 0xff, 0xa5, 0x6a, 0x3e, 0xff, 0xa8, 0x6f, 0x41, 0xff, 0xab, 0x73, 0x43, 0xff, 0xaa, 0x72, 0x41, 0xff, 0xa9, 0x71, 0x42, 0xff, 0xaa, 0x72, 0x42, 0xff, 0xa7, 0x71, 0x40, 0xff, 0xa6, 0x6f, 0x41, 0xff, 0xa6, 0x6d, 0x3e, 0xff, 0xa6, 0x6d, 0x3c, 0xff, 0xa6, 0x6d, 0x3b, 0xff, 0xa6, 0x6c, 0x3c, 0xff, 0xa5, 0x6d, 0x3c, 0xff, 0xa3, 0x6d, 0x3c, 0xff, 0xa3, 0x6a, 0x39, 0xff, 0xa1, 0x6a, 0x39, 0xff, 0xa1, 0x68, 0x39, 0xff, 0x9f, 0x66, 0x37, 0xff, 0x9e, 0x67, 0x37, 0xff, 0x9c, 0x68, 0x39, 0xff, 0x9b, 0x69, 0x3a, 0xff, 0x9b, 0x69, 0x3a, 0xff, 0x9d, 0x69, 0x3c, 0xff, 0x9f, 0x6c, 0x3d, 0xff, 0xa0, 0x6e, 0x3f, 0xff, 0xa2, 0x6e, 0x41, 0xff, 0xa4, 0x72, 0x41, 0xff, 0xa6, 0x74, 0x43, 0xff, 0xa9, 0x76, 0x44, 0xff, 0xad, 0x7b, 0x45, 0xff, 0xae, 0x7e, 0x48, 0xff, 0xb0, 0x80, 0x4b, 0xff, 0xb3, 0x86, 0x50, 0xff, 0xb6, 0x8d, 0x53, 0xff, 0xb8, 0x90, 0x58, 0xff, 0xba, 0x95, 0x5b, 0xff, 0xbd, 0x9a, 0x5c, 0xff, 0xc0, 0x9d, 0x5d, 0xff, 0xc3, 0x9f, 0x5e, 0xff, 0xc5, 0x9f, 0x5f, 0xff, 0xc9, 0xa0, 0x60, 0xff, 0xcd, 0xa4, 0x65, 0xff, 0xd1, 0xa6, 0x6a, 0xff, 0xd7, 0xa8, 0x6a, 0xff, 0xdf, 0xac, 0x6c, 0xff, 0xe1, 0xae, 0x6e, 0xff, 0xe3, 0xb0, 0x71, 0xff, 0xe8, 0xb7, 0x76, 0xff, 0xed, 0xbd, 0x7a, 0xff, 0xf2, 0xc1, 0x7a, 0xff, 0xf2, 0xc4, 0x78, 0xff, 0xf2, 0xc3, 0x75, 0xff, 0xf0, 0xbf, 0x6f, 0xff, 0xef, 0xb4, 0x69, 0xff, 0xf1, 0xae, 0x62, 0xff, 0xf1, 0xab, 0x5f, 0xff, 0xf1, 0xa8, 0x5d, 0xff, 0xf1, 0xad, 0x63, 0xff, 0xf1, 0xb2, 0x6b, 0xff, 0xf1, 0xb1, 0x6a, 0xff, 0xf2, 0xaf, 0x66, 0xff, 0xf2, 0xa9, 0x63, 0xff, 0xf1, 0xa7, 0x5c, 0xff, 0xf1, 0xab, 0x5a, 0xff, 0xf2, 0xae, 0x5e, 0xff, 0xf1, 0xab, 0x5f, 0xff, 0xf0, 0xaa, 0x5f, 0xff, 0xf0, 0xac, 0x61, 0xff, 0xf1, 0xae, 0x64, 0xff, 0xf2, 0xb3, 0x67, 0xff, 0xf2, 0xb7, 0x6d, 0xff, 0xf3, 0xca, 0x77, 0xff, 0xf0, 0xdc, 0x82, 0xff, 0xe4, 0xd8, 0x88, 0xff, 0xdb, 0xcd, 0x89, 0xff, 0xdb, 0xc7, 0x8d, 0xff, 0xdd, 0xc3, 0x92, 0xff, 0xde, 0xbf, 0x98, 0xff, 0xe2, 0xbc, 0x9a, 0xff, 0xe5, 0xb9, 0x99, 0xff, 0xe5, 0xb7, 0x98, 0xff, 0xe8, 0xba, 0x98, 0xff, 0xeb, 0xc0, 0x95, 0xff, 0xee, 0xc5, 0x92, 0xff, 0xf3, 0xce, 0x90, 0xff, 0xf2, 0xd7, 0x8f, 0xff, 0xf1, 0xd5, 0x88, 0xff, 0xf2, 0xc7, 0x7f, 0xff, 0xf1, 0xbb, 0x78, 0xff, 0xf0, 0xb3, 0x72, 0xff, 0xf1, 0xab, 0x6a, 0xff, 0xe7, 0xa1, 0x62, 0xff, 0xd3, 0x92, 0x54, 0xff, 0xc6, 0x89, 0x4a, 0xff, 0xbc, 0x84, 0x47, 0xff, 0xda, 0x92, 0x55, 0xff, 0xe8, 0x99, 0x5d, 0xff, 0xda, 0x92, 0x59, 0xff, 0xdb, 0x98, 0x5c, 0xff, 0xda, 0x9d, 0x60, 0xff, 0xd0, 0x99, 0x59, 0xff, 0xd5, 0xa0, 0x60, 0xff, 0xe1, 0xaa, 0x69, 0xff, 0xf0, 0xb2, 0x75, 0xff, 0xf3, 0xb7, 0x79, 0xff, 0xf3, 0xb4, 0x76, 0xff, 0xf3, 0xae, 0x73, 0xff, 0xf3, 0xac, 0x70, 0xff, 0xf3, 0xab, 0x6f, 0xff, 0xf3, 0xab, 0x72, 0xff, 0xf3, 0xaf, 0x75, 0xff, 0xf2, 0xb1, 0x77, 0xff, 0xf3, 0xb8, 0x79, 0xff, 0xf4, 0xc5, 0x7e, 0xff, 0xf3, 0xdf, 0x87, 0xff, 0xe9, 0xeb, 0x98, 0xff, 0xed, 0xeb, 0xa8, 0xff, 0xf1, 0xeb, 0xbd, 0xff, 0xf3, 0xec, 0xd1, 0xff, 0xf2, 0xec, 0xd4, 0xff, 0xf2, 0xeb, 0xcb, 0xff, 0xf1, 0xec, 0xba, 0xff, 0xec, 0xec, 0xac, 0xff, 0xeb, 0xeb, 0xa0, 0xff, 0xf3, 0xde, 0x95, 0xff, 0xf2, 0xc4, 0x86, 0xff, 0xf4, 0xb4, 0x7b, 0xff, 0xee, 0xa4, 0x6d, 0xff, 0xd7, 0x95, 0x61, 0xff, 0xc8, 0x89, 0x57, 0xff, 0xbd, 0x7f, 0x50, 0xff, 0xb7, 0x77, 0x48, 0xff, 0xb3, 0x72, 0x41, 0xff, 0xac, 0x6b, 0x3a, 0xff, 0xa5, 0x65, 0x35, 0xff, 0x9d, 0x5d, 0x31, 0xff, 0x99, 0x59, 0x2e, 0xff, 0x97, 0x57, 0x2d, 0xff, 0x95, 0x56, 0x2d, 0xff, 0x93, 0x55, 0x2d, 0xff, 0x90, 0x53, 0x2d, 0xff, 0x8f, 0x50, 0x2c, 0xff, 0x8b, 0x4f, 0x2c, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8b, 0x4e, 0x2b, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x87, 0x4a, 0x29, 0xff, 0x84, 0x45, 0x27, 0xff, 0x84, 0x45, 0x27, 0xff, 0x80, 0x43, 0x27, 0xff, 0x7d, 0x3f, 0x24, 0xff, 0x7a, 0x3d, 0x20, 0xff, 0x79, 0x3d, 0x1f, 0xff, 0x77, 0x3c, 0x21, 0xff, 0x75, 0x3b, 0x21, 0xff, 0x74, 0x3a, 0x1d, 0xff, 0x73, 0x39, 0x1b, 0xff, 0x72, 0x38, 0x1a, 0xff, 0x72, 0x35, 0x19, 0xff, 0x72, 0x35, 0x19, 0xff, 0x6f, 0x35, 0x17, 0xff, 0x6f, 0x35, 0x19, 0xff, 0x6d, 0x34, 0x15, 0xff, 0x6b, 0x32, 0x14, 0xff, 0x68, 0x31, 0x11, 0xff, 0x64, 0x2d, 0x11, 0xff, 0x64, 0x2e, 0x11, 0xff, 0x66, 0x2d, 0x10, 0xff, 0x65, 0x2d, 0x11, 0xff, 0x63, 0x2e, 0x11, 0xff, 0x63, 0x2d, 0x0f, 0xff, 0x64, 0x2d, 0x11, 0xff, 0x64, 0x2c, 0x10, 0xff, 0x64, 0x2e, 0x11, 0xff, 0x65, 0x2f, 0x11, 0xff, 0x67, 0x30, 0x11, 0xff, 0x69, 0x2e, 0x11, 0xff, 0x6a, 0x30, 0x13, 0xff, 0x6a, 0x30, 0x13, 0xff, 0x6a, 0x32, 0x15, 0xff, 0x6c, 0x34, 0x16, 0xff, 0x6e, 0x33, 0x17, 0xff, 0x6e, 0x33, 0x16, 0xff, + 0x6f, 0x35, 0x18, 0xff, 0x6f, 0x33, 0x19, 0xff, 0x6f, 0x33, 0x19, 0xff, 0x6f, 0x34, 0x19, 0xff, 0x70, 0x35, 0x1a, 0xff, 0x71, 0x35, 0x1b, 0xff, 0x73, 0x37, 0x1b, 0xff, 0x76, 0x3b, 0x1e, 0xff, 0x7a, 0x3c, 0x22, 0xff, 0x80, 0x41, 0x27, 0xff, 0x82, 0x43, 0x28, 0xff, 0x82, 0x46, 0x28, 0xff, 0x84, 0x47, 0x2b, 0xff, 0x86, 0x4b, 0x2e, 0xff, 0x7e, 0x41, 0x24, 0xff, 0x85, 0x48, 0x27, 0xff, 0x87, 0x48, 0x28, 0xff, 0x88, 0x4a, 0x2a, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x94, 0x56, 0x31, 0xff, 0x94, 0x57, 0x31, 0xff, 0x91, 0x54, 0x2f, 0xff, 0xad, 0x7c, 0x51, 0xff, 0xc3, 0x9a, 0x6b, 0xff, 0xc2, 0x99, 0x67, 0xff, 0xc8, 0x9a, 0x64, 0xff, 0xd4, 0x9b, 0x62, 0xff, 0xd9, 0x96, 0x5d, 0xff, 0xd3, 0x93, 0x5b, 0xff, 0xd1, 0x91, 0x5a, 0xff, 0xd5, 0x91, 0x5a, 0xff, 0xdd, 0x94, 0x5a, 0xff, 0xea, 0x98, 0x60, 0xff, 0xf1, 0xa1, 0x64, 0xff, 0xee, 0xa5, 0x68, 0xff, 0xcf, 0x94, 0x5e, 0xff, 0xae, 0x73, 0x47, 0xff, 0xad, 0x73, 0x48, 0xff, 0xa7, 0x6c, 0x42, 0xff, 0xa7, 0x6d, 0x42, 0xff, 0xa7, 0x6c, 0x42, 0xff, 0xa7, 0x6c, 0x42, 0xff, 0xa7, 0x6b, 0x41, 0xff, 0xa7, 0x6c, 0x40, 0xff, 0xa7, 0x6b, 0x40, 0xff, 0xa8, 0x69, 0x3d, 0xff, 0xa6, 0x6a, 0x3d, 0xff, 0xa8, 0x6c, 0x3d, 0xff, 0xa7, 0x6b, 0x3d, 0xff, 0xa9, 0x6f, 0x40, 0xff, 0xac, 0x75, 0x48, 0xff, 0xad, 0x76, 0x47, 0xff, 0xac, 0x74, 0x44, 0xff, 0xac, 0x73, 0x43, 0xff, 0xac, 0x73, 0x43, 0xff, 0xac, 0x75, 0x44, 0xff, 0xaa, 0x73, 0x42, 0xff, 0xa9, 0x73, 0x43, 0xff, 0xa7, 0x6e, 0x3e, 0xff, 0xa8, 0x6d, 0x3e, 0xff, 0xa8, 0x6f, 0x3d, 0xff, 0xa6, 0x6d, 0x3d, 0xff, 0xa6, 0x6c, 0x3b, 0xff, 0xa4, 0x6c, 0x39, 0xff, 0xa4, 0x6c, 0x3c, 0xff, 0xa2, 0x6a, 0x3b, 0xff, 0xa1, 0x69, 0x39, 0xff, 0xa0, 0x68, 0x3b, 0xff, 0x9f, 0x66, 0x39, 0xff, 0x9e, 0x68, 0x3b, 0xff, 0x9c, 0x68, 0x3d, 0xff, 0x9b, 0x69, 0x3d, 0xff, 0x9b, 0x69, 0x3c, 0xff, 0x9d, 0x6b, 0x3e, 0xff, 0xa1, 0x6c, 0x40, 0xff, 0xa3, 0x6f, 0x41, 0xff, 0xa5, 0x71, 0x40, 0xff, 0xa7, 0x76, 0x42, 0xff, 0xab, 0x77, 0x43, 0xff, 0xad, 0x7b, 0x44, 0xff, 0xb0, 0x7e, 0x44, 0xff, 0xb2, 0x83, 0x48, 0xff, 0xb4, 0x85, 0x49, 0xff, 0xb6, 0x89, 0x4b, 0xff, 0xb8, 0x8c, 0x4f, 0xff, 0xbb, 0x92, 0x52, 0xff, 0xbe, 0x95, 0x55, 0xff, 0xc0, 0x99, 0x55, 0xff, 0xc2, 0x9a, 0x56, 0xff, 0xc5, 0x9d, 0x59, 0xff, 0xca, 0xa1, 0x5e, 0xff, 0xcf, 0xa5, 0x61, 0xff, 0xce, 0xa5, 0x61, 0xff, 0xce, 0xa3, 0x63, 0xff, 0xd2, 0xa5, 0x65, 0xff, 0xd6, 0xa7, 0x69, 0xff, 0xdc, 0xab, 0x6b, 0xff, 0xe3, 0xb1, 0x6c, 0xff, 0xec, 0xb4, 0x6e, 0xff, 0xf1, 0xb5, 0x6e, 0xff, 0xf2, 0xb5, 0x6d, 0xff, 0xf1, 0xb4, 0x69, 0xff, 0xf2, 0xb0, 0x66, 0xff, 0xf1, 0xac, 0x63, 0xff, 0xef, 0xab, 0x63, 0xff, 0xef, 0xa9, 0x61, 0xff, 0xf1, 0xa9, 0x5f, 0xff, 0xf1, 0xab, 0x65, 0xff, 0xf1, 0xae, 0x6c, 0xff, 0xf1, 0xad, 0x67, 0xff, 0xf3, 0xa9, 0x62, 0xff, 0xf2, 0xa8, 0x5e, 0xff, 0xf0, 0xae, 0x5e, 0xff, 0xf0, 0xb1, 0x63, 0xff, 0xf1, 0xaf, 0x64, 0xff, 0xf3, 0xb0, 0x62, 0xff, 0xf5, 0xb3, 0x67, 0xff, 0xed, 0xaf, 0x67, 0xff, 0xdd, 0xa1, 0x5e, 0xff, 0xd3, 0x9b, 0x5c, 0xff, 0xd3, 0x9b, 0x5e, 0xff, 0xd0, 0x9c, 0x61, 0xff, 0xce, 0x9d, 0x62, 0xff, 0xce, 0x9a, 0x62, 0xff, 0xce, 0x98, 0x65, 0xff, 0xd2, 0x9c, 0x6b, 0xff, 0xd8, 0x9f, 0x71, 0xff, 0xdd, 0xa2, 0x76, 0xff, 0xe0, 0xa2, 0x7a, 0xff, 0xe3, 0xa3, 0x7c, 0xff, 0xe7, 0xa4, 0x7d, 0xff, 0xea, 0xa8, 0x7c, 0xff, 0xed, 0xab, 0x7c, 0xff, 0xf1, 0xae, 0x7c, 0xff, 0xf3, 0xb4, 0x7c, 0xff, 0xf1, 0xb6, 0x7a, 0xff, 0xf1, 0xb8, 0x78, 0xff, 0xf2, 0xb5, 0x78, 0xff, 0xf1, 0xb1, 0x73, 0xff, 0xf2, 0xae, 0x6f, 0xff, 0xf2, 0xaa, 0x6d, 0xff, 0xed, 0xa8, 0x6a, 0xff, 0xe7, 0xa4, 0x66, 0xff, 0xdb, 0x9c, 0x5f, 0xff, 0xdc, 0x99, 0x5d, 0xff, 0xe8, 0x9b, 0x5c, 0xff, 0xe7, 0xa3, 0x61, 0xff, 0xe5, 0xa6, 0x64, 0xff, 0xe2, 0xa4, 0x62, 0xff, 0xda, 0x9e, 0x5e, 0xff, 0xd3, 0x9c, 0x5c, 0xff, 0xcf, 0x9d, 0x5d, 0xff, 0xd2, 0xa1, 0x65, 0xff, 0xeb, 0xb1, 0x73, 0xff, 0xf4, 0xb4, 0x76, 0xff, 0xf3, 0xb2, 0x75, 0xff, 0xf2, 0xad, 0x75, 0xff, 0xf3, 0xac, 0x72, 0xff, 0xf3, 0xad, 0x71, 0xff, 0xf3, 0xad, 0x74, 0xff, 0xf1, 0xb1, 0x79, 0xff, 0xf3, 0xb7, 0x7b, 0xff, 0xf4, 0xc2, 0x7f, 0xff, 0xf5, 0xd7, 0x86, 0xff, 0xec, 0xe8, 0x94, 0xff, 0xeb, 0xeb, 0xa5, 0xff, 0xf0, 0xec, 0xba, 0xff, 0xf3, 0xeb, 0xdc, 0xff, 0xf4, 0xec, 0xe4, 0xff, 0xf4, 0xec, 0xe4, 0xff, 0xf3, 0xea, 0xdd, 0xff, 0xf1, 0xeb, 0xc8, 0xff, 0xed, 0xeb, 0xb3, 0xff, 0xea, 0xeb, 0xa5, 0xff, 0xf2, 0xe3, 0x96, 0xff, 0xf4, 0xc6, 0x86, 0xff, 0xf5, 0xac, 0x74, 0xff, 0xe3, 0x9a, 0x66, 0xff, 0xce, 0x90, 0x5d, 0xff, 0xc6, 0x8b, 0x57, 0xff, 0xbb, 0x80, 0x4d, 0xff, 0xb5, 0x77, 0x46, 0xff, 0xb0, 0x70, 0x3e, 0xff, 0xab, 0x6b, 0x3a, 0xff, 0xa5, 0x64, 0x36, 0xff, 0xa1, 0x5e, 0x33, 0xff, 0x99, 0x59, 0x2e, 0xff, 0x95, 0x55, 0x2c, 0xff, 0x93, 0x53, 0x2c, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x90, 0x4f, 0x2c, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8b, 0x4d, 0x2a, 0xff, 0x8a, 0x4a, 0x2a, 0xff, 0x8a, 0x4b, 0x2a, 0xff, 0x88, 0x4a, 0x29, 0xff, 0x85, 0x46, 0x28, 0xff, 0x83, 0x45, 0x27, 0xff, 0x80, 0x43, 0x24, 0xff, 0x7e, 0x40, 0x23, 0xff, 0x7c, 0x3e, 0x22, 0xff, 0x7a, 0x3d, 0x22, 0xff, 0x79, 0x3d, 0x21, 0xff, 0x75, 0x3b, 0x1e, 0xff, 0x76, 0x3b, 0x1e, 0xff, 0x75, 0x39, 0x1c, 0xff, 0x75, 0x38, 0x1b, 0xff, 0x73, 0x36, 0x1b, 0xff, 0x73, 0x37, 0x1a, 0xff, 0x72, 0x38, 0x19, 0xff, 0x6f, 0x35, 0x19, 0xff, 0x6e, 0x33, 0x18, 0xff, 0x6d, 0x32, 0x16, 0xff, 0x68, 0x30, 0x13, 0xff, 0x66, 0x2f, 0x11, 0xff, 0x65, 0x2e, 0x11, 0xff, 0x65, 0x2d, 0x10, 0xff, 0x65, 0x2d, 0x10, 0xff, 0x65, 0x2d, 0x11, 0xff, 0x64, 0x2d, 0x10, 0xff, 0x66, 0x2d, 0x10, 0xff, 0x66, 0x2d, 0x11, 0xff, 0x66, 0x30, 0x13, 0xff, 0x67, 0x30, 0x11, 0xff, 0x68, 0x30, 0x13, 0xff, 0x6a, 0x30, 0x13, 0xff, 0x6a, 0x2f, 0x14, 0xff, 0x6a, 0x31, 0x13, 0xff, 0x6d, 0x32, 0x15, 0xff, 0x6d, 0x32, 0x17, 0xff, 0x6f, 0x32, 0x17, 0xff, 0x70, 0x34, 0x18, 0xff, + 0x6f, 0x33, 0x19, 0xff, 0x6f, 0x34, 0x19, 0xff, 0x6d, 0x35, 0x19, 0xff, 0x6f, 0x35, 0x19, 0xff, 0x70, 0x35, 0x1b, 0xff, 0x73, 0x36, 0x1b, 0xff, 0x74, 0x39, 0x1e, 0xff, 0x76, 0x3b, 0x1e, 0xff, 0x7a, 0x3d, 0x25, 0xff, 0x7f, 0x43, 0x27, 0xff, 0x82, 0x43, 0x28, 0xff, 0x82, 0x45, 0x2a, 0xff, 0x86, 0x49, 0x2b, 0xff, 0x80, 0x43, 0x28, 0xff, 0x80, 0x42, 0x25, 0xff, 0x84, 0x47, 0x27, 0xff, 0x86, 0x48, 0x28, 0xff, 0x88, 0x49, 0x29, 0xff, 0x89, 0x4a, 0x2b, 0xff, 0x8e, 0x50, 0x2b, 0xff, 0x90, 0x52, 0x2d, 0xff, 0x93, 0x55, 0x2f, 0xff, 0x95, 0x57, 0x32, 0xff, 0xa0, 0x69, 0x40, 0xff, 0xbc, 0x93, 0x64, 0xff, 0xbf, 0x97, 0x6d, 0xff, 0xc2, 0x97, 0x6e, 0xff, 0xca, 0x9f, 0x71, 0xff, 0xd3, 0xa4, 0x6b, 0xff, 0xd5, 0x9b, 0x61, 0xff, 0xda, 0x95, 0x5c, 0xff, 0xd4, 0x91, 0x5a, 0xff, 0xd4, 0x90, 0x59, 0xff, 0xdb, 0x93, 0x5b, 0xff, 0xe7, 0x99, 0x5e, 0xff, 0xf0, 0x9d, 0x63, 0xff, 0xf2, 0xa3, 0x66, 0xff, 0xe2, 0xa1, 0x67, 0xff, 0xb5, 0x7d, 0x4c, 0xff, 0xaf, 0x75, 0x49, 0xff, 0xab, 0x6e, 0x43, 0xff, 0xaa, 0x6e, 0x43, 0xff, 0xab, 0x71, 0x45, 0xff, 0xaa, 0x6f, 0x46, 0xff, 0xab, 0x6f, 0x44, 0xff, 0xac, 0x70, 0x42, 0xff, 0xab, 0x6f, 0x42, 0xff, 0xaa, 0x6e, 0x41, 0xff, 0xab, 0x6e, 0x40, 0xff, 0xab, 0x6e, 0x3e, 0xff, 0xab, 0x6f, 0x40, 0xff, 0xb1, 0x76, 0x44, 0xff, 0xb1, 0x79, 0x49, 0xff, 0xb0, 0x79, 0x4a, 0xff, 0xb1, 0x79, 0x47, 0xff, 0xaf, 0x75, 0x43, 0xff, 0xae, 0x76, 0x43, 0xff, 0xaf, 0x78, 0x45, 0xff, 0xac, 0x75, 0x43, 0xff, 0xac, 0x78, 0x46, 0xff, 0xac, 0x77, 0x48, 0xff, 0xa9, 0x71, 0x42, 0xff, 0xac, 0x72, 0x41, 0xff, 0xa9, 0x70, 0x3e, 0xff, 0xa8, 0x6e, 0x3d, 0xff, 0xa8, 0x6f, 0x3f, 0xff, 0xa6, 0x6e, 0x3f, 0xff, 0xa6, 0x6e, 0x40, 0xff, 0xa4, 0x6e, 0x3e, 0xff, 0xa3, 0x6c, 0x3d, 0xff, 0xa3, 0x6b, 0x3c, 0xff, 0xa0, 0x69, 0x3c, 0xff, 0x9f, 0x69, 0x3c, 0xff, 0x9f, 0x6c, 0x3e, 0xff, 0x9c, 0x6a, 0x3e, 0xff, 0x9d, 0x6b, 0x3e, 0xff, 0xa0, 0x6e, 0x42, 0xff, 0xa2, 0x6f, 0x40, 0xff, 0xa4, 0x71, 0x41, 0xff, 0xa6, 0x72, 0x42, 0xff, 0xa8, 0x77, 0x42, 0xff, 0xaa, 0x78, 0x42, 0xff, 0xad, 0x7a, 0x42, 0xff, 0xaf, 0x7c, 0x42, 0xff, 0xb2, 0x7e, 0x45, 0xff, 0xb5, 0x83, 0x49, 0xff, 0xb7, 0x86, 0x48, 0xff, 0xb9, 0x89, 0x4a, 0xff, 0xbb, 0x8d, 0x4e, 0xff, 0xbf, 0x90, 0x4f, 0xff, 0xc2, 0x95, 0x51, 0xff, 0xc4, 0x97, 0x53, 0xff, 0xc2, 0x97, 0x54, 0xff, 0xc0, 0x96, 0x54, 0xff, 0xc4, 0x9a, 0x58, 0xff, 0xc8, 0x9f, 0x5c, 0xff, 0xcb, 0xa1, 0x61, 0xff, 0xd2, 0xa6, 0x64, 0xff, 0xd9, 0xaa, 0x66, 0xff, 0xdd, 0xab, 0x66, 0xff, 0xe5, 0xb0, 0x66, 0xff, 0xeb, 0xb1, 0x68, 0xff, 0xef, 0xae, 0x69, 0xff, 0xf3, 0xb1, 0x67, 0xff, 0xf0, 0xb0, 0x64, 0xff, 0xef, 0xab, 0x60, 0xff, 0xf1, 0xa9, 0x5d, 0xff, 0xf2, 0xab, 0x5e, 0xff, 0xf2, 0xaa, 0x60, 0xff, 0xf1, 0xa6, 0x60, 0xff, 0xf1, 0xab, 0x68, 0xff, 0xf2, 0xac, 0x6a, 0xff, 0xf2, 0xa7, 0x63, 0xff, 0xf1, 0xae, 0x5f, 0xff, 0xf1, 0xb2, 0x60, 0xff, 0xf3, 0xb4, 0x68, 0xff, 0xed, 0xb3, 0x69, 0xff, 0xd7, 0xa2, 0x5f, 0xff, 0xc2, 0x8a, 0x51, 0xff, 0xbf, 0x83, 0x4c, 0xff, 0xc5, 0x88, 0x52, 0xff, 0xc8, 0x89, 0x54, 0xff, 0xc9, 0x8c, 0x55, 0xff, 0xcc, 0x92, 0x58, 0xff, 0xd1, 0x96, 0x5d, 0xff, 0xd5, 0x9b, 0x62, 0xff, 0xd8, 0xa0, 0x66, 0xff, 0xda, 0xa3, 0x6a, 0xff, 0xda, 0xa4, 0x6f, 0xff, 0xdd, 0xa4, 0x75, 0xff, 0xe1, 0xa4, 0x7a, 0xff, 0xe4, 0xa7, 0x7d, 0xff, 0xe6, 0xa8, 0x7f, 0xff, 0xea, 0xab, 0x7e, 0xff, 0xee, 0xae, 0x7c, 0xff, 0xf3, 0xb0, 0x7b, 0xff, 0xf4, 0xb1, 0x7a, 0xff, 0xf3, 0xb2, 0x79, 0xff, 0xf1, 0xb0, 0x73, 0xff, 0xef, 0xaf, 0x6f, 0xff, 0xf1, 0xb1, 0x72, 0xff, 0xf3, 0xb1, 0x71, 0xff, 0xf2, 0xac, 0x6f, 0xff, 0xf2, 0xa8, 0x6b, 0xff, 0xf2, 0xa6, 0x68, 0xff, 0xf2, 0xa8, 0x69, 0xff, 0xf0, 0xad, 0x6f, 0xff, 0xf3, 0xbf, 0x7a, 0xff, 0xf1, 0xb9, 0x78, 0xff, 0xeb, 0xad, 0x6a, 0xff, 0xe2, 0xa5, 0x63, 0xff, 0xde, 0xa2, 0x64, 0xff, 0xda, 0x9e, 0x61, 0xff, 0xd5, 0x9e, 0x5f, 0xff, 0xcf, 0x9e, 0x61, 0xff, 0xd5, 0xa4, 0x68, 0xff, 0xec, 0xac, 0x71, 0xff, 0xf2, 0xac, 0x76, 0xff, 0xf1, 0xb0, 0x77, 0xff, 0xf2, 0xae, 0x77, 0xff, 0xf3, 0xab, 0x73, 0xff, 0xf3, 0xac, 0x72, 0xff, 0xf3, 0xad, 0x74, 0xff, 0xf2, 0xb1, 0x78, 0xff, 0xf4, 0xbb, 0x7f, 0xff, 0xf2, 0xce, 0x87, 0xff, 0xf1, 0xe7, 0x91, 0xff, 0xeb, 0xec, 0x9f, 0xff, 0xee, 0xeb, 0xb4, 0xff, 0xf3, 0xeb, 0xd5, 0xff, 0xf4, 0xec, 0xe2, 0xff, 0xf4, 0xec, 0xe3, 0xff, 0xf4, 0xec, 0xe3, 0xff, 0xf4, 0xec, 0xe4, 0xff, 0xf3, 0xeb, 0xd2, 0xff, 0xed, 0xeb, 0xb5, 0xff, 0xec, 0xeb, 0xa1, 0xff, 0xf3, 0xcf, 0x8b, 0xff, 0xf4, 0xb5, 0x7c, 0xff, 0xf2, 0xa6, 0x70, 0xff, 0xdc, 0x9a, 0x63, 0xff, 0xc9, 0x8f, 0x5b, 0xff, 0xc4, 0x87, 0x55, 0xff, 0xbb, 0x7e, 0x4b, 0xff, 0xb4, 0x75, 0x43, 0xff, 0xae, 0x6d, 0x3c, 0xff, 0xaa, 0x6a, 0x38, 0xff, 0xa6, 0x64, 0x35, 0xff, 0xa2, 0x61, 0x34, 0xff, 0x9b, 0x59, 0x30, 0xff, 0x93, 0x53, 0x2b, 0xff, 0x90, 0x52, 0x2c, 0xff, 0x8f, 0x50, 0x2a, 0xff, 0x8c, 0x4c, 0x2a, 0xff, 0x8a, 0x4b, 0x2a, 0xff, 0x8e, 0x4f, 0x2b, 0xff, 0x8b, 0x4d, 0x29, 0xff, 0x86, 0x48, 0x28, 0xff, 0x84, 0x47, 0x27, 0xff, 0x84, 0x45, 0x27, 0xff, 0x81, 0x43, 0x26, 0xff, 0x7e, 0x3f, 0x23, 0xff, 0x7c, 0x3e, 0x23, 0xff, 0x7a, 0x3d, 0x23, 0xff, 0x7a, 0x3d, 0x21, 0xff, 0x7a, 0x3b, 0x21, 0xff, 0x79, 0x3b, 0x20, 0xff, 0x78, 0x3b, 0x1e, 0xff, 0x75, 0x3a, 0x1b, 0xff, 0x75, 0x38, 0x1b, 0xff, 0x73, 0x36, 0x1a, 0xff, 0x71, 0x35, 0x19, 0xff, 0x6f, 0x33, 0x19, 0xff, 0x6f, 0x34, 0x18, 0xff, 0x6d, 0x31, 0x16, 0xff, 0x6b, 0x32, 0x16, 0xff, 0x68, 0x30, 0x10, 0xff, 0x65, 0x2f, 0x10, 0xff, 0x65, 0x2d, 0x10, 0xff, 0x67, 0x30, 0x10, 0xff, 0x65, 0x2d, 0x10, 0xff, 0x66, 0x2f, 0x10, 0xff, 0x68, 0x30, 0x13, 0xff, 0x66, 0x30, 0x13, 0xff, 0x68, 0x30, 0x13, 0xff, 0x68, 0x30, 0x11, 0xff, 0x69, 0x30, 0x13, 0xff, 0x69, 0x30, 0x14, 0xff, 0x6a, 0x32, 0x16, 0xff, 0x6b, 0x31, 0x14, 0xff, 0x6d, 0x32, 0x16, 0xff, 0x6d, 0x33, 0x19, 0xff, 0x6d, 0x34, 0x19, 0xff, 0x6f, 0x33, 0x19, 0xff, + 0x6d, 0x33, 0x18, 0xff, 0x6f, 0x34, 0x19, 0xff, 0x6f, 0x33, 0x19, 0xff, 0x70, 0x34, 0x19, 0xff, 0x71, 0x35, 0x1b, 0xff, 0x72, 0x37, 0x1b, 0xff, 0x73, 0x39, 0x1e, 0xff, 0x78, 0x3b, 0x20, 0xff, 0x7b, 0x3f, 0x22, 0xff, 0x81, 0x42, 0x27, 0xff, 0x81, 0x45, 0x29, 0xff, 0x83, 0x48, 0x2b, 0xff, 0x85, 0x4a, 0x2d, 0xff, 0x7d, 0x40, 0x23, 0xff, 0x82, 0x43, 0x25, 0xff, 0x82, 0x45, 0x26, 0xff, 0x85, 0x48, 0x27, 0xff, 0x87, 0x49, 0x28, 0xff, 0x8a, 0x4a, 0x2a, 0xff, 0x8b, 0x4e, 0x2a, 0xff, 0x8f, 0x50, 0x2b, 0xff, 0x94, 0x53, 0x30, 0xff, 0x9e, 0x65, 0x3c, 0xff, 0xbd, 0x90, 0x61, 0xff, 0xc1, 0x97, 0x6d, 0xff, 0xbf, 0x95, 0x6f, 0xff, 0xc3, 0x98, 0x77, 0xff, 0xca, 0x9f, 0x7b, 0xff, 0xcf, 0xa3, 0x75, 0xff, 0xd3, 0xa3, 0x6b, 0xff, 0xd8, 0x99, 0x5f, 0xff, 0xd8, 0x93, 0x5a, 0xff, 0xd0, 0x91, 0x56, 0xff, 0xd8, 0x91, 0x5a, 0xff, 0xe0, 0x96, 0x5c, 0xff, 0xee, 0x9d, 0x61, 0xff, 0xf4, 0xa3, 0x65, 0xff, 0xee, 0xa6, 0x68, 0xff, 0xc4, 0x86, 0x53, 0xff, 0xb1, 0x77, 0x4a, 0xff, 0xaf, 0x71, 0x45, 0xff, 0xad, 0x73, 0x45, 0xff, 0xac, 0x73, 0x48, 0xff, 0xae, 0x74, 0x4a, 0xff, 0xad, 0x73, 0x4a, 0xff, 0xae, 0x73, 0x49, 0xff, 0xad, 0x72, 0x47, 0xff, 0xac, 0x74, 0x44, 0xff, 0xab, 0x72, 0x43, 0xff, 0xac, 0x71, 0x43, 0xff, 0xaf, 0x75, 0x43, 0xff, 0xb2, 0x78, 0x47, 0xff, 0xb3, 0x7b, 0x4a, 0xff, 0xb5, 0x7d, 0x4d, 0xff, 0xb2, 0x7a, 0x4b, 0xff, 0xb2, 0x78, 0x47, 0xff, 0xb2, 0x77, 0x45, 0xff, 0xb3, 0x7a, 0x46, 0xff, 0xb0, 0x7a, 0x48, 0xff, 0xae, 0x78, 0x49, 0xff, 0xb1, 0x7d, 0x4c, 0xff, 0xad, 0x79, 0x4b, 0xff, 0xaa, 0x74, 0x44, 0xff, 0xab, 0x73, 0x42, 0xff, 0xaa, 0x70, 0x41, 0xff, 0xa9, 0x6f, 0x42, 0xff, 0xa9, 0x72, 0x40, 0xff, 0xa9, 0x72, 0x41, 0xff, 0xa7, 0x6d, 0x3f, 0xff, 0xa5, 0x6f, 0x3f, 0xff, 0xa4, 0x6d, 0x3d, 0xff, 0xa3, 0x6c, 0x3d, 0xff, 0xa2, 0x6b, 0x3e, 0xff, 0xa1, 0x69, 0x3d, 0xff, 0xa1, 0x6e, 0x3f, 0xff, 0xa0, 0x6c, 0x3f, 0xff, 0x9f, 0x6d, 0x3f, 0xff, 0xa1, 0x6e, 0x42, 0xff, 0xa3, 0x70, 0x42, 0xff, 0xa5, 0x74, 0x41, 0xff, 0xa7, 0x74, 0x40, 0xff, 0xa9, 0x75, 0x41, 0xff, 0xab, 0x76, 0x40, 0xff, 0xad, 0x7b, 0x41, 0xff, 0xb0, 0x7d, 0x43, 0xff, 0xb3, 0x7f, 0x46, 0xff, 0xb5, 0x81, 0x47, 0xff, 0xb7, 0x85, 0x47, 0xff, 0xba, 0x89, 0x4a, 0xff, 0xbd, 0x8b, 0x4c, 0xff, 0xbd, 0x89, 0x4c, 0xff, 0xba, 0x87, 0x49, 0xff, 0xb9, 0x89, 0x4b, 0xff, 0xbe, 0x8e, 0x4e, 0xff, 0xc1, 0x91, 0x51, 0xff, 0xc5, 0x97, 0x59, 0xff, 0xca, 0x9b, 0x5d, 0xff, 0xce, 0x9d, 0x5d, 0xff, 0xd4, 0xa0, 0x60, 0xff, 0xdb, 0xa4, 0x60, 0xff, 0xdf, 0xa5, 0x60, 0xff, 0xe6, 0xa7, 0x60, 0xff, 0xec, 0xab, 0x62, 0xff, 0xf1, 0xaa, 0x61, 0xff, 0xf1, 0xa8, 0x60, 0xff, 0xf1, 0xa8, 0x5f, 0xff, 0xf2, 0xa4, 0x5c, 0xff, 0xf0, 0xa3, 0x5d, 0xff, 0xef, 0xa3, 0x5e, 0xff, 0xf3, 0xa4, 0x60, 0xff, 0xf0, 0xa7, 0x63, 0xff, 0xf1, 0xab, 0x68, 0xff, 0xef, 0xa9, 0x65, 0xff, 0xea, 0xa9, 0x61, 0xff, 0xdf, 0xa6, 0x60, 0xff, 0xc2, 0x8c, 0x53, 0xff, 0xb7, 0x7d, 0x4c, 0xff, 0xbf, 0x82, 0x4e, 0xff, 0xc2, 0x84, 0x50, 0xff, 0xc4, 0x87, 0x52, 0xff, 0xc5, 0x88, 0x51, 0xff, 0xc9, 0x8b, 0x53, 0xff, 0xcd, 0x8f, 0x56, 0xff, 0xcd, 0x91, 0x58, 0xff, 0xce, 0x92, 0x59, 0xff, 0xd0, 0x97, 0x5d, 0xff, 0xd1, 0x9c, 0x61, 0xff, 0xd4, 0xa0, 0x65, 0xff, 0xd6, 0xa3, 0x6a, 0xff, 0xdb, 0xa4, 0x70, 0xff, 0xdf, 0xa6, 0x75, 0xff, 0xe1, 0xa7, 0x78, 0xff, 0xe4, 0xa8, 0x79, 0xff, 0xe9, 0xac, 0x7c, 0xff, 0xf0, 0xb0, 0x7e, 0xff, 0xf4, 0xb1, 0x7c, 0xff, 0xf4, 0xb2, 0x79, 0xff, 0xf3, 0xb5, 0x78, 0xff, 0xf2, 0xb3, 0x77, 0xff, 0xf3, 0xb2, 0x72, 0xff, 0xf3, 0xab, 0x6e, 0xff, 0xf0, 0xa5, 0x69, 0xff, 0xf0, 0xa9, 0x6c, 0xff, 0xf3, 0xa7, 0x6d, 0xff, 0xf2, 0xa3, 0x68, 0xff, 0xf1, 0xa5, 0x65, 0xff, 0xf0, 0xab, 0x68, 0xff, 0xf0, 0xb5, 0x6f, 0xff, 0xf3, 0xc3, 0x76, 0xff, 0xf4, 0xc6, 0x7b, 0xff, 0xf3, 0xbc, 0x7a, 0xff, 0xee, 0xb2, 0x70, 0xff, 0xe1, 0xa5, 0x64, 0xff, 0xdc, 0xa2, 0x60, 0xff, 0xd6, 0xa3, 0x62, 0xff, 0xd3, 0xa6, 0x67, 0xff, 0xe7, 0xac, 0x71, 0xff, 0xf1, 0xac, 0x76, 0xff, 0xf3, 0xaa, 0x77, 0xff, 0xf4, 0xab, 0x79, 0xff, 0xf1, 0xad, 0x7a, 0xff, 0xf2, 0xab, 0x76, 0xff, 0xf3, 0xaa, 0x75, 0xff, 0xf3, 0xae, 0x77, 0xff, 0xf2, 0xb2, 0x7c, 0xff, 0xf1, 0xc3, 0x87, 0xff, 0xf1, 0xe0, 0x93, 0xff, 0xeb, 0xec, 0xa0, 0xff, 0xec, 0xeb, 0xad, 0xff, 0xf2, 0xec, 0xcc, 0xff, 0xf4, 0xec, 0xe1, 0xff, 0xf4, 0xec, 0xe4, 0xff, 0xf4, 0xec, 0xe3, 0xff, 0xf4, 0xec, 0xe4, 0xff, 0xf3, 0xec, 0xdb, 0xff, 0xf0, 0xea, 0xc2, 0xff, 0xeb, 0xec, 0xab, 0xff, 0xf0, 0xe5, 0x99, 0xff, 0xf4, 0xc9, 0x87, 0xff, 0xf5, 0xb2, 0x78, 0xff, 0xed, 0xa3, 0x6d, 0xff, 0xd7, 0x95, 0x5f, 0xff, 0xcb, 0x8d, 0x5b, 0xff, 0xc2, 0x85, 0x51, 0xff, 0xb9, 0x7c, 0x4a, 0xff, 0xb1, 0x71, 0x42, 0xff, 0xad, 0x6c, 0x3b, 0xff, 0xaa, 0x66, 0x37, 0xff, 0xa4, 0x62, 0x35, 0xff, 0xa1, 0x60, 0x33, 0xff, 0x9f, 0x5f, 0x33, 0xff, 0x95, 0x54, 0x2c, 0xff, 0x90, 0x4e, 0x2b, 0xff, 0x8e, 0x4f, 0x2a, 0xff, 0x93, 0x54, 0x2c, 0xff, 0x91, 0x53, 0x2b, 0xff, 0x89, 0x4b, 0x28, 0xff, 0x87, 0x46, 0x28, 0xff, 0x84, 0x45, 0x27, 0xff, 0x81, 0x42, 0x26, 0xff, 0x7d, 0x3f, 0x25, 0xff, 0x7e, 0x3e, 0x25, 0xff, 0x7d, 0x3f, 0x24, 0xff, 0x7d, 0x3e, 0x23, 0xff, 0x7c, 0x3f, 0x23, 0xff, 0x7d, 0x3e, 0x23, 0xff, 0x7a, 0x3d, 0x20, 0xff, 0x79, 0x3b, 0x1f, 0xff, 0x78, 0x3b, 0x1e, 0xff, 0x75, 0x39, 0x1b, 0xff, 0x73, 0x39, 0x1b, 0xff, 0x71, 0x36, 0x1b, 0xff, 0x71, 0x36, 0x19, 0xff, 0x6f, 0x35, 0x18, 0xff, 0x6e, 0x35, 0x15, 0xff, 0x6d, 0x32, 0x16, 0xff, 0x6a, 0x30, 0x13, 0xff, 0x68, 0x30, 0x11, 0xff, 0x67, 0x2f, 0x11, 0xff, 0x67, 0x30, 0x11, 0xff, 0x68, 0x30, 0x11, 0xff, 0x68, 0x30, 0x13, 0xff, 0x68, 0x2e, 0x11, 0xff, 0x6b, 0x31, 0x13, 0xff, 0x69, 0x30, 0x12, 0xff, 0x69, 0x30, 0x13, 0xff, 0x69, 0x31, 0x15, 0xff, 0x6b, 0x30, 0x13, 0xff, 0x6c, 0x32, 0x16, 0xff, 0x6b, 0x31, 0x13, 0xff, 0x6d, 0x32, 0x16, 0xff, 0x6d, 0x33, 0x18, 0xff, 0x6f, 0x34, 0x19, 0xff, 0x6f, 0x33, 0x19, 0xff, + 0x6f, 0x33, 0x17, 0xff, 0x6f, 0x33, 0x18, 0xff, 0x6f, 0x35, 0x18, 0xff, 0x71, 0x34, 0x19, 0xff, 0x70, 0x35, 0x1b, 0xff, 0x72, 0x37, 0x1b, 0xff, 0x76, 0x3a, 0x1f, 0xff, 0x77, 0x3b, 0x22, 0xff, 0x7c, 0x3d, 0x24, 0xff, 0x82, 0x45, 0x29, 0xff, 0x82, 0x46, 0x2a, 0xff, 0x83, 0x48, 0x2b, 0xff, 0x81, 0x43, 0x28, 0xff, 0x7d, 0x3f, 0x23, 0xff, 0x7f, 0x41, 0x24, 0xff, 0x82, 0x44, 0x25, 0xff, 0x84, 0x46, 0x27, 0xff, 0x87, 0x47, 0x28, 0xff, 0x88, 0x4a, 0x29, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8d, 0x4f, 0x2a, 0xff, 0x96, 0x5a, 0x32, 0xff, 0xb8, 0x82, 0x51, 0xff, 0xbe, 0x93, 0x60, 0xff, 0xbe, 0x95, 0x69, 0xff, 0xc1, 0x97, 0x73, 0xff, 0xc3, 0x99, 0x7a, 0xff, 0xc8, 0x9e, 0x7e, 0xff, 0xcd, 0xa0, 0x7d, 0xff, 0xd1, 0xa5, 0x73, 0xff, 0xd6, 0xa0, 0x65, 0xff, 0xda, 0x97, 0x5d, 0xff, 0xd5, 0x94, 0x5a, 0xff, 0xd3, 0x90, 0x56, 0xff, 0xdc, 0x93, 0x5b, 0xff, 0xea, 0x98, 0x5f, 0xff, 0xf3, 0xa4, 0x65, 0xff, 0xf1, 0xa8, 0x69, 0xff, 0xcf, 0x95, 0x5e, 0xff, 0xb3, 0x78, 0x4a, 0xff, 0xb3, 0x75, 0x48, 0xff, 0xb1, 0x74, 0x49, 0xff, 0xb1, 0x77, 0x4a, 0xff, 0xb1, 0x78, 0x4c, 0xff, 0xb0, 0x79, 0x4e, 0xff, 0xb1, 0x7a, 0x4f, 0xff, 0xaf, 0x77, 0x49, 0xff, 0xaf, 0x77, 0x49, 0xff, 0xad, 0x76, 0x47, 0xff, 0xaf, 0x75, 0x45, 0xff, 0xb1, 0x75, 0x45, 0xff, 0xb3, 0x79, 0x48, 0xff, 0xb7, 0x7f, 0x4b, 0xff, 0xb6, 0x7f, 0x4d, 0xff, 0xb7, 0x80, 0x4d, 0xff, 0xb5, 0x7d, 0x49, 0xff, 0xb4, 0x7a, 0x48, 0xff, 0xb5, 0x7d, 0x49, 0xff, 0xb5, 0x7e, 0x4a, 0xff, 0xb3, 0x7d, 0x49, 0xff, 0xb2, 0x80, 0x4d, 0xff, 0xb2, 0x80, 0x51, 0xff, 0xaf, 0x7b, 0x4d, 0xff, 0xac, 0x76, 0x48, 0xff, 0xac, 0x77, 0x45, 0xff, 0xab, 0x75, 0x43, 0xff, 0xaa, 0x72, 0x41, 0xff, 0xac, 0x74, 0x43, 0xff, 0xaa, 0x72, 0x41, 0xff, 0xaa, 0x71, 0x41, 0xff, 0xa7, 0x6e, 0x40, 0xff, 0xa5, 0x6b, 0x3e, 0xff, 0xa4, 0x6c, 0x3e, 0xff, 0xa4, 0x6d, 0x3e, 0xff, 0xa2, 0x6b, 0x3e, 0xff, 0xa0, 0x6d, 0x41, 0xff, 0xa0, 0x6e, 0x42, 0xff, 0xa1, 0x6e, 0x40, 0xff, 0xa2, 0x70, 0x41, 0xff, 0xa4, 0x72, 0x41, 0xff, 0xa6, 0x75, 0x42, 0xff, 0xa7, 0x77, 0x42, 0xff, 0xaa, 0x78, 0x41, 0xff, 0xac, 0x79, 0x42, 0xff, 0xae, 0x7c, 0x43, 0xff, 0xb0, 0x7d, 0x43, 0xff, 0xb4, 0x81, 0x45, 0xff, 0xb5, 0x82, 0x47, 0xff, 0xb7, 0x83, 0x48, 0xff, 0xb4, 0x7f, 0x45, 0xff, 0xb2, 0x7d, 0x43, 0xff, 0xb6, 0x81, 0x44, 0xff, 0xb9, 0x84, 0x47, 0xff, 0xbc, 0x87, 0x49, 0xff, 0xbf, 0x8a, 0x4c, 0xff, 0xc3, 0x90, 0x53, 0xff, 0xc7, 0x95, 0x57, 0xff, 0xcb, 0x99, 0x58, 0xff, 0xd0, 0x9c, 0x59, 0xff, 0xd5, 0x9d, 0x5a, 0xff, 0xdc, 0x9f, 0x5a, 0xff, 0xe1, 0xa1, 0x5a, 0xff, 0xe5, 0xa0, 0x5a, 0xff, 0xeb, 0x9f, 0x5a, 0xff, 0xf0, 0xa1, 0x5c, 0xff, 0xf2, 0xa3, 0x5e, 0xff, 0xf1, 0xa0, 0x5d, 0xff, 0xf1, 0xa1, 0x5c, 0xff, 0xf2, 0xa3, 0x5c, 0xff, 0xf3, 0xa4, 0x5f, 0xff, 0xf1, 0xa3, 0x5f, 0xff, 0xe9, 0x9d, 0x5e, 0xff, 0xda, 0x93, 0x5a, 0xff, 0xc2, 0x84, 0x50, 0xff, 0xb7, 0x7e, 0x4a, 0xff, 0xbc, 0x81, 0x4d, 0xff, 0xbf, 0x84, 0x50, 0xff, 0xc1, 0x85, 0x51, 0xff, 0xc2, 0x84, 0x51, 0xff, 0xc2, 0x84, 0x50, 0xff, 0xc3, 0x86, 0x4f, 0xff, 0xc5, 0x8a, 0x51, 0xff, 0xc6, 0x8a, 0x53, 0xff, 0xc7, 0x8b, 0x53, 0xff, 0xcb, 0x8e, 0x56, 0xff, 0xce, 0x93, 0x59, 0xff, 0xd0, 0x98, 0x5c, 0xff, 0xd3, 0x9b, 0x5f, 0xff, 0xd6, 0xa1, 0x64, 0xff, 0xd9, 0xa5, 0x69, 0xff, 0xdd, 0xa6, 0x6e, 0xff, 0xe0, 0xa8, 0x73, 0xff, 0xe2, 0xa8, 0x76, 0xff, 0xe9, 0xac, 0x7a, 0xff, 0xf1, 0xb3, 0x7e, 0xff, 0xf4, 0xb4, 0x7d, 0xff, 0xf2, 0xb3, 0x7a, 0xff, 0xf2, 0xb6, 0x78, 0xff, 0xf2, 0xb6, 0x77, 0xff, 0xf3, 0xb3, 0x74, 0xff, 0xf3, 0xaf, 0x6f, 0xff, 0xf2, 0xa9, 0x6c, 0xff, 0xf3, 0xa1, 0x67, 0xff, 0xf0, 0x9e, 0x64, 0xff, 0xef, 0xa4, 0x68, 0xff, 0xef, 0xad, 0x6c, 0xff, 0xf0, 0xb0, 0x6c, 0xff, 0xf0, 0xaf, 0x6b, 0xff, 0xf1, 0xb2, 0x6c, 0xff, 0xf2, 0xb4, 0x6f, 0xff, 0xf2, 0xb6, 0x71, 0xff, 0xf3, 0xb6, 0x73, 0xff, 0xf4, 0xb4, 0x72, 0xff, 0xf3, 0xb1, 0x71, 0xff, 0xeb, 0xad, 0x6e, 0xff, 0xdb, 0xa9, 0x6c, 0xff, 0xdd, 0xa9, 0x6e, 0xff, 0xed, 0xab, 0x73, 0xff, 0xf2, 0xad, 0x78, 0xff, 0xf3, 0xac, 0x78, 0xff, 0xf3, 0xac, 0x78, 0xff, 0xf2, 0xab, 0x78, 0xff, 0xf3, 0xab, 0x78, 0xff, 0xf4, 0xab, 0x78, 0xff, 0xf3, 0xb1, 0x7b, 0xff, 0xf3, 0xb8, 0x85, 0xff, 0xf3, 0xd0, 0x90, 0xff, 0xef, 0xe6, 0x9c, 0xff, 0xeb, 0xec, 0xa9, 0xff, 0xef, 0xea, 0xbd, 0xff, 0xf3, 0xeb, 0xdd, 0xff, 0xf4, 0xec, 0xe4, 0xff, 0xf4, 0xec, 0xe4, 0xff, 0xf4, 0xec, 0xe4, 0xff, 0xf4, 0xec, 0xe5, 0xff, 0xf3, 0xeb, 0xd9, 0xff, 0xf0, 0xeb, 0xbd, 0xff, 0xea, 0xeb, 0xa7, 0xff, 0xf0, 0xdd, 0x93, 0xff, 0xf4, 0xc3, 0x83, 0xff, 0xf3, 0xb0, 0x76, 0xff, 0xe6, 0xa0, 0x69, 0xff, 0xce, 0x8f, 0x5c, 0xff, 0xc4, 0x8a, 0x57, 0xff, 0xbf, 0x83, 0x52, 0xff, 0xb6, 0x77, 0x47, 0xff, 0xb0, 0x6f, 0x40, 0xff, 0xac, 0x6b, 0x3b, 0xff, 0xa7, 0x66, 0x37, 0xff, 0xa3, 0x62, 0x34, 0xff, 0x9f, 0x5d, 0x32, 0xff, 0x9d, 0x5d, 0x32, 0xff, 0x9b, 0x5a, 0x31, 0xff, 0x97, 0x56, 0x2c, 0xff, 0x94, 0x54, 0x2c, 0xff, 0x90, 0x51, 0x2b, 0xff, 0x89, 0x4b, 0x28, 0xff, 0x87, 0x48, 0x28, 0xff, 0x85, 0x46, 0x27, 0xff, 0x80, 0x41, 0x26, 0xff, 0x7e, 0x3f, 0x25, 0xff, 0x7d, 0x3e, 0x24, 0xff, 0x7c, 0x3e, 0x22, 0xff, 0x7d, 0x3e, 0x23, 0xff, 0x7e, 0x41, 0x24, 0xff, 0x7d, 0x40, 0x25, 0xff, 0x7c, 0x3e, 0x23, 0xff, 0x7b, 0x3d, 0x21, 0xff, 0x78, 0x3b, 0x1e, 0xff, 0x77, 0x3a, 0x1e, 0xff, 0x75, 0x3b, 0x1b, 0xff, 0x73, 0x38, 0x1b, 0xff, 0x73, 0x38, 0x1b, 0xff, 0x73, 0x34, 0x19, 0xff, 0x6f, 0x34, 0x17, 0xff, 0x6d, 0x34, 0x16, 0xff, 0x6b, 0x31, 0x13, 0xff, 0x6b, 0x2f, 0x12, 0xff, 0x6a, 0x2e, 0x11, 0xff, 0x67, 0x30, 0x13, 0xff, 0x68, 0x30, 0x13, 0xff, 0x67, 0x30, 0x11, 0xff, 0x68, 0x30, 0x13, 0xff, 0x67, 0x31, 0x11, 0xff, 0x68, 0x2f, 0x12, 0xff, 0x69, 0x30, 0x13, 0xff, 0x6b, 0x31, 0x13, 0xff, 0x69, 0x32, 0x15, 0xff, 0x6b, 0x31, 0x15, 0xff, 0x6a, 0x30, 0x13, 0xff, 0x6b, 0x31, 0x15, 0xff, 0x6d, 0x31, 0x16, 0xff, 0x6c, 0x32, 0x18, 0xff, 0x6d, 0x32, 0x17, 0xff, + 0x6f, 0x33, 0x19, 0xff, 0x6f, 0x34, 0x18, 0xff, 0x6f, 0x35, 0x1a, 0xff, 0x71, 0x37, 0x1a, 0xff, 0x73, 0x36, 0x1b, 0xff, 0x74, 0x39, 0x1e, 0xff, 0x77, 0x3c, 0x20, 0xff, 0x79, 0x3b, 0x23, 0xff, 0x7e, 0x41, 0x25, 0xff, 0x82, 0x46, 0x2a, 0xff, 0x83, 0x47, 0x2b, 0xff, 0x84, 0x47, 0x2b, 0xff, 0x7a, 0x3a, 0x1e, 0xff, 0x7d, 0x40, 0x20, 0xff, 0x80, 0x41, 0x23, 0xff, 0x81, 0x43, 0x25, 0xff, 0x83, 0x46, 0x26, 0xff, 0x85, 0x48, 0x28, 0xff, 0x88, 0x4a, 0x28, 0xff, 0x8b, 0x4b, 0x2a, 0xff, 0x95, 0x57, 0x2f, 0xff, 0xb2, 0x76, 0x47, 0xff, 0xbb, 0x85, 0x52, 0xff, 0xbb, 0x8f, 0x5d, 0xff, 0xbe, 0x93, 0x68, 0xff, 0xc1, 0x94, 0x6f, 0xff, 0xd9, 0xa4, 0x81, 0xff, 0xce, 0x9f, 0x80, 0xff, 0xc8, 0x9f, 0x7f, 0xff, 0xcf, 0xa4, 0x7b, 0xff, 0xd4, 0xa5, 0x6d, 0xff, 0xda, 0x9c, 0x5f, 0xff, 0xdb, 0x96, 0x5b, 0xff, 0xd7, 0x92, 0x59, 0xff, 0xd8, 0x92, 0x57, 0xff, 0xe5, 0x9b, 0x5d, 0xff, 0xf2, 0x9e, 0x65, 0xff, 0xf3, 0xa9, 0x68, 0xff, 0xea, 0xa7, 0x6c, 0xff, 0xb4, 0x77, 0x4c, 0xff, 0xb5, 0x78, 0x4b, 0xff, 0xb3, 0x78, 0x4a, 0xff, 0xb5, 0x7b, 0x4c, 0xff, 0xb4, 0x7f, 0x4f, 0xff, 0xb3, 0x7e, 0x53, 0xff, 0xb4, 0x7e, 0x54, 0xff, 0xb2, 0x80, 0x52, 0xff, 0xb2, 0x7c, 0x50, 0xff, 0xb2, 0x7d, 0x4e, 0xff, 0xb1, 0x7b, 0x49, 0xff, 0xb4, 0x7a, 0x49, 0xff, 0xb7, 0x7f, 0x4c, 0xff, 0xb8, 0x81, 0x4d, 0xff, 0xb8, 0x80, 0x4b, 0xff, 0xb9, 0x80, 0x4b, 0xff, 0xb8, 0x80, 0x4a, 0xff, 0xb6, 0x7e, 0x49, 0xff, 0xb7, 0x80, 0x4b, 0xff, 0xb8, 0x82, 0x4e, 0xff, 0xb8, 0x83, 0x4f, 0xff, 0xb5, 0x82, 0x50, 0xff, 0xb4, 0x86, 0x53, 0xff, 0xb3, 0x83, 0x54, 0xff, 0xad, 0x7a, 0x4d, 0xff, 0xab, 0x78, 0x48, 0xff, 0xad, 0x77, 0x44, 0xff, 0xae, 0x76, 0x43, 0xff, 0xad, 0x75, 0x43, 0xff, 0xac, 0x74, 0x44, 0xff, 0xac, 0x75, 0x43, 0xff, 0xaa, 0x73, 0x41, 0xff, 0xa7, 0x6f, 0x40, 0xff, 0xa6, 0x6d, 0x3f, 0xff, 0xa5, 0x6b, 0x3e, 0xff, 0xa4, 0x6b, 0x40, 0xff, 0xa0, 0x6d, 0x43, 0xff, 0xa0, 0x6e, 0x43, 0xff, 0xa2, 0x70, 0x43, 0xff, 0xa3, 0x72, 0x42, 0xff, 0xa4, 0x72, 0x41, 0xff, 0xa5, 0x75, 0x40, 0xff, 0xa7, 0x77, 0x42, 0xff, 0xa8, 0x7a, 0x43, 0xff, 0xa9, 0x79, 0x42, 0xff, 0xab, 0x7a, 0x42, 0xff, 0xaf, 0x7c, 0x43, 0xff, 0xb1, 0x7f, 0x43, 0xff, 0xb1, 0x7e, 0x43, 0xff, 0xac, 0x76, 0x3e, 0xff, 0xae, 0x78, 0x3d, 0xff, 0xb2, 0x7c, 0x3f, 0xff, 0xb4, 0x7d, 0x40, 0xff, 0xb7, 0x80, 0x40, 0xff, 0xba, 0x83, 0x45, 0xff, 0xbe, 0x89, 0x4b, 0xff, 0xc1, 0x8c, 0x4e, 0xff, 0xc3, 0x90, 0x53, 0xff, 0xc8, 0x94, 0x56, 0xff, 0xce, 0x99, 0x57, 0xff, 0xd4, 0x9a, 0x59, 0xff, 0xd4, 0x97, 0x57, 0xff, 0xd5, 0x96, 0x54, 0xff, 0xdc, 0x98, 0x55, 0xff, 0xe4, 0x99, 0x56, 0xff, 0xed, 0x9e, 0x5a, 0xff, 0xf3, 0xa6, 0x5f, 0xff, 0xf1, 0xa4, 0x5e, 0xff, 0xf3, 0xa3, 0x5e, 0xff, 0xf3, 0xa4, 0x60, 0xff, 0xdf, 0x96, 0x58, 0xff, 0xd1, 0x8a, 0x53, 0xff, 0xd6, 0x8d, 0x56, 0xff, 0xd0, 0x89, 0x53, 0xff, 0xc0, 0x83, 0x4f, 0xff, 0xbb, 0x83, 0x4f, 0xff, 0xbf, 0x85, 0x51, 0xff, 0xbf, 0x85, 0x51, 0xff, 0xbf, 0x85, 0x4f, 0xff, 0xc1, 0x86, 0x51, 0xff, 0xc3, 0x88, 0x52, 0xff, 0xc4, 0x88, 0x50, 0xff, 0xc5, 0x8a, 0x50, 0xff, 0xc7, 0x8c, 0x53, 0xff, 0xc9, 0x8c, 0x54, 0xff, 0xca, 0x8e, 0x53, 0xff, 0xcd, 0x90, 0x54, 0xff, 0xcf, 0x94, 0x58, 0xff, 0xd2, 0x98, 0x5c, 0xff, 0xd5, 0x9d, 0x5f, 0xff, 0xd8, 0xa2, 0x63, 0xff, 0xda, 0xa6, 0x67, 0xff, 0xde, 0xa8, 0x6b, 0xff, 0xe2, 0xa8, 0x70, 0xff, 0xe6, 0xab, 0x74, 0xff, 0xef, 0xb2, 0x79, 0xff, 0xf5, 0xb5, 0x7a, 0xff, 0xf4, 0xb7, 0x79, 0xff, 0xf3, 0xb7, 0x79, 0xff, 0xf2, 0xb5, 0x76, 0xff, 0xf3, 0xb4, 0x74, 0xff, 0xf4, 0xad, 0x70, 0xff, 0xf2, 0xa5, 0x69, 0xff, 0xf1, 0xa5, 0x69, 0xff, 0xf2, 0xac, 0x6b, 0xff, 0xf2, 0xaf, 0x6d, 0xff, 0xf0, 0xa8, 0x68, 0xff, 0xf1, 0xa5, 0x65, 0xff, 0xf2, 0xa5, 0x61, 0xff, 0xf0, 0xac, 0x66, 0xff, 0xf3, 0xb3, 0x6f, 0xff, 0xf2, 0xb5, 0x6f, 0xff, 0xf2, 0xb2, 0x6d, 0xff, 0xf2, 0xb1, 0x6c, 0xff, 0xf2, 0xb0, 0x6c, 0xff, 0xf4, 0xb0, 0x6d, 0xff, 0xf3, 0xb0, 0x70, 0xff, 0xf0, 0xb4, 0x77, 0xff, 0xf1, 0xb5, 0x79, 0xff, 0xf2, 0xae, 0x78, 0xff, 0xf3, 0xaa, 0x78, 0xff, 0xf2, 0xa9, 0x79, 0xff, 0xf3, 0xaa, 0x78, 0xff, 0xf3, 0xa9, 0x78, 0xff, 0xf4, 0xa9, 0x78, 0xff, 0xf4, 0xad, 0x79, 0xff, 0xf4, 0xb2, 0x7d, 0xff, 0xf4, 0xc2, 0x87, 0xff, 0xf1, 0xde, 0x94, 0xff, 0xeb, 0xe9, 0x9f, 0xff, 0xed, 0xec, 0xb1, 0xff, 0xf2, 0xeb, 0xd1, 0xff, 0xf4, 0xed, 0xe3, 0xff, 0xf4, 0xec, 0xe5, 0xff, 0xf4, 0xec, 0xe4, 0xff, 0xf4, 0xec, 0xe4, 0xff, 0xf4, 0xec, 0xe6, 0xff, 0xf3, 0xed, 0xd5, 0xff, 0xee, 0xec, 0xb3, 0xff, 0xed, 0xee, 0xa0, 0xff, 0xef, 0xd4, 0x8e, 0xff, 0xf2, 0xb9, 0x81, 0xff, 0xf0, 0xab, 0x73, 0xff, 0xdc, 0x9b, 0x64, 0xff, 0xc7, 0x8c, 0x57, 0xff, 0xbf, 0x84, 0x53, 0xff, 0xbb, 0x7e, 0x4f, 0xff, 0xb4, 0x75, 0x45, 0xff, 0xad, 0x6e, 0x3e, 0xff, 0xaa, 0x69, 0x38, 0xff, 0xa7, 0x66, 0x36, 0xff, 0xa4, 0x65, 0x35, 0xff, 0xa2, 0x5f, 0x34, 0xff, 0x9e, 0x5d, 0x32, 0xff, 0x9c, 0x5c, 0x31, 0xff, 0x99, 0x58, 0x2f, 0xff, 0x8d, 0x4b, 0x29, 0xff, 0x8a, 0x4c, 0x28, 0xff, 0x88, 0x49, 0x28, 0xff, 0x83, 0x45, 0x26, 0xff, 0x80, 0x41, 0x27, 0xff, 0x7e, 0x3f, 0x25, 0xff, 0x7e, 0x3e, 0x25, 0xff, 0x7d, 0x3e, 0x23, 0xff, 0x7e, 0x40, 0x25, 0xff, 0x7e, 0x41, 0x26, 0xff, 0x7d, 0x3f, 0x25, 0xff, 0x7b, 0x3e, 0x20, 0xff, 0x7a, 0x3c, 0x1f, 0xff, 0x77, 0x3a, 0x1e, 0xff, 0x75, 0x39, 0x1b, 0xff, 0x75, 0x38, 0x1b, 0xff, 0x74, 0x38, 0x1b, 0xff, 0x71, 0x35, 0x19, 0xff, 0x6f, 0x34, 0x18, 0xff, 0x6e, 0x33, 0x16, 0xff, 0x6e, 0x33, 0x16, 0xff, 0x6c, 0x32, 0x15, 0xff, 0x6b, 0x31, 0x13, 0xff, 0x6b, 0x2f, 0x13, 0xff, 0x6b, 0x31, 0x13, 0xff, 0x67, 0x2f, 0x13, 0xff, 0x69, 0x2e, 0x13, 0xff, 0x67, 0x30, 0x13, 0xff, 0x69, 0x2d, 0x13, 0xff, 0x6a, 0x30, 0x13, 0xff, 0x69, 0x31, 0x13, 0xff, 0x6b, 0x31, 0x13, 0xff, 0x6b, 0x30, 0x13, 0xff, 0x6b, 0x33, 0x16, 0xff, 0x6b, 0x31, 0x13, 0xff, 0x6b, 0x33, 0x15, 0xff, 0x6d, 0x33, 0x16, 0xff, 0x6d, 0x33, 0x18, 0xff, 0x6f, 0x33, 0x19, 0xff, + 0x6f, 0x34, 0x18, 0xff, 0x6f, 0x34, 0x19, 0xff, 0x71, 0x35, 0x1b, 0xff, 0x74, 0x37, 0x1e, 0xff, 0x73, 0x37, 0x1c, 0xff, 0x75, 0x3a, 0x1f, 0xff, 0x78, 0x3d, 0x22, 0xff, 0x7b, 0x3d, 0x23, 0xff, 0x81, 0x43, 0x28, 0xff, 0x83, 0x47, 0x2a, 0xff, 0x85, 0x49, 0x2a, 0xff, 0x7c, 0x3d, 0x21, 0xff, 0x7b, 0x3d, 0x1e, 0xff, 0x7d, 0x3d, 0x1f, 0xff, 0x7e, 0x40, 0x23, 0xff, 0x82, 0x43, 0x25, 0xff, 0x83, 0x45, 0x26, 0xff, 0x86, 0x45, 0x27, 0xff, 0x87, 0x4a, 0x28, 0xff, 0x8f, 0x51, 0x2c, 0xff, 0xa5, 0x68, 0x3b, 0xff, 0xaf, 0x73, 0x44, 0xff, 0xb9, 0x80, 0x50, 0xff, 0xba, 0x8d, 0x5a, 0xff, 0xbc, 0x93, 0x62, 0xff, 0xcb, 0x9f, 0x75, 0xff, 0xd6, 0xa5, 0x7f, 0xff, 0xdb, 0xa7, 0x83, 0xff, 0xcb, 0xa0, 0x7f, 0xff, 0xca, 0xa0, 0x7d, 0xff, 0xd1, 0xa5, 0x73, 0xff, 0xd6, 0x9d, 0x63, 0xff, 0xdb, 0x97, 0x5c, 0xff, 0xdc, 0x93, 0x57, 0xff, 0xda, 0x91, 0x55, 0xff, 0xe3, 0x96, 0x5c, 0xff, 0xf3, 0xa1, 0x61, 0xff, 0xf4, 0xa9, 0x6b, 0xff, 0xee, 0xae, 0x71, 0xff, 0xbd, 0x7f, 0x50, 0xff, 0xb7, 0x7a, 0x4f, 0xff, 0xb8, 0x7b, 0x4e, 0xff, 0xb9, 0x7e, 0x4e, 0xff, 0xb7, 0x81, 0x52, 0xff, 0xb7, 0x83, 0x56, 0xff, 0xb5, 0x82, 0x58, 0xff, 0xb4, 0x82, 0x59, 0xff, 0xb4, 0x85, 0x58, 0xff, 0xb4, 0x83, 0x52, 0xff, 0xb4, 0x82, 0x50, 0xff, 0xb6, 0x81, 0x4e, 0xff, 0xb8, 0x83, 0x4f, 0xff, 0xba, 0x82, 0x4e, 0xff, 0xbc, 0x84, 0x4d, 0xff, 0xbb, 0x82, 0x4b, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xb8, 0x80, 0x4b, 0xff, 0xb9, 0x82, 0x4c, 0xff, 0xba, 0x85, 0x4f, 0xff, 0xb9, 0x86, 0x51, 0xff, 0xb9, 0x87, 0x54, 0xff, 0xb6, 0x88, 0x55, 0xff, 0xb5, 0x83, 0x56, 0xff, 0xb4, 0x80, 0x55, 0xff, 0xb1, 0x7c, 0x4d, 0xff, 0xb1, 0x7c, 0x4a, 0xff, 0xaf, 0x77, 0x45, 0xff, 0xaf, 0x76, 0x42, 0xff, 0xae, 0x76, 0x45, 0xff, 0xad, 0x74, 0x45, 0xff, 0xac, 0x75, 0x45, 0xff, 0xab, 0x72, 0x45, 0xff, 0xa8, 0x6e, 0x42, 0xff, 0xa9, 0x6e, 0x40, 0xff, 0xa7, 0x6d, 0x42, 0xff, 0xa3, 0x6f, 0x48, 0xff, 0xa2, 0x6e, 0x43, 0xff, 0xa1, 0x6e, 0x43, 0xff, 0xa5, 0x74, 0x45, 0xff, 0xa5, 0x75, 0x43, 0xff, 0xa5, 0x74, 0x43, 0xff, 0xa6, 0x77, 0x43, 0xff, 0xa7, 0x76, 0x42, 0xff, 0xa8, 0x78, 0x42, 0xff, 0xaa, 0x7a, 0x41, 0xff, 0xaf, 0x7c, 0x43, 0xff, 0xad, 0x79, 0x42, 0xff, 0xa7, 0x73, 0x3c, 0xff, 0xaa, 0x75, 0x3e, 0xff, 0xad, 0x77, 0x3f, 0xff, 0xb1, 0x79, 0x3f, 0xff, 0xb2, 0x7b, 0x41, 0xff, 0xb5, 0x7f, 0x43, 0xff, 0xb8, 0x82, 0x47, 0xff, 0xbb, 0x86, 0x4b, 0xff, 0xbe, 0x88, 0x4e, 0xff, 0xc2, 0x8a, 0x4f, 0xff, 0xc6, 0x90, 0x51, 0xff, 0xc9, 0x92, 0x54, 0xff, 0xc9, 0x91, 0x53, 0xff, 0xcc, 0x93, 0x53, 0xff, 0xd3, 0x95, 0x55, 0xff, 0xd8, 0x96, 0x54, 0xff, 0xdd, 0x97, 0x55, 0xff, 0xe8, 0x9c, 0x55, 0xff, 0xf1, 0xa0, 0x5b, 0xff, 0xf0, 0xa5, 0x61, 0xff, 0xda, 0x99, 0x5c, 0xff, 0xc2, 0x86, 0x50, 0xff, 0xc6, 0x84, 0x4f, 0xff, 0xcf, 0x88, 0x53, 0xff, 0xd3, 0x89, 0x56, 0xff, 0xcc, 0x86, 0x52, 0xff, 0xc0, 0x82, 0x4b, 0xff, 0xbc, 0x82, 0x4e, 0xff, 0xbe, 0x85, 0x52, 0xff, 0xbf, 0x86, 0x50, 0xff, 0xc1, 0x87, 0x50, 0xff, 0xc2, 0x87, 0x52, 0xff, 0xc2, 0x89, 0x52, 0xff, 0xc4, 0x8b, 0x53, 0xff, 0xc6, 0x8a, 0x52, 0xff, 0xc7, 0x89, 0x51, 0xff, 0xc9, 0x8b, 0x52, 0xff, 0xca, 0x8d, 0x53, 0xff, 0xcd, 0x90, 0x54, 0xff, 0xcf, 0x91, 0x55, 0xff, 0xd1, 0x94, 0x58, 0xff, 0xd3, 0x9a, 0x5a, 0xff, 0xd5, 0x9b, 0x5b, 0xff, 0xd9, 0x9f, 0x60, 0xff, 0xdc, 0xa5, 0x67, 0xff, 0xdf, 0xa9, 0x6a, 0xff, 0xe3, 0xac, 0x6d, 0xff, 0xed, 0xb3, 0x75, 0xff, 0xf5, 0xb9, 0x78, 0xff, 0xf1, 0xb6, 0x75, 0xff, 0xf2, 0xb5, 0x73, 0xff, 0xf4, 0xb4, 0x73, 0xff, 0xf3, 0xaf, 0x71, 0xff, 0xf4, 0xad, 0x6d, 0xff, 0xf2, 0xad, 0x6f, 0xff, 0xee, 0xb2, 0x71, 0xff, 0xf1, 0xb4, 0x6e, 0xff, 0xf1, 0xad, 0x6c, 0xff, 0xf0, 0xac, 0x6c, 0xff, 0xf3, 0xab, 0x69, 0xff, 0xf2, 0xa4, 0x62, 0xff, 0xf1, 0x9e, 0x5d, 0xff, 0xf0, 0xa0, 0x5f, 0xff, 0xf0, 0xa9, 0x64, 0xff, 0xf2, 0xb3, 0x6b, 0xff, 0xf3, 0xb2, 0x6d, 0xff, 0xf3, 0xb1, 0x6d, 0xff, 0xf1, 0xb0, 0x6c, 0xff, 0xf0, 0xb2, 0x6d, 0xff, 0xf2, 0xb0, 0x6d, 0xff, 0xf4, 0xb3, 0x75, 0xff, 0xf4, 0xba, 0x7a, 0xff, 0xf2, 0xb3, 0x79, 0xff, 0xf2, 0xac, 0x78, 0xff, 0xf2, 0xab, 0x79, 0xff, 0xf4, 0xa9, 0x78, 0xff, 0xf3, 0xaa, 0x78, 0xff, 0xf3, 0xaa, 0x78, 0xff, 0xf4, 0xb0, 0x7b, 0xff, 0xf2, 0xb6, 0x80, 0xff, 0xf4, 0xc8, 0x88, 0xff, 0xef, 0xe4, 0x93, 0xff, 0xe9, 0xec, 0xa2, 0xff, 0xec, 0xeb, 0xb2, 0xff, 0xf2, 0xea, 0xd0, 0xff, 0xf4, 0xec, 0xe3, 0xff, 0xf4, 0xed, 0xe5, 0xff, 0xf4, 0xec, 0xe4, 0xff, 0xf4, 0xec, 0xe5, 0xff, 0xf4, 0xeb, 0xe0, 0xff, 0xf0, 0xed, 0xc1, 0xff, 0xea, 0xed, 0xa7, 0xff, 0xf1, 0xe4, 0x98, 0xff, 0xf1, 0xc7, 0x87, 0xff, 0xf4, 0xb2, 0x77, 0xff, 0xeb, 0xa4, 0x6a, 0xff, 0xd5, 0x97, 0x5f, 0xff, 0xc2, 0x87, 0x56, 0xff, 0xbc, 0x80, 0x50, 0xff, 0xb7, 0x7c, 0x4b, 0xff, 0xb2, 0x75, 0x43, 0xff, 0xaf, 0x71, 0x3f, 0xff, 0xab, 0x6a, 0x3a, 0xff, 0xa8, 0x67, 0x37, 0xff, 0xa6, 0x63, 0x35, 0xff, 0xa2, 0x62, 0x33, 0xff, 0x9f, 0x5d, 0x31, 0xff, 0x9c, 0x5b, 0x30, 0xff, 0x8e, 0x4d, 0x2b, 0xff, 0x89, 0x4a, 0x29, 0xff, 0x87, 0x48, 0x28, 0xff, 0x84, 0x45, 0x27, 0xff, 0x81, 0x42, 0x27, 0xff, 0x7e, 0x41, 0x26, 0xff, 0x7e, 0x3f, 0x24, 0xff, 0x82, 0x44, 0x26, 0xff, 0x7f, 0x42, 0x27, 0xff, 0x7e, 0x41, 0x26, 0xff, 0x7c, 0x3d, 0x23, 0xff, 0x7c, 0x3e, 0x22, 0xff, 0x79, 0x3c, 0x1f, 0xff, 0x77, 0x39, 0x1e, 0xff, 0x77, 0x39, 0x1b, 0xff, 0x74, 0x38, 0x1a, 0xff, 0x74, 0x38, 0x19, 0xff, 0x72, 0x35, 0x18, 0xff, 0x71, 0x35, 0x18, 0xff, 0x6f, 0x34, 0x16, 0xff, 0x70, 0x33, 0x16, 0xff, 0x6c, 0x33, 0x16, 0xff, 0x6b, 0x31, 0x14, 0xff, 0x6b, 0x30, 0x13, 0xff, 0x69, 0x2d, 0x13, 0xff, 0x69, 0x30, 0x13, 0xff, 0x68, 0x30, 0x12, 0xff, 0x69, 0x2e, 0x13, 0xff, 0x67, 0x30, 0x13, 0xff, 0x68, 0x2f, 0x13, 0xff, 0x6b, 0x30, 0x13, 0xff, 0x6b, 0x2f, 0x13, 0xff, 0x6b, 0x32, 0x16, 0xff, 0x6c, 0x32, 0x16, 0xff, 0x6c, 0x31, 0x16, 0xff, 0x6a, 0x33, 0x16, 0xff, 0x6d, 0x33, 0x16, 0xff, 0x6f, 0x33, 0x18, 0xff, 0x6f, 0x34, 0x19, 0xff, + 0x70, 0x35, 0x18, 0xff, 0x71, 0x36, 0x1b, 0xff, 0x73, 0x37, 0x1d, 0xff, 0x74, 0x39, 0x1c, 0xff, 0x75, 0x3a, 0x21, 0xff, 0x79, 0x3b, 0x20, 0xff, 0x7a, 0x3c, 0x23, 0xff, 0x7b, 0x3e, 0x24, 0xff, 0x83, 0x46, 0x29, 0xff, 0x84, 0x48, 0x2a, 0xff, 0x81, 0x42, 0x25, 0xff, 0x79, 0x3c, 0x1d, 0xff, 0x7c, 0x3d, 0x1f, 0xff, 0x7d, 0x3f, 0x23, 0xff, 0x7f, 0x3f, 0x21, 0xff, 0x80, 0x41, 0x23, 0xff, 0x82, 0x45, 0x25, 0xff, 0x84, 0x46, 0x27, 0xff, 0x8c, 0x4d, 0x29, 0xff, 0x9b, 0x5e, 0x32, 0xff, 0xa5, 0x69, 0x39, 0xff, 0xac, 0x6f, 0x41, 0xff, 0xb6, 0x7b, 0x4a, 0xff, 0xb9, 0x87, 0x55, 0xff, 0xc0, 0x97, 0x65, 0xff, 0xcf, 0xa3, 0x74, 0xff, 0xd2, 0xa2, 0x7d, 0xff, 0xd7, 0xa5, 0x82, 0xff, 0xdd, 0xa9, 0x85, 0xff, 0xcf, 0xa3, 0x7e, 0xff, 0xcd, 0xa3, 0x73, 0xff, 0xd2, 0xa1, 0x65, 0xff, 0xda, 0x9a, 0x5d, 0xff, 0xdd, 0x95, 0x5a, 0xff, 0xd8, 0x92, 0x55, 0xff, 0xe2, 0x94, 0x5a, 0xff, 0xf0, 0x9f, 0x60, 0xff, 0xf3, 0xa6, 0x69, 0xff, 0xef, 0xae, 0x70, 0xff, 0xc6, 0x8d, 0x58, 0xff, 0xb9, 0x7b, 0x4c, 0xff, 0xbc, 0x80, 0x4f, 0xff, 0xbc, 0x82, 0x52, 0xff, 0xb9, 0x84, 0x53, 0xff, 0xb9, 0x87, 0x57, 0xff, 0xb8, 0x89, 0x5c, 0xff, 0xb8, 0x8b, 0x5d, 0xff, 0xb8, 0x8a, 0x5e, 0xff, 0xb8, 0x8b, 0x5b, 0xff, 0xb8, 0x8b, 0x57, 0xff, 0xb9, 0x89, 0x55, 0xff, 0xbb, 0x87, 0x54, 0xff, 0xbc, 0x87, 0x53, 0xff, 0xbd, 0x84, 0x50, 0xff, 0xbd, 0x81, 0x4b, 0xff, 0xbe, 0x84, 0x4d, 0xff, 0xbc, 0x83, 0x4c, 0xff, 0xbd, 0x87, 0x50, 0xff, 0xbe, 0x8a, 0x52, 0xff, 0xbc, 0x8a, 0x53, 0xff, 0xbb, 0x8a, 0x52, 0xff, 0xba, 0x8c, 0x56, 0xff, 0xb9, 0x88, 0x58, 0xff, 0xb7, 0x85, 0x58, 0xff, 0xb3, 0x7f, 0x52, 0xff, 0xb1, 0x7c, 0x4c, 0xff, 0xb1, 0x7c, 0x48, 0xff, 0xb0, 0x79, 0x46, 0xff, 0xb1, 0x76, 0x46, 0xff, 0xb1, 0x79, 0x47, 0xff, 0xb0, 0x78, 0x46, 0xff, 0xae, 0x77, 0x45, 0xff, 0xab, 0x72, 0x42, 0xff, 0xab, 0x6f, 0x42, 0xff, 0xa9, 0x70, 0x44, 0xff, 0xa5, 0x71, 0x49, 0xff, 0xa5, 0x72, 0x47, 0xff, 0xa3, 0x70, 0x45, 0xff, 0xa2, 0x6e, 0x44, 0xff, 0xa4, 0x72, 0x46, 0xff, 0xa6, 0x75, 0x46, 0xff, 0xa8, 0x78, 0x44, 0xff, 0xa8, 0x76, 0x41, 0xff, 0xa8, 0x74, 0x3e, 0xff, 0xa9, 0x75, 0x3b, 0xff, 0xa7, 0x71, 0x3c, 0xff, 0xa3, 0x6f, 0x3c, 0xff, 0xa6, 0x71, 0x3d, 0xff, 0xa9, 0x73, 0x3e, 0xff, 0xab, 0x74, 0x3f, 0xff, 0xad, 0x78, 0x41, 0xff, 0xb1, 0x7b, 0x44, 0xff, 0xb4, 0x80, 0x46, 0xff, 0xb7, 0x83, 0x47, 0xff, 0xb9, 0x83, 0x4c, 0xff, 0xbc, 0x86, 0x4d, 0xff, 0xbf, 0x88, 0x4c, 0xff, 0xbf, 0x88, 0x4c, 0xff, 0xc1, 0x8b, 0x4d, 0xff, 0xc4, 0x8f, 0x50, 0xff, 0xca, 0x92, 0x54, 0xff, 0xcf, 0x92, 0x54, 0xff, 0xd7, 0x95, 0x55, 0xff, 0xdf, 0x98, 0x57, 0xff, 0xe1, 0x98, 0x57, 0xff, 0xd7, 0x91, 0x54, 0xff, 0xc3, 0x87, 0x50, 0xff, 0xbc, 0x83, 0x50, 0xff, 0xc3, 0x87, 0x54, 0xff, 0xc7, 0x88, 0x53, 0xff, 0xcd, 0x88, 0x53, 0xff, 0xd1, 0x89, 0x56, 0xff, 0xca, 0x87, 0x51, 0xff, 0xbc, 0x7d, 0x46, 0xff, 0xba, 0x7c, 0x45, 0xff, 0xbf, 0x84, 0x4f, 0xff, 0xc0, 0x87, 0x51, 0xff, 0xc2, 0x89, 0x50, 0xff, 0xc3, 0x89, 0x51, 0xff, 0xc3, 0x8b, 0x52, 0xff, 0xc5, 0x8c, 0x53, 0xff, 0xc5, 0x8b, 0x52, 0xff, 0xc8, 0x8c, 0x53, 0xff, 0xca, 0x8c, 0x52, 0xff, 0xcb, 0x8e, 0x53, 0xff, 0xce, 0x8f, 0x54, 0xff, 0xd0, 0x90, 0x55, 0xff, 0xd1, 0x91, 0x55, 0xff, 0xd2, 0x93, 0x55, 0xff, 0xd7, 0x97, 0x59, 0xff, 0xda, 0x9a, 0x5b, 0xff, 0xda, 0x9c, 0x5e, 0xff, 0xdf, 0xa2, 0x64, 0xff, 0xe1, 0xa4, 0x66, 0xff, 0xe6, 0xaa, 0x6b, 0xff, 0xf1, 0xb3, 0x71, 0xff, 0xf5, 0xb6, 0x74, 0xff, 0xf3, 0xb3, 0x72, 0xff, 0xf2, 0xb0, 0x6f, 0xff, 0xf1, 0xb2, 0x70, 0xff, 0xf2, 0xb6, 0x72, 0xff, 0xf1, 0xb9, 0x73, 0xff, 0xf1, 0xb6, 0x71, 0xff, 0xed, 0xab, 0x6a, 0xff, 0xee, 0xa7, 0x66, 0xff, 0xee, 0xa3, 0x64, 0xff, 0xf1, 0xa2, 0x62, 0xff, 0xf1, 0x9e, 0x60, 0xff, 0xf2, 0x99, 0x5d, 0xff, 0xf2, 0x98, 0x5c, 0xff, 0xf2, 0x9b, 0x5e, 0xff, 0xf2, 0x99, 0x5e, 0xff, 0xf0, 0xa0, 0x63, 0xff, 0xf2, 0xa6, 0x67, 0xff, 0xf2, 0xa8, 0x6b, 0xff, 0xf2, 0xae, 0x6e, 0xff, 0xf3, 0xb1, 0x6f, 0xff, 0xf4, 0xb1, 0x6f, 0xff, 0xf4, 0xb3, 0x75, 0xff, 0xf4, 0xb6, 0x79, 0xff, 0xf2, 0xb4, 0x79, 0xff, 0xf4, 0xae, 0x78, 0xff, 0xf2, 0xab, 0x77, 0xff, 0xf2, 0xab, 0x79, 0xff, 0xf3, 0xaa, 0x78, 0xff, 0xf4, 0xab, 0x79, 0xff, 0xf3, 0xaf, 0x7a, 0xff, 0xf3, 0xb8, 0x7e, 0xff, 0xf4, 0xce, 0x87, 0xff, 0xed, 0xe7, 0x92, 0xff, 0xeb, 0xec, 0xa0, 0xff, 0xed, 0xec, 0xb0, 0xff, 0xf3, 0xec, 0xcc, 0xff, 0xf4, 0xed, 0xdf, 0xff, 0xf4, 0xed, 0xe4, 0xff, 0xf4, 0xed, 0xe5, 0xff, 0xf4, 0xec, 0xdf, 0xff, 0xf1, 0xec, 0xc6, 0xff, 0xeb, 0xec, 0xae, 0xff, 0xed, 0xef, 0x9f, 0xff, 0xf3, 0xd8, 0x8d, 0xff, 0xf3, 0xbe, 0x81, 0xff, 0xf2, 0xac, 0x73, 0xff, 0xdf, 0x9f, 0x67, 0xff, 0xca, 0x91, 0x5b, 0xff, 0xba, 0x82, 0x51, 0xff, 0xb7, 0x7d, 0x4d, 0xff, 0xb6, 0x7a, 0x49, 0xff, 0xb2, 0x74, 0x42, 0xff, 0xae, 0x6f, 0x3e, 0xff, 0xac, 0x6a, 0x3a, 0xff, 0xa6, 0x67, 0x36, 0xff, 0xa4, 0x63, 0x35, 0xff, 0xa4, 0x62, 0x34, 0xff, 0x9b, 0x5b, 0x30, 0xff, 0x8e, 0x4e, 0x2b, 0xff, 0x8c, 0x4b, 0x29, 0xff, 0x8a, 0x4a, 0x28, 0xff, 0x83, 0x44, 0x27, 0xff, 0x81, 0x42, 0x27, 0xff, 0x81, 0x42, 0x25, 0xff, 0x84, 0x45, 0x26, 0xff, 0x82, 0x44, 0x27, 0xff, 0x81, 0x43, 0x27, 0xff, 0x7f, 0x42, 0x26, 0xff, 0x7f, 0x40, 0x23, 0xff, 0x7c, 0x3e, 0x20, 0xff, 0x7c, 0x3d, 0x1f, 0xff, 0x7b, 0x3b, 0x1e, 0xff, 0x78, 0x3a, 0x1e, 0xff, 0x77, 0x39, 0x1c, 0xff, 0x75, 0x39, 0x1c, 0xff, 0x74, 0x37, 0x19, 0xff, 0x73, 0x37, 0x19, 0xff, 0x71, 0x35, 0x18, 0xff, 0x71, 0x35, 0x17, 0xff, 0x71, 0x35, 0x17, 0xff, 0x6f, 0x32, 0x15, 0xff, 0x6b, 0x32, 0x16, 0xff, 0x6c, 0x32, 0x13, 0xff, 0x69, 0x30, 0x13, 0xff, 0x69, 0x30, 0x13, 0xff, 0x6a, 0x2e, 0x13, 0xff, 0x68, 0x2c, 0x11, 0xff, 0x69, 0x2d, 0x14, 0xff, 0x69, 0x31, 0x13, 0xff, 0x68, 0x2f, 0x15, 0xff, 0x6b, 0x32, 0x16, 0xff, 0x6e, 0x33, 0x15, 0xff, 0x6d, 0x34, 0x16, 0xff, 0x6d, 0x33, 0x16, 0xff, 0x6f, 0x33, 0x18, 0xff, 0x6f, 0x33, 0x18, 0xff, 0x6f, 0x33, 0x18, 0xff, + 0x71, 0x36, 0x1a, 0xff, 0x72, 0x37, 0x1b, 0xff, 0x72, 0x38, 0x1c, 0xff, 0x76, 0x3a, 0x1e, 0xff, 0x78, 0x3b, 0x20, 0xff, 0x7a, 0x3d, 0x23, 0xff, 0x7b, 0x3d, 0x24, 0xff, 0x7e, 0x41, 0x26, 0xff, 0x84, 0x47, 0x2a, 0xff, 0x83, 0x44, 0x29, 0xff, 0x7b, 0x3c, 0x1d, 0xff, 0x7c, 0x3d, 0x1e, 0xff, 0x7c, 0x3d, 0x1f, 0xff, 0x7d, 0x3d, 0x20, 0xff, 0x7e, 0x40, 0x23, 0xff, 0x7f, 0x42, 0x23, 0xff, 0x81, 0x44, 0x26, 0xff, 0x8b, 0x4d, 0x29, 0xff, 0x97, 0x57, 0x2d, 0xff, 0x9c, 0x5f, 0x32, 0xff, 0xa3, 0x66, 0x37, 0xff, 0xaa, 0x6d, 0x3e, 0xff, 0xb2, 0x76, 0x45, 0xff, 0xbb, 0x85, 0x52, 0xff, 0xc9, 0x9b, 0x64, 0xff, 0xca, 0xa1, 0x6e, 0xff, 0xcf, 0xa1, 0x77, 0xff, 0xd4, 0xa4, 0x7e, 0xff, 0xda, 0xa5, 0x81, 0xff, 0xde, 0xaa, 0x7f, 0xff, 0xcb, 0xa3, 0x73, 0xff, 0xd0, 0xa0, 0x66, 0xff, 0xd7, 0x9a, 0x5d, 0xff, 0xdc, 0x96, 0x5b, 0xff, 0xda, 0x92, 0x59, 0xff, 0xe3, 0x96, 0x5b, 0xff, 0xec, 0xa0, 0x60, 0xff, 0xf3, 0xa6, 0x68, 0xff, 0xf1, 0xae, 0x6d, 0xff, 0xd1, 0x96, 0x5f, 0xff, 0xbf, 0x81, 0x52, 0xff, 0xbe, 0x81, 0x52, 0xff, 0xbe, 0x84, 0x53, 0xff, 0xbb, 0x88, 0x56, 0xff, 0xbb, 0x8c, 0x5c, 0xff, 0xba, 0x8e, 0x5f, 0xff, 0xb9, 0x8e, 0x61, 0xff, 0xb9, 0x8d, 0x61, 0xff, 0xb9, 0x8d, 0x61, 0xff, 0xb9, 0x8e, 0x5d, 0xff, 0xba, 0x8e, 0x5a, 0xff, 0xbc, 0x8e, 0x57, 0xff, 0xbe, 0x8c, 0x55, 0xff, 0xc0, 0x8b, 0x53, 0xff, 0xc1, 0x86, 0x4f, 0xff, 0xc0, 0x86, 0x4e, 0xff, 0xc0, 0x86, 0x4d, 0xff, 0xbe, 0x89, 0x50, 0xff, 0xc1, 0x8a, 0x53, 0xff, 0xc0, 0x8d, 0x56, 0xff, 0xbf, 0x8f, 0x57, 0xff, 0xbd, 0x8f, 0x56, 0xff, 0xbc, 0x8b, 0x56, 0xff, 0xbc, 0x8c, 0x5a, 0xff, 0xb8, 0x88, 0x5b, 0xff, 0xb3, 0x7f, 0x52, 0xff, 0xb3, 0x7f, 0x4b, 0xff, 0xb3, 0x7d, 0x49, 0xff, 0xb2, 0x79, 0x48, 0xff, 0xb2, 0x79, 0x47, 0xff, 0xb1, 0x7a, 0x47, 0xff, 0xb2, 0x7b, 0x49, 0xff, 0xb0, 0x76, 0x45, 0xff, 0xac, 0x73, 0x43, 0xff, 0xab, 0x73, 0x47, 0xff, 0xa6, 0x74, 0x4a, 0xff, 0xa6, 0x75, 0x4a, 0xff, 0xa6, 0x73, 0x49, 0xff, 0xa5, 0x71, 0x47, 0xff, 0xa4, 0x6e, 0x42, 0xff, 0xa3, 0x6e, 0x3f, 0xff, 0xa6, 0x72, 0x3d, 0xff, 0xa9, 0x74, 0x3b, 0xff, 0xaa, 0x77, 0x3c, 0xff, 0xa6, 0x74, 0x3e, 0xff, 0xa3, 0x6f, 0x3d, 0xff, 0xa3, 0x70, 0x3d, 0xff, 0xa5, 0x71, 0x3d, 0xff, 0xa6, 0x73, 0x3e, 0xff, 0xa8, 0x73, 0x3f, 0xff, 0xab, 0x75, 0x41, 0xff, 0xad, 0x78, 0x42, 0xff, 0xb1, 0x7d, 0x45, 0xff, 0xb4, 0x81, 0x47, 0xff, 0xb6, 0x81, 0x47, 0xff, 0xb8, 0x81, 0x48, 0xff, 0xb8, 0x82, 0x48, 0xff, 0xba, 0x83, 0x4a, 0xff, 0xbf, 0x87, 0x4b, 0xff, 0xc2, 0x8a, 0x4c, 0xff, 0xc5, 0x8d, 0x50, 0xff, 0xcc, 0x91, 0x53, 0xff, 0xd4, 0x95, 0x57, 0xff, 0xce, 0x8e, 0x53, 0xff, 0xbe, 0x7e, 0x48, 0xff, 0xb7, 0x7a, 0x46, 0xff, 0xbb, 0x81, 0x4d, 0xff, 0xbf, 0x86, 0x56, 0xff, 0xc2, 0x88, 0x58, 0xff, 0xc6, 0x8a, 0x56, 0xff, 0xca, 0x8a, 0x54, 0xff, 0xce, 0x8b, 0x55, 0xff, 0xc5, 0x85, 0x4f, 0xff, 0xb9, 0x7b, 0x45, 0xff, 0xba, 0x7a, 0x45, 0xff, 0xbc, 0x7e, 0x48, 0xff, 0xc0, 0x87, 0x4f, 0xff, 0xc2, 0x8c, 0x53, 0xff, 0xc2, 0x8a, 0x52, 0xff, 0xc4, 0x8b, 0x53, 0xff, 0xc5, 0x8d, 0x55, 0xff, 0xc6, 0x8c, 0x54, 0xff, 0xc9, 0x8f, 0x55, 0xff, 0xcb, 0x8e, 0x54, 0xff, 0xcc, 0x8e, 0x54, 0xff, 0xcf, 0x90, 0x55, 0xff, 0xd1, 0x8f, 0x54, 0xff, 0xd2, 0x91, 0x55, 0xff, 0xd2, 0x92, 0x54, 0xff, 0xd5, 0x94, 0x54, 0xff, 0xd9, 0x97, 0x57, 0xff, 0xda, 0x98, 0x5a, 0xff, 0xdd, 0x9b, 0x5d, 0xff, 0xe1, 0x9e, 0x61, 0xff, 0xe4, 0xa4, 0x65, 0xff, 0xef, 0xae, 0x6b, 0xff, 0xf5, 0xb1, 0x6e, 0xff, 0xf5, 0xb4, 0x72, 0xff, 0xef, 0xb3, 0x70, 0xff, 0xe9, 0xac, 0x6c, 0xff, 0xe9, 0xa8, 0x69, 0xff, 0xf0, 0xa5, 0x66, 0xff, 0xef, 0xa2, 0x64, 0xff, 0xef, 0x9f, 0x61, 0xff, 0xf0, 0x9b, 0x5f, 0xff, 0xf1, 0x9a, 0x5e, 0xff, 0xf3, 0x99, 0x5e, 0xff, 0xf2, 0x98, 0x5d, 0xff, 0xf3, 0x98, 0x5d, 0xff, 0xf1, 0x96, 0x5b, 0xff, 0xef, 0x95, 0x5a, 0xff, 0xf2, 0x97, 0x5d, 0xff, 0xf4, 0x99, 0x5f, 0xff, 0xf3, 0x9b, 0x5f, 0xff, 0xf1, 0x9c, 0x60, 0xff, 0xf2, 0xa2, 0x63, 0xff, 0xf0, 0xa5, 0x66, 0xff, 0xf1, 0xad, 0x6c, 0xff, 0xf4, 0xb3, 0x71, 0xff, 0xf3, 0xb2, 0x76, 0xff, 0xf3, 0xb2, 0x77, 0xff, 0xf4, 0xb4, 0x77, 0xff, 0xf2, 0xb4, 0x76, 0xff, 0xf2, 0xb0, 0x75, 0xff, 0xf3, 0xab, 0x73, 0xff, 0xf2, 0xae, 0x77, 0xff, 0xf2, 0xb2, 0x7b, 0xff, 0xf2, 0xbc, 0x7e, 0xff, 0xf0, 0xbe, 0x7f, 0xff, 0xf0, 0xcb, 0x81, 0xff, 0xef, 0xe2, 0x8a, 0xff, 0xea, 0xec, 0x9a, 0xff, 0xed, 0xed, 0xaa, 0xff, 0xef, 0xed, 0xbc, 0xff, 0xf1, 0xec, 0xcd, 0xff, 0xf4, 0xed, 0xd4, 0xff, 0xf3, 0xed, 0xcc, 0xff, 0xf0, 0xeb, 0xbb, 0xff, 0xeb, 0xec, 0xac, 0xff, 0xe8, 0xed, 0x9f, 0xff, 0xf2, 0xdd, 0x90, 0xff, 0xf4, 0xc2, 0x83, 0xff, 0xf5, 0xb0, 0x79, 0xff, 0xe8, 0xa4, 0x6d, 0xff, 0xd0, 0x95, 0x60, 0xff, 0xc0, 0x88, 0x58, 0xff, 0xb7, 0x7f, 0x50, 0xff, 0xb5, 0x7a, 0x4a, 0xff, 0xb5, 0x77, 0x46, 0xff, 0xb2, 0x75, 0x42, 0xff, 0xaf, 0x6e, 0x3d, 0xff, 0xab, 0x6a, 0x39, 0xff, 0xa7, 0x67, 0x36, 0xff, 0xa7, 0x69, 0x37, 0xff, 0x96, 0x57, 0x2d, 0xff, 0x91, 0x50, 0x2c, 0xff, 0x8f, 0x4e, 0x2b, 0xff, 0x8a, 0x4a, 0x2a, 0xff, 0x85, 0x45, 0x27, 0xff, 0x82, 0x43, 0x27, 0xff, 0x86, 0x47, 0x28, 0xff, 0x87, 0x45, 0x28, 0xff, 0x82, 0x45, 0x28, 0xff, 0x82, 0x44, 0x27, 0xff, 0x82, 0x42, 0x26, 0xff, 0x80, 0x42, 0x24, 0xff, 0x7d, 0x40, 0x23, 0xff, 0x7d, 0x3e, 0x21, 0xff, 0x7b, 0x3b, 0x1f, 0xff, 0x7b, 0x3d, 0x1f, 0xff, 0x79, 0x3b, 0x1e, 0xff, 0x77, 0x39, 0x1b, 0xff, 0x75, 0x39, 0x1b, 0xff, 0x75, 0x37, 0x1b, 0xff, 0x74, 0x37, 0x18, 0xff, 0x75, 0x37, 0x1a, 0xff, 0x74, 0x37, 0x18, 0xff, 0x71, 0x33, 0x19, 0xff, 0x6d, 0x32, 0x16, 0xff, 0x6d, 0x33, 0x16, 0xff, 0x6b, 0x31, 0x16, 0xff, 0x69, 0x30, 0x13, 0xff, 0x6b, 0x32, 0x15, 0xff, 0x68, 0x2f, 0x12, 0xff, 0x69, 0x30, 0x12, 0xff, 0x69, 0x30, 0x12, 0xff, 0x69, 0x30, 0x14, 0xff, 0x6b, 0x32, 0x16, 0xff, 0x6c, 0x31, 0x18, 0xff, 0x6f, 0x34, 0x18, 0xff, 0x6e, 0x32, 0x16, 0xff, 0x6f, 0x33, 0x18, 0xff, 0x6f, 0x33, 0x18, 0xff, 0x6f, 0x35, 0x18, 0xff, + 0x73, 0x37, 0x1b, 0xff, 0x72, 0x38, 0x1c, 0xff, 0x75, 0x3a, 0x1f, 0xff, 0x78, 0x3b, 0x20, 0xff, 0x79, 0x3b, 0x23, 0xff, 0x7a, 0x3d, 0x23, 0xff, 0x7b, 0x3c, 0x23, 0xff, 0x82, 0x43, 0x29, 0xff, 0x84, 0x46, 0x29, 0xff, 0x7c, 0x3e, 0x1f, 0xff, 0x7a, 0x3d, 0x1d, 0xff, 0x7b, 0x3d, 0x1e, 0xff, 0x7b, 0x3d, 0x21, 0xff, 0x7c, 0x3e, 0x23, 0xff, 0x7e, 0x3f, 0x24, 0xff, 0x80, 0x43, 0x25, 0xff, 0x89, 0x4a, 0x27, 0xff, 0x90, 0x53, 0x2a, 0xff, 0x96, 0x58, 0x2c, 0xff, 0x99, 0x5a, 0x30, 0xff, 0xa0, 0x63, 0x34, 0xff, 0xa6, 0x69, 0x3b, 0xff, 0xb0, 0x74, 0x43, 0xff, 0xc5, 0x8d, 0x57, 0xff, 0xcc, 0x9a, 0x62, 0xff, 0xcc, 0xa1, 0x68, 0xff, 0xcd, 0xa2, 0x71, 0xff, 0xd2, 0xa4, 0x78, 0xff, 0xd8, 0xa4, 0x7a, 0xff, 0xdd, 0xaa, 0x7a, 0xff, 0xdb, 0xa8, 0x74, 0xff, 0xce, 0xa1, 0x67, 0xff, 0xd3, 0x99, 0x5e, 0xff, 0xda, 0x96, 0x5b, 0xff, 0xda, 0x94, 0x5b, 0xff, 0xe0, 0x97, 0x5d, 0xff, 0xec, 0x9b, 0x62, 0xff, 0xf2, 0xa5, 0x66, 0xff, 0xf3, 0xae, 0x6e, 0xff, 0xdf, 0xaa, 0x6c, 0xff, 0xc4, 0x86, 0x55, 0xff, 0xc1, 0x84, 0x54, 0xff, 0xc0, 0x87, 0x56, 0xff, 0xbe, 0x8b, 0x5a, 0xff, 0xbe, 0x8d, 0x5d, 0xff, 0xbc, 0x91, 0x60, 0xff, 0xbc, 0x90, 0x64, 0xff, 0xbc, 0x8f, 0x66, 0xff, 0xbc, 0x8f, 0x66, 0xff, 0xbc, 0x8f, 0x63, 0xff, 0xbe, 0x91, 0x60, 0xff, 0xbe, 0x92, 0x5d, 0xff, 0xbf, 0x92, 0x58, 0xff, 0xc1, 0x8f, 0x56, 0xff, 0xc2, 0x8b, 0x53, 0xff, 0xc4, 0x89, 0x52, 0xff, 0xc4, 0x8a, 0x52, 0xff, 0xc3, 0x8b, 0x53, 0xff, 0xc3, 0x8e, 0x53, 0xff, 0xc4, 0x8e, 0x55, 0xff, 0xc3, 0x90, 0x56, 0xff, 0xc1, 0x92, 0x59, 0xff, 0xbf, 0x92, 0x5b, 0xff, 0xbe, 0x90, 0x5c, 0xff, 0xbe, 0x8d, 0x5e, 0xff, 0xbb, 0x8b, 0x5a, 0xff, 0xb3, 0x7f, 0x4e, 0xff, 0xb5, 0x80, 0x4d, 0xff, 0xb4, 0x7d, 0x48, 0xff, 0xb3, 0x79, 0x47, 0xff, 0xb5, 0x7b, 0x49, 0xff, 0xb3, 0x79, 0x49, 0xff, 0xb3, 0x78, 0x49, 0xff, 0xb0, 0x76, 0x49, 0xff, 0xab, 0x78, 0x4c, 0xff, 0xab, 0x79, 0x4b, 0xff, 0xaa, 0x77, 0x4d, 0xff, 0xa9, 0x75, 0x48, 0xff, 0xa7, 0x72, 0x43, 0xff, 0xa5, 0x6e, 0x3c, 0xff, 0xa5, 0x6e, 0x39, 0xff, 0xa5, 0x6d, 0x3a, 0xff, 0xa7, 0x70, 0x3b, 0xff, 0xa7, 0x73, 0x3d, 0xff, 0xa3, 0x6f, 0x3f, 0xff, 0xa3, 0x71, 0x40, 0xff, 0xa4, 0x70, 0x3e, 0xff, 0xa6, 0x71, 0x3f, 0xff, 0xa8, 0x72, 0x3e, 0xff, 0xaa, 0x75, 0x3f, 0xff, 0xab, 0x79, 0x42, 0xff, 0xac, 0x7a, 0x43, 0xff, 0xae, 0x7b, 0x44, 0xff, 0xb1, 0x7d, 0x45, 0xff, 0xb3, 0x7f, 0x47, 0xff, 0xb3, 0x7e, 0x44, 0xff, 0xb5, 0x81, 0x47, 0xff, 0xb9, 0x82, 0x49, 0xff, 0xbc, 0x83, 0x4a, 0xff, 0xbf, 0x87, 0x4d, 0xff, 0xc3, 0x8c, 0x4e, 0xff, 0xc5, 0x8d, 0x4f, 0xff, 0xb8, 0x7d, 0x49, 0xff, 0xad, 0x70, 0x41, 0xff, 0xb2, 0x75, 0x44, 0xff, 0xb6, 0x7b, 0x4a, 0xff, 0xba, 0x80, 0x51, 0xff, 0xbd, 0x82, 0x57, 0xff, 0xc1, 0x85, 0x5b, 0xff, 0xc3, 0x88, 0x58, 0xff, 0xc6, 0x8a, 0x55, 0xff, 0xcb, 0x8a, 0x57, 0xff, 0xc0, 0x80, 0x4c, 0xff, 0xb7, 0x7a, 0x42, 0xff, 0xbb, 0x7d, 0x45, 0xff, 0xbd, 0x7c, 0x45, 0xff, 0xbe, 0x80, 0x49, 0xff, 0xc0, 0x88, 0x4f, 0xff, 0xc3, 0x8e, 0x54, 0xff, 0xc5, 0x8e, 0x55, 0xff, 0xc6, 0x8e, 0x55, 0xff, 0xc9, 0x90, 0x55, 0xff, 0xc9, 0x8f, 0x54, 0xff, 0xca, 0x90, 0x55, 0xff, 0xce, 0x92, 0x54, 0xff, 0xd0, 0x92, 0x55, 0xff, 0xd1, 0x90, 0x54, 0xff, 0xd3, 0x90, 0x53, 0xff, 0xd5, 0x92, 0x54, 0xff, 0xd6, 0x92, 0x54, 0xff, 0xd9, 0x94, 0x56, 0xff, 0xdb, 0x97, 0x57, 0xff, 0xde, 0x98, 0x58, 0xff, 0xe2, 0x99, 0x5c, 0xff, 0xe2, 0x9c, 0x5f, 0xff, 0xe7, 0xa0, 0x64, 0xff, 0xe4, 0x9f, 0x63, 0xff, 0xdb, 0x97, 0x59, 0xff, 0xdd, 0x96, 0x59, 0xff, 0xe7, 0x98, 0x5e, 0xff, 0xef, 0x9b, 0x5f, 0xff, 0xf3, 0x9f, 0x61, 0xff, 0xf4, 0xa3, 0x66, 0xff, 0xf2, 0xa5, 0x68, 0xff, 0xf3, 0xa4, 0x68, 0xff, 0xf4, 0xa3, 0x66, 0xff, 0xf2, 0x9e, 0x62, 0xff, 0xf1, 0x9b, 0x60, 0xff, 0xf2, 0x9c, 0x5f, 0xff, 0xf3, 0x99, 0x5e, 0xff, 0xf4, 0x98, 0x5e, 0xff, 0xf4, 0x98, 0x5c, 0xff, 0xf4, 0x9b, 0x5f, 0xff, 0xf4, 0x9d, 0x60, 0xff, 0xf4, 0x9d, 0x60, 0xff, 0xf4, 0x9e, 0x61, 0xff, 0xf4, 0x9e, 0x62, 0xff, 0xf1, 0x9d, 0x62, 0xff, 0xf0, 0xa3, 0x66, 0xff, 0xf0, 0xad, 0x70, 0xff, 0xf3, 0xb4, 0x78, 0xff, 0xf2, 0xb4, 0x77, 0xff, 0xf4, 0xb1, 0x76, 0xff, 0xf3, 0xb5, 0x79, 0xff, 0xf0, 0xb2, 0x76, 0xff, 0xf3, 0xac, 0x72, 0xff, 0xf4, 0xaf, 0x72, 0xff, 0xf2, 0xb3, 0x75, 0xff, 0xf3, 0xc0, 0x7c, 0xff, 0xf4, 0xd7, 0x85, 0xff, 0xf1, 0xe0, 0x86, 0xff, 0xeb, 0xe3, 0x89, 0xff, 0xe7, 0xe8, 0x92, 0xff, 0xea, 0xeb, 0xa3, 0xff, 0xed, 0xec, 0xae, 0xff, 0xee, 0xed, 0xb3, 0xff, 0xed, 0xed, 0xb4, 0xff, 0xed, 0xeb, 0xb0, 0xff, 0xea, 0xed, 0xa6, 0xff, 0xee, 0xed, 0x9a, 0xff, 0xf3, 0xe0, 0x8e, 0xff, 0xf4, 0xc3, 0x83, 0xff, 0xf5, 0xb2, 0x7b, 0xff, 0xeb, 0xa5, 0x6f, 0xff, 0xda, 0x9b, 0x67, 0xff, 0xc5, 0x8e, 0x5c, 0xff, 0xbc, 0x86, 0x54, 0xff, 0xb5, 0x7c, 0x4c, 0xff, 0xb1, 0x76, 0x45, 0xff, 0xb3, 0x76, 0x44, 0xff, 0xb2, 0x73, 0x3e, 0xff, 0xad, 0x6f, 0x3b, 0xff, 0xab, 0x6c, 0x38, 0xff, 0xa7, 0x67, 0x37, 0xff, 0x96, 0x54, 0x2f, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x89, 0x4a, 0x2a, 0xff, 0x88, 0x47, 0x29, 0xff, 0x89, 0x4c, 0x29, 0xff, 0x87, 0x49, 0x29, 0xff, 0x87, 0x49, 0x2a, 0xff, 0x87, 0x49, 0x2a, 0xff, 0x86, 0x47, 0x27, 0xff, 0x83, 0x46, 0x26, 0xff, 0x81, 0x43, 0x24, 0xff, 0x80, 0x42, 0x24, 0xff, 0x7e, 0x40, 0x23, 0xff, 0x7f, 0x40, 0x20, 0xff, 0x7b, 0x3d, 0x1f, 0xff, 0x7b, 0x3c, 0x1e, 0xff, 0x79, 0x3b, 0x1e, 0xff, 0x78, 0x38, 0x1b, 0xff, 0x76, 0x39, 0x1b, 0xff, 0x77, 0x38, 0x1d, 0xff, 0x75, 0x37, 0x1b, 0xff, 0x74, 0x37, 0x18, 0xff, 0x72, 0x36, 0x18, 0xff, 0x6f, 0x31, 0x17, 0xff, 0x6e, 0x32, 0x16, 0xff, 0x6c, 0x31, 0x16, 0xff, 0x6c, 0x31, 0x16, 0xff, 0x6c, 0x30, 0x13, 0xff, 0x6c, 0x2f, 0x12, 0xff, 0x6a, 0x31, 0x16, 0xff, 0x6a, 0x31, 0x16, 0xff, 0x6a, 0x31, 0x16, 0xff, 0x6c, 0x31, 0x16, 0xff, 0x6d, 0x32, 0x18, 0xff, 0x6e, 0x32, 0x17, 0xff, 0x6f, 0x34, 0x18, 0xff, 0x6f, 0x33, 0x18, 0xff, 0x6f, 0x33, 0x1a, 0xff, 0x72, 0x34, 0x18, 0xff, + 0x72, 0x37, 0x1c, 0xff, 0x74, 0x3a, 0x1e, 0xff, 0x75, 0x3a, 0x1d, 0xff, 0x78, 0x3c, 0x20, 0xff, 0x7a, 0x3d, 0x23, 0xff, 0x7b, 0x3d, 0x23, 0xff, 0x7f, 0x41, 0x27, 0xff, 0x84, 0x46, 0x29, 0xff, 0x80, 0x43, 0x24, 0xff, 0x7b, 0x3c, 0x1c, 0xff, 0x7c, 0x3d, 0x1d, 0xff, 0x7c, 0x3d, 0x1f, 0xff, 0x7c, 0x3e, 0x24, 0xff, 0x7c, 0x41, 0x24, 0xff, 0x7d, 0x3f, 0x24, 0xff, 0x89, 0x4a, 0x25, 0xff, 0x8d, 0x4f, 0x28, 0xff, 0x8e, 0x51, 0x29, 0xff, 0x93, 0x54, 0x2a, 0xff, 0x98, 0x5a, 0x2f, 0xff, 0x9d, 0x60, 0x32, 0xff, 0xa4, 0x67, 0x37, 0xff, 0xb3, 0x7a, 0x48, 0xff, 0xc3, 0x8e, 0x58, 0xff, 0xca, 0x95, 0x5d, 0xff, 0xce, 0x9e, 0x64, 0xff, 0xcd, 0x9f, 0x69, 0xff, 0xce, 0xa3, 0x6f, 0xff, 0xd3, 0xa5, 0x73, 0xff, 0xd8, 0xa9, 0x73, 0xff, 0xe0, 0xae, 0x71, 0xff, 0xd1, 0xa0, 0x64, 0xff, 0xd0, 0x9a, 0x5e, 0xff, 0xd7, 0x93, 0x5a, 0xff, 0xd9, 0x94, 0x59, 0xff, 0xda, 0x94, 0x5b, 0xff, 0xe9, 0x9a, 0x60, 0xff, 0xf3, 0xa1, 0x65, 0xff, 0xf3, 0xab, 0x6e, 0xff, 0xf0, 0xb9, 0x77, 0xff, 0xc5, 0x87, 0x56, 0xff, 0xc4, 0x86, 0x55, 0xff, 0xc2, 0x8a, 0x58, 0xff, 0xc1, 0x8f, 0x5d, 0xff, 0xbf, 0x93, 0x62, 0xff, 0xbf, 0x92, 0x65, 0xff, 0xbe, 0x91, 0x67, 0xff, 0xbd, 0x92, 0x69, 0xff, 0xbd, 0x92, 0x69, 0xff, 0xbe, 0x92, 0x69, 0xff, 0xbe, 0x92, 0x66, 0xff, 0xc0, 0x95, 0x64, 0xff, 0xc1, 0x98, 0x5f, 0xff, 0xc3, 0x93, 0x5a, 0xff, 0xc4, 0x92, 0x57, 0xff, 0xc6, 0x8f, 0x54, 0xff, 0xc6, 0x8d, 0x52, 0xff, 0xc4, 0x8d, 0x4f, 0xff, 0xc6, 0x91, 0x53, 0xff, 0xc6, 0x91, 0x56, 0xff, 0xc6, 0x90, 0x58, 0xff, 0xc4, 0x93, 0x5b, 0xff, 0xc4, 0x97, 0x60, 0xff, 0xc2, 0x96, 0x60, 0xff, 0xc1, 0x91, 0x60, 0xff, 0xbe, 0x8e, 0x5b, 0xff, 0xba, 0x86, 0x54, 0xff, 0xb6, 0x7f, 0x4d, 0xff, 0xb6, 0x7e, 0x4b, 0xff, 0xb7, 0x7e, 0x4a, 0xff, 0xb5, 0x7c, 0x48, 0xff, 0xb4, 0x7a, 0x49, 0xff, 0xb5, 0x7b, 0x49, 0xff, 0xb2, 0x79, 0x49, 0xff, 0xae, 0x7a, 0x4c, 0xff, 0xad, 0x7a, 0x50, 0xff, 0xab, 0x78, 0x47, 0xff, 0xa9, 0x75, 0x43, 0xff, 0xa8, 0x71, 0x3d, 0xff, 0xa7, 0x72, 0x3b, 0xff, 0xa6, 0x6e, 0x3b, 0xff, 0xa6, 0x6f, 0x3a, 0xff, 0xa2, 0x6c, 0x3b, 0xff, 0x9c, 0x66, 0x3b, 0xff, 0x9f, 0x6a, 0x3d, 0xff, 0xa3, 0x70, 0x3f, 0xff, 0xa5, 0x74, 0x40, 0xff, 0xa5, 0x74, 0x3f, 0xff, 0xa7, 0x73, 0x3e, 0xff, 0xa8, 0x74, 0x42, 0xff, 0xaa, 0x78, 0x43, 0xff, 0xac, 0x79, 0x44, 0xff, 0xad, 0x79, 0x43, 0xff, 0xae, 0x7a, 0x43, 0xff, 0xae, 0x79, 0x42, 0xff, 0xb1, 0x7a, 0x42, 0xff, 0xb4, 0x7d, 0x43, 0xff, 0xb6, 0x80, 0x46, 0xff, 0xb9, 0x85, 0x4b, 0xff, 0xbd, 0x87, 0x4d, 0xff, 0xbb, 0x83, 0x4c, 0xff, 0xaa, 0x6f, 0x3f, 0xff, 0xa1, 0x63, 0x36, 0xff, 0xaa, 0x6e, 0x3e, 0xff, 0xb0, 0x72, 0x42, 0xff, 0xb6, 0x78, 0x46, 0xff, 0xb9, 0x7e, 0x4c, 0xff, 0xbb, 0x82, 0x53, 0xff, 0xbe, 0x84, 0x57, 0xff, 0xc0, 0x85, 0x55, 0xff, 0xc4, 0x88, 0x57, 0xff, 0xc2, 0x86, 0x52, 0xff, 0xba, 0x7e, 0x46, 0xff, 0xbb, 0x7b, 0x46, 0xff, 0xbe, 0x7e, 0x47, 0xff, 0xbe, 0x7e, 0x45, 0xff, 0xbd, 0x7c, 0x44, 0xff, 0xbf, 0x80, 0x48, 0xff, 0xc3, 0x8a, 0x51, 0xff, 0xc5, 0x8e, 0x56, 0xff, 0xc8, 0x8f, 0x55, 0xff, 0xc9, 0x92, 0x56, 0xff, 0xcc, 0x92, 0x56, 0xff, 0xcf, 0x92, 0x55, 0xff, 0xd1, 0x93, 0x56, 0xff, 0xd3, 0x92, 0x55, 0xff, 0xd6, 0x94, 0x54, 0xff, 0xd8, 0x96, 0x55, 0xff, 0xd9, 0x94, 0x55, 0xff, 0xdb, 0x94, 0x55, 0xff, 0xdd, 0x95, 0x55, 0xff, 0xda, 0x93, 0x55, 0xff, 0xdd, 0x95, 0x57, 0xff, 0xd4, 0x90, 0x54, 0xff, 0xc1, 0x83, 0x4b, 0xff, 0xbf, 0x80, 0x4c, 0xff, 0xd1, 0x8c, 0x53, 0xff, 0xe0, 0x95, 0x57, 0xff, 0xe3, 0x94, 0x57, 0xff, 0xe8, 0x97, 0x59, 0xff, 0xf2, 0x9c, 0x5e, 0xff, 0xf2, 0xa1, 0x63, 0xff, 0xf2, 0xaa, 0x6b, 0xff, 0xf4, 0xae, 0x6e, 0xff, 0xf4, 0xaf, 0x6e, 0xff, 0xf4, 0xad, 0x6e, 0xff, 0xf3, 0xa9, 0x6b, 0xff, 0xf4, 0xa3, 0x67, 0xff, 0xf4, 0x9e, 0x62, 0xff, 0xf4, 0x9b, 0x5f, 0xff, 0xf1, 0x98, 0x5c, 0xff, 0xf3, 0x98, 0x5c, 0xff, 0xf4, 0x9c, 0x5f, 0xff, 0xf4, 0x9d, 0x60, 0xff, 0xf4, 0x9d, 0x60, 0xff, 0xf4, 0x9e, 0x60, 0xff, 0xf4, 0x9f, 0x61, 0xff, 0xf4, 0x9e, 0x63, 0xff, 0xf4, 0xa2, 0x65, 0xff, 0xf2, 0xa2, 0x64, 0xff, 0xf3, 0xa8, 0x6a, 0xff, 0xf2, 0xb1, 0x74, 0xff, 0xf4, 0xb6, 0x75, 0xff, 0xf3, 0xb4, 0x75, 0xff, 0xf2, 0xb7, 0x78, 0xff, 0xf2, 0xb6, 0x77, 0xff, 0xf1, 0xae, 0x70, 0xff, 0xf3, 0xaf, 0x70, 0xff, 0xf4, 0xb2, 0x71, 0xff, 0xf2, 0xb7, 0x74, 0xff, 0xf4, 0xc4, 0x7c, 0xff, 0xf1, 0xdc, 0x86, 0xff, 0xec, 0xe8, 0x90, 0xff, 0xe6, 0xe7, 0x92, 0xff, 0xe5, 0xe9, 0x98, 0xff, 0xe8, 0xea, 0xa0, 0xff, 0xeb, 0xec, 0xa1, 0xff, 0xea, 0xec, 0xa1, 0xff, 0xe7, 0xea, 0x9b, 0xff, 0xf1, 0xe8, 0x94, 0xff, 0xf5, 0xdb, 0x89, 0xff, 0xf3, 0xc3, 0x80, 0xff, 0xf4, 0xb0, 0x76, 0xff, 0xf0, 0xa9, 0x6f, 0xff, 0xde, 0x9d, 0x68, 0xff, 0xc9, 0x90, 0x60, 0xff, 0xbf, 0x87, 0x58, 0xff, 0xba, 0x82, 0x50, 0xff, 0xb3, 0x7b, 0x49, 0xff, 0xad, 0x73, 0x42, 0xff, 0xb1, 0x76, 0x45, 0xff, 0xb1, 0x74, 0x40, 0xff, 0xac, 0x6f, 0x3d, 0xff, 0xa2, 0x62, 0x36, 0xff, 0x98, 0x57, 0x31, 0xff, 0x95, 0x54, 0x2e, 0xff, 0x8f, 0x4e, 0x2b, 0xff, 0x8b, 0x49, 0x2a, 0xff, 0x90, 0x4f, 0x2b, 0xff, 0x8e, 0x4f, 0x2a, 0xff, 0x8c, 0x4c, 0x2a, 0xff, 0x89, 0x4a, 0x2a, 0xff, 0x87, 0x49, 0x29, 0xff, 0x86, 0x46, 0x27, 0xff, 0x84, 0x46, 0x26, 0xff, 0x83, 0x46, 0x26, 0xff, 0x83, 0x41, 0x25, 0xff, 0x80, 0x42, 0x24, 0xff, 0x7e, 0x40, 0x24, 0xff, 0x7c, 0x3d, 0x23, 0xff, 0x7b, 0x3d, 0x20, 0xff, 0x7a, 0x3b, 0x1e, 0xff, 0x79, 0x3b, 0x1e, 0xff, 0x79, 0x3c, 0x1e, 0xff, 0x79, 0x39, 0x1c, 0xff, 0x75, 0x37, 0x1b, 0xff, 0x74, 0x37, 0x1c, 0xff, 0x74, 0x37, 0x1b, 0xff, 0x73, 0x37, 0x19, 0xff, 0x6f, 0x34, 0x18, 0xff, 0x6e, 0x33, 0x16, 0xff, 0x6c, 0x34, 0x16, 0xff, 0x6c, 0x30, 0x17, 0xff, 0x6c, 0x31, 0x16, 0xff, 0x6c, 0x31, 0x14, 0xff, 0x6c, 0x31, 0x15, 0xff, 0x6c, 0x31, 0x16, 0xff, 0x6e, 0x32, 0x17, 0xff, 0x6d, 0x32, 0x18, 0xff, 0x6f, 0x34, 0x18, 0xff, 0x6f, 0x34, 0x18, 0xff, 0x6f, 0x35, 0x18, 0xff, 0x72, 0x36, 0x18, 0xff, 0x73, 0x37, 0x1b, 0xff, + 0x75, 0x39, 0x1f, 0xff, 0x77, 0x3a, 0x20, 0xff, 0x77, 0x3b, 0x21, 0xff, 0x7b, 0x3d, 0x23, 0xff, 0x7b, 0x3d, 0x23, 0xff, 0x7c, 0x3e, 0x25, 0xff, 0x82, 0x44, 0x29, 0xff, 0x81, 0x43, 0x27, 0xff, 0x7b, 0x3c, 0x1c, 0xff, 0x7c, 0x3d, 0x1e, 0xff, 0x7b, 0x3e, 0x22, 0xff, 0x7c, 0x3e, 0x24, 0xff, 0x7c, 0x3f, 0x23, 0xff, 0x80, 0x42, 0x23, 0xff, 0x87, 0x47, 0x26, 0xff, 0x8b, 0x4c, 0x27, 0xff, 0x8c, 0x4d, 0x27, 0xff, 0x8e, 0x51, 0x29, 0xff, 0x92, 0x53, 0x2a, 0xff, 0x96, 0x57, 0x2c, 0xff, 0x9b, 0x5b, 0x30, 0xff, 0xa8, 0x6f, 0x3e, 0xff, 0xb4, 0x80, 0x50, 0xff, 0xbc, 0x87, 0x56, 0xff, 0xc6, 0x91, 0x5c, 0xff, 0xcc, 0x99, 0x60, 0xff, 0xce, 0x9c, 0x62, 0xff, 0xce, 0xa0, 0x67, 0xff, 0xcf, 0xa4, 0x6b, 0xff, 0xd5, 0xa7, 0x6c, 0xff, 0xde, 0xaa, 0x6a, 0xff, 0xde, 0xa4, 0x67, 0xff, 0xcd, 0x95, 0x5a, 0xff, 0xd4, 0x92, 0x58, 0xff, 0xd6, 0x93, 0x58, 0xff, 0xd9, 0x94, 0x5a, 0xff, 0xe3, 0x9a, 0x5e, 0xff, 0xf1, 0xa2, 0x63, 0xff, 0xf3, 0xab, 0x6c, 0xff, 0xf1, 0xb4, 0x74, 0xff, 0xd9, 0xa0, 0x66, 0xff, 0xc6, 0x88, 0x55, 0xff, 0xc5, 0x8d, 0x5c, 0xff, 0xc3, 0x91, 0x60, 0xff, 0xc2, 0x95, 0x63, 0xff, 0xc1, 0x96, 0x69, 0xff, 0xc0, 0x94, 0x6b, 0xff, 0xc0, 0x94, 0x6d, 0xff, 0xc0, 0x95, 0x6e, 0xff, 0xc0, 0x94, 0x6e, 0xff, 0xc0, 0x95, 0x6d, 0xff, 0xc2, 0x95, 0x69, 0xff, 0xc4, 0x99, 0x67, 0xff, 0xc6, 0x9b, 0x63, 0xff, 0xc8, 0x9a, 0x60, 0xff, 0xca, 0x96, 0x5a, 0xff, 0xcb, 0x94, 0x55, 0xff, 0xcb, 0x91, 0x54, 0xff, 0xcc, 0x90, 0x53, 0xff, 0xcb, 0x93, 0x56, 0xff, 0xcb, 0x92, 0x59, 0xff, 0xca, 0x94, 0x5c, 0xff, 0xc9, 0x99, 0x62, 0xff, 0xc6, 0x9b, 0x62, 0xff, 0xc5, 0x97, 0x61, 0xff, 0xc3, 0x93, 0x5f, 0xff, 0xbf, 0x8e, 0x5a, 0xff, 0xb9, 0x84, 0x50, 0xff, 0xb8, 0x7f, 0x4c, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb7, 0x7c, 0x48, 0xff, 0xb6, 0x7c, 0x4a, 0xff, 0xb6, 0x7b, 0x4b, 0xff, 0xb4, 0x7e, 0x4d, 0xff, 0xb1, 0x7f, 0x4f, 0xff, 0xaf, 0x7c, 0x4a, 0xff, 0xae, 0x79, 0x44, 0xff, 0xac, 0x77, 0x42, 0xff, 0xab, 0x75, 0x42, 0xff, 0xaa, 0x73, 0x3f, 0xff, 0xaa, 0x72, 0x3c, 0xff, 0xa5, 0x6e, 0x3c, 0xff, 0x9f, 0x68, 0x3c, 0xff, 0x9f, 0x69, 0x3c, 0xff, 0xa0, 0x69, 0x3e, 0xff, 0xa1, 0x6b, 0x3c, 0xff, 0xa3, 0x6d, 0x3d, 0xff, 0xa5, 0x70, 0x41, 0xff, 0xa6, 0x73, 0x42, 0xff, 0xa8, 0x76, 0x44, 0xff, 0xab, 0x79, 0x44, 0xff, 0xac, 0x79, 0x43, 0xff, 0xac, 0x78, 0x42, 0xff, 0xaa, 0x75, 0x3f, 0xff, 0xac, 0x75, 0x3c, 0xff, 0xae, 0x77, 0x3c, 0xff, 0xb1, 0x7a, 0x3e, 0xff, 0xb5, 0x7d, 0x45, 0xff, 0xb6, 0x80, 0x49, 0xff, 0xac, 0x73, 0x42, 0xff, 0x9e, 0x60, 0x35, 0xff, 0x9e, 0x5f, 0x34, 0xff, 0xa4, 0x66, 0x38, 0xff, 0xa8, 0x6b, 0x3c, 0xff, 0xae, 0x70, 0x40, 0xff, 0xb4, 0x76, 0x44, 0xff, 0xb8, 0x7c, 0x49, 0xff, 0xb9, 0x81, 0x4f, 0xff, 0xbc, 0x83, 0x54, 0xff, 0xbf, 0x86, 0x54, 0xff, 0xc3, 0x87, 0x55, 0xff, 0xbf, 0x82, 0x4d, 0xff, 0xb7, 0x7c, 0x44, 0xff, 0xba, 0x7d, 0x46, 0xff, 0xbe, 0x7f, 0x47, 0xff, 0xbe, 0x80, 0x48, 0xff, 0xbf, 0x80, 0x48, 0xff, 0xc1, 0x81, 0x48, 0xff, 0xc1, 0x82, 0x4a, 0xff, 0xc3, 0x89, 0x51, 0xff, 0xc8, 0x91, 0x57, 0xff, 0xca, 0x93, 0x58, 0xff, 0xcc, 0x95, 0x58, 0xff, 0xd0, 0x95, 0x59, 0xff, 0xd3, 0x95, 0x58, 0xff, 0xd6, 0x97, 0x58, 0xff, 0xd9, 0x98, 0x57, 0xff, 0xdc, 0x97, 0x56, 0xff, 0xdf, 0x98, 0x57, 0xff, 0xdc, 0x95, 0x56, 0xff, 0xd3, 0x8b, 0x52, 0xff, 0xc6, 0x82, 0x4d, 0xff, 0xbe, 0x7e, 0x4a, 0xff, 0xbd, 0x7f, 0x49, 0xff, 0xc0, 0x82, 0x4b, 0xff, 0xc2, 0x84, 0x4c, 0xff, 0xc5, 0x84, 0x4e, 0xff, 0xd7, 0x8d, 0x51, 0xff, 0xe3, 0x93, 0x54, 0xff, 0xea, 0x97, 0x59, 0xff, 0xf1, 0x9b, 0x5b, 0xff, 0xf3, 0x9f, 0x60, 0xff, 0xf4, 0xaa, 0x6a, 0xff, 0xf3, 0xb4, 0x72, 0xff, 0xf3, 0xb4, 0x77, 0xff, 0xf3, 0xb6, 0x75, 0xff, 0xf3, 0xb4, 0x73, 0xff, 0xf3, 0xae, 0x6d, 0xff, 0xf3, 0xaa, 0x69, 0xff, 0xf3, 0xa6, 0x65, 0xff, 0xf3, 0xa2, 0x63, 0xff, 0xf2, 0xa0, 0x61, 0xff, 0xf3, 0x9e, 0x60, 0xff, 0xf4, 0x9e, 0x61, 0xff, 0xf4, 0xa1, 0x60, 0xff, 0xf4, 0x9f, 0x60, 0xff, 0xf3, 0x9f, 0x61, 0xff, 0xf2, 0x9f, 0x61, 0xff, 0xf3, 0xa0, 0x62, 0xff, 0xf4, 0xa3, 0x63, 0xff, 0xf3, 0xa3, 0x64, 0xff, 0xf0, 0xaa, 0x6d, 0xff, 0xf3, 0xb1, 0x72, 0xff, 0xf3, 0xb2, 0x71, 0xff, 0xf3, 0xb3, 0x74, 0xff, 0xf2, 0xb5, 0x76, 0xff, 0xf2, 0xb7, 0x77, 0xff, 0xf2, 0xb1, 0x71, 0xff, 0xf2, 0xad, 0x6e, 0xff, 0xf4, 0xae, 0x6e, 0xff, 0xf2, 0xb4, 0x71, 0xff, 0xf3, 0xba, 0x75, 0xff, 0xf5, 0xc9, 0x7b, 0xff, 0xf1, 0xde, 0x85, 0xff, 0xec, 0xe9, 0x91, 0xff, 0xe9, 0xeb, 0x99, 0xff, 0xe6, 0xea, 0x98, 0xff, 0xea, 0xe9, 0x93, 0xff, 0xf0, 0xe4, 0x8c, 0xff, 0xf4, 0xdd, 0x88, 0xff, 0xf5, 0xcf, 0x82, 0xff, 0xf3, 0xc0, 0x7d, 0xff, 0xf4, 0xb4, 0x73, 0xff, 0xf2, 0xa8, 0x6c, 0xff, 0xe1, 0x9b, 0x65, 0xff, 0xcd, 0x93, 0x5f, 0xff, 0xc3, 0x8b, 0x59, 0xff, 0xbc, 0x84, 0x53, 0xff, 0xb8, 0x7e, 0x4d, 0xff, 0xb3, 0x78, 0x47, 0xff, 0xb0, 0x75, 0x43, 0xff, 0xac, 0x71, 0x3f, 0xff, 0xae, 0x70, 0x3f, 0xff, 0xa1, 0x62, 0x37, 0xff, 0x99, 0x59, 0x30, 0xff, 0x94, 0x55, 0x2e, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x93, 0x54, 0x2d, 0xff, 0x92, 0x52, 0x2d, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x8f, 0x51, 0x2d, 0xff, 0x8c, 0x4e, 0x2a, 0xff, 0x8a, 0x4b, 0x29, 0xff, 0x88, 0x49, 0x28, 0xff, 0x86, 0x47, 0x27, 0xff, 0x85, 0x46, 0x26, 0xff, 0x84, 0x44, 0x26, 0xff, 0x82, 0x43, 0x25, 0xff, 0x81, 0x43, 0x24, 0xff, 0x7f, 0x40, 0x23, 0xff, 0x7e, 0x3f, 0x20, 0xff, 0x7c, 0x3e, 0x21, 0xff, 0x7a, 0x3b, 0x21, 0xff, 0x7b, 0x3d, 0x20, 0xff, 0x78, 0x3a, 0x1e, 0xff, 0x78, 0x3a, 0x1d, 0xff, 0x78, 0x3a, 0x1d, 0xff, 0x78, 0x39, 0x1d, 0xff, 0x76, 0x3a, 0x1d, 0xff, 0x74, 0x37, 0x1c, 0xff, 0x6d, 0x33, 0x18, 0xff, 0x6d, 0x34, 0x17, 0xff, 0x6f, 0x34, 0x18, 0xff, 0x6f, 0x33, 0x18, 0xff, 0x6d, 0x33, 0x16, 0xff, 0x6c, 0x33, 0x18, 0xff, 0x6d, 0x34, 0x17, 0xff, 0x6f, 0x34, 0x18, 0xff, 0x6e, 0x33, 0x18, 0xff, 0x6d, 0x33, 0x19, 0xff, 0x6e, 0x33, 0x19, 0xff, 0x71, 0x36, 0x18, 0xff, 0x73, 0x37, 0x1a, 0xff, 0x73, 0x39, 0x1c, 0xff, + 0x78, 0x3b, 0x20, 0xff, 0x78, 0x3b, 0x22, 0xff, 0x7b, 0x3c, 0x23, 0xff, 0x7c, 0x3d, 0x24, 0xff, 0x7c, 0x3e, 0x26, 0xff, 0x7f, 0x41, 0x28, 0xff, 0x80, 0x42, 0x25, 0xff, 0x7c, 0x3d, 0x1e, 0xff, 0x7c, 0x3d, 0x1e, 0xff, 0x7c, 0x3f, 0x23, 0xff, 0x7c, 0x3f, 0x23, 0xff, 0x7d, 0x3e, 0x21, 0xff, 0x82, 0x44, 0x23, 0xff, 0x85, 0x48, 0x24, 0xff, 0x88, 0x49, 0x26, 0xff, 0x8a, 0x4a, 0x26, 0xff, 0x8c, 0x4c, 0x27, 0xff, 0x8e, 0x52, 0x28, 0xff, 0x92, 0x52, 0x29, 0xff, 0x95, 0x54, 0x2c, 0xff, 0xa1, 0x63, 0x36, 0xff, 0xac, 0x74, 0x43, 0xff, 0xaf, 0x78, 0x4a, 0xff, 0xb8, 0x80, 0x53, 0xff, 0xc0, 0x88, 0x5b, 0xff, 0xc8, 0x93, 0x5e, 0xff, 0xce, 0x9a, 0x5f, 0xff, 0xd0, 0x9c, 0x61, 0xff, 0xce, 0x9e, 0x62, 0xff, 0xd3, 0xa0, 0x63, 0xff, 0xd9, 0xa0, 0x63, 0xff, 0xe1, 0xa0, 0x62, 0xff, 0xd4, 0x97, 0x5a, 0xff, 0xcf, 0x91, 0x56, 0xff, 0xd3, 0x90, 0x55, 0xff, 0xd4, 0x90, 0x58, 0xff, 0xe2, 0x99, 0x5d, 0xff, 0xee, 0x9e, 0x62, 0xff, 0xf2, 0xa7, 0x69, 0xff, 0xf0, 0xb0, 0x70, 0xff, 0xe5, 0xaa, 0x6e, 0xff, 0xcc, 0x8b, 0x58, 0xff, 0xca, 0x8e, 0x5b, 0xff, 0xc6, 0x93, 0x5e, 0xff, 0xc4, 0x97, 0x63, 0xff, 0xc4, 0x98, 0x68, 0xff, 0xc4, 0x98, 0x6d, 0xff, 0xc1, 0x96, 0x71, 0xff, 0xc1, 0x96, 0x74, 0xff, 0xc2, 0x97, 0x72, 0xff, 0xc3, 0x97, 0x73, 0xff, 0xc5, 0x99, 0x71, 0xff, 0xc8, 0x9b, 0x6f, 0xff, 0xcb, 0xa0, 0x6d, 0xff, 0xce, 0xa0, 0x66, 0xff, 0xd1, 0x9e, 0x5f, 0xff, 0xd2, 0x98, 0x59, 0xff, 0xcf, 0x93, 0x55, 0xff, 0xd1, 0x96, 0x55, 0xff, 0xd1, 0x97, 0x56, 0xff, 0xd2, 0x97, 0x59, 0xff, 0xd1, 0x99, 0x5e, 0xff, 0xce, 0x9a, 0x62, 0xff, 0xcc, 0x9d, 0x64, 0xff, 0xcb, 0x9e, 0x61, 0xff, 0xc8, 0x9a, 0x5f, 0xff, 0xc5, 0x97, 0x5d, 0xff, 0xbd, 0x8b, 0x55, 0xff, 0xba, 0x82, 0x4d, 0xff, 0xba, 0x7f, 0x48, 0xff, 0xb8, 0x7d, 0x47, 0xff, 0xb7, 0x7c, 0x48, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb6, 0x7f, 0x4b, 0xff, 0xb4, 0x80, 0x4b, 0xff, 0xb2, 0x7e, 0x47, 0xff, 0xb0, 0x7b, 0x47, 0xff, 0xad, 0x79, 0x43, 0xff, 0xad, 0x77, 0x43, 0xff, 0xad, 0x77, 0x43, 0xff, 0xa9, 0x74, 0x3f, 0xff, 0xa2, 0x6b, 0x3d, 0xff, 0xa0, 0x6b, 0x3f, 0xff, 0xa0, 0x69, 0x42, 0xff, 0xa1, 0x6c, 0x3f, 0xff, 0xa2, 0x6c, 0x3d, 0xff, 0xa3, 0x6c, 0x3d, 0xff, 0xa3, 0x6d, 0x3d, 0xff, 0xa4, 0x6d, 0x3c, 0xff, 0xa6, 0x70, 0x3c, 0xff, 0xa7, 0x72, 0x3f, 0xff, 0xac, 0x77, 0x43, 0xff, 0xab, 0x74, 0x3f, 0xff, 0xaa, 0x74, 0x3c, 0xff, 0xab, 0x75, 0x3b, 0xff, 0xac, 0x76, 0x3b, 0xff, 0xaf, 0x7a, 0x3f, 0xff, 0xaf, 0x79, 0x43, 0xff, 0xa0, 0x65, 0x3b, 0xff, 0x95, 0x56, 0x2f, 0xff, 0x9b, 0x5b, 0x33, 0xff, 0x9f, 0x61, 0x36, 0xff, 0xa2, 0x65, 0x38, 0xff, 0xa6, 0x69, 0x3b, 0xff, 0xab, 0x6c, 0x3e, 0xff, 0xb0, 0x71, 0x41, 0xff, 0xb6, 0x79, 0x45, 0xff, 0xb8, 0x7e, 0x4c, 0xff, 0xba, 0x82, 0x4f, 0xff, 0xbd, 0x84, 0x50, 0xff, 0xc1, 0x86, 0x53, 0xff, 0xbc, 0x81, 0x4b, 0xff, 0xb7, 0x7b, 0x42, 0xff, 0xba, 0x7d, 0x47, 0xff, 0xbe, 0x80, 0x48, 0xff, 0xbe, 0x80, 0x48, 0xff, 0xc1, 0x81, 0x49, 0xff, 0xc2, 0x82, 0x49, 0xff, 0xc2, 0x83, 0x49, 0xff, 0xc3, 0x83, 0x49, 0xff, 0xc6, 0x89, 0x4e, 0xff, 0xca, 0x93, 0x57, 0xff, 0xce, 0x97, 0x59, 0xff, 0xd1, 0x98, 0x5a, 0xff, 0xd5, 0x9a, 0x5b, 0xff, 0xdb, 0x99, 0x5b, 0xff, 0xe1, 0x9c, 0x5e, 0xff, 0xdd, 0x97, 0x5a, 0xff, 0xcc, 0x8a, 0x4f, 0xff, 0xc3, 0x82, 0x4b, 0xff, 0xc1, 0x81, 0x4a, 0xff, 0xc1, 0x82, 0x4a, 0xff, 0xc2, 0x83, 0x4c, 0xff, 0xc2, 0x83, 0x4b, 0xff, 0xc4, 0x84, 0x4a, 0xff, 0xc4, 0x86, 0x4d, 0xff, 0xc4, 0x86, 0x4e, 0xff, 0xca, 0x86, 0x4c, 0xff, 0xdc, 0x8e, 0x50, 0xff, 0xed, 0x98, 0x57, 0xff, 0xf2, 0x9b, 0x5a, 0xff, 0xf2, 0x9d, 0x5c, 0xff, 0xf3, 0xa5, 0x64, 0xff, 0xf2, 0xaf, 0x6c, 0xff, 0xf2, 0xb6, 0x74, 0xff, 0xf3, 0xb7, 0x7a, 0xff, 0xf4, 0xb8, 0x7b, 0xff, 0xf5, 0xbc, 0x78, 0xff, 0xf4, 0xb7, 0x72, 0xff, 0xf4, 0xb1, 0x6e, 0xff, 0xf1, 0xae, 0x6c, 0xff, 0xf1, 0xaa, 0x69, 0xff, 0xf3, 0xa5, 0x65, 0xff, 0xf4, 0xa1, 0x62, 0xff, 0xf4, 0xa3, 0x62, 0xff, 0xf4, 0xa4, 0x62, 0xff, 0xf4, 0xa1, 0x60, 0xff, 0xf4, 0xa3, 0x62, 0xff, 0xf4, 0xa1, 0x63, 0xff, 0xf4, 0xa1, 0x62, 0xff, 0xf3, 0xa3, 0x65, 0xff, 0xf1, 0xa4, 0x65, 0xff, 0xf2, 0xad, 0x6e, 0xff, 0xf4, 0xb1, 0x72, 0xff, 0xf4, 0xb1, 0x70, 0xff, 0xf4, 0xb2, 0x6f, 0xff, 0xf4, 0xb4, 0x74, 0xff, 0xf3, 0xb6, 0x74, 0xff, 0xf2, 0xb5, 0x74, 0xff, 0xf0, 0xaa, 0x6b, 0xff, 0xf1, 0xaa, 0x6a, 0xff, 0xf2, 0xb0, 0x6d, 0xff, 0xf3, 0xb4, 0x6f, 0xff, 0xf5, 0xbc, 0x74, 0xff, 0xf4, 0xcd, 0x7c, 0xff, 0xf3, 0xdb, 0x87, 0xff, 0xf1, 0xe8, 0x90, 0xff, 0xeb, 0xea, 0x94, 0xff, 0xeb, 0xeb, 0x93, 0xff, 0xed, 0xca, 0x7d, 0xff, 0xf2, 0xbf, 0x78, 0xff, 0xf5, 0xb8, 0x74, 0xff, 0xf4, 0xaf, 0x6f, 0xff, 0xf2, 0xaa, 0x68, 0xff, 0xe4, 0x9d, 0x63, 0xff, 0xd2, 0x92, 0x5c, 0xff, 0xc6, 0x89, 0x57, 0xff, 0xbf, 0x86, 0x55, 0xff, 0xbc, 0x81, 0x50, 0xff, 0xb8, 0x7f, 0x4a, 0xff, 0xb1, 0x76, 0x44, 0xff, 0xac, 0x6f, 0x3f, 0xff, 0xaa, 0x6d, 0x3d, 0xff, 0xa0, 0x61, 0x36, 0xff, 0x9a, 0x5b, 0x30, 0xff, 0x98, 0x59, 0x31, 0xff, 0x97, 0x56, 0x2f, 0xff, 0x95, 0x54, 0x2e, 0xff, 0x95, 0x54, 0x2f, 0xff, 0x92, 0x53, 0x2e, 0xff, 0x90, 0x50, 0x2c, 0xff, 0x8f, 0x51, 0x2c, 0xff, 0x8c, 0x4e, 0x29, 0xff, 0x8a, 0x4b, 0x28, 0xff, 0x88, 0x4a, 0x28, 0xff, 0x86, 0x47, 0x29, 0xff, 0x85, 0x47, 0x27, 0xff, 0x84, 0x45, 0x27, 0xff, 0x83, 0x41, 0x26, 0xff, 0x80, 0x41, 0x23, 0xff, 0x7f, 0x41, 0x23, 0xff, 0x7c, 0x3d, 0x20, 0xff, 0x7c, 0x3d, 0x22, 0xff, 0x7c, 0x3d, 0x22, 0xff, 0x7a, 0x3d, 0x1f, 0xff, 0x7a, 0x3c, 0x1f, 0xff, 0x79, 0x3c, 0x1f, 0xff, 0x79, 0x3c, 0x1f, 0xff, 0x78, 0x3c, 0x20, 0xff, 0x76, 0x3a, 0x20, 0xff, 0x72, 0x37, 0x1b, 0xff, 0x71, 0x34, 0x18, 0xff, 0x6f, 0x34, 0x18, 0xff, 0x6e, 0x32, 0x18, 0xff, 0x6e, 0x33, 0x18, 0xff, 0x6e, 0x34, 0x18, 0xff, 0x6e, 0x32, 0x18, 0xff, 0x6e, 0x34, 0x18, 0xff, 0x6d, 0x34, 0x19, 0xff, 0x6f, 0x34, 0x19, 0xff, 0x6f, 0x34, 0x1b, 0xff, 0x70, 0x36, 0x19, 0xff, 0x74, 0x38, 0x1d, 0xff, 0x75, 0x3a, 0x1f, 0xff, + 0x77, 0x3c, 0x20, 0xff, 0x7a, 0x3c, 0x23, 0xff, 0x7b, 0x3c, 0x24, 0xff, 0x7c, 0x3e, 0x26, 0xff, 0x7d, 0x40, 0x27, 0xff, 0x80, 0x42, 0x28, 0xff, 0x7c, 0x3d, 0x1e, 0xff, 0x7b, 0x3f, 0x20, 0xff, 0x7c, 0x3f, 0x22, 0xff, 0x7c, 0x3f, 0x21, 0xff, 0x81, 0x40, 0x1d, 0xff, 0x82, 0x45, 0x20, 0xff, 0x84, 0x48, 0x21, 0xff, 0x86, 0x45, 0x23, 0xff, 0x88, 0x49, 0x26, 0xff, 0x8a, 0x4a, 0x26, 0xff, 0x8d, 0x4d, 0x27, 0xff, 0x8f, 0x50, 0x28, 0xff, 0x91, 0x52, 0x28, 0xff, 0x9b, 0x5a, 0x30, 0xff, 0xa5, 0x68, 0x39, 0xff, 0xa8, 0x71, 0x3e, 0xff, 0xad, 0x76, 0x48, 0xff, 0xb3, 0x7c, 0x50, 0xff, 0xb9, 0x83, 0x57, 0xff, 0xc2, 0x8b, 0x5c, 0xff, 0xc8, 0x92, 0x5c, 0xff, 0xd0, 0x94, 0x5b, 0xff, 0xd0, 0x95, 0x5c, 0xff, 0xd0, 0x99, 0x59, 0xff, 0xd6, 0x9a, 0x5d, 0xff, 0xdb, 0x99, 0x5c, 0xff, 0xe2, 0x99, 0x5c, 0xff, 0xca, 0x8d, 0x52, 0xff, 0xcf, 0x8d, 0x54, 0xff, 0xd3, 0x90, 0x56, 0xff, 0xda, 0x94, 0x59, 0xff, 0xec, 0x9e, 0x60, 0xff, 0xf4, 0xa5, 0x67, 0xff, 0xf4, 0xaf, 0x6f, 0xff, 0xeb, 0xb0, 0x74, 0xff, 0xd3, 0x91, 0x5d, 0xff, 0xce, 0x8f, 0x5c, 0xff, 0xcc, 0x96, 0x61, 0xff, 0xc9, 0x9a, 0x65, 0xff, 0xc7, 0x9b, 0x69, 0xff, 0xc5, 0x9a, 0x6f, 0xff, 0xc5, 0x9a, 0x73, 0xff, 0xc4, 0x97, 0x77, 0xff, 0xc5, 0x99, 0x79, 0xff, 0xc6, 0x99, 0x78, 0xff, 0xca, 0x9d, 0x79, 0xff, 0xcd, 0xa0, 0x76, 0xff, 0xd1, 0xa1, 0x6f, 0xff, 0xd2, 0xa4, 0x6c, 0xff, 0xd5, 0xa5, 0x66, 0xff, 0xd8, 0xa2, 0x60, 0xff, 0xd9, 0x9f, 0x5c, 0xff, 0xd9, 0x9b, 0x5a, 0xff, 0xd9, 0x99, 0x57, 0xff, 0xda, 0x9c, 0x5b, 0xff, 0xdb, 0x9d, 0x62, 0xff, 0xd7, 0x9f, 0x65, 0xff, 0xd4, 0xa0, 0x64, 0xff, 0xd2, 0xa0, 0x63, 0xff, 0xcf, 0x9e, 0x61, 0xff, 0xcd, 0x9c, 0x5f, 0xff, 0xc7, 0x95, 0x5a, 0xff, 0xbc, 0x83, 0x4d, 0xff, 0xbc, 0x82, 0x4a, 0xff, 0xba, 0x7e, 0x49, 0xff, 0xba, 0x7e, 0x49, 0xff, 0xb9, 0x80, 0x4a, 0xff, 0xb8, 0x81, 0x4d, 0xff, 0xb5, 0x82, 0x4e, 0xff, 0xb4, 0x82, 0x49, 0xff, 0xb3, 0x7f, 0x49, 0xff, 0xb2, 0x7b, 0x46, 0xff, 0xb0, 0x7b, 0x42, 0xff, 0xae, 0x79, 0x42, 0xff, 0xa8, 0x72, 0x42, 0xff, 0xa1, 0x6d, 0x3f, 0xff, 0xa1, 0x6c, 0x40, 0xff, 0xa1, 0x69, 0x3e, 0xff, 0xa2, 0x6b, 0x41, 0xff, 0xa2, 0x6c, 0x40, 0xff, 0xa3, 0x6d, 0x3e, 0xff, 0xa4, 0x6e, 0x3f, 0xff, 0xa5, 0x6f, 0x3c, 0xff, 0xa5, 0x6d, 0x38, 0xff, 0xa4, 0x6b, 0x33, 0xff, 0xa4, 0x68, 0x2d, 0xff, 0xa5, 0x69, 0x2d, 0xff, 0xa8, 0x6f, 0x32, 0xff, 0xac, 0x75, 0x3a, 0xff, 0xaf, 0x79, 0x41, 0xff, 0xa8, 0x70, 0x3e, 0xff, 0x95, 0x58, 0x31, 0xff, 0x91, 0x53, 0x2d, 0xff, 0x95, 0x58, 0x31, 0xff, 0x98, 0x5c, 0x33, 0xff, 0x9c, 0x5f, 0x34, 0xff, 0xa0, 0x63, 0x37, 0xff, 0xa4, 0x67, 0x3a, 0xff, 0xa9, 0x6c, 0x3d, 0xff, 0xae, 0x70, 0x40, 0xff, 0xb3, 0x73, 0x43, 0xff, 0xb7, 0x79, 0x47, 0xff, 0xb9, 0x7f, 0x4c, 0xff, 0xbc, 0x80, 0x4f, 0xff, 0xbc, 0x7e, 0x4c, 0xff, 0xb7, 0x7b, 0x47, 0xff, 0xb7, 0x7b, 0x45, 0xff, 0xb9, 0x7d, 0x45, 0xff, 0xbc, 0x7f, 0x47, 0xff, 0xbf, 0x81, 0x4a, 0xff, 0xbf, 0x82, 0x4a, 0xff, 0xc1, 0x81, 0x49, 0xff, 0xc3, 0x83, 0x4a, 0xff, 0xc4, 0x82, 0x49, 0xff, 0xc4, 0x82, 0x49, 0xff, 0xc6, 0x89, 0x4f, 0xff, 0xce, 0x92, 0x59, 0xff, 0xd3, 0x98, 0x5c, 0xff, 0xd7, 0x9b, 0x5d, 0xff, 0xd6, 0x9b, 0x5c, 0xff, 0xc6, 0x8c, 0x52, 0xff, 0xb9, 0x7f, 0x49, 0xff, 0xbc, 0x81, 0x4b, 0xff, 0xc1, 0x86, 0x4e, 0xff, 0xc3, 0x87, 0x4f, 0xff, 0xc6, 0x86, 0x4e, 0xff, 0xc7, 0x86, 0x4e, 0xff, 0xc5, 0x86, 0x4d, 0xff, 0xc7, 0x87, 0x4e, 0xff, 0xc9, 0x87, 0x4d, 0xff, 0xc9, 0x87, 0x4d, 0xff, 0xca, 0x87, 0x4e, 0xff, 0xce, 0x88, 0x4e, 0xff, 0xe5, 0x94, 0x55, 0xff, 0xf3, 0x9b, 0x59, 0xff, 0xf3, 0x9b, 0x59, 0xff, 0xf4, 0x9e, 0x5c, 0xff, 0xf3, 0xa6, 0x65, 0xff, 0xf3, 0xb0, 0x6d, 0xff, 0xf3, 0xb8, 0x76, 0xff, 0xf2, 0xbf, 0x7c, 0xff, 0xf2, 0xc4, 0x7f, 0xff, 0xf2, 0xc6, 0x7e, 0xff, 0xf3, 0xc4, 0x7b, 0xff, 0xf2, 0xc0, 0x77, 0xff, 0xf1, 0xbb, 0x75, 0xff, 0xf3, 0xb4, 0x70, 0xff, 0xf3, 0xb1, 0x6e, 0xff, 0xf3, 0xab, 0x67, 0xff, 0xf3, 0xa6, 0x64, 0xff, 0xf4, 0xa5, 0x65, 0xff, 0xf4, 0xa5, 0x65, 0xff, 0xf4, 0xa6, 0x65, 0xff, 0xf4, 0xa6, 0x64, 0xff, 0xf4, 0xa3, 0x63, 0xff, 0xf3, 0xa5, 0x65, 0xff, 0xf3, 0xa6, 0x65, 0xff, 0xf2, 0xaf, 0x6f, 0xff, 0xf3, 0xb2, 0x71, 0xff, 0xf4, 0xaf, 0x70, 0xff, 0xf4, 0xaf, 0x70, 0xff, 0xf4, 0xb0, 0x6f, 0xff, 0xf4, 0xb2, 0x72, 0xff, 0xf3, 0xb3, 0x70, 0xff, 0xf1, 0xa9, 0x66, 0xff, 0xf3, 0xa8, 0x66, 0xff, 0xf3, 0xab, 0x68, 0xff, 0xf0, 0xad, 0x6b, 0xff, 0xf2, 0xb2, 0x6d, 0xff, 0xf4, 0xbd, 0x74, 0xff, 0xf3, 0xc5, 0x7a, 0xff, 0xf4, 0xce, 0x7f, 0xff, 0xf4, 0xda, 0x87, 0xff, 0xf5, 0xe2, 0x88, 0xff, 0xf1, 0xce, 0x7e, 0xff, 0xee, 0xb2, 0x6b, 0xff, 0xf3, 0xa8, 0x67, 0xff, 0xee, 0xa5, 0x64, 0xff, 0xe4, 0x9d, 0x5e, 0xff, 0xd4, 0x94, 0x5a, 0xff, 0xcb, 0x8b, 0x55, 0xff, 0xc3, 0x87, 0x52, 0xff, 0xbe, 0x82, 0x4f, 0xff, 0xb6, 0x7b, 0x49, 0xff, 0xb2, 0x76, 0x45, 0xff, 0xad, 0x70, 0x42, 0xff, 0xac, 0x70, 0x3d, 0xff, 0xa1, 0x62, 0x35, 0xff, 0x9f, 0x62, 0x36, 0xff, 0x9a, 0x5a, 0x32, 0xff, 0x99, 0x59, 0x30, 0xff, 0x96, 0x55, 0x2f, 0xff, 0x96, 0x55, 0x2f, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x91, 0x54, 0x2d, 0xff, 0x91, 0x50, 0x2d, 0xff, 0x8f, 0x51, 0x2b, 0xff, 0x8a, 0x4c, 0x29, 0xff, 0x8a, 0x4c, 0x29, 0xff, 0x8a, 0x4b, 0x28, 0xff, 0x86, 0x48, 0x28, 0xff, 0x86, 0x46, 0x28, 0xff, 0x84, 0x44, 0x26, 0xff, 0x83, 0x42, 0x24, 0xff, 0x7f, 0x3f, 0x24, 0xff, 0x7f, 0x40, 0x26, 0xff, 0x7f, 0x3f, 0x24, 0xff, 0x7d, 0x3f, 0x22, 0xff, 0x7c, 0x3d, 0x23, 0xff, 0x7c, 0x3d, 0x22, 0xff, 0x7c, 0x3b, 0x22, 0xff, 0x7a, 0x3d, 0x22, 0xff, 0x79, 0x3c, 0x23, 0xff, 0x77, 0x3c, 0x20, 0xff, 0x77, 0x3c, 0x20, 0xff, 0x74, 0x36, 0x1b, 0xff, 0x71, 0x36, 0x18, 0xff, 0x71, 0x34, 0x18, 0xff, 0x6f, 0x34, 0x18, 0xff, 0x6e, 0x34, 0x18, 0xff, 0x6e, 0x33, 0x18, 0xff, 0x6e, 0x33, 0x18, 0xff, 0x6e, 0x34, 0x19, 0xff, 0x71, 0x36, 0x1b, 0xff, 0x72, 0x37, 0x1b, 0xff, 0x71, 0x37, 0x1b, 0xff, 0x75, 0x3a, 0x1d, 0xff, 0x78, 0x3c, 0x20, 0xff, + 0x7a, 0x3d, 0x22, 0xff, 0x7a, 0x3c, 0x22, 0xff, 0x7a, 0x3c, 0x24, 0xff, 0x7c, 0x40, 0x26, 0xff, 0x81, 0x43, 0x27, 0xff, 0x7d, 0x3e, 0x21, 0xff, 0x7b, 0x3e, 0x1f, 0xff, 0x7d, 0x3f, 0x1e, 0xff, 0x7d, 0x3e, 0x1c, 0xff, 0x80, 0x40, 0x1c, 0xff, 0x82, 0x40, 0x1d, 0xff, 0x84, 0x43, 0x20, 0xff, 0x84, 0x45, 0x23, 0xff, 0x87, 0x48, 0x23, 0xff, 0x8a, 0x4b, 0x25, 0xff, 0x8b, 0x4b, 0x27, 0xff, 0x8d, 0x4d, 0x27, 0xff, 0x8f, 0x50, 0x28, 0xff, 0x98, 0x59, 0x2c, 0xff, 0x9f, 0x60, 0x31, 0xff, 0xa4, 0x67, 0x36, 0xff, 0xa8, 0x6f, 0x3d, 0xff, 0xab, 0x73, 0x45, 0xff, 0xb1, 0x77, 0x4d, 0xff, 0xb5, 0x7c, 0x50, 0xff, 0xba, 0x82, 0x54, 0xff, 0xc0, 0x87, 0x56, 0xff, 0xc7, 0x8a, 0x53, 0xff, 0xcb, 0x8d, 0x52, 0xff, 0xcb, 0x8d, 0x52, 0xff, 0xcf, 0x8d, 0x53, 0xff, 0xd6, 0x91, 0x56, 0xff, 0xde, 0x93, 0x56, 0xff, 0xd5, 0x8c, 0x53, 0xff, 0xca, 0x89, 0x51, 0xff, 0xcd, 0x8d, 0x51, 0xff, 0xd7, 0x93, 0x57, 0xff, 0xe3, 0x98, 0x5d, 0xff, 0xf1, 0xa2, 0x64, 0xff, 0xf3, 0xac, 0x6d, 0xff, 0xf0, 0xb3, 0x73, 0xff, 0xe1, 0xa1, 0x69, 0xff, 0xd1, 0x8f, 0x5a, 0xff, 0xcf, 0x97, 0x5f, 0xff, 0xcd, 0x9b, 0x64, 0xff, 0xcb, 0x9e, 0x6a, 0xff, 0xca, 0x9a, 0x70, 0xff, 0xc9, 0x9b, 0x77, 0xff, 0xc8, 0x9a, 0x7b, 0xff, 0xc9, 0x9a, 0x7b, 0xff, 0xca, 0x9b, 0x7b, 0xff, 0xcd, 0x9f, 0x7c, 0xff, 0xd0, 0xa2, 0x7b, 0xff, 0xd4, 0xa6, 0x75, 0xff, 0xd9, 0xa7, 0x6f, 0xff, 0xdb, 0xa9, 0x6b, 0xff, 0xe0, 0xaa, 0x67, 0xff, 0xe3, 0xa7, 0x62, 0xff, 0xe6, 0xa4, 0x60, 0xff, 0xe5, 0xa1, 0x5d, 0xff, 0xe5, 0xa1, 0x5e, 0xff, 0xe5, 0xa4, 0x63, 0xff, 0xe5, 0xa6, 0x66, 0xff, 0xe1, 0xa7, 0x69, 0xff, 0xdc, 0xa3, 0x66, 0xff, 0xd8, 0xa2, 0x62, 0xff, 0xd4, 0x9f, 0x5e, 0xff, 0xd0, 0x99, 0x5b, 0xff, 0xc6, 0x90, 0x54, 0xff, 0xbe, 0x83, 0x4e, 0xff, 0xbd, 0x81, 0x4a, 0xff, 0xbc, 0x7f, 0x48, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xbd, 0x85, 0x4f, 0xff, 0xbb, 0x86, 0x50, 0xff, 0xb6, 0x82, 0x4c, 0xff, 0xb6, 0x82, 0x4e, 0xff, 0xb5, 0x81, 0x4b, 0xff, 0xb4, 0x80, 0x48, 0xff, 0xaf, 0x7a, 0x45, 0xff, 0xa6, 0x70, 0x42, 0xff, 0xa3, 0x6e, 0x43, 0xff, 0xa3, 0x6d, 0x43, 0xff, 0xa3, 0x6e, 0x43, 0xff, 0xa1, 0x6b, 0x41, 0xff, 0xa3, 0x6c, 0x3f, 0xff, 0xa3, 0x6a, 0x3c, 0xff, 0xa4, 0x6a, 0x39, 0xff, 0xa5, 0x6b, 0x34, 0xff, 0xa3, 0x68, 0x30, 0xff, 0xa1, 0x63, 0x2c, 0xff, 0xa1, 0x64, 0x27, 0xff, 0xa2, 0x64, 0x27, 0xff, 0xa2, 0x63, 0x25, 0xff, 0xa5, 0x69, 0x2b, 0xff, 0xa1, 0x67, 0x34, 0xff, 0x92, 0x57, 0x30, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x94, 0x56, 0x2f, 0xff, 0x97, 0x5b, 0x32, 0xff, 0x9b, 0x5f, 0x35, 0xff, 0x9f, 0x62, 0x36, 0xff, 0xa2, 0x65, 0x3a, 0xff, 0xa5, 0x69, 0x3d, 0xff, 0xa9, 0x6d, 0x3e, 0xff, 0xae, 0x71, 0x41, 0xff, 0xb4, 0x76, 0x45, 0xff, 0xb7, 0x7b, 0x4a, 0xff, 0xb9, 0x7d, 0x4c, 0xff, 0xb8, 0x7c, 0x4b, 0xff, 0xb6, 0x7d, 0x48, 0xff, 0xb7, 0x7e, 0x47, 0xff, 0xb9, 0x7e, 0x47, 0xff, 0xbb, 0x80, 0x49, 0xff, 0xbd, 0x80, 0x49, 0xff, 0xbf, 0x82, 0x4b, 0xff, 0xc1, 0x82, 0x4a, 0xff, 0xc3, 0x83, 0x4b, 0xff, 0xc4, 0x84, 0x4b, 0xff, 0xc4, 0x85, 0x49, 0xff, 0xc4, 0x84, 0x49, 0xff, 0xc7, 0x88, 0x4c, 0xff, 0xcb, 0x90, 0x54, 0xff, 0xc5, 0x8c, 0x52, 0xff, 0xb6, 0x7e, 0x4a, 0xff, 0xb6, 0x7d, 0x4a, 0xff, 0xbb, 0x84, 0x4e, 0xff, 0xbd, 0x86, 0x50, 0xff, 0xc0, 0x87, 0x51, 0xff, 0xc3, 0x8a, 0x53, 0xff, 0xc4, 0x8b, 0x52, 0xff, 0xc8, 0x8c, 0x52, 0xff, 0xcb, 0x8c, 0x53, 0xff, 0xcd, 0x8b, 0x52, 0xff, 0xcd, 0x8b, 0x50, 0xff, 0xce, 0x8a, 0x4f, 0xff, 0xd0, 0x8b, 0x4f, 0xff, 0xd1, 0x8c, 0x4f, 0xff, 0xd3, 0x89, 0x4e, 0xff, 0xe6, 0x94, 0x55, 0xff, 0xf3, 0xa0, 0x5c, 0xff, 0xf3, 0xa1, 0x5c, 0xff, 0xf3, 0xa5, 0x60, 0xff, 0xf2, 0xae, 0x68, 0xff, 0xf2, 0xb4, 0x6f, 0xff, 0xf3, 0xbe, 0x76, 0xff, 0xf4, 0xca, 0x7b, 0xff, 0xf5, 0xd0, 0x7f, 0xff, 0xf3, 0xd4, 0x82, 0xff, 0xf3, 0xd0, 0x81, 0xff, 0xf5, 0xc8, 0x7d, 0xff, 0xf4, 0xc3, 0x7c, 0xff, 0xf3, 0xbc, 0x77, 0xff, 0xf4, 0xb4, 0x72, 0xff, 0xf3, 0xb0, 0x6e, 0xff, 0xf3, 0xad, 0x6a, 0xff, 0xf3, 0xab, 0x67, 0xff, 0xf4, 0xa9, 0x65, 0xff, 0xf3, 0xa8, 0x65, 0xff, 0xf4, 0xa7, 0x65, 0xff, 0xf3, 0xa6, 0x66, 0xff, 0xf3, 0xa6, 0x66, 0xff, 0xf1, 0xa7, 0x68, 0xff, 0xf2, 0xae, 0x70, 0xff, 0xf4, 0xb0, 0x71, 0xff, 0xf4, 0xae, 0x6f, 0xff, 0xf4, 0xae, 0x70, 0xff, 0xf4, 0xb1, 0x70, 0xff, 0xf4, 0xb1, 0x70, 0xff, 0xf3, 0xb0, 0x70, 0xff, 0xf2, 0xa8, 0x67, 0xff, 0xf4, 0xa4, 0x63, 0xff, 0xf4, 0xa7, 0x63, 0xff, 0xf3, 0xa9, 0x67, 0xff, 0xf4, 0xae, 0x6a, 0xff, 0xf3, 0xb4, 0x70, 0xff, 0xf3, 0xb8, 0x74, 0xff, 0xf5, 0xbd, 0x76, 0xff, 0xf5, 0xc3, 0x7b, 0xff, 0xf5, 0xc4, 0x7c, 0xff, 0xf4, 0xc2, 0x79, 0xff, 0xf1, 0xb1, 0x6d, 0xff, 0xeb, 0xa2, 0x64, 0xff, 0xe2, 0x99, 0x5c, 0xff, 0xd7, 0x94, 0x58, 0xff, 0xcd, 0x8e, 0x55, 0xff, 0xc6, 0x87, 0x51, 0xff, 0xbe, 0x81, 0x4c, 0xff, 0xb7, 0x7c, 0x48, 0xff, 0xb2, 0x76, 0x44, 0xff, 0xaf, 0x71, 0x40, 0xff, 0xb4, 0x78, 0x41, 0xff, 0xb3, 0x77, 0x41, 0xff, 0x98, 0x59, 0x32, 0xff, 0x96, 0x56, 0x2f, 0xff, 0x95, 0x54, 0x2f, 0xff, 0x96, 0x56, 0x2f, 0xff, 0x97, 0x56, 0x2f, 0xff, 0x95, 0x55, 0x2f, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x91, 0x50, 0x2d, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x90, 0x51, 0x2c, 0xff, 0x8c, 0x4d, 0x2a, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x89, 0x4a, 0x2a, 0xff, 0x87, 0x48, 0x28, 0xff, 0x85, 0x48, 0x28, 0xff, 0x84, 0x45, 0x26, 0xff, 0x80, 0x42, 0x23, 0xff, 0x81, 0x42, 0x24, 0xff, 0x81, 0x40, 0x22, 0xff, 0x7f, 0x40, 0x22, 0xff, 0x7d, 0x3e, 0x22, 0xff, 0x7e, 0x40, 0x23, 0xff, 0x7c, 0x3f, 0x25, 0xff, 0x7c, 0x3e, 0x25, 0xff, 0x7b, 0x3c, 0x24, 0xff, 0x79, 0x3c, 0x22, 0xff, 0x79, 0x3c, 0x22, 0xff, 0x78, 0x3a, 0x1f, 0xff, 0x74, 0x37, 0x1a, 0xff, 0x71, 0x35, 0x1b, 0xff, 0x72, 0x35, 0x19, 0xff, 0x70, 0x34, 0x19, 0xff, 0x70, 0x35, 0x1b, 0xff, 0x6f, 0x33, 0x19, 0xff, 0x70, 0x35, 0x1b, 0xff, 0x72, 0x35, 0x1b, 0xff, 0x71, 0x37, 0x1b, 0xff, 0x73, 0x37, 0x1d, 0xff, 0x75, 0x38, 0x1d, 0xff, 0x78, 0x3a, 0x22, 0xff, + 0x7b, 0x3e, 0x24, 0xff, 0x7c, 0x3e, 0x25, 0xff, 0x7e, 0x40, 0x27, 0xff, 0x7f, 0x41, 0x27, 0xff, 0x7d, 0x3f, 0x21, 0xff, 0x7b, 0x3d, 0x1d, 0xff, 0x7b, 0x3d, 0x1a, 0xff, 0x7d, 0x3e, 0x18, 0xff, 0x7e, 0x40, 0x1b, 0xff, 0x82, 0x43, 0x20, 0xff, 0x85, 0x44, 0x23, 0xff, 0x87, 0x47, 0x24, 0xff, 0x88, 0x48, 0x26, 0xff, 0x8b, 0x4b, 0x27, 0xff, 0x8d, 0x4e, 0x29, 0xff, 0x8f, 0x4f, 0x2a, 0xff, 0x92, 0x51, 0x2c, 0xff, 0x9a, 0x57, 0x2f, 0xff, 0x9e, 0x5d, 0x31, 0xff, 0xa2, 0x61, 0x34, 0xff, 0xa9, 0x69, 0x3b, 0xff, 0xac, 0x6e, 0x40, 0xff, 0xb0, 0x73, 0x45, 0xff, 0xb1, 0x76, 0x4b, 0xff, 0xb4, 0x79, 0x4f, 0xff, 0xb8, 0x7b, 0x4f, 0xff, 0xba, 0x7f, 0x50, 0xff, 0xc0, 0x81, 0x4e, 0xff, 0xc3, 0x80, 0x4b, 0xff, 0xc0, 0x7f, 0x48, 0xff, 0xc1, 0x7e, 0x48, 0xff, 0xc8, 0x83, 0x4b, 0xff, 0xd3, 0x8a, 0x4f, 0xff, 0xd5, 0x8b, 0x51, 0xff, 0xc9, 0x86, 0x4f, 0xff, 0xcf, 0x8b, 0x53, 0xff, 0xd8, 0x90, 0x56, 0xff, 0xe3, 0x99, 0x5c, 0xff, 0xef, 0x9f, 0x60, 0xff, 0xf3, 0xa7, 0x66, 0xff, 0xf2, 0xaf, 0x6f, 0xff, 0xe8, 0xa6, 0x6b, 0xff, 0xda, 0x92, 0x5c, 0xff, 0xd6, 0x99, 0x61, 0xff, 0xd2, 0x9b, 0x64, 0xff, 0xd1, 0xa0, 0x6b, 0xff, 0xce, 0xa0, 0x70, 0xff, 0xcd, 0xa0, 0x78, 0xff, 0xcc, 0x9d, 0x7c, 0xff, 0xcd, 0x9e, 0x7d, 0xff, 0xcd, 0x9e, 0x7e, 0xff, 0xd2, 0xa0, 0x7e, 0xff, 0xd5, 0xa2, 0x7e, 0xff, 0xd9, 0xa5, 0x7b, 0xff, 0xdd, 0xaa, 0x76, 0xff, 0xe4, 0xb0, 0x73, 0xff, 0xe9, 0xb2, 0x6f, 0xff, 0xf0, 0xb3, 0x6a, 0xff, 0xee, 0xae, 0x69, 0xff, 0xf0, 0xae, 0x68, 0xff, 0xf1, 0xad, 0x67, 0xff, 0xef, 0xac, 0x65, 0xff, 0xf1, 0xac, 0x67, 0xff, 0xf0, 0xaf, 0x6b, 0xff, 0xed, 0xae, 0x6b, 0xff, 0xe8, 0xa9, 0x67, 0xff, 0xe2, 0xa6, 0x62, 0xff, 0xdd, 0x9f, 0x5f, 0xff, 0xd2, 0x94, 0x57, 0xff, 0xbf, 0x85, 0x49, 0xff, 0xc2, 0x86, 0x4d, 0xff, 0xbf, 0x83, 0x4c, 0xff, 0xbe, 0x82, 0x4c, 0xff, 0xc0, 0x8b, 0x56, 0xff, 0xbe, 0x89, 0x54, 0xff, 0xb9, 0x86, 0x4e, 0xff, 0xb9, 0x84, 0x4f, 0xff, 0xb8, 0x84, 0x4b, 0xff, 0xb5, 0x81, 0x49, 0xff, 0xae, 0x79, 0x48, 0xff, 0xa7, 0x71, 0x45, 0xff, 0xa7, 0x72, 0x46, 0xff, 0xa6, 0x73, 0x44, 0xff, 0xa4, 0x71, 0x42, 0xff, 0xa3, 0x6e, 0x41, 0xff, 0xa3, 0x6d, 0x3b, 0xff, 0xa2, 0x6b, 0x36, 0xff, 0xa3, 0x69, 0x31, 0xff, 0xa4, 0x68, 0x2c, 0xff, 0xa2, 0x64, 0x26, 0xff, 0xa0, 0x64, 0x24, 0xff, 0xa3, 0x64, 0x27, 0xff, 0xa3, 0x62, 0x27, 0xff, 0xa4, 0x67, 0x29, 0xff, 0x9e, 0x63, 0x2d, 0xff, 0x8c, 0x4f, 0x2b, 0xff, 0x89, 0x4b, 0x29, 0xff, 0x8d, 0x4f, 0x2b, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x92, 0x54, 0x2e, 0xff, 0x94, 0x58, 0x30, 0xff, 0x97, 0x5b, 0x32, 0xff, 0x9a, 0x5f, 0x35, 0xff, 0x9e, 0x64, 0x38, 0xff, 0xa2, 0x66, 0x3b, 0xff, 0xa7, 0x6a, 0x3d, 0xff, 0xab, 0x6d, 0x40, 0xff, 0xae, 0x72, 0x43, 0xff, 0xb2, 0x77, 0x47, 0xff, 0xb5, 0x7a, 0x4a, 0xff, 0xb4, 0x7c, 0x4a, 0xff, 0xb5, 0x7d, 0x49, 0xff, 0xb6, 0x7c, 0x47, 0xff, 0xb7, 0x7d, 0x47, 0xff, 0xb9, 0x7f, 0x48, 0xff, 0xb9, 0x7e, 0x47, 0xff, 0xbc, 0x7e, 0x47, 0xff, 0xbd, 0x7f, 0x48, 0xff, 0xbe, 0x81, 0x47, 0xff, 0xbf, 0x84, 0x47, 0xff, 0xc2, 0x89, 0x48, 0xff, 0xc1, 0x86, 0x46, 0xff, 0xba, 0x7d, 0x45, 0xff, 0xb3, 0x75, 0x41, 0xff, 0xb0, 0x74, 0x40, 0xff, 0xb5, 0x7c, 0x48, 0xff, 0xb8, 0x83, 0x4f, 0xff, 0xba, 0x86, 0x51, 0xff, 0xbd, 0x86, 0x53, 0xff, 0xbf, 0x89, 0x55, 0xff, 0xc1, 0x8b, 0x56, 0xff, 0xc3, 0x8d, 0x57, 0xff, 0xc8, 0x91, 0x56, 0xff, 0xcd, 0x93, 0x56, 0xff, 0xd3, 0x92, 0x56, 0xff, 0xd6, 0x91, 0x55, 0xff, 0xd8, 0x91, 0x54, 0xff, 0xd7, 0x90, 0x54, 0xff, 0xd7, 0x90, 0x54, 0xff, 0xd9, 0x90, 0x51, 0xff, 0xde, 0x91, 0x51, 0xff, 0xed, 0x9a, 0x56, 0xff, 0xf3, 0xa3, 0x5d, 0xff, 0xf3, 0xa5, 0x60, 0xff, 0xf4, 0xa9, 0x64, 0xff, 0xf2, 0xb3, 0x6d, 0xff, 0xf3, 0xbc, 0x74, 0xff, 0xf2, 0xc4, 0x7a, 0xff, 0xf3, 0xd1, 0x81, 0xff, 0xf4, 0xd8, 0x85, 0xff, 0xf3, 0xdf, 0x86, 0xff, 0xf2, 0xdb, 0x85, 0xff, 0xf2, 0xd6, 0x83, 0xff, 0xf5, 0xcf, 0x83, 0xff, 0xf4, 0xc7, 0x7e, 0xff, 0xf4, 0xbf, 0x77, 0xff, 0xf3, 0xb7, 0x71, 0xff, 0xf3, 0xb2, 0x6e, 0xff, 0xf4, 0xb0, 0x6c, 0xff, 0xf3, 0xae, 0x6a, 0xff, 0xf4, 0xaa, 0x69, 0xff, 0xf4, 0xa8, 0x66, 0xff, 0xf4, 0xa6, 0x66, 0xff, 0xf3, 0xa6, 0x66, 0xff, 0xf2, 0xa9, 0x6a, 0xff, 0xf2, 0xae, 0x71, 0xff, 0xf4, 0xaf, 0x70, 0xff, 0xf4, 0xb0, 0x6f, 0xff, 0xf4, 0xaf, 0x6f, 0xff, 0xf4, 0xb1, 0x70, 0xff, 0xf4, 0xb0, 0x6f, 0xff, 0xf2, 0xb0, 0x6f, 0xff, 0xf2, 0xa9, 0x67, 0xff, 0xf3, 0xa3, 0x63, 0xff, 0xf4, 0xa6, 0x64, 0xff, 0xf4, 0xa7, 0x65, 0xff, 0xf2, 0xac, 0x68, 0xff, 0xf3, 0xad, 0x69, 0xff, 0xf4, 0xb0, 0x6f, 0xff, 0xf4, 0xb5, 0x71, 0xff, 0xf4, 0xb2, 0x72, 0xff, 0xf3, 0xb3, 0x70, 0xff, 0xf5, 0xb5, 0x72, 0xff, 0xf0, 0xae, 0x6b, 0xff, 0xe8, 0xa1, 0x62, 0xff, 0xd6, 0x92, 0x56, 0xff, 0xcd, 0x8a, 0x52, 0xff, 0xc3, 0x83, 0x4d, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xb5, 0x79, 0x45, 0xff, 0xb9, 0x7d, 0x47, 0xff, 0xc1, 0x7f, 0x48, 0xff, 0xcb, 0x88, 0x4c, 0xff, 0xa9, 0x6c, 0x3a, 0xff, 0x99, 0x5b, 0x33, 0xff, 0x97, 0x58, 0x2f, 0xff, 0x93, 0x54, 0x2e, 0xff, 0x92, 0x51, 0x2c, 0xff, 0x94, 0x54, 0x2d, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x97, 0x54, 0x2f, 0xff, 0x94, 0x53, 0x2e, 0xff, 0x92, 0x52, 0x2d, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x8f, 0x51, 0x2d, 0xff, 0x8b, 0x4d, 0x2a, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x8a, 0x4c, 0x29, 0xff, 0x87, 0x47, 0x28, 0xff, 0x84, 0x44, 0x27, 0xff, 0x83, 0x45, 0x27, 0xff, 0x84, 0x45, 0x27, 0xff, 0x82, 0x44, 0x25, 0xff, 0x81, 0x41, 0x24, 0xff, 0x80, 0x40, 0x24, 0xff, 0x7d, 0x41, 0x25, 0xff, 0x7d, 0x40, 0x27, 0xff, 0x7c, 0x3f, 0x26, 0xff, 0x7c, 0x3f, 0x26, 0xff, 0x7b, 0x3e, 0x23, 0xff, 0x7a, 0x3c, 0x22, 0xff, 0x79, 0x3a, 0x1e, 0xff, 0x77, 0x3a, 0x1d, 0xff, 0x76, 0x38, 0x1c, 0xff, 0x73, 0x37, 0x1b, 0xff, 0x73, 0x38, 0x1b, 0xff, 0x72, 0x38, 0x1c, 0xff, 0x72, 0x37, 0x1b, 0xff, 0x71, 0x36, 0x1a, 0xff, 0x71, 0x36, 0x1a, 0xff, 0x74, 0x39, 0x1d, 0xff, 0x76, 0x39, 0x1f, 0xff, 0x78, 0x3b, 0x22, 0xff, 0x7b, 0x3d, 0x24, 0xff, + 0x7e, 0x41, 0x27, 0xff, 0x7f, 0x43, 0x27, 0xff, 0x81, 0x43, 0x29, 0xff, 0x7c, 0x3c, 0x1f, 0xff, 0x78, 0x3b, 0x18, 0xff, 0x7b, 0x3d, 0x18, 0xff, 0x7c, 0x3d, 0x1b, 0xff, 0x7e, 0x3d, 0x1f, 0xff, 0x82, 0x42, 0x23, 0xff, 0x82, 0x43, 0x24, 0xff, 0x84, 0x44, 0x24, 0xff, 0x87, 0x45, 0x26, 0xff, 0x88, 0x48, 0x27, 0xff, 0x8a, 0x49, 0x28, 0xff, 0x8c, 0x4a, 0x28, 0xff, 0x8f, 0x4f, 0x2a, 0xff, 0x95, 0x54, 0x2c, 0xff, 0x97, 0x57, 0x2d, 0xff, 0x9b, 0x5a, 0x30, 0xff, 0x9f, 0x5e, 0x32, 0xff, 0xa3, 0x62, 0x35, 0xff, 0xa8, 0x68, 0x3b, 0xff, 0xac, 0x6e, 0x42, 0xff, 0xaf, 0x73, 0x45, 0xff, 0xb2, 0x77, 0x49, 0xff, 0xb7, 0x7a, 0x4d, 0xff, 0xbc, 0x80, 0x4f, 0xff, 0xc1, 0x83, 0x4d, 0xff, 0xc5, 0x82, 0x4b, 0xff, 0xca, 0x81, 0x4b, 0xff, 0xcc, 0x83, 0x4d, 0xff, 0xca, 0x85, 0x4d, 0xff, 0xd1, 0x86, 0x4f, 0xff, 0xd8, 0x8a, 0x4f, 0xff, 0xce, 0x87, 0x50, 0xff, 0xd0, 0x8c, 0x53, 0xff, 0xdc, 0x91, 0x58, 0xff, 0xe7, 0x99, 0x5e, 0xff, 0xf2, 0xa2, 0x64, 0xff, 0xf3, 0xa7, 0x6d, 0xff, 0xf4, 0xb3, 0x75, 0xff, 0xed, 0xaf, 0x71, 0xff, 0xdc, 0x94, 0x5e, 0xff, 0xdc, 0x95, 0x5e, 0xff, 0xd9, 0x9e, 0x65, 0xff, 0xd6, 0xa3, 0x6c, 0xff, 0xd2, 0xa3, 0x70, 0xff, 0xd0, 0xa2, 0x78, 0xff, 0xd0, 0xa0, 0x7c, 0xff, 0xcf, 0x9f, 0x7e, 0xff, 0xd2, 0xa1, 0x7e, 0xff, 0xd3, 0xa2, 0x7e, 0xff, 0xd8, 0xa5, 0x80, 0xff, 0xdd, 0xa9, 0x81, 0xff, 0xe5, 0xac, 0x7d, 0xff, 0xee, 0xb1, 0x78, 0xff, 0xf3, 0xbb, 0x77, 0xff, 0xf3, 0xc0, 0x77, 0xff, 0xf2, 0xbf, 0x75, 0xff, 0xf2, 0xbd, 0x76, 0xff, 0xf3, 0xba, 0x76, 0xff, 0xf1, 0xb4, 0x72, 0xff, 0xf3, 0xb5, 0x70, 0xff, 0xf4, 0xb6, 0x6f, 0xff, 0xf4, 0xb7, 0x6f, 0xff, 0xf2, 0xb5, 0x70, 0xff, 0xf2, 0xae, 0x6b, 0xff, 0xec, 0xa8, 0x64, 0xff, 0xe6, 0xa3, 0x5f, 0xff, 0xd4, 0x91, 0x58, 0xff, 0xc3, 0x86, 0x4f, 0xff, 0xc4, 0x89, 0x52, 0xff, 0xc4, 0x8b, 0x55, 0xff, 0xc5, 0x8e, 0x58, 0xff, 0xc2, 0x8a, 0x55, 0xff, 0xbf, 0x8c, 0x52, 0xff, 0xbd, 0x89, 0x4e, 0xff, 0xbb, 0x88, 0x4d, 0xff, 0xb6, 0x82, 0x4c, 0xff, 0xad, 0x78, 0x4a, 0xff, 0xaa, 0x77, 0x49, 0xff, 0xaa, 0x77, 0x49, 0xff, 0xa9, 0x72, 0x46, 0xff, 0xa8, 0x71, 0x3e, 0xff, 0xa6, 0x6e, 0x3a, 0xff, 0xa4, 0x6b, 0x34, 0xff, 0xa3, 0x67, 0x2f, 0xff, 0xa3, 0x65, 0x2d, 0xff, 0xa3, 0x65, 0x28, 0xff, 0xa2, 0x63, 0x26, 0xff, 0xa2, 0x63, 0x24, 0xff, 0xa2, 0x63, 0x22, 0xff, 0xa5, 0x69, 0x28, 0xff, 0x9d, 0x62, 0x2c, 0xff, 0x8a, 0x4c, 0x28, 0xff, 0x89, 0x4b, 0x29, 0xff, 0x8b, 0x4d, 0x2a, 0xff, 0x8e, 0x4f, 0x2b, 0xff, 0x90, 0x52, 0x2d, 0xff, 0x92, 0x54, 0x2e, 0xff, 0x94, 0x55, 0x2f, 0xff, 0x97, 0x59, 0x32, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x9b, 0x5f, 0x36, 0xff, 0x9e, 0x62, 0x39, 0xff, 0xa1, 0x66, 0x3a, 0xff, 0xa5, 0x69, 0x3d, 0xff, 0xa9, 0x6e, 0x41, 0xff, 0xae, 0x72, 0x43, 0xff, 0xb0, 0x75, 0x46, 0xff, 0xaf, 0x7b, 0x45, 0xff, 0xb0, 0x7c, 0x43, 0xff, 0xb2, 0x7b, 0x43, 0xff, 0xb3, 0x7b, 0x43, 0xff, 0xb5, 0x79, 0x41, 0xff, 0xb7, 0x7c, 0x45, 0xff, 0xb7, 0x7d, 0x46, 0xff, 0xba, 0x80, 0x45, 0xff, 0xbc, 0x82, 0x45, 0xff, 0xbe, 0x82, 0x45, 0xff, 0xb9, 0x7c, 0x40, 0xff, 0xaf, 0x71, 0x3b, 0xff, 0xac, 0x6e, 0x3c, 0xff, 0xaf, 0x70, 0x3e, 0xff, 0xb2, 0x74, 0x41, 0xff, 0xb3, 0x77, 0x44, 0xff, 0xb6, 0x7e, 0x4b, 0xff, 0xb9, 0x85, 0x53, 0xff, 0xbb, 0x86, 0x55, 0xff, 0xbe, 0x88, 0x57, 0xff, 0xc1, 0x8b, 0x59, 0xff, 0xc3, 0x8d, 0x5c, 0xff, 0xc8, 0x8f, 0x5b, 0xff, 0xcd, 0x95, 0x5b, 0xff, 0xd1, 0x96, 0x5c, 0xff, 0xd6, 0x95, 0x59, 0xff, 0xde, 0x94, 0x59, 0xff, 0xe0, 0x96, 0x58, 0xff, 0xe2, 0x94, 0x57, 0xff, 0xe5, 0x95, 0x56, 0xff, 0xe9, 0x96, 0x56, 0xff, 0xf0, 0x99, 0x58, 0xff, 0xf1, 0x9f, 0x5a, 0xff, 0xf3, 0xa8, 0x62, 0xff, 0xf3, 0xae, 0x68, 0xff, 0xf3, 0xb4, 0x6d, 0xff, 0xf3, 0xc3, 0x77, 0xff, 0xf4, 0xcb, 0x7d, 0xff, 0xf5, 0xd6, 0x83, 0xff, 0xf3, 0xdd, 0x87, 0xff, 0xf1, 0xe2, 0x87, 0xff, 0xf3, 0xe7, 0x8b, 0xff, 0xf3, 0xe5, 0x8c, 0xff, 0xf2, 0xe5, 0x8a, 0xff, 0xf2, 0xdf, 0x86, 0xff, 0xf3, 0xd4, 0x82, 0xff, 0xf3, 0xc7, 0x7b, 0xff, 0xf3, 0xbc, 0x77, 0xff, 0xf4, 0xb4, 0x70, 0xff, 0xf4, 0xb2, 0x6d, 0xff, 0xf3, 0xb1, 0x6c, 0xff, 0xf3, 0xaf, 0x6b, 0xff, 0xf3, 0xaa, 0x69, 0xff, 0xf3, 0xa8, 0x69, 0xff, 0xf2, 0xa9, 0x69, 0xff, 0xf4, 0xa8, 0x69, 0xff, 0xf2, 0xb0, 0x72, 0xff, 0xf3, 0xb1, 0x73, 0xff, 0xf4, 0xae, 0x70, 0xff, 0xf4, 0xaf, 0x70, 0xff, 0xf4, 0xad, 0x6e, 0xff, 0xf4, 0xae, 0x6e, 0xff, 0xf4, 0xb0, 0x6f, 0xff, 0xf2, 0xa7, 0x67, 0xff, 0xf4, 0xa1, 0x62, 0xff, 0xf4, 0xa1, 0x62, 0xff, 0xf4, 0xa5, 0x64, 0xff, 0xf4, 0xa8, 0x65, 0xff, 0xf4, 0xa8, 0x67, 0xff, 0xf4, 0xa8, 0x69, 0xff, 0xf3, 0xaa, 0x6a, 0xff, 0xf4, 0xaa, 0x6a, 0xff, 0xf3, 0xac, 0x69, 0xff, 0xf4, 0xaa, 0x6b, 0xff, 0xf5, 0xa9, 0x6b, 0xff, 0xf0, 0xa4, 0x66, 0xff, 0xcc, 0x8b, 0x52, 0xff, 0xc0, 0x81, 0x4b, 0xff, 0xba, 0x7d, 0x48, 0xff, 0xc7, 0x88, 0x4c, 0xff, 0xd4, 0x90, 0x50, 0xff, 0xd0, 0x8d, 0x4c, 0xff, 0xca, 0x8a, 0x4c, 0xff, 0xa8, 0x6b, 0x3b, 0xff, 0x9c, 0x5d, 0x34, 0xff, 0x99, 0x59, 0x31, 0xff, 0x93, 0x55, 0x2f, 0xff, 0x94, 0x53, 0x2d, 0xff, 0x92, 0x53, 0x2c, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x90, 0x4f, 0x2c, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x92, 0x54, 0x2e, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x8e, 0x50, 0x2b, 0xff, 0x8b, 0x4c, 0x29, 0xff, 0x87, 0x48, 0x28, 0xff, 0x86, 0x45, 0x27, 0xff, 0x86, 0x46, 0x28, 0xff, 0x84, 0x45, 0x28, 0xff, 0x84, 0x44, 0x27, 0xff, 0x83, 0x44, 0x26, 0xff, 0x82, 0x43, 0x26, 0xff, 0x80, 0x42, 0x28, 0xff, 0x7f, 0x41, 0x27, 0xff, 0x7e, 0x41, 0x27, 0xff, 0x7d, 0x40, 0x26, 0xff, 0x7d, 0x40, 0x26, 0xff, 0x7b, 0x3c, 0x21, 0xff, 0x7a, 0x3c, 0x20, 0xff, 0x7a, 0x3a, 0x1d, 0xff, 0x78, 0x3a, 0x1d, 0xff, 0x74, 0x38, 0x1c, 0xff, 0x74, 0x38, 0x1c, 0xff, 0x76, 0x37, 0x1f, 0xff, 0x77, 0x3a, 0x1f, 0xff, 0x7a, 0x3d, 0x22, 0xff, 0x7b, 0x3e, 0x23, 0xff, 0x7b, 0x3d, 0x23, 0xff, 0x7b, 0x3f, 0x24, 0xff, 0x7d, 0x3f, 0x26, 0xff, 0x7d, 0x40, 0x26, 0xff, + 0x7f, 0x43, 0x27, 0xff, 0x7d, 0x41, 0x24, 0xff, 0x76, 0x38, 0x17, 0xff, 0x76, 0x39, 0x18, 0xff, 0x79, 0x3a, 0x1b, 0xff, 0x7b, 0x3c, 0x1d, 0xff, 0x7c, 0x3d, 0x1d, 0xff, 0x7e, 0x3d, 0x1f, 0xff, 0x7f, 0x40, 0x22, 0xff, 0x81, 0x40, 0x22, 0xff, 0x82, 0x42, 0x24, 0xff, 0x82, 0x43, 0x26, 0xff, 0x86, 0x45, 0x26, 0xff, 0x87, 0x47, 0x27, 0xff, 0x8c, 0x4b, 0x28, 0xff, 0x8f, 0x4d, 0x29, 0xff, 0x91, 0x50, 0x2a, 0xff, 0x94, 0x54, 0x2c, 0xff, 0x96, 0x55, 0x2d, 0xff, 0x99, 0x56, 0x2f, 0xff, 0x9e, 0x5e, 0x33, 0xff, 0xa5, 0x64, 0x34, 0xff, 0xab, 0x6c, 0x3b, 0xff, 0xac, 0x6f, 0x40, 0xff, 0xaf, 0x73, 0x44, 0xff, 0xb3, 0x78, 0x48, 0xff, 0xb9, 0x7b, 0x4a, 0xff, 0xbe, 0x7f, 0x4a, 0xff, 0xc3, 0x7f, 0x4a, 0xff, 0xc7, 0x82, 0x4a, 0xff, 0xcd, 0x86, 0x4c, 0xff, 0xd1, 0x87, 0x4f, 0xff, 0xd6, 0x88, 0x4f, 0xff, 0xda, 0x8c, 0x50, 0xff, 0xd1, 0x88, 0x4f, 0xff, 0xce, 0x8a, 0x51, 0xff, 0xd6, 0x8e, 0x53, 0xff, 0xe2, 0x95, 0x57, 0xff, 0xf0, 0x9d, 0x5d, 0xff, 0xf4, 0xa8, 0x68, 0xff, 0xf4, 0xb1, 0x73, 0xff, 0xf5, 0xb8, 0x7b, 0xff, 0xf0, 0xb4, 0x7a, 0xff, 0xe5, 0xa0, 0x68, 0xff, 0xde, 0x9f, 0x67, 0xff, 0xdc, 0xa4, 0x6b, 0xff, 0xd9, 0xa6, 0x70, 0xff, 0xd6, 0xa4, 0x72, 0xff, 0xd4, 0xa3, 0x78, 0xff, 0xd3, 0xa3, 0x7e, 0xff, 0xd6, 0xa3, 0x80, 0xff, 0xd9, 0xa5, 0x83, 0xff, 0xdc, 0xa9, 0x85, 0xff, 0xe2, 0xac, 0x85, 0xff, 0xeb, 0xaf, 0x83, 0xff, 0xf4, 0xb6, 0x7f, 0xff, 0xf5, 0xc0, 0x7e, 0xff, 0xf5, 0xce, 0x7f, 0xff, 0xf4, 0xce, 0x7e, 0xff, 0xf4, 0xd0, 0x83, 0xff, 0xf4, 0xd0, 0x83, 0xff, 0xf2, 0xcd, 0x81, 0xff, 0xf5, 0xcc, 0x7e, 0xff, 0xf4, 0xcb, 0x7b, 0xff, 0xf3, 0xc9, 0x7b, 0xff, 0xf5, 0xca, 0x7b, 0xff, 0xf4, 0xbf, 0x76, 0xff, 0xf4, 0xb4, 0x6d, 0xff, 0xf3, 0xaf, 0x67, 0xff, 0xe5, 0xa0, 0x5e, 0xff, 0xce, 0x8f, 0x54, 0xff, 0xcb, 0x8d, 0x55, 0xff, 0xd0, 0x96, 0x5c, 0xff, 0xcb, 0x98, 0x5e, 0xff, 0xc5, 0x91, 0x59, 0xff, 0xc2, 0x8d, 0x53, 0xff, 0xbf, 0x89, 0x4f, 0xff, 0xbc, 0x89, 0x50, 0xff, 0xb3, 0x80, 0x4b, 0xff, 0xb0, 0x7c, 0x4b, 0xff, 0xb0, 0x7d, 0x4e, 0xff, 0xae, 0x78, 0x47, 0xff, 0xac, 0x75, 0x3e, 0xff, 0xa9, 0x6e, 0x36, 0xff, 0xa7, 0x6a, 0x30, 0xff, 0xa4, 0x67, 0x28, 0xff, 0xa4, 0x66, 0x28, 0xff, 0xa3, 0x65, 0x25, 0xff, 0xa2, 0x64, 0x25, 0xff, 0xa3, 0x65, 0x24, 0xff, 0xa2, 0x64, 0x23, 0xff, 0xa4, 0x64, 0x28, 0xff, 0x9b, 0x5c, 0x28, 0xff, 0x89, 0x4b, 0x27, 0xff, 0x88, 0x4a, 0x29, 0xff, 0x89, 0x4b, 0x2a, 0xff, 0x8b, 0x4d, 0x2a, 0xff, 0x8d, 0x4f, 0x2c, 0xff, 0x8f, 0x51, 0x2d, 0xff, 0x92, 0x55, 0x2f, 0xff, 0x93, 0x57, 0x30, 0xff, 0x95, 0x59, 0x32, 0xff, 0x98, 0x5c, 0x35, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x9c, 0x60, 0x37, 0xff, 0xa0, 0x63, 0x3a, 0xff, 0xa3, 0x67, 0x3c, 0xff, 0xa6, 0x6b, 0x40, 0xff, 0xaa, 0x70, 0x43, 0xff, 0xab, 0x74, 0x47, 0xff, 0xac, 0x79, 0x46, 0xff, 0xaf, 0x7b, 0x44, 0xff, 0xb0, 0x7b, 0x44, 0xff, 0xb2, 0x7c, 0x43, 0xff, 0xb2, 0x7a, 0x41, 0xff, 0xb4, 0x7e, 0x42, 0xff, 0xb8, 0x83, 0x45, 0xff, 0xb8, 0x83, 0x45, 0xff, 0xb8, 0x83, 0x45, 0xff, 0xb2, 0x78, 0x40, 0xff, 0xa8, 0x69, 0x38, 0xff, 0xa8, 0x6a, 0x37, 0xff, 0xab, 0x6e, 0x3b, 0xff, 0xad, 0x70, 0x3e, 0xff, 0xb0, 0x73, 0x3e, 0xff, 0xb2, 0x78, 0x42, 0xff, 0xb4, 0x7c, 0x48, 0xff, 0xb5, 0x7e, 0x4c, 0xff, 0xb9, 0x83, 0x53, 0xff, 0xbd, 0x87, 0x57, 0xff, 0xc0, 0x8a, 0x5a, 0xff, 0xc4, 0x8d, 0x5d, 0xff, 0xc7, 0x91, 0x5d, 0xff, 0xcb, 0x93, 0x5d, 0xff, 0xcf, 0x98, 0x5e, 0xff, 0xd5, 0x9b, 0x5f, 0xff, 0xdd, 0x9a, 0x5e, 0xff, 0xe4, 0x9d, 0x5e, 0xff, 0xeb, 0x9d, 0x5d, 0xff, 0xee, 0x9b, 0x5d, 0xff, 0xf0, 0x9c, 0x5d, 0xff, 0xf2, 0x9c, 0x5b, 0xff, 0xf3, 0xa1, 0x5e, 0xff, 0xf3, 0xa3, 0x5d, 0xff, 0xf0, 0xa8, 0x61, 0xff, 0xf3, 0xb5, 0x6e, 0xff, 0xf2, 0xba, 0x71, 0xff, 0xf3, 0xcf, 0x7c, 0xff, 0xf2, 0xdf, 0x84, 0xff, 0xee, 0xe7, 0x8b, 0xff, 0xec, 0xeb, 0x90, 0xff, 0xe8, 0xec, 0x94, 0xff, 0xe7, 0xeb, 0x96, 0xff, 0xe7, 0xeb, 0x96, 0xff, 0xec, 0xeb, 0x93, 0xff, 0xf1, 0xec, 0x8f, 0xff, 0xf3, 0xde, 0x87, 0xff, 0xf4, 0xcd, 0x7f, 0xff, 0xf3, 0xc3, 0x7a, 0xff, 0xf2, 0xb9, 0x75, 0xff, 0xf3, 0xb4, 0x71, 0xff, 0xf4, 0xb4, 0x6f, 0xff, 0xf3, 0xb0, 0x6d, 0xff, 0xf2, 0xac, 0x6b, 0xff, 0xf2, 0xab, 0x69, 0xff, 0xf3, 0xac, 0x6b, 0xff, 0xf3, 0xab, 0x6b, 0xff, 0xf4, 0xb0, 0x70, 0xff, 0xf4, 0xb1, 0x70, 0xff, 0xf4, 0xb1, 0x70, 0xff, 0xf4, 0xaf, 0x6f, 0xff, 0xf4, 0xab, 0x6d, 0xff, 0xf4, 0xac, 0x6c, 0xff, 0xf4, 0xae, 0x6d, 0xff, 0xf2, 0xa5, 0x66, 0xff, 0xf4, 0xa1, 0x62, 0xff, 0xf4, 0xa1, 0x62, 0xff, 0xf4, 0xa0, 0x62, 0xff, 0xf4, 0xa0, 0x61, 0xff, 0xf4, 0xa4, 0x63, 0xff, 0xf4, 0xa7, 0x67, 0xff, 0xf4, 0xa5, 0x64, 0xff, 0xf4, 0xa5, 0x64, 0xff, 0xf4, 0xa4, 0x63, 0xff, 0xf4, 0xa1, 0x63, 0xff, 0xf4, 0xa2, 0x64, 0xff, 0xf7, 0xa8, 0x69, 0xff, 0xd7, 0x94, 0x59, 0xff, 0xdf, 0x95, 0x55, 0xff, 0xe5, 0x96, 0x51, 0xff, 0xdb, 0x90, 0x4d, 0xff, 0xd4, 0x8f, 0x4d, 0xff, 0xc0, 0x7d, 0x46, 0xff, 0xa3, 0x65, 0x38, 0xff, 0x9c, 0x5e, 0x34, 0xff, 0x9a, 0x5b, 0x33, 0xff, 0x97, 0x56, 0x2f, 0xff, 0x95, 0x55, 0x2f, 0xff, 0x92, 0x54, 0x2e, 0xff, 0x91, 0x51, 0x2e, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8c, 0x4c, 0x2a, 0xff, 0x8e, 0x4c, 0x2b, 0xff, 0x91, 0x51, 0x2e, 0xff, 0x90, 0x4f, 0x2d, 0xff, 0x8d, 0x4c, 0x2a, 0xff, 0x8a, 0x4a, 0x29, 0xff, 0x89, 0x49, 0x28, 0xff, 0x87, 0x48, 0x28, 0xff, 0x8a, 0x4a, 0x28, 0xff, 0x86, 0x48, 0x27, 0xff, 0x85, 0x46, 0x27, 0xff, 0x85, 0x44, 0x27, 0xff, 0x82, 0x43, 0x27, 0xff, 0x83, 0x45, 0x28, 0xff, 0x81, 0x42, 0x27, 0xff, 0x7f, 0x43, 0x27, 0xff, 0x7e, 0x42, 0x27, 0xff, 0x7d, 0x40, 0x26, 0xff, 0x7d, 0x3e, 0x24, 0xff, 0x7c, 0x3c, 0x23, 0xff, 0x7b, 0x3d, 0x20, 0xff, 0x7b, 0x3e, 0x23, 0xff, 0x81, 0x42, 0x27, 0xff, 0x7f, 0x42, 0x27, 0xff, 0x7d, 0x40, 0x26, 0xff, 0x7b, 0x3e, 0x24, 0xff, 0x7b, 0x3d, 0x24, 0xff, 0x7b, 0x3c, 0x24, 0xff, 0x7b, 0x3c, 0x24, 0xff, 0x7c, 0x3f, 0x25, 0xff, 0x7d, 0x3f, 0x26, 0xff, 0x7e, 0x41, 0x27, 0xff, + 0x7c, 0x40, 0x23, 0xff, 0x73, 0x36, 0x16, 0xff, 0x74, 0x37, 0x19, 0xff, 0x77, 0x37, 0x1a, 0xff, 0x79, 0x38, 0x1e, 0xff, 0x79, 0x3b, 0x1d, 0xff, 0x79, 0x3b, 0x1f, 0xff, 0x7a, 0x3c, 0x1d, 0xff, 0x7b, 0x3c, 0x20, 0xff, 0x7f, 0x3e, 0x21, 0xff, 0x7f, 0x41, 0x23, 0xff, 0x81, 0x41, 0x25, 0xff, 0x83, 0x44, 0x26, 0xff, 0x88, 0x48, 0x26, 0xff, 0x88, 0x47, 0x27, 0xff, 0x8a, 0x48, 0x27, 0xff, 0x8d, 0x4a, 0x28, 0xff, 0x8e, 0x4e, 0x29, 0xff, 0x93, 0x50, 0x29, 0xff, 0x95, 0x54, 0x2b, 0xff, 0x99, 0x57, 0x2e, 0xff, 0xa0, 0x5f, 0x32, 0xff, 0xa6, 0x65, 0x35, 0xff, 0xab, 0x6c, 0x3b, 0xff, 0xad, 0x6f, 0x3f, 0xff, 0xb2, 0x74, 0x43, 0xff, 0xb7, 0x79, 0x45, 0xff, 0xbc, 0x7c, 0x47, 0xff, 0xc1, 0x7f, 0x48, 0xff, 0xc6, 0x80, 0x49, 0xff, 0xca, 0x86, 0x4c, 0xff, 0xd0, 0x8b, 0x51, 0xff, 0xd4, 0x8d, 0x54, 0xff, 0xd9, 0x8d, 0x55, 0xff, 0xd3, 0x8d, 0x53, 0xff, 0xcd, 0x8a, 0x50, 0xff, 0xd5, 0x8e, 0x52, 0xff, 0xdc, 0x92, 0x54, 0xff, 0xe7, 0x97, 0x57, 0xff, 0xf3, 0x9e, 0x5f, 0xff, 0xf4, 0xaa, 0x68, 0xff, 0xf3, 0xb2, 0x6e, 0xff, 0xf2, 0xb6, 0x76, 0xff, 0xe6, 0xa7, 0x6b, 0xff, 0xe6, 0xa5, 0x6d, 0xff, 0xe3, 0xa8, 0x72, 0xff, 0xe1, 0xa9, 0x73, 0xff, 0xdd, 0xa9, 0x74, 0xff, 0xdc, 0xa7, 0x78, 0xff, 0xdb, 0xa7, 0x7e, 0xff, 0xdc, 0xa7, 0x81, 0xff, 0xdc, 0xa6, 0x85, 0xff, 0xe0, 0xa9, 0x85, 0xff, 0xe6, 0xae, 0x87, 0xff, 0xee, 0xb2, 0x87, 0xff, 0xf5, 0xba, 0x84, 0xff, 0xf4, 0xc7, 0x83, 0xff, 0xf4, 0xd8, 0x84, 0xff, 0xf2, 0xe4, 0x8b, 0xff, 0xf2, 0xea, 0x8f, 0xff, 0xf1, 0xe8, 0x91, 0xff, 0xf0, 0xe7, 0x92, 0xff, 0xed, 0xe6, 0x92, 0xff, 0xee, 0xe7, 0x8d, 0xff, 0xf0, 0xe8, 0x89, 0xff, 0xf0, 0xe2, 0x86, 0xff, 0xf5, 0xdc, 0x83, 0xff, 0xf6, 0xce, 0x7d, 0xff, 0xf3, 0xbe, 0x72, 0xff, 0xee, 0xb1, 0x6e, 0xff, 0xe1, 0x9b, 0x5f, 0xff, 0xd9, 0x97, 0x5b, 0xff, 0xdf, 0xa2, 0x66, 0xff, 0xd6, 0x9a, 0x61, 0xff, 0xcd, 0x97, 0x5c, 0xff, 0xc5, 0x91, 0x54, 0xff, 0xc4, 0x8d, 0x51, 0xff, 0xbd, 0x8a, 0x53, 0xff, 0xb7, 0x80, 0x52, 0xff, 0xb5, 0x7f, 0x4d, 0xff, 0xb1, 0x7b, 0x48, 0xff, 0xb0, 0x79, 0x42, 0xff, 0xae, 0x76, 0x3b, 0xff, 0xaa, 0x70, 0x33, 0xff, 0xa9, 0x6e, 0x2c, 0xff, 0xa7, 0x68, 0x28, 0xff, 0xa5, 0x65, 0x27, 0xff, 0xa2, 0x64, 0x26, 0xff, 0xa2, 0x64, 0x25, 0xff, 0xa2, 0x64, 0x25, 0xff, 0xa4, 0x66, 0x26, 0xff, 0x9b, 0x5d, 0x27, 0xff, 0x8a, 0x4c, 0x28, 0xff, 0x86, 0x4a, 0x2a, 0xff, 0x88, 0x4c, 0x2a, 0xff, 0x8a, 0x4c, 0x2a, 0xff, 0x8b, 0x4e, 0x2b, 0xff, 0x8d, 0x50, 0x2b, 0xff, 0x90, 0x52, 0x2d, 0xff, 0x92, 0x54, 0x2f, 0xff, 0x94, 0x57, 0x31, 0xff, 0x96, 0x5a, 0x33, 0xff, 0x96, 0x5b, 0x34, 0xff, 0x98, 0x5c, 0x34, 0xff, 0x9b, 0x5e, 0x35, 0xff, 0x9e, 0x62, 0x38, 0xff, 0xa1, 0x65, 0x3b, 0xff, 0xa4, 0x68, 0x3f, 0xff, 0xa8, 0x6f, 0x44, 0xff, 0xab, 0x76, 0x46, 0xff, 0xab, 0x79, 0x48, 0xff, 0xac, 0x79, 0x47, 0xff, 0xaf, 0x7a, 0x44, 0xff, 0xb0, 0x7a, 0x43, 0xff, 0xb2, 0x7c, 0x42, 0xff, 0xb5, 0x7c, 0x42, 0xff, 0xb6, 0x7e, 0x43, 0xff, 0xb4, 0x7a, 0x42, 0xff, 0xa9, 0x6c, 0x3a, 0xff, 0xa2, 0x64, 0x34, 0xff, 0xa4, 0x68, 0x35, 0xff, 0xa8, 0x6a, 0x39, 0xff, 0xab, 0x6c, 0x3b, 0xff, 0xae, 0x70, 0x3d, 0xff, 0xb0, 0x72, 0x3d, 0xff, 0xb0, 0x75, 0x3f, 0xff, 0xb3, 0x78, 0x43, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb7, 0x7f, 0x4a, 0xff, 0xbb, 0x83, 0x51, 0xff, 0xbe, 0x88, 0x59, 0xff, 0xc1, 0x8d, 0x5e, 0xff, 0xc4, 0x8f, 0x5f, 0xff, 0xc7, 0x93, 0x60, 0xff, 0xcc, 0x98, 0x61, 0xff, 0xd1, 0x9b, 0x62, 0xff, 0xd7, 0x9d, 0x62, 0xff, 0xe0, 0x9e, 0x62, 0xff, 0xea, 0x9f, 0x62, 0xff, 0xf0, 0x9f, 0x5f, 0xff, 0xf3, 0x9f, 0x5d, 0xff, 0xf3, 0x9e, 0x5d, 0xff, 0xf4, 0xa3, 0x5f, 0xff, 0xf4, 0xaa, 0x62, 0xff, 0xf3, 0xae, 0x68, 0xff, 0xf3, 0xb5, 0x6e, 0xff, 0xf3, 0xc1, 0x75, 0xff, 0xf2, 0xd4, 0x7f, 0xff, 0xf1, 0xe7, 0x88, 0xff, 0xe9, 0xed, 0x93, 0xff, 0xe5, 0xed, 0x9a, 0xff, 0xe8, 0xee, 0xa0, 0xff, 0xeb, 0xed, 0xa4, 0xff, 0xea, 0xee, 0xa3, 0xff, 0xe9, 0xef, 0xa3, 0xff, 0xe9, 0xec, 0x9d, 0xff, 0xe9, 0xed, 0x98, 0xff, 0xf0, 0xe8, 0x8f, 0xff, 0xf4, 0xdb, 0x87, 0xff, 0xf3, 0xcc, 0x7f, 0xff, 0xf3, 0xbf, 0x7a, 0xff, 0xf3, 0xb7, 0x73, 0xff, 0xf4, 0xb5, 0x71, 0xff, 0xf3, 0xb3, 0x70, 0xff, 0xf3, 0xb1, 0x6e, 0xff, 0xf4, 0xae, 0x6b, 0xff, 0xf3, 0xac, 0x6c, 0xff, 0xf2, 0xaa, 0x6c, 0xff, 0xf3, 0xb0, 0x71, 0xff, 0xf4, 0xb3, 0x74, 0xff, 0xf4, 0xaf, 0x71, 0xff, 0xf4, 0xad, 0x6d, 0xff, 0xf4, 0xab, 0x6e, 0xff, 0xf4, 0xad, 0x6d, 0xff, 0xf4, 0xad, 0x6e, 0xff, 0xf3, 0xa5, 0x65, 0xff, 0xf4, 0x9f, 0x62, 0xff, 0xf4, 0x9f, 0x61, 0xff, 0xf3, 0xa0, 0x62, 0xff, 0xf4, 0xa5, 0x64, 0xff, 0xf4, 0xa5, 0x63, 0xff, 0xf5, 0xa1, 0x64, 0xff, 0xf4, 0xa1, 0x63, 0xff, 0xf4, 0xa0, 0x61, 0xff, 0xf4, 0x9b, 0x5f, 0xff, 0xf3, 0x9d, 0x61, 0xff, 0xf4, 0xa6, 0x62, 0xff, 0xf5, 0xab, 0x68, 0xff, 0xf2, 0xa4, 0x64, 0xff, 0xe8, 0x98, 0x58, 0xff, 0xe1, 0x95, 0x50, 0xff, 0xd5, 0x8d, 0x4e, 0xff, 0xbb, 0x7b, 0x45, 0xff, 0xa6, 0x68, 0x39, 0xff, 0x9f, 0x5f, 0x34, 0xff, 0x9d, 0x5c, 0x33, 0xff, 0x99, 0x58, 0x30, 0xff, 0x96, 0x55, 0x2f, 0xff, 0x95, 0x55, 0x2f, 0xff, 0x92, 0x51, 0x2e, 0xff, 0x90, 0x50, 0x2e, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x8f, 0x50, 0x2c, 0xff, 0x8d, 0x4e, 0x2b, 0xff, 0x8c, 0x4d, 0x2a, 0xff, 0x8a, 0x4a, 0x2a, 0xff, 0x88, 0x48, 0x29, 0xff, 0x87, 0x47, 0x28, 0xff, 0x87, 0x45, 0x28, 0xff, 0x88, 0x49, 0x28, 0xff, 0x8a, 0x49, 0x2a, 0xff, 0x88, 0x4a, 0x28, 0xff, 0x8a, 0x4a, 0x2a, 0xff, 0x88, 0x49, 0x29, 0xff, 0x88, 0x49, 0x2a, 0xff, 0x88, 0x4a, 0x29, 0xff, 0x86, 0x49, 0x29, 0xff, 0x86, 0x48, 0x29, 0xff, 0x84, 0x46, 0x28, 0xff, 0x85, 0x45, 0x27, 0xff, 0x82, 0x43, 0x27, 0xff, 0x84, 0x45, 0x28, 0xff, 0x84, 0x45, 0x28, 0xff, 0x84, 0x45, 0x28, 0xff, 0x81, 0x42, 0x27, 0xff, 0x7f, 0x41, 0x26, 0xff, 0x7e, 0x40, 0x26, 0xff, 0x7e, 0x3f, 0x27, 0xff, 0x7d, 0x40, 0x26, 0xff, 0x7b, 0x3e, 0x24, 0xff, 0x7c, 0x3e, 0x25, 0xff, 0x7b, 0x3f, 0x25, 0xff, 0x7d, 0x40, 0x26, 0xff, 0x7f, 0x42, 0x27, 0xff, + 0x72, 0x33, 0x18, 0xff, 0x72, 0x36, 0x18, 0xff, 0x73, 0x35, 0x18, 0xff, 0x74, 0x35, 0x18, 0xff, 0x74, 0x37, 0x19, 0xff, 0x75, 0x38, 0x1a, 0xff, 0x78, 0x38, 0x1b, 0xff, 0x79, 0x3b, 0x1d, 0xff, 0x7a, 0x3c, 0x1e, 0xff, 0x7b, 0x3c, 0x1f, 0xff, 0x7d, 0x3d, 0x20, 0xff, 0x81, 0x41, 0x22, 0xff, 0x81, 0x41, 0x23, 0xff, 0x82, 0x41, 0x24, 0xff, 0x87, 0x45, 0x25, 0xff, 0x87, 0x47, 0x26, 0xff, 0x8a, 0x48, 0x26, 0xff, 0x8e, 0x4b, 0x27, 0xff, 0x8f, 0x4e, 0x29, 0xff, 0x93, 0x52, 0x2a, 0xff, 0x95, 0x56, 0x2c, 0xff, 0x9b, 0x56, 0x2e, 0xff, 0xa0, 0x5e, 0x32, 0xff, 0xa6, 0x64, 0x35, 0xff, 0xad, 0x6c, 0x3b, 0xff, 0xb1, 0x70, 0x3f, 0xff, 0xb5, 0x73, 0x41, 0xff, 0xb9, 0x79, 0x42, 0xff, 0xbf, 0x7d, 0x47, 0xff, 0xc2, 0x7f, 0x46, 0xff, 0xc7, 0x85, 0x4b, 0xff, 0xce, 0x88, 0x51, 0xff, 0xd3, 0x8c, 0x54, 0xff, 0xd6, 0x90, 0x59, 0xff, 0xd6, 0x92, 0x59, 0xff, 0xcc, 0x8e, 0x56, 0xff, 0xd3, 0x90, 0x55, 0xff, 0xd7, 0x92, 0x54, 0xff, 0xe3, 0x94, 0x57, 0xff, 0xef, 0x9c, 0x5d, 0xff, 0xf6, 0xa6, 0x65, 0xff, 0xf4, 0xae, 0x6a, 0xff, 0xf2, 0xb1, 0x6f, 0xff, 0xf1, 0xb5, 0x76, 0xff, 0xe9, 0xa2, 0x67, 0xff, 0xea, 0xaa, 0x6d, 0xff, 0xe6, 0xae, 0x74, 0xff, 0xe3, 0xac, 0x7a, 0xff, 0xe2, 0xab, 0x7f, 0xff, 0xe2, 0xa9, 0x81, 0xff, 0xe0, 0xaa, 0x82, 0xff, 0xe3, 0xaa, 0x83, 0xff, 0xe7, 0xae, 0x87, 0xff, 0xe9, 0xb0, 0x87, 0xff, 0xf1, 0xb5, 0x86, 0xff, 0xf6, 0xbd, 0x86, 0xff, 0xf5, 0xcd, 0x86, 0xff, 0xf6, 0xe2, 0x8a, 0xff, 0xf0, 0xee, 0x90, 0xff, 0xe7, 0xec, 0x97, 0xff, 0xe8, 0xee, 0x9d, 0xff, 0xe9, 0xed, 0xa3, 0xff, 0xea, 0xed, 0xa4, 0xff, 0xea, 0xef, 0xa2, 0xff, 0xe8, 0xed, 0x9e, 0xff, 0xe9, 0xed, 0x9c, 0xff, 0xea, 0xeb, 0x95, 0xff, 0xee, 0xe9, 0x8e, 0xff, 0xf5, 0xe0, 0x86, 0xff, 0xf5, 0xca, 0x7c, 0xff, 0xed, 0xb3, 0x71, 0xff, 0xea, 0xac, 0x6d, 0xff, 0xea, 0xa8, 0x6a, 0xff, 0xe1, 0xa2, 0x68, 0xff, 0xda, 0x9d, 0x63, 0xff, 0xd2, 0x9b, 0x5f, 0xff, 0xc7, 0x91, 0x54, 0xff, 0xc1, 0x8b, 0x52, 0xff, 0xb8, 0x84, 0x4f, 0xff, 0xb8, 0x84, 0x4a, 0xff, 0xb5, 0x7b, 0x3e, 0xff, 0xb3, 0x78, 0x37, 0xff, 0xb0, 0x73, 0x2f, 0xff, 0xac, 0x6f, 0x28, 0xff, 0xab, 0x6d, 0x2a, 0xff, 0xaa, 0x6a, 0x28, 0xff, 0xa8, 0x68, 0x27, 0xff, 0xa4, 0x64, 0x27, 0xff, 0xa3, 0x64, 0x26, 0xff, 0xa3, 0x64, 0x27, 0xff, 0x9d, 0x5f, 0x27, 0xff, 0x8c, 0x50, 0x29, 0xff, 0x87, 0x49, 0x2a, 0xff, 0x88, 0x4b, 0x2a, 0xff, 0x89, 0x4b, 0x2a, 0xff, 0x8a, 0x4d, 0x2b, 0xff, 0x8b, 0x4f, 0x2b, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8f, 0x51, 0x2d, 0xff, 0x91, 0x54, 0x30, 0xff, 0x93, 0x56, 0x30, 0xff, 0x95, 0x58, 0x32, 0xff, 0x95, 0x58, 0x34, 0xff, 0x98, 0x5b, 0x34, 0xff, 0x9b, 0x5d, 0x35, 0xff, 0x9c, 0x5f, 0x37, 0xff, 0x9f, 0x62, 0x3a, 0xff, 0xa2, 0x67, 0x3e, 0xff, 0xa7, 0x71, 0x43, 0xff, 0xaa, 0x77, 0x46, 0xff, 0xaa, 0x75, 0x44, 0xff, 0xac, 0x7a, 0x46, 0xff, 0xae, 0x7b, 0x45, 0xff, 0xae, 0x77, 0x42, 0xff, 0xb2, 0x7b, 0x43, 0xff, 0xb4, 0x7b, 0x41, 0xff, 0xac, 0x70, 0x3b, 0xff, 0xa0, 0x63, 0x35, 0xff, 0xa0, 0x62, 0x34, 0xff, 0xa3, 0x66, 0x35, 0xff, 0xa5, 0x69, 0x36, 0xff, 0xa7, 0x6b, 0x39, 0xff, 0xa9, 0x6c, 0x3b, 0xff, 0xab, 0x6d, 0x3b, 0xff, 0xad, 0x70, 0x3c, 0xff, 0xaf, 0x73, 0x3f, 0xff, 0xb1, 0x76, 0x41, 0xff, 0xb2, 0x79, 0x44, 0xff, 0xb5, 0x7c, 0x47, 0xff, 0xb8, 0x80, 0x4c, 0xff, 0xba, 0x85, 0x51, 0xff, 0xbc, 0x85, 0x55, 0xff, 0xc2, 0x8e, 0x5c, 0xff, 0xc4, 0x93, 0x60, 0xff, 0xc8, 0x93, 0x61, 0xff, 0xce, 0x97, 0x61, 0xff, 0xd4, 0x9b, 0x62, 0xff, 0xdb, 0x9b, 0x62, 0xff, 0xe4, 0x9c, 0x62, 0xff, 0xee, 0x9f, 0x64, 0xff, 0xf3, 0xa4, 0x64, 0xff, 0xf3, 0xa5, 0x63, 0xff, 0xf4, 0xa8, 0x61, 0xff, 0xf4, 0xae, 0x68, 0xff, 0xf4, 0xb7, 0x6d, 0xff, 0xf4, 0xbf, 0x72, 0xff, 0xf5, 0xc6, 0x79, 0xff, 0xf4, 0xd9, 0x80, 0xff, 0xef, 0xeb, 0x8a, 0xff, 0xe9, 0xee, 0x95, 0xff, 0xe9, 0xed, 0x9f, 0xff, 0xea, 0xed, 0xa6, 0xff, 0xed, 0xed, 0xac, 0xff, 0xee, 0xec, 0xb0, 0xff, 0xec, 0xed, 0xb1, 0xff, 0xeb, 0xef, 0xad, 0xff, 0xea, 0xee, 0xaa, 0xff, 0xeb, 0xee, 0xa4, 0xff, 0xeb, 0xec, 0x99, 0xff, 0xf1, 0xe6, 0x8d, 0xff, 0xf5, 0xd7, 0x83, 0xff, 0xf4, 0xc8, 0x7f, 0xff, 0xf4, 0xc2, 0x79, 0xff, 0xf4, 0xb9, 0x76, 0xff, 0xf5, 0xb7, 0x73, 0xff, 0xf4, 0xb4, 0x71, 0xff, 0xf4, 0xb1, 0x6e, 0xff, 0xf2, 0xb2, 0x70, 0xff, 0xf2, 0xb3, 0x75, 0xff, 0xf4, 0xb3, 0x75, 0xff, 0xf4, 0xb2, 0x74, 0xff, 0xf4, 0xb2, 0x71, 0xff, 0xf4, 0xac, 0x6f, 0xff, 0xf4, 0xab, 0x6e, 0xff, 0xf4, 0xac, 0x6e, 0xff, 0xf5, 0xac, 0x6e, 0xff, 0xf1, 0xa0, 0x64, 0xff, 0xf3, 0xa0, 0x63, 0xff, 0xf4, 0xa3, 0x66, 0xff, 0xf5, 0xa4, 0x64, 0xff, 0xf4, 0xa3, 0x64, 0xff, 0xf4, 0xa2, 0x64, 0xff, 0xf3, 0x9c, 0x5f, 0xff, 0xf0, 0xa1, 0x61, 0xff, 0xf3, 0xa4, 0x64, 0xff, 0xf4, 0xa8, 0x64, 0xff, 0xf5, 0xa7, 0x64, 0xff, 0xf5, 0xa5, 0x63, 0xff, 0xf4, 0xa6, 0x63, 0xff, 0xf3, 0xa5, 0x63, 0xff, 0xea, 0x9a, 0x58, 0xff, 0xd9, 0x8b, 0x4c, 0xff, 0xb1, 0x72, 0x40, 0xff, 0xaa, 0x6a, 0x3c, 0xff, 0x9f, 0x5f, 0x35, 0xff, 0x9d, 0x5c, 0x34, 0xff, 0x99, 0x58, 0x32, 0xff, 0x99, 0x57, 0x32, 0xff, 0x96, 0x55, 0x30, 0xff, 0x93, 0x52, 0x2f, 0xff, 0x92, 0x51, 0x2e, 0xff, 0x90, 0x50, 0x2e, 0xff, 0x8f, 0x4f, 0x2c, 0xff, 0x8e, 0x4e, 0x2b, 0xff, 0x8d, 0x4c, 0x2b, 0xff, 0x89, 0x49, 0x29, 0xff, 0x89, 0x4a, 0x2a, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x8b, 0x4b, 0x2a, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8c, 0x4d, 0x29, 0xff, 0x8b, 0x4b, 0x2a, 0xff, 0x8c, 0x4c, 0x2b, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x8f, 0x50, 0x2c, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8c, 0x4c, 0x2b, 0xff, 0x8a, 0x4a, 0x2b, 0xff, 0x87, 0x48, 0x2a, 0xff, 0x86, 0x46, 0x29, 0xff, 0x84, 0x44, 0x27, 0xff, 0x82, 0x43, 0x27, 0xff, 0x82, 0x42, 0x27, 0xff, 0x80, 0x41, 0x27, 0xff, 0x7e, 0x41, 0x27, 0xff, 0x7e, 0x42, 0x26, 0xff, 0x7d, 0x40, 0x26, 0xff, 0x7b, 0x3f, 0x25, 0xff, 0x7b, 0x3f, 0x25, 0xff, 0x7b, 0x3f, 0x25, 0xff, 0x80, 0x42, 0x28, 0xff, 0x77, 0x3a, 0x1e, 0xff, + 0x71, 0x35, 0x18, 0xff, 0x6f, 0x33, 0x18, 0xff, 0x6f, 0x33, 0x18, 0xff, 0x71, 0x33, 0x18, 0xff, 0x71, 0x32, 0x18, 0xff, 0x72, 0x35, 0x18, 0xff, 0x74, 0x39, 0x18, 0xff, 0x75, 0x37, 0x1a, 0xff, 0x79, 0x39, 0x1a, 0xff, 0x7a, 0x3b, 0x1a, 0xff, 0x7c, 0x3d, 0x1a, 0xff, 0x7d, 0x3b, 0x1e, 0xff, 0x7f, 0x3e, 0x20, 0xff, 0x81, 0x41, 0x24, 0xff, 0x86, 0x44, 0x24, 0xff, 0x88, 0x47, 0x26, 0xff, 0x89, 0x48, 0x26, 0xff, 0x8c, 0x4a, 0x29, 0xff, 0x90, 0x4b, 0x29, 0xff, 0x94, 0x4f, 0x2a, 0xff, 0x95, 0x52, 0x2b, 0xff, 0x99, 0x56, 0x2e, 0xff, 0x9d, 0x58, 0x2e, 0xff, 0xa1, 0x5c, 0x31, 0xff, 0xa4, 0x62, 0x33, 0xff, 0xaa, 0x67, 0x34, 0xff, 0xb0, 0x6b, 0x3a, 0xff, 0xb9, 0x75, 0x40, 0xff, 0xbc, 0x79, 0x42, 0xff, 0xc1, 0x7c, 0x45, 0xff, 0xc6, 0x81, 0x49, 0xff, 0xcb, 0x86, 0x49, 0xff, 0xcf, 0x88, 0x4c, 0xff, 0xd4, 0x8e, 0x52, 0xff, 0xd9, 0x91, 0x57, 0xff, 0xc9, 0x8b, 0x54, 0xff, 0xd0, 0x93, 0x57, 0xff, 0xd5, 0x95, 0x58, 0xff, 0xde, 0x99, 0x59, 0xff, 0xea, 0x9f, 0x5f, 0xff, 0xf1, 0xa1, 0x63, 0xff, 0xf3, 0xa7, 0x64, 0xff, 0xf4, 0xab, 0x68, 0xff, 0xf5, 0xb9, 0x72, 0xff, 0xf0, 0xb3, 0x73, 0xff, 0xef, 0xa5, 0x6a, 0xff, 0xef, 0xb1, 0x70, 0xff, 0xeb, 0xb0, 0x76, 0xff, 0xe9, 0xae, 0x7e, 0xff, 0xe7, 0xad, 0x85, 0xff, 0xe5, 0xad, 0x89, 0xff, 0xe9, 0xae, 0x89, 0xff, 0xe9, 0xae, 0x85, 0xff, 0xf1, 0xb5, 0x86, 0xff, 0xf5, 0xb9, 0x87, 0xff, 0xf6, 0xc0, 0x86, 0xff, 0xf6, 0xd0, 0x8a, 0xff, 0xf4, 0xe3, 0x8f, 0xff, 0xeb, 0xed, 0x92, 0xff, 0xe6, 0xed, 0x9a, 0xff, 0xeb, 0xed, 0xa6, 0xff, 0xed, 0xed, 0xae, 0xff, 0xf0, 0xef, 0xb6, 0xff, 0xf2, 0xef, 0xba, 0xff, 0xee, 0xee, 0xb7, 0xff, 0xee, 0xef, 0xb3, 0xff, 0xee, 0xee, 0xad, 0xff, 0xeb, 0xee, 0xa7, 0xff, 0xeb, 0xee, 0x9b, 0xff, 0xf2, 0xe6, 0x8f, 0xff, 0xf3, 0xd1, 0x83, 0xff, 0xec, 0xbd, 0x7a, 0xff, 0xef, 0xb4, 0x75, 0xff, 0xec, 0xaa, 0x6a, 0xff, 0xe5, 0xa5, 0x68, 0xff, 0xdd, 0xa0, 0x5e, 0xff, 0xd0, 0x96, 0x53, 0xff, 0xc4, 0x8c, 0x50, 0xff, 0xbc, 0x84, 0x4a, 0xff, 0xba, 0x80, 0x42, 0xff, 0xbb, 0x7d, 0x37, 0xff, 0xb6, 0x76, 0x2f, 0xff, 0xb1, 0x75, 0x2b, 0xff, 0xb0, 0x72, 0x29, 0xff, 0xb0, 0x72, 0x2a, 0xff, 0xac, 0x6f, 0x29, 0xff, 0xaa, 0x6a, 0x28, 0xff, 0xa7, 0x67, 0x27, 0xff, 0xa7, 0x66, 0x27, 0xff, 0xa1, 0x60, 0x26, 0xff, 0x8d, 0x4e, 0x27, 0xff, 0x87, 0x48, 0x2a, 0xff, 0x8a, 0x4b, 0x2c, 0xff, 0x8a, 0x4f, 0x2c, 0xff, 0x8a, 0x4f, 0x2c, 0xff, 0x8b, 0x4e, 0x2b, 0xff, 0x8d, 0x50, 0x2c, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8e, 0x50, 0x2d, 0xff, 0x90, 0x54, 0x2e, 0xff, 0x92, 0x55, 0x2f, 0xff, 0x94, 0x56, 0x30, 0xff, 0x95, 0x58, 0x32, 0xff, 0x98, 0x5c, 0x34, 0xff, 0x9a, 0x5d, 0x34, 0xff, 0x9c, 0x5f, 0x35, 0xff, 0x9d, 0x61, 0x39, 0xff, 0xa2, 0x6b, 0x3e, 0xff, 0xa9, 0x75, 0x43, 0xff, 0xa9, 0x76, 0x45, 0xff, 0xab, 0x77, 0x45, 0xff, 0xab, 0x75, 0x43, 0xff, 0xad, 0x76, 0x42, 0xff, 0xaf, 0x79, 0x42, 0xff, 0xb1, 0x7a, 0x42, 0xff, 0xa7, 0x6d, 0x3a, 0xff, 0x9b, 0x5e, 0x30, 0xff, 0x9d, 0x60, 0x32, 0xff, 0xa0, 0x64, 0x35, 0xff, 0xa3, 0x67, 0x35, 0xff, 0xa3, 0x67, 0x36, 0xff, 0xa6, 0x6a, 0x39, 0xff, 0xa9, 0x6c, 0x3b, 0xff, 0xaa, 0x6d, 0x3c, 0xff, 0xab, 0x70, 0x3c, 0xff, 0xad, 0x72, 0x3e, 0xff, 0xb0, 0x73, 0x40, 0xff, 0xb2, 0x77, 0x41, 0xff, 0xb4, 0x7c, 0x44, 0xff, 0xb6, 0x7f, 0x47, 0xff, 0xb8, 0x80, 0x4b, 0xff, 0xbb, 0x83, 0x4f, 0xff, 0xbd, 0x89, 0x54, 0xff, 0xc0, 0x8e, 0x58, 0xff, 0xc5, 0x92, 0x5d, 0xff, 0xca, 0x95, 0x60, 0xff, 0xcf, 0x98, 0x63, 0xff, 0xd6, 0x9b, 0x64, 0xff, 0xde, 0x9d, 0x64, 0xff, 0xe9, 0x9f, 0x64, 0xff, 0xf2, 0xa5, 0x66, 0xff, 0xf4, 0xab, 0x6a, 0xff, 0xf4, 0xaf, 0x69, 0xff, 0xf3, 0xb2, 0x69, 0xff, 0xf4, 0xb6, 0x6d, 0xff, 0xf4, 0xbd, 0x75, 0xff, 0xf5, 0xce, 0x7c, 0xff, 0xf6, 0xe1, 0x83, 0xff, 0xed, 0xeb, 0x8e, 0xff, 0xe7, 0xed, 0x9a, 0xff, 0xeb, 0xec, 0xa7, 0xff, 0xed, 0xee, 0xb1, 0xff, 0xee, 0xef, 0xb7, 0xff, 0xf1, 0xee, 0xbe, 0xff, 0xf1, 0xed, 0xc0, 0xff, 0xf2, 0xee, 0xc0, 0xff, 0xef, 0xed, 0xb9, 0xff, 0xed, 0xed, 0xb0, 0xff, 0xed, 0xef, 0xa6, 0xff, 0xe9, 0xef, 0x9d, 0xff, 0xec, 0xea, 0x94, 0xff, 0xf3, 0xe3, 0x8a, 0xff, 0xf3, 0xd9, 0x83, 0xff, 0xf5, 0xca, 0x7d, 0xff, 0xf6, 0xbf, 0x7b, 0xff, 0xf4, 0xbe, 0x7a, 0xff, 0xf4, 0xbf, 0x78, 0xff, 0xf5, 0xbb, 0x79, 0xff, 0xf5, 0xb8, 0x79, 0xff, 0xf3, 0xb7, 0x79, 0xff, 0xf4, 0xb7, 0x78, 0xff, 0xf5, 0xb4, 0x76, 0xff, 0xf4, 0xb0, 0x72, 0xff, 0xf4, 0xad, 0x6f, 0xff, 0xf5, 0xab, 0x6e, 0xff, 0xf5, 0xab, 0x6e, 0xff, 0xf5, 0xa7, 0x6c, 0xff, 0xf4, 0xa3, 0x66, 0xff, 0xf5, 0xa3, 0x65, 0xff, 0xf5, 0xa3, 0x65, 0xff, 0xf4, 0xa2, 0x64, 0xff, 0xf2, 0xa5, 0x64, 0xff, 0xf4, 0xaa, 0x66, 0xff, 0xf4, 0xad, 0x68, 0xff, 0xf4, 0xaa, 0x66, 0xff, 0xf3, 0xa8, 0x65, 0xff, 0xf1, 0xa7, 0x64, 0xff, 0xf4, 0xa5, 0x62, 0xff, 0xf3, 0xa2, 0x5f, 0xff, 0xf5, 0xa1, 0x60, 0xff, 0xf8, 0xa1, 0x5f, 0xff, 0xcd, 0x8a, 0x52, 0xff, 0xae, 0x6e, 0x3f, 0xff, 0xae, 0x70, 0x42, 0xff, 0xa0, 0x63, 0x37, 0xff, 0x9d, 0x5f, 0x35, 0xff, 0x9b, 0x5c, 0x34, 0xff, 0x99, 0x58, 0x32, 0xff, 0x96, 0x57, 0x31, 0xff, 0x96, 0x54, 0x2f, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x91, 0x53, 0x2e, 0xff, 0x91, 0x50, 0x2c, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x92, 0x51, 0x2e, 0xff, 0x93, 0x52, 0x2f, 0xff, 0x91, 0x50, 0x2e, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8d, 0x4e, 0x2b, 0xff, 0x8e, 0x4e, 0x2c, 0xff, 0x8d, 0x4c, 0x2a, 0xff, 0x8a, 0x4c, 0x2a, 0xff, 0x8a, 0x4a, 0x2a, 0xff, 0x8a, 0x4a, 0x2a, 0xff, 0x89, 0x48, 0x2a, 0xff, 0x88, 0x49, 0x29, 0xff, 0x86, 0x49, 0x29, 0xff, 0x87, 0x47, 0x28, 0xff, 0x85, 0x47, 0x28, 0xff, 0x84, 0x44, 0x27, 0xff, 0x83, 0x43, 0x26, 0xff, 0x81, 0x43, 0x26, 0xff, 0x82, 0x44, 0x27, 0xff, 0x82, 0x44, 0x27, 0xff, 0x84, 0x45, 0x28, 0xff, 0x83, 0x45, 0x28, 0xff, 0x83, 0x45, 0x28, 0xff, 0x80, 0x41, 0x27, 0xff, 0x7e, 0x41, 0x26, 0xff, 0x7e, 0x3f, 0x27, 0xff, 0x7d, 0x41, 0x26, 0xff, 0x7e, 0x42, 0x27, 0xff, 0x72, 0x37, 0x1b, 0xff, 0x73, 0x35, 0x18, 0xff, + 0x6c, 0x31, 0x17, 0xff, 0x6d, 0x32, 0x16, 0xff, 0x6e, 0x32, 0x16, 0xff, 0x6d, 0x30, 0x17, 0xff, 0x70, 0x32, 0x16, 0xff, 0x70, 0x33, 0x17, 0xff, 0x71, 0x33, 0x17, 0xff, 0x74, 0x34, 0x17, 0xff, 0x74, 0x37, 0x18, 0xff, 0x79, 0x39, 0x1a, 0xff, 0x7a, 0x3b, 0x1d, 0xff, 0x7b, 0x3c, 0x1d, 0xff, 0x7e, 0x3e, 0x20, 0xff, 0x81, 0x3f, 0x21, 0xff, 0x83, 0x43, 0x23, 0xff, 0x86, 0x45, 0x25, 0xff, 0x88, 0x46, 0x25, 0xff, 0x8c, 0x48, 0x26, 0xff, 0x8d, 0x4b, 0x27, 0xff, 0x90, 0x4f, 0x29, 0xff, 0x94, 0x50, 0x2a, 0xff, 0x95, 0x52, 0x2b, 0xff, 0x9b, 0x56, 0x2e, 0xff, 0x9f, 0x5c, 0x2f, 0xff, 0xa4, 0x60, 0x32, 0xff, 0xa7, 0x63, 0x34, 0xff, 0xac, 0x67, 0x35, 0xff, 0xb3, 0x6e, 0x3b, 0xff, 0xba, 0x74, 0x3f, 0xff, 0xc0, 0x7c, 0x42, 0xff, 0xc6, 0x80, 0x45, 0xff, 0xcb, 0x85, 0x49, 0xff, 0xcd, 0x87, 0x4c, 0xff, 0xd0, 0x89, 0x4f, 0xff, 0xd8, 0x92, 0x51, 0xff, 0xc8, 0x89, 0x4b, 0xff, 0xcc, 0x8e, 0x52, 0xff, 0xd2, 0x94, 0x56, 0xff, 0xdb, 0x9b, 0x5c, 0xff, 0xe4, 0x9f, 0x60, 0xff, 0xee, 0xa4, 0x62, 0xff, 0xf4, 0xa7, 0x64, 0xff, 0xf2, 0xa7, 0x62, 0xff, 0xf1, 0xaf, 0x6d, 0xff, 0xf3, 0xb8, 0x78, 0xff, 0xf2, 0xaf, 0x72, 0xff, 0xf5, 0xaf, 0x70, 0xff, 0xf1, 0xb2, 0x76, 0xff, 0xef, 0xb0, 0x7a, 0xff, 0xed, 0xb0, 0x80, 0xff, 0xec, 0xb0, 0x86, 0xff, 0xed, 0xb0, 0x8a, 0xff, 0xf1, 0xb1, 0x8c, 0xff, 0xf3, 0xb5, 0x88, 0xff, 0xf6, 0xbb, 0x87, 0xff, 0xf5, 0xc3, 0x87, 0xff, 0xf5, 0xd1, 0x8b, 0xff, 0xf3, 0xe5, 0x90, 0xff, 0xe7, 0xef, 0x96, 0xff, 0xea, 0xed, 0x9b, 0xff, 0xec, 0xef, 0xa6, 0xff, 0xef, 0xed, 0xb5, 0xff, 0xf4, 0xef, 0xc6, 0xff, 0xf3, 0xee, 0xd9, 0xff, 0xf5, 0xef, 0xde, 0xff, 0xf4, 0xed, 0xd8, 0xff, 0xf3, 0xef, 0xd0, 0xff, 0xf2, 0xee, 0xc3, 0xff, 0xee, 0xed, 0xb1, 0xff, 0xeb, 0xef, 0xa7, 0xff, 0xe9, 0xed, 0x9c, 0xff, 0xf2, 0xe1, 0x8e, 0xff, 0xf0, 0xc8, 0x7f, 0xff, 0xec, 0xb6, 0x76, 0xff, 0xec, 0xad, 0x6c, 0xff, 0xea, 0xa7, 0x62, 0xff, 0xdb, 0x9d, 0x55, 0xff, 0xc5, 0x8b, 0x45, 0xff, 0xc1, 0x86, 0x3b, 0xff, 0xbe, 0x80, 0x34, 0xff, 0xb9, 0x7f, 0x32, 0xff, 0xb8, 0x7d, 0x2f, 0xff, 0xb7, 0x78, 0x2d, 0xff, 0xb5, 0x78, 0x2d, 0xff, 0xb2, 0x75, 0x2c, 0xff, 0xae, 0x70, 0x2b, 0xff, 0xa9, 0x6b, 0x2a, 0xff, 0xaa, 0x6d, 0x29, 0xff, 0xa6, 0x68, 0x28, 0xff, 0x94, 0x57, 0x29, 0xff, 0x88, 0x4b, 0x29, 0xff, 0x89, 0x4d, 0x2b, 0xff, 0x8a, 0x4f, 0x2d, 0xff, 0x8b, 0x4f, 0x2d, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x8c, 0x4f, 0x2d, 0xff, 0x8d, 0x50, 0x2c, 0xff, 0x8d, 0x50, 0x2e, 0xff, 0x8e, 0x52, 0x2e, 0xff, 0x8f, 0x52, 0x2e, 0xff, 0x92, 0x54, 0x2f, 0xff, 0x93, 0x56, 0x31, 0xff, 0x94, 0x58, 0x33, 0xff, 0x96, 0x5a, 0x33, 0xff, 0x99, 0x5c, 0x34, 0xff, 0x9b, 0x5d, 0x34, 0xff, 0x9f, 0x65, 0x39, 0xff, 0xa4, 0x6f, 0x3e, 0xff, 0xa5, 0x70, 0x40, 0xff, 0xa7, 0x73, 0x41, 0xff, 0xaa, 0x74, 0x42, 0xff, 0xab, 0x76, 0x42, 0xff, 0xac, 0x76, 0x40, 0xff, 0xac, 0x75, 0x41, 0xff, 0xa0, 0x65, 0x37, 0xff, 0x98, 0x59, 0x2e, 0xff, 0x9c, 0x5d, 0x32, 0xff, 0x9c, 0x5e, 0x31, 0xff, 0x9d, 0x62, 0x32, 0xff, 0xa0, 0x65, 0x35, 0xff, 0xa3, 0x67, 0x38, 0xff, 0xa4, 0x69, 0x39, 0xff, 0xa7, 0x6b, 0x3b, 0xff, 0xa9, 0x6d, 0x3d, 0xff, 0xa9, 0x6d, 0x3d, 0xff, 0xab, 0x70, 0x3d, 0xff, 0xaf, 0x72, 0x3e, 0xff, 0xb1, 0x74, 0x3f, 0xff, 0xb2, 0x77, 0x42, 0xff, 0xb5, 0x7b, 0x44, 0xff, 0xb8, 0x7e, 0x47, 0xff, 0xb9, 0x82, 0x4b, 0xff, 0xba, 0x86, 0x50, 0xff, 0xbd, 0x8a, 0x54, 0xff, 0xbf, 0x8c, 0x55, 0xff, 0xc3, 0x91, 0x58, 0xff, 0xc9, 0x94, 0x5c, 0xff, 0xd1, 0x96, 0x5f, 0xff, 0xd9, 0x9a, 0x62, 0xff, 0xe4, 0x9f, 0x66, 0xff, 0xee, 0xa6, 0x6a, 0xff, 0xf3, 0xac, 0x6c, 0xff, 0xf4, 0xae, 0x6d, 0xff, 0xf2, 0xb2, 0x6e, 0xff, 0xf4, 0xb5, 0x6f, 0xff, 0xf4, 0xc2, 0x76, 0xff, 0xf5, 0xce, 0x7c, 0xff, 0xf6, 0xe0, 0x83, 0xff, 0xec, 0xee, 0x8e, 0xff, 0xe9, 0xef, 0x9c, 0xff, 0xee, 0xee, 0xac, 0xff, 0xf0, 0xee, 0xb9, 0xff, 0xf3, 0xee, 0xc7, 0xff, 0xf4, 0xee, 0xd4, 0xff, 0xf5, 0xef, 0xda, 0xff, 0xf4, 0xed, 0xd9, 0xff, 0xf5, 0xee, 0xd3, 0xff, 0xf5, 0xef, 0xc7, 0xff, 0xef, 0xef, 0xb7, 0xff, 0xec, 0xee, 0xad, 0xff, 0xe8, 0xed, 0xa3, 0xff, 0xeb, 0xee, 0x97, 0xff, 0xf3, 0xe6, 0x8e, 0xff, 0xf4, 0xd8, 0x85, 0xff, 0xf5, 0xd3, 0x81, 0xff, 0xf4, 0xca, 0x7d, 0xff, 0xf5, 0xc2, 0x7a, 0xff, 0xf6, 0xbd, 0x79, 0xff, 0xf6, 0xbf, 0x7b, 0xff, 0xf6, 0xc0, 0x79, 0xff, 0xf5, 0xbe, 0x7a, 0xff, 0xf4, 0xb9, 0x7a, 0xff, 0xf5, 0xb5, 0x75, 0xff, 0xf5, 0xb1, 0x73, 0xff, 0xf5, 0xae, 0x70, 0xff, 0xf5, 0xaa, 0x6d, 0xff, 0xf3, 0xa9, 0x6c, 0xff, 0xf2, 0xa8, 0x6c, 0xff, 0xf3, 0xa3, 0x65, 0xff, 0xf1, 0xa8, 0x64, 0xff, 0xf2, 0xab, 0x6a, 0xff, 0xf4, 0xb0, 0x6b, 0xff, 0xf4, 0xaf, 0x68, 0xff, 0xf2, 0xab, 0x6a, 0xff, 0xf4, 0xa8, 0x67, 0xff, 0xf5, 0xa6, 0x66, 0xff, 0xf2, 0xa6, 0x63, 0xff, 0xf5, 0xa3, 0x60, 0xff, 0xf5, 0xa3, 0x60, 0xff, 0xf5, 0xa1, 0x5e, 0xff, 0xfa, 0xa1, 0x62, 0xff, 0xbb, 0x7a, 0x4a, 0xff, 0xb0, 0x72, 0x44, 0xff, 0xae, 0x6e, 0x42, 0xff, 0xa8, 0x67, 0x3d, 0xff, 0xa1, 0x61, 0x39, 0xff, 0x9c, 0x5d, 0x34, 0xff, 0x9b, 0x59, 0x34, 0xff, 0x99, 0x58, 0x32, 0xff, 0x97, 0x56, 0x31, 0xff, 0x97, 0x56, 0x30, 0xff, 0x98, 0x57, 0x30, 0xff, 0x99, 0x57, 0x33, 0xff, 0x95, 0x55, 0x30, 0xff, 0x95, 0x55, 0x2f, 0xff, 0x92, 0x51, 0x2e, 0xff, 0x90, 0x4f, 0x2c, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8d, 0x4b, 0x2b, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8e, 0x4d, 0x2c, 0xff, 0x8d, 0x4d, 0x2a, 0xff, 0x8d, 0x4e, 0x2a, 0xff, 0x8c, 0x4d, 0x2a, 0xff, 0x8b, 0x4d, 0x2a, 0xff, 0x8b, 0x4d, 0x2a, 0xff, 0x8a, 0x4b, 0x2a, 0xff, 0x88, 0x48, 0x29, 0xff, 0x87, 0x47, 0x29, 0xff, 0x87, 0x47, 0x28, 0xff, 0x87, 0x48, 0x29, 0xff, 0x88, 0x4a, 0x2b, 0xff, 0x8a, 0x49, 0x2c, 0xff, 0x89, 0x4c, 0x2d, 0xff, 0x89, 0x4a, 0x2b, 0xff, 0x87, 0x49, 0x2a, 0xff, 0x82, 0x45, 0x29, 0xff, 0x80, 0x41, 0x27, 0xff, 0x80, 0x41, 0x27, 0xff, 0x7f, 0x41, 0x27, 0xff, 0x7c, 0x3e, 0x23, 0xff, 0x6f, 0x34, 0x15, 0xff, 0x6e, 0x33, 0x16, 0xff, 0x6e, 0x33, 0x17, 0xff, + 0x6a, 0x30, 0x13, 0xff, 0x6b, 0x31, 0x11, 0xff, 0x6b, 0x30, 0x16, 0xff, 0x6c, 0x30, 0x16, 0xff, 0x6b, 0x2f, 0x15, 0xff, 0x6c, 0x30, 0x14, 0xff, 0x6d, 0x30, 0x14, 0xff, 0x6e, 0x31, 0x11, 0xff, 0x6d, 0x30, 0x12, 0xff, 0x6f, 0x30, 0x13, 0xff, 0x78, 0x39, 0x1e, 0xff, 0x7f, 0x40, 0x1f, 0xff, 0x84, 0x44, 0x24, 0xff, 0x88, 0x47, 0x27, 0xff, 0x8c, 0x4b, 0x2a, 0xff, 0x90, 0x4e, 0x2c, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x94, 0x54, 0x30, 0xff, 0x95, 0x54, 0x2f, 0xff, 0x97, 0x56, 0x30, 0xff, 0x9a, 0x56, 0x2f, 0xff, 0x9d, 0x5a, 0x2f, 0xff, 0x9a, 0x56, 0x2c, 0xff, 0x9b, 0x55, 0x2c, 0xff, 0x9b, 0x56, 0x2c, 0xff, 0xa3, 0x5e, 0x2f, 0xff, 0xaa, 0x66, 0x35, 0xff, 0xb3, 0x6f, 0x3a, 0xff, 0xb9, 0x72, 0x3d, 0xff, 0xbf, 0x79, 0x41, 0xff, 0xc2, 0x7d, 0x43, 0xff, 0xc7, 0x81, 0x46, 0xff, 0xce, 0x87, 0x4a, 0xff, 0xd1, 0x8a, 0x4e, 0xff, 0xd4, 0x91, 0x52, 0xff, 0xd2, 0x90, 0x50, 0xff, 0xd2, 0x8e, 0x50, 0xff, 0xd4, 0x92, 0x52, 0xff, 0xd5, 0x94, 0x56, 0xff, 0xde, 0x9d, 0x5b, 0xff, 0xe9, 0xa2, 0x5f, 0xff, 0xf2, 0xa7, 0x62, 0xff, 0xf4, 0xac, 0x68, 0xff, 0xf3, 0xb0, 0x6b, 0xff, 0xf6, 0xb6, 0x71, 0xff, 0xf3, 0xb7, 0x75, 0xff, 0xf3, 0xac, 0x6f, 0xff, 0xf5, 0xb4, 0x73, 0xff, 0xf3, 0xb4, 0x7a, 0xff, 0xf4, 0xb4, 0x7c, 0xff, 0xf1, 0xb2, 0x81, 0xff, 0xf1, 0xb3, 0x84, 0xff, 0xf2, 0xb3, 0x89, 0xff, 0xf5, 0xb5, 0x8b, 0xff, 0xf6, 0xba, 0x8b, 0xff, 0xf4, 0xbf, 0x89, 0xff, 0xf6, 0xcd, 0x8a, 0xff, 0xf4, 0xe1, 0x8b, 0xff, 0xeb, 0xef, 0x93, 0xff, 0xe6, 0xeb, 0x9c, 0xff, 0xec, 0xee, 0xa8, 0xff, 0xf0, 0xee, 0xb8, 0xff, 0xf4, 0xee, 0xd0, 0xff, 0xf6, 0xee, 0xe5, 0xff, 0xf6, 0xef, 0xe8, 0xff, 0xf6, 0xef, 0xe8, 0xff, 0xf6, 0xef, 0xe8, 0xff, 0xf6, 0xef, 0xe2, 0xff, 0xf5, 0xef, 0xd4, 0xff, 0xf2, 0xee, 0xc5, 0xff, 0xed, 0xed, 0xb6, 0xff, 0xee, 0xec, 0x9d, 0xff, 0xee, 0xdd, 0x87, 0xff, 0xef, 0xc8, 0x7c, 0xff, 0xee, 0xb4, 0x6c, 0xff, 0xee, 0xab, 0x5f, 0xff, 0xe2, 0x9d, 0x53, 0xff, 0xcf, 0x8e, 0x42, 0xff, 0xc5, 0x85, 0x34, 0xff, 0xc3, 0x84, 0x31, 0xff, 0xbf, 0x80, 0x31, 0xff, 0xbd, 0x7c, 0x30, 0xff, 0xbb, 0x7c, 0x30, 0xff, 0xb9, 0x7b, 0x2f, 0xff, 0xb6, 0x79, 0x2e, 0xff, 0xb2, 0x73, 0x2b, 0xff, 0xb1, 0x73, 0x2a, 0xff, 0xad, 0x70, 0x2b, 0xff, 0x9b, 0x5c, 0x2a, 0xff, 0x8b, 0x4d, 0x28, 0xff, 0x8d, 0x4f, 0x2a, 0xff, 0x8c, 0x51, 0x2c, 0xff, 0x8c, 0x51, 0x2d, 0xff, 0x8c, 0x50, 0x2c, 0xff, 0x8d, 0x50, 0x2d, 0xff, 0x8c, 0x51, 0x2d, 0xff, 0x8d, 0x52, 0x2f, 0xff, 0x8d, 0x50, 0x2f, 0xff, 0x8d, 0x51, 0x2e, 0xff, 0x8e, 0x52, 0x2f, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x93, 0x55, 0x31, 0xff, 0x95, 0x57, 0x33, 0xff, 0x97, 0x59, 0x33, 0xff, 0x97, 0x5b, 0x34, 0xff, 0x99, 0x5d, 0x35, 0xff, 0x9f, 0x68, 0x3a, 0xff, 0xa3, 0x6e, 0x3d, 0xff, 0xa4, 0x6e, 0x3e, 0xff, 0xa6, 0x70, 0x40, 0xff, 0xa7, 0x71, 0x41, 0xff, 0xab, 0x74, 0x41, 0xff, 0xa8, 0x71, 0x3f, 0xff, 0x9c, 0x62, 0x36, 0xff, 0x95, 0x59, 0x31, 0xff, 0x99, 0x5c, 0x33, 0xff, 0x9b, 0x5d, 0x32, 0xff, 0x9c, 0x5d, 0x33, 0xff, 0x9c, 0x60, 0x34, 0xff, 0x9e, 0x62, 0x33, 0xff, 0xa2, 0x66, 0x36, 0xff, 0xa3, 0x68, 0x39, 0xff, 0xa4, 0x6a, 0x3b, 0xff, 0xa7, 0x6d, 0x3c, 0xff, 0xa9, 0x6e, 0x3c, 0xff, 0xaa, 0x6e, 0x3c, 0xff, 0xad, 0x70, 0x3e, 0xff, 0xae, 0x72, 0x40, 0xff, 0xaf, 0x72, 0x40, 0xff, 0xb2, 0x76, 0x41, 0xff, 0xb5, 0x79, 0x43, 0xff, 0xb6, 0x7c, 0x47, 0xff, 0xb8, 0x7f, 0x4b, 0xff, 0xbb, 0x83, 0x4d, 0xff, 0xbe, 0x88, 0x51, 0xff, 0xc1, 0x8c, 0x55, 0xff, 0xc4, 0x8e, 0x57, 0xff, 0xc5, 0x90, 0x58, 0xff, 0xcc, 0x94, 0x5c, 0xff, 0xd7, 0x9a, 0x62, 0xff, 0xe2, 0x9e, 0x63, 0xff, 0xee, 0xa3, 0x67, 0xff, 0xf3, 0xa9, 0x6b, 0xff, 0xf3, 0xac, 0x6a, 0xff, 0xf4, 0xb0, 0x6d, 0xff, 0xf4, 0xb8, 0x72, 0xff, 0xf4, 0xc7, 0x7b, 0xff, 0xf4, 0xe2, 0x86, 0xff, 0xe9, 0xed, 0x91, 0xff, 0xe7, 0xed, 0x9d, 0xff, 0xed, 0xef, 0xab, 0xff, 0xf1, 0xef, 0xbb, 0xff, 0xf4, 0xef, 0xcf, 0xff, 0xf5, 0xee, 0xe0, 0xff, 0xf6, 0xee, 0xe7, 0xff, 0xf6, 0xef, 0xe7, 0xff, 0xf6, 0xee, 0xe8, 0xff, 0xf6, 0xef, 0xe4, 0xff, 0xf3, 0xee, 0xd2, 0xff, 0xf0, 0xed, 0xbf, 0xff, 0xec, 0xed, 0xb2, 0xff, 0xe9, 0xef, 0xa5, 0xff, 0xec, 0xee, 0x9a, 0xff, 0xf1, 0xeb, 0x90, 0xff, 0xf4, 0xe0, 0x8a, 0xff, 0xf5, 0xd8, 0x85, 0xff, 0xf4, 0xd0, 0x81, 0xff, 0xf6, 0xc8, 0x7e, 0xff, 0xf3, 0xc2, 0x7b, 0xff, 0xf3, 0xc4, 0x7a, 0xff, 0xf5, 0xc0, 0x7b, 0xff, 0xf5, 0xbd, 0x7b, 0xff, 0xf6, 0xba, 0x7b, 0xff, 0xf3, 0xb4, 0x75, 0xff, 0xf3, 0xb0, 0x72, 0xff, 0xf5, 0xad, 0x71, 0xff, 0xf4, 0xac, 0x70, 0xff, 0xf4, 0xab, 0x6f, 0xff, 0xf5, 0xae, 0x6d, 0xff, 0xf4, 0xad, 0x69, 0xff, 0xf5, 0xac, 0x6a, 0xff, 0xf4, 0xab, 0x69, 0xff, 0xf3, 0xab, 0x68, 0xff, 0xf5, 0xaa, 0x66, 0xff, 0xf4, 0xa9, 0x66, 0xff, 0xf4, 0xa7, 0x65, 0xff, 0xf5, 0xa4, 0x65, 0xff, 0xf3, 0xa2, 0x63, 0xff, 0xf4, 0xa2, 0x61, 0xff, 0xf5, 0x9f, 0x5f, 0xff, 0xf4, 0x9e, 0x62, 0xff, 0xb8, 0x76, 0x46, 0xff, 0xb3, 0x72, 0x43, 0xff, 0xb2, 0x72, 0x43, 0xff, 0xad, 0x6d, 0x41, 0xff, 0xa2, 0x62, 0x39, 0xff, 0x9d, 0x5d, 0x36, 0xff, 0x9e, 0x5f, 0x36, 0xff, 0x9d, 0x5d, 0x36, 0xff, 0x9e, 0x5d, 0x34, 0xff, 0x9c, 0x5c, 0x33, 0xff, 0x9a, 0x5c, 0x31, 0xff, 0x98, 0x58, 0x30, 0xff, 0x97, 0x56, 0x30, 0xff, 0x95, 0x55, 0x2f, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x91, 0x52, 0x2c, 0xff, 0x91, 0x52, 0x2d, 0xff, 0x91, 0x51, 0x2e, 0xff, 0x92, 0x54, 0x30, 0xff, 0x91, 0x54, 0x31, 0xff, 0x8f, 0x50, 0x2e, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x8c, 0x4c, 0x2c, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x8b, 0x4c, 0x2c, 0xff, 0x8b, 0x4c, 0x2c, 0xff, 0x89, 0x49, 0x2b, 0xff, 0x87, 0x49, 0x2a, 0xff, 0x86, 0x48, 0x29, 0xff, 0x84, 0x46, 0x29, 0xff, 0x81, 0x42, 0x28, 0xff, 0x82, 0x44, 0x29, 0xff, 0x7f, 0x41, 0x26, 0xff, 0x76, 0x3a, 0x20, 0xff, 0x6f, 0x32, 0x15, 0xff, 0x6c, 0x31, 0x17, 0xff, 0x6b, 0x31, 0x16, 0xff, 0x6b, 0x31, 0x13, 0xff, + 0x67, 0x2d, 0x12, 0xff, 0x68, 0x2f, 0x11, 0xff, 0x67, 0x2c, 0x0f, 0xff, 0x62, 0x29, 0x0d, 0xff, 0x6a, 0x2d, 0x10, 0xff, 0x70, 0x35, 0x1a, 0xff, 0x79, 0x3a, 0x21, 0xff, 0x84, 0x47, 0x27, 0xff, 0x90, 0x53, 0x2e, 0xff, 0x95, 0x57, 0x34, 0xff, 0x97, 0x58, 0x35, 0xff, 0x99, 0x59, 0x34, 0xff, 0x9b, 0x5a, 0x36, 0xff, 0x9c, 0x5b, 0x36, 0xff, 0xa0, 0x5f, 0x38, 0xff, 0xa2, 0x62, 0x39, 0xff, 0xa3, 0x63, 0x3b, 0xff, 0xa6, 0x66, 0x3d, 0xff, 0xa6, 0x65, 0x3d, 0xff, 0xa9, 0x68, 0x3e, 0xff, 0xa9, 0x69, 0x3f, 0xff, 0xad, 0x6d, 0x41, 0xff, 0xb1, 0x70, 0x43, 0xff, 0xb8, 0x76, 0x49, 0xff, 0xba, 0x78, 0x4a, 0xff, 0xb8, 0x74, 0x45, 0xff, 0xb8, 0x73, 0x43, 0xff, 0xb6, 0x74, 0x40, 0xff, 0xb8, 0x77, 0x41, 0xff, 0xb8, 0x75, 0x40, 0xff, 0xbe, 0x7a, 0x41, 0xff, 0xc6, 0x7f, 0x45, 0xff, 0xc8, 0x80, 0x46, 0xff, 0xcf, 0x86, 0x49, 0xff, 0xd2, 0x8f, 0x50, 0xff, 0xd4, 0x93, 0x52, 0xff, 0xd6, 0x92, 0x54, 0xff, 0xdd, 0x98, 0x57, 0xff, 0xe2, 0x9b, 0x5a, 0xff, 0xe0, 0x9c, 0x58, 0xff, 0xe3, 0x9f, 0x5d, 0xff, 0xef, 0xa5, 0x60, 0xff, 0xf5, 0xab, 0x66, 0xff, 0xf5, 0xb3, 0x6c, 0xff, 0xf3, 0xba, 0x72, 0xff, 0xf1, 0xba, 0x75, 0xff, 0xf2, 0xb9, 0x78, 0xff, 0xf2, 0xb2, 0x75, 0xff, 0xf4, 0xb8, 0x7a, 0xff, 0xf5, 0xb9, 0x7a, 0xff, 0xf6, 0xb7, 0x7d, 0xff, 0xf5, 0xb6, 0x80, 0xff, 0xf5, 0xb7, 0x83, 0xff, 0xf6, 0xb9, 0x87, 0xff, 0xf6, 0xbc, 0x89, 0xff, 0xf6, 0xbf, 0x8c, 0xff, 0xf5, 0xc9, 0x8b, 0xff, 0xf3, 0xdc, 0x8b, 0xff, 0xf0, 0xe6, 0x8c, 0xff, 0xe9, 0xec, 0x97, 0xff, 0xe9, 0xed, 0xa3, 0xff, 0xf0, 0xed, 0xb2, 0xff, 0xf2, 0xee, 0xc4, 0xff, 0xf4, 0xee, 0xdd, 0xff, 0xf6, 0xef, 0xe9, 0xff, 0xf6, 0xef, 0xe8, 0xff, 0xf6, 0xef, 0xe8, 0xff, 0xf6, 0xef, 0xe8, 0xff, 0xf6, 0xef, 0xe8, 0xff, 0xf6, 0xee, 0xe2, 0xff, 0xf2, 0xed, 0xcd, 0xff, 0xec, 0xee, 0xab, 0xff, 0xea, 0xe5, 0x89, 0xff, 0xed, 0xcf, 0x76, 0xff, 0xf0, 0xbb, 0x65, 0xff, 0xef, 0xb5, 0x5c, 0xff, 0xe6, 0xa2, 0x50, 0xff, 0xd8, 0x92, 0x3e, 0xff, 0xd1, 0x8d, 0x39, 0xff, 0xcb, 0x8a, 0x38, 0xff, 0xc5, 0x86, 0x35, 0xff, 0xc2, 0x82, 0x33, 0xff, 0xbf, 0x7f, 0x30, 0xff, 0xbc, 0x7b, 0x2f, 0xff, 0xb7, 0x79, 0x2e, 0xff, 0xb5, 0x78, 0x2d, 0xff, 0xb3, 0x73, 0x2b, 0xff, 0xa4, 0x63, 0x2a, 0xff, 0x90, 0x51, 0x2a, 0xff, 0x8f, 0x50, 0x2b, 0xff, 0x8e, 0x52, 0x2c, 0xff, 0x8e, 0x51, 0x2e, 0xff, 0x8c, 0x4f, 0x2e, 0xff, 0x8d, 0x4f, 0x2e, 0xff, 0x8e, 0x51, 0x2e, 0xff, 0x8d, 0x52, 0x2e, 0xff, 0x8e, 0x50, 0x2e, 0xff, 0x8e, 0x50, 0x2e, 0xff, 0x8f, 0x51, 0x2f, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x92, 0x55, 0x30, 0xff, 0x94, 0x57, 0x32, 0xff, 0x95, 0x58, 0x34, 0xff, 0x97, 0x5a, 0x34, 0xff, 0x9c, 0x62, 0x37, 0xff, 0xa1, 0x6b, 0x3c, 0xff, 0xa2, 0x6c, 0x3e, 0xff, 0xa3, 0x6d, 0x3e, 0xff, 0xa5, 0x6f, 0x3d, 0xff, 0xa9, 0x71, 0x40, 0xff, 0xa5, 0x6c, 0x3d, 0xff, 0x97, 0x5d, 0x32, 0xff, 0x92, 0x57, 0x2f, 0xff, 0x94, 0x58, 0x31, 0xff, 0x96, 0x5a, 0x32, 0xff, 0x99, 0x5c, 0x31, 0xff, 0x9b, 0x5e, 0x32, 0xff, 0x9b, 0x5e, 0x33, 0xff, 0x9c, 0x60, 0x33, 0xff, 0x9f, 0x63, 0x33, 0xff, 0xa1, 0x65, 0x35, 0xff, 0xa3, 0x69, 0x39, 0xff, 0xa5, 0x6b, 0x3a, 0xff, 0xa7, 0x6e, 0x3c, 0xff, 0xa9, 0x6e, 0x3c, 0xff, 0xaa, 0x6e, 0x3e, 0xff, 0xab, 0x71, 0x40, 0xff, 0xae, 0x71, 0x41, 0xff, 0xb0, 0x75, 0x41, 0xff, 0xb2, 0x78, 0x41, 0xff, 0xb5, 0x78, 0x44, 0xff, 0xb7, 0x7a, 0x47, 0xff, 0xb8, 0x7d, 0x48, 0xff, 0xb8, 0x7d, 0x48, 0xff, 0xba, 0x7f, 0x4b, 0xff, 0xbc, 0x83, 0x4c, 0xff, 0xbf, 0x86, 0x4f, 0xff, 0xc4, 0x8c, 0x55, 0xff, 0xca, 0x91, 0x59, 0xff, 0xd4, 0x95, 0x5c, 0xff, 0xe0, 0x9a, 0x5f, 0xff, 0xed, 0xa1, 0x63, 0xff, 0xf3, 0xa6, 0x68, 0xff, 0xf2, 0xad, 0x6c, 0xff, 0xf3, 0xb7, 0x73, 0xff, 0xf5, 0xc7, 0x79, 0xff, 0xf7, 0xdd, 0x85, 0xff, 0xf0, 0xed, 0x90, 0xff, 0xe9, 0xef, 0x9a, 0xff, 0xeb, 0xed, 0xa7, 0xff, 0xee, 0xee, 0xb6, 0xff, 0xf4, 0xed, 0xcc, 0xff, 0xf6, 0xee, 0xe1, 0xff, 0xf6, 0xef, 0xe8, 0xff, 0xf6, 0xef, 0xe8, 0xff, 0xf6, 0xef, 0xe8, 0xff, 0xf6, 0xef, 0xe8, 0xff, 0xf5, 0xef, 0xe7, 0xff, 0xf4, 0xef, 0xd4, 0xff, 0xf2, 0xef, 0xbf, 0xff, 0xed, 0xee, 0xb1, 0xff, 0xeb, 0xef, 0xa7, 0xff, 0xe8, 0xee, 0x9c, 0xff, 0xee, 0xeb, 0x93, 0xff, 0xf3, 0xe5, 0x8c, 0xff, 0xf6, 0xdb, 0x85, 0xff, 0xf5, 0xd4, 0x82, 0xff, 0xf3, 0xc9, 0x81, 0xff, 0xf5, 0xc2, 0x7d, 0xff, 0xf4, 0xc2, 0x7b, 0xff, 0xf3, 0xc4, 0x7c, 0xff, 0xf3, 0xc3, 0x7c, 0xff, 0xf3, 0xce, 0x80, 0xff, 0xf4, 0xcd, 0x7f, 0xff, 0xf3, 0xc1, 0x7a, 0xff, 0xf2, 0xb3, 0x75, 0xff, 0xf4, 0xb1, 0x72, 0xff, 0xf5, 0xad, 0x70, 0xff, 0xf3, 0xaa, 0x6d, 0xff, 0xf5, 0xab, 0x69, 0xff, 0xf4, 0xa8, 0x67, 0xff, 0xf4, 0xaa, 0x65, 0xff, 0xf4, 0xa7, 0x64, 0xff, 0xf5, 0xa7, 0x65, 0xff, 0xf4, 0xa8, 0x65, 0xff, 0xf5, 0xa6, 0x65, 0xff, 0xf4, 0xa2, 0x64, 0xff, 0xf5, 0xa2, 0x61, 0xff, 0xf9, 0xa6, 0x64, 0xff, 0xd0, 0x8c, 0x54, 0xff, 0xb5, 0x74, 0x46, 0xff, 0xb3, 0x72, 0x45, 0xff, 0xb2, 0x72, 0x45, 0xff, 0xb0, 0x72, 0x42, 0xff, 0xaa, 0x6b, 0x40, 0xff, 0xa4, 0x64, 0x3c, 0xff, 0xa2, 0x64, 0x39, 0xff, 0xa1, 0x61, 0x36, 0xff, 0x9e, 0x5e, 0x34, 0xff, 0x9d, 0x5c, 0x34, 0xff, 0x9b, 0x5b, 0x33, 0xff, 0x9a, 0x5c, 0x31, 0xff, 0x97, 0x58, 0x30, 0xff, 0x96, 0x54, 0x2f, 0xff, 0x93, 0x54, 0x2e, 0xff, 0x92, 0x50, 0x2d, 0xff, 0x91, 0x50, 0x2d, 0xff, 0x93, 0x52, 0x2f, 0xff, 0x94, 0x53, 0x2f, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x94, 0x54, 0x31, 0xff, 0x96, 0x56, 0x33, 0xff, 0x96, 0x56, 0x34, 0xff, 0x93, 0x56, 0x32, 0xff, 0x93, 0x54, 0x30, 0xff, 0x93, 0x52, 0x2f, 0xff, 0x8f, 0x51, 0x2e, 0xff, 0x8d, 0x4e, 0x2e, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8a, 0x4a, 0x2b, 0xff, 0x87, 0x49, 0x2a, 0xff, 0x85, 0x48, 0x29, 0xff, 0x86, 0x47, 0x29, 0xff, 0x85, 0x47, 0x2a, 0xff, 0x85, 0x47, 0x2b, 0xff, 0x7b, 0x3f, 0x26, 0xff, 0x70, 0x35, 0x19, 0xff, 0x6d, 0x30, 0x16, 0xff, 0x6a, 0x30, 0x16, 0xff, 0x69, 0x2f, 0x14, 0xff, 0x6a, 0x2d, 0x12, 0xff, 0x69, 0x2e, 0x12, 0xff, + 0x65, 0x2f, 0x0f, 0xff, 0x65, 0x2a, 0x0c, 0xff, 0x7a, 0x3b, 0x20, 0xff, 0x90, 0x51, 0x32, 0xff, 0x94, 0x56, 0x34, 0xff, 0x90, 0x52, 0x31, 0xff, 0x93, 0x53, 0x30, 0xff, 0x93, 0x54, 0x31, 0xff, 0x92, 0x53, 0x30, 0xff, 0x93, 0x55, 0x32, 0xff, 0x97, 0x56, 0x33, 0xff, 0x99, 0x57, 0x33, 0xff, 0x9a, 0x5a, 0x34, 0xff, 0x9b, 0x5a, 0x35, 0xff, 0x9d, 0x5c, 0x36, 0xff, 0xa0, 0x5e, 0x37, 0xff, 0xa2, 0x60, 0x39, 0xff, 0xa3, 0x62, 0x3a, 0xff, 0xa7, 0x66, 0x3c, 0xff, 0xa9, 0x68, 0x3e, 0xff, 0xae, 0x6c, 0x41, 0xff, 0xb2, 0x71, 0x44, 0xff, 0xb5, 0x72, 0x45, 0xff, 0xb6, 0x72, 0x46, 0xff, 0xb5, 0x73, 0x45, 0xff, 0xb9, 0x79, 0x49, 0xff, 0xc1, 0x7f, 0x4e, 0xff, 0xd8, 0x8d, 0x56, 0xff, 0xe1, 0x91, 0x5a, 0xff, 0xe8, 0x98, 0x61, 0xff, 0xdb, 0x91, 0x5a, 0xff, 0xc4, 0x81, 0x48, 0xff, 0xc6, 0x83, 0x47, 0xff, 0xcc, 0x85, 0x47, 0xff, 0xd0, 0x8a, 0x4b, 0xff, 0xd3, 0x8e, 0x52, 0xff, 0xd5, 0x91, 0x55, 0xff, 0xda, 0x96, 0x59, 0xff, 0xe0, 0x9b, 0x5c, 0xff, 0xe7, 0x9f, 0x5d, 0xff, 0xf3, 0xa3, 0x60, 0xff, 0xeb, 0xa2, 0x5e, 0xff, 0xf2, 0xa6, 0x60, 0xff, 0xf4, 0xb1, 0x67, 0xff, 0xf4, 0xb5, 0x70, 0xff, 0xf5, 0xc0, 0x76, 0xff, 0xf2, 0xbf, 0x77, 0xff, 0xf6, 0xbf, 0x7b, 0xff, 0xf3, 0xb5, 0x77, 0xff, 0xf5, 0xba, 0x7a, 0xff, 0xf6, 0xbc, 0x7a, 0xff, 0xf6, 0xba, 0x7b, 0xff, 0xf6, 0xba, 0x7e, 0xff, 0xf4, 0xbc, 0x81, 0xff, 0xf6, 0xc0, 0x86, 0xff, 0xf6, 0xc4, 0x89, 0xff, 0xf5, 0xc8, 0x8c, 0xff, 0xf3, 0xd1, 0x8c, 0xff, 0xf6, 0xe4, 0x8b, 0xff, 0xf0, 0xe8, 0x8b, 0xff, 0xea, 0xed, 0x95, 0xff, 0xea, 0xef, 0xa3, 0xff, 0xef, 0xed, 0xb2, 0xff, 0xf2, 0xee, 0xc7, 0xff, 0xf6, 0xee, 0xdf, 0xff, 0xf6, 0xf0, 0xea, 0xff, 0xf6, 0xef, 0xe8, 0xff, 0xf5, 0xee, 0xe8, 0xff, 0xf4, 0xed, 0xe8, 0xff, 0xf6, 0xef, 0xe6, 0xff, 0xf4, 0xef, 0xd6, 0xff, 0xed, 0xed, 0xb3, 0xff, 0xe5, 0xe8, 0x89, 0xff, 0xf1, 0xdd, 0x75, 0xff, 0xf0, 0xc1, 0x61, 0xff, 0xed, 0xb1, 0x55, 0xff, 0xee, 0xa6, 0x4d, 0xff, 0xea, 0x9a, 0x43, 0xff, 0xdf, 0x91, 0x3f, 0xff, 0xd0, 0x8b, 0x37, 0xff, 0xce, 0x8f, 0x3b, 0xff, 0xc5, 0x86, 0x37, 0xff, 0xc3, 0x84, 0x33, 0xff, 0xc1, 0x81, 0x30, 0xff, 0xbd, 0x80, 0x31, 0xff, 0xba, 0x7b, 0x2f, 0xff, 0xb2, 0x72, 0x2d, 0xff, 0x9b, 0x5d, 0x2c, 0xff, 0x91, 0x52, 0x2d, 0xff, 0x93, 0x54, 0x2e, 0xff, 0x92, 0x54, 0x2e, 0xff, 0x91, 0x54, 0x2f, 0xff, 0x90, 0x52, 0x30, 0xff, 0x8f, 0x51, 0x2f, 0xff, 0x8f, 0x51, 0x2f, 0xff, 0x8e, 0x52, 0x2f, 0xff, 0x8d, 0x53, 0x2f, 0xff, 0x8e, 0x53, 0x2f, 0xff, 0x90, 0x53, 0x2f, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x91, 0x53, 0x30, 0xff, 0x94, 0x55, 0x31, 0xff, 0x94, 0x56, 0x32, 0xff, 0x95, 0x58, 0x33, 0xff, 0x99, 0x60, 0x37, 0xff, 0x9f, 0x6b, 0x3c, 0xff, 0xa0, 0x6a, 0x3d, 0xff, 0xa1, 0x6a, 0x3d, 0xff, 0xa2, 0x6d, 0x3d, 0xff, 0xa5, 0x6f, 0x3f, 0xff, 0xa0, 0x6a, 0x3d, 0xff, 0x92, 0x59, 0x31, 0xff, 0x8f, 0x53, 0x2e, 0xff, 0x91, 0x55, 0x31, 0xff, 0x94, 0x58, 0x32, 0xff, 0x96, 0x5a, 0x32, 0xff, 0x97, 0x5a, 0x30, 0xff, 0x99, 0x5b, 0x30, 0xff, 0x9a, 0x5e, 0x32, 0xff, 0x9c, 0x60, 0x33, 0xff, 0x9f, 0x62, 0x33, 0xff, 0x9f, 0x63, 0x33, 0xff, 0xa0, 0x61, 0x31, 0xff, 0xa3, 0x67, 0x36, 0xff, 0xa5, 0x6b, 0x3a, 0xff, 0xa7, 0x6d, 0x3b, 0xff, 0xa9, 0x70, 0x3f, 0xff, 0xaa, 0x70, 0x40, 0xff, 0xad, 0x72, 0x41, 0xff, 0xaf, 0x72, 0x41, 0xff, 0xb0, 0x75, 0x42, 0xff, 0xaf, 0x73, 0x41, 0xff, 0xac, 0x70, 0x40, 0xff, 0xb1, 0x75, 0x42, 0xff, 0xb5, 0x78, 0x43, 0xff, 0xb7, 0x7c, 0x47, 0xff, 0xb8, 0x7b, 0x47, 0xff, 0xbc, 0x80, 0x4c, 0xff, 0xbf, 0x86, 0x50, 0xff, 0xc5, 0x8a, 0x53, 0xff, 0xce, 0x90, 0x58, 0xff, 0xdb, 0x99, 0x5c, 0xff, 0xe6, 0x9e, 0x60, 0xff, 0xef, 0xa4, 0x63, 0xff, 0xf3, 0xaa, 0x67, 0xff, 0xf4, 0xb0, 0x66, 0xff, 0xf2, 0xb6, 0x69, 0xff, 0xf2, 0xcb, 0x79, 0xff, 0xf3, 0xe6, 0x8c, 0xff, 0xeb, 0xee, 0x96, 0xff, 0xe8, 0xef, 0xa1, 0xff, 0xee, 0xef, 0xb1, 0xff, 0xf1, 0xee, 0xc4, 0xff, 0xf4, 0xee, 0xdc, 0xff, 0xf6, 0xef, 0xe7, 0xff, 0xf6, 0xef, 0xe8, 0xff, 0xf6, 0xef, 0xe8, 0xff, 0xf6, 0xef, 0xe8, 0xff, 0xf6, 0xef, 0xe9, 0xff, 0xf6, 0xee, 0xe4, 0xff, 0xf2, 0xee, 0xd1, 0xff, 0xef, 0xef, 0xbd, 0xff, 0xec, 0xee, 0xb1, 0xff, 0xeb, 0xef, 0xa5, 0xff, 0xe7, 0xee, 0x9e, 0xff, 0xed, 0xec, 0x94, 0xff, 0xf1, 0xe9, 0x8e, 0xff, 0xf3, 0xe5, 0x8c, 0xff, 0xf4, 0xdd, 0x89, 0xff, 0xf6, 0xde, 0x8b, 0xff, 0xf5, 0xd7, 0x8c, 0xff, 0xf4, 0xd4, 0x8b, 0xff, 0xf6, 0xda, 0x87, 0xff, 0xf2, 0xd4, 0x85, 0xff, 0xf1, 0xd1, 0x81, 0xff, 0xf5, 0xc9, 0x80, 0xff, 0xf3, 0xcd, 0x80, 0xff, 0xf2, 0xb8, 0x76, 0xff, 0xf4, 0xb2, 0x72, 0xff, 0xf5, 0xac, 0x6f, 0xff, 0xf2, 0xab, 0x6d, 0xff, 0xf3, 0xaa, 0x68, 0xff, 0xf4, 0xa7, 0x66, 0xff, 0xf5, 0xa5, 0x64, 0xff, 0xf2, 0xa4, 0x64, 0xff, 0xf4, 0xa3, 0x63, 0xff, 0xf5, 0xa1, 0x62, 0xff, 0xf5, 0xa1, 0x62, 0xff, 0xf5, 0xa2, 0x63, 0xff, 0xfa, 0xa5, 0x66, 0xff, 0xbd, 0x7a, 0x47, 0xff, 0xb4, 0x77, 0x48, 0xff, 0xb4, 0x76, 0x48, 0xff, 0xb1, 0x72, 0x44, 0xff, 0xb5, 0x74, 0x47, 0xff, 0xb3, 0x73, 0x47, 0xff, 0xa9, 0x68, 0x40, 0xff, 0xa3, 0x65, 0x3d, 0xff, 0xa3, 0x65, 0x3a, 0xff, 0xa1, 0x62, 0x38, 0xff, 0x9e, 0x5e, 0x35, 0xff, 0x9c, 0x5c, 0x33, 0xff, 0x9b, 0x5b, 0x32, 0xff, 0x97, 0x57, 0x2f, 0xff, 0x96, 0x54, 0x2f, 0xff, 0x96, 0x54, 0x2f, 0xff, 0x94, 0x54, 0x30, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x94, 0x53, 0x30, 0xff, 0x95, 0x54, 0x30, 0xff, 0x95, 0x54, 0x30, 0xff, 0x94, 0x53, 0x2f, 0xff, 0x93, 0x53, 0x30, 0xff, 0x93, 0x53, 0x30, 0xff, 0x93, 0x54, 0x30, 0xff, 0x93, 0x52, 0x2f, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x8f, 0x51, 0x2e, 0xff, 0x8d, 0x4d, 0x2d, 0xff, 0x8b, 0x4c, 0x2d, 0xff, 0x89, 0x4a, 0x2b, 0xff, 0x87, 0x49, 0x2a, 0xff, 0x86, 0x49, 0x2a, 0xff, 0x86, 0x49, 0x2a, 0xff, 0x86, 0x49, 0x2a, 0xff, 0x81, 0x44, 0x28, 0xff, 0x70, 0x33, 0x17, 0xff, 0x6e, 0x34, 0x18, 0xff, 0x6d, 0x31, 0x16, 0xff, 0x69, 0x30, 0x15, 0xff, 0x67, 0x2e, 0x11, 0xff, 0x65, 0x2d, 0x10, 0xff, 0x65, 0x2d, 0x10, 0xff, 0x65, 0x2c, 0x0f, 0xff, + 0x8b, 0x4c, 0x2e, 0xff, 0x90, 0x51, 0x31, 0xff, 0x90, 0x50, 0x30, 0xff, 0x8c, 0x4c, 0x2d, 0xff, 0x8c, 0x4c, 0x2d, 0xff, 0x8c, 0x4c, 0x2d, 0xff, 0x8d, 0x4d, 0x2d, 0xff, 0x8f, 0x4f, 0x2d, 0xff, 0x8e, 0x4e, 0x2e, 0xff, 0x90, 0x50, 0x2e, 0xff, 0x92, 0x52, 0x2f, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x95, 0x53, 0x31, 0xff, 0x97, 0x55, 0x31, 0xff, 0x99, 0x57, 0x33, 0xff, 0x9b, 0x5a, 0x33, 0xff, 0x9d, 0x5b, 0x34, 0xff, 0xa0, 0x5f, 0x36, 0xff, 0xa3, 0x62, 0x39, 0xff, 0xa6, 0x65, 0x3a, 0xff, 0xa9, 0x69, 0x3c, 0xff, 0xab, 0x69, 0x3f, 0xff, 0xaf, 0x6d, 0x41, 0xff, 0xb3, 0x72, 0x42, 0xff, 0xb9, 0x79, 0x49, 0xff, 0xc2, 0x7e, 0x4d, 0xff, 0xc6, 0x83, 0x50, 0xff, 0xcd, 0x87, 0x53, 0xff, 0xd3, 0x8a, 0x54, 0xff, 0xda, 0x8f, 0x56, 0xff, 0xe9, 0x95, 0x5c, 0xff, 0xf1, 0x9d, 0x64, 0xff, 0xe6, 0x99, 0x5f, 0xff, 0xe0, 0x95, 0x5b, 0xff, 0xda, 0x8f, 0x52, 0xff, 0xd6, 0x8f, 0x50, 0xff, 0xd5, 0x94, 0x54, 0xff, 0xd7, 0x96, 0x5c, 0xff, 0xdb, 0x98, 0x5e, 0xff, 0xe5, 0x9f, 0x5d, 0xff, 0xeb, 0xa2, 0x5e, 0xff, 0xf3, 0xa5, 0x60, 0xff, 0xf4, 0xa7, 0x61, 0xff, 0xf4, 0xaa, 0x62, 0xff, 0xf4, 0xb1, 0x69, 0xff, 0xf4, 0xb8, 0x71, 0xff, 0xf6, 0xc5, 0x79, 0xff, 0xf3, 0xc7, 0x7a, 0xff, 0xf3, 0xc0, 0x7b, 0xff, 0xf4, 0xb9, 0x79, 0xff, 0xf4, 0xbf, 0x79, 0xff, 0xf5, 0xbf, 0x7a, 0xff, 0xf6, 0xbe, 0x7a, 0xff, 0xf6, 0xbf, 0x7d, 0xff, 0xf4, 0xc0, 0x80, 0xff, 0xf5, 0xc8, 0x86, 0xff, 0xf6, 0xcc, 0x87, 0xff, 0xf6, 0xd3, 0x87, 0xff, 0xf5, 0xdb, 0x87, 0xff, 0xf2, 0xe6, 0x89, 0xff, 0xf2, 0xe5, 0x86, 0xff, 0xea, 0xe8, 0x8e, 0xff, 0xea, 0xee, 0x9d, 0xff, 0xee, 0xef, 0xae, 0xff, 0xf3, 0xf0, 0xc1, 0xff, 0xf6, 0xef, 0xdc, 0xff, 0xf5, 0xf0, 0xe6, 0xff, 0xf6, 0xef, 0xe8, 0xff, 0xf6, 0xf0, 0xe8, 0xff, 0xf6, 0xef, 0xdf, 0xff, 0xf3, 0xef, 0xc9, 0xff, 0xeb, 0xed, 0xac, 0xff, 0xe8, 0xeb, 0x8c, 0xff, 0xf0, 0xe0, 0x73, 0xff, 0xf2, 0xcc, 0x66, 0xff, 0xf0, 0xbb, 0x5b, 0xff, 0xf3, 0xab, 0x51, 0xff, 0xf2, 0xa1, 0x4a, 0xff, 0xeb, 0x9d, 0x46, 0xff, 0xdd, 0x95, 0x3f, 0xff, 0xd1, 0x8d, 0x3c, 0xff, 0xcb, 0x8b, 0x38, 0xff, 0xc6, 0x87, 0x36, 0xff, 0xc4, 0x84, 0x34, 0xff, 0xc0, 0x81, 0x31, 0xff, 0xba, 0x7b, 0x30, 0xff, 0xa4, 0x64, 0x2e, 0xff, 0x94, 0x56, 0x2d, 0xff, 0x98, 0x5a, 0x30, 0xff, 0x96, 0x58, 0x32, 0xff, 0x94, 0x57, 0x32, 0xff, 0x94, 0x56, 0x31, 0xff, 0x93, 0x54, 0x31, 0xff, 0x92, 0x54, 0x31, 0xff, 0x90, 0x54, 0x30, 0xff, 0x90, 0x52, 0x2f, 0xff, 0x90, 0x52, 0x2f, 0xff, 0x8f, 0x53, 0x2f, 0xff, 0x90, 0x54, 0x30, 0xff, 0x91, 0x54, 0x30, 0xff, 0x92, 0x54, 0x31, 0xff, 0x92, 0x56, 0x33, 0xff, 0x94, 0x57, 0x33, 0xff, 0x98, 0x5e, 0x36, 0xff, 0x9c, 0x67, 0x3b, 0xff, 0x9d, 0x69, 0x3d, 0xff, 0x9d, 0x68, 0x3c, 0xff, 0x9f, 0x69, 0x3c, 0xff, 0xa2, 0x6c, 0x3e, 0xff, 0x9e, 0x68, 0x3a, 0xff, 0x92, 0x58, 0x2f, 0xff, 0x8d, 0x51, 0x2d, 0xff, 0x8e, 0x54, 0x30, 0xff, 0x90, 0x54, 0x30, 0xff, 0x93, 0x56, 0x2f, 0xff, 0x94, 0x59, 0x2f, 0xff, 0x96, 0x5a, 0x2f, 0xff, 0x98, 0x5a, 0x2f, 0xff, 0x99, 0x5c, 0x2f, 0xff, 0x9a, 0x5c, 0x30, 0xff, 0x9c, 0x5e, 0x33, 0xff, 0x9e, 0x61, 0x33, 0xff, 0x9f, 0x63, 0x33, 0xff, 0xa1, 0x64, 0x34, 0xff, 0xa3, 0x68, 0x36, 0xff, 0xa4, 0x6b, 0x3a, 0xff, 0xa7, 0x6d, 0x3d, 0xff, 0xa9, 0x6f, 0x3d, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xa8, 0x6c, 0x3c, 0xff, 0xa7, 0x6b, 0x3a, 0xff, 0xa9, 0x6c, 0x3c, 0xff, 0xac, 0x6f, 0x3f, 0xff, 0xae, 0x72, 0x40, 0xff, 0xb1, 0x74, 0x40, 0xff, 0xb4, 0x77, 0x43, 0xff, 0xb7, 0x7a, 0x46, 0xff, 0xb9, 0x7c, 0x48, 0xff, 0xbc, 0x80, 0x49, 0xff, 0xc1, 0x85, 0x4e, 0xff, 0xc8, 0x8a, 0x53, 0xff, 0xd0, 0x92, 0x5a, 0xff, 0xde, 0x9b, 0x5e, 0xff, 0xec, 0xa2, 0x63, 0xff, 0xf1, 0xa8, 0x67, 0xff, 0xf2, 0xae, 0x67, 0xff, 0xf3, 0xb3, 0x68, 0xff, 0xf2, 0xc0, 0x70, 0xff, 0xf2, 0xd7, 0x77, 0xff, 0xec, 0xe9, 0x83, 0xff, 0xe6, 0xec, 0x93, 0xff, 0xe8, 0xed, 0xa1, 0xff, 0xed, 0xed, 0xac, 0xff, 0xf3, 0xef, 0xbf, 0xff, 0xf4, 0xed, 0xd4, 0xff, 0xf5, 0xed, 0xe0, 0xff, 0xf6, 0xef, 0xe6, 0xff, 0xf6, 0xee, 0xe8, 0xff, 0xf5, 0xec, 0xe3, 0xff, 0xf5, 0xee, 0xe1, 0xff, 0xf4, 0xee, 0xd7, 0xff, 0xf1, 0xed, 0xc0, 0xff, 0xee, 0xed, 0xb3, 0xff, 0xeb, 0xec, 0xab, 0xff, 0xe9, 0xec, 0xa2, 0xff, 0xe8, 0xed, 0x9f, 0xff, 0xe9, 0xed, 0x9d, 0xff, 0xf2, 0xea, 0x9b, 0xff, 0xf4, 0xe1, 0x9a, 0xff, 0xf2, 0xdb, 0x97, 0xff, 0xf4, 0xd4, 0x93, 0xff, 0xf6, 0xd1, 0x91, 0xff, 0xf5, 0xd1, 0x91, 0xff, 0xf4, 0xd2, 0x8d, 0xff, 0xf5, 0xd3, 0x8a, 0xff, 0xf4, 0xd5, 0x87, 0xff, 0xf3, 0xd9, 0x83, 0xff, 0xf4, 0xd0, 0x80, 0xff, 0xf3, 0xc1, 0x7c, 0xff, 0xf2, 0xb4, 0x73, 0xff, 0xf4, 0xae, 0x70, 0xff, 0xf2, 0xab, 0x6d, 0xff, 0xf3, 0xaa, 0x67, 0xff, 0xf4, 0xa6, 0x65, 0xff, 0xf1, 0xa5, 0x65, 0xff, 0xf3, 0xa3, 0x62, 0xff, 0xf2, 0xa4, 0x62, 0xff, 0xf4, 0xa5, 0x63, 0xff, 0xf5, 0xa4, 0x61, 0xff, 0xee, 0xa4, 0x60, 0xff, 0xbf, 0x7d, 0x4c, 0xff, 0xb6, 0x76, 0x49, 0xff, 0xb5, 0x78, 0x48, 0xff, 0xb7, 0x78, 0x4a, 0xff, 0xb6, 0x78, 0x48, 0xff, 0xb5, 0x77, 0x45, 0xff, 0xb1, 0x71, 0x43, 0xff, 0xa7, 0x68, 0x3f, 0xff, 0xa4, 0x66, 0x3a, 0xff, 0xa2, 0x63, 0x38, 0xff, 0xa1, 0x61, 0x35, 0xff, 0x9f, 0x5f, 0x34, 0xff, 0x9b, 0x5b, 0x33, 0xff, 0x99, 0x59, 0x31, 0xff, 0x99, 0x59, 0x31, 0xff, 0x9a, 0x59, 0x31, 0xff, 0x97, 0x56, 0x31, 0xff, 0x96, 0x55, 0x30, 0xff, 0x95, 0x55, 0x30, 0xff, 0x94, 0x54, 0x30, 0xff, 0x94, 0x54, 0x30, 0xff, 0x93, 0x53, 0x30, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x93, 0x52, 0x2f, 0xff, 0x92, 0x51, 0x2e, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8c, 0x4d, 0x2c, 0xff, 0x8c, 0x4d, 0x2c, 0xff, 0x8a, 0x4c, 0x2c, 0xff, 0x8a, 0x4d, 0x2c, 0xff, 0x89, 0x49, 0x2b, 0xff, 0x85, 0x48, 0x28, 0xff, 0x7b, 0x3d, 0x20, 0xff, 0x6f, 0x34, 0x19, 0xff, 0x6c, 0x31, 0x16, 0xff, 0x6c, 0x30, 0x16, 0xff, 0x68, 0x2e, 0x14, 0xff, 0x65, 0x2c, 0x0f, 0xff, 0x66, 0x2e, 0x12, 0xff, 0x68, 0x2e, 0x12, 0xff, 0x6d, 0x32, 0x16, 0xff, 0x82, 0x45, 0x29, 0xff, + 0x88, 0x4b, 0x2b, 0xff, 0x88, 0x4a, 0x2b, 0xff, 0x87, 0x49, 0x2a, 0xff, 0x89, 0x47, 0x2b, 0xff, 0x87, 0x4a, 0x2b, 0xff, 0x87, 0x49, 0x2a, 0xff, 0x89, 0x49, 0x2a, 0xff, 0x8b, 0x4a, 0x2b, 0xff, 0x8b, 0x4b, 0x2b, 0xff, 0x8b, 0x4b, 0x2b, 0xff, 0x8e, 0x4e, 0x2c, 0xff, 0x8e, 0x50, 0x2c, 0xff, 0x92, 0x51, 0x2e, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x94, 0x53, 0x30, 0xff, 0x96, 0x54, 0x31, 0xff, 0x99, 0x58, 0x32, 0xff, 0x9c, 0x5a, 0x33, 0xff, 0x9f, 0x5d, 0x35, 0xff, 0xa1, 0x62, 0x36, 0xff, 0xa7, 0x64, 0x39, 0xff, 0xa9, 0x68, 0x3b, 0xff, 0xad, 0x69, 0x3f, 0xff, 0xb2, 0x71, 0x41, 0xff, 0xba, 0x77, 0x47, 0xff, 0xc0, 0x7d, 0x4b, 0xff, 0xc6, 0x81, 0x50, 0xff, 0xca, 0x86, 0x51, 0xff, 0xd3, 0x88, 0x54, 0xff, 0xdb, 0x8e, 0x57, 0xff, 0xdc, 0x8e, 0x57, 0xff, 0xd1, 0x87, 0x54, 0xff, 0xd9, 0x8f, 0x55, 0xff, 0xe3, 0x94, 0x5a, 0xff, 0xeb, 0x96, 0x5e, 0xff, 0xee, 0x98, 0x5f, 0xff, 0xea, 0x99, 0x5c, 0xff, 0xe6, 0x9c, 0x60, 0xff, 0xe0, 0x99, 0x60, 0xff, 0xde, 0x9b, 0x5f, 0xff, 0xe6, 0x9f, 0x5f, 0xff, 0xed, 0xa2, 0x5e, 0xff, 0xf5, 0xa6, 0x60, 0xff, 0xf5, 0xae, 0x66, 0xff, 0xf4, 0xaf, 0x68, 0xff, 0xf4, 0xb5, 0x6f, 0xff, 0xf4, 0xbb, 0x74, 0xff, 0xf5, 0xc8, 0x7a, 0xff, 0xf4, 0xc7, 0x7c, 0xff, 0xf2, 0xc2, 0x7d, 0xff, 0xf5, 0xc0, 0x7c, 0xff, 0xf3, 0xbf, 0x7a, 0xff, 0xf5, 0xc2, 0x79, 0xff, 0xf6, 0xc3, 0x7a, 0xff, 0xf6, 0xc3, 0x7c, 0xff, 0xf5, 0xc7, 0x81, 0xff, 0xf5, 0xce, 0x83, 0xff, 0xf6, 0xd3, 0x84, 0xff, 0xf6, 0xd7, 0x80, 0xff, 0xf6, 0xdc, 0x7e, 0xff, 0xf5, 0xe0, 0x7f, 0xff, 0xf4, 0xe0, 0x80, 0xff, 0xf0, 0xe5, 0x86, 0xff, 0xea, 0xf1, 0x97, 0xff, 0xea, 0xf0, 0xa7, 0xff, 0xed, 0xef, 0xb5, 0xff, 0xf2, 0xef, 0xc5, 0xff, 0xf3, 0xee, 0xcc, 0xff, 0xf3, 0xee, 0xcb, 0xff, 0xf0, 0xef, 0xc0, 0xff, 0xec, 0xee, 0xb1, 0xff, 0xeb, 0xee, 0xa3, 0xff, 0xea, 0xe9, 0x8b, 0xff, 0xee, 0xdf, 0x69, 0xff, 0xf0, 0xd3, 0x65, 0xff, 0xef, 0xbe, 0x5f, 0xff, 0xf2, 0xb2, 0x55, 0xff, 0xef, 0xa3, 0x4d, 0xff, 0xea, 0x99, 0x45, 0xff, 0xe2, 0x94, 0x3e, 0xff, 0xd9, 0x90, 0x3e, 0xff, 0xd4, 0x90, 0x3e, 0xff, 0xcc, 0x8a, 0x37, 0xff, 0xc9, 0x87, 0x38, 0xff, 0xc4, 0x83, 0x34, 0xff, 0xaf, 0x6f, 0x31, 0xff, 0x9a, 0x5b, 0x30, 0xff, 0x9b, 0x5c, 0x31, 0xff, 0x9a, 0x5b, 0x33, 0xff, 0x98, 0x5b, 0x34, 0xff, 0x97, 0x5a, 0x34, 0xff, 0x97, 0x5a, 0x34, 0xff, 0x94, 0x59, 0x33, 0xff, 0x94, 0x57, 0x32, 0xff, 0x93, 0x54, 0x31, 0xff, 0x92, 0x53, 0x31, 0xff, 0x91, 0x53, 0x31, 0xff, 0x91, 0x54, 0x30, 0xff, 0x91, 0x54, 0x31, 0xff, 0x92, 0x55, 0x31, 0xff, 0x92, 0x55, 0x32, 0xff, 0x93, 0x56, 0x33, 0xff, 0x96, 0x5c, 0x36, 0xff, 0x9a, 0x64, 0x39, 0xff, 0x9a, 0x65, 0x3b, 0xff, 0x9c, 0x66, 0x3b, 0xff, 0x9e, 0x68, 0x3a, 0xff, 0xa0, 0x6a, 0x3b, 0xff, 0x9d, 0x67, 0x3a, 0xff, 0x91, 0x58, 0x30, 0xff, 0x8b, 0x50, 0x2b, 0xff, 0x8c, 0x53, 0x2e, 0xff, 0x8d, 0x54, 0x2f, 0xff, 0x8f, 0x54, 0x2f, 0xff, 0x91, 0x55, 0x2e, 0xff, 0x92, 0x58, 0x2e, 0xff, 0x94, 0x59, 0x2f, 0xff, 0x96, 0x5a, 0x2e, 0xff, 0x98, 0x5b, 0x2e, 0xff, 0x9a, 0x5b, 0x2f, 0xff, 0x9a, 0x5c, 0x31, 0xff, 0x9d, 0x60, 0x33, 0xff, 0x9f, 0x61, 0x34, 0xff, 0x9f, 0x61, 0x34, 0xff, 0xa1, 0x64, 0x34, 0xff, 0xa2, 0x64, 0x35, 0xff, 0xa1, 0x65, 0x37, 0xff, 0xa1, 0x65, 0x37, 0xff, 0xa2, 0x65, 0x37, 0xff, 0xa2, 0x66, 0x39, 0xff, 0xa5, 0x69, 0x3b, 0xff, 0xa9, 0x6d, 0x3c, 0xff, 0xaa, 0x6e, 0x3e, 0xff, 0xab, 0x70, 0x3e, 0xff, 0xae, 0x72, 0x3f, 0xff, 0xb2, 0x73, 0x41, 0xff, 0xb4, 0x77, 0x43, 0xff, 0xb7, 0x7c, 0x46, 0xff, 0xba, 0x7e, 0x47, 0xff, 0xbd, 0x82, 0x49, 0xff, 0xc3, 0x87, 0x4e, 0xff, 0xcd, 0x8d, 0x53, 0xff, 0xd6, 0x93, 0x59, 0xff, 0xdf, 0x98, 0x5d, 0xff, 0xed, 0xa2, 0x64, 0xff, 0xf3, 0xa9, 0x66, 0xff, 0xf3, 0xb1, 0x69, 0xff, 0xf2, 0xb7, 0x6d, 0xff, 0xf4, 0xc5, 0x72, 0xff, 0xf1, 0xdd, 0x7d, 0xff, 0xe8, 0xea, 0x88, 0xff, 0xe3, 0xed, 0x93, 0xff, 0xe9, 0xec, 0xa2, 0xff, 0xec, 0xed, 0xb1, 0xff, 0xf0, 0xed, 0xbd, 0xff, 0xf3, 0xee, 0xce, 0xff, 0xf4, 0xef, 0xdc, 0xff, 0xf4, 0xec, 0xdc, 0xff, 0xf4, 0xef, 0xde, 0xff, 0xf4, 0xef, 0xda, 0xff, 0xf4, 0xee, 0xd2, 0xff, 0xf0, 0xed, 0xc2, 0xff, 0xee, 0xed, 0xb5, 0xff, 0xec, 0xed, 0xab, 0xff, 0xe9, 0xec, 0xa6, 0xff, 0xe8, 0xeb, 0x9f, 0xff, 0xe8, 0xed, 0x9e, 0xff, 0xef, 0xec, 0x9d, 0xff, 0xf4, 0xe4, 0x9b, 0xff, 0xf3, 0xd8, 0x9b, 0xff, 0xf4, 0xd4, 0x9a, 0xff, 0xf4, 0xd0, 0x9a, 0xff, 0xf4, 0xce, 0x99, 0xff, 0xf5, 0xcc, 0x97, 0xff, 0xf4, 0xcc, 0x93, 0xff, 0xf5, 0xdc, 0x90, 0xff, 0xf4, 0xdc, 0x8d, 0xff, 0xf4, 0xd7, 0x85, 0xff, 0xf3, 0xcf, 0x81, 0xff, 0xf1, 0xc5, 0x7c, 0xff, 0xf2, 0xbb, 0x79, 0xff, 0xf1, 0xb5, 0x72, 0xff, 0xf3, 0xae, 0x6c, 0xff, 0xf4, 0xa7, 0x6a, 0xff, 0xf4, 0xa6, 0x66, 0xff, 0xf2, 0xa3, 0x65, 0xff, 0xf1, 0xa6, 0x64, 0xff, 0xf3, 0xa5, 0x63, 0xff, 0xf7, 0xa6, 0x64, 0xff, 0xde, 0x99, 0x5c, 0xff, 0xbb, 0x7b, 0x4a, 0xff, 0xb7, 0x7a, 0x4a, 0xff, 0xb8, 0x78, 0x4b, 0xff, 0xb7, 0x78, 0x49, 0xff, 0xb5, 0x78, 0x47, 0xff, 0xb4, 0x77, 0x45, 0xff, 0xb2, 0x72, 0x43, 0xff, 0xaf, 0x6f, 0x42, 0xff, 0xa7, 0x69, 0x3c, 0xff, 0xa4, 0x65, 0x39, 0xff, 0xa2, 0x62, 0x36, 0xff, 0xa0, 0x60, 0x35, 0xff, 0xa0, 0x5f, 0x34, 0xff, 0x9d, 0x5c, 0x33, 0xff, 0x9b, 0x5a, 0x34, 0xff, 0x9b, 0x5b, 0x33, 0xff, 0x99, 0x58, 0x33, 0xff, 0x98, 0x57, 0x32, 0xff, 0x98, 0x59, 0x32, 0xff, 0x97, 0x58, 0x30, 0xff, 0x95, 0x55, 0x30, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x92, 0x51, 0x2e, 0xff, 0x91, 0x51, 0x2e, 0xff, 0x91, 0x51, 0x2e, 0xff, 0x90, 0x50, 0x2e, 0xff, 0x90, 0x51, 0x2e, 0xff, 0x8f, 0x51, 0x2f, 0xff, 0x8e, 0x50, 0x2e, 0xff, 0x83, 0x46, 0x24, 0xff, 0x80, 0x43, 0x22, 0xff, 0x75, 0x38, 0x16, 0xff, 0x70, 0x34, 0x18, 0xff, 0x6d, 0x32, 0x15, 0xff, 0x6c, 0x31, 0x12, 0xff, 0x68, 0x2d, 0x13, 0xff, 0x68, 0x2d, 0x11, 0xff, 0x76, 0x3b, 0x1e, 0xff, 0x7e, 0x42, 0x24, 0xff, 0x85, 0x45, 0x2a, 0xff, 0x8d, 0x4d, 0x2f, 0xff, 0x8a, 0x4a, 0x2b, 0xff, + 0x85, 0x46, 0x29, 0xff, 0x85, 0x45, 0x2a, 0xff, 0x84, 0x45, 0x29, 0xff, 0x83, 0x45, 0x29, 0xff, 0x84, 0x45, 0x29, 0xff, 0x84, 0x45, 0x29, 0xff, 0x86, 0x45, 0x28, 0xff, 0x87, 0x44, 0x2a, 0xff, 0x87, 0x47, 0x2a, 0xff, 0x88, 0x47, 0x2a, 0xff, 0x8b, 0x49, 0x2b, 0xff, 0x8c, 0x4b, 0x2a, 0xff, 0x8d, 0x4c, 0x2b, 0xff, 0x8f, 0x4e, 0x2d, 0xff, 0x91, 0x50, 0x2d, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x96, 0x53, 0x30, 0xff, 0x9a, 0x58, 0x31, 0xff, 0x9b, 0x5a, 0x32, 0xff, 0x9d, 0x5c, 0x34, 0xff, 0xa1, 0x60, 0x35, 0xff, 0xa5, 0x64, 0x37, 0xff, 0xaa, 0x67, 0x3b, 0xff, 0xb3, 0x70, 0x42, 0xff, 0xb9, 0x78, 0x47, 0xff, 0xc4, 0x81, 0x4d, 0xff, 0xc6, 0x83, 0x50, 0xff, 0xc6, 0x82, 0x50, 0xff, 0xcb, 0x88, 0x51, 0xff, 0xd5, 0x8b, 0x56, 0xff, 0xd5, 0x8d, 0x55, 0xff, 0xcd, 0x87, 0x53, 0xff, 0xd4, 0x88, 0x53, 0xff, 0xdd, 0x8e, 0x56, 0xff, 0xe2, 0x92, 0x58, 0xff, 0xe6, 0x96, 0x59, 0xff, 0xee, 0x98, 0x5e, 0xff, 0xf4, 0x9f, 0x65, 0xff, 0xf4, 0xa4, 0x67, 0xff, 0xf0, 0xa5, 0x66, 0xff, 0xe9, 0xa3, 0x64, 0xff, 0xe9, 0xa1, 0x5b, 0xff, 0xef, 0xa5, 0x5c, 0xff, 0xf5, 0xaa, 0x61, 0xff, 0xf6, 0xaf, 0x66, 0xff, 0xf4, 0xb6, 0x6d, 0xff, 0xf5, 0xb9, 0x71, 0xff, 0xf2, 0xc5, 0x77, 0xff, 0xf6, 0xc9, 0x7b, 0xff, 0xf4, 0xc8, 0x7b, 0xff, 0xf1, 0xc5, 0x7a, 0xff, 0xf5, 0xce, 0x82, 0xff, 0xf6, 0xca, 0x7e, 0xff, 0xf3, 0xc5, 0x7d, 0xff, 0xf6, 0xc7, 0x7c, 0xff, 0xf6, 0xc9, 0x7c, 0xff, 0xf6, 0xce, 0x7b, 0xff, 0xf4, 0xce, 0x7c, 0xff, 0xf4, 0xcd, 0x7b, 0xff, 0xf3, 0xc9, 0x78, 0xff, 0xf5, 0xcc, 0x79, 0xff, 0xf6, 0xd6, 0x7c, 0xff, 0xf5, 0xdc, 0x7d, 0xff, 0xf4, 0xd3, 0x7e, 0xff, 0xf5, 0xde, 0x89, 0xff, 0xf1, 0xec, 0x96, 0xff, 0xe7, 0xef, 0x9d, 0xff, 0xe9, 0xef, 0xa3, 0xff, 0xe9, 0xef, 0xa2, 0xff, 0xe8, 0xec, 0xa0, 0xff, 0xe7, 0xec, 0x9d, 0xff, 0xe6, 0xef, 0x97, 0xff, 0xe9, 0xe8, 0x89, 0xff, 0xf1, 0xd7, 0x67, 0xff, 0xf3, 0xd0, 0x66, 0xff, 0xf2, 0xba, 0x5d, 0xff, 0xef, 0xb0, 0x56, 0xff, 0xf0, 0xa6, 0x51, 0xff, 0xea, 0x99, 0x48, 0xff, 0xe9, 0x9c, 0x47, 0xff, 0xde, 0x95, 0x40, 0xff, 0xdb, 0x92, 0x3f, 0xff, 0xd4, 0x8e, 0x39, 0xff, 0xcf, 0x8c, 0x37, 0xff, 0xc0, 0x7f, 0x35, 0xff, 0xa5, 0x66, 0x32, 0xff, 0x9f, 0x5f, 0x33, 0xff, 0x9f, 0x60, 0x35, 0xff, 0x9e, 0x5f, 0x34, 0xff, 0x9d, 0x5f, 0x37, 0xff, 0x9b, 0x5d, 0x38, 0xff, 0x9a, 0x5d, 0x36, 0xff, 0x99, 0x5b, 0x35, 0xff, 0x96, 0x59, 0x34, 0xff, 0x96, 0x59, 0x34, 0xff, 0x95, 0x57, 0x33, 0xff, 0x93, 0x56, 0x33, 0xff, 0x92, 0x55, 0x32, 0xff, 0x92, 0x54, 0x32, 0xff, 0x93, 0x56, 0x32, 0xff, 0x94, 0x58, 0x33, 0xff, 0x95, 0x5b, 0x36, 0xff, 0x97, 0x5f, 0x39, 0xff, 0x98, 0x60, 0x38, 0xff, 0x9a, 0x62, 0x36, 0xff, 0x9a, 0x63, 0x35, 0xff, 0x9c, 0x66, 0x37, 0xff, 0x9c, 0x66, 0x3a, 0xff, 0x91, 0x57, 0x33, 0xff, 0x88, 0x4c, 0x2b, 0xff, 0x8b, 0x50, 0x2c, 0xff, 0x8b, 0x51, 0x2c, 0xff, 0x8c, 0x53, 0x2e, 0xff, 0x8f, 0x52, 0x2e, 0xff, 0x90, 0x53, 0x2d, 0xff, 0x92, 0x55, 0x2e, 0xff, 0x92, 0x57, 0x2d, 0xff, 0x93, 0x57, 0x2c, 0xff, 0x95, 0x59, 0x2d, 0xff, 0x98, 0x5a, 0x2e, 0xff, 0x9a, 0x5a, 0x30, 0xff, 0x9a, 0x5c, 0x2f, 0xff, 0x9b, 0x5e, 0x30, 0xff, 0x9d, 0x61, 0x33, 0xff, 0x9e, 0x60, 0x33, 0xff, 0x9b, 0x5e, 0x31, 0xff, 0x9a, 0x5c, 0x31, 0xff, 0x9d, 0x5e, 0x33, 0xff, 0xa0, 0x63, 0x37, 0xff, 0xa1, 0x65, 0x39, 0xff, 0xa3, 0x68, 0x3a, 0xff, 0xa6, 0x6a, 0x3b, 0xff, 0xa9, 0x6e, 0x3f, 0xff, 0xaa, 0x70, 0x3f, 0xff, 0xac, 0x72, 0x40, 0xff, 0xaf, 0x75, 0x42, 0xff, 0xb3, 0x7a, 0x44, 0xff, 0xb6, 0x7c, 0x46, 0xff, 0xb7, 0x7c, 0x46, 0xff, 0xbc, 0x80, 0x4a, 0xff, 0xbe, 0x82, 0x4b, 0xff, 0xc3, 0x86, 0x4d, 0xff, 0xcd, 0x8f, 0x52, 0xff, 0xda, 0x94, 0x5a, 0xff, 0xe6, 0x9c, 0x5e, 0xff, 0xf0, 0xa0, 0x60, 0xff, 0xf4, 0xaa, 0x65, 0xff, 0xf3, 0xb2, 0x68, 0xff, 0xf2, 0xba, 0x6d, 0xff, 0xf4, 0xcd, 0x75, 0xff, 0xf1, 0xe4, 0x7f, 0xff, 0xea, 0xef, 0x8c, 0xff, 0xe8, 0xed, 0x9b, 0xff, 0xeb, 0xed, 0xa3, 0xff, 0xed, 0xf0, 0xb1, 0xff, 0xf2, 0xef, 0xbd, 0xff, 0xf3, 0xed, 0xcb, 0xff, 0xf4, 0xef, 0xd6, 0xff, 0xf4, 0xef, 0xd7, 0xff, 0xf3, 0xed, 0xd4, 0xff, 0xf2, 0xef, 0xcc, 0xff, 0xf1, 0xef, 0xc0, 0xff, 0xef, 0xee, 0xb8, 0xff, 0xed, 0xee, 0xb2, 0xff, 0xeb, 0xee, 0xa7, 0xff, 0xe9, 0xef, 0x9d, 0xff, 0xe6, 0xed, 0x9a, 0xff, 0xec, 0xee, 0x9a, 0xff, 0xf4, 0xe7, 0x9a, 0xff, 0xf6, 0xdb, 0xa0, 0xff, 0xf5, 0xd1, 0xa0, 0xff, 0xf6, 0xcd, 0x9f, 0xff, 0xf6, 0xcb, 0x9f, 0xff, 0xf5, 0xca, 0x9d, 0xff, 0xf3, 0xd1, 0x9b, 0xff, 0xf5, 0xdc, 0x9c, 0xff, 0xf4, 0xdd, 0x93, 0xff, 0xf4, 0xdb, 0x8b, 0xff, 0xf3, 0xd6, 0x86, 0xff, 0xf2, 0xca, 0x7e, 0xff, 0xf5, 0xc7, 0x7c, 0xff, 0xf3, 0xbb, 0x7b, 0xff, 0xf3, 0xc0, 0x74, 0xff, 0xed, 0xb6, 0x69, 0xff, 0xf2, 0xa8, 0x66, 0xff, 0xf4, 0xa8, 0x66, 0xff, 0xf3, 0xa5, 0x66, 0xff, 0xf2, 0xa6, 0x63, 0xff, 0xf8, 0xa8, 0x66, 0xff, 0xd1, 0x8d, 0x56, 0xff, 0xbd, 0x7b, 0x4d, 0xff, 0xba, 0x7c, 0x4c, 0xff, 0xb8, 0x7a, 0x4b, 0xff, 0xb8, 0x76, 0x4b, 0xff, 0xb6, 0x76, 0x49, 0xff, 0xb6, 0x77, 0x48, 0xff, 0xb2, 0x72, 0x45, 0xff, 0xaf, 0x6f, 0x42, 0xff, 0xae, 0x6e, 0x41, 0xff, 0xa8, 0x68, 0x3e, 0xff, 0xa3, 0x62, 0x39, 0xff, 0xa3, 0x62, 0x39, 0xff, 0xa1, 0x62, 0x36, 0xff, 0x9e, 0x5d, 0x35, 0xff, 0x9c, 0x5d, 0x35, 0xff, 0x9b, 0x5a, 0x34, 0xff, 0x9a, 0x5a, 0x33, 0xff, 0x9a, 0x59, 0x33, 0xff, 0x99, 0x59, 0x33, 0xff, 0x9a, 0x59, 0x32, 0xff, 0x97, 0x54, 0x32, 0xff, 0x95, 0x55, 0x31, 0xff, 0x96, 0x56, 0x31, 0xff, 0x96, 0x55, 0x2f, 0xff, 0x95, 0x54, 0x30, 0xff, 0x95, 0x53, 0x30, 0xff, 0x95, 0x54, 0x31, 0xff, 0x95, 0x56, 0x33, 0xff, 0x8c, 0x4c, 0x2b, 0xff, 0x84, 0x46, 0x25, 0xff, 0x7f, 0x42, 0x1d, 0xff, 0x7e, 0x41, 0x20, 0xff, 0x76, 0x3a, 0x1b, 0xff, 0x71, 0x34, 0x1a, 0xff, 0x6d, 0x32, 0x16, 0xff, 0x68, 0x2e, 0x11, 0xff, 0x6c, 0x31, 0x14, 0xff, 0x7e, 0x43, 0x27, 0xff, 0x85, 0x46, 0x2a, 0xff, 0x88, 0x49, 0x2c, 0xff, 0x87, 0x4a, 0x2a, 0xff, 0x87, 0x46, 0x2a, 0xff, 0x87, 0x47, 0x2a, 0xff, 0x86, 0x44, 0x2a, 0xff, + 0x81, 0x41, 0x28, 0xff, 0x82, 0x44, 0x27, 0xff, 0x81, 0x41, 0x27, 0xff, 0x83, 0x44, 0x28, 0xff, 0x81, 0x43, 0x27, 0xff, 0x81, 0x43, 0x27, 0xff, 0x82, 0x44, 0x27, 0xff, 0x82, 0x44, 0x28, 0xff, 0x83, 0x44, 0x27, 0xff, 0x85, 0x45, 0x29, 0xff, 0x87, 0x47, 0x29, 0xff, 0x8a, 0x48, 0x2a, 0xff, 0x8b, 0x4a, 0x2a, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8f, 0x4e, 0x2b, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x92, 0x51, 0x2d, 0xff, 0x95, 0x52, 0x2f, 0xff, 0x98, 0x57, 0x30, 0xff, 0x9b, 0x59, 0x31, 0xff, 0x9d, 0x5d, 0x33, 0xff, 0xa4, 0x63, 0x35, 0xff, 0xaa, 0x69, 0x3b, 0xff, 0xb2, 0x70, 0x42, 0xff, 0xba, 0x78, 0x46, 0xff, 0xc0, 0x7f, 0x49, 0xff, 0xc7, 0x82, 0x4e, 0xff, 0xcd, 0x87, 0x50, 0xff, 0xc7, 0x84, 0x51, 0xff, 0xcc, 0x88, 0x51, 0xff, 0xcf, 0x89, 0x54, 0xff, 0xcc, 0x87, 0x52, 0xff, 0xd2, 0x87, 0x55, 0xff, 0xdb, 0x8d, 0x56, 0xff, 0xe2, 0x92, 0x58, 0xff, 0xe7, 0x92, 0x58, 0xff, 0xec, 0x94, 0x5d, 0xff, 0xee, 0x99, 0x60, 0xff, 0xf4, 0xa2, 0x65, 0xff, 0xf4, 0xa6, 0x6a, 0xff, 0xf6, 0xaa, 0x6c, 0xff, 0xf4, 0xaa, 0x6a, 0xff, 0xee, 0xa6, 0x61, 0xff, 0xf2, 0xa7, 0x5f, 0xff, 0xf4, 0xae, 0x63, 0xff, 0xf4, 0xb3, 0x68, 0xff, 0xf5, 0xbe, 0x71, 0xff, 0xf2, 0xc4, 0x77, 0xff, 0xf5, 0xc6, 0x79, 0xff, 0xf5, 0xcc, 0x7b, 0xff, 0xf2, 0xc9, 0x7d, 0xff, 0xf5, 0xd1, 0x81, 0xff, 0xf6, 0xe2, 0x89, 0xff, 0xf4, 0xdb, 0x84, 0xff, 0xf6, 0xd3, 0x7e, 0xff, 0xf5, 0xc9, 0x7b, 0xff, 0xf4, 0xc5, 0x76, 0xff, 0xf2, 0xc2, 0x74, 0xff, 0xf5, 0xc3, 0x70, 0xff, 0xf5, 0xc3, 0x70, 0xff, 0xf6, 0xc4, 0x72, 0xff, 0xf4, 0xc4, 0x75, 0xff, 0xf4, 0xca, 0x78, 0xff, 0xf4, 0xc6, 0x78, 0xff, 0xf2, 0xba, 0x76, 0xff, 0xf3, 0xd1, 0x7a, 0xff, 0xf3, 0xde, 0x7b, 0xff, 0xf1, 0xe8, 0x80, 0xff, 0xef, 0xec, 0x85, 0xff, 0xe6, 0xea, 0x87, 0xff, 0xe9, 0xed, 0x86, 0xff, 0xed, 0xec, 0x86, 0xff, 0xf4, 0xe5, 0x7b, 0xff, 0xef, 0xd3, 0x67, 0xff, 0xee, 0xbf, 0x5d, 0xff, 0xf2, 0xbc, 0x5c, 0xff, 0xf0, 0xb2, 0x57, 0xff, 0xf4, 0xa9, 0x4f, 0xff, 0xf4, 0xa4, 0x4b, 0xff, 0xed, 0x98, 0x44, 0xff, 0xe5, 0x97, 0x41, 0xff, 0xdf, 0x94, 0x3f, 0xff, 0xdc, 0x92, 0x3c, 0xff, 0xd3, 0x8a, 0x38, 0xff, 0xb9, 0x76, 0x38, 0xff, 0xa4, 0x64, 0x34, 0xff, 0xa4, 0x65, 0x37, 0xff, 0xa1, 0x63, 0x39, 0xff, 0xa1, 0x64, 0x3a, 0xff, 0x9f, 0x63, 0x3a, 0xff, 0x9e, 0x60, 0x39, 0xff, 0x9d, 0x60, 0x38, 0xff, 0x9c, 0x5e, 0x37, 0xff, 0x9b, 0x5c, 0x36, 0xff, 0x98, 0x5b, 0x35, 0xff, 0x97, 0x5a, 0x35, 0xff, 0x97, 0x5a, 0x34, 0xff, 0x96, 0x59, 0x34, 0xff, 0x96, 0x58, 0x34, 0xff, 0x96, 0x57, 0x34, 0xff, 0x95, 0x5a, 0x36, 0xff, 0x95, 0x5e, 0x39, 0xff, 0x96, 0x60, 0x36, 0xff, 0x96, 0x60, 0x34, 0xff, 0x98, 0x5f, 0x33, 0xff, 0x9a, 0x60, 0x33, 0xff, 0x9a, 0x63, 0x36, 0xff, 0x8d, 0x53, 0x30, 0xff, 0x82, 0x46, 0x27, 0xff, 0x87, 0x4d, 0x2a, 0xff, 0x87, 0x4d, 0x2a, 0xff, 0x88, 0x4e, 0x29, 0xff, 0x89, 0x4d, 0x29, 0xff, 0x8a, 0x4e, 0x2a, 0xff, 0x8c, 0x51, 0x2b, 0xff, 0x8e, 0x52, 0x2b, 0xff, 0x91, 0x53, 0x2a, 0xff, 0x92, 0x55, 0x2b, 0xff, 0x92, 0x57, 0x2b, 0xff, 0x93, 0x58, 0x2c, 0xff, 0x96, 0x59, 0x2e, 0xff, 0x98, 0x5c, 0x30, 0xff, 0x99, 0x5d, 0x31, 0xff, 0x97, 0x5b, 0x2f, 0xff, 0x95, 0x58, 0x2e, 0xff, 0x97, 0x5a, 0x2f, 0xff, 0x9a, 0x5d, 0x31, 0xff, 0x9b, 0x5e, 0x33, 0xff, 0x9d, 0x5f, 0x33, 0xff, 0xa0, 0x63, 0x35, 0xff, 0xa4, 0x68, 0x38, 0xff, 0xa7, 0x6c, 0x3c, 0xff, 0xa7, 0x6c, 0x3c, 0xff, 0xa8, 0x6e, 0x3e, 0xff, 0xab, 0x72, 0x40, 0xff, 0xaf, 0x74, 0x43, 0xff, 0xb0, 0x75, 0x43, 0xff, 0xb3, 0x79, 0x44, 0xff, 0xb7, 0x7d, 0x46, 0xff, 0xb8, 0x7e, 0x45, 0xff, 0xbc, 0x7f, 0x48, 0xff, 0xc0, 0x82, 0x4b, 0xff, 0xc2, 0x85, 0x4d, 0xff, 0xcc, 0x8b, 0x50, 0xff, 0xda, 0x94, 0x57, 0xff, 0xe8, 0x9b, 0x5b, 0xff, 0xf0, 0x9f, 0x5b, 0xff, 0xf2, 0xa5, 0x5f, 0xff, 0xf4, 0xb0, 0x64, 0xff, 0xf2, 0xb8, 0x6c, 0xff, 0xf5, 0xd1, 0x75, 0xff, 0xf1, 0xe7, 0x80, 0xff, 0xe8, 0xed, 0x8d, 0xff, 0xe8, 0xed, 0x9c, 0xff, 0xeb, 0xef, 0xa4, 0xff, 0xed, 0xef, 0xaf, 0xff, 0xef, 0xee, 0xb8, 0xff, 0xf2, 0xee, 0xc4, 0xff, 0xf4, 0xee, 0xc9, 0xff, 0xf4, 0xee, 0xca, 0xff, 0xf1, 0xec, 0xc3, 0xff, 0xf1, 0xed, 0xbd, 0xff, 0xef, 0xf0, 0xb5, 0xff, 0xee, 0xef, 0xaf, 0xff, 0xed, 0xee, 0xab, 0xff, 0xe9, 0xec, 0xa4, 0xff, 0xe8, 0xee, 0x99, 0xff, 0xe5, 0xee, 0x96, 0xff, 0xf1, 0xeb, 0x99, 0xff, 0xf4, 0xde, 0x9b, 0xff, 0xf5, 0xd0, 0x9f, 0xff, 0xf5, 0xcb, 0x9f, 0xff, 0xf5, 0xc9, 0x9e, 0xff, 0xf4, 0xd1, 0xa2, 0xff, 0xf6, 0xdd, 0xa6, 0xff, 0xf4, 0xde, 0x9f, 0xff, 0xf5, 0xdd, 0x9d, 0xff, 0xf5, 0xd8, 0x96, 0xff, 0xf5, 0xd6, 0x8d, 0xff, 0xf4, 0xd3, 0x85, 0xff, 0xf3, 0xcb, 0x80, 0xff, 0xf3, 0xc1, 0x7a, 0xff, 0xf1, 0xba, 0x73, 0xff, 0xf0, 0xc0, 0x75, 0xff, 0xf1, 0xc2, 0x72, 0xff, 0xee, 0xbc, 0x6d, 0xff, 0xf0, 0xb0, 0x6a, 0xff, 0xf1, 0xaa, 0x66, 0xff, 0xf9, 0xab, 0x68, 0xff, 0xcc, 0x88, 0x54, 0xff, 0xc2, 0x80, 0x50, 0xff, 0xbe, 0x7d, 0x4e, 0xff, 0xba, 0x7c, 0x4e, 0xff, 0xb8, 0x78, 0x4d, 0xff, 0xb8, 0x79, 0x49, 0xff, 0xb6, 0x77, 0x49, 0xff, 0xb5, 0x75, 0x47, 0xff, 0xaf, 0x70, 0x43, 0xff, 0xad, 0x6e, 0x42, 0xff, 0xab, 0x6b, 0x40, 0xff, 0xa7, 0x66, 0x3d, 0xff, 0xa3, 0x66, 0x3a, 0xff, 0xa1, 0x64, 0x39, 0xff, 0xa1, 0x62, 0x38, 0xff, 0xa0, 0x60, 0x36, 0xff, 0x9c, 0x5d, 0x35, 0xff, 0x9c, 0x5d, 0x35, 0xff, 0x9b, 0x5c, 0x34, 0xff, 0x9b, 0x5c, 0x34, 0xff, 0x9a, 0x5a, 0x34, 0xff, 0x9a, 0x59, 0x34, 0xff, 0x9a, 0x59, 0x33, 0xff, 0x9a, 0x5a, 0x34, 0xff, 0x99, 0x57, 0x33, 0xff, 0x98, 0x56, 0x32, 0xff, 0x93, 0x56, 0x2e, 0xff, 0x8e, 0x4d, 0x2c, 0xff, 0x81, 0x42, 0x1d, 0xff, 0x81, 0x43, 0x1b, 0xff, 0x81, 0x42, 0x1f, 0xff, 0x7f, 0x43, 0x20, 0xff, 0x79, 0x3c, 0x1f, 0xff, 0x71, 0x35, 0x1a, 0xff, 0x6d, 0x32, 0x17, 0xff, 0x6f, 0x34, 0x18, 0xff, 0x7d, 0x3f, 0x24, 0xff, 0x89, 0x4b, 0x2e, 0xff, 0x87, 0x44, 0x2b, 0xff, 0x86, 0x44, 0x2a, 0xff, 0x84, 0x45, 0x2a, 0xff, 0x83, 0x44, 0x29, 0xff, 0x81, 0x42, 0x29, 0xff, 0x81, 0x44, 0x29, 0xff, 0x82, 0x44, 0x28, 0xff, + 0x7f, 0x40, 0x26, 0xff, 0x7e, 0x3f, 0x26, 0xff, 0x7d, 0x40, 0x26, 0xff, 0x7e, 0x3e, 0x26, 0xff, 0x7e, 0x3f, 0x26, 0xff, 0x7f, 0x40, 0x26, 0xff, 0x80, 0x40, 0x26, 0xff, 0x81, 0x41, 0x27, 0xff, 0x81, 0x41, 0x27, 0xff, 0x82, 0x42, 0x27, 0xff, 0x85, 0x44, 0x27, 0xff, 0x87, 0x46, 0x29, 0xff, 0x89, 0x47, 0x29, 0xff, 0x8b, 0x49, 0x29, 0xff, 0x8d, 0x4b, 0x2a, 0xff, 0x8e, 0x4d, 0x2a, 0xff, 0x91, 0x4f, 0x2b, 0xff, 0x94, 0x52, 0x2d, 0xff, 0x96, 0x54, 0x2f, 0xff, 0x99, 0x57, 0x30, 0xff, 0x9c, 0x5a, 0x31, 0xff, 0xa6, 0x67, 0x3a, 0xff, 0xad, 0x6f, 0x41, 0xff, 0xb6, 0x77, 0x47, 0xff, 0xb8, 0x78, 0x47, 0xff, 0xbb, 0x7b, 0x46, 0xff, 0xbf, 0x7e, 0x49, 0xff, 0xc5, 0x82, 0x4b, 0xff, 0xcf, 0x88, 0x50, 0xff, 0xc9, 0x86, 0x50, 0xff, 0xcc, 0x86, 0x50, 0xff, 0xc9, 0x85, 0x50, 0xff, 0xd0, 0x89, 0x52, 0xff, 0xd8, 0x8c, 0x56, 0xff, 0xdf, 0x92, 0x58, 0xff, 0xe6, 0x96, 0x59, 0xff, 0xee, 0x97, 0x5c, 0xff, 0xf0, 0x9a, 0x5e, 0xff, 0xf4, 0x9e, 0x61, 0xff, 0xf6, 0xa4, 0x67, 0xff, 0xf5, 0xa7, 0x69, 0xff, 0xf5, 0xa9, 0x6d, 0xff, 0xf6, 0xab, 0x6e, 0xff, 0xf4, 0xad, 0x6d, 0xff, 0xf3, 0xad, 0x66, 0xff, 0xf5, 0xaf, 0x66, 0xff, 0xf4, 0xb7, 0x6a, 0xff, 0xf6, 0xc2, 0x75, 0xff, 0xf6, 0xc9, 0x7b, 0xff, 0xf6, 0xca, 0x7b, 0xff, 0xf4, 0xcc, 0x7c, 0xff, 0xf4, 0xc3, 0x79, 0xff, 0xf2, 0xd1, 0x83, 0xff, 0xf3, 0xee, 0x91, 0xff, 0xf4, 0xe5, 0x8a, 0xff, 0xf4, 0xcf, 0x7d, 0xff, 0xf4, 0xc3, 0x75, 0xff, 0xf6, 0xbe, 0x70, 0xff, 0xf6, 0xbe, 0x70, 0xff, 0xf5, 0xbe, 0x6f, 0xff, 0xf6, 0xbd, 0x6e, 0xff, 0xf5, 0xbc, 0x6e, 0xff, 0xf5, 0xbe, 0x71, 0xff, 0xf5, 0xbb, 0x73, 0xff, 0xf4, 0xb7, 0x6f, 0xff, 0xf1, 0xb5, 0x66, 0xff, 0xf1, 0xb6, 0x69, 0xff, 0xf4, 0xbf, 0x6d, 0xff, 0xf5, 0xcb, 0x72, 0xff, 0xf6, 0xca, 0x73, 0xff, 0xf5, 0xd0, 0x74, 0xff, 0xf4, 0xce, 0x75, 0xff, 0xf1, 0xca, 0x72, 0xff, 0xf3, 0xc4, 0x63, 0xff, 0xf0, 0xb5, 0x57, 0xff, 0xee, 0xaf, 0x54, 0xff, 0xf3, 0xb0, 0x53, 0xff, 0xf4, 0xa2, 0x4e, 0xff, 0xf1, 0x9f, 0x49, 0xff, 0xed, 0x9c, 0x47, 0xff, 0xe8, 0x9a, 0x41, 0xff, 0xe5, 0x97, 0x41, 0xff, 0xe9, 0x95, 0x41, 0xff, 0xd5, 0x89, 0x3e, 0xff, 0xac, 0x6e, 0x38, 0xff, 0xa9, 0x69, 0x3a, 0xff, 0xa9, 0x69, 0x3c, 0xff, 0xa7, 0x69, 0x3f, 0xff, 0xa5, 0x68, 0x3e, 0xff, 0xa3, 0x66, 0x3d, 0xff, 0xa2, 0x66, 0x3e, 0xff, 0xa1, 0x65, 0x3c, 0xff, 0xa0, 0x63, 0x3a, 0xff, 0x9f, 0x62, 0x3a, 0xff, 0x9d, 0x61, 0x39, 0xff, 0x9b, 0x5f, 0x39, 0xff, 0x99, 0x5d, 0x38, 0xff, 0x9a, 0x5d, 0x38, 0xff, 0x9a, 0x5c, 0x37, 0xff, 0x98, 0x5e, 0x38, 0xff, 0x97, 0x61, 0x39, 0xff, 0x97, 0x61, 0x37, 0xff, 0x95, 0x5d, 0x32, 0xff, 0x95, 0x5c, 0x32, 0xff, 0x95, 0x5c, 0x31, 0xff, 0x97, 0x60, 0x34, 0xff, 0x8e, 0x56, 0x31, 0xff, 0x84, 0x48, 0x29, 0xff, 0x85, 0x49, 0x2a, 0xff, 0x86, 0x4a, 0x29, 0xff, 0x87, 0x4c, 0x2a, 0xff, 0x88, 0x4c, 0x2a, 0xff, 0x88, 0x4c, 0x29, 0xff, 0x89, 0x4d, 0x29, 0xff, 0x8b, 0x50, 0x29, 0xff, 0x8c, 0x51, 0x29, 0xff, 0x8e, 0x52, 0x2b, 0xff, 0x90, 0x53, 0x2b, 0xff, 0x91, 0x54, 0x2a, 0xff, 0x93, 0x57, 0x2b, 0xff, 0x94, 0x58, 0x2e, 0xff, 0x94, 0x58, 0x2e, 0xff, 0x92, 0x54, 0x2c, 0xff, 0x91, 0x53, 0x2c, 0xff, 0x93, 0x57, 0x2f, 0xff, 0x96, 0x59, 0x30, 0xff, 0x99, 0x5b, 0x30, 0xff, 0x9a, 0x5e, 0x32, 0xff, 0x9c, 0x60, 0x32, 0xff, 0x9d, 0x61, 0x33, 0xff, 0x9f, 0x62, 0x34, 0xff, 0xa2, 0x66, 0x37, 0xff, 0xa5, 0x6b, 0x3c, 0xff, 0xa8, 0x6e, 0x3f, 0xff, 0xa8, 0x6f, 0x3f, 0xff, 0xab, 0x72, 0x42, 0xff, 0xae, 0x75, 0x44, 0xff, 0xb0, 0x76, 0x45, 0xff, 0xb3, 0x7a, 0x47, 0xff, 0xb6, 0x7b, 0x47, 0xff, 0xb9, 0x7d, 0x48, 0xff, 0xbd, 0x80, 0x48, 0xff, 0xc1, 0x83, 0x4b, 0xff, 0xc5, 0x87, 0x4e, 0xff, 0xcb, 0x8d, 0x51, 0xff, 0xdb, 0x94, 0x54, 0xff, 0xea, 0x9b, 0x59, 0xff, 0xf1, 0x9f, 0x5a, 0xff, 0xf4, 0xa4, 0x5c, 0xff, 0xf4, 0xae, 0x61, 0xff, 0xf5, 0xbc, 0x69, 0xff, 0xf5, 0xcb, 0x73, 0xff, 0xf3, 0xe3, 0x82, 0xff, 0xea, 0xeb, 0x8c, 0xff, 0xe7, 0xee, 0x97, 0xff, 0xe9, 0xee, 0xa2, 0xff, 0xeb, 0xee, 0xab, 0xff, 0xed, 0xee, 0xb1, 0xff, 0xef, 0xee, 0xbb, 0xff, 0xf0, 0xef, 0xbc, 0xff, 0xef, 0xee, 0xbb, 0xff, 0xee, 0xee, 0xb7, 0xff, 0xec, 0xed, 0xb0, 0xff, 0xec, 0xed, 0xac, 0xff, 0xeb, 0xee, 0xa7, 0xff, 0xea, 0xee, 0xa3, 0xff, 0xe8, 0xee, 0x9e, 0xff, 0xe7, 0xee, 0x9a, 0xff, 0xec, 0xed, 0x96, 0xff, 0xf4, 0xe1, 0x97, 0xff, 0xf5, 0xd2, 0x99, 0xff, 0xf4, 0xcc, 0x9b, 0xff, 0xf5, 0xd4, 0xa1, 0xff, 0xf6, 0xdf, 0xa7, 0xff, 0xf6, 0xdf, 0xa6, 0xff, 0xf6, 0xdd, 0xa7, 0xff, 0xf5, 0xdc, 0xa4, 0xff, 0xf5, 0xd9, 0x9c, 0xff, 0xf5, 0xd6, 0x94, 0xff, 0xf5, 0xd4, 0x8a, 0xff, 0xf4, 0xd1, 0x82, 0xff, 0xf4, 0xcb, 0x7f, 0xff, 0xf3, 0xbf, 0x79, 0xff, 0xf1, 0xd3, 0x7e, 0xff, 0xf4, 0xd1, 0x78, 0xff, 0xf2, 0xc2, 0x70, 0xff, 0xf0, 0xbb, 0x68, 0xff, 0xf2, 0xb8, 0x67, 0xff, 0xe6, 0xae, 0x63, 0xff, 0xaf, 0x75, 0x45, 0xff, 0xb5, 0x76, 0x49, 0xff, 0xb6, 0x76, 0x47, 0xff, 0xb2, 0x74, 0x44, 0xff, 0xb3, 0x78, 0x47, 0xff, 0xb7, 0x77, 0x4b, 0xff, 0xb9, 0x7a, 0x4f, 0xff, 0xb9, 0x7a, 0x4f, 0xff, 0xb3, 0x75, 0x4a, 0xff, 0xb1, 0x72, 0x47, 0xff, 0xaf, 0x70, 0x46, 0xff, 0xac, 0x6c, 0x43, 0xff, 0xa7, 0x69, 0x3e, 0xff, 0xa7, 0x68, 0x3e, 0xff, 0xa5, 0x68, 0x3c, 0xff, 0xa5, 0x66, 0x3b, 0xff, 0xa2, 0x64, 0x3c, 0xff, 0xa1, 0x64, 0x3b, 0xff, 0x9f, 0x62, 0x37, 0xff, 0x9c, 0x5d, 0x34, 0xff, 0x98, 0x5a, 0x31, 0xff, 0x97, 0x58, 0x30, 0xff, 0x95, 0x56, 0x32, 0xff, 0x94, 0x55, 0x2d, 0xff, 0x8e, 0x4e, 0x29, 0xff, 0x84, 0x45, 0x20, 0xff, 0x83, 0x44, 0x1d, 0xff, 0x83, 0x44, 0x20, 0xff, 0x83, 0x47, 0x22, 0xff, 0x83, 0x46, 0x21, 0xff, 0x81, 0x45, 0x22, 0xff, 0x7b, 0x3e, 0x20, 0xff, 0x71, 0x35, 0x1b, 0xff, 0x74, 0x38, 0x1e, 0xff, 0x7c, 0x3d, 0x22, 0xff, 0x86, 0x49, 0x2c, 0xff, 0x84, 0x46, 0x2b, 0xff, 0x83, 0x44, 0x28, 0xff, 0x83, 0x44, 0x29, 0xff, 0x81, 0x43, 0x29, 0xff, 0x81, 0x42, 0x28, 0xff, 0x80, 0x42, 0x28, 0xff, 0x7f, 0x40, 0x26, 0xff, 0x7f, 0x40, 0x26, 0xff, 0x7f, 0x40, 0x26, 0xff, + 0x7b, 0x3d, 0x25, 0xff, 0x7b, 0x3c, 0x24, 0xff, 0x7c, 0x3c, 0x24, 0xff, 0x7c, 0x3d, 0x24, 0xff, 0x7b, 0x3e, 0x24, 0xff, 0x7d, 0x3e, 0x23, 0xff, 0x7d, 0x3f, 0x25, 0xff, 0x80, 0x40, 0x25, 0xff, 0x7f, 0x41, 0x26, 0xff, 0x81, 0x41, 0x26, 0xff, 0x82, 0x42, 0x26, 0xff, 0x84, 0x44, 0x28, 0xff, 0x87, 0x47, 0x29, 0xff, 0x89, 0x47, 0x29, 0xff, 0x8a, 0x49, 0x29, 0xff, 0x8a, 0x49, 0x29, 0xff, 0x8e, 0x4c, 0x29, 0xff, 0x91, 0x4f, 0x2b, 0xff, 0x93, 0x52, 0x2c, 0xff, 0x99, 0x57, 0x2e, 0xff, 0xa3, 0x61, 0x35, 0xff, 0xa9, 0x6d, 0x3e, 0xff, 0xad, 0x71, 0x43, 0xff, 0xb0, 0x74, 0x47, 0xff, 0xb5, 0x78, 0x4b, 0xff, 0xb9, 0x7b, 0x48, 0xff, 0xbd, 0x7d, 0x48, 0xff, 0xc1, 0x7e, 0x49, 0xff, 0xc8, 0x82, 0x4d, 0xff, 0xd0, 0x89, 0x51, 0xff, 0xce, 0x87, 0x50, 0xff, 0xca, 0x86, 0x51, 0xff, 0xcf, 0x87, 0x51, 0xff, 0xd6, 0x8d, 0x54, 0xff, 0xdf, 0x92, 0x57, 0xff, 0xe4, 0x95, 0x58, 0xff, 0xec, 0x97, 0x5c, 0xff, 0xef, 0x9e, 0x5d, 0xff, 0xf5, 0xa1, 0x62, 0xff, 0xf6, 0xa5, 0x65, 0xff, 0xf5, 0xa7, 0x67, 0xff, 0xf6, 0xa9, 0x69, 0xff, 0xf4, 0xab, 0x6a, 0xff, 0xf5, 0xaf, 0x6d, 0xff, 0xf6, 0xb2, 0x6f, 0xff, 0xf5, 0xb2, 0x6e, 0xff, 0xf4, 0xb3, 0x6c, 0xff, 0xf3, 0xb7, 0x6e, 0xff, 0xf5, 0xc0, 0x78, 0xff, 0xf4, 0xc9, 0x7e, 0xff, 0xf6, 0xc9, 0x7c, 0xff, 0xf5, 0xc9, 0x7a, 0xff, 0xf0, 0xbd, 0x73, 0xff, 0xf1, 0xc6, 0x76, 0xff, 0xf2, 0xe2, 0x8a, 0xff, 0xf6, 0xec, 0x8a, 0xff, 0xf5, 0xd2, 0x7c, 0xff, 0xf4, 0xc4, 0x76, 0xff, 0xf6, 0xbd, 0x70, 0xff, 0xf6, 0xbc, 0x6e, 0xff, 0xf4, 0xb9, 0x6d, 0xff, 0xf3, 0xb6, 0x6c, 0xff, 0xf5, 0xb6, 0x69, 0xff, 0xf5, 0xb4, 0x69, 0xff, 0xf3, 0xb5, 0x6b, 0xff, 0xf4, 0xb2, 0x6b, 0xff, 0xf2, 0xad, 0x60, 0xff, 0xf2, 0xac, 0x5f, 0xff, 0xf4, 0xb2, 0x62, 0xff, 0xf4, 0xb3, 0x66, 0xff, 0xf4, 0xb7, 0x67, 0xff, 0xf4, 0xb7, 0x67, 0xff, 0xf2, 0xb8, 0x67, 0xff, 0xf0, 0xb7, 0x5d, 0xff, 0xf2, 0xb0, 0x52, 0xff, 0xf5, 0xaa, 0x53, 0xff, 0xf2, 0xa8, 0x4f, 0xff, 0xf5, 0xa6, 0x4f, 0xff, 0xf2, 0xa1, 0x4c, 0xff, 0xf0, 0x9c, 0x46, 0xff, 0xee, 0x9c, 0x43, 0xff, 0xf1, 0x99, 0x42, 0xff, 0xe9, 0x99, 0x42, 0xff, 0xc3, 0x83, 0x40, 0xff, 0xaf, 0x70, 0x41, 0xff, 0xb1, 0x73, 0x42, 0xff, 0xb0, 0x72, 0x42, 0xff, 0xae, 0x71, 0x45, 0xff, 0xac, 0x6f, 0x43, 0xff, 0xa9, 0x6d, 0x42, 0xff, 0xa7, 0x6b, 0x42, 0xff, 0xa6, 0x69, 0x41, 0xff, 0xa4, 0x67, 0x40, 0xff, 0xa1, 0x67, 0x40, 0xff, 0xa1, 0x66, 0x3e, 0xff, 0xa0, 0x64, 0x3d, 0xff, 0x9f, 0x62, 0x3d, 0xff, 0x9c, 0x62, 0x3d, 0xff, 0x99, 0x61, 0x3b, 0xff, 0x97, 0x60, 0x38, 0xff, 0x95, 0x5f, 0x35, 0xff, 0x96, 0x5d, 0x33, 0xff, 0x97, 0x5e, 0x31, 0xff, 0x96, 0x60, 0x31, 0xff, 0x98, 0x60, 0x34, 0xff, 0x91, 0x58, 0x32, 0xff, 0x82, 0x49, 0x29, 0xff, 0x81, 0x48, 0x29, 0xff, 0x84, 0x49, 0x29, 0xff, 0x85, 0x4b, 0x29, 0xff, 0x85, 0x4b, 0x29, 0xff, 0x86, 0x4b, 0x29, 0xff, 0x87, 0x4c, 0x29, 0xff, 0x88, 0x4d, 0x29, 0xff, 0x89, 0x4e, 0x29, 0xff, 0x8c, 0x50, 0x29, 0xff, 0x8d, 0x51, 0x29, 0xff, 0x8e, 0x52, 0x2a, 0xff, 0x91, 0x54, 0x2b, 0xff, 0x91, 0x55, 0x2b, 0xff, 0x90, 0x52, 0x2a, 0xff, 0x8d, 0x50, 0x29, 0xff, 0x8e, 0x52, 0x2a, 0xff, 0x91, 0x54, 0x2c, 0xff, 0x92, 0x55, 0x2e, 0xff, 0x94, 0x58, 0x2f, 0xff, 0x96, 0x59, 0x30, 0xff, 0x97, 0x5a, 0x31, 0xff, 0x99, 0x5e, 0x31, 0xff, 0x9b, 0x5f, 0x32, 0xff, 0x9d, 0x60, 0x34, 0xff, 0x9f, 0x63, 0x35, 0xff, 0xa1, 0x65, 0x37, 0xff, 0xa2, 0x68, 0x3a, 0xff, 0xa5, 0x6c, 0x3d, 0xff, 0xa8, 0x70, 0x41, 0xff, 0xab, 0x73, 0x45, 0xff, 0xae, 0x76, 0x45, 0xff, 0xb1, 0x77, 0x46, 0xff, 0xb3, 0x7b, 0x47, 0xff, 0xb6, 0x7d, 0x48, 0xff, 0xba, 0x7f, 0x49, 0xff, 0xbd, 0x81, 0x49, 0xff, 0xc1, 0x84, 0x4b, 0xff, 0xc5, 0x87, 0x4d, 0xff, 0xcf, 0x8c, 0x4f, 0xff, 0xd9, 0x90, 0x53, 0xff, 0xe6, 0x96, 0x51, 0xff, 0xef, 0x9d, 0x54, 0xff, 0xf3, 0xa4, 0x58, 0xff, 0xf3, 0xab, 0x5e, 0xff, 0xf5, 0xb7, 0x67, 0xff, 0xf4, 0xc6, 0x72, 0xff, 0xef, 0xde, 0x7e, 0xff, 0xeb, 0xeb, 0x88, 0xff, 0xe6, 0xee, 0x92, 0xff, 0xe9, 0xee, 0x9e, 0xff, 0xeb, 0xee, 0xa5, 0xff, 0xed, 0xee, 0xaa, 0xff, 0xec, 0xee, 0xad, 0xff, 0xeb, 0xee, 0xae, 0xff, 0xec, 0xee, 0xad, 0xff, 0xeb, 0xef, 0xab, 0xff, 0xe9, 0xee, 0xa7, 0xff, 0xea, 0xed, 0xa1, 0xff, 0xe9, 0xed, 0x9f, 0xff, 0xe8, 0xee, 0x9a, 0xff, 0xe6, 0xed, 0x97, 0xff, 0xe8, 0xee, 0x97, 0xff, 0xf2, 0xe4, 0x91, 0xff, 0xf4, 0xe1, 0x92, 0xff, 0xf5, 0xe0, 0x9b, 0xff, 0xf6, 0xd8, 0x9f, 0xff, 0xf5, 0xd0, 0xa1, 0xff, 0xf5, 0xcf, 0xa1, 0xff, 0xf6, 0xda, 0xa6, 0xff, 0xf6, 0xde, 0xa5, 0xff, 0xf6, 0xdc, 0xa1, 0xff, 0xf4, 0xd9, 0x9a, 0xff, 0xf6, 0xd6, 0x91, 0xff, 0xf6, 0xd3, 0x89, 0xff, 0xf6, 0xd4, 0x84, 0xff, 0xf6, 0xcc, 0x7d, 0xff, 0xf0, 0xbb, 0x77, 0xff, 0xf0, 0xcc, 0x77, 0xff, 0xf2, 0xc9, 0x73, 0xff, 0xf0, 0xc1, 0x71, 0xff, 0xf4, 0xbf, 0x69, 0xff, 0xdd, 0xa8, 0x5e, 0xff, 0x9f, 0x66, 0x38, 0xff, 0x94, 0x59, 0x2e, 0xff, 0x97, 0x5b, 0x2f, 0xff, 0x9a, 0x5c, 0x30, 0xff, 0x9c, 0x5f, 0x32, 0xff, 0x9d, 0x61, 0x34, 0xff, 0x9f, 0x61, 0x38, 0xff, 0x9f, 0x62, 0x38, 0xff, 0x9d, 0x5d, 0x36, 0xff, 0xa0, 0x60, 0x3a, 0xff, 0xa2, 0x63, 0x3a, 0xff, 0xa2, 0x63, 0x3a, 0xff, 0x9f, 0x62, 0x39, 0xff, 0x9a, 0x5a, 0x32, 0xff, 0x96, 0x59, 0x31, 0xff, 0x93, 0x56, 0x30, 0xff, 0x91, 0x53, 0x2e, 0xff, 0x8c, 0x50, 0x2a, 0xff, 0x8c, 0x4f, 0x29, 0xff, 0x8b, 0x4f, 0x29, 0xff, 0x8a, 0x4d, 0x27, 0xff, 0x8a, 0x4b, 0x25, 0xff, 0x87, 0x48, 0x22, 0xff, 0x86, 0x46, 0x20, 0xff, 0x88, 0x47, 0x22, 0xff, 0x85, 0x47, 0x22, 0xff, 0x85, 0x48, 0x21, 0xff, 0x83, 0x46, 0x21, 0xff, 0x84, 0x48, 0x22, 0xff, 0x84, 0x47, 0x24, 0xff, 0x80, 0x43, 0x22, 0xff, 0x74, 0x37, 0x1e, 0xff, 0x7f, 0x41, 0x26, 0xff, 0x84, 0x47, 0x2a, 0xff, 0x83, 0x44, 0x29, 0xff, 0x81, 0x42, 0x28, 0xff, 0x7f, 0x41, 0x28, 0xff, 0x7f, 0x41, 0x27, 0xff, 0x81, 0x41, 0x27, 0xff, 0x7f, 0x40, 0x27, 0xff, 0x7f, 0x41, 0x26, 0xff, 0x7d, 0x3f, 0x26, 0xff, 0x7d, 0x40, 0x26, 0xff, 0x7d, 0x3f, 0x25, 0xff, 0x7d, 0x3f, 0x25, 0xff, + 0x7a, 0x3b, 0x23, 0xff, 0x7a, 0x3b, 0x22, 0xff, 0x7a, 0x3b, 0x22, 0xff, 0x7a, 0x3b, 0x23, 0xff, 0x7a, 0x3b, 0x23, 0xff, 0x7a, 0x3c, 0x23, 0xff, 0x7c, 0x3b, 0x23, 0xff, 0x7c, 0x3d, 0x23, 0xff, 0x7f, 0x3e, 0x25, 0xff, 0x7f, 0x3f, 0x25, 0xff, 0x81, 0x41, 0x27, 0xff, 0x84, 0x43, 0x27, 0xff, 0x86, 0x45, 0x28, 0xff, 0x87, 0x47, 0x27, 0xff, 0x87, 0x46, 0x28, 0xff, 0x8a, 0x47, 0x28, 0xff, 0x8c, 0x49, 0x29, 0xff, 0x8d, 0x4a, 0x29, 0xff, 0x94, 0x52, 0x29, 0xff, 0x9d, 0x5a, 0x31, 0xff, 0xa2, 0x61, 0x34, 0xff, 0xa6, 0x69, 0x3a, 0xff, 0xab, 0x6e, 0x41, 0xff, 0xb0, 0x72, 0x46, 0xff, 0xb3, 0x73, 0x49, 0xff, 0xb7, 0x79, 0x4a, 0xff, 0xba, 0x7a, 0x45, 0xff, 0xbf, 0x7b, 0x45, 0xff, 0xc3, 0x81, 0x49, 0xff, 0xcb, 0x86, 0x4d, 0xff, 0xd1, 0x88, 0x51, 0xff, 0xcc, 0x85, 0x50, 0xff, 0xcc, 0x87, 0x4f, 0xff, 0xd7, 0x8c, 0x54, 0xff, 0xdf, 0x92, 0x57, 0xff, 0xe6, 0x95, 0x5a, 0xff, 0xe8, 0x99, 0x5d, 0xff, 0xef, 0x9f, 0x5f, 0xff, 0xf3, 0xa1, 0x62, 0xff, 0xf5, 0xa9, 0x66, 0xff, 0xf4, 0xac, 0x6a, 0xff, 0xf6, 0xae, 0x6b, 0xff, 0xf4, 0xae, 0x69, 0xff, 0xf4, 0xae, 0x6d, 0xff, 0xf5, 0xb4, 0x6d, 0xff, 0xf6, 0xb4, 0x6e, 0xff, 0xf6, 0xb2, 0x72, 0xff, 0xf5, 0xb7, 0x73, 0xff, 0xf2, 0xbc, 0x6f, 0xff, 0xf4, 0xc6, 0x79, 0xff, 0xf6, 0xce, 0x7f, 0xff, 0xf5, 0xc9, 0x7a, 0xff, 0xf3, 0xc5, 0x71, 0xff, 0xf3, 0xb5, 0x67, 0xff, 0xf1, 0xbb, 0x69, 0xff, 0xef, 0xcf, 0x7a, 0xff, 0xf6, 0xe2, 0x85, 0xff, 0xf7, 0xc9, 0x7b, 0xff, 0xf5, 0xbf, 0x73, 0xff, 0xf6, 0xbd, 0x70, 0xff, 0xf6, 0xb8, 0x6f, 0xff, 0xf4, 0xb7, 0x6b, 0xff, 0xf5, 0xb4, 0x63, 0xff, 0xf5, 0xb2, 0x66, 0xff, 0xf5, 0xb4, 0x68, 0xff, 0xf4, 0xb5, 0x69, 0xff, 0xf4, 0xb2, 0x67, 0xff, 0xf1, 0xa8, 0x5f, 0xff, 0xf2, 0xa8, 0x5d, 0xff, 0xf2, 0xad, 0x5e, 0xff, 0xf3, 0xb0, 0x5f, 0xff, 0xf3, 0xb0, 0x60, 0xff, 0xf2, 0xb3, 0x63, 0xff, 0xf1, 0xab, 0x58, 0xff, 0xf0, 0xab, 0x4d, 0xff, 0xf2, 0xaf, 0x4d, 0xff, 0xf6, 0xa9, 0x4e, 0xff, 0xf0, 0xa4, 0x4c, 0xff, 0xee, 0xa2, 0x4b, 0xff, 0xf0, 0x9f, 0x48, 0xff, 0xf2, 0x9f, 0x44, 0xff, 0xf2, 0xa0, 0x47, 0xff, 0xda, 0x92, 0x48, 0xff, 0xb3, 0x79, 0x46, 0xff, 0xb6, 0x7d, 0x4b, 0xff, 0xb5, 0x7e, 0x4b, 0xff, 0xb4, 0x7e, 0x4d, 0xff, 0xb3, 0x7c, 0x4d, 0xff, 0xb2, 0x77, 0x4a, 0xff, 0xb1, 0x77, 0x4a, 0xff, 0xae, 0x73, 0x47, 0xff, 0xaa, 0x6f, 0x45, 0xff, 0xa8, 0x6e, 0x46, 0xff, 0xa8, 0x6b, 0x45, 0xff, 0xa7, 0x6b, 0x43, 0xff, 0xa5, 0x6a, 0x41, 0xff, 0xa0, 0x65, 0x3f, 0xff, 0x98, 0x60, 0x3b, 0xff, 0x98, 0x61, 0x3b, 0xff, 0x97, 0x5f, 0x38, 0xff, 0x97, 0x5e, 0x35, 0xff, 0x95, 0x5e, 0x33, 0xff, 0x95, 0x5e, 0x33, 0xff, 0x97, 0x61, 0x33, 0xff, 0x90, 0x59, 0x2e, 0xff, 0x83, 0x49, 0x29, 0xff, 0x80, 0x46, 0x28, 0xff, 0x81, 0x48, 0x29, 0xff, 0x82, 0x48, 0x29, 0xff, 0x83, 0x49, 0x29, 0xff, 0x84, 0x4a, 0x29, 0xff, 0x85, 0x4b, 0x29, 0xff, 0x85, 0x4b, 0x29, 0xff, 0x88, 0x4b, 0x29, 0xff, 0x89, 0x4d, 0x29, 0xff, 0x89, 0x4c, 0x29, 0xff, 0x89, 0x4d, 0x29, 0xff, 0x8c, 0x50, 0x29, 0xff, 0x8e, 0x52, 0x29, 0xff, 0x8a, 0x4e, 0x28, 0xff, 0x88, 0x4b, 0x27, 0xff, 0x8a, 0x4d, 0x28, 0xff, 0x8b, 0x4e, 0x29, 0xff, 0x8d, 0x50, 0x2a, 0xff, 0x90, 0x54, 0x2d, 0xff, 0x92, 0x56, 0x2e, 0xff, 0x92, 0x56, 0x2e, 0xff, 0x94, 0x58, 0x30, 0xff, 0x97, 0x5a, 0x30, 0xff, 0x98, 0x5d, 0x31, 0xff, 0x9b, 0x5f, 0x33, 0xff, 0x9e, 0x63, 0x34, 0xff, 0xa0, 0x66, 0x37, 0xff, 0xa2, 0x66, 0x38, 0xff, 0xa3, 0x6a, 0x3a, 0xff, 0xa4, 0x6a, 0x3d, 0xff, 0xa6, 0x6d, 0x40, 0xff, 0xab, 0x73, 0x45, 0xff, 0xae, 0x76, 0x46, 0xff, 0xb2, 0x78, 0x47, 0xff, 0xb4, 0x78, 0x49, 0xff, 0xb6, 0x7b, 0x47, 0xff, 0xb9, 0x7d, 0x48, 0xff, 0xbd, 0x7f, 0x4b, 0xff, 0xc1, 0x83, 0x4a, 0xff, 0xc5, 0x87, 0x4b, 0xff, 0xce, 0x8c, 0x4f, 0xff, 0xd5, 0x8e, 0x4d, 0xff, 0xe2, 0x95, 0x50, 0xff, 0xee, 0x9b, 0x52, 0xff, 0xf3, 0xa0, 0x53, 0xff, 0xf5, 0xab, 0x5e, 0xff, 0xf5, 0xb5, 0x66, 0xff, 0xf2, 0xc4, 0x6f, 0xff, 0xf5, 0xda, 0x7b, 0xff, 0xec, 0xec, 0x85, 0xff, 0xe6, 0xee, 0x8f, 0xff, 0xe8, 0xee, 0x9a, 0xff, 0xe6, 0xee, 0x9c, 0xff, 0xe8, 0xed, 0x9d, 0xff, 0xea, 0xee, 0xa1, 0xff, 0xe9, 0xed, 0xa1, 0xff, 0xe9, 0xed, 0x9e, 0xff, 0xe8, 0xed, 0x9e, 0xff, 0xe7, 0xed, 0x9b, 0xff, 0xe5, 0xee, 0x93, 0xff, 0xe6, 0xed, 0x93, 0xff, 0xe4, 0xec, 0x92, 0xff, 0xe5, 0xee, 0x91, 0xff, 0xe5, 0xed, 0x94, 0xff, 0xef, 0xed, 0x95, 0xff, 0xf4, 0xe4, 0x91, 0xff, 0xf5, 0xda, 0x9a, 0xff, 0xf5, 0xd0, 0x99, 0xff, 0xf6, 0xc7, 0x9a, 0xff, 0xf5, 0xc7, 0x9b, 0xff, 0xf6, 0xd6, 0xa2, 0xff, 0xf7, 0xde, 0xa5, 0xff, 0xf6, 0xdd, 0xa1, 0xff, 0xf5, 0xd4, 0x95, 0xff, 0xf7, 0xd6, 0x90, 0xff, 0xf5, 0xd6, 0x86, 0xff, 0xf6, 0xcf, 0x7e, 0xff, 0xf6, 0xc2, 0x7a, 0xff, 0xf0, 0xbd, 0x72, 0xff, 0xf0, 0xbe, 0x71, 0xff, 0xef, 0xc3, 0x6a, 0xff, 0xf3, 0xbc, 0x6e, 0xff, 0xd8, 0xa3, 0x5e, 0xff, 0x9c, 0x63, 0x39, 0xff, 0x97, 0x5b, 0x2f, 0xff, 0x98, 0x5c, 0x2f, 0xff, 0x99, 0x5a, 0x30, 0xff, 0x98, 0x5c, 0x2e, 0xff, 0x99, 0x5a, 0x2f, 0xff, 0x98, 0x5b, 0x30, 0xff, 0x99, 0x5c, 0x31, 0xff, 0x95, 0x57, 0x31, 0xff, 0x92, 0x55, 0x31, 0xff, 0x93, 0x55, 0x30, 0xff, 0x93, 0x55, 0x30, 0xff, 0x95, 0x55, 0x30, 0xff, 0x8d, 0x50, 0x29, 0xff, 0x89, 0x4b, 0x27, 0xff, 0x89, 0x4a, 0x29, 0xff, 0x89, 0x4d, 0x27, 0xff, 0x89, 0x4b, 0x26, 0xff, 0x88, 0x4c, 0x27, 0xff, 0x89, 0x4d, 0x27, 0xff, 0x89, 0x4d, 0x26, 0xff, 0x89, 0x4b, 0x25, 0xff, 0x89, 0x4a, 0x25, 0xff, 0x89, 0x49, 0x23, 0xff, 0x86, 0x47, 0x22, 0xff, 0x86, 0x47, 0x22, 0xff, 0x85, 0x47, 0x22, 0xff, 0x85, 0x48, 0x23, 0xff, 0x84, 0x48, 0x22, 0xff, 0x83, 0x46, 0x24, 0xff, 0x7d, 0x40, 0x26, 0xff, 0x83, 0x46, 0x2a, 0xff, 0x81, 0x43, 0x29, 0xff, 0x84, 0x46, 0x29, 0xff, 0x82, 0x43, 0x29, 0xff, 0x7d, 0x40, 0x26, 0xff, 0x7d, 0x40, 0x26, 0xff, 0x7e, 0x3f, 0x25, 0xff, 0x7d, 0x40, 0x26, 0xff, 0x7c, 0x3f, 0x26, 0xff, 0x7a, 0x3e, 0x25, 0xff, 0x7c, 0x3f, 0x25, 0xff, 0x7b, 0x3d, 0x25, 0xff, 0x7b, 0x3d, 0x25, 0xff, 0x7a, 0x3c, 0x25, 0xff, + 0x78, 0x3b, 0x21, 0xff, 0x77, 0x39, 0x20, 0xff, 0x78, 0x39, 0x20, 0xff, 0x78, 0x39, 0x20, 0xff, 0x78, 0x3b, 0x21, 0xff, 0x7a, 0x3b, 0x21, 0xff, 0x7a, 0x3b, 0x21, 0xff, 0x7a, 0x3d, 0x23, 0xff, 0x7e, 0x3d, 0x23, 0xff, 0x7f, 0x3f, 0x25, 0xff, 0x80, 0x41, 0x25, 0xff, 0x82, 0x41, 0x26, 0xff, 0x81, 0x40, 0x26, 0xff, 0x83, 0x42, 0x26, 0xff, 0x87, 0x45, 0x27, 0xff, 0x88, 0x47, 0x27, 0xff, 0x8a, 0x48, 0x28, 0xff, 0x8f, 0x4e, 0x29, 0xff, 0x96, 0x51, 0x2b, 0xff, 0x98, 0x56, 0x2e, 0xff, 0x9f, 0x5c, 0x31, 0xff, 0xa6, 0x65, 0x35, 0xff, 0xab, 0x6d, 0x3e, 0xff, 0xac, 0x6f, 0x42, 0xff, 0xb1, 0x74, 0x45, 0xff, 0xb5, 0x77, 0x46, 0xff, 0xb8, 0x79, 0x46, 0xff, 0xbb, 0x7b, 0x45, 0xff, 0xc1, 0x7d, 0x46, 0xff, 0xc7, 0x82, 0x49, 0xff, 0xd0, 0x88, 0x4d, 0xff, 0xd0, 0x88, 0x50, 0xff, 0xcc, 0x87, 0x4f, 0xff, 0xd6, 0x8b, 0x52, 0xff, 0xe0, 0x92, 0x57, 0xff, 0xe6, 0x96, 0x5b, 0xff, 0xe9, 0x9f, 0x5e, 0xff, 0xef, 0xa0, 0x60, 0xff, 0xf4, 0xa5, 0x64, 0xff, 0xf5, 0xac, 0x6a, 0xff, 0xf6, 0xb2, 0x6d, 0xff, 0xf5, 0xb3, 0x6d, 0xff, 0xf6, 0xb4, 0x6e, 0xff, 0xf4, 0xb2, 0x6d, 0xff, 0xf5, 0xb0, 0x6d, 0xff, 0xf4, 0xb2, 0x6d, 0xff, 0xf6, 0xb4, 0x6e, 0xff, 0xf6, 0xb7, 0x71, 0xff, 0xf6, 0xbd, 0x74, 0xff, 0xf3, 0xc0, 0x77, 0xff, 0xf4, 0xc8, 0x7a, 0xff, 0xf5, 0xce, 0x79, 0xff, 0xf3, 0xc7, 0x71, 0xff, 0xf6, 0xc2, 0x6d, 0xff, 0xf2, 0xb1, 0x60, 0xff, 0xf1, 0xb2, 0x64, 0xff, 0xf3, 0xbe, 0x70, 0xff, 0xf5, 0xcd, 0x7d, 0xff, 0xf4, 0xc6, 0x78, 0xff, 0xf6, 0xbf, 0x74, 0xff, 0xf6, 0xbc, 0x6e, 0xff, 0xf4, 0xba, 0x68, 0xff, 0xf5, 0xb6, 0x67, 0xff, 0xf5, 0xb2, 0x66, 0xff, 0xf5, 0xb3, 0x69, 0xff, 0xf5, 0xb4, 0x69, 0xff, 0xf4, 0xb6, 0x6d, 0xff, 0xf4, 0xb6, 0x6d, 0xff, 0xf0, 0xab, 0x5f, 0xff, 0xf2, 0xa8, 0x59, 0xff, 0xf4, 0xab, 0x5c, 0xff, 0xf4, 0xac, 0x5d, 0xff, 0xf2, 0xad, 0x5c, 0xff, 0xf2, 0xab, 0x55, 0xff, 0xf3, 0xa6, 0x4b, 0xff, 0xf4, 0xa7, 0x4e, 0xff, 0xf4, 0xa7, 0x50, 0xff, 0xf1, 0xa5, 0x4e, 0xff, 0xee, 0xa2, 0x4d, 0xff, 0xee, 0x9e, 0x47, 0xff, 0xf4, 0x9f, 0x47, 0xff, 0xed, 0x9b, 0x48, 0xff, 0xc9, 0x8a, 0x4a, 0xff, 0xba, 0x81, 0x4e, 0xff, 0xba, 0x83, 0x54, 0xff, 0xb9, 0x84, 0x59, 0xff, 0xb8, 0x82, 0x59, 0xff, 0xb8, 0x81, 0x58, 0xff, 0xb7, 0x80, 0x56, 0xff, 0xb5, 0x7e, 0x52, 0xff, 0xb3, 0x79, 0x50, 0xff, 0xaf, 0x76, 0x4e, 0xff, 0xae, 0x75, 0x4a, 0xff, 0xac, 0x73, 0x49, 0xff, 0xa9, 0x6e, 0x46, 0xff, 0x9e, 0x66, 0x40, 0xff, 0x96, 0x5f, 0x3d, 0xff, 0x97, 0x60, 0x39, 0xff, 0x96, 0x5e, 0x34, 0xff, 0x95, 0x5d, 0x34, 0xff, 0x97, 0x5e, 0x35, 0xff, 0x97, 0x60, 0x34, 0xff, 0x97, 0x5f, 0x34, 0xff, 0x95, 0x5d, 0x35, 0xff, 0x89, 0x50, 0x2e, 0xff, 0x7f, 0x43, 0x27, 0xff, 0x81, 0x45, 0x28, 0xff, 0x81, 0x46, 0x29, 0xff, 0x81, 0x47, 0x28, 0xff, 0x81, 0x47, 0x28, 0xff, 0x83, 0x49, 0x29, 0xff, 0x85, 0x49, 0x28, 0xff, 0x85, 0x48, 0x28, 0xff, 0x86, 0x49, 0x27, 0xff, 0x86, 0x4a, 0x27, 0xff, 0x87, 0x4b, 0x29, 0xff, 0x8a, 0x4d, 0x29, 0xff, 0x89, 0x4f, 0x28, 0xff, 0x85, 0x49, 0x26, 0xff, 0x83, 0x45, 0x25, 0xff, 0x87, 0x49, 0x26, 0xff, 0x89, 0x4b, 0x28, 0xff, 0x89, 0x4c, 0x29, 0xff, 0x8b, 0x4f, 0x29, 0xff, 0x8e, 0x52, 0x2b, 0xff, 0x8f, 0x52, 0x2c, 0xff, 0x91, 0x56, 0x2d, 0xff, 0x92, 0x58, 0x2f, 0xff, 0x95, 0x59, 0x30, 0xff, 0x97, 0x5a, 0x30, 0xff, 0x98, 0x5e, 0x32, 0xff, 0x9a, 0x5f, 0x33, 0xff, 0x9c, 0x61, 0x36, 0xff, 0x9d, 0x63, 0x38, 0xff, 0xa0, 0x65, 0x37, 0xff, 0xa3, 0x69, 0x3a, 0xff, 0xa7, 0x6c, 0x3d, 0xff, 0xa7, 0x6e, 0x3f, 0xff, 0xa9, 0x71, 0x42, 0xff, 0xac, 0x72, 0x43, 0xff, 0xaf, 0x75, 0x43, 0xff, 0xb3, 0x77, 0x45, 0xff, 0xb6, 0x7b, 0x46, 0xff, 0xb9, 0x7f, 0x47, 0xff, 0xbd, 0x80, 0x49, 0xff, 0xc0, 0x83, 0x4a, 0xff, 0xc5, 0x86, 0x4a, 0xff, 0xcd, 0x8c, 0x4c, 0xff, 0xd5, 0x8f, 0x4d, 0xff, 0xdf, 0x90, 0x4c, 0xff, 0xeb, 0x95, 0x4b, 0xff, 0xf1, 0x9e, 0x51, 0xff, 0xf3, 0xa8, 0x5b, 0xff, 0xf2, 0xb0, 0x62, 0xff, 0xf4, 0xbf, 0x6c, 0xff, 0xf3, 0xcf, 0x77, 0xff, 0xf1, 0xe3, 0x80, 0xff, 0xe9, 0xec, 0x86, 0xff, 0xe8, 0xef, 0x90, 0xff, 0xe7, 0xef, 0x93, 0xff, 0xe7, 0xee, 0x94, 0xff, 0xe6, 0xed, 0x96, 0xff, 0xe4, 0xed, 0x94, 0xff, 0xe6, 0xed, 0x95, 0xff, 0xe4, 0xee, 0x95, 0xff, 0xe5, 0xee, 0x91, 0xff, 0xe4, 0xee, 0x90, 0xff, 0xe4, 0xed, 0x90, 0xff, 0xe1, 0xed, 0x8f, 0xff, 0xe4, 0xee, 0x92, 0xff, 0xeb, 0xef, 0x91, 0xff, 0xf3, 0xe5, 0x90, 0xff, 0xf5, 0xdc, 0x8f, 0xff, 0xf6, 0xd6, 0x91, 0xff, 0xf6, 0xc5, 0x93, 0xff, 0xf6, 0xc3, 0x94, 0xff, 0xf5, 0xc2, 0x98, 0xff, 0xf4, 0xce, 0x9d, 0xff, 0xf5, 0xd7, 0x9f, 0xff, 0xf5, 0xd9, 0x9c, 0xff, 0xf5, 0xd6, 0x91, 0xff, 0xf6, 0xd5, 0x8a, 0xff, 0xf6, 0xd5, 0x82, 0xff, 0xf4, 0xce, 0x7d, 0xff, 0xf3, 0xb8, 0x72, 0xff, 0xef, 0xbc, 0x6f, 0xff, 0xf2, 0xb6, 0x69, 0xff, 0xf2, 0xb6, 0x63, 0xff, 0xd9, 0xa0, 0x58, 0xff, 0x9a, 0x5f, 0x35, 0xff, 0x96, 0x5b, 0x2f, 0xff, 0x99, 0x5b, 0x30, 0xff, 0x98, 0x5b, 0x2f, 0xff, 0x98, 0x5a, 0x2e, 0xff, 0x98, 0x5c, 0x2e, 0xff, 0x98, 0x5b, 0x2f, 0xff, 0x98, 0x5c, 0x31, 0xff, 0x98, 0x5d, 0x32, 0xff, 0x93, 0x56, 0x31, 0xff, 0x93, 0x55, 0x30, 0xff, 0x93, 0x55, 0x30, 0xff, 0x96, 0x57, 0x2f, 0xff, 0x95, 0x57, 0x2e, 0xff, 0x8a, 0x4f, 0x29, 0xff, 0x89, 0x4e, 0x28, 0xff, 0x89, 0x4d, 0x27, 0xff, 0x89, 0x4d, 0x27, 0xff, 0x89, 0x4e, 0x28, 0xff, 0x89, 0x4d, 0x26, 0xff, 0x89, 0x4e, 0x27, 0xff, 0x89, 0x4c, 0x26, 0xff, 0x89, 0x4a, 0x25, 0xff, 0x88, 0x49, 0x23, 0xff, 0x89, 0x49, 0x22, 0xff, 0x87, 0x47, 0x22, 0xff, 0x87, 0x47, 0x1f, 0xff, 0x87, 0x47, 0x22, 0xff, 0x83, 0x46, 0x25, 0xff, 0x7c, 0x40, 0x27, 0xff, 0x80, 0x44, 0x29, 0xff, 0x81, 0x43, 0x29, 0xff, 0x81, 0x42, 0x29, 0xff, 0x81, 0x43, 0x27, 0xff, 0x80, 0x41, 0x27, 0xff, 0x80, 0x42, 0x29, 0xff, 0x7c, 0x3f, 0x26, 0xff, 0x7b, 0x3f, 0x25, 0xff, 0x7a, 0x3c, 0x23, 0xff, 0x7a, 0x3c, 0x24, 0xff, 0x7a, 0x3c, 0x25, 0xff, 0x7a, 0x3b, 0x23, 0xff, 0x7a, 0x3b, 0x22, 0xff, 0x7a, 0x3b, 0x22, 0xff, 0x7a, 0x3b, 0x23, 0xff, + 0x78, 0x39, 0x20, 0xff, 0x77, 0x38, 0x1d, 0xff, 0x77, 0x38, 0x1d, 0xff, 0x77, 0x38, 0x1d, 0xff, 0x78, 0x39, 0x20, 0xff, 0x77, 0x39, 0x1f, 0xff, 0x78, 0x3a, 0x20, 0xff, 0x7a, 0x3b, 0x21, 0xff, 0x7b, 0x3c, 0x22, 0xff, 0x7d, 0x3d, 0x23, 0xff, 0x7f, 0x3e, 0x25, 0xff, 0x7f, 0x3d, 0x24, 0xff, 0x7f, 0x3f, 0x24, 0xff, 0x81, 0x42, 0x26, 0xff, 0x86, 0x46, 0x25, 0xff, 0x87, 0x47, 0x27, 0xff, 0x8a, 0x47, 0x28, 0xff, 0x8e, 0x4c, 0x28, 0xff, 0x93, 0x4f, 0x2a, 0xff, 0x96, 0x55, 0x2c, 0xff, 0x9c, 0x5b, 0x30, 0xff, 0xa3, 0x63, 0x34, 0xff, 0xa8, 0x67, 0x38, 0xff, 0xab, 0x6c, 0x3a, 0xff, 0xae, 0x71, 0x3f, 0xff, 0xb3, 0x76, 0x42, 0xff, 0xb7, 0x77, 0x43, 0xff, 0xb8, 0x77, 0x42, 0xff, 0xbd, 0x79, 0x42, 0xff, 0xc2, 0x7e, 0x47, 0xff, 0xcc, 0x85, 0x4b, 0xff, 0xd1, 0x8a, 0x51, 0xff, 0xd0, 0x88, 0x4f, 0xff, 0xd4, 0x8c, 0x51, 0xff, 0xde, 0x92, 0x56, 0xff, 0xe5, 0x99, 0x5a, 0xff, 0xe8, 0xa1, 0x61, 0xff, 0xee, 0xa3, 0x62, 0xff, 0xf5, 0xa9, 0x65, 0xff, 0xf6, 0xae, 0x69, 0xff, 0xf5, 0xb1, 0x6c, 0xff, 0xf6, 0xb4, 0x6f, 0xff, 0xf6, 0xb5, 0x72, 0xff, 0xf6, 0xb9, 0x70, 0xff, 0xf4, 0xb5, 0x6e, 0xff, 0xf6, 0xb5, 0x70, 0xff, 0xf6, 0xb6, 0x6e, 0xff, 0xf6, 0xb9, 0x70, 0xff, 0xf6, 0xb9, 0x70, 0xff, 0xf5, 0xc0, 0x74, 0xff, 0xf3, 0xc4, 0x76, 0xff, 0xf4, 0xd0, 0x79, 0xff, 0xf4, 0xcc, 0x74, 0xff, 0xf4, 0xc4, 0x6d, 0xff, 0xf4, 0xbd, 0x69, 0xff, 0xf5, 0xb3, 0x62, 0xff, 0xf4, 0xb2, 0x63, 0xff, 0xf2, 0xb7, 0x6b, 0xff, 0xf2, 0xc0, 0x72, 0xff, 0xf1, 0xc4, 0x76, 0xff, 0xf5, 0xc8, 0x74, 0xff, 0xf4, 0xc1, 0x6d, 0xff, 0xf2, 0xb4, 0x6a, 0xff, 0xf4, 0xb6, 0x6c, 0xff, 0xf4, 0xb4, 0x6b, 0xff, 0xf3, 0xb7, 0x6d, 0xff, 0xf3, 0xb9, 0x6e, 0xff, 0xf4, 0xb5, 0x6c, 0xff, 0xf4, 0xb1, 0x68, 0xff, 0xf5, 0xa8, 0x5f, 0xff, 0xf3, 0xa2, 0x5a, 0xff, 0xf5, 0xa7, 0x5c, 0xff, 0xf4, 0xa8, 0x5f, 0xff, 0xf4, 0xa8, 0x59, 0xff, 0xf4, 0xa8, 0x50, 0xff, 0xf0, 0xa7, 0x4e, 0xff, 0xf0, 0xa5, 0x4d, 0xff, 0xf0, 0xa4, 0x4c, 0xff, 0xf1, 0xa4, 0x4d, 0xff, 0xf2, 0xa7, 0x4e, 0xff, 0xf1, 0xa3, 0x4b, 0xff, 0xdf, 0x98, 0x4d, 0xff, 0xc1, 0x84, 0x4a, 0xff, 0xc0, 0x86, 0x50, 0xff, 0xc0, 0x87, 0x58, 0xff, 0xbf, 0x87, 0x5d, 0xff, 0xbd, 0x85, 0x5d, 0xff, 0xbc, 0x84, 0x5e, 0xff, 0xbb, 0x83, 0x5c, 0xff, 0xb9, 0x82, 0x59, 0xff, 0xb8, 0x80, 0x56, 0xff, 0xb8, 0x7d, 0x54, 0xff, 0xb0, 0x76, 0x50, 0xff, 0xa2, 0x6b, 0x46, 0xff, 0x9a, 0x63, 0x3e, 0xff, 0x95, 0x5f, 0x38, 0xff, 0x96, 0x5f, 0x38, 0xff, 0x96, 0x5e, 0x35, 0xff, 0x97, 0x5f, 0x34, 0xff, 0x96, 0x5f, 0x34, 0xff, 0x97, 0x5e, 0x34, 0xff, 0x97, 0x5d, 0x33, 0xff, 0x96, 0x5e, 0x35, 0xff, 0x8b, 0x52, 0x2f, 0xff, 0x7f, 0x44, 0x28, 0xff, 0x81, 0x47, 0x29, 0xff, 0x81, 0x46, 0x28, 0xff, 0x80, 0x46, 0x29, 0xff, 0x80, 0x45, 0x28, 0xff, 0x81, 0x45, 0x28, 0xff, 0x82, 0x47, 0x28, 0xff, 0x82, 0x47, 0x27, 0xff, 0x83, 0x47, 0x26, 0xff, 0x85, 0x48, 0x26, 0xff, 0x85, 0x4b, 0x28, 0xff, 0x87, 0x4d, 0x28, 0xff, 0x86, 0x4a, 0x28, 0xff, 0x82, 0x45, 0x25, 0xff, 0x81, 0x44, 0x25, 0xff, 0x84, 0x47, 0x26, 0xff, 0x85, 0x48, 0x26, 0xff, 0x87, 0x48, 0x26, 0xff, 0x88, 0x4b, 0x28, 0xff, 0x8a, 0x4d, 0x29, 0xff, 0x8b, 0x4e, 0x29, 0xff, 0x8e, 0x51, 0x2c, 0xff, 0x90, 0x54, 0x2e, 0xff, 0x91, 0x55, 0x2d, 0xff, 0x93, 0x56, 0x2f, 0xff, 0x95, 0x5a, 0x31, 0xff, 0x97, 0x5b, 0x31, 0xff, 0x98, 0x5d, 0x33, 0xff, 0x9a, 0x5f, 0x34, 0xff, 0x9d, 0x61, 0x36, 0xff, 0x9f, 0x62, 0x38, 0xff, 0xa1, 0x67, 0x39, 0xff, 0xa3, 0x68, 0x3b, 0xff, 0xa4, 0x69, 0x3d, 0xff, 0xa6, 0x6e, 0x3f, 0xff, 0xa8, 0x70, 0x41, 0xff, 0xab, 0x72, 0x43, 0xff, 0xae, 0x74, 0x42, 0xff, 0xb0, 0x76, 0x42, 0xff, 0xb4, 0x79, 0x42, 0xff, 0xb8, 0x7d, 0x45, 0xff, 0xbb, 0x7e, 0x47, 0xff, 0xbe, 0x7e, 0x48, 0xff, 0xc5, 0x85, 0x49, 0xff, 0xca, 0x88, 0x4a, 0xff, 0xd3, 0x8a, 0x4a, 0xff, 0xdd, 0x8f, 0x47, 0xff, 0xe8, 0x95, 0x48, 0xff, 0xf0, 0x9d, 0x50, 0xff, 0xf5, 0xa9, 0x5a, 0xff, 0xf1, 0xae, 0x61, 0xff, 0xf2, 0xba, 0x69, 0xff, 0xf4, 0xc8, 0x72, 0xff, 0xf1, 0xd6, 0x78, 0xff, 0xf2, 0xe3, 0x7e, 0xff, 0xf0, 0xef, 0x88, 0xff, 0xec, 0xf1, 0x8e, 0xff, 0xe8, 0xed, 0x8d, 0xff, 0xe6, 0xed, 0x8f, 0xff, 0xe4, 0xeb, 0x8c, 0xff, 0xe4, 0xed, 0x8b, 0xff, 0xe6, 0xec, 0x89, 0xff, 0xe7, 0xec, 0x89, 0xff, 0xe4, 0xed, 0x87, 0xff, 0xe3, 0xec, 0x88, 0xff, 0xe6, 0xed, 0x87, 0xff, 0xed, 0xec, 0x8a, 0xff, 0xf1, 0xea, 0x8c, 0xff, 0xf4, 0xe2, 0x8b, 0xff, 0xf6, 0xd8, 0x8b, 0xff, 0xf5, 0xc9, 0x8b, 0xff, 0xf3, 0xc3, 0x90, 0xff, 0xf5, 0xc4, 0x92, 0xff, 0xf5, 0xc2, 0x91, 0xff, 0xf6, 0xc6, 0x91, 0xff, 0xf3, 0xd2, 0x91, 0xff, 0xf6, 0xd9, 0x91, 0xff, 0xf6, 0xd9, 0x89, 0xff, 0xf6, 0xd3, 0x80, 0xff, 0xf6, 0xcf, 0x7d, 0xff, 0xf3, 0xbc, 0x75, 0xff, 0xf1, 0xbb, 0x72, 0xff, 0xf2, 0xb9, 0x6b, 0xff, 0xf3, 0xb5, 0x67, 0xff, 0xd1, 0x9a, 0x57, 0xff, 0x97, 0x5b, 0x34, 0xff, 0x95, 0x58, 0x2f, 0xff, 0x98, 0x5b, 0x2f, 0xff, 0x97, 0x5c, 0x2e, 0xff, 0x98, 0x5c, 0x2e, 0xff, 0x98, 0x5b, 0x2d, 0xff, 0x98, 0x5c, 0x2e, 0xff, 0x99, 0x5f, 0x32, 0xff, 0x98, 0x60, 0x32, 0xff, 0x93, 0x56, 0x30, 0xff, 0x94, 0x56, 0x30, 0xff, 0x96, 0x57, 0x30, 0xff, 0x94, 0x55, 0x2f, 0xff, 0x96, 0x59, 0x31, 0xff, 0x91, 0x56, 0x2f, 0xff, 0x8a, 0x4f, 0x29, 0xff, 0x8b, 0x4e, 0x27, 0xff, 0x8a, 0x4e, 0x28, 0xff, 0x89, 0x4f, 0x28, 0xff, 0x89, 0x4f, 0x28, 0xff, 0x8b, 0x4e, 0x27, 0xff, 0x8b, 0x4f, 0x26, 0xff, 0x89, 0x4c, 0x25, 0xff, 0x89, 0x4c, 0x24, 0xff, 0x88, 0x48, 0x21, 0xff, 0x88, 0x49, 0x21, 0xff, 0x87, 0x48, 0x23, 0xff, 0x82, 0x45, 0x26, 0xff, 0x7e, 0x40, 0x27, 0xff, 0x7d, 0x3f, 0x27, 0xff, 0x80, 0x43, 0x29, 0xff, 0x7f, 0x40, 0x27, 0xff, 0x7f, 0x40, 0x26, 0xff, 0x7f, 0x42, 0x28, 0xff, 0x7f, 0x43, 0x28, 0xff, 0x7f, 0x42, 0x28, 0xff, 0x7e, 0x40, 0x27, 0xff, 0x7b, 0x3d, 0x23, 0xff, 0x7a, 0x3b, 0x23, 0xff, 0x79, 0x3b, 0x22, 0xff, 0x79, 0x3a, 0x22, 0xff, 0x77, 0x3b, 0x20, 0xff, 0x77, 0x39, 0x20, 0xff, 0x77, 0x39, 0x1f, 0xff, 0x78, 0x3a, 0x20, 0xff, + 0x76, 0x37, 0x1d, 0xff, 0x75, 0x37, 0x1c, 0xff, 0x74, 0x37, 0x1c, 0xff, 0x75, 0x37, 0x1c, 0xff, 0x75, 0x37, 0x1d, 0xff, 0x76, 0x37, 0x1e, 0xff, 0x77, 0x38, 0x1f, 0xff, 0x78, 0x3a, 0x20, 0xff, 0x7a, 0x3a, 0x22, 0xff, 0x7a, 0x3b, 0x20, 0xff, 0x7a, 0x3b, 0x21, 0xff, 0x7e, 0x3c, 0x22, 0xff, 0x7f, 0x3f, 0x23, 0xff, 0x81, 0x40, 0x23, 0xff, 0x83, 0x43, 0x25, 0xff, 0x87, 0x45, 0x25, 0xff, 0x89, 0x47, 0x26, 0xff, 0x8b, 0x48, 0x27, 0xff, 0x92, 0x4e, 0x28, 0xff, 0x96, 0x54, 0x2c, 0xff, 0x98, 0x57, 0x2f, 0xff, 0x9e, 0x5d, 0x32, 0xff, 0xa5, 0x63, 0x37, 0xff, 0xa9, 0x68, 0x37, 0xff, 0xac, 0x6a, 0x38, 0xff, 0xaf, 0x6e, 0x3a, 0xff, 0xb3, 0x71, 0x3e, 0xff, 0xb6, 0x75, 0x3e, 0xff, 0xba, 0x75, 0x40, 0xff, 0xbf, 0x7b, 0x43, 0xff, 0xc7, 0x81, 0x46, 0xff, 0xcc, 0x85, 0x4b, 0xff, 0xd3, 0x8c, 0x51, 0xff, 0xd2, 0x8b, 0x4f, 0xff, 0xdc, 0x92, 0x55, 0xff, 0xe2, 0x99, 0x5c, 0xff, 0xe7, 0xa1, 0x62, 0xff, 0xeb, 0xa4, 0x65, 0xff, 0xf2, 0xa9, 0x69, 0xff, 0xf6, 0xb0, 0x6c, 0xff, 0xf6, 0xb0, 0x6d, 0xff, 0xf6, 0xb2, 0x70, 0xff, 0xf6, 0xb4, 0x74, 0xff, 0xf4, 0xb9, 0x77, 0xff, 0xf4, 0xb9, 0x76, 0xff, 0xf6, 0xb7, 0x74, 0xff, 0xf6, 0xb9, 0x71, 0xff, 0xf6, 0xb9, 0x72, 0xff, 0xf6, 0xba, 0x71, 0xff, 0xf6, 0xbf, 0x73, 0xff, 0xf6, 0xc3, 0x75, 0xff, 0xf5, 0xcb, 0x7a, 0xff, 0xf6, 0xd4, 0x7b, 0xff, 0xf5, 0xcd, 0x73, 0xff, 0xf3, 0xbd, 0x69, 0xff, 0xf3, 0xb7, 0x68, 0xff, 0xf3, 0xb1, 0x63, 0xff, 0xf5, 0xb2, 0x64, 0xff, 0xf2, 0xb2, 0x5c, 0xff, 0xf2, 0xb7, 0x5d, 0xff, 0xf4, 0xb9, 0x63, 0xff, 0xf1, 0xb8, 0x6e, 0xff, 0xf2, 0xb7, 0x70, 0xff, 0xf3, 0xb5, 0x6e, 0xff, 0xf2, 0xb2, 0x6d, 0xff, 0xf4, 0xb2, 0x6c, 0xff, 0xf4, 0xb0, 0x68, 0xff, 0xf5, 0xaf, 0x69, 0xff, 0xf4, 0xb1, 0x6a, 0xff, 0xf4, 0xad, 0x67, 0xff, 0xf5, 0xa4, 0x5e, 0xff, 0xf6, 0xa3, 0x5f, 0xff, 0xf5, 0xa4, 0x5f, 0xff, 0xf3, 0xa5, 0x5c, 0xff, 0xf1, 0xa2, 0x52, 0xff, 0xf0, 0xa2, 0x51, 0xff, 0xf1, 0xa3, 0x50, 0xff, 0xf2, 0xa1, 0x4e, 0xff, 0xf1, 0xa2, 0x4c, 0xff, 0xf0, 0xa4, 0x4f, 0xff, 0xef, 0xa5, 0x50, 0xff, 0xd8, 0x92, 0x4e, 0xff, 0xc6, 0x85, 0x4d, 0xff, 0xc3, 0x85, 0x4e, 0xff, 0xc5, 0x89, 0x55, 0xff, 0xc3, 0x8b, 0x58, 0xff, 0xc2, 0x8a, 0x5b, 0xff, 0xc1, 0x89, 0x5a, 0xff, 0xbf, 0x88, 0x59, 0xff, 0xc1, 0x89, 0x5c, 0xff, 0xbb, 0x81, 0x57, 0xff, 0xa4, 0x6c, 0x44, 0xff, 0x9b, 0x65, 0x40, 0xff, 0x97, 0x62, 0x3c, 0xff, 0x96, 0x5e, 0x39, 0xff, 0x97, 0x60, 0x37, 0xff, 0x97, 0x5f, 0x36, 0xff, 0x97, 0x5e, 0x36, 0xff, 0x97, 0x5e, 0x35, 0xff, 0x97, 0x60, 0x35, 0xff, 0x97, 0x60, 0x35, 0xff, 0x96, 0x5f, 0x34, 0xff, 0x8d, 0x57, 0x2f, 0xff, 0x83, 0x49, 0x2a, 0xff, 0x82, 0x47, 0x29, 0xff, 0x82, 0x47, 0x29, 0xff, 0x81, 0x47, 0x2a, 0xff, 0x81, 0x47, 0x29, 0xff, 0x81, 0x46, 0x28, 0xff, 0x80, 0x44, 0x28, 0xff, 0x80, 0x44, 0x26, 0xff, 0x80, 0x45, 0x26, 0xff, 0x82, 0x46, 0x27, 0xff, 0x84, 0x48, 0x27, 0xff, 0x86, 0x4b, 0x28, 0xff, 0x83, 0x49, 0x27, 0xff, 0x7e, 0x41, 0x24, 0xff, 0x7d, 0x3f, 0x23, 0xff, 0x7f, 0x43, 0x24, 0xff, 0x81, 0x46, 0x24, 0xff, 0x83, 0x47, 0x26, 0xff, 0x84, 0x47, 0x26, 0xff, 0x86, 0x4a, 0x26, 0xff, 0x88, 0x4c, 0x27, 0xff, 0x8a, 0x4d, 0x29, 0xff, 0x8c, 0x4e, 0x2a, 0xff, 0x8e, 0x51, 0x2b, 0xff, 0x90, 0x53, 0x2e, 0xff, 0x90, 0x54, 0x2e, 0xff, 0x93, 0x57, 0x2f, 0xff, 0x95, 0x58, 0x30, 0xff, 0x97, 0x5b, 0x33, 0xff, 0x98, 0x5d, 0x35, 0xff, 0x9b, 0x62, 0x35, 0xff, 0x9d, 0x64, 0x37, 0xff, 0x9f, 0x64, 0x39, 0xff, 0xa1, 0x65, 0x3a, 0xff, 0xa3, 0x69, 0x3c, 0xff, 0xa4, 0x6b, 0x3f, 0xff, 0xa7, 0x6c, 0x40, 0xff, 0xa9, 0x6f, 0x40, 0xff, 0xab, 0x71, 0x41, 0xff, 0xad, 0x72, 0x40, 0xff, 0xaf, 0x75, 0x3f, 0xff, 0xb3, 0x78, 0x40, 0xff, 0xb6, 0x78, 0x3f, 0xff, 0xb9, 0x7d, 0x40, 0xff, 0xbd, 0x80, 0x43, 0xff, 0xc0, 0x82, 0x42, 0xff, 0xc5, 0x85, 0x42, 0xff, 0xd0, 0x8c, 0x42, 0xff, 0xdb, 0x8f, 0x42, 0xff, 0xe4, 0x93, 0x45, 0xff, 0xef, 0x98, 0x4b, 0xff, 0xf4, 0xa5, 0x55, 0xff, 0xf4, 0xaf, 0x5e, 0xff, 0xf2, 0xb8, 0x67, 0xff, 0xf5, 0xc0, 0x71, 0xff, 0xf3, 0xc7, 0x76, 0xff, 0xf3, 0xdb, 0x7f, 0xff, 0xf3, 0xe6, 0x85, 0xff, 0xf2, 0xe9, 0x86, 0xff, 0xf1, 0xed, 0x85, 0xff, 0xed, 0xec, 0x83, 0xff, 0xef, 0xec, 0x81, 0xff, 0xef, 0xeb, 0x81, 0xff, 0xf0, 0xeb, 0x80, 0xff, 0xeb, 0xe9, 0x81, 0xff, 0xea, 0xec, 0x80, 0xff, 0xec, 0xee, 0x80, 0xff, 0xf1, 0xed, 0x84, 0xff, 0xf4, 0xea, 0x87, 0xff, 0xf7, 0xe5, 0x89, 0xff, 0xf5, 0xdc, 0x89, 0xff, 0xf4, 0xcd, 0x87, 0xff, 0xf4, 0xc8, 0x86, 0xff, 0xf6, 0xc4, 0x82, 0xff, 0xf4, 0xc5, 0x85, 0xff, 0xf4, 0xc2, 0x85, 0xff, 0xf4, 0xc5, 0x84, 0xff, 0xf4, 0xca, 0x86, 0xff, 0xf3, 0xd3, 0x87, 0xff, 0xf4, 0xd4, 0x84, 0xff, 0xf5, 0xcc, 0x7e, 0xff, 0xf3, 0xbf, 0x76, 0xff, 0xf2, 0xb7, 0x6f, 0xff, 0xef, 0xb9, 0x6c, 0xff, 0xf7, 0xb9, 0x68, 0xff, 0xd2, 0x98, 0x59, 0xff, 0x96, 0x58, 0x32, 0xff, 0x91, 0x55, 0x2d, 0xff, 0x98, 0x59, 0x2e, 0xff, 0x98, 0x5b, 0x2f, 0xff, 0x98, 0x5c, 0x2e, 0xff, 0x97, 0x5b, 0x2d, 0xff, 0x99, 0x5f, 0x30, 0xff, 0x99, 0x5d, 0x30, 0xff, 0x98, 0x5f, 0x30, 0xff, 0x97, 0x5a, 0x30, 0xff, 0x94, 0x56, 0x30, 0xff, 0x94, 0x55, 0x2f, 0xff, 0x96, 0x58, 0x30, 0xff, 0x95, 0x58, 0x31, 0xff, 0x95, 0x59, 0x30, 0xff, 0x8e, 0x51, 0x2a, 0xff, 0x8c, 0x51, 0x29, 0xff, 0x8a, 0x4f, 0x28, 0xff, 0x8a, 0x50, 0x29, 0xff, 0x8b, 0x4f, 0x29, 0xff, 0x8b, 0x4f, 0x28, 0xff, 0x8a, 0x4f, 0x26, 0xff, 0x8c, 0x4d, 0x25, 0xff, 0x8a, 0x4b, 0x23, 0xff, 0x88, 0x4a, 0x20, 0xff, 0x88, 0x49, 0x23, 0xff, 0x82, 0x44, 0x28, 0xff, 0x7d, 0x3f, 0x26, 0xff, 0x7c, 0x3f, 0x26, 0xff, 0x7f, 0x40, 0x27, 0xff, 0x7d, 0x3f, 0x26, 0xff, 0x7c, 0x40, 0x25, 0xff, 0x7e, 0x40, 0x27, 0xff, 0x7f, 0x42, 0x28, 0xff, 0x7d, 0x41, 0x28, 0xff, 0x7d, 0x40, 0x27, 0xff, 0x7d, 0x3e, 0x25, 0xff, 0x7b, 0x3b, 0x21, 0xff, 0x79, 0x3b, 0x22, 0xff, 0x77, 0x38, 0x1f, 0xff, 0x76, 0x3a, 0x1f, 0xff, 0x75, 0x38, 0x1c, 0xff, 0x76, 0x38, 0x1c, 0xff, 0x75, 0x37, 0x1c, 0xff, 0x76, 0x36, 0x1c, 0xff, + 0x70, 0x34, 0x19, 0xff, 0x74, 0x36, 0x1c, 0xff, 0x74, 0x37, 0x1a, 0xff, 0x74, 0x37, 0x19, 0xff, 0x72, 0x36, 0x1a, 0xff, 0x74, 0x37, 0x1c, 0xff, 0x76, 0x38, 0x1c, 0xff, 0x77, 0x38, 0x1f, 0xff, 0x78, 0x3a, 0x1f, 0xff, 0x78, 0x38, 0x1e, 0xff, 0x79, 0x3b, 0x1e, 0xff, 0x7b, 0x3b, 0x1e, 0xff, 0x7c, 0x3c, 0x1f, 0xff, 0x80, 0x3f, 0x23, 0xff, 0x81, 0x40, 0x23, 0xff, 0x85, 0x43, 0x25, 0xff, 0x86, 0x44, 0x26, 0xff, 0x8c, 0x48, 0x27, 0xff, 0x90, 0x4d, 0x29, 0xff, 0x93, 0x51, 0x2a, 0xff, 0x98, 0x55, 0x2d, 0xff, 0x9a, 0x56, 0x2f, 0xff, 0xa0, 0x5d, 0x31, 0xff, 0xa6, 0x64, 0x36, 0xff, 0xab, 0x68, 0x38, 0xff, 0xaf, 0x69, 0x39, 0xff, 0xb3, 0x6f, 0x3b, 0xff, 0xb8, 0x72, 0x3e, 0xff, 0xba, 0x72, 0x3e, 0xff, 0xbd, 0x78, 0x40, 0xff, 0xc3, 0x7d, 0x43, 0xff, 0xc9, 0x82, 0x49, 0xff, 0xd0, 0x89, 0x4e, 0xff, 0xd6, 0x8e, 0x52, 0xff, 0xd8, 0x8f, 0x54, 0xff, 0xe1, 0x99, 0x5a, 0xff, 0xe5, 0xa0, 0x63, 0xff, 0xeb, 0xa3, 0x68, 0xff, 0xf2, 0xac, 0x6d, 0xff, 0xf6, 0xb4, 0x70, 0xff, 0xf6, 0xb2, 0x73, 0xff, 0xf5, 0xb4, 0x76, 0xff, 0xf6, 0xb3, 0x78, 0xff, 0xf4, 0xb7, 0x7a, 0xff, 0xf7, 0xba, 0x7a, 0xff, 0xf5, 0xbb, 0x79, 0xff, 0xf4, 0xb9, 0x79, 0xff, 0xf5, 0xbb, 0x74, 0xff, 0xf6, 0xbb, 0x71, 0xff, 0xf6, 0xbc, 0x71, 0xff, 0xf5, 0xc3, 0x75, 0xff, 0xf3, 0xc4, 0x78, 0xff, 0xf6, 0xcf, 0x7d, 0xff, 0xf5, 0xd6, 0x7f, 0xff, 0xf2, 0xc2, 0x72, 0xff, 0xf4, 0xbb, 0x6a, 0xff, 0xf3, 0xb6, 0x62, 0xff, 0xf3, 0xb8, 0x5d, 0xff, 0xf4, 0xb8, 0x5d, 0xff, 0xf4, 0xb3, 0x5a, 0xff, 0xf3, 0xb1, 0x57, 0xff, 0xf2, 0xac, 0x57, 0xff, 0xf1, 0xaa, 0x61, 0xff, 0xf4, 0xb2, 0x6b, 0xff, 0xf4, 0xb2, 0x6e, 0xff, 0xf4, 0xb2, 0x6b, 0xff, 0xf4, 0xb0, 0x69, 0xff, 0xf4, 0xaf, 0x68, 0xff, 0xf5, 0xad, 0x67, 0xff, 0xf5, 0xad, 0x69, 0xff, 0xf4, 0xa8, 0x66, 0xff, 0xf2, 0xa0, 0x5f, 0xff, 0xf3, 0xa3, 0x60, 0xff, 0xf3, 0xa4, 0x5d, 0xff, 0xf1, 0xa4, 0x52, 0xff, 0xf3, 0xa4, 0x51, 0xff, 0xf3, 0xa2, 0x52, 0xff, 0xf2, 0xa4, 0x52, 0xff, 0xf1, 0xa3, 0x53, 0xff, 0xf4, 0xa4, 0x51, 0xff, 0xed, 0x9d, 0x52, 0xff, 0xd7, 0x8d, 0x54, 0xff, 0xd3, 0x8b, 0x56, 0xff, 0xd1, 0x8b, 0x57, 0xff, 0xcc, 0x8b, 0x58, 0xff, 0xca, 0x8d, 0x59, 0xff, 0xc6, 0x8b, 0x58, 0xff, 0xc4, 0x88, 0x58, 0xff, 0xbb, 0x82, 0x54, 0xff, 0xa8, 0x70, 0x45, 0xff, 0x99, 0x61, 0x3a, 0xff, 0x9c, 0x64, 0x3e, 0xff, 0x9a, 0x63, 0x3d, 0xff, 0x99, 0x62, 0x3b, 0xff, 0x99, 0x64, 0x38, 0xff, 0x96, 0x5f, 0x36, 0xff, 0x96, 0x5e, 0x36, 0xff, 0x96, 0x60, 0x35, 0xff, 0x96, 0x61, 0x36, 0xff, 0x97, 0x60, 0x37, 0xff, 0x97, 0x5e, 0x36, 0xff, 0x95, 0x5c, 0x35, 0xff, 0x89, 0x50, 0x2f, 0xff, 0x80, 0x46, 0x29, 0xff, 0x83, 0x48, 0x2b, 0xff, 0x83, 0x47, 0x29, 0xff, 0x81, 0x47, 0x29, 0xff, 0x80, 0x46, 0x29, 0xff, 0x81, 0x45, 0x28, 0xff, 0x80, 0x45, 0x26, 0xff, 0x7f, 0x44, 0x26, 0xff, 0x81, 0x45, 0x26, 0xff, 0x81, 0x47, 0x28, 0xff, 0x82, 0x47, 0x28, 0xff, 0x82, 0x47, 0x28, 0xff, 0x7d, 0x41, 0x24, 0xff, 0x7a, 0x3d, 0x22, 0xff, 0x7d, 0x40, 0x21, 0xff, 0x7d, 0x42, 0x21, 0xff, 0x7e, 0x44, 0x23, 0xff, 0x81, 0x45, 0x23, 0xff, 0x83, 0x47, 0x25, 0xff, 0x84, 0x47, 0x25, 0xff, 0x86, 0x48, 0x27, 0xff, 0x88, 0x4b, 0x29, 0xff, 0x8a, 0x4d, 0x2a, 0xff, 0x8b, 0x4f, 0x2a, 0xff, 0x8c, 0x50, 0x2a, 0xff, 0x8f, 0x54, 0x2d, 0xff, 0x91, 0x56, 0x2f, 0xff, 0x93, 0x58, 0x30, 0xff, 0x94, 0x58, 0x30, 0xff, 0x97, 0x5b, 0x33, 0xff, 0x98, 0x5e, 0x35, 0xff, 0x9a, 0x60, 0x36, 0xff, 0x9c, 0x62, 0x37, 0xff, 0x9e, 0x62, 0x38, 0xff, 0x9f, 0x65, 0x39, 0xff, 0xa1, 0x69, 0x3b, 0xff, 0xa4, 0x6a, 0x3d, 0xff, 0xa7, 0x6c, 0x3f, 0xff, 0xa8, 0x6e, 0x3f, 0xff, 0xaa, 0x6f, 0x3f, 0xff, 0xac, 0x71, 0x3e, 0xff, 0xb0, 0x75, 0x3d, 0xff, 0xb2, 0x77, 0x3f, 0xff, 0xb5, 0x78, 0x3f, 0xff, 0xb7, 0x79, 0x3e, 0xff, 0xbc, 0x7d, 0x3f, 0xff, 0xbf, 0x80, 0x3f, 0xff, 0xc2, 0x81, 0x3f, 0xff, 0xc9, 0x86, 0x3b, 0xff, 0xd2, 0x8c, 0x39, 0xff, 0xde, 0x96, 0x3e, 0xff, 0xe8, 0x98, 0x46, 0xff, 0xef, 0xa2, 0x4d, 0xff, 0xf3, 0xad, 0x57, 0xff, 0xf3, 0xb5, 0x62, 0xff, 0xf4, 0xba, 0x6b, 0xff, 0xf3, 0xbd, 0x70, 0xff, 0xf5, 0xc8, 0x76, 0xff, 0xf4, 0xcd, 0x7b, 0xff, 0xf3, 0xd6, 0x7d, 0xff, 0xf3, 0xe0, 0x7e, 0xff, 0xf2, 0xe2, 0x7e, 0xff, 0xf2, 0xe1, 0x7b, 0xff, 0xf2, 0xe0, 0x78, 0xff, 0xf3, 0xdf, 0x77, 0xff, 0xf1, 0xe2, 0x78, 0xff, 0xee, 0xe3, 0x7a, 0xff, 0xf2, 0xea, 0x7b, 0xff, 0xf3, 0xea, 0x80, 0xff, 0xf4, 0xe7, 0x81, 0xff, 0xf7, 0xe5, 0x84, 0xff, 0xf5, 0xd4, 0x82, 0xff, 0xf7, 0xc5, 0x7d, 0xff, 0xf3, 0xc0, 0x7d, 0xff, 0xf6, 0xc2, 0x7c, 0xff, 0xf7, 0xc5, 0x7c, 0xff, 0xf7, 0xc6, 0x7c, 0xff, 0xf6, 0xc5, 0x7f, 0xff, 0xf4, 0xc5, 0x7c, 0xff, 0xf7, 0xce, 0x7c, 0xff, 0xf4, 0xc9, 0x79, 0xff, 0xf4, 0xc2, 0x78, 0xff, 0xf2, 0xb4, 0x72, 0xff, 0xf3, 0xb8, 0x69, 0xff, 0xf4, 0xb3, 0x65, 0xff, 0xca, 0x8e, 0x4f, 0xff, 0x95, 0x59, 0x31, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x95, 0x59, 0x2d, 0xff, 0x97, 0x57, 0x2d, 0xff, 0x96, 0x58, 0x2b, 0xff, 0x97, 0x5a, 0x2e, 0xff, 0x99, 0x5d, 0x2f, 0xff, 0x99, 0x5e, 0x2f, 0xff, 0x99, 0x5d, 0x2f, 0xff, 0x99, 0x5d, 0x30, 0xff, 0x95, 0x56, 0x2f, 0xff, 0x96, 0x57, 0x30, 0xff, 0x95, 0x58, 0x31, 0xff, 0x96, 0x58, 0x30, 0xff, 0x96, 0x5a, 0x30, 0xff, 0x97, 0x5c, 0x31, 0xff, 0x8c, 0x50, 0x2a, 0xff, 0x8b, 0x51, 0x2a, 0xff, 0x8c, 0x53, 0x29, 0xff, 0x8b, 0x51, 0x29, 0xff, 0x8c, 0x51, 0x28, 0xff, 0x8c, 0x50, 0x27, 0xff, 0x8c, 0x4d, 0x25, 0xff, 0x8c, 0x4e, 0x23, 0xff, 0x87, 0x48, 0x24, 0xff, 0x82, 0x44, 0x27, 0xff, 0x7c, 0x3f, 0x27, 0xff, 0x7b, 0x3f, 0x26, 0xff, 0x7d, 0x40, 0x26, 0xff, 0x7e, 0x40, 0x26, 0xff, 0x7c, 0x3f, 0x25, 0xff, 0x7b, 0x3f, 0x26, 0xff, 0x7d, 0x40, 0x27, 0xff, 0x7e, 0x40, 0x27, 0xff, 0x7d, 0x3f, 0x26, 0xff, 0x7c, 0x3f, 0x25, 0xff, 0x78, 0x3b, 0x21, 0xff, 0x78, 0x3b, 0x21, 0xff, 0x77, 0x38, 0x1f, 0xff, 0x77, 0x38, 0x1f, 0xff, 0x74, 0x37, 0x1c, 0xff, 0x75, 0x36, 0x1c, 0xff, 0x72, 0x37, 0x1c, 0xff, 0x71, 0x35, 0x1c, 0xff, 0x71, 0x35, 0x1c, 0xff, + 0x72, 0x32, 0x19, 0xff, 0x71, 0x34, 0x18, 0xff, 0x70, 0x33, 0x18, 0xff, 0x72, 0x35, 0x1a, 0xff, 0x74, 0x35, 0x1b, 0xff, 0x73, 0x36, 0x1b, 0xff, 0x75, 0x36, 0x1a, 0xff, 0x73, 0x34, 0x1b, 0xff, 0x74, 0x35, 0x1b, 0xff, 0x76, 0x37, 0x1b, 0xff, 0x78, 0x38, 0x1e, 0xff, 0x7a, 0x39, 0x1c, 0xff, 0x7b, 0x3b, 0x1f, 0xff, 0x7c, 0x3c, 0x20, 0xff, 0x7f, 0x3e, 0x21, 0xff, 0x81, 0x3f, 0x22, 0xff, 0x8a, 0x48, 0x27, 0xff, 0x8f, 0x4d, 0x2a, 0xff, 0x92, 0x50, 0x2b, 0xff, 0x9a, 0x57, 0x30, 0xff, 0xa6, 0x64, 0x3a, 0xff, 0xaf, 0x6f, 0x42, 0xff, 0xb3, 0x73, 0x49, 0xff, 0xb3, 0x73, 0x46, 0xff, 0xb7, 0x76, 0x49, 0xff, 0xb8, 0x78, 0x49, 0xff, 0xbf, 0x7b, 0x4a, 0xff, 0xc3, 0x7f, 0x4c, 0xff, 0xcb, 0x83, 0x52, 0xff, 0xd5, 0x89, 0x56, 0xff, 0xe4, 0x90, 0x59, 0xff, 0xe7, 0x90, 0x59, 0xff, 0xe2, 0x93, 0x59, 0xff, 0xdd, 0x94, 0x5a, 0xff, 0xe1, 0x95, 0x5b, 0xff, 0xe5, 0x9a, 0x60, 0xff, 0xe5, 0xa0, 0x62, 0xff, 0xeb, 0xa4, 0x68, 0xff, 0xf2, 0xad, 0x6d, 0xff, 0xf5, 0xb2, 0x72, 0xff, 0xf6, 0xb3, 0x7a, 0xff, 0xf7, 0xb4, 0x7b, 0xff, 0xf5, 0xb5, 0x7d, 0xff, 0xf7, 0xb6, 0x7b, 0xff, 0xf7, 0xba, 0x7d, 0xff, 0xf7, 0xbc, 0x7c, 0xff, 0xf7, 0xbe, 0x7c, 0xff, 0xf7, 0xc2, 0x7a, 0xff, 0xf6, 0xc0, 0x76, 0xff, 0xf6, 0xc2, 0x75, 0xff, 0xf6, 0xc0, 0x73, 0xff, 0xf6, 0xc3, 0x76, 0xff, 0xf5, 0xcb, 0x79, 0xff, 0xf6, 0xd4, 0x7d, 0xff, 0xf6, 0xdc, 0x82, 0xff, 0xf2, 0xc5, 0x6e, 0xff, 0xf3, 0xbc, 0x62, 0xff, 0xf2, 0xb8, 0x5d, 0xff, 0xf3, 0xbd, 0x5f, 0xff, 0xf4, 0xb7, 0x5c, 0xff, 0xf4, 0xb5, 0x5c, 0xff, 0xf0, 0xa3, 0x57, 0xff, 0xf3, 0xac, 0x5c, 0xff, 0xf3, 0xa9, 0x5b, 0xff, 0xf2, 0xa8, 0x5b, 0xff, 0xf3, 0xad, 0x65, 0xff, 0xf4, 0xb0, 0x69, 0xff, 0xf3, 0xad, 0x68, 0xff, 0xf4, 0xb0, 0x6b, 0xff, 0xf6, 0xb1, 0x6e, 0xff, 0xf5, 0xac, 0x6c, 0xff, 0xf4, 0xaa, 0x68, 0xff, 0xf5, 0xa6, 0x61, 0xff, 0xf7, 0xa7, 0x61, 0xff, 0xf3, 0xa9, 0x5a, 0xff, 0xf1, 0xa8, 0x56, 0xff, 0xf3, 0xa6, 0x57, 0xff, 0xf2, 0xa9, 0x56, 0xff, 0xf4, 0xaa, 0x55, 0xff, 0xf5, 0xa7, 0x58, 0xff, 0xeb, 0x9e, 0x57, 0xff, 0xdf, 0x91, 0x5a, 0xff, 0xdc, 0x92, 0x5b, 0xff, 0xd0, 0x8e, 0x58, 0xff, 0xcb, 0x8a, 0x58, 0xff, 0xc6, 0x89, 0x59, 0xff, 0xb7, 0x7d, 0x51, 0xff, 0xa1, 0x69, 0x3e, 0xff, 0x9b, 0x62, 0x3b, 0xff, 0x9e, 0x67, 0x3f, 0xff, 0x9e, 0x67, 0x3f, 0xff, 0x9d, 0x66, 0x3f, 0xff, 0x9d, 0x66, 0x3b, 0xff, 0x9b, 0x64, 0x38, 0xff, 0x99, 0x63, 0x36, 0xff, 0x98, 0x61, 0x37, 0xff, 0x97, 0x60, 0x36, 0xff, 0x95, 0x5f, 0x35, 0xff, 0x95, 0x5e, 0x36, 0xff, 0x96, 0x5f, 0x35, 0xff, 0x96, 0x61, 0x37, 0xff, 0x8e, 0x56, 0x32, 0xff, 0x82, 0x46, 0x29, 0xff, 0x83, 0x49, 0x2b, 0xff, 0x83, 0x48, 0x2c, 0xff, 0x84, 0x47, 0x2b, 0xff, 0x83, 0x47, 0x29, 0xff, 0x82, 0x47, 0x29, 0xff, 0x80, 0x45, 0x28, 0xff, 0x80, 0x44, 0x26, 0xff, 0x80, 0x44, 0x26, 0xff, 0x7f, 0x44, 0x26, 0xff, 0x81, 0x46, 0x27, 0xff, 0x81, 0x45, 0x27, 0xff, 0x7b, 0x3e, 0x23, 0xff, 0x78, 0x3b, 0x21, 0xff, 0x7a, 0x3e, 0x21, 0xff, 0x7b, 0x3f, 0x20, 0xff, 0x7b, 0x3f, 0x21, 0xff, 0x7c, 0x40, 0x22, 0xff, 0x7f, 0x42, 0x22, 0xff, 0x81, 0x44, 0x23, 0xff, 0x82, 0x44, 0x24, 0xff, 0x85, 0x46, 0x25, 0xff, 0x87, 0x4a, 0x27, 0xff, 0x88, 0x4c, 0x27, 0xff, 0x89, 0x4d, 0x29, 0xff, 0x8b, 0x4f, 0x2a, 0xff, 0x8c, 0x50, 0x2d, 0xff, 0x8f, 0x53, 0x2f, 0xff, 0x92, 0x56, 0x30, 0xff, 0x93, 0x58, 0x30, 0xff, 0x94, 0x59, 0x32, 0xff, 0x97, 0x5e, 0x34, 0xff, 0x99, 0x5f, 0x35, 0xff, 0x9a, 0x61, 0x35, 0xff, 0x9c, 0x63, 0x37, 0xff, 0x9d, 0x65, 0x3a, 0xff, 0x9f, 0x67, 0x3a, 0xff, 0xa2, 0x68, 0x3d, 0xff, 0xa3, 0x68, 0x3d, 0xff, 0xa5, 0x6b, 0x3e, 0xff, 0xa9, 0x6e, 0x3e, 0xff, 0xaa, 0x6e, 0x3c, 0xff, 0xaa, 0x70, 0x3c, 0xff, 0xad, 0x73, 0x3c, 0xff, 0xb1, 0x74, 0x3d, 0xff, 0xb5, 0x76, 0x3f, 0xff, 0xb8, 0x79, 0x3e, 0xff, 0xbc, 0x7b, 0x3d, 0xff, 0xbd, 0x7d, 0x3b, 0xff, 0xc3, 0x82, 0x3a, 0xff, 0xc7, 0x86, 0x39, 0xff, 0xcd, 0x8b, 0x3b, 0xff, 0xd5, 0x90, 0x3e, 0xff, 0xdf, 0x97, 0x44, 0xff, 0xe8, 0xa1, 0x4d, 0xff, 0xf2, 0xa9, 0x55, 0xff, 0xf3, 0xae, 0x5d, 0xff, 0xf3, 0xb1, 0x66, 0xff, 0xf3, 0xb8, 0x6b, 0xff, 0xf3, 0xba, 0x6e, 0xff, 0xf4, 0xc0, 0x74, 0xff, 0xf5, 0xc6, 0x74, 0xff, 0xf4, 0xcd, 0x76, 0xff, 0xf3, 0xd3, 0x73, 0xff, 0xf3, 0xcf, 0x73, 0xff, 0xf3, 0xcb, 0x6e, 0xff, 0xf3, 0xd2, 0x70, 0xff, 0xf2, 0xd4, 0x6f, 0xff, 0xf0, 0xda, 0x73, 0xff, 0xf1, 0xdf, 0x73, 0xff, 0xf5, 0xe1, 0x77, 0xff, 0xf4, 0xe4, 0x7b, 0xff, 0xf5, 0xdd, 0x7c, 0xff, 0xf4, 0xc8, 0x79, 0xff, 0xf6, 0xc1, 0x73, 0xff, 0xf5, 0xc2, 0x76, 0xff, 0xf6, 0xc5, 0x76, 0xff, 0xf5, 0xc3, 0x77, 0xff, 0xf3, 0xc4, 0x74, 0xff, 0xf5, 0xc6, 0x75, 0xff, 0xf5, 0xc6, 0x74, 0xff, 0xf3, 0xc2, 0x6f, 0xff, 0xf4, 0xbf, 0x74, 0xff, 0xf2, 0xb0, 0x6b, 0xff, 0xf3, 0xb1, 0x6d, 0xff, 0xf0, 0xb6, 0x62, 0xff, 0xb9, 0x83, 0x48, 0xff, 0x92, 0x57, 0x31, 0xff, 0x92, 0x53, 0x2c, 0xff, 0x97, 0x57, 0x2e, 0xff, 0x97, 0x58, 0x2c, 0xff, 0x97, 0x57, 0x2d, 0xff, 0x98, 0x5b, 0x2e, 0xff, 0x98, 0x5b, 0x2f, 0xff, 0x99, 0x5c, 0x2e, 0xff, 0x99, 0x5e, 0x2f, 0xff, 0x99, 0x5d, 0x2f, 0xff, 0x96, 0x58, 0x30, 0xff, 0x95, 0x57, 0x30, 0xff, 0x95, 0x5a, 0x31, 0xff, 0x96, 0x58, 0x30, 0xff, 0x96, 0x5a, 0x30, 0xff, 0x96, 0x5c, 0x33, 0xff, 0x94, 0x58, 0x31, 0xff, 0x8d, 0x50, 0x2a, 0xff, 0x8c, 0x51, 0x2b, 0xff, 0x8c, 0x52, 0x29, 0xff, 0x8c, 0x54, 0x28, 0xff, 0x8d, 0x50, 0x27, 0xff, 0x8c, 0x4e, 0x26, 0xff, 0x88, 0x49, 0x27, 0xff, 0x80, 0x42, 0x28, 0xff, 0x7f, 0x3f, 0x27, 0xff, 0x7c, 0x3f, 0x27, 0xff, 0x7c, 0x3f, 0x26, 0xff, 0x7f, 0x40, 0x27, 0xff, 0x7d, 0x3f, 0x26, 0xff, 0x7a, 0x3d, 0x25, 0xff, 0x7a, 0x3e, 0x25, 0xff, 0x7b, 0x3f, 0x26, 0xff, 0x7b, 0x3d, 0x25, 0xff, 0x7a, 0x3d, 0x24, 0xff, 0x79, 0x3c, 0x22, 0xff, 0x77, 0x3a, 0x21, 0xff, 0x77, 0x38, 0x1c, 0xff, 0x75, 0x36, 0x1c, 0xff, 0x74, 0x36, 0x1a, 0xff, 0x73, 0x36, 0x1b, 0xff, 0x72, 0x35, 0x19, 0xff, 0x72, 0x34, 0x19, 0xff, 0x71, 0x34, 0x17, 0xff, 0x71, 0x33, 0x19, 0xff, + 0x6e, 0x32, 0x17, 0xff, 0x6e, 0x30, 0x16, 0xff, 0x6e, 0x32, 0x16, 0xff, 0x6f, 0x30, 0x16, 0xff, 0x6f, 0x33, 0x17, 0xff, 0x70, 0x31, 0x17, 0xff, 0x70, 0x30, 0x16, 0xff, 0x71, 0x32, 0x17, 0xff, 0x73, 0x34, 0x17, 0xff, 0x73, 0x35, 0x18, 0xff, 0x75, 0x35, 0x1a, 0xff, 0x76, 0x36, 0x1a, 0xff, 0x76, 0x36, 0x1b, 0xff, 0x7d, 0x3c, 0x20, 0xff, 0x89, 0x48, 0x27, 0xff, 0x91, 0x51, 0x2e, 0xff, 0x97, 0x54, 0x31, 0xff, 0x9a, 0x58, 0x34, 0xff, 0x9d, 0x5b, 0x35, 0xff, 0x9f, 0x5e, 0x37, 0xff, 0xa0, 0x60, 0x37, 0xff, 0xa2, 0x5f, 0x38, 0xff, 0xa6, 0x65, 0x3a, 0xff, 0xa8, 0x66, 0x3c, 0xff, 0xab, 0x6a, 0x3d, 0xff, 0xb1, 0x6e, 0x40, 0xff, 0xb6, 0x73, 0x42, 0xff, 0xbb, 0x77, 0x46, 0xff, 0xc0, 0x7a, 0x47, 0xff, 0xca, 0x81, 0x4d, 0xff, 0xdf, 0x8d, 0x56, 0xff, 0xf0, 0x97, 0x5c, 0xff, 0xf7, 0x9f, 0x63, 0xff, 0xf4, 0xa2, 0x68, 0xff, 0xef, 0xa3, 0x6a, 0xff, 0xee, 0x9e, 0x68, 0xff, 0xee, 0xa2, 0x6b, 0xff, 0xf0, 0xa5, 0x6c, 0xff, 0xf3, 0xab, 0x6f, 0xff, 0xf3, 0xb2, 0x76, 0xff, 0xf7, 0xb4, 0x7d, 0xff, 0xf7, 0xb6, 0x7f, 0xff, 0xf7, 0xb9, 0x82, 0xff, 0xf5, 0xb9, 0x81, 0xff, 0xf5, 0xbb, 0x82, 0xff, 0xf6, 0xbe, 0x81, 0xff, 0xf5, 0xc0, 0x83, 0xff, 0xf7, 0xc4, 0x7e, 0xff, 0xf6, 0xc3, 0x7a, 0xff, 0xf5, 0xc1, 0x77, 0xff, 0xf6, 0xc3, 0x74, 0xff, 0xf6, 0xc4, 0x75, 0xff, 0xf5, 0xc7, 0x77, 0xff, 0xf5, 0xcd, 0x7a, 0xff, 0xf7, 0xd3, 0x7d, 0xff, 0xf4, 0xd4, 0x7c, 0xff, 0xf2, 0xc6, 0x6f, 0xff, 0xf3, 0xbd, 0x63, 0xff, 0xf4, 0xbf, 0x62, 0xff, 0xf4, 0xbd, 0x5f, 0xff, 0xef, 0xb2, 0x5d, 0xff, 0xf2, 0xaa, 0x5c, 0xff, 0xf1, 0xa9, 0x5b, 0xff, 0xf4, 0xa6, 0x59, 0xff, 0xf4, 0xa8, 0x57, 0xff, 0xf1, 0xa8, 0x56, 0xff, 0xf4, 0xa6, 0x57, 0xff, 0xf3, 0xaa, 0x5b, 0xff, 0xf5, 0xb0, 0x65, 0xff, 0xf6, 0xb0, 0x68, 0xff, 0xf5, 0xad, 0x68, 0xff, 0xf6, 0xac, 0x69, 0xff, 0xf4, 0xa8, 0x68, 0xff, 0xf2, 0xa5, 0x60, 0xff, 0xf0, 0xa8, 0x58, 0xff, 0xef, 0xa9, 0x57, 0xff, 0xed, 0xaa, 0x57, 0xff, 0xf0, 0xab, 0x57, 0xff, 0xf3, 0xa8, 0x53, 0xff, 0xe1, 0x9d, 0x4a, 0xff, 0xca, 0x8a, 0x4a, 0xff, 0xbe, 0x79, 0x44, 0xff, 0xb6, 0x77, 0x44, 0xff, 0xae, 0x75, 0x48, 0xff, 0xa8, 0x70, 0x43, 0xff, 0xa5, 0x6f, 0x42, 0xff, 0xa2, 0x6d, 0x42, 0xff, 0xa2, 0x6b, 0x41, 0xff, 0xa2, 0x69, 0x40, 0xff, 0xa0, 0x68, 0x40, 0xff, 0x9f, 0x69, 0x3f, 0xff, 0x9e, 0x67, 0x3c, 0xff, 0x9c, 0x65, 0x39, 0xff, 0x9c, 0x65, 0x37, 0xff, 0x9b, 0x65, 0x38, 0xff, 0x99, 0x63, 0x38, 0xff, 0x98, 0x60, 0x37, 0xff, 0x98, 0x61, 0x37, 0xff, 0x96, 0x5f, 0x35, 0xff, 0x97, 0x63, 0x36, 0xff, 0x93, 0x5c, 0x35, 0xff, 0x86, 0x4b, 0x2c, 0xff, 0x83, 0x48, 0x2a, 0xff, 0x84, 0x4a, 0x2b, 0xff, 0x84, 0x4a, 0x2c, 0xff, 0x83, 0x49, 0x2b, 0xff, 0x83, 0x46, 0x29, 0xff, 0x81, 0x46, 0x28, 0xff, 0x81, 0x45, 0x28, 0xff, 0x81, 0x44, 0x27, 0xff, 0x7f, 0x45, 0x27, 0xff, 0x7f, 0x44, 0x27, 0xff, 0x7e, 0x45, 0x27, 0xff, 0x7a, 0x40, 0x23, 0xff, 0x77, 0x3b, 0x20, 0xff, 0x78, 0x3c, 0x22, 0xff, 0x78, 0x3c, 0x22, 0xff, 0x79, 0x3d, 0x1f, 0xff, 0x7a, 0x3f, 0x1f, 0xff, 0x7c, 0x3f, 0x21, 0xff, 0x7c, 0x42, 0x22, 0xff, 0x7f, 0x44, 0x23, 0xff, 0x81, 0x45, 0x23, 0xff, 0x83, 0x47, 0x25, 0xff, 0x84, 0x46, 0x26, 0xff, 0x86, 0x48, 0x26, 0xff, 0x88, 0x4b, 0x28, 0xff, 0x89, 0x4d, 0x29, 0xff, 0x8b, 0x4f, 0x2c, 0xff, 0x8d, 0x52, 0x2f, 0xff, 0x8e, 0x54, 0x2f, 0xff, 0x90, 0x55, 0x2f, 0xff, 0x92, 0x57, 0x30, 0xff, 0x94, 0x59, 0x32, 0xff, 0x96, 0x5b, 0x33, 0xff, 0x98, 0x5d, 0x35, 0xff, 0x99, 0x60, 0x37, 0xff, 0x9a, 0x62, 0x37, 0xff, 0x9d, 0x64, 0x38, 0xff, 0x9f, 0x66, 0x3a, 0xff, 0xa1, 0x67, 0x3b, 0xff, 0xa3, 0x68, 0x3b, 0xff, 0xa5, 0x6a, 0x3c, 0xff, 0xa7, 0x6e, 0x3d, 0xff, 0xa9, 0x6f, 0x3a, 0xff, 0xab, 0x6f, 0x3a, 0xff, 0xae, 0x71, 0x3a, 0xff, 0xb0, 0x74, 0x3a, 0xff, 0xb3, 0x77, 0x3b, 0xff, 0xb6, 0x77, 0x3a, 0xff, 0xb9, 0x7a, 0x3b, 0xff, 0xbd, 0x7c, 0x38, 0xff, 0xc2, 0x81, 0x36, 0xff, 0xc5, 0x84, 0x36, 0xff, 0xcb, 0x8b, 0x39, 0xff, 0xd4, 0x91, 0x40, 0xff, 0xd9, 0x96, 0x45, 0xff, 0xe3, 0x9f, 0x4b, 0xff, 0xed, 0xa5, 0x52, 0xff, 0xef, 0xa7, 0x5a, 0xff, 0xf2, 0xab, 0x60, 0xff, 0xf5, 0xaf, 0x66, 0xff, 0xf6, 0xb1, 0x69, 0xff, 0xf4, 0xb5, 0x6c, 0xff, 0xf4, 0xb9, 0x6e, 0xff, 0xf3, 0xbf, 0x6b, 0xff, 0xf3, 0xc3, 0x6a, 0xff, 0xf2, 0xc1, 0x68, 0xff, 0xf4, 0xc2, 0x68, 0xff, 0xf3, 0xc5, 0x69, 0xff, 0xf3, 0xc7, 0x6a, 0xff, 0xf3, 0xce, 0x6f, 0xff, 0xf3, 0xd3, 0x70, 0xff, 0xf2, 0xd7, 0x72, 0xff, 0xf3, 0xdb, 0x74, 0xff, 0xf3, 0xd0, 0x74, 0xff, 0xf6, 0xc3, 0x70, 0xff, 0xf4, 0xc2, 0x6f, 0xff, 0xf5, 0xc4, 0x6f, 0xff, 0xf7, 0xc6, 0x70, 0xff, 0xf5, 0xc3, 0x6b, 0xff, 0xf4, 0xc1, 0x6c, 0xff, 0xf3, 0xc2, 0x6b, 0xff, 0xf3, 0xbe, 0x6e, 0xff, 0xf4, 0xb8, 0x6b, 0xff, 0xf4, 0xae, 0x67, 0xff, 0xf5, 0xa7, 0x68, 0xff, 0xf3, 0xb1, 0x5f, 0xff, 0xb1, 0x7c, 0x45, 0xff, 0x94, 0x57, 0x30, 0xff, 0x92, 0x54, 0x2e, 0xff, 0x96, 0x57, 0x2d, 0xff, 0x96, 0x56, 0x2b, 0xff, 0x97, 0x58, 0x2d, 0xff, 0x98, 0x5b, 0x2f, 0xff, 0x97, 0x5b, 0x2f, 0xff, 0x98, 0x5b, 0x2e, 0xff, 0x98, 0x5a, 0x2e, 0xff, 0x99, 0x5d, 0x2f, 0xff, 0x96, 0x5a, 0x2f, 0xff, 0x93, 0x58, 0x30, 0xff, 0x95, 0x59, 0x2f, 0xff, 0x95, 0x58, 0x2f, 0xff, 0x96, 0x59, 0x31, 0xff, 0x96, 0x5c, 0x34, 0xff, 0x96, 0x59, 0x35, 0xff, 0x90, 0x55, 0x31, 0xff, 0x8d, 0x51, 0x2c, 0xff, 0x8d, 0x53, 0x2b, 0xff, 0x8d, 0x53, 0x28, 0xff, 0x8d, 0x50, 0x28, 0xff, 0x86, 0x48, 0x27, 0xff, 0x82, 0x43, 0x27, 0xff, 0x80, 0x43, 0x27, 0xff, 0x7c, 0x3f, 0x26, 0xff, 0x7c, 0x3f, 0x26, 0xff, 0x7d, 0x40, 0x27, 0xff, 0x7c, 0x3f, 0x26, 0xff, 0x7b, 0x3d, 0x24, 0xff, 0x7a, 0x3e, 0x25, 0xff, 0x7a, 0x3c, 0x23, 0xff, 0x79, 0x3c, 0x22, 0xff, 0x79, 0x3c, 0x22, 0xff, 0x79, 0x39, 0x22, 0xff, 0x76, 0x39, 0x1f, 0xff, 0x76, 0x38, 0x1e, 0xff, 0x74, 0x37, 0x1c, 0xff, 0x73, 0x36, 0x1a, 0xff, 0x72, 0x34, 0x1a, 0xff, 0x71, 0x34, 0x19, 0xff, 0x71, 0x33, 0x19, 0xff, 0x70, 0x32, 0x17, 0xff, 0x6f, 0x31, 0x17, 0xff, 0x70, 0x31, 0x17, 0xff, + 0x6a, 0x30, 0x14, 0xff, 0x6c, 0x2f, 0x14, 0xff, 0x6b, 0x2f, 0x15, 0xff, 0x6b, 0x2f, 0x16, 0xff, 0x6b, 0x30, 0x16, 0xff, 0x6b, 0x30, 0x15, 0xff, 0x6b, 0x30, 0x16, 0xff, 0x6e, 0x31, 0x16, 0xff, 0x6f, 0x30, 0x16, 0xff, 0x70, 0x32, 0x16, 0xff, 0x71, 0x31, 0x15, 0xff, 0x77, 0x36, 0x19, 0xff, 0x8c, 0x4e, 0x2f, 0xff, 0x8e, 0x4d, 0x2e, 0xff, 0x8d, 0x4d, 0x2e, 0xff, 0x8f, 0x4f, 0x2e, 0xff, 0x92, 0x51, 0x2e, 0xff, 0x94, 0x50, 0x2f, 0xff, 0x96, 0x54, 0x2f, 0xff, 0x9a, 0x57, 0x31, 0xff, 0x9b, 0x59, 0x33, 0xff, 0x9e, 0x5d, 0x34, 0xff, 0xa2, 0x60, 0x36, 0xff, 0xa6, 0x64, 0x37, 0xff, 0xaa, 0x68, 0x3b, 0xff, 0xb0, 0x6d, 0x3e, 0xff, 0xb6, 0x70, 0x41, 0xff, 0xbb, 0x75, 0x46, 0xff, 0xc1, 0x81, 0x4c, 0xff, 0xc9, 0x83, 0x4e, 0xff, 0xcc, 0x86, 0x4e, 0xff, 0xd7, 0x8c, 0x52, 0xff, 0xdb, 0x8f, 0x56, 0xff, 0xdd, 0x90, 0x56, 0xff, 0xed, 0x97, 0x5d, 0xff, 0xf6, 0x9b, 0x61, 0xff, 0xf6, 0xa0, 0x68, 0xff, 0xf5, 0xa5, 0x6c, 0xff, 0xf6, 0xad, 0x72, 0xff, 0xf5, 0xb3, 0x79, 0xff, 0xf7, 0xb3, 0x7c, 0xff, 0xf7, 0xb6, 0x84, 0xff, 0xf7, 0xba, 0x87, 0xff, 0xf7, 0xc0, 0x86, 0xff, 0xf7, 0xbf, 0x86, 0xff, 0xf7, 0xc0, 0x86, 0xff, 0xf7, 0xc4, 0x87, 0xff, 0xf7, 0xc7, 0x84, 0xff, 0xf7, 0xc7, 0x7d, 0xff, 0xf6, 0xc6, 0x7a, 0xff, 0xf6, 0xc2, 0x73, 0xff, 0xf6, 0xbf, 0x6f, 0xff, 0xf6, 0xc7, 0x71, 0xff, 0xf5, 0xc9, 0x76, 0xff, 0xf4, 0xcb, 0x78, 0xff, 0xf7, 0xd0, 0x7c, 0xff, 0xf6, 0xd2, 0x7d, 0xff, 0xf2, 0xd0, 0x7a, 0xff, 0xf5, 0xbc, 0x62, 0xff, 0xf5, 0xbf, 0x63, 0xff, 0xef, 0xb3, 0x5f, 0xff, 0xef, 0xaa, 0x59, 0xff, 0xf4, 0xac, 0x59, 0xff, 0xf3, 0xa7, 0x58, 0xff, 0xf4, 0xa4, 0x56, 0xff, 0xf3, 0xa6, 0x55, 0xff, 0xf4, 0xa6, 0x56, 0xff, 0xf2, 0xa6, 0x5c, 0xff, 0xf6, 0xb1, 0x61, 0xff, 0xf5, 0xac, 0x62, 0xff, 0xf6, 0xad, 0x65, 0xff, 0xf5, 0xab, 0x65, 0xff, 0xf4, 0xa7, 0x63, 0xff, 0xef, 0xa1, 0x57, 0xff, 0xe1, 0x9c, 0x3d, 0xff, 0xdc, 0x9a, 0x34, 0xff, 0xd8, 0x9b, 0x37, 0xff, 0xe2, 0x99, 0x30, 0xff, 0xe2, 0x9c, 0x34, 0xff, 0xd7, 0x98, 0x3f, 0xff, 0xa0, 0x61, 0x30, 0xff, 0xa9, 0x6b, 0x39, 0xff, 0xaa, 0x6e, 0x40, 0xff, 0xa9, 0x71, 0x44, 0xff, 0xa7, 0x6e, 0x43, 0xff, 0xa8, 0x70, 0x44, 0xff, 0xa7, 0x70, 0x45, 0xff, 0xa5, 0x6f, 0x45, 0xff, 0xa2, 0x6d, 0x44, 0xff, 0xa2, 0x69, 0x3d, 0xff, 0xa0, 0x68, 0x3a, 0xff, 0x9f, 0x66, 0x39, 0xff, 0x9e, 0x67, 0x38, 0xff, 0x9d, 0x67, 0x39, 0xff, 0x9b, 0x65, 0x38, 0xff, 0x9a, 0x63, 0x39, 0xff, 0x9b, 0x63, 0x39, 0xff, 0x99, 0x62, 0x38, 0xff, 0x97, 0x61, 0x35, 0xff, 0x97, 0x5e, 0x36, 0xff, 0x8c, 0x50, 0x2e, 0xff, 0x82, 0x47, 0x2a, 0xff, 0x83, 0x4a, 0x2d, 0xff, 0x84, 0x4a, 0x2d, 0xff, 0x85, 0x4b, 0x2b, 0xff, 0x83, 0x49, 0x2b, 0xff, 0x83, 0x49, 0x2a, 0xff, 0x83, 0x48, 0x29, 0xff, 0x82, 0x45, 0x26, 0xff, 0x80, 0x45, 0x26, 0xff, 0x81, 0x45, 0x28, 0xff, 0x82, 0x46, 0x28, 0xff, 0x7d, 0x42, 0x24, 0xff, 0x76, 0x3b, 0x20, 0xff, 0x76, 0x3b, 0x21, 0xff, 0x79, 0x3c, 0x1f, 0xff, 0x79, 0x3a, 0x20, 0xff, 0x78, 0x3a, 0x1f, 0xff, 0x79, 0x3c, 0x1e, 0xff, 0x7b, 0x3e, 0x22, 0xff, 0x7c, 0x3f, 0x23, 0xff, 0x7c, 0x43, 0x22, 0xff, 0x7f, 0x44, 0x23, 0xff, 0x81, 0x43, 0x22, 0xff, 0x82, 0x45, 0x24, 0xff, 0x83, 0x46, 0x26, 0xff, 0x84, 0x48, 0x26, 0xff, 0x88, 0x4c, 0x29, 0xff, 0x89, 0x4e, 0x2a, 0xff, 0x8b, 0x4f, 0x2d, 0xff, 0x8d, 0x52, 0x2f, 0xff, 0x8d, 0x54, 0x2f, 0xff, 0x90, 0x55, 0x2f, 0xff, 0x92, 0x55, 0x31, 0xff, 0x94, 0x58, 0x32, 0xff, 0x96, 0x5a, 0x34, 0xff, 0x96, 0x5b, 0x34, 0xff, 0x99, 0x5e, 0x35, 0xff, 0x9b, 0x60, 0x37, 0xff, 0x9d, 0x62, 0x37, 0xff, 0x9f, 0x65, 0x39, 0xff, 0xa0, 0x66, 0x3a, 0xff, 0xa3, 0x67, 0x3b, 0xff, 0xa6, 0x6a, 0x3a, 0xff, 0xa7, 0x6c, 0x3c, 0xff, 0xa8, 0x6e, 0x39, 0xff, 0xab, 0x6e, 0x39, 0xff, 0xae, 0x71, 0x39, 0xff, 0xb0, 0x74, 0x3a, 0xff, 0xb2, 0x73, 0x39, 0xff, 0xb7, 0x79, 0x39, 0xff, 0xb8, 0x78, 0x36, 0xff, 0xbb, 0x79, 0x36, 0xff, 0xc0, 0x7e, 0x35, 0xff, 0xc4, 0x82, 0x35, 0xff, 0xc7, 0x86, 0x36, 0xff, 0xcb, 0x8a, 0x3c, 0xff, 0xd1, 0x94, 0x42, 0xff, 0xdb, 0x98, 0x48, 0xff, 0xe3, 0x9d, 0x50, 0xff, 0xe9, 0xa3, 0x55, 0xff, 0xf0, 0xa1, 0x5c, 0xff, 0xf2, 0xa9, 0x63, 0xff, 0xf4, 0xac, 0x65, 0xff, 0xf6, 0xb3, 0x69, 0xff, 0xf4, 0xb3, 0x67, 0xff, 0xf2, 0xb5, 0x63, 0xff, 0xf4, 0xb7, 0x64, 0xff, 0xf3, 0xb7, 0x63, 0xff, 0xf1, 0xb7, 0x63, 0xff, 0xf2, 0xba, 0x65, 0xff, 0xf2, 0xbc, 0x65, 0xff, 0xf3, 0xbf, 0x67, 0xff, 0xf3, 0xc3, 0x68, 0xff, 0xf4, 0xd1, 0x6c, 0xff, 0xf1, 0xc6, 0x6e, 0xff, 0xf2, 0xc2, 0x6a, 0xff, 0xf3, 0xbb, 0x67, 0xff, 0xf4, 0xbe, 0x68, 0xff, 0xf0, 0xbd, 0x65, 0xff, 0xf4, 0xbe, 0x68, 0xff, 0xf3, 0xbc, 0x68, 0xff, 0xf3, 0xb7, 0x65, 0xff, 0xf5, 0xb9, 0x65, 0xff, 0xf5, 0xb5, 0x64, 0xff, 0xf4, 0xad, 0x60, 0xff, 0xf3, 0xa8, 0x62, 0xff, 0xf5, 0xa6, 0x60, 0xff, 0xae, 0x7a, 0x3e, 0xff, 0x92, 0x56, 0x2f, 0xff, 0x92, 0x54, 0x2e, 0xff, 0x96, 0x57, 0x2b, 0xff, 0x96, 0x58, 0x2c, 0xff, 0x98, 0x5a, 0x2f, 0xff, 0x97, 0x5b, 0x2d, 0xff, 0x97, 0x5a, 0x2d, 0xff, 0x98, 0x5b, 0x2e, 0xff, 0x99, 0x5d, 0x2f, 0xff, 0x99, 0x5d, 0x2f, 0xff, 0x98, 0x5e, 0x30, 0xff, 0x96, 0x5b, 0x30, 0xff, 0x94, 0x58, 0x2e, 0xff, 0x96, 0x58, 0x30, 0xff, 0x95, 0x58, 0x32, 0xff, 0x96, 0x5b, 0x35, 0xff, 0x98, 0x5b, 0x37, 0xff, 0x96, 0x58, 0x35, 0xff, 0x8f, 0x52, 0x2e, 0xff, 0x8d, 0x53, 0x2a, 0xff, 0x8d, 0x52, 0x29, 0xff, 0x84, 0x49, 0x28, 0xff, 0x83, 0x44, 0x28, 0xff, 0x81, 0x45, 0x28, 0xff, 0x7d, 0x3f, 0x27, 0xff, 0x7c, 0x3f, 0x25, 0xff, 0x7f, 0x40, 0x27, 0xff, 0x7c, 0x3f, 0x25, 0xff, 0x7b, 0x3d, 0x24, 0xff, 0x7a, 0x3c, 0x23, 0xff, 0x7a, 0x3a, 0x21, 0xff, 0x78, 0x3b, 0x21, 0xff, 0x77, 0x39, 0x20, 0xff, 0x75, 0x39, 0x1f, 0xff, 0x75, 0x3a, 0x1e, 0xff, 0x74, 0x36, 0x1c, 0xff, 0x73, 0x35, 0x1a, 0xff, 0x72, 0x34, 0x19, 0xff, 0x6e, 0x32, 0x19, 0xff, 0x70, 0x31, 0x18, 0xff, 0x6e, 0x32, 0x16, 0xff, 0x6d, 0x32, 0x16, 0xff, 0x6d, 0x30, 0x16, 0xff, 0x6d, 0x30, 0x16, 0xff, 0x6c, 0x2f, 0x16, 0xff, + 0x6a, 0x2d, 0x13, 0xff, 0x69, 0x2f, 0x11, 0xff, 0x69, 0x2e, 0x14, 0xff, 0x6a, 0x2f, 0x13, 0xff, 0x6a, 0x2f, 0x13, 0xff, 0x6a, 0x2f, 0x12, 0xff, 0x6a, 0x2f, 0x14, 0xff, 0x6a, 0x2e, 0x15, 0xff, 0x6c, 0x2e, 0x13, 0xff, 0x73, 0x35, 0x19, 0xff, 0x84, 0x45, 0x28, 0xff, 0x8a, 0x4c, 0x2e, 0xff, 0x89, 0x48, 0x2a, 0xff, 0x89, 0x49, 0x2a, 0xff, 0x88, 0x47, 0x2b, 0xff, 0x8b, 0x4a, 0x2a, 0xff, 0x8b, 0x4a, 0x2a, 0xff, 0x8e, 0x4d, 0x2b, 0xff, 0x91, 0x4f, 0x2c, 0xff, 0x93, 0x51, 0x2e, 0xff, 0x96, 0x54, 0x2e, 0xff, 0x99, 0x57, 0x30, 0xff, 0x9e, 0x5b, 0x33, 0xff, 0xa3, 0x62, 0x35, 0xff, 0xa7, 0x65, 0x37, 0xff, 0xac, 0x69, 0x3b, 0xff, 0xb0, 0x6e, 0x3f, 0xff, 0xb5, 0x72, 0x40, 0xff, 0xbc, 0x78, 0x45, 0xff, 0xc5, 0x81, 0x4c, 0xff, 0xcf, 0x87, 0x4f, 0xff, 0xd9, 0x8b, 0x52, 0xff, 0xc7, 0x83, 0x4b, 0xff, 0xd4, 0x89, 0x52, 0xff, 0xe1, 0x90, 0x56, 0xff, 0xf1, 0x97, 0x5d, 0xff, 0xf6, 0x9d, 0x65, 0xff, 0xf5, 0xa4, 0x6a, 0xff, 0xf4, 0xab, 0x6d, 0xff, 0xf6, 0xaf, 0x73, 0xff, 0xf5, 0xb5, 0x7c, 0xff, 0xf7, 0xb8, 0x7e, 0xff, 0xf5, 0xbc, 0x84, 0xff, 0xf7, 0xc2, 0x88, 0xff, 0xf7, 0xc8, 0x8b, 0xff, 0xf7, 0xca, 0x8e, 0xff, 0xf5, 0xcd, 0x8f, 0xff, 0xf7, 0xcc, 0x8a, 0xff, 0xf7, 0xd1, 0x83, 0xff, 0xf5, 0xce, 0x79, 0xff, 0xf6, 0xc8, 0x70, 0xff, 0xf5, 0xc5, 0x6d, 0xff, 0xf5, 0xc6, 0x70, 0xff, 0xf6, 0xc5, 0x74, 0xff, 0xf5, 0xc2, 0x75, 0xff, 0xf5, 0xc8, 0x78, 0xff, 0xf7, 0xce, 0x7d, 0xff, 0xf4, 0xca, 0x7a, 0xff, 0xf3, 0xd0, 0x75, 0xff, 0xf1, 0xbc, 0x63, 0xff, 0xec, 0xb5, 0x60, 0xff, 0xf1, 0xb1, 0x5d, 0xff, 0xed, 0xae, 0x5b, 0xff, 0xf1, 0xaa, 0x59, 0xff, 0xf1, 0xa7, 0x59, 0xff, 0xf4, 0xa7, 0x57, 0xff, 0xf3, 0xa5, 0x57, 0xff, 0xf5, 0xab, 0x5b, 0xff, 0xf6, 0xa9, 0x61, 0xff, 0xf4, 0xa7, 0x60, 0xff, 0xf3, 0xaa, 0x60, 0xff, 0xf1, 0xab, 0x63, 0xff, 0xf5, 0xa9, 0x66, 0xff, 0xf0, 0xa6, 0x5f, 0xff, 0xdd, 0x9c, 0x3f, 0xff, 0xdf, 0xa3, 0x35, 0xff, 0xda, 0x99, 0x2f, 0xff, 0xde, 0x9d, 0x33, 0xff, 0xdd, 0x9b, 0x32, 0xff, 0xb7, 0x7c, 0x33, 0xff, 0xa5, 0x68, 0x39, 0xff, 0xab, 0x71, 0x3f, 0xff, 0xaa, 0x72, 0x41, 0xff, 0xaa, 0x70, 0x43, 0xff, 0xaa, 0x73, 0x44, 0xff, 0xa9, 0x72, 0x45, 0xff, 0xa8, 0x73, 0x44, 0xff, 0xa7, 0x73, 0x48, 0xff, 0xa6, 0x70, 0x46, 0xff, 0xa4, 0x6c, 0x3f, 0xff, 0xa2, 0x6c, 0x3b, 0xff, 0xa2, 0x69, 0x3b, 0xff, 0xa0, 0x68, 0x3b, 0xff, 0x9e, 0x68, 0x3c, 0xff, 0x9d, 0x67, 0x39, 0xff, 0x9d, 0x65, 0x39, 0xff, 0x9c, 0x64, 0x3a, 0xff, 0x9a, 0x64, 0x37, 0xff, 0x99, 0x65, 0x39, 0xff, 0x93, 0x5c, 0x35, 0xff, 0x86, 0x4b, 0x2c, 0xff, 0x85, 0x4b, 0x2b, 0xff, 0x85, 0x4b, 0x2b, 0xff, 0x85, 0x4b, 0x2c, 0xff, 0x83, 0x4b, 0x2d, 0xff, 0x83, 0x49, 0x2a, 0xff, 0x84, 0x47, 0x29, 0xff, 0x82, 0x47, 0x29, 0xff, 0x81, 0x47, 0x27, 0xff, 0x82, 0x46, 0x27, 0xff, 0x81, 0x47, 0x28, 0xff, 0x7e, 0x43, 0x26, 0xff, 0x77, 0x3c, 0x21, 0xff, 0x75, 0x3a, 0x20, 0xff, 0x76, 0x3a, 0x20, 0xff, 0x75, 0x3c, 0x1f, 0xff, 0x76, 0x3b, 0x1f, 0xff, 0x78, 0x3c, 0x1e, 0xff, 0x79, 0x3b, 0x1e, 0xff, 0x79, 0x3c, 0x1f, 0xff, 0x79, 0x3e, 0x1f, 0xff, 0x7b, 0x3f, 0x20, 0xff, 0x7b, 0x41, 0x21, 0xff, 0x7d, 0x42, 0x21, 0xff, 0x80, 0x43, 0x22, 0xff, 0x82, 0x44, 0x24, 0xff, 0x83, 0x48, 0x26, 0xff, 0x84, 0x4a, 0x27, 0xff, 0x86, 0x4c, 0x29, 0xff, 0x88, 0x4d, 0x2a, 0xff, 0x8a, 0x50, 0x2d, 0xff, 0x8c, 0x53, 0x2e, 0xff, 0x8e, 0x53, 0x2f, 0xff, 0x8f, 0x55, 0x2f, 0xff, 0x91, 0x58, 0x31, 0xff, 0x94, 0x5a, 0x33, 0xff, 0x94, 0x5b, 0x32, 0xff, 0x97, 0x5d, 0x34, 0xff, 0x99, 0x5f, 0x35, 0xff, 0x9a, 0x62, 0x36, 0xff, 0x9c, 0x63, 0x37, 0xff, 0x9e, 0x64, 0x38, 0xff, 0xa0, 0x66, 0x39, 0xff, 0xa2, 0x67, 0x39, 0xff, 0xa4, 0x69, 0x39, 0xff, 0xa6, 0x6b, 0x37, 0xff, 0xa8, 0x6c, 0x37, 0xff, 0xaa, 0x6d, 0x36, 0xff, 0xac, 0x6f, 0x36, 0xff, 0xae, 0x70, 0x37, 0xff, 0xb1, 0x71, 0x35, 0xff, 0xb5, 0x74, 0x35, 0xff, 0xba, 0x77, 0x36, 0xff, 0xbe, 0x7b, 0x37, 0xff, 0xc2, 0x7f, 0x38, 0xff, 0xc6, 0x82, 0x3c, 0xff, 0xca, 0x88, 0x42, 0xff, 0xd0, 0x8f, 0x47, 0xff, 0xd7, 0x94, 0x4b, 0xff, 0xde, 0x98, 0x50, 0xff, 0xe6, 0x9a, 0x58, 0xff, 0xef, 0xa0, 0x5b, 0xff, 0xf1, 0xa4, 0x60, 0xff, 0xf4, 0xa6, 0x63, 0xff, 0xf3, 0xa9, 0x64, 0xff, 0xf5, 0xa8, 0x63, 0xff, 0xf6, 0xab, 0x5f, 0xff, 0xf3, 0xb0, 0x5e, 0xff, 0xf4, 0xae, 0x5d, 0xff, 0xf3, 0xb3, 0x5d, 0xff, 0xf4, 0xb1, 0x5e, 0xff, 0xf4, 0xb1, 0x5f, 0xff, 0xf5, 0xb7, 0x64, 0xff, 0xf5, 0xb9, 0x67, 0xff, 0xf5, 0xbd, 0x6e, 0xff, 0xf3, 0xbc, 0x6f, 0xff, 0xf5, 0xbd, 0x73, 0xff, 0xf4, 0xb9, 0x6e, 0xff, 0xf4, 0xb7, 0x6d, 0xff, 0xf4, 0xba, 0x6f, 0xff, 0xf3, 0xba, 0x6d, 0xff, 0xf5, 0xb9, 0x6f, 0xff, 0xf6, 0xb9, 0x6d, 0xff, 0xf6, 0xb7, 0x6d, 0xff, 0xf5, 0xb7, 0x6c, 0xff, 0xf5, 0xad, 0x68, 0xff, 0xf5, 0xa6, 0x65, 0xff, 0xf6, 0xa8, 0x67, 0xff, 0xab, 0x77, 0x45, 0xff, 0x93, 0x59, 0x31, 0xff, 0x94, 0x56, 0x2f, 0xff, 0x95, 0x58, 0x2c, 0xff, 0x96, 0x58, 0x2b, 0xff, 0x97, 0x5b, 0x2e, 0xff, 0x99, 0x58, 0x2f, 0xff, 0x98, 0x5a, 0x2d, 0xff, 0x97, 0x5b, 0x2c, 0xff, 0x98, 0x5d, 0x2e, 0xff, 0x98, 0x5e, 0x2f, 0xff, 0x99, 0x5b, 0x2e, 0xff, 0x97, 0x5a, 0x2f, 0xff, 0x94, 0x58, 0x2e, 0xff, 0x94, 0x58, 0x2f, 0xff, 0x94, 0x59, 0x32, 0xff, 0x96, 0x58, 0x34, 0xff, 0x97, 0x5a, 0x36, 0xff, 0x98, 0x5b, 0x38, 0xff, 0x96, 0x59, 0x33, 0xff, 0x95, 0x58, 0x31, 0xff, 0x86, 0x47, 0x29, 0xff, 0x86, 0x47, 0x2a, 0xff, 0x85, 0x48, 0x29, 0xff, 0x7f, 0x43, 0x28, 0xff, 0x7d, 0x42, 0x27, 0xff, 0x7e, 0x40, 0x26, 0xff, 0x7c, 0x3f, 0x26, 0xff, 0x7b, 0x3e, 0x25, 0xff, 0x7a, 0x3c, 0x22, 0xff, 0x7a, 0x39, 0x21, 0xff, 0x79, 0x39, 0x1e, 0xff, 0x77, 0x38, 0x1e, 0xff, 0x74, 0x37, 0x1b, 0xff, 0x74, 0x36, 0x1b, 0xff, 0x74, 0x36, 0x1b, 0xff, 0x71, 0x33, 0x19, 0xff, 0x6f, 0x33, 0x17, 0xff, 0x6f, 0x30, 0x16, 0xff, 0x6d, 0x31, 0x16, 0xff, 0x6e, 0x30, 0x16, 0xff, 0x6b, 0x2f, 0x16, 0xff, 0x6c, 0x30, 0x14, 0xff, 0x6b, 0x2f, 0x16, 0xff, 0x6b, 0x30, 0x15, 0xff, 0x6b, 0x2d, 0x14, 0xff, + 0x68, 0x2c, 0x10, 0xff, 0x67, 0x2d, 0x12, 0xff, 0x68, 0x2c, 0x10, 0xff, 0x67, 0x2c, 0x10, 0xff, 0x68, 0x2c, 0x10, 0xff, 0x68, 0x2c, 0x13, 0xff, 0x66, 0x2a, 0x0f, 0xff, 0x70, 0x33, 0x1a, 0xff, 0x7c, 0x3d, 0x24, 0xff, 0x84, 0x46, 0x2b, 0xff, 0x83, 0x44, 0x28, 0xff, 0x83, 0x45, 0x28, 0xff, 0x84, 0x43, 0x28, 0xff, 0x84, 0x43, 0x28, 0xff, 0x84, 0x44, 0x27, 0xff, 0x85, 0x45, 0x27, 0xff, 0x87, 0x46, 0x28, 0xff, 0x89, 0x48, 0x28, 0xff, 0x8b, 0x4a, 0x28, 0xff, 0x8e, 0x4d, 0x2a, 0xff, 0x92, 0x50, 0x2c, 0xff, 0x95, 0x53, 0x2e, 0xff, 0x9a, 0x57, 0x2f, 0xff, 0x9d, 0x5c, 0x32, 0xff, 0xa4, 0x61, 0x35, 0xff, 0xa8, 0x63, 0x37, 0xff, 0xae, 0x6a, 0x3b, 0xff, 0xb5, 0x6f, 0x40, 0xff, 0xbd, 0x79, 0x46, 0xff, 0xc0, 0x7b, 0x48, 0xff, 0xc9, 0x84, 0x4e, 0xff, 0xc4, 0x7f, 0x49, 0xff, 0xc5, 0x80, 0x49, 0xff, 0xcd, 0x86, 0x4e, 0xff, 0xd9, 0x8a, 0x52, 0xff, 0xe7, 0x93, 0x56, 0xff, 0xf3, 0x98, 0x60, 0xff, 0xf7, 0xa1, 0x69, 0xff, 0xf5, 0xaa, 0x6e, 0xff, 0xf7, 0xb3, 0x76, 0xff, 0xf5, 0xb4, 0x79, 0xff, 0xf6, 0xb8, 0x7d, 0xff, 0xf8, 0xbe, 0x81, 0xff, 0xf5, 0xc3, 0x85, 0xff, 0xf6, 0xc8, 0x8a, 0xff, 0xf6, 0xd3, 0x91, 0xff, 0xf6, 0xd8, 0x94, 0xff, 0xf6, 0xda, 0x8f, 0xff, 0xf6, 0xe0, 0x86, 0xff, 0xf6, 0xdf, 0x7f, 0xff, 0xf8, 0xd6, 0x75, 0xff, 0xf5, 0xc9, 0x72, 0xff, 0xf5, 0xc7, 0x72, 0xff, 0xf5, 0xc1, 0x75, 0xff, 0xf6, 0xc4, 0x78, 0xff, 0xf5, 0xc5, 0x7b, 0xff, 0xf6, 0xc7, 0x7c, 0xff, 0xf5, 0xc7, 0x7c, 0xff, 0xf5, 0xc8, 0x7a, 0xff, 0xf3, 0xcb, 0x74, 0xff, 0xea, 0xb5, 0x65, 0xff, 0xee, 0xb4, 0x63, 0xff, 0xf1, 0xb4, 0x61, 0xff, 0xf1, 0xaf, 0x5d, 0xff, 0xf4, 0xab, 0x5c, 0xff, 0xf4, 0xa9, 0x57, 0xff, 0xf5, 0xa8, 0x5a, 0xff, 0xf4, 0xaa, 0x5f, 0xff, 0xf5, 0xa9, 0x5f, 0xff, 0xf4, 0xa3, 0x5d, 0xff, 0xf4, 0xa5, 0x5f, 0xff, 0xf4, 0xa8, 0x60, 0xff, 0xf3, 0xa5, 0x61, 0xff, 0xf3, 0xac, 0x65, 0xff, 0xe9, 0xb1, 0x55, 0xff, 0xd8, 0x96, 0x2e, 0xff, 0xdf, 0x98, 0x31, 0xff, 0xdd, 0x9b, 0x30, 0xff, 0xcc, 0x91, 0x32, 0xff, 0xad, 0x72, 0x37, 0xff, 0xad, 0x70, 0x3e, 0xff, 0xae, 0x72, 0x42, 0xff, 0xad, 0x73, 0x44, 0xff, 0xac, 0x73, 0x45, 0xff, 0xac, 0x75, 0x47, 0xff, 0xab, 0x73, 0x44, 0xff, 0xaa, 0x73, 0x47, 0xff, 0xa9, 0x72, 0x46, 0xff, 0xa8, 0x71, 0x44, 0xff, 0xa6, 0x70, 0x42, 0xff, 0xa3, 0x6c, 0x3c, 0xff, 0xa3, 0x6c, 0x3c, 0xff, 0xa2, 0x6c, 0x3e, 0xff, 0xa0, 0x69, 0x3b, 0xff, 0x9e, 0x68, 0x3a, 0xff, 0x9d, 0x67, 0x3b, 0xff, 0x9b, 0x65, 0x38, 0xff, 0x9b, 0x63, 0x39, 0xff, 0x99, 0x60, 0x38, 0xff, 0x8f, 0x56, 0x31, 0xff, 0x86, 0x4b, 0x2c, 0xff, 0x85, 0x4b, 0x2e, 0xff, 0x85, 0x4b, 0x2d, 0xff, 0x85, 0x4a, 0x2b, 0xff, 0x84, 0x49, 0x2a, 0xff, 0x84, 0x4b, 0x2a, 0xff, 0x83, 0x4a, 0x2a, 0xff, 0x83, 0x47, 0x28, 0xff, 0x83, 0x47, 0x27, 0xff, 0x82, 0x47, 0x29, 0xff, 0x80, 0x45, 0x28, 0xff, 0x79, 0x3d, 0x24, 0xff, 0x76, 0x3a, 0x22, 0xff, 0x77, 0x3b, 0x23, 0xff, 0x76, 0x3a, 0x22, 0xff, 0x75, 0x3a, 0x1f, 0xff, 0x75, 0x3a, 0x1e, 0xff, 0x77, 0x39, 0x1d, 0xff, 0x77, 0x3a, 0x1d, 0xff, 0x78, 0x3c, 0x1f, 0xff, 0x78, 0x3c, 0x1e, 0xff, 0x79, 0x3c, 0x20, 0xff, 0x7a, 0x3e, 0x22, 0xff, 0x7b, 0x41, 0x23, 0xff, 0x7e, 0x42, 0x22, 0xff, 0x80, 0x42, 0x23, 0xff, 0x82, 0x45, 0x25, 0xff, 0x84, 0x48, 0x26, 0xff, 0x85, 0x4a, 0x27, 0xff, 0x87, 0x4d, 0x2a, 0xff, 0x88, 0x4f, 0x2c, 0xff, 0x8a, 0x50, 0x2d, 0xff, 0x8b, 0x51, 0x2e, 0xff, 0x8d, 0x52, 0x2f, 0xff, 0x8f, 0x54, 0x2f, 0xff, 0x90, 0x58, 0x30, 0xff, 0x93, 0x58, 0x32, 0xff, 0x94, 0x5a, 0x33, 0xff, 0x96, 0x5c, 0x34, 0xff, 0x98, 0x5d, 0x34, 0xff, 0x9a, 0x60, 0x35, 0xff, 0x9c, 0x62, 0x35, 0xff, 0x9d, 0x64, 0x37, 0xff, 0x9f, 0x65, 0x37, 0xff, 0xa1, 0x66, 0x37, 0xff, 0xa3, 0x66, 0x36, 0xff, 0xa4, 0x67, 0x33, 0xff, 0xa5, 0x68, 0x33, 0xff, 0xa8, 0x68, 0x32, 0xff, 0xab, 0x6a, 0x31, 0xff, 0xae, 0x6c, 0x30, 0xff, 0xb1, 0x6f, 0x31, 0xff, 0xb5, 0x72, 0x33, 0xff, 0xba, 0x74, 0x34, 0xff, 0xbe, 0x78, 0x35, 0xff, 0xc1, 0x7d, 0x35, 0xff, 0xc5, 0x81, 0x3b, 0xff, 0xca, 0x86, 0x41, 0xff, 0xce, 0x8e, 0x44, 0xff, 0xd5, 0x92, 0x4a, 0xff, 0xda, 0x96, 0x50, 0xff, 0xdf, 0x99, 0x53, 0xff, 0xe7, 0x9a, 0x57, 0xff, 0xec, 0x9f, 0x5d, 0xff, 0xf1, 0xa5, 0x61, 0xff, 0xf4, 0xa7, 0x64, 0xff, 0xf5, 0xac, 0x64, 0xff, 0xf7, 0xac, 0x63, 0xff, 0xf5, 0xac, 0x60, 0xff, 0xf5, 0xaa, 0x5f, 0xff, 0xf6, 0xab, 0x60, 0xff, 0xf5, 0xae, 0x62, 0xff, 0xf3, 0xae, 0x63, 0xff, 0xf5, 0xb0, 0x63, 0xff, 0xf5, 0xb4, 0x66, 0xff, 0xf4, 0xb8, 0x6a, 0xff, 0xf4, 0xb3, 0x68, 0xff, 0xf5, 0xb6, 0x6b, 0xff, 0xf5, 0xb4, 0x67, 0xff, 0xf3, 0xb2, 0x67, 0xff, 0xf5, 0xb4, 0x66, 0xff, 0xf6, 0xb2, 0x64, 0xff, 0xf4, 0xb1, 0x65, 0xff, 0xf6, 0xb2, 0x67, 0xff, 0xf5, 0xb4, 0x66, 0xff, 0xf5, 0xab, 0x64, 0xff, 0xf6, 0xa2, 0x62, 0xff, 0xf6, 0x9f, 0x63, 0xff, 0xab, 0x74, 0x44, 0xff, 0x94, 0x57, 0x30, 0xff, 0x95, 0x56, 0x31, 0xff, 0x96, 0x58, 0x2e, 0xff, 0x99, 0x5b, 0x30, 0xff, 0x99, 0x5c, 0x30, 0xff, 0x99, 0x5c, 0x2f, 0xff, 0x97, 0x5c, 0x2e, 0xff, 0x98, 0x5c, 0x2d, 0xff, 0x96, 0x5d, 0x2e, 0xff, 0x98, 0x5c, 0x2e, 0xff, 0x98, 0x5d, 0x2f, 0xff, 0x98, 0x5c, 0x2f, 0xff, 0x94, 0x59, 0x2e, 0xff, 0x94, 0x59, 0x30, 0xff, 0x95, 0x59, 0x32, 0xff, 0x97, 0x5a, 0x36, 0xff, 0x98, 0x5c, 0x39, 0xff, 0x9a, 0x5c, 0x3a, 0xff, 0x95, 0x59, 0x36, 0xff, 0x89, 0x49, 0x2c, 0xff, 0x86, 0x49, 0x29, 0xff, 0x85, 0x48, 0x2a, 0xff, 0x82, 0x43, 0x29, 0xff, 0x7f, 0x41, 0x27, 0xff, 0x7c, 0x40, 0x25, 0xff, 0x7d, 0x41, 0x26, 0xff, 0x7b, 0x3d, 0x25, 0xff, 0x7b, 0x3c, 0x23, 0xff, 0x7a, 0x3a, 0x22, 0xff, 0x79, 0x39, 0x20, 0xff, 0x77, 0x37, 0x1e, 0xff, 0x76, 0x38, 0x1c, 0xff, 0x71, 0x35, 0x1a, 0xff, 0x71, 0x31, 0x19, 0xff, 0x6e, 0x31, 0x17, 0xff, 0x6e, 0x31, 0x17, 0xff, 0x6e, 0x30, 0x16, 0xff, 0x6c, 0x30, 0x15, 0xff, 0x6b, 0x2f, 0x16, 0xff, 0x6c, 0x2f, 0x15, 0xff, 0x6b, 0x2e, 0x16, 0xff, 0x6a, 0x2f, 0x12, 0xff, 0x69, 0x2e, 0x13, 0xff, 0x68, 0x2d, 0x14, 0xff, 0x68, 0x2c, 0x12, 0xff, + 0x65, 0x2c, 0x10, 0xff, 0x65, 0x2c, 0x0f, 0xff, 0x65, 0x2c, 0x0f, 0xff, 0x65, 0x2d, 0x10, 0xff, 0x65, 0x2b, 0x0f, 0xff, 0x68, 0x30, 0x16, 0xff, 0x77, 0x3a, 0x20, 0xff, 0x80, 0x41, 0x28, 0xff, 0x80, 0x41, 0x27, 0xff, 0x7f, 0x40, 0x27, 0xff, 0x7e, 0x3f, 0x25, 0xff, 0x7f, 0x40, 0x25, 0xff, 0x7f, 0x40, 0x26, 0xff, 0x7f, 0x3f, 0x25, 0xff, 0x7f, 0x3f, 0x25, 0xff, 0x80, 0x40, 0x25, 0xff, 0x83, 0x41, 0x26, 0xff, 0x85, 0x44, 0x27, 0xff, 0x87, 0x48, 0x27, 0xff, 0x8a, 0x47, 0x28, 0xff, 0x8c, 0x4b, 0x29, 0xff, 0x92, 0x4f, 0x2c, 0xff, 0x95, 0x54, 0x2d, 0xff, 0x99, 0x56, 0x2f, 0xff, 0x9d, 0x5b, 0x31, 0xff, 0xa3, 0x5f, 0x33, 0xff, 0xa8, 0x66, 0x37, 0xff, 0xb4, 0x70, 0x3e, 0xff, 0xbc, 0x78, 0x43, 0xff, 0xc1, 0x7b, 0x47, 0xff, 0xc1, 0x7d, 0x49, 0xff, 0xc0, 0x7b, 0x47, 0xff, 0xc5, 0x7e, 0x49, 0xff, 0xcb, 0x82, 0x4d, 0xff, 0xd8, 0x8a, 0x52, 0xff, 0xe2, 0x91, 0x55, 0xff, 0xf3, 0x97, 0x5c, 0xff, 0xf7, 0x9e, 0x61, 0xff, 0xf6, 0xa8, 0x69, 0xff, 0xf6, 0xb1, 0x71, 0xff, 0xf3, 0xb5, 0x78, 0xff, 0xf6, 0xb9, 0x7b, 0xff, 0xf8, 0xbe, 0x7e, 0xff, 0xf8, 0xc7, 0x82, 0xff, 0xf5, 0xca, 0x88, 0xff, 0xf8, 0xd5, 0x8d, 0xff, 0xf5, 0xdc, 0x94, 0xff, 0xf6, 0xe1, 0x9a, 0xff, 0xf7, 0xe3, 0x95, 0xff, 0xf7, 0xe9, 0x8d, 0xff, 0xf6, 0xe6, 0x82, 0xff, 0xf6, 0xdc, 0x7b, 0xff, 0xf5, 0xcb, 0x77, 0xff, 0xf5, 0xc5, 0x79, 0xff, 0xf5, 0xc3, 0x78, 0xff, 0xf4, 0xc2, 0x77, 0xff, 0xf5, 0xc5, 0x7b, 0xff, 0xf5, 0xc6, 0x7c, 0xff, 0xf5, 0xc5, 0x7b, 0xff, 0xf6, 0xc9, 0x7e, 0xff, 0xef, 0xc2, 0x78, 0xff, 0xe8, 0xb1, 0x65, 0xff, 0xf0, 0xb8, 0x65, 0xff, 0xf1, 0xb2, 0x62, 0xff, 0xf3, 0xac, 0x5d, 0xff, 0xf3, 0xaa, 0x5b, 0xff, 0xf5, 0xa9, 0x5b, 0xff, 0xf4, 0xa8, 0x5e, 0xff, 0xf0, 0xa6, 0x5e, 0xff, 0xf2, 0xa4, 0x5d, 0xff, 0xf3, 0xa5, 0x5e, 0xff, 0xf3, 0xa7, 0x5f, 0xff, 0xf3, 0xa3, 0x5e, 0xff, 0xf3, 0xac, 0x63, 0xff, 0xef, 0xbe, 0x64, 0xff, 0xe0, 0xa9, 0x47, 0xff, 0xde, 0x95, 0x2d, 0xff, 0xdf, 0xa0, 0x33, 0xff, 0xd0, 0x95, 0x3c, 0xff, 0xaa, 0x6c, 0x3b, 0xff, 0xb0, 0x75, 0x40, 0xff, 0xaf, 0x77, 0x45, 0xff, 0xaf, 0x77, 0x49, 0xff, 0xaf, 0x78, 0x48, 0xff, 0xae, 0x75, 0x47, 0xff, 0xad, 0x75, 0x46, 0xff, 0xac, 0x74, 0x46, 0xff, 0xab, 0x73, 0x44, 0xff, 0xab, 0x76, 0x44, 0xff, 0xa9, 0x74, 0x44, 0xff, 0xa5, 0x70, 0x40, 0xff, 0xa4, 0x6d, 0x3d, 0xff, 0xa4, 0x6d, 0x3c, 0xff, 0xa3, 0x6b, 0x3d, 0xff, 0xa0, 0x67, 0x3a, 0xff, 0x9f, 0x69, 0x3b, 0xff, 0x9c, 0x66, 0x39, 0xff, 0x9d, 0x65, 0x38, 0xff, 0x97, 0x60, 0x37, 0xff, 0x8d, 0x53, 0x2f, 0xff, 0x89, 0x4c, 0x2d, 0xff, 0x87, 0x4c, 0x2e, 0xff, 0x86, 0x4c, 0x2d, 0xff, 0x85, 0x4b, 0x2b, 0xff, 0x85, 0x4b, 0x2a, 0xff, 0x84, 0x4a, 0x29, 0xff, 0x84, 0x48, 0x29, 0xff, 0x83, 0x48, 0x28, 0xff, 0x83, 0x4a, 0x28, 0xff, 0x83, 0x49, 0x29, 0xff, 0x7d, 0x42, 0x26, 0xff, 0x78, 0x3c, 0x23, 0xff, 0x79, 0x3c, 0x23, 0xff, 0x78, 0x3d, 0x23, 0xff, 0x77, 0x3a, 0x21, 0xff, 0x76, 0x3a, 0x1f, 0xff, 0x74, 0x39, 0x1c, 0xff, 0x75, 0x38, 0x1d, 0xff, 0x76, 0x3b, 0x1f, 0xff, 0x78, 0x3b, 0x1f, 0xff, 0x78, 0x3b, 0x20, 0xff, 0x78, 0x3b, 0x20, 0xff, 0x79, 0x3b, 0x1f, 0xff, 0x79, 0x3c, 0x1f, 0xff, 0x7c, 0x3f, 0x20, 0xff, 0x7c, 0x41, 0x22, 0xff, 0x7f, 0x43, 0x24, 0xff, 0x82, 0x44, 0x26, 0xff, 0x82, 0x47, 0x26, 0xff, 0x85, 0x4b, 0x29, 0xff, 0x87, 0x4c, 0x2b, 0xff, 0x87, 0x4d, 0x2c, 0xff, 0x8a, 0x50, 0x2d, 0xff, 0x8c, 0x51, 0x2e, 0xff, 0x8c, 0x52, 0x2f, 0xff, 0x8e, 0x55, 0x2e, 0xff, 0x91, 0x57, 0x2f, 0xff, 0x93, 0x59, 0x31, 0xff, 0x95, 0x5b, 0x33, 0xff, 0x96, 0x5b, 0x34, 0xff, 0x97, 0x5e, 0x34, 0xff, 0x99, 0x61, 0x35, 0xff, 0x9a, 0x5f, 0x34, 0xff, 0x9b, 0x5d, 0x32, 0xff, 0x9d, 0x5e, 0x31, 0xff, 0x9d, 0x5f, 0x30, 0xff, 0x9f, 0x60, 0x2f, 0xff, 0xa1, 0x60, 0x2e, 0xff, 0xa5, 0x64, 0x2f, 0xff, 0xa7, 0x66, 0x2f, 0xff, 0xab, 0x69, 0x2f, 0xff, 0xae, 0x6c, 0x30, 0xff, 0xb2, 0x6e, 0x30, 0xff, 0xb6, 0x70, 0x31, 0xff, 0xb8, 0x75, 0x31, 0xff, 0xbc, 0x78, 0x34, 0xff, 0xc1, 0x7d, 0x36, 0xff, 0xc2, 0x82, 0x3a, 0xff, 0xc7, 0x88, 0x40, 0xff, 0xcc, 0x8d, 0x44, 0xff, 0xd0, 0x91, 0x48, 0xff, 0xd5, 0x95, 0x4d, 0xff, 0xd9, 0x99, 0x51, 0xff, 0xdf, 0x9a, 0x55, 0xff, 0xe4, 0x9b, 0x58, 0xff, 0xea, 0xa0, 0x5b, 0xff, 0xf0, 0xa3, 0x5e, 0xff, 0xf5, 0xa8, 0x60, 0xff, 0xf7, 0xac, 0x62, 0xff, 0xf5, 0xa9, 0x60, 0xff, 0xf7, 0xad, 0x61, 0xff, 0xf6, 0xad, 0x62, 0xff, 0xf6, 0xac, 0x62, 0xff, 0xf4, 0xaf, 0x61, 0xff, 0xf4, 0xae, 0x61, 0xff, 0xf4, 0xb1, 0x61, 0xff, 0xf6, 0xae, 0x64, 0xff, 0xf5, 0xae, 0x66, 0xff, 0xf5, 0xac, 0x63, 0xff, 0xf5, 0xac, 0x61, 0xff, 0xf6, 0xaf, 0x62, 0xff, 0xf4, 0xae, 0x61, 0xff, 0xf5, 0xaf, 0x63, 0xff, 0xf5, 0xab, 0x61, 0xff, 0xf5, 0xae, 0x63, 0xff, 0xf6, 0xa7, 0x62, 0xff, 0xf5, 0x9f, 0x5e, 0xff, 0xf6, 0x9d, 0x5f, 0xff, 0xae, 0x73, 0x43, 0xff, 0x95, 0x56, 0x30, 0xff, 0x95, 0x55, 0x2e, 0xff, 0x96, 0x56, 0x2e, 0xff, 0x98, 0x5a, 0x2e, 0xff, 0x98, 0x5c, 0x30, 0xff, 0x99, 0x5b, 0x2f, 0xff, 0x9a, 0x5c, 0x30, 0xff, 0x99, 0x5c, 0x30, 0xff, 0x99, 0x5d, 0x33, 0xff, 0x99, 0x5d, 0x33, 0xff, 0x98, 0x5c, 0x32, 0xff, 0x95, 0x59, 0x30, 0xff, 0x96, 0x5c, 0x2f, 0xff, 0x95, 0x59, 0x32, 0xff, 0x96, 0x59, 0x34, 0xff, 0x96, 0x5b, 0x35, 0xff, 0x97, 0x5a, 0x36, 0xff, 0x95, 0x59, 0x35, 0xff, 0x89, 0x4c, 0x2d, 0xff, 0x88, 0x4a, 0x2a, 0xff, 0x87, 0x48, 0x2b, 0xff, 0x83, 0x45, 0x2a, 0xff, 0x7f, 0x42, 0x27, 0xff, 0x7e, 0x3f, 0x25, 0xff, 0x7e, 0x41, 0x26, 0xff, 0x7d, 0x3e, 0x25, 0xff, 0x7a, 0x3d, 0x24, 0xff, 0x7a, 0x3a, 0x22, 0xff, 0x7a, 0x3a, 0x20, 0xff, 0x77, 0x39, 0x1e, 0xff, 0x76, 0x36, 0x1c, 0xff, 0x72, 0x35, 0x19, 0xff, 0x70, 0x33, 0x18, 0xff, 0x6e, 0x31, 0x17, 0xff, 0x6d, 0x30, 0x16, 0xff, 0x6d, 0x2f, 0x16, 0xff, 0x6b, 0x30, 0x15, 0xff, 0x6a, 0x30, 0x14, 0xff, 0x69, 0x2c, 0x14, 0xff, 0x68, 0x2e, 0x14, 0xff, 0x68, 0x2c, 0x11, 0xff, 0x68, 0x2d, 0x10, 0xff, 0x67, 0x2d, 0x10, 0xff, 0x66, 0x2d, 0x11, 0xff, 0x66, 0x2c, 0x10, 0xff, + 0x63, 0x2c, 0x10, 0xff, 0x63, 0x2c, 0x10, 0xff, 0x62, 0x2a, 0x0e, 0xff, 0x62, 0x29, 0x0d, 0xff, 0x6a, 0x31, 0x17, 0xff, 0x7c, 0x40, 0x26, 0xff, 0x7c, 0x3d, 0x25, 0xff, 0x7a, 0x3c, 0x25, 0xff, 0x7b, 0x3e, 0x24, 0xff, 0x7b, 0x3e, 0x24, 0xff, 0x79, 0x3c, 0x23, 0xff, 0x79, 0x3c, 0x23, 0xff, 0x7a, 0x3c, 0x23, 0xff, 0x79, 0x3c, 0x23, 0xff, 0x7b, 0x3c, 0x23, 0xff, 0x7e, 0x3e, 0x24, 0xff, 0x7f, 0x3f, 0x24, 0xff, 0x81, 0x41, 0x25, 0xff, 0x83, 0x42, 0x25, 0xff, 0x88, 0x46, 0x26, 0xff, 0x8a, 0x49, 0x27, 0xff, 0x8e, 0x4c, 0x29, 0xff, 0x92, 0x4f, 0x2b, 0xff, 0x97, 0x54, 0x2d, 0xff, 0x9a, 0x58, 0x2f, 0xff, 0x9e, 0x5e, 0x32, 0xff, 0xab, 0x6a, 0x3c, 0xff, 0xb2, 0x6f, 0x3c, 0xff, 0xb7, 0x75, 0x3f, 0xff, 0xbb, 0x78, 0x43, 0xff, 0xc1, 0x7b, 0x45, 0xff, 0xbd, 0x79, 0x44, 0xff, 0xc2, 0x7d, 0x46, 0xff, 0xc7, 0x81, 0x4a, 0xff, 0xd2, 0x86, 0x4c, 0xff, 0xdf, 0x8e, 0x51, 0xff, 0xee, 0x95, 0x57, 0xff, 0xf6, 0xa0, 0x5e, 0xff, 0xf7, 0xa5, 0x65, 0xff, 0xf5, 0xad, 0x6b, 0xff, 0xf7, 0xb7, 0x71, 0xff, 0xf7, 0xbe, 0x78, 0xff, 0xf8, 0xc1, 0x7b, 0xff, 0xf8, 0xc9, 0x7e, 0xff, 0xf6, 0xd3, 0x84, 0xff, 0xf8, 0xdd, 0x8a, 0xff, 0xf7, 0xe6, 0x8e, 0xff, 0xf4, 0xe5, 0x95, 0xff, 0xf6, 0xe9, 0x9d, 0xff, 0xf6, 0xec, 0x99, 0xff, 0xf7, 0xed, 0x90, 0xff, 0xf5, 0xea, 0x84, 0xff, 0xf6, 0xdb, 0x7e, 0xff, 0xf6, 0xcb, 0x7a, 0xff, 0xf8, 0xc5, 0x7b, 0xff, 0xf5, 0xc5, 0x7b, 0xff, 0xf6, 0xc4, 0x7c, 0xff, 0xf8, 0xc3, 0x7b, 0xff, 0xf7, 0xc0, 0x7b, 0xff, 0xf6, 0xbd, 0x7b, 0xff, 0xf8, 0xc7, 0x7e, 0xff, 0xf1, 0xc5, 0x7b, 0xff, 0xe9, 0xb2, 0x67, 0xff, 0xf0, 0xb5, 0x64, 0xff, 0xf2, 0xb4, 0x60, 0xff, 0xf1, 0xad, 0x5c, 0xff, 0xf3, 0xa9, 0x5c, 0xff, 0xf4, 0xa9, 0x5f, 0xff, 0xed, 0xa4, 0x5c, 0xff, 0xf0, 0xa4, 0x5c, 0xff, 0xf1, 0xa3, 0x5d, 0xff, 0xf1, 0xa4, 0x5e, 0xff, 0xf3, 0xa4, 0x60, 0xff, 0xf3, 0xa8, 0x5e, 0xff, 0xf2, 0xbd, 0x66, 0xff, 0xed, 0xbc, 0x5b, 0xff, 0xd4, 0x9c, 0x2f, 0xff, 0xd9, 0x96, 0x33, 0xff, 0xbe, 0x84, 0x3b, 0xff, 0xad, 0x72, 0x42, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xb1, 0x78, 0x47, 0xff, 0xb1, 0x77, 0x48, 0xff, 0xaf, 0x78, 0x49, 0xff, 0xae, 0x78, 0x48, 0xff, 0xad, 0x77, 0x48, 0xff, 0xac, 0x76, 0x46, 0xff, 0xad, 0x76, 0x44, 0xff, 0xab, 0x75, 0x44, 0xff, 0xa9, 0x75, 0x44, 0xff, 0xaa, 0x75, 0x44, 0xff, 0xa7, 0x6f, 0x40, 0xff, 0xa3, 0x6b, 0x3d, 0xff, 0xa2, 0x6c, 0x3c, 0xff, 0xa3, 0x6c, 0x3d, 0xff, 0xa1, 0x6b, 0x3c, 0xff, 0x9f, 0x67, 0x39, 0xff, 0x9e, 0x6a, 0x3d, 0xff, 0x96, 0x5d, 0x37, 0xff, 0x8a, 0x50, 0x2c, 0xff, 0x8b, 0x52, 0x2e, 0xff, 0x8a, 0x4f, 0x2e, 0xff, 0x88, 0x4e, 0x2c, 0xff, 0x86, 0x4d, 0x2b, 0xff, 0x85, 0x4a, 0x2b, 0xff, 0x85, 0x49, 0x2a, 0xff, 0x83, 0x4a, 0x29, 0xff, 0x83, 0x48, 0x29, 0xff, 0x83, 0x49, 0x2a, 0xff, 0x80, 0x46, 0x28, 0xff, 0x7b, 0x40, 0x24, 0xff, 0x79, 0x3e, 0x23, 0xff, 0x79, 0x3e, 0x24, 0xff, 0x78, 0x3d, 0x22, 0xff, 0x78, 0x3b, 0x20, 0xff, 0x77, 0x39, 0x20, 0xff, 0x76, 0x3a, 0x1e, 0xff, 0x74, 0x39, 0x1c, 0xff, 0x74, 0x39, 0x1c, 0xff, 0x76, 0x3b, 0x1e, 0xff, 0x77, 0x3c, 0x1d, 0xff, 0x78, 0x3c, 0x1d, 0xff, 0x79, 0x3d, 0x1e, 0xff, 0x7a, 0x3e, 0x1e, 0xff, 0x7a, 0x3d, 0x1f, 0xff, 0x7a, 0x40, 0x20, 0xff, 0x7d, 0x42, 0x23, 0xff, 0x80, 0x44, 0x25, 0xff, 0x80, 0x44, 0x27, 0xff, 0x82, 0x47, 0x28, 0xff, 0x84, 0x49, 0x29, 0xff, 0x86, 0x4c, 0x29, 0xff, 0x88, 0x4e, 0x2b, 0xff, 0x89, 0x4f, 0x2d, 0xff, 0x8c, 0x51, 0x2e, 0xff, 0x8e, 0x53, 0x2f, 0xff, 0x8e, 0x53, 0x2e, 0xff, 0x91, 0x55, 0x2e, 0xff, 0x93, 0x58, 0x31, 0xff, 0x94, 0x59, 0x32, 0xff, 0x94, 0x59, 0x30, 0xff, 0x94, 0x55, 0x2d, 0xff, 0x95, 0x55, 0x2e, 0xff, 0x97, 0x5a, 0x2f, 0xff, 0x99, 0x5b, 0x2f, 0xff, 0x9b, 0x5c, 0x30, 0xff, 0x9e, 0x5e, 0x2f, 0xff, 0xa0, 0x61, 0x2e, 0xff, 0xa2, 0x63, 0x2e, 0xff, 0xa4, 0x64, 0x2e, 0xff, 0xa6, 0x64, 0x2e, 0xff, 0xaa, 0x68, 0x2e, 0xff, 0xae, 0x6b, 0x2f, 0xff, 0xb1, 0x6c, 0x2f, 0xff, 0xb5, 0x70, 0x30, 0xff, 0xb7, 0x75, 0x30, 0xff, 0xbb, 0x78, 0x33, 0xff, 0xc0, 0x7f, 0x36, 0xff, 0xc2, 0x84, 0x3c, 0xff, 0xc4, 0x88, 0x42, 0xff, 0xc8, 0x8e, 0x45, 0xff, 0xca, 0x8f, 0x48, 0xff, 0xd0, 0x91, 0x4d, 0xff, 0xd4, 0x94, 0x51, 0xff, 0xda, 0x95, 0x52, 0xff, 0xdc, 0x99, 0x55, 0xff, 0xe3, 0x9f, 0x57, 0xff, 0xe8, 0xa4, 0x59, 0xff, 0xed, 0xa9, 0x5c, 0xff, 0xf4, 0xa4, 0x5b, 0xff, 0xf5, 0xa4, 0x5b, 0xff, 0xf6, 0xaa, 0x5f, 0xff, 0xf4, 0xa9, 0x60, 0xff, 0xf6, 0xad, 0x61, 0xff, 0xf6, 0xae, 0x62, 0xff, 0xf6, 0xb0, 0x64, 0xff, 0xf4, 0xab, 0x61, 0xff, 0xf5, 0xa8, 0x5f, 0xff, 0xf5, 0xa9, 0x62, 0xff, 0xf3, 0xa5, 0x5b, 0xff, 0xf5, 0xa9, 0x5e, 0xff, 0xf5, 0xa8, 0x5d, 0xff, 0xf6, 0xa9, 0x5d, 0xff, 0xf4, 0xa7, 0x60, 0xff, 0xf4, 0xa4, 0x5e, 0xff, 0xf4, 0xa4, 0x5d, 0xff, 0xf6, 0x9e, 0x5f, 0xff, 0xf4, 0x9b, 0x5d, 0xff, 0xb1, 0x75, 0x44, 0xff, 0x95, 0x57, 0x30, 0xff, 0x94, 0x55, 0x2e, 0xff, 0x94, 0x54, 0x2e, 0xff, 0x98, 0x57, 0x2e, 0xff, 0x99, 0x5a, 0x2e, 0xff, 0x99, 0x5a, 0x2e, 0xff, 0x98, 0x5d, 0x2f, 0xff, 0x98, 0x5b, 0x30, 0xff, 0x98, 0x5e, 0x33, 0xff, 0x98, 0x5c, 0x34, 0xff, 0x96, 0x57, 0x33, 0xff, 0x97, 0x5a, 0x33, 0xff, 0x97, 0x5b, 0x30, 0xff, 0x97, 0x5a, 0x30, 0xff, 0x95, 0x59, 0x33, 0xff, 0x98, 0x5b, 0x35, 0xff, 0x96, 0x5b, 0x35, 0xff, 0x88, 0x4c, 0x2b, 0xff, 0x87, 0x4b, 0x2b, 0xff, 0x87, 0x49, 0x2b, 0xff, 0x86, 0x48, 0x2a, 0xff, 0x81, 0x43, 0x28, 0xff, 0x7f, 0x42, 0x26, 0xff, 0x7f, 0x41, 0x26, 0xff, 0x7d, 0x3f, 0x25, 0xff, 0x7a, 0x3d, 0x24, 0xff, 0x7a, 0x3c, 0x23, 0xff, 0x79, 0x3a, 0x21, 0xff, 0x7a, 0x3a, 0x20, 0xff, 0x77, 0x39, 0x1c, 0xff, 0x74, 0x35, 0x1c, 0xff, 0x70, 0x33, 0x18, 0xff, 0x6e, 0x30, 0x16, 0xff, 0x6d, 0x30, 0x16, 0xff, 0x6b, 0x2f, 0x16, 0xff, 0x6a, 0x30, 0x12, 0xff, 0x69, 0x2f, 0x13, 0xff, 0x68, 0x2c, 0x14, 0xff, 0x66, 0x2d, 0x13, 0xff, 0x67, 0x2c, 0x12, 0xff, 0x67, 0x2d, 0x13, 0xff, 0x65, 0x2d, 0x10, 0xff, 0x65, 0x2c, 0x0f, 0xff, 0x63, 0x2c, 0x0f, 0xff, 0x63, 0x2c, 0x10, 0xff, + 0x62, 0x2b, 0x0d, 0xff, 0x61, 0x29, 0x0c, 0xff, 0x64, 0x2b, 0x0f, 0xff, 0x6f, 0x35, 0x1a, 0xff, 0x80, 0x43, 0x29, 0xff, 0x79, 0x3a, 0x24, 0xff, 0x79, 0x3a, 0x23, 0xff, 0x78, 0x3a, 0x22, 0xff, 0x79, 0x39, 0x22, 0xff, 0x77, 0x39, 0x21, 0xff, 0x79, 0x3a, 0x23, 0xff, 0x79, 0x39, 0x21, 0xff, 0x78, 0x38, 0x20, 0xff, 0x79, 0x39, 0x20, 0xff, 0x79, 0x3a, 0x20, 0xff, 0x7b, 0x3a, 0x22, 0xff, 0x7d, 0x3b, 0x23, 0xff, 0x7e, 0x3e, 0x23, 0xff, 0x80, 0x3f, 0x24, 0xff, 0x86, 0x44, 0x26, 0xff, 0x87, 0x45, 0x26, 0xff, 0x8a, 0x49, 0x27, 0xff, 0x90, 0x4d, 0x29, 0xff, 0x92, 0x52, 0x2a, 0xff, 0x9a, 0x59, 0x2e, 0xff, 0xa6, 0x65, 0x39, 0xff, 0xa7, 0x67, 0x3d, 0xff, 0xae, 0x6d, 0x3e, 0xff, 0xb2, 0x71, 0x3d, 0xff, 0xb8, 0x75, 0x3e, 0xff, 0xbf, 0x7a, 0x42, 0xff, 0xbe, 0x79, 0x44, 0xff, 0xc1, 0x7d, 0x45, 0xff, 0xc7, 0x82, 0x4a, 0xff, 0xcf, 0x86, 0x4d, 0xff, 0xda, 0x8b, 0x50, 0xff, 0xeb, 0x98, 0x56, 0xff, 0xf9, 0x9f, 0x5e, 0xff, 0xf7, 0xa7, 0x64, 0xff, 0xf6, 0xad, 0x6a, 0xff, 0xf5, 0xb5, 0x6f, 0xff, 0xf7, 0xbf, 0x74, 0xff, 0xf5, 0xc8, 0x7b, 0xff, 0xf8, 0xcc, 0x7e, 0xff, 0xf8, 0xd4, 0x82, 0xff, 0xf8, 0xdf, 0x87, 0xff, 0xf7, 0xec, 0x8d, 0xff, 0xf1, 0xef, 0x94, 0xff, 0xef, 0xf0, 0x9a, 0xff, 0xf2, 0xee, 0x9e, 0xff, 0xf3, 0xef, 0x97, 0xff, 0xf6, 0xf1, 0x91, 0xff, 0xf8, 0xeb, 0x89, 0xff, 0xf8, 0xdb, 0x7e, 0xff, 0xf8, 0xcc, 0x7a, 0xff, 0xf6, 0xc2, 0x79, 0xff, 0xf6, 0xbe, 0x79, 0xff, 0xf7, 0xbe, 0x79, 0xff, 0xf5, 0xbf, 0x78, 0xff, 0xf5, 0xb9, 0x78, 0xff, 0xf8, 0xbd, 0x7c, 0xff, 0xf6, 0xc6, 0x81, 0xff, 0xee, 0xc4, 0x7b, 0xff, 0xef, 0xb4, 0x67, 0xff, 0xee, 0xb5, 0x63, 0xff, 0xf0, 0xad, 0x5f, 0xff, 0xf2, 0xaa, 0x5f, 0xff, 0xee, 0xa9, 0x5f, 0xff, 0xed, 0xa8, 0x5c, 0xff, 0xef, 0xa3, 0x5b, 0xff, 0xee, 0xa2, 0x5b, 0xff, 0xed, 0xa2, 0x5b, 0xff, 0xf0, 0xa2, 0x5c, 0xff, 0xf2, 0xac, 0x60, 0xff, 0xf3, 0xbd, 0x64, 0xff, 0xf4, 0xc2, 0x66, 0xff, 0xec, 0xb7, 0x58, 0xff, 0xcb, 0x8e, 0x36, 0xff, 0xb3, 0x75, 0x3c, 0xff, 0xb1, 0x79, 0x47, 0xff, 0xb4, 0x7b, 0x48, 0xff, 0xb4, 0x7c, 0x48, 0xff, 0xb3, 0x79, 0x49, 0xff, 0xb0, 0x7a, 0x4a, 0xff, 0xb0, 0x7b, 0x4d, 0xff, 0xaf, 0x7a, 0x49, 0xff, 0xae, 0x77, 0x46, 0xff, 0xae, 0x79, 0x47, 0xff, 0xad, 0x77, 0x45, 0xff, 0xac, 0x76, 0x44, 0xff, 0xab, 0x76, 0x48, 0xff, 0xa8, 0x74, 0x44, 0xff, 0xa6, 0x70, 0x40, 0xff, 0xa6, 0x6e, 0x3e, 0xff, 0xa4, 0x6c, 0x3c, 0xff, 0xa3, 0x6b, 0x3c, 0xff, 0xa2, 0x6d, 0x3c, 0xff, 0x9c, 0x64, 0x39, 0xff, 0x91, 0x56, 0x31, 0xff, 0x8e, 0x51, 0x2e, 0xff, 0x8d, 0x52, 0x2e, 0xff, 0x8b, 0x51, 0x2d, 0xff, 0x88, 0x4e, 0x2b, 0xff, 0x88, 0x4e, 0x2b, 0xff, 0x87, 0x4d, 0x2b, 0xff, 0x85, 0x4b, 0x29, 0xff, 0x84, 0x49, 0x29, 0xff, 0x83, 0x49, 0x29, 0xff, 0x83, 0x48, 0x29, 0xff, 0x7f, 0x44, 0x27, 0xff, 0x7b, 0x3e, 0x24, 0xff, 0x7a, 0x3e, 0x24, 0xff, 0x78, 0x3d, 0x23, 0xff, 0x77, 0x3b, 0x22, 0xff, 0x77, 0x3c, 0x1f, 0xff, 0x78, 0x3c, 0x1f, 0xff, 0x76, 0x3a, 0x20, 0xff, 0x74, 0x3b, 0x20, 0xff, 0x74, 0x3b, 0x20, 0xff, 0x75, 0x39, 0x1e, 0xff, 0x75, 0x39, 0x1e, 0xff, 0x75, 0x3a, 0x1c, 0xff, 0x76, 0x3a, 0x1d, 0xff, 0x78, 0x3c, 0x1d, 0xff, 0x79, 0x3e, 0x1f, 0xff, 0x79, 0x3e, 0x1f, 0xff, 0x7a, 0x3e, 0x21, 0xff, 0x7d, 0x3f, 0x24, 0xff, 0x7f, 0x42, 0x24, 0xff, 0x80, 0x45, 0x26, 0xff, 0x82, 0x47, 0x28, 0xff, 0x84, 0x49, 0x29, 0xff, 0x85, 0x49, 0x2c, 0xff, 0x88, 0x4c, 0x2c, 0xff, 0x8a, 0x4e, 0x2b, 0xff, 0x8b, 0x51, 0x2d, 0xff, 0x8c, 0x54, 0x2d, 0xff, 0x8d, 0x53, 0x2e, 0xff, 0x8e, 0x51, 0x2d, 0xff, 0x8e, 0x50, 0x2b, 0xff, 0x8f, 0x51, 0x2c, 0xff, 0x91, 0x53, 0x2d, 0xff, 0x93, 0x54, 0x2d, 0xff, 0x95, 0x58, 0x2e, 0xff, 0x98, 0x5a, 0x2e, 0xff, 0x9a, 0x5a, 0x2e, 0xff, 0x9b, 0x5b, 0x2e, 0xff, 0x9d, 0x5d, 0x2e, 0xff, 0x9f, 0x5e, 0x2e, 0xff, 0xa1, 0x62, 0x2e, 0xff, 0xa4, 0x64, 0x2e, 0xff, 0xa6, 0x64, 0x2e, 0xff, 0xaa, 0x68, 0x2e, 0xff, 0xad, 0x6c, 0x2f, 0xff, 0xb0, 0x70, 0x2f, 0xff, 0xb4, 0x72, 0x30, 0xff, 0xb6, 0x73, 0x2f, 0xff, 0xba, 0x76, 0x32, 0xff, 0xbe, 0x7c, 0x39, 0xff, 0xc0, 0x80, 0x3f, 0xff, 0xc2, 0x84, 0x44, 0xff, 0xc5, 0x88, 0x47, 0xff, 0xc8, 0x8e, 0x49, 0xff, 0xcd, 0x91, 0x4b, 0xff, 0xd1, 0x94, 0x4e, 0xff, 0xd4, 0x96, 0x4e, 0xff, 0xd8, 0x9a, 0x50, 0xff, 0xde, 0x9c, 0x52, 0xff, 0xe3, 0x9e, 0x54, 0xff, 0xe7, 0x9e, 0x53, 0xff, 0xee, 0x9e, 0x54, 0xff, 0xf2, 0x9f, 0x56, 0xff, 0xf4, 0xa2, 0x59, 0xff, 0xf6, 0xa8, 0x5c, 0xff, 0xf7, 0xad, 0x5f, 0xff, 0xf5, 0xac, 0x5f, 0xff, 0xf7, 0xae, 0x61, 0xff, 0xf7, 0xa8, 0x61, 0xff, 0xf7, 0xa6, 0x5e, 0xff, 0xf4, 0xa5, 0x59, 0xff, 0xf5, 0xa2, 0x57, 0xff, 0xf4, 0xa3, 0x58, 0xff, 0xf5, 0xa3, 0x59, 0xff, 0xf6, 0xa4, 0x5b, 0xff, 0xef, 0x9f, 0x59, 0xff, 0xf0, 0x9d, 0x59, 0xff, 0xf6, 0xa0, 0x5c, 0xff, 0xf2, 0x9c, 0x5b, 0xff, 0xb7, 0x75, 0x47, 0xff, 0x94, 0x56, 0x30, 0xff, 0x97, 0x5a, 0x31, 0xff, 0x9b, 0x5d, 0x33, 0xff, 0xa0, 0x61, 0x35, 0xff, 0x9e, 0x5d, 0x33, 0xff, 0xa5, 0x65, 0x36, 0xff, 0xad, 0x6e, 0x3e, 0xff, 0xb1, 0x73, 0x44, 0xff, 0xb4, 0x77, 0x49, 0xff, 0xb3, 0x75, 0x49, 0xff, 0xaf, 0x71, 0x47, 0xff, 0xac, 0x6d, 0x40, 0xff, 0xa6, 0x66, 0x39, 0xff, 0xa3, 0x64, 0x39, 0xff, 0xa5, 0x67, 0x3e, 0xff, 0x99, 0x5d, 0x36, 0xff, 0x89, 0x4b, 0x2c, 0xff, 0x88, 0x4a, 0x2b, 0xff, 0x87, 0x4a, 0x2b, 0xff, 0x86, 0x48, 0x2c, 0xff, 0x84, 0x45, 0x2a, 0xff, 0x7e, 0x42, 0x27, 0xff, 0x7e, 0x41, 0x26, 0xff, 0x7e, 0x3e, 0x25, 0xff, 0x7a, 0x3e, 0x25, 0xff, 0x7a, 0x3b, 0x22, 0xff, 0x79, 0x3a, 0x23, 0xff, 0x77, 0x39, 0x1e, 0xff, 0x77, 0x38, 0x1e, 0xff, 0x75, 0x36, 0x1b, 0xff, 0x71, 0x36, 0x19, 0xff, 0x71, 0x33, 0x18, 0xff, 0x6e, 0x31, 0x16, 0xff, 0x6c, 0x30, 0x16, 0xff, 0x69, 0x2d, 0x12, 0xff, 0x6a, 0x30, 0x11, 0xff, 0x68, 0x2d, 0x10, 0xff, 0x66, 0x2d, 0x12, 0xff, 0x66, 0x2d, 0x12, 0xff, 0x65, 0x2d, 0x11, 0xff, 0x66, 0x2c, 0x0f, 0xff, 0x62, 0x2d, 0x0d, 0xff, 0x62, 0x2a, 0x0d, 0xff, 0x63, 0x29, 0x0d, 0xff, 0x62, 0x2a, 0x0d, 0xff, + 0x61, 0x28, 0x0d, 0xff, 0x64, 0x29, 0x0f, 0xff, 0x74, 0x38, 0x21, 0xff, 0x7d, 0x41, 0x27, 0xff, 0x79, 0x3c, 0x24, 0xff, 0x77, 0x3a, 0x24, 0xff, 0x75, 0x37, 0x1e, 0xff, 0x73, 0x36, 0x1e, 0xff, 0x76, 0x36, 0x1d, 0xff, 0x74, 0x36, 0x1c, 0xff, 0x75, 0x36, 0x1f, 0xff, 0x77, 0x36, 0x1f, 0xff, 0x75, 0x36, 0x1c, 0xff, 0x77, 0x37, 0x1c, 0xff, 0x77, 0x39, 0x1e, 0xff, 0x79, 0x39, 0x1f, 0xff, 0x7a, 0x3b, 0x21, 0xff, 0x7c, 0x3c, 0x22, 0xff, 0x81, 0x3e, 0x24, 0xff, 0x84, 0x42, 0x25, 0xff, 0x86, 0x43, 0x25, 0xff, 0x87, 0x46, 0x26, 0xff, 0x8d, 0x4a, 0x28, 0xff, 0x93, 0x52, 0x2a, 0xff, 0x9b, 0x59, 0x2f, 0xff, 0xa1, 0x61, 0x36, 0xff, 0xa5, 0x65, 0x3b, 0xff, 0xa9, 0x68, 0x3e, 0xff, 0xaf, 0x6d, 0x3c, 0xff, 0xb5, 0x70, 0x3b, 0xff, 0xba, 0x76, 0x40, 0xff, 0xc1, 0x7d, 0x46, 0xff, 0xbd, 0x79, 0x42, 0xff, 0xc5, 0x81, 0x4a, 0xff, 0xcc, 0x87, 0x4c, 0xff, 0xd7, 0x8d, 0x50, 0xff, 0xeb, 0x94, 0x55, 0xff, 0xf7, 0x9c, 0x5b, 0xff, 0xf7, 0xa6, 0x62, 0xff, 0xf7, 0xb2, 0x69, 0xff, 0xf7, 0xb9, 0x70, 0xff, 0xf6, 0xc1, 0x75, 0xff, 0xf7, 0xcf, 0x7a, 0xff, 0xf8, 0xd7, 0x80, 0xff, 0xf8, 0xdc, 0x83, 0xff, 0xf8, 0xe2, 0x87, 0xff, 0xf6, 0xec, 0x8e, 0xff, 0xf0, 0xf3, 0x94, 0xff, 0xea, 0xf1, 0x9a, 0xff, 0xea, 0xf1, 0xa0, 0xff, 0xeb, 0xf2, 0x9e, 0xff, 0xf1, 0xf2, 0x94, 0xff, 0xf6, 0xef, 0x8e, 0xff, 0xf6, 0xe6, 0x85, 0xff, 0xf8, 0xd2, 0x79, 0xff, 0xf7, 0xc6, 0x76, 0xff, 0xf7, 0xbd, 0x75, 0xff, 0xf6, 0xbc, 0x75, 0xff, 0xf4, 0xbd, 0x77, 0xff, 0xf6, 0xb6, 0x76, 0xff, 0xf7, 0xb8, 0x7b, 0xff, 0xf7, 0xbe, 0x7e, 0xff, 0xf3, 0xbf, 0x7d, 0xff, 0xef, 0xbb, 0x73, 0xff, 0xef, 0xb5, 0x68, 0xff, 0xee, 0xb0, 0x61, 0xff, 0xee, 0xaf, 0x61, 0xff, 0xed, 0xa8, 0x60, 0xff, 0xed, 0xa4, 0x5c, 0xff, 0xed, 0xa3, 0x5b, 0xff, 0xec, 0xa1, 0x5b, 0xff, 0xec, 0xa0, 0x5a, 0xff, 0xed, 0xa0, 0x5c, 0xff, 0xed, 0xa7, 0x5d, 0xff, 0xf3, 0xbc, 0x61, 0xff, 0xf3, 0xbf, 0x61, 0xff, 0xef, 0xc0, 0x5f, 0xff, 0xd6, 0xa2, 0x4d, 0xff, 0xb6, 0x7a, 0x44, 0xff, 0xb5, 0x79, 0x47, 0xff, 0xb5, 0x7c, 0x49, 0xff, 0xb6, 0x7d, 0x4a, 0xff, 0xb4, 0x7f, 0x4b, 0xff, 0xb3, 0x7d, 0x4d, 0xff, 0xb2, 0x7e, 0x4b, 0xff, 0xb1, 0x7e, 0x49, 0xff, 0xb0, 0x7a, 0x49, 0xff, 0xaf, 0x79, 0x47, 0xff, 0xae, 0x77, 0x45, 0xff, 0xac, 0x77, 0x44, 0xff, 0xab, 0x76, 0x44, 0xff, 0xab, 0x76, 0x47, 0xff, 0xa9, 0x72, 0x42, 0xff, 0xa6, 0x6d, 0x3c, 0xff, 0xa5, 0x6d, 0x3d, 0xff, 0xa4, 0x6d, 0x3b, 0xff, 0xa3, 0x6d, 0x3e, 0xff, 0x9c, 0x63, 0x39, 0xff, 0x90, 0x53, 0x30, 0xff, 0x91, 0x54, 0x32, 0xff, 0x8f, 0x53, 0x2e, 0xff, 0x8c, 0x51, 0x2e, 0xff, 0x8b, 0x4f, 0x2e, 0xff, 0x8a, 0x4f, 0x2d, 0xff, 0x88, 0x4e, 0x2c, 0xff, 0x87, 0x4c, 0x2a, 0xff, 0x85, 0x49, 0x29, 0xff, 0x85, 0x4a, 0x2b, 0xff, 0x82, 0x47, 0x29, 0xff, 0x7c, 0x40, 0x25, 0xff, 0x7b, 0x3f, 0x24, 0xff, 0x7b, 0x40, 0x24, 0xff, 0x7a, 0x3f, 0x24, 0xff, 0x79, 0x3f, 0x23, 0xff, 0x78, 0x3e, 0x21, 0xff, 0x77, 0x3b, 0x21, 0xff, 0x76, 0x3c, 0x22, 0xff, 0x76, 0x3b, 0x21, 0xff, 0x74, 0x39, 0x20, 0xff, 0x74, 0x39, 0x20, 0xff, 0x74, 0x3a, 0x1e, 0xff, 0x74, 0x39, 0x1d, 0xff, 0x75, 0x39, 0x1e, 0xff, 0x77, 0x3b, 0x1d, 0xff, 0x77, 0x3b, 0x1d, 0xff, 0x78, 0x3d, 0x1f, 0xff, 0x79, 0x3d, 0x20, 0xff, 0x7a, 0x3d, 0x22, 0xff, 0x7c, 0x41, 0x24, 0xff, 0x7e, 0x43, 0x25, 0xff, 0x80, 0x45, 0x27, 0xff, 0x82, 0x48, 0x27, 0xff, 0x83, 0x49, 0x29, 0xff, 0x85, 0x4b, 0x2b, 0xff, 0x86, 0x4c, 0x2c, 0xff, 0x88, 0x4c, 0x2c, 0xff, 0x87, 0x4a, 0x2a, 0xff, 0x87, 0x4a, 0x28, 0xff, 0x89, 0x4b, 0x28, 0xff, 0x8b, 0x4e, 0x2a, 0xff, 0x8d, 0x50, 0x2a, 0xff, 0x8f, 0x52, 0x2a, 0xff, 0x91, 0x53, 0x2c, 0xff, 0x93, 0x53, 0x2d, 0xff, 0x94, 0x57, 0x2d, 0xff, 0x96, 0x57, 0x2d, 0xff, 0x99, 0x58, 0x2c, 0xff, 0x9b, 0x5b, 0x2d, 0xff, 0x9e, 0x5d, 0x2e, 0xff, 0xa0, 0x5e, 0x2e, 0xff, 0xa2, 0x62, 0x2f, 0xff, 0xa7, 0x65, 0x2f, 0xff, 0xa9, 0x68, 0x2f, 0xff, 0xac, 0x6b, 0x2f, 0xff, 0xae, 0x6d, 0x30, 0xff, 0xb0, 0x6d, 0x30, 0xff, 0xb3, 0x71, 0x30, 0xff, 0xb6, 0x71, 0x33, 0xff, 0xb7, 0x73, 0x34, 0xff, 0xbc, 0x78, 0x3a, 0xff, 0xc0, 0x7d, 0x3e, 0xff, 0xc1, 0x81, 0x43, 0xff, 0xc3, 0x86, 0x47, 0xff, 0xc6, 0x8c, 0x49, 0xff, 0xca, 0x8f, 0x4c, 0xff, 0xcc, 0x91, 0x4c, 0xff, 0xd1, 0x94, 0x4e, 0xff, 0xd4, 0x96, 0x4e, 0xff, 0xd9, 0x98, 0x4f, 0xff, 0xde, 0x97, 0x50, 0xff, 0xe1, 0x98, 0x51, 0xff, 0xe6, 0x9a, 0x50, 0xff, 0xea, 0x9d, 0x52, 0xff, 0xef, 0x9e, 0x52, 0xff, 0xf1, 0xa3, 0x55, 0xff, 0xf5, 0xa6, 0x59, 0xff, 0xf6, 0xa8, 0x5c, 0xff, 0xf5, 0xa5, 0x5c, 0xff, 0xf7, 0xa4, 0x5e, 0xff, 0xf6, 0xa5, 0x60, 0xff, 0xf5, 0xa1, 0x59, 0xff, 0xf5, 0xa1, 0x54, 0xff, 0xf7, 0xa1, 0x55, 0xff, 0xee, 0x9c, 0x55, 0xff, 0xeb, 0x9b, 0x54, 0xff, 0xf0, 0x99, 0x55, 0xff, 0xf0, 0x9b, 0x58, 0xff, 0xeb, 0x97, 0x57, 0xff, 0xc9, 0x81, 0x50, 0xff, 0xab, 0x6d, 0x41, 0xff, 0xb1, 0x73, 0x46, 0xff, 0xb6, 0x77, 0x49, 0xff, 0xb9, 0x7a, 0x4a, 0xff, 0xbf, 0x7d, 0x4d, 0xff, 0xbf, 0x7e, 0x4e, 0xff, 0xbd, 0x7d, 0x4d, 0xff, 0xbd, 0x7e, 0x50, 0xff, 0xbf, 0x7f, 0x52, 0xff, 0xbf, 0x7d, 0x50, 0xff, 0xc1, 0x7f, 0x52, 0xff, 0xc7, 0x83, 0x54, 0xff, 0xcd, 0x89, 0x58, 0xff, 0xce, 0x8c, 0x59, 0xff, 0xca, 0x8c, 0x59, 0xff, 0x9b, 0x5e, 0x38, 0xff, 0x90, 0x52, 0x31, 0xff, 0x8f, 0x52, 0x2f, 0xff, 0x8a, 0x4d, 0x2d, 0xff, 0x87, 0x48, 0x2c, 0xff, 0x81, 0x43, 0x27, 0xff, 0x7f, 0x41, 0x26, 0xff, 0x80, 0x41, 0x25, 0xff, 0x7c, 0x3e, 0x24, 0xff, 0x7a, 0x3e, 0x23, 0xff, 0x7a, 0x3b, 0x22, 0xff, 0x78, 0x3a, 0x1f, 0xff, 0x77, 0x38, 0x1e, 0xff, 0x75, 0x37, 0x1c, 0xff, 0x73, 0x36, 0x1b, 0xff, 0x70, 0x34, 0x19, 0xff, 0x6e, 0x34, 0x19, 0xff, 0x6e, 0x31, 0x16, 0xff, 0x6c, 0x30, 0x16, 0xff, 0x69, 0x2d, 0x13, 0xff, 0x67, 0x2c, 0x11, 0xff, 0x65, 0x2c, 0x0f, 0xff, 0x65, 0x2c, 0x10, 0xff, 0x65, 0x2c, 0x10, 0xff, 0x63, 0x2c, 0x0d, 0xff, 0x62, 0x29, 0x0d, 0xff, 0x61, 0x29, 0x0d, 0xff, 0x61, 0x28, 0x0d, 0xff, 0x62, 0x29, 0x0d, 0xff, 0x61, 0x28, 0x0d, 0xff, + 0x61, 0x29, 0x0e, 0xff, 0x77, 0x3c, 0x23, 0xff, 0x79, 0x3a, 0x24, 0xff, 0x79, 0x3b, 0x24, 0xff, 0x77, 0x3a, 0x22, 0xff, 0x76, 0x3a, 0x23, 0xff, 0x74, 0x37, 0x1f, 0xff, 0x6f, 0x33, 0x18, 0xff, 0x6f, 0x33, 0x18, 0xff, 0x6e, 0x33, 0x18, 0xff, 0x70, 0x33, 0x19, 0xff, 0x72, 0x35, 0x19, 0xff, 0x72, 0x34, 0x18, 0xff, 0x73, 0x35, 0x1b, 0xff, 0x74, 0x34, 0x19, 0xff, 0x77, 0x37, 0x1c, 0xff, 0x78, 0x39, 0x1d, 0xff, 0x7b, 0x3b, 0x21, 0xff, 0x7f, 0x3e, 0x22, 0xff, 0x7f, 0x3e, 0x22, 0xff, 0x83, 0x41, 0x23, 0xff, 0x87, 0x46, 0x26, 0xff, 0x8d, 0x49, 0x28, 0xff, 0x91, 0x50, 0x29, 0xff, 0x97, 0x57, 0x2d, 0xff, 0x9d, 0x5c, 0x32, 0xff, 0xa3, 0x64, 0x36, 0xff, 0xa7, 0x69, 0x38, 0xff, 0xaa, 0x6c, 0x39, 0xff, 0xaf, 0x6c, 0x39, 0xff, 0xb6, 0x72, 0x3c, 0xff, 0xbe, 0x7a, 0x43, 0xff, 0xbe, 0x7a, 0x42, 0xff, 0xc2, 0x81, 0x48, 0xff, 0xcb, 0x89, 0x4f, 0xff, 0xd8, 0x90, 0x54, 0xff, 0xe6, 0x96, 0x57, 0xff, 0xf8, 0x9e, 0x5b, 0xff, 0xf5, 0xa6, 0x61, 0xff, 0xf7, 0xb3, 0x68, 0xff, 0xf7, 0xbd, 0x71, 0xff, 0xf6, 0xc9, 0x7a, 0xff, 0xf5, 0xd3, 0x7c, 0xff, 0xf8, 0xe2, 0x82, 0xff, 0xf8, 0xe4, 0x88, 0xff, 0xf8, 0xe4, 0x89, 0xff, 0xf8, 0xea, 0x8c, 0xff, 0xf4, 0xee, 0x8f, 0xff, 0xeb, 0xf2, 0x96, 0xff, 0xea, 0xf1, 0x9b, 0xff, 0xea, 0xf2, 0x9e, 0xff, 0xe8, 0xef, 0x95, 0xff, 0xec, 0xf2, 0x8e, 0xff, 0xf3, 0xef, 0x88, 0xff, 0xf6, 0xdf, 0x7e, 0xff, 0xf5, 0xd0, 0x79, 0xff, 0xf6, 0xc0, 0x76, 0xff, 0xf7, 0xbd, 0x75, 0xff, 0xf5, 0xb8, 0x76, 0xff, 0xf5, 0xb6, 0x77, 0xff, 0xf6, 0xb9, 0x7a, 0xff, 0xf8, 0xba, 0x7d, 0xff, 0xf8, 0xba, 0x7e, 0xff, 0xf4, 0xbd, 0x7a, 0xff, 0xe9, 0xb5, 0x69, 0xff, 0xf1, 0xb4, 0x69, 0xff, 0xed, 0xaf, 0x64, 0xff, 0xe8, 0xa9, 0x60, 0xff, 0xea, 0xa8, 0x5f, 0xff, 0xec, 0xa1, 0x5b, 0xff, 0xea, 0x9f, 0x59, 0xff, 0xea, 0x9f, 0x5b, 0xff, 0xe7, 0xa0, 0x5b, 0xff, 0xe9, 0xa8, 0x5d, 0xff, 0xf1, 0xbd, 0x63, 0xff, 0xf5, 0xc1, 0x60, 0xff, 0xf3, 0xbe, 0x62, 0xff, 0xda, 0xa8, 0x61, 0xff, 0xb7, 0x81, 0x4a, 0xff, 0xb7, 0x7d, 0x4a, 0xff, 0xb8, 0x7c, 0x48, 0xff, 0xb7, 0x7d, 0x4c, 0xff, 0xb7, 0x80, 0x4c, 0xff, 0xb6, 0x82, 0x4d, 0xff, 0xb4, 0x80, 0x4d, 0xff, 0xb2, 0x7e, 0x4b, 0xff, 0xb2, 0x7f, 0x4b, 0xff, 0xb1, 0x7f, 0x47, 0xff, 0xae, 0x7a, 0x46, 0xff, 0xae, 0x78, 0x47, 0xff, 0xad, 0x79, 0x49, 0xff, 0xad, 0x79, 0x47, 0xff, 0xab, 0x77, 0x42, 0xff, 0xa8, 0x71, 0x40, 0xff, 0xa5, 0x6d, 0x3d, 0xff, 0xa6, 0x6f, 0x3c, 0xff, 0xa3, 0x6c, 0x3d, 0xff, 0x97, 0x5c, 0x34, 0xff, 0x93, 0x58, 0x33, 0xff, 0x92, 0x59, 0x32, 0xff, 0x91, 0x55, 0x2f, 0xff, 0x8f, 0x52, 0x2e, 0xff, 0x8c, 0x51, 0x2e, 0xff, 0x8b, 0x4f, 0x2d, 0xff, 0x8a, 0x50, 0x2c, 0xff, 0x88, 0x4e, 0x2b, 0xff, 0x88, 0x4d, 0x2a, 0xff, 0x85, 0x4b, 0x2b, 0xff, 0x80, 0x45, 0x28, 0xff, 0x7d, 0x41, 0x24, 0xff, 0x7e, 0x40, 0x25, 0xff, 0x7c, 0x3f, 0x25, 0xff, 0x7a, 0x40, 0x24, 0xff, 0x79, 0x3f, 0x22, 0xff, 0x79, 0x3e, 0x23, 0xff, 0x79, 0x3d, 0x23, 0xff, 0x78, 0x3d, 0x21, 0xff, 0x77, 0x3c, 0x21, 0xff, 0x75, 0x3c, 0x21, 0xff, 0x74, 0x3a, 0x1f, 0xff, 0x73, 0x39, 0x1d, 0xff, 0x73, 0x39, 0x1c, 0xff, 0x74, 0x3a, 0x1b, 0xff, 0x76, 0x3a, 0x1c, 0xff, 0x77, 0x39, 0x1e, 0xff, 0x76, 0x39, 0x1e, 0xff, 0x77, 0x3c, 0x1e, 0xff, 0x79, 0x3e, 0x21, 0xff, 0x7a, 0x3f, 0x23, 0xff, 0x7c, 0x40, 0x24, 0xff, 0x7e, 0x41, 0x26, 0xff, 0x80, 0x46, 0x26, 0xff, 0x81, 0x46, 0x28, 0xff, 0x83, 0x47, 0x29, 0xff, 0x81, 0x45, 0x27, 0xff, 0x81, 0x44, 0x26, 0xff, 0x83, 0x46, 0x26, 0xff, 0x85, 0x47, 0x27, 0xff, 0x87, 0x48, 0x28, 0xff, 0x89, 0x4a, 0x29, 0xff, 0x8a, 0x4b, 0x28, 0xff, 0x8b, 0x4d, 0x28, 0xff, 0x8e, 0x51, 0x2a, 0xff, 0x90, 0x50, 0x2b, 0xff, 0x91, 0x51, 0x2b, 0xff, 0x94, 0x53, 0x2c, 0xff, 0x98, 0x57, 0x2c, 0xff, 0x99, 0x59, 0x2c, 0xff, 0x9b, 0x5a, 0x2d, 0xff, 0x9f, 0x5e, 0x2d, 0xff, 0xa1, 0x60, 0x2e, 0xff, 0xa3, 0x63, 0x2f, 0xff, 0xa6, 0x65, 0x2f, 0xff, 0xa9, 0x68, 0x31, 0xff, 0xaa, 0x67, 0x2f, 0xff, 0xad, 0x68, 0x30, 0xff, 0xaf, 0x6b, 0x32, 0xff, 0xb3, 0x6f, 0x33, 0xff, 0xb7, 0x73, 0x37, 0xff, 0xba, 0x78, 0x3a, 0xff, 0xbe, 0x7c, 0x40, 0xff, 0xc1, 0x7f, 0x45, 0xff, 0xc2, 0x82, 0x46, 0xff, 0xc3, 0x87, 0x47, 0xff, 0xc4, 0x8b, 0x49, 0xff, 0xc6, 0x8d, 0x49, 0xff, 0xca, 0x8f, 0x4a, 0xff, 0xcf, 0x90, 0x4c, 0xff, 0xd2, 0x91, 0x4d, 0xff, 0xd7, 0x94, 0x4e, 0xff, 0xdb, 0x94, 0x4e, 0xff, 0xe0, 0x95, 0x4f, 0xff, 0xe6, 0x98, 0x51, 0xff, 0xed, 0x9b, 0x52, 0xff, 0xee, 0x9c, 0x51, 0xff, 0xf2, 0x9c, 0x56, 0xff, 0xf5, 0xa2, 0x58, 0xff, 0xf4, 0xa3, 0x59, 0xff, 0xf5, 0xa2, 0x5a, 0xff, 0xf5, 0x9f, 0x5b, 0xff, 0xf5, 0xa1, 0x5b, 0xff, 0xf5, 0x9f, 0x58, 0xff, 0xf4, 0x9d, 0x57, 0xff, 0xea, 0x95, 0x50, 0xff, 0xe8, 0x96, 0x51, 0xff, 0xe3, 0x93, 0x53, 0xff, 0xdc, 0x8d, 0x55, 0xff, 0xde, 0x90, 0x56, 0xff, 0xd1, 0x86, 0x53, 0xff, 0xb5, 0x73, 0x48, 0xff, 0xb2, 0x72, 0x45, 0xff, 0xb2, 0x71, 0x43, 0xff, 0xb3, 0x72, 0x45, 0xff, 0xb4, 0x73, 0x43, 0xff, 0xb4, 0x74, 0x44, 0xff, 0xb5, 0x75, 0x47, 0xff, 0xb5, 0x76, 0x48, 0xff, 0xb6, 0x74, 0x49, 0xff, 0xb5, 0x76, 0x49, 0xff, 0xb6, 0x76, 0x49, 0xff, 0xb9, 0x78, 0x4a, 0xff, 0xba, 0x78, 0x4a, 0xff, 0xbc, 0x7b, 0x4b, 0xff, 0xa1, 0x62, 0x3a, 0xff, 0x94, 0x55, 0x32, 0xff, 0x93, 0x54, 0x34, 0xff, 0x93, 0x55, 0x34, 0xff, 0x92, 0x54, 0x33, 0xff, 0x91, 0x52, 0x31, 0xff, 0x8f, 0x52, 0x31, 0xff, 0x80, 0x44, 0x26, 0xff, 0x7b, 0x3d, 0x24, 0xff, 0x7b, 0x3c, 0x23, 0xff, 0x79, 0x3c, 0x23, 0xff, 0x78, 0x3a, 0x21, 0xff, 0x77, 0x37, 0x1e, 0xff, 0x74, 0x36, 0x1d, 0xff, 0x73, 0x36, 0x1b, 0xff, 0x71, 0x34, 0x19, 0xff, 0x70, 0x33, 0x18, 0xff, 0x6d, 0x30, 0x15, 0xff, 0x6b, 0x30, 0x13, 0xff, 0x6a, 0x2d, 0x15, 0xff, 0x68, 0x2e, 0x0f, 0xff, 0x65, 0x2a, 0x0e, 0xff, 0x62, 0x29, 0x0b, 0xff, 0x61, 0x29, 0x0c, 0xff, 0x61, 0x2a, 0x0c, 0xff, 0x61, 0x2a, 0x0c, 0xff, 0x60, 0x29, 0x0d, 0xff, 0x5f, 0x28, 0x0d, 0xff, 0x5f, 0x28, 0x0d, 0xff, 0x5f, 0x28, 0x0d, 0xff, 0x5e, 0x28, 0x0d, 0xff, + 0x76, 0x39, 0x25, 0xff, 0x77, 0x3a, 0x22, 0xff, 0x78, 0x3c, 0x23, 0xff, 0x79, 0x3a, 0x22, 0xff, 0x76, 0x3b, 0x24, 0xff, 0x74, 0x39, 0x22, 0xff, 0x72, 0x36, 0x1c, 0xff, 0x70, 0x33, 0x1b, 0xff, 0x6c, 0x2f, 0x16, 0xff, 0x6c, 0x31, 0x16, 0xff, 0x6c, 0x31, 0x16, 0xff, 0x6f, 0x32, 0x18, 0xff, 0x70, 0x31, 0x18, 0xff, 0x70, 0x31, 0x18, 0xff, 0x73, 0x34, 0x18, 0xff, 0x74, 0x35, 0x19, 0xff, 0x75, 0x37, 0x1d, 0xff, 0x78, 0x39, 0x1b, 0xff, 0x7c, 0x3b, 0x1e, 0xff, 0x7d, 0x3c, 0x1f, 0xff, 0x80, 0x3e, 0x21, 0xff, 0x86, 0x42, 0x24, 0xff, 0x8a, 0x47, 0x25, 0xff, 0x92, 0x4f, 0x29, 0xff, 0x95, 0x54, 0x2c, 0xff, 0x9a, 0x58, 0x2f, 0xff, 0x9e, 0x5d, 0x31, 0xff, 0xa3, 0x62, 0x33, 0xff, 0xa8, 0x65, 0x35, 0xff, 0xac, 0x69, 0x35, 0xff, 0xb0, 0x6f, 0x39, 0xff, 0xb9, 0x77, 0x40, 0xff, 0xbf, 0x7f, 0x46, 0xff, 0xbf, 0x7e, 0x46, 0xff, 0xc7, 0x85, 0x4e, 0xff, 0xd4, 0x90, 0x54, 0xff, 0xe7, 0x96, 0x5c, 0xff, 0xf4, 0xa0, 0x5f, 0xff, 0xf4, 0xa9, 0x65, 0xff, 0xf7, 0xb3, 0x69, 0xff, 0xf7, 0xc0, 0x73, 0xff, 0xf6, 0xd3, 0x7d, 0xff, 0xf6, 0xdf, 0x82, 0xff, 0xf7, 0xe6, 0x83, 0xff, 0xf5, 0xeb, 0x8c, 0xff, 0xf7, 0xe8, 0x8e, 0xff, 0xf8, 0xea, 0x8f, 0xff, 0xf8, 0xf2, 0x91, 0xff, 0xf4, 0xf1, 0x8e, 0xff, 0xeb, 0xf1, 0x93, 0xff, 0xe8, 0xf2, 0x97, 0xff, 0xe9, 0xf1, 0x97, 0xff, 0xe5, 0xf1, 0x8c, 0xff, 0xef, 0xf0, 0x87, 0xff, 0xf6, 0xe4, 0x82, 0xff, 0xf7, 0xd4, 0x7b, 0xff, 0xf5, 0xc7, 0x79, 0xff, 0xf6, 0xc0, 0x76, 0xff, 0xf7, 0xbe, 0x77, 0xff, 0xf7, 0xb3, 0x73, 0xff, 0xf6, 0xb3, 0x72, 0xff, 0xf8, 0xb8, 0x7e, 0xff, 0xf8, 0xb8, 0x7d, 0xff, 0xf8, 0xbc, 0x7d, 0xff, 0xf4, 0xc1, 0x7a, 0xff, 0xe9, 0xb4, 0x6a, 0xff, 0xec, 0xb2, 0x66, 0xff, 0xe8, 0xaa, 0x62, 0xff, 0xe9, 0xa6, 0x5d, 0xff, 0xea, 0xa5, 0x5c, 0xff, 0xe8, 0x9f, 0x5b, 0xff, 0xe7, 0x9c, 0x59, 0xff, 0xe7, 0x9f, 0x5a, 0xff, 0xeb, 0xaa, 0x5d, 0xff, 0xf4, 0xbe, 0x61, 0xff, 0xf2, 0xc0, 0x64, 0xff, 0xf0, 0xc6, 0x6a, 0xff, 0xd2, 0xa7, 0x5f, 0xff, 0xb3, 0x7a, 0x48, 0xff, 0xb9, 0x7e, 0x4c, 0xff, 0xb8, 0x7e, 0x49, 0xff, 0xb9, 0x7f, 0x4c, 0xff, 0xb8, 0x83, 0x4f, 0xff, 0xb8, 0x85, 0x4f, 0xff, 0xb7, 0x82, 0x50, 0xff, 0xb6, 0x85, 0x51, 0xff, 0xb3, 0x82, 0x4e, 0xff, 0xb3, 0x81, 0x49, 0xff, 0xb1, 0x7e, 0x47, 0xff, 0xb0, 0x7c, 0x47, 0xff, 0xaf, 0x7b, 0x46, 0xff, 0xae, 0x78, 0x46, 0xff, 0xac, 0x77, 0x47, 0xff, 0xab, 0x74, 0x41, 0xff, 0xa9, 0x72, 0x3f, 0xff, 0xa7, 0x72, 0x40, 0xff, 0x9e, 0x67, 0x3a, 0xff, 0x95, 0x59, 0x31, 0xff, 0x96, 0x59, 0x33, 0xff, 0x94, 0x58, 0x32, 0xff, 0x93, 0x58, 0x32, 0xff, 0x91, 0x54, 0x2e, 0xff, 0x8f, 0x53, 0x2e, 0xff, 0x8c, 0x51, 0x2d, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x89, 0x4e, 0x2c, 0xff, 0x88, 0x4e, 0x2d, 0xff, 0x85, 0x4a, 0x2a, 0xff, 0x7f, 0x42, 0x25, 0xff, 0x7e, 0x43, 0x25, 0xff, 0x7d, 0x42, 0x25, 0xff, 0x7b, 0x40, 0x25, 0xff, 0x7b, 0x40, 0x24, 0xff, 0x79, 0x3f, 0x22, 0xff, 0x79, 0x3f, 0x22, 0xff, 0x78, 0x3e, 0x23, 0xff, 0x77, 0x3c, 0x23, 0xff, 0x78, 0x3c, 0x22, 0xff, 0x76, 0x3a, 0x22, 0xff, 0x74, 0x3a, 0x1f, 0xff, 0x74, 0x3b, 0x1e, 0xff, 0x73, 0x39, 0x1c, 0xff, 0x72, 0x39, 0x1b, 0xff, 0x73, 0x3a, 0x1b, 0xff, 0x74, 0x3b, 0x1d, 0xff, 0x75, 0x3b, 0x1e, 0xff, 0x76, 0x3a, 0x1e, 0xff, 0x78, 0x3c, 0x20, 0xff, 0x7a, 0x3d, 0x22, 0xff, 0x7a, 0x3f, 0x22, 0xff, 0x7b, 0x40, 0x24, 0xff, 0x7e, 0x42, 0x26, 0xff, 0x7e, 0x43, 0x26, 0xff, 0x7c, 0x40, 0x24, 0xff, 0x7c, 0x40, 0x24, 0xff, 0x7f, 0x41, 0x26, 0xff, 0x81, 0x44, 0x26, 0xff, 0x83, 0x47, 0x27, 0xff, 0x84, 0x47, 0x26, 0xff, 0x86, 0x47, 0x26, 0xff, 0x88, 0x4a, 0x27, 0xff, 0x8a, 0x4b, 0x28, 0xff, 0x8b, 0x4c, 0x29, 0xff, 0x8e, 0x4f, 0x29, 0xff, 0x91, 0x4f, 0x2a, 0xff, 0x92, 0x52, 0x2b, 0xff, 0x93, 0x54, 0x2b, 0xff, 0x97, 0x54, 0x2b, 0xff, 0x9a, 0x58, 0x2c, 0xff, 0x9c, 0x5a, 0x2c, 0xff, 0x9d, 0x5d, 0x2d, 0xff, 0xa1, 0x5f, 0x2e, 0xff, 0xa4, 0x62, 0x2f, 0xff, 0xa4, 0x61, 0x2e, 0xff, 0xa4, 0x61, 0x2e, 0xff, 0xa8, 0x65, 0x30, 0xff, 0xac, 0x69, 0x32, 0xff, 0xaf, 0x6d, 0x34, 0xff, 0xb3, 0x71, 0x35, 0xff, 0xb6, 0x76, 0x38, 0xff, 0xb9, 0x78, 0x3c, 0xff, 0xbc, 0x7d, 0x41, 0xff, 0xbe, 0x80, 0x43, 0xff, 0xc0, 0x81, 0x46, 0xff, 0xc2, 0x85, 0x46, 0xff, 0xc5, 0x88, 0x48, 0xff, 0xc7, 0x8a, 0x4a, 0xff, 0xca, 0x8c, 0x4c, 0xff, 0xcd, 0x8e, 0x4a, 0xff, 0xd2, 0x8f, 0x4a, 0xff, 0xd7, 0x90, 0x4b, 0xff, 0xdb, 0x90, 0x4c, 0xff, 0xdf, 0x91, 0x4d, 0xff, 0xe3, 0x95, 0x50, 0xff, 0xe8, 0x99, 0x52, 0xff, 0xed, 0x9c, 0x52, 0xff, 0xf0, 0x9c, 0x54, 0xff, 0xf2, 0x9c, 0x55, 0xff, 0xf4, 0x9b, 0x55, 0xff, 0xf5, 0x9f, 0x5a, 0xff, 0xf7, 0xa1, 0x5c, 0xff, 0xf9, 0xa2, 0x5c, 0xff, 0xf1, 0x9e, 0x5c, 0xff, 0xd8, 0x90, 0x53, 0xff, 0xd4, 0x8a, 0x52, 0xff, 0xd3, 0x8b, 0x53, 0xff, 0xda, 0x8b, 0x55, 0xff, 0xe6, 0x93, 0x54, 0xff, 0xd8, 0x88, 0x52, 0xff, 0xb6, 0x74, 0x47, 0xff, 0xb1, 0x71, 0x41, 0xff, 0xb0, 0x6e, 0x42, 0xff, 0xaf, 0x70, 0x41, 0xff, 0xaf, 0x71, 0x41, 0xff, 0xaf, 0x71, 0x41, 0xff, 0xb1, 0x72, 0x43, 0xff, 0xb3, 0x72, 0x46, 0xff, 0xb2, 0x75, 0x46, 0xff, 0xb4, 0x73, 0x44, 0xff, 0xb3, 0x71, 0x45, 0xff, 0xb4, 0x74, 0x45, 0xff, 0xb6, 0x75, 0x45, 0xff, 0xac, 0x6e, 0x41, 0xff, 0x8f, 0x51, 0x2f, 0xff, 0x8f, 0x53, 0x33, 0xff, 0x90, 0x52, 0x31, 0xff, 0x91, 0x52, 0x30, 0xff, 0x91, 0x52, 0x30, 0xff, 0x8f, 0x51, 0x2f, 0xff, 0x92, 0x54, 0x2f, 0xff, 0x92, 0x52, 0x30, 0xff, 0x8b, 0x4e, 0x2d, 0xff, 0x7b, 0x3a, 0x23, 0xff, 0x77, 0x3a, 0x1d, 0xff, 0x77, 0x39, 0x1f, 0xff, 0x7e, 0x3e, 0x25, 0xff, 0x82, 0x43, 0x27, 0xff, 0x85, 0x46, 0x29, 0xff, 0x85, 0x46, 0x29, 0xff, 0x84, 0x45, 0x28, 0xff, 0x81, 0x43, 0x27, 0xff, 0x81, 0x43, 0x27, 0xff, 0x80, 0x42, 0x26, 0xff, 0x80, 0x41, 0x26, 0xff, 0x7e, 0x3f, 0x26, 0xff, 0x7c, 0x3e, 0x25, 0xff, 0x7c, 0x3d, 0x25, 0xff, 0x77, 0x3a, 0x21, 0xff, 0x70, 0x32, 0x18, 0xff, 0x63, 0x2a, 0x0d, 0xff, 0x57, 0x24, 0x08, 0xff, 0x5c, 0x26, 0x0a, 0xff, 0x5c, 0x25, 0x09, 0xff, 0x63, 0x2a, 0x0e, 0xff, + 0x79, 0x3a, 0x23, 0xff, 0x78, 0x39, 0x22, 0xff, 0x77, 0x39, 0x20, 0xff, 0x76, 0x3a, 0x22, 0xff, 0x74, 0x39, 0x23, 0xff, 0x72, 0x36, 0x1f, 0xff, 0x6c, 0x30, 0x18, 0xff, 0x6b, 0x2f, 0x16, 0xff, 0x6b, 0x2f, 0x15, 0xff, 0x6a, 0x2d, 0x15, 0xff, 0x6a, 0x2e, 0x15, 0xff, 0x6b, 0x2f, 0x15, 0xff, 0x6b, 0x30, 0x16, 0xff, 0x6d, 0x32, 0x18, 0xff, 0x6f, 0x31, 0x16, 0xff, 0x73, 0x34, 0x19, 0xff, 0x74, 0x34, 0x19, 0xff, 0x76, 0x36, 0x1a, 0xff, 0x7a, 0x38, 0x19, 0xff, 0x7b, 0x39, 0x1b, 0xff, 0x7e, 0x3e, 0x1f, 0xff, 0x83, 0x41, 0x21, 0xff, 0x88, 0x45, 0x25, 0xff, 0x8e, 0x4a, 0x27, 0xff, 0x93, 0x50, 0x29, 0xff, 0x97, 0x53, 0x2c, 0xff, 0x9c, 0x58, 0x2e, 0xff, 0xa0, 0x5b, 0x2f, 0xff, 0xa3, 0x5f, 0x30, 0xff, 0xa7, 0x63, 0x33, 0xff, 0xac, 0x69, 0x35, 0xff, 0xb5, 0x71, 0x3b, 0xff, 0xbc, 0x7c, 0x45, 0xff, 0xc0, 0x80, 0x47, 0xff, 0xc4, 0x84, 0x4b, 0xff, 0xcf, 0x8d, 0x55, 0xff, 0xe2, 0x97, 0x5f, 0xff, 0xf6, 0xa1, 0x64, 0xff, 0xf7, 0xaf, 0x6a, 0xff, 0xf6, 0xba, 0x70, 0xff, 0xf7, 0xca, 0x78, 0xff, 0xf7, 0xdf, 0x80, 0xff, 0xf3, 0xf0, 0x8b, 0xff, 0xec, 0xf2, 0x8f, 0xff, 0xef, 0xf3, 0x8d, 0xff, 0xf1, 0xef, 0x93, 0xff, 0xf4, 0xee, 0x99, 0xff, 0xf7, 0xee, 0x95, 0xff, 0xf8, 0xee, 0x93, 0xff, 0xf3, 0xef, 0x93, 0xff, 0xee, 0xef, 0x93, 0xff, 0xe9, 0xf2, 0x97, 0xff, 0xe5, 0xf0, 0x96, 0xff, 0xeb, 0xee, 0x8a, 0xff, 0xf6, 0xe5, 0x81, 0xff, 0xf7, 0xd4, 0x7a, 0xff, 0xf5, 0xcb, 0x7a, 0xff, 0xf5, 0xc3, 0x7a, 0xff, 0xf7, 0xbc, 0x77, 0xff, 0xf7, 0xb3, 0x72, 0xff, 0xf7, 0xb1, 0x73, 0xff, 0xf6, 0xb5, 0x7a, 0xff, 0xf8, 0xb8, 0x7d, 0xff, 0xf8, 0xb9, 0x7c, 0xff, 0xf6, 0xbb, 0x7c, 0xff, 0xf1, 0xbc, 0x76, 0xff, 0xe8, 0xb0, 0x69, 0xff, 0xe8, 0xa9, 0x62, 0xff, 0xe7, 0xa4, 0x5c, 0xff, 0xe6, 0x9f, 0x5b, 0xff, 0xe5, 0x9e, 0x59, 0xff, 0xe4, 0x9c, 0x58, 0xff, 0xe4, 0x9d, 0x59, 0xff, 0xea, 0xa9, 0x5c, 0xff, 0xf1, 0xbf, 0x5f, 0xff, 0xf5, 0xcb, 0x69, 0xff, 0xef, 0xc1, 0x6e, 0xff, 0xd2, 0xa1, 0x5f, 0xff, 0xba, 0x80, 0x4f, 0xff, 0xbc, 0x81, 0x4a, 0xff, 0xbb, 0x80, 0x4a, 0xff, 0xbb, 0x82, 0x4a, 0xff, 0xb9, 0x85, 0x4d, 0xff, 0xb7, 0x85, 0x51, 0xff, 0xb7, 0x84, 0x53, 0xff, 0xb6, 0x84, 0x52, 0xff, 0xb6, 0x84, 0x4e, 0xff, 0xb5, 0x81, 0x4b, 0xff, 0xb4, 0x80, 0x4a, 0xff, 0xb3, 0x7e, 0x47, 0xff, 0xaf, 0x7a, 0x46, 0xff, 0xaf, 0x7b, 0x47, 0xff, 0xae, 0x79, 0x46, 0xff, 0xad, 0x76, 0x46, 0xff, 0xa9, 0x73, 0x3f, 0xff, 0xa7, 0x70, 0x40, 0xff, 0xa0, 0x67, 0x3b, 0xff, 0x97, 0x5d, 0x34, 0xff, 0x97, 0x5b, 0x34, 0xff, 0x96, 0x5b, 0x34, 0xff, 0x93, 0x58, 0x32, 0xff, 0x92, 0x57, 0x30, 0xff, 0x90, 0x55, 0x2f, 0xff, 0x8e, 0x53, 0x2d, 0xff, 0x8e, 0x52, 0x2c, 0xff, 0x8c, 0x50, 0x2d, 0xff, 0x89, 0x4f, 0x2c, 0xff, 0x84, 0x48, 0x29, 0xff, 0x7f, 0x43, 0x26, 0xff, 0x7e, 0x42, 0x25, 0xff, 0x7e, 0x42, 0x25, 0xff, 0x7d, 0x41, 0x25, 0xff, 0x7b, 0x42, 0x25, 0xff, 0x7b, 0x41, 0x24, 0xff, 0x7a, 0x3f, 0x24, 0xff, 0x79, 0x3f, 0x24, 0xff, 0x79, 0x3f, 0x24, 0xff, 0x77, 0x3d, 0x21, 0xff, 0x77, 0x3c, 0x21, 0xff, 0x74, 0x3a, 0x20, 0xff, 0x73, 0x39, 0x1e, 0xff, 0x73, 0x3a, 0x1d, 0xff, 0x71, 0x39, 0x1c, 0xff, 0x71, 0x38, 0x1d, 0xff, 0x72, 0x38, 0x1c, 0xff, 0x75, 0x3a, 0x1d, 0xff, 0x75, 0x3b, 0x1d, 0xff, 0x75, 0x3c, 0x1d, 0xff, 0x76, 0x3c, 0x1f, 0xff, 0x79, 0x3c, 0x21, 0xff, 0x7a, 0x3d, 0x22, 0xff, 0x78, 0x3d, 0x21, 0xff, 0x77, 0x3a, 0x20, 0xff, 0x79, 0x3c, 0x21, 0xff, 0x7c, 0x3f, 0x23, 0xff, 0x7d, 0x3f, 0x23, 0xff, 0x7d, 0x40, 0x24, 0xff, 0x7f, 0x41, 0x23, 0xff, 0x81, 0x43, 0x24, 0xff, 0x83, 0x46, 0x25, 0xff, 0x85, 0x46, 0x26, 0xff, 0x87, 0x49, 0x27, 0xff, 0x89, 0x4c, 0x27, 0xff, 0x8a, 0x4c, 0x27, 0xff, 0x8d, 0x4c, 0x28, 0xff, 0x8f, 0x4e, 0x28, 0xff, 0x90, 0x50, 0x28, 0xff, 0x92, 0x52, 0x28, 0xff, 0x96, 0x54, 0x27, 0xff, 0x97, 0x56, 0x27, 0xff, 0x9b, 0x5a, 0x2a, 0xff, 0xa1, 0x61, 0x31, 0xff, 0xa9, 0x65, 0x37, 0xff, 0xaf, 0x6b, 0x3a, 0xff, 0xb3, 0x6f, 0x3d, 0xff, 0xbb, 0x76, 0x3f, 0xff, 0xbf, 0x79, 0x41, 0xff, 0xc1, 0x79, 0x42, 0xff, 0xc4, 0x7d, 0x43, 0xff, 0xc7, 0x7f, 0x44, 0xff, 0xcb, 0x82, 0x46, 0xff, 0xcb, 0x87, 0x49, 0xff, 0xcc, 0x89, 0x4b, 0xff, 0xce, 0x89, 0x4e, 0xff, 0xcf, 0x8a, 0x4d, 0xff, 0xc9, 0x89, 0x4a, 0xff, 0xc3, 0x87, 0x47, 0xff, 0xc3, 0x88, 0x48, 0xff, 0xc6, 0x8a, 0x49, 0xff, 0xca, 0x8d, 0x49, 0xff, 0xd0, 0x8e, 0x49, 0xff, 0xd2, 0x8d, 0x49, 0xff, 0xd6, 0x8d, 0x48, 0xff, 0xdc, 0x8f, 0x49, 0xff, 0xdf, 0x92, 0x4c, 0xff, 0xe2, 0x95, 0x4f, 0xff, 0xe8, 0x9a, 0x52, 0xff, 0xe9, 0x9a, 0x52, 0xff, 0xeb, 0x97, 0x53, 0xff, 0xf3, 0x99, 0x54, 0xff, 0xf3, 0x9b, 0x58, 0xff, 0xea, 0x98, 0x59, 0xff, 0xd5, 0x8c, 0x54, 0xff, 0xdc, 0x90, 0x5b, 0xff, 0xe3, 0x92, 0x5a, 0xff, 0xe6, 0x91, 0x57, 0xff, 0xe5, 0x8f, 0x53, 0xff, 0xea, 0x95, 0x57, 0xff, 0xdc, 0x8d, 0x54, 0xff, 0xba, 0x79, 0x49, 0xff, 0xb4, 0x74, 0x45, 0xff, 0xb2, 0x70, 0x42, 0xff, 0xaf, 0x6f, 0x41, 0xff, 0xb0, 0x6f, 0x40, 0xff, 0xaf, 0x6f, 0x42, 0xff, 0xb0, 0x70, 0x45, 0xff, 0xae, 0x70, 0x45, 0xff, 0xaf, 0x6e, 0x42, 0xff, 0xaf, 0x6e, 0x41, 0xff, 0xaf, 0x6f, 0x41, 0xff, 0xb1, 0x73, 0x42, 0xff, 0xab, 0x6c, 0x40, 0xff, 0x8b, 0x4d, 0x2d, 0xff, 0x8e, 0x51, 0x32, 0xff, 0x8f, 0x51, 0x31, 0xff, 0x8f, 0x52, 0x2e, 0xff, 0x8e, 0x50, 0x2e, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x8e, 0x4f, 0x2e, 0xff, 0x91, 0x51, 0x2e, 0xff, 0x91, 0x51, 0x2e, 0xff, 0x91, 0x50, 0x2e, 0xff, 0x95, 0x57, 0x32, 0xff, 0x90, 0x4f, 0x2e, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x87, 0x4a, 0x2a, 0xff, 0x87, 0x46, 0x2a, 0xff, 0x86, 0x46, 0x28, 0xff, 0x84, 0x44, 0x27, 0xff, 0x84, 0x42, 0x26, 0xff, 0x83, 0x42, 0x26, 0xff, 0x80, 0x41, 0x26, 0xff, 0x7f, 0x3f, 0x25, 0xff, 0x7e, 0x3e, 0x25, 0xff, 0x7e, 0x3e, 0x24, 0xff, 0x7e, 0x3d, 0x24, 0xff, 0x7d, 0x3d, 0x24, 0xff, 0x7e, 0x3e, 0x25, 0xff, 0x81, 0x41, 0x26, 0xff, 0x85, 0x44, 0x2a, 0xff, 0x84, 0x43, 0x28, 0xff, 0x7c, 0x3d, 0x23, 0xff, 0x73, 0x35, 0x19, 0xff, 0x7a, 0x3c, 0x25, 0xff, + 0x7e, 0x40, 0x27, 0xff, 0x7e, 0x3f, 0x26, 0xff, 0x7c, 0x3c, 0x24, 0xff, 0x77, 0x39, 0x23, 0xff, 0x71, 0x36, 0x1b, 0xff, 0x6f, 0x31, 0x19, 0xff, 0x6b, 0x30, 0x16, 0xff, 0x69, 0x2c, 0x14, 0xff, 0x69, 0x2d, 0x13, 0xff, 0x6a, 0x2f, 0x13, 0xff, 0x69, 0x2f, 0x10, 0xff, 0x68, 0x2c, 0x13, 0xff, 0x6a, 0x2c, 0x14, 0xff, 0x6a, 0x2f, 0x14, 0xff, 0x6c, 0x2f, 0x14, 0xff, 0x6f, 0x2f, 0x15, 0xff, 0x71, 0x31, 0x16, 0xff, 0x72, 0x34, 0x18, 0xff, 0x78, 0x37, 0x17, 0xff, 0x7a, 0x39, 0x19, 0xff, 0x7b, 0x39, 0x1b, 0xff, 0x7e, 0x3c, 0x1f, 0xff, 0x82, 0x40, 0x21, 0xff, 0x88, 0x46, 0x24, 0xff, 0x8f, 0x4b, 0x27, 0xff, 0x93, 0x4e, 0x29, 0xff, 0x9a, 0x56, 0x2a, 0xff, 0x9f, 0x5c, 0x2d, 0xff, 0xa3, 0x60, 0x31, 0xff, 0xa5, 0x62, 0x34, 0xff, 0xa9, 0x67, 0x34, 0xff, 0xae, 0x6c, 0x37, 0xff, 0xb9, 0x76, 0x3f, 0xff, 0xbe, 0x80, 0x48, 0xff, 0xc3, 0x83, 0x4b, 0xff, 0xce, 0x8c, 0x54, 0xff, 0xe0, 0x96, 0x5f, 0xff, 0xf4, 0xa5, 0x68, 0xff, 0xf8, 0xb1, 0x70, 0xff, 0xf6, 0xc2, 0x7b, 0xff, 0xf6, 0xe1, 0x84, 0xff, 0xf2, 0xf1, 0x8d, 0xff, 0xea, 0xf1, 0x96, 0xff, 0xeb, 0xf3, 0x9c, 0xff, 0xe9, 0xf3, 0x9b, 0xff, 0xeb, 0xf3, 0x9d, 0xff, 0xec, 0xf3, 0x9e, 0xff, 0xf0, 0xf1, 0x9c, 0xff, 0xf5, 0xed, 0x9a, 0xff, 0xf7, 0xeb, 0x98, 0xff, 0xf6, 0xec, 0x97, 0xff, 0xf0, 0xf0, 0x98, 0xff, 0xe9, 0xf2, 0x96, 0xff, 0xe8, 0xf2, 0x90, 0xff, 0xef, 0xec, 0x87, 0xff, 0xf9, 0xdd, 0x7c, 0xff, 0xf6, 0xcd, 0x7a, 0xff, 0xf5, 0xc5, 0x7b, 0xff, 0xf7, 0xbd, 0x74, 0xff, 0xf7, 0xb5, 0x72, 0xff, 0xf7, 0xb1, 0x71, 0xff, 0xf6, 0xb2, 0x76, 0xff, 0xf8, 0xb9, 0x7d, 0xff, 0xf8, 0xb9, 0x7b, 0xff, 0xf6, 0xba, 0x7a, 0xff, 0xf4, 0xbc, 0x7a, 0xff, 0xeb, 0xb7, 0x6e, 0xff, 0xe4, 0xa8, 0x60, 0xff, 0xe6, 0xa5, 0x5e, 0xff, 0xe6, 0xa0, 0x5c, 0xff, 0xe4, 0x9e, 0x59, 0xff, 0xe3, 0x9d, 0x58, 0xff, 0xe1, 0x9d, 0x59, 0xff, 0xe8, 0xad, 0x5c, 0xff, 0xf3, 0xbf, 0x63, 0xff, 0xf4, 0xbf, 0x69, 0xff, 0xe9, 0xbe, 0x6d, 0xff, 0xc7, 0x98, 0x5c, 0xff, 0xbe, 0x84, 0x50, 0xff, 0xbf, 0x84, 0x4e, 0xff, 0xbc, 0x82, 0x49, 0xff, 0xbd, 0x84, 0x4b, 0xff, 0xbc, 0x87, 0x51, 0xff, 0xbb, 0x89, 0x53, 0xff, 0xba, 0x87, 0x55, 0xff, 0xb9, 0x87, 0x57, 0xff, 0xb8, 0x83, 0x53, 0xff, 0xb6, 0x83, 0x50, 0xff, 0xb5, 0x83, 0x4b, 0xff, 0xb5, 0x7d, 0x4b, 0xff, 0xb2, 0x7a, 0x49, 0xff, 0xb0, 0x7d, 0x49, 0xff, 0xb0, 0x7d, 0x48, 0xff, 0xae, 0x79, 0x46, 0xff, 0xad, 0x76, 0x43, 0xff, 0xa7, 0x6f, 0x3f, 0xff, 0x9d, 0x62, 0x36, 0xff, 0x9a, 0x5f, 0x34, 0xff, 0x99, 0x5d, 0x34, 0xff, 0x99, 0x5d, 0x34, 0xff, 0x97, 0x5c, 0x34, 0xff, 0x94, 0x59, 0x31, 0xff, 0x93, 0x56, 0x2e, 0xff, 0x90, 0x54, 0x2d, 0xff, 0x8e, 0x52, 0x2d, 0xff, 0x8e, 0x53, 0x2f, 0xff, 0x8b, 0x4f, 0x2d, 0xff, 0x85, 0x49, 0x29, 0xff, 0x83, 0x45, 0x28, 0xff, 0x81, 0x44, 0x26, 0xff, 0x7e, 0x44, 0x25, 0xff, 0x7e, 0x40, 0x25, 0xff, 0x7d, 0x3f, 0x25, 0xff, 0x7b, 0x40, 0x24, 0xff, 0x7b, 0x3e, 0x25, 0xff, 0x79, 0x3d, 0x25, 0xff, 0x79, 0x3e, 0x23, 0xff, 0x79, 0x3e, 0x23, 0xff, 0x78, 0x3d, 0x23, 0xff, 0x76, 0x3a, 0x21, 0xff, 0x75, 0x3a, 0x21, 0xff, 0x75, 0x3b, 0x20, 0xff, 0x73, 0x39, 0x1d, 0xff, 0x71, 0x38, 0x1e, 0xff, 0x71, 0x38, 0x1d, 0xff, 0x71, 0x38, 0x1e, 0xff, 0x73, 0x3a, 0x1d, 0xff, 0x74, 0x3a, 0x1d, 0xff, 0x77, 0x3b, 0x20, 0xff, 0x75, 0x39, 0x1f, 0xff, 0x72, 0x37, 0x1c, 0xff, 0x72, 0x39, 0x1c, 0xff, 0x74, 0x3b, 0x1e, 0xff, 0x77, 0x3a, 0x1f, 0xff, 0x79, 0x3a, 0x20, 0xff, 0x7a, 0x3c, 0x21, 0xff, 0x7b, 0x3d, 0x20, 0xff, 0x7e, 0x3f, 0x22, 0xff, 0x80, 0x42, 0x24, 0xff, 0x81, 0x44, 0x25, 0xff, 0x83, 0x43, 0x25, 0xff, 0x83, 0x44, 0x24, 0xff, 0x86, 0x47, 0x25, 0xff, 0x88, 0x47, 0x25, 0xff, 0x8a, 0x48, 0x27, 0xff, 0x89, 0x49, 0x25, 0xff, 0x8c, 0x4c, 0x25, 0xff, 0x9a, 0x5a, 0x2f, 0xff, 0xa5, 0x64, 0x37, 0xff, 0xa9, 0x67, 0x39, 0xff, 0xb1, 0x70, 0x3f, 0xff, 0xbe, 0x7a, 0x49, 0xff, 0xc7, 0x81, 0x4f, 0xff, 0xcd, 0x87, 0x52, 0xff, 0xd3, 0x8f, 0x58, 0xff, 0xdc, 0x93, 0x5d, 0xff, 0xe1, 0x94, 0x5a, 0xff, 0xe5, 0x95, 0x59, 0xff, 0xe7, 0x94, 0x58, 0xff, 0xea, 0x93, 0x57, 0xff, 0xec, 0x93, 0x58, 0xff, 0xed, 0x94, 0x58, 0xff, 0xed, 0x96, 0x5a, 0xff, 0xf0, 0x98, 0x5c, 0xff, 0xf2, 0x9a, 0x5d, 0xff, 0xeb, 0x98, 0x5c, 0xff, 0xe9, 0x96, 0x59, 0xff, 0xe3, 0x95, 0x57, 0xff, 0xdc, 0x94, 0x55, 0xff, 0xd0, 0x91, 0x51, 0xff, 0xc5, 0x8a, 0x48, 0xff, 0xc9, 0x88, 0x47, 0xff, 0xcf, 0x8b, 0x49, 0xff, 0xd3, 0x8d, 0x48, 0xff, 0xd6, 0x8d, 0x49, 0xff, 0xd9, 0x8e, 0x4a, 0xff, 0xda, 0x90, 0x4c, 0xff, 0xde, 0x93, 0x4d, 0xff, 0xeb, 0x9a, 0x53, 0xff, 0xdb, 0x91, 0x52, 0xff, 0xd5, 0x8a, 0x51, 0xff, 0xd1, 0x8a, 0x52, 0xff, 0xd4, 0x8d, 0x57, 0xff, 0xdb, 0x91, 0x59, 0xff, 0xde, 0x91, 0x57, 0xff, 0xe4, 0x93, 0x58, 0xff, 0xea, 0x98, 0x5c, 0xff, 0xf0, 0x9c, 0x60, 0xff, 0xe3, 0x96, 0x5e, 0xff, 0xbd, 0x80, 0x50, 0xff, 0xb7, 0x76, 0x4a, 0xff, 0xb4, 0x73, 0x45, 0xff, 0xb3, 0x72, 0x43, 0xff, 0xb1, 0x71, 0x40, 0xff, 0xb0, 0x72, 0x41, 0xff, 0xae, 0x6c, 0x40, 0xff, 0xae, 0x70, 0x43, 0xff, 0xaf, 0x6f, 0x42, 0xff, 0xb0, 0x6f, 0x42, 0xff, 0xb1, 0x71, 0x42, 0xff, 0xae, 0x6f, 0x40, 0xff, 0x94, 0x53, 0x30, 0xff, 0x8e, 0x51, 0x34, 0xff, 0x8e, 0x50, 0x30, 0xff, 0x8d, 0x51, 0x2f, 0xff, 0x8b, 0x4e, 0x2d, 0xff, 0x8e, 0x51, 0x2e, 0xff, 0x90, 0x50, 0x2f, 0xff, 0x90, 0x51, 0x2f, 0xff, 0x93, 0x52, 0x2f, 0xff, 0x93, 0x52, 0x30, 0xff, 0x92, 0x52, 0x2f, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x91, 0x51, 0x2f, 0xff, 0x91, 0x4f, 0x2e, 0xff, 0x8d, 0x4d, 0x2c, 0xff, 0x81, 0x44, 0x26, 0xff, 0x82, 0x42, 0x26, 0xff, 0x82, 0x40, 0x25, 0xff, 0x7f, 0x40, 0x25, 0xff, 0x7f, 0x3f, 0x25, 0xff, 0x7e, 0x3e, 0x24, 0xff, 0x7c, 0x3b, 0x23, 0xff, 0x7c, 0x3c, 0x23, 0xff, 0x7b, 0x3b, 0x22, 0xff, 0x7a, 0x3a, 0x22, 0xff, 0x7a, 0x39, 0x22, 0xff, 0x7a, 0x3a, 0x22, 0xff, 0x7a, 0x3a, 0x21, 0xff, 0x7a, 0x3a, 0x22, 0xff, 0x7b, 0x3b, 0x22, 0xff, 0x7e, 0x3d, 0x23, 0xff, 0x80, 0x41, 0x28, 0xff, 0x7e, 0x40, 0x27, 0xff, + 0x7c, 0x3f, 0x26, 0xff, 0x7e, 0x3e, 0x25, 0xff, 0x7c, 0x3d, 0x24, 0xff, 0x7c, 0x3d, 0x24, 0xff, 0x7a, 0x3c, 0x23, 0xff, 0x71, 0x32, 0x1a, 0xff, 0x68, 0x2b, 0x13, 0xff, 0x66, 0x2d, 0x13, 0xff, 0x67, 0x2b, 0x0f, 0xff, 0x67, 0x2b, 0x0f, 0xff, 0x66, 0x2c, 0x0f, 0xff, 0x66, 0x2c, 0x0f, 0xff, 0x66, 0x2b, 0x0f, 0xff, 0x67, 0x2a, 0x0f, 0xff, 0x67, 0x2c, 0x0f, 0xff, 0x68, 0x2c, 0x13, 0xff, 0x6c, 0x2f, 0x13, 0xff, 0x70, 0x2f, 0x16, 0xff, 0x71, 0x31, 0x16, 0xff, 0x74, 0x33, 0x16, 0xff, 0x77, 0x37, 0x18, 0xff, 0x7c, 0x39, 0x1b, 0xff, 0x80, 0x3d, 0x1f, 0xff, 0x84, 0x41, 0x21, 0xff, 0x87, 0x44, 0x24, 0xff, 0x8d, 0x49, 0x25, 0xff, 0x94, 0x4e, 0x28, 0xff, 0x9a, 0x56, 0x2a, 0xff, 0xa0, 0x5d, 0x2d, 0xff, 0xa4, 0x61, 0x30, 0xff, 0xa7, 0x65, 0x33, 0xff, 0xab, 0x6a, 0x35, 0xff, 0xb0, 0x70, 0x3b, 0xff, 0xb9, 0x78, 0x40, 0xff, 0xc0, 0x81, 0x4a, 0xff, 0xca, 0x89, 0x52, 0xff, 0xdb, 0x96, 0x5f, 0xff, 0xf1, 0xa3, 0x6a, 0xff, 0xf8, 0xb3, 0x74, 0xff, 0xf8, 0xcc, 0x7f, 0xff, 0xf3, 0xef, 0x91, 0xff, 0xeb, 0xf3, 0xa0, 0xff, 0xed, 0xf1, 0xae, 0xff, 0xef, 0xf2, 0xb5, 0xff, 0xf1, 0xf3, 0xb5, 0xff, 0xee, 0xf2, 0xb1, 0xff, 0xef, 0xf2, 0xae, 0xff, 0xec, 0xef, 0xaa, 0xff, 0xf2, 0xf2, 0xa4, 0xff, 0xf7, 0xee, 0xa0, 0xff, 0xf7, 0xee, 0x9e, 0xff, 0xf4, 0xee, 0x9b, 0xff, 0xf1, 0xf1, 0x98, 0xff, 0xea, 0xf2, 0x95, 0xff, 0xea, 0xf2, 0x8f, 0xff, 0xf5, 0xe9, 0x86, 0xff, 0xf8, 0xd7, 0x7b, 0xff, 0xf5, 0xc8, 0x7a, 0xff, 0xf5, 0xbd, 0x77, 0xff, 0xf7, 0xb6, 0x72, 0xff, 0xf7, 0xb1, 0x71, 0xff, 0xf6, 0xb2, 0x74, 0xff, 0xf6, 0xbb, 0x7e, 0xff, 0xf6, 0xb7, 0x7c, 0xff, 0xf5, 0xb7, 0x7b, 0xff, 0xf6, 0xbc, 0x7b, 0xff, 0xf3, 0xbd, 0x77, 0xff, 0xe4, 0xae, 0x66, 0xff, 0xe3, 0xa3, 0x5b, 0xff, 0xe3, 0x9f, 0x59, 0xff, 0xe2, 0x9e, 0x58, 0xff, 0xe1, 0x9a, 0x5a, 0xff, 0xe0, 0x9b, 0x59, 0xff, 0xe8, 0xaa, 0x5c, 0xff, 0xf5, 0xc1, 0x67, 0xff, 0xf3, 0xcc, 0x6f, 0xff, 0xe4, 0xbf, 0x6e, 0xff, 0xc4, 0x8e, 0x57, 0xff, 0xc2, 0x89, 0x54, 0xff, 0xc2, 0x88, 0x51, 0xff, 0xbe, 0x82, 0x49, 0xff, 0xc0, 0x86, 0x4c, 0xff, 0xbe, 0x89, 0x4f, 0xff, 0xbc, 0x89, 0x54, 0xff, 0xbc, 0x89, 0x57, 0xff, 0xba, 0x89, 0x57, 0xff, 0xb9, 0x87, 0x55, 0xff, 0xb8, 0x87, 0x52, 0xff, 0xb6, 0x85, 0x4e, 0xff, 0xb5, 0x82, 0x4a, 0xff, 0xb4, 0x7e, 0x48, 0xff, 0xb2, 0x7c, 0x49, 0xff, 0xb0, 0x7a, 0x47, 0xff, 0xaf, 0x7a, 0x47, 0xff, 0xae, 0x79, 0x48, 0xff, 0xa5, 0x6d, 0x3e, 0xff, 0x9d, 0x63, 0x37, 0xff, 0x9c, 0x63, 0x37, 0xff, 0x9a, 0x61, 0x33, 0xff, 0x98, 0x5e, 0x34, 0xff, 0x99, 0x5c, 0x35, 0xff, 0x97, 0x5a, 0x32, 0xff, 0x93, 0x58, 0x2e, 0xff, 0x92, 0x57, 0x2f, 0xff, 0x91, 0x56, 0x31, 0xff, 0x8e, 0x54, 0x30, 0xff, 0x8b, 0x50, 0x2d, 0xff, 0x87, 0x4b, 0x2a, 0xff, 0x85, 0x4a, 0x28, 0xff, 0x84, 0x48, 0x28, 0xff, 0x80, 0x45, 0x26, 0xff, 0x80, 0x44, 0x26, 0xff, 0x7f, 0x42, 0x26, 0xff, 0x7d, 0x42, 0x24, 0xff, 0x7e, 0x41, 0x24, 0xff, 0x7d, 0x3f, 0x25, 0xff, 0x7a, 0x3e, 0x25, 0xff, 0x79, 0x3e, 0x22, 0xff, 0x79, 0x3c, 0x21, 0xff, 0x78, 0x3d, 0x23, 0xff, 0x77, 0x3d, 0x22, 0xff, 0x76, 0x3b, 0x20, 0xff, 0x75, 0x3b, 0x21, 0xff, 0x72, 0x39, 0x1f, 0xff, 0x71, 0x38, 0x1e, 0xff, 0x71, 0x38, 0x1e, 0xff, 0x73, 0x3a, 0x1e, 0xff, 0x74, 0x3a, 0x1f, 0xff, 0x72, 0x37, 0x1a, 0xff, 0x6e, 0x34, 0x17, 0xff, 0x6e, 0x35, 0x18, 0xff, 0x70, 0x37, 0x1a, 0xff, 0x71, 0x36, 0x19, 0xff, 0x73, 0x37, 0x1a, 0xff, 0x76, 0x38, 0x1d, 0xff, 0x78, 0x38, 0x1e, 0xff, 0x79, 0x3c, 0x1e, 0xff, 0x7a, 0x3d, 0x20, 0xff, 0x7d, 0x3e, 0x23, 0xff, 0x7e, 0x3f, 0x22, 0xff, 0x7f, 0x41, 0x20, 0xff, 0x81, 0x43, 0x21, 0xff, 0x82, 0x44, 0x22, 0xff, 0x83, 0x43, 0x21, 0xff, 0x8a, 0x49, 0x25, 0xff, 0x9c, 0x5b, 0x33, 0xff, 0xae, 0x6e, 0x40, 0xff, 0xb4, 0x74, 0x43, 0xff, 0xb2, 0x71, 0x41, 0xff, 0xb3, 0x71, 0x41, 0xff, 0xb4, 0x73, 0x41, 0xff, 0xb8, 0x74, 0x44, 0xff, 0xc1, 0x7c, 0x49, 0xff, 0xc8, 0x81, 0x4d, 0xff, 0xcd, 0x86, 0x4d, 0xff, 0xd2, 0x89, 0x51, 0xff, 0xd7, 0x8c, 0x54, 0xff, 0xe0, 0x92, 0x57, 0xff, 0xe6, 0x94, 0x57, 0xff, 0xee, 0x94, 0x55, 0xff, 0xf4, 0x95, 0x59, 0xff, 0xf6, 0x99, 0x5b, 0xff, 0xf7, 0x9c, 0x5e, 0xff, 0xf7, 0x9c, 0x5e, 0xff, 0xf7, 0x9b, 0x5d, 0xff, 0xf7, 0x9c, 0x5d, 0xff, 0xf7, 0x9c, 0x5e, 0xff, 0xf7, 0x9d, 0x5f, 0xff, 0xf6, 0x9e, 0x61, 0xff, 0xf6, 0xa0, 0x61, 0xff, 0xf2, 0xa4, 0x65, 0xff, 0xda, 0x97, 0x57, 0xff, 0xca, 0x8c, 0x4b, 0xff, 0xc9, 0x8a, 0x46, 0xff, 0xcb, 0x89, 0x48, 0xff, 0xce, 0x8a, 0x48, 0xff, 0xd0, 0x8a, 0x48, 0xff, 0xd5, 0x8d, 0x4b, 0xff, 0xc8, 0x84, 0x49, 0xff, 0xbe, 0x7d, 0x48, 0xff, 0xc9, 0x88, 0x51, 0xff, 0xd1, 0x89, 0x52, 0xff, 0xcf, 0x88, 0x53, 0xff, 0xd4, 0x8c, 0x53, 0xff, 0xd6, 0x8c, 0x54, 0xff, 0xdb, 0x91, 0x55, 0xff, 0xe0, 0x96, 0x5c, 0xff, 0xe9, 0x99, 0x66, 0xff, 0xe0, 0x96, 0x66, 0xff, 0xbc, 0x81, 0x58, 0xff, 0xb7, 0x7b, 0x4e, 0xff, 0xb8, 0x78, 0x49, 0xff, 0xb6, 0x74, 0x45, 0xff, 0xb3, 0x72, 0x41, 0xff, 0xb3, 0x72, 0x41, 0xff, 0xb0, 0x72, 0x42, 0xff, 0xb1, 0x73, 0x43, 0xff, 0xb3, 0x72, 0x45, 0xff, 0xb3, 0x73, 0x47, 0xff, 0xb8, 0x78, 0x4b, 0xff, 0x9e, 0x5f, 0x39, 0xff, 0x90, 0x54, 0x34, 0xff, 0x8f, 0x53, 0x33, 0xff, 0x8f, 0x4f, 0x2f, 0xff, 0x8f, 0x4f, 0x2e, 0xff, 0x93, 0x56, 0x32, 0xff, 0x91, 0x54, 0x30, 0xff, 0x92, 0x54, 0x2f, 0xff, 0x90, 0x51, 0x2f, 0xff, 0x91, 0x51, 0x2e, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x90, 0x4f, 0x2d, 0xff, 0x8f, 0x51, 0x2d, 0xff, 0x8f, 0x4f, 0x2d, 0xff, 0x8f, 0x4f, 0x2d, 0xff, 0x8f, 0x4d, 0x2b, 0xff, 0x8e, 0x4e, 0x2c, 0xff, 0x81, 0x43, 0x24, 0xff, 0x7e, 0x3e, 0x24, 0xff, 0x7d, 0x3c, 0x24, 0xff, 0x7d, 0x3c, 0x22, 0xff, 0x7a, 0x3a, 0x20, 0xff, 0x79, 0x3a, 0x21, 0xff, 0x79, 0x39, 0x20, 0xff, 0x77, 0x39, 0x1e, 0xff, 0x76, 0x37, 0x1e, 0xff, 0x77, 0x37, 0x1b, 0xff, 0x76, 0x37, 0x1e, 0xff, 0x76, 0x37, 0x1e, 0xff, 0x79, 0x3a, 0x21, 0xff, 0x77, 0x37, 0x1b, 0xff, 0x7e, 0x40, 0x27, 0xff, 0x7e, 0x40, 0x27, 0xff, 0x7b, 0x3e, 0x26, 0xff, + 0x7f, 0x3f, 0x25, 0xff, 0x79, 0x3c, 0x23, 0xff, 0x7b, 0x3b, 0x22, 0xff, 0x7b, 0x3b, 0x22, 0xff, 0x78, 0x39, 0x20, 0xff, 0x76, 0x37, 0x1d, 0xff, 0x76, 0x38, 0x1f, 0xff, 0x6a, 0x2c, 0x14, 0xff, 0x63, 0x29, 0x0e, 0xff, 0x62, 0x2b, 0x0f, 0xff, 0x62, 0x2b, 0x0f, 0xff, 0x64, 0x29, 0x0d, 0xff, 0x64, 0x2a, 0x0e, 0xff, 0x63, 0x29, 0x0c, 0xff, 0x64, 0x29, 0x0c, 0xff, 0x66, 0x2a, 0x0f, 0xff, 0x68, 0x2b, 0x0f, 0xff, 0x6f, 0x2f, 0x15, 0xff, 0x74, 0x34, 0x18, 0xff, 0x79, 0x38, 0x1c, 0xff, 0x7c, 0x3b, 0x1e, 0xff, 0x80, 0x3e, 0x20, 0xff, 0x83, 0x41, 0x24, 0xff, 0x85, 0x42, 0x24, 0xff, 0x8b, 0x48, 0x26, 0xff, 0x91, 0x4b, 0x28, 0xff, 0x94, 0x50, 0x29, 0xff, 0x98, 0x53, 0x29, 0xff, 0x9d, 0x58, 0x2a, 0xff, 0xa2, 0x5d, 0x2d, 0xff, 0xa8, 0x64, 0x33, 0xff, 0xab, 0x6b, 0x35, 0xff, 0xae, 0x6e, 0x35, 0xff, 0xb4, 0x76, 0x3e, 0xff, 0xbd, 0x7e, 0x46, 0xff, 0xc6, 0x86, 0x4e, 0xff, 0xd8, 0x92, 0x59, 0xff, 0xed, 0xa1, 0x67, 0xff, 0xf7, 0xb2, 0x77, 0xff, 0xf8, 0xc9, 0x84, 0xff, 0xf5, 0xf3, 0x95, 0xff, 0xec, 0xf2, 0xad, 0xff, 0xf6, 0xf3, 0xcb, 0xff, 0xf6, 0xf3, 0xe2, 0xff, 0xf8, 0xf3, 0xec, 0xff, 0xf7, 0xf3, 0xe0, 0xff, 0xf7, 0xf4, 0xd1, 0xff, 0xf6, 0xf4, 0xc3, 0xff, 0xf0, 0xf3, 0xb4, 0xff, 0xf0, 0xf0, 0xaa, 0xff, 0xf8, 0xec, 0xa0, 0xff, 0xf7, 0xe9, 0x9a, 0xff, 0xf6, 0xec, 0x98, 0xff, 0xf4, 0xed, 0x95, 0xff, 0xf3, 0xf0, 0x8f, 0xff, 0xef, 0xef, 0x8d, 0xff, 0xf8, 0xe0, 0x81, 0xff, 0xf8, 0xcc, 0x7b, 0xff, 0xf7, 0xc0, 0x78, 0xff, 0xf6, 0xb7, 0x73, 0xff, 0xf7, 0xb5, 0x73, 0xff, 0xf7, 0xb7, 0x77, 0xff, 0xf7, 0xbc, 0x7d, 0xff, 0xf7, 0xb9, 0x7c, 0xff, 0xf7, 0xb8, 0x79, 0xff, 0xf5, 0xb8, 0x7b, 0xff, 0xf3, 0xbb, 0x78, 0xff, 0xe9, 0xb4, 0x6f, 0xff, 0xe0, 0xa4, 0x5c, 0xff, 0xe1, 0xa2, 0x58, 0xff, 0xe1, 0x9b, 0x57, 0xff, 0xdd, 0x98, 0x55, 0xff, 0xde, 0x9d, 0x58, 0xff, 0xe7, 0xb2, 0x5f, 0xff, 0xf4, 0xc3, 0x6c, 0xff, 0xf1, 0xc3, 0x71, 0xff, 0xde, 0xb0, 0x65, 0xff, 0xc0, 0x8c, 0x54, 0xff, 0xc5, 0x8c, 0x54, 0xff, 0xc3, 0x89, 0x53, 0xff, 0xc2, 0x87, 0x4f, 0xff, 0xc1, 0x86, 0x4a, 0xff, 0xc1, 0x88, 0x51, 0xff, 0xbf, 0x8c, 0x53, 0xff, 0xbc, 0x88, 0x55, 0xff, 0xbc, 0x89, 0x5a, 0xff, 0xbb, 0x88, 0x59, 0xff, 0xb8, 0x85, 0x56, 0xff, 0xb7, 0x86, 0x51, 0xff, 0xb6, 0x84, 0x4c, 0xff, 0xb6, 0x81, 0x49, 0xff, 0xb4, 0x7f, 0x49, 0xff, 0xb3, 0x80, 0x48, 0xff, 0xb3, 0x7e, 0x48, 0xff, 0xaf, 0x78, 0x47, 0xff, 0xa6, 0x6d, 0x41, 0xff, 0x9e, 0x65, 0x38, 0xff, 0x9d, 0x65, 0x38, 0xff, 0x9c, 0x62, 0x36, 0xff, 0x9a, 0x61, 0x34, 0xff, 0x99, 0x5f, 0x34, 0xff, 0x99, 0x5d, 0x33, 0xff, 0x95, 0x5a, 0x31, 0xff, 0x93, 0x57, 0x30, 0xff, 0x93, 0x56, 0x31, 0xff, 0x90, 0x55, 0x30, 0xff, 0x8b, 0x50, 0x2d, 0xff, 0x88, 0x4b, 0x2a, 0xff, 0x87, 0x4c, 0x2a, 0xff, 0x85, 0x4a, 0x29, 0xff, 0x84, 0x48, 0x28, 0xff, 0x82, 0x46, 0x26, 0xff, 0x7e, 0x44, 0x25, 0xff, 0x7d, 0x42, 0x25, 0xff, 0x7c, 0x42, 0x25, 0xff, 0x7b, 0x40, 0x23, 0xff, 0x7a, 0x3f, 0x22, 0xff, 0x78, 0x3f, 0x22, 0xff, 0x78, 0x3f, 0x24, 0xff, 0x78, 0x3f, 0x22, 0xff, 0x78, 0x3e, 0x22, 0xff, 0x75, 0x3c, 0x21, 0xff, 0x73, 0x3a, 0x1f, 0xff, 0x74, 0x3a, 0x20, 0xff, 0x72, 0x3a, 0x1f, 0xff, 0x71, 0x39, 0x1e, 0xff, 0x71, 0x37, 0x1d, 0xff, 0x6f, 0x35, 0x19, 0xff, 0x6c, 0x33, 0x17, 0xff, 0x6c, 0x32, 0x16, 0xff, 0x6d, 0x33, 0x17, 0xff, 0x6d, 0x32, 0x16, 0xff, 0x6d, 0x33, 0x16, 0xff, 0x6f, 0x35, 0x17, 0xff, 0x72, 0x37, 0x1a, 0xff, 0x74, 0x39, 0x1d, 0xff, 0x76, 0x3a, 0x1e, 0xff, 0x78, 0x3a, 0x1d, 0xff, 0x78, 0x38, 0x1c, 0xff, 0x7a, 0x3b, 0x1d, 0xff, 0x7b, 0x3c, 0x1d, 0xff, 0x80, 0x40, 0x1f, 0xff, 0x87, 0x47, 0x24, 0xff, 0xa2, 0x64, 0x3b, 0xff, 0xb1, 0x72, 0x45, 0xff, 0xb1, 0x74, 0x44, 0xff, 0xb2, 0x75, 0x46, 0xff, 0xb4, 0x76, 0x48, 0xff, 0xb5, 0x78, 0x49, 0xff, 0xb7, 0x77, 0x47, 0xff, 0xb8, 0x76, 0x46, 0xff, 0xb7, 0x76, 0x44, 0xff, 0xb9, 0x78, 0x44, 0xff, 0xbd, 0x7a, 0x46, 0xff, 0xc1, 0x7e, 0x4a, 0xff, 0xc8, 0x84, 0x4e, 0xff, 0xce, 0x87, 0x51, 0xff, 0xd5, 0x89, 0x51, 0xff, 0xdd, 0x8f, 0x53, 0xff, 0xe6, 0x91, 0x55, 0xff, 0xed, 0x97, 0x59, 0xff, 0xf4, 0x9f, 0x5f, 0xff, 0xf7, 0xa3, 0x65, 0xff, 0xf7, 0xa7, 0x67, 0xff, 0xf5, 0xa7, 0x66, 0xff, 0xf6, 0xa7, 0x64, 0xff, 0xf7, 0xa2, 0x62, 0xff, 0xf7, 0xa1, 0x5f, 0xff, 0xf7, 0xa0, 0x5f, 0xff, 0xf7, 0xa0, 0x61, 0xff, 0xf7, 0x9f, 0x61, 0xff, 0xf8, 0xa2, 0x62, 0xff, 0xfa, 0xa6, 0x67, 0xff, 0xe9, 0x9d, 0x60, 0xff, 0xcf, 0x8d, 0x4f, 0xff, 0xcb, 0x8a, 0x4a, 0xff, 0xc8, 0x88, 0x48, 0xff, 0xc2, 0x81, 0x49, 0xff, 0xbc, 0x7b, 0x49, 0xff, 0xbd, 0x7a, 0x49, 0xff, 0xc3, 0x80, 0x49, 0xff, 0xc6, 0x85, 0x4d, 0xff, 0xc3, 0x85, 0x4d, 0xff, 0xcb, 0x88, 0x51, 0xff, 0xcd, 0x8a, 0x52, 0xff, 0xd0, 0x89, 0x53, 0xff, 0xd7, 0x91, 0x58, 0xff, 0xdf, 0x97, 0x5f, 0xff, 0xdf, 0x97, 0x64, 0xff, 0xbd, 0x81, 0x59, 0xff, 0xb6, 0x7e, 0x50, 0xff, 0xb8, 0x7c, 0x4d, 0xff, 0xb6, 0x77, 0x48, 0xff, 0xb5, 0x74, 0x44, 0xff, 0xb4, 0x73, 0x42, 0xff, 0xb6, 0x75, 0x44, 0xff, 0xb6, 0x77, 0x47, 0xff, 0xb8, 0x79, 0x48, 0xff, 0xbc, 0x7f, 0x50, 0xff, 0xae, 0x6e, 0x45, 0xff, 0x92, 0x56, 0x35, 0xff, 0x92, 0x57, 0x35, 0xff, 0x92, 0x56, 0x32, 0xff, 0x96, 0x58, 0x34, 0xff, 0x97, 0x59, 0x35, 0xff, 0x94, 0x57, 0x32, 0xff, 0x93, 0x55, 0x32, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x91, 0x50, 0x2e, 0xff, 0x8f, 0x50, 0x2e, 0xff, 0x8f, 0x4f, 0x2e, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x8b, 0x4c, 0x2a, 0xff, 0x8c, 0x4b, 0x2a, 0xff, 0x8b, 0x49, 0x29, 0xff, 0x8b, 0x4a, 0x29, 0xff, 0x83, 0x44, 0x24, 0xff, 0x7b, 0x39, 0x22, 0xff, 0x79, 0x39, 0x20, 0xff, 0x79, 0x3a, 0x20, 0xff, 0x78, 0x38, 0x1d, 0xff, 0x78, 0x39, 0x1d, 0xff, 0x75, 0x36, 0x1d, 0xff, 0x75, 0x36, 0x1a, 0xff, 0x73, 0x34, 0x1b, 0xff, 0x72, 0x34, 0x1a, 0xff, 0x74, 0x36, 0x1a, 0xff, 0x72, 0x35, 0x1a, 0xff, 0x7c, 0x3e, 0x25, 0xff, 0x7e, 0x42, 0x28, 0xff, 0x7d, 0x40, 0x27, 0xff, 0x7d, 0x3f, 0x26, 0xff, + 0x7b, 0x3c, 0x23, 0xff, 0x78, 0x3a, 0x22, 0xff, 0x79, 0x39, 0x20, 0xff, 0x78, 0x38, 0x1e, 0xff, 0x74, 0x35, 0x1c, 0xff, 0x73, 0x35, 0x1b, 0xff, 0x73, 0x35, 0x1b, 0xff, 0x75, 0x36, 0x1c, 0xff, 0x73, 0x35, 0x1b, 0xff, 0x6c, 0x30, 0x15, 0xff, 0x67, 0x2b, 0x0f, 0xff, 0x63, 0x29, 0x0d, 0xff, 0x65, 0x2b, 0x10, 0xff, 0x63, 0x2a, 0x0e, 0xff, 0x67, 0x2a, 0x0e, 0xff, 0x6a, 0x2c, 0x10, 0xff, 0x6d, 0x2f, 0x14, 0xff, 0x6f, 0x30, 0x14, 0xff, 0x71, 0x31, 0x15, 0xff, 0x75, 0x33, 0x18, 0xff, 0x78, 0x36, 0x18, 0xff, 0x7b, 0x39, 0x1b, 0xff, 0x7e, 0x3c, 0x1e, 0xff, 0x82, 0x40, 0x20, 0xff, 0x87, 0x43, 0x24, 0xff, 0x8d, 0x4a, 0x26, 0xff, 0x92, 0x4f, 0x28, 0xff, 0x97, 0x53, 0x29, 0xff, 0x9a, 0x56, 0x2b, 0xff, 0x9f, 0x5b, 0x2c, 0xff, 0xa5, 0x61, 0x30, 0xff, 0xaa, 0x66, 0x34, 0xff, 0xae, 0x6e, 0x38, 0xff, 0xb2, 0x72, 0x3b, 0xff, 0xb9, 0x78, 0x40, 0xff, 0xc3, 0x83, 0x4a, 0xff, 0xd1, 0x91, 0x55, 0xff, 0xea, 0xa1, 0x61, 0xff, 0xf8, 0xb1, 0x72, 0xff, 0xf8, 0xc5, 0x81, 0xff, 0xf5, 0xf0, 0x95, 0xff, 0xed, 0xf4, 0xae, 0xff, 0xf6, 0xf4, 0xd8, 0xff, 0xf8, 0xf4, 0xf1, 0xff, 0xf8, 0xf3, 0xee, 0xff, 0xf8, 0xf3, 0xee, 0xff, 0xf8, 0xf3, 0xee, 0xff, 0xf8, 0xf2, 0xe6, 0xff, 0xf5, 0xf2, 0xca, 0xff, 0xf2, 0xf3, 0xb2, 0xff, 0xf4, 0xf2, 0xa7, 0xff, 0xf7, 0xec, 0x9e, 0xff, 0xf7, 0xe3, 0x9a, 0xff, 0xf7, 0xe1, 0x94, 0xff, 0xf5, 0xea, 0x93, 0xff, 0xf1, 0xf2, 0x91, 0xff, 0xf4, 0xed, 0x8b, 0xff, 0xf7, 0xdf, 0x7f, 0xff, 0xf7, 0xc5, 0x79, 0xff, 0xf6, 0xb9, 0x73, 0xff, 0xf7, 0xb3, 0x71, 0xff, 0xf7, 0xb5, 0x75, 0xff, 0xf6, 0xbc, 0x7b, 0xff, 0xf7, 0xbd, 0x7c, 0xff, 0xf7, 0xbc, 0x7b, 0xff, 0xf7, 0xbb, 0x78, 0xff, 0xf8, 0xbb, 0x75, 0xff, 0xf5, 0xba, 0x74, 0xff, 0xe6, 0xac, 0x65, 0xff, 0xde, 0x9c, 0x57, 0xff, 0xde, 0x9a, 0x58, 0xff, 0xdb, 0x97, 0x57, 0xff, 0xdc, 0x9b, 0x56, 0xff, 0xec, 0xb6, 0x62, 0xff, 0xf2, 0xc5, 0x6e, 0xff, 0xee, 0xc8, 0x76, 0xff, 0xdf, 0xae, 0x69, 0xff, 0xc3, 0x8f, 0x56, 0xff, 0xc6, 0x8e, 0x56, 0xff, 0xc5, 0x8b, 0x53, 0xff, 0xc5, 0x8b, 0x51, 0xff, 0xc2, 0x87, 0x4c, 0xff, 0xc3, 0x8b, 0x4f, 0xff, 0xc1, 0x8b, 0x52, 0xff, 0xc0, 0x8c, 0x58, 0xff, 0xbe, 0x8b, 0x5c, 0xff, 0xbd, 0x89, 0x59, 0xff, 0xbc, 0x8b, 0x56, 0xff, 0xbb, 0x8a, 0x53, 0xff, 0xb8, 0x86, 0x4e, 0xff, 0xb8, 0x83, 0x4a, 0xff, 0xb6, 0x81, 0x4a, 0xff, 0xb4, 0x7e, 0x49, 0xff, 0xb3, 0x7e, 0x4a, 0xff, 0xb1, 0x7c, 0x49, 0xff, 0xa9, 0x70, 0x40, 0xff, 0xa2, 0x66, 0x3a, 0xff, 0xa1, 0x65, 0x39, 0xff, 0x9f, 0x63, 0x37, 0xff, 0x9d, 0x63, 0x35, 0xff, 0x9c, 0x63, 0x35, 0xff, 0x9a, 0x5f, 0x34, 0xff, 0x97, 0x5c, 0x32, 0xff, 0x96, 0x5b, 0x32, 0xff, 0x95, 0x5a, 0x32, 0xff, 0x92, 0x56, 0x30, 0xff, 0x8d, 0x51, 0x2d, 0xff, 0x8a, 0x4f, 0x2b, 0xff, 0x88, 0x4c, 0x2a, 0xff, 0x86, 0x4a, 0x2a, 0xff, 0x84, 0x4a, 0x28, 0xff, 0x82, 0x47, 0x28, 0xff, 0x81, 0x44, 0x27, 0xff, 0x7f, 0x44, 0x26, 0xff, 0x7c, 0x42, 0x26, 0xff, 0x7c, 0x41, 0x24, 0xff, 0x7b, 0x41, 0x24, 0xff, 0x79, 0x40, 0x22, 0xff, 0x78, 0x3e, 0x23, 0xff, 0x78, 0x3d, 0x23, 0xff, 0x77, 0x3e, 0x23, 0xff, 0x77, 0x3d, 0x22, 0xff, 0x75, 0x3b, 0x1f, 0xff, 0x74, 0x39, 0x1f, 0xff, 0x74, 0x3a, 0x20, 0xff, 0x72, 0x39, 0x1f, 0xff, 0x6d, 0x34, 0x18, 0xff, 0x69, 0x30, 0x15, 0xff, 0x6a, 0x31, 0x15, 0xff, 0x6c, 0x32, 0x15, 0xff, 0x6a, 0x30, 0x14, 0xff, 0x6a, 0x31, 0x14, 0xff, 0x6c, 0x33, 0x16, 0xff, 0x6e, 0x32, 0x16, 0xff, 0x6e, 0x34, 0x18, 0xff, 0x71, 0x36, 0x1a, 0xff, 0x72, 0x36, 0x19, 0xff, 0x73, 0x37, 0x18, 0xff, 0x73, 0x36, 0x17, 0xff, 0x7a, 0x3b, 0x1b, 0xff, 0x89, 0x4a, 0x26, 0xff, 0x9d, 0x60, 0x36, 0xff, 0xaa, 0x6b, 0x3f, 0xff, 0xac, 0x6e, 0x41, 0xff, 0xac, 0x70, 0x44, 0xff, 0xac, 0x71, 0x47, 0xff, 0xad, 0x71, 0x48, 0xff, 0xad, 0x71, 0x49, 0xff, 0xb0, 0x72, 0x48, 0xff, 0xb3, 0x74, 0x46, 0xff, 0xb6, 0x75, 0x45, 0xff, 0xb8, 0x75, 0x44, 0xff, 0xb9, 0x75, 0x44, 0xff, 0xbd, 0x7a, 0x46, 0xff, 0xc0, 0x7f, 0x48, 0xff, 0xc2, 0x81, 0x49, 0xff, 0xc3, 0x83, 0x49, 0xff, 0xcb, 0x87, 0x4d, 0xff, 0xd3, 0x8a, 0x50, 0xff, 0xdb, 0x8e, 0x53, 0xff, 0xe4, 0x92, 0x55, 0xff, 0xe9, 0x99, 0x5b, 0xff, 0xf1, 0xa1, 0x62, 0xff, 0xf5, 0xa6, 0x6c, 0xff, 0xf7, 0xa9, 0x70, 0xff, 0xf7, 0xad, 0x6e, 0xff, 0xf6, 0xac, 0x6a, 0xff, 0xf7, 0xa7, 0x64, 0xff, 0xf7, 0xa4, 0x61, 0xff, 0xf7, 0xa2, 0x60, 0xff, 0xf7, 0xa1, 0x61, 0xff, 0xf7, 0xa2, 0x63, 0xff, 0xf7, 0xa2, 0x63, 0xff, 0xf8, 0xa3, 0x65, 0xff, 0xf9, 0xa5, 0x66, 0xff, 0xea, 0x9e, 0x61, 0xff, 0xd2, 0x8e, 0x56, 0xff, 0xbf, 0x83, 0x4f, 0xff, 0xc0, 0x81, 0x4c, 0xff, 0xc2, 0x7f, 0x49, 0xff, 0xc3, 0x81, 0x49, 0xff, 0xc4, 0x82, 0x4c, 0xff, 0xc6, 0x83, 0x4b, 0xff, 0xc4, 0x85, 0x4e, 0xff, 0xc5, 0x86, 0x4f, 0xff, 0xca, 0x88, 0x51, 0xff, 0xd0, 0x8b, 0x53, 0xff, 0xd4, 0x8d, 0x55, 0xff, 0xe1, 0x96, 0x5d, 0xff, 0xc1, 0x83, 0x51, 0xff, 0xb3, 0x7b, 0x4c, 0xff, 0xb6, 0x79, 0x49, 0xff, 0xb5, 0x76, 0x47, 0xff, 0xb5, 0x75, 0x45, 0xff, 0xb4, 0x75, 0x45, 0xff, 0xb6, 0x77, 0x47, 0xff, 0xb8, 0x7d, 0x4b, 0xff, 0xc0, 0x81, 0x52, 0xff, 0xca, 0x8c, 0x5d, 0xff, 0x9e, 0x64, 0x3d, 0xff, 0x96, 0x5d, 0x39, 0xff, 0x98, 0x5c, 0x3a, 0xff, 0x99, 0x5f, 0x3b, 0xff, 0x98, 0x5e, 0x3b, 0xff, 0x98, 0x5d, 0x37, 0xff, 0x99, 0x5c, 0x36, 0xff, 0x95, 0x57, 0x33, 0xff, 0x92, 0x55, 0x31, 0xff, 0x90, 0x51, 0x2f, 0xff, 0x8f, 0x50, 0x2f, 0xff, 0x8d, 0x4d, 0x2f, 0xff, 0x8c, 0x4d, 0x2c, 0xff, 0x8a, 0x4b, 0x2a, 0xff, 0x8a, 0x4c, 0x2a, 0xff, 0x8b, 0x49, 0x29, 0xff, 0x89, 0x48, 0x29, 0xff, 0x8a, 0x49, 0x28, 0xff, 0x89, 0x48, 0x29, 0xff, 0x8a, 0x4a, 0x2a, 0xff, 0x83, 0x43, 0x25, 0xff, 0x78, 0x39, 0x20, 0xff, 0x78, 0x39, 0x1e, 0xff, 0x77, 0x36, 0x1b, 0xff, 0x76, 0x36, 0x1b, 0xff, 0x75, 0x35, 0x1b, 0xff, 0x73, 0x34, 0x19, 0xff, 0x71, 0x35, 0x18, 0xff, 0x71, 0x33, 0x18, 0xff, 0x70, 0x32, 0x17, 0xff, 0x78, 0x39, 0x20, 0xff, 0x7e, 0x41, 0x28, 0xff, 0x7c, 0x3f, 0x27, 0xff, 0x7b, 0x3e, 0x26, 0xff, 0x7c, 0x3e, 0x25, 0xff, + 0x78, 0x3b, 0x22, 0xff, 0x78, 0x38, 0x1f, 0xff, 0x78, 0x39, 0x1f, 0xff, 0x76, 0x35, 0x1d, 0xff, 0x74, 0x36, 0x1b, 0xff, 0x73, 0x34, 0x1a, 0xff, 0x71, 0x34, 0x19, 0xff, 0x71, 0x32, 0x19, 0xff, 0x70, 0x33, 0x16, 0xff, 0x71, 0x33, 0x19, 0xff, 0x6f, 0x32, 0x16, 0xff, 0x6a, 0x2f, 0x14, 0xff, 0x60, 0x25, 0x09, 0xff, 0x62, 0x2a, 0x0d, 0xff, 0x65, 0x29, 0x0d, 0xff, 0x64, 0x2a, 0x0d, 0xff, 0x68, 0x2b, 0x0f, 0xff, 0x6a, 0x2a, 0x10, 0xff, 0x6d, 0x2f, 0x13, 0xff, 0x70, 0x2f, 0x11, 0xff, 0x73, 0x32, 0x14, 0xff, 0x77, 0x35, 0x18, 0xff, 0x7a, 0x38, 0x19, 0xff, 0x7f, 0x3d, 0x1e, 0xff, 0x85, 0x42, 0x24, 0xff, 0x8a, 0x47, 0x24, 0xff, 0x8d, 0x4b, 0x27, 0xff, 0x91, 0x4e, 0x28, 0xff, 0x96, 0x51, 0x29, 0xff, 0x9b, 0x56, 0x2a, 0xff, 0xa2, 0x5c, 0x2d, 0xff, 0xa6, 0x61, 0x31, 0xff, 0xad, 0x69, 0x35, 0xff, 0xb2, 0x71, 0x3a, 0xff, 0xb8, 0x77, 0x3e, 0xff, 0xbc, 0x7d, 0x44, 0xff, 0xca, 0x8a, 0x51, 0xff, 0xe0, 0x9b, 0x5d, 0xff, 0xf6, 0xb0, 0x6f, 0xff, 0xf7, 0xc5, 0x7e, 0xff, 0xf5, 0xe9, 0x92, 0xff, 0xec, 0xf4, 0xad, 0xff, 0xf6, 0xf4, 0xcf, 0xff, 0xf8, 0xf4, 0xf1, 0xff, 0xf7, 0xf3, 0xef, 0xff, 0xf8, 0xf4, 0xef, 0xff, 0xf8, 0xf4, 0xef, 0xff, 0xf8, 0xf4, 0xef, 0xff, 0xf8, 0xf3, 0xea, 0xff, 0xf6, 0xf4, 0xd6, 0xff, 0xf2, 0xf3, 0xb6, 0xff, 0xf3, 0xed, 0xa8, 0xff, 0xf7, 0xde, 0xa0, 0xff, 0xf7, 0xdf, 0x9c, 0xff, 0xf7, 0xe7, 0x95, 0xff, 0xf7, 0xf0, 0x92, 0xff, 0xf5, 0xf1, 0x8d, 0xff, 0xf5, 0xe4, 0x82, 0xff, 0xf7, 0xcc, 0x78, 0xff, 0xf5, 0xbd, 0x74, 0xff, 0xf7, 0xb4, 0x73, 0xff, 0xf7, 0xb5, 0x72, 0xff, 0xf7, 0xbb, 0x75, 0xff, 0xf7, 0xbe, 0x78, 0xff, 0xf7, 0xb7, 0x73, 0xff, 0xf7, 0xb8, 0x75, 0xff, 0xf7, 0xb6, 0x71, 0xff, 0xf8, 0xb7, 0x72, 0xff, 0xf2, 0xb0, 0x6f, 0xff, 0xdf, 0xa0, 0x5c, 0xff, 0xdb, 0x96, 0x55, 0xff, 0xd5, 0x95, 0x54, 0xff, 0xd8, 0x9b, 0x57, 0xff, 0xf5, 0xc3, 0x6a, 0xff, 0xf3, 0xc6, 0x73, 0xff, 0xef, 0xc2, 0x73, 0xff, 0xe2, 0xb4, 0x6d, 0xff, 0xc7, 0x8f, 0x58, 0xff, 0xca, 0x91, 0x57, 0xff, 0xc9, 0x90, 0x54, 0xff, 0xc9, 0x8f, 0x53, 0xff, 0xc6, 0x89, 0x4e, 0xff, 0xc4, 0x8a, 0x4e, 0xff, 0xc4, 0x90, 0x54, 0xff, 0xc1, 0x8f, 0x57, 0xff, 0xc1, 0x8c, 0x58, 0xff, 0xbf, 0x8a, 0x5a, 0xff, 0xbe, 0x8e, 0x58, 0xff, 0xbc, 0x8a, 0x51, 0xff, 0xba, 0x87, 0x4f, 0xff, 0xb9, 0x83, 0x4d, 0xff, 0xb8, 0x84, 0x48, 0xff, 0xb7, 0x81, 0x4a, 0xff, 0xb5, 0x82, 0x4b, 0xff, 0xaf, 0x7a, 0x47, 0xff, 0xa6, 0x6d, 0x3f, 0xff, 0xa3, 0x6a, 0x3e, 0xff, 0xa2, 0x6a, 0x3d, 0xff, 0xa0, 0x66, 0x38, 0xff, 0x9f, 0x64, 0x36, 0xff, 0x9d, 0x64, 0x36, 0xff, 0x9c, 0x60, 0x33, 0xff, 0x99, 0x5f, 0x33, 0xff, 0x97, 0x5c, 0x32, 0xff, 0x96, 0x5a, 0x31, 0xff, 0x93, 0x56, 0x31, 0xff, 0x8e, 0x51, 0x2d, 0xff, 0x8d, 0x4f, 0x2c, 0xff, 0x8a, 0x4e, 0x2c, 0xff, 0x88, 0x4c, 0x2a, 0xff, 0x86, 0x4b, 0x29, 0xff, 0x83, 0x49, 0x29, 0xff, 0x82, 0x46, 0x28, 0xff, 0x80, 0x45, 0x27, 0xff, 0x7e, 0x43, 0x27, 0xff, 0x7e, 0x41, 0x26, 0xff, 0x7c, 0x41, 0x24, 0xff, 0x7a, 0x3f, 0x22, 0xff, 0x79, 0x40, 0x22, 0xff, 0x78, 0x3f, 0x23, 0xff, 0x79, 0x3c, 0x24, 0xff, 0x78, 0x3b, 0x22, 0xff, 0x76, 0x3c, 0x21, 0xff, 0x76, 0x3b, 0x22, 0xff, 0x73, 0x39, 0x1f, 0xff, 0x6d, 0x33, 0x19, 0xff, 0x6a, 0x2f, 0x15, 0xff, 0x6a, 0x2f, 0x13, 0xff, 0x68, 0x2f, 0x14, 0xff, 0x67, 0x2f, 0x13, 0xff, 0x68, 0x2f, 0x13, 0xff, 0x6a, 0x30, 0x14, 0xff, 0x6a, 0x31, 0x15, 0xff, 0x6c, 0x32, 0x15, 0xff, 0x6d, 0x32, 0x16, 0xff, 0x6c, 0x32, 0x15, 0xff, 0x6c, 0x32, 0x14, 0xff, 0x6d, 0x32, 0x13, 0xff, 0x81, 0x46, 0x25, 0xff, 0x99, 0x5c, 0x34, 0xff, 0xa3, 0x65, 0x3a, 0xff, 0xa4, 0x66, 0x3a, 0xff, 0xa4, 0x65, 0x3a, 0xff, 0xa3, 0x64, 0x39, 0xff, 0xa2, 0x65, 0x3a, 0xff, 0xa4, 0x66, 0x3c, 0xff, 0xa6, 0x66, 0x3d, 0xff, 0xaa, 0x69, 0x3e, 0xff, 0xac, 0x6d, 0x3f, 0xff, 0xaf, 0x6f, 0x3f, 0xff, 0xb2, 0x72, 0x41, 0xff, 0xb4, 0x71, 0x3f, 0xff, 0xb5, 0x71, 0x3e, 0xff, 0xb7, 0x74, 0x40, 0xff, 0xba, 0x76, 0x42, 0xff, 0xbe, 0x7a, 0x44, 0xff, 0xc2, 0x7e, 0x46, 0xff, 0xc6, 0x83, 0x49, 0xff, 0xcb, 0x86, 0x4d, 0xff, 0xd2, 0x8a, 0x50, 0xff, 0xda, 0x8e, 0x52, 0xff, 0xe0, 0x93, 0x54, 0xff, 0xe8, 0x99, 0x59, 0xff, 0xef, 0xa2, 0x61, 0xff, 0xf5, 0xa8, 0x6c, 0xff, 0xf7, 0xa9, 0x71, 0xff, 0xf7, 0xaf, 0x71, 0xff, 0xf7, 0xb0, 0x6c, 0xff, 0xf7, 0xaa, 0x68, 0xff, 0xf5, 0xa5, 0x65, 0xff, 0xf6, 0xa1, 0x62, 0xff, 0xf7, 0xa2, 0x61, 0xff, 0xf4, 0x9f, 0x60, 0xff, 0xf6, 0xa1, 0x63, 0xff, 0xf7, 0xa0, 0x60, 0xff, 0xf8, 0x9e, 0x66, 0xff, 0xf3, 0x9d, 0x67, 0xff, 0xee, 0x9a, 0x64, 0xff, 0xcb, 0x86, 0x51, 0xff, 0xbe, 0x7d, 0x47, 0xff, 0xc1, 0x7c, 0x48, 0xff, 0xbe, 0x7c, 0x46, 0xff, 0xc1, 0x7e, 0x48, 0xff, 0xc0, 0x80, 0x47, 0xff, 0xc1, 0x82, 0x4a, 0xff, 0xc4, 0x85, 0x4e, 0xff, 0xc7, 0x86, 0x4f, 0xff, 0xcc, 0x87, 0x50, 0xff, 0xd5, 0x8c, 0x53, 0xff, 0xc1, 0x7f, 0x4b, 0xff, 0xb1, 0x74, 0x44, 0xff, 0xb5, 0x75, 0x44, 0xff, 0xb6, 0x75, 0x45, 0xff, 0xb0, 0x73, 0x43, 0xff, 0xb4, 0x74, 0x44, 0xff, 0xba, 0x7d, 0x4b, 0xff, 0xbb, 0x80, 0x51, 0xff, 0xc6, 0x8b, 0x5a, 0xff, 0xae, 0x70, 0x47, 0xff, 0x97, 0x5c, 0x3a, 0xff, 0x98, 0x60, 0x3c, 0xff, 0x98, 0x62, 0x3e, 0xff, 0x98, 0x64, 0x40, 0xff, 0x98, 0x63, 0x3f, 0xff, 0x98, 0x63, 0x3e, 0xff, 0x98, 0x5f, 0x3d, 0xff, 0x98, 0x5e, 0x39, 0xff, 0x96, 0x59, 0x34, 0xff, 0x91, 0x55, 0x33, 0xff, 0x8f, 0x52, 0x32, 0xff, 0x8c, 0x4e, 0x2e, 0xff, 0x8a, 0x4d, 0x2d, 0xff, 0x8a, 0x4b, 0x2a, 0xff, 0x89, 0x49, 0x2a, 0xff, 0x88, 0x48, 0x29, 0xff, 0x87, 0x45, 0x28, 0xff, 0x87, 0x45, 0x28, 0xff, 0x87, 0x47, 0x28, 0xff, 0x88, 0x45, 0x28, 0xff, 0x88, 0x47, 0x29, 0xff, 0x82, 0x40, 0x24, 0xff, 0x77, 0x37, 0x1c, 0xff, 0x77, 0x37, 0x1b, 0xff, 0x76, 0x37, 0x1b, 0xff, 0x73, 0x34, 0x1b, 0xff, 0x73, 0x35, 0x1b, 0xff, 0x71, 0x34, 0x18, 0xff, 0x70, 0x32, 0x18, 0xff, 0x75, 0x35, 0x1d, 0xff, 0x7e, 0x40, 0x27, 0xff, 0x7c, 0x40, 0x28, 0xff, 0x7c, 0x3f, 0x26, 0xff, 0x7c, 0x3e, 0x25, 0xff, 0x7a, 0x3c, 0x23, 0xff, + 0x78, 0x39, 0x20, 0xff, 0x78, 0x39, 0x20, 0xff, 0x77, 0x39, 0x1e, 0xff, 0x76, 0x36, 0x1e, 0xff, 0x72, 0x34, 0x1a, 0xff, 0x6e, 0x30, 0x16, 0xff, 0x6e, 0x31, 0x18, 0xff, 0x6c, 0x30, 0x15, 0xff, 0x6c, 0x2d, 0x15, 0xff, 0x6a, 0x2f, 0x15, 0xff, 0x6c, 0x30, 0x15, 0xff, 0x70, 0x32, 0x15, 0xff, 0x70, 0x33, 0x16, 0xff, 0x60, 0x28, 0x0a, 0xff, 0x5e, 0x26, 0x0c, 0xff, 0x60, 0x27, 0x0b, 0xff, 0x63, 0x28, 0x0a, 0xff, 0x66, 0x27, 0x0c, 0xff, 0x69, 0x2b, 0x0f, 0xff, 0x6c, 0x2f, 0x0f, 0xff, 0x6f, 0x2f, 0x12, 0xff, 0x73, 0x32, 0x15, 0xff, 0x78, 0x35, 0x16, 0xff, 0x7d, 0x3b, 0x1e, 0xff, 0x81, 0x40, 0x21, 0xff, 0x86, 0x43, 0x24, 0xff, 0x8b, 0x48, 0x24, 0xff, 0x8f, 0x4b, 0x26, 0xff, 0x93, 0x4f, 0x28, 0xff, 0x99, 0x54, 0x28, 0xff, 0x9e, 0x58, 0x2a, 0xff, 0xa3, 0x5f, 0x2e, 0xff, 0xa8, 0x65, 0x32, 0xff, 0xae, 0x6d, 0x35, 0xff, 0xb5, 0x73, 0x3a, 0xff, 0xbb, 0x7b, 0x44, 0xff, 0xc3, 0x85, 0x4a, 0xff, 0xd4, 0x97, 0x57, 0xff, 0xf1, 0xa7, 0x65, 0xff, 0xf8, 0xbe, 0x7d, 0xff, 0xf4, 0xde, 0x8a, 0xff, 0xee, 0xf5, 0xa4, 0xff, 0xf5, 0xf3, 0xc8, 0xff, 0xf8, 0xf4, 0xf2, 0xff, 0xf8, 0xf4, 0xef, 0xff, 0xf8, 0xf4, 0xef, 0xff, 0xf8, 0xf4, 0xef, 0xff, 0xf9, 0xf4, 0xf0, 0xff, 0xf9, 0xf4, 0xf0, 0xff, 0xf8, 0xf4, 0xed, 0xff, 0xf5, 0xf4, 0xd6, 0xff, 0xf5, 0xf1, 0xb5, 0xff, 0xf8, 0xe7, 0xa9, 0xff, 0xf8, 0xde, 0xa0, 0xff, 0xf7, 0xe0, 0x9a, 0xff, 0xf7, 0xea, 0x93, 0xff, 0xf3, 0xf2, 0x90, 0xff, 0xf7, 0xe8, 0x86, 0xff, 0xf5, 0xd3, 0x77, 0xff, 0xf7, 0xbb, 0x6f, 0xff, 0xf7, 0xb0, 0x6e, 0xff, 0xf5, 0xab, 0x6a, 0xff, 0xf6, 0xad, 0x6b, 0xff, 0xf7, 0xb6, 0x71, 0xff, 0xf7, 0xb4, 0x72, 0xff, 0xf7, 0xb5, 0x71, 0xff, 0xf6, 0xb6, 0x70, 0xff, 0xf7, 0xb3, 0x70, 0xff, 0xf6, 0xb2, 0x6f, 0xff, 0xec, 0xa9, 0x65, 0xff, 0xd6, 0x94, 0x53, 0xff, 0xd5, 0x92, 0x55, 0xff, 0xdd, 0xa4, 0x5a, 0xff, 0xf8, 0xca, 0x6e, 0xff, 0xee, 0xc1, 0x6f, 0xff, 0xf4, 0xc2, 0x77, 0xff, 0xe8, 0xb5, 0x6f, 0xff, 0xcb, 0x90, 0x56, 0xff, 0xcc, 0x92, 0x56, 0xff, 0xcb, 0x91, 0x53, 0xff, 0xc9, 0x92, 0x55, 0xff, 0xc7, 0x8e, 0x51, 0xff, 0xc6, 0x8c, 0x50, 0xff, 0xc5, 0x92, 0x54, 0xff, 0xc2, 0x91, 0x56, 0xff, 0xc2, 0x91, 0x58, 0xff, 0xc1, 0x90, 0x58, 0xff, 0xc0, 0x8c, 0x56, 0xff, 0xbe, 0x8b, 0x55, 0xff, 0xbc, 0x89, 0x50, 0xff, 0xbb, 0x88, 0x4b, 0xff, 0xb9, 0x83, 0x4d, 0xff, 0xb7, 0x82, 0x4a, 0xff, 0xb6, 0x81, 0x4b, 0xff, 0xb0, 0x78, 0x47, 0xff, 0xa8, 0x6d, 0x3f, 0xff, 0xa6, 0x6d, 0x41, 0xff, 0xa2, 0x6a, 0x3d, 0xff, 0xa2, 0x69, 0x3c, 0xff, 0xa2, 0x68, 0x3a, 0xff, 0x9f, 0x65, 0x37, 0xff, 0x9d, 0x63, 0x36, 0xff, 0x9c, 0x64, 0x36, 0xff, 0x9a, 0x60, 0x34, 0xff, 0x97, 0x5c, 0x33, 0xff, 0x93, 0x57, 0x31, 0xff, 0x8f, 0x53, 0x2e, 0xff, 0x8e, 0x52, 0x2e, 0xff, 0x8c, 0x51, 0x2d, 0xff, 0x8a, 0x4f, 0x2b, 0xff, 0x88, 0x4d, 0x2a, 0xff, 0x87, 0x4b, 0x2a, 0xff, 0x85, 0x49, 0x29, 0xff, 0x82, 0x48, 0x28, 0xff, 0x81, 0x46, 0x26, 0xff, 0x7f, 0x43, 0x26, 0xff, 0x7c, 0x40, 0x24, 0xff, 0x7b, 0x3f, 0x23, 0xff, 0x79, 0x3f, 0x25, 0xff, 0x79, 0x3e, 0x25, 0xff, 0x79, 0x3e, 0x23, 0xff, 0x78, 0x3e, 0x24, 0xff, 0x78, 0x3e, 0x23, 0xff, 0x75, 0x3c, 0x21, 0xff, 0x6f, 0x36, 0x19, 0xff, 0x6a, 0x30, 0x14, 0xff, 0x6a, 0x2f, 0x15, 0xff, 0x67, 0x2e, 0x12, 0xff, 0x65, 0x2d, 0x12, 0xff, 0x66, 0x2d, 0x11, 0xff, 0x68, 0x2e, 0x11, 0xff, 0x69, 0x2f, 0x13, 0xff, 0x6a, 0x2f, 0x14, 0xff, 0x6a, 0x2f, 0x14, 0xff, 0x68, 0x2f, 0x12, 0xff, 0x66, 0x2c, 0x0e, 0xff, 0x6c, 0x30, 0x14, 0xff, 0x8c, 0x51, 0x2f, 0xff, 0x9f, 0x62, 0x3a, 0xff, 0x9e, 0x60, 0x36, 0xff, 0x9e, 0x60, 0x35, 0xff, 0x9d, 0x5d, 0x34, 0xff, 0x9c, 0x5c, 0x33, 0xff, 0x9d, 0x5c, 0x33, 0xff, 0x9e, 0x5e, 0x33, 0xff, 0x9f, 0x60, 0x33, 0xff, 0xa1, 0x62, 0x34, 0xff, 0xa3, 0x63, 0x37, 0xff, 0xa6, 0x65, 0x38, 0xff, 0xa8, 0x68, 0x38, 0xff, 0xac, 0x6a, 0x38, 0xff, 0xaf, 0x6d, 0x3c, 0xff, 0xb3, 0x70, 0x3e, 0xff, 0xb5, 0x73, 0x3e, 0xff, 0xb7, 0x74, 0x3f, 0xff, 0xba, 0x75, 0x40, 0xff, 0xbe, 0x79, 0x43, 0xff, 0xc1, 0x7f, 0x46, 0xff, 0xc5, 0x80, 0x48, 0xff, 0xcc, 0x87, 0x4b, 0xff, 0xd4, 0x8c, 0x50, 0xff, 0xdb, 0x93, 0x52, 0xff, 0xe2, 0x95, 0x55, 0xff, 0xe8, 0x9b, 0x58, 0xff, 0xef, 0xa4, 0x5e, 0xff, 0xf5, 0xaa, 0x68, 0xff, 0xf7, 0xb1, 0x6d, 0xff, 0xf7, 0xb2, 0x6e, 0xff, 0xf7, 0xac, 0x6b, 0xff, 0xf7, 0xa9, 0x69, 0xff, 0xf7, 0xa4, 0x66, 0xff, 0xf7, 0xa1, 0x64, 0xff, 0xf7, 0x9f, 0x63, 0xff, 0xf6, 0x9f, 0x62, 0xff, 0xee, 0x98, 0x60, 0xff, 0xee, 0x96, 0x60, 0xff, 0xf6, 0x9a, 0x61, 0xff, 0xf7, 0x9b, 0x61, 0xff, 0xf9, 0x9d, 0x66, 0xff, 0xdf, 0x96, 0x60, 0xff, 0xbf, 0x81, 0x49, 0xff, 0xba, 0x7d, 0x47, 0xff, 0xbe, 0x7d, 0x47, 0xff, 0xba, 0x7b, 0x47, 0xff, 0xbe, 0x7d, 0x47, 0xff, 0xc1, 0x80, 0x48, 0xff, 0xc2, 0x80, 0x4c, 0xff, 0xc6, 0x83, 0x4d, 0xff, 0xcc, 0x86, 0x4e, 0xff, 0xc5, 0x7e, 0x4a, 0xff, 0xaf, 0x6e, 0x3e, 0xff, 0xb2, 0x70, 0x3f, 0xff, 0xb5, 0x72, 0x42, 0xff, 0xb6, 0x74, 0x44, 0xff, 0xb9, 0x78, 0x48, 0xff, 0xbb, 0x7d, 0x4c, 0xff, 0xbd, 0x80, 0x51, 0xff, 0xda, 0x9f, 0x6f, 0xff, 0x99, 0x5c, 0x37, 0xff, 0x97, 0x5d, 0x3a, 0xff, 0x98, 0x61, 0x3f, 0xff, 0x98, 0x63, 0x41, 0xff, 0x98, 0x65, 0x41, 0xff, 0x98, 0x67, 0x43, 0xff, 0x98, 0x67, 0x44, 0xff, 0x98, 0x67, 0x41, 0xff, 0x98, 0x62, 0x3e, 0xff, 0x98, 0x5f, 0x3d, 0xff, 0x96, 0x58, 0x37, 0xff, 0x91, 0x55, 0x33, 0xff, 0x8d, 0x4f, 0x30, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x89, 0x4b, 0x29, 0xff, 0x88, 0x46, 0x29, 0xff, 0x87, 0x47, 0x28, 0xff, 0x87, 0x48, 0x26, 0xff, 0x86, 0x46, 0x27, 0xff, 0x86, 0x46, 0x27, 0xff, 0x85, 0x46, 0x28, 0xff, 0x87, 0x44, 0x28, 0xff, 0x88, 0x45, 0x28, 0xff, 0x80, 0x40, 0x24, 0xff, 0x78, 0x39, 0x20, 0xff, 0x78, 0x39, 0x1e, 0xff, 0x76, 0x36, 0x1e, 0xff, 0x74, 0x35, 0x1c, 0xff, 0x75, 0x36, 0x1b, 0xff, 0x73, 0x34, 0x1b, 0xff, 0x7a, 0x3d, 0x23, 0xff, 0x7f, 0x44, 0x29, 0xff, 0x7e, 0x40, 0x28, 0xff, 0x7a, 0x3e, 0x26, 0xff, 0x7b, 0x3e, 0x25, 0xff, 0x78, 0x3b, 0x22, 0xff, + 0x78, 0x39, 0x21, 0xff, 0x76, 0x37, 0x1d, 0xff, 0x75, 0x35, 0x1d, 0xff, 0x74, 0x36, 0x1b, 0xff, 0x72, 0x32, 0x1a, 0xff, 0x6d, 0x30, 0x16, 0xff, 0x6a, 0x30, 0x14, 0xff, 0x6a, 0x2f, 0x14, 0xff, 0x69, 0x2d, 0x14, 0xff, 0x69, 0x2c, 0x13, 0xff, 0x69, 0x2e, 0x11, 0xff, 0x6b, 0x2f, 0x13, 0xff, 0x6f, 0x31, 0x14, 0xff, 0x72, 0x33, 0x16, 0xff, 0x62, 0x2a, 0x0f, 0xff, 0x5d, 0x25, 0x07, 0xff, 0x5f, 0x25, 0x08, 0xff, 0x61, 0x28, 0x0c, 0xff, 0x66, 0x2b, 0x0b, 0xff, 0x69, 0x2c, 0x0c, 0xff, 0x6d, 0x2e, 0x11, 0xff, 0x71, 0x31, 0x14, 0xff, 0x77, 0x35, 0x14, 0xff, 0x79, 0x37, 0x17, 0xff, 0x7e, 0x3b, 0x1d, 0xff, 0x84, 0x40, 0x21, 0xff, 0x87, 0x44, 0x22, 0xff, 0x8b, 0x47, 0x24, 0xff, 0x90, 0x4c, 0x25, 0xff, 0x95, 0x51, 0x28, 0xff, 0x9a, 0x56, 0x29, 0xff, 0x9f, 0x5b, 0x2b, 0xff, 0xa4, 0x61, 0x2f, 0xff, 0xaa, 0x6a, 0x34, 0xff, 0xb1, 0x70, 0x38, 0xff, 0xb7, 0x75, 0x3e, 0xff, 0xc0, 0x81, 0x47, 0xff, 0xca, 0x8c, 0x4f, 0xff, 0xe5, 0x9c, 0x5d, 0xff, 0xf6, 0xb0, 0x6c, 0xff, 0xf7, 0xd1, 0x82, 0xff, 0xf0, 0xf3, 0x9c, 0xff, 0xf1, 0xf4, 0xbb, 0xff, 0xf9, 0xf3, 0xea, 0xff, 0xf9, 0xf4, 0xf1, 0xff, 0xf9, 0xf4, 0xf0, 0xff, 0xf9, 0xf4, 0xf0, 0xff, 0xf8, 0xf4, 0xef, 0xff, 0xf8, 0xf4, 0xef, 0xff, 0xf9, 0xf4, 0xf1, 0xff, 0xf9, 0xf4, 0xec, 0xff, 0xf6, 0xf4, 0xce, 0xff, 0xf6, 0xef, 0xb3, 0xff, 0xf9, 0xe2, 0xa5, 0xff, 0xf7, 0xdf, 0x9c, 0xff, 0xf7, 0xe2, 0x97, 0xff, 0xf6, 0xef, 0x91, 0xff, 0xf4, 0xf0, 0x88, 0xff, 0xf5, 0xd6, 0x7f, 0xff, 0xf7, 0xbe, 0x72, 0xff, 0xf8, 0xb2, 0x6f, 0xff, 0xf6, 0xad, 0x6d, 0xff, 0xf6, 0xaf, 0x6b, 0xff, 0xf6, 0xb6, 0x70, 0xff, 0xf5, 0xb5, 0x6d, 0xff, 0xf6, 0xb4, 0x6d, 0xff, 0xf7, 0xb5, 0x6d, 0xff, 0xf6, 0xb3, 0x6d, 0xff, 0xf6, 0xac, 0x6b, 0xff, 0xf0, 0xa9, 0x6a, 0xff, 0xdb, 0x99, 0x5b, 0xff, 0xd4, 0x97, 0x56, 0xff, 0xe6, 0xb2, 0x63, 0xff, 0xf5, 0xc2, 0x6d, 0xff, 0xf2, 0xc6, 0x72, 0xff, 0xf5, 0xcc, 0x72, 0xff, 0xe9, 0xb3, 0x6a, 0xff, 0xd1, 0x90, 0x58, 0xff, 0xd1, 0x93, 0x56, 0xff, 0xce, 0x91, 0x55, 0xff, 0xcf, 0x93, 0x56, 0xff, 0xcc, 0x90, 0x51, 0xff, 0xca, 0x8e, 0x4f, 0xff, 0xca, 0x94, 0x54, 0xff, 0xc5, 0x94, 0x54, 0xff, 0xc3, 0x91, 0x57, 0xff, 0xc3, 0x8e, 0x55, 0xff, 0xc2, 0x91, 0x55, 0xff, 0xc1, 0x8f, 0x54, 0xff, 0xbf, 0x8c, 0x51, 0xff, 0xbb, 0x86, 0x4c, 0xff, 0xbb, 0x83, 0x4a, 0xff, 0xba, 0x84, 0x4d, 0xff, 0xb8, 0x85, 0x4e, 0xff, 0xb1, 0x79, 0x45, 0xff, 0xaa, 0x70, 0x40, 0xff, 0xaa, 0x71, 0x43, 0xff, 0xa7, 0x6b, 0x3e, 0xff, 0xa4, 0x69, 0x3b, 0xff, 0xa3, 0x68, 0x38, 0xff, 0xa2, 0x67, 0x38, 0xff, 0x9f, 0x65, 0x39, 0xff, 0x9c, 0x62, 0x38, 0xff, 0x9b, 0x61, 0x36, 0xff, 0x98, 0x5f, 0x34, 0xff, 0x95, 0x5a, 0x32, 0xff, 0x93, 0x56, 0x31, 0xff, 0x91, 0x55, 0x2f, 0xff, 0x8e, 0x52, 0x2d, 0xff, 0x8c, 0x51, 0x2d, 0xff, 0x8a, 0x4f, 0x2c, 0xff, 0x88, 0x4d, 0x2a, 0xff, 0x86, 0x4c, 0x29, 0xff, 0x84, 0x4a, 0x29, 0xff, 0x81, 0x47, 0x28, 0xff, 0x7f, 0x43, 0x27, 0xff, 0x7e, 0x42, 0x24, 0xff, 0x7e, 0x42, 0x24, 0xff, 0x7d, 0x41, 0x25, 0xff, 0x7a, 0x3f, 0x24, 0xff, 0x79, 0x3e, 0x23, 0xff, 0x78, 0x3f, 0x24, 0xff, 0x78, 0x3f, 0x23, 0xff, 0x71, 0x36, 0x1d, 0xff, 0x6a, 0x31, 0x16, 0xff, 0x6a, 0x32, 0x15, 0xff, 0x69, 0x30, 0x15, 0xff, 0x67, 0x2e, 0x13, 0xff, 0x67, 0x2d, 0x13, 0xff, 0x66, 0x2f, 0x14, 0xff, 0x67, 0x2e, 0x14, 0xff, 0x67, 0x2e, 0x13, 0xff, 0x66, 0x2e, 0x12, 0xff, 0x66, 0x2c, 0x11, 0xff, 0x67, 0x2e, 0x0f, 0xff, 0x76, 0x3c, 0x1d, 0xff, 0x95, 0x59, 0x37, 0xff, 0x9c, 0x5e, 0x39, 0xff, 0x98, 0x58, 0x32, 0xff, 0x99, 0x57, 0x32, 0xff, 0x97, 0x55, 0x31, 0xff, 0x98, 0x56, 0x31, 0xff, 0x99, 0x58, 0x32, 0xff, 0x99, 0x5a, 0x33, 0xff, 0x9a, 0x5a, 0x33, 0xff, 0x9c, 0x5b, 0x32, 0xff, 0x9c, 0x5b, 0x32, 0xff, 0x9c, 0x5c, 0x30, 0xff, 0x9f, 0x5c, 0x32, 0xff, 0xa3, 0x60, 0x33, 0xff, 0xa7, 0x64, 0x33, 0xff, 0xab, 0x68, 0x36, 0xff, 0xad, 0x6d, 0x3b, 0xff, 0xb1, 0x72, 0x3e, 0xff, 0xb4, 0x76, 0x41, 0xff, 0xb7, 0x79, 0x43, 0xff, 0xb9, 0x7b, 0x45, 0xff, 0xbd, 0x7c, 0x46, 0xff, 0xc2, 0x80, 0x48, 0xff, 0xc9, 0x84, 0x4b, 0xff, 0xd0, 0x89, 0x4f, 0xff, 0xd7, 0x8f, 0x54, 0xff, 0xe0, 0x95, 0x55, 0xff, 0xe9, 0x9b, 0x5a, 0xff, 0xf0, 0x9e, 0x5e, 0xff, 0xf5, 0xa6, 0x5f, 0xff, 0xf8, 0xad, 0x67, 0xff, 0xf7, 0xad, 0x6b, 0xff, 0xf6, 0xad, 0x6b, 0xff, 0xf8, 0xa9, 0x6a, 0xff, 0xf8, 0xa5, 0x69, 0xff, 0xf8, 0xa2, 0x67, 0xff, 0xf8, 0xa1, 0x65, 0xff, 0xf0, 0x99, 0x61, 0xff, 0xe8, 0x96, 0x5e, 0xff, 0xe8, 0x96, 0x5e, 0xff, 0xe7, 0x95, 0x5d, 0xff, 0xf1, 0x96, 0x5e, 0xff, 0xf3, 0x99, 0x5f, 0xff, 0xf8, 0x9e, 0x64, 0xff, 0xf0, 0x9d, 0x67, 0xff, 0xc9, 0x87, 0x54, 0xff, 0xba, 0x80, 0x4b, 0xff, 0xb8, 0x7f, 0x46, 0xff, 0xb9, 0x7e, 0x47, 0xff, 0xbb, 0x7a, 0x47, 0xff, 0xbd, 0x7b, 0x48, 0xff, 0xc1, 0x7f, 0x4c, 0xff, 0xc5, 0x80, 0x4b, 0xff, 0xc7, 0x81, 0x4d, 0xff, 0xae, 0x6d, 0x3f, 0xff, 0xad, 0x6c, 0x3d, 0xff, 0xb2, 0x71, 0x41, 0xff, 0xb5, 0x73, 0x42, 0xff, 0xb7, 0x79, 0x48, 0xff, 0xbd, 0x7e, 0x4e, 0xff, 0xe5, 0x9d, 0x6a, 0xff, 0xa1, 0x5e, 0x38, 0xff, 0x97, 0x5a, 0x36, 0xff, 0x98, 0x5d, 0x3a, 0xff, 0x98, 0x63, 0x3f, 0xff, 0x98, 0x63, 0x41, 0xff, 0x98, 0x67, 0x44, 0xff, 0x98, 0x65, 0x48, 0xff, 0x98, 0x66, 0x47, 0xff, 0x98, 0x67, 0x44, 0xff, 0x98, 0x67, 0x43, 0xff, 0x97, 0x62, 0x40, 0xff, 0x98, 0x5d, 0x3c, 0xff, 0x96, 0x58, 0x34, 0xff, 0x8e, 0x51, 0x30, 0xff, 0x8b, 0x4b, 0x2a, 0xff, 0x88, 0x47, 0x29, 0xff, 0x86, 0x46, 0x27, 0xff, 0x84, 0x44, 0x27, 0xff, 0x84, 0x45, 0x26, 0xff, 0x84, 0x45, 0x26, 0xff, 0x85, 0x45, 0x27, 0xff, 0x84, 0x46, 0x26, 0xff, 0x86, 0x45, 0x26, 0xff, 0x87, 0x46, 0x28, 0xff, 0x87, 0x46, 0x29, 0xff, 0x80, 0x3e, 0x23, 0xff, 0x78, 0x3b, 0x23, 0xff, 0x79, 0x3c, 0x22, 0xff, 0x79, 0x3a, 0x21, 0xff, 0x78, 0x3a, 0x21, 0xff, 0x79, 0x3a, 0x21, 0xff, 0x82, 0x47, 0x2b, 0xff, 0x7f, 0x43, 0x29, 0xff, 0x7c, 0x3f, 0x26, 0xff, 0x7a, 0x3e, 0x25, 0xff, 0x79, 0x3c, 0x23, 0xff, 0x78, 0x3b, 0x22, 0xff, + 0x77, 0x39, 0x20, 0xff, 0x75, 0x35, 0x1b, 0xff, 0x73, 0x33, 0x19, 0xff, 0x73, 0x34, 0x1b, 0xff, 0x6f, 0x32, 0x17, 0xff, 0x6a, 0x2f, 0x14, 0xff, 0x68, 0x2c, 0x11, 0xff, 0x68, 0x2a, 0x11, 0xff, 0x67, 0x2c, 0x12, 0xff, 0x67, 0x2a, 0x11, 0xff, 0x68, 0x2b, 0x0f, 0xff, 0x68, 0x2b, 0x11, 0xff, 0x6a, 0x2b, 0x12, 0xff, 0x6c, 0x2e, 0x13, 0xff, 0x70, 0x32, 0x15, 0xff, 0x69, 0x2c, 0x11, 0xff, 0x5e, 0x24, 0x09, 0xff, 0x5e, 0x26, 0x09, 0xff, 0x62, 0x26, 0x08, 0xff, 0x66, 0x28, 0x09, 0xff, 0x69, 0x2c, 0x0d, 0xff, 0x6b, 0x2f, 0x11, 0xff, 0x72, 0x32, 0x13, 0xff, 0x78, 0x35, 0x16, 0xff, 0x7b, 0x38, 0x19, 0xff, 0x80, 0x3d, 0x1c, 0xff, 0x83, 0x41, 0x1f, 0xff, 0x88, 0x46, 0x21, 0xff, 0x8d, 0x49, 0x24, 0xff, 0x93, 0x4f, 0x26, 0xff, 0x97, 0x54, 0x27, 0xff, 0x9b, 0x5a, 0x2a, 0xff, 0xa1, 0x5f, 0x2e, 0xff, 0xa6, 0x64, 0x32, 0xff, 0xad, 0x6b, 0x36, 0xff, 0xb2, 0x73, 0x3c, 0xff, 0xb9, 0x7a, 0x41, 0xff, 0xc5, 0x87, 0x4c, 0xff, 0xd5, 0x96, 0x56, 0xff, 0xf3, 0xa8, 0x64, 0xff, 0xf8, 0xbb, 0x74, 0xff, 0xf3, 0xe3, 0x8d, 0xff, 0xed, 0xf5, 0xab, 0xff, 0xf7, 0xf4, 0xd5, 0xff, 0xf9, 0xf4, 0xf2, 0xff, 0xf9, 0xf4, 0xf0, 0xff, 0xf8, 0xf4, 0xef, 0xff, 0xf9, 0xf4, 0xf0, 0xff, 0xf9, 0xf4, 0xf0, 0xff, 0xf9, 0xf4, 0xf0, 0xff, 0xf9, 0xf4, 0xf0, 0xff, 0xf8, 0xf3, 0xe7, 0xff, 0xf5, 0xf4, 0xc5, 0xff, 0xf8, 0xef, 0xad, 0xff, 0xf9, 0xe2, 0xa2, 0xff, 0xf8, 0xe3, 0x99, 0xff, 0xf9, 0xec, 0x93, 0xff, 0xf7, 0xee, 0x8d, 0xff, 0xf8, 0xd5, 0x81, 0xff, 0xf6, 0xc0, 0x78, 0xff, 0xf7, 0xb2, 0x70, 0xff, 0xf7, 0xad, 0x6d, 0xff, 0xf7, 0xae, 0x69, 0xff, 0xf7, 0xb5, 0x6c, 0xff, 0xf6, 0xb4, 0x6a, 0xff, 0xf6, 0xb0, 0x6a, 0xff, 0xf7, 0xb1, 0x6b, 0xff, 0xf7, 0xb0, 0x6b, 0xff, 0xf7, 0xa9, 0x69, 0xff, 0xf6, 0xaa, 0x6a, 0xff, 0xe6, 0xa1, 0x62, 0xff, 0xd4, 0x98, 0x57, 0xff, 0xeb, 0xba, 0x68, 0xff, 0xf5, 0xc3, 0x6f, 0xff, 0xf4, 0xbf, 0x6f, 0xff, 0xf4, 0xc1, 0x74, 0xff, 0xe9, 0xb5, 0x6b, 0xff, 0xd7, 0x93, 0x58, 0xff, 0xd7, 0x98, 0x5b, 0xff, 0xd0, 0x93, 0x56, 0xff, 0xd1, 0x94, 0x56, 0xff, 0xd1, 0x93, 0x56, 0xff, 0xca, 0x8d, 0x4e, 0xff, 0xcb, 0x90, 0x51, 0xff, 0xca, 0x92, 0x54, 0xff, 0xc6, 0x91, 0x54, 0xff, 0xc4, 0x93, 0x55, 0xff, 0xc4, 0x94, 0x56, 0xff, 0xc2, 0x8f, 0x53, 0xff, 0xc1, 0x8d, 0x50, 0xff, 0xbf, 0x8a, 0x4d, 0xff, 0xbd, 0x85, 0x4d, 0xff, 0xbb, 0x87, 0x4e, 0xff, 0xb8, 0x84, 0x4b, 0xff, 0xb2, 0x77, 0x46, 0xff, 0xac, 0x71, 0x44, 0xff, 0xac, 0x72, 0x45, 0xff, 0xaa, 0x70, 0x40, 0xff, 0xa7, 0x6d, 0x3e, 0xff, 0xa5, 0x6a, 0x3b, 0xff, 0xa3, 0x69, 0x3b, 0xff, 0xa0, 0x67, 0x3b, 0xff, 0x9f, 0x67, 0x3b, 0xff, 0x9d, 0x66, 0x38, 0xff, 0x9a, 0x60, 0x33, 0xff, 0x96, 0x5b, 0x32, 0xff, 0x95, 0x59, 0x33, 0xff, 0x92, 0x56, 0x31, 0xff, 0x91, 0x56, 0x2f, 0xff, 0x8f, 0x54, 0x2d, 0xff, 0x8d, 0x51, 0x2d, 0xff, 0x8b, 0x4e, 0x2c, 0xff, 0x88, 0x4e, 0x2a, 0xff, 0x85, 0x4c, 0x28, 0xff, 0x83, 0x49, 0x28, 0xff, 0x82, 0x46, 0x27, 0xff, 0x80, 0x44, 0x25, 0xff, 0x7e, 0x42, 0x25, 0xff, 0x7c, 0x41, 0x24, 0xff, 0x7b, 0x41, 0x24, 0xff, 0x7a, 0x41, 0x24, 0xff, 0x7a, 0x3f, 0x25, 0xff, 0x73, 0x39, 0x1e, 0xff, 0x6c, 0x33, 0x18, 0xff, 0x6b, 0x32, 0x17, 0xff, 0x6a, 0x30, 0x14, 0xff, 0x68, 0x2f, 0x12, 0xff, 0x67, 0x2f, 0x12, 0xff, 0x66, 0x2d, 0x12, 0xff, 0x66, 0x2e, 0x14, 0xff, 0x66, 0x2e, 0x14, 0xff, 0x65, 0x2b, 0x11, 0xff, 0x60, 0x27, 0x0b, 0xff, 0x65, 0x2d, 0x12, 0xff, 0x7d, 0x43, 0x24, 0xff, 0x92, 0x55, 0x30, 0xff, 0x93, 0x54, 0x31, 0xff, 0x92, 0x52, 0x2f, 0xff, 0x92, 0x53, 0x2e, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x92, 0x51, 0x2d, 0xff, 0x93, 0x52, 0x2e, 0xff, 0x94, 0x53, 0x2e, 0xff, 0x95, 0x54, 0x2f, 0xff, 0x95, 0x55, 0x2f, 0xff, 0x95, 0x56, 0x30, 0xff, 0x97, 0x56, 0x31, 0xff, 0x9b, 0x5a, 0x32, 0xff, 0x9e, 0x5c, 0x33, 0xff, 0xa0, 0x5d, 0x32, 0xff, 0xa3, 0x5f, 0x32, 0xff, 0xa7, 0x65, 0x34, 0xff, 0xab, 0x6a, 0x37, 0xff, 0xad, 0x6e, 0x3c, 0xff, 0xaf, 0x73, 0x41, 0xff, 0xb2, 0x77, 0x45, 0xff, 0xb6, 0x7b, 0x4a, 0xff, 0xba, 0x81, 0x4c, 0xff, 0xbf, 0x84, 0x4c, 0xff, 0xc5, 0x87, 0x4e, 0xff, 0xcd, 0x8b, 0x51, 0xff, 0xdb, 0x93, 0x55, 0xff, 0xe4, 0x98, 0x5c, 0xff, 0xef, 0x9f, 0x61, 0xff, 0xf7, 0xa7, 0x64, 0xff, 0xf7, 0xab, 0x68, 0xff, 0xf7, 0xad, 0x6a, 0xff, 0xf8, 0xb0, 0x6c, 0xff, 0xf8, 0xb0, 0x6f, 0xff, 0xf7, 0xae, 0x70, 0xff, 0xf7, 0xa9, 0x6c, 0xff, 0xf7, 0xa1, 0x67, 0xff, 0xf5, 0x9e, 0x66, 0xff, 0xf1, 0x98, 0x60, 0xff, 0xe6, 0x94, 0x5c, 0xff, 0xe6, 0x95, 0x5d, 0xff, 0xe8, 0x96, 0x5d, 0xff, 0xec, 0x97, 0x5d, 0xff, 0xed, 0x97, 0x5d, 0xff, 0xf0, 0x9b, 0x60, 0xff, 0xf1, 0x9a, 0x63, 0xff, 0xef, 0x99, 0x65, 0xff, 0xd8, 0x93, 0x60, 0xff, 0xb5, 0x7c, 0x4a, 0xff, 0xb5, 0x7a, 0x48, 0xff, 0xb8, 0x7a, 0x48, 0xff, 0xba, 0x7d, 0x49, 0xff, 0xbb, 0x7d, 0x49, 0xff, 0xbf, 0x7f, 0x4a, 0xff, 0xc5, 0x84, 0x50, 0xff, 0xac, 0x6c, 0x3d, 0xff, 0xac, 0x6a, 0x3c, 0xff, 0xae, 0x6c, 0x3e, 0xff, 0xb3, 0x72, 0x43, 0xff, 0xc0, 0x7d, 0x4b, 0xff, 0xd3, 0x8d, 0x5b, 0xff, 0xc0, 0x7e, 0x51, 0xff, 0x9a, 0x5b, 0x37, 0xff, 0x97, 0x58, 0x33, 0xff, 0x98, 0x5b, 0x38, 0xff, 0x98, 0x5f, 0x3d, 0xff, 0x98, 0x63, 0x3f, 0xff, 0x98, 0x67, 0x43, 0xff, 0x97, 0x66, 0x48, 0xff, 0x98, 0x65, 0x48, 0xff, 0x98, 0x67, 0x47, 0xff, 0x97, 0x66, 0x45, 0xff, 0x96, 0x62, 0x42, 0xff, 0x95, 0x5f, 0x3d, 0xff, 0x96, 0x58, 0x34, 0xff, 0x8e, 0x51, 0x2e, 0xff, 0x8b, 0x4b, 0x29, 0xff, 0x85, 0x46, 0x27, 0xff, 0x85, 0x45, 0x26, 0xff, 0x84, 0x45, 0x26, 0xff, 0x83, 0x43, 0x26, 0xff, 0x82, 0x42, 0x25, 0xff, 0x82, 0x44, 0x25, 0xff, 0x84, 0x45, 0x27, 0xff, 0x84, 0x45, 0x27, 0xff, 0x88, 0x47, 0x28, 0xff, 0x88, 0x47, 0x28, 0xff, 0x8b, 0x4b, 0x2a, 0xff, 0x83, 0x43, 0x28, 0xff, 0x7d, 0x3f, 0x26, 0xff, 0x7d, 0x3f, 0x26, 0xff, 0x7b, 0x3d, 0x24, 0xff, 0x82, 0x45, 0x2a, 0xff, 0x81, 0x44, 0x29, 0xff, 0x7e, 0x42, 0x28, 0xff, 0x7d, 0x40, 0x27, 0xff, 0x7a, 0x3e, 0x24, 0xff, 0x79, 0x3c, 0x23, 0xff, 0x78, 0x39, 0x20, 0xff, + 0x77, 0x39, 0x1d, 0xff, 0x75, 0x36, 0x1d, 0xff, 0x74, 0x35, 0x1c, 0xff, 0x71, 0x33, 0x19, 0xff, 0x70, 0x31, 0x18, 0xff, 0x6e, 0x2f, 0x15, 0xff, 0x67, 0x2a, 0x12, 0xff, 0x67, 0x2b, 0x0f, 0xff, 0x63, 0x29, 0x0e, 0xff, 0x65, 0x28, 0x0c, 0xff, 0x64, 0x28, 0x0c, 0xff, 0x65, 0x29, 0x0d, 0xff, 0x66, 0x2b, 0x0f, 0xff, 0x69, 0x2c, 0x11, 0xff, 0x6b, 0x2c, 0x12, 0xff, 0x6f, 0x2f, 0x13, 0xff, 0x6f, 0x31, 0x15, 0xff, 0x5e, 0x26, 0x08, 0xff, 0x5c, 0x23, 0x05, 0xff, 0x61, 0x26, 0x07, 0xff, 0x65, 0x28, 0x08, 0xff, 0x6a, 0x2c, 0x0c, 0xff, 0x6f, 0x31, 0x10, 0xff, 0x73, 0x32, 0x14, 0xff, 0x78, 0x37, 0x15, 0xff, 0x7c, 0x3b, 0x1b, 0xff, 0x81, 0x3e, 0x1c, 0xff, 0x84, 0x41, 0x1f, 0xff, 0x88, 0x47, 0x22, 0xff, 0x8e, 0x4c, 0x25, 0xff, 0x95, 0x50, 0x26, 0xff, 0x97, 0x54, 0x29, 0xff, 0x9c, 0x5b, 0x2e, 0xff, 0xa2, 0x60, 0x31, 0xff, 0xa7, 0x68, 0x35, 0xff, 0xad, 0x6f, 0x3a, 0xff, 0xb5, 0x75, 0x3f, 0xff, 0xbe, 0x7f, 0x46, 0xff, 0xcc, 0x8d, 0x52, 0xff, 0xe0, 0x9d, 0x5b, 0xff, 0xf9, 0xb0, 0x6b, 0xff, 0xf8, 0xce, 0x7d, 0xff, 0xef, 0xf2, 0x98, 0xff, 0xf2, 0xf5, 0xbb, 0xff, 0xf9, 0xf4, 0xe8, 0xff, 0xf9, 0xf5, 0xf1, 0xff, 0xf9, 0xf5, 0xf0, 0xff, 0xf9, 0xf4, 0xf0, 0xff, 0xf9, 0xf5, 0xf0, 0xff, 0xf9, 0xf4, 0xf0, 0xff, 0xf9, 0xf5, 0xf0, 0xff, 0xf9, 0xf4, 0xee, 0xff, 0xf7, 0xf4, 0xdb, 0xff, 0xf2, 0xf3, 0xb6, 0xff, 0xf7, 0xed, 0xa5, 0xff, 0xf7, 0xe4, 0x9a, 0xff, 0xf9, 0xe6, 0x91, 0xff, 0xf7, 0xdf, 0x8b, 0xff, 0xf9, 0xdb, 0x86, 0xff, 0xf6, 0xc6, 0x7d, 0xff, 0xf7, 0xb4, 0x71, 0xff, 0xf6, 0xaf, 0x6d, 0xff, 0xf7, 0xac, 0x68, 0xff, 0xf7, 0xb3, 0x68, 0xff, 0xf7, 0xb1, 0x68, 0xff, 0xf7, 0xae, 0x68, 0xff, 0xf7, 0xad, 0x68, 0xff, 0xf7, 0xab, 0x68, 0xff, 0xf8, 0xa7, 0x68, 0xff, 0xf9, 0xa9, 0x69, 0xff, 0xed, 0xa3, 0x65, 0xff, 0xd5, 0x9b, 0x58, 0xff, 0xf7, 0xc4, 0x6c, 0xff, 0xf1, 0xbb, 0x6b, 0xff, 0xf3, 0xbc, 0x6d, 0xff, 0xf4, 0xc5, 0x70, 0xff, 0xee, 0xb7, 0x6c, 0xff, 0xdd, 0x96, 0x5b, 0xff, 0xe0, 0x9d, 0x5f, 0xff, 0xd4, 0x95, 0x57, 0xff, 0xd4, 0x95, 0x57, 0xff, 0xd4, 0x95, 0x56, 0xff, 0xd1, 0x91, 0x54, 0xff, 0xcd, 0x8f, 0x51, 0xff, 0xcb, 0x92, 0x51, 0xff, 0xcb, 0x96, 0x54, 0xff, 0xc8, 0x94, 0x54, 0xff, 0xc4, 0x91, 0x53, 0xff, 0xc4, 0x92, 0x53, 0xff, 0xc2, 0x8e, 0x4f, 0xff, 0xc1, 0x88, 0x4c, 0xff, 0xc0, 0x8a, 0x4d, 0xff, 0xbd, 0x88, 0x4f, 0xff, 0xb9, 0x80, 0x4c, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb0, 0x77, 0x44, 0xff, 0xaf, 0x75, 0x46, 0xff, 0xab, 0x73, 0x42, 0xff, 0xa9, 0x71, 0x3e, 0xff, 0xa7, 0x6e, 0x3d, 0xff, 0xa4, 0x6b, 0x3d, 0xff, 0xa3, 0x69, 0x3d, 0xff, 0xa2, 0x68, 0x3c, 0xff, 0x9f, 0x65, 0x3a, 0xff, 0x9b, 0x61, 0x36, 0xff, 0x98, 0x5d, 0x33, 0xff, 0x97, 0x5b, 0x33, 0xff, 0x95, 0x58, 0x32, 0xff, 0x93, 0x56, 0x31, 0xff, 0x91, 0x54, 0x30, 0xff, 0x8e, 0x54, 0x2f, 0xff, 0x8b, 0x52, 0x2e, 0xff, 0x8b, 0x4f, 0x2d, 0xff, 0x88, 0x4e, 0x2b, 0xff, 0x86, 0x4c, 0x28, 0xff, 0x84, 0x48, 0x27, 0xff, 0x82, 0x45, 0x27, 0xff, 0x7f, 0x43, 0x25, 0xff, 0x7d, 0x41, 0x25, 0xff, 0x7d, 0x40, 0x25, 0xff, 0x7b, 0x41, 0x26, 0xff, 0x74, 0x3b, 0x20, 0xff, 0x6e, 0x34, 0x18, 0xff, 0x6e, 0x34, 0x17, 0xff, 0x6b, 0x30, 0x16, 0xff, 0x6a, 0x2e, 0x15, 0xff, 0x69, 0x2f, 0x13, 0xff, 0x69, 0x30, 0x13, 0xff, 0x68, 0x2e, 0x15, 0xff, 0x68, 0x2e, 0x15, 0xff, 0x65, 0x2d, 0x13, 0xff, 0x5a, 0x26, 0x09, 0xff, 0x66, 0x2f, 0x13, 0xff, 0x85, 0x49, 0x2c, 0xff, 0x91, 0x52, 0x30, 0xff, 0x8d, 0x4d, 0x2c, 0xff, 0x8c, 0x4c, 0x2b, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8c, 0x4d, 0x2a, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8d, 0x4c, 0x2a, 0xff, 0x8d, 0x4b, 0x29, 0xff, 0x8e, 0x4d, 0x29, 0xff, 0x90, 0x50, 0x2b, 0xff, 0x92, 0x52, 0x2d, 0xff, 0x95, 0x54, 0x2f, 0xff, 0x97, 0x57, 0x30, 0xff, 0x99, 0x5b, 0x31, 0xff, 0x9d, 0x5d, 0x32, 0xff, 0xa1, 0x5f, 0x33, 0xff, 0xa3, 0x62, 0x33, 0xff, 0xa5, 0x68, 0x35, 0xff, 0xa9, 0x6d, 0x3b, 0xff, 0xab, 0x71, 0x40, 0xff, 0xae, 0x75, 0x47, 0xff, 0xb2, 0x7a, 0x4d, 0xff, 0xb7, 0x80, 0x53, 0xff, 0xbd, 0x86, 0x54, 0xff, 0xc3, 0x8d, 0x56, 0xff, 0xcd, 0x92, 0x5a, 0xff, 0xdc, 0x97, 0x5e, 0xff, 0xee, 0x9f, 0x64, 0xff, 0xf7, 0xa9, 0x6b, 0xff, 0xf8, 0xb1, 0x71, 0xff, 0xf6, 0xb6, 0x76, 0xff, 0xf7, 0xb8, 0x79, 0xff, 0xf9, 0xb9, 0x79, 0xff, 0xf7, 0xb8, 0x7b, 0xff, 0xf6, 0xb7, 0x78, 0xff, 0xf7, 0xb4, 0x76, 0xff, 0xf7, 0xad, 0x72, 0xff, 0xf8, 0xa3, 0x69, 0xff, 0xf2, 0x9c, 0x62, 0xff, 0xe4, 0x94, 0x5e, 0xff, 0xe0, 0x91, 0x5a, 0xff, 0xe4, 0x93, 0x5c, 0xff, 0xe8, 0x95, 0x5d, 0xff, 0xe9, 0x96, 0x5d, 0xff, 0xe9, 0x96, 0x5f, 0xff, 0xe8, 0x96, 0x60, 0xff, 0xe9, 0x98, 0x63, 0xff, 0xeb, 0x9a, 0x63, 0xff, 0xe5, 0x9a, 0x67, 0xff, 0xb6, 0x79, 0x49, 0xff, 0xb3, 0x78, 0x47, 0xff, 0xb6, 0x79, 0x49, 0xff, 0xb8, 0x7b, 0x4b, 0xff, 0xb9, 0x7d, 0x4c, 0xff, 0xbe, 0x80, 0x4d, 0xff, 0xb3, 0x75, 0x45, 0xff, 0xaa, 0x6a, 0x3d, 0xff, 0xab, 0x6c, 0x3c, 0xff, 0xc0, 0x7d, 0x4a, 0xff, 0xc4, 0x80, 0x4e, 0xff, 0xc4, 0x80, 0x50, 0xff, 0xa1, 0x61, 0x3a, 0xff, 0x94, 0x55, 0x31, 0xff, 0x96, 0x57, 0x34, 0xff, 0x98, 0x5a, 0x35, 0xff, 0x97, 0x5c, 0x37, 0xff, 0x96, 0x5f, 0x3c, 0xff, 0x98, 0x64, 0x41, 0xff, 0x98, 0x67, 0x43, 0xff, 0x97, 0x66, 0x44, 0xff, 0x97, 0x67, 0x46, 0xff, 0x96, 0x64, 0x43, 0xff, 0x95, 0x60, 0x3f, 0xff, 0x96, 0x5e, 0x3a, 0xff, 0x94, 0x57, 0x34, 0xff, 0x8d, 0x50, 0x2d, 0xff, 0x89, 0x4a, 0x28, 0xff, 0x85, 0x46, 0x28, 0xff, 0x83, 0x43, 0x26, 0xff, 0x82, 0x41, 0x25, 0xff, 0x81, 0x44, 0x26, 0xff, 0x81, 0x44, 0x26, 0xff, 0x84, 0x45, 0x26, 0xff, 0x87, 0x47, 0x27, 0xff, 0x86, 0x45, 0x29, 0xff, 0x88, 0x48, 0x29, 0xff, 0x88, 0x48, 0x29, 0xff, 0x8b, 0x4b, 0x29, 0xff, 0x8c, 0x4b, 0x2a, 0xff, 0x84, 0x46, 0x29, 0xff, 0x82, 0x45, 0x28, 0xff, 0x83, 0x47, 0x29, 0xff, 0x83, 0x48, 0x2e, 0xff, 0x80, 0x43, 0x28, 0xff, 0x7f, 0x42, 0x27, 0xff, 0x7c, 0x40, 0x26, 0xff, 0x7b, 0x3d, 0x25, 0xff, 0x7b, 0x3d, 0x24, 0xff, 0x77, 0x39, 0x20, 0xff, + 0x78, 0x39, 0x22, 0xff, 0x76, 0x38, 0x1c, 0xff, 0x73, 0x34, 0x19, 0xff, 0x71, 0x31, 0x15, 0xff, 0x6c, 0x2d, 0x15, 0xff, 0x68, 0x2e, 0x14, 0xff, 0x68, 0x2d, 0x0f, 0xff, 0x68, 0x2d, 0x12, 0xff, 0x68, 0x2b, 0x11, 0xff, 0x61, 0x28, 0x0d, 0xff, 0x62, 0x28, 0x0c, 0xff, 0x5f, 0x27, 0x0c, 0xff, 0x60, 0x27, 0x0b, 0xff, 0x67, 0x2b, 0x0e, 0xff, 0x68, 0x2c, 0x0e, 0xff, 0x6a, 0x2c, 0x0f, 0xff, 0x6d, 0x2e, 0x12, 0xff, 0x74, 0x33, 0x18, 0xff, 0x5d, 0x24, 0x07, 0xff, 0x5c, 0x25, 0x06, 0xff, 0x61, 0x26, 0x07, 0xff, 0x67, 0x29, 0x08, 0xff, 0x6a, 0x2c, 0x0c, 0xff, 0x70, 0x2e, 0x10, 0xff, 0x76, 0x33, 0x14, 0xff, 0x79, 0x37, 0x18, 0xff, 0x7e, 0x3a, 0x1a, 0xff, 0x84, 0x40, 0x1e, 0xff, 0x87, 0x45, 0x22, 0xff, 0x8c, 0x49, 0x24, 0xff, 0x91, 0x4d, 0x25, 0xff, 0x95, 0x54, 0x28, 0xff, 0x9b, 0x5a, 0x2d, 0xff, 0xa0, 0x5f, 0x2f, 0xff, 0xa3, 0x63, 0x33, 0xff, 0xa9, 0x6a, 0x39, 0xff, 0xb0, 0x72, 0x3d, 0xff, 0xb7, 0x78, 0x3e, 0xff, 0xc0, 0x81, 0x48, 0xff, 0xd5, 0x91, 0x54, 0xff, 0xeb, 0xa3, 0x62, 0xff, 0xf9, 0xba, 0x72, 0xff, 0xf7, 0xdc, 0x86, 0xff, 0xeb, 0xf3, 0xa3, 0xff, 0xf3, 0xf3, 0xc7, 0xff, 0xf9, 0xf4, 0xed, 0xff, 0xf9, 0xf4, 0xf0, 0xff, 0xf9, 0xf4, 0xf0, 0xff, 0xf9, 0xf4, 0xf0, 0xff, 0xf9, 0xf5, 0xf0, 0xff, 0xf9, 0xf4, 0xf0, 0xff, 0xf9, 0xf4, 0xee, 0xff, 0xf7, 0xf3, 0xdb, 0xff, 0xf2, 0xf4, 0xb5, 0xff, 0xf8, 0xee, 0xa2, 0xff, 0xf8, 0xe2, 0x97, 0xff, 0xf9, 0xe3, 0x92, 0xff, 0xf8, 0xdb, 0x88, 0xff, 0xf6, 0xd8, 0x84, 0xff, 0xf9, 0xc9, 0x7e, 0xff, 0xf7, 0xb6, 0x73, 0xff, 0xf6, 0xad, 0x6d, 0xff, 0xf8, 0xad, 0x6a, 0xff, 0xf7, 0xb0, 0x66, 0xff, 0xf8, 0xaf, 0x65, 0xff, 0xf7, 0xac, 0x66, 0xff, 0xf8, 0xab, 0x66, 0xff, 0xf7, 0xaa, 0x65, 0xff, 0xf5, 0xa3, 0x61, 0xff, 0xf8, 0xa7, 0x68, 0xff, 0xf7, 0xa8, 0x6a, 0xff, 0xf1, 0xaf, 0x6b, 0xff, 0xf1, 0xba, 0x6b, 0xff, 0xef, 0xb8, 0x6e, 0xff, 0xf1, 0xbe, 0x6f, 0xff, 0xf5, 0xbf, 0x6c, 0xff, 0xed, 0xb1, 0x67, 0xff, 0xe3, 0x97, 0x5f, 0xff, 0xe6, 0x9d, 0x5f, 0xff, 0xda, 0x99, 0x5a, 0xff, 0xd8, 0x98, 0x59, 0xff, 0xd6, 0x97, 0x59, 0xff, 0xd4, 0x95, 0x57, 0xff, 0xd0, 0x91, 0x52, 0xff, 0xcf, 0x91, 0x4e, 0xff, 0xcd, 0x90, 0x50, 0xff, 0xca, 0x91, 0x52, 0xff, 0xca, 0x94, 0x54, 0xff, 0xc6, 0x94, 0x52, 0xff, 0xc5, 0x91, 0x4f, 0xff, 0xc3, 0x8c, 0x4e, 0xff, 0xc2, 0x89, 0x50, 0xff, 0xc2, 0x8c, 0x52, 0xff, 0xbc, 0x84, 0x4c, 0xff, 0xb2, 0x74, 0x3f, 0xff, 0xb3, 0x7a, 0x47, 0xff, 0xb1, 0x76, 0x47, 0xff, 0xae, 0x74, 0x45, 0xff, 0xab, 0x72, 0x40, 0xff, 0xaa, 0x70, 0x3e, 0xff, 0xa8, 0x6c, 0x3e, 0xff, 0xa6, 0x6a, 0x3e, 0xff, 0xa3, 0x68, 0x3d, 0xff, 0xa2, 0x68, 0x3c, 0xff, 0x9e, 0x64, 0x37, 0xff, 0x99, 0x5d, 0x33, 0xff, 0x99, 0x5e, 0x34, 0xff, 0x97, 0x5d, 0x33, 0xff, 0x93, 0x58, 0x31, 0xff, 0x92, 0x55, 0x31, 0xff, 0x91, 0x54, 0x30, 0xff, 0x8e, 0x51, 0x2d, 0xff, 0x8b, 0x51, 0x2e, 0xff, 0x8a, 0x4f, 0x2c, 0xff, 0x88, 0x4c, 0x29, 0xff, 0x85, 0x4a, 0x28, 0xff, 0x84, 0x47, 0x26, 0xff, 0x80, 0x45, 0x25, 0xff, 0x7d, 0x42, 0x25, 0xff, 0x7f, 0x42, 0x26, 0xff, 0x7a, 0x3f, 0x22, 0xff, 0x71, 0x37, 0x1a, 0xff, 0x6f, 0x34, 0x18, 0xff, 0x6e, 0x33, 0x18, 0xff, 0x6a, 0x30, 0x16, 0xff, 0x6a, 0x2f, 0x15, 0xff, 0x69, 0x30, 0x15, 0xff, 0x69, 0x30, 0x13, 0xff, 0x68, 0x2f, 0x14, 0xff, 0x63, 0x2c, 0x11, 0xff, 0x5d, 0x27, 0x0a, 0xff, 0x6b, 0x34, 0x18, 0xff, 0x83, 0x48, 0x2a, 0xff, 0x89, 0x4b, 0x2b, 0xff, 0x86, 0x48, 0x29, 0xff, 0x85, 0x45, 0x28, 0xff, 0x87, 0x47, 0x28, 0xff, 0x89, 0x49, 0x29, 0xff, 0x89, 0x49, 0x28, 0xff, 0x8a, 0x4a, 0x28, 0xff, 0x87, 0x46, 0x27, 0xff, 0x86, 0x44, 0x27, 0xff, 0x88, 0x47, 0x28, 0xff, 0x8a, 0x49, 0x28, 0xff, 0x8b, 0x4a, 0x28, 0xff, 0x8c, 0x4b, 0x29, 0xff, 0x8e, 0x50, 0x2a, 0xff, 0x92, 0x51, 0x2b, 0xff, 0x94, 0x52, 0x2d, 0xff, 0x97, 0x55, 0x2e, 0xff, 0x9b, 0x5a, 0x2e, 0xff, 0xa0, 0x5c, 0x31, 0xff, 0xa2, 0x61, 0x34, 0xff, 0xa3, 0x68, 0x39, 0xff, 0xa7, 0x6e, 0x3f, 0xff, 0xab, 0x71, 0x45, 0xff, 0xaf, 0x75, 0x4c, 0xff, 0xb4, 0x7d, 0x52, 0xff, 0xba, 0x81, 0x57, 0xff, 0xc2, 0x8a, 0x5d, 0xff, 0xcd, 0x95, 0x5f, 0xff, 0xdf, 0x9e, 0x64, 0xff, 0xf3, 0xa9, 0x6b, 0xff, 0xf7, 0xb2, 0x74, 0xff, 0xf8, 0xc1, 0x7c, 0xff, 0xf6, 0xcc, 0x84, 0xff, 0xf8, 0xd5, 0x8b, 0xff, 0xf8, 0xde, 0x8c, 0xff, 0xf9, 0xdc, 0x8c, 0xff, 0xf7, 0xd1, 0x89, 0xff, 0xf7, 0xc6, 0x86, 0xff, 0xf7, 0xbb, 0x7d, 0xff, 0xf8, 0xaf, 0x75, 0xff, 0xf6, 0xa3, 0x6a, 0xff, 0xee, 0x98, 0x61, 0xff, 0xe1, 0x91, 0x5c, 0xff, 0xdb, 0x90, 0x58, 0xff, 0xdd, 0x91, 0x58, 0xff, 0xe2, 0x92, 0x58, 0xff, 0xe3, 0x95, 0x5a, 0xff, 0xe1, 0x96, 0x5d, 0xff, 0xe3, 0x96, 0x60, 0xff, 0xe4, 0x96, 0x5f, 0xff, 0xe8, 0x96, 0x62, 0xff, 0xe5, 0x94, 0x62, 0xff, 0xb8, 0x79, 0x49, 0xff, 0xb1, 0x74, 0x45, 0xff, 0xb4, 0x76, 0x48, 0xff, 0xb7, 0x7a, 0x4c, 0xff, 0xb8, 0x7a, 0x4b, 0xff, 0xbc, 0x7e, 0x4e, 0xff, 0xa9, 0x6c, 0x3f, 0xff, 0xb9, 0x7a, 0x46, 0xff, 0xc4, 0x84, 0x4c, 0xff, 0xb2, 0x71, 0x3f, 0xff, 0xac, 0x6b, 0x3e, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x92, 0x53, 0x2f, 0xff, 0x91, 0x53, 0x30, 0xff, 0x93, 0x55, 0x32, 0xff, 0x96, 0x59, 0x34, 0xff, 0x97, 0x5b, 0x37, 0xff, 0x98, 0x5f, 0x3b, 0xff, 0x97, 0x5f, 0x3c, 0xff, 0x97, 0x61, 0x3d, 0xff, 0x96, 0x61, 0x3d, 0xff, 0x96, 0x5f, 0x3d, 0xff, 0x96, 0x5e, 0x3a, 0xff, 0x94, 0x5a, 0x35, 0xff, 0x90, 0x53, 0x31, 0xff, 0x8b, 0x4e, 0x2b, 0xff, 0x87, 0x49, 0x28, 0xff, 0x84, 0x43, 0x27, 0xff, 0x80, 0x43, 0x26, 0xff, 0x80, 0x3e, 0x25, 0xff, 0x80, 0x40, 0x25, 0xff, 0x82, 0x41, 0x25, 0xff, 0x82, 0x44, 0x26, 0xff, 0x86, 0x44, 0x27, 0xff, 0x88, 0x48, 0x28, 0xff, 0x89, 0x48, 0x29, 0xff, 0x8b, 0x48, 0x29, 0xff, 0x8b, 0x4a, 0x29, 0xff, 0x8c, 0x4e, 0x2d, 0xff, 0x8b, 0x4f, 0x2e, 0xff, 0x87, 0x4a, 0x2d, 0xff, 0x85, 0x49, 0x2d, 0xff, 0x83, 0x46, 0x29, 0xff, 0x80, 0x44, 0x28, 0xff, 0x80, 0x43, 0x27, 0xff, 0x7e, 0x40, 0x26, 0xff, 0x7c, 0x3e, 0x26, 0xff, 0x79, 0x3d, 0x25, 0xff, 0x78, 0x3d, 0x22, 0xff, + 0x79, 0x39, 0x21, 0xff, 0x76, 0x37, 0x1b, 0xff, 0x73, 0x33, 0x18, 0xff, 0x71, 0x32, 0x18, 0xff, 0x6e, 0x2f, 0x15, 0xff, 0x6c, 0x2e, 0x15, 0xff, 0x6a, 0x2e, 0x15, 0xff, 0x6a, 0x2d, 0x13, 0xff, 0x6a, 0x2d, 0x12, 0xff, 0x6a, 0x2d, 0x11, 0xff, 0x68, 0x2d, 0x11, 0xff, 0x64, 0x2a, 0x0c, 0xff, 0x62, 0x27, 0x0b, 0xff, 0x62, 0x27, 0x08, 0xff, 0x67, 0x2c, 0x0e, 0xff, 0x69, 0x2b, 0x0e, 0xff, 0x6c, 0x2d, 0x10, 0xff, 0x70, 0x2f, 0x13, 0xff, 0x70, 0x32, 0x15, 0xff, 0x64, 0x29, 0x0c, 0xff, 0x5b, 0x23, 0x05, 0xff, 0x64, 0x26, 0x07, 0xff, 0x67, 0x29, 0x09, 0xff, 0x6c, 0x2d, 0x0d, 0xff, 0x72, 0x32, 0x11, 0xff, 0x78, 0x37, 0x14, 0xff, 0x7b, 0x38, 0x18, 0xff, 0x7f, 0x3e, 0x1b, 0xff, 0x84, 0x43, 0x1f, 0xff, 0x8a, 0x47, 0x23, 0xff, 0x8d, 0x4b, 0x24, 0xff, 0x93, 0x51, 0x26, 0xff, 0x98, 0x57, 0x2a, 0xff, 0x9c, 0x5c, 0x2e, 0xff, 0xa0, 0x62, 0x31, 0xff, 0xa4, 0x68, 0x35, 0xff, 0xab, 0x6d, 0x3c, 0xff, 0xb0, 0x76, 0x3e, 0xff, 0xb9, 0x7a, 0x41, 0xff, 0xc6, 0x85, 0x4b, 0xff, 0xde, 0x96, 0x58, 0xff, 0xf1, 0xa5, 0x65, 0xff, 0xf7, 0xbe, 0x78, 0xff, 0xf8, 0xe8, 0x8c, 0xff, 0xef, 0xf6, 0xaa, 0xff, 0xf6, 0xf3, 0xd2, 0xff, 0xf9, 0xf5, 0xf0, 0xff, 0xf9, 0xf5, 0xf0, 0xff, 0xf9, 0xf5, 0xf0, 0xff, 0xf9, 0xf5, 0xf0, 0xff, 0xf9, 0xf5, 0xf0, 0xff, 0xf9, 0xf5, 0xed, 0xff, 0xf6, 0xf5, 0xd5, 0xff, 0xf1, 0xf3, 0xb4, 0xff, 0xf5, 0xf1, 0xa2, 0xff, 0xf8, 0xe6, 0x97, 0xff, 0xf8, 0xde, 0x8e, 0xff, 0xf9, 0xda, 0x88, 0xff, 0xf7, 0xd7, 0x83, 0xff, 0xf9, 0xc2, 0x7f, 0xff, 0xf7, 0xb6, 0x77, 0xff, 0xf6, 0xaf, 0x6c, 0xff, 0xf7, 0xad, 0x69, 0xff, 0xf7, 0xad, 0x65, 0xff, 0xf6, 0xa9, 0x64, 0xff, 0xf5, 0xa9, 0x64, 0xff, 0xf7, 0xa9, 0x64, 0xff, 0xf8, 0xa7, 0x64, 0xff, 0xf7, 0xa2, 0x62, 0xff, 0xf8, 0xa3, 0x64, 0xff, 0xf7, 0xa7, 0x68, 0xff, 0xf6, 0xb6, 0x70, 0xff, 0xf1, 0xbb, 0x6a, 0xff, 0xf5, 0xbe, 0x6c, 0xff, 0xf5, 0xbb, 0x6c, 0xff, 0xf3, 0xb9, 0x6d, 0xff, 0xef, 0xb4, 0x6b, 0xff, 0xe9, 0x9d, 0x5f, 0xff, 0xed, 0xa2, 0x5f, 0xff, 0xe5, 0x9e, 0x5d, 0xff, 0xd8, 0x97, 0x59, 0xff, 0xdc, 0x9a, 0x5b, 0xff, 0xd8, 0x96, 0x57, 0xff, 0xce, 0x91, 0x4e, 0xff, 0xcf, 0x93, 0x50, 0xff, 0xd0, 0x94, 0x4f, 0xff, 0xcf, 0x93, 0x51, 0xff, 0xcc, 0x92, 0x51, 0xff, 0xc8, 0x8f, 0x4f, 0xff, 0xc7, 0x8f, 0x50, 0xff, 0xc5, 0x90, 0x51, 0xff, 0xc3, 0x8f, 0x50, 0xff, 0xc2, 0x8b, 0x50, 0xff, 0xbc, 0x82, 0x49, 0xff, 0xb6, 0x79, 0x44, 0xff, 0xb6, 0x7b, 0x47, 0xff, 0xb4, 0x78, 0x48, 0xff, 0xb2, 0x77, 0x45, 0xff, 0xad, 0x74, 0x42, 0xff, 0xac, 0x71, 0x3f, 0xff, 0xab, 0x70, 0x40, 0xff, 0xa8, 0x6d, 0x3f, 0xff, 0xa6, 0x6c, 0x3d, 0xff, 0xa4, 0x6b, 0x3b, 0xff, 0x9f, 0x65, 0x37, 0xff, 0x9c, 0x60, 0x36, 0xff, 0x9b, 0x61, 0x36, 0xff, 0x99, 0x5e, 0x34, 0xff, 0x97, 0x5c, 0x33, 0xff, 0x95, 0x59, 0x33, 0xff, 0x92, 0x56, 0x32, 0xff, 0x8f, 0x55, 0x30, 0xff, 0x8e, 0x52, 0x2f, 0xff, 0x8b, 0x50, 0x2d, 0xff, 0x89, 0x4e, 0x2a, 0xff, 0x89, 0x4b, 0x28, 0xff, 0x86, 0x4a, 0x28, 0xff, 0x82, 0x48, 0x26, 0xff, 0x81, 0x45, 0x25, 0xff, 0x7d, 0x41, 0x24, 0xff, 0x75, 0x39, 0x1e, 0xff, 0x71, 0x36, 0x1a, 0xff, 0x70, 0x35, 0x19, 0xff, 0x6d, 0x33, 0x16, 0xff, 0x6a, 0x31, 0x15, 0xff, 0x69, 0x30, 0x15, 0xff, 0x6a, 0x30, 0x15, 0xff, 0x6a, 0x30, 0x15, 0xff, 0x68, 0x2e, 0x14, 0xff, 0x61, 0x28, 0x0e, 0xff, 0x67, 0x30, 0x14, 0xff, 0x7f, 0x42, 0x26, 0xff, 0x87, 0x47, 0x2a, 0xff, 0x82, 0x44, 0x26, 0xff, 0x80, 0x42, 0x27, 0xff, 0x80, 0x43, 0x26, 0xff, 0x83, 0x45, 0x27, 0xff, 0x85, 0x45, 0x27, 0xff, 0x84, 0x44, 0x27, 0xff, 0x82, 0x42, 0x26, 0xff, 0x81, 0x41, 0x25, 0xff, 0x82, 0x44, 0x25, 0xff, 0x84, 0x44, 0x26, 0xff, 0x86, 0x46, 0x27, 0xff, 0x87, 0x46, 0x26, 0xff, 0x89, 0x47, 0x27, 0xff, 0x89, 0x48, 0x27, 0xff, 0x8c, 0x4a, 0x27, 0xff, 0x8e, 0x4d, 0x28, 0xff, 0x92, 0x51, 0x29, 0xff, 0x95, 0x54, 0x2a, 0xff, 0x99, 0x57, 0x2e, 0xff, 0x9e, 0x5c, 0x30, 0xff, 0xa1, 0x61, 0x31, 0xff, 0xa3, 0x69, 0x37, 0xff, 0xa7, 0x70, 0x3f, 0xff, 0xab, 0x73, 0x45, 0xff, 0xb0, 0x79, 0x4f, 0xff, 0xb6, 0x80, 0x55, 0xff, 0xc0, 0x89, 0x5d, 0xff, 0xca, 0x94, 0x62, 0xff, 0xe0, 0xa1, 0x6a, 0xff, 0xf5, 0xb1, 0x75, 0xff, 0xfa, 0xbd, 0x7f, 0xff, 0xf8, 0xcf, 0x8d, 0xff, 0xf7, 0xe7, 0x97, 0xff, 0xf3, 0xf3, 0xa0, 0xff, 0xf0, 0xf4, 0xa5, 0xff, 0xf0, 0xf5, 0xa6, 0xff, 0xf4, 0xf4, 0xa1, 0xff, 0xf6, 0xe6, 0x9a, 0xff, 0xf8, 0xd3, 0x8d, 0xff, 0xf9, 0xc3, 0x84, 0xff, 0xf6, 0xaa, 0x74, 0xff, 0xf5, 0x9f, 0x69, 0xff, 0xe9, 0x98, 0x61, 0xff, 0xde, 0x92, 0x5b, 0xff, 0xd9, 0x8f, 0x58, 0xff, 0xdc, 0x8f, 0x54, 0xff, 0xd9, 0x8d, 0x55, 0xff, 0xdb, 0x91, 0x57, 0xff, 0xde, 0x91, 0x5a, 0xff, 0xe0, 0x94, 0x5d, 0xff, 0xe0, 0x92, 0x5d, 0xff, 0xe1, 0x94, 0x5e, 0xff, 0xdb, 0x91, 0x5c, 0xff, 0xb6, 0x79, 0x47, 0xff, 0xad, 0x73, 0x42, 0xff, 0xb1, 0x73, 0x43, 0xff, 0xb4, 0x74, 0x47, 0xff, 0xb6, 0x78, 0x49, 0xff, 0xbb, 0x7e, 0x4b, 0xff, 0xba, 0x7d, 0x49, 0xff, 0xbd, 0x7e, 0x49, 0xff, 0xaf, 0x6d, 0x3e, 0xff, 0x99, 0x59, 0x33, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x8d, 0x4f, 0x2d, 0xff, 0x8e, 0x50, 0x2e, 0xff, 0x90, 0x52, 0x2f, 0xff, 0x91, 0x53, 0x32, 0xff, 0x94, 0x55, 0x32, 0xff, 0x96, 0x59, 0x33, 0xff, 0x97, 0x5b, 0x33, 0xff, 0x96, 0x5c, 0x36, 0xff, 0x95, 0x58, 0x35, 0xff, 0x95, 0x58, 0x33, 0xff, 0x92, 0x56, 0x32, 0xff, 0x91, 0x51, 0x30, 0xff, 0x8d, 0x4e, 0x2c, 0xff, 0x88, 0x4a, 0x29, 0xff, 0x85, 0x44, 0x27, 0xff, 0x83, 0x42, 0x25, 0xff, 0x7f, 0x40, 0x24, 0xff, 0x80, 0x3d, 0x24, 0xff, 0x7f, 0x3f, 0x23, 0xff, 0x80, 0x42, 0x24, 0xff, 0x83, 0x41, 0x26, 0xff, 0x85, 0x45, 0x27, 0xff, 0x87, 0x46, 0x27, 0xff, 0x88, 0x48, 0x28, 0xff, 0x89, 0x4a, 0x29, 0xff, 0x8c, 0x4b, 0x2b, 0xff, 0x8d, 0x4e, 0x2c, 0xff, 0x8d, 0x51, 0x30, 0xff, 0x89, 0x4e, 0x2e, 0xff, 0x84, 0x47, 0x2a, 0xff, 0x83, 0x45, 0x29, 0xff, 0x80, 0x44, 0x28, 0xff, 0x7f, 0x41, 0x27, 0xff, 0x7d, 0x41, 0x27, 0xff, 0x7e, 0x40, 0x27, 0xff, 0x7d, 0x3e, 0x27, 0xff, 0x7a, 0x3d, 0x24, 0xff, + 0x75, 0x36, 0x1e, 0xff, 0x72, 0x33, 0x1a, 0xff, 0x6f, 0x32, 0x16, 0xff, 0x6f, 0x30, 0x16, 0xff, 0x6a, 0x2b, 0x15, 0xff, 0x69, 0x2c, 0x11, 0xff, 0x69, 0x2d, 0x0f, 0xff, 0x68, 0x2a, 0x13, 0xff, 0x69, 0x2b, 0x0f, 0xff, 0x69, 0x2c, 0x11, 0xff, 0x6a, 0x2d, 0x10, 0xff, 0x6c, 0x2e, 0x14, 0xff, 0x6c, 0x2e, 0x13, 0xff, 0x68, 0x2b, 0x11, 0xff, 0x6a, 0x2c, 0x10, 0xff, 0x70, 0x2f, 0x13, 0xff, 0x6e, 0x30, 0x12, 0xff, 0x6b, 0x2e, 0x0f, 0xff, 0x6f, 0x2d, 0x0f, 0xff, 0x71, 0x32, 0x16, 0xff, 0x62, 0x28, 0x0b, 0xff, 0x5d, 0x24, 0x05, 0xff, 0x65, 0x27, 0x07, 0xff, 0x6c, 0x2d, 0x0d, 0xff, 0x70, 0x2f, 0x0e, 0xff, 0x72, 0x34, 0x12, 0xff, 0x78, 0x38, 0x16, 0xff, 0x7b, 0x39, 0x19, 0xff, 0x81, 0x40, 0x1d, 0xff, 0x86, 0x45, 0x20, 0xff, 0x8a, 0x4a, 0x24, 0xff, 0x91, 0x4f, 0x25, 0xff, 0x96, 0x53, 0x27, 0xff, 0x99, 0x5b, 0x2c, 0xff, 0x9d, 0x60, 0x31, 0xff, 0xa2, 0x66, 0x33, 0xff, 0xa6, 0x69, 0x37, 0xff, 0xac, 0x71, 0x3d, 0xff, 0xb3, 0x78, 0x40, 0xff, 0xbd, 0x7c, 0x44, 0xff, 0xca, 0x87, 0x4d, 0xff, 0xe2, 0x98, 0x5a, 0xff, 0xf7, 0xab, 0x69, 0xff, 0xf5, 0xc4, 0x7d, 0xff, 0xf7, 0xe9, 0x91, 0xff, 0xf0, 0xf5, 0xad, 0xff, 0xf6, 0xf5, 0xcf, 0xff, 0xf7, 0xf5, 0xec, 0xff, 0xf9, 0xf5, 0xf0, 0xff, 0xf9, 0xf5, 0xf0, 0xff, 0xf9, 0xf5, 0xf0, 0xff, 0xf8, 0xf5, 0xea, 0xff, 0xf4, 0xf5, 0xcb, 0xff, 0xf1, 0xf3, 0xb0, 0xff, 0xf2, 0xf4, 0xa0, 0xff, 0xf9, 0xe7, 0x94, 0xff, 0xf7, 0xd8, 0x8c, 0xff, 0xf9, 0xd6, 0x88, 0xff, 0xf9, 0xd0, 0x81, 0xff, 0xf7, 0xc2, 0x7d, 0xff, 0xf7, 0xb7, 0x79, 0xff, 0xf5, 0xad, 0x6e, 0xff, 0xf7, 0xaa, 0x69, 0xff, 0xf8, 0xab, 0x64, 0xff, 0xf7, 0xa8, 0x61, 0xff, 0xf6, 0xa8, 0x61, 0xff, 0xf7, 0xa8, 0x62, 0xff, 0xf7, 0xa6, 0x64, 0xff, 0xf6, 0xa0, 0x61, 0xff, 0xf8, 0xa3, 0x65, 0xff, 0xf6, 0xa6, 0x68, 0xff, 0xf5, 0xb5, 0x6d, 0xff, 0xf5, 0xb9, 0x70, 0xff, 0xef, 0xb4, 0x64, 0xff, 0xf3, 0xba, 0x6a, 0xff, 0xf1, 0xb9, 0x6b, 0xff, 0xf2, 0xb1, 0x6d, 0xff, 0xed, 0x9f, 0x61, 0xff, 0xf4, 0xa5, 0x62, 0xff, 0xed, 0xa2, 0x60, 0xff, 0xde, 0x99, 0x59, 0xff, 0xdd, 0x99, 0x5a, 0xff, 0xda, 0x96, 0x58, 0xff, 0xd2, 0x92, 0x52, 0xff, 0xd0, 0x94, 0x4f, 0xff, 0xd2, 0x93, 0x4f, 0xff, 0xcf, 0x91, 0x50, 0xff, 0xcf, 0x92, 0x50, 0xff, 0xce, 0x93, 0x51, 0xff, 0xca, 0x92, 0x4e, 0xff, 0xc7, 0x8f, 0x4e, 0xff, 0xc4, 0x8e, 0x4f, 0xff, 0xc3, 0x8d, 0x4f, 0xff, 0xbc, 0x80, 0x4a, 0xff, 0xb8, 0x7b, 0x46, 0xff, 0xb8, 0x7c, 0x49, 0xff, 0xb5, 0x7e, 0x49, 0xff, 0xb3, 0x7b, 0x48, 0xff, 0xb1, 0x75, 0x45, 0xff, 0xae, 0x74, 0x43, 0xff, 0xac, 0x72, 0x42, 0xff, 0xaa, 0x70, 0x40, 0xff, 0xa8, 0x70, 0x42, 0xff, 0xa5, 0x6b, 0x3f, 0xff, 0xa1, 0x66, 0x3a, 0xff, 0x9f, 0x64, 0x38, 0xff, 0x9e, 0x63, 0x37, 0xff, 0x9b, 0x61, 0x35, 0xff, 0x98, 0x5e, 0x33, 0xff, 0x97, 0x5c, 0x33, 0xff, 0x95, 0x5c, 0x33, 0xff, 0x92, 0x59, 0x32, 0xff, 0x8f, 0x53, 0x30, 0xff, 0x8d, 0x51, 0x2d, 0xff, 0x8b, 0x51, 0x2d, 0xff, 0x8a, 0x4f, 0x2b, 0xff, 0x87, 0x4b, 0x29, 0xff, 0x83, 0x49, 0x28, 0xff, 0x81, 0x46, 0x26, 0xff, 0x7b, 0x3f, 0x23, 0xff, 0x76, 0x38, 0x1e, 0xff, 0x73, 0x38, 0x1d, 0xff, 0x6f, 0x35, 0x1a, 0xff, 0x6d, 0x33, 0x17, 0xff, 0x6b, 0x31, 0x17, 0xff, 0x6a, 0x32, 0x16, 0xff, 0x69, 0x30, 0x15, 0xff, 0x6a, 0x2f, 0x15, 0xff, 0x61, 0x29, 0x0d, 0xff, 0x6e, 0x33, 0x19, 0xff, 0x84, 0x46, 0x2a, 0xff, 0x85, 0x48, 0x29, 0xff, 0x81, 0x43, 0x26, 0xff, 0x7e, 0x3f, 0x25, 0xff, 0x7d, 0x3e, 0x25, 0xff, 0x7f, 0x3f, 0x25, 0xff, 0x81, 0x42, 0x26, 0xff, 0x7f, 0x40, 0x26, 0xff, 0x7c, 0x3e, 0x24, 0xff, 0x7e, 0x3f, 0x23, 0xff, 0x7f, 0x40, 0x24, 0xff, 0x80, 0x40, 0x25, 0xff, 0x80, 0x3f, 0x25, 0xff, 0x81, 0x41, 0x24, 0xff, 0x81, 0x43, 0x25, 0xff, 0x83, 0x45, 0x25, 0xff, 0x85, 0x45, 0x25, 0xff, 0x88, 0x48, 0x26, 0xff, 0x89, 0x48, 0x27, 0xff, 0x8d, 0x4a, 0x27, 0xff, 0x8f, 0x4e, 0x27, 0xff, 0x92, 0x51, 0x29, 0xff, 0x97, 0x55, 0x2b, 0xff, 0x9c, 0x5a, 0x2d, 0xff, 0xa1, 0x61, 0x30, 0xff, 0xa3, 0x67, 0x37, 0xff, 0xa6, 0x6f, 0x3e, 0xff, 0xac, 0x76, 0x46, 0xff, 0xb3, 0x7d, 0x4e, 0xff, 0xbb, 0x85, 0x57, 0xff, 0xc7, 0x90, 0x5f, 0xff, 0xdc, 0x9f, 0x68, 0xff, 0xf4, 0xb2, 0x75, 0xff, 0xf9, 0xc0, 0x81, 0xff, 0xf9, 0xdd, 0x92, 0xff, 0xf2, 0xf1, 0xa4, 0xff, 0xf0, 0xf5, 0xb2, 0xff, 0xf1, 0xf5, 0xbb, 0xff, 0xf4, 0xf3, 0xbc, 0xff, 0xf3, 0xf4, 0xbb, 0xff, 0xf0, 0xf3, 0xb3, 0xff, 0xf1, 0xf4, 0xa6, 0xff, 0xf8, 0xe2, 0x98, 0xff, 0xf7, 0xc0, 0x85, 0xff, 0xf9, 0xad, 0x77, 0xff, 0xf7, 0xa1, 0x6b, 0xff, 0xe8, 0x97, 0x60, 0xff, 0xdb, 0x8e, 0x58, 0xff, 0xd7, 0x8b, 0x54, 0xff, 0xd3, 0x88, 0x50, 0xff, 0xd5, 0x8b, 0x53, 0xff, 0xd9, 0x90, 0x56, 0xff, 0xd9, 0x8f, 0x57, 0xff, 0xdb, 0x90, 0x59, 0xff, 0xda, 0x8f, 0x57, 0xff, 0xdf, 0x93, 0x5b, 0xff, 0xdf, 0x95, 0x5e, 0xff, 0xb3, 0x75, 0x43, 0xff, 0xab, 0x6e, 0x3c, 0xff, 0xb1, 0x73, 0x42, 0xff, 0xb9, 0x7e, 0x49, 0xff, 0xbc, 0x80, 0x4b, 0xff, 0xb8, 0x7b, 0x4a, 0xff, 0xb5, 0x77, 0x44, 0xff, 0xa7, 0x69, 0x3d, 0xff, 0x89, 0x4a, 0x2a, 0xff, 0x8a, 0x4c, 0x2a, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x8b, 0x4e, 0x2d, 0xff, 0x8b, 0x4f, 0x2e, 0xff, 0x8d, 0x50, 0x2f, 0xff, 0x8f, 0x50, 0x2f, 0xff, 0x90, 0x53, 0x2f, 0xff, 0x92, 0x53, 0x30, 0xff, 0x90, 0x52, 0x30, 0xff, 0x8c, 0x50, 0x2e, 0xff, 0x8d, 0x51, 0x2d, 0xff, 0x8d, 0x4e, 0x2c, 0xff, 0x8c, 0x4d, 0x2a, 0xff, 0x88, 0x49, 0x28, 0xff, 0x84, 0x45, 0x27, 0xff, 0x83, 0x43, 0x26, 0xff, 0x80, 0x40, 0x24, 0xff, 0x7d, 0x3d, 0x22, 0xff, 0x7d, 0x3d, 0x22, 0xff, 0x7d, 0x3d, 0x22, 0xff, 0x7f, 0x3e, 0x24, 0xff, 0x80, 0x40, 0x25, 0xff, 0x82, 0x43, 0x26, 0xff, 0x84, 0x44, 0x26, 0xff, 0x86, 0x46, 0x28, 0xff, 0x89, 0x4a, 0x29, 0xff, 0x8c, 0x4f, 0x2b, 0xff, 0x8e, 0x4f, 0x2e, 0xff, 0x8b, 0x4a, 0x2b, 0xff, 0x86, 0x48, 0x29, 0xff, 0x81, 0x44, 0x28, 0xff, 0x80, 0x43, 0x27, 0xff, 0x7f, 0x41, 0x27, 0xff, 0x7f, 0x42, 0x27, 0xff, 0x7f, 0x42, 0x27, 0xff, 0x7e, 0x40, 0x27, 0xff, 0x7c, 0x3f, 0x25, 0xff, 0x7a, 0x3a, 0x21, 0xff, + 0x76, 0x35, 0x1a, 0xff, 0x71, 0x32, 0x17, 0xff, 0x6e, 0x2e, 0x16, 0xff, 0x69, 0x2e, 0x15, 0xff, 0x68, 0x2e, 0x11, 0xff, 0x68, 0x2c, 0x0e, 0xff, 0x66, 0x29, 0x0e, 0xff, 0x68, 0x2b, 0x0e, 0xff, 0x65, 0x29, 0x0e, 0xff, 0x65, 0x29, 0x0e, 0xff, 0x66, 0x29, 0x0e, 0xff, 0x69, 0x2a, 0x0f, 0xff, 0x6b, 0x2b, 0x12, 0xff, 0x6d, 0x2d, 0x12, 0xff, 0x6e, 0x2e, 0x15, 0xff, 0x6d, 0x2e, 0x12, 0xff, 0x70, 0x30, 0x14, 0xff, 0x73, 0x33, 0x15, 0xff, 0x74, 0x34, 0x15, 0xff, 0x72, 0x32, 0x15, 0xff, 0x72, 0x33, 0x15, 0xff, 0x63, 0x29, 0x0b, 0xff, 0x61, 0x25, 0x05, 0xff, 0x65, 0x29, 0x09, 0xff, 0x6d, 0x2e, 0x0d, 0xff, 0x6f, 0x30, 0x12, 0xff, 0x74, 0x34, 0x15, 0xff, 0x78, 0x39, 0x17, 0xff, 0x7c, 0x3f, 0x1b, 0xff, 0x83, 0x42, 0x21, 0xff, 0x87, 0x45, 0x23, 0xff, 0x8c, 0x4a, 0x25, 0xff, 0x93, 0x53, 0x27, 0xff, 0x96, 0x57, 0x2a, 0xff, 0x9a, 0x5f, 0x30, 0xff, 0x9f, 0x64, 0x33, 0xff, 0xa3, 0x67, 0x36, 0xff, 0xa7, 0x6c, 0x39, 0xff, 0xad, 0x72, 0x3b, 0xff, 0xb5, 0x79, 0x3f, 0xff, 0xbe, 0x82, 0x47, 0xff, 0xd1, 0x8c, 0x51, 0xff, 0xe8, 0x98, 0x5b, 0xff, 0xf9, 0xaf, 0x6e, 0xff, 0xf8, 0xc6, 0x7d, 0xff, 0xf6, 0xe8, 0x90, 0xff, 0xee, 0xf6, 0xa9, 0xff, 0xf4, 0xf5, 0xc1, 0xff, 0xf7, 0xf5, 0xda, 0xff, 0xf8, 0xf5, 0xe1, 0xff, 0xf6, 0xf5, 0xdc, 0xff, 0xf5, 0xf5, 0xd3, 0xff, 0xf1, 0xf5, 0xba, 0xff, 0xee, 0xf3, 0xaa, 0xff, 0xf0, 0xf2, 0x9c, 0xff, 0xf9, 0xe8, 0x90, 0xff, 0xf9, 0xda, 0x87, 0xff, 0xf9, 0xd3, 0x83, 0xff, 0xf9, 0xcd, 0x81, 0xff, 0xf9, 0xbb, 0x7a, 0xff, 0xf8, 0xb6, 0x76, 0xff, 0xf8, 0xb2, 0x71, 0xff, 0xf6, 0xa8, 0x65, 0xff, 0xf6, 0xab, 0x65, 0xff, 0xf8, 0xa6, 0x62, 0xff, 0xf8, 0xa5, 0x61, 0xff, 0xf7, 0xa5, 0x61, 0xff, 0xf6, 0xa4, 0x62, 0xff, 0xf8, 0xa2, 0x61, 0xff, 0xf7, 0xa3, 0x63, 0xff, 0xf4, 0xab, 0x69, 0xff, 0xf6, 0xb7, 0x6d, 0xff, 0xf5, 0xb4, 0x6d, 0xff, 0xf1, 0xb6, 0x66, 0xff, 0xf1, 0xb6, 0x65, 0xff, 0xf3, 0xb9, 0x6c, 0xff, 0xf4, 0xb3, 0x6b, 0xff, 0xf1, 0xa1, 0x66, 0xff, 0xf5, 0xa4, 0x64, 0xff, 0xf4, 0xa0, 0x61, 0xff, 0xe9, 0x9f, 0x5d, 0xff, 0xe0, 0x9a, 0x58, 0xff, 0xe2, 0x99, 0x5a, 0xff, 0xdc, 0x96, 0x53, 0xff, 0xd1, 0x91, 0x4d, 0xff, 0xd4, 0x91, 0x51, 0xff, 0xd3, 0x96, 0x50, 0xff, 0xcf, 0x91, 0x4f, 0xff, 0xce, 0x92, 0x4e, 0xff, 0xcc, 0x93, 0x4f, 0xff, 0xcb, 0x94, 0x50, 0xff, 0xc8, 0x90, 0x51, 0xff, 0xc3, 0x89, 0x4d, 0xff, 0xbe, 0x82, 0x49, 0xff, 0xbc, 0x80, 0x48, 0xff, 0xba, 0x7f, 0x49, 0xff, 0xb9, 0x7e, 0x49, 0xff, 0xb7, 0x7d, 0x4a, 0xff, 0xb3, 0x78, 0x46, 0xff, 0xaf, 0x76, 0x43, 0xff, 0xad, 0x74, 0x43, 0xff, 0xac, 0x73, 0x43, 0xff, 0xaa, 0x73, 0x42, 0xff, 0xa7, 0x6d, 0x3f, 0xff, 0xa3, 0x68, 0x3c, 0xff, 0xa2, 0x67, 0x3a, 0xff, 0x9e, 0x64, 0x39, 0xff, 0x9d, 0x64, 0x39, 0xff, 0x9c, 0x62, 0x38, 0xff, 0x98, 0x5f, 0x36, 0xff, 0x97, 0x5d, 0x32, 0xff, 0x94, 0x5a, 0x31, 0xff, 0x91, 0x57, 0x31, 0xff, 0x90, 0x55, 0x2e, 0xff, 0x8d, 0x51, 0x2d, 0xff, 0x8b, 0x4f, 0x2c, 0xff, 0x8a, 0x4d, 0x29, 0xff, 0x8a, 0x4e, 0x2a, 0xff, 0x81, 0x45, 0x26, 0xff, 0x79, 0x3b, 0x21, 0xff, 0x79, 0x3b, 0x1f, 0xff, 0x74, 0x39, 0x1c, 0xff, 0x6f, 0x35, 0x19, 0xff, 0x6d, 0x33, 0x18, 0xff, 0x6e, 0x33, 0x18, 0xff, 0x6d, 0x32, 0x18, 0xff, 0x6b, 0x31, 0x18, 0xff, 0x63, 0x2b, 0x0f, 0xff, 0x6d, 0x33, 0x18, 0xff, 0x83, 0x45, 0x28, 0xff, 0x85, 0x47, 0x29, 0xff, 0x80, 0x41, 0x26, 0xff, 0x7d, 0x3e, 0x25, 0xff, 0x7d, 0x3d, 0x25, 0xff, 0x7d, 0x3d, 0x25, 0xff, 0x7d, 0x3d, 0x25, 0xff, 0x7a, 0x3b, 0x23, 0xff, 0x78, 0x3a, 0x22, 0xff, 0x78, 0x3a, 0x21, 0xff, 0x7b, 0x3b, 0x20, 0xff, 0x7b, 0x3b, 0x20, 0xff, 0x7a, 0x3b, 0x20, 0xff, 0x7b, 0x3c, 0x20, 0xff, 0x7b, 0x3d, 0x21, 0xff, 0x7d, 0x3e, 0x22, 0xff, 0x7f, 0x3e, 0x23, 0xff, 0x80, 0x41, 0x24, 0xff, 0x84, 0x44, 0x25, 0xff, 0x86, 0x46, 0x25, 0xff, 0x88, 0x46, 0x26, 0xff, 0x8b, 0x49, 0x27, 0xff, 0x8e, 0x4b, 0x27, 0xff, 0x92, 0x4f, 0x28, 0xff, 0x95, 0x54, 0x29, 0xff, 0x9a, 0x57, 0x29, 0xff, 0x9f, 0x5e, 0x2e, 0xff, 0xa3, 0x67, 0x35, 0xff, 0xa9, 0x70, 0x3c, 0xff, 0xb0, 0x77, 0x43, 0xff, 0xb6, 0x80, 0x4d, 0xff, 0xc0, 0x8d, 0x58, 0xff, 0xd3, 0x9b, 0x62, 0xff, 0xf1, 0xad, 0x70, 0xff, 0xfa, 0xc2, 0x7e, 0xff, 0xf9, 0xe1, 0x8f, 0xff, 0xf0, 0xf1, 0xa4, 0xff, 0xf1, 0xf4, 0xb6, 0xff, 0xf5, 0xf5, 0xce, 0xff, 0xf8, 0xf5, 0xdc, 0xff, 0xf9, 0xf4, 0xe3, 0xff, 0xf7, 0xf5, 0xd3, 0xff, 0xf0, 0xf5, 0xbd, 0xff, 0xf1, 0xf3, 0xaa, 0xff, 0xf7, 0xd0, 0x8e, 0xff, 0xf7, 0xbb, 0x80, 0xff, 0xf8, 0xb1, 0x77, 0xff, 0xf5, 0xa0, 0x69, 0xff, 0xe1, 0x92, 0x5c, 0xff, 0xd3, 0x8a, 0x55, 0xff, 0xcd, 0x87, 0x50, 0xff, 0xcc, 0x86, 0x4e, 0xff, 0xcf, 0x88, 0x4f, 0xff, 0xd4, 0x8b, 0x52, 0xff, 0xd5, 0x89, 0x54, 0xff, 0xd5, 0x89, 0x54, 0xff, 0xd5, 0x8a, 0x54, 0xff, 0xd8, 0x8e, 0x57, 0xff, 0xd9, 0x8d, 0x59, 0xff, 0xb0, 0x70, 0x3d, 0xff, 0xb4, 0x75, 0x41, 0xff, 0xb8, 0x79, 0x47, 0xff, 0xbb, 0x7f, 0x4a, 0xff, 0xb6, 0x77, 0x48, 0xff, 0xb2, 0x71, 0x44, 0xff, 0x96, 0x57, 0x32, 0xff, 0x89, 0x49, 0x2a, 0xff, 0x8a, 0x4c, 0x2a, 0xff, 0x89, 0x4a, 0x29, 0xff, 0x8a, 0x4c, 0x2b, 0xff, 0x89, 0x4b, 0x2c, 0xff, 0x89, 0x4c, 0x2c, 0xff, 0x8b, 0x4d, 0x2c, 0xff, 0x8b, 0x4e, 0x2a, 0xff, 0x8c, 0x4e, 0x2a, 0xff, 0x88, 0x49, 0x29, 0xff, 0x86, 0x47, 0x28, 0xff, 0x88, 0x49, 0x28, 0xff, 0x87, 0x49, 0x27, 0xff, 0x85, 0x45, 0x27, 0xff, 0x83, 0x44, 0x26, 0xff, 0x81, 0x41, 0x25, 0xff, 0x7e, 0x40, 0x24, 0xff, 0x7c, 0x3d, 0x22, 0xff, 0x7c, 0x3d, 0x20, 0xff, 0x7c, 0x3d, 0x21, 0xff, 0x7c, 0x3d, 0x20, 0xff, 0x7e, 0x3d, 0x20, 0xff, 0x7e, 0x3e, 0x23, 0xff, 0x80, 0x3f, 0x25, 0xff, 0x81, 0x41, 0x25, 0xff, 0x85, 0x45, 0x26, 0xff, 0x83, 0x42, 0x26, 0xff, 0x81, 0x41, 0x25, 0xff, 0x84, 0x43, 0x25, 0xff, 0x85, 0x44, 0x26, 0xff, 0x86, 0x47, 0x28, 0xff, 0x7f, 0x42, 0x27, 0xff, 0x7d, 0x42, 0x27, 0xff, 0x7f, 0x43, 0x27, 0xff, 0x7e, 0x45, 0x28, 0xff, 0x7f, 0x42, 0x27, 0xff, 0x7d, 0x41, 0x26, 0xff, 0x7b, 0x3a, 0x23, 0xff, 0x77, 0x39, 0x20, 0xff, + 0x71, 0x33, 0x19, 0xff, 0x6d, 0x30, 0x16, 0xff, 0x6b, 0x2c, 0x14, 0xff, 0x69, 0x2c, 0x15, 0xff, 0x67, 0x2c, 0x11, 0xff, 0x66, 0x29, 0x0e, 0xff, 0x64, 0x29, 0x0e, 0xff, 0x64, 0x29, 0x0d, 0xff, 0x63, 0x28, 0x0c, 0xff, 0x62, 0x28, 0x0b, 0xff, 0x63, 0x28, 0x0d, 0xff, 0x65, 0x2a, 0x0f, 0xff, 0x69, 0x2d, 0x10, 0xff, 0x6d, 0x30, 0x13, 0xff, 0x6f, 0x2e, 0x15, 0xff, 0x70, 0x31, 0x15, 0xff, 0x6e, 0x2f, 0x12, 0xff, 0x6f, 0x2f, 0x14, 0xff, 0x75, 0x34, 0x15, 0xff, 0x78, 0x38, 0x19, 0xff, 0x78, 0x37, 0x18, 0xff, 0x78, 0x37, 0x19, 0xff, 0x63, 0x28, 0x09, 0xff, 0x61, 0x27, 0x07, 0xff, 0x67, 0x2b, 0x0a, 0xff, 0x6f, 0x30, 0x0f, 0xff, 0x71, 0x33, 0x15, 0xff, 0x76, 0x36, 0x17, 0xff, 0x79, 0x3a, 0x17, 0xff, 0x7d, 0x3e, 0x1e, 0xff, 0x84, 0x42, 0x22, 0xff, 0x8a, 0x49, 0x25, 0xff, 0x90, 0x4f, 0x27, 0xff, 0x95, 0x56, 0x29, 0xff, 0x97, 0x5c, 0x2d, 0xff, 0x9a, 0x61, 0x32, 0xff, 0x9e, 0x63, 0x37, 0xff, 0xa2, 0x68, 0x39, 0xff, 0xa9, 0x6e, 0x3b, 0xff, 0xae, 0x72, 0x3a, 0xff, 0xb6, 0x79, 0x3f, 0xff, 0xc1, 0x81, 0x49, 0xff, 0xd3, 0x8d, 0x53, 0xff, 0xe9, 0x9a, 0x5e, 0xff, 0xf7, 0xae, 0x6e, 0xff, 0xf8, 0xc4, 0x7d, 0xff, 0xf7, 0xe3, 0x8c, 0xff, 0xec, 0xf1, 0xa0, 0xff, 0xef, 0xf5, 0xaf, 0xff, 0xf1, 0xf3, 0xb8, 0xff, 0xf1, 0xf3, 0xb8, 0xff, 0xf0, 0xf5, 0xb4, 0xff, 0xed, 0xf4, 0xac, 0xff, 0xea, 0xf4, 0x9d, 0xff, 0xef, 0xf2, 0x94, 0xff, 0xf9, 0xe4, 0x8a, 0xff, 0xf7, 0xd0, 0x82, 0xff, 0xf9, 0xcd, 0x7e, 0xff, 0xf9, 0xc4, 0x7c, 0xff, 0xf8, 0xbb, 0x78, 0xff, 0xf8, 0xb3, 0x72, 0xff, 0xf8, 0xb0, 0x72, 0xff, 0xf6, 0xa7, 0x64, 0xff, 0xf6, 0xa6, 0x63, 0xff, 0xf6, 0xa7, 0x62, 0xff, 0xf6, 0xa5, 0x61, 0xff, 0xf6, 0xa6, 0x62, 0xff, 0xf8, 0xa3, 0x62, 0xff, 0xf8, 0xa1, 0x61, 0xff, 0xf7, 0xa3, 0x64, 0xff, 0xf6, 0xb0, 0x67, 0xff, 0xf6, 0xb3, 0x6b, 0xff, 0xf4, 0xb3, 0x6e, 0xff, 0xf3, 0xb3, 0x6b, 0xff, 0xf4, 0xb6, 0x66, 0xff, 0xf6, 0xba, 0x68, 0xff, 0xf2, 0xae, 0x6b, 0xff, 0xf3, 0xa3, 0x69, 0xff, 0xf9, 0xab, 0x6a, 0xff, 0xf7, 0xa4, 0x60, 0xff, 0xee, 0xa1, 0x5e, 0xff, 0xe4, 0x9b, 0x5b, 0xff, 0xe3, 0x99, 0x58, 0xff, 0xde, 0x96, 0x55, 0xff, 0xd4, 0x95, 0x50, 0xff, 0xd4, 0x95, 0x4c, 0xff, 0xd3, 0x90, 0x4f, 0xff, 0xd3, 0x94, 0x50, 0xff, 0xd0, 0x91, 0x4d, 0xff, 0xd2, 0x93, 0x52, 0xff, 0xcf, 0x90, 0x53, 0xff, 0xcd, 0x91, 0x52, 0xff, 0xc7, 0x8c, 0x51, 0xff, 0xc0, 0x81, 0x4a, 0xff, 0xc0, 0x83, 0x4a, 0xff, 0xbc, 0x81, 0x49, 0xff, 0xbc, 0x80, 0x4a, 0xff, 0xba, 0x80, 0x4b, 0xff, 0xb7, 0x7b, 0x47, 0xff, 0xb4, 0x77, 0x46, 0xff, 0xb2, 0x76, 0x45, 0xff, 0xaf, 0x73, 0x41, 0xff, 0xad, 0x73, 0x43, 0xff, 0xaa, 0x71, 0x40, 0xff, 0xa6, 0x6b, 0x3c, 0xff, 0xa3, 0x67, 0x3b, 0xff, 0xa2, 0x67, 0x3b, 0xff, 0xa0, 0x64, 0x39, 0xff, 0x9d, 0x61, 0x38, 0xff, 0x9b, 0x60, 0x36, 0xff, 0x99, 0x5d, 0x36, 0xff, 0x96, 0x5a, 0x33, 0xff, 0x93, 0x59, 0x33, 0xff, 0x92, 0x56, 0x31, 0xff, 0x90, 0x53, 0x2f, 0xff, 0x8d, 0x52, 0x2e, 0xff, 0x8b, 0x52, 0x2d, 0xff, 0x86, 0x4b, 0x28, 0xff, 0x7e, 0x41, 0x24, 0xff, 0x7b, 0x3e, 0x23, 0xff, 0x79, 0x3b, 0x22, 0xff, 0x77, 0x39, 0x1e, 0xff, 0x72, 0x37, 0x1a, 0xff, 0x6e, 0x35, 0x18, 0xff, 0x6c, 0x33, 0x17, 0xff, 0x6c, 0x33, 0x18, 0xff, 0x68, 0x2e, 0x14, 0xff, 0x6d, 0x32, 0x17, 0xff, 0x80, 0x43, 0x26, 0xff, 0x87, 0x48, 0x29, 0xff, 0x81, 0x43, 0x27, 0xff, 0x7f, 0x40, 0x26, 0xff, 0x7d, 0x3f, 0x25, 0xff, 0x7b, 0x3d, 0x24, 0xff, 0x7c, 0x3e, 0x25, 0xff, 0x79, 0x3c, 0x23, 0xff, 0x76, 0x39, 0x20, 0xff, 0x76, 0x38, 0x1e, 0xff, 0x77, 0x37, 0x1d, 0xff, 0x77, 0x38, 0x1e, 0xff, 0x76, 0x37, 0x1d, 0xff, 0x77, 0x38, 0x1c, 0xff, 0x77, 0x39, 0x1f, 0xff, 0x78, 0x39, 0x1d, 0xff, 0x79, 0x3a, 0x1e, 0xff, 0x7a, 0x3c, 0x21, 0xff, 0x7d, 0x3d, 0x21, 0xff, 0x7f, 0x3e, 0x22, 0xff, 0x80, 0x3f, 0x23, 0xff, 0x82, 0x43, 0x23, 0xff, 0x85, 0x45, 0x24, 0xff, 0x88, 0x47, 0x25, 0xff, 0x8a, 0x4a, 0x25, 0xff, 0x8e, 0x4e, 0x26, 0xff, 0x93, 0x51, 0x27, 0xff, 0x97, 0x55, 0x28, 0xff, 0x9e, 0x5c, 0x2b, 0xff, 0xa3, 0x63, 0x31, 0xff, 0xa9, 0x6d, 0x3a, 0xff, 0xb1, 0x78, 0x44, 0xff, 0xb9, 0x84, 0x4f, 0xff, 0xc7, 0x92, 0x59, 0xff, 0xe1, 0xa3, 0x65, 0xff, 0xf5, 0xb7, 0x75, 0xff, 0xfa, 0xd4, 0x87, 0xff, 0xf3, 0xef, 0x9a, 0xff, 0xee, 0xf6, 0xab, 0xff, 0xf3, 0xf4, 0xc2, 0xff, 0xf8, 0xf5, 0xe7, 0xff, 0xf9, 0xf5, 0xf2, 0xff, 0xf8, 0xf5, 0xe9, 0xff, 0xf4, 0xf5, 0xd1, 0xff, 0xf0, 0xf6, 0xb9, 0xff, 0xf7, 0xe6, 0x9d, 0xff, 0xf9, 0xc8, 0x88, 0xff, 0xf8, 0xb2, 0x77, 0xff, 0xf1, 0xa1, 0x6b, 0xff, 0xe5, 0x96, 0x60, 0xff, 0xd5, 0x8c, 0x56, 0xff, 0xc8, 0x84, 0x4d, 0xff, 0xc8, 0x83, 0x4a, 0xff, 0xc8, 0x82, 0x4b, 0xff, 0xc8, 0x82, 0x4d, 0xff, 0xcd, 0x85, 0x4f, 0xff, 0xcd, 0x85, 0x51, 0xff, 0xcd, 0x86, 0x51, 0xff, 0xcd, 0x86, 0x52, 0xff, 0xd3, 0x88, 0x55, 0xff, 0xdc, 0x8d, 0x5a, 0xff, 0xba, 0x77, 0x44, 0xff, 0xb3, 0x73, 0x43, 0xff, 0xb8, 0x79, 0x48, 0xff, 0xb4, 0x75, 0x44, 0xff, 0xad, 0x6d, 0x3f, 0xff, 0x86, 0x48, 0x2a, 0xff, 0x87, 0x48, 0x29, 0xff, 0x89, 0x4b, 0x29, 0xff, 0x89, 0x4a, 0x29, 0xff, 0x87, 0x4a, 0x29, 0xff, 0x86, 0x4a, 0x2a, 0xff, 0x88, 0x48, 0x2a, 0xff, 0x88, 0x4a, 0x29, 0xff, 0x89, 0x4b, 0x28, 0xff, 0x86, 0x47, 0x27, 0xff, 0x84, 0x43, 0x26, 0xff, 0x82, 0x43, 0x25, 0xff, 0x82, 0x43, 0x25, 0xff, 0x81, 0x40, 0x25, 0xff, 0x80, 0x40, 0x25, 0xff, 0x7e, 0x3f, 0x23, 0xff, 0x7c, 0x3d, 0x22, 0xff, 0x7b, 0x39, 0x20, 0xff, 0x7a, 0x3b, 0x20, 0xff, 0x7a, 0x3a, 0x20, 0xff, 0x79, 0x3a, 0x1e, 0xff, 0x79, 0x39, 0x1c, 0xff, 0x7a, 0x39, 0x1d, 0xff, 0x7a, 0x3b, 0x1f, 0xff, 0x7c, 0x3c, 0x21, 0xff, 0x7e, 0x3f, 0x23, 0xff, 0x7c, 0x3c, 0x21, 0xff, 0x7e, 0x3d, 0x23, 0xff, 0x82, 0x40, 0x25, 0xff, 0x81, 0x40, 0x25, 0xff, 0x82, 0x43, 0x25, 0xff, 0x82, 0x45, 0x27, 0xff, 0x82, 0x45, 0x28, 0xff, 0x80, 0x45, 0x28, 0xff, 0x80, 0x41, 0x28, 0xff, 0x7e, 0x44, 0x28, 0xff, 0x7e, 0x43, 0x28, 0xff, 0x7d, 0x40, 0x25, 0xff, 0x79, 0x3a, 0x22, 0xff, 0x75, 0x36, 0x1d, 0xff, + 0x6e, 0x31, 0x17, 0xff, 0x6c, 0x2f, 0x15, 0xff, 0x69, 0x2e, 0x13, 0xff, 0x68, 0x2a, 0x12, 0xff, 0x65, 0x2a, 0x0f, 0xff, 0x62, 0x29, 0x0a, 0xff, 0x62, 0x27, 0x0a, 0xff, 0x61, 0x26, 0x0b, 0xff, 0x5f, 0x27, 0x0b, 0xff, 0x61, 0x28, 0x0b, 0xff, 0x65, 0x28, 0x0c, 0xff, 0x69, 0x2c, 0x11, 0xff, 0x6a, 0x2b, 0x10, 0xff, 0x6b, 0x2b, 0x12, 0xff, 0x6d, 0x2d, 0x12, 0xff, 0x70, 0x31, 0x15, 0xff, 0x75, 0x34, 0x17, 0xff, 0x72, 0x31, 0x14, 0xff, 0x70, 0x31, 0x14, 0xff, 0x73, 0x33, 0x14, 0xff, 0x78, 0x36, 0x17, 0xff, 0x7a, 0x37, 0x19, 0xff, 0x7e, 0x3c, 0x1d, 0xff, 0x70, 0x30, 0x13, 0xff, 0x6c, 0x2f, 0x0e, 0xff, 0x68, 0x2a, 0x07, 0xff, 0x6f, 0x31, 0x10, 0xff, 0x74, 0x35, 0x15, 0xff, 0x77, 0x38, 0x16, 0xff, 0x7b, 0x3b, 0x1a, 0xff, 0x80, 0x3f, 0x20, 0xff, 0x85, 0x44, 0x23, 0xff, 0x8c, 0x4b, 0x26, 0xff, 0x93, 0x53, 0x29, 0xff, 0x94, 0x5a, 0x2c, 0xff, 0x99, 0x61, 0x32, 0xff, 0x9d, 0x64, 0x37, 0xff, 0xa4, 0x68, 0x3d, 0xff, 0xaa, 0x6e, 0x40, 0xff, 0xb0, 0x74, 0x40, 0xff, 0xb7, 0x78, 0x43, 0xff, 0xc0, 0x80, 0x47, 0xff, 0xcd, 0x85, 0x4d, 0xff, 0xe2, 0x93, 0x57, 0xff, 0xf3, 0xa1, 0x64, 0xff, 0xf7, 0xb2, 0x70, 0xff, 0xf6, 0xc0, 0x7c, 0xff, 0xf5, 0xdc, 0x8b, 0xff, 0xed, 0xf7, 0x9d, 0xff, 0xea, 0xf3, 0xa2, 0xff, 0xea, 0xf1, 0xa1, 0xff, 0xea, 0xf0, 0x9e, 0xff, 0xec, 0xf2, 0x9b, 0xff, 0xf2, 0xf2, 0x93, 0xff, 0xf7, 0xe7, 0x8b, 0xff, 0xf8, 0xd5, 0x83, 0xff, 0xf7, 0xc6, 0x7d, 0xff, 0xf8, 0xc3, 0x7c, 0xff, 0xf7, 0xbe, 0x7a, 0xff, 0xf7, 0xb2, 0x75, 0xff, 0xf8, 0xb0, 0x70, 0xff, 0xf8, 0xad, 0x6e, 0xff, 0xf6, 0xa7, 0x67, 0xff, 0xf7, 0xa5, 0x60, 0xff, 0xf7, 0xa6, 0x61, 0xff, 0xf8, 0xa6, 0x62, 0xff, 0xf7, 0xa5, 0x61, 0xff, 0xf6, 0xa3, 0x61, 0xff, 0xf8, 0x9f, 0x61, 0xff, 0xf7, 0xa5, 0x65, 0xff, 0xf7, 0xb4, 0x69, 0xff, 0xf7, 0xb5, 0x69, 0xff, 0xf6, 0xb3, 0x6b, 0xff, 0xf5, 0xb4, 0x6d, 0xff, 0xf6, 0xb3, 0x67, 0xff, 0xf2, 0xb3, 0x67, 0xff, 0xee, 0xae, 0x66, 0xff, 0xf1, 0xa5, 0x68, 0xff, 0xf8, 0xae, 0x6b, 0xff, 0xf5, 0xa4, 0x62, 0xff, 0xef, 0xa3, 0x60, 0xff, 0xe7, 0x9b, 0x5a, 0xff, 0xe7, 0x97, 0x57, 0xff, 0xe3, 0x99, 0x56, 0xff, 0xd8, 0x95, 0x51, 0xff, 0xd4, 0x91, 0x4c, 0xff, 0xd5, 0x92, 0x4e, 0xff, 0xd6, 0x94, 0x4f, 0xff, 0xd4, 0x94, 0x4e, 0xff, 0xd0, 0x93, 0x4e, 0xff, 0xd0, 0x93, 0x50, 0xff, 0xd0, 0x93, 0x53, 0xff, 0xca, 0x90, 0x50, 0xff, 0xc3, 0x85, 0x4c, 0xff, 0xc3, 0x82, 0x4a, 0xff, 0xc2, 0x83, 0x4b, 0xff, 0xc0, 0x83, 0x4c, 0xff, 0xbd, 0x80, 0x4a, 0xff, 0xba, 0x7f, 0x4a, 0xff, 0xb6, 0x7d, 0x47, 0xff, 0xb4, 0x7a, 0x47, 0xff, 0xb2, 0x77, 0x46, 0xff, 0xaf, 0x74, 0x45, 0xff, 0xac, 0x70, 0x41, 0xff, 0xa9, 0x6d, 0x3e, 0xff, 0xa7, 0x6c, 0x3c, 0xff, 0xa3, 0x68, 0x3c, 0xff, 0xa2, 0x67, 0x3b, 0xff, 0xa0, 0x64, 0x39, 0xff, 0x9c, 0x62, 0x39, 0xff, 0x9b, 0x61, 0x37, 0xff, 0x98, 0x5c, 0x34, 0xff, 0x96, 0x5a, 0x34, 0xff, 0x93, 0x59, 0x32, 0xff, 0x92, 0x56, 0x2f, 0xff, 0x90, 0x54, 0x2e, 0xff, 0x8d, 0x50, 0x2d, 0xff, 0x85, 0x49, 0x29, 0xff, 0x7f, 0x42, 0x24, 0xff, 0x7d, 0x41, 0x23, 0xff, 0x7b, 0x3e, 0x21, 0xff, 0x78, 0x39, 0x1e, 0xff, 0x74, 0x37, 0x1c, 0xff, 0x71, 0x36, 0x1b, 0xff, 0x6f, 0x35, 0x18, 0xff, 0x6c, 0x33, 0x17, 0xff, 0x6b, 0x30, 0x16, 0xff, 0x7c, 0x3f, 0x22, 0xff, 0x89, 0x4b, 0x2b, 0xff, 0x85, 0x47, 0x27, 0xff, 0x81, 0x42, 0x26, 0xff, 0x7f, 0x40, 0x25, 0xff, 0x7d, 0x3e, 0x25, 0xff, 0x7c, 0x3d, 0x25, 0xff, 0x79, 0x3a, 0x22, 0xff, 0x75, 0x36, 0x1f, 0xff, 0x73, 0x35, 0x1c, 0xff, 0x73, 0x35, 0x1a, 0xff, 0x73, 0x35, 0x1a, 0xff, 0x72, 0x33, 0x19, 0xff, 0x71, 0x33, 0x19, 0xff, 0x73, 0x34, 0x18, 0xff, 0x74, 0x34, 0x19, 0xff, 0x76, 0x36, 0x1a, 0xff, 0x78, 0x37, 0x1b, 0xff, 0x78, 0x38, 0x1c, 0xff, 0x79, 0x39, 0x1d, 0xff, 0x7a, 0x3b, 0x1f, 0xff, 0x7c, 0x3c, 0x21, 0xff, 0x7d, 0x3e, 0x21, 0xff, 0x80, 0x40, 0x22, 0xff, 0x82, 0x42, 0x22, 0xff, 0x85, 0x44, 0x23, 0xff, 0x88, 0x47, 0x23, 0xff, 0x8b, 0x49, 0x24, 0xff, 0x91, 0x4d, 0x25, 0xff, 0x95, 0x52, 0x26, 0xff, 0x9b, 0x58, 0x2a, 0xff, 0xa2, 0x61, 0x2f, 0xff, 0xa8, 0x6a, 0x38, 0xff, 0xb3, 0x75, 0x43, 0xff, 0xbe, 0x84, 0x4e, 0xff, 0xd0, 0x93, 0x59, 0xff, 0xec, 0xa3, 0x67, 0xff, 0xf8, 0xb9, 0x78, 0xff, 0xf8, 0xda, 0x8b, 0xff, 0xf1, 0xf2, 0x9b, 0xff, 0xf0, 0xf5, 0xb3, 0xff, 0xf6, 0xf4, 0xd6, 0xff, 0xf8, 0xf5, 0xe8, 0xff, 0xf8, 0xf5, 0xe8, 0xff, 0xf7, 0xf5, 0xd9, 0xff, 0xf1, 0xf6, 0xc0, 0xff, 0xf6, 0xf1, 0xa3, 0xff, 0xf9, 0xd5, 0x91, 0xff, 0xf9, 0xbc, 0x80, 0xff, 0xf8, 0xaa, 0x72, 0xff, 0xe3, 0x96, 0x61, 0xff, 0xcd, 0x8a, 0x54, 0xff, 0xc1, 0x81, 0x4b, 0xff, 0xbd, 0x7c, 0x45, 0xff, 0xbd, 0x7a, 0x44, 0xff, 0xbe, 0x7c, 0x46, 0xff, 0xc2, 0x7d, 0x48, 0xff, 0xc1, 0x7d, 0x49, 0xff, 0xc1, 0x7b, 0x49, 0xff, 0xc2, 0x7f, 0x4b, 0xff, 0xcb, 0x83, 0x51, 0xff, 0xdd, 0x8d, 0x5a, 0xff, 0xcd, 0x83, 0x50, 0xff, 0xb3, 0x74, 0x3f, 0xff, 0xb4, 0x74, 0x40, 0xff, 0xb4, 0x75, 0x3f, 0xff, 0x9b, 0x5b, 0x32, 0xff, 0x89, 0x48, 0x2a, 0xff, 0x87, 0x4a, 0x2a, 0xff, 0x88, 0x49, 0x28, 0xff, 0x87, 0x49, 0x28, 0xff, 0x86, 0x47, 0x29, 0xff, 0x87, 0x46, 0x28, 0xff, 0x87, 0x46, 0x27, 0xff, 0x87, 0x47, 0x27, 0xff, 0x85, 0x45, 0x25, 0xff, 0x81, 0x42, 0x23, 0xff, 0x7f, 0x3d, 0x23, 0xff, 0x7e, 0x3e, 0x23, 0xff, 0x7d, 0x3e, 0x21, 0xff, 0x7b, 0x3c, 0x21, 0xff, 0x7b, 0x3a, 0x1f, 0xff, 0x7a, 0x3a, 0x1e, 0xff, 0x77, 0x38, 0x1e, 0xff, 0x78, 0x39, 0x1d, 0xff, 0x79, 0x38, 0x1f, 0xff, 0x79, 0x38, 0x1c, 0xff, 0x77, 0x36, 0x1b, 0xff, 0x77, 0x38, 0x1a, 0xff, 0x77, 0x36, 0x1a, 0xff, 0x77, 0x38, 0x1c, 0xff, 0x77, 0x38, 0x1e, 0xff, 0x79, 0x39, 0x20, 0xff, 0x7c, 0x3b, 0x21, 0xff, 0x7d, 0x3c, 0x22, 0xff, 0x7f, 0x3c, 0x22, 0xff, 0x7e, 0x3c, 0x24, 0xff, 0x81, 0x41, 0x26, 0xff, 0x83, 0x45, 0x28, 0xff, 0x83, 0x45, 0x29, 0xff, 0x80, 0x45, 0x27, 0xff, 0x7d, 0x42, 0x28, 0xff, 0x7d, 0x42, 0x28, 0xff, 0x7d, 0x42, 0x27, 0xff, 0x7c, 0x3d, 0x25, 0xff, 0x77, 0x39, 0x21, 0xff, 0x73, 0x35, 0x1a, 0xff, + 0x6e, 0x32, 0x16, 0xff, 0x6a, 0x2e, 0x15, 0xff, 0x67, 0x2c, 0x13, 0xff, 0x67, 0x29, 0x12, 0xff, 0x66, 0x2a, 0x0d, 0xff, 0x62, 0x28, 0x0a, 0xff, 0x61, 0x28, 0x0b, 0xff, 0x61, 0x26, 0x0b, 0xff, 0x64, 0x27, 0x0c, 0xff, 0x66, 0x2a, 0x0e, 0xff, 0x67, 0x28, 0x0e, 0xff, 0x64, 0x29, 0x0e, 0xff, 0x66, 0x28, 0x0d, 0xff, 0x68, 0x29, 0x0e, 0xff, 0x69, 0x29, 0x0f, 0xff, 0x6d, 0x2d, 0x12, 0xff, 0x6f, 0x2f, 0x13, 0xff, 0x75, 0x33, 0x17, 0xff, 0x79, 0x36, 0x19, 0xff, 0x73, 0x32, 0x16, 0xff, 0x74, 0x32, 0x16, 0xff, 0x78, 0x36, 0x17, 0xff, 0x7c, 0x3a, 0x1b, 0xff, 0x7d, 0x3c, 0x1f, 0xff, 0x7a, 0x37, 0x17, 0xff, 0x7a, 0x38, 0x1a, 0xff, 0x70, 0x30, 0x0f, 0xff, 0x6e, 0x31, 0x10, 0xff, 0x75, 0x36, 0x15, 0xff, 0x79, 0x3b, 0x16, 0xff, 0x7c, 0x3e, 0x1c, 0xff, 0x81, 0x3f, 0x21, 0xff, 0x88, 0x46, 0x25, 0xff, 0x90, 0x50, 0x29, 0xff, 0x9a, 0x5b, 0x2f, 0xff, 0x9d, 0x62, 0x34, 0xff, 0xa1, 0x65, 0x3c, 0xff, 0xa6, 0x69, 0x42, 0xff, 0xac, 0x70, 0x45, 0xff, 0xb2, 0x75, 0x47, 0xff, 0xb9, 0x7c, 0x48, 0xff, 0xbf, 0x80, 0x47, 0xff, 0xc8, 0x81, 0x4a, 0xff, 0xdb, 0x8d, 0x54, 0xff, 0xef, 0x9b, 0x5d, 0xff, 0xf9, 0xa8, 0x6a, 0xff, 0xf6, 0xae, 0x70, 0xff, 0xf8, 0xc5, 0x7d, 0xff, 0xf6, 0xe8, 0x8d, 0xff, 0xf4, 0xeb, 0x93, 0xff, 0xf5, 0xf2, 0x95, 0xff, 0xec, 0xf5, 0x99, 0xff, 0xef, 0xf0, 0x93, 0xff, 0xf7, 0xe2, 0x8a, 0xff, 0xf7, 0xd0, 0x80, 0xff, 0xf6, 0xc2, 0x7b, 0xff, 0xf6, 0xbd, 0x7a, 0xff, 0xf7, 0xbd, 0x79, 0xff, 0xf8, 0xb8, 0x76, 0xff, 0xf9, 0xb0, 0x70, 0xff, 0xf8, 0xa9, 0x6d, 0xff, 0xf7, 0xaa, 0x6c, 0xff, 0xf7, 0xa9, 0x6a, 0xff, 0xf8, 0xa6, 0x61, 0xff, 0xf8, 0xa4, 0x63, 0xff, 0xf6, 0xa5, 0x61, 0xff, 0xf8, 0xa5, 0x61, 0xff, 0xf9, 0xa5, 0x62, 0xff, 0xf7, 0x9e, 0x60, 0xff, 0xf3, 0xa8, 0x62, 0xff, 0xf6, 0xb3, 0x66, 0xff, 0xf6, 0xb0, 0x66, 0xff, 0xf7, 0xb2, 0x69, 0xff, 0xf6, 0xae, 0x6b, 0xff, 0xf5, 0xb2, 0x68, 0xff, 0xf1, 0xb6, 0x64, 0xff, 0xf0, 0xae, 0x64, 0xff, 0xf0, 0xa5, 0x67, 0xff, 0xf8, 0xae, 0x6d, 0xff, 0xf7, 0xa6, 0x62, 0xff, 0xf4, 0xa3, 0x61, 0xff, 0xed, 0x9e, 0x5c, 0xff, 0xe9, 0x98, 0x55, 0xff, 0xe5, 0x98, 0x56, 0xff, 0xdc, 0x95, 0x50, 0xff, 0xdc, 0x97, 0x51, 0xff, 0xda, 0x96, 0x51, 0xff, 0xd6, 0x94, 0x4e, 0xff, 0xd6, 0x94, 0x4f, 0xff, 0xd7, 0x99, 0x52, 0xff, 0xd5, 0x98, 0x50, 0xff, 0xd2, 0x94, 0x51, 0xff, 0xcf, 0x91, 0x51, 0xff, 0xc6, 0x88, 0x4d, 0xff, 0xc6, 0x86, 0x4d, 0xff, 0xc5, 0x87, 0x4f, 0xff, 0xc2, 0x86, 0x4d, 0xff, 0xc0, 0x82, 0x4b, 0xff, 0xbe, 0x80, 0x4b, 0xff, 0xb8, 0x7f, 0x49, 0xff, 0xb6, 0x7d, 0x49, 0xff, 0xb5, 0x7b, 0x46, 0xff, 0xb2, 0x78, 0x45, 0xff, 0xaf, 0x74, 0x45, 0xff, 0xab, 0x71, 0x40, 0xff, 0xa8, 0x6e, 0x3f, 0xff, 0xa7, 0x6a, 0x3f, 0xff, 0xa5, 0x68, 0x3d, 0xff, 0xa3, 0x68, 0x3c, 0xff, 0xa0, 0x67, 0x3b, 0xff, 0x9d, 0x63, 0x38, 0xff, 0x9a, 0x5f, 0x38, 0xff, 0x99, 0x5d, 0x35, 0xff, 0x96, 0x5a, 0x32, 0xff, 0x94, 0x59, 0x31, 0xff, 0x91, 0x55, 0x2f, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x85, 0x46, 0x28, 0xff, 0x82, 0x43, 0x25, 0xff, 0x80, 0x42, 0x23, 0xff, 0x7b, 0x3e, 0x23, 0xff, 0x78, 0x3b, 0x21, 0xff, 0x77, 0x3a, 0x1e, 0xff, 0x74, 0x37, 0x1c, 0xff, 0x72, 0x36, 0x1c, 0xff, 0x68, 0x2e, 0x12, 0xff, 0x7a, 0x3f, 0x22, 0xff, 0x8e, 0x50, 0x2e, 0xff, 0x88, 0x48, 0x28, 0xff, 0x84, 0x44, 0x27, 0xff, 0x83, 0x43, 0x27, 0xff, 0x7f, 0x40, 0x26, 0xff, 0x7b, 0x3e, 0x24, 0xff, 0x79, 0x3c, 0x24, 0xff, 0x76, 0x39, 0x21, 0xff, 0x73, 0x36, 0x1c, 0xff, 0x71, 0x34, 0x1a, 0xff, 0x6e, 0x33, 0x18, 0xff, 0x6d, 0x31, 0x16, 0xff, 0x6d, 0x30, 0x16, 0xff, 0x6d, 0x30, 0x16, 0xff, 0x6e, 0x32, 0x15, 0xff, 0x6f, 0x33, 0x16, 0xff, 0x71, 0x34, 0x18, 0xff, 0x73, 0x34, 0x18, 0xff, 0x74, 0x34, 0x1a, 0xff, 0x75, 0x37, 0x1b, 0xff, 0x78, 0x38, 0x1b, 0xff, 0x79, 0x39, 0x1c, 0xff, 0x79, 0x39, 0x1d, 0xff, 0x7c, 0x3b, 0x1e, 0xff, 0x7e, 0x3f, 0x1e, 0xff, 0x80, 0x41, 0x1f, 0xff, 0x83, 0x41, 0x20, 0xff, 0x85, 0x43, 0x21, 0xff, 0x89, 0x47, 0x21, 0xff, 0x8e, 0x4a, 0x22, 0xff, 0x94, 0x4f, 0x26, 0xff, 0x9b, 0x57, 0x2b, 0xff, 0xa1, 0x60, 0x2f, 0xff, 0xa8, 0x68, 0x38, 0xff, 0xb3, 0x74, 0x44, 0xff, 0xbf, 0x83, 0x4c, 0xff, 0xd4, 0x90, 0x56, 0xff, 0xed, 0xa3, 0x66, 0xff, 0xf6, 0xb7, 0x78, 0xff, 0xf6, 0xd4, 0x88, 0xff, 0xf3, 0xed, 0xa4, 0xff, 0xf3, 0xf5, 0xba, 0xff, 0xf3, 0xf5, 0xc7, 0xff, 0xf5, 0xf5, 0xcc, 0xff, 0xf6, 0xf4, 0xc9, 0xff, 0xf2, 0xf4, 0xbb, 0xff, 0xf7, 0xf1, 0xa5, 0xff, 0xf8, 0xd7, 0x93, 0xff, 0xf9, 0xbf, 0x83, 0xff, 0xf9, 0xad, 0x73, 0xff, 0xe8, 0x9c, 0x63, 0xff, 0xd0, 0x8b, 0x57, 0xff, 0xc4, 0x81, 0x4e, 0xff, 0xbb, 0x7b, 0x45, 0xff, 0xba, 0x77, 0x43, 0xff, 0xba, 0x76, 0x42, 0xff, 0xbb, 0x7a, 0x44, 0xff, 0xba, 0x75, 0x45, 0xff, 0xb8, 0x72, 0x45, 0xff, 0xc1, 0x7a, 0x4a, 0xff, 0xc6, 0x7f, 0x4c, 0xff, 0xc7, 0x81, 0x4f, 0xff, 0xdb, 0x8c, 0x5a, 0xff, 0xbe, 0x79, 0x47, 0xff, 0xad, 0x6c, 0x39, 0xff, 0xb2, 0x73, 0x3c, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x87, 0x45, 0x28, 0xff, 0x87, 0x4a, 0x29, 0xff, 0x86, 0x46, 0x28, 0xff, 0x85, 0x47, 0x28, 0xff, 0x85, 0x45, 0x27, 0xff, 0x84, 0x46, 0x28, 0xff, 0x84, 0x45, 0x27, 0xff, 0x84, 0x44, 0x25, 0xff, 0x80, 0x42, 0x24, 0xff, 0x7f, 0x3e, 0x22, 0xff, 0x7c, 0x3d, 0x22, 0xff, 0x7d, 0x3c, 0x20, 0xff, 0x7b, 0x3b, 0x20, 0xff, 0x7a, 0x3a, 0x1e, 0xff, 0x79, 0x38, 0x1d, 0xff, 0x77, 0x37, 0x1c, 0xff, 0x76, 0x35, 0x1a, 0xff, 0x74, 0x35, 0x18, 0xff, 0x75, 0x35, 0x18, 0xff, 0x76, 0x34, 0x19, 0xff, 0x74, 0x33, 0x17, 0xff, 0x73, 0x34, 0x17, 0xff, 0x73, 0x35, 0x17, 0xff, 0x75, 0x35, 0x1a, 0xff, 0x76, 0x36, 0x1a, 0xff, 0x77, 0x37, 0x1a, 0xff, 0x78, 0x39, 0x1e, 0xff, 0x79, 0x39, 0x1f, 0xff, 0x7b, 0x3a, 0x20, 0xff, 0x79, 0x39, 0x21, 0xff, 0x83, 0x45, 0x28, 0xff, 0x82, 0x45, 0x28, 0xff, 0x82, 0x43, 0x28, 0xff, 0x81, 0x44, 0x27, 0xff, 0x7d, 0x41, 0x28, 0xff, 0x7a, 0x41, 0x28, 0xff, 0x7c, 0x41, 0x26, 0xff, 0x79, 0x3b, 0x23, 0xff, 0x76, 0x37, 0x1f, 0xff, 0x70, 0x33, 0x17, 0xff, + 0x6c, 0x2d, 0x14, 0xff, 0x69, 0x2e, 0x10, 0xff, 0x67, 0x2b, 0x0e, 0xff, 0x64, 0x2a, 0x0e, 0xff, 0x63, 0x25, 0x0b, 0xff, 0x5f, 0x26, 0x0b, 0xff, 0x5e, 0x23, 0x07, 0xff, 0x64, 0x28, 0x0e, 0xff, 0x64, 0x28, 0x0d, 0xff, 0x63, 0x28, 0x0b, 0xff, 0x63, 0x28, 0x0b, 0xff, 0x64, 0x28, 0x0b, 0xff, 0x67, 0x2b, 0x0b, 0xff, 0x68, 0x29, 0x0d, 0xff, 0x69, 0x2e, 0x0e, 0xff, 0x6d, 0x30, 0x12, 0xff, 0x6d, 0x2e, 0x12, 0xff, 0x71, 0x30, 0x14, 0xff, 0x76, 0x31, 0x14, 0xff, 0x77, 0x35, 0x16, 0xff, 0x76, 0x33, 0x14, 0xff, 0x76, 0x33, 0x14, 0xff, 0x79, 0x37, 0x18, 0xff, 0x7e, 0x3b, 0x1c, 0xff, 0x7d, 0x3c, 0x1d, 0xff, 0x79, 0x39, 0x1a, 0xff, 0x81, 0x3f, 0x22, 0xff, 0x7a, 0x3a, 0x19, 0xff, 0x73, 0x33, 0x12, 0xff, 0x77, 0x37, 0x14, 0xff, 0x7c, 0x3c, 0x19, 0xff, 0x84, 0x41, 0x21, 0xff, 0x88, 0x45, 0x24, 0xff, 0x90, 0x4e, 0x26, 0xff, 0x97, 0x55, 0x2b, 0xff, 0x9b, 0x5e, 0x32, 0xff, 0x9f, 0x65, 0x3a, 0xff, 0xa4, 0x69, 0x42, 0xff, 0xaa, 0x6c, 0x44, 0xff, 0xac, 0x70, 0x45, 0xff, 0xb3, 0x76, 0x44, 0xff, 0xba, 0x7c, 0x44, 0xff, 0xbf, 0x7b, 0x43, 0xff, 0xc9, 0x82, 0x49, 0xff, 0xdd, 0x8f, 0x51, 0xff, 0xee, 0x99, 0x5a, 0xff, 0xf9, 0xa3, 0x64, 0xff, 0xf8, 0xac, 0x6a, 0xff, 0xf9, 0xc3, 0x7a, 0xff, 0xf9, 0xc8, 0x7f, 0xff, 0xf9, 0xce, 0x82, 0xff, 0xf8, 0xd9, 0x87, 0xff, 0xf9, 0xe2, 0x89, 0xff, 0xf9, 0xdf, 0x8a, 0xff, 0xf9, 0xda, 0x87, 0xff, 0xf6, 0xc8, 0x7e, 0xff, 0xf6, 0xb4, 0x71, 0xff, 0xf9, 0xb6, 0x70, 0xff, 0xf8, 0xb2, 0x71, 0xff, 0xf8, 0xad, 0x6e, 0xff, 0xf7, 0xa8, 0x6e, 0xff, 0xf8, 0xa6, 0x6a, 0xff, 0xf7, 0xa3, 0x67, 0xff, 0xf7, 0xa4, 0x5f, 0xff, 0xf9, 0xa5, 0x61, 0xff, 0xf9, 0xa1, 0x62, 0xff, 0xf8, 0xa1, 0x62, 0xff, 0xf8, 0xa0, 0x62, 0xff, 0xf6, 0xa1, 0x60, 0xff, 0xf7, 0xb1, 0x62, 0xff, 0xf8, 0xb1, 0x64, 0xff, 0xf7, 0xb0, 0x67, 0xff, 0xf5, 0xab, 0x68, 0xff, 0xf6, 0xb1, 0x6c, 0xff, 0xf3, 0xb2, 0x69, 0xff, 0xf7, 0xb4, 0x67, 0xff, 0xf1, 0xad, 0x63, 0xff, 0xf1, 0xa2, 0x64, 0xff, 0xf8, 0xaf, 0x6b, 0xff, 0xf7, 0xa9, 0x64, 0xff, 0xf5, 0xa3, 0x60, 0xff, 0xf0, 0x9e, 0x5c, 0xff, 0xed, 0x99, 0x57, 0xff, 0xeb, 0x9b, 0x54, 0xff, 0xe0, 0x97, 0x51, 0xff, 0xdc, 0x98, 0x50, 0xff, 0xdc, 0x96, 0x50, 0xff, 0xdd, 0x99, 0x52, 0xff, 0xdc, 0x98, 0x51, 0xff, 0xd9, 0x97, 0x51, 0xff, 0xd7, 0x96, 0x55, 0xff, 0xd6, 0x98, 0x55, 0xff, 0xd4, 0x93, 0x53, 0xff, 0xcc, 0x8a, 0x4e, 0xff, 0xcb, 0x8a, 0x50, 0xff, 0xc9, 0x8a, 0x51, 0xff, 0xc8, 0x89, 0x51, 0xff, 0xc7, 0x88, 0x51, 0xff, 0xc0, 0x83, 0x4c, 0xff, 0xbc, 0x82, 0x4b, 0xff, 0xba, 0x81, 0x4c, 0xff, 0xb6, 0x7d, 0x48, 0xff, 0xb4, 0x7b, 0x48, 0xff, 0xb0, 0x76, 0x45, 0xff, 0xad, 0x72, 0x41, 0xff, 0xac, 0x71, 0x41, 0xff, 0xaa, 0x70, 0x40, 0xff, 0xa8, 0x6d, 0x3e, 0xff, 0xa4, 0x69, 0x3e, 0xff, 0xa1, 0x67, 0x3d, 0xff, 0x9e, 0x63, 0x3a, 0xff, 0x9c, 0x63, 0x39, 0xff, 0x99, 0x60, 0x36, 0xff, 0x99, 0x5d, 0x32, 0xff, 0x97, 0x5c, 0x32, 0xff, 0x94, 0x5a, 0x31, 0xff, 0x8d, 0x51, 0x2c, 0xff, 0x86, 0x48, 0x27, 0xff, 0x85, 0x47, 0x26, 0xff, 0x80, 0x43, 0x26, 0xff, 0x7c, 0x40, 0x24, 0xff, 0x7a, 0x3d, 0x22, 0xff, 0x79, 0x3b, 0x20, 0xff, 0x77, 0x39, 0x20, 0xff, 0x6e, 0x32, 0x18, 0xff, 0x7c, 0x41, 0x26, 0xff, 0x8f, 0x52, 0x32, 0xff, 0x8c, 0x4e, 0x2a, 0xff, 0x87, 0x49, 0x28, 0xff, 0x85, 0x46, 0x28, 0xff, 0x80, 0x42, 0x26, 0xff, 0x7b, 0x3f, 0x25, 0xff, 0x7a, 0x3e, 0x24, 0xff, 0x77, 0x39, 0x21, 0xff, 0x74, 0x36, 0x1c, 0xff, 0x72, 0x35, 0x1a, 0xff, 0x70, 0x33, 0x18, 0xff, 0x6d, 0x2f, 0x17, 0xff, 0x69, 0x2e, 0x15, 0xff, 0x6a, 0x2f, 0x14, 0xff, 0x6a, 0x2e, 0x15, 0xff, 0x6b, 0x2e, 0x15, 0xff, 0x6d, 0x2f, 0x14, 0xff, 0x6e, 0x30, 0x14, 0xff, 0x6f, 0x31, 0x16, 0xff, 0x6f, 0x33, 0x17, 0xff, 0x71, 0x32, 0x17, 0xff, 0x72, 0x33, 0x19, 0xff, 0x75, 0x36, 0x19, 0xff, 0x77, 0x36, 0x19, 0xff, 0x77, 0x37, 0x1a, 0xff, 0x79, 0x37, 0x18, 0xff, 0x7a, 0x38, 0x19, 0xff, 0x7c, 0x3b, 0x1a, 0xff, 0x81, 0x3e, 0x1c, 0xff, 0x84, 0x41, 0x1e, 0xff, 0x88, 0x44, 0x20, 0xff, 0x8e, 0x4b, 0x22, 0xff, 0x90, 0x4f, 0x26, 0xff, 0x96, 0x55, 0x29, 0xff, 0x9e, 0x60, 0x2e, 0xff, 0xa7, 0x67, 0x36, 0xff, 0xb2, 0x72, 0x41, 0xff, 0xbf, 0x81, 0x4c, 0xff, 0xcf, 0x8e, 0x57, 0xff, 0xec, 0x9f, 0x66, 0xff, 0xf8, 0xb6, 0x75, 0xff, 0xf7, 0xe5, 0x96, 0xff, 0xf1, 0xf3, 0xa7, 0xff, 0xf0, 0xf4, 0xad, 0xff, 0xf1, 0xf4, 0xb3, 0xff, 0xef, 0xf5, 0xb4, 0xff, 0xef, 0xf8, 0xb0, 0xff, 0xf6, 0xe2, 0x9d, 0xff, 0xf9, 0xcd, 0x8e, 0xff, 0xf9, 0xba, 0x81, 0xff, 0xf9, 0xa9, 0x73, 0xff, 0xe7, 0x99, 0x64, 0xff, 0xcf, 0x8d, 0x58, 0xff, 0xc2, 0x81, 0x4e, 0xff, 0xb9, 0x79, 0x48, 0xff, 0xb7, 0x73, 0x43, 0xff, 0xb7, 0x72, 0x41, 0xff, 0xb6, 0x70, 0x40, 0xff, 0xb4, 0x6e, 0x3e, 0xff, 0xb8, 0x72, 0x43, 0xff, 0xbc, 0x76, 0x47, 0xff, 0xc0, 0x79, 0x49, 0xff, 0xc2, 0x7d, 0x4a, 0xff, 0xc3, 0x7e, 0x4c, 0xff, 0xda, 0x8d, 0x5b, 0xff, 0xb3, 0x71, 0x3a, 0xff, 0xa3, 0x60, 0x31, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x84, 0x46, 0x28, 0xff, 0x86, 0x47, 0x29, 0xff, 0x85, 0x45, 0x27, 0xff, 0x85, 0x45, 0x27, 0xff, 0x83, 0x45, 0x27, 0xff, 0x83, 0x44, 0x25, 0xff, 0x82, 0x41, 0x24, 0xff, 0x82, 0x41, 0x24, 0xff, 0x82, 0x42, 0x24, 0xff, 0x80, 0x3f, 0x22, 0xff, 0x7d, 0x3c, 0x20, 0xff, 0x7d, 0x3c, 0x20, 0xff, 0x7a, 0x3a, 0x1f, 0xff, 0x7a, 0x39, 0x1d, 0xff, 0x79, 0x38, 0x1d, 0xff, 0x79, 0x39, 0x1b, 0xff, 0x7a, 0x39, 0x1f, 0xff, 0x79, 0x39, 0x20, 0xff, 0x76, 0x35, 0x1a, 0xff, 0x76, 0x36, 0x1b, 0xff, 0x78, 0x38, 0x1f, 0xff, 0x79, 0x39, 0x20, 0xff, 0x78, 0x38, 0x20, 0xff, 0x77, 0x38, 0x1f, 0xff, 0x74, 0x36, 0x1b, 0xff, 0x74, 0x35, 0x1a, 0xff, 0x77, 0x35, 0x1a, 0xff, 0x78, 0x37, 0x1a, 0xff, 0x76, 0x36, 0x19, 0xff, 0x84, 0x43, 0x27, 0xff, 0x80, 0x43, 0x27, 0xff, 0x80, 0x41, 0x28, 0xff, 0x81, 0x44, 0x27, 0xff, 0x80, 0x44, 0x29, 0xff, 0x7f, 0x44, 0x2a, 0xff, 0x7b, 0x42, 0x28, 0xff, 0x7a, 0x3e, 0x24, 0xff, 0x77, 0x39, 0x21, 0xff, 0x72, 0x35, 0x19, 0xff, 0x6f, 0x31, 0x17, 0xff, + 0x69, 0x2d, 0x11, 0xff, 0x67, 0x2c, 0x0f, 0xff, 0x66, 0x29, 0x0f, 0xff, 0x63, 0x29, 0x0d, 0xff, 0x61, 0x25, 0x0b, 0xff, 0x5d, 0x25, 0x0b, 0xff, 0x64, 0x29, 0x0e, 0xff, 0x62, 0x27, 0x0b, 0xff, 0x62, 0x26, 0x0b, 0xff, 0x61, 0x26, 0x0b, 0xff, 0x63, 0x27, 0x0b, 0xff, 0x65, 0x2a, 0x0b, 0xff, 0x65, 0x28, 0x0c, 0xff, 0x68, 0x29, 0x0e, 0xff, 0x69, 0x2c, 0x11, 0xff, 0x6b, 0x2e, 0x0f, 0xff, 0x6e, 0x2e, 0x12, 0xff, 0x72, 0x31, 0x14, 0xff, 0x75, 0x31, 0x14, 0xff, 0x76, 0x34, 0x16, 0xff, 0x78, 0x36, 0x16, 0xff, 0x78, 0x36, 0x16, 0xff, 0x78, 0x35, 0x14, 0xff, 0x7a, 0x38, 0x18, 0xff, 0x7f, 0x3e, 0x1e, 0xff, 0x7c, 0x3b, 0x1c, 0xff, 0x7d, 0x3b, 0x1c, 0xff, 0x81, 0x3e, 0x20, 0xff, 0x7b, 0x3b, 0x1c, 0xff, 0x78, 0x36, 0x15, 0xff, 0x7b, 0x38, 0x18, 0xff, 0x80, 0x3c, 0x1b, 0xff, 0x84, 0x40, 0x21, 0xff, 0x89, 0x47, 0x23, 0xff, 0x91, 0x50, 0x27, 0xff, 0x9a, 0x58, 0x2d, 0xff, 0x9e, 0x63, 0x33, 0xff, 0xa1, 0x64, 0x3c, 0xff, 0xa6, 0x68, 0x3f, 0xff, 0xa9, 0x6c, 0x41, 0xff, 0xaf, 0x72, 0x41, 0xff, 0xb5, 0x76, 0x41, 0xff, 0xb9, 0x74, 0x3f, 0xff, 0xc0, 0x7a, 0x43, 0xff, 0xcb, 0x82, 0x4a, 0xff, 0xdb, 0x8b, 0x50, 0xff, 0xed, 0x95, 0x58, 0xff, 0xf8, 0x9e, 0x5f, 0xff, 0xf9, 0xad, 0x6b, 0xff, 0xf9, 0xb0, 0x70, 0xff, 0xf8, 0xb7, 0x76, 0xff, 0xf9, 0xbf, 0x79, 0xff, 0xf8, 0xc3, 0x7a, 0xff, 0xf9, 0xc6, 0x7b, 0xff, 0xf9, 0xc1, 0x7a, 0xff, 0xf9, 0xc3, 0x7b, 0xff, 0xf8, 0xc4, 0x7b, 0xff, 0xf6, 0xc1, 0x7a, 0xff, 0xf6, 0xb3, 0x70, 0xff, 0xf6, 0xa9, 0x6b, 0xff, 0xf8, 0xa6, 0x68, 0xff, 0xf9, 0xa2, 0x68, 0xff, 0xf7, 0xa1, 0x63, 0xff, 0xf8, 0xa1, 0x5d, 0xff, 0xf8, 0xa0, 0x5e, 0xff, 0xf6, 0x9e, 0x61, 0xff, 0xf7, 0x9d, 0x61, 0xff, 0xf8, 0x9d, 0x61, 0xff, 0xf4, 0xa2, 0x5f, 0xff, 0xf8, 0xaf, 0x62, 0xff, 0xf6, 0xab, 0x63, 0xff, 0xf2, 0xab, 0x63, 0xff, 0xf7, 0xae, 0x64, 0xff, 0xf8, 0xae, 0x69, 0xff, 0xf7, 0xad, 0x68, 0xff, 0xf3, 0xb0, 0x64, 0xff, 0xf2, 0xab, 0x61, 0xff, 0xf0, 0xa0, 0x61, 0xff, 0xf8, 0xa8, 0x68, 0xff, 0xf8, 0xa8, 0x65, 0xff, 0xf5, 0xa8, 0x61, 0xff, 0xf2, 0xa0, 0x5b, 0xff, 0xf3, 0x99, 0x57, 0xff, 0xf1, 0x9a, 0x56, 0xff, 0xe5, 0x99, 0x53, 0xff, 0xdd, 0x97, 0x4e, 0xff, 0xdf, 0x98, 0x52, 0xff, 0xde, 0x99, 0x50, 0xff, 0xdb, 0x98, 0x51, 0xff, 0xdb, 0x97, 0x53, 0xff, 0xdd, 0x98, 0x53, 0xff, 0xda, 0x98, 0x55, 0xff, 0xd9, 0x97, 0x56, 0xff, 0xd4, 0x8e, 0x54, 0xff, 0xd0, 0x8d, 0x54, 0xff, 0xcf, 0x8e, 0x53, 0xff, 0xcf, 0x8b, 0x53, 0xff, 0xca, 0x89, 0x51, 0xff, 0xc4, 0x86, 0x4f, 0xff, 0xc1, 0x83, 0x4c, 0xff, 0xbd, 0x82, 0x4c, 0xff, 0xba, 0x81, 0x4a, 0xff, 0xb8, 0x7d, 0x48, 0xff, 0xb5, 0x7a, 0x48, 0xff, 0xb2, 0x78, 0x46, 0xff, 0xaf, 0x72, 0x42, 0xff, 0xac, 0x70, 0x41, 0xff, 0xa9, 0x6e, 0x40, 0xff, 0xa5, 0x6d, 0x3d, 0xff, 0xa4, 0x6a, 0x3c, 0xff, 0xa2, 0x67, 0x3c, 0xff, 0x9f, 0x65, 0x3a, 0xff, 0x9d, 0x63, 0x36, 0xff, 0x99, 0x5f, 0x34, 0xff, 0x98, 0x5e, 0x34, 0xff, 0x93, 0x57, 0x30, 0xff, 0x8b, 0x4d, 0x2a, 0xff, 0x88, 0x4b, 0x28, 0xff, 0x86, 0x4a, 0x27, 0xff, 0x83, 0x45, 0x26, 0xff, 0x7f, 0x41, 0x24, 0xff, 0x7c, 0x3e, 0x23, 0xff, 0x79, 0x3c, 0x22, 0xff, 0x77, 0x3a, 0x1f, 0xff, 0x7a, 0x3c, 0x21, 0xff, 0x8c, 0x4f, 0x2e, 0xff, 0x92, 0x54, 0x2f, 0xff, 0x8b, 0x4c, 0x2a, 0xff, 0x87, 0x47, 0x2a, 0xff, 0x83, 0x43, 0x27, 0xff, 0x7d, 0x3f, 0x25, 0xff, 0x7b, 0x3e, 0x23, 0xff, 0x79, 0x3b, 0x22, 0xff, 0x76, 0x36, 0x1f, 0xff, 0x73, 0x35, 0x1c, 0xff, 0x70, 0x33, 0x1a, 0xff, 0x6d, 0x32, 0x17, 0xff, 0x6a, 0x2f, 0x15, 0xff, 0x69, 0x2c, 0x14, 0xff, 0x68, 0x2d, 0x13, 0xff, 0x67, 0x2d, 0x11, 0xff, 0x68, 0x2e, 0x12, 0xff, 0x69, 0x2e, 0x11, 0xff, 0x69, 0x2f, 0x13, 0xff, 0x6b, 0x2e, 0x14, 0xff, 0x6c, 0x2f, 0x14, 0xff, 0x6d, 0x31, 0x14, 0xff, 0x6e, 0x31, 0x14, 0xff, 0x70, 0x31, 0x14, 0xff, 0x72, 0x31, 0x14, 0xff, 0x74, 0x34, 0x16, 0xff, 0x75, 0x35, 0x16, 0xff, 0x76, 0x35, 0x16, 0xff, 0x78, 0x36, 0x17, 0xff, 0x7a, 0x38, 0x17, 0xff, 0x7e, 0x3c, 0x18, 0xff, 0x82, 0x3f, 0x1a, 0xff, 0x86, 0x44, 0x1d, 0xff, 0x8b, 0x49, 0x21, 0xff, 0x90, 0x4d, 0x25, 0xff, 0x95, 0x55, 0x29, 0xff, 0x9c, 0x5b, 0x2e, 0xff, 0xa4, 0x65, 0x33, 0xff, 0xae, 0x6f, 0x3d, 0xff, 0xb8, 0x7c, 0x47, 0xff, 0xc9, 0x88, 0x52, 0xff, 0xe3, 0xa2, 0x68, 0xff, 0xf6, 0xbf, 0x82, 0xff, 0xf9, 0xcf, 0x8b, 0xff, 0xf9, 0xdd, 0x92, 0xff, 0xf7, 0xe6, 0x99, 0xff, 0xf6, 0xec, 0x9e, 0xff, 0xf9, 0xf0, 0xa0, 0xff, 0xf6, 0xc8, 0x8d, 0xff, 0xf8, 0xb8, 0x83, 0xff, 0xf9, 0xb1, 0x7a, 0xff, 0xf5, 0xa3, 0x70, 0xff, 0xe0, 0x97, 0x63, 0xff, 0xc9, 0x87, 0x57, 0xff, 0xbe, 0x7d, 0x4d, 0xff, 0xb9, 0x76, 0x47, 0xff, 0xb6, 0x73, 0x42, 0xff, 0xb4, 0x70, 0x3e, 0xff, 0xb0, 0x6b, 0x3c, 0xff, 0xaf, 0x6b, 0x3c, 0xff, 0xb6, 0x71, 0x41, 0xff, 0xb8, 0x74, 0x42, 0xff, 0xb8, 0x76, 0x44, 0xff, 0xb9, 0x76, 0x46, 0xff, 0xbd, 0x7a, 0x48, 0xff, 0xc3, 0x7e, 0x4d, 0xff, 0xcb, 0x84, 0x52, 0xff, 0x99, 0x58, 0x30, 0xff, 0x89, 0x49, 0x29, 0xff, 0x84, 0x45, 0x28, 0xff, 0x86, 0x47, 0x27, 0xff, 0x83, 0x45, 0x27, 0xff, 0x84, 0x44, 0x26, 0xff, 0x84, 0x43, 0x26, 0xff, 0x82, 0x42, 0x25, 0xff, 0x84, 0x42, 0x24, 0xff, 0x83, 0x42, 0x24, 0xff, 0x80, 0x3e, 0x22, 0xff, 0x7c, 0x3c, 0x1f, 0xff, 0x7a, 0x38, 0x1f, 0xff, 0x79, 0x38, 0x1f, 0xff, 0x79, 0x37, 0x19, 0xff, 0x78, 0x38, 0x19, 0xff, 0x76, 0x36, 0x1a, 0xff, 0x76, 0x36, 0x19, 0xff, 0x77, 0x36, 0x18, 0xff, 0x74, 0x36, 0x17, 0xff, 0x76, 0x35, 0x1a, 0xff, 0x75, 0x35, 0x1d, 0xff, 0x75, 0x34, 0x1a, 0xff, 0x75, 0x38, 0x19, 0xff, 0x75, 0x35, 0x1a, 0xff, 0x75, 0x37, 0x1c, 0xff, 0x77, 0x38, 0x1c, 0xff, 0x76, 0x35, 0x1c, 0xff, 0x76, 0x35, 0x1b, 0xff, 0x74, 0x34, 0x19, 0xff, 0x7e, 0x3e, 0x23, 0xff, 0x81, 0x42, 0x28, 0xff, 0x81, 0x42, 0x27, 0xff, 0x82, 0x42, 0x27, 0xff, 0x81, 0x44, 0x27, 0xff, 0x80, 0x45, 0x2b, 0xff, 0x7e, 0x41, 0x2a, 0xff, 0x7a, 0x40, 0x27, 0xff, 0x79, 0x3b, 0x23, 0xff, 0x74, 0x36, 0x1d, 0xff, 0x70, 0x32, 0x17, 0xff, 0x6b, 0x2d, 0x14, 0xff, + 0x68, 0x2d, 0x0f, 0xff, 0x65, 0x2b, 0x10, 0xff, 0x63, 0x2a, 0x0f, 0xff, 0x60, 0x26, 0x0b, 0xff, 0x5e, 0x26, 0x0b, 0xff, 0x63, 0x29, 0x0a, 0xff, 0x62, 0x27, 0x0a, 0xff, 0x63, 0x29, 0x0d, 0xff, 0x63, 0x28, 0x0b, 0xff, 0x63, 0x27, 0x0b, 0xff, 0x63, 0x27, 0x0b, 0xff, 0x63, 0x27, 0x0b, 0xff, 0x65, 0x28, 0x0c, 0xff, 0x66, 0x2a, 0x0c, 0xff, 0x67, 0x2b, 0x0c, 0xff, 0x69, 0x2c, 0x0d, 0xff, 0x6d, 0x2e, 0x11, 0xff, 0x70, 0x30, 0x12, 0xff, 0x76, 0x31, 0x15, 0xff, 0x77, 0x36, 0x18, 0xff, 0x7b, 0x39, 0x1a, 0xff, 0x7c, 0x3a, 0x1c, 0xff, 0x7c, 0x39, 0x1a, 0xff, 0x79, 0x37, 0x14, 0xff, 0x7b, 0x3a, 0x18, 0xff, 0x7b, 0x3a, 0x1e, 0xff, 0x72, 0x32, 0x14, 0xff, 0x74, 0x32, 0x15, 0xff, 0x76, 0x36, 0x16, 0xff, 0x7b, 0x38, 0x17, 0xff, 0x7c, 0x39, 0x19, 0xff, 0x7a, 0x38, 0x17, 0xff, 0x80, 0x3c, 0x19, 0xff, 0x86, 0x43, 0x20, 0xff, 0x8c, 0x49, 0x24, 0xff, 0x93, 0x51, 0x28, 0xff, 0x9b, 0x59, 0x2f, 0xff, 0x9d, 0x61, 0x33, 0xff, 0xa0, 0x65, 0x39, 0xff, 0xa6, 0x69, 0x3b, 0xff, 0xaa, 0x6c, 0x3c, 0xff, 0xaf, 0x73, 0x3d, 0xff, 0xb6, 0x73, 0x3c, 0xff, 0xba, 0x73, 0x3d, 0xff, 0xc2, 0x7c, 0x43, 0xff, 0xcb, 0x83, 0x4a, 0xff, 0xda, 0x8a, 0x4f, 0xff, 0xed, 0x95, 0x58, 0xff, 0xf9, 0xa2, 0x5e, 0xff, 0xf9, 0xa7, 0x65, 0xff, 0xf8, 0xac, 0x6b, 0xff, 0xf9, 0xaf, 0x6c, 0xff, 0xf9, 0xb3, 0x6d, 0xff, 0xf8, 0xb5, 0x6f, 0xff, 0xf8, 0xb8, 0x73, 0xff, 0xf9, 0xb7, 0x73, 0xff, 0xf9, 0xb7, 0x73, 0xff, 0xf7, 0xb9, 0x74, 0xff, 0xf9, 0xb9, 0x75, 0xff, 0xf7, 0xb3, 0x71, 0xff, 0xf7, 0xaa, 0x6d, 0xff, 0xf6, 0x9d, 0x65, 0xff, 0xf9, 0x9c, 0x61, 0xff, 0xf6, 0x9c, 0x5c, 0xff, 0xf3, 0x9e, 0x5d, 0xff, 0xf3, 0x9d, 0x5f, 0xff, 0xf1, 0x9b, 0x5e, 0xff, 0xf4, 0x9f, 0x5d, 0xff, 0xf7, 0xad, 0x60, 0xff, 0xf4, 0xad, 0x61, 0xff, 0xf6, 0xab, 0x5f, 0xff, 0xf7, 0xaa, 0x62, 0xff, 0xf8, 0xac, 0x66, 0xff, 0xf8, 0xac, 0x67, 0xff, 0xf7, 0xac, 0x69, 0xff, 0xf3, 0xad, 0x63, 0xff, 0xf3, 0xac, 0x61, 0xff, 0xf2, 0xa1, 0x61, 0xff, 0xf7, 0xa7, 0x64, 0xff, 0xf6, 0xa8, 0x65, 0xff, 0xf6, 0xa6, 0x61, 0xff, 0xf4, 0x9f, 0x5d, 0xff, 0xf6, 0x9a, 0x56, 0xff, 0xf4, 0x9b, 0x57, 0xff, 0xeb, 0x9a, 0x55, 0xff, 0xdf, 0x9a, 0x50, 0xff, 0xde, 0x9a, 0x4f, 0xff, 0xe6, 0x9d, 0x53, 0xff, 0xe3, 0x9e, 0x54, 0xff, 0xdf, 0x9a, 0x54, 0xff, 0xdf, 0x9a, 0x51, 0xff, 0xe2, 0x9f, 0x59, 0xff, 0xdf, 0x99, 0x5b, 0xff, 0xdc, 0x92, 0x56, 0xff, 0xdc, 0x93, 0x56, 0xff, 0xd7, 0x91, 0x55, 0xff, 0xd5, 0x8f, 0x55, 0xff, 0xd3, 0x8c, 0x55, 0xff, 0xcb, 0x8b, 0x53, 0xff, 0xc4, 0x89, 0x4f, 0xff, 0xc1, 0x86, 0x4e, 0xff, 0xbd, 0x83, 0x4b, 0xff, 0xb9, 0x80, 0x4b, 0xff, 0xb8, 0x7e, 0x4b, 0xff, 0xb6, 0x78, 0x47, 0xff, 0xb1, 0x74, 0x44, 0xff, 0xaf, 0x73, 0x42, 0xff, 0xac, 0x70, 0x40, 0xff, 0xa9, 0x6d, 0x40, 0xff, 0xa7, 0x6d, 0x3f, 0xff, 0xa4, 0x6b, 0x3d, 0xff, 0xa1, 0x66, 0x3b, 0xff, 0x9f, 0x65, 0x39, 0xff, 0x9d, 0x62, 0x36, 0xff, 0x9a, 0x5e, 0x34, 0xff, 0x94, 0x57, 0x31, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8d, 0x4e, 0x2b, 0xff, 0x88, 0x4b, 0x28, 0xff, 0x84, 0x46, 0x26, 0xff, 0x82, 0x45, 0x25, 0xff, 0x80, 0x42, 0x23, 0xff, 0x7d, 0x3f, 0x22, 0xff, 0x79, 0x3c, 0x20, 0xff, 0x89, 0x4b, 0x2c, 0xff, 0x94, 0x57, 0x32, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x8a, 0x4a, 0x2a, 0xff, 0x83, 0x45, 0x28, 0xff, 0x80, 0x41, 0x26, 0xff, 0x7e, 0x3f, 0x25, 0xff, 0x7b, 0x3c, 0x24, 0xff, 0x77, 0x39, 0x21, 0xff, 0x75, 0x36, 0x1e, 0xff, 0x72, 0x34, 0x1c, 0xff, 0x6f, 0x33, 0x19, 0xff, 0x6c, 0x31, 0x15, 0xff, 0x69, 0x2e, 0x14, 0xff, 0x68, 0x2c, 0x13, 0xff, 0x67, 0x2b, 0x10, 0xff, 0x66, 0x2a, 0x0f, 0xff, 0x65, 0x2b, 0x10, 0xff, 0x66, 0x2b, 0x0f, 0xff, 0x67, 0x2b, 0x0f, 0xff, 0x68, 0x2e, 0x12, 0xff, 0x69, 0x2f, 0x13, 0xff, 0x6a, 0x2e, 0x14, 0xff, 0x69, 0x2e, 0x14, 0xff, 0x6a, 0x2e, 0x13, 0xff, 0x6c, 0x2f, 0x14, 0xff, 0x6e, 0x30, 0x13, 0xff, 0x70, 0x31, 0x14, 0xff, 0x72, 0x33, 0x14, 0xff, 0x75, 0x35, 0x15, 0xff, 0x77, 0x36, 0x15, 0xff, 0x78, 0x39, 0x15, 0xff, 0x7b, 0x3b, 0x16, 0xff, 0x80, 0x3d, 0x1a, 0xff, 0x84, 0x41, 0x1f, 0xff, 0x89, 0x46, 0x21, 0xff, 0x8e, 0x4b, 0x25, 0xff, 0x93, 0x51, 0x28, 0xff, 0x9b, 0x59, 0x2c, 0xff, 0xa2, 0x62, 0x31, 0xff, 0xa9, 0x6a, 0x38, 0xff, 0xb2, 0x74, 0x41, 0xff, 0xd6, 0x90, 0x5b, 0xff, 0xf4, 0xa5, 0x6e, 0xff, 0xf9, 0xad, 0x75, 0xff, 0xf9, 0xb6, 0x7b, 0xff, 0xf9, 0xbd, 0x81, 0xff, 0xf9, 0xc1, 0x84, 0xff, 0xf9, 0xc0, 0x85, 0xff, 0xf7, 0xb5, 0x7f, 0xff, 0xf9, 0xb0, 0x78, 0xff, 0xf8, 0xa9, 0x73, 0xff, 0xef, 0x9e, 0x6a, 0xff, 0xdd, 0x94, 0x60, 0xff, 0xcd, 0x8a, 0x58, 0xff, 0xc1, 0x81, 0x4d, 0xff, 0xb6, 0x74, 0x45, 0xff, 0xb3, 0x6f, 0x3f, 0xff, 0xad, 0x69, 0x3b, 0xff, 0xaa, 0x67, 0x37, 0xff, 0xb0, 0x6e, 0x3d, 0xff, 0xb2, 0x6e, 0x3f, 0xff, 0xb3, 0x6f, 0x40, 0xff, 0xb4, 0x70, 0x40, 0xff, 0xb5, 0x70, 0x41, 0xff, 0xb6, 0x73, 0x43, 0xff, 0xbb, 0x7a, 0x48, 0xff, 0xc1, 0x7d, 0x4d, 0xff, 0x9f, 0x5f, 0x3b, 0xff, 0x89, 0x49, 0x2a, 0xff, 0x84, 0x44, 0x27, 0xff, 0x84, 0x45, 0x27, 0xff, 0x84, 0x43, 0x26, 0xff, 0x83, 0x44, 0x26, 0xff, 0x82, 0x42, 0x25, 0xff, 0x83, 0x40, 0x24, 0xff, 0x81, 0x40, 0x24, 0xff, 0x80, 0x3e, 0x22, 0xff, 0x7e, 0x3d, 0x21, 0xff, 0x7a, 0x3a, 0x1f, 0xff, 0x77, 0x36, 0x1d, 0xff, 0x77, 0x38, 0x1b, 0xff, 0x77, 0x36, 0x1b, 0xff, 0x75, 0x35, 0x18, 0xff, 0x76, 0x35, 0x1a, 0xff, 0x76, 0x35, 0x19, 0xff, 0x74, 0x34, 0x17, 0xff, 0x72, 0x35, 0x17, 0xff, 0x72, 0x33, 0x18, 0xff, 0x74, 0x33, 0x18, 0xff, 0x73, 0x33, 0x17, 0xff, 0x72, 0x35, 0x18, 0xff, 0x72, 0x34, 0x1a, 0xff, 0x73, 0x34, 0x19, 0xff, 0x74, 0x34, 0x18, 0xff, 0x73, 0x33, 0x17, 0xff, 0x74, 0x33, 0x16, 0xff, 0x7e, 0x3d, 0x22, 0xff, 0x82, 0x3f, 0x23, 0xff, 0x83, 0x43, 0x28, 0xff, 0x81, 0x42, 0x27, 0xff, 0x7f, 0x40, 0x26, 0xff, 0x7f, 0x43, 0x27, 0xff, 0x7f, 0x43, 0x2a, 0xff, 0x7d, 0x42, 0x29, 0xff, 0x79, 0x3e, 0x24, 0xff, 0x76, 0x38, 0x1f, 0xff, 0x6f, 0x32, 0x17, 0xff, 0x6c, 0x2f, 0x14, 0xff, 0x69, 0x2e, 0x13, 0xff, + 0x65, 0x2b, 0x11, 0xff, 0x63, 0x2a, 0x11, 0xff, 0x62, 0x28, 0x0c, 0xff, 0x5d, 0x25, 0x07, 0xff, 0x64, 0x28, 0x0e, 0xff, 0x63, 0x27, 0x0c, 0xff, 0x63, 0x27, 0x0b, 0xff, 0x63, 0x29, 0x0b, 0xff, 0x61, 0x27, 0x0b, 0xff, 0x60, 0x27, 0x0b, 0xff, 0x5f, 0x25, 0x07, 0xff, 0x5f, 0x26, 0x0b, 0xff, 0x62, 0x27, 0x0b, 0xff, 0x63, 0x27, 0x0b, 0xff, 0x65, 0x26, 0x0b, 0xff, 0x68, 0x29, 0x0b, 0xff, 0x6a, 0x2b, 0x0d, 0xff, 0x6d, 0x2c, 0x11, 0xff, 0x70, 0x31, 0x13, 0xff, 0x73, 0x32, 0x16, 0xff, 0x78, 0x39, 0x1a, 0xff, 0x7d, 0x3c, 0x1b, 0xff, 0x80, 0x3e, 0x1e, 0xff, 0x80, 0x3d, 0x1e, 0xff, 0x71, 0x31, 0x10, 0xff, 0x6b, 0x2c, 0x0c, 0xff, 0x6e, 0x30, 0x12, 0xff, 0x70, 0x31, 0x14, 0xff, 0x74, 0x33, 0x17, 0xff, 0x78, 0x38, 0x17, 0xff, 0x7d, 0x3b, 0x1c, 0xff, 0x80, 0x3e, 0x1d, 0xff, 0x80, 0x3a, 0x19, 0xff, 0x82, 0x3d, 0x1c, 0xff, 0x88, 0x46, 0x24, 0xff, 0x90, 0x4c, 0x27, 0xff, 0x99, 0x53, 0x2b, 0xff, 0x9d, 0x5a, 0x2f, 0xff, 0xa3, 0x63, 0x34, 0xff, 0xa6, 0x68, 0x3a, 0xff, 0xaa, 0x6d, 0x3b, 0xff, 0xae, 0x6f, 0x3b, 0xff, 0xb4, 0x70, 0x3b, 0xff, 0xb7, 0x6f, 0x39, 0xff, 0xbc, 0x75, 0x3c, 0xff, 0xc4, 0x7c, 0x43, 0xff, 0xc8, 0x80, 0x47, 0xff, 0xda, 0x8a, 0x4f, 0xff, 0xec, 0x95, 0x55, 0xff, 0xf6, 0x9d, 0x5b, 0xff, 0xf9, 0x9f, 0x62, 0xff, 0xf9, 0xa6, 0x66, 0xff, 0xf9, 0xac, 0x67, 0xff, 0xf8, 0xac, 0x68, 0xff, 0xf8, 0xac, 0x68, 0xff, 0xf8, 0xaf, 0x6d, 0xff, 0xf8, 0xb4, 0x6e, 0xff, 0xf9, 0xb4, 0x6f, 0xff, 0xf9, 0xb2, 0x70, 0xff, 0xf8, 0xae, 0x6f, 0xff, 0xf7, 0xad, 0x70, 0xff, 0xf8, 0xab, 0x6d, 0xff, 0xf6, 0xa3, 0x65, 0xff, 0xf0, 0x98, 0x5a, 0xff, 0xf2, 0x9b, 0x5b, 0xff, 0xf0, 0x9b, 0x5d, 0xff, 0xf0, 0x9b, 0x5c, 0xff, 0xf4, 0xa4, 0x5b, 0xff, 0xf6, 0xa7, 0x5b, 0xff, 0xf8, 0xa7, 0x5e, 0xff, 0xf7, 0xa9, 0x5f, 0xff, 0xf7, 0xaa, 0x61, 0xff, 0xf6, 0xab, 0x63, 0xff, 0xf8, 0xab, 0x67, 0xff, 0xf8, 0xaa, 0x68, 0xff, 0xf4, 0xab, 0x66, 0xff, 0xf0, 0xac, 0x61, 0xff, 0xf5, 0xa2, 0x60, 0xff, 0xf6, 0xa1, 0x62, 0xff, 0xf8, 0xa8, 0x65, 0xff, 0xf8, 0xa6, 0x61, 0xff, 0xf6, 0xa2, 0x5e, 0xff, 0xf4, 0x9a, 0x56, 0xff, 0xf5, 0x9c, 0x57, 0xff, 0xee, 0x9a, 0x55, 0xff, 0xe6, 0x9c, 0x53, 0xff, 0xe5, 0x9e, 0x53, 0xff, 0xe3, 0x9a, 0x50, 0xff, 0xe3, 0x9a, 0x52, 0xff, 0xe7, 0x9e, 0x55, 0xff, 0xe5, 0x9f, 0x55, 0xff, 0xe4, 0x9e, 0x5a, 0xff, 0xe4, 0x9e, 0x5f, 0xff, 0xe5, 0x98, 0x5a, 0xff, 0xe4, 0x99, 0x5a, 0xff, 0xe2, 0x97, 0x59, 0xff, 0xdf, 0x96, 0x59, 0xff, 0xd9, 0x91, 0x56, 0xff, 0xd3, 0x8f, 0x56, 0xff, 0xcc, 0x8f, 0x55, 0xff, 0xc8, 0x8b, 0x51, 0xff, 0xc3, 0x86, 0x4e, 0xff, 0xbf, 0x84, 0x4e, 0xff, 0xbb, 0x82, 0x4e, 0xff, 0xb8, 0x7f, 0x4a, 0xff, 0xb5, 0x7a, 0x48, 0xff, 0xb1, 0x76, 0x46, 0xff, 0xae, 0x74, 0x43, 0xff, 0xac, 0x71, 0x42, 0xff, 0xa9, 0x6f, 0x42, 0xff, 0xa6, 0x6b, 0x40, 0xff, 0xa3, 0x68, 0x3d, 0xff, 0xa2, 0x66, 0x39, 0xff, 0xa0, 0x65, 0x38, 0xff, 0x99, 0x5d, 0x34, 0xff, 0x92, 0x55, 0x2d, 0xff, 0x91, 0x54, 0x2d, 0xff, 0x90, 0x52, 0x2c, 0xff, 0x8c, 0x4e, 0x29, 0xff, 0x86, 0x49, 0x27, 0xff, 0x84, 0x46, 0x26, 0xff, 0x83, 0x44, 0x24, 0xff, 0x7e, 0x3f, 0x23, 0xff, 0x83, 0x46, 0x28, 0xff, 0x94, 0x55, 0x31, 0xff, 0x98, 0x58, 0x31, 0xff, 0x8d, 0x4f, 0x2b, 0xff, 0x86, 0x48, 0x29, 0xff, 0x84, 0x45, 0x28, 0xff, 0x81, 0x41, 0x26, 0xff, 0x7e, 0x3f, 0x25, 0xff, 0x7a, 0x3b, 0x23, 0xff, 0x77, 0x38, 0x1f, 0xff, 0x75, 0x35, 0x1d, 0xff, 0x71, 0x32, 0x19, 0xff, 0x6c, 0x31, 0x16, 0xff, 0x6a, 0x2e, 0x14, 0xff, 0x69, 0x2e, 0x13, 0xff, 0x68, 0x2c, 0x12, 0xff, 0x65, 0x2a, 0x12, 0xff, 0x64, 0x2a, 0x0f, 0xff, 0x64, 0x29, 0x0d, 0xff, 0x64, 0x29, 0x0d, 0xff, 0x65, 0x2a, 0x0c, 0xff, 0x64, 0x29, 0x0c, 0xff, 0x64, 0x29, 0x0c, 0xff, 0x66, 0x2a, 0x0c, 0xff, 0x65, 0x2b, 0x0c, 0xff, 0x67, 0x2b, 0x0d, 0xff, 0x68, 0x2b, 0x0e, 0xff, 0x68, 0x2d, 0x0f, 0xff, 0x6b, 0x2e, 0x0f, 0xff, 0x6d, 0x2f, 0x12, 0xff, 0x70, 0x31, 0x12, 0xff, 0x73, 0x31, 0x12, 0xff, 0x75, 0x34, 0x13, 0xff, 0x77, 0x36, 0x14, 0xff, 0x7b, 0x39, 0x16, 0xff, 0x7e, 0x3d, 0x18, 0xff, 0x82, 0x3f, 0x1b, 0xff, 0x87, 0x45, 0x1f, 0xff, 0x8d, 0x4b, 0x24, 0xff, 0x92, 0x4e, 0x27, 0xff, 0x97, 0x54, 0x2b, 0xff, 0x9f, 0x5e, 0x30, 0xff, 0xa1, 0x62, 0x2e, 0xff, 0xd4, 0x8b, 0x56, 0xff, 0xe1, 0x93, 0x5e, 0xff, 0xe6, 0x99, 0x62, 0xff, 0xeb, 0x9d, 0x65, 0xff, 0xf2, 0xa2, 0x6c, 0xff, 0xf7, 0xa4, 0x70, 0xff, 0xf9, 0xa9, 0x72, 0xff, 0xf6, 0xa4, 0x71, 0xff, 0xe9, 0x9d, 0x6a, 0xff, 0xe1, 0x97, 0x66, 0xff, 0xd5, 0x91, 0x61, 0xff, 0xca, 0x88, 0x58, 0xff, 0xc2, 0x80, 0x50, 0xff, 0xbd, 0x7a, 0x4b, 0xff, 0xba, 0x78, 0x49, 0xff, 0xb7, 0x73, 0x44, 0xff, 0xa9, 0x65, 0x36, 0xff, 0xa9, 0x67, 0x3a, 0xff, 0xac, 0x6a, 0x3b, 0xff, 0xab, 0x67, 0x3c, 0xff, 0xac, 0x69, 0x3c, 0xff, 0xae, 0x6b, 0x3d, 0xff, 0xaf, 0x6b, 0x3f, 0xff, 0xb1, 0x6e, 0x40, 0xff, 0xb6, 0x72, 0x41, 0xff, 0xb9, 0x74, 0x47, 0xff, 0x96, 0x58, 0x31, 0xff, 0x87, 0x47, 0x29, 0xff, 0x85, 0x46, 0x28, 0xff, 0x83, 0x44, 0x26, 0xff, 0x83, 0x42, 0x25, 0xff, 0x83, 0x43, 0x25, 0xff, 0x80, 0x42, 0x24, 0xff, 0x82, 0x3f, 0x24, 0xff, 0x80, 0x3d, 0x23, 0xff, 0x7d, 0x3c, 0x20, 0xff, 0x7b, 0x3b, 0x1f, 0xff, 0x77, 0x37, 0x1c, 0xff, 0x76, 0x38, 0x18, 0xff, 0x76, 0x35, 0x1a, 0xff, 0x76, 0x37, 0x18, 0xff, 0x76, 0x37, 0x1a, 0xff, 0x76, 0x38, 0x1a, 0xff, 0x76, 0x35, 0x1a, 0xff, 0x73, 0x33, 0x18, 0xff, 0x73, 0x32, 0x17, 0xff, 0x71, 0x32, 0x17, 0xff, 0x71, 0x34, 0x18, 0xff, 0x72, 0x34, 0x1a, 0xff, 0x72, 0x34, 0x1a, 0xff, 0x72, 0x34, 0x1a, 0xff, 0x72, 0x32, 0x17, 0xff, 0x70, 0x31, 0x14, 0xff, 0x75, 0x35, 0x19, 0xff, 0x7b, 0x3b, 0x21, 0xff, 0x7f, 0x3e, 0x23, 0xff, 0x80, 0x3f, 0x24, 0xff, 0x82, 0x43, 0x28, 0xff, 0x81, 0x41, 0x27, 0xff, 0x7e, 0x3e, 0x25, 0xff, 0x7e, 0x42, 0x28, 0xff, 0x7e, 0x42, 0x28, 0xff, 0x7e, 0x40, 0x27, 0xff, 0x79, 0x3a, 0x21, 0xff, 0x70, 0x34, 0x1a, 0xff, 0x6d, 0x31, 0x14, 0xff, 0x69, 0x2d, 0x12, 0xff, 0x66, 0x2b, 0x12, 0xff, + 0x63, 0x28, 0x0e, 0xff, 0x5f, 0x29, 0x0d, 0xff, 0x5f, 0x26, 0x0b, 0xff, 0x65, 0x2a, 0x12, 0xff, 0x64, 0x28, 0x0d, 0xff, 0x64, 0x2a, 0x0c, 0xff, 0x60, 0x26, 0x07, 0xff, 0x5f, 0x26, 0x0b, 0xff, 0x5d, 0x23, 0x06, 0xff, 0x5c, 0x24, 0x07, 0xff, 0x5d, 0x25, 0x07, 0xff, 0x5d, 0x25, 0x07, 0xff, 0x5f, 0x24, 0x09, 0xff, 0x5f, 0x25, 0x08, 0xff, 0x63, 0x27, 0x07, 0xff, 0x64, 0x27, 0x08, 0xff, 0x66, 0x28, 0x0b, 0xff, 0x6a, 0x2c, 0x0d, 0xff, 0x6d, 0x2c, 0x11, 0xff, 0x72, 0x32, 0x12, 0xff, 0x76, 0x33, 0x13, 0xff, 0x7c, 0x39, 0x1a, 0xff, 0x79, 0x39, 0x1b, 0xff, 0x72, 0x30, 0x14, 0xff, 0x76, 0x37, 0x1a, 0xff, 0x75, 0x33, 0x13, 0xff, 0x6f, 0x2f, 0x0f, 0xff, 0x6f, 0x2f, 0x11, 0xff, 0x72, 0x31, 0x14, 0xff, 0x78, 0x35, 0x17, 0xff, 0x7d, 0x3a, 0x19, 0xff, 0x82, 0x3f, 0x1f, 0xff, 0x89, 0x45, 0x24, 0xff, 0x89, 0x45, 0x24, 0xff, 0x88, 0x44, 0x22, 0xff, 0x8f, 0x49, 0x26, 0xff, 0x98, 0x52, 0x2a, 0xff, 0x9c, 0x57, 0x2c, 0xff, 0x9f, 0x5e, 0x30, 0xff, 0xa4, 0x63, 0x32, 0xff, 0xa7, 0x66, 0x34, 0xff, 0xac, 0x6c, 0x37, 0xff, 0xb0, 0x6e, 0x38, 0xff, 0xb9, 0x70, 0x3a, 0xff, 0xbb, 0x75, 0x3e, 0xff, 0xc0, 0x76, 0x40, 0xff, 0xc2, 0x7a, 0x43, 0xff, 0xca, 0x86, 0x48, 0xff, 0xd9, 0x8b, 0x4d, 0xff, 0xe6, 0x91, 0x52, 0xff, 0xf6, 0x98, 0x59, 0xff, 0xf9, 0x9d, 0x5f, 0xff, 0xf9, 0xa1, 0x61, 0xff, 0xf9, 0xa8, 0x66, 0xff, 0xf9, 0xa8, 0x67, 0xff, 0xf8, 0xaa, 0x67, 0xff, 0xf8, 0xab, 0x67, 0xff, 0xf9, 0xab, 0x68, 0xff, 0xf9, 0xa9, 0x69, 0xff, 0xf9, 0xaa, 0x6a, 0xff, 0xf9, 0xa8, 0x6a, 0xff, 0xf8, 0xa8, 0x69, 0xff, 0xf8, 0xa5, 0x69, 0xff, 0xef, 0xa5, 0x65, 0xff, 0xe8, 0x99, 0x57, 0xff, 0xe6, 0x95, 0x57, 0xff, 0xea, 0x9a, 0x58, 0xff, 0xf6, 0xa7, 0x59, 0xff, 0xf7, 0xa8, 0x5a, 0xff, 0xf5, 0xa6, 0x5b, 0xff, 0xf5, 0xa8, 0x5e, 0xff, 0xf7, 0xa8, 0x5f, 0xff, 0xf8, 0xa7, 0x63, 0xff, 0xf6, 0xaa, 0x65, 0xff, 0xf7, 0xa9, 0x67, 0xff, 0xf7, 0xab, 0x64, 0xff, 0xf1, 0xab, 0x61, 0xff, 0xf1, 0xa4, 0x62, 0xff, 0xf5, 0x9f, 0x61, 0xff, 0xf6, 0xa6, 0x61, 0xff, 0xf7, 0xa8, 0x61, 0xff, 0xf8, 0xa4, 0x5e, 0xff, 0xf5, 0x9b, 0x56, 0xff, 0xf3, 0x9a, 0x56, 0xff, 0xef, 0x9a, 0x53, 0xff, 0xe6, 0x98, 0x4e, 0xff, 0xe8, 0x9c, 0x53, 0xff, 0xe8, 0x9e, 0x53, 0xff, 0xe8, 0x9d, 0x53, 0xff, 0xe8, 0x9e, 0x56, 0xff, 0xeb, 0x9f, 0x58, 0xff, 0xea, 0xa0, 0x5b, 0xff, 0xee, 0xa4, 0x5d, 0xff, 0xef, 0x9d, 0x5f, 0xff, 0xee, 0x9c, 0x5e, 0xff, 0xec, 0x9d, 0x5f, 0xff, 0xeb, 0x9b, 0x5d, 0xff, 0xe5, 0x97, 0x5c, 0xff, 0xdc, 0x96, 0x5c, 0xff, 0xd3, 0x91, 0x56, 0xff, 0xcd, 0x8e, 0x55, 0xff, 0xc8, 0x8e, 0x56, 0xff, 0xc4, 0x8a, 0x54, 0xff, 0xc1, 0x86, 0x52, 0xff, 0xbd, 0x81, 0x4f, 0xff, 0xb9, 0x7f, 0x4a, 0xff, 0xb5, 0x7b, 0x48, 0xff, 0xb1, 0x78, 0x47, 0xff, 0xaf, 0x75, 0x44, 0xff, 0xac, 0x72, 0x43, 0xff, 0xaa, 0x71, 0x41, 0xff, 0xa8, 0x6c, 0x3e, 0xff, 0xa5, 0x6a, 0x3e, 0xff, 0xa2, 0x68, 0x3a, 0xff, 0x9c, 0x5f, 0x33, 0xff, 0x97, 0x59, 0x2f, 0xff, 0x93, 0x56, 0x2e, 0xff, 0x91, 0x54, 0x2d, 0xff, 0x8e, 0x51, 0x2a, 0xff, 0x8a, 0x4c, 0x28, 0xff, 0x86, 0x48, 0x28, 0xff, 0x83, 0x46, 0x26, 0xff, 0x81, 0x43, 0x24, 0xff, 0x91, 0x53, 0x30, 0xff, 0x9d, 0x5d, 0x34, 0xff, 0x94, 0x53, 0x2d, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x89, 0x4b, 0x2a, 0xff, 0x85, 0x47, 0x27, 0xff, 0x81, 0x43, 0x26, 0xff, 0x7d, 0x3f, 0x24, 0xff, 0x79, 0x3a, 0x21, 0xff, 0x76, 0x38, 0x1e, 0xff, 0x74, 0x36, 0x1b, 0xff, 0x71, 0x33, 0x1a, 0xff, 0x6e, 0x2e, 0x17, 0xff, 0x69, 0x2c, 0x12, 0xff, 0x67, 0x2d, 0x12, 0xff, 0x67, 0x2b, 0x11, 0xff, 0x65, 0x2a, 0x0f, 0xff, 0x63, 0x2a, 0x0d, 0xff, 0x61, 0x2a, 0x0c, 0xff, 0x60, 0x28, 0x0b, 0xff, 0x60, 0x28, 0x0b, 0xff, 0x5f, 0x27, 0x09, 0xff, 0x60, 0x27, 0x0a, 0xff, 0x62, 0x27, 0x0b, 0xff, 0x63, 0x27, 0x0b, 0xff, 0x62, 0x27, 0x0b, 0xff, 0x63, 0x27, 0x0b, 0xff, 0x65, 0x2a, 0x0b, 0xff, 0x68, 0x2b, 0x0b, 0xff, 0x6a, 0x2d, 0x0c, 0xff, 0x6b, 0x2e, 0x0e, 0xff, 0x6c, 0x2e, 0x0e, 0xff, 0x6f, 0x2e, 0x0e, 0xff, 0x74, 0x31, 0x11, 0xff, 0x75, 0x34, 0x13, 0xff, 0x79, 0x37, 0x13, 0xff, 0x7e, 0x3c, 0x17, 0xff, 0x80, 0x3e, 0x1a, 0xff, 0x84, 0x41, 0x1f, 0xff, 0x89, 0x49, 0x23, 0xff, 0x8f, 0x4e, 0x25, 0xff, 0x92, 0x52, 0x27, 0xff, 0xa2, 0x5f, 0x32, 0xff, 0xbf, 0x7e, 0x4a, 0xff, 0xc4, 0x82, 0x4f, 0xff, 0xc2, 0x80, 0x50, 0xff, 0xc7, 0x86, 0x55, 0xff, 0xcd, 0x8c, 0x57, 0xff, 0xd4, 0x8e, 0x5c, 0xff, 0xdc, 0x92, 0x61, 0xff, 0xda, 0x93, 0x62, 0xff, 0xcd, 0x8d, 0x5d, 0xff, 0xc7, 0x85, 0x57, 0xff, 0xc1, 0x80, 0x54, 0xff, 0xbc, 0x7e, 0x4f, 0xff, 0xb7, 0x78, 0x48, 0xff, 0xb4, 0x73, 0x43, 0xff, 0xb2, 0x70, 0x40, 0xff, 0xb3, 0x6d, 0x3d, 0xff, 0xb6, 0x72, 0x42, 0xff, 0xb0, 0x6d, 0x3c, 0xff, 0xab, 0x69, 0x3a, 0xff, 0xac, 0x68, 0x3b, 0xff, 0xa9, 0x65, 0x3a, 0xff, 0xaa, 0x66, 0x3b, 0xff, 0xaa, 0x65, 0x3b, 0xff, 0xab, 0x65, 0x3c, 0xff, 0xb0, 0x6c, 0x3f, 0xff, 0xad, 0x6c, 0x3f, 0xff, 0x8c, 0x4d, 0x2d, 0xff, 0x89, 0x4b, 0x29, 0xff, 0x84, 0x44, 0x28, 0xff, 0x85, 0x45, 0x26, 0xff, 0x81, 0x43, 0x25, 0xff, 0x81, 0x40, 0x24, 0xff, 0x7f, 0x40, 0x23, 0xff, 0x7f, 0x3c, 0x22, 0xff, 0x7f, 0x3e, 0x21, 0xff, 0x7c, 0x3a, 0x1f, 0xff, 0x78, 0x39, 0x1f, 0xff, 0x76, 0x36, 0x1b, 0xff, 0x76, 0x33, 0x1b, 0xff, 0x75, 0x34, 0x1b, 0xff, 0x76, 0x35, 0x1b, 0xff, 0x76, 0x37, 0x20, 0xff, 0x77, 0x38, 0x21, 0xff, 0x77, 0x38, 0x20, 0xff, 0x76, 0x38, 0x1f, 0xff, 0x76, 0x36, 0x1b, 0xff, 0x71, 0x34, 0x17, 0xff, 0x71, 0x34, 0x18, 0xff, 0x74, 0x35, 0x1c, 0xff, 0x74, 0x37, 0x1d, 0xff, 0x74, 0x37, 0x1a, 0xff, 0x74, 0x33, 0x19, 0xff, 0x78, 0x38, 0x21, 0xff, 0x7a, 0x38, 0x22, 0xff, 0x7f, 0x3e, 0x21, 0xff, 0x7e, 0x3d, 0x20, 0xff, 0x7f, 0x3d, 0x22, 0xff, 0x81, 0x42, 0x27, 0xff, 0x80, 0x41, 0x26, 0xff, 0x7d, 0x3e, 0x25, 0xff, 0x7d, 0x41, 0x27, 0xff, 0x7b, 0x41, 0x26, 0xff, 0x7b, 0x3d, 0x24, 0xff, 0x77, 0x39, 0x1f, 0xff, 0x6f, 0x31, 0x17, 0xff, 0x69, 0x2e, 0x14, 0xff, 0x66, 0x2b, 0x11, 0xff, 0x64, 0x2b, 0x12, 0xff, + 0x61, 0x28, 0x0d, 0xff, 0x62, 0x29, 0x0e, 0xff, 0x65, 0x28, 0x0f, 0xff, 0x65, 0x28, 0x0e, 0xff, 0x63, 0x27, 0x0b, 0xff, 0x63, 0x26, 0x08, 0xff, 0x5f, 0x25, 0x09, 0xff, 0x5c, 0x25, 0x09, 0xff, 0x5a, 0x22, 0x07, 0xff, 0x57, 0x1f, 0x06, 0xff, 0x59, 0x21, 0x06, 0xff, 0x59, 0x22, 0x06, 0xff, 0x5b, 0x22, 0x06, 0xff, 0x5e, 0x25, 0x08, 0xff, 0x60, 0x25, 0x07, 0xff, 0x62, 0x27, 0x08, 0xff, 0x63, 0x26, 0x09, 0xff, 0x67, 0x2a, 0x0c, 0xff, 0x6c, 0x2c, 0x0d, 0xff, 0x6f, 0x2d, 0x12, 0xff, 0x72, 0x31, 0x12, 0xff, 0x71, 0x30, 0x13, 0xff, 0x6f, 0x2e, 0x13, 0xff, 0x71, 0x31, 0x14, 0xff, 0x71, 0x31, 0x14, 0xff, 0x75, 0x33, 0x16, 0xff, 0x73, 0x31, 0x15, 0xff, 0x73, 0x31, 0x15, 0xff, 0x6f, 0x2f, 0x11, 0xff, 0x74, 0x32, 0x15, 0xff, 0x7a, 0x37, 0x16, 0xff, 0x80, 0x3b, 0x1c, 0xff, 0x84, 0x40, 0x20, 0xff, 0x8a, 0x44, 0x23, 0xff, 0x8c, 0x45, 0x23, 0xff, 0x8b, 0x46, 0x22, 0xff, 0x90, 0x4b, 0x26, 0xff, 0x97, 0x52, 0x29, 0xff, 0x9d, 0x58, 0x2d, 0xff, 0xa0, 0x5e, 0x30, 0xff, 0xa4, 0x65, 0x33, 0xff, 0xa9, 0x65, 0x33, 0xff, 0xad, 0x67, 0x34, 0xff, 0xb3, 0x6b, 0x34, 0xff, 0xb7, 0x70, 0x37, 0xff, 0xbd, 0x74, 0x3d, 0xff, 0xc4, 0x7e, 0x43, 0xff, 0xc4, 0x80, 0x44, 0xff, 0xca, 0x84, 0x47, 0xff, 0xd3, 0x87, 0x4a, 0xff, 0xe0, 0x8e, 0x51, 0xff, 0xed, 0x91, 0x53, 0xff, 0xf4, 0x97, 0x57, 0xff, 0xf9, 0x9d, 0x5e, 0xff, 0xf9, 0xa1, 0x63, 0xff, 0xf9, 0xa5, 0x63, 0xff, 0xf9, 0xa7, 0x63, 0xff, 0xf9, 0xa6, 0x63, 0xff, 0xf9, 0xa7, 0x64, 0xff, 0xf9, 0xa7, 0x65, 0xff, 0xf8, 0xa3, 0x65, 0xff, 0xf9, 0xa1, 0x64, 0xff, 0xf9, 0x9f, 0x64, 0xff, 0xf9, 0xa8, 0x6a, 0xff, 0xf5, 0xae, 0x6c, 0xff, 0xe6, 0x9b, 0x5a, 0xff, 0xef, 0xa0, 0x57, 0xff, 0xf6, 0xa6, 0x57, 0xff, 0xf7, 0xa2, 0x58, 0xff, 0xf8, 0xa6, 0x5b, 0xff, 0xf6, 0xa8, 0x5e, 0xff, 0xf7, 0xa9, 0x60, 0xff, 0xf6, 0xa8, 0x62, 0xff, 0xf7, 0xaa, 0x64, 0xff, 0xf8, 0xa8, 0x66, 0xff, 0xf5, 0xa7, 0x64, 0xff, 0xf4, 0xa9, 0x5f, 0xff, 0xf4, 0xa7, 0x64, 0xff, 0xf6, 0xa2, 0x62, 0xff, 0xf7, 0xa9, 0x61, 0xff, 0xf9, 0xa7, 0x62, 0xff, 0xf7, 0xa4, 0x5f, 0xff, 0xf4, 0xa0, 0x5c, 0xff, 0xf7, 0x9c, 0x58, 0xff, 0xf2, 0x9c, 0x57, 0xff, 0xea, 0x9d, 0x51, 0xff, 0xec, 0x9f, 0x50, 0xff, 0xed, 0x9f, 0x56, 0xff, 0xe9, 0xa3, 0x55, 0xff, 0xec, 0xa2, 0x56, 0xff, 0xef, 0xa2, 0x5b, 0xff, 0xee, 0xa7, 0x61, 0xff, 0xef, 0xa6, 0x64, 0xff, 0xf3, 0xa3, 0x63, 0xff, 0xf9, 0xa7, 0x64, 0xff, 0xf7, 0xa5, 0x64, 0xff, 0xf3, 0xa2, 0x64, 0xff, 0xf2, 0x9f, 0x62, 0xff, 0xec, 0x9f, 0x5f, 0xff, 0xe1, 0x9b, 0x5b, 0xff, 0xd9, 0x97, 0x59, 0xff, 0xd2, 0x93, 0x57, 0xff, 0xcc, 0x90, 0x57, 0xff, 0xc7, 0x8d, 0x56, 0xff, 0xc3, 0x87, 0x53, 0xff, 0xbe, 0x82, 0x4d, 0xff, 0xb9, 0x7e, 0x4a, 0xff, 0xb7, 0x7b, 0x49, 0xff, 0xb3, 0x78, 0x47, 0xff, 0xaf, 0x74, 0x45, 0xff, 0xac, 0x73, 0x44, 0xff, 0xaa, 0x70, 0x40, 0xff, 0xa8, 0x6c, 0x3d, 0xff, 0xa3, 0x67, 0x39, 0xff, 0x9d, 0x60, 0x34, 0xff, 0x9a, 0x5b, 0x32, 0xff, 0x97, 0x59, 0x30, 0xff, 0x93, 0x55, 0x2e, 0xff, 0x8f, 0x52, 0x2b, 0xff, 0x8c, 0x4f, 0x2a, 0xff, 0x8a, 0x4b, 0x29, 0xff, 0x85, 0x46, 0x25, 0xff, 0x8a, 0x4e, 0x2a, 0xff, 0x9a, 0x5e, 0x35, 0xff, 0x9e, 0x61, 0x35, 0xff, 0x94, 0x56, 0x2f, 0xff, 0x8e, 0x50, 0x2d, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x86, 0x47, 0x28, 0xff, 0x83, 0x43, 0x26, 0xff, 0x7d, 0x3d, 0x23, 0xff, 0x78, 0x38, 0x21, 0xff, 0x76, 0x38, 0x1e, 0xff, 0x74, 0x36, 0x1c, 0xff, 0x70, 0x32, 0x18, 0xff, 0x6d, 0x2e, 0x15, 0xff, 0x6a, 0x2c, 0x14, 0xff, 0x67, 0x2c, 0x12, 0xff, 0x65, 0x2b, 0x12, 0xff, 0x64, 0x2a, 0x10, 0xff, 0x62, 0x29, 0x0d, 0xff, 0x60, 0x28, 0x0b, 0xff, 0x5c, 0x27, 0x0a, 0xff, 0x5a, 0x24, 0x09, 0xff, 0x5a, 0x23, 0x0a, 0xff, 0x5b, 0x24, 0x09, 0xff, 0x5c, 0x24, 0x07, 0xff, 0x5d, 0x24, 0x07, 0xff, 0x5d, 0x25, 0x08, 0xff, 0x5e, 0x26, 0x09, 0xff, 0x61, 0x27, 0x07, 0xff, 0x61, 0x27, 0x07, 0xff, 0x63, 0x27, 0x08, 0xff, 0x65, 0x2a, 0x0a, 0xff, 0x67, 0x2c, 0x0b, 0xff, 0x6b, 0x2c, 0x0b, 0xff, 0x6d, 0x2e, 0x0c, 0xff, 0x71, 0x30, 0x10, 0xff, 0x73, 0x33, 0x12, 0xff, 0x77, 0x37, 0x13, 0xff, 0x7b, 0x3b, 0x17, 0xff, 0x7f, 0x3f, 0x1a, 0xff, 0x83, 0x41, 0x1f, 0xff, 0x88, 0x47, 0x23, 0xff, 0x89, 0x48, 0x22, 0xff, 0xa3, 0x66, 0x37, 0xff, 0xb5, 0x75, 0x43, 0xff, 0xb6, 0x75, 0x46, 0xff, 0xb6, 0x76, 0x45, 0xff, 0xb8, 0x76, 0x47, 0xff, 0xba, 0x78, 0x49, 0xff, 0xbb, 0x7c, 0x4c, 0xff, 0xbd, 0x7f, 0x4f, 0xff, 0xbe, 0x80, 0x51, 0xff, 0xba, 0x7c, 0x4e, 0xff, 0xb8, 0x79, 0x4b, 0xff, 0xb7, 0x76, 0x4a, 0xff, 0xb5, 0x74, 0x47, 0xff, 0xb4, 0x73, 0x46, 0xff, 0xb2, 0x6f, 0x43, 0xff, 0xb1, 0x6e, 0x40, 0xff, 0xb1, 0x6c, 0x3c, 0xff, 0xb7, 0x71, 0x43, 0xff, 0xb8, 0x74, 0x43, 0xff, 0xb6, 0x71, 0x41, 0xff, 0xb1, 0x6e, 0x3f, 0xff, 0xb6, 0x72, 0x43, 0xff, 0xb0, 0x6e, 0x3e, 0xff, 0xab, 0x67, 0x3b, 0xff, 0xab, 0x67, 0x3b, 0xff, 0xad, 0x66, 0x3c, 0xff, 0x9c, 0x59, 0x32, 0xff, 0x8b, 0x4b, 0x2c, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x86, 0x48, 0x28, 0xff, 0x83, 0x44, 0x26, 0xff, 0x81, 0x40, 0x24, 0xff, 0x80, 0x3f, 0x24, 0xff, 0x7f, 0x3c, 0x22, 0xff, 0x7e, 0x3c, 0x22, 0xff, 0x7a, 0x3a, 0x20, 0xff, 0x77, 0x38, 0x1d, 0xff, 0x78, 0x38, 0x1c, 0xff, 0x77, 0x36, 0x1c, 0xff, 0x77, 0x38, 0x1f, 0xff, 0x78, 0x38, 0x1f, 0xff, 0x76, 0x39, 0x1f, 0xff, 0x76, 0x39, 0x20, 0xff, 0x77, 0x39, 0x1f, 0xff, 0x76, 0x37, 0x1f, 0xff, 0x76, 0x38, 0x1d, 0xff, 0x76, 0x36, 0x1c, 0xff, 0x73, 0x34, 0x1a, 0xff, 0x74, 0x33, 0x1a, 0xff, 0x72, 0x35, 0x1a, 0xff, 0x72, 0x33, 0x1c, 0xff, 0x76, 0x37, 0x1d, 0xff, 0x7a, 0x3a, 0x22, 0xff, 0x79, 0x3a, 0x20, 0xff, 0x7c, 0x3a, 0x22, 0xff, 0x7b, 0x3a, 0x1f, 0xff, 0x79, 0x38, 0x1e, 0xff, 0x7c, 0x3c, 0x21, 0xff, 0x81, 0x42, 0x28, 0xff, 0x7f, 0x3f, 0x26, 0xff, 0x7d, 0x3d, 0x24, 0xff, 0x7c, 0x3f, 0x26, 0xff, 0x7a, 0x3e, 0x24, 0xff, 0x7a, 0x3b, 0x23, 0xff, 0x76, 0x37, 0x1f, 0xff, 0x6f, 0x30, 0x16, 0xff, 0x6a, 0x2e, 0x14, 0xff, 0x68, 0x2b, 0x11, 0xff, 0x64, 0x2a, 0x0e, 0xff, + 0x63, 0x2a, 0x0e, 0xff, 0x60, 0x26, 0x0c, 0xff, 0x62, 0x26, 0x0d, 0xff, 0x65, 0x28, 0x0d, 0xff, 0x63, 0x27, 0x0b, 0xff, 0x5f, 0x26, 0x0b, 0xff, 0x5b, 0x22, 0x07, 0xff, 0x5a, 0x22, 0x07, 0xff, 0x56, 0x1f, 0x04, 0xff, 0x54, 0x1e, 0x04, 0xff, 0x54, 0x20, 0x04, 0xff, 0x56, 0x1e, 0x04, 0xff, 0x56, 0x1e, 0x04, 0xff, 0x5b, 0x23, 0x06, 0xff, 0x5c, 0x24, 0x07, 0xff, 0x5e, 0x24, 0x04, 0xff, 0x61, 0x26, 0x06, 0xff, 0x62, 0x27, 0x0b, 0xff, 0x6b, 0x2c, 0x0b, 0xff, 0x6b, 0x2c, 0x0e, 0xff, 0x66, 0x29, 0x0c, 0xff, 0x68, 0x29, 0x0c, 0xff, 0x6d, 0x2c, 0x10, 0xff, 0x6d, 0x2c, 0x0f, 0xff, 0x6e, 0x2f, 0x11, 0xff, 0x6b, 0x2c, 0x0f, 0xff, 0x6c, 0x2d, 0x10, 0xff, 0x71, 0x2f, 0x12, 0xff, 0x73, 0x32, 0x15, 0xff, 0x72, 0x30, 0x13, 0xff, 0x77, 0x34, 0x13, 0xff, 0x7b, 0x37, 0x18, 0xff, 0x80, 0x3c, 0x1c, 0xff, 0x86, 0x42, 0x1f, 0xff, 0x8c, 0x46, 0x22, 0xff, 0x8e, 0x49, 0x23, 0xff, 0x8b, 0x45, 0x22, 0xff, 0x93, 0x4d, 0x25, 0xff, 0x99, 0x54, 0x29, 0xff, 0x9d, 0x58, 0x2c, 0xff, 0xa0, 0x5d, 0x2f, 0xff, 0xa5, 0x64, 0x32, 0xff, 0xaa, 0x69, 0x34, 0xff, 0xab, 0x6a, 0x35, 0xff, 0xaf, 0x69, 0x33, 0xff, 0xb5, 0x6f, 0x38, 0xff, 0xbd, 0x77, 0x3e, 0xff, 0xc2, 0x7b, 0x40, 0xff, 0xc8, 0x81, 0x45, 0xff, 0xcf, 0x83, 0x49, 0xff, 0xd2, 0x86, 0x49, 0xff, 0xdb, 0x89, 0x4b, 0xff, 0xe6, 0x8e, 0x4e, 0xff, 0xf2, 0x95, 0x53, 0xff, 0xf8, 0x9d, 0x59, 0xff, 0xf8, 0xa1, 0x5e, 0xff, 0xf9, 0xa4, 0x5f, 0xff, 0xf9, 0xa6, 0x62, 0xff, 0xf9, 0xa3, 0x62, 0xff, 0xf9, 0xa2, 0x62, 0xff, 0xf9, 0xa0, 0x62, 0xff, 0xf9, 0x9e, 0x62, 0xff, 0xf9, 0x9d, 0x63, 0xff, 0xf9, 0xa1, 0x65, 0xff, 0xf9, 0xa5, 0x64, 0xff, 0xf8, 0xaa, 0x66, 0xff, 0xf3, 0xaa, 0x5f, 0xff, 0xf5, 0xa2, 0x56, 0xff, 0xf7, 0xa5, 0x57, 0xff, 0xf7, 0xa6, 0x5a, 0xff, 0xf6, 0xa5, 0x5d, 0xff, 0xf5, 0xa7, 0x5f, 0xff, 0xf6, 0xa8, 0x60, 0xff, 0xf7, 0xa9, 0x64, 0xff, 0xf6, 0xa6, 0x64, 0xff, 0xf5, 0xa6, 0x65, 0xff, 0xf4, 0xab, 0x63, 0xff, 0xf4, 0xa7, 0x5f, 0xff, 0xf6, 0xa0, 0x60, 0xff, 0xf7, 0xa5, 0x61, 0xff, 0xf6, 0xa5, 0x61, 0xff, 0xf6, 0xa5, 0x61, 0xff, 0xf7, 0xa3, 0x5e, 0xff, 0xf7, 0x9c, 0x56, 0xff, 0xf1, 0x9b, 0x55, 0xff, 0xec, 0x9d, 0x52, 0xff, 0xef, 0x9e, 0x54, 0xff, 0xee, 0x9e, 0x54, 0xff, 0xeb, 0x9f, 0x54, 0xff, 0xec, 0xa3, 0x58, 0xff, 0xf0, 0xa7, 0x5e, 0xff, 0xef, 0xac, 0x67, 0xff, 0xf3, 0xac, 0x6c, 0xff, 0xf8, 0xa8, 0x6a, 0xff, 0xf8, 0xa8, 0x68, 0xff, 0xf7, 0xaa, 0x69, 0xff, 0xf6, 0xaa, 0x69, 0xff, 0xf7, 0xa7, 0x68, 0xff, 0xf7, 0xa6, 0x66, 0xff, 0xf2, 0xa2, 0x64, 0xff, 0xe9, 0x9e, 0x5f, 0xff, 0xe0, 0x9b, 0x5d, 0xff, 0xd7, 0x97, 0x5c, 0xff, 0xce, 0x91, 0x59, 0xff, 0xc7, 0x8c, 0x55, 0xff, 0xc2, 0x88, 0x51, 0xff, 0xbf, 0x83, 0x4d, 0xff, 0xbb, 0x80, 0x4c, 0xff, 0xb6, 0x7c, 0x4b, 0xff, 0xb4, 0x79, 0x49, 0xff, 0xb0, 0x76, 0x46, 0xff, 0xac, 0x72, 0x43, 0xff, 0xa9, 0x71, 0x42, 0xff, 0xa4, 0x6a, 0x3d, 0xff, 0x9e, 0x63, 0x36, 0xff, 0x9d, 0x5f, 0x33, 0xff, 0x9a, 0x5b, 0x33, 0xff, 0x97, 0x59, 0x31, 0xff, 0x92, 0x55, 0x2d, 0xff, 0x8f, 0x51, 0x2c, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x89, 0x4a, 0x28, 0xff, 0x99, 0x5b, 0x35, 0xff, 0xa3, 0x65, 0x3b, 0xff, 0x9b, 0x5c, 0x33, 0xff, 0x96, 0x55, 0x30, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x88, 0x49, 0x29, 0xff, 0x85, 0x45, 0x27, 0xff, 0x7f, 0x3e, 0x24, 0xff, 0x79, 0x3a, 0x21, 0xff, 0x77, 0x39, 0x1e, 0xff, 0x74, 0x36, 0x1b, 0xff, 0x70, 0x32, 0x18, 0xff, 0x6b, 0x2f, 0x16, 0xff, 0x69, 0x2d, 0x13, 0xff, 0x68, 0x2c, 0x11, 0xff, 0x66, 0x2c, 0x11, 0xff, 0x63, 0x2a, 0x0f, 0xff, 0x60, 0x28, 0x0d, 0xff, 0x5c, 0x26, 0x0b, 0xff, 0x58, 0x24, 0x08, 0xff, 0x58, 0x21, 0x07, 0xff, 0x58, 0x24, 0x07, 0xff, 0x57, 0x25, 0x06, 0xff, 0x57, 0x20, 0x05, 0xff, 0x56, 0x22, 0x05, 0xff, 0x58, 0x23, 0x07, 0xff, 0x59, 0x22, 0x05, 0xff, 0x5a, 0x23, 0x04, 0xff, 0x5c, 0x24, 0x05, 0xff, 0x5f, 0x25, 0x05, 0xff, 0x62, 0x25, 0x05, 0xff, 0x63, 0x28, 0x07, 0xff, 0x66, 0x29, 0x0a, 0xff, 0x69, 0x29, 0x0a, 0xff, 0x6e, 0x2e, 0x0c, 0xff, 0x70, 0x30, 0x0f, 0xff, 0x74, 0x33, 0x11, 0xff, 0x76, 0x35, 0x13, 0xff, 0x7a, 0x39, 0x17, 0xff, 0x7e, 0x3d, 0x1b, 0xff, 0x80, 0x42, 0x1f, 0xff, 0x80, 0x3f, 0x20, 0xff, 0xa2, 0x61, 0x36, 0xff, 0xb0, 0x6c, 0x3e, 0xff, 0xae, 0x6d, 0x3b, 0xff, 0xad, 0x6c, 0x3d, 0xff, 0xac, 0x6b, 0x3c, 0xff, 0xad, 0x6c, 0x3d, 0xff, 0xad, 0x6e, 0x3e, 0xff, 0xae, 0x6f, 0x40, 0xff, 0xb2, 0x6f, 0x42, 0xff, 0xac, 0x6e, 0x40, 0xff, 0xac, 0x6b, 0x40, 0xff, 0xad, 0x6b, 0x40, 0xff, 0xaf, 0x6f, 0x42, 0xff, 0xb2, 0x73, 0x48, 0xff, 0xb0, 0x76, 0x49, 0xff, 0xb1, 0x74, 0x49, 0xff, 0xb1, 0x70, 0x42, 0xff, 0xb2, 0x6d, 0x3f, 0xff, 0xb0, 0x6a, 0x3b, 0xff, 0xb1, 0x6b, 0x3b, 0xff, 0xb1, 0x6b, 0x3d, 0xff, 0xab, 0x67, 0x39, 0xff, 0xac, 0x68, 0x3a, 0xff, 0xad, 0x6b, 0x3d, 0xff, 0xb1, 0x6e, 0x3f, 0xff, 0xb2, 0x6d, 0x3d, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x8b, 0x4b, 0x2c, 0xff, 0x8c, 0x4d, 0x2c, 0xff, 0x8d, 0x4d, 0x2c, 0xff, 0x82, 0x42, 0x26, 0xff, 0x80, 0x3f, 0x24, 0xff, 0x7f, 0x3f, 0x23, 0xff, 0x7d, 0x3b, 0x21, 0xff, 0x7a, 0x3a, 0x20, 0xff, 0x79, 0x39, 0x1f, 0xff, 0x7a, 0x3b, 0x20, 0xff, 0x79, 0x39, 0x1f, 0xff, 0x78, 0x39, 0x1f, 0xff, 0x77, 0x37, 0x1d, 0xff, 0x74, 0x35, 0x1d, 0xff, 0x74, 0x36, 0x1e, 0xff, 0x75, 0x35, 0x1c, 0xff, 0x73, 0x36, 0x1b, 0xff, 0x75, 0x35, 0x1b, 0xff, 0x73, 0x35, 0x1b, 0xff, 0x72, 0x35, 0x18, 0xff, 0x70, 0x31, 0x18, 0xff, 0x6e, 0x31, 0x19, 0xff, 0x70, 0x31, 0x19, 0xff, 0x73, 0x34, 0x1a, 0xff, 0x72, 0x33, 0x18, 0xff, 0x72, 0x32, 0x1a, 0xff, 0x78, 0x38, 0x1f, 0xff, 0x7a, 0x3a, 0x1e, 0xff, 0x77, 0x38, 0x1d, 0xff, 0x77, 0x38, 0x19, 0xff, 0x7c, 0x3b, 0x21, 0xff, 0x80, 0x42, 0x27, 0xff, 0x7f, 0x3f, 0x24, 0xff, 0x7d, 0x3c, 0x24, 0xff, 0x7b, 0x3e, 0x24, 0xff, 0x7b, 0x3a, 0x23, 0xff, 0x78, 0x39, 0x1f, 0xff, 0x73, 0x35, 0x1c, 0xff, 0x6c, 0x2d, 0x14, 0xff, 0x67, 0x2c, 0x12, 0xff, 0x66, 0x29, 0x10, 0xff, 0x64, 0x28, 0x0e, 0xff, + 0x62, 0x26, 0x0b, 0xff, 0x5e, 0x25, 0x09, 0xff, 0x5e, 0x26, 0x0a, 0xff, 0x5d, 0x25, 0x0b, 0xff, 0x62, 0x25, 0x0a, 0xff, 0x5c, 0x22, 0x07, 0xff, 0x57, 0x21, 0x07, 0xff, 0x54, 0x22, 0x04, 0xff, 0x52, 0x19, 0x04, 0xff, 0x52, 0x1a, 0x04, 0xff, 0x52, 0x1d, 0x04, 0xff, 0x56, 0x19, 0x04, 0xff, 0x58, 0x1d, 0x04, 0xff, 0x57, 0x1f, 0x04, 0xff, 0x5b, 0x24, 0x07, 0xff, 0x5c, 0x24, 0x06, 0xff, 0x5e, 0x25, 0x04, 0xff, 0x63, 0x26, 0x07, 0xff, 0x66, 0x28, 0x0b, 0xff, 0x5e, 0x23, 0x05, 0xff, 0x5e, 0x24, 0x07, 0xff, 0x60, 0x26, 0x07, 0xff, 0x64, 0x28, 0x08, 0xff, 0x65, 0x28, 0x0b, 0xff, 0x66, 0x2a, 0x0b, 0xff, 0x69, 0x2b, 0x0d, 0xff, 0x6b, 0x2c, 0x0d, 0xff, 0x6d, 0x2e, 0x11, 0xff, 0x71, 0x30, 0x14, 0xff, 0x74, 0x33, 0x11, 0xff, 0x74, 0x32, 0x13, 0xff, 0x77, 0x35, 0x13, 0xff, 0x7c, 0x38, 0x15, 0xff, 0x83, 0x3f, 0x1c, 0xff, 0x89, 0x43, 0x1f, 0xff, 0x8d, 0x47, 0x23, 0xff, 0x92, 0x4a, 0x25, 0xff, 0x8b, 0x45, 0x22, 0xff, 0x92, 0x4c, 0x26, 0xff, 0x98, 0x52, 0x29, 0xff, 0x9c, 0x58, 0x2b, 0xff, 0x9f, 0x5d, 0x2e, 0xff, 0xa6, 0x61, 0x31, 0xff, 0xa8, 0x64, 0x33, 0xff, 0xac, 0x66, 0x35, 0xff, 0xb3, 0x6b, 0x35, 0xff, 0xb8, 0x71, 0x39, 0xff, 0xbc, 0x76, 0x3d, 0xff, 0xc0, 0x7a, 0x40, 0xff, 0xc7, 0x7f, 0x44, 0xff, 0xd1, 0x85, 0x48, 0xff, 0xd7, 0x88, 0x49, 0xff, 0xda, 0x8a, 0x4b, 0xff, 0xe7, 0x8d, 0x50, 0xff, 0xf5, 0x96, 0x53, 0xff, 0xf8, 0x9e, 0x58, 0xff, 0xf8, 0x9f, 0x5e, 0xff, 0xf9, 0xa2, 0x61, 0xff, 0xf9, 0xa5, 0x62, 0xff, 0xf9, 0xa1, 0x61, 0xff, 0xf9, 0x9f, 0x62, 0xff, 0xf9, 0x9b, 0x60, 0xff, 0xf7, 0x9c, 0x60, 0xff, 0xf9, 0x9d, 0x63, 0xff, 0xf9, 0xa4, 0x62, 0xff, 0xf9, 0xae, 0x62, 0xff, 0xf9, 0xb1, 0x66, 0xff, 0xf7, 0xad, 0x64, 0xff, 0xf1, 0x9f, 0x55, 0xff, 0xf8, 0xa6, 0x58, 0xff, 0xf7, 0xa4, 0x5a, 0xff, 0xf6, 0xa4, 0x5b, 0xff, 0xf9, 0xa6, 0x62, 0xff, 0xf8, 0xa5, 0x62, 0xff, 0xf8, 0xa6, 0x65, 0xff, 0xf5, 0xa4, 0x62, 0xff, 0xf3, 0xa5, 0x64, 0xff, 0xf4, 0xa5, 0x5d, 0xff, 0xf7, 0xa0, 0x61, 0xff, 0xf5, 0xa4, 0x65, 0xff, 0xf7, 0xa5, 0x60, 0xff, 0xf7, 0xa4, 0x61, 0xff, 0xf6, 0xa1, 0x5f, 0xff, 0xf6, 0xa0, 0x59, 0xff, 0xf3, 0x9d, 0x56, 0xff, 0xf0, 0xa0, 0x54, 0xff, 0xed, 0x9f, 0x54, 0xff, 0xf4, 0xa5, 0x55, 0xff, 0xf0, 0xa5, 0x53, 0xff, 0xf1, 0xa8, 0x5b, 0xff, 0xf4, 0xab, 0x63, 0xff, 0xf2, 0xae, 0x68, 0xff, 0xf5, 0xb3, 0x6f, 0xff, 0xf9, 0xb2, 0x6f, 0xff, 0xf8, 0xb2, 0x6d, 0xff, 0xf9, 0xb6, 0x72, 0xff, 0xf9, 0xb3, 0x71, 0xff, 0xf8, 0xb1, 0x71, 0xff, 0xf8, 0xb0, 0x6f, 0xff, 0xf9, 0xab, 0x69, 0xff, 0xf7, 0xa7, 0x67, 0xff, 0xf1, 0xa3, 0x67, 0xff, 0xe6, 0x9d, 0x62, 0xff, 0xda, 0x99, 0x5e, 0xff, 0xd0, 0x93, 0x5b, 0xff, 0xc8, 0x8b, 0x56, 0xff, 0xc2, 0x88, 0x52, 0xff, 0xc0, 0x85, 0x4f, 0xff, 0xbc, 0x81, 0x4c, 0xff, 0xb7, 0x7d, 0x4b, 0xff, 0xb5, 0x79, 0x49, 0xff, 0xb2, 0x78, 0x48, 0xff, 0xae, 0x75, 0x43, 0xff, 0xa8, 0x6d, 0x3d, 0xff, 0xa4, 0x66, 0x39, 0xff, 0xa2, 0x65, 0x39, 0xff, 0x9e, 0x61, 0x36, 0xff, 0x9a, 0x5d, 0x31, 0xff, 0x99, 0x59, 0x2f, 0xff, 0x95, 0x55, 0x2e, 0xff, 0x8e, 0x51, 0x2a, 0xff, 0x93, 0x58, 0x30, 0xff, 0xa1, 0x65, 0x3b, 0xff, 0xa2, 0x65, 0x3a, 0xff, 0x9c, 0x5c, 0x35, 0xff, 0x97, 0x57, 0x31, 0xff, 0x93, 0x55, 0x2e, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x8b, 0x4b, 0x2a, 0xff, 0x85, 0x44, 0x27, 0xff, 0x80, 0x3f, 0x24, 0xff, 0x7b, 0x3c, 0x22, 0xff, 0x77, 0x38, 0x1f, 0xff, 0x73, 0x35, 0x1b, 0xff, 0x70, 0x34, 0x16, 0xff, 0x6d, 0x31, 0x14, 0xff, 0x69, 0x2e, 0x14, 0xff, 0x67, 0x2d, 0x12, 0xff, 0x65, 0x2a, 0x0e, 0xff, 0x64, 0x29, 0x0d, 0xff, 0x60, 0x27, 0x0b, 0xff, 0x59, 0x26, 0x08, 0xff, 0x56, 0x23, 0x07, 0xff, 0x55, 0x1e, 0x05, 0xff, 0x53, 0x1a, 0x04, 0xff, 0x52, 0x1c, 0x04, 0xff, 0x52, 0x1e, 0x04, 0xff, 0x53, 0x1f, 0x04, 0xff, 0x54, 0x20, 0x04, 0xff, 0x55, 0x21, 0x04, 0xff, 0x52, 0x20, 0x04, 0xff, 0x54, 0x1e, 0x04, 0xff, 0x57, 0x20, 0x04, 0xff, 0x5d, 0x23, 0x04, 0xff, 0x60, 0x25, 0x04, 0xff, 0x61, 0x27, 0x06, 0xff, 0x64, 0x28, 0x07, 0xff, 0x67, 0x2b, 0x0a, 0xff, 0x6b, 0x2c, 0x0b, 0xff, 0x6f, 0x2f, 0x0e, 0xff, 0x71, 0x32, 0x12, 0xff, 0x76, 0x34, 0x14, 0xff, 0x78, 0x38, 0x17, 0xff, 0x7c, 0x3c, 0x1b, 0xff, 0x79, 0x38, 0x19, 0xff, 0x9f, 0x5e, 0x33, 0xff, 0xab, 0x68, 0x39, 0xff, 0xa8, 0x65, 0x36, 0xff, 0xa7, 0x64, 0x35, 0xff, 0xa4, 0x64, 0x36, 0xff, 0xa4, 0x62, 0x38, 0xff, 0xa4, 0x62, 0x38, 0xff, 0xa5, 0x63, 0x38, 0xff, 0xa7, 0x65, 0x39, 0xff, 0xa6, 0x63, 0x39, 0xff, 0xa4, 0x62, 0x34, 0xff, 0xa7, 0x65, 0x39, 0xff, 0xab, 0x6a, 0x3c, 0xff, 0xaa, 0x6e, 0x40, 0xff, 0xaa, 0x70, 0x47, 0xff, 0xaa, 0x70, 0x4a, 0xff, 0xb2, 0x77, 0x4b, 0xff, 0xb1, 0x71, 0x42, 0xff, 0xaa, 0x65, 0x36, 0xff, 0xa8, 0x63, 0x35, 0xff, 0xab, 0x66, 0x39, 0xff, 0xab, 0x67, 0x38, 0xff, 0xa7, 0x61, 0x34, 0xff, 0xa8, 0x63, 0x37, 0xff, 0xaa, 0x67, 0x39, 0xff, 0xb1, 0x6d, 0x3f, 0xff, 0x90, 0x4f, 0x2e, 0xff, 0x8a, 0x4b, 0x2b, 0xff, 0x8e, 0x4e, 0x2d, 0xff, 0x8d, 0x4d, 0x2d, 0xff, 0x81, 0x41, 0x23, 0xff, 0x7e, 0x3e, 0x23, 0xff, 0x7d, 0x3d, 0x21, 0xff, 0x7b, 0x3a, 0x21, 0xff, 0x7b, 0x3a, 0x22, 0xff, 0x7c, 0x3b, 0x21, 0xff, 0x79, 0x37, 0x21, 0xff, 0x78, 0x39, 0x1f, 0xff, 0x76, 0x38, 0x1d, 0xff, 0x74, 0x35, 0x1d, 0xff, 0x73, 0x35, 0x1a, 0xff, 0x72, 0x34, 0x1a, 0xff, 0x72, 0x32, 0x18, 0xff, 0x70, 0x34, 0x17, 0xff, 0x71, 0x32, 0x17, 0xff, 0x6e, 0x30, 0x17, 0xff, 0x6f, 0x2f, 0x17, 0xff, 0x6d, 0x2d, 0x17, 0xff, 0x6b, 0x2f, 0x17, 0xff, 0x6e, 0x33, 0x17, 0xff, 0x6f, 0x31, 0x17, 0xff, 0x6e, 0x2f, 0x17, 0xff, 0x6f, 0x2f, 0x14, 0xff, 0x6f, 0x2f, 0x14, 0xff, 0x71, 0x32, 0x17, 0xff, 0x77, 0x36, 0x1a, 0xff, 0x74, 0x33, 0x17, 0xff, 0x7c, 0x3b, 0x21, 0xff, 0x80, 0x3f, 0x26, 0xff, 0x7e, 0x3d, 0x24, 0xff, 0x7c, 0x3c, 0x24, 0xff, 0x7b, 0x3b, 0x23, 0xff, 0x79, 0x3a, 0x23, 0xff, 0x76, 0x36, 0x1f, 0xff, 0x74, 0x35, 0x1b, 0xff, 0x6c, 0x2e, 0x14, 0xff, 0x66, 0x2c, 0x11, 0xff, 0x64, 0x28, 0x0d, 0xff, 0x64, 0x28, 0x0e, 0xff, + 0x62, 0x26, 0x0c, 0xff, 0x60, 0x26, 0x0b, 0xff, 0x5c, 0x22, 0x09, 0xff, 0x5b, 0x24, 0x07, 0xff, 0x5a, 0x21, 0x07, 0xff, 0x5a, 0x20, 0x05, 0xff, 0x57, 0x20, 0x06, 0xff, 0x54, 0x21, 0x04, 0xff, 0x52, 0x1a, 0x04, 0xff, 0x52, 0x1d, 0x04, 0xff, 0x52, 0x1f, 0x04, 0xff, 0x52, 0x1e, 0x04, 0xff, 0x56, 0x19, 0x04, 0xff, 0x56, 0x1d, 0x04, 0xff, 0x5a, 0x21, 0x04, 0xff, 0x5c, 0x24, 0x06, 0xff, 0x5e, 0x24, 0x04, 0xff, 0x5e, 0x24, 0x06, 0xff, 0x58, 0x21, 0x04, 0xff, 0x5a, 0x23, 0x07, 0xff, 0x59, 0x21, 0x04, 0xff, 0x59, 0x23, 0x06, 0xff, 0x5e, 0x21, 0x06, 0xff, 0x5e, 0x24, 0x06, 0xff, 0x60, 0x26, 0x07, 0xff, 0x64, 0x27, 0x0b, 0xff, 0x69, 0x29, 0x0b, 0xff, 0x6b, 0x2c, 0x0b, 0xff, 0x6d, 0x2c, 0x11, 0xff, 0x71, 0x30, 0x11, 0xff, 0x76, 0x34, 0x14, 0xff, 0x75, 0x34, 0x12, 0xff, 0x78, 0x36, 0x13, 0xff, 0x7d, 0x3b, 0x16, 0xff, 0x83, 0x3e, 0x1d, 0xff, 0x89, 0x44, 0x21, 0xff, 0x8d, 0x48, 0x23, 0xff, 0x91, 0x4b, 0x24, 0xff, 0x8d, 0x47, 0x23, 0xff, 0x93, 0x4e, 0x26, 0xff, 0x99, 0x54, 0x28, 0xff, 0x9e, 0x5b, 0x2c, 0xff, 0xa0, 0x5c, 0x2e, 0xff, 0xa4, 0x5f, 0x30, 0xff, 0xaa, 0x65, 0x34, 0xff, 0xad, 0x6b, 0x37, 0xff, 0xb3, 0x6e, 0x35, 0xff, 0xb8, 0x70, 0x38, 0xff, 0xba, 0x73, 0x3c, 0xff, 0xc0, 0x78, 0x41, 0xff, 0xc8, 0x7f, 0x44, 0xff, 0xd4, 0x85, 0x47, 0xff, 0xd9, 0x87, 0x49, 0xff, 0xde, 0x8d, 0x4c, 0xff, 0xf0, 0x92, 0x55, 0xff, 0xfb, 0x9d, 0x5b, 0xff, 0xf8, 0xa0, 0x5f, 0xff, 0xf9, 0xa2, 0x61, 0xff, 0xf9, 0xa2, 0x63, 0xff, 0xf9, 0xa0, 0x62, 0xff, 0xf9, 0x9d, 0x61, 0xff, 0xf9, 0x9c, 0x62, 0xff, 0xf7, 0x9c, 0x61, 0xff, 0xf6, 0x9a, 0x60, 0xff, 0xf6, 0xa0, 0x5e, 0xff, 0xf9, 0xa9, 0x61, 0xff, 0xf7, 0xae, 0x63, 0xff, 0xf7, 0xb5, 0x68, 0xff, 0xf5, 0xb0, 0x65, 0xff, 0xf3, 0x9f, 0x56, 0xff, 0xf6, 0xa4, 0x5a, 0xff, 0xf5, 0xa5, 0x5e, 0xff, 0xf7, 0xa6, 0x60, 0xff, 0xf8, 0xa7, 0x61, 0xff, 0xf8, 0xa6, 0x61, 0xff, 0xf8, 0xa2, 0x62, 0xff, 0xf4, 0xa1, 0x5d, 0xff, 0xf1, 0xa4, 0x5a, 0xff, 0xf7, 0xa3, 0x62, 0xff, 0xf7, 0xa0, 0x61, 0xff, 0xf7, 0xa1, 0x60, 0xff, 0xf7, 0xa6, 0x62, 0xff, 0xf8, 0xa6, 0x63, 0xff, 0xf6, 0x9c, 0x58, 0xff, 0xf1, 0x9c, 0x56, 0xff, 0xec, 0x9e, 0x52, 0xff, 0xef, 0xa2, 0x53, 0xff, 0xf2, 0xa3, 0x56, 0xff, 0xf1, 0xa3, 0x59, 0xff, 0xef, 0xa4, 0x5a, 0xff, 0xec, 0xa8, 0x5f, 0xff, 0xf3, 0xb3, 0x70, 0xff, 0xf5, 0xb9, 0x74, 0xff, 0xf8, 0xb6, 0x76, 0xff, 0xf7, 0xb8, 0x75, 0xff, 0xf6, 0xbb, 0x78, 0xff, 0xf5, 0xba, 0x79, 0xff, 0xf7, 0xba, 0x79, 0xff, 0xf9, 0xb8, 0x76, 0xff, 0xf7, 0xb6, 0x75, 0xff, 0xf6, 0xb2, 0x73, 0xff, 0xf7, 0xad, 0x70, 0xff, 0xf4, 0xaa, 0x6b, 0xff, 0xea, 0xa2, 0x65, 0xff, 0xde, 0x98, 0x60, 0xff, 0xd3, 0x92, 0x5a, 0xff, 0xca, 0x8f, 0x57, 0xff, 0xc5, 0x89, 0x54, 0xff, 0xc0, 0x84, 0x51, 0xff, 0xbb, 0x82, 0x4e, 0xff, 0xb9, 0x7f, 0x4d, 0xff, 0xb7, 0x7b, 0x4a, 0xff, 0xb1, 0x76, 0x45, 0xff, 0xab, 0x6e, 0x3f, 0xff, 0xa8, 0x6b, 0x3c, 0xff, 0xa5, 0x69, 0x3c, 0xff, 0xa1, 0x66, 0x3a, 0xff, 0x9d, 0x61, 0x36, 0xff, 0x9b, 0x5d, 0x32, 0xff, 0x97, 0x5a, 0x2f, 0xff, 0x92, 0x53, 0x2c, 0xff, 0x9e, 0x61, 0x3a, 0xff, 0xa8, 0x6c, 0x43, 0xff, 0xa4, 0x65, 0x3a, 0xff, 0x9e, 0x60, 0x36, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x95, 0x55, 0x30, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x8c, 0x4c, 0x2a, 0xff, 0x87, 0x46, 0x28, 0xff, 0x80, 0x42, 0x25, 0xff, 0x7c, 0x3e, 0x22, 0xff, 0x79, 0x38, 0x20, 0xff, 0x75, 0x35, 0x1c, 0xff, 0x70, 0x33, 0x18, 0xff, 0x6f, 0x31, 0x16, 0xff, 0x6b, 0x30, 0x13, 0xff, 0x68, 0x2e, 0x10, 0xff, 0x66, 0x2c, 0x10, 0xff, 0x61, 0x29, 0x0c, 0xff, 0x5d, 0x26, 0x0b, 0xff, 0x59, 0x25, 0x08, 0xff, 0x57, 0x23, 0x07, 0xff, 0x54, 0x1d, 0x05, 0xff, 0x50, 0x19, 0x04, 0xff, 0x50, 0x19, 0x04, 0xff, 0x52, 0x1c, 0x04, 0xff, 0x52, 0x1c, 0x04, 0xff, 0x52, 0x1c, 0x04, 0xff, 0x52, 0x1c, 0x04, 0xff, 0x53, 0x1d, 0x04, 0xff, 0x53, 0x1d, 0x04, 0xff, 0x55, 0x1e, 0x04, 0xff, 0x55, 0x1d, 0x04, 0xff, 0x58, 0x21, 0x04, 0xff, 0x5b, 0x24, 0x04, 0xff, 0x5f, 0x25, 0x05, 0xff, 0x62, 0x27, 0x05, 0xff, 0x66, 0x29, 0x0a, 0xff, 0x69, 0x2c, 0x0c, 0xff, 0x6c, 0x2e, 0x0c, 0xff, 0x6f, 0x30, 0x11, 0xff, 0x74, 0x35, 0x14, 0xff, 0x77, 0x37, 0x17, 0xff, 0x72, 0x31, 0x11, 0xff, 0xa0, 0x5d, 0x31, 0xff, 0xa7, 0x65, 0x37, 0xff, 0xa1, 0x60, 0x33, 0xff, 0x9f, 0x5c, 0x32, 0xff, 0x9e, 0x5a, 0x30, 0xff, 0x9c, 0x5b, 0x31, 0xff, 0x9c, 0x5a, 0x30, 0xff, 0x9b, 0x5b, 0x32, 0xff, 0x9d, 0x5c, 0x32, 0xff, 0x9d, 0x5c, 0x32, 0xff, 0xa0, 0x5f, 0x32, 0xff, 0x9d, 0x5b, 0x30, 0xff, 0x9f, 0x5b, 0x31, 0xff, 0xa2, 0x5f, 0x35, 0xff, 0xa5, 0x66, 0x3a, 0xff, 0xaa, 0x6f, 0x43, 0xff, 0xb0, 0x73, 0x49, 0xff, 0xad, 0x6d, 0x41, 0xff, 0xa7, 0x62, 0x36, 0xff, 0xa2, 0x5f, 0x33, 0xff, 0xa4, 0x5f, 0x34, 0xff, 0xa8, 0x65, 0x37, 0xff, 0xa9, 0x66, 0x39, 0xff, 0xa6, 0x62, 0x36, 0xff, 0xa9, 0x63, 0x36, 0xff, 0xa7, 0x66, 0x3a, 0xff, 0x8c, 0x4b, 0x2c, 0xff, 0x89, 0x4a, 0x2b, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8e, 0x4c, 0x2d, 0xff, 0x88, 0x48, 0x29, 0xff, 0x7d, 0x3c, 0x23, 0xff, 0x7a, 0x3a, 0x1f, 0xff, 0x7b, 0x3b, 0x20, 0xff, 0x7c, 0x3c, 0x22, 0xff, 0x7a, 0x38, 0x21, 0xff, 0x79, 0x38, 0x1f, 0xff, 0x77, 0x38, 0x1e, 0xff, 0x75, 0x36, 0x1e, 0xff, 0x73, 0x34, 0x1a, 0xff, 0x71, 0x34, 0x19, 0xff, 0x71, 0x33, 0x16, 0xff, 0x6e, 0x32, 0x17, 0xff, 0x6d, 0x30, 0x14, 0xff, 0x6d, 0x2e, 0x14, 0xff, 0x6c, 0x2c, 0x14, 0xff, 0x68, 0x2d, 0x13, 0xff, 0x69, 0x2b, 0x14, 0xff, 0x6d, 0x2e, 0x15, 0xff, 0x6d, 0x2f, 0x15, 0xff, 0x6b, 0x2c, 0x13, 0xff, 0x6b, 0x2c, 0x13, 0xff, 0x6d, 0x2d, 0x14, 0xff, 0x6a, 0x2c, 0x12, 0xff, 0x6b, 0x2c, 0x13, 0xff, 0x6c, 0x2c, 0x14, 0xff, 0x72, 0x31, 0x17, 0xff, 0x7a, 0x3a, 0x22, 0xff, 0x7f, 0x3f, 0x26, 0xff, 0x7c, 0x3c, 0x24, 0xff, 0x7b, 0x3b, 0x23, 0xff, 0x79, 0x3b, 0x21, 0xff, 0x77, 0x38, 0x1f, 0xff, 0x75, 0x36, 0x1c, 0xff, 0x70, 0x33, 0x17, 0xff, 0x6c, 0x2c, 0x14, 0xff, 0x66, 0x2a, 0x10, 0xff, 0x66, 0x28, 0x10, 0xff, 0x63, 0x26, 0x0c, 0xff, + 0x64, 0x27, 0x0d, 0xff, 0x63, 0x27, 0x0a, 0xff, 0x5f, 0x26, 0x0b, 0xff, 0x5d, 0x25, 0x0b, 0xff, 0x59, 0x20, 0x07, 0xff, 0x58, 0x20, 0x06, 0xff, 0x58, 0x21, 0x05, 0xff, 0x55, 0x1f, 0x04, 0xff, 0x53, 0x1d, 0x04, 0xff, 0x52, 0x1e, 0x04, 0xff, 0x54, 0x1c, 0x04, 0xff, 0x52, 0x1b, 0x04, 0xff, 0x56, 0x1e, 0x04, 0xff, 0x57, 0x1f, 0x05, 0xff, 0x5b, 0x20, 0x06, 0xff, 0x5c, 0x25, 0x05, 0xff, 0x5b, 0x21, 0x06, 0xff, 0x54, 0x1b, 0x04, 0xff, 0x54, 0x1e, 0x04, 0xff, 0x53, 0x1a, 0x04, 0xff, 0x53, 0x1a, 0x04, 0xff, 0x56, 0x20, 0x04, 0xff, 0x55, 0x1b, 0x04, 0xff, 0x58, 0x20, 0x05, 0xff, 0x5b, 0x23, 0x05, 0xff, 0x61, 0x26, 0x09, 0xff, 0x66, 0x28, 0x09, 0xff, 0x68, 0x2b, 0x0c, 0xff, 0x6c, 0x2d, 0x0f, 0xff, 0x6f, 0x2f, 0x11, 0xff, 0x71, 0x2f, 0x11, 0xff, 0x77, 0x34, 0x14, 0xff, 0x76, 0x35, 0x12, 0xff, 0x77, 0x33, 0x13, 0xff, 0x7d, 0x38, 0x18, 0xff, 0x83, 0x40, 0x1c, 0xff, 0x89, 0x44, 0x21, 0xff, 0x8e, 0x48, 0x23, 0xff, 0x91, 0x4a, 0x25, 0xff, 0x90, 0x4b, 0x23, 0xff, 0x96, 0x50, 0x28, 0xff, 0x99, 0x55, 0x2a, 0xff, 0x9c, 0x59, 0x2b, 0xff, 0xa0, 0x5d, 0x2d, 0xff, 0xa6, 0x60, 0x30, 0xff, 0xaa, 0x65, 0x32, 0xff, 0xae, 0x6c, 0x34, 0xff, 0xb4, 0x6d, 0x36, 0xff, 0xb8, 0x70, 0x39, 0xff, 0xbc, 0x73, 0x3d, 0xff, 0xc1, 0x78, 0x41, 0xff, 0xc8, 0x7e, 0x44, 0xff, 0xd4, 0x85, 0x48, 0xff, 0xdd, 0x8b, 0x4b, 0xff, 0xee, 0x93, 0x50, 0xff, 0xfa, 0x9c, 0x5a, 0xff, 0xf9, 0xa4, 0x61, 0xff, 0xf9, 0xa9, 0x63, 0xff, 0xf9, 0xa3, 0x63, 0xff, 0xf9, 0xa0, 0x62, 0xff, 0xfa, 0x9e, 0x61, 0xff, 0xfa, 0x9c, 0x61, 0xff, 0xf7, 0x9b, 0x61, 0xff, 0xf4, 0x9a, 0x5e, 0xff, 0xf7, 0xa4, 0x5c, 0xff, 0xf7, 0xa6, 0x5d, 0xff, 0xf8, 0xab, 0x5f, 0xff, 0xf8, 0xac, 0x62, 0xff, 0xf8, 0xb0, 0x69, 0xff, 0xf7, 0xb0, 0x66, 0xff, 0xf4, 0xa3, 0x5a, 0xff, 0xf7, 0xa5, 0x5d, 0xff, 0xf7, 0xa6, 0x5f, 0xff, 0xf7, 0xa4, 0x60, 0xff, 0xf6, 0xa3, 0x60, 0xff, 0xf8, 0xa3, 0x61, 0xff, 0xf6, 0xa3, 0x60, 0xff, 0xf4, 0xa6, 0x5c, 0xff, 0xf8, 0xa2, 0x60, 0xff, 0xf8, 0xa1, 0x64, 0xff, 0xf6, 0xa0, 0x5f, 0xff, 0xf8, 0xa4, 0x63, 0xff, 0xf5, 0xa1, 0x60, 0xff, 0xf1, 0x98, 0x57, 0xff, 0xec, 0x9a, 0x57, 0xff, 0xea, 0x9d, 0x55, 0xff, 0xea, 0x9c, 0x55, 0xff, 0xe8, 0x9c, 0x53, 0xff, 0xea, 0x9e, 0x57, 0xff, 0xee, 0xa8, 0x5f, 0xff, 0xf3, 0xb1, 0x68, 0xff, 0xf2, 0xb9, 0x72, 0xff, 0xf6, 0xbe, 0x79, 0xff, 0xf6, 0xbc, 0x7a, 0xff, 0xf5, 0xc3, 0x7d, 0xff, 0xf7, 0xc7, 0x82, 0xff, 0xf9, 0xca, 0x82, 0xff, 0xf9, 0xc9, 0x80, 0xff, 0xf8, 0xc5, 0x81, 0xff, 0xf7, 0xc4, 0x7d, 0xff, 0xf7, 0xbf, 0x7a, 0xff, 0xf5, 0xb8, 0x77, 0xff, 0xf7, 0xb3, 0x74, 0xff, 0xf6, 0xac, 0x6f, 0xff, 0xf1, 0xa5, 0x69, 0xff, 0xe4, 0x9c, 0x61, 0xff, 0xd6, 0x95, 0x5a, 0xff, 0xcd, 0x90, 0x57, 0xff, 0xc8, 0x8d, 0x56, 0xff, 0xc2, 0x87, 0x55, 0xff, 0xbc, 0x82, 0x51, 0xff, 0xb9, 0x80, 0x51, 0xff, 0xb4, 0x79, 0x49, 0xff, 0xae, 0x71, 0x41, 0xff, 0xab, 0x71, 0x40, 0xff, 0xa7, 0x6e, 0x40, 0xff, 0xa4, 0x69, 0x3e, 0xff, 0xa1, 0x65, 0x38, 0xff, 0x9e, 0x61, 0x35, 0xff, 0x9b, 0x5d, 0x32, 0xff, 0x9d, 0x5f, 0x35, 0xff, 0xa7, 0x6b, 0x40, 0xff, 0xaa, 0x6b, 0x40, 0xff, 0xa6, 0x66, 0x3c, 0xff, 0xa1, 0x62, 0x38, 0xff, 0x9c, 0x5d, 0x33, 0xff, 0x97, 0x57, 0x30, 0xff, 0x92, 0x52, 0x2d, 0xff, 0x8d, 0x4d, 0x2a, 0xff, 0x87, 0x46, 0x28, 0xff, 0x83, 0x44, 0x25, 0xff, 0x7e, 0x42, 0x24, 0xff, 0x7a, 0x3c, 0x21, 0xff, 0x76, 0x36, 0x1d, 0xff, 0x72, 0x34, 0x1a, 0xff, 0x6e, 0x32, 0x16, 0xff, 0x6a, 0x2e, 0x13, 0xff, 0x67, 0x2d, 0x11, 0xff, 0x65, 0x2b, 0x0e, 0xff, 0x61, 0x27, 0x0b, 0xff, 0x5c, 0x25, 0x0b, 0xff, 0x57, 0x25, 0x08, 0xff, 0x55, 0x22, 0x04, 0xff, 0x52, 0x1b, 0x04, 0xff, 0x4e, 0x17, 0x04, 0xff, 0x4e, 0x17, 0x04, 0xff, 0x4e, 0x17, 0x04, 0xff, 0x4f, 0x17, 0x04, 0xff, 0x4e, 0x17, 0x04, 0xff, 0x4e, 0x17, 0x04, 0xff, 0x4f, 0x17, 0x04, 0xff, 0x4f, 0x17, 0x04, 0xff, 0x50, 0x19, 0x04, 0xff, 0x53, 0x1c, 0x04, 0xff, 0x55, 0x1c, 0x04, 0xff, 0x55, 0x1f, 0x04, 0xff, 0x59, 0x21, 0x04, 0xff, 0x5d, 0x22, 0x04, 0xff, 0x60, 0x26, 0x04, 0xff, 0x64, 0x28, 0x07, 0xff, 0x68, 0x2b, 0x0a, 0xff, 0x6c, 0x2f, 0x0c, 0xff, 0x6f, 0x31, 0x0e, 0xff, 0x72, 0x32, 0x10, 0xff, 0x77, 0x35, 0x16, 0xff, 0x9e, 0x5b, 0x30, 0xff, 0xa4, 0x60, 0x33, 0xff, 0x9d, 0x5b, 0x30, 0xff, 0x9a, 0x59, 0x2d, 0xff, 0x99, 0x56, 0x2b, 0xff, 0x9a, 0x55, 0x2b, 0xff, 0x99, 0x55, 0x2c, 0xff, 0x98, 0x54, 0x2d, 0xff, 0x98, 0x55, 0x2d, 0xff, 0x9a, 0x59, 0x2f, 0xff, 0x9a, 0x57, 0x2e, 0xff, 0x98, 0x53, 0x2c, 0xff, 0x97, 0x54, 0x2c, 0xff, 0x98, 0x55, 0x2c, 0xff, 0x98, 0x53, 0x2d, 0xff, 0xa6, 0x65, 0x38, 0xff, 0xa9, 0x66, 0x3a, 0xff, 0xa7, 0x63, 0x39, 0xff, 0xa2, 0x5d, 0x34, 0xff, 0x9d, 0x59, 0x30, 0xff, 0x9f, 0x5b, 0x31, 0xff, 0xa5, 0x61, 0x34, 0xff, 0xaa, 0x67, 0x39, 0xff, 0xaa, 0x69, 0x3c, 0xff, 0xab, 0x6a, 0x3c, 0xff, 0x9c, 0x59, 0x32, 0xff, 0x8a, 0x4a, 0x2b, 0xff, 0x89, 0x49, 0x2b, 0xff, 0x8b, 0x4b, 0x2b, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8a, 0x4a, 0x2a, 0xff, 0x7c, 0x3c, 0x23, 0xff, 0x7a, 0x39, 0x20, 0xff, 0x7d, 0x3b, 0x22, 0xff, 0x7c, 0x39, 0x22, 0xff, 0x79, 0x38, 0x20, 0xff, 0x78, 0x38, 0x1f, 0xff, 0x75, 0x35, 0x1d, 0xff, 0x72, 0x34, 0x1b, 0xff, 0x70, 0x33, 0x17, 0xff, 0x6e, 0x32, 0x17, 0xff, 0x6e, 0x30, 0x16, 0xff, 0x6d, 0x2e, 0x14, 0xff, 0x6b, 0x2b, 0x12, 0xff, 0x6b, 0x2d, 0x14, 0xff, 0x67, 0x2b, 0x12, 0xff, 0x68, 0x2d, 0x12, 0xff, 0x6c, 0x2c, 0x14, 0xff, 0x6b, 0x2d, 0x12, 0xff, 0x6a, 0x2c, 0x11, 0xff, 0x68, 0x2b, 0x0f, 0xff, 0x67, 0x2b, 0x0d, 0xff, 0x68, 0x2b, 0x10, 0xff, 0x67, 0x2b, 0x10, 0xff, 0x67, 0x2c, 0x11, 0xff, 0x68, 0x2a, 0x10, 0xff, 0x68, 0x2b, 0x0e, 0xff, 0x76, 0x38, 0x1f, 0xff, 0x7f, 0x40, 0x26, 0xff, 0x7c, 0x3e, 0x24, 0xff, 0x7c, 0x3d, 0x23, 0xff, 0x7c, 0x3c, 0x23, 0xff, 0x77, 0x38, 0x20, 0xff, 0x75, 0x35, 0x1c, 0xff, 0x70, 0x32, 0x18, 0xff, 0x6d, 0x2f, 0x14, 0xff, 0x69, 0x2c, 0x12, 0xff, 0x68, 0x2b, 0x10, 0xff, 0x66, 0x29, 0x0d, 0xff, + 0x64, 0x27, 0x0d, 0xff, 0x63, 0x28, 0x0b, 0xff, 0x62, 0x26, 0x0a, 0xff, 0x5e, 0x26, 0x0b, 0xff, 0x5d, 0x22, 0x07, 0xff, 0x59, 0x23, 0x07, 0xff, 0x5d, 0x22, 0x07, 0xff, 0x5d, 0x24, 0x09, 0xff, 0x58, 0x1f, 0x05, 0xff, 0x57, 0x1f, 0x06, 0xff, 0x56, 0x1c, 0x04, 0xff, 0x55, 0x1d, 0x04, 0xff, 0x57, 0x1f, 0x04, 0xff, 0x59, 0x22, 0x06, 0xff, 0x5b, 0x24, 0x07, 0xff, 0x5c, 0x21, 0x07, 0xff, 0x52, 0x1a, 0x04, 0xff, 0x52, 0x1e, 0x04, 0xff, 0x50, 0x1a, 0x04, 0xff, 0x52, 0x1e, 0x04, 0xff, 0x51, 0x1b, 0x04, 0xff, 0x50, 0x1a, 0x04, 0xff, 0x52, 0x17, 0x04, 0xff, 0x55, 0x1d, 0x04, 0xff, 0x5a, 0x21, 0x06, 0xff, 0x60, 0x25, 0x07, 0xff, 0x64, 0x29, 0x08, 0xff, 0x65, 0x2a, 0x0a, 0xff, 0x6a, 0x2b, 0x0a, 0xff, 0x6d, 0x2c, 0x0e, 0xff, 0x6e, 0x2e, 0x10, 0xff, 0x74, 0x30, 0x10, 0xff, 0x78, 0x32, 0x14, 0xff, 0x77, 0x34, 0x13, 0xff, 0x79, 0x35, 0x13, 0xff, 0x7e, 0x3b, 0x18, 0xff, 0x85, 0x41, 0x1e, 0xff, 0x8a, 0x45, 0x20, 0xff, 0x90, 0x49, 0x24, 0xff, 0x93, 0x4e, 0x27, 0xff, 0x91, 0x4a, 0x25, 0xff, 0x97, 0x51, 0x28, 0xff, 0x9a, 0x58, 0x2a, 0xff, 0x9e, 0x5c, 0x2c, 0xff, 0xa2, 0x5c, 0x2d, 0xff, 0xa8, 0x61, 0x30, 0xff, 0xab, 0x67, 0x34, 0xff, 0xb1, 0x6d, 0x36, 0xff, 0xb7, 0x6d, 0x37, 0xff, 0xb8, 0x70, 0x3a, 0xff, 0xbb, 0x73, 0x3f, 0xff, 0xc3, 0x7a, 0x44, 0xff, 0xca, 0x81, 0x46, 0xff, 0xd9, 0x8a, 0x4b, 0xff, 0xee, 0x92, 0x55, 0xff, 0xf9, 0x9c, 0x5c, 0xff, 0xf9, 0xa6, 0x65, 0xff, 0xf8, 0xad, 0x69, 0xff, 0xf9, 0xaa, 0x66, 0xff, 0xf8, 0xa5, 0x67, 0xff, 0xf1, 0x9d, 0x60, 0xff, 0xf1, 0x98, 0x5f, 0xff, 0xf9, 0x9c, 0x62, 0xff, 0xf3, 0x9d, 0x5b, 0xff, 0xf7, 0xa3, 0x58, 0xff, 0xf8, 0xa4, 0x5b, 0xff, 0xf7, 0xa5, 0x5c, 0xff, 0xf8, 0xa7, 0x5f, 0xff, 0xf8, 0xab, 0x64, 0xff, 0xf8, 0xb0, 0x67, 0xff, 0xf5, 0xad, 0x65, 0xff, 0xf6, 0xa0, 0x59, 0xff, 0xf8, 0xa6, 0x5d, 0xff, 0xf6, 0xa6, 0x5f, 0xff, 0xf9, 0xa5, 0x60, 0xff, 0xf8, 0xa1, 0x62, 0xff, 0xf5, 0x9f, 0x5e, 0xff, 0xf1, 0xa4, 0x5a, 0xff, 0xf4, 0xa6, 0x5f, 0xff, 0xf9, 0xa0, 0x63, 0xff, 0xf8, 0x9d, 0x5e, 0xff, 0xf9, 0xa3, 0x62, 0xff, 0xf4, 0xa2, 0x61, 0xff, 0xeb, 0x9b, 0x5b, 0xff, 0xe6, 0x95, 0x56, 0xff, 0xe6, 0x9b, 0x52, 0xff, 0xe4, 0x9c, 0x51, 0xff, 0xea, 0x9f, 0x56, 0xff, 0xea, 0xa1, 0x5a, 0xff, 0xe8, 0xa4, 0x61, 0xff, 0xec, 0xa8, 0x68, 0xff, 0xf4, 0xba, 0x77, 0xff, 0xf8, 0xc2, 0x7e, 0xff, 0xf6, 0xc1, 0x7f, 0xff, 0xf7, 0xcd, 0x83, 0xff, 0xf9, 0xdb, 0x89, 0xff, 0xf9, 0xdc, 0x89, 0xff, 0xf8, 0xde, 0x8a, 0xff, 0xf9, 0xe1, 0x8c, 0xff, 0xf7, 0xda, 0x89, 0xff, 0xf8, 0xd5, 0x87, 0xff, 0xf8, 0xcd, 0x84, 0xff, 0xf7, 0xc1, 0x7f, 0xff, 0xf8, 0xb8, 0x77, 0xff, 0xf8, 0xb0, 0x71, 0xff, 0xf3, 0xa5, 0x69, 0xff, 0xe7, 0x9c, 0x62, 0xff, 0xdb, 0x99, 0x60, 0xff, 0xd1, 0x94, 0x5c, 0xff, 0xc7, 0x8d, 0x58, 0xff, 0xc6, 0x8c, 0x56, 0xff, 0xbf, 0x85, 0x54, 0xff, 0xb9, 0x7c, 0x4c, 0xff, 0xb3, 0x78, 0x45, 0xff, 0xaf, 0x76, 0x45, 0xff, 0xab, 0x72, 0x45, 0xff, 0xa9, 0x70, 0x42, 0xff, 0xa5, 0x6c, 0x3d, 0xff, 0xa1, 0x66, 0x3b, 0xff, 0x9d, 0x61, 0x36, 0xff, 0xa2, 0x66, 0x39, 0xff, 0xac, 0x6f, 0x42, 0xff, 0xab, 0x6c, 0x41, 0xff, 0xa8, 0x69, 0x3d, 0xff, 0xa4, 0x64, 0x39, 0xff, 0x9e, 0x5e, 0x34, 0xff, 0x9a, 0x59, 0x30, 0xff, 0x95, 0x55, 0x2e, 0xff, 0x8f, 0x4f, 0x2b, 0xff, 0x8a, 0x48, 0x28, 0xff, 0x86, 0x45, 0x26, 0xff, 0x82, 0x42, 0x25, 0xff, 0x7d, 0x3d, 0x21, 0xff, 0x78, 0x38, 0x1e, 0xff, 0x74, 0x35, 0x1d, 0xff, 0x70, 0x34, 0x17, 0xff, 0x6c, 0x2e, 0x14, 0xff, 0x68, 0x2c, 0x13, 0xff, 0x65, 0x2a, 0x0f, 0xff, 0x61, 0x26, 0x0b, 0xff, 0x5c, 0x25, 0x0b, 0xff, 0x58, 0x25, 0x07, 0xff, 0x53, 0x22, 0x04, 0xff, 0x52, 0x17, 0x04, 0xff, 0x4f, 0x17, 0x04, 0xff, 0x4b, 0x17, 0x04, 0xff, 0x48, 0x14, 0x04, 0xff, 0x4a, 0x17, 0x04, 0xff, 0x4b, 0x18, 0x04, 0xff, 0x4c, 0x18, 0x04, 0xff, 0x4c, 0x18, 0x04, 0xff, 0x4c, 0x18, 0x04, 0xff, 0x4e, 0x16, 0x04, 0xff, 0x50, 0x17, 0x04, 0xff, 0x51, 0x18, 0x04, 0xff, 0x52, 0x1c, 0x04, 0xff, 0x53, 0x1d, 0x04, 0xff, 0x57, 0x1e, 0x04, 0xff, 0x59, 0x23, 0x04, 0xff, 0x5d, 0x25, 0x04, 0xff, 0x62, 0x27, 0x05, 0xff, 0x66, 0x2a, 0x07, 0xff, 0x6b, 0x2c, 0x0c, 0xff, 0x6d, 0x2f, 0x0e, 0xff, 0x79, 0x38, 0x1a, 0xff, 0x9d, 0x5a, 0x30, 0xff, 0xa0, 0x5f, 0x31, 0xff, 0x9b, 0x57, 0x2d, 0xff, 0x99, 0x54, 0x2b, 0xff, 0x95, 0x52, 0x29, 0xff, 0x95, 0x50, 0x29, 0xff, 0x94, 0x50, 0x2a, 0xff, 0x95, 0x50, 0x2a, 0xff, 0x97, 0x52, 0x2c, 0xff, 0x98, 0x55, 0x2d, 0xff, 0x98, 0x54, 0x2d, 0xff, 0x93, 0x51, 0x2b, 0xff, 0x91, 0x4f, 0x28, 0xff, 0x90, 0x4c, 0x28, 0xff, 0x96, 0x51, 0x2b, 0xff, 0x9e, 0x5a, 0x30, 0xff, 0x9c, 0x57, 0x2f, 0xff, 0x9c, 0x57, 0x2f, 0xff, 0x9a, 0x55, 0x2e, 0xff, 0x99, 0x54, 0x2d, 0xff, 0x9a, 0x55, 0x2e, 0xff, 0x9f, 0x5b, 0x31, 0xff, 0xa7, 0x62, 0x38, 0xff, 0xa9, 0x67, 0x3a, 0xff, 0xae, 0x6d, 0x3d, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x89, 0x4a, 0x2a, 0xff, 0x89, 0x4a, 0x2b, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x8b, 0x4b, 0x2a, 0xff, 0x8c, 0x4c, 0x2a, 0xff, 0x7f, 0x40, 0x23, 0xff, 0x7b, 0x3a, 0x22, 0xff, 0x79, 0x38, 0x1f, 0xff, 0x7a, 0x37, 0x20, 0xff, 0x78, 0x36, 0x20, 0xff, 0x75, 0x35, 0x1c, 0xff, 0x71, 0x32, 0x19, 0xff, 0x6f, 0x33, 0x17, 0xff, 0x6e, 0x30, 0x17, 0xff, 0x6e, 0x2f, 0x17, 0xff, 0x6a, 0x2e, 0x14, 0xff, 0x68, 0x2d, 0x12, 0xff, 0x67, 0x2d, 0x11, 0xff, 0x69, 0x2b, 0x12, 0xff, 0x67, 0x2b, 0x11, 0xff, 0x6a, 0x2e, 0x11, 0xff, 0x6a, 0x2b, 0x11, 0xff, 0x6a, 0x2c, 0x11, 0xff, 0x66, 0x29, 0x11, 0xff, 0x65, 0x27, 0x0d, 0xff, 0x67, 0x2b, 0x11, 0xff, 0x65, 0x28, 0x11, 0xff, 0x67, 0x28, 0x0e, 0xff, 0x65, 0x28, 0x0e, 0xff, 0x65, 0x27, 0x0e, 0xff, 0x63, 0x26, 0x0c, 0xff, 0x73, 0x35, 0x1f, 0xff, 0x7f, 0x3f, 0x26, 0xff, 0x7e, 0x3f, 0x26, 0xff, 0x7e, 0x40, 0x24, 0xff, 0x7d, 0x3f, 0x24, 0xff, 0x78, 0x38, 0x21, 0xff, 0x75, 0x35, 0x1e, 0xff, 0x72, 0x33, 0x18, 0xff, 0x6d, 0x2f, 0x14, 0xff, 0x6d, 0x2c, 0x13, 0xff, 0x69, 0x2b, 0x10, 0xff, 0x67, 0x2b, 0x11, 0xff, + 0x67, 0x2a, 0x0d, 0xff, 0x65, 0x28, 0x0d, 0xff, 0x63, 0x27, 0x0b, 0xff, 0x5e, 0x25, 0x0a, 0xff, 0x5e, 0x24, 0x06, 0xff, 0x5d, 0x24, 0x0a, 0xff, 0x5e, 0x25, 0x0a, 0xff, 0x5e, 0x24, 0x07, 0xff, 0x61, 0x27, 0x0b, 0xff, 0x5e, 0x24, 0x08, 0xff, 0x58, 0x20, 0x07, 0xff, 0x5a, 0x23, 0x07, 0xff, 0x5a, 0x23, 0x06, 0xff, 0x5a, 0x23, 0x06, 0xff, 0x5e, 0x24, 0x07, 0xff, 0x53, 0x1a, 0x04, 0xff, 0x51, 0x19, 0x04, 0xff, 0x52, 0x1f, 0x04, 0xff, 0x52, 0x16, 0x04, 0xff, 0x51, 0x16, 0x04, 0xff, 0x50, 0x17, 0x04, 0xff, 0x50, 0x17, 0x04, 0xff, 0x50, 0x19, 0x04, 0xff, 0x54, 0x1c, 0x04, 0xff, 0x59, 0x20, 0x06, 0xff, 0x5e, 0x24, 0x07, 0xff, 0x60, 0x27, 0x08, 0xff, 0x64, 0x29, 0x0a, 0xff, 0x65, 0x29, 0x0d, 0xff, 0x6b, 0x2d, 0x0d, 0xff, 0x6e, 0x2c, 0x0f, 0xff, 0x6f, 0x2d, 0x11, 0xff, 0x75, 0x31, 0x11, 0xff, 0x78, 0x36, 0x14, 0xff, 0x78, 0x34, 0x14, 0xff, 0x7b, 0x37, 0x16, 0xff, 0x81, 0x3e, 0x1a, 0xff, 0x86, 0x41, 0x22, 0xff, 0x8a, 0x46, 0x23, 0xff, 0x91, 0x4c, 0x25, 0xff, 0x95, 0x4f, 0x27, 0xff, 0x92, 0x4f, 0x27, 0xff, 0x95, 0x54, 0x2a, 0xff, 0x99, 0x59, 0x2c, 0xff, 0xa0, 0x5e, 0x2d, 0xff, 0xa4, 0x5f, 0x2e, 0xff, 0xa8, 0x62, 0x32, 0xff, 0xaf, 0x6b, 0x36, 0xff, 0xb2, 0x6e, 0x37, 0xff, 0xb5, 0x6e, 0x3a, 0xff, 0xba, 0x72, 0x3d, 0xff, 0xc1, 0x78, 0x42, 0xff, 0xc5, 0x7e, 0x45, 0xff, 0xd1, 0x86, 0x4a, 0xff, 0xe5, 0x91, 0x53, 0xff, 0xf5, 0x9d, 0x5e, 0xff, 0xf9, 0xa8, 0x67, 0xff, 0xf8, 0xaf, 0x70, 0xff, 0xf0, 0xaa, 0x6c, 0xff, 0xe7, 0x9a, 0x60, 0xff, 0xe7, 0x98, 0x5f, 0xff, 0xed, 0x98, 0x60, 0xff, 0xfa, 0x9f, 0x64, 0xff, 0xf6, 0xa0, 0x5f, 0xff, 0xf8, 0xa5, 0x5c, 0xff, 0xf8, 0xa4, 0x5a, 0xff, 0xf8, 0xa4, 0x5b, 0xff, 0xf8, 0xa6, 0x5e, 0xff, 0xf7, 0xac, 0x62, 0xff, 0xf6, 0xad, 0x67, 0xff, 0xf9, 0xb0, 0x6b, 0xff, 0xf8, 0xb0, 0x6a, 0xff, 0xf5, 0xa3, 0x5c, 0xff, 0xf8, 0xa2, 0x5e, 0xff, 0xf7, 0xa3, 0x5f, 0xff, 0xf5, 0xa0, 0x5e, 0xff, 0xf5, 0xa0, 0x5e, 0xff, 0xee, 0xa0, 0x59, 0xff, 0xed, 0xa0, 0x58, 0xff, 0xf6, 0xa3, 0x64, 0xff, 0xf8, 0xa0, 0x61, 0xff, 0xf9, 0xa0, 0x63, 0xff, 0xf6, 0xa1, 0x65, 0xff, 0xec, 0x9c, 0x5c, 0xff, 0xe7, 0x95, 0x55, 0xff, 0xe7, 0x9d, 0x57, 0xff, 0xe5, 0x9f, 0x54, 0xff, 0xe3, 0x9c, 0x55, 0xff, 0xe6, 0xa1, 0x5b, 0xff, 0xed, 0xa6, 0x63, 0xff, 0xf6, 0xb1, 0x6c, 0xff, 0xf2, 0xb8, 0x73, 0xff, 0xf4, 0xbf, 0x7c, 0xff, 0xf8, 0xc5, 0x85, 0xff, 0xf7, 0xd0, 0x8a, 0xff, 0xf9, 0xe2, 0x8f, 0xff, 0xf8, 0xf1, 0x97, 0xff, 0xf5, 0xf4, 0x99, 0xff, 0xf0, 0xf1, 0x97, 0xff, 0xf3, 0xef, 0x98, 0xff, 0xf5, 0xee, 0x95, 0xff, 0xf6, 0xe5, 0x8d, 0xff, 0xf7, 0xd0, 0x87, 0xff, 0xf8, 0xc6, 0x83, 0xff, 0xf8, 0xbb, 0x7b, 0xff, 0xf9, 0xb3, 0x72, 0xff, 0xf5, 0xa8, 0x6a, 0xff, 0xef, 0xa1, 0x66, 0xff, 0xe6, 0x9f, 0x64, 0xff, 0xd8, 0x99, 0x60, 0xff, 0xcd, 0x91, 0x5b, 0xff, 0xc4, 0x88, 0x56, 0xff, 0xbd, 0x82, 0x4e, 0xff, 0xb8, 0x7e, 0x4b, 0xff, 0xb4, 0x7d, 0x4c, 0xff, 0xad, 0x76, 0x47, 0xff, 0xa5, 0x6c, 0x42, 0xff, 0xa1, 0x67, 0x3d, 0xff, 0x9d, 0x63, 0x3a, 0xff, 0x99, 0x5f, 0x38, 0xff, 0xa6, 0x68, 0x3f, 0xff, 0xaf, 0x71, 0x44, 0xff, 0xab, 0x6d, 0x40, 0xff, 0xa9, 0x6a, 0x3f, 0xff, 0xa5, 0x66, 0x3b, 0xff, 0x9f, 0x60, 0x36, 0xff, 0x9b, 0x5b, 0x31, 0xff, 0x97, 0x56, 0x2e, 0xff, 0x92, 0x51, 0x2b, 0xff, 0x8d, 0x4c, 0x28, 0xff, 0x88, 0x47, 0x27, 0xff, 0x84, 0x43, 0x25, 0xff, 0x7f, 0x3e, 0x22, 0xff, 0x7a, 0x3b, 0x1f, 0xff, 0x76, 0x38, 0x1c, 0xff, 0x73, 0x34, 0x19, 0xff, 0x6e, 0x30, 0x16, 0xff, 0x68, 0x2d, 0x12, 0xff, 0x66, 0x2a, 0x0d, 0xff, 0x61, 0x28, 0x0b, 0xff, 0x5e, 0x25, 0x09, 0xff, 0x58, 0x23, 0x06, 0xff, 0x53, 0x1e, 0x05, 0xff, 0x52, 0x19, 0x04, 0xff, 0x51, 0x17, 0x04, 0xff, 0x4a, 0x16, 0x04, 0xff, 0x47, 0x17, 0x04, 0xff, 0x47, 0x15, 0x04, 0xff, 0x47, 0x14, 0x04, 0xff, 0x47, 0x16, 0x04, 0xff, 0x47, 0x16, 0x04, 0xff, 0x47, 0x14, 0x04, 0xff, 0x4a, 0x17, 0x04, 0xff, 0x4b, 0x17, 0x04, 0xff, 0x4c, 0x17, 0x04, 0xff, 0x4e, 0x17, 0x04, 0xff, 0x50, 0x1a, 0x04, 0xff, 0x52, 0x1a, 0x04, 0xff, 0x57, 0x1d, 0x04, 0xff, 0x59, 0x21, 0x04, 0xff, 0x5c, 0x24, 0x04, 0xff, 0x60, 0x25, 0x04, 0xff, 0x66, 0x27, 0x07, 0xff, 0x6a, 0x2a, 0x0b, 0xff, 0x7b, 0x39, 0x1b, 0xff, 0x9a, 0x59, 0x2f, 0xff, 0x9f, 0x5e, 0x31, 0xff, 0x99, 0x54, 0x2b, 0xff, 0x96, 0x52, 0x29, 0xff, 0x93, 0x50, 0x29, 0xff, 0x92, 0x50, 0x28, 0xff, 0x93, 0x50, 0x29, 0xff, 0x95, 0x50, 0x2b, 0xff, 0x97, 0x53, 0x2c, 0xff, 0x96, 0x52, 0x2b, 0xff, 0x96, 0x50, 0x2a, 0xff, 0x91, 0x4f, 0x28, 0xff, 0x8e, 0x4d, 0x27, 0xff, 0x8c, 0x48, 0x26, 0xff, 0x97, 0x55, 0x2c, 0xff, 0x97, 0x52, 0x2c, 0xff, 0x94, 0x50, 0x2a, 0xff, 0x94, 0x50, 0x29, 0xff, 0x94, 0x4e, 0x29, 0xff, 0x94, 0x50, 0x29, 0xff, 0x95, 0x51, 0x2b, 0xff, 0x98, 0x53, 0x2d, 0xff, 0x9b, 0x56, 0x2f, 0xff, 0xa4, 0x5f, 0x34, 0xff, 0xa7, 0x64, 0x3a, 0xff, 0x8d, 0x4d, 0x2b, 0xff, 0x88, 0x4a, 0x29, 0xff, 0x8a, 0x4b, 0x2b, 0xff, 0x8a, 0x4a, 0x2b, 0xff, 0x8a, 0x49, 0x29, 0xff, 0x8b, 0x4c, 0x29, 0xff, 0x82, 0x43, 0x26, 0xff, 0x7a, 0x3b, 0x20, 0xff, 0x77, 0x37, 0x1f, 0xff, 0x78, 0x37, 0x1f, 0xff, 0x77, 0x38, 0x1d, 0xff, 0x74, 0x34, 0x1c, 0xff, 0x70, 0x32, 0x19, 0xff, 0x6d, 0x31, 0x17, 0xff, 0x6d, 0x2f, 0x14, 0xff, 0x69, 0x2e, 0x14, 0xff, 0x69, 0x2e, 0x14, 0xff, 0x68, 0x2c, 0x14, 0xff, 0x67, 0x2b, 0x11, 0xff, 0x66, 0x2a, 0x0d, 0xff, 0x68, 0x2c, 0x0f, 0xff, 0x6a, 0x2c, 0x11, 0xff, 0x69, 0x2b, 0x11, 0xff, 0x67, 0x2a, 0x11, 0xff, 0x66, 0x28, 0x0e, 0xff, 0x65, 0x27, 0x0d, 0xff, 0x65, 0x28, 0x11, 0xff, 0x65, 0x27, 0x0d, 0xff, 0x63, 0x29, 0x0d, 0xff, 0x63, 0x27, 0x0d, 0xff, 0x63, 0x29, 0x0d, 0xff, 0x61, 0x27, 0x0b, 0xff, 0x72, 0x34, 0x1d, 0xff, 0x80, 0x42, 0x27, 0xff, 0x80, 0x41, 0x27, 0xff, 0x7f, 0x40, 0x28, 0xff, 0x7e, 0x40, 0x25, 0xff, 0x7b, 0x39, 0x21, 0xff, 0x78, 0x38, 0x1e, 0xff, 0x73, 0x33, 0x18, 0xff, 0x71, 0x32, 0x1a, 0xff, 0x6c, 0x2e, 0x14, 0xff, 0x69, 0x2b, 0x13, 0xff, 0x67, 0x2c, 0x0e, 0xff, + 0x68, 0x2b, 0x12, 0xff, 0x66, 0x2b, 0x10, 0xff, 0x63, 0x29, 0x0f, 0xff, 0x62, 0x27, 0x0b, 0xff, 0x5f, 0x24, 0x08, 0xff, 0x5e, 0x24, 0x08, 0xff, 0x5e, 0x25, 0x09, 0xff, 0x5f, 0x25, 0x08, 0xff, 0x63, 0x27, 0x0b, 0xff, 0x63, 0x27, 0x09, 0xff, 0x61, 0x26, 0x07, 0xff, 0x5d, 0x24, 0x05, 0xff, 0x5e, 0x24, 0x05, 0xff, 0x5e, 0x24, 0x06, 0xff, 0x56, 0x20, 0x04, 0xff, 0x53, 0x20, 0x04, 0xff, 0x52, 0x1b, 0x04, 0xff, 0x55, 0x1d, 0x04, 0xff, 0x53, 0x19, 0x04, 0xff, 0x50, 0x1a, 0x04, 0xff, 0x4d, 0x16, 0x04, 0xff, 0x4f, 0x17, 0x04, 0xff, 0x52, 0x1c, 0x04, 0xff, 0x53, 0x20, 0x04, 0xff, 0x57, 0x21, 0x06, 0xff, 0x59, 0x23, 0x08, 0xff, 0x5f, 0x27, 0x0b, 0xff, 0x62, 0x27, 0x0b, 0xff, 0x61, 0x29, 0x11, 0xff, 0x68, 0x2a, 0x0d, 0xff, 0x6b, 0x2c, 0x11, 0xff, 0x6d, 0x2c, 0x11, 0xff, 0x72, 0x2e, 0x11, 0xff, 0x76, 0x32, 0x11, 0xff, 0x78, 0x35, 0x14, 0xff, 0x78, 0x35, 0x14, 0xff, 0x7e, 0x3a, 0x18, 0xff, 0x83, 0x3f, 0x1c, 0xff, 0x88, 0x42, 0x23, 0xff, 0x8c, 0x47, 0x24, 0xff, 0x94, 0x4f, 0x27, 0xff, 0x94, 0x50, 0x29, 0xff, 0x91, 0x4f, 0x29, 0xff, 0x97, 0x55, 0x2c, 0xff, 0x9d, 0x5c, 0x2e, 0xff, 0xa2, 0x5d, 0x2e, 0xff, 0xa7, 0x60, 0x32, 0xff, 0xac, 0x68, 0x35, 0xff, 0xae, 0x6a, 0x37, 0xff, 0xb0, 0x6c, 0x37, 0xff, 0xb4, 0x6f, 0x39, 0xff, 0xbc, 0x75, 0x40, 0xff, 0xc3, 0x7d, 0x44, 0xff, 0xce, 0x86, 0x4a, 0xff, 0xe0, 0x8d, 0x52, 0xff, 0xf1, 0x9a, 0x5c, 0xff, 0xf2, 0xa4, 0x69, 0xff, 0xe7, 0xa2, 0x68, 0xff, 0xd4, 0x96, 0x5d, 0xff, 0xe0, 0x9d, 0x62, 0xff, 0xe3, 0x9d, 0x61, 0xff, 0xeb, 0xa0, 0x64, 0xff, 0xf9, 0xa4, 0x66, 0xff, 0xf3, 0xa5, 0x63, 0xff, 0xf7, 0xac, 0x61, 0xff, 0xf8, 0xa7, 0x5c, 0xff, 0xf7, 0xa4, 0x5b, 0xff, 0xf8, 0xa6, 0x5e, 0xff, 0xf8, 0xaa, 0x62, 0xff, 0xf9, 0xac, 0x64, 0xff, 0xfa, 0xb1, 0x6a, 0xff, 0xf7, 0xb0, 0x69, 0xff, 0xf6, 0xaa, 0x66, 0xff, 0xf7, 0xa4, 0x5e, 0xff, 0xfa, 0xa4, 0x5f, 0xff, 0xf8, 0xa0, 0x60, 0xff, 0xf8, 0xa1, 0x5f, 0xff, 0xf1, 0xa3, 0x5b, 0xff, 0xed, 0xa5, 0x58, 0xff, 0xf1, 0x9f, 0x5f, 0xff, 0xfa, 0xa0, 0x63, 0xff, 0xf8, 0xa2, 0x63, 0xff, 0xf9, 0xa4, 0x63, 0xff, 0xf4, 0x9e, 0x62, 0xff, 0xe7, 0x97, 0x56, 0xff, 0xe7, 0x9d, 0x54, 0xff, 0xe3, 0x9b, 0x54, 0xff, 0xe4, 0x9b, 0x56, 0xff, 0xeb, 0xa5, 0x5e, 0xff, 0xef, 0xa9, 0x67, 0xff, 0xee, 0xad, 0x6e, 0xff, 0xf5, 0xbb, 0x78, 0xff, 0xf8, 0xc3, 0x7f, 0xff, 0xf5, 0xcd, 0x85, 0xff, 0xfa, 0xe3, 0x92, 0xff, 0xf6, 0xed, 0x97, 0xff, 0xef, 0xf4, 0x9c, 0xff, 0xec, 0xf5, 0xa4, 0xff, 0xed, 0xf6, 0xa6, 0xff, 0xea, 0xf5, 0xa5, 0xff, 0xee, 0xf5, 0xa4, 0xff, 0xf1, 0xf3, 0x9c, 0xff, 0xf4, 0xed, 0x96, 0xff, 0xf8, 0xdf, 0x8a, 0xff, 0xf9, 0xcd, 0x82, 0xff, 0xf8, 0xbe, 0x7e, 0xff, 0xf8, 0xb5, 0x77, 0xff, 0xfc, 0xb3, 0x75, 0xff, 0xeb, 0xa6, 0x6c, 0xff, 0xd0, 0x8f, 0x5d, 0xff, 0xc8, 0x8a, 0x59, 0xff, 0xbd, 0x80, 0x53, 0xff, 0xa5, 0x69, 0x40, 0xff, 0x90, 0x53, 0x2f, 0xff, 0x86, 0x47, 0x28, 0xff, 0x85, 0x46, 0x28, 0xff, 0x84, 0x47, 0x29, 0xff, 0x83, 0x46, 0x29, 0xff, 0x81, 0x43, 0x28, 0xff, 0x86, 0x48, 0x2c, 0xff, 0x9f, 0x60, 0x3c, 0xff, 0xac, 0x6c, 0x42, 0xff, 0xa8, 0x68, 0x3e, 0xff, 0xa6, 0x67, 0x3d, 0xff, 0xa2, 0x62, 0x39, 0xff, 0xa0, 0x5f, 0x36, 0xff, 0x9d, 0x5d, 0x33, 0xff, 0x9a, 0x5a, 0x32, 0xff, 0x98, 0x56, 0x2f, 0xff, 0x94, 0x52, 0x2c, 0xff, 0x8d, 0x4d, 0x29, 0xff, 0x89, 0x48, 0x27, 0xff, 0x84, 0x45, 0x26, 0xff, 0x7d, 0x3e, 0x21, 0xff, 0x78, 0x37, 0x1c, 0xff, 0x75, 0x34, 0x19, 0xff, 0x70, 0x32, 0x16, 0xff, 0x6a, 0x2f, 0x12, 0xff, 0x65, 0x2b, 0x0d, 0xff, 0x63, 0x27, 0x0b, 0xff, 0x5f, 0x25, 0x08, 0xff, 0x59, 0x23, 0x06, 0xff, 0x54, 0x22, 0x05, 0xff, 0x52, 0x1a, 0x04, 0xff, 0x4d, 0x16, 0x04, 0xff, 0x49, 0x16, 0x04, 0xff, 0x47, 0x14, 0x04, 0xff, 0x46, 0x17, 0x04, 0xff, 0x44, 0x18, 0x04, 0xff, 0x45, 0x18, 0x04, 0xff, 0x45, 0x18, 0x04, 0xff, 0x46, 0x16, 0x04, 0xff, 0x46, 0x15, 0x04, 0xff, 0x47, 0x15, 0x04, 0xff, 0x47, 0x15, 0x04, 0xff, 0x49, 0x17, 0x04, 0xff, 0x4b, 0x17, 0x04, 0xff, 0x4d, 0x16, 0x04, 0xff, 0x4f, 0x19, 0x04, 0xff, 0x53, 0x1b, 0x04, 0xff, 0x56, 0x1f, 0x04, 0xff, 0x5b, 0x23, 0x04, 0xff, 0x64, 0x28, 0x08, 0xff, 0x69, 0x2a, 0x07, 0xff, 0x78, 0x38, 0x1a, 0xff, 0x98, 0x58, 0x30, 0xff, 0x9d, 0x5c, 0x30, 0xff, 0x98, 0x55, 0x2b, 0xff, 0x94, 0x4f, 0x29, 0xff, 0x91, 0x4e, 0x28, 0xff, 0x91, 0x4f, 0x28, 0xff, 0x92, 0x50, 0x29, 0xff, 0x96, 0x52, 0x2c, 0xff, 0x98, 0x53, 0x2d, 0xff, 0x97, 0x52, 0x2c, 0xff, 0x96, 0x51, 0x2c, 0xff, 0x91, 0x50, 0x29, 0xff, 0x8d, 0x4a, 0x28, 0xff, 0x8b, 0x47, 0x26, 0xff, 0x98, 0x52, 0x2c, 0xff, 0x97, 0x51, 0x2b, 0xff, 0x93, 0x4e, 0x29, 0xff, 0x92, 0x4f, 0x29, 0xff, 0x90, 0x4d, 0x28, 0xff, 0x90, 0x4b, 0x28, 0xff, 0x90, 0x4c, 0x29, 0xff, 0x93, 0x4f, 0x2a, 0xff, 0x97, 0x53, 0x2c, 0xff, 0x9c, 0x5a, 0x2f, 0xff, 0xa3, 0x61, 0x35, 0xff, 0x8e, 0x4d, 0x2d, 0xff, 0x88, 0x47, 0x29, 0xff, 0x88, 0x48, 0x29, 0xff, 0x89, 0x48, 0x28, 0xff, 0x88, 0x49, 0x29, 0xff, 0x88, 0x48, 0x29, 0xff, 0x87, 0x48, 0x29, 0xff, 0x7a, 0x3a, 0x20, 0xff, 0x77, 0x37, 0x1f, 0xff, 0x76, 0x37, 0x1f, 0xff, 0x76, 0x37, 0x1d, 0xff, 0x74, 0x34, 0x1b, 0xff, 0x71, 0x31, 0x17, 0xff, 0x6c, 0x2f, 0x15, 0xff, 0x6a, 0x2e, 0x14, 0xff, 0x69, 0x2d, 0x14, 0xff, 0x67, 0x2c, 0x13, 0xff, 0x67, 0x2b, 0x10, 0xff, 0x64, 0x29, 0x10, 0xff, 0x66, 0x29, 0x0f, 0xff, 0x6a, 0x2c, 0x12, 0xff, 0x68, 0x2a, 0x11, 0xff, 0x66, 0x29, 0x11, 0xff, 0x64, 0x27, 0x0f, 0xff, 0x62, 0x27, 0x0d, 0xff, 0x65, 0x28, 0x10, 0xff, 0x64, 0x29, 0x0a, 0xff, 0x64, 0x27, 0x0d, 0xff, 0x63, 0x27, 0x0c, 0xff, 0x62, 0x27, 0x0b, 0xff, 0x62, 0x27, 0x0b, 0xff, 0x60, 0x26, 0x0a, 0xff, 0x6f, 0x30, 0x18, 0xff, 0x82, 0x43, 0x28, 0xff, 0x81, 0x42, 0x27, 0xff, 0x80, 0x42, 0x27, 0xff, 0x80, 0x40, 0x25, 0xff, 0x7b, 0x3c, 0x23, 0xff, 0x78, 0x39, 0x20, 0xff, 0x74, 0x33, 0x1a, 0xff, 0x73, 0x32, 0x18, 0xff, 0x6d, 0x30, 0x14, 0xff, 0x6d, 0x2e, 0x14, 0xff, 0x68, 0x2c, 0x14, 0xff, + 0x69, 0x2e, 0x14, 0xff, 0x67, 0x2c, 0x13, 0xff, 0x66, 0x29, 0x0e, 0xff, 0x61, 0x28, 0x0d, 0xff, 0x62, 0x25, 0x0a, 0xff, 0x60, 0x26, 0x09, 0xff, 0x5f, 0x25, 0x09, 0xff, 0x61, 0x28, 0x07, 0xff, 0x63, 0x28, 0x0b, 0xff, 0x64, 0x29, 0x0c, 0xff, 0x65, 0x29, 0x0a, 0xff, 0x65, 0x29, 0x0a, 0xff, 0x63, 0x26, 0x09, 0xff, 0x5a, 0x22, 0x07, 0xff, 0x54, 0x20, 0x04, 0xff, 0x53, 0x1b, 0x04, 0xff, 0x52, 0x1a, 0x04, 0xff, 0x51, 0x19, 0x04, 0xff, 0x51, 0x18, 0x04, 0xff, 0x50, 0x18, 0x04, 0xff, 0x50, 0x18, 0x04, 0xff, 0x4e, 0x16, 0x04, 0xff, 0x52, 0x1c, 0x04, 0xff, 0x54, 0x1f, 0x04, 0xff, 0x58, 0x24, 0x08, 0xff, 0x5c, 0x24, 0x0a, 0xff, 0x5d, 0x27, 0x0b, 0xff, 0x61, 0x28, 0x0d, 0xff, 0x62, 0x29, 0x11, 0xff, 0x66, 0x2c, 0x10, 0xff, 0x68, 0x2b, 0x11, 0xff, 0x6d, 0x2b, 0x11, 0xff, 0x70, 0x2e, 0x11, 0xff, 0x74, 0x2f, 0x11, 0xff, 0x77, 0x34, 0x13, 0xff, 0x78, 0x36, 0x14, 0xff, 0x7a, 0x36, 0x14, 0xff, 0x80, 0x3c, 0x19, 0xff, 0x83, 0x3f, 0x1f, 0xff, 0x88, 0x45, 0x22, 0xff, 0x8f, 0x49, 0x25, 0xff, 0x94, 0x4f, 0x27, 0xff, 0x90, 0x4d, 0x26, 0xff, 0x93, 0x53, 0x2a, 0xff, 0x99, 0x57, 0x2d, 0xff, 0x9d, 0x5a, 0x2d, 0xff, 0xa4, 0x5f, 0x30, 0xff, 0xa7, 0x62, 0x32, 0xff, 0xaa, 0x65, 0x35, 0xff, 0xac, 0x69, 0x37, 0xff, 0xaf, 0x6e, 0x39, 0xff, 0xb9, 0x74, 0x3e, 0xff, 0xc1, 0x7c, 0x44, 0xff, 0xc9, 0x82, 0x47, 0xff, 0xd8, 0x8b, 0x4e, 0xff, 0xe5, 0x94, 0x57, 0xff, 0xd5, 0x92, 0x5a, 0xff, 0xcc, 0x93, 0x5b, 0xff, 0xd4, 0x99, 0x62, 0xff, 0xd9, 0x9c, 0x63, 0xff, 0xdc, 0x9e, 0x66, 0xff, 0xe8, 0x9f, 0x66, 0xff, 0xf5, 0xa5, 0x69, 0xff, 0xed, 0xae, 0x6a, 0xff, 0xf8, 0xb4, 0x68, 0xff, 0xfa, 0xab, 0x62, 0xff, 0xf7, 0xa4, 0x5c, 0xff, 0xf7, 0xa5, 0x5d, 0xff, 0xf7, 0xa9, 0x60, 0xff, 0xf8, 0xab, 0x65, 0xff, 0xf9, 0xad, 0x68, 0xff, 0xf9, 0xb0, 0x6a, 0xff, 0xf7, 0xb1, 0x6b, 0xff, 0xf7, 0xa8, 0x65, 0xff, 0xf9, 0xa1, 0x5c, 0xff, 0xf7, 0xa0, 0x5e, 0xff, 0xf5, 0x9e, 0x5d, 0xff, 0xed, 0x9f, 0x5a, 0xff, 0xe8, 0xa0, 0x56, 0xff, 0xed, 0xa0, 0x5b, 0xff, 0xfb, 0xa1, 0x65, 0xff, 0xf8, 0xa1, 0x61, 0xff, 0xf9, 0xa5, 0x65, 0xff, 0xf3, 0x9f, 0x61, 0xff, 0xea, 0x98, 0x56, 0xff, 0xec, 0x9e, 0x55, 0xff, 0xe7, 0x9e, 0x54, 0xff, 0xeb, 0xa2, 0x5a, 0xff, 0xeb, 0xa5, 0x61, 0xff, 0xeb, 0xaa, 0x67, 0xff, 0xf1, 0xb3, 0x6f, 0xff, 0xf5, 0xbc, 0x79, 0xff, 0xf7, 0xc7, 0x82, 0xff, 0xf7, 0xd7, 0x8c, 0xff, 0xf9, 0xe2, 0x93, 0xff, 0xf2, 0xee, 0x9d, 0xff, 0xed, 0xf6, 0xa7, 0xff, 0xee, 0xf5, 0xaf, 0xff, 0xed, 0xf7, 0xb2, 0xff, 0xef, 0xf6, 0xb3, 0xff, 0xf0, 0xf5, 0xb2, 0xff, 0xed, 0xf6, 0xad, 0xff, 0xeb, 0xf4, 0xa5, 0xff, 0xf2, 0xf4, 0x9d, 0xff, 0xfc, 0xf3, 0x9c, 0xff, 0xf0, 0xd5, 0x8e, 0xff, 0xd3, 0xa7, 0x71, 0xff, 0xbb, 0x81, 0x54, 0xff, 0xa5, 0x68, 0x40, 0xff, 0x96, 0x5d, 0x37, 0xff, 0x90, 0x52, 0x31, 0xff, 0x8c, 0x4c, 0x2d, 0xff, 0x8a, 0x4c, 0x2c, 0xff, 0x8a, 0x4d, 0x2d, 0xff, 0x88, 0x4d, 0x2d, 0xff, 0x88, 0x4c, 0x2d, 0xff, 0x87, 0x4b, 0x2b, 0xff, 0x85, 0x48, 0x29, 0xff, 0x82, 0x45, 0x28, 0xff, 0x8c, 0x4d, 0x2d, 0xff, 0xa3, 0x63, 0x3c, 0xff, 0xab, 0x6c, 0x42, 0xff, 0xa8, 0x6a, 0x3f, 0xff, 0xa8, 0x69, 0x3e, 0xff, 0xa6, 0x64, 0x3b, 0xff, 0xa2, 0x60, 0x36, 0xff, 0x9e, 0x5d, 0x33, 0xff, 0x9b, 0x59, 0x32, 0xff, 0x99, 0x57, 0x32, 0xff, 0x96, 0x55, 0x2f, 0xff, 0x94, 0x52, 0x2d, 0xff, 0x92, 0x50, 0x2c, 0xff, 0x8f, 0x4e, 0x2a, 0xff, 0x8a, 0x49, 0x29, 0xff, 0x84, 0x43, 0x25, 0xff, 0x7c, 0x3c, 0x1f, 0xff, 0x71, 0x33, 0x18, 0xff, 0x6a, 0x2e, 0x12, 0xff, 0x67, 0x2c, 0x0f, 0xff, 0x64, 0x29, 0x0c, 0xff, 0x5f, 0x26, 0x07, 0xff, 0x5a, 0x22, 0x06, 0xff, 0x55, 0x21, 0x05, 0xff, 0x51, 0x1b, 0x04, 0xff, 0x4d, 0x16, 0x04, 0xff, 0x49, 0x16, 0x04, 0xff, 0x47, 0x17, 0x04, 0xff, 0x46, 0x18, 0x04, 0xff, 0x44, 0x17, 0x04, 0xff, 0x44, 0x16, 0x04, 0xff, 0x45, 0x18, 0x04, 0xff, 0x45, 0x19, 0x04, 0xff, 0x46, 0x19, 0x04, 0xff, 0x46, 0x18, 0x04, 0xff, 0x46, 0x18, 0x04, 0xff, 0x46, 0x18, 0x04, 0xff, 0x46, 0x17, 0x04, 0xff, 0x49, 0x17, 0x04, 0xff, 0x4d, 0x16, 0x04, 0xff, 0x50, 0x19, 0x04, 0xff, 0x52, 0x1c, 0x04, 0xff, 0x53, 0x1b, 0x03, 0xff, 0x66, 0x2a, 0x0d, 0xff, 0x67, 0x2a, 0x09, 0xff, 0x72, 0x34, 0x18, 0xff, 0x96, 0x55, 0x2f, 0xff, 0x9b, 0x5c, 0x32, 0xff, 0x97, 0x53, 0x2c, 0xff, 0x91, 0x4f, 0x28, 0xff, 0x90, 0x4c, 0x28, 0xff, 0x92, 0x4e, 0x29, 0xff, 0x94, 0x51, 0x2b, 0xff, 0x97, 0x54, 0x2e, 0xff, 0x98, 0x57, 0x30, 0xff, 0x98, 0x56, 0x30, 0xff, 0x97, 0x55, 0x2e, 0xff, 0x94, 0x52, 0x2c, 0xff, 0x8d, 0x4c, 0x27, 0xff, 0x94, 0x51, 0x2c, 0xff, 0x98, 0x52, 0x2d, 0xff, 0x93, 0x4f, 0x29, 0xff, 0x8f, 0x4c, 0x28, 0xff, 0x8e, 0x4a, 0x28, 0xff, 0x8e, 0x4b, 0x28, 0xff, 0x8e, 0x4a, 0x28, 0xff, 0x8f, 0x4b, 0x27, 0xff, 0x91, 0x4d, 0x29, 0xff, 0x93, 0x4f, 0x2a, 0xff, 0x97, 0x52, 0x2b, 0xff, 0x9e, 0x5a, 0x33, 0xff, 0x8b, 0x4c, 0x2c, 0xff, 0x86, 0x45, 0x29, 0xff, 0x85, 0x45, 0x28, 0xff, 0x87, 0x47, 0x27, 0xff, 0x86, 0x46, 0x27, 0xff, 0x86, 0x46, 0x28, 0xff, 0x89, 0x48, 0x28, 0xff, 0x7a, 0x3a, 0x21, 0xff, 0x76, 0x38, 0x20, 0xff, 0x74, 0x37, 0x1f, 0xff, 0x75, 0x36, 0x20, 0xff, 0x73, 0x33, 0x1a, 0xff, 0x6d, 0x30, 0x17, 0xff, 0x6b, 0x2e, 0x15, 0xff, 0x69, 0x2e, 0x14, 0xff, 0x67, 0x29, 0x12, 0xff, 0x67, 0x2c, 0x12, 0xff, 0x64, 0x27, 0x0e, 0xff, 0x64, 0x28, 0x0c, 0xff, 0x69, 0x2c, 0x11, 0xff, 0x67, 0x2a, 0x0e, 0xff, 0x65, 0x27, 0x0e, 0xff, 0x64, 0x27, 0x0e, 0xff, 0x64, 0x28, 0x0d, 0xff, 0x64, 0x28, 0x0d, 0xff, 0x64, 0x28, 0x0d, 0xff, 0x64, 0x29, 0x0d, 0xff, 0x63, 0x29, 0x0d, 0xff, 0x61, 0x26, 0x0a, 0xff, 0x61, 0x28, 0x0d, 0xff, 0x60, 0x27, 0x0b, 0xff, 0x60, 0x26, 0x09, 0xff, 0x69, 0x2d, 0x13, 0xff, 0x81, 0x42, 0x27, 0xff, 0x81, 0x42, 0x27, 0xff, 0x82, 0x42, 0x27, 0xff, 0x7d, 0x3d, 0x24, 0xff, 0x7b, 0x3c, 0x24, 0xff, 0x77, 0x38, 0x1f, 0xff, 0x76, 0x35, 0x1b, 0xff, 0x75, 0x33, 0x19, 0xff, 0x6e, 0x30, 0x13, 0xff, 0x6e, 0x2f, 0x14, 0xff, 0x6b, 0x2e, 0x13, 0xff, + 0x6d, 0x2e, 0x16, 0xff, 0x67, 0x2b, 0x13, 0xff, 0x66, 0x2a, 0x0e, 0xff, 0x64, 0x27, 0x0d, 0xff, 0x63, 0x27, 0x0d, 0xff, 0x62, 0x26, 0x0d, 0xff, 0x61, 0x26, 0x0a, 0xff, 0x61, 0x26, 0x0a, 0xff, 0x62, 0x27, 0x0a, 0xff, 0x66, 0x29, 0x0c, 0xff, 0x66, 0x29, 0x0d, 0xff, 0x66, 0x28, 0x0c, 0xff, 0x61, 0x27, 0x08, 0xff, 0x57, 0x1e, 0x04, 0xff, 0x51, 0x1e, 0x03, 0xff, 0x51, 0x17, 0x04, 0xff, 0x51, 0x19, 0x04, 0xff, 0x51, 0x19, 0x04, 0xff, 0x51, 0x16, 0x04, 0xff, 0x50, 0x17, 0x04, 0xff, 0x50, 0x17, 0x04, 0xff, 0x51, 0x1b, 0x04, 0xff, 0x54, 0x21, 0x04, 0xff, 0x58, 0x21, 0x06, 0xff, 0x58, 0x23, 0x09, 0xff, 0x5c, 0x26, 0x0a, 0xff, 0x5f, 0x28, 0x0c, 0xff, 0x61, 0x2a, 0x11, 0xff, 0x66, 0x2c, 0x11, 0xff, 0x64, 0x2b, 0x11, 0xff, 0x69, 0x2c, 0x11, 0xff, 0x6c, 0x2e, 0x11, 0xff, 0x6c, 0x2b, 0x11, 0xff, 0x71, 0x2d, 0x11, 0xff, 0x73, 0x30, 0x13, 0xff, 0x76, 0x33, 0x13, 0xff, 0x76, 0x33, 0x14, 0xff, 0x78, 0x35, 0x15, 0xff, 0x7f, 0x3a, 0x19, 0xff, 0x85, 0x40, 0x20, 0xff, 0x87, 0x43, 0x22, 0xff, 0x8e, 0x48, 0x24, 0xff, 0x92, 0x4d, 0x27, 0xff, 0x8e, 0x4c, 0x26, 0xff, 0x95, 0x52, 0x2a, 0xff, 0x9b, 0x57, 0x2b, 0xff, 0x9c, 0x56, 0x2c, 0xff, 0xa0, 0x5b, 0x30, 0xff, 0xa6, 0x62, 0x34, 0xff, 0xa9, 0x67, 0x37, 0xff, 0xab, 0x69, 0x38, 0xff, 0xb3, 0x71, 0x3e, 0xff, 0xbc, 0x7c, 0x45, 0xff, 0xc4, 0x80, 0x48, 0xff, 0xcd, 0x85, 0x4b, 0xff, 0xcb, 0x83, 0x4c, 0xff, 0xc6, 0x87, 0x51, 0xff, 0xcb, 0x92, 0x5c, 0xff, 0xcd, 0x95, 0x5e, 0xff, 0xd4, 0x96, 0x63, 0xff, 0xd9, 0x99, 0x66, 0xff, 0xe3, 0x9d, 0x67, 0xff, 0xee, 0xa2, 0x6b, 0xff, 0xf0, 0xb4, 0x71, 0xff, 0xfa, 0xc1, 0x72, 0xff, 0xf8, 0xb4, 0x69, 0xff, 0xf9, 0xab, 0x5e, 0xff, 0xf9, 0xa5, 0x5f, 0xff, 0xfa, 0xa5, 0x61, 0xff, 0xfa, 0xaa, 0x66, 0xff, 0xf9, 0xb0, 0x69, 0xff, 0xfa, 0xb0, 0x69, 0xff, 0xf8, 0xae, 0x6c, 0xff, 0xf8, 0xac, 0x6b, 0xff, 0xf7, 0xa3, 0x62, 0xff, 0xf9, 0xa0, 0x5d, 0xff, 0xf3, 0x9b, 0x5b, 0xff, 0xed, 0x9a, 0x5a, 0xff, 0xe4, 0x9c, 0x56, 0xff, 0xea, 0x9f, 0x56, 0xff, 0xf1, 0xa2, 0x5e, 0xff, 0xf9, 0xa2, 0x64, 0xff, 0xf8, 0xa3, 0x64, 0xff, 0xf4, 0xa3, 0x63, 0xff, 0xeb, 0x98, 0x55, 0xff, 0xec, 0x9c, 0x53, 0xff, 0xed, 0x9e, 0x58, 0xff, 0xec, 0x9d, 0x5c, 0xff, 0xeb, 0xa5, 0x62, 0xff, 0xef, 0xaa, 0x6b, 0xff, 0xf4, 0xae, 0x71, 0xff, 0xf8, 0xbb, 0x76, 0xff, 0xf9, 0xcc, 0x81, 0xff, 0xfa, 0xda, 0x8c, 0xff, 0xf7, 0xe8, 0x97, 0xff, 0xf2, 0xfa, 0xa2, 0xff, 0xec, 0xf6, 0xab, 0xff, 0xef, 0xf6, 0xb9, 0xff, 0xf5, 0xf7, 0xc2, 0xff, 0xf3, 0xf6, 0xbf, 0xff, 0xf2, 0xf5, 0xbd, 0xff, 0xf3, 0xf7, 0xbb, 0xff, 0xfa, 0xfb, 0xbf, 0xff, 0xe4, 0xdc, 0xac, 0xff, 0xa9, 0x89, 0x60, 0xff, 0x92, 0x5c, 0x34, 0xff, 0x94, 0x5d, 0x3a, 0xff, 0x92, 0x58, 0x35, 0xff, 0x92, 0x55, 0x33, 0xff, 0x93, 0x56, 0x34, 0xff, 0x92, 0x55, 0x33, 0xff, 0x90, 0x53, 0x31, 0xff, 0x8d, 0x50, 0x2e, 0xff, 0x8a, 0x4e, 0x2d, 0xff, 0x88, 0x4e, 0x2c, 0xff, 0x88, 0x4d, 0x2d, 0xff, 0x87, 0x4a, 0x2b, 0xff, 0x85, 0x47, 0x29, 0xff, 0x81, 0x44, 0x27, 0xff, 0x91, 0x53, 0x31, 0xff, 0xa8, 0x69, 0x40, 0xff, 0xab, 0x6d, 0x42, 0xff, 0xaa, 0x6b, 0x3f, 0xff, 0xa9, 0x69, 0x3e, 0xff, 0xa6, 0x65, 0x3b, 0xff, 0xa3, 0x61, 0x36, 0xff, 0x9f, 0x5e, 0x33, 0xff, 0x9f, 0x5e, 0x33, 0xff, 0xa0, 0x5e, 0x34, 0xff, 0x9f, 0x5d, 0x33, 0xff, 0x9b, 0x5a, 0x31, 0xff, 0x97, 0x56, 0x2f, 0xff, 0x93, 0x52, 0x2d, 0xff, 0x90, 0x4e, 0x2c, 0xff, 0x8d, 0x4d, 0x29, 0xff, 0x8a, 0x49, 0x27, 0xff, 0x86, 0x42, 0x27, 0xff, 0x7e, 0x3d, 0x21, 0xff, 0x6e, 0x2f, 0x14, 0xff, 0x65, 0x28, 0x0b, 0xff, 0x61, 0x27, 0x0a, 0xff, 0x5c, 0x24, 0x09, 0xff, 0x56, 0x23, 0x05, 0xff, 0x52, 0x1c, 0x04, 0xff, 0x4e, 0x17, 0x04, 0xff, 0x4a, 0x15, 0x04, 0xff, 0x47, 0x15, 0x04, 0xff, 0x45, 0x18, 0x04, 0xff, 0x44, 0x17, 0x04, 0xff, 0x41, 0x13, 0x04, 0xff, 0x3f, 0x12, 0x04, 0xff, 0x41, 0x12, 0x04, 0xff, 0x40, 0x11, 0x04, 0xff, 0x43, 0x13, 0x04, 0xff, 0x45, 0x17, 0x04, 0xff, 0x43, 0x14, 0x04, 0xff, 0x44, 0x17, 0x04, 0xff, 0x45, 0x15, 0x04, 0xff, 0x4a, 0x17, 0x04, 0xff, 0x4c, 0x16, 0x04, 0xff, 0x4f, 0x19, 0x04, 0xff, 0x51, 0x1b, 0x03, 0xff, 0x66, 0x29, 0x0c, 0xff, 0x65, 0x2a, 0x0a, 0xff, 0x6d, 0x2e, 0x12, 0xff, 0x92, 0x52, 0x2d, 0xff, 0x99, 0x58, 0x33, 0xff, 0x96, 0x53, 0x2e, 0xff, 0x92, 0x50, 0x2a, 0xff, 0x90, 0x4b, 0x27, 0xff, 0x92, 0x4f, 0x28, 0xff, 0x94, 0x52, 0x2c, 0xff, 0x99, 0x58, 0x31, 0xff, 0x9c, 0x5c, 0x33, 0xff, 0x9d, 0x5d, 0x33, 0xff, 0x99, 0x5a, 0x32, 0xff, 0x98, 0x57, 0x2f, 0xff, 0x92, 0x50, 0x2b, 0xff, 0x98, 0x54, 0x2f, 0xff, 0x97, 0x51, 0x2b, 0xff, 0x91, 0x4e, 0x28, 0xff, 0x8e, 0x48, 0x27, 0xff, 0x8b, 0x47, 0x27, 0xff, 0x8b, 0x47, 0x26, 0xff, 0x8b, 0x47, 0x26, 0xff, 0x8d, 0x4a, 0x28, 0xff, 0x8e, 0x4b, 0x28, 0xff, 0x90, 0x4c, 0x28, 0xff, 0x94, 0x50, 0x2a, 0xff, 0x98, 0x55, 0x2f, 0xff, 0x89, 0x47, 0x2a, 0xff, 0x87, 0x46, 0x28, 0xff, 0x84, 0x45, 0x27, 0xff, 0x84, 0x44, 0x26, 0xff, 0x85, 0x45, 0x28, 0xff, 0x86, 0x46, 0x27, 0xff, 0x88, 0x49, 0x29, 0xff, 0x78, 0x3a, 0x1d, 0xff, 0x75, 0x3a, 0x22, 0xff, 0x75, 0x39, 0x22, 0xff, 0x75, 0x35, 0x1e, 0xff, 0x72, 0x33, 0x1a, 0xff, 0x6d, 0x30, 0x15, 0xff, 0x69, 0x2b, 0x14, 0xff, 0x69, 0x2b, 0x14, 0xff, 0x66, 0x29, 0x11, 0xff, 0x66, 0x29, 0x0d, 0xff, 0x63, 0x27, 0x0b, 0xff, 0x68, 0x2b, 0x11, 0xff, 0x66, 0x29, 0x0e, 0xff, 0x66, 0x28, 0x0f, 0xff, 0x65, 0x27, 0x0d, 0xff, 0x62, 0x29, 0x0d, 0xff, 0x62, 0x27, 0x0d, 0xff, 0x63, 0x29, 0x10, 0xff, 0x61, 0x28, 0x0a, 0xff, 0x61, 0x28, 0x0d, 0xff, 0x61, 0x27, 0x0d, 0xff, 0x60, 0x28, 0x0d, 0xff, 0x60, 0x26, 0x0a, 0xff, 0x60, 0x26, 0x0a, 0xff, 0x5d, 0x25, 0x0a, 0xff, 0x62, 0x29, 0x0e, 0xff, 0x82, 0x43, 0x28, 0xff, 0x82, 0x41, 0x27, 0xff, 0x7c, 0x3d, 0x24, 0xff, 0x78, 0x39, 0x23, 0xff, 0x78, 0x39, 0x21, 0xff, 0x77, 0x37, 0x1e, 0xff, 0x76, 0x37, 0x1f, 0xff, 0x75, 0x34, 0x19, 0xff, 0x70, 0x31, 0x17, 0xff, 0x70, 0x30, 0x17, 0xff, 0x6e, 0x30, 0x17, 0xff, + 0x6f, 0x2f, 0x14, 0xff, 0x6c, 0x2e, 0x13, 0xff, 0x69, 0x2a, 0x11, 0xff, 0x66, 0x29, 0x11, 0xff, 0x66, 0x28, 0x0d, 0xff, 0x65, 0x29, 0x0e, 0xff, 0x64, 0x29, 0x0e, 0xff, 0x66, 0x28, 0x0d, 0xff, 0x63, 0x26, 0x0d, 0xff, 0x66, 0x29, 0x0d, 0xff, 0x66, 0x29, 0x0d, 0xff, 0x68, 0x2a, 0x0f, 0xff, 0x5c, 0x24, 0x07, 0xff, 0x57, 0x1f, 0x05, 0xff, 0x53, 0x1f, 0x04, 0xff, 0x51, 0x16, 0x03, 0xff, 0x51, 0x17, 0x03, 0xff, 0x51, 0x19, 0x03, 0xff, 0x50, 0x17, 0x04, 0xff, 0x50, 0x17, 0x04, 0xff, 0x51, 0x1c, 0x04, 0xff, 0x53, 0x21, 0x03, 0xff, 0x55, 0x1c, 0x04, 0xff, 0x55, 0x21, 0x04, 0xff, 0x59, 0x24, 0x09, 0xff, 0x5c, 0x26, 0x0a, 0xff, 0x5e, 0x27, 0x0d, 0xff, 0x61, 0x29, 0x0f, 0xff, 0x64, 0x2c, 0x13, 0xff, 0x66, 0x2c, 0x11, 0xff, 0x68, 0x2d, 0x13, 0xff, 0x68, 0x2c, 0x11, 0xff, 0x6c, 0x2e, 0x11, 0xff, 0x6e, 0x2c, 0x11, 0xff, 0x71, 0x2f, 0x11, 0xff, 0x73, 0x30, 0x14, 0xff, 0x74, 0x32, 0x14, 0xff, 0x75, 0x32, 0x14, 0xff, 0x77, 0x35, 0x14, 0xff, 0x7c, 0x39, 0x18, 0xff, 0x7f, 0x3b, 0x1a, 0xff, 0x85, 0x40, 0x1f, 0xff, 0x88, 0x46, 0x23, 0xff, 0x8a, 0x44, 0x24, 0xff, 0x8c, 0x49, 0x25, 0xff, 0x96, 0x50, 0x29, 0xff, 0x99, 0x52, 0x29, 0xff, 0x9d, 0x56, 0x2d, 0xff, 0xa1, 0x5e, 0x33, 0xff, 0xa6, 0x64, 0x37, 0xff, 0xa4, 0x64, 0x36, 0xff, 0xad, 0x6c, 0x3c, 0xff, 0xb6, 0x75, 0x41, 0xff, 0xbf, 0x7c, 0x45, 0xff, 0xbc, 0x78, 0x44, 0xff, 0xbc, 0x78, 0x44, 0xff, 0xc3, 0x83, 0x4e, 0xff, 0xc6, 0x8c, 0x57, 0xff, 0xcb, 0x94, 0x5f, 0xff, 0xcd, 0x93, 0x61, 0xff, 0xd3, 0x96, 0x64, 0xff, 0xdd, 0x98, 0x67, 0xff, 0xe8, 0xa0, 0x6d, 0xff, 0xf2, 0xb7, 0x7e, 0xff, 0xfa, 0xbe, 0x7b, 0xff, 0xfa, 0xbf, 0x6f, 0xff, 0xf9, 0xb1, 0x65, 0xff, 0xf8, 0xab, 0x62, 0xff, 0xfa, 0xaa, 0x62, 0xff, 0xf8, 0xaa, 0x64, 0xff, 0xf9, 0xad, 0x69, 0xff, 0xf7, 0xb0, 0x6c, 0xff, 0xf8, 0xb0, 0x6c, 0xff, 0xf8, 0xac, 0x6b, 0xff, 0xf3, 0xa2, 0x63, 0xff, 0xe9, 0x95, 0x56, 0xff, 0xef, 0x9a, 0x5c, 0xff, 0xec, 0x9c, 0x5a, 0xff, 0xe4, 0x9b, 0x54, 0xff, 0xe8, 0x9b, 0x54, 0xff, 0xef, 0xa2, 0x5d, 0xff, 0xfa, 0xa5, 0x67, 0xff, 0xfa, 0xa5, 0x66, 0xff, 0xf5, 0x9f, 0x61, 0xff, 0xed, 0x9a, 0x59, 0xff, 0xec, 0xa0, 0x57, 0xff, 0xec, 0xa3, 0x58, 0xff, 0xee, 0xa7, 0x5f, 0xff, 0xec, 0xa3, 0x62, 0xff, 0xf6, 0xac, 0x6a, 0xff, 0xf7, 0xb6, 0x70, 0xff, 0xf6, 0xb8, 0x76, 0xff, 0xf3, 0xc7, 0x81, 0xff, 0xf6, 0xe0, 0x8e, 0xff, 0xf8, 0xe9, 0x97, 0xff, 0xef, 0xf6, 0xa4, 0xff, 0xf0, 0xf8, 0xb5, 0xff, 0xf3, 0xf6, 0xc4, 0xff, 0xf7, 0xf7, 0xcd, 0xff, 0xf8, 0xf6, 0xd5, 0xff, 0xf5, 0xf0, 0xdf, 0xff, 0xd6, 0xc4, 0xba, 0xff, 0x9e, 0x76, 0x60, 0xff, 0x8a, 0x54, 0x37, 0xff, 0x8d, 0x58, 0x37, 0xff, 0x93, 0x5d, 0x3d, 0xff, 0x94, 0x5d, 0x3c, 0xff, 0x94, 0x5d, 0x3a, 0xff, 0x95, 0x5d, 0x3a, 0xff, 0x95, 0x5d, 0x39, 0xff, 0x92, 0x59, 0x35, 0xff, 0x8f, 0x51, 0x30, 0xff, 0x8d, 0x4f, 0x2e, 0xff, 0x8a, 0x4f, 0x2e, 0xff, 0x8a, 0x4e, 0x2d, 0xff, 0x89, 0x4d, 0x2c, 0xff, 0x86, 0x4b, 0x2b, 0xff, 0x85, 0x49, 0x2a, 0xff, 0x80, 0x41, 0x25, 0xff, 0x9c, 0x5d, 0x3c, 0xff, 0xb5, 0x76, 0x4c, 0xff, 0xad, 0x6e, 0x41, 0xff, 0xac, 0x6d, 0x3f, 0xff, 0xa9, 0x69, 0x3e, 0xff, 0xa7, 0x67, 0x3d, 0xff, 0xa7, 0x66, 0x3a, 0xff, 0xa7, 0x66, 0x37, 0xff, 0xa5, 0x64, 0x36, 0xff, 0xa5, 0x62, 0x38, 0xff, 0xa3, 0x61, 0x36, 0xff, 0x9f, 0x5e, 0x34, 0xff, 0x9b, 0x5a, 0x32, 0xff, 0x97, 0x54, 0x2f, 0xff, 0x93, 0x4f, 0x2c, 0xff, 0x90, 0x4e, 0x2a, 0xff, 0x8e, 0x4d, 0x29, 0xff, 0x8c, 0x4c, 0x28, 0xff, 0x87, 0x47, 0x27, 0xff, 0x84, 0x43, 0x26, 0xff, 0x7d, 0x3d, 0x24, 0xff, 0x69, 0x2c, 0x11, 0xff, 0x5e, 0x24, 0x06, 0xff, 0x57, 0x22, 0x05, 0xff, 0x52, 0x1f, 0x04, 0xff, 0x51, 0x19, 0x04, 0xff, 0x4c, 0x15, 0x04, 0xff, 0x47, 0x16, 0x04, 0xff, 0x45, 0x18, 0x04, 0xff, 0x43, 0x15, 0x04, 0xff, 0x41, 0x11, 0x04, 0xff, 0x40, 0x11, 0x04, 0xff, 0x40, 0x11, 0x04, 0xff, 0x40, 0x10, 0x04, 0xff, 0x40, 0x11, 0x04, 0xff, 0x40, 0x11, 0x04, 0xff, 0x40, 0x12, 0x04, 0xff, 0x43, 0x17, 0x04, 0xff, 0x46, 0x17, 0x04, 0xff, 0x46, 0x17, 0x04, 0xff, 0x46, 0x15, 0x04, 0xff, 0x48, 0x15, 0x04, 0xff, 0x50, 0x1a, 0x04, 0xff, 0x63, 0x27, 0x08, 0xff, 0x65, 0x29, 0x0a, 0xff, 0x62, 0x23, 0x05, 0xff, 0x8f, 0x4e, 0x27, 0xff, 0x98, 0x58, 0x34, 0xff, 0x93, 0x52, 0x2f, 0xff, 0x91, 0x4f, 0x2a, 0xff, 0x8f, 0x4c, 0x28, 0xff, 0x93, 0x50, 0x2a, 0xff, 0x96, 0x54, 0x2e, 0xff, 0x9b, 0x5a, 0x33, 0xff, 0xa0, 0x61, 0x36, 0xff, 0xa1, 0x63, 0x39, 0xff, 0xa0, 0x62, 0x37, 0xff, 0x9a, 0x5a, 0x34, 0xff, 0x96, 0x55, 0x2f, 0xff, 0x9c, 0x5a, 0x31, 0xff, 0x97, 0x52, 0x2e, 0xff, 0x90, 0x4d, 0x2a, 0xff, 0x8b, 0x47, 0x26, 0xff, 0x88, 0x45, 0x26, 0xff, 0x88, 0x45, 0x26, 0xff, 0x88, 0x45, 0x26, 0xff, 0x88, 0x45, 0x26, 0xff, 0x8a, 0x46, 0x26, 0xff, 0x8c, 0x48, 0x26, 0xff, 0x8e, 0x4b, 0x28, 0xff, 0x92, 0x50, 0x2e, 0xff, 0x88, 0x48, 0x2a, 0xff, 0x83, 0x45, 0x28, 0xff, 0x83, 0x44, 0x26, 0xff, 0x84, 0x42, 0x26, 0xff, 0x86, 0x44, 0x27, 0xff, 0x84, 0x43, 0x26, 0xff, 0x85, 0x46, 0x28, 0xff, 0x7d, 0x40, 0x25, 0xff, 0x74, 0x3b, 0x24, 0xff, 0x73, 0x39, 0x23, 0xff, 0x72, 0x35, 0x1e, 0xff, 0x70, 0x33, 0x1a, 0xff, 0x6b, 0x2f, 0x13, 0xff, 0x68, 0x2c, 0x14, 0xff, 0x66, 0x2b, 0x0e, 0xff, 0x64, 0x28, 0x10, 0xff, 0x61, 0x26, 0x0b, 0xff, 0x65, 0x29, 0x0c, 0xff, 0x66, 0x29, 0x10, 0xff, 0x63, 0x28, 0x10, 0xff, 0x62, 0x28, 0x0d, 0xff, 0x62, 0x27, 0x0d, 0xff, 0x63, 0x27, 0x0a, 0xff, 0x62, 0x27, 0x0d, 0xff, 0x61, 0x28, 0x0f, 0xff, 0x61, 0x29, 0x11, 0xff, 0x61, 0x28, 0x0d, 0xff, 0x62, 0x29, 0x0d, 0xff, 0x61, 0x27, 0x0d, 0xff, 0x60, 0x26, 0x0a, 0xff, 0x5f, 0x25, 0x0a, 0xff, 0x5c, 0x24, 0x0a, 0xff, 0x61, 0x27, 0x0d, 0xff, 0x85, 0x47, 0x29, 0xff, 0x82, 0x40, 0x27, 0xff, 0x7e, 0x3d, 0x25, 0xff, 0x7a, 0x3b, 0x23, 0xff, 0x78, 0x3b, 0x23, 0xff, 0x76, 0x38, 0x20, 0xff, 0x76, 0x36, 0x1f, 0xff, 0x74, 0x34, 0x1c, 0xff, 0x72, 0x31, 0x16, 0xff, 0x72, 0x31, 0x17, 0xff, 0x6f, 0x30, 0x16, 0xff, + 0x6f, 0x31, 0x14, 0xff, 0x6e, 0x2d, 0x14, 0xff, 0x6a, 0x2b, 0x11, 0xff, 0x68, 0x29, 0x0e, 0xff, 0x69, 0x29, 0x11, 0xff, 0x66, 0x2a, 0x0f, 0xff, 0x66, 0x2a, 0x11, 0xff, 0x67, 0x29, 0x0f, 0xff, 0x66, 0x2a, 0x0f, 0xff, 0x68, 0x2a, 0x11, 0xff, 0x67, 0x2c, 0x0f, 0xff, 0x60, 0x27, 0x09, 0xff, 0x5b, 0x23, 0x06, 0xff, 0x56, 0x1f, 0x03, 0xff, 0x55, 0x1c, 0x03, 0xff, 0x53, 0x20, 0x03, 0xff, 0x51, 0x1c, 0x03, 0xff, 0x4f, 0x18, 0x03, 0xff, 0x51, 0x15, 0x03, 0xff, 0x51, 0x1c, 0x03, 0xff, 0x54, 0x1e, 0x03, 0xff, 0x52, 0x20, 0x03, 0xff, 0x53, 0x20, 0x03, 0xff, 0x57, 0x20, 0x04, 0xff, 0x56, 0x24, 0x06, 0xff, 0x58, 0x24, 0x06, 0xff, 0x5e, 0x26, 0x0d, 0xff, 0x61, 0x2a, 0x12, 0xff, 0x63, 0x2b, 0x12, 0xff, 0x67, 0x2c, 0x11, 0xff, 0x69, 0x2d, 0x13, 0xff, 0x6a, 0x2e, 0x13, 0xff, 0x69, 0x2b, 0x11, 0xff, 0x6c, 0x2c, 0x11, 0xff, 0x6d, 0x2d, 0x11, 0xff, 0x6f, 0x30, 0x13, 0xff, 0x72, 0x30, 0x14, 0xff, 0x73, 0x32, 0x13, 0xff, 0x74, 0x32, 0x15, 0xff, 0x78, 0x36, 0x16, 0xff, 0x7d, 0x38, 0x19, 0xff, 0x81, 0x3d, 0x1e, 0xff, 0x85, 0x42, 0x21, 0xff, 0x8b, 0x45, 0x23, 0xff, 0x87, 0x43, 0x22, 0xff, 0x8a, 0x45, 0x25, 0xff, 0x92, 0x4c, 0x28, 0xff, 0x98, 0x54, 0x2b, 0xff, 0x9d, 0x5b, 0x30, 0xff, 0xa3, 0x60, 0x34, 0xff, 0xa4, 0x62, 0x37, 0xff, 0xa7, 0x65, 0x3a, 0xff, 0xb0, 0x6f, 0x40, 0xff, 0xb4, 0x70, 0x3f, 0xff, 0xb1, 0x6d, 0x3b, 0xff, 0xb9, 0x72, 0x42, 0xff, 0xbf, 0x7e, 0x4a, 0xff, 0xc2, 0x87, 0x51, 0xff, 0xc7, 0x8d, 0x57, 0xff, 0xca, 0x91, 0x5b, 0xff, 0xcf, 0x94, 0x61, 0xff, 0xdb, 0x99, 0x65, 0xff, 0xe4, 0xa1, 0x70, 0xff, 0xf5, 0xba, 0x83, 0xff, 0xfb, 0xbf, 0x7e, 0xff, 0xf9, 0xc0, 0x74, 0xff, 0xf8, 0xb8, 0x6c, 0xff, 0xf8, 0xae, 0x67, 0xff, 0xfa, 0xab, 0x64, 0xff, 0xf8, 0xa8, 0x65, 0xff, 0xf9, 0xaa, 0x6b, 0xff, 0xf9, 0xab, 0x6c, 0xff, 0xf5, 0xa8, 0x69, 0xff, 0xf5, 0x9c, 0x5f, 0xff, 0xf8, 0x9a, 0x60, 0xff, 0xe8, 0x97, 0x59, 0xff, 0xe6, 0x97, 0x59, 0xff, 0xec, 0x99, 0x5a, 0xff, 0xe1, 0x99, 0x53, 0xff, 0xe2, 0x98, 0x52, 0xff, 0xe4, 0x9b, 0x57, 0xff, 0xf4, 0xa4, 0x65, 0xff, 0xfb, 0xa5, 0x67, 0xff, 0xf5, 0xa1, 0x61, 0xff, 0xed, 0x9b, 0x58, 0xff, 0xed, 0x9f, 0x57, 0xff, 0xed, 0xa4, 0x5d, 0xff, 0xef, 0xa6, 0x63, 0xff, 0xf0, 0xa7, 0x66, 0xff, 0xf4, 0xab, 0x6b, 0xff, 0xf1, 0xad, 0x6c, 0xff, 0xf2, 0xb8, 0x75, 0xff, 0xf6, 0xc7, 0x81, 0xff, 0xf6, 0xd7, 0x8a, 0xff, 0xf1, 0xe7, 0x95, 0xff, 0xee, 0xf3, 0xa5, 0xff, 0xef, 0xf7, 0xb6, 0xff, 0xf8, 0xfa, 0xca, 0xff, 0xf2, 0xea, 0xd4, 0xff, 0xce, 0xb8, 0xac, 0xff, 0xa3, 0x79, 0x68, 0xff, 0x88, 0x4f, 0x38, 0xff, 0x8d, 0x53, 0x3a, 0xff, 0x92, 0x5c, 0x42, 0xff, 0x92, 0x5d, 0x41, 0xff, 0x93, 0x5f, 0x40, 0xff, 0x92, 0x5f, 0x3e, 0xff, 0x93, 0x5e, 0x3d, 0xff, 0x92, 0x5d, 0x3a, 0xff, 0x92, 0x5b, 0x38, 0xff, 0x91, 0x58, 0x35, 0xff, 0x8f, 0x54, 0x32, 0xff, 0x8c, 0x4f, 0x2f, 0xff, 0x89, 0x4e, 0x2e, 0xff, 0x89, 0x4e, 0x2e, 0xff, 0x89, 0x4d, 0x2d, 0xff, 0x88, 0x4b, 0x2d, 0xff, 0x85, 0x49, 0x2b, 0xff, 0x84, 0x45, 0x28, 0xff, 0xa6, 0x65, 0x40, 0xff, 0xbb, 0x7b, 0x4f, 0xff, 0xb0, 0x6e, 0x43, 0xff, 0xae, 0x6d, 0x41, 0xff, 0xae, 0x6e, 0x41, 0xff, 0xad, 0x6b, 0x3f, 0xff, 0xaa, 0x69, 0x3b, 0xff, 0xa7, 0x66, 0x37, 0xff, 0xa6, 0x66, 0x38, 0xff, 0xa6, 0x67, 0x3c, 0xff, 0xa4, 0x65, 0x3b, 0xff, 0xa3, 0x64, 0x38, 0xff, 0xa1, 0x60, 0x36, 0xff, 0x9c, 0x5c, 0x33, 0xff, 0x97, 0x56, 0x30, 0xff, 0x94, 0x52, 0x2e, 0xff, 0x91, 0x50, 0x2b, 0xff, 0x8e, 0x4f, 0x29, 0xff, 0x8b, 0x4c, 0x28, 0xff, 0x87, 0x46, 0x27, 0xff, 0x82, 0x41, 0x25, 0xff, 0x80, 0x40, 0x26, 0xff, 0x77, 0x39, 0x1c, 0xff, 0x69, 0x2d, 0x10, 0xff, 0x57, 0x1f, 0x06, 0xff, 0x4f, 0x18, 0x03, 0xff, 0x4d, 0x17, 0x04, 0xff, 0x49, 0x16, 0x04, 0xff, 0x45, 0x18, 0x04, 0xff, 0x43, 0x16, 0x04, 0xff, 0x42, 0x12, 0x04, 0xff, 0x40, 0x12, 0x04, 0xff, 0x3f, 0x12, 0x04, 0xff, 0x3e, 0x10, 0x04, 0xff, 0x3f, 0x11, 0x04, 0xff, 0x40, 0x11, 0x03, 0xff, 0x3f, 0x10, 0x04, 0xff, 0x40, 0x13, 0x03, 0xff, 0x42, 0x12, 0x03, 0xff, 0x44, 0x16, 0x03, 0xff, 0x45, 0x16, 0x04, 0xff, 0x44, 0x16, 0x04, 0xff, 0x4f, 0x1e, 0x04, 0xff, 0x64, 0x28, 0x08, 0xff, 0x66, 0x29, 0x0a, 0xff, 0x58, 0x1e, 0x02, 0xff, 0x8b, 0x4a, 0x25, 0xff, 0x99, 0x57, 0x32, 0xff, 0x93, 0x52, 0x30, 0xff, 0x90, 0x4f, 0x2b, 0xff, 0x90, 0x4e, 0x29, 0xff, 0x94, 0x52, 0x2c, 0xff, 0x97, 0x56, 0x30, 0xff, 0x9d, 0x5f, 0x35, 0xff, 0xa4, 0x66, 0x3b, 0xff, 0xa7, 0x68, 0x40, 0xff, 0xa7, 0x69, 0x40, 0xff, 0xa1, 0x62, 0x3a, 0xff, 0x9e, 0x5d, 0x36, 0xff, 0xa4, 0x62, 0x37, 0xff, 0x9b, 0x58, 0x30, 0xff, 0x91, 0x4d, 0x29, 0xff, 0x8a, 0x47, 0x26, 0xff, 0x86, 0x43, 0x24, 0xff, 0x85, 0x43, 0x23, 0xff, 0x85, 0x41, 0x24, 0xff, 0x85, 0x42, 0x24, 0xff, 0x87, 0x44, 0x24, 0xff, 0x87, 0x44, 0x26, 0xff, 0x8c, 0x48, 0x27, 0xff, 0x8f, 0x4e, 0x2c, 0xff, 0x87, 0x49, 0x2b, 0xff, 0x83, 0x44, 0x27, 0xff, 0x82, 0x42, 0x26, 0xff, 0x83, 0x43, 0x26, 0xff, 0x82, 0x43, 0x26, 0xff, 0x84, 0x43, 0x26, 0xff, 0x83, 0x47, 0x28, 0xff, 0x83, 0x49, 0x2b, 0xff, 0x74, 0x3a, 0x24, 0xff, 0x74, 0x38, 0x23, 0xff, 0x72, 0x36, 0x1d, 0xff, 0x6e, 0x2f, 0x17, 0xff, 0x69, 0x2c, 0x12, 0xff, 0x66, 0x2c, 0x10, 0xff, 0x65, 0x29, 0x11, 0xff, 0x63, 0x26, 0x0c, 0xff, 0x62, 0x27, 0x0b, 0xff, 0x65, 0x29, 0x0c, 0xff, 0x64, 0x28, 0x0d, 0xff, 0x64, 0x27, 0x0d, 0xff, 0x61, 0x27, 0x0c, 0xff, 0x61, 0x25, 0x0a, 0xff, 0x63, 0x27, 0x0d, 0xff, 0x62, 0x29, 0x0d, 0xff, 0x61, 0x28, 0x0e, 0xff, 0x61, 0x27, 0x0f, 0xff, 0x61, 0x28, 0x0f, 0xff, 0x5f, 0x26, 0x0c, 0xff, 0x5c, 0x26, 0x0a, 0xff, 0x5e, 0x26, 0x0a, 0xff, 0x5d, 0x24, 0x0a, 0xff, 0x5e, 0x25, 0x0a, 0xff, 0x58, 0x21, 0x05, 0xff, 0x8a, 0x4b, 0x2e, 0xff, 0x84, 0x42, 0x26, 0xff, 0x7f, 0x3e, 0x24, 0xff, 0x7a, 0x3b, 0x23, 0xff, 0x78, 0x3a, 0x23, 0xff, 0x77, 0x39, 0x22, 0xff, 0x76, 0x37, 0x20, 0xff, 0x73, 0x34, 0x1c, 0xff, 0x73, 0x33, 0x1a, 0xff, 0x72, 0x32, 0x18, 0xff, 0x72, 0x31, 0x17, 0xff, + 0x71, 0x31, 0x16, 0xff, 0x6d, 0x2f, 0x14, 0xff, 0x6c, 0x2e, 0x11, 0xff, 0x68, 0x29, 0x11, 0xff, 0x68, 0x2b, 0x10, 0xff, 0x66, 0x2a, 0x0e, 0xff, 0x69, 0x2d, 0x11, 0xff, 0x66, 0x2b, 0x11, 0xff, 0x67, 0x2c, 0x11, 0xff, 0x67, 0x2c, 0x11, 0xff, 0x63, 0x29, 0x0c, 0xff, 0x5f, 0x25, 0x0a, 0xff, 0x59, 0x21, 0x06, 0xff, 0x58, 0x1f, 0x05, 0xff, 0x55, 0x1c, 0x03, 0xff, 0x52, 0x20, 0x03, 0xff, 0x52, 0x19, 0x03, 0xff, 0x50, 0x18, 0x03, 0xff, 0x53, 0x1d, 0x03, 0xff, 0x52, 0x1f, 0x03, 0xff, 0x53, 0x20, 0x03, 0xff, 0x54, 0x1d, 0x03, 0xff, 0x57, 0x21, 0x06, 0xff, 0x58, 0x20, 0x06, 0xff, 0x58, 0x22, 0x06, 0xff, 0x58, 0x23, 0x06, 0xff, 0x5e, 0x27, 0x0c, 0xff, 0x61, 0x2a, 0x10, 0xff, 0x66, 0x2c, 0x13, 0xff, 0x66, 0x2c, 0x16, 0xff, 0x66, 0x2c, 0x14, 0xff, 0x6b, 0x2d, 0x15, 0xff, 0x6b, 0x31, 0x15, 0xff, 0x6c, 0x2e, 0x11, 0xff, 0x6c, 0x2c, 0x11, 0xff, 0x6e, 0x2e, 0x13, 0xff, 0x70, 0x2f, 0x13, 0xff, 0x71, 0x30, 0x13, 0xff, 0x74, 0x30, 0x13, 0xff, 0x74, 0x33, 0x14, 0xff, 0x79, 0x35, 0x15, 0xff, 0x7e, 0x39, 0x1a, 0xff, 0x81, 0x3d, 0x1d, 0xff, 0x87, 0x40, 0x23, 0xff, 0x8a, 0x44, 0x23, 0xff, 0x8a, 0x44, 0x23, 0xff, 0x8f, 0x49, 0x26, 0xff, 0x94, 0x50, 0x29, 0xff, 0x99, 0x57, 0x2c, 0xff, 0x9e, 0x5b, 0x30, 0xff, 0xa3, 0x62, 0x36, 0xff, 0xa5, 0x63, 0x39, 0xff, 0xa7, 0x66, 0x3a, 0xff, 0xa6, 0x68, 0x38, 0xff, 0xac, 0x6b, 0x3a, 0xff, 0xb3, 0x6e, 0x3d, 0xff, 0xb9, 0x75, 0x44, 0xff, 0xbf, 0x7c, 0x4a, 0xff, 0xc5, 0x87, 0x51, 0xff, 0xc6, 0x8c, 0x57, 0xff, 0xc9, 0x8d, 0x5c, 0xff, 0xd5, 0x96, 0x63, 0xff, 0xe5, 0xa5, 0x71, 0xff, 0xfa, 0xb9, 0x85, 0xff, 0xfb, 0xbb, 0x7f, 0xff, 0xf8, 0xbb, 0x79, 0xff, 0xfa, 0xb5, 0x6e, 0xff, 0xf8, 0xad, 0x68, 0xff, 0xf9, 0xa9, 0x65, 0xff, 0xf7, 0xa8, 0x66, 0xff, 0xf6, 0xa8, 0x6a, 0xff, 0xed, 0x9f, 0x61, 0xff, 0xef, 0x99, 0x5b, 0xff, 0xf2, 0x97, 0x5c, 0xff, 0xf8, 0x99, 0x60, 0xff, 0xf2, 0x98, 0x5f, 0xff, 0xe4, 0x94, 0x57, 0xff, 0xea, 0x9c, 0x5b, 0xff, 0xdd, 0x99, 0x52, 0xff, 0xde, 0x96, 0x50, 0xff, 0xe1, 0x99, 0x53, 0xff, 0xf0, 0xa4, 0x62, 0xff, 0xfb, 0xa9, 0x69, 0xff, 0xf7, 0xa2, 0x62, 0xff, 0xf2, 0xa0, 0x5b, 0xff, 0xef, 0xa7, 0x5b, 0xff, 0xed, 0xa7, 0x5f, 0xff, 0xf1, 0xaa, 0x64, 0xff, 0xf2, 0xa9, 0x67, 0xff, 0xf8, 0xaa, 0x6a, 0xff, 0xf8, 0xb0, 0x69, 0xff, 0xf4, 0xb5, 0x73, 0xff, 0xf8, 0xbf, 0x7d, 0xff, 0xf6, 0xd4, 0x86, 0xff, 0xf4, 0xee, 0x96, 0xff, 0xf6, 0xf6, 0xaa, 0xff, 0xf3, 0xf2, 0xbf, 0xff, 0xcd, 0xba, 0x9d, 0xff, 0x9d, 0x71, 0x58, 0xff, 0x8e, 0x58, 0x42, 0xff, 0x90, 0x59, 0x40, 0xff, 0x93, 0x5d, 0x46, 0xff, 0x93, 0x5e, 0x47, 0xff, 0x93, 0x5e, 0x47, 0xff, 0x93, 0x5d, 0x45, 0xff, 0x92, 0x5d, 0x42, 0xff, 0x91, 0x5c, 0x3f, 0xff, 0x91, 0x5d, 0x3e, 0xff, 0x92, 0x5d, 0x3c, 0xff, 0x91, 0x5c, 0x39, 0xff, 0x92, 0x5a, 0x37, 0xff, 0x90, 0x56, 0x34, 0xff, 0x8c, 0x53, 0x31, 0xff, 0x8a, 0x52, 0x2f, 0xff, 0x8a, 0x4f, 0x2f, 0xff, 0x89, 0x4e, 0x2d, 0xff, 0x88, 0x4d, 0x2d, 0xff, 0x85, 0x49, 0x2c, 0xff, 0x8d, 0x51, 0x31, 0xff, 0xad, 0x6e, 0x45, 0xff, 0xbb, 0x79, 0x4e, 0xff, 0xb5, 0x73, 0x46, 0xff, 0xb4, 0x72, 0x43, 0xff, 0xb2, 0x70, 0x42, 0xff, 0xad, 0x6c, 0x3f, 0xff, 0xa9, 0x6a, 0x3b, 0xff, 0xa8, 0x69, 0x3b, 0xff, 0xaa, 0x69, 0x3e, 0xff, 0xaa, 0x6b, 0x40, 0xff, 0xa7, 0x6b, 0x41, 0xff, 0xa4, 0x6a, 0x40, 0xff, 0xa3, 0x65, 0x3b, 0xff, 0x9f, 0x61, 0x36, 0xff, 0x9c, 0x5d, 0x34, 0xff, 0x99, 0x58, 0x33, 0xff, 0x93, 0x51, 0x2d, 0xff, 0x8c, 0x4b, 0x28, 0xff, 0x87, 0x46, 0x26, 0xff, 0x85, 0x44, 0x25, 0xff, 0x82, 0x41, 0x24, 0xff, 0x7f, 0x3c, 0x23, 0xff, 0x7c, 0x3a, 0x23, 0xff, 0x7a, 0x39, 0x22, 0xff, 0x74, 0x33, 0x1d, 0xff, 0x66, 0x29, 0x12, 0xff, 0x4e, 0x18, 0x06, 0xff, 0x45, 0x14, 0x03, 0xff, 0x45, 0x14, 0x03, 0xff, 0x44, 0x16, 0x03, 0xff, 0x41, 0x12, 0x03, 0xff, 0x3f, 0x10, 0x03, 0xff, 0x3c, 0x13, 0x04, 0xff, 0x3d, 0x10, 0x03, 0xff, 0x3f, 0x11, 0x04, 0xff, 0x3f, 0x11, 0x03, 0xff, 0x3e, 0x10, 0x03, 0xff, 0x3f, 0x0f, 0x04, 0xff, 0x40, 0x10, 0x04, 0xff, 0x41, 0x11, 0x03, 0xff, 0x43, 0x17, 0x04, 0xff, 0x42, 0x13, 0x03, 0xff, 0x4c, 0x1e, 0x04, 0xff, 0x64, 0x29, 0x0d, 0xff, 0x66, 0x28, 0x0a, 0xff, 0x5b, 0x20, 0x01, 0xff, 0x87, 0x47, 0x23, 0xff, 0x99, 0x58, 0x30, 0xff, 0x93, 0x54, 0x30, 0xff, 0x90, 0x4f, 0x2d, 0xff, 0x92, 0x4f, 0x2e, 0xff, 0x93, 0x52, 0x2c, 0xff, 0x97, 0x56, 0x30, 0xff, 0xa0, 0x61, 0x38, 0xff, 0xa7, 0x6b, 0x41, 0xff, 0xab, 0x71, 0x46, 0xff, 0xab, 0x6f, 0x47, 0xff, 0xa7, 0x68, 0x41, 0xff, 0xa7, 0x6a, 0x3f, 0xff, 0xa7, 0x67, 0x3c, 0xff, 0x9c, 0x5a, 0x33, 0xff, 0x91, 0x4e, 0x2b, 0xff, 0x8a, 0x47, 0x27, 0xff, 0x85, 0x43, 0x24, 0xff, 0x83, 0x40, 0x23, 0xff, 0x83, 0x40, 0x23, 0xff, 0x84, 0x41, 0x24, 0xff, 0x84, 0x42, 0x23, 0xff, 0x84, 0x41, 0x23, 0xff, 0x8a, 0x48, 0x25, 0xff, 0x8d, 0x4d, 0x2b, 0xff, 0x85, 0x45, 0x28, 0xff, 0x82, 0x45, 0x27, 0xff, 0x82, 0x41, 0x25, 0xff, 0x82, 0x43, 0x26, 0xff, 0x82, 0x41, 0x25, 0xff, 0x81, 0x42, 0x27, 0xff, 0x82, 0x46, 0x28, 0xff, 0x85, 0x4c, 0x2f, 0xff, 0x74, 0x3a, 0x24, 0xff, 0x73, 0x39, 0x22, 0xff, 0x71, 0x34, 0x1c, 0xff, 0x6a, 0x2e, 0x16, 0xff, 0x67, 0x2a, 0x12, 0xff, 0x65, 0x29, 0x0f, 0xff, 0x64, 0x27, 0x0e, 0xff, 0x62, 0x28, 0x0d, 0xff, 0x63, 0x29, 0x0d, 0xff, 0x65, 0x29, 0x0e, 0xff, 0x63, 0x28, 0x0d, 0xff, 0x62, 0x26, 0x0d, 0xff, 0x61, 0x27, 0x0b, 0xff, 0x61, 0x28, 0x0c, 0xff, 0x62, 0x28, 0x0d, 0xff, 0x61, 0x26, 0x0d, 0xff, 0x61, 0x29, 0x10, 0xff, 0x5f, 0x27, 0x0e, 0xff, 0x61, 0x28, 0x0d, 0xff, 0x5d, 0x27, 0x0c, 0xff, 0x5d, 0x26, 0x0a, 0xff, 0x5a, 0x22, 0x0a, 0xff, 0x5b, 0x22, 0x07, 0xff, 0x5d, 0x25, 0x0a, 0xff, 0x59, 0x21, 0x03, 0xff, 0x7f, 0x42, 0x28, 0xff, 0x87, 0x48, 0x29, 0xff, 0x7f, 0x40, 0x25, 0xff, 0x7d, 0x3b, 0x25, 0xff, 0x77, 0x39, 0x22, 0xff, 0x76, 0x37, 0x21, 0xff, 0x76, 0x39, 0x21, 0xff, 0x74, 0x35, 0x1c, 0xff, 0x73, 0x34, 0x1b, 0xff, 0x73, 0x34, 0x1a, 0xff, 0x71, 0x31, 0x19, 0xff, + 0x6f, 0x33, 0x16, 0xff, 0x6f, 0x30, 0x16, 0xff, 0x6d, 0x2d, 0x14, 0xff, 0x6a, 0x2b, 0x11, 0xff, 0x6a, 0x2b, 0x11, 0xff, 0x69, 0x2c, 0x10, 0xff, 0x69, 0x2b, 0x10, 0xff, 0x69, 0x2d, 0x13, 0xff, 0x67, 0x2c, 0x10, 0xff, 0x67, 0x2b, 0x11, 0xff, 0x61, 0x25, 0x0b, 0xff, 0x5d, 0x23, 0x06, 0xff, 0x59, 0x21, 0x06, 0xff, 0x55, 0x23, 0x06, 0xff, 0x56, 0x23, 0x06, 0xff, 0x52, 0x20, 0x03, 0xff, 0x52, 0x1f, 0x03, 0xff, 0x54, 0x1e, 0x03, 0xff, 0x53, 0x21, 0x03, 0xff, 0x56, 0x1f, 0x05, 0xff, 0x52, 0x1f, 0x03, 0xff, 0x55, 0x1d, 0x03, 0xff, 0x56, 0x1d, 0x04, 0xff, 0x59, 0x22, 0x06, 0xff, 0x58, 0x22, 0x06, 0xff, 0x59, 0x24, 0x06, 0xff, 0x5d, 0x26, 0x0d, 0xff, 0x66, 0x2b, 0x12, 0xff, 0x67, 0x2c, 0x13, 0xff, 0x66, 0x2c, 0x16, 0xff, 0x67, 0x2e, 0x14, 0xff, 0x68, 0x2d, 0x16, 0xff, 0x6b, 0x31, 0x16, 0xff, 0x6c, 0x2f, 0x13, 0xff, 0x6d, 0x2f, 0x13, 0xff, 0x6e, 0x2e, 0x13, 0xff, 0x6d, 0x2e, 0x10, 0xff, 0x70, 0x2e, 0x11, 0xff, 0x73, 0x30, 0x13, 0xff, 0x74, 0x32, 0x13, 0xff, 0x74, 0x32, 0x13, 0xff, 0x79, 0x35, 0x17, 0xff, 0x7f, 0x39, 0x1c, 0xff, 0x82, 0x3f, 0x20, 0xff, 0x86, 0x40, 0x21, 0xff, 0x85, 0x42, 0x21, 0xff, 0x89, 0x42, 0x24, 0xff, 0x91, 0x4c, 0x27, 0xff, 0x98, 0x52, 0x2b, 0xff, 0x9c, 0x58, 0x2e, 0xff, 0xa0, 0x5d, 0x34, 0xff, 0xa1, 0x61, 0x36, 0xff, 0x9f, 0x60, 0x35, 0xff, 0xa2, 0x61, 0x34, 0xff, 0xa7, 0x65, 0x38, 0xff, 0xad, 0x68, 0x3a, 0xff, 0xb0, 0x6d, 0x3c, 0xff, 0xb5, 0x74, 0x43, 0xff, 0xbc, 0x7b, 0x4b, 0xff, 0xc3, 0x82, 0x52, 0xff, 0xc5, 0x88, 0x57, 0xff, 0xcf, 0x92, 0x60, 0xff, 0xe6, 0xa6, 0x6f, 0xff, 0xfa, 0xbb, 0x81, 0xff, 0xfb, 0xb9, 0x7e, 0xff, 0xf8, 0xb6, 0x78, 0xff, 0xf9, 0xaa, 0x6f, 0xff, 0xf8, 0xa3, 0x69, 0xff, 0xf6, 0xa0, 0x65, 0xff, 0xf3, 0x9e, 0x65, 0xff, 0xe1, 0x94, 0x5f, 0xff, 0xcb, 0x86, 0x55, 0xff, 0xd2, 0x88, 0x56, 0xff, 0xdd, 0x8f, 0x57, 0xff, 0xe8, 0x96, 0x59, 0xff, 0xf1, 0x98, 0x5e, 0xff, 0xf5, 0x9a, 0x5f, 0xff, 0xe6, 0x99, 0x59, 0xff, 0xd8, 0x95, 0x53, 0xff, 0xdc, 0x92, 0x4e, 0xff, 0xde, 0x96, 0x50, 0xff, 0xe7, 0x9e, 0x5c, 0xff, 0xfa, 0xac, 0x6e, 0xff, 0xf8, 0xa3, 0x64, 0xff, 0xf2, 0xa0, 0x59, 0xff, 0xf1, 0xa5, 0x5a, 0xff, 0xf3, 0xa8, 0x62, 0xff, 0xee, 0xa5, 0x65, 0xff, 0xf2, 0xa9, 0x66, 0xff, 0xf6, 0xae, 0x69, 0xff, 0xf3, 0xad, 0x6e, 0xff, 0xf7, 0xb0, 0x6c, 0xff, 0xf6, 0xbe, 0x75, 0xff, 0xf4, 0xd0, 0x82, 0xff, 0xf8, 0xe5, 0x94, 0xff, 0xe0, 0xd7, 0x95, 0xff, 0xa4, 0x81, 0x61, 0xff, 0x8a, 0x51, 0x37, 0xff, 0x96, 0x61, 0x49, 0xff, 0x96, 0x61, 0x49, 0xff, 0x96, 0x60, 0x49, 0xff, 0x95, 0x60, 0x48, 0xff, 0x96, 0x61, 0x49, 0xff, 0x95, 0x60, 0x48, 0xff, 0x94, 0x5e, 0x47, 0xff, 0x94, 0x5e, 0x47, 0xff, 0x92, 0x5c, 0x44, 0xff, 0x90, 0x5b, 0x40, 0xff, 0x90, 0x5d, 0x3d, 0xff, 0x90, 0x5c, 0x3c, 0xff, 0x91, 0x5d, 0x39, 0xff, 0x92, 0x5b, 0x37, 0xff, 0x8f, 0x57, 0x35, 0xff, 0x8b, 0x52, 0x32, 0xff, 0x89, 0x50, 0x32, 0xff, 0x88, 0x50, 0x30, 0xff, 0x88, 0x4e, 0x2e, 0xff, 0x84, 0x48, 0x2b, 0xff, 0x94, 0x57, 0x37, 0xff, 0xb4, 0x76, 0x4c, 0xff, 0xbd, 0x7d, 0x4e, 0xff, 0xb8, 0x79, 0x49, 0xff, 0xb4, 0x75, 0x46, 0xff, 0xb1, 0x71, 0x42, 0xff, 0xaf, 0x6e, 0x40, 0xff, 0xab, 0x6c, 0x3c, 0xff, 0xaa, 0x6b, 0x3d, 0xff, 0xab, 0x6c, 0x40, 0xff, 0xab, 0x70, 0x42, 0xff, 0xa9, 0x70, 0x45, 0xff, 0xa6, 0x6d, 0x44, 0xff, 0xa4, 0x6c, 0x41, 0xff, 0xa0, 0x64, 0x3a, 0xff, 0x98, 0x59, 0x30, 0xff, 0x8e, 0x4c, 0x29, 0xff, 0x89, 0x48, 0x26, 0xff, 0x88, 0x46, 0x26, 0xff, 0x85, 0x43, 0x25, 0xff, 0x82, 0x40, 0x23, 0xff, 0x7f, 0x3c, 0x23, 0xff, 0x7e, 0x3b, 0x23, 0xff, 0x7d, 0x3b, 0x22, 0xff, 0x7b, 0x3a, 0x21, 0xff, 0x78, 0x37, 0x20, 0xff, 0x7a, 0x3a, 0x22, 0xff, 0x74, 0x36, 0x1c, 0xff, 0x5a, 0x23, 0x09, 0xff, 0x4a, 0x17, 0x02, 0xff, 0x45, 0x14, 0x03, 0xff, 0x43, 0x13, 0x03, 0xff, 0x40, 0x12, 0x03, 0xff, 0x3b, 0x0d, 0x03, 0xff, 0x3d, 0x0d, 0x04, 0xff, 0x40, 0x0e, 0x03, 0xff, 0x3b, 0x0b, 0x03, 0xff, 0x3d, 0x11, 0x03, 0xff, 0x3f, 0x10, 0x04, 0xff, 0x40, 0x10, 0x04, 0xff, 0x40, 0x10, 0x03, 0xff, 0x41, 0x13, 0x04, 0xff, 0x42, 0x16, 0x03, 0xff, 0x4b, 0x1c, 0x05, 0xff, 0x62, 0x28, 0x0b, 0xff, 0x65, 0x29, 0x0b, 0xff, 0x5c, 0x23, 0x06, 0xff, 0x85, 0x45, 0x23, 0xff, 0x99, 0x58, 0x31, 0xff, 0x96, 0x58, 0x31, 0xff, 0x93, 0x52, 0x2f, 0xff, 0x93, 0x50, 0x2d, 0xff, 0x93, 0x51, 0x2d, 0xff, 0x97, 0x57, 0x2f, 0xff, 0xa0, 0x63, 0x39, 0xff, 0xa9, 0x6d, 0x44, 0xff, 0xae, 0x73, 0x4b, 0xff, 0xb0, 0x74, 0x4c, 0xff, 0xab, 0x70, 0x49, 0xff, 0xb0, 0x73, 0x49, 0xff, 0xab, 0x6b, 0x42, 0xff, 0x9f, 0x5d, 0x36, 0xff, 0x94, 0x50, 0x2e, 0xff, 0x8b, 0x48, 0x27, 0xff, 0x86, 0x42, 0x24, 0xff, 0x82, 0x40, 0x23, 0xff, 0x82, 0x40, 0x23, 0xff, 0x81, 0x3f, 0x22, 0xff, 0x82, 0x40, 0x23, 0xff, 0x82, 0x40, 0x23, 0xff, 0x86, 0x44, 0x24, 0xff, 0x8b, 0x49, 0x29, 0xff, 0x84, 0x47, 0x28, 0xff, 0x83, 0x43, 0x28, 0xff, 0x81, 0x41, 0x26, 0xff, 0x82, 0x40, 0x27, 0xff, 0x83, 0x41, 0x26, 0xff, 0x81, 0x43, 0x27, 0xff, 0x81, 0x46, 0x2a, 0xff, 0x85, 0x48, 0x2d, 0xff, 0x76, 0x3c, 0x24, 0xff, 0x72, 0x36, 0x1d, 0xff, 0x6e, 0x30, 0x18, 0xff, 0x6b, 0x29, 0x13, 0xff, 0x66, 0x2a, 0x10, 0xff, 0x63, 0x27, 0x0d, 0xff, 0x62, 0x27, 0x0d, 0xff, 0x5f, 0x25, 0x0a, 0xff, 0x64, 0x29, 0x12, 0xff, 0x64, 0x29, 0x0e, 0xff, 0x62, 0x26, 0x0d, 0xff, 0x61, 0x27, 0x0a, 0xff, 0x61, 0x27, 0x0c, 0xff, 0x62, 0x27, 0x0c, 0xff, 0x62, 0x28, 0x0d, 0xff, 0x60, 0x29, 0x11, 0xff, 0x62, 0x28, 0x0e, 0xff, 0x60, 0x25, 0x0d, 0xff, 0x5a, 0x27, 0x0d, 0xff, 0x5c, 0x25, 0x0c, 0xff, 0x5b, 0x23, 0x0a, 0xff, 0x58, 0x20, 0x06, 0xff, 0x5b, 0x24, 0x0a, 0xff, 0x5a, 0x23, 0x0a, 0xff, 0x5b, 0x22, 0x06, 0xff, 0x66, 0x2a, 0x0f, 0xff, 0x8a, 0x4a, 0x2d, 0xff, 0x80, 0x41, 0x25, 0xff, 0x7e, 0x3d, 0x24, 0xff, 0x7a, 0x3b, 0x23, 0xff, 0x77, 0x38, 0x20, 0xff, 0x76, 0x39, 0x21, 0xff, 0x75, 0x36, 0x1c, 0xff, 0x75, 0x35, 0x1b, 0xff, 0x73, 0x34, 0x19, 0xff, 0x70, 0x31, 0x19, 0xff, + 0x6f, 0x30, 0x17, 0xff, 0x70, 0x30, 0x16, 0xff, 0x70, 0x32, 0x16, 0xff, 0x6d, 0x2d, 0x14, 0xff, 0x6a, 0x2c, 0x10, 0xff, 0x69, 0x2c, 0x10, 0xff, 0x6a, 0x2c, 0x11, 0xff, 0x69, 0x2b, 0x11, 0xff, 0x6a, 0x2d, 0x14, 0xff, 0x65, 0x2a, 0x0e, 0xff, 0x62, 0x28, 0x0d, 0xff, 0x5c, 0x23, 0x0a, 0xff, 0x57, 0x1d, 0x06, 0xff, 0x57, 0x1e, 0x06, 0xff, 0x56, 0x1e, 0x06, 0xff, 0x53, 0x20, 0x03, 0xff, 0x58, 0x1c, 0x04, 0xff, 0x57, 0x1e, 0x06, 0xff, 0x57, 0x1e, 0x06, 0xff, 0x55, 0x20, 0x04, 0xff, 0x52, 0x1e, 0x03, 0xff, 0x54, 0x1c, 0x03, 0xff, 0x55, 0x1c, 0x03, 0xff, 0x55, 0x1d, 0x04, 0xff, 0x57, 0x1f, 0x06, 0xff, 0x5e, 0x25, 0x08, 0xff, 0x63, 0x2a, 0x11, 0xff, 0x62, 0x2b, 0x10, 0xff, 0x66, 0x2c, 0x12, 0xff, 0x67, 0x2c, 0x13, 0xff, 0x68, 0x2e, 0x13, 0xff, 0x68, 0x2f, 0x13, 0xff, 0x69, 0x2f, 0x16, 0xff, 0x6c, 0x30, 0x15, 0xff, 0x6d, 0x31, 0x13, 0xff, 0x6e, 0x30, 0x13, 0xff, 0x6f, 0x2f, 0x11, 0xff, 0x6e, 0x2c, 0x12, 0xff, 0x71, 0x2f, 0x12, 0xff, 0x74, 0x32, 0x13, 0xff, 0x74, 0x2f, 0x13, 0xff, 0x78, 0x34, 0x15, 0xff, 0x7b, 0x38, 0x18, 0xff, 0x7e, 0x3b, 0x1a, 0xff, 0x85, 0x40, 0x21, 0xff, 0x88, 0x43, 0x23, 0xff, 0x87, 0x42, 0x23, 0xff, 0x8c, 0x47, 0x26, 0xff, 0x91, 0x4d, 0x29, 0xff, 0x99, 0x55, 0x2d, 0xff, 0x9f, 0x5b, 0x33, 0xff, 0xa0, 0x5e, 0x34, 0xff, 0x9d, 0x5b, 0x33, 0xff, 0x9e, 0x5e, 0x33, 0xff, 0xa4, 0x60, 0x34, 0xff, 0xa4, 0x62, 0x36, 0xff, 0xa7, 0x66, 0x39, 0xff, 0xae, 0x6d, 0x41, 0xff, 0xb6, 0x74, 0x46, 0xff, 0xbb, 0x7a, 0x4b, 0xff, 0xc2, 0x82, 0x52, 0xff, 0xcc, 0x8b, 0x5b, 0xff, 0xe0, 0xa0, 0x69, 0xff, 0xf6, 0xb7, 0x79, 0xff, 0xf9, 0xb7, 0x7a, 0xff, 0xfa, 0xb5, 0x74, 0xff, 0xfa, 0xaa, 0x6e, 0xff, 0xf9, 0xa3, 0x67, 0xff, 0xf3, 0x9c, 0x60, 0xff, 0xd8, 0x8f, 0x5a, 0xff, 0xc1, 0x80, 0x51, 0xff, 0xc5, 0x81, 0x53, 0xff, 0xcb, 0x84, 0x55, 0xff, 0xd1, 0x88, 0x57, 0xff, 0xd6, 0x8a, 0x58, 0xff, 0xdd, 0x8f, 0x5a, 0xff, 0xe0, 0x91, 0x5c, 0xff, 0xd5, 0x8c, 0x58, 0xff, 0xca, 0x87, 0x4f, 0xff, 0xd7, 0x91, 0x51, 0xff, 0xd7, 0x92, 0x50, 0xff, 0xdf, 0x98, 0x54, 0xff, 0xf0, 0xa7, 0x67, 0xff, 0xf8, 0xa9, 0x68, 0xff, 0xf4, 0xa7, 0x5f, 0xff, 0xf4, 0xab, 0x62, 0xff, 0xf2, 0xaa, 0x65, 0xff, 0xf4, 0xad, 0x6b, 0xff, 0xf7, 0xae, 0x6c, 0xff, 0xf3, 0xab, 0x69, 0xff, 0xf5, 0xac, 0x6a, 0xff, 0xf6, 0xb3, 0x6f, 0xff, 0xf8, 0xb9, 0x76, 0xff, 0xf4, 0xc4, 0x7f, 0xff, 0xc7, 0xa5, 0x6b, 0xff, 0x99, 0x6b, 0x48, 0xff, 0x93, 0x5b, 0x3a, 0xff, 0x97, 0x62, 0x45, 0xff, 0x96, 0x5f, 0x46, 0xff, 0x94, 0x5f, 0x47, 0xff, 0x95, 0x60, 0x48, 0xff, 0x96, 0x60, 0x49, 0xff, 0x96, 0x60, 0x49, 0xff, 0x95, 0x61, 0x49, 0xff, 0x93, 0x5f, 0x49, 0xff, 0x92, 0x5d, 0x47, 0xff, 0x92, 0x5f, 0x47, 0xff, 0x93, 0x60, 0x47, 0xff, 0x92, 0x5f, 0x45, 0xff, 0x91, 0x5e, 0x41, 0xff, 0x92, 0x5f, 0x40, 0xff, 0x93, 0x5e, 0x3d, 0xff, 0x93, 0x5c, 0x39, 0xff, 0x8f, 0x56, 0x34, 0xff, 0x8b, 0x51, 0x31, 0xff, 0x89, 0x51, 0x31, 0xff, 0x89, 0x50, 0x30, 0xff, 0x84, 0x4b, 0x2c, 0xff, 0x9a, 0x5e, 0x3b, 0xff, 0xbc, 0x7f, 0x55, 0xff, 0xc1, 0x85, 0x56, 0xff, 0xbb, 0x7c, 0x4c, 0xff, 0xb7, 0x75, 0x45, 0xff, 0xb4, 0x73, 0x43, 0xff, 0xb3, 0x71, 0x42, 0xff, 0xb1, 0x6f, 0x40, 0xff, 0xaf, 0x6e, 0x40, 0xff, 0xad, 0x70, 0x41, 0xff, 0xab, 0x73, 0x45, 0xff, 0xaa, 0x70, 0x49, 0xff, 0xa7, 0x6b, 0x46, 0xff, 0x9b, 0x5d, 0x37, 0xff, 0x91, 0x4f, 0x2c, 0xff, 0x8f, 0x4e, 0x2a, 0xff, 0x8d, 0x4b, 0x29, 0xff, 0x8a, 0x46, 0x27, 0xff, 0x86, 0x45, 0x26, 0xff, 0x85, 0x44, 0x26, 0xff, 0x83, 0x41, 0x24, 0xff, 0x80, 0x3f, 0x22, 0xff, 0x7e, 0x3d, 0x21, 0xff, 0x7e, 0x3b, 0x21, 0xff, 0x7e, 0x3a, 0x22, 0xff, 0x7c, 0x3a, 0x20, 0xff, 0x7a, 0x39, 0x20, 0xff, 0x7b, 0x39, 0x20, 0xff, 0x7d, 0x3d, 0x25, 0xff, 0x67, 0x2a, 0x13, 0xff, 0x55, 0x1d, 0x05, 0xff, 0x48, 0x15, 0x03, 0xff, 0x40, 0x12, 0x03, 0xff, 0x3f, 0x11, 0x03, 0xff, 0x3f, 0x0e, 0x03, 0xff, 0x3e, 0x0c, 0x03, 0xff, 0x3e, 0x0e, 0x03, 0xff, 0x3c, 0x0c, 0x03, 0xff, 0x3d, 0x10, 0x03, 0xff, 0x3e, 0x11, 0x03, 0xff, 0x3f, 0x10, 0x03, 0xff, 0x40, 0x10, 0x03, 0xff, 0x41, 0x12, 0x03, 0xff, 0x46, 0x1a, 0x02, 0xff, 0x60, 0x28, 0x0a, 0xff, 0x66, 0x29, 0x0d, 0xff, 0x5f, 0x24, 0x07, 0xff, 0x7f, 0x3f, 0x20, 0xff, 0x9c, 0x59, 0x33, 0xff, 0x9b, 0x5b, 0x32, 0xff, 0x98, 0x56, 0x30, 0xff, 0x95, 0x52, 0x2e, 0xff, 0x92, 0x51, 0x2e, 0xff, 0x96, 0x54, 0x30, 0xff, 0xa0, 0x5f, 0x39, 0xff, 0xaa, 0x6d, 0x45, 0xff, 0xac, 0x74, 0x4c, 0xff, 0xad, 0x79, 0x50, 0xff, 0xae, 0x74, 0x4c, 0xff, 0xad, 0x7a, 0x52, 0xff, 0xaa, 0x72, 0x4a, 0xff, 0xa1, 0x62, 0x39, 0xff, 0x94, 0x54, 0x30, 0xff, 0x8c, 0x49, 0x29, 0xff, 0x87, 0x43, 0x25, 0xff, 0x83, 0x40, 0x23, 0xff, 0x81, 0x3f, 0x23, 0xff, 0x81, 0x3f, 0x23, 0xff, 0x80, 0x3f, 0x23, 0xff, 0x81, 0x40, 0x23, 0xff, 0x85, 0x42, 0x24, 0xff, 0x8a, 0x48, 0x29, 0xff, 0x86, 0x46, 0x28, 0xff, 0x81, 0x45, 0x27, 0xff, 0x81, 0x42, 0x26, 0xff, 0x80, 0x41, 0x26, 0xff, 0x7f, 0x40, 0x25, 0xff, 0x80, 0x41, 0x26, 0xff, 0x80, 0x44, 0x29, 0xff, 0x81, 0x47, 0x2a, 0xff, 0x76, 0x38, 0x23, 0xff, 0x6e, 0x31, 0x19, 0xff, 0x68, 0x2b, 0x15, 0xff, 0x68, 0x2b, 0x13, 0xff, 0x65, 0x28, 0x10, 0xff, 0x63, 0x29, 0x0f, 0xff, 0x61, 0x28, 0x0e, 0xff, 0x61, 0x25, 0x0b, 0xff, 0x62, 0x26, 0x0d, 0xff, 0x62, 0x26, 0x0d, 0xff, 0x61, 0x25, 0x0a, 0xff, 0x60, 0x27, 0x0e, 0xff, 0x61, 0x26, 0x0b, 0xff, 0x62, 0x28, 0x10, 0xff, 0x64, 0x28, 0x0e, 0xff, 0x61, 0x29, 0x10, 0xff, 0x5f, 0x25, 0x0d, 0xff, 0x5b, 0x24, 0x0d, 0xff, 0x59, 0x23, 0x0a, 0xff, 0x57, 0x22, 0x09, 0xff, 0x59, 0x21, 0x09, 0xff, 0x5a, 0x22, 0x09, 0xff, 0x58, 0x21, 0x05, 0xff, 0x58, 0x20, 0x05, 0xff, 0x59, 0x23, 0x09, 0xff, 0x59, 0x21, 0x07, 0xff, 0x8c, 0x4b, 0x2d, 0xff, 0x84, 0x42, 0x27, 0xff, 0x7f, 0x40, 0x25, 0xff, 0x7b, 0x3b, 0x23, 0xff, 0x78, 0x38, 0x23, 0xff, 0x77, 0x36, 0x20, 0xff, 0x76, 0x36, 0x1f, 0xff, 0x75, 0x35, 0x1c, 0xff, 0x72, 0x32, 0x19, 0xff, 0x70, 0x32, 0x19, 0xff, + 0x71, 0x30, 0x17, 0xff, 0x70, 0x30, 0x16, 0xff, 0x70, 0x30, 0x16, 0xff, 0x70, 0x30, 0x16, 0xff, 0x6f, 0x30, 0x14, 0xff, 0x6a, 0x2d, 0x11, 0xff, 0x6a, 0x2c, 0x13, 0xff, 0x69, 0x2d, 0x13, 0xff, 0x6a, 0x2d, 0x13, 0xff, 0x66, 0x2a, 0x0e, 0xff, 0x60, 0x27, 0x0c, 0xff, 0x5c, 0x23, 0x09, 0xff, 0x5a, 0x1f, 0x06, 0xff, 0x57, 0x1e, 0x06, 0xff, 0x57, 0x1f, 0x06, 0xff, 0x57, 0x21, 0x05, 0xff, 0x5a, 0x21, 0x06, 0xff, 0x5a, 0x22, 0x06, 0xff, 0x55, 0x1f, 0x06, 0xff, 0x53, 0x1e, 0x03, 0xff, 0x53, 0x20, 0x03, 0xff, 0x54, 0x1a, 0x03, 0xff, 0x53, 0x1d, 0x03, 0xff, 0x56, 0x1e, 0x05, 0xff, 0x5d, 0x23, 0x08, 0xff, 0x60, 0x26, 0x0a, 0xff, 0x62, 0x27, 0x0c, 0xff, 0x63, 0x28, 0x10, 0xff, 0x64, 0x2b, 0x10, 0xff, 0x67, 0x2c, 0x12, 0xff, 0x67, 0x2c, 0x13, 0xff, 0x67, 0x2d, 0x14, 0xff, 0x6a, 0x2f, 0x14, 0xff, 0x6a, 0x2f, 0x13, 0xff, 0x6c, 0x2f, 0x13, 0xff, 0x6e, 0x2e, 0x13, 0xff, 0x6f, 0x2f, 0x13, 0xff, 0x71, 0x2f, 0x13, 0xff, 0x72, 0x2f, 0x11, 0xff, 0x73, 0x30, 0x12, 0xff, 0x75, 0x32, 0x15, 0xff, 0x76, 0x32, 0x14, 0xff, 0x7b, 0x36, 0x17, 0xff, 0x7e, 0x39, 0x18, 0xff, 0x82, 0x3e, 0x20, 0xff, 0x86, 0x43, 0x22, 0xff, 0x86, 0x41, 0x23, 0xff, 0x87, 0x44, 0x23, 0xff, 0x8e, 0x4a, 0x27, 0xff, 0x94, 0x51, 0x2a, 0xff, 0x98, 0x55, 0x2f, 0xff, 0x98, 0x56, 0x30, 0xff, 0x9a, 0x58, 0x30, 0xff, 0x97, 0x55, 0x30, 0xff, 0x97, 0x55, 0x30, 0xff, 0x9b, 0x58, 0x32, 0xff, 0xa0, 0x5e, 0x35, 0xff, 0xa5, 0x65, 0x3b, 0xff, 0xad, 0x6d, 0x41, 0xff, 0xb4, 0x73, 0x45, 0xff, 0xbb, 0x79, 0x4c, 0xff, 0xcd, 0x89, 0x58, 0xff, 0xe2, 0x9b, 0x66, 0xff, 0xee, 0xa9, 0x6c, 0xff, 0xf8, 0xb0, 0x70, 0xff, 0xf9, 0xad, 0x71, 0xff, 0xfa, 0xa7, 0x6d, 0xff, 0xfb, 0xa0, 0x67, 0xff, 0xea, 0x96, 0x5e, 0xff, 0xc9, 0x84, 0x53, 0xff, 0xc3, 0x7f, 0x52, 0xff, 0xc4, 0x80, 0x53, 0xff, 0xc5, 0x81, 0x54, 0xff, 0xc8, 0x82, 0x55, 0xff, 0xce, 0x86, 0x57, 0xff, 0xd6, 0x8b, 0x5a, 0xff, 0xe2, 0x92, 0x5d, 0xff, 0xdf, 0x90, 0x5d, 0xff, 0xbb, 0x7e, 0x4d, 0xff, 0xbe, 0x80, 0x4c, 0xff, 0xc2, 0x85, 0x51, 0xff, 0xc7, 0x8b, 0x54, 0xff, 0xdb, 0x99, 0x5f, 0xff, 0xfb, 0xb0, 0x6f, 0xff, 0xf4, 0xac, 0x64, 0xff, 0xf4, 0xac, 0x67, 0xff, 0xf3, 0xac, 0x66, 0xff, 0xf6, 0xad, 0x69, 0xff, 0xf7, 0xaa, 0x69, 0xff, 0xf6, 0xa9, 0x67, 0xff, 0xf6, 0xac, 0x68, 0xff, 0xf9, 0xb5, 0x6f, 0xff, 0xe0, 0xa9, 0x6a, 0xff, 0xab, 0x79, 0x4b, 0xff, 0x90, 0x5a, 0x36, 0xff, 0x94, 0x5a, 0x38, 0xff, 0x94, 0x5f, 0x3e, 0xff, 0x93, 0x5f, 0x41, 0xff, 0x93, 0x5d, 0x44, 0xff, 0x93, 0x5d, 0x46, 0xff, 0x93, 0x5e, 0x48, 0xff, 0x94, 0x5e, 0x48, 0xff, 0x94, 0x5f, 0x48, 0xff, 0x94, 0x60, 0x49, 0xff, 0x94, 0x61, 0x49, 0xff, 0x94, 0x60, 0x49, 0xff, 0x93, 0x5f, 0x49, 0xff, 0x93, 0x5f, 0x49, 0xff, 0x94, 0x61, 0x48, 0xff, 0x93, 0x60, 0x46, 0xff, 0x93, 0x62, 0x44, 0xff, 0x95, 0x62, 0x41, 0xff, 0x95, 0x60, 0x3e, 0xff, 0x93, 0x5c, 0x3b, 0xff, 0x8e, 0x55, 0x35, 0xff, 0x8a, 0x51, 0x32, 0xff, 0x8a, 0x52, 0x32, 0xff, 0x85, 0x4e, 0x2e, 0xff, 0x9b, 0x61, 0x3c, 0xff, 0xbf, 0x83, 0x57, 0xff, 0xc4, 0x88, 0x5a, 0xff, 0xbd, 0x7d, 0x4e, 0xff, 0xb9, 0x76, 0x47, 0xff, 0xb5, 0x74, 0x45, 0xff, 0xb3, 0x72, 0x43, 0xff, 0xb3, 0x72, 0x42, 0xff, 0xb1, 0x6f, 0x42, 0xff, 0xb0, 0x72, 0x43, 0xff, 0xae, 0x77, 0x48, 0xff, 0xa6, 0x6a, 0x43, 0xff, 0x9b, 0x5a, 0x36, 0xff, 0x94, 0x53, 0x30, 0xff, 0x92, 0x50, 0x2e, 0xff, 0x90, 0x4f, 0x2c, 0xff, 0x8d, 0x4c, 0x2a, 0xff, 0x8a, 0x49, 0x27, 0xff, 0x87, 0x45, 0x25, 0xff, 0x85, 0x44, 0x25, 0xff, 0x82, 0x42, 0x24, 0xff, 0x80, 0x40, 0x23, 0xff, 0x80, 0x3e, 0x23, 0xff, 0x7e, 0x3c, 0x21, 0xff, 0x7d, 0x3b, 0x20, 0xff, 0x7c, 0x3b, 0x20, 0xff, 0x7b, 0x39, 0x20, 0xff, 0x7a, 0x38, 0x1f, 0xff, 0x7a, 0x39, 0x20, 0xff, 0x7d, 0x3c, 0x23, 0xff, 0x74, 0x34, 0x1c, 0xff, 0x5c, 0x21, 0x0b, 0xff, 0x4e, 0x1a, 0x03, 0xff, 0x48, 0x17, 0x03, 0xff, 0x3f, 0x0e, 0x03, 0xff, 0x3d, 0x0d, 0x03, 0xff, 0x3e, 0x0d, 0x03, 0xff, 0x3c, 0x0c, 0x03, 0xff, 0x3d, 0x10, 0x03, 0xff, 0x3e, 0x10, 0x03, 0xff, 0x3e, 0x0f, 0x03, 0xff, 0x3e, 0x0f, 0x03, 0xff, 0x40, 0x13, 0x03, 0xff, 0x44, 0x16, 0x02, 0xff, 0x5f, 0x26, 0x0a, 0xff, 0x65, 0x28, 0x0b, 0xff, 0x62, 0x27, 0x0b, 0xff, 0x6c, 0x2e, 0x12, 0xff, 0x9a, 0x5b, 0x35, 0xff, 0x9f, 0x60, 0x37, 0xff, 0x9e, 0x5d, 0x34, 0xff, 0x99, 0x58, 0x31, 0xff, 0x93, 0x52, 0x2e, 0xff, 0x95, 0x55, 0x30, 0xff, 0x9d, 0x5c, 0x36, 0xff, 0xa5, 0x69, 0x41, 0xff, 0xaa, 0x73, 0x4d, 0xff, 0xaa, 0x78, 0x53, 0xff, 0xaa, 0x79, 0x4f, 0xff, 0xab, 0x7e, 0x58, 0xff, 0xac, 0x75, 0x4d, 0xff, 0xa4, 0x66, 0x3f, 0xff, 0x99, 0x56, 0x33, 0xff, 0x8f, 0x4b, 0x2a, 0xff, 0x87, 0x44, 0x26, 0xff, 0x83, 0x40, 0x24, 0xff, 0x81, 0x3f, 0x23, 0xff, 0x7f, 0x3c, 0x21, 0xff, 0x80, 0x3d, 0x23, 0xff, 0x80, 0x3d, 0x23, 0xff, 0x85, 0x43, 0x24, 0xff, 0x85, 0x45, 0x27, 0xff, 0x83, 0x45, 0x28, 0xff, 0x81, 0x43, 0x26, 0xff, 0x80, 0x40, 0x26, 0xff, 0x80, 0x41, 0x26, 0xff, 0x7e, 0x40, 0x25, 0xff, 0x80, 0x40, 0x26, 0xff, 0x80, 0x42, 0x28, 0xff, 0x82, 0x44, 0x28, 0xff, 0x75, 0x37, 0x21, 0xff, 0x6b, 0x30, 0x16, 0xff, 0x67, 0x2a, 0x13, 0xff, 0x65, 0x2a, 0x11, 0xff, 0x66, 0x2a, 0x11, 0xff, 0x63, 0x29, 0x10, 0xff, 0x5f, 0x24, 0x0b, 0xff, 0x63, 0x27, 0x0f, 0xff, 0x64, 0x25, 0x0b, 0xff, 0x61, 0x27, 0x0c, 0xff, 0x61, 0x25, 0x0a, 0xff, 0x60, 0x26, 0x0c, 0xff, 0x62, 0x28, 0x0c, 0xff, 0x63, 0x28, 0x0d, 0xff, 0x61, 0x27, 0x0f, 0xff, 0x5d, 0x27, 0x0d, 0xff, 0x5b, 0x26, 0x0c, 0xff, 0x59, 0x24, 0x0a, 0xff, 0x57, 0x23, 0x07, 0xff, 0x57, 0x1f, 0x06, 0xff, 0x55, 0x1e, 0x06, 0xff, 0x56, 0x1d, 0x06, 0xff, 0x57, 0x1f, 0x06, 0xff, 0x58, 0x1f, 0x06, 0xff, 0x58, 0x20, 0x06, 0xff, 0x5b, 0x21, 0x07, 0xff, 0x86, 0x47, 0x2b, 0xff, 0x87, 0x45, 0x2a, 0xff, 0x81, 0x42, 0x27, 0xff, 0x7c, 0x3d, 0x24, 0xff, 0x7a, 0x39, 0x23, 0xff, 0x78, 0x37, 0x20, 0xff, 0x77, 0x36, 0x20, 0xff, 0x75, 0x36, 0x1f, 0xff, 0x75, 0x34, 0x1c, 0xff, 0x74, 0x35, 0x1b, 0xff, + 0x74, 0x33, 0x19, 0xff, 0x74, 0x31, 0x19, 0xff, 0x74, 0x31, 0x19, 0xff, 0x73, 0x31, 0x16, 0xff, 0x71, 0x30, 0x16, 0xff, 0x70, 0x31, 0x16, 0xff, 0x6a, 0x2c, 0x13, 0xff, 0x6c, 0x2f, 0x13, 0xff, 0x6b, 0x2c, 0x14, 0xff, 0x67, 0x2a, 0x10, 0xff, 0x61, 0x27, 0x0c, 0xff, 0x5e, 0x25, 0x09, 0xff, 0x5a, 0x21, 0x08, 0xff, 0x59, 0x21, 0x05, 0xff, 0x5b, 0x22, 0x09, 0xff, 0x5d, 0x23, 0x06, 0xff, 0x5b, 0x21, 0x06, 0xff, 0x5d, 0x24, 0x08, 0xff, 0x5a, 0x22, 0x06, 0xff, 0x54, 0x1c, 0x05, 0xff, 0x52, 0x1a, 0x03, 0xff, 0x54, 0x1b, 0x03, 0xff, 0x55, 0x1d, 0x03, 0xff, 0x5c, 0x23, 0x07, 0xff, 0x5c, 0x23, 0x06, 0xff, 0x61, 0x25, 0x0a, 0xff, 0x60, 0x25, 0x09, 0xff, 0x61, 0x26, 0x0b, 0xff, 0x62, 0x29, 0x10, 0xff, 0x64, 0x29, 0x0d, 0xff, 0x66, 0x2b, 0x12, 0xff, 0x67, 0x2d, 0x13, 0xff, 0x68, 0x2f, 0x13, 0xff, 0x6c, 0x2f, 0x13, 0xff, 0x6d, 0x2e, 0x13, 0xff, 0x6e, 0x2d, 0x13, 0xff, 0x6e, 0x2e, 0x13, 0xff, 0x70, 0x2f, 0x11, 0xff, 0x73, 0x2f, 0x13, 0xff, 0x76, 0x30, 0x13, 0xff, 0x74, 0x31, 0x13, 0xff, 0x76, 0x31, 0x14, 0xff, 0x7a, 0x35, 0x16, 0xff, 0x7b, 0x36, 0x1a, 0xff, 0x7a, 0x3a, 0x21, 0xff, 0x7e, 0x3d, 0x21, 0xff, 0x81, 0x3f, 0x23, 0xff, 0x82, 0x3f, 0x23, 0xff, 0x86, 0x43, 0x25, 0xff, 0x8b, 0x47, 0x27, 0xff, 0x88, 0x47, 0x27, 0xff, 0x8d, 0x4b, 0x29, 0xff, 0x91, 0x4f, 0x2c, 0xff, 0x92, 0x50, 0x2f, 0xff, 0x8e, 0x4c, 0x2c, 0xff, 0x91, 0x4f, 0x2d, 0xff, 0x96, 0x54, 0x32, 0xff, 0x9a, 0x59, 0x35, 0xff, 0x9c, 0x5b, 0x37, 0xff, 0xa1, 0x60, 0x3a, 0xff, 0xa8, 0x65, 0x3f, 0xff, 0xb2, 0x70, 0x46, 0xff, 0xb0, 0x70, 0x43, 0xff, 0xd6, 0x92, 0x5d, 0xff, 0xf6, 0xa5, 0x6b, 0xff, 0xf7, 0xa6, 0x6a, 0xff, 0xfc, 0xa3, 0x67, 0xff, 0xf1, 0x9b, 0x61, 0xff, 0xcf, 0x89, 0x55, 0xff, 0xc9, 0x83, 0x53, 0xff, 0xc3, 0x80, 0x51, 0xff, 0xc3, 0x80, 0x51, 0xff, 0xc5, 0x81, 0x53, 0xff, 0xc5, 0x82, 0x53, 0xff, 0xc9, 0x86, 0x56, 0xff, 0xcf, 0x87, 0x57, 0xff, 0xda, 0x8c, 0x5b, 0xff, 0xd8, 0x8b, 0x5a, 0xff, 0xb4, 0x77, 0x49, 0xff, 0xba, 0x79, 0x4a, 0xff, 0xc2, 0x86, 0x52, 0xff, 0xc3, 0x89, 0x56, 0xff, 0xc3, 0x85, 0x56, 0xff, 0xd7, 0x8e, 0x59, 0xff, 0xfb, 0xa9, 0x6b, 0xff, 0xf2, 0xa6, 0x67, 0xff, 0xf8, 0xad, 0x6c, 0xff, 0xf7, 0xac, 0x68, 0xff, 0xf6, 0xac, 0x67, 0xff, 0xf6, 0xad, 0x66, 0xff, 0xf4, 0xae, 0x68, 0xff, 0xd4, 0x98, 0x60, 0xff, 0x9d, 0x67, 0x3c, 0xff, 0x94, 0x5a, 0x37, 0xff, 0x96, 0x5c, 0x3a, 0xff, 0x93, 0x5a, 0x36, 0xff, 0x92, 0x5c, 0x39, 0xff, 0x91, 0x5e, 0x3c, 0xff, 0x91, 0x5d, 0x41, 0xff, 0x93, 0x5d, 0x45, 0xff, 0x94, 0x5f, 0x48, 0xff, 0x94, 0x61, 0x49, 0xff, 0x93, 0x60, 0x48, 0xff, 0x93, 0x60, 0x49, 0xff, 0x94, 0x5f, 0x48, 0xff, 0x96, 0x5f, 0x49, 0xff, 0x95, 0x60, 0x49, 0xff, 0x94, 0x60, 0x49, 0xff, 0x95, 0x61, 0x4a, 0xff, 0x97, 0x63, 0x4a, 0xff, 0x97, 0x64, 0x48, 0xff, 0x96, 0x66, 0x46, 0xff, 0x96, 0x63, 0x43, 0xff, 0x95, 0x5e, 0x40, 0xff, 0x93, 0x5a, 0x3b, 0xff, 0x8e, 0x55, 0x35, 0xff, 0x8b, 0x52, 0x33, 0xff, 0x86, 0x4e, 0x30, 0xff, 0x9e, 0x65, 0x3f, 0xff, 0xc1, 0x86, 0x58, 0xff, 0xc4, 0x89, 0x5c, 0xff, 0xbd, 0x7d, 0x50, 0xff, 0xb9, 0x77, 0x49, 0xff, 0xb6, 0x75, 0x47, 0xff, 0xb4, 0x73, 0x45, 0xff, 0xb6, 0x74, 0x44, 0xff, 0xb5, 0x74, 0x44, 0xff, 0xb2, 0x72, 0x46, 0xff, 0xa8, 0x6a, 0x40, 0xff, 0x9f, 0x5f, 0x38, 0xff, 0x9c, 0x5b, 0x34, 0xff, 0x99, 0x58, 0x33, 0xff, 0x95, 0x55, 0x33, 0xff, 0x92, 0x51, 0x2f, 0xff, 0x8f, 0x4d, 0x2b, 0xff, 0x8b, 0x48, 0x28, 0xff, 0x88, 0x45, 0x26, 0xff, 0x85, 0x44, 0x25, 0xff, 0x82, 0x42, 0x24, 0xff, 0x82, 0x40, 0x23, 0xff, 0x80, 0x3f, 0x23, 0xff, 0x7e, 0x3d, 0x21, 0xff, 0x7c, 0x3b, 0x1f, 0xff, 0x7b, 0x39, 0x1f, 0xff, 0x7a, 0x38, 0x1f, 0xff, 0x79, 0x37, 0x1e, 0xff, 0x79, 0x37, 0x1f, 0xff, 0x7a, 0x37, 0x1f, 0xff, 0x7a, 0x37, 0x1f, 0xff, 0x7a, 0x38, 0x21, 0xff, 0x5d, 0x24, 0x0c, 0xff, 0x4f, 0x1b, 0x02, 0xff, 0x4c, 0x17, 0x03, 0xff, 0x41, 0x0f, 0x03, 0xff, 0x3a, 0x0a, 0x03, 0xff, 0x3d, 0x0c, 0x03, 0xff, 0x3e, 0x0d, 0x03, 0xff, 0x3e, 0x10, 0x03, 0xff, 0x3f, 0x0d, 0x03, 0xff, 0x3e, 0x10, 0x03, 0xff, 0x3e, 0x0f, 0x03, 0xff, 0x3f, 0x10, 0x02, 0xff, 0x5d, 0x25, 0x0d, 0xff, 0x65, 0x29, 0x0c, 0xff, 0x64, 0x2a, 0x0e, 0xff, 0x63, 0x26, 0x0a, 0xff, 0x94, 0x53, 0x2e, 0xff, 0xa1, 0x63, 0x3a, 0xff, 0x9f, 0x62, 0x38, 0xff, 0x9a, 0x5a, 0x33, 0xff, 0x94, 0x51, 0x2f, 0xff, 0x93, 0x54, 0x2f, 0xff, 0x99, 0x59, 0x33, 0xff, 0xa3, 0x66, 0x3d, 0xff, 0xa9, 0x70, 0x48, 0xff, 0xa9, 0x77, 0x51, 0xff, 0xa8, 0x78, 0x53, 0xff, 0xa9, 0x7e, 0x5b, 0xff, 0xaa, 0x79, 0x50, 0xff, 0xa6, 0x6a, 0x41, 0xff, 0x9b, 0x59, 0x34, 0xff, 0x90, 0x4d, 0x2b, 0xff, 0x87, 0x44, 0x27, 0xff, 0x84, 0x43, 0x24, 0xff, 0x81, 0x3f, 0x22, 0xff, 0x7f, 0x3e, 0x22, 0xff, 0x7d, 0x3c, 0x20, 0xff, 0x7f, 0x3e, 0x22, 0xff, 0x84, 0x42, 0x24, 0xff, 0x85, 0x43, 0x26, 0xff, 0x84, 0x44, 0x28, 0xff, 0x80, 0x42, 0x27, 0xff, 0x7e, 0x41, 0x26, 0xff, 0x7f, 0x41, 0x26, 0xff, 0x7e, 0x40, 0x25, 0xff, 0x7f, 0x3e, 0x25, 0xff, 0x7f, 0x41, 0x26, 0xff, 0x80, 0x40, 0x27, 0xff, 0x72, 0x34, 0x1d, 0xff, 0x68, 0x2c, 0x16, 0xff, 0x67, 0x29, 0x11, 0xff, 0x62, 0x29, 0x11, 0xff, 0x66, 0x2a, 0x10, 0xff, 0x63, 0x29, 0x0e, 0xff, 0x61, 0x27, 0x0c, 0xff, 0x66, 0x27, 0x0d, 0xff, 0x62, 0x27, 0x0d, 0xff, 0x5e, 0x27, 0x0b, 0xff, 0x61, 0x23, 0x0a, 0xff, 0x61, 0x25, 0x0b, 0xff, 0x5f, 0x27, 0x0d, 0xff, 0x60, 0x28, 0x0c, 0xff, 0x5f, 0x23, 0x0a, 0xff, 0x5b, 0x26, 0x0d, 0xff, 0x58, 0x24, 0x0a, 0xff, 0x55, 0x24, 0x07, 0xff, 0x55, 0x1d, 0x06, 0xff, 0x56, 0x1e, 0x06, 0xff, 0x53, 0x1b, 0x04, 0xff, 0x55, 0x1c, 0x03, 0xff, 0x55, 0x20, 0x06, 0xff, 0x54, 0x1f, 0x05, 0xff, 0x55, 0x1d, 0x06, 0xff, 0x58, 0x20, 0x06, 0xff, 0x74, 0x38, 0x1a, 0xff, 0x8e, 0x4d, 0x2e, 0xff, 0x86, 0x44, 0x27, 0xff, 0x7f, 0x40, 0x25, 0xff, 0x7d, 0x3c, 0x23, 0xff, 0x7a, 0x3a, 0x22, 0xff, 0x78, 0x38, 0x21, 0xff, 0x77, 0x36, 0x20, 0xff, 0x75, 0x36, 0x1d, 0xff, 0x74, 0x33, 0x19, 0xff, + 0x74, 0x33, 0x19, 0xff, 0x74, 0x31, 0x19, 0xff, 0x74, 0x31, 0x19, 0xff, 0x74, 0x33, 0x19, 0xff, 0x73, 0x31, 0x16, 0xff, 0x71, 0x31, 0x16, 0xff, 0x6e, 0x30, 0x16, 0xff, 0x6e, 0x30, 0x13, 0xff, 0x6a, 0x2c, 0x12, 0xff, 0x66, 0x2b, 0x10, 0xff, 0x64, 0x27, 0x0c, 0xff, 0x5f, 0x25, 0x09, 0xff, 0x5d, 0x24, 0x0a, 0xff, 0x5f, 0x25, 0x09, 0xff, 0x5d, 0x26, 0x09, 0xff, 0x5d, 0x24, 0x09, 0xff, 0x5d, 0x23, 0x07, 0xff, 0x5d, 0x24, 0x09, 0xff, 0x5b, 0x23, 0x06, 0xff, 0x56, 0x20, 0x05, 0xff, 0x54, 0x1d, 0x03, 0xff, 0x55, 0x1c, 0x03, 0xff, 0x5e, 0x25, 0x0b, 0xff, 0x5e, 0x24, 0x09, 0xff, 0x5f, 0x25, 0x06, 0xff, 0x60, 0x25, 0x09, 0xff, 0x61, 0x23, 0x0a, 0xff, 0x63, 0x26, 0x0c, 0xff, 0x64, 0x26, 0x0c, 0xff, 0x66, 0x2b, 0x0c, 0xff, 0x65, 0x28, 0x11, 0xff, 0x69, 0x2c, 0x13, 0xff, 0x68, 0x2d, 0x13, 0xff, 0x6a, 0x2d, 0x13, 0xff, 0x6d, 0x2e, 0x13, 0xff, 0x6e, 0x2e, 0x13, 0xff, 0x6e, 0x30, 0x13, 0xff, 0x6f, 0x2d, 0x11, 0xff, 0x72, 0x2f, 0x13, 0xff, 0x72, 0x31, 0x13, 0xff, 0x73, 0x31, 0x17, 0xff, 0x71, 0x30, 0x18, 0xff, 0x71, 0x31, 0x18, 0xff, 0x75, 0x33, 0x19, 0xff, 0x78, 0x37, 0x1d, 0xff, 0x7c, 0x3b, 0x20, 0xff, 0x81, 0x40, 0x23, 0xff, 0x83, 0x42, 0x24, 0xff, 0x84, 0x43, 0x25, 0xff, 0x86, 0x45, 0x27, 0xff, 0x87, 0x44, 0x27, 0xff, 0x8a, 0x4a, 0x27, 0xff, 0x8c, 0x4a, 0x2a, 0xff, 0x90, 0x4e, 0x2d, 0xff, 0x93, 0x53, 0x2f, 0xff, 0x91, 0x50, 0x2e, 0xff, 0x97, 0x57, 0x32, 0xff, 0x9b, 0x5b, 0x34, 0xff, 0x9e, 0x5e, 0x37, 0xff, 0xa2, 0x61, 0x3a, 0xff, 0xa9, 0x68, 0x40, 0xff, 0xaa, 0x6c, 0x43, 0xff, 0x9f, 0x5f, 0x38, 0xff, 0x9f, 0x5e, 0x36, 0xff, 0xa3, 0x62, 0x38, 0xff, 0xb0, 0x6f, 0x44, 0xff, 0xc0, 0x80, 0x4d, 0xff, 0xce, 0x8a, 0x56, 0xff, 0xca, 0x85, 0x52, 0xff, 0xc5, 0x80, 0x4e, 0xff, 0xc3, 0x7f, 0x4e, 0xff, 0xc2, 0x7e, 0x4f, 0xff, 0xc3, 0x81, 0x52, 0xff, 0xc6, 0x81, 0x53, 0xff, 0xc8, 0x83, 0x55, 0xff, 0xca, 0x84, 0x56, 0xff, 0xd5, 0x8b, 0x5a, 0xff, 0xd9, 0x8b, 0x59, 0xff, 0xb5, 0x72, 0x46, 0xff, 0xaf, 0x6f, 0x45, 0xff, 0xb1, 0x72, 0x48, 0xff, 0xbe, 0x82, 0x53, 0xff, 0xc2, 0x87, 0x57, 0xff, 0xcb, 0x8a, 0x57, 0xff, 0xf4, 0xa3, 0x6a, 0xff, 0xf8, 0x9f, 0x68, 0xff, 0xf1, 0x9e, 0x64, 0xff, 0xf1, 0xa6, 0x67, 0xff, 0xf3, 0xae, 0x6b, 0xff, 0xf8, 0xb4, 0x6f, 0xff, 0xd3, 0x98, 0x60, 0xff, 0x8f, 0x57, 0x33, 0xff, 0x94, 0x5b, 0x38, 0xff, 0x96, 0x5a, 0x36, 0xff, 0x92, 0x57, 0x32, 0xff, 0x90, 0x57, 0x33, 0xff, 0x90, 0x58, 0x34, 0xff, 0x91, 0x5d, 0x39, 0xff, 0x93, 0x5f, 0x3f, 0xff, 0x93, 0x5f, 0x42, 0xff, 0x94, 0x5e, 0x45, 0xff, 0x93, 0x5e, 0x48, 0xff, 0x91, 0x5d, 0x48, 0xff, 0x92, 0x5e, 0x48, 0xff, 0x93, 0x60, 0x48, 0xff, 0x93, 0x5f, 0x49, 0xff, 0x95, 0x60, 0x4a, 0xff, 0x96, 0x62, 0x4b, 0xff, 0x95, 0x63, 0x4c, 0xff, 0x96, 0x66, 0x4d, 0xff, 0x96, 0x67, 0x4b, 0xff, 0x97, 0x67, 0x49, 0xff, 0x97, 0x65, 0x48, 0xff, 0x96, 0x61, 0x44, 0xff, 0x94, 0x5e, 0x40, 0xff, 0x92, 0x5b, 0x3c, 0xff, 0x8d, 0x55, 0x36, 0xff, 0x87, 0x50, 0x30, 0xff, 0xa1, 0x68, 0x43, 0xff, 0xc0, 0x83, 0x57, 0xff, 0xc4, 0x85, 0x57, 0xff, 0xbf, 0x7e, 0x52, 0xff, 0xb7, 0x78, 0x49, 0xff, 0xb4, 0x73, 0x47, 0xff, 0xb5, 0x73, 0x47, 0xff, 0xb9, 0x78, 0x49, 0xff, 0xb8, 0x77, 0x48, 0xff, 0xae, 0x6e, 0x42, 0xff, 0xa5, 0x68, 0x3c, 0xff, 0xa2, 0x65, 0x3c, 0xff, 0x9f, 0x61, 0x3b, 0xff, 0x9c, 0x5e, 0x37, 0xff, 0x99, 0x59, 0x34, 0xff, 0x95, 0x54, 0x33, 0xff, 0x91, 0x50, 0x2f, 0xff, 0x8d, 0x4c, 0x2b, 0xff, 0x89, 0x46, 0x27, 0xff, 0x85, 0x43, 0x25, 0xff, 0x84, 0x42, 0x23, 0xff, 0x80, 0x41, 0x22, 0xff, 0x7f, 0x3d, 0x21, 0xff, 0x7e, 0x3c, 0x20, 0xff, 0x7c, 0x3c, 0x20, 0xff, 0x7a, 0x38, 0x1d, 0xff, 0x79, 0x37, 0x1c, 0xff, 0x79, 0x37, 0x1c, 0xff, 0x78, 0x37, 0x1d, 0xff, 0x78, 0x37, 0x1f, 0xff, 0x78, 0x36, 0x1c, 0xff, 0x77, 0x36, 0x1c, 0xff, 0x7b, 0x39, 0x21, 0xff, 0x66, 0x2c, 0x14, 0xff, 0x52, 0x1c, 0x05, 0xff, 0x4f, 0x1b, 0x03, 0xff, 0x43, 0x15, 0x03, 0xff, 0x3d, 0x0d, 0x03, 0xff, 0x3e, 0x0e, 0x03, 0xff, 0x3d, 0x11, 0x03, 0xff, 0x3e, 0x0f, 0x03, 0xff, 0x3e, 0x10, 0x03, 0xff, 0x41, 0x14, 0x03, 0xff, 0x41, 0x16, 0x02, 0xff, 0x53, 0x1f, 0x08, 0xff, 0x65, 0x29, 0x0d, 0xff, 0x64, 0x28, 0x09, 0xff, 0x65, 0x2a, 0x0f, 0xff, 0x83, 0x45, 0x24, 0xff, 0x9d, 0x60, 0x39, 0xff, 0x9e, 0x65, 0x3b, 0xff, 0x9c, 0x5d, 0x35, 0xff, 0x94, 0x53, 0x2d, 0xff, 0x92, 0x4f, 0x2c, 0xff, 0x96, 0x55, 0x31, 0xff, 0x9d, 0x5f, 0x38, 0xff, 0xa5, 0x6b, 0x43, 0xff, 0xa8, 0x71, 0x49, 0xff, 0xa9, 0x7a, 0x55, 0xff, 0xa7, 0x7b, 0x5a, 0xff, 0xa7, 0x76, 0x4f, 0xff, 0xa7, 0x6c, 0x44, 0xff, 0x9c, 0x5c, 0x36, 0xff, 0x91, 0x50, 0x2c, 0xff, 0x89, 0x47, 0x28, 0xff, 0x84, 0x42, 0x24, 0xff, 0x82, 0x40, 0x23, 0xff, 0x81, 0x3e, 0x22, 0xff, 0x80, 0x3d, 0x23, 0xff, 0x7f, 0x3c, 0x22, 0xff, 0x83, 0x42, 0x24, 0xff, 0x84, 0x45, 0x27, 0xff, 0x81, 0x43, 0x27, 0xff, 0x7f, 0x41, 0x26, 0xff, 0x7e, 0x3f, 0x25, 0xff, 0x7f, 0x41, 0x26, 0xff, 0x7c, 0x3e, 0x25, 0xff, 0x7c, 0x3d, 0x25, 0xff, 0x7c, 0x3d, 0x25, 0xff, 0x7b, 0x3d, 0x25, 0xff, 0x6f, 0x31, 0x1c, 0xff, 0x68, 0x2b, 0x12, 0xff, 0x64, 0x2a, 0x10, 0xff, 0x62, 0x26, 0x0c, 0xff, 0x5f, 0x27, 0x0c, 0xff, 0x62, 0x26, 0x0c, 0xff, 0x65, 0x28, 0x10, 0xff, 0x66, 0x27, 0x0c, 0xff, 0x61, 0x28, 0x0c, 0xff, 0x61, 0x25, 0x0b, 0xff, 0x60, 0x27, 0x0c, 0xff, 0x5f, 0x25, 0x0a, 0xff, 0x61, 0x26, 0x0c, 0xff, 0x60, 0x23, 0x0a, 0xff, 0x5e, 0x27, 0x0c, 0xff, 0x5a, 0x23, 0x0a, 0xff, 0x58, 0x23, 0x0a, 0xff, 0x55, 0x23, 0x06, 0xff, 0x55, 0x1d, 0x06, 0xff, 0x54, 0x1f, 0x05, 0xff, 0x52, 0x1b, 0x03, 0xff, 0x52, 0x1a, 0x03, 0xff, 0x54, 0x1a, 0x03, 0xff, 0x53, 0x1d, 0x05, 0xff, 0x55, 0x1d, 0x06, 0xff, 0x54, 0x1c, 0x06, 0xff, 0x62, 0x25, 0x10, 0xff, 0x8d, 0x4d, 0x2e, 0xff, 0x86, 0x46, 0x28, 0xff, 0x82, 0x41, 0x28, 0xff, 0x7e, 0x3e, 0x25, 0xff, 0x7b, 0x3c, 0x23, 0xff, 0x7a, 0x3a, 0x22, 0xff, 0x7a, 0x38, 0x21, 0xff, 0x77, 0x37, 0x1f, 0xff, 0x75, 0x35, 0x1d, 0xff, + 0x75, 0x36, 0x1c, 0xff, 0x75, 0x35, 0x1b, 0xff, 0x74, 0x32, 0x19, 0xff, 0x74, 0x31, 0x18, 0xff, 0x74, 0x33, 0x19, 0xff, 0x75, 0x32, 0x18, 0xff, 0x75, 0x33, 0x19, 0xff, 0x72, 0x31, 0x18, 0xff, 0x6b, 0x2a, 0x12, 0xff, 0x69, 0x2a, 0x14, 0xff, 0x67, 0x2c, 0x0d, 0xff, 0x61, 0x28, 0x10, 0xff, 0x63, 0x27, 0x0d, 0xff, 0x63, 0x29, 0x0d, 0xff, 0x62, 0x27, 0x0b, 0xff, 0x61, 0x26, 0x0b, 0xff, 0x61, 0x26, 0x0b, 0xff, 0x61, 0x26, 0x0b, 0xff, 0x60, 0x26, 0x0a, 0xff, 0x5d, 0x24, 0x09, 0xff, 0x5b, 0x23, 0x07, 0xff, 0x60, 0x27, 0x0a, 0xff, 0x5e, 0x24, 0x08, 0xff, 0x5f, 0x24, 0x06, 0xff, 0x5f, 0x25, 0x0a, 0xff, 0x60, 0x27, 0x0a, 0xff, 0x60, 0x26, 0x0a, 0xff, 0x60, 0x26, 0x0a, 0xff, 0x61, 0x27, 0x0c, 0xff, 0x63, 0x26, 0x0c, 0xff, 0x66, 0x29, 0x0f, 0xff, 0x68, 0x2b, 0x11, 0xff, 0x6b, 0x2c, 0x13, 0xff, 0x6b, 0x2d, 0x13, 0xff, 0x6e, 0x2f, 0x13, 0xff, 0x6f, 0x30, 0x13, 0xff, 0x6f, 0x2f, 0x15, 0xff, 0x6e, 0x2f, 0x13, 0xff, 0x6e, 0x2f, 0x13, 0xff, 0x6d, 0x2f, 0x16, 0xff, 0x6f, 0x30, 0x16, 0xff, 0x72, 0x31, 0x17, 0xff, 0x73, 0x32, 0x17, 0xff, 0x75, 0x35, 0x1c, 0xff, 0x79, 0x38, 0x1f, 0xff, 0x7c, 0x3b, 0x21, 0xff, 0x81, 0x3e, 0x23, 0xff, 0x82, 0x41, 0x23, 0xff, 0x83, 0x44, 0x26, 0xff, 0x82, 0x43, 0x26, 0xff, 0x85, 0x43, 0x27, 0xff, 0x87, 0x47, 0x29, 0xff, 0x8a, 0x4a, 0x2b, 0xff, 0x8d, 0x4e, 0x2e, 0xff, 0x92, 0x52, 0x31, 0xff, 0x90, 0x50, 0x2f, 0xff, 0x94, 0x56, 0x32, 0xff, 0x98, 0x58, 0x33, 0xff, 0x9b, 0x5c, 0x34, 0xff, 0xa0, 0x61, 0x3a, 0xff, 0xa8, 0x68, 0x40, 0xff, 0xa1, 0x5f, 0x37, 0xff, 0xa1, 0x60, 0x37, 0xff, 0xa7, 0x66, 0x3e, 0xff, 0xab, 0x6a, 0x41, 0xff, 0xab, 0x6a, 0x41, 0xff, 0xa8, 0x67, 0x3e, 0xff, 0xa7, 0x66, 0x3d, 0xff, 0xaf, 0x6e, 0x43, 0xff, 0xb9, 0x77, 0x49, 0xff, 0xbb, 0x79, 0x4a, 0xff, 0xc0, 0x7c, 0x4d, 0xff, 0xc2, 0x7e, 0x4f, 0xff, 0xc4, 0x81, 0x51, 0xff, 0xc6, 0x82, 0x55, 0xff, 0xc8, 0x84, 0x56, 0xff, 0xcf, 0x88, 0x58, 0xff, 0xd8, 0x8c, 0x5d, 0xff, 0xc6, 0x82, 0x55, 0xff, 0xae, 0x6c, 0x40, 0xff, 0xb3, 0x73, 0x47, 0xff, 0xb3, 0x74, 0x4a, 0xff, 0xb5, 0x76, 0x4a, 0xff, 0xbd, 0x83, 0x4e, 0xff, 0xdc, 0x9c, 0x61, 0xff, 0xfa, 0xa7, 0x6c, 0xff, 0xf9, 0xa0, 0x65, 0xff, 0xfa, 0xa0, 0x66, 0xff, 0xee, 0x9f, 0x65, 0xff, 0xba, 0x7d, 0x4c, 0xff, 0x8b, 0x54, 0x30, 0xff, 0x97, 0x5c, 0x3a, 0xff, 0x94, 0x58, 0x34, 0xff, 0x91, 0x54, 0x31, 0xff, 0x90, 0x54, 0x31, 0xff, 0x8f, 0x55, 0x32, 0xff, 0x8f, 0x57, 0x33, 0xff, 0x90, 0x5a, 0x36, 0xff, 0x90, 0x5d, 0x3a, 0xff, 0x91, 0x5e, 0x3e, 0xff, 0x90, 0x5d, 0x42, 0xff, 0x90, 0x5d, 0x45, 0xff, 0x91, 0x5c, 0x48, 0xff, 0x91, 0x5d, 0x48, 0xff, 0x93, 0x5f, 0x48, 0xff, 0x94, 0x5e, 0x49, 0xff, 0x95, 0x5f, 0x49, 0xff, 0x96, 0x62, 0x4b, 0xff, 0x96, 0x64, 0x4e, 0xff, 0x96, 0x67, 0x4f, 0xff, 0x96, 0x67, 0x4d, 0xff, 0x97, 0x68, 0x4a, 0xff, 0x97, 0x66, 0x49, 0xff, 0x97, 0x62, 0x45, 0xff, 0x96, 0x5d, 0x40, 0xff, 0x95, 0x5a, 0x3f, 0xff, 0x93, 0x59, 0x3c, 0xff, 0x8d, 0x55, 0x37, 0xff, 0xa3, 0x68, 0x44, 0xff, 0xbd, 0x7f, 0x54, 0xff, 0xc0, 0x81, 0x55, 0xff, 0xbe, 0x80, 0x52, 0xff, 0xb9, 0x7a, 0x4c, 0xff, 0xb5, 0x75, 0x49, 0xff, 0xb5, 0x75, 0x48, 0xff, 0xba, 0x79, 0x4a, 0xff, 0xb5, 0x75, 0x48, 0xff, 0xab, 0x6c, 0x43, 0xff, 0xa9, 0x6a, 0x41, 0xff, 0xa8, 0x6a, 0x41, 0xff, 0xa4, 0x67, 0x40, 0xff, 0xa1, 0x64, 0x3d, 0xff, 0x9e, 0x5f, 0x39, 0xff, 0x99, 0x59, 0x35, 0xff, 0x94, 0x55, 0x31, 0xff, 0x90, 0x50, 0x2e, 0xff, 0x8c, 0x49, 0x29, 0xff, 0x87, 0x45, 0x26, 0xff, 0x84, 0x41, 0x25, 0xff, 0x81, 0x40, 0x23, 0xff, 0x7e, 0x3e, 0x21, 0xff, 0x7d, 0x3c, 0x20, 0xff, 0x7d, 0x3c, 0x20, 0xff, 0x7a, 0x38, 0x1e, 0xff, 0x78, 0x36, 0x1b, 0xff, 0x77, 0x35, 0x1a, 0xff, 0x76, 0x36, 0x19, 0xff, 0x75, 0x35, 0x19, 0xff, 0x75, 0x35, 0x19, 0xff, 0x78, 0x36, 0x1a, 0xff, 0x76, 0x35, 0x1b, 0xff, 0x7b, 0x39, 0x21, 0xff, 0x6e, 0x31, 0x16, 0xff, 0x56, 0x1e, 0x06, 0xff, 0x51, 0x1d, 0x03, 0xff, 0x47, 0x12, 0x03, 0xff, 0x3e, 0x0c, 0x03, 0xff, 0x3e, 0x0d, 0x03, 0xff, 0x3f, 0x0f, 0x03, 0xff, 0x3f, 0x10, 0x03, 0xff, 0x41, 0x11, 0x03, 0xff, 0x42, 0x15, 0x03, 0xff, 0x45, 0x16, 0x03, 0xff, 0x5f, 0x24, 0x0a, 0xff, 0x65, 0x2a, 0x0b, 0xff, 0x63, 0x27, 0x0a, 0xff, 0x75, 0x36, 0x18, 0xff, 0x99, 0x5a, 0x36, 0xff, 0x9e, 0x64, 0x3d, 0xff, 0x9b, 0x5c, 0x35, 0xff, 0x95, 0x53, 0x2c, 0xff, 0x8f, 0x4d, 0x2a, 0xff, 0x91, 0x50, 0x2d, 0xff, 0x97, 0x56, 0x31, 0xff, 0xa0, 0x60, 0x3a, 0xff, 0xa4, 0x68, 0x41, 0xff, 0xa7, 0x75, 0x52, 0xff, 0xa5, 0x79, 0x55, 0xff, 0xa5, 0x74, 0x4c, 0xff, 0xa4, 0x6b, 0x43, 0xff, 0x9c, 0x5c, 0x38, 0xff, 0x92, 0x51, 0x2f, 0xff, 0x8a, 0x48, 0x28, 0xff, 0x84, 0x42, 0x24, 0xff, 0x82, 0x3f, 0x23, 0xff, 0x81, 0x3f, 0x23, 0xff, 0x7e, 0x3c, 0x22, 0xff, 0x7f, 0x3e, 0x23, 0xff, 0x82, 0x40, 0x24, 0xff, 0x86, 0x43, 0x27, 0xff, 0x7e, 0x3f, 0x26, 0xff, 0x7f, 0x41, 0x26, 0xff, 0x7e, 0x3f, 0x25, 0xff, 0x7d, 0x40, 0x26, 0xff, 0x7b, 0x3c, 0x24, 0xff, 0x7a, 0x3d, 0x24, 0xff, 0x7a, 0x3b, 0x23, 0xff, 0x7a, 0x3c, 0x24, 0xff, 0x6f, 0x31, 0x1b, 0xff, 0x67, 0x2a, 0x12, 0xff, 0x65, 0x29, 0x10, 0xff, 0x61, 0x27, 0x0c, 0xff, 0x60, 0x27, 0x0c, 0xff, 0x5f, 0x27, 0x0d, 0xff, 0x65, 0x29, 0x0f, 0xff, 0x64, 0x26, 0x0c, 0xff, 0x61, 0x26, 0x0c, 0xff, 0x60, 0x26, 0x0c, 0xff, 0x60, 0x25, 0x0a, 0xff, 0x5f, 0x25, 0x0a, 0xff, 0x5f, 0x26, 0x0a, 0xff, 0x5f, 0x27, 0x0c, 0xff, 0x5d, 0x24, 0x0a, 0xff, 0x5c, 0x22, 0x0a, 0xff, 0x58, 0x20, 0x07, 0xff, 0x55, 0x1d, 0x06, 0xff, 0x54, 0x1e, 0x05, 0xff, 0x52, 0x1a, 0x03, 0xff, 0x52, 0x1a, 0x03, 0xff, 0x52, 0x1e, 0x03, 0xff, 0x52, 0x1a, 0x03, 0xff, 0x52, 0x1e, 0x03, 0xff, 0x55, 0x1f, 0x06, 0xff, 0x55, 0x1d, 0x06, 0xff, 0x5b, 0x23, 0x0a, 0xff, 0x87, 0x47, 0x28, 0xff, 0x8b, 0x48, 0x2c, 0xff, 0x86, 0x44, 0x28, 0xff, 0x81, 0x40, 0x26, 0xff, 0x7d, 0x3d, 0x24, 0xff, 0x7b, 0x3b, 0x22, 0xff, 0x7b, 0x3b, 0x22, 0xff, 0x7a, 0x39, 0x20, 0xff, 0x77, 0x37, 0x1f, 0xff, + 0x78, 0x36, 0x1e, 0xff, 0x76, 0x36, 0x1d, 0xff, 0x75, 0x34, 0x1c, 0xff, 0x74, 0x33, 0x1a, 0xff, 0x74, 0x33, 0x19, 0xff, 0x75, 0x34, 0x19, 0xff, 0x75, 0x33, 0x1b, 0xff, 0x75, 0x34, 0x1c, 0xff, 0x70, 0x2f, 0x17, 0xff, 0x6c, 0x2e, 0x15, 0xff, 0x6a, 0x2c, 0x12, 0xff, 0x67, 0x2c, 0x12, 0xff, 0x67, 0x2a, 0x12, 0xff, 0x67, 0x2b, 0x14, 0xff, 0x68, 0x29, 0x12, 0xff, 0x66, 0x2a, 0x11, 0xff, 0x66, 0x29, 0x10, 0xff, 0x67, 0x2a, 0x12, 0xff, 0x65, 0x2a, 0x10, 0xff, 0x62, 0x27, 0x0f, 0xff, 0x64, 0x29, 0x0e, 0xff, 0x63, 0x27, 0x0f, 0xff, 0x62, 0x24, 0x0a, 0xff, 0x61, 0x26, 0x0b, 0xff, 0x60, 0x26, 0x0a, 0xff, 0x5f, 0x25, 0x0a, 0xff, 0x61, 0x25, 0x09, 0xff, 0x63, 0x25, 0x0c, 0xff, 0x62, 0x26, 0x0c, 0xff, 0x63, 0x27, 0x0f, 0xff, 0x67, 0x29, 0x0f, 0xff, 0x68, 0x2b, 0x10, 0xff, 0x6a, 0x2b, 0x10, 0xff, 0x6d, 0x2f, 0x15, 0xff, 0x6d, 0x2e, 0x15, 0xff, 0x6c, 0x2f, 0x13, 0xff, 0x6d, 0x2d, 0x13, 0xff, 0x6c, 0x2d, 0x13, 0xff, 0x6c, 0x2d, 0x14, 0xff, 0x6d, 0x2f, 0x16, 0xff, 0x71, 0x30, 0x16, 0xff, 0x74, 0x33, 0x19, 0xff, 0x74, 0x31, 0x18, 0xff, 0x75, 0x35, 0x1b, 0xff, 0x78, 0x38, 0x1d, 0xff, 0x7c, 0x3b, 0x22, 0xff, 0x7f, 0x3e, 0x23, 0xff, 0x82, 0x42, 0x24, 0xff, 0x83, 0x43, 0x26, 0xff, 0x82, 0x43, 0x27, 0xff, 0x84, 0x42, 0x27, 0xff, 0x87, 0x45, 0x29, 0xff, 0x89, 0x49, 0x2a, 0xff, 0x8c, 0x4d, 0x2d, 0xff, 0x90, 0x52, 0x2f, 0xff, 0x8f, 0x4f, 0x2e, 0xff, 0x92, 0x54, 0x31, 0xff, 0x96, 0x57, 0x32, 0xff, 0x9a, 0x5a, 0x35, 0xff, 0x9e, 0x5e, 0x38, 0xff, 0x9f, 0x5f, 0x39, 0xff, 0x98, 0x55, 0x31, 0xff, 0x9e, 0x5b, 0x34, 0xff, 0xa1, 0x5f, 0x36, 0xff, 0xa6, 0x63, 0x39, 0xff, 0xaa, 0x68, 0x3e, 0xff, 0xac, 0x6a, 0x40, 0xff, 0xae, 0x6c, 0x42, 0xff, 0xaf, 0x6d, 0x44, 0xff, 0xb0, 0x6f, 0x43, 0xff, 0xb0, 0x6f, 0x45, 0xff, 0xb6, 0x74, 0x48, 0xff, 0xbc, 0x7b, 0x4d, 0xff, 0xc2, 0x7f, 0x50, 0xff, 0xc7, 0x82, 0x54, 0xff, 0xc8, 0x82, 0x54, 0xff, 0xce, 0x86, 0x56, 0xff, 0xd7, 0x8d, 0x5c, 0xff, 0xc9, 0x84, 0x56, 0xff, 0xb2, 0x72, 0x44, 0xff, 0xb5, 0x74, 0x46, 0xff, 0xb7, 0x77, 0x4a, 0xff, 0xb6, 0x76, 0x4a, 0xff, 0xb7, 0x79, 0x4a, 0xff, 0xc1, 0x83, 0x52, 0xff, 0xe2, 0x9a, 0x65, 0xff, 0xfd, 0xa8, 0x6b, 0xff, 0xed, 0x9f, 0x65, 0xff, 0xb5, 0x78, 0x4e, 0xff, 0x91, 0x54, 0x33, 0xff, 0x96, 0x57, 0x35, 0xff, 0x92, 0x55, 0x30, 0xff, 0x8f, 0x52, 0x2e, 0xff, 0x8f, 0x51, 0x2e, 0xff, 0x90, 0x52, 0x2e, 0xff, 0x8f, 0x53, 0x30, 0xff, 0x90, 0x55, 0x32, 0xff, 0x8f, 0x58, 0x33, 0xff, 0x8f, 0x5a, 0x36, 0xff, 0x90, 0x5c, 0x3a, 0xff, 0x90, 0x5c, 0x3e, 0xff, 0x91, 0x5c, 0x42, 0xff, 0x91, 0x5d, 0x45, 0xff, 0x90, 0x5c, 0x47, 0xff, 0x92, 0x5e, 0x48, 0xff, 0x95, 0x60, 0x4a, 0xff, 0x96, 0x60, 0x4b, 0xff, 0x97, 0x65, 0x4d, 0xff, 0x96, 0x66, 0x4e, 0xff, 0x96, 0x66, 0x50, 0xff, 0x96, 0x68, 0x4f, 0xff, 0x98, 0x68, 0x4c, 0xff, 0x98, 0x66, 0x49, 0xff, 0x97, 0x62, 0x45, 0xff, 0x97, 0x61, 0x42, 0xff, 0x95, 0x5e, 0x3f, 0xff, 0x95, 0x5c, 0x3e, 0xff, 0x92, 0x59, 0x3b, 0xff, 0xa6, 0x6a, 0x47, 0xff, 0xba, 0x7e, 0x53, 0xff, 0xbd, 0x7f, 0x52, 0xff, 0xbf, 0x80, 0x52, 0xff, 0xbb, 0x7d, 0x4d, 0xff, 0xb8, 0x79, 0x4b, 0xff, 0xb7, 0x76, 0x49, 0xff, 0xb8, 0x75, 0x49, 0xff, 0xb1, 0x6f, 0x45, 0xff, 0xac, 0x6d, 0x44, 0xff, 0xae, 0x71, 0x46, 0xff, 0xae, 0x70, 0x47, 0xff, 0xac, 0x6e, 0x47, 0xff, 0xa7, 0x6b, 0x45, 0xff, 0xa3, 0x66, 0x40, 0xff, 0x9e, 0x61, 0x3b, 0xff, 0x99, 0x5a, 0x36, 0xff, 0x92, 0x53, 0x30, 0xff, 0x8d, 0x4c, 0x2b, 0xff, 0x89, 0x48, 0x27, 0xff, 0x86, 0x44, 0x25, 0xff, 0x81, 0x3f, 0x24, 0xff, 0x7f, 0x3e, 0x22, 0xff, 0x7d, 0x3c, 0x21, 0xff, 0x7b, 0x3a, 0x1f, 0xff, 0x7b, 0x39, 0x1d, 0xff, 0x78, 0x37, 0x1b, 0xff, 0x76, 0x35, 0x19, 0xff, 0x75, 0x35, 0x17, 0xff, 0x75, 0x34, 0x18, 0xff, 0x75, 0x35, 0x18, 0xff, 0x76, 0x35, 0x19, 0xff, 0x76, 0x34, 0x1d, 0xff, 0x77, 0x36, 0x1d, 0xff, 0x7a, 0x39, 0x20, 0xff, 0x72, 0x33, 0x1d, 0xff, 0x52, 0x1b, 0x09, 0xff, 0x4e, 0x1a, 0x03, 0xff, 0x48, 0x17, 0x04, 0xff, 0x3e, 0x10, 0x03, 0xff, 0x3e, 0x0d, 0x03, 0xff, 0x3f, 0x0f, 0x03, 0xff, 0x41, 0x11, 0x03, 0xff, 0x42, 0x15, 0x03, 0xff, 0x46, 0x16, 0x03, 0xff, 0x5a, 0x23, 0x08, 0xff, 0x63, 0x27, 0x0b, 0xff, 0x63, 0x26, 0x0b, 0xff, 0x66, 0x29, 0x0e, 0xff, 0x8a, 0x4d, 0x2c, 0xff, 0x9b, 0x5f, 0x36, 0xff, 0x99, 0x5b, 0x33, 0xff, 0x93, 0x53, 0x2d, 0xff, 0x90, 0x4e, 0x29, 0xff, 0x8f, 0x4d, 0x2a, 0xff, 0x91, 0x51, 0x2e, 0xff, 0x97, 0x56, 0x33, 0xff, 0x9b, 0x5b, 0x36, 0xff, 0xa5, 0x71, 0x4c, 0xff, 0xa4, 0x76, 0x50, 0xff, 0xa3, 0x70, 0x4a, 0xff, 0xa3, 0x66, 0x41, 0xff, 0x9c, 0x5b, 0x36, 0xff, 0x93, 0x52, 0x2f, 0xff, 0x8a, 0x47, 0x28, 0xff, 0x85, 0x43, 0x25, 0xff, 0x82, 0x40, 0x23, 0xff, 0x82, 0x3f, 0x23, 0xff, 0x81, 0x3f, 0x23, 0xff, 0x83, 0x40, 0x24, 0xff, 0x83, 0x41, 0x23, 0xff, 0x86, 0x45, 0x27, 0xff, 0x7e, 0x3f, 0x26, 0xff, 0x80, 0x42, 0x26, 0xff, 0x7e, 0x3f, 0x25, 0xff, 0x7e, 0x3d, 0x25, 0xff, 0x7b, 0x3c, 0x24, 0xff, 0x79, 0x3c, 0x24, 0xff, 0x79, 0x3a, 0x23, 0xff, 0x77, 0x3a, 0x22, 0xff, 0x6c, 0x2e, 0x19, 0xff, 0x67, 0x2a, 0x12, 0xff, 0x64, 0x28, 0x10, 0xff, 0x62, 0x28, 0x0c, 0xff, 0x5e, 0x26, 0x0b, 0xff, 0x5f, 0x23, 0x0a, 0xff, 0x66, 0x2a, 0x0e, 0xff, 0x63, 0x26, 0x0c, 0xff, 0x61, 0x27, 0x0c, 0xff, 0x60, 0x27, 0x0b, 0xff, 0x5f, 0x25, 0x09, 0xff, 0x5f, 0x25, 0x09, 0xff, 0x5e, 0x27, 0x0c, 0xff, 0x5c, 0x24, 0x09, 0xff, 0x5c, 0x24, 0x09, 0xff, 0x59, 0x21, 0x09, 0xff, 0x57, 0x1c, 0x06, 0xff, 0x55, 0x23, 0x06, 0xff, 0x54, 0x1d, 0x05, 0xff, 0x52, 0x1a, 0x03, 0xff, 0x52, 0x1a, 0x03, 0xff, 0x52, 0x1b, 0x03, 0xff, 0x52, 0x1a, 0x03, 0xff, 0x52, 0x1b, 0x03, 0xff, 0x55, 0x1d, 0x06, 0xff, 0x55, 0x1e, 0x06, 0xff, 0x54, 0x1c, 0x03, 0xff, 0x7e, 0x42, 0x24, 0xff, 0x91, 0x50, 0x2f, 0xff, 0x89, 0x48, 0x2b, 0xff, 0x85, 0x43, 0x27, 0xff, 0x82, 0x42, 0x25, 0xff, 0x7e, 0x3d, 0x24, 0xff, 0x7d, 0x3b, 0x22, 0xff, 0x7b, 0x3a, 0x22, 0xff, 0x79, 0x38, 0x20, 0xff, + 0x7b, 0x37, 0x20, 0xff, 0x79, 0x36, 0x1e, 0xff, 0x79, 0x36, 0x1e, 0xff, 0x78, 0x36, 0x1b, 0xff, 0x75, 0x34, 0x1c, 0xff, 0x76, 0x36, 0x1b, 0xff, 0x76, 0x36, 0x1b, 0xff, 0x74, 0x34, 0x1b, 0xff, 0x72, 0x33, 0x1b, 0xff, 0x6f, 0x31, 0x18, 0xff, 0x6f, 0x32, 0x18, 0xff, 0x6e, 0x30, 0x19, 0xff, 0x6d, 0x30, 0x18, 0xff, 0x6e, 0x32, 0x18, 0xff, 0x6f, 0x31, 0x18, 0xff, 0x6e, 0x31, 0x18, 0xff, 0x6e, 0x30, 0x18, 0xff, 0x71, 0x32, 0x1a, 0xff, 0x6e, 0x2f, 0x18, 0xff, 0x6e, 0x32, 0x16, 0xff, 0x6d, 0x2e, 0x17, 0xff, 0x6a, 0x29, 0x13, 0xff, 0x67, 0x2b, 0x12, 0xff, 0x66, 0x2a, 0x0f, 0xff, 0x63, 0x26, 0x10, 0xff, 0x63, 0x26, 0x0f, 0xff, 0x65, 0x2a, 0x0d, 0xff, 0x65, 0x29, 0x0d, 0xff, 0x65, 0x28, 0x0c, 0xff, 0x65, 0x28, 0x0c, 0xff, 0x66, 0x28, 0x0d, 0xff, 0x6c, 0x2d, 0x13, 0xff, 0x6e, 0x32, 0x18, 0xff, 0x6d, 0x2f, 0x16, 0xff, 0x6a, 0x2d, 0x14, 0xff, 0x6c, 0x2d, 0x13, 0xff, 0x6c, 0x2d, 0x13, 0xff, 0x6b, 0x2c, 0x13, 0xff, 0x6c, 0x2d, 0x13, 0xff, 0x6e, 0x2f, 0x16, 0xff, 0x71, 0x31, 0x17, 0xff, 0x72, 0x32, 0x18, 0xff, 0x75, 0x33, 0x17, 0xff, 0x73, 0x33, 0x1c, 0xff, 0x77, 0x37, 0x1a, 0xff, 0x7d, 0x3b, 0x21, 0xff, 0x7f, 0x3e, 0x22, 0xff, 0x82, 0x41, 0x24, 0xff, 0x84, 0x41, 0x26, 0xff, 0x81, 0x40, 0x26, 0xff, 0x84, 0x44, 0x26, 0xff, 0x88, 0x47, 0x27, 0xff, 0x8a, 0x4a, 0x28, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x8a, 0x4b, 0x29, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x90, 0x50, 0x30, 0xff, 0x92, 0x54, 0x31, 0xff, 0x98, 0x57, 0x33, 0xff, 0x9b, 0x5b, 0x37, 0xff, 0x96, 0x53, 0x30, 0xff, 0x94, 0x51, 0x2e, 0xff, 0x98, 0x54, 0x30, 0xff, 0x9c, 0x5a, 0x31, 0xff, 0xa1, 0x5d, 0x34, 0xff, 0xa3, 0x5f, 0x37, 0xff, 0xa6, 0x66, 0x3b, 0xff, 0xa8, 0x68, 0x3f, 0xff, 0xae, 0x6d, 0x41, 0xff, 0xb2, 0x70, 0x42, 0xff, 0xb3, 0x70, 0x43, 0xff, 0xb1, 0x6e, 0x43, 0xff, 0xb2, 0x70, 0x46, 0xff, 0xb7, 0x76, 0x4a, 0xff, 0xbc, 0x7b, 0x4e, 0xff, 0xc4, 0x82, 0x53, 0xff, 0xcc, 0x85, 0x56, 0xff, 0xd3, 0x89, 0x59, 0xff, 0xcb, 0x85, 0x55, 0xff, 0xbb, 0x7a, 0x4a, 0xff, 0xb5, 0x75, 0x47, 0xff, 0xb9, 0x7b, 0x4d, 0xff, 0xbb, 0x7c, 0x4d, 0xff, 0xb9, 0x7a, 0x4b, 0xff, 0xba, 0x7c, 0x4d, 0xff, 0xc4, 0x83, 0x52, 0xff, 0xcd, 0x90, 0x5c, 0xff, 0xb0, 0x77, 0x4e, 0xff, 0x8f, 0x51, 0x30, 0xff, 0x96, 0x59, 0x34, 0xff, 0x91, 0x51, 0x2f, 0xff, 0x8e, 0x4d, 0x2c, 0xff, 0x8e, 0x4e, 0x2c, 0xff, 0x8e, 0x50, 0x2d, 0xff, 0x8d, 0x51, 0x2d, 0xff, 0x8f, 0x53, 0x2d, 0xff, 0x8f, 0x54, 0x30, 0xff, 0x8e, 0x56, 0x33, 0xff, 0x8f, 0x59, 0x33, 0xff, 0x8f, 0x5c, 0x35, 0xff, 0x90, 0x5e, 0x39, 0xff, 0x91, 0x5f, 0x3d, 0xff, 0x91, 0x5f, 0x41, 0xff, 0x92, 0x60, 0x44, 0xff, 0x92, 0x5f, 0x47, 0xff, 0x94, 0x61, 0x4a, 0xff, 0x97, 0x64, 0x4c, 0xff, 0x97, 0x65, 0x4d, 0xff, 0x98, 0x66, 0x4d, 0xff, 0x97, 0x68, 0x4e, 0xff, 0x96, 0x67, 0x4d, 0xff, 0x98, 0x66, 0x4a, 0xff, 0x97, 0x65, 0x49, 0xff, 0x96, 0x63, 0x45, 0xff, 0x96, 0x61, 0x41, 0xff, 0x96, 0x5f, 0x40, 0xff, 0x96, 0x5d, 0x3f, 0xff, 0x91, 0x57, 0x3b, 0xff, 0xa4, 0x6b, 0x48, 0xff, 0xbb, 0x80, 0x56, 0xff, 0xbb, 0x7e, 0x52, 0xff, 0xbd, 0x80, 0x53, 0xff, 0xbd, 0x7f, 0x50, 0xff, 0xbb, 0x7d, 0x4d, 0xff, 0xbb, 0x7e, 0x4e, 0xff, 0xb4, 0x75, 0x49, 0xff, 0xb0, 0x70, 0x46, 0xff, 0xb4, 0x76, 0x49, 0xff, 0xb5, 0x78, 0x4b, 0xff, 0xb5, 0x79, 0x4d, 0xff, 0xb4, 0x7a, 0x4e, 0xff, 0xb1, 0x77, 0x4c, 0xff, 0xab, 0x70, 0x48, 0xff, 0xa5, 0x69, 0x42, 0xff, 0x9f, 0x61, 0x3b, 0xff, 0x97, 0x5a, 0x34, 0xff, 0x91, 0x52, 0x2f, 0xff, 0x8c, 0x4a, 0x2a, 0xff, 0x87, 0x45, 0x27, 0xff, 0x84, 0x43, 0x25, 0xff, 0x81, 0x3f, 0x23, 0xff, 0x7e, 0x3c, 0x21, 0xff, 0x7c, 0x3b, 0x1f, 0xff, 0x7b, 0x3a, 0x1f, 0xff, 0x79, 0x37, 0x1c, 0xff, 0x77, 0x36, 0x1a, 0xff, 0x76, 0x35, 0x17, 0xff, 0x75, 0x34, 0x18, 0xff, 0x75, 0x34, 0x19, 0xff, 0x74, 0x35, 0x18, 0xff, 0x75, 0x36, 0x18, 0xff, 0x76, 0x34, 0x1a, 0xff, 0x77, 0x36, 0x1b, 0xff, 0x79, 0x39, 0x1e, 0xff, 0x76, 0x39, 0x20, 0xff, 0x55, 0x1d, 0x0a, 0xff, 0x51, 0x1e, 0x03, 0xff, 0x47, 0x14, 0x04, 0xff, 0x3f, 0x0f, 0x03, 0xff, 0x3f, 0x10, 0x03, 0xff, 0x41, 0x13, 0x03, 0xff, 0x43, 0x12, 0x03, 0xff, 0x42, 0x13, 0x03, 0xff, 0x4f, 0x1c, 0x07, 0xff, 0x61, 0x25, 0x0f, 0xff, 0x64, 0x27, 0x0e, 0xff, 0x5e, 0x23, 0x07, 0xff, 0x79, 0x3b, 0x1b, 0xff, 0x96, 0x56, 0x2f, 0xff, 0x98, 0x57, 0x30, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x8c, 0x4c, 0x2a, 0xff, 0x8b, 0x4a, 0x29, 0xff, 0x8e, 0x4d, 0x2b, 0xff, 0x91, 0x50, 0x2f, 0xff, 0x92, 0x50, 0x2e, 0xff, 0xa3, 0x6c, 0x46, 0xff, 0xa2, 0x70, 0x48, 0xff, 0xa1, 0x6b, 0x42, 0xff, 0xa2, 0x61, 0x3c, 0xff, 0x99, 0x58, 0x34, 0xff, 0x91, 0x50, 0x2d, 0xff, 0x89, 0x47, 0x28, 0xff, 0x86, 0x43, 0x24, 0xff, 0x80, 0x3f, 0x23, 0xff, 0x81, 0x3f, 0x24, 0xff, 0x83, 0x40, 0x24, 0xff, 0x83, 0x42, 0x24, 0xff, 0x85, 0x43, 0x26, 0xff, 0x86, 0x45, 0x27, 0xff, 0x7d, 0x3e, 0x25, 0xff, 0x7e, 0x3e, 0x26, 0xff, 0x7f, 0x3f, 0x25, 0xff, 0x7e, 0x3d, 0x26, 0xff, 0x7a, 0x3c, 0x24, 0xff, 0x78, 0x3c, 0x23, 0xff, 0x76, 0x38, 0x22, 0xff, 0x76, 0x39, 0x22, 0xff, 0x6b, 0x2e, 0x16, 0xff, 0x65, 0x28, 0x12, 0xff, 0x62, 0x27, 0x0e, 0xff, 0x60, 0x27, 0x0c, 0xff, 0x5a, 0x24, 0x09, 0xff, 0x5a, 0x24, 0x0a, 0xff, 0x62, 0x27, 0x10, 0xff, 0x63, 0x27, 0x0c, 0xff, 0x61, 0x27, 0x0c, 0xff, 0x60, 0x27, 0x0c, 0xff, 0x5f, 0x25, 0x09, 0xff, 0x5d, 0x26, 0x0a, 0xff, 0x5d, 0x25, 0x0b, 0xff, 0x5b, 0x25, 0x09, 0xff, 0x59, 0x23, 0x09, 0xff, 0x55, 0x1e, 0x06, 0xff, 0x55, 0x1b, 0x06, 0xff, 0x55, 0x23, 0x06, 0xff, 0x55, 0x1c, 0x06, 0xff, 0x50, 0x1c, 0x04, 0xff, 0x50, 0x1a, 0x04, 0xff, 0x52, 0x1a, 0x03, 0xff, 0x52, 0x1a, 0x03, 0xff, 0x54, 0x1d, 0x05, 0xff, 0x55, 0x1f, 0x06, 0xff, 0x55, 0x1f, 0x06, 0xff, 0x5a, 0x24, 0x09, 0xff, 0x59, 0x21, 0x07, 0xff, 0x93, 0x53, 0x32, 0xff, 0x8c, 0x4d, 0x2d, 0xff, 0x89, 0x47, 0x29, 0xff, 0x84, 0x43, 0x27, 0xff, 0x83, 0x41, 0x26, 0xff, 0x80, 0x3e, 0x23, 0xff, 0x7f, 0x3d, 0x23, 0xff, 0x7b, 0x3b, 0x20, 0xff, + 0x7d, 0x3b, 0x20, 0xff, 0x7b, 0x39, 0x21, 0xff, 0x7a, 0x36, 0x1e, 0xff, 0x77, 0x37, 0x1f, 0xff, 0x78, 0x36, 0x1e, 0xff, 0x77, 0x36, 0x1e, 0xff, 0x77, 0x36, 0x1e, 0xff, 0x75, 0x34, 0x1e, 0xff, 0x74, 0x35, 0x1c, 0xff, 0x73, 0x33, 0x1a, 0xff, 0x74, 0x36, 0x1c, 0xff, 0x73, 0x34, 0x1c, 0xff, 0x75, 0x37, 0x1f, 0xff, 0x76, 0x38, 0x22, 0xff, 0x76, 0x38, 0x21, 0xff, 0x76, 0x39, 0x21, 0xff, 0x78, 0x38, 0x22, 0xff, 0x7a, 0x3a, 0x24, 0xff, 0x79, 0x3b, 0x23, 0xff, 0x78, 0x3a, 0x23, 0xff, 0x77, 0x37, 0x20, 0xff, 0x75, 0x37, 0x1d, 0xff, 0x71, 0x35, 0x1c, 0xff, 0x6e, 0x30, 0x18, 0xff, 0x6a, 0x2d, 0x14, 0xff, 0x69, 0x2b, 0x13, 0xff, 0x68, 0x2c, 0x14, 0xff, 0x66, 0x29, 0x13, 0xff, 0x68, 0x2a, 0x12, 0xff, 0x6b, 0x2c, 0x14, 0xff, 0x6f, 0x33, 0x1a, 0xff, 0x71, 0x31, 0x1b, 0xff, 0x6d, 0x2d, 0x16, 0xff, 0x6d, 0x2d, 0x15, 0xff, 0x6c, 0x2d, 0x15, 0xff, 0x6a, 0x2a, 0x14, 0xff, 0x6c, 0x2d, 0x13, 0xff, 0x6b, 0x2c, 0x14, 0xff, 0x6d, 0x2d, 0x14, 0xff, 0x6c, 0x2d, 0x13, 0xff, 0x6e, 0x30, 0x14, 0xff, 0x71, 0x31, 0x17, 0xff, 0x71, 0x31, 0x18, 0xff, 0x75, 0x34, 0x19, 0xff, 0x78, 0x36, 0x1c, 0xff, 0x7a, 0x38, 0x1f, 0xff, 0x7d, 0x3b, 0x23, 0xff, 0x83, 0x41, 0x24, 0xff, 0x83, 0x41, 0x25, 0xff, 0x7f, 0x3e, 0x24, 0xff, 0x84, 0x43, 0x25, 0xff, 0x86, 0x45, 0x26, 0xff, 0x89, 0x47, 0x28, 0xff, 0x87, 0x45, 0x27, 0xff, 0x86, 0x46, 0x27, 0xff, 0x89, 0x4a, 0x2b, 0xff, 0x8f, 0x4e, 0x2d, 0xff, 0x91, 0x51, 0x2f, 0xff, 0x95, 0x53, 0x32, 0xff, 0x95, 0x54, 0x31, 0xff, 0x8f, 0x4d, 0x2b, 0xff, 0x93, 0x50, 0x2d, 0xff, 0x94, 0x51, 0x2e, 0xff, 0x97, 0x54, 0x2f, 0xff, 0x9c, 0x59, 0x32, 0xff, 0x9f, 0x5b, 0x33, 0xff, 0xa3, 0x62, 0x36, 0xff, 0xa8, 0x66, 0x3c, 0xff, 0xab, 0x69, 0x40, 0xff, 0xaf, 0x6c, 0x42, 0xff, 0xb4, 0x72, 0x44, 0xff, 0xb6, 0x73, 0x46, 0xff, 0xb5, 0x73, 0x47, 0xff, 0xb5, 0x73, 0x47, 0xff, 0xb7, 0x75, 0x48, 0xff, 0xb8, 0x77, 0x4b, 0xff, 0xc1, 0x7d, 0x52, 0xff, 0xce, 0x87, 0x56, 0xff, 0xcf, 0x88, 0x56, 0xff, 0xcc, 0x85, 0x54, 0xff, 0xb3, 0x74, 0x46, 0xff, 0xbf, 0x80, 0x50, 0xff, 0xc2, 0x84, 0x50, 0xff, 0xc2, 0x84, 0x52, 0xff, 0xbf, 0x7f, 0x4f, 0xff, 0xc1, 0x83, 0x53, 0xff, 0xaa, 0x6f, 0x45, 0xff, 0x88, 0x49, 0x29, 0xff, 0x94, 0x54, 0x32, 0xff, 0x92, 0x50, 0x30, 0xff, 0x8f, 0x4e, 0x2d, 0xff, 0x8d, 0x4e, 0x2d, 0xff, 0x8d, 0x4d, 0x2c, 0xff, 0x8d, 0x4d, 0x2c, 0xff, 0x8d, 0x4e, 0x2d, 0xff, 0x8e, 0x51, 0x2e, 0xff, 0x8e, 0x52, 0x2e, 0xff, 0x8f, 0x55, 0x30, 0xff, 0x8f, 0x57, 0x32, 0xff, 0x90, 0x5a, 0x33, 0xff, 0x91, 0x5d, 0x37, 0xff, 0x92, 0x60, 0x3a, 0xff, 0x93, 0x60, 0x3d, 0xff, 0x94, 0x5f, 0x41, 0xff, 0x93, 0x60, 0x44, 0xff, 0x95, 0x62, 0x47, 0xff, 0x97, 0x63, 0x49, 0xff, 0x97, 0x65, 0x4a, 0xff, 0x97, 0x67, 0x4c, 0xff, 0x97, 0x67, 0x4d, 0xff, 0x98, 0x66, 0x4b, 0xff, 0x98, 0x65, 0x49, 0xff, 0x98, 0x66, 0x49, 0xff, 0x98, 0x63, 0x47, 0xff, 0x96, 0x62, 0x43, 0xff, 0x97, 0x61, 0x41, 0xff, 0x97, 0x5f, 0x41, 0xff, 0x92, 0x59, 0x3c, 0xff, 0xa5, 0x6a, 0x49, 0xff, 0xbc, 0x7e, 0x56, 0xff, 0xbd, 0x7d, 0x52, 0xff, 0xbf, 0x80, 0x54, 0xff, 0xbe, 0x80, 0x52, 0xff, 0xbe, 0x80, 0x50, 0xff, 0xb8, 0x78, 0x49, 0xff, 0xb2, 0x73, 0x45, 0xff, 0xb5, 0x76, 0x48, 0xff, 0xb9, 0x7b, 0x4e, 0xff, 0xbd, 0x80, 0x55, 0xff, 0xbf, 0x83, 0x57, 0xff, 0xc0, 0x83, 0x59, 0xff, 0xbc, 0x81, 0x57, 0xff, 0xb6, 0x7d, 0x52, 0xff, 0xae, 0x74, 0x4c, 0xff, 0xa5, 0x6a, 0x42, 0xff, 0x9c, 0x60, 0x39, 0xff, 0x95, 0x55, 0x31, 0xff, 0x8e, 0x4d, 0x2c, 0xff, 0x88, 0x45, 0x28, 0xff, 0x85, 0x42, 0x25, 0xff, 0x82, 0x40, 0x23, 0xff, 0x7f, 0x3d, 0x23, 0xff, 0x7d, 0x3c, 0x20, 0xff, 0x7c, 0x3a, 0x1e, 0xff, 0x7b, 0x39, 0x1d, 0xff, 0x77, 0x37, 0x1b, 0xff, 0x76, 0x35, 0x17, 0xff, 0x75, 0x34, 0x18, 0xff, 0x74, 0x33, 0x18, 0xff, 0x75, 0x33, 0x17, 0xff, 0x75, 0x34, 0x16, 0xff, 0x75, 0x35, 0x18, 0xff, 0x76, 0x36, 0x1b, 0xff, 0x79, 0x37, 0x1e, 0xff, 0x7c, 0x38, 0x20, 0xff, 0x76, 0x39, 0x21, 0xff, 0x58, 0x23, 0x0b, 0xff, 0x55, 0x23, 0x04, 0xff, 0x48, 0x15, 0x04, 0xff, 0x3e, 0x0e, 0x03, 0xff, 0x41, 0x13, 0x03, 0xff, 0x43, 0x16, 0x03, 0xff, 0x43, 0x13, 0x02, 0xff, 0x45, 0x14, 0x02, 0xff, 0x59, 0x24, 0x0b, 0xff, 0x61, 0x28, 0x0d, 0xff, 0x5e, 0x24, 0x09, 0xff, 0x6a, 0x30, 0x14, 0xff, 0x8e, 0x4f, 0x2c, 0xff, 0x93, 0x52, 0x2f, 0xff, 0x8e, 0x4e, 0x2d, 0xff, 0x8b, 0x4b, 0x2a, 0xff, 0x89, 0x4a, 0x29, 0xff, 0x8a, 0x4a, 0x29, 0xff, 0x8c, 0x4b, 0x2a, 0xff, 0x8a, 0x48, 0x27, 0xff, 0x9e, 0x65, 0x41, 0xff, 0xa1, 0x68, 0x41, 0xff, 0xa0, 0x62, 0x3a, 0xff, 0x9b, 0x5a, 0x34, 0xff, 0x96, 0x53, 0x31, 0xff, 0x8d, 0x4c, 0x2a, 0xff, 0x87, 0x46, 0x26, 0xff, 0x84, 0x43, 0x25, 0xff, 0x84, 0x41, 0x24, 0xff, 0x83, 0x42, 0x25, 0xff, 0x84, 0x43, 0x25, 0xff, 0x84, 0x43, 0x25, 0xff, 0x85, 0x42, 0x26, 0xff, 0x88, 0x47, 0x27, 0xff, 0x7f, 0x3e, 0x26, 0xff, 0x7a, 0x3d, 0x24, 0xff, 0x7e, 0x3f, 0x26, 0xff, 0x7b, 0x3c, 0x24, 0xff, 0x7a, 0x3c, 0x24, 0xff, 0x77, 0x39, 0x23, 0xff, 0x76, 0x37, 0x21, 0xff, 0x76, 0x37, 0x21, 0xff, 0x6c, 0x2d, 0x16, 0xff, 0x65, 0x2a, 0x12, 0xff, 0x62, 0x27, 0x0e, 0xff, 0x60, 0x25, 0x0c, 0xff, 0x5a, 0x24, 0x09, 0xff, 0x5c, 0x24, 0x0c, 0xff, 0x63, 0x28, 0x10, 0xff, 0x5f, 0x27, 0x0c, 0xff, 0x61, 0x27, 0x0c, 0xff, 0x60, 0x26, 0x0a, 0xff, 0x5f, 0x25, 0x09, 0xff, 0x5e, 0x26, 0x0b, 0xff, 0x59, 0x22, 0x09, 0xff, 0x59, 0x23, 0x09, 0xff, 0x55, 0x1e, 0x05, 0xff, 0x55, 0x1d, 0x05, 0xff, 0x53, 0x1b, 0x04, 0xff, 0x52, 0x19, 0x02, 0xff, 0x52, 0x1a, 0x02, 0xff, 0x52, 0x1c, 0x02, 0xff, 0x51, 0x19, 0x03, 0xff, 0x50, 0x1d, 0x03, 0xff, 0x50, 0x18, 0x03, 0xff, 0x52, 0x19, 0x03, 0xff, 0x55, 0x1c, 0x06, 0xff, 0x55, 0x1d, 0x05, 0xff, 0x5a, 0x24, 0x09, 0xff, 0x5c, 0x24, 0x08, 0xff, 0x84, 0x47, 0x29, 0xff, 0x96, 0x53, 0x32, 0xff, 0x8c, 0x4b, 0x2d, 0xff, 0x88, 0x47, 0x29, 0xff, 0x83, 0x42, 0x26, 0xff, 0x83, 0x41, 0x26, 0xff, 0x81, 0x3f, 0x24, 0xff, 0x7e, 0x3d, 0x22, 0xff, + 0x7e, 0x3c, 0x22, 0xff, 0x7c, 0x3a, 0x21, 0xff, 0x7c, 0x39, 0x21, 0xff, 0x7c, 0x3b, 0x21, 0xff, 0x7b, 0x39, 0x20, 0xff, 0x79, 0x38, 0x1f, 0xff, 0x79, 0x37, 0x20, 0xff, 0x77, 0x36, 0x20, 0xff, 0x73, 0x35, 0x1c, 0xff, 0x75, 0x36, 0x1f, 0xff, 0x77, 0x38, 0x21, 0xff, 0x78, 0x38, 0x22, 0xff, 0x7a, 0x3b, 0x25, 0xff, 0x7d, 0x3e, 0x27, 0xff, 0x7f, 0x40, 0x27, 0xff, 0x82, 0x42, 0x28, 0xff, 0x82, 0x44, 0x29, 0xff, 0x86, 0x48, 0x2a, 0xff, 0x85, 0x46, 0x2a, 0xff, 0x82, 0x44, 0x29, 0xff, 0x83, 0x44, 0x29, 0xff, 0x7e, 0x40, 0x28, 0xff, 0x7b, 0x3d, 0x25, 0xff, 0x78, 0x3a, 0x23, 0xff, 0x74, 0x35, 0x1e, 0xff, 0x70, 0x34, 0x1a, 0xff, 0x6e, 0x30, 0x18, 0xff, 0x6f, 0x31, 0x19, 0xff, 0x75, 0x36, 0x1f, 0xff, 0x76, 0x37, 0x20, 0xff, 0x72, 0x34, 0x1b, 0xff, 0x6d, 0x31, 0x17, 0xff, 0x6a, 0x2e, 0x15, 0xff, 0x6c, 0x2e, 0x16, 0xff, 0x6c, 0x2d, 0x16, 0xff, 0x6e, 0x2e, 0x16, 0xff, 0x6e, 0x30, 0x16, 0xff, 0x6d, 0x2f, 0x16, 0xff, 0x6d, 0x30, 0x16, 0xff, 0x6d, 0x2f, 0x16, 0xff, 0x6e, 0x2f, 0x16, 0xff, 0x6f, 0x31, 0x17, 0xff, 0x71, 0x31, 0x18, 0xff, 0x74, 0x34, 0x18, 0xff, 0x79, 0x36, 0x1d, 0xff, 0x7b, 0x38, 0x21, 0xff, 0x7e, 0x3d, 0x22, 0xff, 0x82, 0x40, 0x24, 0xff, 0x84, 0x42, 0x26, 0xff, 0x80, 0x3f, 0x24, 0xff, 0x82, 0x3f, 0x25, 0xff, 0x86, 0x43, 0x27, 0xff, 0x85, 0x43, 0x27, 0xff, 0x82, 0x41, 0x26, 0xff, 0x86, 0x46, 0x27, 0xff, 0x88, 0x48, 0x2a, 0xff, 0x8a, 0x4b, 0x2d, 0xff, 0x8f, 0x50, 0x30, 0xff, 0x92, 0x51, 0x31, 0xff, 0x8d, 0x4a, 0x2a, 0xff, 0x89, 0x47, 0x26, 0xff, 0x8f, 0x4d, 0x29, 0xff, 0x94, 0x50, 0x2d, 0xff, 0x96, 0x51, 0x2e, 0xff, 0x96, 0x52, 0x2e, 0xff, 0x9a, 0x57, 0x31, 0xff, 0x9e, 0x5c, 0x33, 0xff, 0xa2, 0x62, 0x38, 0xff, 0xa8, 0x66, 0x3d, 0xff, 0xac, 0x68, 0x40, 0xff, 0xaf, 0x6d, 0x42, 0xff, 0xb6, 0x72, 0x45, 0xff, 0xb8, 0x76, 0x49, 0xff, 0xb9, 0x78, 0x49, 0xff, 0xb9, 0x78, 0x49, 0xff, 0xba, 0x77, 0x4c, 0xff, 0xbc, 0x7a, 0x4d, 0xff, 0xbe, 0x7b, 0x4e, 0xff, 0xc8, 0x82, 0x52, 0xff, 0xcf, 0x87, 0x56, 0xff, 0xbb, 0x7c, 0x4d, 0xff, 0xc1, 0x83, 0x53, 0xff, 0xc7, 0x89, 0x55, 0xff, 0xcb, 0x8d, 0x56, 0xff, 0xc9, 0x88, 0x55, 0xff, 0xa6, 0x69, 0x3f, 0xff, 0x89, 0x4c, 0x2a, 0xff, 0x8e, 0x4f, 0x2f, 0xff, 0x8c, 0x4d, 0x2c, 0xff, 0x8e, 0x4d, 0x2c, 0xff, 0x8d, 0x4e, 0x2d, 0xff, 0x8c, 0x4d, 0x2c, 0xff, 0x8c, 0x4d, 0x2b, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x8c, 0x4d, 0x2d, 0xff, 0x8c, 0x4e, 0x2d, 0xff, 0x8e, 0x50, 0x2c, 0xff, 0x8f, 0x53, 0x2e, 0xff, 0x8f, 0x57, 0x30, 0xff, 0x90, 0x5a, 0x31, 0xff, 0x90, 0x5d, 0x34, 0xff, 0x91, 0x5e, 0x37, 0xff, 0x92, 0x60, 0x3b, 0xff, 0x93, 0x62, 0x3e, 0xff, 0x94, 0x62, 0x41, 0xff, 0x96, 0x63, 0x44, 0xff, 0x97, 0x65, 0x46, 0xff, 0x97, 0x67, 0x48, 0xff, 0x96, 0x67, 0x48, 0xff, 0x98, 0x65, 0x49, 0xff, 0x97, 0x65, 0x49, 0xff, 0x96, 0x64, 0x48, 0xff, 0x97, 0x65, 0x48, 0xff, 0x97, 0x64, 0x46, 0xff, 0x97, 0x63, 0x43, 0xff, 0x97, 0x62, 0x42, 0xff, 0x97, 0x5e, 0x40, 0xff, 0x91, 0x56, 0x3b, 0xff, 0xa4, 0x6b, 0x49, 0xff, 0xbb, 0x80, 0x56, 0xff, 0xbc, 0x7d, 0x53, 0xff, 0xbf, 0x80, 0x55, 0xff, 0xc2, 0x82, 0x54, 0xff, 0xc2, 0x81, 0x51, 0xff, 0xb9, 0x78, 0x4a, 0xff, 0xb5, 0x73, 0x48, 0xff, 0xb8, 0x78, 0x4c, 0xff, 0xbf, 0x81, 0x53, 0xff, 0xc7, 0x89, 0x5b, 0xff, 0xce, 0x91, 0x61, 0xff, 0xd2, 0x95, 0x65, 0xff, 0xce, 0x91, 0x63, 0xff, 0xc4, 0x8a, 0x5e, 0xff, 0xba, 0x81, 0x56, 0xff, 0xb0, 0x74, 0x4b, 0xff, 0xa5, 0x69, 0x40, 0xff, 0x9c, 0x5c, 0x37, 0xff, 0x92, 0x52, 0x2f, 0xff, 0x8b, 0x4a, 0x29, 0xff, 0x87, 0x44, 0x27, 0xff, 0x82, 0x41, 0x25, 0xff, 0x80, 0x3f, 0x23, 0xff, 0x7f, 0x3c, 0x21, 0xff, 0x7c, 0x3a, 0x1f, 0xff, 0x7a, 0x37, 0x1c, 0xff, 0x78, 0x36, 0x1a, 0xff, 0x76, 0x35, 0x17, 0xff, 0x74, 0x33, 0x16, 0xff, 0x74, 0x33, 0x17, 0xff, 0x74, 0x33, 0x17, 0xff, 0x75, 0x34, 0x18, 0xff, 0x75, 0x36, 0x18, 0xff, 0x76, 0x35, 0x1b, 0xff, 0x77, 0x36, 0x1c, 0xff, 0x79, 0x37, 0x1d, 0xff, 0x7d, 0x3b, 0x21, 0xff, 0x70, 0x32, 0x1b, 0xff, 0x59, 0x1f, 0x08, 0xff, 0x55, 0x21, 0x05, 0xff, 0x47, 0x19, 0x04, 0xff, 0x40, 0x13, 0x02, 0xff, 0x43, 0x15, 0x03, 0xff, 0x43, 0x15, 0x02, 0xff, 0x42, 0x12, 0x02, 0xff, 0x4c, 0x1a, 0x06, 0xff, 0x60, 0x25, 0x0c, 0xff, 0x61, 0x27, 0x0c, 0xff, 0x5b, 0x1f, 0x05, 0xff, 0x7f, 0x42, 0x23, 0xff, 0x8f, 0x51, 0x2f, 0xff, 0x8d, 0x4c, 0x2c, 0xff, 0x8b, 0x4a, 0x29, 0xff, 0x8a, 0x4a, 0x29, 0xff, 0x8a, 0x49, 0x28, 0xff, 0x89, 0x48, 0x27, 0xff, 0x81, 0x40, 0x23, 0xff, 0x9b, 0x5d, 0x38, 0xff, 0x9e, 0x5e, 0x37, 0xff, 0x9b, 0x58, 0x33, 0xff, 0x97, 0x54, 0x31, 0xff, 0x8f, 0x4d, 0x2b, 0xff, 0x89, 0x47, 0x27, 0xff, 0x86, 0x44, 0x27, 0xff, 0x84, 0x43, 0x25, 0xff, 0x85, 0x43, 0x25, 0xff, 0x85, 0x43, 0x26, 0xff, 0x85, 0x43, 0x26, 0xff, 0x86, 0x43, 0x27, 0xff, 0x86, 0x44, 0x27, 0xff, 0x89, 0x48, 0x29, 0xff, 0x7f, 0x3f, 0x27, 0xff, 0x79, 0x3b, 0x24, 0xff, 0x7c, 0x3c, 0x25, 0xff, 0x7c, 0x3c, 0x25, 0xff, 0x79, 0x3a, 0x24, 0xff, 0x77, 0x3a, 0x23, 0xff, 0x75, 0x37, 0x21, 0xff, 0x76, 0x36, 0x21, 0xff, 0x6b, 0x2d, 0x15, 0xff, 0x64, 0x28, 0x11, 0xff, 0x63, 0x27, 0x0c, 0xff, 0x60, 0x24, 0x0c, 0xff, 0x5a, 0x23, 0x09, 0xff, 0x60, 0x24, 0x0c, 0xff, 0x5e, 0x27, 0x0c, 0xff, 0x5f, 0x27, 0x0c, 0xff, 0x60, 0x26, 0x0c, 0xff, 0x5f, 0x27, 0x0d, 0xff, 0x5c, 0x23, 0x09, 0xff, 0x5d, 0x24, 0x09, 0xff, 0x5b, 0x24, 0x08, 0xff, 0x56, 0x1f, 0x05, 0xff, 0x56, 0x20, 0x05, 0xff, 0x55, 0x1f, 0x06, 0xff, 0x53, 0x1a, 0x04, 0xff, 0x51, 0x19, 0x02, 0xff, 0x50, 0x18, 0x03, 0xff, 0x50, 0x18, 0x03, 0xff, 0x51, 0x19, 0x03, 0xff, 0x51, 0x19, 0x02, 0xff, 0x51, 0x19, 0x02, 0xff, 0x53, 0x1c, 0x04, 0xff, 0x55, 0x1d, 0x06, 0xff, 0x55, 0x1d, 0x06, 0xff, 0x58, 0x20, 0x07, 0xff, 0x5d, 0x25, 0x0a, 0xff, 0x5b, 0x21, 0x08, 0xff, 0x99, 0x57, 0x37, 0xff, 0x91, 0x50, 0x2f, 0xff, 0x8a, 0x4a, 0x2b, 0xff, 0x89, 0x47, 0x29, 0xff, 0x85, 0x43, 0x27, 0xff, 0x84, 0x42, 0x26, 0xff, 0x82, 0x40, 0x24, 0xff, + 0x81, 0x3f, 0x24, 0xff, 0x80, 0x3d, 0x23, 0xff, 0x7f, 0x3c, 0x22, 0xff, 0x7f, 0x3b, 0x21, 0xff, 0x7c, 0x3a, 0x21, 0xff, 0x7b, 0x39, 0x21, 0xff, 0x7c, 0x3a, 0x22, 0xff, 0x74, 0x35, 0x1c, 0xff, 0x76, 0x36, 0x20, 0xff, 0x78, 0x38, 0x22, 0xff, 0x7c, 0x3c, 0x23, 0xff, 0x7f, 0x40, 0x27, 0xff, 0x82, 0x42, 0x29, 0xff, 0x86, 0x47, 0x2c, 0xff, 0x87, 0x4b, 0x2d, 0xff, 0x8b, 0x4d, 0x2f, 0xff, 0x90, 0x53, 0x34, 0xff, 0x93, 0x58, 0x36, 0xff, 0x93, 0x58, 0x36, 0xff, 0x90, 0x54, 0x36, 0xff, 0x8f, 0x53, 0x33, 0xff, 0x8f, 0x52, 0x34, 0xff, 0x8a, 0x4d, 0x2f, 0xff, 0x85, 0x49, 0x2c, 0xff, 0x81, 0x44, 0x28, 0xff, 0x7a, 0x3c, 0x24, 0xff, 0x80, 0x42, 0x28, 0xff, 0x81, 0x41, 0x28, 0xff, 0x7c, 0x3d, 0x24, 0xff, 0x74, 0x36, 0x22, 0xff, 0x73, 0x34, 0x1c, 0xff, 0x71, 0x33, 0x18, 0xff, 0x70, 0x32, 0x18, 0xff, 0x6e, 0x32, 0x16, 0xff, 0x6f, 0x2f, 0x16, 0xff, 0x70, 0x30, 0x16, 0xff, 0x6e, 0x30, 0x18, 0xff, 0x6d, 0x30, 0x17, 0xff, 0x6e, 0x30, 0x16, 0xff, 0x6c, 0x2e, 0x15, 0xff, 0x6e, 0x2e, 0x16, 0xff, 0x6f, 0x2f, 0x15, 0xff, 0x71, 0x31, 0x18, 0xff, 0x74, 0x33, 0x18, 0xff, 0x78, 0x37, 0x1d, 0xff, 0x7b, 0x3a, 0x21, 0xff, 0x7e, 0x3d, 0x22, 0xff, 0x82, 0x40, 0x24, 0xff, 0x85, 0x44, 0x26, 0xff, 0x84, 0x44, 0x26, 0xff, 0x82, 0x43, 0x27, 0xff, 0x83, 0x40, 0x26, 0xff, 0x7f, 0x3d, 0x24, 0xff, 0x83, 0x41, 0x26, 0xff, 0x85, 0x43, 0x28, 0xff, 0x87, 0x46, 0x2b, 0xff, 0x89, 0x4a, 0x2c, 0xff, 0x8e, 0x4f, 0x2f, 0xff, 0x8f, 0x4d, 0x2e, 0xff, 0x81, 0x3d, 0x23, 0xff, 0x86, 0x42, 0x26, 0xff, 0x8b, 0x48, 0x28, 0xff, 0x90, 0x4c, 0x2a, 0xff, 0x91, 0x4e, 0x2a, 0xff, 0x93, 0x4f, 0x2d, 0xff, 0x97, 0x51, 0x2f, 0xff, 0x9a, 0x57, 0x30, 0xff, 0x9e, 0x5c, 0x34, 0xff, 0xa2, 0x61, 0x39, 0xff, 0xa8, 0x65, 0x3b, 0xff, 0xaa, 0x69, 0x40, 0xff, 0xb2, 0x6f, 0x43, 0xff, 0xb5, 0x72, 0x45, 0xff, 0xba, 0x77, 0x4a, 0xff, 0xc0, 0x7e, 0x4f, 0xff, 0xc5, 0x7f, 0x51, 0xff, 0xcc, 0x84, 0x56, 0xff, 0xcb, 0x84, 0x56, 0xff, 0xc2, 0x7f, 0x51, 0xff, 0xc1, 0x7e, 0x50, 0xff, 0xbf, 0x7e, 0x51, 0xff, 0xc1, 0x85, 0x53, 0xff, 0xc9, 0x90, 0x58, 0xff, 0xd0, 0x94, 0x5e, 0xff, 0xb8, 0x77, 0x4a, 0xff, 0x8a, 0x4a, 0x2a, 0xff, 0x8b, 0x4c, 0x2c, 0xff, 0x89, 0x4b, 0x2b, 0xff, 0x8a, 0x4b, 0x2b, 0xff, 0x8c, 0x4a, 0x2b, 0xff, 0x8a, 0x4b, 0x2a, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8c, 0x4f, 0x2c, 0xff, 0x8d, 0x4d, 0x2c, 0xff, 0x8e, 0x4d, 0x2c, 0xff, 0x8e, 0x4f, 0x2d, 0xff, 0x90, 0x54, 0x2f, 0xff, 0x90, 0x58, 0x31, 0xff, 0x91, 0x5a, 0x32, 0xff, 0x92, 0x5c, 0x34, 0xff, 0x92, 0x5f, 0x37, 0xff, 0x93, 0x62, 0x3b, 0xff, 0x95, 0x65, 0x3e, 0xff, 0x98, 0x66, 0x41, 0xff, 0x98, 0x66, 0x44, 0xff, 0x97, 0x67, 0x45, 0xff, 0x98, 0x67, 0x45, 0xff, 0x98, 0x67, 0x46, 0xff, 0x98, 0x66, 0x45, 0xff, 0x96, 0x65, 0x45, 0xff, 0x96, 0x65, 0x46, 0xff, 0x97, 0x64, 0x45, 0xff, 0x97, 0x63, 0x44, 0xff, 0x96, 0x61, 0x42, 0xff, 0x96, 0x5f, 0x3e, 0xff, 0x91, 0x59, 0x3a, 0xff, 0xa0, 0x66, 0x46, 0xff, 0xb8, 0x7c, 0x54, 0xff, 0xbe, 0x7f, 0x55, 0xff, 0xbf, 0x80, 0x54, 0xff, 0xc3, 0x84, 0x54, 0xff, 0xc3, 0x82, 0x52, 0xff, 0xb9, 0x7a, 0x4a, 0xff, 0xb6, 0x78, 0x49, 0xff, 0xbc, 0x7e, 0x51, 0xff, 0xc5, 0x88, 0x59, 0xff, 0xd5, 0x95, 0x63, 0xff, 0xe6, 0x9e, 0x6c, 0xff, 0xee, 0xa5, 0x74, 0xff, 0xea, 0xa4, 0x73, 0xff, 0xdb, 0x9c, 0x6c, 0xff, 0xc9, 0x90, 0x62, 0xff, 0xbb, 0x82, 0x56, 0xff, 0xaf, 0x73, 0x4b, 0xff, 0xa1, 0x64, 0x3d, 0xff, 0x96, 0x57, 0x32, 0xff, 0x8f, 0x4e, 0x2c, 0xff, 0x88, 0x49, 0x28, 0xff, 0x85, 0x43, 0x26, 0xff, 0x82, 0x40, 0x24, 0xff, 0x7e, 0x3d, 0x22, 0xff, 0x7d, 0x3a, 0x1f, 0xff, 0x7b, 0x37, 0x1b, 0xff, 0x78, 0x36, 0x19, 0xff, 0x75, 0x36, 0x17, 0xff, 0x75, 0x34, 0x17, 0xff, 0x74, 0x33, 0x17, 0xff, 0x74, 0x33, 0x17, 0xff, 0x75, 0x35, 0x17, 0xff, 0x74, 0x36, 0x1a, 0xff, 0x76, 0x36, 0x1d, 0xff, 0x78, 0x36, 0x1c, 0xff, 0x79, 0x36, 0x1d, 0xff, 0x79, 0x38, 0x1f, 0xff, 0x80, 0x3e, 0x23, 0xff, 0x6c, 0x30, 0x17, 0xff, 0x59, 0x20, 0x07, 0xff, 0x54, 0x1e, 0x04, 0xff, 0x45, 0x16, 0x03, 0xff, 0x43, 0x15, 0x02, 0xff, 0x44, 0x13, 0x02, 0xff, 0x45, 0x13, 0x02, 0xff, 0x46, 0x14, 0x02, 0xff, 0x51, 0x1b, 0x03, 0xff, 0x60, 0x26, 0x0b, 0xff, 0x62, 0x26, 0x0b, 0xff, 0x66, 0x27, 0x0e, 0xff, 0x8e, 0x4e, 0x2e, 0xff, 0x90, 0x50, 0x2e, 0xff, 0x8b, 0x4a, 0x29, 0xff, 0x8b, 0x4a, 0x29, 0xff, 0x8b, 0x4c, 0x29, 0xff, 0x88, 0x46, 0x27, 0xff, 0x7c, 0x3b, 0x21, 0xff, 0x95, 0x53, 0x30, 0xff, 0x99, 0x56, 0x30, 0xff, 0x96, 0x52, 0x2f, 0xff, 0x90, 0x4e, 0x2c, 0xff, 0x8a, 0x47, 0x28, 0xff, 0x87, 0x43, 0x27, 0xff, 0x84, 0x42, 0x25, 0xff, 0x83, 0x42, 0x25, 0xff, 0x84, 0x43, 0x25, 0xff, 0x85, 0x43, 0x27, 0xff, 0x87, 0x44, 0x28, 0xff, 0x89, 0x49, 0x28, 0xff, 0x87, 0x46, 0x28, 0xff, 0x8b, 0x4a, 0x2a, 0xff, 0x80, 0x41, 0x26, 0xff, 0x78, 0x3a, 0x24, 0xff, 0x7b, 0x3b, 0x25, 0xff, 0x7b, 0x3d, 0x26, 0xff, 0x78, 0x3b, 0x23, 0xff, 0x76, 0x38, 0x22, 0xff, 0x75, 0x36, 0x21, 0xff, 0x77, 0x37, 0x22, 0xff, 0x6b, 0x2b, 0x14, 0xff, 0x66, 0x29, 0x12, 0xff, 0x61, 0x25, 0x0b, 0xff, 0x5c, 0x23, 0x0c, 0xff, 0x5a, 0x22, 0x09, 0xff, 0x5e, 0x25, 0x0b, 0xff, 0x61, 0x25, 0x0c, 0xff, 0x5e, 0x25, 0x0a, 0xff, 0x5d, 0x25, 0x0b, 0xff, 0x5a, 0x22, 0x0a, 0xff, 0x5c, 0x23, 0x09, 0xff, 0x5c, 0x20, 0x09, 0xff, 0x57, 0x1f, 0x05, 0xff, 0x55, 0x1e, 0x05, 0xff, 0x57, 0x20, 0x06, 0xff, 0x52, 0x1b, 0x02, 0xff, 0x52, 0x1a, 0x02, 0xff, 0x52, 0x1a, 0x02, 0xff, 0x50, 0x18, 0x02, 0xff, 0x50, 0x16, 0x02, 0xff, 0x50, 0x17, 0x02, 0xff, 0x50, 0x18, 0x02, 0xff, 0x52, 0x1a, 0x02, 0xff, 0x54, 0x1c, 0x04, 0xff, 0x55, 0x1d, 0x05, 0xff, 0x55, 0x1e, 0x05, 0xff, 0x57, 0x20, 0x06, 0xff, 0x5e, 0x23, 0x09, 0xff, 0x5e, 0x26, 0x0b, 0xff, 0x75, 0x38, 0x1e, 0xff, 0x9f, 0x5f, 0x3c, 0xff, 0x92, 0x51, 0x2f, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x8a, 0x48, 0x29, 0xff, 0x87, 0x43, 0x28, 0xff, 0x85, 0x41, 0x26, 0xff, + 0x84, 0x41, 0x26, 0xff, 0x81, 0x40, 0x25, 0xff, 0x80, 0x3e, 0x23, 0xff, 0x80, 0x3e, 0x23, 0xff, 0x7f, 0x3b, 0x22, 0xff, 0x7c, 0x3b, 0x21, 0xff, 0x78, 0x38, 0x20, 0xff, 0x77, 0x35, 0x20, 0xff, 0x7a, 0x39, 0x22, 0xff, 0x7e, 0x3d, 0x23, 0xff, 0x81, 0x41, 0x27, 0xff, 0x86, 0x46, 0x29, 0xff, 0x89, 0x4b, 0x2d, 0xff, 0x8e, 0x4e, 0x31, 0xff, 0x92, 0x57, 0x35, 0xff, 0x97, 0x5d, 0x3d, 0xff, 0x9c, 0x62, 0x44, 0xff, 0xa3, 0x69, 0x49, 0xff, 0xa2, 0x69, 0x49, 0xff, 0xa2, 0x6a, 0x49, 0xff, 0x9f, 0x67, 0x47, 0xff, 0x9c, 0x63, 0x43, 0xff, 0x9b, 0x61, 0x41, 0xff, 0x93, 0x57, 0x39, 0xff, 0x91, 0x56, 0x34, 0xff, 0x96, 0x58, 0x39, 0xff, 0x91, 0x53, 0x34, 0xff, 0x89, 0x49, 0x2c, 0xff, 0x82, 0x42, 0x28, 0xff, 0x7b, 0x3d, 0x25, 0xff, 0x77, 0x36, 0x22, 0xff, 0x74, 0x35, 0x1e, 0xff, 0x73, 0x33, 0x18, 0xff, 0x72, 0x32, 0x1b, 0xff, 0x72, 0x32, 0x18, 0xff, 0x6f, 0x2f, 0x18, 0xff, 0x6f, 0x30, 0x18, 0xff, 0x6e, 0x30, 0x16, 0xff, 0x6c, 0x2f, 0x15, 0xff, 0x6d, 0x2f, 0x16, 0xff, 0x6f, 0x2f, 0x18, 0xff, 0x6f, 0x2f, 0x16, 0xff, 0x72, 0x31, 0x17, 0xff, 0x74, 0x33, 0x19, 0xff, 0x78, 0x35, 0x1d, 0xff, 0x7d, 0x3a, 0x22, 0xff, 0x7f, 0x3e, 0x23, 0xff, 0x82, 0x41, 0x24, 0xff, 0x87, 0x46, 0x27, 0xff, 0x86, 0x46, 0x29, 0xff, 0x81, 0x3f, 0x24, 0xff, 0x7c, 0x3b, 0x23, 0xff, 0x7f, 0x3e, 0x24, 0xff, 0x81, 0x42, 0x26, 0xff, 0x84, 0x43, 0x27, 0xff, 0x88, 0x49, 0x2a, 0xff, 0x89, 0x49, 0x2d, 0xff, 0x87, 0x48, 0x2b, 0xff, 0x80, 0x3d, 0x23, 0xff, 0x80, 0x3d, 0x22, 0xff, 0x84, 0x42, 0x25, 0xff, 0x87, 0x45, 0x26, 0xff, 0x89, 0x48, 0x27, 0xff, 0x8b, 0x4a, 0x28, 0xff, 0x90, 0x4d, 0x2b, 0xff, 0x93, 0x4f, 0x2c, 0xff, 0x97, 0x53, 0x2e, 0xff, 0x9b, 0x58, 0x32, 0xff, 0x9f, 0x5c, 0x35, 0xff, 0xa4, 0x62, 0x3a, 0xff, 0xa8, 0x66, 0x3d, 0xff, 0xaf, 0x6c, 0x43, 0xff, 0xba, 0x7a, 0x4a, 0xff, 0xc0, 0x7d, 0x4d, 0xff, 0xc2, 0x80, 0x4f, 0xff, 0xc7, 0x80, 0x51, 0xff, 0xcd, 0x85, 0x56, 0xff, 0xd2, 0x89, 0x57, 0xff, 0xd5, 0x8a, 0x58, 0xff, 0xd6, 0x89, 0x59, 0xff, 0xcb, 0x87, 0x57, 0xff, 0xc6, 0x87, 0x55, 0xff, 0xc9, 0x8e, 0x58, 0xff, 0xb8, 0x7e, 0x50, 0xff, 0x8d, 0x50, 0x2c, 0xff, 0x8a, 0x4d, 0x2b, 0xff, 0x8b, 0x4e, 0x2a, 0xff, 0x89, 0x4b, 0x29, 0xff, 0x87, 0x49, 0x2a, 0xff, 0x89, 0x4a, 0x29, 0xff, 0x89, 0x4a, 0x29, 0xff, 0x89, 0x49, 0x29, 0xff, 0x8b, 0x4b, 0x2b, 0xff, 0x8c, 0x4d, 0x2c, 0xff, 0x8b, 0x4d, 0x2b, 0xff, 0x8c, 0x4e, 0x2c, 0xff, 0x8d, 0x4d, 0x2c, 0xff, 0x8e, 0x4e, 0x2d, 0xff, 0x8e, 0x53, 0x2e, 0xff, 0x90, 0x56, 0x30, 0xff, 0x92, 0x57, 0x31, 0xff, 0x92, 0x5a, 0x33, 0xff, 0x94, 0x5c, 0x35, 0xff, 0x96, 0x60, 0x39, 0xff, 0x97, 0x65, 0x3d, 0xff, 0x97, 0x67, 0x40, 0xff, 0x96, 0x67, 0x41, 0xff, 0x97, 0x66, 0x41, 0xff, 0x97, 0x67, 0x42, 0xff, 0x97, 0x67, 0x42, 0xff, 0x97, 0x65, 0x44, 0xff, 0x97, 0x65, 0x43, 0xff, 0x97, 0x65, 0x43, 0xff, 0x97, 0x64, 0x45, 0xff, 0x97, 0x61, 0x43, 0xff, 0x97, 0x5e, 0x40, 0xff, 0x95, 0x5e, 0x3f, 0xff, 0x92, 0x5a, 0x3d, 0xff, 0x98, 0x60, 0x40, 0xff, 0xb5, 0x78, 0x51, 0xff, 0xc3, 0x83, 0x59, 0xff, 0xc1, 0x80, 0x55, 0xff, 0xc4, 0x84, 0x57, 0xff, 0xc0, 0x81, 0x53, 0xff, 0xb9, 0x79, 0x4c, 0xff, 0xb8, 0x7a, 0x4c, 0xff, 0xbf, 0x82, 0x53, 0xff, 0xcc, 0x8e, 0x5e, 0xff, 0xe4, 0x9c, 0x69, 0xff, 0xf7, 0xab, 0x77, 0xff, 0xfc, 0xb3, 0x7f, 0xff, 0xfd, 0xb5, 0x81, 0xff, 0xf8, 0xae, 0x7e, 0xff, 0xe6, 0xa2, 0x73, 0xff, 0xcb, 0x91, 0x63, 0xff, 0xb8, 0x7e, 0x54, 0xff, 0xaa, 0x6e, 0x46, 0xff, 0x9e, 0x60, 0x39, 0xff, 0x94, 0x53, 0x31, 0xff, 0x8d, 0x4b, 0x2b, 0xff, 0x86, 0x44, 0x28, 0xff, 0x81, 0x40, 0x25, 0xff, 0x7e, 0x3d, 0x22, 0xff, 0x7d, 0x3b, 0x1f, 0xff, 0x7b, 0x38, 0x1b, 0xff, 0x76, 0x34, 0x1a, 0xff, 0x76, 0x35, 0x18, 0xff, 0x75, 0x35, 0x18, 0xff, 0x75, 0x33, 0x18, 0xff, 0x75, 0x33, 0x18, 0xff, 0x75, 0x35, 0x18, 0xff, 0x77, 0x36, 0x1b, 0xff, 0x77, 0x36, 0x1e, 0xff, 0x78, 0x36, 0x1c, 0xff, 0x79, 0x36, 0x1d, 0xff, 0x7a, 0x38, 0x1e, 0xff, 0x7c, 0x3b, 0x21, 0xff, 0x83, 0x41, 0x27, 0xff, 0x67, 0x2b, 0x11, 0xff, 0x59, 0x21, 0x06, 0xff, 0x4f, 0x1c, 0x05, 0xff, 0x45, 0x14, 0x02, 0xff, 0x44, 0x12, 0x02, 0xff, 0x48, 0x14, 0x02, 0xff, 0x4a, 0x13, 0x02, 0xff, 0x4a, 0x15, 0x02, 0xff, 0x56, 0x20, 0x05, 0xff, 0x60, 0x25, 0x0b, 0xff, 0x64, 0x27, 0x0d, 0xff, 0x70, 0x31, 0x19, 0xff, 0x8c, 0x4b, 0x2b, 0xff, 0x8d, 0x4c, 0x2b, 0xff, 0x8b, 0x49, 0x29, 0xff, 0x8a, 0x49, 0x29, 0xff, 0x85, 0x45, 0x27, 0xff, 0x7a, 0x39, 0x1f, 0xff, 0x91, 0x4e, 0x2d, 0xff, 0x94, 0x51, 0x2e, 0xff, 0x8f, 0x4b, 0x2b, 0xff, 0x8a, 0x47, 0x28, 0xff, 0x87, 0x44, 0x26, 0xff, 0x83, 0x43, 0x24, 0xff, 0x81, 0x3f, 0x24, 0xff, 0x81, 0x41, 0x24, 0xff, 0x83, 0x42, 0x26, 0xff, 0x86, 0x43, 0x27, 0xff, 0x89, 0x47, 0x29, 0xff, 0x89, 0x49, 0x2b, 0xff, 0x87, 0x46, 0x29, 0xff, 0x8d, 0x4c, 0x2b, 0xff, 0x82, 0x42, 0x27, 0xff, 0x78, 0x3a, 0x24, 0xff, 0x7a, 0x3b, 0x25, 0xff, 0x7b, 0x3d, 0x25, 0xff, 0x78, 0x3b, 0x23, 0xff, 0x76, 0x36, 0x23, 0xff, 0x75, 0x36, 0x21, 0xff, 0x75, 0x36, 0x22, 0xff, 0x67, 0x29, 0x14, 0xff, 0x65, 0x29, 0x12, 0xff, 0x61, 0x24, 0x0e, 0xff, 0x5c, 0x23, 0x09, 0xff, 0x5b, 0x22, 0x0a, 0xff, 0x5f, 0x23, 0x0c, 0xff, 0x5f, 0x22, 0x0c, 0xff, 0x5e, 0x22, 0x09, 0xff, 0x5c, 0x25, 0x09, 0xff, 0x59, 0x21, 0x09, 0xff, 0x5a, 0x20, 0x05, 0xff, 0x56, 0x1f, 0x06, 0xff, 0x56, 0x20, 0x07, 0xff, 0x56, 0x1e, 0x05, 0xff, 0x55, 0x22, 0x05, 0xff, 0x52, 0x19, 0x02, 0xff, 0x52, 0x1a, 0x02, 0xff, 0x52, 0x1a, 0x02, 0xff, 0x4f, 0x17, 0x02, 0xff, 0x4e, 0x16, 0x02, 0xff, 0x50, 0x18, 0x02, 0xff, 0x50, 0x18, 0x02, 0xff, 0x50, 0x18, 0x02, 0xff, 0x54, 0x1c, 0x04, 0xff, 0x54, 0x1c, 0x05, 0xff, 0x55, 0x1e, 0x05, 0xff, 0x59, 0x23, 0x09, 0xff, 0x5c, 0x24, 0x09, 0xff, 0x56, 0x1e, 0x05, 0xff, 0x5b, 0x22, 0x0c, 0xff, 0x8e, 0x4e, 0x30, 0xff, 0x9a, 0x58, 0x36, 0xff, 0x93, 0x51, 0x30, 0xff, 0x8d, 0x4b, 0x2d, 0xff, 0x8a, 0x48, 0x2a, 0xff, 0x87, 0x43, 0x27, 0xff, + 0x89, 0x47, 0x28, 0xff, 0x85, 0x42, 0x26, 0xff, 0x84, 0x41, 0x27, 0xff, 0x82, 0x40, 0x24, 0xff, 0x7f, 0x3d, 0x22, 0xff, 0x7c, 0x39, 0x21, 0xff, 0x7b, 0x38, 0x20, 0xff, 0x7b, 0x39, 0x21, 0xff, 0x7d, 0x3c, 0x24, 0xff, 0x81, 0x3f, 0x25, 0xff, 0x84, 0x47, 0x28, 0xff, 0x88, 0x4b, 0x2d, 0xff, 0x8f, 0x50, 0x31, 0xff, 0x97, 0x5b, 0x39, 0xff, 0x9c, 0x63, 0x43, 0xff, 0xa5, 0x6b, 0x4a, 0xff, 0xac, 0x76, 0x54, 0xff, 0xb2, 0x7d, 0x5b, 0xff, 0xb7, 0x81, 0x5e, 0xff, 0xb7, 0x83, 0x60, 0xff, 0xb4, 0x80, 0x5f, 0xff, 0xb0, 0x7b, 0x5a, 0xff, 0xac, 0x75, 0x53, 0xff, 0xad, 0x77, 0x55, 0xff, 0xac, 0x74, 0x53, 0xff, 0xa3, 0x6a, 0x49, 0xff, 0x9b, 0x60, 0x40, 0xff, 0x92, 0x55, 0x36, 0xff, 0x8b, 0x4d, 0x2e, 0xff, 0x81, 0x43, 0x28, 0xff, 0x7e, 0x40, 0x25, 0xff, 0x77, 0x39, 0x23, 0xff, 0x76, 0x38, 0x21, 0xff, 0x75, 0x34, 0x1c, 0xff, 0x72, 0x32, 0x18, 0xff, 0x70, 0x30, 0x18, 0xff, 0x70, 0x30, 0x16, 0xff, 0x6f, 0x2f, 0x18, 0xff, 0x6e, 0x2f, 0x16, 0xff, 0x70, 0x30, 0x16, 0xff, 0x71, 0x30, 0x16, 0xff, 0x73, 0x32, 0x19, 0xff, 0x73, 0x33, 0x18, 0xff, 0x74, 0x34, 0x1c, 0xff, 0x78, 0x36, 0x1e, 0xff, 0x7d, 0x3a, 0x22, 0xff, 0x80, 0x3e, 0x23, 0xff, 0x81, 0x40, 0x24, 0xff, 0x85, 0x45, 0x26, 0xff, 0x86, 0x44, 0x27, 0xff, 0x80, 0x3f, 0x25, 0xff, 0x7d, 0x3c, 0x23, 0xff, 0x80, 0x40, 0x24, 0xff, 0x81, 0x42, 0x26, 0xff, 0x83, 0x44, 0x29, 0xff, 0x86, 0x48, 0x2d, 0xff, 0x88, 0x48, 0x2c, 0xff, 0x80, 0x3f, 0x25, 0xff, 0x78, 0x36, 0x1d, 0xff, 0x7e, 0x3c, 0x22, 0xff, 0x82, 0x40, 0x24, 0xff, 0x84, 0x42, 0x25, 0xff, 0x85, 0x42, 0x26, 0xff, 0x88, 0x44, 0x26, 0xff, 0x8d, 0x4b, 0x28, 0xff, 0x92, 0x4f, 0x2c, 0xff, 0x94, 0x51, 0x2d, 0xff, 0x9a, 0x55, 0x2f, 0xff, 0x9e, 0x5d, 0x33, 0xff, 0xa2, 0x61, 0x37, 0xff, 0xac, 0x69, 0x3f, 0xff, 0xb6, 0x74, 0x48, 0xff, 0xb8, 0x78, 0x49, 0xff, 0xbb, 0x79, 0x49, 0xff, 0xc0, 0x7d, 0x4c, 0xff, 0xc6, 0x7f, 0x50, 0xff, 0xcf, 0x85, 0x53, 0xff, 0xd2, 0x8b, 0x57, 0xff, 0xd7, 0x8d, 0x5a, 0xff, 0xda, 0x90, 0x5d, 0xff, 0xd9, 0x8e, 0x5c, 0xff, 0xda, 0x90, 0x5b, 0xff, 0xd0, 0x89, 0x5a, 0xff, 0xa0, 0x64, 0x3e, 0xff, 0x83, 0x44, 0x26, 0xff, 0x88, 0x4a, 0x2a, 0xff, 0x88, 0x49, 0x29, 0xff, 0x89, 0x49, 0x29, 0xff, 0x88, 0x49, 0x28, 0xff, 0x88, 0x4a, 0x29, 0xff, 0x89, 0x49, 0x29, 0xff, 0x89, 0x49, 0x29, 0xff, 0x8a, 0x4a, 0x2a, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x8c, 0x4c, 0x2c, 0xff, 0x8d, 0x4e, 0x2c, 0xff, 0x8f, 0x51, 0x2d, 0xff, 0x90, 0x54, 0x2e, 0xff, 0x91, 0x55, 0x30, 0xff, 0x92, 0x58, 0x32, 0xff, 0x94, 0x5c, 0x33, 0xff, 0x96, 0x5d, 0x34, 0xff, 0x96, 0x61, 0x38, 0xff, 0x97, 0x64, 0x3c, 0xff, 0x96, 0x64, 0x3c, 0xff, 0x97, 0x65, 0x3e, 0xff, 0x98, 0x66, 0x3e, 0xff, 0x96, 0x67, 0x3d, 0xff, 0x96, 0x67, 0x3f, 0xff, 0x97, 0x65, 0x40, 0xff, 0x96, 0x65, 0x40, 0xff, 0x96, 0x65, 0x41, 0xff, 0x98, 0x64, 0x44, 0xff, 0x97, 0x62, 0x43, 0xff, 0x95, 0x5f, 0x40, 0xff, 0x95, 0x5c, 0x3f, 0xff, 0x92, 0x59, 0x3d, 0xff, 0x8f, 0x56, 0x39, 0xff, 0xb1, 0x73, 0x4f, 0xff, 0xc8, 0x89, 0x5c, 0xff, 0xc1, 0x81, 0x55, 0xff, 0xc4, 0x83, 0x57, 0xff, 0xbe, 0x7e, 0x52, 0xff, 0xb7, 0x79, 0x4e, 0xff, 0xba, 0x7c, 0x4f, 0xff, 0xc2, 0x86, 0x56, 0xff, 0xd4, 0x94, 0x62, 0xff, 0xee, 0xa6, 0x71, 0xff, 0xfb, 0xb6, 0x81, 0xff, 0xfc, 0xc2, 0x8e, 0xff, 0xfc, 0xc9, 0x93, 0xff, 0xfc, 0xc4, 0x8f, 0xff, 0xfc, 0xb7, 0x85, 0xff, 0xe7, 0xa4, 0x74, 0xff, 0xc8, 0x8e, 0x60, 0xff, 0xb1, 0x78, 0x4f, 0xff, 0xa3, 0x68, 0x40, 0xff, 0x97, 0x59, 0x33, 0xff, 0x8d, 0x4d, 0x2d, 0xff, 0x86, 0x47, 0x28, 0xff, 0x82, 0x43, 0x25, 0xff, 0x80, 0x3e, 0x24, 0xff, 0x7e, 0x3c, 0x21, 0xff, 0x7c, 0x3a, 0x1f, 0xff, 0x7a, 0x38, 0x1b, 0xff, 0x78, 0x36, 0x19, 0xff, 0x76, 0x33, 0x18, 0xff, 0x75, 0x34, 0x18, 0xff, 0x75, 0x35, 0x18, 0xff, 0x75, 0x35, 0x18, 0xff, 0x77, 0x36, 0x1b, 0xff, 0x77, 0x36, 0x1e, 0xff, 0x78, 0x37, 0x1e, 0xff, 0x78, 0x36, 0x1c, 0xff, 0x7a, 0x38, 0x1e, 0xff, 0x7c, 0x3a, 0x21, 0xff, 0x7e, 0x3d, 0x23, 0xff, 0x83, 0x42, 0x27, 0xff, 0x68, 0x2c, 0x11, 0xff, 0x58, 0x24, 0x08, 0xff, 0x49, 0x16, 0x04, 0xff, 0x49, 0x13, 0x02, 0xff, 0x4c, 0x15, 0x02, 0xff, 0x4c, 0x17, 0x02, 0xff, 0x4e, 0x1b, 0x02, 0xff, 0x4d, 0x17, 0x02, 0xff, 0x57, 0x1f, 0x07, 0xff, 0x67, 0x29, 0x11, 0xff, 0x67, 0x29, 0x11, 0xff, 0x80, 0x40, 0x22, 0xff, 0x8b, 0x4b, 0x2b, 0xff, 0x8b, 0x4a, 0x29, 0xff, 0x88, 0x48, 0x29, 0xff, 0x83, 0x44, 0x26, 0xff, 0x7a, 0x39, 0x21, 0xff, 0x8c, 0x4b, 0x2b, 0xff, 0x91, 0x4f, 0x2b, 0xff, 0x8b, 0x49, 0x28, 0xff, 0x87, 0x45, 0x25, 0xff, 0x84, 0x42, 0x24, 0xff, 0x82, 0x40, 0x24, 0xff, 0x80, 0x3e, 0x23, 0xff, 0x81, 0x3f, 0x24, 0xff, 0x83, 0x42, 0x26, 0xff, 0x86, 0x46, 0x28, 0xff, 0x89, 0x48, 0x2a, 0xff, 0x87, 0x48, 0x29, 0xff, 0x89, 0x49, 0x2b, 0xff, 0x8e, 0x4e, 0x2d, 0xff, 0x84, 0x46, 0x28, 0xff, 0x79, 0x3b, 0x24, 0xff, 0x78, 0x39, 0x23, 0xff, 0x7c, 0x3c, 0x25, 0xff, 0x79, 0x3b, 0x23, 0xff, 0x76, 0x36, 0x23, 0xff, 0x75, 0x36, 0x21, 0xff, 0x73, 0x34, 0x1f, 0xff, 0x67, 0x2c, 0x13, 0xff, 0x65, 0x29, 0x12, 0xff, 0x63, 0x26, 0x0e, 0xff, 0x5e, 0x24, 0x0b, 0xff, 0x5b, 0x23, 0x09, 0xff, 0x62, 0x26, 0x0d, 0xff, 0x5e, 0x22, 0x09, 0xff, 0x5f, 0x25, 0x0c, 0xff, 0x5b, 0x24, 0x09, 0xff, 0x58, 0x22, 0x09, 0xff, 0x57, 0x20, 0x08, 0xff, 0x54, 0x1e, 0x05, 0xff, 0x56, 0x1e, 0x05, 0xff, 0x56, 0x1d, 0x05, 0xff, 0x56, 0x21, 0x05, 0xff, 0x54, 0x1c, 0x04, 0xff, 0x52, 0x19, 0x02, 0xff, 0x52, 0x1a, 0x02, 0xff, 0x51, 0x1d, 0x04, 0xff, 0x50, 0x19, 0x02, 0xff, 0x51, 0x19, 0x02, 0xff, 0x50, 0x18, 0x02, 0xff, 0x52, 0x1c, 0x02, 0xff, 0x53, 0x1b, 0x04, 0xff, 0x55, 0x1d, 0x05, 0xff, 0x56, 0x1d, 0x05, 0xff, 0x5b, 0x23, 0x0a, 0xff, 0x55, 0x1e, 0x06, 0xff, 0x54, 0x21, 0x05, 0xff, 0x54, 0x1d, 0x04, 0xff, 0x6d, 0x35, 0x17, 0xff, 0xa3, 0x65, 0x40, 0xff, 0x98, 0x59, 0x34, 0xff, 0x94, 0x51, 0x2f, 0xff, 0x90, 0x4f, 0x2d, 0xff, 0x8c, 0x4b, 0x2a, 0xff, + 0x8e, 0x4b, 0x2b, 0xff, 0x89, 0x48, 0x29, 0xff, 0x86, 0x45, 0x27, 0xff, 0x82, 0x40, 0x24, 0xff, 0x7d, 0x3c, 0x21, 0xff, 0x7d, 0x3a, 0x22, 0xff, 0x7c, 0x3a, 0x22, 0xff, 0x7c, 0x3b, 0x23, 0xff, 0x80, 0x3f, 0x24, 0xff, 0x82, 0x41, 0x26, 0xff, 0x85, 0x46, 0x29, 0xff, 0x8b, 0x4d, 0x2d, 0xff, 0x92, 0x54, 0x33, 0xff, 0x9b, 0x60, 0x3e, 0xff, 0xa5, 0x6b, 0x4a, 0xff, 0xaf, 0x78, 0x56, 0xff, 0xb9, 0x84, 0x62, 0xff, 0xc5, 0x8f, 0x6b, 0xff, 0xcd, 0x98, 0x72, 0xff, 0xd3, 0x9a, 0x75, 0xff, 0xd2, 0x9b, 0x74, 0xff, 0xcc, 0x96, 0x71, 0xff, 0xd4, 0x9a, 0x73, 0xff, 0xc8, 0x95, 0x6f, 0xff, 0xbd, 0x87, 0x63, 0xff, 0xb5, 0x7f, 0x5d, 0xff, 0xa9, 0x71, 0x4f, 0xff, 0x9e, 0x62, 0x43, 0xff, 0x94, 0x56, 0x37, 0xff, 0x8a, 0x4c, 0x2d, 0xff, 0x84, 0x45, 0x2a, 0xff, 0x80, 0x42, 0x27, 0xff, 0x7a, 0x3b, 0x24, 0xff, 0x78, 0x37, 0x21, 0xff, 0x76, 0x35, 0x1e, 0xff, 0x74, 0x33, 0x1b, 0xff, 0x72, 0x32, 0x17, 0xff, 0x71, 0x31, 0x18, 0xff, 0x70, 0x30, 0x18, 0xff, 0x73, 0x33, 0x1a, 0xff, 0x74, 0x33, 0x1a, 0xff, 0x75, 0x34, 0x1c, 0xff, 0x77, 0x34, 0x1c, 0xff, 0x76, 0x35, 0x1f, 0xff, 0x7a, 0x38, 0x20, 0xff, 0x7e, 0x3b, 0x23, 0xff, 0x80, 0x3e, 0x23, 0xff, 0x81, 0x40, 0x24, 0xff, 0x83, 0x42, 0x26, 0xff, 0x84, 0x41, 0x26, 0xff, 0x86, 0x45, 0x27, 0xff, 0x83, 0x45, 0x27, 0xff, 0x81, 0x41, 0x26, 0xff, 0x82, 0x42, 0x27, 0xff, 0x84, 0x48, 0x2b, 0xff, 0x88, 0x49, 0x2d, 0xff, 0x7f, 0x3f, 0x25, 0xff, 0x73, 0x32, 0x19, 0xff, 0x78, 0x37, 0x20, 0xff, 0x7d, 0x3b, 0x20, 0xff, 0x80, 0x3e, 0x22, 0xff, 0x81, 0x40, 0x23, 0xff, 0x81, 0x3f, 0x23, 0xff, 0x84, 0x42, 0x25, 0xff, 0x8b, 0x46, 0x27, 0xff, 0x90, 0x4b, 0x28, 0xff, 0x92, 0x4d, 0x2c, 0xff, 0x97, 0x51, 0x2e, 0xff, 0x9c, 0x59, 0x32, 0xff, 0xa6, 0x64, 0x3a, 0xff, 0xaf, 0x6c, 0x42, 0xff, 0xb4, 0x72, 0x46, 0xff, 0xb8, 0x76, 0x4a, 0xff, 0xbb, 0x7a, 0x4a, 0xff, 0xc0, 0x7c, 0x4c, 0xff, 0xc5, 0x81, 0x4f, 0xff, 0xcf, 0x88, 0x55, 0xff, 0xd3, 0x8f, 0x5b, 0xff, 0xd7, 0x92, 0x61, 0xff, 0xde, 0x95, 0x66, 0xff, 0xe7, 0x9c, 0x69, 0xff, 0xe0, 0x95, 0x62, 0xff, 0xc3, 0x80, 0x53, 0xff, 0xb3, 0x71, 0x49, 0xff, 0x9c, 0x5c, 0x38, 0xff, 0x85, 0x47, 0x27, 0xff, 0x87, 0x49, 0x28, 0xff, 0x87, 0x48, 0x27, 0xff, 0x88, 0x49, 0x28, 0xff, 0x89, 0x4a, 0x28, 0xff, 0x88, 0x49, 0x29, 0xff, 0x88, 0x48, 0x29, 0xff, 0x89, 0x49, 0x29, 0xff, 0x8b, 0x49, 0x29, 0xff, 0x8c, 0x4b, 0x2a, 0xff, 0x8c, 0x4e, 0x2b, 0xff, 0x8d, 0x4f, 0x2c, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x91, 0x53, 0x2f, 0xff, 0x93, 0x58, 0x31, 0xff, 0x94, 0x5b, 0x32, 0xff, 0x96, 0x5c, 0x33, 0xff, 0x97, 0x5f, 0x36, 0xff, 0x97, 0x63, 0x3a, 0xff, 0x97, 0x64, 0x3b, 0xff, 0x98, 0x64, 0x3b, 0xff, 0x97, 0x64, 0x3c, 0xff, 0x97, 0x65, 0x3c, 0xff, 0x98, 0x65, 0x3b, 0xff, 0x97, 0x64, 0x3b, 0xff, 0x97, 0x64, 0x3c, 0xff, 0x96, 0x64, 0x3d, 0xff, 0x96, 0x64, 0x3e, 0xff, 0x97, 0x63, 0x41, 0xff, 0x95, 0x61, 0x42, 0xff, 0x94, 0x5e, 0x40, 0xff, 0x93, 0x5b, 0x3e, 0xff, 0x91, 0x5a, 0x3d, 0xff, 0x8d, 0x54, 0x38, 0xff, 0xab, 0x6e, 0x4b, 0xff, 0xc7, 0x87, 0x5c, 0xff, 0xc2, 0x82, 0x57, 0xff, 0xc3, 0x84, 0x59, 0xff, 0xbe, 0x80, 0x54, 0xff, 0xb7, 0x79, 0x4f, 0xff, 0xbb, 0x7d, 0x52, 0xff, 0xc3, 0x87, 0x59, 0xff, 0xd8, 0x98, 0x64, 0xff, 0xf3, 0xaa, 0x74, 0xff, 0xfd, 0xbf, 0x88, 0xff, 0xfb, 0xd6, 0x99, 0xff, 0xfc, 0xe5, 0xa2, 0xff, 0xfc, 0xe0, 0xa1, 0xff, 0xfd, 0xcb, 0x95, 0xff, 0xf6, 0xb3, 0x83, 0xff, 0xdb, 0x9c, 0x6f, 0xff, 0xbc, 0x84, 0x5a, 0xff, 0xa9, 0x6f, 0x48, 0xff, 0x9d, 0x5f, 0x39, 0xff, 0x93, 0x52, 0x30, 0xff, 0x8a, 0x4a, 0x29, 0xff, 0x85, 0x45, 0x26, 0xff, 0x83, 0x41, 0x25, 0xff, 0x81, 0x3f, 0x23, 0xff, 0x7e, 0x3b, 0x21, 0xff, 0x7c, 0x39, 0x1d, 0xff, 0x79, 0x37, 0x1b, 0xff, 0x77, 0x35, 0x19, 0xff, 0x77, 0x35, 0x18, 0xff, 0x77, 0x35, 0x18, 0xff, 0x77, 0x35, 0x18, 0xff, 0x78, 0x36, 0x1b, 0xff, 0x77, 0x36, 0x1f, 0xff, 0x78, 0x36, 0x1e, 0xff, 0x7a, 0x37, 0x1e, 0xff, 0x7b, 0x39, 0x1f, 0xff, 0x7d, 0x3a, 0x20, 0xff, 0x7f, 0x3d, 0x22, 0xff, 0x82, 0x3f, 0x23, 0xff, 0x7b, 0x3b, 0x22, 0xff, 0x69, 0x2c, 0x13, 0xff, 0x54, 0x20, 0x05, 0xff, 0x4c, 0x14, 0x02, 0xff, 0x4e, 0x14, 0x02, 0xff, 0x4c, 0x19, 0x02, 0xff, 0x4d, 0x18, 0x02, 0xff, 0x4f, 0x15, 0x02, 0xff, 0x4d, 0x16, 0x01, 0xff, 0x60, 0x25, 0x0d, 0xff, 0x66, 0x29, 0x11, 0xff, 0x6a, 0x2c, 0x12, 0xff, 0x82, 0x43, 0x23, 0xff, 0x8a, 0x48, 0x28, 0xff, 0x88, 0x47, 0x28, 0xff, 0x83, 0x43, 0x26, 0xff, 0x7a, 0x3a, 0x21, 0xff, 0x89, 0x46, 0x28, 0xff, 0x8d, 0x4a, 0x29, 0xff, 0x89, 0x47, 0x26, 0xff, 0x85, 0x42, 0x24, 0xff, 0x82, 0x3f, 0x23, 0xff, 0x80, 0x3e, 0x23, 0xff, 0x80, 0x3e, 0x23, 0xff, 0x81, 0x3f, 0x25, 0xff, 0x82, 0x42, 0x26, 0xff, 0x86, 0x46, 0x28, 0xff, 0x88, 0x47, 0x28, 0xff, 0x88, 0x49, 0x2a, 0xff, 0x88, 0x4a, 0x2b, 0xff, 0x8f, 0x4f, 0x2d, 0xff, 0x82, 0x42, 0x26, 0xff, 0x7a, 0x3c, 0x24, 0xff, 0x77, 0x38, 0x22, 0xff, 0x7a, 0x3b, 0x24, 0xff, 0x77, 0x3a, 0x23, 0xff, 0x76, 0x36, 0x22, 0xff, 0x76, 0x36, 0x22, 0xff, 0x6e, 0x30, 0x19, 0xff, 0x67, 0x2c, 0x13, 0xff, 0x65, 0x29, 0x12, 0xff, 0x64, 0x27, 0x10, 0xff, 0x5f, 0x23, 0x0c, 0xff, 0x5c, 0x24, 0x0a, 0xff, 0x60, 0x26, 0x0f, 0xff, 0x5f, 0x22, 0x09, 0xff, 0x5e, 0x24, 0x0a, 0xff, 0x5b, 0x24, 0x09, 0xff, 0x59, 0x22, 0x09, 0xff, 0x57, 0x20, 0x07, 0xff, 0x55, 0x1e, 0x05, 0xff, 0x54, 0x1d, 0x05, 0xff, 0x55, 0x1c, 0x05, 0xff, 0x56, 0x1e, 0x05, 0xff, 0x54, 0x1c, 0x05, 0xff, 0x52, 0x1a, 0x03, 0xff, 0x52, 0x1a, 0x02, 0xff, 0x51, 0x19, 0x02, 0xff, 0x52, 0x1c, 0x03, 0xff, 0x50, 0x18, 0x02, 0xff, 0x53, 0x1b, 0x04, 0xff, 0x54, 0x1f, 0x04, 0xff, 0x53, 0x1d, 0x04, 0xff, 0x53, 0x1c, 0x05, 0xff, 0x59, 0x1e, 0x05, 0xff, 0x55, 0x1d, 0x08, 0xff, 0x4d, 0x19, 0x03, 0xff, 0x52, 0x1b, 0x03, 0xff, 0x53, 0x1f, 0x03, 0xff, 0x4c, 0x17, 0x02, 0xff, 0x85, 0x4c, 0x2e, 0xff, 0xa9, 0x69, 0x3f, 0xff, 0x9b, 0x57, 0x34, 0xff, 0x95, 0x52, 0x30, 0xff, 0x90, 0x4e, 0x2d, 0xff, + 0x93, 0x4f, 0x2d, 0xff, 0x8f, 0x4d, 0x2b, 0xff, 0x8b, 0x49, 0x29, 0xff, 0x84, 0x42, 0x27, 0xff, 0x82, 0x40, 0x24, 0xff, 0x7e, 0x3d, 0x23, 0xff, 0x7f, 0x3d, 0x23, 0xff, 0x7f, 0x3e, 0x23, 0xff, 0x82, 0x41, 0x26, 0xff, 0x83, 0x42, 0x27, 0xff, 0x87, 0x46, 0x29, 0xff, 0x8e, 0x4c, 0x2d, 0xff, 0x93, 0x56, 0x34, 0xff, 0x9d, 0x63, 0x3f, 0xff, 0xaa, 0x6f, 0x4b, 0xff, 0xb4, 0x7f, 0x5b, 0xff, 0xc2, 0x8e, 0x68, 0xff, 0xd4, 0x9c, 0x76, 0xff, 0xe6, 0xa9, 0x81, 0xff, 0xf2, 0xae, 0x86, 0xff, 0xef, 0xb2, 0x89, 0xff, 0xf7, 0xbd, 0x95, 0xff, 0xf8, 0xb4, 0x8b, 0xff, 0xe9, 0xa6, 0x7f, 0xff, 0xd1, 0x9b, 0x73, 0xff, 0xc2, 0x8e, 0x67, 0xff, 0xb8, 0x82, 0x5e, 0xff, 0xab, 0x73, 0x4f, 0xff, 0x9f, 0x62, 0x42, 0xff, 0x95, 0x58, 0x36, 0xff, 0x8d, 0x4e, 0x2e, 0xff, 0x85, 0x48, 0x2a, 0xff, 0x80, 0x41, 0x25, 0xff, 0x7d, 0x3c, 0x23, 0xff, 0x7a, 0x39, 0x22, 0xff, 0x77, 0x35, 0x20, 0xff, 0x78, 0x35, 0x1f, 0xff, 0x76, 0x34, 0x1e, 0xff, 0x74, 0x34, 0x1d, 0xff, 0x75, 0x34, 0x1d, 0xff, 0x75, 0x35, 0x1e, 0xff, 0x78, 0x35, 0x1f, 0xff, 0x7a, 0x38, 0x1f, 0xff, 0x7b, 0x39, 0x22, 0xff, 0x7c, 0x3a, 0x22, 0xff, 0x7e, 0x3d, 0x23, 0xff, 0x80, 0x3f, 0x24, 0xff, 0x82, 0x41, 0x26, 0xff, 0x82, 0x40, 0x26, 0xff, 0x84, 0x44, 0x27, 0xff, 0x8b, 0x49, 0x2a, 0xff, 0x89, 0x49, 0x29, 0xff, 0x8a, 0x4a, 0x2b, 0xff, 0x87, 0x46, 0x2b, 0xff, 0x88, 0x4a, 0x2c, 0xff, 0x84, 0x45, 0x28, 0xff, 0x71, 0x32, 0x19, 0xff, 0x73, 0x31, 0x15, 0xff, 0x77, 0x37, 0x1b, 0xff, 0x7a, 0x39, 0x1f, 0xff, 0x7e, 0x3b, 0x21, 0xff, 0x7f, 0x3d, 0x22, 0xff, 0x80, 0x3f, 0x22, 0xff, 0x84, 0x41, 0x24, 0xff, 0x87, 0x44, 0x26, 0xff, 0x8e, 0x49, 0x27, 0xff, 0x92, 0x4e, 0x2a, 0xff, 0x95, 0x51, 0x2c, 0xff, 0x9d, 0x5a, 0x30, 0xff, 0xa9, 0x66, 0x3b, 0xff, 0xad, 0x6c, 0x40, 0xff, 0xb2, 0x70, 0x45, 0xff, 0xb6, 0x75, 0x48, 0xff, 0xba, 0x79, 0x4a, 0xff, 0xbd, 0x79, 0x4a, 0xff, 0xc4, 0x7e, 0x4d, 0xff, 0xd0, 0x89, 0x56, 0xff, 0xd4, 0x8f, 0x5a, 0xff, 0xd6, 0x92, 0x60, 0xff, 0xdd, 0x95, 0x66, 0xff, 0xe3, 0x98, 0x6a, 0xff, 0xcd, 0x8c, 0x63, 0xff, 0xb8, 0x7e, 0x57, 0xff, 0xbc, 0x7e, 0x53, 0xff, 0xbb, 0x7b, 0x50, 0xff, 0xa4, 0x63, 0x3e, 0xff, 0x84, 0x42, 0x23, 0xff, 0x87, 0x45, 0x28, 0xff, 0x88, 0x46, 0x28, 0xff, 0x87, 0x44, 0x27, 0xff, 0x88, 0x46, 0x27, 0xff, 0x89, 0x49, 0x28, 0xff, 0x8a, 0x4a, 0x29, 0xff, 0x8b, 0x4b, 0x29, 0xff, 0x8d, 0x4b, 0x2a, 0xff, 0x8f, 0x4e, 0x2c, 0xff, 0x8f, 0x50, 0x2e, 0xff, 0x91, 0x53, 0x2e, 0xff, 0x93, 0x55, 0x2f, 0xff, 0x94, 0x58, 0x31, 0xff, 0x97, 0x5d, 0x33, 0xff, 0x97, 0x5f, 0x36, 0xff, 0x98, 0x62, 0x3a, 0xff, 0x98, 0x64, 0x3a, 0xff, 0x98, 0x64, 0x3c, 0xff, 0x97, 0x64, 0x3c, 0xff, 0x97, 0x64, 0x3c, 0xff, 0x97, 0x64, 0x3c, 0xff, 0x99, 0x65, 0x3b, 0xff, 0x99, 0x65, 0x3a, 0xff, 0x97, 0x64, 0x39, 0xff, 0x97, 0x64, 0x3a, 0xff, 0x98, 0x64, 0x3c, 0xff, 0x97, 0x64, 0x3f, 0xff, 0x96, 0x61, 0x3f, 0xff, 0x92, 0x5b, 0x3e, 0xff, 0x91, 0x58, 0x3c, 0xff, 0x91, 0x58, 0x3b, 0xff, 0x90, 0x57, 0x3a, 0xff, 0xa3, 0x68, 0x46, 0xff, 0xbe, 0x80, 0x56, 0xff, 0xc6, 0x84, 0x5a, 0xff, 0xc5, 0x85, 0x59, 0xff, 0xbf, 0x82, 0x56, 0xff, 0xb9, 0x7c, 0x52, 0xff, 0xba, 0x7e, 0x54, 0xff, 0xc1, 0x86, 0x59, 0xff, 0xd9, 0x95, 0x64, 0xff, 0xf4, 0xab, 0x77, 0xff, 0xfd, 0xc4, 0x8c, 0xff, 0xfc, 0xe1, 0x9e, 0xff, 0xfa, 0xf6, 0xaa, 0xff, 0xf8, 0xfa, 0xae, 0xff, 0xfb, 0xe8, 0xa6, 0xff, 0xfe, 0xc7, 0x92, 0xff, 0xee, 0xaa, 0x7b, 0xff, 0xcb, 0x92, 0x65, 0xff, 0xb2, 0x7b, 0x52, 0xff, 0xa4, 0x67, 0x42, 0xff, 0x99, 0x5b, 0x34, 0xff, 0x91, 0x51, 0x2d, 0xff, 0x8b, 0x49, 0x29, 0xff, 0x85, 0x43, 0x26, 0xff, 0x82, 0x40, 0x24, 0xff, 0x7e, 0x3c, 0x21, 0xff, 0x7c, 0x39, 0x1f, 0xff, 0x7b, 0x38, 0x1d, 0xff, 0x79, 0x35, 0x19, 0xff, 0x78, 0x35, 0x18, 0xff, 0x76, 0x35, 0x18, 0xff, 0x77, 0x36, 0x18, 0xff, 0x78, 0x35, 0x1a, 0xff, 0x79, 0x35, 0x1b, 0xff, 0x7a, 0x37, 0x1c, 0xff, 0x7c, 0x3a, 0x1f, 0xff, 0x7c, 0x3a, 0x20, 0xff, 0x7d, 0x3a, 0x21, 0xff, 0x80, 0x3d, 0x22, 0xff, 0x81, 0x3f, 0x23, 0xff, 0x84, 0x42, 0x26, 0xff, 0x74, 0x35, 0x18, 0xff, 0x62, 0x2b, 0x0e, 0xff, 0x52, 0x15, 0x04, 0xff, 0x4b, 0x12, 0x02, 0xff, 0x4b, 0x16, 0x02, 0xff, 0x4b, 0x17, 0x02, 0xff, 0x4c, 0x18, 0x02, 0xff, 0x4c, 0x18, 0x01, 0xff, 0x57, 0x21, 0x07, 0xff, 0x63, 0x29, 0x0e, 0xff, 0x64, 0x26, 0x0e, 0xff, 0x75, 0x37, 0x1d, 0xff, 0x86, 0x44, 0x27, 0xff, 0x87, 0x48, 0x28, 0xff, 0x82, 0x42, 0x26, 0xff, 0x7d, 0x3b, 0x23, 0xff, 0x85, 0x42, 0x25, 0xff, 0x8c, 0x49, 0x29, 0xff, 0x88, 0x46, 0x27, 0xff, 0x83, 0x43, 0x24, 0xff, 0x80, 0x3f, 0x23, 0xff, 0x7f, 0x3c, 0x22, 0xff, 0x7d, 0x3c, 0x22, 0xff, 0x7f, 0x3d, 0x23, 0xff, 0x81, 0x41, 0x25, 0xff, 0x84, 0x44, 0x27, 0xff, 0x87, 0x46, 0x29, 0xff, 0x8a, 0x4b, 0x2a, 0xff, 0x8b, 0x4c, 0x2d, 0xff, 0x90, 0x4f, 0x2e, 0xff, 0x81, 0x41, 0x26, 0xff, 0x7a, 0x3b, 0x26, 0xff, 0x77, 0x39, 0x23, 0xff, 0x79, 0x3b, 0x24, 0xff, 0x78, 0x3a, 0x23, 0xff, 0x75, 0x36, 0x21, 0xff, 0x76, 0x36, 0x21, 0xff, 0x6d, 0x30, 0x19, 0xff, 0x68, 0x2b, 0x14, 0xff, 0x65, 0x28, 0x12, 0xff, 0x62, 0x26, 0x10, 0xff, 0x61, 0x25, 0x0d, 0xff, 0x5e, 0x22, 0x09, 0xff, 0x61, 0x27, 0x0f, 0xff, 0x5e, 0x22, 0x09, 0xff, 0x5d, 0x25, 0x0c, 0xff, 0x5c, 0x24, 0x09, 0xff, 0x5b, 0x23, 0x09, 0xff, 0x58, 0x22, 0x09, 0xff, 0x56, 0x21, 0x09, 0xff, 0x55, 0x1f, 0x07, 0xff, 0x54, 0x1c, 0x05, 0xff, 0x54, 0x1c, 0x05, 0xff, 0x54, 0x1c, 0x05, 0xff, 0x52, 0x19, 0x03, 0xff, 0x51, 0x19, 0x02, 0xff, 0x51, 0x19, 0x02, 0xff, 0x50, 0x16, 0x02, 0xff, 0x52, 0x19, 0x04, 0xff, 0x54, 0x1c, 0x05, 0xff, 0x54, 0x20, 0x05, 0xff, 0x53, 0x1d, 0x04, 0xff, 0x53, 0x1f, 0x03, 0xff, 0x57, 0x1c, 0x03, 0xff, 0x43, 0x12, 0x02, 0xff, 0x41, 0x0f, 0x02, 0xff, 0x41, 0x10, 0x02, 0xff, 0x42, 0x11, 0x02, 0xff, 0x46, 0x14, 0x02, 0xff, 0x3f, 0x0e, 0x01, 0xff, 0x9b, 0x5d, 0x3a, 0xff, 0xa9, 0x68, 0x3e, 0xff, 0x9b, 0x59, 0x33, 0xff, 0x96, 0x52, 0x2f, 0xff, + 0x97, 0x54, 0x2e, 0xff, 0x94, 0x51, 0x2d, 0xff, 0x91, 0x50, 0x2e, 0xff, 0x8c, 0x4a, 0x2a, 0xff, 0x85, 0x43, 0x27, 0xff, 0x83, 0x41, 0x26, 0xff, 0x82, 0x40, 0x25, 0xff, 0x80, 0x3f, 0x24, 0xff, 0x86, 0x43, 0x27, 0xff, 0x86, 0x42, 0x27, 0xff, 0x87, 0x46, 0x29, 0xff, 0x8d, 0x4d, 0x2b, 0xff, 0x94, 0x53, 0x31, 0xff, 0x9c, 0x5f, 0x3c, 0xff, 0xa7, 0x6e, 0x4a, 0xff, 0xb3, 0x7d, 0x58, 0xff, 0xc4, 0x8d, 0x68, 0xff, 0xd9, 0x9f, 0x79, 0xff, 0xee, 0xac, 0x85, 0xff, 0xfc, 0xbc, 0x91, 0xff, 0xfa, 0xd5, 0xa3, 0xff, 0xfb, 0xcd, 0xa2, 0xff, 0xfb, 0xc4, 0x99, 0xff, 0xfb, 0xb9, 0x8f, 0xff, 0xef, 0xaa, 0x82, 0xff, 0xd3, 0x9a, 0x72, 0xff, 0xbf, 0x89, 0x65, 0xff, 0xb4, 0x7d, 0x59, 0xff, 0xa6, 0x6c, 0x4b, 0xff, 0x99, 0x5f, 0x3e, 0xff, 0x93, 0x54, 0x34, 0xff, 0x8a, 0x4b, 0x2d, 0xff, 0x83, 0x44, 0x28, 0xff, 0x80, 0x3f, 0x26, 0xff, 0x7d, 0x3d, 0x23, 0xff, 0x7c, 0x3b, 0x22, 0xff, 0x7c, 0x3a, 0x22, 0xff, 0x79, 0x37, 0x22, 0xff, 0x7a, 0x3a, 0x22, 0xff, 0x7b, 0x3b, 0x22, 0xff, 0x7b, 0x3a, 0x22, 0xff, 0x7a, 0x39, 0x21, 0xff, 0x7e, 0x3c, 0x23, 0xff, 0x81, 0x40, 0x24, 0xff, 0x7f, 0x3e, 0x25, 0xff, 0x83, 0x42, 0x25, 0xff, 0x84, 0x41, 0x26, 0xff, 0x84, 0x41, 0x26, 0xff, 0x83, 0x43, 0x26, 0xff, 0x8c, 0x4a, 0x29, 0xff, 0x8c, 0x4a, 0x2a, 0xff, 0x8c, 0x4c, 0x2b, 0xff, 0x8d, 0x51, 0x2f, 0xff, 0x8f, 0x54, 0x33, 0xff, 0x8c, 0x4c, 0x2c, 0xff, 0x75, 0x36, 0x1d, 0xff, 0x6a, 0x29, 0x0f, 0xff, 0x70, 0x30, 0x16, 0xff, 0x74, 0x32, 0x1a, 0xff, 0x78, 0x35, 0x1d, 0xff, 0x7b, 0x3a, 0x1f, 0xff, 0x7a, 0x39, 0x1f, 0xff, 0x7e, 0x3c, 0x23, 0xff, 0x84, 0x41, 0x24, 0xff, 0x88, 0x43, 0x24, 0xff, 0x8b, 0x46, 0x27, 0xff, 0x8f, 0x4b, 0x28, 0xff, 0x94, 0x51, 0x2b, 0xff, 0xa1, 0x5f, 0x34, 0xff, 0xa6, 0x63, 0x38, 0xff, 0xaa, 0x69, 0x3e, 0xff, 0xaf, 0x6e, 0x42, 0xff, 0xb4, 0x73, 0x46, 0xff, 0xb7, 0x76, 0x48, 0xff, 0xbb, 0x75, 0x49, 0xff, 0xc2, 0x7b, 0x4b, 0xff, 0xcf, 0x85, 0x53, 0xff, 0xd5, 0x8a, 0x55, 0xff, 0xd7, 0x90, 0x5b, 0xff, 0xde, 0x96, 0x60, 0xff, 0xd9, 0x93, 0x5f, 0xff, 0xbb, 0x7f, 0x56, 0xff, 0xb8, 0x7e, 0x54, 0xff, 0xba, 0x7f, 0x54, 0xff, 0xbc, 0x7c, 0x50, 0xff, 0xc1, 0x81, 0x53, 0xff, 0xac, 0x6d, 0x47, 0xff, 0x80, 0x3e, 0x21, 0xff, 0x88, 0x45, 0x27, 0xff, 0x89, 0x47, 0x27, 0xff, 0x88, 0x45, 0x26, 0xff, 0x89, 0x47, 0x27, 0xff, 0x8a, 0x4a, 0x28, 0xff, 0x8b, 0x4a, 0x29, 0xff, 0x8c, 0x4d, 0x2a, 0xff, 0x8e, 0x4d, 0x2c, 0xff, 0x8f, 0x51, 0x2d, 0xff, 0x91, 0x56, 0x2e, 0xff, 0x93, 0x57, 0x30, 0xff, 0x96, 0x5a, 0x32, 0xff, 0x98, 0x5d, 0x36, 0xff, 0x98, 0x62, 0x3a, 0xff, 0x98, 0x64, 0x3b, 0xff, 0x97, 0x63, 0x3d, 0xff, 0x97, 0x63, 0x3e, 0xff, 0x96, 0x64, 0x3c, 0xff, 0x98, 0x64, 0x3c, 0xff, 0x99, 0x65, 0x3c, 0xff, 0x98, 0x63, 0x3a, 0xff, 0x97, 0x62, 0x37, 0xff, 0x97, 0x62, 0x39, 0xff, 0x96, 0x61, 0x39, 0xff, 0x97, 0x62, 0x39, 0xff, 0x97, 0x62, 0x3a, 0xff, 0x96, 0x60, 0x3b, 0xff, 0x93, 0x5c, 0x3a, 0xff, 0x91, 0x59, 0x39, 0xff, 0x92, 0x58, 0x3b, 0xff, 0x90, 0x57, 0x3b, 0xff, 0x9b, 0x62, 0x42, 0xff, 0xba, 0x7d, 0x54, 0xff, 0xc8, 0x88, 0x5c, 0xff, 0xc7, 0x87, 0x5b, 0xff, 0xc4, 0x85, 0x59, 0xff, 0xbc, 0x7f, 0x56, 0xff, 0xba, 0x7f, 0x55, 0xff, 0xc0, 0x84, 0x59, 0xff, 0xd5, 0x92, 0x64, 0xff, 0xf2, 0xa7, 0x75, 0xff, 0xfd, 0xc1, 0x8a, 0xff, 0xfa, 0xe4, 0xa0, 0xff, 0xf4, 0xf9, 0xb1, 0xff, 0xf2, 0xfa, 0xb9, 0xff, 0xf7, 0xf9, 0xb3, 0xff, 0xfb, 0xe0, 0xa2, 0xff, 0xfb, 0xbf, 0x8a, 0xff, 0xdf, 0x9f, 0x72, 0xff, 0xbe, 0x86, 0x5b, 0xff, 0xac, 0x71, 0x4a, 0xff, 0xa1, 0x62, 0x3c, 0xff, 0x97, 0x56, 0x30, 0xff, 0x8f, 0x4d, 0x29, 0xff, 0x87, 0x45, 0x26, 0xff, 0x84, 0x41, 0x24, 0xff, 0x82, 0x3f, 0x23, 0xff, 0x7e, 0x3b, 0x1f, 0xff, 0x7c, 0x39, 0x1c, 0xff, 0x7a, 0x36, 0x19, 0xff, 0x78, 0x34, 0x18, 0xff, 0x77, 0x34, 0x18, 0xff, 0x77, 0x35, 0x1a, 0xff, 0x79, 0x37, 0x1b, 0xff, 0x7a, 0x38, 0x1b, 0xff, 0x7b, 0x38, 0x1f, 0xff, 0x7c, 0x3a, 0x20, 0xff, 0x7d, 0x3c, 0x21, 0xff, 0x7f, 0x3d, 0x22, 0xff, 0x7e, 0x3b, 0x22, 0xff, 0x80, 0x3e, 0x23, 0xff, 0x81, 0x40, 0x23, 0xff, 0x88, 0x45, 0x29, 0xff, 0x6a, 0x2d, 0x11, 0xff, 0x50, 0x17, 0x03, 0xff, 0x4a, 0x13, 0x02, 0xff, 0x49, 0x13, 0x02, 0xff, 0x4a, 0x16, 0x02, 0xff, 0x4e, 0x17, 0x02, 0xff, 0x50, 0x17, 0x02, 0xff, 0x52, 0x1b, 0x02, 0xff, 0x64, 0x27, 0x10, 0xff, 0x65, 0x27, 0x0f, 0xff, 0x5e, 0x22, 0x09, 0xff, 0x79, 0x3b, 0x20, 0xff, 0x87, 0x45, 0x28, 0xff, 0x83, 0x42, 0x26, 0xff, 0x7b, 0x3a, 0x21, 0xff, 0x7e, 0x3c, 0x22, 0xff, 0x8a, 0x47, 0x27, 0xff, 0x89, 0x46, 0x26, 0xff, 0x85, 0x42, 0x26, 0xff, 0x82, 0x40, 0x24, 0xff, 0x80, 0x3f, 0x24, 0xff, 0x80, 0x3e, 0x23, 0xff, 0x81, 0x3f, 0x24, 0xff, 0x85, 0x42, 0x26, 0xff, 0x89, 0x48, 0x29, 0xff, 0x8c, 0x4c, 0x2c, 0xff, 0x8b, 0x4c, 0x2d, 0xff, 0x8a, 0x4c, 0x2d, 0xff, 0x8e, 0x50, 0x2e, 0xff, 0x81, 0x43, 0x27, 0xff, 0x7b, 0x3d, 0x26, 0xff, 0x76, 0x38, 0x23, 0xff, 0x77, 0x38, 0x22, 0xff, 0x78, 0x3a, 0x23, 0xff, 0x75, 0x37, 0x22, 0xff, 0x74, 0x36, 0x22, 0xff, 0x70, 0x30, 0x1a, 0xff, 0x6a, 0x2b, 0x16, 0xff, 0x66, 0x2a, 0x12, 0xff, 0x64, 0x29, 0x11, 0xff, 0x61, 0x25, 0x0d, 0xff, 0x5d, 0x25, 0x0b, 0xff, 0x62, 0x26, 0x0e, 0xff, 0x60, 0x25, 0x0c, 0xff, 0x61, 0x25, 0x0c, 0xff, 0x5c, 0x24, 0x0b, 0xff, 0x5b, 0x22, 0x09, 0xff, 0x5b, 0x23, 0x09, 0xff, 0x57, 0x21, 0x08, 0xff, 0x56, 0x1e, 0x05, 0xff, 0x55, 0x1d, 0x05, 0xff, 0x54, 0x22, 0x05, 0xff, 0x54, 0x1d, 0x05, 0xff, 0x52, 0x16, 0x03, 0xff, 0x51, 0x17, 0x02, 0xff, 0x53, 0x1a, 0x03, 0xff, 0x53, 0x1b, 0x04, 0xff, 0x54, 0x1b, 0x04, 0xff, 0x54, 0x20, 0x05, 0xff, 0x5a, 0x23, 0x09, 0xff, 0x6c, 0x31, 0x1a, 0xff, 0x7a, 0x3e, 0x25, 0xff, 0x7e, 0x40, 0x28, 0xff, 0x85, 0x46, 0x2b, 0xff, 0x8a, 0x4c, 0x2d, 0xff, 0x8d, 0x4f, 0x2f, 0xff, 0x90, 0x50, 0x2f, 0xff, 0x8f, 0x4e, 0x31, 0xff, 0x8c, 0x4c, 0x2e, 0xff, 0x81, 0x44, 0x27, 0xff, 0xa2, 0x62, 0x3e, 0xff, 0xa4, 0x62, 0x3c, 0xff, 0x9b, 0x58, 0x32, 0xff, + 0xa9, 0x68, 0x40, 0xff, 0xa8, 0x66, 0x3f, 0xff, 0xa6, 0x64, 0x3e, 0xff, 0xa0, 0x60, 0x3a, 0xff, 0x96, 0x55, 0x32, 0xff, 0x90, 0x4d, 0x2d, 0xff, 0x8a, 0x46, 0x29, 0xff, 0x85, 0x42, 0x26, 0xff, 0x85, 0x43, 0x26, 0xff, 0x86, 0x43, 0x27, 0xff, 0x89, 0x47, 0x29, 0xff, 0x8b, 0x4b, 0x2a, 0xff, 0x8f, 0x4f, 0x2e, 0xff, 0x97, 0x58, 0x36, 0xff, 0xa0, 0x63, 0x43, 0xff, 0xac, 0x74, 0x51, 0xff, 0xbb, 0x86, 0x61, 0xff, 0xcf, 0x97, 0x6f, 0xff, 0xea, 0xaa, 0x84, 0xff, 0xfb, 0xc7, 0x98, 0xff, 0xfc, 0xcf, 0xa0, 0xff, 0xfb, 0xce, 0xa0, 0xff, 0xfb, 0xc8, 0x9b, 0xff, 0xfc, 0xbf, 0x93, 0xff, 0xf9, 0xb1, 0x86, 0xff, 0xdd, 0xa0, 0x79, 0xff, 0xc6, 0x91, 0x6a, 0xff, 0xb6, 0x7e, 0x5b, 0xff, 0xa9, 0x70, 0x4d, 0xff, 0xa0, 0x64, 0x43, 0xff, 0x97, 0x59, 0x38, 0xff, 0x8e, 0x4f, 0x2f, 0xff, 0x88, 0x48, 0x2a, 0xff, 0x84, 0x42, 0x28, 0xff, 0x82, 0x41, 0x25, 0xff, 0x82, 0x40, 0x25, 0xff, 0x7e, 0x3e, 0x24, 0xff, 0x7f, 0x3d, 0x24, 0xff, 0x7e, 0x3d, 0x24, 0xff, 0x7e, 0x3e, 0x24, 0xff, 0x82, 0x41, 0x24, 0xff, 0x85, 0x43, 0x26, 0xff, 0x88, 0x47, 0x28, 0xff, 0x8a, 0x47, 0x29, 0xff, 0x88, 0x46, 0x27, 0xff, 0x86, 0x44, 0x27, 0xff, 0x88, 0x44, 0x27, 0xff, 0x88, 0x45, 0x27, 0xff, 0x87, 0x47, 0x26, 0xff, 0x8b, 0x49, 0x28, 0xff, 0x8c, 0x4b, 0x2a, 0xff, 0x8c, 0x4e, 0x2d, 0xff, 0x8e, 0x50, 0x30, 0xff, 0x8c, 0x4c, 0x2d, 0xff, 0x73, 0x34, 0x1a, 0xff, 0x61, 0x24, 0x0b, 0xff, 0x6b, 0x2b, 0x13, 0xff, 0x6e, 0x2f, 0x15, 0xff, 0x74, 0x31, 0x18, 0xff, 0x76, 0x34, 0x1b, 0xff, 0x78, 0x36, 0x1c, 0xff, 0x7b, 0x39, 0x1f, 0xff, 0x7d, 0x3c, 0x21, 0xff, 0x81, 0x3f, 0x22, 0xff, 0x83, 0x41, 0x24, 0xff, 0x89, 0x45, 0x26, 0xff, 0x8f, 0x4b, 0x28, 0xff, 0x98, 0x53, 0x2c, 0xff, 0xa0, 0x5b, 0x31, 0xff, 0xa5, 0x61, 0x34, 0xff, 0xa9, 0x65, 0x39, 0xff, 0xac, 0x69, 0x3d, 0xff, 0xb0, 0x6e, 0x40, 0xff, 0xb5, 0x72, 0x43, 0xff, 0xb8, 0x75, 0x47, 0xff, 0xc0, 0x7a, 0x4b, 0xff, 0xcc, 0x84, 0x53, 0xff, 0xd3, 0x88, 0x54, 0xff, 0xd8, 0x8a, 0x56, 0xff, 0xd8, 0x8a, 0x57, 0xff, 0xc3, 0x7d, 0x4f, 0xff, 0xb1, 0x74, 0x48, 0xff, 0xb8, 0x79, 0x4c, 0xff, 0xba, 0x7a, 0x4e, 0xff, 0xbb, 0x7b, 0x4e, 0xff, 0xb8, 0x78, 0x4b, 0xff, 0xba, 0x79, 0x4d, 0xff, 0xac, 0x6c, 0x42, 0xff, 0x8b, 0x49, 0x28, 0xff, 0x87, 0x44, 0x26, 0xff, 0x88, 0x47, 0x27, 0xff, 0x88, 0x45, 0x27, 0xff, 0x8a, 0x48, 0x28, 0xff, 0x8c, 0x4b, 0x29, 0xff, 0x8e, 0x4d, 0x2b, 0xff, 0x90, 0x4f, 0x2d, 0xff, 0x90, 0x52, 0x2d, 0xff, 0x91, 0x55, 0x2f, 0xff, 0x94, 0x5a, 0x32, 0xff, 0x96, 0x5d, 0x33, 0xff, 0x97, 0x5f, 0x37, 0xff, 0x98, 0x61, 0x3d, 0xff, 0x97, 0x61, 0x40, 0xff, 0x97, 0x62, 0x3f, 0xff, 0x98, 0x61, 0x3f, 0xff, 0x97, 0x62, 0x40, 0xff, 0x96, 0x63, 0x3f, 0xff, 0x97, 0x64, 0x3c, 0xff, 0x98, 0x63, 0x3a, 0xff, 0x98, 0x61, 0x37, 0xff, 0x97, 0x61, 0x37, 0xff, 0x96, 0x61, 0x37, 0xff, 0x97, 0x61, 0x38, 0xff, 0x97, 0x61, 0x38, 0xff, 0x95, 0x60, 0x38, 0xff, 0x91, 0x5b, 0x37, 0xff, 0x90, 0x58, 0x36, 0xff, 0x93, 0x5b, 0x39, 0xff, 0x93, 0x5a, 0x3b, 0xff, 0x97, 0x5e, 0x41, 0xff, 0xb8, 0x7b, 0x56, 0xff, 0xcc, 0x8b, 0x60, 0xff, 0xcb, 0x8b, 0x5e, 0xff, 0xcb, 0x8c, 0x5e, 0xff, 0xc1, 0x84, 0x5a, 0xff, 0xba, 0x7f, 0x56, 0xff, 0xbe, 0x83, 0x58, 0xff, 0xcf, 0x8f, 0x60, 0xff, 0xec, 0xa4, 0x71, 0xff, 0xfc, 0xbd, 0x88, 0xff, 0xfa, 0xe4, 0x9f, 0xff, 0xf5, 0xfb, 0xb4, 0xff, 0xf4, 0xfb, 0xbe, 0xff, 0xf5, 0xfb, 0xbc, 0xff, 0xf9, 0xf0, 0xac, 0xff, 0xfe, 0xcf, 0x95, 0xff, 0xee, 0xab, 0x7d, 0xff, 0xcc, 0x91, 0x67, 0xff, 0xb4, 0x7b, 0x52, 0xff, 0xa7, 0x69, 0x42, 0xff, 0x9b, 0x5c, 0x35, 0xff, 0x92, 0x51, 0x2c, 0xff, 0x8c, 0x49, 0x28, 0xff, 0x88, 0x44, 0x25, 0xff, 0x83, 0x40, 0x23, 0xff, 0x80, 0x3d, 0x22, 0xff, 0x7d, 0x39, 0x1e, 0xff, 0x7b, 0x37, 0x1b, 0xff, 0x79, 0x36, 0x1a, 0xff, 0x79, 0x36, 0x1a, 0xff, 0x7a, 0x36, 0x1a, 0xff, 0x7a, 0x38, 0x1c, 0xff, 0x7b, 0x39, 0x1e, 0xff, 0x7c, 0x3a, 0x20, 0xff, 0x7e, 0x3c, 0x22, 0xff, 0x7f, 0x3e, 0x23, 0xff, 0x80, 0x3f, 0x23, 0xff, 0x81, 0x3f, 0x23, 0xff, 0x81, 0x3f, 0x23, 0xff, 0x80, 0x3e, 0x23, 0xff, 0x83, 0x41, 0x24, 0xff, 0x80, 0x40, 0x26, 0xff, 0x5b, 0x24, 0x0c, 0xff, 0x4b, 0x14, 0x01, 0xff, 0x4b, 0x18, 0x02, 0xff, 0x4d, 0x17, 0x02, 0xff, 0x4f, 0x19, 0x03, 0xff, 0x51, 0x1a, 0x03, 0xff, 0x53, 0x1c, 0x04, 0xff, 0x64, 0x29, 0x0f, 0xff, 0x64, 0x29, 0x11, 0xff, 0x65, 0x29, 0x12, 0xff, 0x64, 0x28, 0x11, 0xff, 0x7c, 0x3e, 0x22, 0xff, 0x84, 0x43, 0x27, 0xff, 0x7e, 0x3e, 0x25, 0xff, 0x7b, 0x39, 0x22, 0xff, 0x8a, 0x46, 0x28, 0xff, 0x89, 0x44, 0x27, 0xff, 0x87, 0x44, 0x25, 0xff, 0x82, 0x41, 0x24, 0xff, 0x7f, 0x3d, 0x23, 0xff, 0x80, 0x3f, 0x24, 0xff, 0x81, 0x40, 0x25, 0xff, 0x84, 0x41, 0x26, 0xff, 0x88, 0x45, 0x28, 0xff, 0x89, 0x49, 0x2a, 0xff, 0x89, 0x4b, 0x2c, 0xff, 0x89, 0x4e, 0x2e, 0xff, 0x8a, 0x4d, 0x2e, 0xff, 0x80, 0x42, 0x27, 0xff, 0x7b, 0x3c, 0x25, 0xff, 0x78, 0x3a, 0x23, 0xff, 0x75, 0x36, 0x22, 0xff, 0x79, 0x3b, 0x24, 0xff, 0x77, 0x37, 0x23, 0xff, 0x75, 0x35, 0x21, 0xff, 0x6f, 0x32, 0x19, 0xff, 0x6c, 0x2e, 0x17, 0xff, 0x67, 0x29, 0x14, 0xff, 0x65, 0x2a, 0x12, 0xff, 0x62, 0x25, 0x0d, 0xff, 0x60, 0x25, 0x0c, 0xff, 0x62, 0x25, 0x10, 0xff, 0x60, 0x27, 0x0d, 0xff, 0x61, 0x24, 0x0b, 0xff, 0x5b, 0x24, 0x0b, 0xff, 0x5b, 0x23, 0x09, 0xff, 0x5b, 0x22, 0x09, 0xff, 0x59, 0x20, 0x09, 0xff, 0x58, 0x21, 0x09, 0xff, 0x55, 0x20, 0x07, 0xff, 0x55, 0x1f, 0x06, 0xff, 0x59, 0x1f, 0x09, 0xff, 0x5b, 0x21, 0x0d, 0xff, 0x61, 0x26, 0x0f, 0xff, 0x6e, 0x31, 0x1a, 0xff, 0x77, 0x39, 0x24, 0xff, 0x7d, 0x3e, 0x27, 0xff, 0x83, 0x42, 0x2a, 0xff, 0x86, 0x45, 0x2a, 0xff, 0x87, 0x46, 0x2a, 0xff, 0x86, 0x43, 0x29, 0xff, 0x86, 0x45, 0x2a, 0xff, 0x88, 0x46, 0x29, 0xff, 0x88, 0x49, 0x2a, 0xff, 0x8a, 0x49, 0x2a, 0xff, 0x8a, 0x4a, 0x2b, 0xff, 0x8b, 0x4a, 0x2c, 0xff, 0x8b, 0x4b, 0x2b, 0xff, 0x8e, 0x4e, 0x2d, 0xff, 0x93, 0x52, 0x2f, 0xff, 0xa9, 0x69, 0x42, 0xff, 0xaa, 0x69, 0x42, 0xff, + 0xad, 0x6b, 0x41, 0xff, 0xab, 0x69, 0x40, 0xff, 0xaa, 0x6a, 0x40, 0xff, 0xaf, 0x6c, 0x43, 0xff, 0xad, 0x6d, 0x43, 0xff, 0xac, 0x69, 0x41, 0xff, 0xa4, 0x62, 0x3d, 0xff, 0xa0, 0x60, 0x3a, 0xff, 0x99, 0x58, 0x35, 0xff, 0x88, 0x45, 0x26, 0xff, 0x89, 0x47, 0x26, 0xff, 0x8a, 0x4a, 0x2a, 0xff, 0x8e, 0x4c, 0x2c, 0xff, 0x93, 0x51, 0x30, 0xff, 0x98, 0x5a, 0x39, 0xff, 0xa4, 0x68, 0x45, 0xff, 0xae, 0x75, 0x51, 0xff, 0xc6, 0x90, 0x6a, 0xff, 0xe2, 0xa6, 0x7c, 0xff, 0xf6, 0xb0, 0x85, 0xff, 0xfd, 0xba, 0x8e, 0xff, 0xfb, 0xbd, 0x93, 0xff, 0xfd, 0xbb, 0x91, 0xff, 0xfc, 0xb5, 0x8a, 0xff, 0xf1, 0xaa, 0x80, 0xff, 0xd7, 0x9c, 0x75, 0xff, 0xc5, 0x8f, 0x69, 0xff, 0xb7, 0x7e, 0x5c, 0xff, 0xac, 0x74, 0x50, 0xff, 0xa4, 0x68, 0x43, 0xff, 0x99, 0x5c, 0x39, 0xff, 0x93, 0x52, 0x31, 0xff, 0x8d, 0x4c, 0x2b, 0xff, 0x88, 0x46, 0x28, 0xff, 0x88, 0x44, 0x25, 0xff, 0x84, 0x42, 0x25, 0xff, 0x82, 0x3f, 0x25, 0xff, 0x85, 0x41, 0x25, 0xff, 0x86, 0x43, 0x26, 0xff, 0x87, 0x45, 0x26, 0xff, 0x8d, 0x4b, 0x2b, 0xff, 0x8f, 0x50, 0x2d, 0xff, 0x91, 0x52, 0x2e, 0xff, 0x90, 0x4f, 0x2c, 0xff, 0x8e, 0x4d, 0x2a, 0xff, 0x8e, 0x4d, 0x2b, 0xff, 0x8d, 0x4b, 0x29, 0xff, 0x8a, 0x48, 0x28, 0xff, 0x8b, 0x49, 0x28, 0xff, 0x8b, 0x49, 0x28, 0xff, 0x8b, 0x4c, 0x2b, 0xff, 0x8e, 0x4e, 0x2d, 0xff, 0x8b, 0x4d, 0x2d, 0xff, 0x6d, 0x31, 0x14, 0xff, 0x5d, 0x21, 0x07, 0xff, 0x64, 0x27, 0x0f, 0xff, 0x68, 0x2a, 0x10, 0xff, 0x6d, 0x2e, 0x13, 0xff, 0x6f, 0x30, 0x17, 0xff, 0x75, 0x33, 0x19, 0xff, 0x75, 0x34, 0x19, 0xff, 0x75, 0x36, 0x1b, 0xff, 0x7c, 0x3b, 0x1f, 0xff, 0x7f, 0x3e, 0x21, 0xff, 0x84, 0x42, 0x23, 0xff, 0x89, 0x44, 0x24, 0xff, 0x8e, 0x4a, 0x28, 0xff, 0x97, 0x53, 0x2d, 0xff, 0x9b, 0x57, 0x30, 0xff, 0x9f, 0x5d, 0x32, 0xff, 0xa5, 0x61, 0x35, 0xff, 0xa9, 0x67, 0x39, 0xff, 0xad, 0x6c, 0x3d, 0xff, 0xb3, 0x6f, 0x41, 0xff, 0xb8, 0x74, 0x45, 0xff, 0xbf, 0x7d, 0x4b, 0xff, 0xc7, 0x85, 0x51, 0xff, 0xcb, 0x83, 0x52, 0xff, 0xd1, 0x85, 0x52, 0xff, 0xc9, 0x7f, 0x4f, 0xff, 0xae, 0x6a, 0x41, 0xff, 0xb3, 0x70, 0x44, 0xff, 0xb7, 0x74, 0x47, 0xff, 0xb7, 0x75, 0x47, 0xff, 0xb7, 0x75, 0x47, 0xff, 0xb5, 0x73, 0x46, 0xff, 0xb6, 0x74, 0x48, 0xff, 0xbd, 0x7b, 0x4e, 0xff, 0xaf, 0x6f, 0x46, 0xff, 0x8a, 0x48, 0x26, 0xff, 0x87, 0x45, 0x25, 0xff, 0x88, 0x45, 0x26, 0xff, 0x8a, 0x47, 0x27, 0xff, 0x8c, 0x4b, 0x28, 0xff, 0x8f, 0x50, 0x2a, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x91, 0x53, 0x2e, 0xff, 0x93, 0x56, 0x2f, 0xff, 0x95, 0x5a, 0x31, 0xff, 0x97, 0x5f, 0x35, 0xff, 0x96, 0x5f, 0x3b, 0xff, 0x96, 0x61, 0x3f, 0xff, 0x97, 0x63, 0x42, 0xff, 0x98, 0x63, 0x42, 0xff, 0x97, 0x64, 0x42, 0xff, 0x96, 0x63, 0x42, 0xff, 0x97, 0x64, 0x41, 0xff, 0x97, 0x64, 0x3e, 0xff, 0x98, 0x63, 0x3b, 0xff, 0x99, 0x62, 0x38, 0xff, 0x97, 0x60, 0x36, 0xff, 0x97, 0x60, 0x36, 0xff, 0x97, 0x60, 0x37, 0xff, 0x95, 0x5f, 0x36, 0xff, 0x93, 0x5d, 0x35, 0xff, 0x91, 0x5a, 0x34, 0xff, 0x90, 0x59, 0x35, 0xff, 0x93, 0x5c, 0x38, 0xff, 0x93, 0x5c, 0x39, 0xff, 0x93, 0x5b, 0x3c, 0xff, 0xaf, 0x73, 0x4f, 0xff, 0xcb, 0x89, 0x5f, 0xff, 0xce, 0x8d, 0x60, 0xff, 0xd1, 0x90, 0x62, 0xff, 0xc7, 0x88, 0x5c, 0xff, 0xbb, 0x7f, 0x55, 0xff, 0xbd, 0x82, 0x55, 0xff, 0xc7, 0x8c, 0x5c, 0xff, 0xe5, 0x9c, 0x6b, 0xff, 0xfb, 0xb3, 0x7f, 0xff, 0xfb, 0xd8, 0x99, 0xff, 0xf6, 0xf6, 0xb0, 0xff, 0xf4, 0xfc, 0xbe, 0xff, 0xf5, 0xfc, 0xbf, 0xff, 0xf7, 0xf9, 0xb6, 0xff, 0xfc, 0xdd, 0xa0, 0xff, 0xfb, 0xb8, 0x87, 0xff, 0xdd, 0x9d, 0x71, 0xff, 0xbe, 0x87, 0x5b, 0xff, 0xac, 0x71, 0x49, 0xff, 0x9d, 0x60, 0x39, 0xff, 0x96, 0x57, 0x30, 0xff, 0x90, 0x4e, 0x2c, 0xff, 0x8a, 0x47, 0x27, 0xff, 0x85, 0x42, 0x24, 0xff, 0x81, 0x3e, 0x22, 0xff, 0x7f, 0x3c, 0x21, 0xff, 0x7b, 0x39, 0x1e, 0xff, 0x7a, 0x36, 0x1c, 0xff, 0x7a, 0x37, 0x1b, 0xff, 0x7a, 0x36, 0x1a, 0xff, 0x7a, 0x37, 0x1a, 0xff, 0x7b, 0x37, 0x1c, 0xff, 0x7c, 0x3b, 0x1f, 0xff, 0x7e, 0x3d, 0x21, 0xff, 0x7d, 0x3f, 0x23, 0xff, 0x7f, 0x3f, 0x23, 0xff, 0x81, 0x3f, 0x23, 0xff, 0x81, 0x3f, 0x23, 0xff, 0x81, 0x3f, 0x23, 0xff, 0x82, 0x40, 0x24, 0xff, 0x87, 0x44, 0x27, 0xff, 0x72, 0x33, 0x1a, 0xff, 0x51, 0x18, 0x06, 0xff, 0x4b, 0x15, 0x01, 0xff, 0x4f, 0x18, 0x02, 0xff, 0x52, 0x1e, 0x04, 0xff, 0x53, 0x1f, 0x05, 0xff, 0x5c, 0x25, 0x0c, 0xff, 0x66, 0x29, 0x13, 0xff, 0x68, 0x2a, 0x14, 0xff, 0x69, 0x2a, 0x15, 0xff, 0x6c, 0x2e, 0x18, 0xff, 0x6b, 0x2d, 0x15, 0xff, 0x77, 0x38, 0x1c, 0xff, 0x7d, 0x3d, 0x23, 0xff, 0x79, 0x3a, 0x22, 0xff, 0x88, 0x46, 0x27, 0xff, 0x88, 0x44, 0x27, 0xff, 0x84, 0x41, 0x24, 0xff, 0x81, 0x3f, 0x23, 0xff, 0x7e, 0x3c, 0x23, 0xff, 0x7d, 0x3b, 0x22, 0xff, 0x7e, 0x3e, 0x23, 0xff, 0x83, 0x41, 0x25, 0xff, 0x88, 0x46, 0x29, 0xff, 0x87, 0x49, 0x2a, 0xff, 0x88, 0x4b, 0x2c, 0xff, 0x88, 0x4e, 0x2f, 0xff, 0x83, 0x47, 0x2b, 0xff, 0x7c, 0x3d, 0x25, 0xff, 0x7b, 0x3c, 0x24, 0xff, 0x79, 0x3b, 0x24, 0xff, 0x76, 0x37, 0x23, 0xff, 0x7a, 0x3b, 0x24, 0xff, 0x76, 0x38, 0x23, 0xff, 0x75, 0x36, 0x22, 0xff, 0x71, 0x33, 0x1b, 0xff, 0x6d, 0x30, 0x16, 0xff, 0x68, 0x2c, 0x14, 0xff, 0x67, 0x29, 0x12, 0xff, 0x63, 0x28, 0x11, 0xff, 0x62, 0x26, 0x0d, 0xff, 0x61, 0x26, 0x0e, 0xff, 0x61, 0x25, 0x0d, 0xff, 0x60, 0x26, 0x0e, 0xff, 0x5d, 0x25, 0x0b, 0xff, 0x5b, 0x22, 0x0a, 0xff, 0x5a, 0x23, 0x08, 0xff, 0x59, 0x1e, 0x06, 0xff, 0x59, 0x21, 0x07, 0xff, 0x69, 0x2f, 0x17, 0xff, 0x6d, 0x32, 0x1c, 0xff, 0x70, 0x32, 0x1e, 0xff, 0x76, 0x38, 0x23, 0xff, 0x7a, 0x3b, 0x25, 0xff, 0x7a, 0x3b, 0x24, 0xff, 0x7c, 0x3d, 0x25, 0xff, 0x7f, 0x41, 0x26, 0xff, 0x81, 0x3f, 0x27, 0xff, 0x82, 0x41, 0x26, 0xff, 0x80, 0x40, 0x24, 0xff, 0x81, 0x40, 0x25, 0xff, 0x83, 0x42, 0x26, 0xff, 0x83, 0x42, 0x27, 0xff, 0x86, 0x42, 0x27, 0xff, 0x86, 0x44, 0x27, 0xff, 0x88, 0x48, 0x29, 0xff, 0x8b, 0x4a, 0x2a, 0xff, 0x8c, 0x4d, 0x2a, 0xff, 0x8d, 0x4c, 0x2b, 0xff, 0x8f, 0x4d, 0x2c, 0xff, 0x94, 0x53, 0x2f, 0xff, 0xaf, 0x6e, 0x44, 0xff, + 0xb5, 0x73, 0x48, 0xff, 0xb2, 0x6e, 0x40, 0xff, 0xaf, 0x6b, 0x40, 0xff, 0xac, 0x69, 0x40, 0xff, 0xac, 0x69, 0x40, 0xff, 0xad, 0x6a, 0x41, 0xff, 0xb1, 0x6e, 0x45, 0xff, 0xaf, 0x6d, 0x45, 0xff, 0xb0, 0x6d, 0x45, 0xff, 0xad, 0x6b, 0x44, 0xff, 0xa5, 0x62, 0x3e, 0xff, 0x93, 0x52, 0x2e, 0xff, 0x89, 0x46, 0x26, 0xff, 0x8f, 0x4c, 0x2c, 0xff, 0x92, 0x50, 0x2f, 0xff, 0x98, 0x58, 0x37, 0xff, 0xa6, 0x6a, 0x47, 0xff, 0xb9, 0x81, 0x5a, 0xff, 0xc4, 0x8d, 0x66, 0xff, 0xd0, 0x98, 0x6f, 0xff, 0xd6, 0x9b, 0x73, 0xff, 0xdc, 0x9f, 0x77, 0xff, 0xe5, 0xa3, 0x7a, 0xff, 0xe2, 0xa3, 0x79, 0xff, 0xd7, 0x9a, 0x72, 0xff, 0xc9, 0x93, 0x6b, 0xff, 0xbd, 0x85, 0x61, 0xff, 0xb4, 0x7b, 0x58, 0xff, 0xaa, 0x72, 0x4c, 0xff, 0xa0, 0x63, 0x40, 0xff, 0x97, 0x57, 0x37, 0xff, 0x93, 0x50, 0x2e, 0xff, 0x8d, 0x4a, 0x2b, 0xff, 0x8b, 0x49, 0x28, 0xff, 0x88, 0x45, 0x27, 0xff, 0x87, 0x43, 0x26, 0xff, 0x89, 0x47, 0x26, 0xff, 0x88, 0x45, 0x27, 0xff, 0x8d, 0x4b, 0x27, 0xff, 0x90, 0x4f, 0x2c, 0xff, 0x93, 0x53, 0x2e, 0xff, 0x92, 0x54, 0x30, 0xff, 0x92, 0x52, 0x2d, 0xff, 0x92, 0x50, 0x2b, 0xff, 0x93, 0x4f, 0x2c, 0xff, 0x93, 0x50, 0x2c, 0xff, 0x91, 0x50, 0x2c, 0xff, 0x91, 0x50, 0x2c, 0xff, 0x8f, 0x4d, 0x2d, 0xff, 0x8f, 0x4d, 0x2c, 0xff, 0x90, 0x4e, 0x2d, 0xff, 0x88, 0x49, 0x2a, 0xff, 0x6b, 0x31, 0x16, 0xff, 0x59, 0x20, 0x03, 0xff, 0x60, 0x24, 0x08, 0xff, 0x63, 0x27, 0x0a, 0xff, 0x66, 0x29, 0x0f, 0xff, 0x6a, 0x2c, 0x12, 0xff, 0x6f, 0x2e, 0x13, 0xff, 0x70, 0x30, 0x16, 0xff, 0x72, 0x32, 0x17, 0xff, 0x78, 0x36, 0x19, 0xff, 0x7a, 0x38, 0x1e, 0xff, 0x7f, 0x3b, 0x21, 0xff, 0x84, 0x40, 0x23, 0xff, 0x88, 0x44, 0x25, 0xff, 0x8f, 0x4c, 0x28, 0xff, 0x96, 0x53, 0x2c, 0xff, 0x98, 0x54, 0x2e, 0xff, 0x9e, 0x5a, 0x32, 0xff, 0xa4, 0x61, 0x34, 0xff, 0xa8, 0x65, 0x38, 0xff, 0xad, 0x6a, 0x3d, 0xff, 0xb1, 0x6e, 0x41, 0xff, 0xb6, 0x74, 0x44, 0xff, 0xbd, 0x7c, 0x4b, 0xff, 0xc2, 0x7f, 0x51, 0xff, 0xc9, 0x85, 0x54, 0xff, 0xc6, 0x80, 0x4f, 0xff, 0xae, 0x6b, 0x40, 0xff, 0xab, 0x69, 0x3f, 0xff, 0xae, 0x6b, 0x40, 0xff, 0xb2, 0x6f, 0x41, 0xff, 0xb5, 0x71, 0x43, 0xff, 0xb5, 0x72, 0x45, 0xff, 0xb3, 0x70, 0x43, 0xff, 0xb4, 0x71, 0x45, 0xff, 0xb5, 0x74, 0x48, 0xff, 0xc0, 0x7f, 0x52, 0xff, 0xae, 0x6d, 0x46, 0xff, 0x82, 0x40, 0x21, 0xff, 0x86, 0x47, 0x27, 0xff, 0x89, 0x49, 0x27, 0xff, 0x8d, 0x4d, 0x26, 0xff, 0x90, 0x51, 0x2a, 0xff, 0x91, 0x54, 0x2d, 0xff, 0x93, 0x56, 0x2f, 0xff, 0x95, 0x57, 0x31, 0xff, 0x96, 0x59, 0x32, 0xff, 0x95, 0x5e, 0x38, 0xff, 0x96, 0x62, 0x3c, 0xff, 0x97, 0x63, 0x40, 0xff, 0x97, 0x63, 0x42, 0xff, 0x96, 0x63, 0x42, 0xff, 0x97, 0x64, 0x42, 0xff, 0x97, 0x63, 0x41, 0xff, 0x98, 0x63, 0x42, 0xff, 0x96, 0x62, 0x40, 0xff, 0x96, 0x64, 0x3d, 0xff, 0x98, 0x63, 0x38, 0xff, 0x96, 0x60, 0x35, 0xff, 0x97, 0x60, 0x35, 0xff, 0x96, 0x5e, 0x34, 0xff, 0x94, 0x5e, 0x32, 0xff, 0x93, 0x5c, 0x33, 0xff, 0x90, 0x58, 0x32, 0xff, 0x90, 0x59, 0x32, 0xff, 0x93, 0x5d, 0x34, 0xff, 0x94, 0x5f, 0x39, 0xff, 0x90, 0x5a, 0x39, 0xff, 0xa3, 0x68, 0x45, 0xff, 0xc7, 0x87, 0x5c, 0xff, 0xd3, 0x92, 0x63, 0xff, 0xd7, 0x92, 0x63, 0xff, 0xd0, 0x8b, 0x5e, 0xff, 0xc0, 0x81, 0x56, 0xff, 0xbc, 0x80, 0x54, 0xff, 0xc2, 0x86, 0x5a, 0xff, 0xd8, 0x93, 0x64, 0xff, 0xf5, 0xaa, 0x76, 0xff, 0xff, 0xc9, 0x8e, 0xff, 0xf8, 0xed, 0xa6, 0xff, 0xf4, 0xfc, 0xb8, 0xff, 0xf4, 0xf9, 0xbe, 0xff, 0xf5, 0xfb, 0xb7, 0xff, 0xf9, 0xe7, 0xa6, 0xff, 0xfe, 0xc4, 0x8f, 0xff, 0xea, 0xa6, 0x76, 0xff, 0xc8, 0x8c, 0x63, 0xff, 0xb1, 0x76, 0x50, 0xff, 0xa3, 0x67, 0x3f, 0xff, 0x99, 0x5a, 0x34, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x8b, 0x4a, 0x28, 0xff, 0x86, 0x44, 0x25, 0xff, 0x83, 0x41, 0x23, 0xff, 0x80, 0x3f, 0x22, 0xff, 0x7d, 0x3b, 0x1f, 0xff, 0x7b, 0x38, 0x1d, 0xff, 0x79, 0x37, 0x1c, 0xff, 0x7a, 0x37, 0x1b, 0xff, 0x7a, 0x37, 0x1b, 0xff, 0x7b, 0x38, 0x1d, 0xff, 0x7c, 0x39, 0x1f, 0xff, 0x7d, 0x3b, 0x21, 0xff, 0x7f, 0x3d, 0x23, 0xff, 0x80, 0x40, 0x24, 0xff, 0x81, 0x3f, 0x23, 0xff, 0x81, 0x3f, 0x23, 0xff, 0x81, 0x40, 0x23, 0xff, 0x83, 0x42, 0x25, 0xff, 0x83, 0x41, 0x25, 0xff, 0x7d, 0x3d, 0x23, 0xff, 0x5d, 0x23, 0x0b, 0xff, 0x51, 0x1e, 0x02, 0xff, 0x53, 0x1b, 0x04, 0xff, 0x54, 0x1d, 0x05, 0xff, 0x53, 0x1e, 0x04, 0xff, 0x66, 0x2b, 0x12, 0xff, 0x6d, 0x2d, 0x16, 0xff, 0x6a, 0x2a, 0x14, 0xff, 0x6a, 0x2a, 0x14, 0xff, 0x6a, 0x2b, 0x15, 0xff, 0x6a, 0x2f, 0x14, 0xff, 0x63, 0x27, 0x10, 0xff, 0x76, 0x38, 0x1f, 0xff, 0x7b, 0x3a, 0x23, 0xff, 0x86, 0x43, 0x26, 0xff, 0x86, 0x45, 0x26, 0xff, 0x81, 0x40, 0x24, 0xff, 0x7e, 0x3e, 0x23, 0xff, 0x7c, 0x3c, 0x22, 0xff, 0x7b, 0x3b, 0x23, 0xff, 0x7d, 0x3b, 0x24, 0xff, 0x81, 0x3e, 0x25, 0xff, 0x86, 0x43, 0x27, 0xff, 0x88, 0x49, 0x2b, 0xff, 0x86, 0x4a, 0x2b, 0xff, 0x88, 0x4d, 0x2f, 0xff, 0x7e, 0x41, 0x27, 0xff, 0x7a, 0x3b, 0x24, 0xff, 0x7c, 0x3e, 0x24, 0xff, 0x7a, 0x3d, 0x25, 0xff, 0x75, 0x37, 0x23, 0xff, 0x7a, 0x3c, 0x25, 0xff, 0x77, 0x39, 0x23, 0xff, 0x74, 0x36, 0x21, 0xff, 0x72, 0x35, 0x1f, 0xff, 0x70, 0x30, 0x1b, 0xff, 0x6b, 0x2d, 0x18, 0xff, 0x66, 0x2a, 0x12, 0xff, 0x65, 0x2a, 0x12, 0xff, 0x63, 0x27, 0x0f, 0xff, 0x64, 0x29, 0x11, 0xff, 0x62, 0x24, 0x0b, 0xff, 0x60, 0x27, 0x0f, 0xff, 0x5f, 0x26, 0x0d, 0xff, 0x5b, 0x20, 0x08, 0xff, 0x66, 0x2b, 0x13, 0xff, 0x70, 0x33, 0x1f, 0xff, 0x73, 0x37, 0x21, 0xff, 0x75, 0x36, 0x20, 0xff, 0x73, 0x34, 0x20, 0xff, 0x75, 0x37, 0x22, 0xff, 0x76, 0x35, 0x23, 0xff, 0x78, 0x3a, 0x23, 0xff, 0x78, 0x3a, 0x24, 0xff, 0x7b, 0x3d, 0x24, 0xff, 0x7d, 0x3f, 0x25, 0xff, 0x7f, 0x40, 0x25, 0xff, 0x7f, 0x3c, 0x23, 0xff, 0x7f, 0x3e, 0x24, 0xff, 0x80, 0x3f, 0x24, 0xff, 0x81, 0x40, 0x25, 0xff, 0x84, 0x43, 0x26, 0xff, 0x85, 0x43, 0x26, 0xff, 0x87, 0x44, 0x26, 0xff, 0x8a, 0x49, 0x28, 0xff, 0x8b, 0x4a, 0x29, 0xff, 0x8e, 0x4c, 0x2b, 0xff, 0x8e, 0x4c, 0x2b, 0xff, 0x90, 0x4e, 0x2d, 0xff, 0x8f, 0x4d, 0x2d, 0xff, 0x98, 0x58, 0x31, 0xff, + 0x94, 0x54, 0x2d, 0xff, 0xb5, 0x74, 0x46, 0xff, 0xb6, 0x72, 0x44, 0xff, 0xb3, 0x70, 0x43, 0xff, 0xb0, 0x6e, 0x42, 0xff, 0xb2, 0x6f, 0x43, 0xff, 0xb1, 0x6f, 0x42, 0xff, 0xb3, 0x70, 0x42, 0xff, 0xb5, 0x73, 0x47, 0xff, 0xb6, 0x74, 0x49, 0xff, 0xb3, 0x70, 0x47, 0xff, 0xb3, 0x70, 0x47, 0xff, 0xa8, 0x67, 0x40, 0xff, 0x95, 0x53, 0x30, 0xff, 0x8f, 0x4f, 0x2d, 0xff, 0x92, 0x51, 0x30, 0xff, 0xa3, 0x64, 0x41, 0xff, 0xaa, 0x6c, 0x47, 0xff, 0xb2, 0x76, 0x51, 0xff, 0xb7, 0x7d, 0x56, 0xff, 0xb8, 0x80, 0x5a, 0xff, 0xbb, 0x83, 0x62, 0xff, 0xc0, 0x89, 0x65, 0xff, 0xbf, 0x89, 0x65, 0xff, 0xbd, 0x86, 0x61, 0xff, 0xb7, 0x80, 0x5d, 0xff, 0xb2, 0x7b, 0x55, 0xff, 0xab, 0x70, 0x4b, 0xff, 0xa2, 0x64, 0x43, 0xff, 0x9a, 0x5b, 0x39, 0xff, 0x94, 0x53, 0x31, 0xff, 0x90, 0x4d, 0x2c, 0xff, 0x8e, 0x4d, 0x29, 0xff, 0x8b, 0x48, 0x27, 0xff, 0x88, 0x46, 0x25, 0xff, 0x8a, 0x48, 0x27, 0xff, 0x8c, 0x49, 0x28, 0xff, 0x8f, 0x4c, 0x29, 0xff, 0x93, 0x50, 0x2b, 0xff, 0x94, 0x54, 0x2f, 0xff, 0x94, 0x57, 0x30, 0xff, 0x95, 0x55, 0x2e, 0xff, 0x95, 0x53, 0x2c, 0xff, 0x96, 0x54, 0x2e, 0xff, 0x95, 0x54, 0x2e, 0xff, 0x96, 0x53, 0x2d, 0xff, 0x94, 0x51, 0x2d, 0xff, 0x95, 0x52, 0x2f, 0xff, 0x94, 0x51, 0x2d, 0xff, 0x93, 0x52, 0x2e, 0xff, 0x8f, 0x50, 0x2e, 0xff, 0x78, 0x3a, 0x21, 0xff, 0x62, 0x26, 0x0f, 0xff, 0x63, 0x28, 0x10, 0xff, 0x61, 0x25, 0x0c, 0xff, 0x62, 0x25, 0x0d, 0xff, 0x65, 0x27, 0x0c, 0xff, 0x68, 0x2b, 0x0f, 0xff, 0x6c, 0x2e, 0x13, 0xff, 0x6f, 0x2f, 0x14, 0xff, 0x71, 0x31, 0x17, 0xff, 0x75, 0x36, 0x19, 0xff, 0x79, 0x38, 0x1d, 0xff, 0x7e, 0x3a, 0x20, 0xff, 0x82, 0x3d, 0x22, 0xff, 0x87, 0x43, 0x24, 0xff, 0x8f, 0x4b, 0x28, 0xff, 0x95, 0x52, 0x2b, 0xff, 0x98, 0x54, 0x2d, 0xff, 0x9d, 0x5a, 0x30, 0xff, 0xa1, 0x5d, 0x33, 0xff, 0xa6, 0x63, 0x37, 0xff, 0xac, 0x6a, 0x3c, 0xff, 0xaf, 0x6f, 0x40, 0xff, 0xb5, 0x74, 0x46, 0xff, 0xba, 0x7b, 0x4b, 0xff, 0xc1, 0x80, 0x51, 0xff, 0xc5, 0x83, 0x52, 0xff, 0xba, 0x77, 0x48, 0xff, 0xa5, 0x62, 0x3b, 0xff, 0xa9, 0x66, 0x3d, 0xff, 0xac, 0x69, 0x3d, 0xff, 0xb2, 0x6f, 0x42, 0xff, 0xb5, 0x73, 0x45, 0xff, 0xb7, 0x73, 0x45, 0xff, 0xb6, 0x72, 0x44, 0xff, 0xb3, 0x70, 0x44, 0xff, 0xb6, 0x73, 0x47, 0xff, 0xb8, 0x76, 0x48, 0xff, 0xc1, 0x80, 0x54, 0xff, 0xb6, 0x73, 0x4b, 0xff, 0x88, 0x47, 0x23, 0xff, 0x8a, 0x47, 0x25, 0xff, 0x8d, 0x4c, 0x27, 0xff, 0x8f, 0x50, 0x29, 0xff, 0x90, 0x51, 0x2c, 0xff, 0x92, 0x56, 0x2f, 0xff, 0x94, 0x59, 0x31, 0xff, 0x95, 0x5c, 0x33, 0xff, 0x96, 0x5e, 0x37, 0xff, 0x95, 0x62, 0x3e, 0xff, 0x96, 0x64, 0x42, 0xff, 0x97, 0x62, 0x43, 0xff, 0x96, 0x63, 0x42, 0xff, 0x96, 0x64, 0x42, 0xff, 0x95, 0x64, 0x41, 0xff, 0x96, 0x65, 0x42, 0xff, 0x96, 0x64, 0x40, 0xff, 0x98, 0x64, 0x3d, 0xff, 0x98, 0x64, 0x3b, 0xff, 0x97, 0x63, 0x3a, 0xff, 0x98, 0x64, 0x3a, 0xff, 0x96, 0x62, 0x39, 0xff, 0x96, 0x5f, 0x35, 0xff, 0x95, 0x5c, 0x33, 0xff, 0x91, 0x5b, 0x34, 0xff, 0x91, 0x5c, 0x33, 0xff, 0x92, 0x5f, 0x36, 0xff, 0x95, 0x62, 0x3a, 0xff, 0x92, 0x5c, 0x39, 0xff, 0x9b, 0x65, 0x42, 0xff, 0xc3, 0x83, 0x59, 0xff, 0xdb, 0x95, 0x63, 0xff, 0xd9, 0x94, 0x61, 0xff, 0xdc, 0x96, 0x62, 0xff, 0xcb, 0x8b, 0x5b, 0xff, 0xbb, 0x80, 0x54, 0xff, 0xc0, 0x85, 0x56, 0xff, 0xcd, 0x8f, 0x5f, 0xff, 0xeb, 0x9f, 0x6c, 0xff, 0xfe, 0xb7, 0x81, 0xff, 0xfe, 0xdc, 0x99, 0xff, 0xf8, 0xf6, 0xad, 0xff, 0xf3, 0xfb, 0xb6, 0xff, 0xf5, 0xfa, 0xb3, 0xff, 0xfa, 0xe8, 0xa5, 0xff, 0xff, 0xc8, 0x93, 0xff, 0xf0, 0xad, 0x7e, 0xff, 0xcf, 0x93, 0x68, 0xff, 0xb6, 0x7d, 0x55, 0xff, 0xa8, 0x6b, 0x46, 0xff, 0x9c, 0x5f, 0x3a, 0xff, 0x93, 0x54, 0x31, 0xff, 0x8d, 0x4b, 0x29, 0xff, 0x88, 0x46, 0x26, 0xff, 0x85, 0x41, 0x24, 0xff, 0x80, 0x3c, 0x23, 0xff, 0x7d, 0x39, 0x1f, 0xff, 0x7b, 0x3a, 0x1e, 0xff, 0x7a, 0x38, 0x1d, 0xff, 0x79, 0x37, 0x1b, 0xff, 0x7a, 0x36, 0x1b, 0xff, 0x7a, 0x36, 0x1d, 0xff, 0x7b, 0x38, 0x1f, 0xff, 0x7d, 0x3b, 0x21, 0xff, 0x7f, 0x3d, 0x23, 0xff, 0x81, 0x41, 0x26, 0xff, 0x84, 0x43, 0x26, 0xff, 0x84, 0x40, 0x23, 0xff, 0x84, 0x41, 0x24, 0xff, 0x86, 0x44, 0x25, 0xff, 0x7d, 0x3b, 0x21, 0xff, 0x7f, 0x3c, 0x25, 0xff, 0x70, 0x31, 0x1a, 0xff, 0x57, 0x1f, 0x07, 0xff, 0x53, 0x1d, 0x04, 0xff, 0x54, 0x1f, 0x07, 0xff, 0x5d, 0x25, 0x0d, 0xff, 0x69, 0x2d, 0x14, 0xff, 0x6b, 0x2d, 0x14, 0xff, 0x69, 0x2a, 0x13, 0xff, 0x67, 0x29, 0x12, 0xff, 0x69, 0x2b, 0x13, 0xff, 0x6b, 0x2f, 0x17, 0xff, 0x66, 0x2b, 0x13, 0xff, 0x5e, 0x23, 0x0c, 0xff, 0x71, 0x33, 0x1c, 0xff, 0x85, 0x43, 0x26, 0xff, 0x86, 0x45, 0x26, 0xff, 0x84, 0x43, 0x25, 0xff, 0x80, 0x3e, 0x23, 0xff, 0x7c, 0x39, 0x22, 0xff, 0x7a, 0x3b, 0x22, 0xff, 0x7c, 0x3c, 0x23, 0xff, 0x7e, 0x3d, 0x24, 0xff, 0x81, 0x41, 0x25, 0xff, 0x85, 0x44, 0x27, 0xff, 0x87, 0x4c, 0x2b, 0xff, 0x89, 0x4c, 0x2e, 0xff, 0x7b, 0x3f, 0x26, 0xff, 0x7a, 0x3a, 0x24, 0xff, 0x7c, 0x3c, 0x25, 0xff, 0x7b, 0x3a, 0x25, 0xff, 0x76, 0x37, 0x23, 0xff, 0x7a, 0x3e, 0x26, 0xff, 0x76, 0x3a, 0x24, 0xff, 0x77, 0x39, 0x23, 0xff, 0x74, 0x37, 0x20, 0xff, 0x71, 0x33, 0x1c, 0xff, 0x6e, 0x30, 0x18, 0xff, 0x6a, 0x2c, 0x16, 0xff, 0x65, 0x28, 0x12, 0xff, 0x65, 0x28, 0x11, 0xff, 0x65, 0x28, 0x11, 0xff, 0x65, 0x28, 0x12, 0xff, 0x63, 0x2a, 0x12, 0xff, 0x69, 0x2c, 0x16, 0xff, 0x73, 0x36, 0x22, 0xff, 0x74, 0x36, 0x22, 0xff, 0x72, 0x34, 0x1f, 0xff, 0x72, 0x34, 0x20, 0xff, 0x71, 0x34, 0x1e, 0xff, 0x72, 0x34, 0x20, 0xff, 0x75, 0x36, 0x22, 0xff, 0x78, 0x39, 0x23, 0xff, 0x78, 0x3a, 0x23, 0xff, 0x79, 0x39, 0x23, 0xff, 0x7c, 0x3c, 0x24, 0xff, 0x7d, 0x3c, 0x23, 0xff, 0x7b, 0x3a, 0x23, 0xff, 0x7c, 0x3e, 0x22, 0xff, 0x7e, 0x3e, 0x23, 0xff, 0x7f, 0x3e, 0x24, 0xff, 0x81, 0x42, 0x25, 0xff, 0x84, 0x43, 0x26, 0xff, 0x84, 0x42, 0x25, 0xff, 0x88, 0x46, 0x25, 0xff, 0x8a, 0x46, 0x28, 0xff, 0x8b, 0x49, 0x27, 0xff, 0x8e, 0x4d, 0x2a, 0xff, 0x8f, 0x4d, 0x2b, 0xff, 0x91, 0x4f, 0x2c, 0xff, 0x91, 0x4e, 0x2c, 0xff, 0x90, 0x4e, 0x2b, 0xff, + 0x92, 0x4f, 0x2b, 0xff, 0x99, 0x56, 0x2f, 0xff, 0xb5, 0x72, 0x46, 0xff, 0xb9, 0x76, 0x47, 0xff, 0xb4, 0x6f, 0x43, 0xff, 0xb8, 0x73, 0x46, 0xff, 0xb8, 0x75, 0x47, 0xff, 0xb8, 0x74, 0x47, 0xff, 0xb9, 0x76, 0x47, 0xff, 0xb8, 0x77, 0x49, 0xff, 0xb6, 0x75, 0x48, 0xff, 0xb5, 0x73, 0x48, 0xff, 0xb6, 0x74, 0x49, 0xff, 0xb4, 0x71, 0x49, 0xff, 0xac, 0x6b, 0x45, 0xff, 0xa3, 0x60, 0x3c, 0xff, 0x9e, 0x5d, 0x39, 0xff, 0x9b, 0x5c, 0x39, 0xff, 0xa1, 0x60, 0x3d, 0xff, 0xa5, 0x67, 0x43, 0xff, 0xa9, 0x6b, 0x48, 0xff, 0xab, 0x70, 0x4b, 0xff, 0xac, 0x72, 0x4e, 0xff, 0xab, 0x71, 0x4c, 0xff, 0xab, 0x71, 0x4b, 0xff, 0xa9, 0x6f, 0x4a, 0xff, 0xa6, 0x6a, 0x44, 0xff, 0xa0, 0x63, 0x3e, 0xff, 0x9b, 0x5c, 0x37, 0xff, 0x96, 0x54, 0x31, 0xff, 0x92, 0x51, 0x2e, 0xff, 0x91, 0x4e, 0x2c, 0xff, 0x8d, 0x4a, 0x29, 0xff, 0x89, 0x47, 0x26, 0xff, 0x8c, 0x49, 0x27, 0xff, 0x8e, 0x4b, 0x28, 0xff, 0x8f, 0x4d, 0x29, 0xff, 0x92, 0x4f, 0x2a, 0xff, 0x95, 0x53, 0x2d, 0xff, 0x97, 0x57, 0x2e, 0xff, 0x98, 0x56, 0x2f, 0xff, 0x98, 0x54, 0x2f, 0xff, 0x97, 0x56, 0x2e, 0xff, 0x97, 0x55, 0x2e, 0xff, 0x96, 0x56, 0x2f, 0xff, 0x97, 0x55, 0x31, 0xff, 0x97, 0x55, 0x31, 0xff, 0x96, 0x54, 0x30, 0xff, 0x95, 0x55, 0x31, 0xff, 0x8e, 0x4f, 0x2f, 0xff, 0x75, 0x37, 0x1d, 0xff, 0x61, 0x23, 0x0a, 0xff, 0x62, 0x25, 0x0d, 0xff, 0x65, 0x29, 0x11, 0xff, 0x67, 0x2b, 0x11, 0xff, 0x6c, 0x2c, 0x13, 0xff, 0x69, 0x2c, 0x13, 0xff, 0x6b, 0x2c, 0x12, 0xff, 0x6d, 0x2d, 0x14, 0xff, 0x6e, 0x2e, 0x14, 0xff, 0x71, 0x30, 0x14, 0xff, 0x74, 0x33, 0x16, 0xff, 0x79, 0x35, 0x1c, 0xff, 0x7d, 0x3a, 0x20, 0xff, 0x82, 0x3e, 0x22, 0xff, 0x88, 0x44, 0x23, 0xff, 0x8f, 0x4c, 0x27, 0xff, 0x92, 0x50, 0x2a, 0xff, 0x96, 0x51, 0x2d, 0xff, 0x9b, 0x56, 0x2f, 0xff, 0x9e, 0x5c, 0x33, 0xff, 0xa3, 0x62, 0x37, 0xff, 0xa7, 0x67, 0x3d, 0xff, 0xad, 0x6d, 0x42, 0xff, 0xb3, 0x72, 0x47, 0xff, 0xb9, 0x7a, 0x4b, 0xff, 0xbe, 0x80, 0x4f, 0xff, 0xbb, 0x7c, 0x4c, 0xff, 0xa6, 0x67, 0x3e, 0xff, 0xa7, 0x67, 0x3c, 0xff, 0xaa, 0x68, 0x3d, 0xff, 0xac, 0x6a, 0x3e, 0xff, 0xaf, 0x6c, 0x3f, 0xff, 0xb2, 0x6f, 0x41, 0xff, 0xb4, 0x6f, 0x43, 0xff, 0xb3, 0x70, 0x42, 0xff, 0xb2, 0x6f, 0x42, 0xff, 0xb4, 0x71, 0x44, 0xff, 0xb8, 0x74, 0x48, 0xff, 0xba, 0x78, 0x4a, 0xff, 0xbe, 0x7c, 0x4e, 0xff, 0xab, 0x6a, 0x41, 0xff, 0x88, 0x47, 0x24, 0xff, 0x8d, 0x4a, 0x27, 0xff, 0x90, 0x50, 0x29, 0xff, 0x90, 0x52, 0x2b, 0xff, 0x93, 0x54, 0x2e, 0xff, 0x96, 0x59, 0x31, 0xff, 0x96, 0x5e, 0x34, 0xff, 0x96, 0x5f, 0x38, 0xff, 0x96, 0x5f, 0x3d, 0xff, 0x97, 0x64, 0x42, 0xff, 0x96, 0x65, 0x43, 0xff, 0x97, 0x65, 0x43, 0xff, 0x97, 0x67, 0x43, 0xff, 0x97, 0x67, 0x44, 0xff, 0x97, 0x66, 0x43, 0xff, 0x96, 0x66, 0x41, 0xff, 0x96, 0x66, 0x3d, 0xff, 0x97, 0x64, 0x3b, 0xff, 0x97, 0x64, 0x3a, 0xff, 0x97, 0x64, 0x3b, 0xff, 0x97, 0x61, 0x38, 0xff, 0x96, 0x5e, 0x34, 0xff, 0x93, 0x5a, 0x32, 0xff, 0x8f, 0x57, 0x31, 0xff, 0x91, 0x5a, 0x32, 0xff, 0x93, 0x5e, 0x33, 0xff, 0x95, 0x60, 0x36, 0xff, 0x95, 0x5f, 0x3b, 0xff, 0x8e, 0x58, 0x36, 0xff, 0xba, 0x7a, 0x4e, 0xff, 0xe8, 0x9c, 0x68, 0xff, 0xe3, 0x97, 0x63, 0xff, 0xdd, 0x93, 0x60, 0xff, 0xd5, 0x92, 0x60, 0xff, 0xc5, 0x89, 0x58, 0xff, 0xbe, 0x83, 0x54, 0xff, 0xc9, 0x89, 0x5a, 0xff, 0xde, 0x96, 0x64, 0xff, 0xf4, 0xa8, 0x74, 0xff, 0xfd, 0xbe, 0x87, 0xff, 0xfd, 0xdd, 0x9a, 0xff, 0xfb, 0xf2, 0xa8, 0xff, 0xfa, 0xf3, 0xab, 0xff, 0xfc, 0xe1, 0xa1, 0xff, 0xfe, 0xc7, 0x93, 0xff, 0xf5, 0xae, 0x7f, 0xff, 0xd7, 0x97, 0x6b, 0xff, 0xbc, 0x82, 0x5a, 0xff, 0xac, 0x71, 0x4b, 0xff, 0xa0, 0x64, 0x3d, 0xff, 0x97, 0x58, 0x33, 0xff, 0x92, 0x51, 0x2c, 0xff, 0x8b, 0x49, 0x27, 0xff, 0x85, 0x42, 0x24, 0xff, 0x80, 0x3d, 0x22, 0xff, 0x7d, 0x39, 0x20, 0xff, 0x7c, 0x39, 0x1f, 0xff, 0x7a, 0x38, 0x1e, 0xff, 0x7a, 0x37, 0x1c, 0xff, 0x7a, 0x37, 0x1e, 0xff, 0x7a, 0x38, 0x1e, 0xff, 0x7d, 0x39, 0x1f, 0xff, 0x7f, 0x3c, 0x21, 0xff, 0x80, 0x3e, 0x23, 0xff, 0x82, 0x40, 0x24, 0xff, 0x85, 0x42, 0x25, 0xff, 0x84, 0x40, 0x25, 0xff, 0x86, 0x42, 0x25, 0xff, 0x80, 0x3f, 0x23, 0xff, 0x7d, 0x3a, 0x23, 0xff, 0x7e, 0x3b, 0x23, 0xff, 0x7e, 0x3d, 0x23, 0xff, 0x62, 0x29, 0x0f, 0xff, 0x55, 0x1d, 0x05, 0xff, 0x5d, 0x23, 0x0c, 0xff, 0x67, 0x29, 0x12, 0xff, 0x6b, 0x2d, 0x15, 0xff, 0x69, 0x2d, 0x13, 0xff, 0x66, 0x29, 0x10, 0xff, 0x65, 0x28, 0x11, 0xff, 0x69, 0x2c, 0x12, 0xff, 0x6a, 0x2f, 0x15, 0xff, 0x66, 0x2b, 0x13, 0xff, 0x63, 0x28, 0x10, 0xff, 0x60, 0x24, 0x0d, 0xff, 0x74, 0x36, 0x1d, 0xff, 0x87, 0x46, 0x28, 0xff, 0x85, 0x43, 0x26, 0xff, 0x82, 0x3f, 0x25, 0xff, 0x7f, 0x3c, 0x23, 0xff, 0x7c, 0x3a, 0x23, 0xff, 0x7c, 0x3c, 0x22, 0xff, 0x7d, 0x3c, 0x23, 0xff, 0x80, 0x3e, 0x25, 0xff, 0x85, 0x43, 0x27, 0xff, 0x85, 0x46, 0x29, 0xff, 0x87, 0x4b, 0x2c, 0xff, 0x7d, 0x40, 0x26, 0xff, 0x7a, 0x3a, 0x25, 0xff, 0x7c, 0x3b, 0x25, 0xff, 0x7b, 0x3d, 0x25, 0xff, 0x77, 0x39, 0x24, 0xff, 0x7b, 0x3c, 0x25, 0xff, 0x7a, 0x3c, 0x25, 0xff, 0x7a, 0x3a, 0x23, 0xff, 0x76, 0x37, 0x21, 0xff, 0x73, 0x36, 0x1f, 0xff, 0x71, 0x33, 0x1c, 0xff, 0x6e, 0x30, 0x18, 0xff, 0x6a, 0x2c, 0x17, 0xff, 0x64, 0x28, 0x10, 0xff, 0x69, 0x2c, 0x16, 0xff, 0x6c, 0x2e, 0x18, 0xff, 0x74, 0x37, 0x23, 0xff, 0x74, 0x38, 0x22, 0xff, 0x72, 0x34, 0x20, 0xff, 0x72, 0x33, 0x1e, 0xff, 0x71, 0x33, 0x1e, 0xff, 0x71, 0x33, 0x1e, 0xff, 0x73, 0x34, 0x1f, 0xff, 0x75, 0x36, 0x21, 0xff, 0x75, 0x38, 0x22, 0xff, 0x76, 0x39, 0x22, 0xff, 0x7a, 0x39, 0x22, 0xff, 0x7a, 0x39, 0x23, 0xff, 0x7b, 0x39, 0x22, 0xff, 0x7b, 0x39, 0x21, 0xff, 0x7b, 0x39, 0x22, 0xff, 0x7c, 0x3b, 0x22, 0xff, 0x7e, 0x3d, 0x23, 0xff, 0x81, 0x3e, 0x24, 0xff, 0x83, 0x41, 0x25, 0xff, 0x85, 0x44, 0x25, 0xff, 0x87, 0x46, 0x27, 0xff, 0x8c, 0x48, 0x28, 0xff, 0x8f, 0x4c, 0x29, 0xff, 0x90, 0x4d, 0x2a, 0xff, 0x91, 0x4e, 0x2c, 0xff, 0x93, 0x50, 0x2c, 0xff, 0x94, 0x51, 0x2c, 0xff, 0x93, 0x50, 0x2c, 0xff, 0x93, 0x4f, 0x2c, 0xff, + 0x93, 0x52, 0x2d, 0xff, 0x94, 0x52, 0x2d, 0xff, 0x98, 0x55, 0x2e, 0xff, 0xb8, 0x79, 0x4b, 0xff, 0xc9, 0x81, 0x51, 0xff, 0xbb, 0x78, 0x4a, 0xff, 0xbc, 0x7a, 0x49, 0xff, 0xc0, 0x7d, 0x4a, 0xff, 0xbf, 0x7d, 0x4b, 0xff, 0xbe, 0x7b, 0x49, 0xff, 0xbe, 0x79, 0x4a, 0xff, 0xb9, 0x77, 0x49, 0xff, 0xb8, 0x77, 0x49, 0xff, 0xb6, 0x75, 0x49, 0xff, 0xb9, 0x79, 0x4e, 0xff, 0xb8, 0x76, 0x4b, 0xff, 0xb4, 0x72, 0x4a, 0xff, 0xa4, 0x61, 0x3d, 0xff, 0x97, 0x56, 0x32, 0xff, 0x9a, 0x59, 0x35, 0xff, 0x9e, 0x5d, 0x3a, 0xff, 0xa1, 0x61, 0x3e, 0xff, 0xa1, 0x64, 0x3e, 0xff, 0x9f, 0x63, 0x3d, 0xff, 0x9e, 0x62, 0x3d, 0xff, 0x9d, 0x5e, 0x3b, 0xff, 0x9c, 0x5b, 0x36, 0xff, 0x98, 0x57, 0x34, 0xff, 0x96, 0x54, 0x31, 0xff, 0x95, 0x52, 0x2f, 0xff, 0x95, 0x52, 0x2e, 0xff, 0x92, 0x4f, 0x2b, 0xff, 0x8f, 0x4d, 0x2b, 0xff, 0x90, 0x4d, 0x2a, 0xff, 0x92, 0x4e, 0x2b, 0xff, 0x92, 0x4e, 0x2b, 0xff, 0x95, 0x52, 0x2b, 0xff, 0x97, 0x56, 0x2f, 0xff, 0x9a, 0x59, 0x31, 0xff, 0x9b, 0x59, 0x32, 0xff, 0x9a, 0x59, 0x32, 0xff, 0x99, 0x57, 0x31, 0xff, 0x98, 0x56, 0x30, 0xff, 0x9a, 0x59, 0x31, 0xff, 0x99, 0x57, 0x32, 0xff, 0x99, 0x57, 0x33, 0xff, 0x99, 0x57, 0x33, 0xff, 0x98, 0x56, 0x32, 0xff, 0x8a, 0x4e, 0x2d, 0xff, 0x66, 0x2a, 0x11, 0xff, 0x65, 0x27, 0x0e, 0xff, 0x63, 0x28, 0x10, 0xff, 0x61, 0x25, 0x0a, 0xff, 0x63, 0x27, 0x0c, 0xff, 0x65, 0x2a, 0x0f, 0xff, 0x68, 0x2a, 0x10, 0xff, 0x6c, 0x2e, 0x13, 0xff, 0x6f, 0x30, 0x16, 0xff, 0x71, 0x31, 0x19, 0xff, 0x72, 0x31, 0x18, 0xff, 0x70, 0x2f, 0x15, 0xff, 0x73, 0x32, 0x18, 0xff, 0x77, 0x36, 0x1a, 0xff, 0x7c, 0x39, 0x1e, 0xff, 0x81, 0x3e, 0x20, 0xff, 0x88, 0x44, 0x24, 0xff, 0x8e, 0x4a, 0x27, 0xff, 0x91, 0x50, 0x29, 0xff, 0x94, 0x52, 0x2c, 0xff, 0x99, 0x56, 0x2f, 0xff, 0x9d, 0x5b, 0x32, 0xff, 0xa2, 0x60, 0x35, 0xff, 0xa7, 0x66, 0x3b, 0xff, 0xaa, 0x6b, 0x41, 0xff, 0xb0, 0x71, 0x47, 0xff, 0xb7, 0x77, 0x4b, 0xff, 0xba, 0x7a, 0x4d, 0xff, 0xb2, 0x71, 0x48, 0xff, 0xa2, 0x61, 0x3d, 0xff, 0xa5, 0x65, 0x3e, 0xff, 0xa9, 0x68, 0x3d, 0xff, 0xab, 0x69, 0x3e, 0xff, 0xad, 0x6a, 0x3f, 0xff, 0xb0, 0x6c, 0x40, 0xff, 0xb1, 0x6e, 0x40, 0xff, 0xb2, 0x70, 0x41, 0xff, 0xb0, 0x6d, 0x41, 0xff, 0xb2, 0x6c, 0x42, 0xff, 0xb5, 0x71, 0x44, 0xff, 0xb7, 0x75, 0x49, 0xff, 0xbb, 0x7b, 0x4d, 0xff, 0xbd, 0x7c, 0x4e, 0xff, 0xa5, 0x63, 0x3b, 0xff, 0x8a, 0x48, 0x24, 0xff, 0x8f, 0x4d, 0x28, 0xff, 0x91, 0x51, 0x2b, 0xff, 0x92, 0x54, 0x2c, 0xff, 0x95, 0x58, 0x2e, 0xff, 0x96, 0x5c, 0x33, 0xff, 0x96, 0x60, 0x38, 0xff, 0x97, 0x60, 0x3c, 0xff, 0x96, 0x62, 0x40, 0xff, 0x97, 0x65, 0x43, 0xff, 0x96, 0x65, 0x43, 0xff, 0x97, 0x66, 0x43, 0xff, 0x96, 0x68, 0x44, 0xff, 0x97, 0x68, 0x43, 0xff, 0x96, 0x66, 0x40, 0xff, 0x96, 0x64, 0x3d, 0xff, 0x96, 0x64, 0x3c, 0xff, 0x97, 0x65, 0x3c, 0xff, 0x98, 0x64, 0x3b, 0xff, 0x96, 0x61, 0x37, 0xff, 0x95, 0x5c, 0x33, 0xff, 0x91, 0x57, 0x31, 0xff, 0x8e, 0x56, 0x30, 0xff, 0x8f, 0x58, 0x31, 0xff, 0x90, 0x5a, 0x33, 0xff, 0x93, 0x5e, 0x36, 0xff, 0x95, 0x5d, 0x38, 0xff, 0x90, 0x55, 0x31, 0xff, 0x9e, 0x65, 0x3b, 0xff, 0xde, 0x92, 0x60, 0xff, 0xf3, 0x9f, 0x6a, 0xff, 0xdf, 0x95, 0x60, 0xff, 0xdb, 0x94, 0x5f, 0xff, 0xd5, 0x91, 0x5b, 0xff, 0xca, 0x88, 0x56, 0xff, 0xca, 0x88, 0x58, 0xff, 0xd9, 0x91, 0x60, 0xff, 0xe9, 0x9d, 0x69, 0xff, 0xf8, 0xac, 0x77, 0xff, 0xfe, 0xbe, 0x87, 0xff, 0xfd, 0xd0, 0x95, 0xff, 0xfd, 0xd8, 0x9a, 0xff, 0xfd, 0xd0, 0x97, 0xff, 0xfe, 0xc0, 0x8c, 0xff, 0xf6, 0xac, 0x7d, 0xff, 0xd8, 0x96, 0x6b, 0xff, 0xbe, 0x83, 0x5a, 0xff, 0xae, 0x73, 0x4c, 0xff, 0xa3, 0x67, 0x40, 0xff, 0x9a, 0x5b, 0x34, 0xff, 0x93, 0x51, 0x2e, 0xff, 0x8d, 0x49, 0x28, 0xff, 0x87, 0x44, 0x25, 0xff, 0x83, 0x3f, 0x23, 0xff, 0x80, 0x3d, 0x22, 0xff, 0x7e, 0x3a, 0x20, 0xff, 0x7c, 0x39, 0x20, 0xff, 0x7b, 0x39, 0x1f, 0xff, 0x7a, 0x38, 0x1e, 0xff, 0x7b, 0x38, 0x1f, 0xff, 0x7d, 0x3a, 0x20, 0xff, 0x7f, 0x3c, 0x21, 0xff, 0x81, 0x40, 0x22, 0xff, 0x83, 0x40, 0x24, 0xff, 0x84, 0x41, 0x23, 0xff, 0x86, 0x42, 0x24, 0xff, 0x84, 0x40, 0x24, 0xff, 0x7d, 0x3a, 0x22, 0xff, 0x7b, 0x39, 0x22, 0xff, 0x7c, 0x39, 0x22, 0xff, 0x81, 0x3f, 0x26, 0xff, 0x65, 0x2a, 0x11, 0xff, 0x5f, 0x26, 0x0e, 0xff, 0x65, 0x29, 0x12, 0xff, 0x69, 0x2b, 0x14, 0xff, 0x6a, 0x2b, 0x14, 0xff, 0x65, 0x29, 0x0e, 0xff, 0x61, 0x26, 0x0b, 0xff, 0x63, 0x25, 0x0d, 0xff, 0x65, 0x28, 0x12, 0xff, 0x68, 0x2c, 0x13, 0xff, 0x66, 0x2b, 0x12, 0xff, 0x64, 0x27, 0x10, 0xff, 0x61, 0x25, 0x0f, 0xff, 0x67, 0x2b, 0x12, 0xff, 0x81, 0x40, 0x25, 0xff, 0x88, 0x43, 0x27, 0xff, 0x84, 0x40, 0x25, 0xff, 0x7f, 0x3c, 0x23, 0xff, 0x7e, 0x3c, 0x22, 0xff, 0x7d, 0x3c, 0x23, 0xff, 0x7f, 0x3d, 0x24, 0xff, 0x81, 0x3f, 0x25, 0xff, 0x83, 0x40, 0x27, 0xff, 0x88, 0x46, 0x29, 0xff, 0x87, 0x4a, 0x2c, 0xff, 0x7d, 0x3f, 0x26, 0xff, 0x7c, 0x3c, 0x24, 0xff, 0x7b, 0x3b, 0x25, 0xff, 0x7a, 0x3c, 0x25, 0xff, 0x76, 0x38, 0x24, 0xff, 0x7c, 0x3c, 0x26, 0xff, 0x80, 0x41, 0x26, 0xff, 0x7e, 0x3f, 0x24, 0xff, 0x7a, 0x3a, 0x23, 0xff, 0x75, 0x37, 0x20, 0xff, 0x73, 0x35, 0x1f, 0xff, 0x70, 0x30, 0x1c, 0xff, 0x6c, 0x2e, 0x17, 0xff, 0x6f, 0x31, 0x1c, 0xff, 0x72, 0x37, 0x21, 0xff, 0x75, 0x35, 0x20, 0xff, 0x72, 0x34, 0x20, 0xff, 0x72, 0x34, 0x20, 0xff, 0x72, 0x32, 0x1f, 0xff, 0x72, 0x33, 0x1e, 0xff, 0x70, 0x31, 0x1e, 0xff, 0x71, 0x34, 0x1e, 0xff, 0x74, 0x37, 0x20, 0xff, 0x76, 0x36, 0x20, 0xff, 0x76, 0x37, 0x22, 0xff, 0x77, 0x36, 0x20, 0xff, 0x78, 0x39, 0x22, 0xff, 0x7a, 0x3b, 0x21, 0xff, 0x78, 0x39, 0x1f, 0xff, 0x7a, 0x39, 0x1f, 0xff, 0x7c, 0x3b, 0x22, 0xff, 0x7e, 0x3e, 0x24, 0xff, 0x82, 0x42, 0x25, 0xff, 0x84, 0x43, 0x25, 0xff, 0x85, 0x44, 0x26, 0xff, 0x89, 0x46, 0x25, 0xff, 0x88, 0x46, 0x26, 0xff, 0x8a, 0x46, 0x26, 0xff, 0x8b, 0x48, 0x26, 0xff, 0x8d, 0x49, 0x27, 0xff, 0x8d, 0x4c, 0x28, 0xff, 0x91, 0x4e, 0x2a, 0xff, 0x90, 0x4e, 0x2b, 0xff, 0x90, 0x4d, 0x2b, 0xff, 0x92, 0x4f, 0x2c, 0xff, + 0x8f, 0x4c, 0x29, 0xff, 0x91, 0x4e, 0x2b, 0xff, 0x94, 0x52, 0x2d, 0xff, 0x96, 0x50, 0x2e, 0xff, 0xaa, 0x65, 0x39, 0xff, 0xd3, 0x89, 0x54, 0xff, 0xcc, 0x84, 0x53, 0xff, 0xc3, 0x80, 0x4d, 0xff, 0xc6, 0x80, 0x4d, 0xff, 0xc6, 0x80, 0x4b, 0xff, 0xc4, 0x80, 0x4e, 0xff, 0xc2, 0x7e, 0x4c, 0xff, 0xbf, 0x79, 0x4a, 0xff, 0xc3, 0x80, 0x51, 0xff, 0xc3, 0x80, 0x4f, 0xff, 0xc1, 0x7d, 0x4e, 0xff, 0xbb, 0x7a, 0x4d, 0xff, 0xb8, 0x76, 0x4b, 0xff, 0xb7, 0x76, 0x4d, 0xff, 0x9b, 0x59, 0x34, 0xff, 0x9b, 0x58, 0x34, 0xff, 0x9c, 0x5b, 0x34, 0xff, 0xa0, 0x5e, 0x37, 0xff, 0x9f, 0x5d, 0x36, 0xff, 0x9b, 0x58, 0x33, 0xff, 0x99, 0x57, 0x33, 0xff, 0x99, 0x56, 0x33, 0xff, 0x97, 0x54, 0x31, 0xff, 0x97, 0x54, 0x31, 0xff, 0x98, 0x55, 0x32, 0xff, 0x95, 0x52, 0x2f, 0xff, 0x96, 0x51, 0x2e, 0xff, 0x96, 0x54, 0x2e, 0xff, 0x96, 0x54, 0x2e, 0xff, 0x98, 0x55, 0x2f, 0xff, 0x9c, 0x57, 0x32, 0xff, 0x9d, 0x5a, 0x33, 0xff, 0x9e, 0x5c, 0x34, 0xff, 0x9d, 0x5d, 0x36, 0xff, 0x9e, 0x5c, 0x38, 0xff, 0x9d, 0x5b, 0x33, 0xff, 0x9c, 0x5a, 0x32, 0xff, 0x9b, 0x5a, 0x33, 0xff, 0x9b, 0x5b, 0x35, 0xff, 0x9b, 0x5d, 0x33, 0xff, 0x9a, 0x59, 0x33, 0xff, 0x98, 0x59, 0x33, 0xff, 0x85, 0x49, 0x29, 0xff, 0x56, 0x1b, 0x00, 0xff, 0x60, 0x25, 0x0b, 0xff, 0x64, 0x26, 0x0c, 0xff, 0x62, 0x29, 0x0e, 0xff, 0x5f, 0x25, 0x0d, 0xff, 0x63, 0x26, 0x0c, 0xff, 0x64, 0x28, 0x10, 0xff, 0x66, 0x28, 0x11, 0xff, 0x69, 0x2b, 0x11, 0xff, 0x6d, 0x2e, 0x13, 0xff, 0x70, 0x2f, 0x16, 0xff, 0x74, 0x33, 0x1b, 0xff, 0x73, 0x33, 0x1b, 0xff, 0x72, 0x30, 0x15, 0xff, 0x77, 0x36, 0x1a, 0xff, 0x7c, 0x39, 0x1e, 0xff, 0x80, 0x3d, 0x1f, 0xff, 0x86, 0x42, 0x22, 0xff, 0x8c, 0x48, 0x27, 0xff, 0x90, 0x4d, 0x28, 0xff, 0x94, 0x51, 0x2b, 0xff, 0x99, 0x57, 0x2f, 0xff, 0x9c, 0x5b, 0x32, 0xff, 0xa0, 0x5f, 0x35, 0xff, 0xa4, 0x64, 0x3b, 0xff, 0xaa, 0x69, 0x40, 0xff, 0xaf, 0x6f, 0x45, 0xff, 0xb5, 0x75, 0x4a, 0xff, 0xb6, 0x77, 0x4c, 0xff, 0xa5, 0x67, 0x41, 0xff, 0x9f, 0x61, 0x3d, 0xff, 0xa3, 0x65, 0x3e, 0xff, 0xa8, 0x67, 0x3d, 0xff, 0xaa, 0x67, 0x3d, 0xff, 0xab, 0x69, 0x3c, 0xff, 0xaf, 0x6b, 0x3f, 0xff, 0xae, 0x6a, 0x3f, 0xff, 0xad, 0x69, 0x3c, 0xff, 0xae, 0x6a, 0x3e, 0xff, 0xaf, 0x6b, 0x41, 0xff, 0xb1, 0x6d, 0x42, 0xff, 0xb3, 0x71, 0x45, 0xff, 0xb7, 0x74, 0x47, 0xff, 0xbe, 0x7c, 0x4d, 0xff, 0xb9, 0x76, 0x48, 0xff, 0x9a, 0x56, 0x2f, 0xff, 0x8d, 0x4b, 0x26, 0xff, 0x92, 0x52, 0x2a, 0xff, 0x94, 0x54, 0x2c, 0xff, 0x95, 0x56, 0x2e, 0xff, 0x96, 0x5b, 0x31, 0xff, 0x97, 0x5f, 0x36, 0xff, 0x96, 0x60, 0x3c, 0xff, 0x96, 0x60, 0x3d, 0xff, 0x97, 0x63, 0x3f, 0xff, 0x96, 0x66, 0x42, 0xff, 0x97, 0x66, 0x42, 0xff, 0x98, 0x67, 0x42, 0xff, 0x97, 0x66, 0x43, 0xff, 0x96, 0x65, 0x40, 0xff, 0x96, 0x64, 0x3c, 0xff, 0x97, 0x64, 0x3b, 0xff, 0x97, 0x65, 0x3c, 0xff, 0x97, 0x64, 0x3a, 0xff, 0x97, 0x61, 0x38, 0xff, 0x94, 0x5d, 0x34, 0xff, 0x90, 0x58, 0x30, 0xff, 0x8f, 0x56, 0x30, 0xff, 0x8f, 0x57, 0x32, 0xff, 0x90, 0x5a, 0x33, 0xff, 0x92, 0x59, 0x33, 0xff, 0x94, 0x57, 0x31, 0xff, 0x95, 0x57, 0x31, 0xff, 0x8c, 0x52, 0x2e, 0xff, 0xcb, 0x89, 0x5b, 0xff, 0xfa, 0xab, 0x72, 0xff, 0xf1, 0x9c, 0x63, 0xff, 0xeb, 0x9b, 0x63, 0xff, 0xe6, 0x99, 0x61, 0xff, 0xe1, 0x94, 0x5e, 0xff, 0xcf, 0x89, 0x58, 0xff, 0xc9, 0x87, 0x57, 0xff, 0xd3, 0x90, 0x5d, 0xff, 0xe5, 0x9d, 0x6a, 0xff, 0xf5, 0xab, 0x79, 0xff, 0xfc, 0xb7, 0x84, 0xff, 0xfd, 0xbd, 0x8a, 0xff, 0xfd, 0xbe, 0x8a, 0xff, 0xff, 0xb6, 0x83, 0xff, 0xf2, 0xa6, 0x76, 0xff, 0xd3, 0x94, 0x68, 0xff, 0xbc, 0x83, 0x5b, 0xff, 0xaf, 0x72, 0x4d, 0xff, 0xa3, 0x65, 0x3f, 0xff, 0x9a, 0x5b, 0x34, 0xff, 0x94, 0x52, 0x2e, 0xff, 0x8f, 0x4d, 0x29, 0xff, 0x8a, 0x48, 0x26, 0xff, 0x86, 0x43, 0x24, 0xff, 0x82, 0x3f, 0x22, 0xff, 0x80, 0x3d, 0x21, 0xff, 0x7e, 0x3a, 0x20, 0xff, 0x7c, 0x3a, 0x20, 0xff, 0x7d, 0x3a, 0x20, 0xff, 0x7e, 0x3a, 0x1f, 0xff, 0x7e, 0x3a, 0x21, 0xff, 0x7f, 0x3c, 0x21, 0xff, 0x80, 0x3e, 0x22, 0xff, 0x84, 0x3f, 0x23, 0xff, 0x87, 0x42, 0x24, 0xff, 0x88, 0x45, 0x25, 0xff, 0x7f, 0x3c, 0x22, 0xff, 0x7a, 0x39, 0x1f, 0xff, 0x7b, 0x39, 0x20, 0xff, 0x7c, 0x39, 0x21, 0xff, 0x7b, 0x39, 0x20, 0xff, 0x83, 0x42, 0x28, 0xff, 0x6d, 0x2f, 0x18, 0xff, 0x65, 0x28, 0x11, 0xff, 0x65, 0x28, 0x12, 0xff, 0x65, 0x28, 0x13, 0xff, 0x64, 0x29, 0x0c, 0xff, 0x62, 0x28, 0x0e, 0xff, 0x62, 0x26, 0x0f, 0xff, 0x66, 0x2a, 0x11, 0xff, 0x66, 0x2a, 0x12, 0xff, 0x64, 0x29, 0x10, 0xff, 0x64, 0x28, 0x0f, 0xff, 0x62, 0x24, 0x0b, 0xff, 0x64, 0x27, 0x0f, 0xff, 0x79, 0x39, 0x22, 0xff, 0x80, 0x3f, 0x25, 0xff, 0x81, 0x3f, 0x24, 0xff, 0x82, 0x40, 0x25, 0xff, 0x80, 0x3e, 0x24, 0xff, 0x80, 0x3e, 0x23, 0xff, 0x80, 0x3e, 0x24, 0xff, 0x81, 0x3f, 0x25, 0xff, 0x85, 0x43, 0x26, 0xff, 0x86, 0x46, 0x28, 0xff, 0x88, 0x49, 0x2c, 0xff, 0x80, 0x41, 0x28, 0xff, 0x7c, 0x3e, 0x25, 0xff, 0x7c, 0x3c, 0x25, 0xff, 0x7c, 0x3c, 0x25, 0xff, 0x79, 0x39, 0x25, 0xff, 0x80, 0x40, 0x27, 0xff, 0x84, 0x43, 0x27, 0xff, 0x80, 0x41, 0x25, 0xff, 0x7c, 0x3e, 0x23, 0xff, 0x7a, 0x3a, 0x23, 0xff, 0x75, 0x36, 0x20, 0xff, 0x74, 0x34, 0x1f, 0xff, 0x77, 0x39, 0x22, 0xff, 0x74, 0x35, 0x20, 0xff, 0x73, 0x34, 0x20, 0xff, 0x72, 0x34, 0x20, 0xff, 0x72, 0x35, 0x1f, 0xff, 0x72, 0x32, 0x1f, 0xff, 0x72, 0x33, 0x1e, 0xff, 0x72, 0x34, 0x1e, 0xff, 0x72, 0x35, 0x1e, 0xff, 0x73, 0x35, 0x1e, 0xff, 0x72, 0x32, 0x1e, 0xff, 0x74, 0x35, 0x1e, 0xff, 0x75, 0x34, 0x1f, 0xff, 0x76, 0x34, 0x1f, 0xff, 0x76, 0x36, 0x1e, 0xff, 0x76, 0x36, 0x1f, 0xff, 0x78, 0x39, 0x1f, 0xff, 0x7b, 0x3d, 0x23, 0xff, 0x80, 0x3e, 0x23, 0xff, 0x80, 0x41, 0x24, 0xff, 0x83, 0x41, 0x25, 0xff, 0x84, 0x43, 0x25, 0xff, 0x86, 0x43, 0x25, 0xff, 0x84, 0x43, 0x25, 0xff, 0x85, 0x41, 0x25, 0xff, 0x88, 0x44, 0x25, 0xff, 0x86, 0x43, 0x25, 0xff, 0x88, 0x44, 0x26, 0xff, 0x8b, 0x48, 0x28, 0xff, 0x8d, 0x4a, 0x28, 0xff, 0x8e, 0x4d, 0x29, 0xff, 0x8f, 0x4c, 0x29, 0xff, 0x8e, 0x4b, 0x28, 0xff, + 0x8c, 0x4c, 0x28, 0xff, 0x8e, 0x4c, 0x29, 0xff, 0x92, 0x50, 0x2b, 0xff, 0x94, 0x52, 0x2d, 0xff, 0x98, 0x55, 0x2f, 0xff, 0xa1, 0x60, 0x35, 0xff, 0xd0, 0x85, 0x51, 0xff, 0xd6, 0x8a, 0x57, 0xff, 0xd4, 0x88, 0x56, 0xff, 0xca, 0x82, 0x4f, 0xff, 0xcd, 0x81, 0x4f, 0xff, 0xc8, 0x80, 0x50, 0xff, 0xc7, 0x80, 0x4f, 0xff, 0xcc, 0x84, 0x53, 0xff, 0xcb, 0x82, 0x52, 0xff, 0xc8, 0x81, 0x53, 0xff, 0xc5, 0x80, 0x51, 0xff, 0xc2, 0x7f, 0x50, 0xff, 0xbf, 0x7c, 0x4e, 0xff, 0xbb, 0x7b, 0x4f, 0xff, 0xab, 0x68, 0x40, 0xff, 0x9f, 0x5d, 0x36, 0xff, 0x9f, 0x59, 0x33, 0xff, 0xa0, 0x5d, 0x36, 0xff, 0xa1, 0x5e, 0x36, 0xff, 0x9c, 0x5b, 0x34, 0xff, 0x99, 0x57, 0x33, 0xff, 0x98, 0x56, 0x32, 0xff, 0x98, 0x56, 0x31, 0xff, 0x97, 0x55, 0x32, 0xff, 0x99, 0x55, 0x31, 0xff, 0x99, 0x57, 0x31, 0xff, 0x9a, 0x56, 0x31, 0xff, 0x9b, 0x5a, 0x32, 0xff, 0xa0, 0x5d, 0x34, 0xff, 0xa2, 0x60, 0x37, 0xff, 0xa2, 0x63, 0x3d, 0xff, 0xa1, 0x65, 0x3e, 0xff, 0xa1, 0x67, 0x3d, 0xff, 0xa0, 0x62, 0x38, 0xff, 0xa0, 0x5e, 0x35, 0xff, 0xa0, 0x5f, 0x36, 0xff, 0xa0, 0x5e, 0x36, 0xff, 0xa0, 0x62, 0x38, 0xff, 0x9f, 0x60, 0x3a, 0xff, 0x91, 0x51, 0x32, 0xff, 0x6f, 0x32, 0x19, 0xff, 0x59, 0x1f, 0x03, 0xff, 0x5d, 0x23, 0x0a, 0xff, 0x5e, 0x23, 0x08, 0xff, 0x61, 0x26, 0x0b, 0xff, 0x62, 0x27, 0x0a, 0xff, 0x5e, 0x24, 0x09, 0xff, 0x63, 0x25, 0x0b, 0xff, 0x64, 0x28, 0x0d, 0xff, 0x65, 0x28, 0x11, 0xff, 0x68, 0x2b, 0x12, 0xff, 0x6a, 0x2e, 0x13, 0xff, 0x6d, 0x2f, 0x16, 0xff, 0x72, 0x30, 0x19, 0xff, 0x72, 0x2f, 0x18, 0xff, 0x72, 0x31, 0x1b, 0xff, 0x76, 0x34, 0x1b, 0xff, 0x7a, 0x38, 0x1c, 0xff, 0x7e, 0x3a, 0x20, 0xff, 0x85, 0x3f, 0x22, 0xff, 0x8b, 0x46, 0x26, 0xff, 0x8e, 0x4a, 0x28, 0xff, 0x92, 0x4f, 0x2b, 0xff, 0x97, 0x53, 0x2e, 0xff, 0x9b, 0x59, 0x32, 0xff, 0xa0, 0x5f, 0x35, 0xff, 0xa4, 0x63, 0x3b, 0xff, 0xa7, 0x66, 0x40, 0xff, 0xae, 0x6f, 0x45, 0xff, 0xb5, 0x76, 0x4a, 0xff, 0xaf, 0x72, 0x47, 0xff, 0x9c, 0x5d, 0x3a, 0xff, 0x9f, 0x61, 0x3d, 0xff, 0xa1, 0x63, 0x3d, 0xff, 0xa5, 0x66, 0x3d, 0xff, 0xa9, 0x67, 0x3d, 0xff, 0xaa, 0x68, 0x3d, 0xff, 0xab, 0x68, 0x3d, 0xff, 0xaa, 0x68, 0x3d, 0xff, 0xab, 0x68, 0x3e, 0xff, 0xac, 0x6a, 0x3d, 0xff, 0xac, 0x6b, 0x3f, 0xff, 0xac, 0x69, 0x40, 0xff, 0xb1, 0x6e, 0x42, 0xff, 0xb4, 0x72, 0x46, 0xff, 0xb7, 0x76, 0x49, 0xff, 0xc0, 0x7f, 0x52, 0xff, 0xba, 0x77, 0x4b, 0xff, 0x95, 0x53, 0x2c, 0xff, 0x8f, 0x4d, 0x27, 0xff, 0x94, 0x54, 0x2b, 0xff, 0x95, 0x57, 0x2e, 0xff, 0x97, 0x5a, 0x31, 0xff, 0x97, 0x5d, 0x34, 0xff, 0x96, 0x61, 0x37, 0xff, 0x97, 0x62, 0x3a, 0xff, 0x96, 0x62, 0x3d, 0xff, 0x97, 0x65, 0x40, 0xff, 0x96, 0x66, 0x41, 0xff, 0x95, 0x68, 0x42, 0xff, 0x97, 0x69, 0x40, 0xff, 0x96, 0x67, 0x3e, 0xff, 0x95, 0x65, 0x3c, 0xff, 0x96, 0x64, 0x3c, 0xff, 0x96, 0x64, 0x3c, 0xff, 0x98, 0x64, 0x3b, 0xff, 0x98, 0x64, 0x39, 0xff, 0x94, 0x5d, 0x33, 0xff, 0x90, 0x55, 0x30, 0xff, 0x8e, 0x55, 0x30, 0xff, 0x8e, 0x57, 0x30, 0xff, 0x8f, 0x56, 0x30, 0xff, 0x91, 0x54, 0x2f, 0xff, 0x94, 0x55, 0x30, 0xff, 0x96, 0x58, 0x31, 0xff, 0x91, 0x53, 0x2d, 0xff, 0xa0, 0x68, 0x3e, 0xff, 0xdf, 0x9d, 0x66, 0xff, 0xff, 0xab, 0x70, 0xff, 0xf4, 0x9b, 0x63, 0xff, 0xf0, 0x9a, 0x60, 0xff, 0xf2, 0x9a, 0x60, 0xff, 0xd9, 0x8e, 0x5a, 0xff, 0xc6, 0x86, 0x53, 0xff, 0xc9, 0x8a, 0x56, 0xff, 0xd1, 0x90, 0x5f, 0xff, 0xde, 0x99, 0x69, 0xff, 0xee, 0xa4, 0x74, 0xff, 0xf8, 0xab, 0x79, 0xff, 0xf9, 0xac, 0x7c, 0xff, 0xf3, 0xa9, 0x79, 0xff, 0xe3, 0x9e, 0x6f, 0xff, 0xcb, 0x8c, 0x62, 0xff, 0xb8, 0x7d, 0x54, 0xff, 0xac, 0x70, 0x48, 0xff, 0xa3, 0x66, 0x40, 0xff, 0x9c, 0x5b, 0x36, 0xff, 0x95, 0x52, 0x2f, 0xff, 0x90, 0x4d, 0x2a, 0xff, 0x8b, 0x49, 0x27, 0xff, 0x89, 0x46, 0x25, 0xff, 0x87, 0x42, 0x24, 0xff, 0x83, 0x3f, 0x23, 0xff, 0x82, 0x3f, 0x22, 0xff, 0x80, 0x3e, 0x21, 0xff, 0x7f, 0x3b, 0x21, 0xff, 0x7f, 0x3b, 0x21, 0xff, 0x80, 0x3d, 0x22, 0xff, 0x81, 0x3e, 0x22, 0xff, 0x82, 0x3f, 0x23, 0xff, 0x84, 0x41, 0x24, 0xff, 0x86, 0x43, 0x24, 0xff, 0x81, 0x3e, 0x22, 0xff, 0x7d, 0x3b, 0x20, 0xff, 0x7c, 0x3a, 0x20, 0xff, 0x7c, 0x39, 0x21, 0xff, 0x7c, 0x39, 0x21, 0xff, 0x7d, 0x3b, 0x21, 0xff, 0x89, 0x47, 0x27, 0xff, 0x77, 0x37, 0x20, 0xff, 0x63, 0x28, 0x0e, 0xff, 0x63, 0x28, 0x0d, 0xff, 0x67, 0x2b, 0x12, 0xff, 0x66, 0x29, 0x13, 0xff, 0x63, 0x27, 0x10, 0xff, 0x63, 0x27, 0x0f, 0xff, 0x63, 0x25, 0x0f, 0xff, 0x64, 0x29, 0x10, 0xff, 0x63, 0x29, 0x0f, 0xff, 0x64, 0x26, 0x0f, 0xff, 0x61, 0x27, 0x0e, 0xff, 0x60, 0x27, 0x0e, 0xff, 0x77, 0x37, 0x1d, 0xff, 0x81, 0x42, 0x25, 0xff, 0x7f, 0x3d, 0x24, 0xff, 0x7d, 0x3a, 0x22, 0xff, 0x80, 0x3d, 0x24, 0xff, 0x82, 0x40, 0x24, 0xff, 0x82, 0x40, 0x25, 0xff, 0x82, 0x41, 0x26, 0xff, 0x83, 0x43, 0x26, 0xff, 0x86, 0x48, 0x28, 0xff, 0x89, 0x4a, 0x2b, 0xff, 0x82, 0x42, 0x27, 0xff, 0x7f, 0x40, 0x26, 0xff, 0x7f, 0x3f, 0x25, 0xff, 0x7e, 0x3f, 0x26, 0xff, 0x7b, 0x3e, 0x25, 0xff, 0x85, 0x44, 0x29, 0xff, 0x85, 0x44, 0x28, 0xff, 0x83, 0x42, 0x26, 0xff, 0x80, 0x3f, 0x24, 0xff, 0x7d, 0x3d, 0x23, 0xff, 0x78, 0x38, 0x22, 0xff, 0x75, 0x36, 0x22, 0xff, 0x72, 0x33, 0x1f, 0xff, 0x73, 0x34, 0x1f, 0xff, 0x71, 0x34, 0x20, 0xff, 0x72, 0x33, 0x1f, 0xff, 0x72, 0x34, 0x1f, 0xff, 0x72, 0x33, 0x1e, 0xff, 0x72, 0x32, 0x1e, 0xff, 0x70, 0x33, 0x1b, 0xff, 0x6f, 0x33, 0x1b, 0xff, 0x72, 0x32, 0x1b, 0xff, 0x71, 0x31, 0x1b, 0xff, 0x73, 0x33, 0x1d, 0xff, 0x73, 0x34, 0x1d, 0xff, 0x73, 0x33, 0x1d, 0xff, 0x76, 0x35, 0x1e, 0xff, 0x79, 0x39, 0x21, 0xff, 0x79, 0x39, 0x23, 0xff, 0x7c, 0x3c, 0x22, 0xff, 0x80, 0x3e, 0x23, 0xff, 0x82, 0x41, 0x24, 0xff, 0x82, 0x42, 0x25, 0xff, 0x83, 0x40, 0x25, 0xff, 0x83, 0x40, 0x25, 0xff, 0x84, 0x42, 0x24, 0xff, 0x84, 0x41, 0x23, 0xff, 0x84, 0x42, 0x24, 0xff, 0x86, 0x44, 0x25, 0xff, 0x8a, 0x47, 0x27, 0xff, 0x8e, 0x4c, 0x2a, 0xff, 0x90, 0x51, 0x2d, 0xff, 0x92, 0x52, 0x2e, 0xff, 0x92, 0x4f, 0x2d, 0xff, 0x8e, 0x4b, 0x29, 0xff, + 0x91, 0x4f, 0x2c, 0xff, 0x8f, 0x4c, 0x2a, 0xff, 0x8e, 0x4d, 0x29, 0xff, 0x92, 0x4e, 0x2c, 0xff, 0x97, 0x55, 0x2f, 0xff, 0x98, 0x58, 0x31, 0xff, 0xa3, 0x62, 0x38, 0xff, 0xb9, 0x75, 0x45, 0xff, 0xd3, 0x86, 0x54, 0xff, 0xdc, 0x8e, 0x5b, 0xff, 0xce, 0x84, 0x53, 0xff, 0xcb, 0x82, 0x52, 0xff, 0xce, 0x84, 0x54, 0xff, 0xcd, 0x84, 0x52, 0xff, 0xce, 0x84, 0x53, 0xff, 0xcc, 0x83, 0x52, 0xff, 0xce, 0x84, 0x54, 0xff, 0xcf, 0x84, 0x53, 0xff, 0xca, 0x83, 0x54, 0xff, 0xc6, 0x83, 0x53, 0xff, 0xc4, 0x80, 0x56, 0xff, 0xb8, 0x76, 0x4a, 0xff, 0xab, 0x67, 0x40, 0xff, 0x9f, 0x5d, 0x34, 0xff, 0x9d, 0x5a, 0x34, 0xff, 0x9a, 0x59, 0x34, 0xff, 0x9c, 0x5b, 0x35, 0xff, 0x9a, 0x5b, 0x34, 0xff, 0x9a, 0x59, 0x34, 0xff, 0x9b, 0x5a, 0x33, 0xff, 0x9b, 0x59, 0x32, 0xff, 0x9f, 0x59, 0x33, 0xff, 0xa2, 0x5e, 0x35, 0xff, 0xa3, 0x63, 0x38, 0xff, 0xa6, 0x67, 0x3e, 0xff, 0xa7, 0x6a, 0x44, 0xff, 0xa6, 0x6a, 0x48, 0xff, 0xa6, 0x6b, 0x45, 0xff, 0xa5, 0x6a, 0x41, 0xff, 0xa4, 0x65, 0x3c, 0xff, 0xa4, 0x64, 0x3b, 0xff, 0xa4, 0x64, 0x3b, 0xff, 0xa7, 0x65, 0x3e, 0xff, 0xa5, 0x67, 0x40, 0xff, 0x72, 0x35, 0x18, 0xff, 0x60, 0x25, 0x0b, 0xff, 0x5b, 0x20, 0x07, 0xff, 0x5d, 0x22, 0x08, 0xff, 0x5c, 0x22, 0x08, 0xff, 0x5e, 0x23, 0x08, 0xff, 0x60, 0x24, 0x09, 0xff, 0x62, 0x25, 0x0b, 0xff, 0x5c, 0x24, 0x08, 0xff, 0x60, 0x23, 0x0c, 0xff, 0x62, 0x25, 0x0d, 0xff, 0x65, 0x27, 0x0f, 0xff, 0x67, 0x29, 0x12, 0xff, 0x6b, 0x2c, 0x15, 0xff, 0x6d, 0x2f, 0x16, 0xff, 0x71, 0x2f, 0x16, 0xff, 0x72, 0x30, 0x17, 0xff, 0x71, 0x30, 0x18, 0xff, 0x74, 0x33, 0x1b, 0xff, 0x79, 0x36, 0x1e, 0xff, 0x7f, 0x3b, 0x20, 0xff, 0x84, 0x3f, 0x22, 0xff, 0x88, 0x44, 0x25, 0xff, 0x8d, 0x49, 0x27, 0xff, 0x90, 0x4f, 0x29, 0xff, 0x95, 0x51, 0x2d, 0xff, 0x99, 0x57, 0x2f, 0xff, 0x9d, 0x5b, 0x33, 0xff, 0xa3, 0x61, 0x39, 0xff, 0xa8, 0x68, 0x3d, 0xff, 0xae, 0x6f, 0x43, 0xff, 0xb1, 0x73, 0x48, 0xff, 0xa5, 0x69, 0x42, 0xff, 0x98, 0x59, 0x38, 0xff, 0x9d, 0x5c, 0x3c, 0xff, 0x9f, 0x61, 0x3e, 0xff, 0xa4, 0x66, 0x3e, 0xff, 0xa6, 0x66, 0x3e, 0xff, 0xa7, 0x65, 0x3c, 0xff, 0xa9, 0x67, 0x3d, 0xff, 0xa9, 0x68, 0x3d, 0xff, 0xa9, 0x66, 0x3b, 0xff, 0xa8, 0x67, 0x3c, 0xff, 0xab, 0x69, 0x3f, 0xff, 0xab, 0x68, 0x3e, 0xff, 0xae, 0x6a, 0x3f, 0xff, 0xb3, 0x70, 0x44, 0xff, 0xb6, 0x74, 0x47, 0xff, 0xba, 0x78, 0x4a, 0xff, 0xbf, 0x7d, 0x4f, 0xff, 0xb2, 0x71, 0x46, 0xff, 0x94, 0x52, 0x2c, 0xff, 0x92, 0x50, 0x29, 0xff, 0x95, 0x58, 0x2e, 0xff, 0x95, 0x5a, 0x30, 0xff, 0x97, 0x5c, 0x32, 0xff, 0x97, 0x5f, 0x35, 0xff, 0x96, 0x60, 0x38, 0xff, 0x97, 0x62, 0x39, 0xff, 0x96, 0x64, 0x3d, 0xff, 0x95, 0x66, 0x40, 0xff, 0x96, 0x66, 0x40, 0xff, 0x96, 0x67, 0x3f, 0xff, 0x96, 0x67, 0x3e, 0xff, 0x97, 0x66, 0x3d, 0xff, 0x98, 0x66, 0x3b, 0xff, 0x98, 0x65, 0x3b, 0xff, 0x97, 0x63, 0x3a, 0xff, 0x98, 0x64, 0x39, 0xff, 0x94, 0x5e, 0x35, 0xff, 0x8e, 0x56, 0x2f, 0xff, 0x8d, 0x54, 0x2e, 0xff, 0x8d, 0x54, 0x2e, 0xff, 0x8e, 0x52, 0x2d, 0xff, 0x90, 0x52, 0x2d, 0xff, 0x93, 0x55, 0x2d, 0xff, 0x98, 0x58, 0x2f, 0xff, 0x9e, 0x5e, 0x34, 0xff, 0x9d, 0x5f, 0x32, 0xff, 0xc7, 0x86, 0x51, 0xff, 0xf9, 0xa8, 0x6e, 0xff, 0xfc, 0xa1, 0x64, 0xff, 0xf8, 0x9d, 0x60, 0xff, 0xf9, 0x9d, 0x61, 0xff, 0xf0, 0x99, 0x5f, 0xff, 0xd2, 0x8c, 0x56, 0xff, 0xc2, 0x84, 0x52, 0xff, 0xc7, 0x88, 0x58, 0xff, 0xcb, 0x8d, 0x5e, 0xff, 0xd4, 0x92, 0x65, 0xff, 0xde, 0x99, 0x6b, 0xff, 0xe2, 0x9d, 0x6d, 0xff, 0xda, 0x9a, 0x6a, 0xff, 0xcc, 0x8e, 0x62, 0xff, 0xbf, 0x83, 0x5a, 0xff, 0xb4, 0x78, 0x50, 0xff, 0xaa, 0x6e, 0x47, 0xff, 0xa2, 0x64, 0x3d, 0xff, 0x9b, 0x5a, 0x35, 0xff, 0x97, 0x54, 0x30, 0xff, 0x92, 0x4f, 0x2c, 0xff, 0x8d, 0x4c, 0x29, 0xff, 0x8a, 0x48, 0x27, 0xff, 0x88, 0x46, 0x25, 0xff, 0x87, 0x44, 0x24, 0xff, 0x85, 0x43, 0x24, 0xff, 0x83, 0x41, 0x23, 0xff, 0x83, 0x40, 0x22, 0xff, 0x83, 0x40, 0x22, 0xff, 0x83, 0x40, 0x22, 0xff, 0x83, 0x40, 0x23, 0xff, 0x85, 0x41, 0x23, 0xff, 0x86, 0x42, 0x24, 0xff, 0x81, 0x3e, 0x23, 0xff, 0x81, 0x3e, 0x22, 0xff, 0x7d, 0x3a, 0x21, 0xff, 0x7c, 0x38, 0x21, 0xff, 0x7c, 0x3a, 0x21, 0xff, 0x7c, 0x3a, 0x21, 0xff, 0x84, 0x42, 0x25, 0xff, 0x89, 0x46, 0x28, 0xff, 0x82, 0x42, 0x26, 0xff, 0x62, 0x26, 0x0c, 0xff, 0x64, 0x28, 0x10, 0xff, 0x6a, 0x2e, 0x17, 0xff, 0x67, 0x28, 0x14, 0xff, 0x63, 0x27, 0x10, 0xff, 0x5f, 0x26, 0x0f, 0xff, 0x61, 0x23, 0x0d, 0xff, 0x60, 0x26, 0x0d, 0xff, 0x62, 0x27, 0x0d, 0xff, 0x63, 0x26, 0x0f, 0xff, 0x62, 0x27, 0x0d, 0xff, 0x5e, 0x25, 0x0c, 0xff, 0x73, 0x36, 0x1b, 0xff, 0x7f, 0x41, 0x24, 0xff, 0x7f, 0x3e, 0x24, 0xff, 0x7c, 0x3a, 0x21, 0xff, 0x79, 0x38, 0x20, 0xff, 0x7b, 0x39, 0x22, 0xff, 0x7e, 0x3c, 0x24, 0xff, 0x84, 0x43, 0x26, 0xff, 0x86, 0x45, 0x28, 0xff, 0x87, 0x47, 0x29, 0xff, 0x88, 0x48, 0x2b, 0xff, 0x83, 0x43, 0x28, 0xff, 0x81, 0x40, 0x25, 0xff, 0x81, 0x40, 0x27, 0xff, 0x7c, 0x3e, 0x24, 0xff, 0x90, 0x53, 0x32, 0xff, 0x84, 0x44, 0x29, 0xff, 0x85, 0x43, 0x29, 0xff, 0x86, 0x45, 0x28, 0xff, 0x7f, 0x40, 0x25, 0xff, 0x78, 0x38, 0x23, 0xff, 0x74, 0x36, 0x22, 0xff, 0x73, 0x34, 0x20, 0xff, 0x72, 0x33, 0x1f, 0xff, 0x72, 0x34, 0x1f, 0xff, 0x71, 0x32, 0x1f, 0xff, 0x73, 0x33, 0x1f, 0xff, 0x73, 0x34, 0x1f, 0xff, 0x72, 0x33, 0x1e, 0xff, 0x71, 0x32, 0x1d, 0xff, 0x70, 0x32, 0x1d, 0xff, 0x6f, 0x33, 0x1b, 0xff, 0x6f, 0x30, 0x19, 0xff, 0x71, 0x31, 0x1b, 0xff, 0x72, 0x31, 0x19, 0xff, 0x72, 0x32, 0x1c, 0xff, 0x75, 0x34, 0x1f, 0xff, 0x77, 0x36, 0x1f, 0xff, 0x76, 0x37, 0x20, 0xff, 0x77, 0x38, 0x21, 0xff, 0x7b, 0x3b, 0x23, 0xff, 0x7f, 0x3e, 0x23, 0xff, 0x7e, 0x3d, 0x23, 0xff, 0x80, 0x3f, 0x24, 0xff, 0x80, 0x3f, 0x23, 0xff, 0x82, 0x40, 0x23, 0xff, 0x7f, 0x3f, 0x22, 0xff, 0x83, 0x40, 0x24, 0xff, 0x85, 0x43, 0x25, 0xff, 0x87, 0x47, 0x26, 0xff, 0x8c, 0x4b, 0x2a, 0xff, 0x8f, 0x51, 0x2d, 0xff, 0x90, 0x54, 0x31, 0xff, 0x91, 0x54, 0x31, 0xff, 0x94, 0x55, 0x32, 0xff, 0x92, 0x51, 0x2d, 0xff, + 0x92, 0x4e, 0x2c, 0xff, 0x92, 0x4f, 0x2b, 0xff, 0x91, 0x4f, 0x2b, 0xff, 0x93, 0x4f, 0x2d, 0xff, 0x90, 0x50, 0x2d, 0xff, 0x96, 0x53, 0x30, 0xff, 0x9e, 0x5d, 0x36, 0xff, 0xa1, 0x63, 0x39, 0xff, 0xa9, 0x66, 0x3e, 0xff, 0xb3, 0x71, 0x43, 0xff, 0xd0, 0x87, 0x55, 0xff, 0xe6, 0x90, 0x5b, 0xff, 0xd9, 0x89, 0x58, 0xff, 0xd3, 0x86, 0x55, 0xff, 0xd5, 0x88, 0x54, 0xff, 0xd0, 0x87, 0x55, 0xff, 0xd3, 0x86, 0x55, 0xff, 0xd8, 0x88, 0x58, 0xff, 0xda, 0x8a, 0x59, 0xff, 0xd2, 0x88, 0x57, 0xff, 0xcc, 0x85, 0x56, 0xff, 0xc6, 0x83, 0x55, 0xff, 0xbf, 0x7b, 0x50, 0xff, 0xad, 0x6a, 0x44, 0xff, 0x9d, 0x5a, 0x36, 0xff, 0x9f, 0x5c, 0x37, 0xff, 0x9f, 0x5f, 0x39, 0xff, 0x9f, 0x5f, 0x39, 0xff, 0x9f, 0x5f, 0x38, 0xff, 0xa2, 0x60, 0x37, 0xff, 0xa3, 0x61, 0x39, 0xff, 0xa7, 0x64, 0x3b, 0xff, 0xaa, 0x68, 0x40, 0xff, 0xae, 0x6f, 0x45, 0xff, 0xac, 0x73, 0x4c, 0xff, 0xaa, 0x70, 0x4e, 0xff, 0xa9, 0x70, 0x4b, 0xff, 0xab, 0x6e, 0x46, 0xff, 0xa9, 0x69, 0x42, 0xff, 0xaa, 0x6c, 0x42, 0xff, 0xab, 0x6b, 0x42, 0xff, 0x9f, 0x60, 0x3a, 0xff, 0x7a, 0x3e, 0x23, 0xff, 0x5a, 0x23, 0x07, 0xff, 0x5a, 0x20, 0x04, 0xff, 0x5a, 0x20, 0x06, 0xff, 0x5a, 0x21, 0x08, 0xff, 0x5a, 0x21, 0x08, 0xff, 0x5a, 0x21, 0x08, 0xff, 0x5d, 0x22, 0x08, 0xff, 0x5d, 0x22, 0x09, 0xff, 0x5e, 0x23, 0x0a, 0xff, 0x5a, 0x20, 0x06, 0xff, 0x5d, 0x22, 0x08, 0xff, 0x60, 0x24, 0x0c, 0xff, 0x65, 0x27, 0x0f, 0xff, 0x67, 0x29, 0x0f, 0xff, 0x6b, 0x2c, 0x13, 0xff, 0x6e, 0x30, 0x16, 0xff, 0x71, 0x31, 0x17, 0xff, 0x71, 0x31, 0x16, 0xff, 0x6f, 0x30, 0x16, 0xff, 0x73, 0x33, 0x1a, 0xff, 0x76, 0x35, 0x1d, 0xff, 0x7c, 0x39, 0x20, 0xff, 0x83, 0x3f, 0x22, 0xff, 0x87, 0x43, 0x25, 0xff, 0x8a, 0x47, 0x27, 0xff, 0x8f, 0x4c, 0x29, 0xff, 0x93, 0x50, 0x2b, 0xff, 0x97, 0x55, 0x2f, 0xff, 0x9b, 0x59, 0x32, 0xff, 0x9e, 0x5f, 0x35, 0xff, 0xa6, 0x67, 0x3b, 0xff, 0xad, 0x6f, 0x42, 0xff, 0xa9, 0x69, 0x41, 0xff, 0x94, 0x55, 0x34, 0xff, 0x99, 0x5a, 0x39, 0xff, 0x9d, 0x5c, 0x3b, 0xff, 0x9f, 0x60, 0x3c, 0xff, 0xa1, 0x64, 0x3d, 0xff, 0xa4, 0x67, 0x3d, 0xff, 0xa6, 0x69, 0x3f, 0xff, 0xa6, 0x6a, 0x40, 0xff, 0xa7, 0x67, 0x3c, 0xff, 0xa8, 0x66, 0x3a, 0xff, 0xa7, 0x66, 0x3b, 0xff, 0xa9, 0x67, 0x3c, 0xff, 0xaa, 0x68, 0x3c, 0xff, 0xaa, 0x68, 0x3d, 0xff, 0xad, 0x6c, 0x40, 0xff, 0xb3, 0x71, 0x45, 0xff, 0xb7, 0x76, 0x49, 0xff, 0xbc, 0x7a, 0x4d, 0xff, 0xbd, 0x7a, 0x4d, 0xff, 0xa8, 0x66, 0x3c, 0xff, 0x92, 0x51, 0x29, 0xff, 0x96, 0x56, 0x2d, 0xff, 0x96, 0x59, 0x2f, 0xff, 0x96, 0x5b, 0x31, 0xff, 0x97, 0x5d, 0x34, 0xff, 0x96, 0x5e, 0x34, 0xff, 0x96, 0x5f, 0x36, 0xff, 0x95, 0x60, 0x37, 0xff, 0x96, 0x65, 0x3b, 0xff, 0x96, 0x68, 0x3e, 0xff, 0x95, 0x67, 0x3c, 0xff, 0x97, 0x67, 0x3c, 0xff, 0x98, 0x66, 0x3c, 0xff, 0x98, 0x66, 0x3c, 0xff, 0x97, 0x64, 0x3b, 0xff, 0x97, 0x64, 0x3b, 0xff, 0x98, 0x65, 0x3a, 0xff, 0x95, 0x61, 0x37, 0xff, 0x8f, 0x58, 0x31, 0xff, 0x8d, 0x53, 0x2e, 0xff, 0x8d, 0x50, 0x2c, 0xff, 0x8e, 0x50, 0x2b, 0xff, 0x90, 0x52, 0x2c, 0xff, 0x97, 0x56, 0x30, 0xff, 0x9e, 0x5d, 0x33, 0xff, 0xa2, 0x61, 0x36, 0xff, 0xa0, 0x61, 0x35, 0xff, 0xac, 0x6b, 0x3d, 0xff, 0xdf, 0x91, 0x5b, 0xff, 0xff, 0xa3, 0x68, 0xff, 0xfb, 0x9d, 0x62, 0xff, 0xf6, 0x9b, 0x60, 0xff, 0xf2, 0x99, 0x5e, 0xff, 0xed, 0x97, 0x5f, 0xff, 0xd8, 0x91, 0x5b, 0xff, 0xc4, 0x86, 0x53, 0xff, 0xc2, 0x82, 0x54, 0xff, 0xc5, 0x84, 0x58, 0xff, 0xc6, 0x86, 0x5b, 0xff, 0xc3, 0x87, 0x5c, 0xff, 0xc1, 0x84, 0x59, 0xff, 0xbd, 0x7f, 0x55, 0xff, 0xb7, 0x7a, 0x50, 0xff, 0xb0, 0x73, 0x4a, 0xff, 0xaa, 0x6d, 0x43, 0xff, 0xa3, 0x65, 0x3c, 0xff, 0x9b, 0x5b, 0x35, 0xff, 0x98, 0x55, 0x32, 0xff, 0x95, 0x53, 0x2e, 0xff, 0x91, 0x4f, 0x2b, 0xff, 0x8f, 0x4c, 0x29, 0xff, 0x8d, 0x4c, 0x29, 0xff, 0x8c, 0x49, 0x28, 0xff, 0x8b, 0x47, 0x26, 0xff, 0x89, 0x46, 0x26, 0xff, 0x88, 0x45, 0x26, 0xff, 0x87, 0x44, 0x25, 0xff, 0x87, 0x43, 0x26, 0xff, 0x86, 0x41, 0x25, 0xff, 0x86, 0x42, 0x25, 0xff, 0x7f, 0x3d, 0x21, 0xff, 0x80, 0x3d, 0x21, 0xff, 0x82, 0x3f, 0x23, 0xff, 0x7d, 0x39, 0x22, 0xff, 0x7c, 0x3a, 0x21, 0xff, 0x7e, 0x3a, 0x21, 0xff, 0x7d, 0x3a, 0x21, 0xff, 0x84, 0x42, 0x25, 0xff, 0x85, 0x41, 0x25, 0xff, 0x86, 0x44, 0x28, 0xff, 0x73, 0x33, 0x1e, 0xff, 0x6a, 0x2e, 0x1c, 0xff, 0x6b, 0x30, 0x1c, 0xff, 0x67, 0x2d, 0x14, 0xff, 0x65, 0x29, 0x10, 0xff, 0x60, 0x26, 0x0e, 0xff, 0x5f, 0x26, 0x0f, 0xff, 0x61, 0x24, 0x0c, 0xff, 0x62, 0x26, 0x0c, 0xff, 0x63, 0x25, 0x0f, 0xff, 0x61, 0x26, 0x0f, 0xff, 0x62, 0x24, 0x0c, 0xff, 0x62, 0x25, 0x0f, 0xff, 0x7d, 0x3c, 0x22, 0xff, 0x80, 0x3e, 0x24, 0xff, 0x7d, 0x3b, 0x23, 0xff, 0x79, 0x39, 0x22, 0xff, 0x79, 0x39, 0x22, 0xff, 0x7b, 0x3b, 0x22, 0xff, 0x7b, 0x3c, 0x23, 0xff, 0x81, 0x40, 0x26, 0xff, 0x85, 0x46, 0x29, 0xff, 0x88, 0x49, 0x2c, 0xff, 0x86, 0x45, 0x29, 0xff, 0x84, 0x42, 0x27, 0xff, 0x82, 0x40, 0x26, 0xff, 0x8c, 0x4d, 0x2d, 0xff, 0xab, 0x6b, 0x43, 0xff, 0x94, 0x54, 0x33, 0xff, 0x87, 0x47, 0x2b, 0xff, 0x7f, 0x3f, 0x27, 0xff, 0x79, 0x3a, 0x22, 0xff, 0x74, 0x35, 0x21, 0xff, 0x74, 0x35, 0x20, 0xff, 0x72, 0x33, 0x1f, 0xff, 0x72, 0x33, 0x1f, 0xff, 0x72, 0x34, 0x1f, 0xff, 0x71, 0x31, 0x1d, 0xff, 0x72, 0x34, 0x1e, 0xff, 0x72, 0x33, 0x1f, 0xff, 0x72, 0x34, 0x1f, 0xff, 0x71, 0x33, 0x1f, 0xff, 0x6e, 0x30, 0x1a, 0xff, 0x6e, 0x30, 0x17, 0xff, 0x6e, 0x30, 0x17, 0xff, 0x70, 0x31, 0x17, 0xff, 0x71, 0x31, 0x1b, 0xff, 0x73, 0x34, 0x1b, 0xff, 0x75, 0x34, 0x1f, 0xff, 0x78, 0x37, 0x1f, 0xff, 0x76, 0x36, 0x1f, 0xff, 0x79, 0x39, 0x21, 0xff, 0x7b, 0x3a, 0x22, 0xff, 0x7b, 0x3a, 0x22, 0xff, 0x7b, 0x3c, 0x22, 0xff, 0x7a, 0x38, 0x20, 0xff, 0x7a, 0x39, 0x21, 0xff, 0x7f, 0x3d, 0x23, 0xff, 0x82, 0x3f, 0x23, 0xff, 0x83, 0x41, 0x24, 0xff, 0x86, 0x43, 0x25, 0xff, 0x88, 0x46, 0x26, 0xff, 0x8a, 0x49, 0x28, 0xff, 0x8e, 0x4c, 0x2b, 0xff, 0x91, 0x50, 0x2d, 0xff, 0x91, 0x50, 0x2f, 0xff, 0x93, 0x50, 0x2e, 0xff, 0x92, 0x4e, 0x2c, 0xff, +#endif +}; + +lv_img_dsc_t img_bubble_pattern = { + .header.always_zero = 0, + .header.w = 234, + .header.h = 480, + .data_size = 112320 * LV_COLOR_SIZE / 8, + .header.cf = LV_IMG_CF_TRUE_COLOR, + .data = img_bubble_pattern_map, +}; + +#endif /*LV_DEMO_WALLPAPER && LV_USE_DEMO*/ + diff --git a/components/lv_examples/lv_examples/lv_apps/sysmon/sysmon.c b/components/lv_examples/lv_examples/lv_apps/sysmon/sysmon.c new file mode 100644 index 0000000..f58167e --- /dev/null +++ b/components/lv_examples/lv_examples/lv_apps/sysmon/sysmon.c @@ -0,0 +1,175 @@ +/** + * @file lv_sysmon.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "sysmon.h" +#if LV_USE_SYSMON + +#include + + +/********************* + * DEFINES + *********************/ +#define CPU_LABEL_COLOR "FF0000" +#define MEM_LABEL_COLOR "0000FF" +#define CHART_POINT_NUM 100 +#define REFR_TIME 500 + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ +static void sysmon_task(lv_task_t * param); +static void win_close_action(lv_obj_t * btn, lv_event_t event); + +/********************** + * STATIC VARIABLES + **********************/ +static lv_obj_t * win; +static lv_obj_t * chart; +static lv_chart_series_t * cpu_ser; +static lv_chart_series_t * mem_ser; +static lv_obj_t * info_label; +static lv_task_t * refr_task; + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Initialize the system monitor + */ +void sysmon_create(void) +{ + refr_task = lv_task_create(sysmon_task, REFR_TIME, LV_TASK_PRIO_LOW, NULL); + + + lv_coord_t hres = lv_disp_get_hor_res(NULL); + lv_coord_t vres = lv_disp_get_ver_res(NULL); + + win = lv_win_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_t * win_btn = lv_win_add_btn(win, LV_SYMBOL_CLOSE); + lv_obj_set_event_cb(win_btn, win_close_action); + + /*Make the window content responsive*/ + lv_win_set_layout(win, LV_LAYOUT_PRETTY); + + /*Create a chart with two data lines*/ + chart = lv_chart_create(win, NULL); + lv_obj_set_size(chart, hres / 2, vres / 2); + lv_obj_set_pos(chart, LV_DPI / 10, LV_DPI / 10); + lv_chart_set_point_count(chart, CHART_POINT_NUM); + lv_chart_set_range(chart, 0, 100); + lv_chart_set_type(chart, LV_CHART_TYPE_LINE); + lv_chart_set_series_width(chart, 4); + cpu_ser = lv_chart_add_series(chart, LV_COLOR_RED); + mem_ser = lv_chart_add_series(chart, LV_COLOR_BLUE); + + /*Set the data series to zero*/ + uint16_t i; + for(i = 0; i < CHART_POINT_NUM; i++) { + lv_chart_set_next(chart, cpu_ser, 0); + lv_chart_set_next(chart, mem_ser, 0); + } + + /*Create a label for the details of Memory and CPU usage*/ + info_label = lv_label_create(win, NULL); + lv_label_set_recolor(info_label, true); + lv_obj_align(info_label, chart, LV_ALIGN_OUT_RIGHT_TOP, LV_DPI / 4, 0); + + /*Refresh the chart and label manually at first*/ + sysmon_task(NULL); +} + +/********************** + * STATIC FUNCTIONS + **********************/ + +#define SYSMON_STRING_BUFFER_SIZE 256 +/** + * Called periodically to monitor the CPU and memory usage. + * @param param unused + */ +static void sysmon_task(lv_task_t * param) +{ + + (void) param; /*Unused*/ + + LV_LOG_TRACE("sys_mon task started"); + + /*Get CPU and memory information */ + uint8_t cpu_busy; + cpu_busy = 100 - lv_task_get_idle(); + + uint8_t mem_used_pct = 0; +#if LV_MEM_CUSTOM == 0 + lv_mem_monitor_t mem_mon; + lv_mem_monitor(&mem_mon); + mem_used_pct = mem_mon.used_pct; +#endif + + /*Add the CPU and memory data to the chart*/ + lv_chart_set_next(chart, cpu_ser, cpu_busy); + lv_chart_set_next(chart, mem_ser, mem_used_pct); + + /*Refresh the and windows*/ + char buf_long[SYSMON_STRING_BUFFER_SIZE]; + int len = 0; + len += lv_snprintf(buf_long+len, SYSMON_STRING_BUFFER_SIZE-len, "%s%s CPU: %d %%%s\n\n", + LV_TXT_COLOR_CMD, + CPU_LABEL_COLOR, + cpu_busy, + LV_TXT_COLOR_CMD); + +#if LV_MEM_CUSTOM == 0 + len += lv_snprintf(buf_long+len, SYSMON_STRING_BUFFER_SIZE-len, LV_TXT_COLOR_CMD"%s MEMORY: %d %%"LV_TXT_COLOR_CMD"\n" + "Total: %d bytes\n" + "Used: %d bytes\n" + "Free: %d bytes\n" + "Frag: %d %%", + MEM_LABEL_COLOR, + mem_used_pct, + (int)mem_mon.total_size, + (int)mem_mon.total_size - mem_mon.free_size, mem_mon.free_size, mem_mon.frag_pct); + +#else + len += lv_snprintf(buf_long+len, SYSMON_STRING_BUFFER_SIZE-len, LV_TXT_COLOR_CMD"%s MEMORY: N/A"LV_TXT_COLOR_CMD, + MEM_LABEL_COLOR); +#endif + lv_label_set_text(info_label, buf_long); + + + LV_LOG_TRACE("sys_mon task finished"); +} + +/** + * Called when the window's close button is clicked + * @param btn pointer to the close button + * @param event the current event + */ +static void win_close_action(lv_obj_t * btn, lv_event_t event) +{ + (void) btn; /*Unused*/ + + if(event != LV_EVENT_CLICKED) return; + + lv_obj_del(win); + win = NULL; + + lv_task_del(refr_task); + refr_task = NULL; +} + +#endif /*LV_USE_SYMON*/ diff --git a/components/lv_examples/lv_examples/lv_apps/sysmon/sysmon.h b/components/lv_examples/lv_examples/lv_apps/sysmon/sysmon.h new file mode 100644 index 0000000..d24f219 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_apps/sysmon/sysmon.h @@ -0,0 +1,52 @@ +/** + * @file symon.h + * + */ + +#ifndef SYSMON_H +#define SYSMON_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../lvgl/lvgl.h" +#include "../../../lv_ex_conf.h" +#endif +#if LV_USE_SYSMON + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Initialize the system monitor + */ +void sysmon_create(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_SYSMON*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /* SYSMON_H */ diff --git a/components/lv_examples/lv_examples/lv_apps/sysmon/sysmon.mk b/components/lv_examples/lv_examples/lv_apps/sysmon/sysmon.mk new file mode 100644 index 0000000..4b35766 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_apps/sysmon/sysmon.mk @@ -0,0 +1,6 @@ +CSRCS += sysmon.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_apps/sysmon +VPATH += :$(LVGL_DIR)/lv_examples/lv_apps/sysmon + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_apps/sysmon" diff --git a/components/lv_examples/lv_examples/lv_apps/terminal/terminal.c b/components/lv_examples/lv_examples/lv_apps/terminal/terminal.c new file mode 100644 index 0000000..ca21f0f --- /dev/null +++ b/components/lv_examples/lv_examples/lv_apps/terminal/terminal.c @@ -0,0 +1,176 @@ +/** + * @file terminal.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "terminal.h" +#if LV_USE_TERMINAL + +/********************* + * DEFINES + *********************/ +#define TERMINAL_ANIM_TIME 100 /*[ms]*/ +#define TERMINAL_NO_INPUT 0 /*Do not create Text area and Keyboard*/ +#define TERMINAL_LOG_LENGTH 512 /*Characters*/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ +static void clr_event_cb(lv_obj_t * btn, lv_event_t event); +static void win_close_action(lv_obj_t * btn, lv_event_t event); + +/********************** + * STATIC VARIABLES + **********************/ +static lv_obj_t * win; +static char txt_log[TERMINAL_LOG_LENGTH + 1]; +static lv_obj_t * label; +static lv_obj_t * clr_btn; + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Open a terminal + * @return pointer to the terminal window + */ +lv_obj_t * terminal_create(void) +{ + static lv_style_t style_bg; + lv_style_copy(&style_bg, &lv_style_pretty); + style_bg.body.main_color = lv_color_make(0x30, 0x30, 0x30); + style_bg.body.grad_color = lv_color_make(0x30, 0x30, 0x30); + style_bg.body.border.color = LV_COLOR_WHITE; + style_bg.text.color = lv_color_make(0xE0, 0xE0, 0xE0); + + + + lv_coord_t hres = lv_disp_get_hor_res(NULL); + lv_coord_t vres = lv_disp_get_ver_res(NULL); + + win = lv_win_create(lv_disp_get_scr_act(NULL), NULL); + lv_win_set_style(win, LV_WIN_STYLE_BG, &style_bg); + lv_obj_set_size(win, hres, vres); + lv_win_set_sb_mode(win, LV_SB_MODE_AUTO); + lv_obj_t * win_btn = lv_win_add_btn(win, LV_SYMBOL_CLOSE); + lv_obj_set_event_cb(win_btn, win_close_action); + + /*Make the window's content responsive*/ + lv_win_set_layout(win, LV_LAYOUT_PRETTY); + + /*Create a label for the text of the terminal*/ + label = lv_label_create(win, NULL); + lv_label_set_long_mode(label, LV_LABEL_LONG_BREAK); + lv_obj_set_width(label, lv_win_get_width(win)); + lv_label_set_static_text(label, txt_log); /*Use the text array directly*/ + + /*Create a clear button*/ + clr_btn = lv_btn_create(win, NULL); + lv_btn_set_fit(clr_btn, LV_FIT_TIGHT); + lv_obj_set_event_cb(clr_btn, clr_event_cb); + lv_obj_t * btn_label = lv_label_create(clr_btn, NULL); + lv_label_set_text(btn_label, "Clear"); + + return win; +} + +/** + * Add data to the terminal + * @param txt_in character sting to add to the terminal + */ +void terminal_add(const char * txt_in) +{ + if(win == NULL) return; /*Check if the window is exists*/ + + size_t txt_len = strlen(txt_in); + size_t old_len = strlen(txt_log); + + /*If the data is longer then the terminal ax size show the last part of data*/ + if(txt_len > TERMINAL_LOG_LENGTH) { + txt_in += (txt_len - TERMINAL_LOG_LENGTH); + txt_len = TERMINAL_LOG_LENGTH; + old_len = 0; + } + /*If the text become too long 'forget' the oldest lines*/ + else if(old_len + txt_len > TERMINAL_LOG_LENGTH) { + uint16_t new_start; + for(new_start = 0; new_start < old_len; new_start++) { + if(txt_log[new_start] == '\n') { + /*If there is enough space break*/ + if(new_start >= txt_len) { + /*Ignore line breaks*/ + while(txt_log[new_start] == '\n' || txt_log[new_start] == '\r') new_start++; + break; + } + } + } + + /* If it wasn't able to make enough space on line breaks + * simply forget the oldest characters*/ + if(new_start == old_len) { + new_start = old_len - (TERMINAL_LOG_LENGTH - txt_len); + } + /*Move the remaining text to the beginning*/ + uint16_t j; + for(j = new_start; j < old_len; j++) { + txt_log[j - new_start] = txt_log[j]; + } + old_len = old_len - new_start; + txt_log[old_len] = '\0'; + + } + + memcpy(&txt_log[old_len], txt_in, txt_len); + txt_log[old_len + txt_len] = '\0'; + + lv_label_set_static_text(label, txt_log); + lv_win_focus(win, clr_btn, TERMINAL_ANIM_TIME); +} + +/********************** + * STATIC FUNCTIONS + **********************/ + +/** + * Called when the Clear button is click to clear the text of the terminal + * @param btn pointer to the clear button + * @param event the current event + */ +static void clr_event_cb(lv_obj_t * btn, lv_event_t event) +{ + (void) btn; /*Unused*/ + + if(event != LV_EVENT_CLICKED) return; + + txt_log[0] = '\0'; + lv_label_set_static_text(label, txt_log); /*Refresh the text*/ +} + +/** + * Called when the window's close button is clicked + * @param btn pointer to the close button + * @return LV_ACTION_RES_INV because the button is deleted in the function + */ +static void win_close_action(lv_obj_t * btn, lv_event_t event) +{ + (void) btn; /*Unused*/ + + if(event != LV_EVENT_CLICKED) return; + + lv_obj_del(win); + win = NULL; +} + +#endif /*LV_USE_TERMINAL*/ diff --git a/components/lv_examples/lv_examples/lv_apps/terminal/terminal.h b/components/lv_examples/lv_examples/lv_apps/terminal/terminal.h new file mode 100644 index 0000000..8283adf --- /dev/null +++ b/components/lv_examples/lv_examples/lv_apps/terminal/terminal.h @@ -0,0 +1,60 @@ +/** + * @file terminal.h + * + */ + +#ifndef TERMINAL_H +#define TERMINAL_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../lvgl/lvgl.h" +#include "../../../lv_ex_conf.h" +#endif + +#if LV_USE_DEMO + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Open a terminal + * @return pointer to the terminal window + */ +lv_obj_t * terminal_create(void); + +/** + * Add data to the terminal + * @param txt_in character sting to add to the terminal + */ +void terminal_add(const char * txt_in); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_TERMINAL*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /* LV_TERMINAL_H */ diff --git a/components/lv_examples/lv_examples/lv_apps/terminal/terminal.mk b/components/lv_examples/lv_examples/lv_apps/terminal/terminal.mk new file mode 100644 index 0000000..92b1a53 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_apps/terminal/terminal.mk @@ -0,0 +1,6 @@ +CSRCS += terminal.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_apps/terminal +VPATH += :$(LVGL_DIR)/lv_examples/lv_apps/terminal + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_apps/terminal" diff --git a/components/lv_examples/lv_examples/lv_apps/tpcal/tpcal.c b/components/lv_examples/lv_examples/lv_apps/tpcal/tpcal.c new file mode 100644 index 0000000..d7925a5 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_apps/tpcal/tpcal.c @@ -0,0 +1,378 @@ +/** + * @file tpcal.c + * + * TOUCHPAD CALIBRATION + * --------------------- + * + * This application creates a GUI and instruct the user + * to click the four corners to get data for touchpad calibration. + * + * - You display driver should have two functions: `xxx_read` and `xxx_set_cal_data`. + * - At first run run the touchpad is not calibrated therefore your `xxx_read` function should provide raw data. + * - When the user touched all four corners you should call the `xxx_set_cal_data` function in + * ` TP_CAL_STATE_WAIT_LEAVE` state. As arguments you should pass `point[0]`, `point[1]`, `point[2]` and `point[3]` + * which are the coordinates read on corner pressing. + * - `xxx_set_cal_data` should mark the display as calibrated, save the raw coordinates + * and use them in the upcoming calls of `xxx_read` to adjust the coordinates. + * - A simple equation to adjust the coordinates: x_cal = ((x_act - x1_saved) * lcd_hor_res) / (x2_saved - x1_saved); + * - x_cal: the calibrated X coordinate + * - x_act: the currently measured X coordinate + * - x1_saved, x2_saved: The raw X coordinates saved as calibration data + */ + +/********************* + * INCLUDES + *********************/ +#include "tpcal.h" +#if LV_USE_TPCAL +#include + +/********************* + * DEFINES + *********************/ +#define CIRCLE_SIZE 20 +#define CIRCLE_OFFSET 20 +#define TP_MAX_VALUE 5000 +#define TOUCH_NUMBER 3 + +/********************** + * TYPEDEFS + **********************/ +typedef enum { + TP_CAL_STATE_INIT, + TP_CAL_STATE_WAIT_TOP_LEFT, + TP_CAL_STATE_WAIT_TOP_RIGHT, + TP_CAL_STATE_WAIT_BOTTOM_RIGHT, + TP_CAL_STATE_WAIT_BOTTOM_LEFT, + TP_CAL_STATE_WAIT_LEAVE, + TP_CAL_STATE_READY, +} tp_cal_state_t; + +/********************** + * STATIC PROTOTYPES + **********************/ +static void get_avr_value(lv_point_t * p); +static void btn_event_cb(lv_obj_t * scr, lv_event_t event); + +/********************** + * STATIC VARIABLES + **********************/ +static lv_point_t point[4]; /*Calibration points: [0]: top-left; [1]: top-right, [2]: bottom-right, [3]: bottom-left */ +static lv_point_t avr[TOUCH_NUMBER]; /*Storage point to calculate average*/ + +static tp_cal_state_t state; +static lv_obj_t * prev_scr; +static lv_obj_t * big_btn; +static lv_obj_t * label_main; +static lv_obj_t * circ_area; + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create a touch pad calibration screen + */ +void tpcal_create(void) +{ + state = TP_CAL_STATE_INIT; + + prev_scr = lv_disp_get_scr_act(NULL); + + lv_obj_t * scr = lv_obj_create(NULL, NULL); + lv_obj_set_size(scr, TP_MAX_VALUE, TP_MAX_VALUE); + lv_disp_load_scr(scr); + + /*Create a big transparent button screen to receive clicks*/ + big_btn = lv_btn_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_size(big_btn, TP_MAX_VALUE, TP_MAX_VALUE); + lv_btn_set_style(big_btn, LV_BTN_STYLE_REL, &lv_style_transp); + lv_btn_set_style(big_btn, LV_BTN_STYLE_PR, &lv_style_transp); + lv_obj_set_event_cb(big_btn, btn_event_cb); + lv_btn_set_layout(big_btn, LV_LAYOUT_OFF); + + label_main = lv_label_create(lv_disp_get_scr_act(NULL), NULL); + char buf[64]; + sprintf(buf, "Click the circle in\n" + "upper left-hand corner\n" + "%u left", TOUCH_NUMBER); + lv_label_set_text(label_main, buf); + lv_label_set_align(label_main, LV_LABEL_ALIGN_CENTER); + + lv_coord_t hres = lv_disp_get_hor_res(NULL); + lv_coord_t vres = lv_disp_get_ver_res(NULL); + + lv_obj_set_pos(label_main, (hres - lv_obj_get_width(label_main)) / 2, + (vres - lv_obj_get_height(label_main)) / 2); + + + static lv_style_t style_circ; + lv_style_copy(&style_circ, &lv_style_pretty_color); + style_circ.body.radius = LV_RADIUS_CIRCLE; + + circ_area = lv_obj_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_size(circ_area, CIRCLE_SIZE, CIRCLE_SIZE); + lv_obj_set_style(circ_area, &style_circ); + lv_obj_set_click(circ_area, false); + +#if LV_USE_ANIMATION + lv_anim_t a; + a.var = circ_area; + a.start = hres / 2; + a.end = CIRCLE_OFFSET; + a.exec_cb = (lv_anim_exec_xcb_t)lv_obj_set_x; + a.path_cb = lv_anim_path_linear; + a.ready_cb = NULL; + a.act_time = -500; + a.time = 200; + a.playback = 0; + a.playback_pause = 0; + a.repeat = 0; + a.repeat_pause = 0; + lv_anim_create(&a); + + a.start = vres / 2; + a.end = CIRCLE_OFFSET; + a.exec_cb = (lv_anim_exec_xcb_t)lv_obj_set_y; + a.ready_cb = NULL; + a.time = 200; + lv_anim_create(&a); +#else + lv_obj_set_pos(circ_area, CIRCLE_OFFSET, CIRCLE_OFFSET); +#endif + + state = TP_CAL_STATE_WAIT_TOP_LEFT; +} + +/********************** + * STATIC FUNCTIONS + **********************/ + +static void get_avr_value(lv_point_t * p) +{ + int32_t x_sum = 0; + int32_t y_sum = 0; + uint8_t i = 0; + for(; i < TOUCH_NUMBER ; i++) { + x_sum += avr[i].x; + y_sum += avr[i].y; + } + p->x = x_sum / TOUCH_NUMBER; + p->y = y_sum / TOUCH_NUMBER; +} + +static void btn_event_cb(lv_obj_t * scr, lv_event_t event) +{ + (void) scr; /*Unused*/ + + if(event != LV_EVENT_CLICKED) return; + + lv_disp_t * disp = lv_obj_get_disp(prev_scr); + lv_coord_t hres = lv_disp_get_hor_res(disp); + lv_coord_t vres = lv_disp_get_ver_res(disp); + + static uint8_t touch_nb = TOUCH_NUMBER; + + if(state == TP_CAL_STATE_WAIT_TOP_LEFT) { + char buf[64]; + touch_nb--; + lv_indev_t * indev = lv_indev_get_act(); + lv_indev_get_point(indev, &avr[touch_nb]); + + if(!touch_nb) { + touch_nb = TOUCH_NUMBER; + get_avr_value(&point[0]); + sprintf(buf, "x: %d\ny: %d", point[0].x, point[0].y); + lv_obj_t * label_coord = lv_label_create(lv_disp_get_scr_act(disp), NULL); + lv_label_set_text(label_coord, buf); + sprintf(buf, "Click the circle in\n" + "upper right-hand corner\n" + " %u Left", TOUCH_NUMBER); +#if LV_USE_ANIMATION + lv_anim_t a; + a.var = circ_area; + a.start = CIRCLE_OFFSET; + a.end = hres - CIRCLE_SIZE - CIRCLE_OFFSET; + a.exec_cb = (lv_anim_exec_xcb_t)lv_obj_set_x; + a.path_cb = lv_anim_path_linear; + a.ready_cb = NULL; + a.act_time = 0; + a.time = 200; + a.playback = 0; + a.playback_pause = 0; + a.repeat = 0; + a.repeat_pause = 0; + lv_anim_create(&a); + + a.start = CIRCLE_OFFSET; + a.end = CIRCLE_OFFSET; + a.exec_cb = (lv_anim_exec_xcb_t)lv_obj_set_y; + a.ready_cb = NULL; + a.time = 200; + lv_anim_create(&a); +#else + lv_obj_set_pos(circ_area, LV_HOR_RES - CIRCLE_SIZE - CIRCLE_OFFSET, CIRCLE_OFFSET); +#endif + state = TP_CAL_STATE_WAIT_TOP_RIGHT; + } else { + sprintf(buf, "Click the circle in\n" + "upper left-hand corner\n" + " %u Left", touch_nb); + } + lv_label_set_text(label_main, buf); + lv_obj_set_pos(label_main, (hres - lv_obj_get_width(label_main)) / 2, + (vres - lv_obj_get_height(label_main)) / 2); + + + } else if(state == TP_CAL_STATE_WAIT_TOP_RIGHT) { + char buf[64]; + touch_nb--; + lv_indev_t * indev = lv_indev_get_act(); + lv_indev_get_point(indev, &avr[touch_nb]); + + if(!touch_nb) { + touch_nb = TOUCH_NUMBER; + get_avr_value(&point[1]); + sprintf(buf, "x: %d\ny: %d", point[1].x, point[1].y); + lv_obj_t * label_coord = lv_label_create(lv_disp_get_scr_act(disp), NULL); + lv_label_set_text(label_coord, buf); + lv_obj_set_pos(label_coord, hres - lv_obj_get_width(label_coord), 0); + sprintf(buf, "Click the circle in\n" + "lower right-hand corner\n" + " %u Left", TOUCH_NUMBER); +#if LV_USE_ANIMATION + lv_anim_t a; + a.var = circ_area; + a.start = hres - CIRCLE_SIZE - CIRCLE_OFFSET; + a.end = hres - CIRCLE_SIZE - CIRCLE_OFFSET; + a.exec_cb = (lv_anim_exec_xcb_t)lv_obj_set_x; + a.path_cb = lv_anim_path_linear; + a.ready_cb = NULL; + a.act_time = 0; + a.time = 200; + a.playback = 0; + a.playback_pause = 0; + a.repeat = 0; + a.repeat_pause = 0; + lv_anim_create(&a); + + a.start = CIRCLE_OFFSET; + a.end = vres - CIRCLE_SIZE - CIRCLE_OFFSET; + a.exec_cb = (lv_anim_exec_xcb_t)lv_obj_set_y; + a.ready_cb = NULL; + a.time = 200; + lv_anim_create(&a); +#else + lv_obj_set_pos(circ_area, hres - CIRCLE_SIZE - CIRCLE_OFFSET, vres - CIRCLE_SIZE - CIRCLE_OFFSET); +#endif + state = TP_CAL_STATE_WAIT_BOTTOM_RIGHT; + } else { + sprintf(buf, "Click the circle in\n" + "upper right-hand corner\n" + " %u Left", touch_nb); + } + lv_label_set_text(label_main, buf); + lv_obj_set_pos(label_main, (hres - lv_obj_get_width(label_main)) / 2, + (vres - lv_obj_get_height(label_main)) / 2); + + } else if(state == TP_CAL_STATE_WAIT_BOTTOM_RIGHT) { + char buf[64]; + touch_nb--; + lv_indev_t * indev = lv_indev_get_act(); + lv_indev_get_point(indev, &avr[touch_nb]); + + if(!touch_nb) { + touch_nb = TOUCH_NUMBER; + get_avr_value(&point[2]); + sprintf(buf, "x: %d\ny: %d", point[2].x, point[2].y); + lv_obj_t * label_coord = lv_label_create(scr, NULL); + lv_label_set_text(label_coord, buf); + sprintf(buf, "Click the circle in\n" + "lower left-hand corner\n" + " %u Left", TOUCH_NUMBER); + lv_obj_set_pos(label_coord, hres - lv_obj_get_width(label_coord), + vres - lv_obj_get_height(label_coord)); +#if LV_USE_ANIMATION + lv_anim_t a; + a.var = circ_area; + a.start = hres - CIRCLE_SIZE - CIRCLE_OFFSET; + a.end = CIRCLE_OFFSET; + a.exec_cb = (lv_anim_exec_xcb_t)lv_obj_set_x; + a.path_cb = lv_anim_path_linear; + a.ready_cb = NULL; + a.act_time = 0; + a.time = 200; + a.playback = 0; + a.playback_pause = 0; + a.repeat = 0; + a.repeat_pause = 0; + lv_anim_create(&a); + + a.start = vres - CIRCLE_SIZE - CIRCLE_OFFSET; + a.end = vres - CIRCLE_SIZE - CIRCLE_OFFSET; + a.exec_cb = (lv_anim_exec_xcb_t)lv_obj_set_y; + a.ready_cb = NULL; + a.time = 200; + lv_anim_create(&a); +#else + lv_obj_set_pos(circ_area, CIRCLE_OFFSET, LV_VER_RES - CIRCLE_SIZE - CIRCLE_OFFSET); +#endif + state = TP_CAL_STATE_WAIT_BOTTOM_LEFT; + } else { + sprintf(buf, "Click the circle in\n" + "lower right-hand corner\n" + " %u Left", touch_nb); + } + lv_label_set_text(label_main, buf); + lv_obj_set_pos(label_main, (hres - lv_obj_get_width(label_main)) / 2, + (vres - lv_obj_get_height(label_main)) / 2); + } else if(state == TP_CAL_STATE_WAIT_BOTTOM_LEFT) { + char buf[64]; + touch_nb--; + lv_indev_t * indev = lv_indev_get_act(); + lv_indev_get_point(indev, &avr[touch_nb]); + + if(!touch_nb) { + touch_nb = TOUCH_NUMBER; + get_avr_value(&point[3]); + sprintf(buf, "x: %d\ny: %d", point[3].x, point[3].y); + lv_obj_t * label_coord = lv_label_create(scr, NULL); + lv_label_set_text(label_coord, buf); + lv_obj_set_pos(label_coord, 0, vres - lv_obj_get_height(label_coord)); + sprintf(buf, "Click the screen\n" + "to leave calibration"); + lv_obj_del(circ_area); + state = TP_CAL_STATE_WAIT_LEAVE; + } else { + sprintf(buf, "Click the circle in\n" + "lower left-hand corner\n" + " %u Left", touch_nb); + } + lv_label_set_text(label_main, buf); + lv_obj_set_pos(label_main, (hres - lv_obj_get_width(label_main)) / 2, + (vres - lv_obj_get_height(label_main)) / 2); + } else if(state == TP_CAL_STATE_WAIT_LEAVE) { + lv_disp_load_scr(prev_scr); + + /* + * TODO Process 'p' points here to calibrate the touch pad + * Offset will be: CIRCLE_SIZE/2 + CIRCLE_OFFSET + */ + + /* + * TODO: you can change the calibrate input callback here e.g: + * lv_indev_t *indev = lv_indev_get_act(); + * indev->driver.read = xxxx_input_get_calib; + */ + + state = TP_CAL_STATE_READY; + + } else if(state == TP_CAL_STATE_READY) { + } +} + +#endif /*LV_USE_TPCAL*/ diff --git a/components/lv_examples/lv_examples/lv_apps/tpcal/tpcal.h b/components/lv_examples/lv_examples/lv_apps/tpcal/tpcal.h new file mode 100644 index 0000000..d1ee4cf --- /dev/null +++ b/components/lv_examples/lv_examples/lv_apps/tpcal/tpcal.h @@ -0,0 +1,54 @@ +/** + * @file tpcal.h + * + */ + +#ifndef TPCAL_H +#define TPCAL_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../lvgl/lvgl.h" +#include "../../../lv_ex_conf.h" +#endif + + +#if LV_USE_TPCAL + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create a touch pad calibration screen + */ +void tpcal_create(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_TPCAL*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*TP_CAL_H*/ diff --git a/components/lv_examples/lv_examples/lv_apps/tpcal/tpcal.mk b/components/lv_examples/lv_examples/lv_apps/tpcal/tpcal.mk new file mode 100644 index 0000000..5c773aa --- /dev/null +++ b/components/lv_examples/lv_examples/lv_apps/tpcal/tpcal.mk @@ -0,0 +1,6 @@ +CSRCS += tpcal.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_apps/tpcal +VPATH += :$(LVGL_DIR)/lv_examples/lv_apps/tpcal + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_apps/tpcal" diff --git a/components/lv_examples/lv_examples/lv_ex_conf_templ.h b/components/lv_examples/lv_examples/lv_ex_conf_templ.h new file mode 100644 index 0000000..b0daf60 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_ex_conf_templ.h @@ -0,0 +1,60 @@ +/** + * @file lv_ex_conf.h + * + */ +/* + * COPY THIS FILE AS lv_ex_conf.h + */ + +#if 0 /*Set it to "1" to enable the content*/ + +#ifndef LV_EX_CONF_H +#define LV_EX_CONF_H + +/******************* + * GENERAL SETTING + *******************/ +#define LV_EX_PRINTF 0 /*Enable printf-ing data*/ +#define LV_EX_KEYBOARD 0 /*Add PC keyboard support to some examples (`lv_drivers` repository is required)*/ +#define LV_EX_MOUSEWHEEL 0 /*Add 'encoder' (mouse wheel) support to some examples (`lv_drivers` repository is required)*/ + +/******************* + * TEST USAGE + *******************/ +#define LV_USE_TESTS 0 + +/******************* + * TUTORIAL USAGE + *******************/ +#define LV_USE_TUTORIALS 0 + + +/********************* + * APPLICATION USAGE + *********************/ + +/* Test the graphical performance of your MCU + * with different settings*/ +#define LV_USE_BENCHMARK 0 + +/*A demo application with Keyboard, Text area, List and Chart + * placed on Tab view */ +#define LV_USE_DEMO 0 +#if LV_USE_DEMO +#define LV_DEMO_WALLPAPER 1 /*Create a wallpaper too*/ +#define LV_DEMO_SLIDE_SHOW 0 /*Automatically switch between tabs*/ +#endif + +/*MCU and memory usage monitoring*/ +#define LV_USE_SYSMON 0 + +/*A terminal to display received characters*/ +#define LV_USE_TERMINAL 0 + +/*Touch pad calibration with 4 points*/ +#define LV_USE_TPCAL 0 + +#endif /*LV_EX_CONF_H*/ + +#endif /*End of "Content enable"*/ + diff --git a/components/lv_examples/lv_examples/lv_examples.h b/components/lv_examples/lv_examples/lv_examples.h new file mode 100644 index 0000000..23dc65b --- /dev/null +++ b/components/lv_examples/lv_examples/lv_examples.h @@ -0,0 +1,55 @@ +/** + * @file lv_examples.h + * + */ + +#ifndef LV_EXAMPLES_H +#define LV_EXAMPLES_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#include "../lvgl/lvgl.h" + +/********************* + * DEFINES + *********************/ +/*Test lvgl version*/ +#define LV_EXAMPLES_LVGL_REQ_MAJOR 6 +#define LV_EXAMPLES_LVGL_REQ_MINOR 0 +#define LV_EXAMPLES_LVGL_REQ_PATCH 0 + +#if LV_EXAMPLES_LVGL_REQ_MAJOR != LVGL_VERSION_MAJOR +#error "lv_examples: Wrong lvgl major version" +#endif + +#if LV_EXAMPLES_LVGL_REQ_MINOR > LVGL_VERSION_MINOR +#error "lv_examples: Wrong lvgl minor version" +#endif + +#if LV_EXAMPLES_LVGL_REQ_PATCH > LVGL_VERSION_PATCH +#error "lv_examples: Wrong lvgl bug fix version" +#endif + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/********************** + * MACROS + **********************/ + + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_EXAMPLES_H*/ diff --git a/components/lv_examples/lv_examples/lv_examples.mk b/components/lv_examples/lv_examples/lv_examples.mk new file mode 100644 index 0000000..7bef446 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_examples.mk @@ -0,0 +1,51 @@ +include $(LVGL_DIR)/lv_examples/lv_tests/lv_test_obj/lv_test_obj.mk +include $(LVGL_DIR)/lv_examples/lv_tests/lv_test_stress/lv_test_stress.mk +include $(LVGL_DIR)/lv_examples/lv_tests/lv_test_theme/lv_test_theme.mk +include $(LVGL_DIR)/lv_examples/lv_tests/lv_test_group/lv_test_group.mk +include $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.mk +include $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.mk +include $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.mk +include $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.mk +include $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.mk +include $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.mk +include $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas.mk +include $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.mk +include $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker/lv_test_cpicker.mk +include $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.mk +include $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.mk +include $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.mk +include $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.mk +include $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.mk +include $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.mk +include $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.mk +include $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.mk +include $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.mk +include $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.mk +include $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.mk +include $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.mk +include $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.mk +include $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.mk +include $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.mk +include $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.mk +include $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.mk +include $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.mk +include $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.mk +include $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.mk +include $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.mk + +include $(LVGL_DIR)/lv_examples/lv_apps/benchmark/benchmark.mk +include $(LVGL_DIR)/lv_examples/lv_apps/demo/demo.mk +include $(LVGL_DIR)/lv_examples/lv_apps/sysmon/sysmon.mk +include $(LVGL_DIR)/lv_examples/lv_apps/terminal/terminal.mk +include $(LVGL_DIR)/lv_examples/lv_apps/tpcal/tpcal.mk + +include $(LVGL_DIR)/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.mk +include $(LVGL_DIR)/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.mk +include $(LVGL_DIR)/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.mk +include $(LVGL_DIR)/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.mk +include $(LVGL_DIR)/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.mk +include $(LVGL_DIR)/lv_examples/lv_tutorial/6_images/lv_tutorial_images.mk +include $(LVGL_DIR)/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.mk +include $(LVGL_DIR)/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.mk +include $(LVGL_DIR)/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.mk + diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test.h b/components/lv_examples/lv_examples/lv_tests/lv_test.h new file mode 100644 index 0000000..7c90359 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test.h @@ -0,0 +1,87 @@ +/** + * @file lv_test.h + * + */ + +#ifndef LV_TEST_H +#define LV_TEST_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lv_ex_conf.h" +#else +#include "../../lv_ex_conf.h" +#endif + +#if LV_USE_TESTS + +#include "../lv_examples.h" + +#include "lv_test_obj/lv_test_obj.h" + +#include "lv_test_objx/lv_test_arc/lv_test_arc.h" +#include "lv_test_objx/lv_test_bar/lv_test_bar.h" +#include "lv_test_objx/lv_test_btn/lv_test_btn.h" +#include "lv_test_objx/lv_test_btnm/lv_test_btnm.h" +#include "lv_test_objx/lv_test_cb/lv_test_cb.h" +#include "lv_test_objx/lv_test_canvas/lv_test_canvas.h" +#include "lv_test_objx/lv_test_chart/lv_test_chart.h" +#include "lv_test_objx/lv_test_cont/lv_test_cont.h" +#include "lv_test_objx/lv_test_ddlist/lv_test_ddlist.h" +#include "lv_test_objx/lv_test_gauge/lv_test_gauge.h" +#include "lv_test_objx/lv_test_img/lv_test_img.h" +#include "lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.h" +#include "lv_test_objx/lv_test_kb/lv_test_kb.h" +#include "lv_test_objx/lv_test_label/lv_test_label.h" +#include "lv_test_objx/lv_test_led/lv_test_led.h" +#include "lv_test_objx/lv_test_line/lv_test_line.h" +#include "lv_test_objx/lv_test_list/lv_test_list.h" +#include "lv_test_objx/lv_test_lmeter/lv_test_lmeter.h" +#include "lv_test_objx/lv_test_mbox/lv_test_mbox.h" +#include "lv_test_objx/lv_test_page/lv_test_page.h" +#include "lv_test_objx/lv_test_preload/lv_test_preload.h" +#include "lv_test_objx/lv_test_roller/lv_test_roller.h" +#include "lv_test_objx/lv_test_slider/lv_test_slider.h" +#include "lv_test_objx/lv_test_sw/lv_test_sw.h" +#include "lv_test_objx/lv_test_ta/lv_test_ta.h" +#include "lv_test_objx/lv_test_table/lv_test_table.h" +#include "lv_test_objx/lv_test_tabview/lv_test_tabview.h" +#include "lv_test_objx/lv_test_tileview/lv_test_tileview.h" +#include "lv_test_objx/lv_test_win/lv_test_win.h" + +#include "lv_test_theme/lv_test_theme_1.h" +#include "lv_test_theme/lv_test_theme_2.h" + +#include "lv_test_group/lv_test_group.h" + +#include "lv_test_stress/lv_test_stress.h" + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/********************** + * MACROS + **********************/ + +#endif /* LV_USE_TESTS */ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TEST_H*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_group/lv_test_group.c b/components/lv_examples/lv_examples/lv_tests/lv_test_group/lv_test_group.c new file mode 100644 index 0000000..bfb4c4d --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_group/lv_test_group.c @@ -0,0 +1,361 @@ +/** + * @file lv_test_group.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "stdio.h" +#include "lv_test_group.h" +#if LV_USE_GROUP && LV_USE_TESTS + +#if LV_EX_KEYBOARD || LV_EX_MOUSEWHEEL +#include "lv_drv_conf.h" +#endif + +#if LV_EX_KEYBOARD +#include "lv_drivers/indev/keyboard.h" +#endif + +#if LV_EX_MOUSEWHEEL +#include "lv_drivers/indev/mousewheel.h" +#endif + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ +/*To emulate some keys on the window header*/ +static bool win_btn_read(lv_indev_drv_t * indev_drv, lv_indev_data_t * data); +static void win_btn_event_handler(lv_obj_t * btn, lv_event_t event); + +static void group_focus_cb(lv_group_t * group); + +static void general_event_handler(lv_obj_t * obj, lv_event_t event); + +/********************** + * STATIC VARIABLES + **********************/ +static uint32_t last_key; +static lv_indev_state_t last_key_state = LV_INDEV_STATE_REL; +static lv_group_t * g; +static lv_obj_t * win; + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create base groups to test their functionalities + */ +lv_group_t *lv_test_group_1(void) +{ + lv_coord_t hres = lv_disp_get_hor_res(NULL); + lv_coord_t vres = lv_disp_get_ver_res(NULL); + + g = lv_group_create(); + lv_group_set_focus_cb(g, group_focus_cb); + + /*A keyboard will be simulated*/ + lv_indev_drv_t sim_kb_drv; + lv_indev_drv_init(&sim_kb_drv); + sim_kb_drv.type = LV_INDEV_TYPE_KEYPAD; + sim_kb_drv.read_cb = win_btn_read; + lv_indev_t * win_kb_indev = lv_indev_drv_register(&sim_kb_drv); + lv_indev_set_group(win_kb_indev, g); + +#if LV_EX_KEYBOARD + lv_indev_drv_t real_kb_drv; + lv_indev_drv_init(&real_kb_drv); + real_kb_drv.type = LV_INDEV_TYPE_KEYPAD; + real_kb_drv.read_cb = keyboard_read; + lv_indev_t * real_kb_indev = lv_indev_drv_register(&real_kb_drv); + lv_indev_set_group(real_kb_indev, g); +#endif + +#if LV_EX_MOUSEWHEEL + lv_indev_drv_t enc_drv; + lv_indev_drv_init(&enc_drv); + enc_drv.type = LV_INDEV_TYPE_ENCODER; + enc_drv.read_cb = mousewheel_read; + lv_indev_t * enc_indev = lv_indev_drv_register(&enc_drv); + lv_indev_set_group(enc_indev, g); +#endif + + /*Create a window to hold all the objects*/ + static lv_style_t win_style; + lv_style_copy(&win_style, &lv_style_transp); + win_style.body.padding.left= LV_DPI / 6; + win_style.body.padding.right = LV_DPI / 6; + win_style.body.padding.top = LV_DPI / 6; + win_style.body.padding.bottom = LV_DPI / 6; + win_style.body.padding.inner = LV_DPI / 6; + + win = lv_win_create(lv_disp_get_scr_act(NULL), NULL); + lv_win_set_title(win, "Group test"); + lv_page_set_scrl_layout(lv_win_get_content(win), LV_LAYOUT_PRETTY); + lv_win_set_style(win, LV_WIN_STYLE_CONTENT, &win_style); + lv_group_add_obj(g, lv_win_get_content(win)); + lv_obj_set_event_cb(lv_win_get_content(win), general_event_handler); + + lv_obj_t * win_btn = lv_win_add_btn(win, LV_SYMBOL_RIGHT); + lv_obj_set_protect(win_btn, LV_PROTECT_CLICK_FOCUS); + lv_obj_set_event_cb(win_btn, win_btn_event_handler); + + win_btn = lv_win_add_btn(win, LV_SYMBOL_NEXT); + lv_obj_set_protect(win_btn, LV_PROTECT_CLICK_FOCUS); + lv_obj_set_event_cb(win_btn, win_btn_event_handler); + + win_btn = lv_win_add_btn(win, LV_SYMBOL_OK); + lv_obj_set_protect(win_btn, LV_PROTECT_CLICK_FOCUS); + lv_obj_set_event_cb(win_btn, win_btn_event_handler); + + win_btn = lv_win_add_btn(win, LV_SYMBOL_PREV); + lv_obj_set_protect(win_btn, LV_PROTECT_CLICK_FOCUS); + lv_obj_set_event_cb(win_btn, win_btn_event_handler); + + win_btn = lv_win_add_btn(win, LV_SYMBOL_LEFT); + lv_obj_set_protect(win_btn, LV_PROTECT_CLICK_FOCUS); + lv_obj_set_event_cb(win_btn, win_btn_event_handler); + + win_btn = lv_win_add_btn(win, LV_SYMBOL_DUMMY"a"); + lv_obj_set_protect(win_btn, LV_PROTECT_CLICK_FOCUS); + lv_obj_set_event_cb(win_btn, win_btn_event_handler); + + lv_obj_t * obj; + + + obj = lv_spinbox_create(win, NULL); + lv_obj_set_event_cb(obj, general_event_handler); + lv_spinbox_set_digit_format(obj, 5, 2); + lv_group_add_obj(g, obj); + + obj = lv_btn_create(win, NULL); + lv_group_add_obj(g, obj); + lv_btn_set_toggle(obj, true); + lv_obj_set_event_cb(obj, general_event_handler); + obj = lv_label_create(obj, NULL); + lv_label_set_text(obj, "Button"); + + LV_IMG_DECLARE(imgbtn_img_1); + LV_IMG_DECLARE(imgbtn_img_2); + obj = lv_imgbtn_create(win, NULL); + lv_imgbtn_set_src(obj, LV_BTN_STATE_REL, &imgbtn_img_1); + lv_imgbtn_set_src(obj, LV_BTN_STATE_PR, &imgbtn_img_2); + lv_obj_set_event_cb(obj, general_event_handler); + lv_group_add_obj(g, obj); + + obj = lv_cb_create(win, NULL); + lv_obj_set_event_cb(obj, general_event_handler); + lv_group_add_obj(g, obj); + + obj = lv_slider_create(win, NULL); + lv_slider_set_range(obj, 0, 10); + lv_obj_set_event_cb(obj, general_event_handler); + lv_group_add_obj(g, obj); + + obj = lv_sw_create(win, NULL); + lv_obj_set_event_cb(obj, general_event_handler); + lv_group_add_obj(g, obj); + + obj = lv_ddlist_create(win, NULL); + lv_ddlist_set_options(obj, "Item1\nItem2\nItem3\nItem4\nItem5\nItem6"); + lv_ddlist_set_fix_height(obj, LV_DPI); + lv_obj_set_event_cb(obj, general_event_handler); + lv_group_add_obj(g, obj); + + obj = lv_roller_create(win, NULL); + lv_obj_set_event_cb(obj, general_event_handler); + lv_group_add_obj(g, obj); + + lv_obj_t * ta = lv_ta_create(win, NULL); + lv_ta_set_cursor_type(ta, LV_CURSOR_BLOCK); + lv_obj_set_event_cb(ta, general_event_handler); + lv_group_add_obj(g, ta); + + obj = lv_kb_create(win, NULL); + lv_obj_set_size(obj, hres - LV_DPI, vres / 2); + lv_kb_set_ta(obj, ta); + lv_kb_set_cursor_manage(obj, true); + lv_group_add_obj(g, obj); + + static const char * mbox_btns[] = {"Yes", "No", ""}; + obj = lv_mbox_create(win, NULL); + lv_mbox_add_btns(obj, mbox_btns); + lv_obj_set_event_cb(obj, general_event_handler); + lv_group_add_obj(g, obj); + + obj = lv_list_create(win, NULL); + lv_obj_set_event_cb(obj, general_event_handler); + const char * list_txts[] = {"File 1", "File 2", "File 3", "File 4", "File 5", "File 6", ""}; + + uint32_t i; + for(i = 0; list_txts[i][0] != '\0'; i++) { + lv_obj_t * b; + b = lv_list_add_btn(obj, LV_SYMBOL_FILE, list_txts[i]); + lv_obj_set_event_cb(b, general_event_handler); + } + + lv_group_add_obj(g, obj); + + obj = lv_page_create(win, NULL); + lv_obj_set_size(obj, 2 * LV_DPI, LV_DPI); + lv_group_add_obj(g, obj); + + obj = lv_label_create(obj, NULL); + lv_label_set_text(obj, "I'm a page\nwith a long \ntext.\n\n" + "You can try \nto scroll me\nwith UP and DOWN\nbuttons."); + lv_label_set_align(obj, LV_LABEL_ALIGN_CENTER); + lv_obj_align(obj, NULL, LV_ALIGN_CENTER, 0, 0); + + obj = lv_tabview_create(win, NULL); + lv_obj_set_size(obj, hres / 2, vres / 2); + lv_obj_t * t1 = lv_tabview_add_tab(obj, "Tab 1"); + lv_obj_t * t2 = lv_tabview_add_tab(obj, "Tab 2"); + lv_obj_set_event_cb(obj, general_event_handler); + lv_group_add_obj(g, obj); + + obj = lv_label_create(t1, NULL); + lv_label_set_text(obj, "This is the content\nof the first tab"); + + obj = lv_label_create(t2, NULL); + lv_label_set_text(obj, "This is the content\nof the second tab"); + return g; +} + + +/********************** + * STATIC FUNCTIONS + **********************/ + +/** + * Read function for the input device which emulates keys on the window header + * @param indev_drv pointer to the related input device driver + * @param data store the last key and its state here + * @return false because the reading in not buffered + */ +static bool win_btn_read(lv_indev_drv_t * indev_drv, lv_indev_data_t * data) +{ + (void) indev_drv; /*Unused*/ + + data->state = last_key_state; + data->key = last_key; + + return false; +} + +/** + * Called when a control button on the window header is released to change the key state to RELEASED + * @param btn pointer t to a button on the window header + * @return LV_RES_OK because the button is not deleted + */ +static void win_btn_event_handler(lv_obj_t * btn, lv_event_t event) +{ + (void) btn; /*Unused*/ + + uint32_t key = 0; + + lv_obj_t * label = lv_obj_get_child(btn, NULL); + const char * txt = lv_label_get_text(label); + + if(strcmp(txt, LV_SYMBOL_PREV) == 0) key = LV_KEY_PREV; + else if(strcmp(txt, LV_SYMBOL_NEXT) == 0) key = LV_KEY_NEXT; + else if(strcmp(txt, LV_SYMBOL_LEFT) == 0) key = LV_KEY_LEFT; + else if(strcmp(txt, LV_SYMBOL_RIGHT) == 0) key = LV_KEY_RIGHT; + else if(strcmp(txt, LV_SYMBOL_OK) == 0) key = LV_KEY_ENTER; + else key = 'a'; + + switch(event) { + case LV_EVENT_PRESSED: + last_key_state = LV_INDEV_STATE_PR; + last_key = key; + break; + + case LV_EVENT_CLICKED: + case LV_EVENT_PRESS_LOST: + last_key_state = LV_INDEV_STATE_REL; + last_key = 0; + break; + default: + break; + } +} + + +static void group_focus_cb(lv_group_t * group) +{ + lv_obj_t * f = lv_group_get_focused(group); + if(f != win) lv_win_focus(win, f, LV_ANIM_ON); +} + +static void general_event_handler(lv_obj_t * obj, lv_event_t event) +{ + (void) obj; /*Unused*/ + +#if LV_EX_PRINTF + switch(event) { + case LV_EVENT_PRESSED: + printf("Pressed\n"); + break; + + case LV_EVENT_SHORT_CLICKED: + printf("Short clicked\n"); + break; + + case LV_EVENT_CLICKED: + printf("Clicked\n"); + break; + + case LV_EVENT_LONG_PRESSED: + printf("Long press\n"); + break; + + case LV_EVENT_LONG_PRESSED_REPEAT: + printf("Long press repeat\n"); + break; + + case LV_EVENT_VALUE_CHANGED: + printf("Value changed: %s\n", lv_event_get_data() ? (const char *)lv_event_get_data() : ""); + break; + + case LV_EVENT_RELEASED: + printf("Released\n"); + break; + + case LV_EVENT_DRAG_BEGIN: + printf("Drag begin\n"); + break; + + case LV_EVENT_DRAG_END: + printf("Drag end\n"); + break; + + case LV_EVENT_DRAG_THROW_BEGIN: + printf("Drag throw begin\n"); + break; + + case LV_EVENT_FOCUSED: + printf("Focused\n"); + break; + case LV_EVENT_DEFOCUSED: + printf("Defocused\n"); + break; + default: + break; + } +#endif +} + +#endif /* LV_USE_GROUP && LV_USE_TESTS */ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_group/lv_test_group.h b/components/lv_examples/lv_examples/lv_tests/lv_test_group/lv_test_group.h new file mode 100644 index 0000000..8b4b834 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_group/lv_test_group.h @@ -0,0 +1,53 @@ +/** + * @file lv_test_group.h + * + */ + +#ifndef LV_TEST_GROUP_H +#define LV_TEST_GROUP_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../lvgl/lvgl.h" +#include "../../../lv_ex_conf.h" +#endif + +#if LV_USE_GROUP && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create base groups to test their functionalities + */ +lv_group_t *lv_test_group_1(void); + +/********************** + * MACROS + **********************/ + +#endif /* LV_USE_GROUP && LV_USE_TESTS */ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TEST_BAR_H*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_group/lv_test_group.mk b/components/lv_examples/lv_examples/lv_tests/lv_test_group/lv_test_group.mk new file mode 100644 index 0000000..4d68ebd --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_group/lv_test_group.mk @@ -0,0 +1,6 @@ +CSRCS += lv_test_group.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tests/lv_test_group +VPATH += :$(LVGL_DIR)/lv_examples/lv_tests/lv_test_group + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tests/lv_test_group" diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_group/lv_test_group_1.png b/components/lv_examples/lv_examples/lv_tests/lv_test_group/lv_test_group_1.png new file mode 100644 index 0000000..e177dda Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_group/lv_test_group_1.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_misc/lv_test_task.c b/components/lv_examples/lv_examples/lv_tests/lv_test_misc/lv_test_task.c new file mode 100644 index 0000000..a69d036 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_misc/lv_test_task.c @@ -0,0 +1,163 @@ +/** + * @file lv_test_task.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_test_task.h" +#include + +#if LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +typedef struct { + const char * name; + lv_task_prio_t prio; + uint32_t period; + uint32_t delay; +} lv_test_task_dsc_t; + +/********************** + * STATIC PROTOTYPES + **********************/ +static void delay_task(lv_task_t * task); + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/* + * TEST ENVIRONMENT (only for lv_test_task) + * - Don't initialize LittlevGL (don't call l'v_init()') + * - Initialize 'lv_mem' and 'lv_task': + * lv_mem_init(); + * lv_task_init(); + * - Set up the tick interface: e.g. 1 ms Timer with 'lv_tick_inc(1);' + * - Call a test: lv_test_task_1/2/3(); + */ + + +/** + * Test the scheduling with various periods and priorities. + */ +void lv_test_task_1(void) +{ + + static lv_test_task_dsc_t dsc[] = { + {.name = "highest 2", .prio = LV_TASK_PRIO_HIGHEST, .period = 5000, .delay = 400}, + {.name = "highest 1", .prio = LV_TASK_PRIO_HIGHEST, .period = 4000, .delay = 300}, + {.name = "high 1", .prio = LV_TASK_PRIO_HIGH, .period = 3000, .delay = 100}, + {.name = "mid 4", .prio = LV_TASK_PRIO_MID, .period = 500, .delay = 1000}, + {.name = "mid 3", .prio = LV_TASK_PRIO_MID, .period = 500, .delay = 100}, + {.name = "mid 2", .prio = LV_TASK_PRIO_MID, .period = 500, .delay = 3000}, + {.name = "mid 1", .prio = LV_TASK_PRIO_MID, .period = 500, .delay = 100}, + {.name = ""} + }; + + uint8_t i; + for(i = 0; dsc[i].name[0] != '\0'; i++) { + lv_task_create(delay_task, dsc[i].period, dsc[i].prio, &dsc[i]); + } + +} + +/** + * Create a lot of short task and see their order. They should be executed according to their priority + */ +void lv_test_task_2(void) +{ + + static lv_test_task_dsc_t dsc[] = { + + {.name = "low 1", .prio = LV_TASK_PRIO_LOW, .period = 5000, .delay = 5}, + {.name = "mid 1", .prio = LV_TASK_PRIO_MID, .period = 5000, .delay = 5}, + {.name = "highest 1", .prio = LV_TASK_PRIO_HIGHEST, .period = 5000, .delay = 5}, + {.name = "highest 2", .prio = LV_TASK_PRIO_HIGHEST, .period = 5000, .delay = 5}, + {.name = "mid 2", .prio = LV_TASK_PRIO_MID, .period = 5000, .delay = 5}, + {.name = "high 1", .prio = LV_TASK_PRIO_HIGH, .period = 5000, .delay = 5}, + {.name = "mid 3", .prio = LV_TASK_PRIO_MID, .period = 5000, .delay = 5}, + {.name = "high 2", .prio = LV_TASK_PRIO_HIGH, .period = 5000, .delay = 5}, + {.name = "high 3", .prio = LV_TASK_PRIO_HIGH, .period = 5000, .delay = 5}, + {.name = "mid 4", .prio = LV_TASK_PRIO_MID, .period = 5000, .delay = 5}, + {.name = "high 4", .prio = LV_TASK_PRIO_HIGH, .period = 5000, .delay = 5}, + {.name = "lowest 1", .prio = LV_TASK_PRIO_LOWEST, .period = 5000, .delay = 5}, + {.name = "low 2", .prio = LV_TASK_PRIO_LOW, .period = 5000, .delay = 5}, + {.name = "lowest 2", .prio = LV_TASK_PRIO_LOWEST, .period = 5000, .delay = 5}, + {.name = "low 3", .prio = LV_TASK_PRIO_LOW, .period = 5000, .delay = 5}, + {.name = ""} + }; + + uint8_t i; + for(i = 0; dsc[i].name[0] != '\0'; i++) { + lv_task_create(delay_task, 1000, dsc[i].prio, &dsc[i]); + } + +} + + +/** + * Change the priority later + */ +void lv_test_task_3(void) +{ + static lv_test_task_dsc_t dsc[] = { + {.name = "highest 1", .prio = LV_TASK_PRIO_HIGHEST, .period = 5000, .delay = 10}, + {.name = "highest 2", .prio = LV_TASK_PRIO_HIGHEST, .period = 5000, .delay = 10}, + {.name = "high 1", .prio = LV_TASK_PRIO_HIGH, .period = 5000, .delay = 10}, + {.name = "mid 1", .prio = LV_TASK_PRIO_MID, .period = 5000, .delay = 10}, + {.name = "mid 2", .prio = LV_TASK_PRIO_MID, .period = 5000, .delay = 10}, + {.name = "should be high 2", .prio = LV_TASK_PRIO_MID, .period = 5000, .delay = 10}, + {.name = "mid 3", .prio = LV_TASK_PRIO_MID, .period = 5000, .delay = 10}, + {.name = "mid 4", .prio = LV_TASK_PRIO_MID, .period = 5000, .delay = 10}, + {.name = "low 1", .prio = LV_TASK_PRIO_LOW, .period = 5000, .delay = 10}, + {.name = "lowest 1", .prio = LV_TASK_PRIO_LOWEST, .period = 5000, .delay = 10}, + {.name = ""} + }; + + uint8_t i; + lv_task_t * mod_prio = NULL; + for(i = 0; dsc[i].name[0] != '\0'; i++) { + lv_task_t * tmp = lv_task_create(delay_task, dsc[i].period, dsc[i].prio, &dsc[i]); + if(strcmp(dsc[i].name, "should be high 2") == 0) { + mod_prio = tmp; + } + } + + lv_task_set_prio(mod_prio, LV_TASK_PRIO_HIGH); + +} + +/********************** + * STATIC FUNCTIONS + **********************/ + + +static void delay_task(lv_task_t * task) +{ + lv_test_task_dsc_t * dsc = task->user_data; +#if LV_EX_PRINTF + printf("%s: %d\n", dsc->name, dsc->delay); +#endif + uint32_t act = lv_tick_get(); + while(lv_tick_elaps(act) < dsc->delay); + +} + +#endif diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_misc/lv_test_task.h b/components/lv_examples/lv_examples/lv_tests/lv_test_misc/lv_test_task.h new file mode 100644 index 0000000..2f5a2cb --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_misc/lv_test_task.h @@ -0,0 +1,63 @@ +/** + * @file lv_test_task.h + * + */ + +#ifndef LV_TEST_TASK_H +#define LV_TEST_TASK_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../lvgl/lvgl.h" +#include "../../../lv_ex_conf.h" +#endif + +#if LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Test the scheduling with various periods and priorities. + */ +void lv_test_task_1(void); + +/** + * Create a lot of short task and see their order. They should be executed according to their priority + */ +void lv_test_task_2(void); + +/** + * Change the priority later + */ +void lv_test_task_3(void); + +/********************** + * MACROS + **********************/ + +#endif + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TEST_TASK_H*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_obj/lv_test_obj.c b/components/lv_examples/lv_examples/lv_tests/lv_test_obj/lv_test_obj.c new file mode 100644 index 0000000..c257edf --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_obj/lv_test_obj.c @@ -0,0 +1,104 @@ +/** + * @file lv_test_object.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_test_obj.h" +#include "../../lv_examples.h" /*Just to include somewhere to test 'lv_example' version*/ +#if LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create base objects to test their functionalities + */ +void lv_test_object_1(void) +{ + /* Create a default object and set LV_STYLE_PRETTY_COLOR style */ + lv_obj_t * obj1 = lv_obj_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_style(obj1, &lv_style_plain_color); + + + /*Create an object and set a user create style for it*/ + static lv_style_t style_obj2; + lv_style_copy(&style_obj2, &lv_style_pretty); + style_obj2.body.main_color = LV_COLOR_RED; + style_obj2.body.grad_color = LV_COLOR_BLACK; + style_obj2.body.radius = 0; + style_obj2.body.border.color = LV_COLOR_WHITE; + style_obj2.body.border.width = 4; + style_obj2.body.opa = LV_OPA_50; + style_obj2.body.shadow.width = 10; + + lv_obj_t * obj2 = lv_obj_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_size(obj2, 30, 30); + lv_obj_align(obj2, obj1, LV_ALIGN_OUT_RIGHT_MID, 20, 0); + lv_obj_set_style(obj2, &style_obj2); + + /*Test drag, drag_parent, drag throw and copy*/ + lv_obj_t * obj3_parent = lv_obj_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_align(obj3_parent, obj2, LV_ALIGN_OUT_RIGHT_MID, 20, 0); + lv_obj_set_style(obj3_parent, &lv_style_pretty); + lv_obj_set_drag(obj3_parent, true); + lv_obj_set_drag_throw(obj3_parent, true); + + lv_obj_t * obj3 = lv_obj_create(obj3_parent, obj2); + lv_obj_align(obj3, NULL, LV_ALIGN_CENTER, 0, 0); + lv_obj_set_click(obj3, true); + lv_obj_set_drag_parent(obj3, true); + + /*Create a parent and 3 objects on it. Hide the parent but move 2 children to the screen*/ + + lv_obj_t * obj4_parent = lv_obj_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_pos(obj4_parent, lv_obj_get_x(obj1) + 10, lv_obj_get_y(obj1) + lv_obj_get_height(obj1) + 20); + lv_obj_set_style(obj4_parent, &lv_style_pretty_color); + lv_obj_set_hidden(obj4_parent, true); /*Hide this and all children objects*/ + + lv_obj_t * obj4_1 = lv_obj_create(obj4_parent, obj2); + lv_obj_set_pos(obj4_1, 10, 10); + + lv_obj_t * obj4_2 = lv_obj_create(obj4_parent, obj2); + lv_obj_set_pos(obj4_2, 20, 20); + + lv_obj_t * obj4_3 = lv_obj_create(obj4_parent, obj2); + lv_obj_set_pos(obj4_3, 30, 30); + + /*Move two children to the screen (now they will be visible)*/ + lv_obj_set_parent(obj4_2, lv_disp_get_scr_act(NULL)); + lv_obj_align(obj4_2, obj4_parent, LV_ALIGN_OUT_RIGHT_MID, 10, 0); + + lv_obj_set_parent(obj4_3, lv_disp_get_scr_act(NULL)); + lv_obj_align(obj4_3, obj4_parent, LV_ALIGN_OUT_RIGHT_MID, 20, 5); +} + + +/********************** + * STATIC FUNCTIONS + **********************/ + +#endif /*LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_obj/lv_test_obj.h b/components/lv_examples/lv_examples/lv_tests/lv_test_obj/lv_test_obj.h new file mode 100644 index 0000000..faf0309 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_obj/lv_test_obj.h @@ -0,0 +1,53 @@ +/** + * @file lv_test_object.h + * + */ + +#ifndef LV_TEST_OBJECT_H +#define LV_TEST_OBJECT_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../lvgl/lvgl.h" +#include "../../../lv_ex_conf.h" +#endif + +#if LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create base objects to test their functionalities + */ +void lv_test_object_1(void); + +/********************** + * MACROS + **********************/ + +#endif /* LV_USE_TESTS */ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TEST_BAR_H*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_obj/lv_test_obj.mk b/components/lv_examples/lv_examples/lv_tests/lv_test_obj/lv_test_obj.mk new file mode 100644 index 0000000..68b459f --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_obj/lv_test_obj.mk @@ -0,0 +1,6 @@ +CSRCS += lv_test_obj.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tests/lv_test_obj +VPATH += :$(LVGL_DIR)/lv_examples/lv_tests/lv_test_obj + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tests/lv_test_obj" diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_obj/lv_test_object_1.png b/components/lv_examples/lv_examples/lv_tests/lv_test_obj/lv_test_object_1.png new file mode 100644 index 0000000..3b666a8 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_obj/lv_test_object_1.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.c b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.c new file mode 100644 index 0000000..0f98dd5 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.c @@ -0,0 +1,67 @@ +/** + * @file lv_test_arc.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_test_arc.h" +#if LV_USE_ARC && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create arcs to test their functionalities + */ +void lv_test_arc_1(void) +{ + /* Create a default object*/ + lv_obj_t * arc1 = lv_arc_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_pos(arc1, 10, 10); + + /* Modify size, position and angles*/ + lv_obj_t * arc2 = lv_arc_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_size(arc2, 100, 100); + lv_obj_align(arc2, arc1, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 20); + lv_arc_set_angles(arc2, 0, 250); + + /* Copy 'arc2' and set a new style for it */ + static lv_style_t style1; + lv_style_copy(&style1, &lv_style_plain); + style1.line.color = LV_COLOR_RED; + style1.line.width = 8; + lv_obj_t * arc3 = lv_arc_create(lv_disp_get_scr_act(NULL), arc2); + lv_obj_set_style(arc3, &style1); + lv_obj_align(arc3, arc2, LV_ALIGN_OUT_RIGHT_TOP, 20, 0); + +} + + +/********************** + * STATIC FUNCTIONS + **********************/ + +#endif /*LV_USE_ARC && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.h b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.h new file mode 100644 index 0000000..f86d04c --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.h @@ -0,0 +1,53 @@ +/** + * @file lv_test_arc.h + * + */ + +#ifndef LV_TEST_ARC_H +#define LV_TEST_ARC_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../../lvgl/lvgl.h" +#include "../../../../lv_ex_conf.h" +#endif + +#if LV_USE_ARC && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create arcs to test their functionalities + */ +void lv_test_arc_1(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_ARC && LV_USE_TESTS*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TEST_BAR_H*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.mk b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.mk new file mode 100644 index 0000000..197c73f --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc.mk @@ -0,0 +1,6 @@ +CSRCS += lv_test_arc.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_arc +VPATH += :$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_arc + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_arc" diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc_1.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc_1.png new file mode 100644 index 0000000..813b7c6 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_arc/lv_test_arc_1.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.c b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.c new file mode 100644 index 0000000..4c2fa88 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.c @@ -0,0 +1,92 @@ +/** + * @file lv_test_bar.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_test_bar.h" +#if LV_USE_BAR && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create bars to test their functionalities + */ +void lv_test_bar_1(void) +{ + /* Create a default object*/ + lv_obj_t * bar1 = lv_bar_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_pos(bar1, 10, 10); + lv_bar_set_value(bar1, 40, false); + + /* Modify size and position, range and set to 75 % */ + lv_obj_t * bar2 = lv_bar_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_size(bar2, 200, 50); + lv_obj_align(bar2, bar1, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 20); + lv_bar_set_range(bar2, -50, 50); + lv_bar_set_value(bar2, 25, false); + + /* Copy 'bar2' but set its size to be vertical (indicator at 75%)*/ + lv_obj_t * bar3 = lv_bar_create(lv_disp_get_scr_act(NULL), bar2); + lv_obj_set_size(bar3, 50, 200); + lv_obj_align(bar3, bar2, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 20); + + + /* Copy 'bar2' and set new style for it + * (like 'bar2' on its left but dark bg, thin red indicator with big light)*/ + static lv_style_t bar_bg; + lv_style_copy(&bar_bg, &lv_style_pretty); + bar_bg.body.main_color = LV_COLOR_BLACK; + + static lv_style_t bar_indic; + lv_style_copy(&bar_indic, &lv_style_pretty); + bar_indic.body.main_color = LV_COLOR_RED; + bar_indic.body.grad_color = LV_COLOR_MAROON; + bar_indic.body.shadow.color = LV_COLOR_RED; + bar_indic.body.shadow.width = 20; + bar_indic.body.padding.top = 10; /*Set the padding around the indicator*/ + bar_indic.body.padding.bottom = 3; + bar_indic.body.padding.left = 3; + bar_indic.body.padding.right = 10; + + lv_obj_t * bar4 = lv_bar_create(lv_disp_get_scr_act(NULL), bar2); + lv_obj_align(bar4, bar2, LV_ALIGN_OUT_RIGHT_MID, 20, 0); + lv_bar_set_style(bar4, LV_BAR_STYLE_BG, &bar_bg); + lv_bar_set_style(bar4, LV_BAR_STYLE_INDIC, &bar_indic); + + /* Copy 'bar4' but set its size to be vertical*/ + lv_obj_t * bar5 = lv_bar_create(lv_disp_get_scr_act(NULL), bar4); + lv_obj_set_size(bar5, 50, 200); + lv_obj_align(bar5, bar4, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 20); +} + + +/********************** + * STATIC FUNCTIONS + **********************/ + +#endif /*LV_USE_BAR && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.h b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.h new file mode 100644 index 0000000..640426b --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.h @@ -0,0 +1,53 @@ +/** + * @file lv_test_bar.h + * + */ + +#ifndef LV_TEST_BAR_H +#define LV_TEST_BAR_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../../lvgl/lvgl.h" +#include "../../../../lv_ex_conf.h" +#endif + +#if LV_USE_BAR && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create bars to test their functionalities + */ +void lv_test_bar_1(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_BAR && LV_USE_TESTS*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TEST_BAR_H*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.mk b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.mk new file mode 100644 index 0000000..1b3e264 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar.mk @@ -0,0 +1,6 @@ +CSRCS += lv_test_bar.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_bar +VPATH += :$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_bar + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_bar" diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar_1.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar_1.png new file mode 100644 index 0000000..710a103 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_bar/lv_test_bar_1.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.c b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.c new file mode 100644 index 0000000..e7b8e4b --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.c @@ -0,0 +1,135 @@ +/** + * @file lv_test_btn.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_test_btn.h" + +#if LV_USE_BTN && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ +static void btn_event_cb(lv_obj_t * btn, lv_event_t event); + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create buttons to test their functionalities + */ +void lv_test_btn_1(void) +{ + /* Create a button which looks well */ + lv_obj_t * btn1 = lv_btn_create(lv_disp_get_scr_act(NULL), NULL); + + /* Create a default button manually set to toggled state*/ + lv_obj_t * btn2 = lv_btn_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_align(btn2, btn1, LV_ALIGN_OUT_BOTTOM_MID, 0, 20); + lv_btn_set_state(btn2, LV_BTN_STATE_TGL_REL); + + /* Create a button which can be toggled */ + lv_obj_t * btn3 = lv_btn_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_align(btn3, btn2, LV_ALIGN_OUT_BOTTOM_MID, 0, 20); + lv_btn_set_toggle(btn3, true); + + /* Test actions: + * Press: increase width, Release: decrease width, Long press: delete */ + lv_obj_t * btn4 = lv_btn_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_align(btn4, btn1, LV_ALIGN_OUT_RIGHT_MID, 20, 0); + lv_obj_set_event_cb(btn4, btn_event_cb); + + /* Test styles and copy. Same as 'btn4' but different styles */ + static lv_style_t style_rel; + lv_style_copy(&style_rel, &lv_style_pretty); + style_rel.body.main_color = LV_COLOR_ORANGE; + style_rel.body.grad_color = LV_COLOR_BLACK; + style_rel.body.border.color = LV_COLOR_RED; + style_rel.body.shadow.color = LV_COLOR_MAROON; + style_rel.body.shadow.width = 10; + + static lv_style_t style_pr; + lv_style_copy(&style_pr, &lv_style_pretty); + style_pr.body.opa = LV_OPA_TRANSP; + style_pr.body.border.color = LV_COLOR_RED; + style_pr.body.border.width = 4; + + /*Skip 'TGL_PR' (leave unchanged)*/ + + static lv_style_t style_tpr; + lv_style_copy(&style_tpr, &lv_style_pretty); + style_tpr.body.opa = LV_OPA_TRANSP; + style_tpr.body.border.color = LV_COLOR_RED; + style_tpr.body.border.width = 4; + + static lv_style_t style_ina; + lv_style_copy(&style_ina, &lv_style_pretty); + style_ina.body.main_color = LV_COLOR_SILVER; + style_ina.body.grad_color = LV_COLOR_GRAY; + style_ina.body.border.color = LV_COLOR_RED; + + /*Create styled button*/ + lv_obj_t * btn5 = lv_btn_create(lv_scr_act(), btn4); + lv_obj_align(btn5, btn4, LV_ALIGN_OUT_BOTTOM_MID, 0, 20); + lv_btn_set_style(btn5, LV_BTN_STYLE_REL, &style_rel); + lv_btn_set_style(btn5, LV_BTN_STYLE_PR, &style_pr); + lv_btn_set_style(btn5, LV_BTN_STYLE_TGL_PR, &style_tpr); + lv_btn_set_style(btn5, LV_BTN_STYLE_INA, &style_ina); + lv_btn_set_toggle(btn5, true); + + /* Test style copy and inactive state*/ + lv_obj_t * btn6 = lv_btn_create(lv_scr_act(), btn5); + lv_obj_align(btn6, btn5, LV_ALIGN_OUT_BOTTOM_MID, 0, 20); + lv_btn_set_state(btn6, LV_BTN_STATE_INA); + + /*Test horizontal fit and default layout (CENTER)*/ + lv_obj_t * btn7 = lv_btn_create(lv_scr_act(), NULL); + lv_btn_set_fit2(btn7, LV_FIT_TIGHT, LV_FIT_NONE); + lv_obj_t * label = lv_label_create(btn7, NULL); + lv_label_set_text(label, "A quite long text"); + label = lv_label_create(btn7, NULL); + lv_label_set_text(label, "Short text"); + lv_obj_align(btn7, btn4, LV_ALIGN_OUT_RIGHT_TOP, 20, 0); + +} + + +/********************** + * STATIC FUNCTIONS + **********************/ + +static void btn_event_cb(lv_obj_t * btn, lv_event_t event) +{ + if(event == LV_EVENT_PRESSED) { + lv_obj_set_width(btn, lv_obj_get_width(btn) + (10)); + } + else if(event == LV_EVENT_RELEASED) { + lv_obj_set_width(btn, lv_obj_get_width(btn) - (10)); + } + else if(event == LV_EVENT_LONG_PRESSED) { + lv_obj_del(btn); + } +} + + +#endif /*LV_USE_BTN && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.h b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.h new file mode 100644 index 0000000..c51e33b --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.h @@ -0,0 +1,53 @@ +/** + * @file lv_test_btn.h + * + */ + +#ifndef LV_TEST_BTN_H +#define LV_TEST_BTN_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../../lvgl/lvgl.h" +#include "../../../../lv_ex_conf.h" +#endif + +#if LV_USE_BTN && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create buttons to test their functionalities + */ +void lv_test_btn_1(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_BTN*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_USE_BTN && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.mk b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.mk new file mode 100644 index 0000000..8b09300 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn.mk @@ -0,0 +1,6 @@ +CSRCS += lv_test_btn.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_btn +VPATH += :$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_btn + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_btn" diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn_1.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn_1.png new file mode 100644 index 0000000..2f2391b Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btn/lv_test_btn_1.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.c b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.c new file mode 100644 index 0000000..fd5e014 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.c @@ -0,0 +1,97 @@ +/** + * @file lv_test_btnm.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include /*For printf in the action*/ + +#include "lv_test_btnm.h" + +#if LV_USE_BTNM && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ +static void btnm_event_cb(lv_obj_t * btnm, lv_event_t event); + +/********************** + * STATIC VARIABLES + **********************/ +static const char * btnm_map[] = {"One line", "\n", "\212", "\242Ina", "\204üŰöŐ", "\221éÉ", "\n", "\214", "\202Left", ""}; +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create button matrixes to test their functionalities + */ +void lv_test_btnm_1(void) +{ + lv_coord_t hres = lv_disp_get_hor_res(NULL); + lv_coord_t vres = lv_disp_get_ver_res(NULL); + + /* Default object + * GOAL: A button matrix with default buttons */ + lv_obj_t * btnm1 = lv_btnm_create(lv_disp_get_scr_act(NULL), NULL); + + /* Test map, size and position. Also try some features. + * GOAL: A button matrix with default buttons. */ + static lv_style_t rel; + lv_style_copy(&rel, &lv_style_btn_tgl_rel); + rel.body.main_color = LV_COLOR_RED; + rel.body.grad_color = LV_COLOR_BLACK; + rel.text.color = LV_COLOR_YELLOW; + + static lv_style_t pr; + lv_style_copy(&pr, &lv_style_btn_tgl_rel); + pr.body.main_color = LV_COLOR_ORANGE; + pr.body.grad_color = LV_COLOR_BLACK; + pr.text.color = LV_COLOR_WHITE; + + + lv_obj_t * btnm2 = lv_btnm_create(lv_disp_get_scr_act(NULL), NULL); + lv_btnm_set_map(btnm2, btnm_map); + lv_obj_set_size(btnm2, hres / 2, vres / 3); + lv_obj_align(btnm2, btnm1, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 20); + lv_btnm_set_btn_ctrl(btnm2, 2, LV_BTNM_CTRL_TGL_STATE); + lv_obj_set_event_cb(btnm2, btnm_event_cb); + lv_btnm_set_style(btnm2, LV_BTNM_STYLE_BTN_REL, &rel); + lv_btnm_set_style(btnm2, LV_BTNM_STYLE_BTN_PR, &pr); +} + +/********************** + * STATIC FUNCTIONS + **********************/ + +static void btnm_event_cb(lv_obj_t * btnm, lv_event_t event) +{ + (void) btnm; /*Unused*/ + + if(event != LV_EVENT_CLICKED) return; + + + +#if LV_EX_PRINTF + const char * txt = lv_btnm_get_active_btn_text(btnm); + if(txt) { + printf("Key pressed: %s\n", txt); + } +#endif +} + +#endif /* LV_USE_BTNM && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.h b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.h new file mode 100644 index 0000000..7133213 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.h @@ -0,0 +1,53 @@ +/** + * @file lv_test_btnm.h + * + */ + +#ifndef LV_TEST_BTNM_H +#define LV_TEST_BTNM_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../../lvgl/lvgl.h" +#include "../../../../lv_ex_conf.h" +#endif + +#if LV_USE_BTNM && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create button matrixes to test their functionalities + */ +void lv_test_btnm_1(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_BTNM*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /* LV_USE_BTNM && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.mk b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.mk new file mode 100644 index 0000000..a250908 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm.mk @@ -0,0 +1,6 @@ +CSRCS += lv_test_btnm.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_btnm +VPATH += :$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_btnm + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_btnm" diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm_1.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm_1.png new file mode 100644 index 0000000..f56caa7 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_btnm/lv_test_btnm_1.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas.c b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas.c new file mode 100644 index 0000000..e6f986c --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas.c @@ -0,0 +1,94 @@ +/** + * @file lv_test_canvas.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_test_canvas.h" + +#if LV_USE_CANVAS && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ +#define CANVAS_WIDTH 100 +#define CANVAS_HEIGHT 100 +#define TEST_ROTATE 0 + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create canvas to test its functionalities + */ +void lv_test_canvas_1(void) +{ + static lv_style_t style; + lv_style_copy(&style, &lv_style_plain); + style.body.main_color = LV_COLOR_RED; + style.body.grad_color = LV_COLOR_MAROON; + style.body.radius = 4; + style.body.border.width = 2; + style.body.border.color = LV_COLOR_WHITE; + style.body.shadow.color = LV_COLOR_WHITE; + style.body.shadow.width = 4; + style.line.width = 2; + style.line.color = LV_COLOR_BLACK; + style.text.color = LV_COLOR_BLUE; + + lv_obj_t * canvas = lv_canvas_create(lv_scr_act(), NULL); + static lv_color_t cbuf[LV_CANVAS_BUF_SIZE_TRUE_COLOR(CANVAS_WIDTH, CANVAS_HEIGHT)]; + lv_canvas_set_buffer(canvas, cbuf, CANVAS_WIDTH, CANVAS_HEIGHT, LV_IMG_CF_TRUE_COLOR); + lv_obj_set_pos(canvas, 10, 10); + lv_canvas_fill_bg(canvas, LV_COLOR_SILVER); + + lv_canvas_draw_rect(canvas, 40, 10, 50, 30, &style); + + lv_canvas_draw_text(canvas, 5, 5, 100, &style, "ABC", LV_LABEL_ALIGN_LEFT); + + const lv_point_t points[] = {{5, 40}, {35, 45}, {30, 80}, {10, 90}, {5, 40}}; + + lv_canvas_draw_polygon(canvas, points, 5, &style); + lv_canvas_draw_line(canvas, points, 5, &style); + + lv_canvas_draw_arc(canvas, 70, 70, 20, 20, 250, &style); + +#if TEST_ROTATE + /*Copy the current image to buffer and rotate it to the canvas */ + lv_color_t cbuf_tmp[CANVAS_WIDTH * CANVAS_HEIGHT]; + memcpy(cbuf_tmp, cbuf, sizeof(cbuf_tmp)); + lv_img_dsc_t img; + img.data = (void *)cbuf_tmp; + img.header.cf = LV_IMG_CF_TRUE_COLOR; + img.header.w = CANVAS_WIDTH; + img.header.h = CANVAS_HEIGHT; + + lv_canvas_fill_bg(canvas, LV_COLOR_SILVER); + lv_canvas_rotate(canvas, &img, 30, 0, 0, CANVAS_WIDTH / 2, CANVAS_HEIGHT / 2); +#endif +} + +/********************** + * STATIC FUNCTIONS + **********************/ + +#endif /*LV_USE_CANVAS && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas.h b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas.h new file mode 100644 index 0000000..95c411d --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas.h @@ -0,0 +1,53 @@ +/** + * @file lv_test_canvas.h + * + */ + +#ifndef LV_TEST_CANVAS_H +#define LV_TEST_CANVAS_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../../lvgl/lvgl.h" +#include "../../../../lv_ex_conf.h" +#endif + +#if LV_USE_CANVAS && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create canvas to test its functionalities + */ +void lv_test_canvas_1(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_CANVAS && LV_USE_TESTS*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TEST_CANVAS_H*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas.mk b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas.mk new file mode 100644 index 0000000..9932c87 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas.mk @@ -0,0 +1,6 @@ +CSRCS += lv_test_canvas.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_canvas +VPATH += :$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_canvas + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_canvas" diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas_1.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas_1.png new file mode 100644 index 0000000..df59d1f Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_canvas/lv_test_canvas_1.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.c b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.c new file mode 100644 index 0000000..ce94b1a --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.c @@ -0,0 +1,103 @@ +/** + * @file lv_test_cb.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_test_cb.h" + +#if LV_USE_CB && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create check boxes to test their functionalities + */ +void lv_test_cb_1(void) +{ + /* Create a default object*/ + lv_obj_t * cb1 = lv_cb_create(lv_disp_get_scr_act(NULL), NULL); + + /*Create an other check box and set its text*/ + lv_obj_t * cb2 = lv_cb_create(lv_disp_get_scr_act(NULL), NULL); + lv_cb_set_text(cb2, "UTF8-text: üŰ öŐ íÍ"); + lv_obj_align(cb2, cb1, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 10); + + /*Create styles for the bullets*/ + static lv_style_t cb3_styles[_LV_BTN_STATE_NUM]; + lv_style_copy(&cb3_styles[LV_BTN_STATE_REL], &lv_style_plain); + cb3_styles[LV_BTN_STATE_REL].body.radius = LV_DPI / 20; + cb3_styles[LV_BTN_STATE_REL].body.border.width = 1; + cb3_styles[LV_BTN_STATE_REL].body.border.color = LV_COLOR_GRAY; + cb3_styles[LV_BTN_STATE_REL].body.main_color = LV_COLOR_WHITE; + cb3_styles[LV_BTN_STATE_REL].body.grad_color = LV_COLOR_SILVER; + + lv_style_copy(&cb3_styles[LV_BTN_STATE_PR], &cb3_styles[LV_BTN_STATE_REL]); + cb3_styles[LV_BTN_STATE_PR].body.main_color = LV_COLOR_SILVER; + cb3_styles[LV_BTN_STATE_PR].body.grad_color = LV_COLOR_GRAY; + + lv_style_copy(&cb3_styles[LV_BTN_STATE_TGL_REL], &cb3_styles[LV_BTN_STATE_REL]); + cb3_styles[LV_BTN_STATE_TGL_REL].body.border.width = 4; + cb3_styles[LV_BTN_STATE_TGL_REL].body.border.color = LV_COLOR_WHITE; + cb3_styles[LV_BTN_STATE_TGL_REL].body.border.opa = LV_OPA_70; + cb3_styles[LV_BTN_STATE_TGL_REL].body.main_color = LV_COLOR_GRAY; + cb3_styles[LV_BTN_STATE_TGL_REL].body.grad_color = LV_COLOR_BLACK; + + lv_style_copy(&cb3_styles[LV_BTN_STATE_TGL_PR], &cb3_styles[LV_BTN_STATE_TGL_REL]); + cb3_styles[LV_BTN_STATE_TGL_PR].body.border.color = LV_COLOR_SILVER; + cb3_styles[LV_BTN_STATE_TGL_PR].body.border.opa = LV_OPA_70; + cb3_styles[LV_BTN_STATE_TGL_PR].body.main_color = LV_COLOR_GRAY; + cb3_styles[LV_BTN_STATE_TGL_PR].body.grad_color = LV_COLOR_BLACK; + + lv_style_copy(&cb3_styles[LV_BTN_STATE_INA], &cb3_styles[LV_BTN_STATE_TGL_REL]); + cb3_styles[LV_BTN_STATE_INA].body.border.width = 1; + cb3_styles[LV_BTN_STATE_INA].body.border.color = LV_COLOR_GRAY; + cb3_styles[LV_BTN_STATE_INA].body.main_color = LV_COLOR_SILVER; + cb3_styles[LV_BTN_STATE_INA].body.grad_color = LV_COLOR_SILVER; + + + /*Copy the previous check box and apply the new styles*/ + lv_obj_t * cb3 = lv_cb_create(lv_disp_get_scr_act(NULL), cb2); + lv_cb_set_style(cb3, LV_CB_STYLE_BOX_REL, &cb3_styles[LV_BTN_STATE_REL]); + lv_cb_set_style(cb3, LV_CB_STYLE_BOX_PR, &cb3_styles[LV_BTN_STATE_PR]); + lv_cb_set_style(cb3, LV_CB_STYLE_BOX_TGL_REL, &cb3_styles[LV_BTN_STATE_TGL_REL]); + lv_cb_set_style(cb3, LV_CB_STYLE_BOX_TGL_PR, &cb3_styles[LV_BTN_STATE_TGL_PR]); + lv_cb_set_style(cb3, LV_CB_STYLE_BOX_INA, &cb3_styles[LV_BTN_STATE_INA]); + lv_obj_align(cb3, cb2, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 10); + + /*Copy the previous check box and set it to INACTIVE*/ + lv_obj_t * cb4 = lv_cb_create(lv_disp_get_scr_act(NULL), cb3); + lv_obj_align(cb4, cb3, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 10); + lv_btn_set_state(cb4, LV_BTN_STATE_INA); +} + + +/********************** + * STATIC FUNCTIONS + **********************/ + +#endif /*LV_USE_CB && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.h b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.h new file mode 100644 index 0000000..6bb1b0f --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.h @@ -0,0 +1,53 @@ +/** + * @file lv_test_cb.h + * + */ + +#ifndef LV_TEST_CB_H +#define LV_TEST_CB_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../../lvgl/lvgl.h" +#include "../../../../lv_ex_conf.h" +#endif + +#if LV_USE_CB && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create check boxes to test their functionalities + */ +void lv_test_cb_1(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_CB && LV_USE_TESTS*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TEST_CB_H*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.mk b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.mk new file mode 100644 index 0000000..0b5363d --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb.mk @@ -0,0 +1,6 @@ +CSRCS += lv_test_cb.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_cb +VPATH += :$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_cb + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_cb" diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb_1.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb_1.png new file mode 100644 index 0000000..d46305f Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cb/lv_test_cb_1.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.c b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.c new file mode 100644 index 0000000..82347ae --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.c @@ -0,0 +1,306 @@ +/** + * @file lv_test_chart.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_test_chart.h" +#include + +#if LV_USE_BTN && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create charts to test their functionalities + */ +void lv_test_chart_1(void) +{ + /* Create a default object*/ + lv_obj_t * chart1 = lv_chart_create(lv_disp_get_scr_act(NULL), NULL); + + lv_chart_series_t * dl1_1 = lv_chart_add_series(chart1, LV_COLOR_RED); + dl1_1->points[0] = 0; + dl1_1->points[1] = 25; + dl1_1->points[2] = 0; + dl1_1->points[3] = 50; + dl1_1->points[4] = 0; + dl1_1->points[5] = 75; + dl1_1->points[6] = 0; + dl1_1->points[7] = 100; + dl1_1->points[8] = 0; + + lv_chart_series_t * dl1_2 = lv_chart_add_series(chart1, LV_COLOR_BLUE); + dl1_2->points[0] = 100; + + lv_chart_refresh(chart1); + + + /* Create a chart with the same data and modify all appearance-like attributes + * also modify the number of points, range, and type*/ + lv_obj_t * chart2 = lv_chart_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_size(chart2, 140, 100); + lv_obj_align(chart2, chart1, LV_ALIGN_OUT_RIGHT_MID, 10, 0); + lv_chart_set_series_darking(chart2, LV_OPA_90); + lv_chart_set_series_opa(chart2, LV_OPA_40); + lv_chart_set_series_width(chart2, 4); + lv_chart_set_type(chart2, LV_CHART_TYPE_POINT | LV_CHART_TYPE_LINE); + lv_chart_set_range(chart2, -20, 120); + lv_chart_set_div_line_count(chart2, 4, 0); + + lv_chart_series_t * dl2_1 = lv_chart_add_series(chart2, LV_COLOR_RED); + dl2_1->points[0] = 0; + dl2_1->points[1] = 25; + dl2_1->points[2] = 0; + dl2_1->points[3] = 50; + dl2_1->points[4] = 0; + dl2_1->points[5] = 75; + dl2_1->points[6] = 0; + dl2_1->points[7] = 100; + dl2_1->points[8] = 0; + + lv_chart_series_t * dl2_2 = lv_chart_add_series(chart2, LV_COLOR_BLUE); + dl2_2->points[0] = 100; + + lv_chart_refresh(chart2); + + lv_chart_set_point_count(chart2, 15); + + + /*Copy the previous chart, set COLUMN type and test lv_chart_set_next()*/ + lv_obj_t * chart3 = lv_chart_create(lv_disp_get_scr_act(NULL), chart2); + lv_obj_align(chart3, chart2, LV_ALIGN_OUT_BOTTOM_MID, 0, 20); + lv_chart_set_type(chart3, LV_CHART_TYPE_COLUMN); + lv_chart_series_t * dl3_1 = lv_chart_add_series(chart3, LV_COLOR_RED); + dl3_1->points[0] = 0; + dl3_1->points[1] = 25; + dl3_1->points[2] = 0; + dl3_1->points[3] = 50; + dl3_1->points[4] = 0; + dl3_1->points[5] = 75; + dl3_1->points[6] = 0; + dl3_1->points[7] = 100; + dl3_1->points[8] = 0; + + lv_chart_series_t * dl3_2 = lv_chart_add_series(chart3, LV_COLOR_BLUE); + dl3_2->points[0] = 100; + + lv_chart_refresh(chart2); + + lv_chart_set_next(chart3, dl3_2, 110); + lv_chart_set_next(chart3, dl3_2, 110); + lv_chart_set_next(chart3, dl3_2, 110); + lv_chart_set_next(chart3, dl3_2, 110); + +} + +void lv_test_chart_2(uint8_t chart) +{ + + static lv_style_t scr_style; + lv_style_copy(&scr_style, lv_obj_get_style(lv_scr_act())); + scr_style.body.main_color = LV_COLOR_BLACK; + scr_style.body.grad_color = LV_COLOR_BLACK; + + lv_obj_set_style(lv_scr_act(), &scr_style); + + static lv_style_t style_chart_label; + lv_style_copy(&style_chart_label, &lv_style_plain); + style_chart_label.text.color = LV_COLOR_YELLOW; + style_chart_label.text.opa = LV_OPA_COVER; + + static lv_obj_t * chart_label; + chart_label = lv_label_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_style(chart_label, &style_chart_label); + lv_label_set_align(chart_label, LV_LABEL_ALIGN_CENTER); + lv_label_set_long_mode(chart_label, LV_LABEL_LONG_EXPAND); + lv_label_set_text(chart_label, "Choose between 0 and 5"); + lv_obj_align(chart_label, NULL, LV_ALIGN_IN_TOP_MID, 10, 20); + + /*Create charts with axis ticks and labels*/ + static lv_style_t style_chart_axes; + lv_style_copy(&style_chart_axes, &lv_style_plain); + style_chart_axes.body.shadow.color = LV_COLOR_WHITE; + style_chart_axes.body.shadow.width = 0; + style_chart_axes.line.color = LV_COLOR_GRAY; + style_chart_axes.line.width = 1; + style_chart_axes.line.opa = LV_OPA_70; + style_chart_axes.body.main_color = LV_COLOR_WHITE; + style_chart_axes.body.grad_color = LV_COLOR_BLACK; + style_chart_axes.body.opa = LV_OPA_COVER; + style_chart_axes.body.border.color = LV_COLOR_GREEN; + style_chart_axes.body.border.width = 1; + style_chart_axes.body.border.opa = LV_OPA_70; + style_chart_axes.text.color = LV_COLOR_WHITE; + style_chart_axes.text.opa = LV_OPA_COVER; + + lv_obj_t * chart_axes = lv_chart_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_size(chart_axes, (LV_HOR_RES * 7) / 10, (LV_VER_RES * 6) / 10); + lv_obj_set_style(chart_axes, &style_chart_axes); + lv_obj_align(chart_axes, chart_label, LV_ALIGN_OUT_BOTTOM_MID, 0, 0); + lv_chart_set_margin(chart_axes, 100); + lv_chart_set_type(chart_axes, LV_CHART_TYPE_COLUMN); + lv_chart_set_div_line_count(chart_axes, 0, 0); + lv_chart_set_point_count(chart_axes, 24); + lv_chart_set_series_opa(chart_axes, LV_OPA_COVER); + lv_chart_set_series_width(chart_axes, 1); + + lv_chart_series_t * ser = lv_chart_add_series(chart_axes, LV_COLOR_RED); + lv_chart_set_range(chart_axes, 0, 100); + + // some pseudo-random data + uint8_t i; + for(i = 0; i < 24; i++) + { + /* add random points between 0 an 100 */ + lv_chart_set_next(chart_axes, ser, (rand() % 101)); + } + + switch( chart ) + { + case 0: + { + lv_label_set_text(chart_label, "Chart 0"); + lv_chart_set_x_tick_length(chart_axes, LV_CHART_TICK_LENGTH_AUTO, LV_CHART_TICK_LENGTH_AUTO); + lv_chart_set_y_tick_length(chart_axes, LV_CHART_TICK_LENGTH_AUTO, LV_CHART_TICK_LENGTH_AUTO); + lv_chart_set_x_tick_texts(chart_axes, "0\n" "1\n" "2\n" "3\n" "4\n" "X[%]", 2, 0 ); + lv_chart_set_y_tick_texts(chart_axes, "0\n" "1\n" "2\n" "3\n" "4\n" "Y[$]", 2, 0 ); + break; + } + + case 1: + { + lv_label_set_text(chart_label, "Chart 1"); + lv_chart_set_x_tick_length(chart_axes, LV_CHART_TICK_LENGTH_AUTO, LV_CHART_TICK_LENGTH_AUTO); + lv_chart_set_y_tick_length(chart_axes, LV_CHART_TICK_LENGTH_AUTO, LV_CHART_TICK_LENGTH_AUTO); + lv_chart_set_x_tick_texts(chart_axes, "X[%]\n" "1\n" "2\n" "3\n" "4", 10, LV_CHART_AXIS_DRAW_LAST_TICK); + lv_chart_set_y_tick_texts(chart_axes, "Y[$]\n" "1\n" "2\n" "3\n" "4", 5, LV_CHART_AXIS_DRAW_LAST_TICK); + break; + } + + case 2: + { + lv_label_set_text(chart_label, "Chart 2"); + lv_chart_set_x_tick_length(chart_axes, LV_CHART_TICK_LENGTH_AUTO, LV_CHART_TICK_LENGTH_AUTO); + lv_chart_set_y_tick_length(chart_axes, LV_CHART_TICK_LENGTH_AUTO, LV_CHART_TICK_LENGTH_AUTO); + lv_chart_set_x_tick_texts(chart_axes, "Left\n" "X\n" "Right", 1, LV_CHART_AXIS_DRAW_LAST_TICK); + lv_chart_set_y_tick_texts(chart_axes, "Down\n" "Y\n" "Up", 1, LV_CHART_AXIS_DRAW_LAST_TICK ); + break; + } + + case 3: + { + lv_label_set_text(chart_label, "Chart 3"); + lv_chart_set_x_tick_length(chart_axes, 8, 2); + lv_chart_set_y_tick_length(chart_axes, 12, 6); + lv_chart_set_x_tick_texts(chart_axes, "0\n" "\n" "6\n" "\n" "12\n" "\n" "18\n" "\n" "t[h]", 3, LV_CHART_AXIS_SKIP_LAST_TICK); + lv_chart_set_y_tick_texts(chart_axes, "0\n" "0.2\n" "0.4\n" "0.6\n" "0.8\n" "P[kW]", 2, LV_CHART_AXIS_SKIP_LAST_TICK); + break; + } + + case 4: + { + lv_label_set_text(chart_label, "Chart 4"); + lv_chart_set_x_tick_length(chart_axes, LV_CHART_TICK_LENGTH_AUTO, LV_CHART_TICK_LENGTH_AUTO); + lv_chart_set_y_tick_length(chart_axes, LV_CHART_TICK_LENGTH_AUTO, LV_CHART_TICK_LENGTH_AUTO); + lv_chart_set_x_tick_texts(chart_axes, NULL, 6, LV_CHART_AXIS_DRAW_LAST_TICK); + lv_chart_set_y_tick_texts(chart_axes, NULL, 10, LV_CHART_AXIS_DRAW_LAST_TICK); + break; + } + + case 5: + { + lv_label_set_text(chart_label, "Chart 5"); + lv_chart_set_y_tick_length(chart_axes, LV_CHART_TICK_LENGTH_AUTO, LV_CHART_TICK_LENGTH_AUTO); + lv_chart_set_x_tick_length(chart_axes, 10, 4); + lv_chart_set_x_tick_texts(chart_axes, "\n\n\n\n\n", 5, LV_CHART_AXIS_DRAW_LAST_TICK); + lv_chart_set_y_tick_texts(chart_axes, "\n\n\n\n\n\n\n\n\n\n", 2, LV_CHART_AXIS_DRAW_LAST_TICK); + break; + } + + default: { + break; + } + } + + lv_obj_align(chart_label, NULL, LV_ALIGN_IN_TOP_MID, 10, 20); +} + +void lv_test_chart_3(lv_chart_type_t chart_type) +{ + /* Create a the base chart*/ + lv_obj_t * chart1 = lv_chart_create(lv_scr_act(), NULL); + lv_chart_set_type(chart1, chart_type); + lv_obj_set_size(chart1, 100, 100); + + lv_chart_series_t * dl1_1 = lv_chart_add_series(chart1, LV_COLOR_RED); + dl1_1->points[0] = 0; + dl1_1->points[1] = 20; + dl1_1->points[2] = 0; + dl1_1->points[3] = 40; + dl1_1->points[4] = 0; + dl1_1->points[5] = 60; + dl1_1->points[6] = 0; + dl1_1->points[7] = 80; + dl1_1->points[8] = 0; + dl1_1->points[9] = 100; + + /*create the chart with `LV_CHART_UPDATE_MODE_SHIFT` */ + lv_obj_t * chart2 = lv_chart_create(lv_scr_act(), chart1); + lv_chart_set_update_mode(chart2, LV_CHART_UPDATE_MODE_SHIFT); + + lv_chart_series_t * dl2_1 = lv_chart_add_series(chart2, LV_COLOR_RED); + memcpy(dl2_1->points, dl1_1->points, sizeof(lv_coord_t) * lv_chart_get_point_cnt(chart1)); + lv_obj_align(chart2, chart1, LV_ALIGN_OUT_BOTTOM_MID, 0, 10); + + /*create the chart with `LV_CHART_UPDATE_MODE_CIRCULAR` */ + lv_obj_t * chart3 = lv_chart_create(lv_scr_act(), chart1); + lv_chart_set_update_mode(chart3, LV_CHART_UPDATE_MODE_CIRCULAR); + + lv_chart_series_t * dl3_1 = lv_chart_add_series(chart3, LV_COLOR_RED); + memcpy(dl3_1->points, dl1_1->points, sizeof(lv_coord_t) * lv_chart_get_point_cnt(chart1)); + lv_obj_align(chart3, chart2, LV_ALIGN_OUT_BOTTOM_MID, 0, 10); + + /*add some new data to chart2*/ + lv_chart_set_next(chart2, dl2_1, 35); + lv_chart_set_next(chart2, dl2_1, 35); + lv_chart_set_next(chart2, dl2_1, 35); + lv_chart_set_next(chart2, dl2_1, 35); + lv_chart_set_next(chart2, dl2_1, 35); + + /*add some new data -same as chart2- to chart3*/ + lv_chart_set_next(chart3, dl3_1, 35); + lv_chart_set_next(chart3, dl3_1, 35); + lv_chart_set_next(chart3, dl3_1, 35); + lv_chart_set_next(chart3, dl3_1, 35); + lv_chart_set_next(chart3, dl3_1, 35); +} +/********************** + * STATIC FUNCTIONS + **********************/ + +#endif /*LV_USE_BTN && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.h b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.h new file mode 100644 index 0000000..c9a6165 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.h @@ -0,0 +1,55 @@ +/** + * @file lv_test_chart.h + * + */ + +#ifndef LV_TEST_CHART_H +#define LV_TEST_CHART_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../../lvgl/lvgl.h" +#include "../../../../lv_ex_conf.h" +#endif + +#if LV_USE_BTN && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create charts to test their functionalities + */ +void lv_test_chart_1(void); +void lv_test_chart_2(uint8_t chart); +void lv_test_chart_3(lv_chart_type_t chart_type); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_BTN && LV_USE_TESTS*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TEST_CHART_H*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.mk b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.mk new file mode 100644 index 0000000..a68ed90 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart.mk @@ -0,0 +1,6 @@ +CSRCS += lv_test_chart.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_chart +VPATH += :$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_chart + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_chart" diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart_1.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart_1.png new file mode 100644 index 0000000..f4b7a3a Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_chart/lv_test_chart_1.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.c b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.c new file mode 100644 index 0000000..5e88215 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.c @@ -0,0 +1,135 @@ +/** + * @file lv_test_cont.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_test_cont.h" + +#if LV_USE_CONT && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create containers to test their basic functionalities + */ +void lv_test_cont_1(void) +{ + /* Create a default object*/ + lv_obj_t * cont1 = lv_cont_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_pos(cont1, 10, 10); + lv_cont_set_style(cont1, LV_CONT_STYLE_MAIN, &lv_style_pretty); + + /*Test fit wit adding two labels*/ + lv_obj_t * cont2 = lv_cont_create(lv_disp_get_scr_act(NULL), cont1); + lv_cont_set_fit(cont2, LV_FIT_TIGHT); + + lv_obj_t * obj2_1 = lv_label_create(cont2, NULL); + lv_label_set_text(obj2_1, "Short"); + + lv_obj_t * obj2_2 = lv_label_create(cont2, NULL); + lv_label_set_text(obj2_2, "A longer text"); + lv_obj_set_pos(obj2_2, 80, 30); + + lv_obj_align(cont2, cont1, LV_ALIGN_OUT_RIGHT_TOP, 20, 0); + + /*Test layout and fit togother*/ + lv_obj_t * cont3 = lv_cont_create(lv_disp_get_scr_act(NULL), cont2); + lv_label_create(cont3, obj2_1); + lv_label_create(cont3, obj2_2); + lv_cont_set_layout(cont3, LV_LAYOUT_COL_L); + + lv_obj_align(cont3, cont2, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 10); + + + /*Set a new style with new padding*/ + static lv_style_t cont4_style; + lv_style_copy(&cont4_style, &lv_style_pretty_color); + cont4_style.body.padding.left = 20; + cont4_style.body.padding.right = 20; + cont4_style.body.padding.top = 40; + cont4_style.body.padding.bottom = 40; + cont4_style.body.padding.inner = 1; + + lv_obj_t * cont4 = lv_cont_create(lv_disp_get_scr_act(NULL), cont3); + lv_label_create(cont4, obj2_1); + lv_label_create(cont4, obj2_2); + lv_cont_set_style(cont4, LV_CONT_STYLE_MAIN, &cont4_style); + + lv_obj_align(cont4, cont3, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 10); + +} + +/** + * Test nested style inheritance on padding update + */ +void lv_test_cont_2(void) +{ + + /*Create a new style with big paddings*/ + static lv_style_t cont4_style; + lv_style_copy(&cont4_style, &lv_style_pretty_color); + cont4_style.body.padding.left = 10; + cont4_style.body.padding.right = 10; + cont4_style.body.padding.top = 20; + cont4_style.body.padding.bottom = 20; + cont4_style.body.padding.inner = 1; + + /* Create a main container*/ + lv_obj_t * cont_main = lv_cont_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_pos(cont_main, 50, 50); + lv_cont_set_style(cont_main, LV_CONT_STYLE_MAIN, &lv_style_pretty); + lv_cont_set_fit(cont_main, LV_FIT_TIGHT); + lv_cont_set_layout(cont_main, LV_LAYOUT_ROW_M); + + /*Create two containers on the main* with two-two labels*/ + lv_obj_t * cont_sub1 = lv_cont_create(cont_main, NULL); + lv_cont_set_style(cont_sub1, LV_CONT_STYLE_MAIN, NULL); /*Inherit style from parent*/ + lv_cont_set_fit(cont_sub1, LV_FIT_TIGHT); + lv_cont_set_layout(cont_sub1, LV_LAYOUT_COL_M); + + lv_obj_t * obj1_1 = lv_label_create(cont_sub1, NULL); + lv_label_set_text(obj1_1, "Short"); + + lv_obj_t * obj1_2 = lv_label_create(cont_sub1, NULL); + lv_label_set_text(obj1_2, "A long text"); + + lv_obj_t * cont_sub2 = lv_cont_create(cont_main, cont_sub1); + lv_label_create(cont_sub2, obj1_1); + lv_label_create(cont_sub2, obj1_2); + + /*Set the new style*/ + lv_cont_set_style(cont_main, LV_CONT_STYLE_MAIN, &cont4_style); + +} + + +/********************** + * STATIC FUNCTIONS + **********************/ + +#endif /*LV_USE_CONT && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.h b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.h new file mode 100644 index 0000000..d2f8026 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.h @@ -0,0 +1,58 @@ +/** + * @file lv_test_cont.h + * + */ + +#ifndef LV_TEST_CONT_H +#define LV_TEST_CONT_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../../lvgl/lvgl.h" +#include "../../../../lv_ex_conf.h" +#endif + +#if LV_USE_CONT && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create containers to test their basic functionalities + */ +void lv_test_cont_1(void); + +/** + * Test nested style inheritance on padding update + */ +void lv_test_cont_2(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_CONT && LV_USE_TESTS*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TEST_CONT_H*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.mk b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.mk new file mode 100644 index 0000000..eb1632d --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont.mk @@ -0,0 +1,6 @@ +CSRCS += lv_test_cont.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_cont +VPATH += :$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_cont + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_cont" diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont_1.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont_1.png new file mode 100644 index 0000000..fea3e2a Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont_1.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont_2.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont_2.png new file mode 100644 index 0000000..10a6f99 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cont/lv_test_cont_2.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker/lv_test_cpicker.c b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker/lv_test_cpicker.c new file mode 100644 index 0000000..39ac685 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker/lv_test_cpicker.c @@ -0,0 +1,74 @@ +/** + * @file lv_test_cpicker.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_test_cpicker.h" + +#if LV_USE_CPICKER && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create a color picker to test its basic functionalities + */ +void lv_test_cpicker_1(void) +{ + const lv_coord_t pickerSize = 200; + /* Set the style of the color ring */ + static lv_style_t styleMain; + lv_style_copy(&styleMain, &lv_style_plain); + styleMain.line.width = 30; + /* Make the background white */ + styleMain.body.main_color = styleMain.body.grad_color = LV_COLOR_WHITE; + /* Set the style of the knob */ + static lv_style_t styleIndicator; + lv_style_copy(&styleIndicator, &lv_style_pretty); + styleIndicator.body.border.color = LV_COLOR_WHITE; + /* Ensure that the knob is fully opaque */ + styleIndicator.body.opa = LV_OPA_COVER; + styleIndicator.body.border.opa = LV_OPA_COVER; + lv_obj_t * scr = lv_scr_act(); + lv_obj_t * colorPicker = lv_cpicker_create(scr, NULL); + lv_obj_set_size(colorPicker, pickerSize, pickerSize); + /* Choose the 'DISC' type */ + lv_cpicker_set_type(colorPicker, LV_CPICKER_TYPE_DISC); + lv_obj_align(colorPicker, NULL, LV_ALIGN_CENTER, 0, 0); + /* Set the styles */ + lv_cpicker_set_style(colorPicker, LV_CPICKER_STYLE_MAIN, &styleMain); + lv_cpicker_set_style(colorPicker, LV_CPICKER_STYLE_INDICATOR, &styleIndicator); + /* Change the knob's color to that of the selected color */ + lv_cpicker_set_indic_colored(colorPicker, true); + +} + +/********************** + * STATIC FUNCTIONS + **********************/ + +#endif /*LV_USE_CPICKER && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker/lv_test_cpicker.h b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker/lv_test_cpicker.h new file mode 100644 index 0000000..98e5be0 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker/lv_test_cpicker.h @@ -0,0 +1,54 @@ +/** + * @file lv_test_cpicker.h + * + */ + +#ifndef LV_TEST_CPICKER_H +#define LV_TEST_CPICKER_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../../lvgl/lvgl.h" +#include "../../../../lv_ex_conf.h" +#endif + +#if LV_USE_CPICKER && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create a color picker to test its basic functionalities + */ +void lv_test_cpicker_1(void); + + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_CONT && LV_USE_TESTS*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TEST_CONT_H*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker/lv_test_cpicker.mk b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker/lv_test_cpicker.mk new file mode 100644 index 0000000..f15db6e --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker/lv_test_cpicker.mk @@ -0,0 +1,6 @@ +CSRCS += lv_test_cpicker.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker +VPATH += :$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_cpicker" diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.c b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.c new file mode 100644 index 0000000..d5b2da9 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.c @@ -0,0 +1,104 @@ +/** + * @file lv_test_ddlist.c + * + */ + +/********************* + * INCLUDES + *********************/ + +#include "lv_test_ddlist.h" + +#if LV_EX_PRINTF +#include +#endif + + +#if LV_USE_DDLIST && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ +static void event_handler(lv_obj_t * ddlist, lv_event_t event); + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create drop down lists to test their functionalities + */ +void lv_test_ddlist_1(void) +{ + /* Create a default object*/ + lv_obj_t * ddlist1 = lv_ddlist_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_pos(ddlist1, 10, 10); + + /* Create a drop down list with a lot of options, fix height and anim time. + * Open it by default without animation and assign an action*/ + lv_obj_t * ddlist2 = lv_ddlist_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_align(ddlist2, ddlist1, LV_ALIGN_OUT_RIGHT_MID, 20, 0); + lv_ddlist_set_options(ddlist2, "First\nSecond\nThird\nForth\nFifth\nSixth"); + lv_ddlist_set_fix_height(ddlist2, LV_DPI); + lv_ddlist_set_selected(ddlist2, 2); + lv_ddlist_set_anim_time(ddlist2, 100); + lv_ddlist_open(ddlist2, false); + lv_ddlist_set_fix_width(ddlist2, LV_DPI * 2); + lv_obj_set_event_cb(ddlist2, event_handler); + + /*Copy the previous drop down list and modify its style*/ + static lv_style_t ddlist3_style; + lv_style_copy(&ddlist3_style, &lv_style_pretty); + ddlist3_style.body.main_color = LV_COLOR_GRAY; + ddlist3_style.body.grad_color = LV_COLOR_BLACK; + ddlist3_style.body.padding.left = 20; + ddlist3_style.body.padding.right = 20; + ddlist3_style.body.padding.top = 30; + ddlist3_style.body.padding.bottom = 30; + + ddlist3_style.text.color = LV_COLOR_RED; + ddlist3_style.text.letter_space = 5; + ddlist3_style.text.line_space = 15; + + lv_obj_t * ddlist3 = lv_ddlist_create(lv_disp_get_scr_act(NULL), ddlist2); + lv_obj_align(ddlist3, ddlist2, LV_ALIGN_OUT_RIGHT_TOP, 20, 0); + lv_ddlist_set_style(ddlist3, LV_DDLIST_STYLE_BG, &ddlist3_style); + lv_ddlist_set_style(ddlist3, LV_DDLIST_STYLE_SEL, &lv_style_plain_color); +} + +/********************** + * STATIC FUNCTIONS + **********************/ + + +static void event_handler(lv_obj_t * ddlist, lv_event_t event) +{ + if(event == LV_EVENT_VALUE_CHANGED) { + +#if LV_EX_PRINTF + char buf[64]; + lv_ddlist_get_selected_str(ddlist, buf, sizeof(buf)); + printf("New option selected on a drop down list: %s\n", buf); +#endif + } +} + +#endif /*LV_USE_DDLIST && LV_USE_TESTS*/ + diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.h b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.h new file mode 100644 index 0000000..0b1a3e6 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.h @@ -0,0 +1,53 @@ +/** + * @file lv_test_ddlist.h + * + */ + +#ifndef LV_TEST_DDLIST_H +#define LV_TEST_DDLIST_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../../lvgl/lvgl.h" +#include "../../../../lv_ex_conf.h" +#endif + +#if LV_USE_DDLIST && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create drop down lists to test their functionalities + */ +void lv_test_ddlist_1(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_DDLIST*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_USE_DDLIST && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.mk b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.mk new file mode 100644 index 0000000..dee31fa --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist.mk @@ -0,0 +1,6 @@ +CSRCS += lv_test_ddlist.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist +VPATH += :$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist" diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist_1.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist_1.png new file mode 100644 index 0000000..d005bc2 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ddlist/lv_test_ddlist_1.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.c b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.c new file mode 100644 index 0000000..3e1a593 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.c @@ -0,0 +1,90 @@ +/** + * @file lv_test_gauge.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_test_gauge.h" + +#if LV_USE_GAUGE && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create gauges to test their functionalities + */ +void lv_test_gauge_1(void) +{ + /* Create a default object*/ + lv_obj_t * gauge1 = lv_gauge_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_pos(gauge1, 10, 10); + lv_gauge_set_value(gauge1, 0, 75); + + /*Copy the previous gauge and set smaller size for it*/ + lv_obj_t * gauge2 = lv_gauge_create(lv_disp_get_scr_act(NULL), gauge1); + lv_obj_set_size(gauge2, 2 * lv_obj_get_width(gauge1) / 3, 2 * lv_obj_get_height(gauge1) / 3); + lv_obj_align(gauge2, gauge1, LV_ALIGN_OUT_BOTTOM_MID, 0, 10); + + /*Copy the first gauge add more needles and set new style*/ + static lv_color_t needle_colors[3]; + needle_colors[0] = LV_COLOR_BLUE; + needle_colors[1] = LV_COLOR_PURPLE; + needle_colors[2] = LV_COLOR_TEAL; + + /*Create a styled gauge*/ + static lv_style_t style3; + lv_style_copy(&style3, &lv_style_pretty); + style3.body.main_color = LV_COLOR_GREEN; + style3.body.grad_color = LV_COLOR_RED; + style3.body.padding.left = 6; + style3.body.padding.inner = 10; + style3.body.padding.top = 8; + style3.body.border.color = LV_COLOR_GRAY; + style3.line.width = 2; + + lv_obj_t * gauge3 = lv_gauge_create(lv_disp_get_scr_act(NULL), gauge1); + lv_obj_align(gauge3, gauge1, LV_ALIGN_OUT_RIGHT_MID, 20, 0); + lv_obj_set_style(gauge3, &style3); + lv_gauge_set_scale(gauge3, 270, 41, 5); + lv_gauge_set_needle_count(gauge3, 3, needle_colors); + lv_gauge_set_value(gauge3, 0, 20); + lv_gauge_set_value(gauge3, 1, 40); + lv_gauge_set_value(gauge3, 2, 60); + + /*Copy the modified 'gauge3' and set a smaller size for it*/ + lv_obj_t * gauge4 = lv_gauge_create(lv_disp_get_scr_act(NULL), gauge3); + lv_obj_set_size(gauge4, 100, 100); + lv_obj_align(gauge4, gauge3, LV_ALIGN_OUT_BOTTOM_MID, 0, 10); + +} + +/********************** + * STATIC FUNCTIONS + **********************/ + +#endif /*LV_USE_GAUGE && LV_USE_TESTS*/ + diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.h b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.h new file mode 100644 index 0000000..68a9330 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.h @@ -0,0 +1,52 @@ +/** + * @file lv_test_gauge.h + * + */ + +#ifndef LV_TEST_GAUGE_H +#define LV_TEST_GAUGE_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../../lvgl/lvgl.h" +#include "../../../../lv_ex_conf.h" +#endif + +#if LV_USE_GAUGE && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create gauges to test their functionalities + */ +void lv_test_gauge_1(void); +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_GAUGE*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_USE_GAUGE && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.mk b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.mk new file mode 100644 index 0000000..78ca4bb --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge.mk @@ -0,0 +1,6 @@ +CSRCS += lv_test_gauge.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_gauge +VPATH += :$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_gauge + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_gauge" diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge_1.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge_1.png new file mode 100644 index 0000000..1ef9a25 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_gauge/lv_test_gauge_1.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_img/flower_icon.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_img/flower_icon.png new file mode 100644 index 0000000..6213b92 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_img/flower_icon.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_img/img_flower_icon.c b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_img/img_flower_icon.c new file mode 100644 index 0000000..f2f970a --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_img/img_flower_icon.c @@ -0,0 +1,193 @@ +#include "lvgl/lvgl.h" + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +#ifndef LV_ATTRIBUTE_IMG_IMG_FLOWER_ICON +#define LV_ATTRIBUTE_IMG_IMG_FLOWER_ICON +#endif + +const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_IMG_IMG_FLOWER_ICON uint8_t img_flower_icon_map[] = { +#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8 + /*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 bit*/ + 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x9b, 0x57, 0x57, 0x9b, 0xdf, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x9b, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x7b, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0xdb, 0x97, 0x77, 0x97, 0x7b, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x77, 0x97, 0x77, 0x97, 0xbb, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x53, 0x0f, 0x0f, 0x0f, 0x33, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x33, 0x0f, 0x0f, 0x0f, 0x53, 0xdf, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0xdf, 0x53, 0x0f, 0x2f, 0x2f, 0x2f, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x33, 0x2f, 0x2f, 0x2f, 0x0f, 0x2f, 0xdf, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x77, 0x0f, 0x2f, 0x2f, 0x2f, 0x2f, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x33, 0x2f, 0x2f, 0x2f, 0x0f, 0x53, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0xdf, 0x53, 0x2f, 0x2f, 0x2f, 0x2f, 0x33, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x33, 0x2f, 0x2f, 0x2f, 0x2f, 0x0f, 0xdf, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0xdf, 0x9b, 0x57, 0x33, 0x33, 0x33, 0x2f, 0x2f, 0x2f, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x33, 0x2f, 0x2f, 0x33, 0x33, 0x33, 0x57, 0x9b, 0xdf, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0x9b, 0x57, 0x37, 0x37, 0x37, 0x37, 0x37, 0x33, 0x33, 0x2f, 0x33, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x33, 0x2f, 0x2f, 0x33, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x9b, 0x1c, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x9b, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x33, 0x2f, 0x33, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x33, 0x2f, 0x33, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x7b, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x33, 0x2f, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x33, 0x33, 0x33, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0xbb, 0x1c, 0x1c, + 0x1c, 0x1c, 0x9b, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x33, 0x33, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x33, 0x33, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x7b, 0x1c, 0x1c, + 0x1c, 0x1c, 0x57, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x33, 0x37, 0x37, 0x77, 0x96, 0x96, 0x77, 0x37, 0x33, 0x33, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x57, 0x1c, 0x1c, + 0x1c, 0x1c, 0x57, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x92, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xb6, 0x33, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x57, 0xdf, 0x1c, + 0x1c, 0x1c, 0x77, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0xd5, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xd5, 0x57, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x57, 0x1c, 0x1c, + 0x1c, 0x1c, 0x77, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0xd5, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xd5, 0x57, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x57, 0x1c, 0x1c, + 0x1c, 0x9b, 0x0f, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x96, 0xf4, 0xf4, 0xf4, 0xf4, 0xfd, 0xfd, 0xfd, 0xfd, 0xf8, 0xf4, 0xf4, 0xf4, 0x96, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x33, 0x77, 0x1c, + 0x1c, 0x2f, 0x2f, 0x33, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0xf5, 0xf4, 0xf4, 0xf4, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xf8, 0xf4, 0xf4, 0xd5, 0x57, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x33, 0x2f, 0x2f, 0xbb, + 0x9b, 0x0f, 0x2f, 0x2f, 0x33, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x57, 0xf4, 0xf4, 0xf4, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xf4, 0xf4, 0xf4, 0x77, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x33, 0x2f, 0x2f, 0x0f, 0x77, + 0x77, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x33, 0x33, 0x33, 0x37, 0x37, 0x37, 0x77, 0xf4, 0xf4, 0xf4, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xf8, 0xf4, 0xf4, 0x77, 0x37, 0x37, 0x37, 0x33, 0x33, 0x33, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x53, + 0x77, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0x33, 0x33, 0x33, 0x33, 0x33, 0x37, 0x77, 0xf4, 0xf4, 0xf4, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xf8, 0xf4, 0xf4, 0x77, 0x37, 0x33, 0x33, 0x33, 0x33, 0x33, 0x2f, 0x2f, 0x2f, 0x2f, 0x0f, 0x53, + 0xbb, 0x0f, 0x2f, 0x2f, 0x33, 0x33, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x57, 0xf4, 0xf4, 0xf4, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xf4, 0xf4, 0xf4, 0x77, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x33, 0x33, 0x2f, 0x2f, 0x0f, 0x77, + 0x1c, 0x2f, 0x2f, 0x33, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0xf5, 0xf4, 0xf4, 0xf4, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xfd, 0xf8, 0xf4, 0xf4, 0xd5, 0x57, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x33, 0x2f, 0x2f, 0xbb, + 0x1c, 0x9b, 0x33, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x96, 0xf4, 0xf4, 0xf4, 0xf8, 0xfd, 0xfd, 0xfd, 0xfd, 0xf8, 0xf4, 0xf4, 0xf4, 0x96, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x33, 0x97, 0x1c, + 0x1c, 0x1c, 0x57, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0xb5, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xd5, 0x57, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x57, 0x1c, 0x1c, + 0x1c, 0x1c, 0x57, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x57, 0xb6, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xd5, 0x57, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x57, 0x1c, 0x1c, + 0x1c, 0x1c, 0x57, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x72, 0xd5, 0xf4, 0xf4, 0xf4, 0xf4, 0xd5, 0x92, 0x53, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x57, 0xdf, 0x1c, + 0x1c, 0x1c, 0x57, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x33, 0x37, 0x57, 0x57, 0x77, 0x77, 0x57, 0x57, 0x37, 0x33, 0x33, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x57, 0x1c, 0x1c, + 0x1c, 0x1c, 0x9b, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x33, 0x33, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x33, 0x33, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x7b, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x33, 0x2f, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x33, 0x33, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0xbb, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0xbb, 0x33, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x33, 0x2f, 0x33, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x33, 0x2f, 0x33, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x7b, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0xbb, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x33, 0x2f, 0x2f, 0x33, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x33, 0x2f, 0x2f, 0x33, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x7b, 0x1c, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x9b, 0x57, 0x37, 0x33, 0x33, 0x2f, 0x2f, 0x2f, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x33, 0x2f, 0x2f, 0x33, 0x33, 0x37, 0x57, 0x7b, 0xdf, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0xdf, 0x53, 0x0f, 0x2f, 0x2f, 0x2f, 0x33, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x33, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0xdf, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x77, 0x0f, 0x2f, 0x2f, 0x2f, 0x2f, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x33, 0x2f, 0x2f, 0x2f, 0x2f, 0x53, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0xdf, 0x53, 0x2f, 0x2f, 0x2f, 0x2f, 0x33, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x33, 0x2f, 0x2f, 0x2f, 0x2f, 0x2f, 0xdf, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0xdf, 0x53, 0x2f, 0x2f, 0x0f, 0x33, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x33, 0x0f, 0x0f, 0x2f, 0x53, 0xdf, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0xbb, 0x77, 0x77, 0x77, 0x7b, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x37, 0x77, 0x77, 0x77, 0x77, 0x9b, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x9b, 0x57, 0x37, 0x37, 0x37, 0x37, 0x37, 0x9b, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0xdf, 0x9b, 0x77, 0x77, 0x9b, 0xbf, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, +#endif +#if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP == 0 + /*Pixel format: Red: 5 bit, Green: 6 bit, Blue: 5 bit*/ + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0x1f, 0x7e, 0x7f, 0x55, 0x7f, 0x55, 0xff, 0x75, 0x3f, 0xc7, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0x1f, 0x7e, 0xbe, 0x1c, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x1c, 0xdf, 0x6d, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0x7d, 0xb6, 0x3b, 0x7d, 0xdb, 0x64, 0x7c, 0x85, 0xbf, 0x65, 0xbe, 0x1c, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0x9e, 0x1c, 0x7e, 0x55, 0x7c, 0x7d, 0xdb, 0x6c, 0x1b, 0x75, 0x5d, 0xb6, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0x3a, 0x4c, 0x18, 0x0b, 0x18, 0x13, 0x18, 0x13, 0xdb, 0x13, 0xbe, 0x1c, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbf, 0x24, 0xdb, 0x13, 0x18, 0x13, 0x18, 0x13, 0xf7, 0x0a, 0xf9, 0x3b, 0xde, 0xc6, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xfe, 0xce, 0xf9, 0x3b, 0x18, 0x0b, 0x38, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x9e, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xde, 0x24, 0x7d, 0x24, 0x79, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x18, 0x13, 0x78, 0x23, 0xfe, 0xce, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xdb, 0x6c, 0xf8, 0x0a, 0x38, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x79, 0x1b, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xde, 0x24, 0x9a, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x18, 0x13, 0x19, 0x44, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0x9e, 0xb6, 0x1a, 0x34, 0x59, 0x13, 0x38, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x99, 0x1b, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xdf, 0x24, 0xba, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x58, 0x1b, 0x59, 0x13, 0xde, 0xbe, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xff, 0xbe, 0x5f, 0x8e, 0x5e, 0x55, 0x7d, 0x24, 0x5c, 0x24, 0xfb, 0x1b, 0x79, 0x1b, 0x38, 0x1b, 0x59, 0x1b, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xde, 0x24, 0xbe, 0x24, 0x9a, 0x1b, 0x18, 0x13, 0x79, 0x1b, 0xfb, 0x1b, 0x3c, 0x24, 0x5d, 0x24, 0x3e, 0x4d, 0x3f, 0x86, 0xff, 0xb6, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0x3f, 0x86, 0xfe, 0x34, 0x9e, 0x1c, 0xbe, 0x1c, 0xde, 0x24, 0xdf, 0x24, 0xdf, 0x24, 0x7d, 0x24, 0xba, 0x1b, 0x38, 0x1b, 0x7d, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xdf, 0x24, 0x5d, 0x24, 0x59, 0x1b, 0x99, 0x1b, 0x5d, 0x24, 0xde, 0x24, 0xdf, 0x24, 0xdf, 0x24, 0xbe, 0x1c, 0x9e, 0x1c, 0xfe, 0x34, 0x1f, 0x7e, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0x3f, 0x8e, 0xbe, 0x24, 0xbe, 0x1c, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xdf, 0x24, 0x9e, 0x24, 0x99, 0x1b, 0xdb, 0x1b, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xdf, 0x24, 0xdb, 0x1b, 0x99, 0x1b, 0x7d, 0x24, 0xde, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xdf, 0x75, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xde, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xdf, 0x24, 0x7d, 0x24, 0x79, 0x1b, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xde, 0x24, 0x9d, 0x24, 0xda, 0x1b, 0x5c, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xde, 0x2c, 0x9f, 0x9e, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0x1f, 0x7e, 0x9e, 0x1c, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xde, 0x24, 0x5c, 0x24, 0x1c, 0x1c, 0xde, 0x24, 0xbe, 0x24, 0xbf, 0x1c, 0xbf, 0x1c, 0xbf, 0x1c, 0xbf, 0x1c, 0xbf, 0x24, 0xdf, 0x24, 0x3c, 0x24, 0x3c, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0x9f, 0x5d, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0x5f, 0x45, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0x1c, 0x1c, 0xbf, 0x1c, 0xbe, 0x24, 0xd6, 0x5c, 0xd2, 0x7c, 0xd2, 0x84, 0xd6, 0x64, 0xdd, 0x34, 0x9f, 0x14, 0x5d, 0x1c, 0x9e, 0x24, 0xde, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0x5f, 0x4d, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0x1f, 0x3d, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbf, 0x24, 0x90, 0x84, 0xc4, 0xe4, 0xc2, 0xf4, 0xc1, 0xfc, 0xc1, 0xfc, 0xc2, 0xf4, 0xc4, 0xe4, 0x8e, 0x94, 0x9c, 0x2c, 0xbf, 0x1c, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0x3f, 0x45, 0x1f, 0xc7, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0x9f, 0x5d, 0xbe, 0x1c, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbd, 0x2c, 0xc8, 0xc4, 0xc1, 0xfc, 0xc0, 0xfc, 0xc0, 0xfc, 0xc0, 0xfc, 0xc0, 0xfc, 0xc0, 0xfc, 0xc0, 0xfc, 0xc0, 0xfc, 0xc8, 0xcc, 0xba, 0x44, 0xbf, 0x1c, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0x5f, 0x4d, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0x5d, 0x5d, 0xbe, 0x1c, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbf, 0x24, 0xc8, 0xc4, 0xc0, 0xfc, 0xc0, 0xfc, 0xc0, 0xfc, 0xc0, 0xfc, 0x01, 0xfd, 0x21, 0xfd, 0xc0, 0xfc, 0xc0, 0xfc, 0xc0, 0xfc, 0xc0, 0xfc, 0xca, 0xbc, 0xbb, 0x3c, 0xbf, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x1c, 0x5e, 0x55, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0x9c, 0x8d, 0x59, 0x13, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbf, 0x1c, 0xd2, 0x7c, 0xc1, 0xfc, 0xc0, 0xfc, 0xc0, 0xfc, 0x82, 0xfd, 0x06, 0xff, 0x68, 0xff, 0x68, 0xff, 0x27, 0xff, 0xc3, 0xfd, 0xc0, 0xfc, 0xc0, 0xfc, 0xc0, 0xfc, 0xd2, 0x84, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xdb, 0x1b, 0xda, 0x6c, 0xe0, 0x07, + 0xe0, 0x07, 0x38, 0x13, 0x38, 0x1b, 0xda, 0x1b, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbf, 0x1c, 0xc5, 0xe4, 0xc0, 0xfc, 0xc0, 0xfc, 0x62, 0xfd, 0x68, 0xff, 0x67, 0xff, 0x67, 0xff, 0x67, 0xff, 0x67, 0xff, 0x47, 0xff, 0xe3, 0xfd, 0xa0, 0xfc, 0xc0, 0xfc, 0xc6, 0xd4, 0xba, 0x44, 0xbf, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0x3c, 0x24, 0x38, 0x13, 0x98, 0x2b, 0x3d, 0xae, + 0xbc, 0x95, 0x18, 0x13, 0x38, 0x1b, 0x38, 0x1b, 0xda, 0x1b, 0x9e, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbf, 0x1c, 0xd9, 0x4c, 0xc2, 0xf4, 0xc0, 0xfc, 0xc0, 0xfc, 0xe6, 0xfe, 0x67, 0xff, 0x67, 0xff, 0x67, 0xff, 0x67, 0xff, 0x67, 0xff, 0x68, 0xff, 0xc6, 0xfe, 0x21, 0xfd, 0xa0, 0xfc, 0xc0, 0xfc, 0xd8, 0x54, 0xbf, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0x9e, 0x24, 0x1c, 0x1c, 0x38, 0x1b, 0x38, 0x1b, 0x18, 0x0b, 0xfb, 0x6c, + 0xdb, 0x64, 0x38, 0x13, 0x38, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x58, 0x1b, 0xda, 0x1b, 0x3c, 0x24, 0x7d, 0x24, 0x9e, 0x24, 0xbe, 0x24, 0xbf, 0x1c, 0xd5, 0x6c, 0xc2, 0xf4, 0xc0, 0xfc, 0xe0, 0xfc, 0x68, 0xff, 0x67, 0xff, 0x67, 0xff, 0x67, 0xff, 0x67, 0xff, 0x67, 0xff, 0x67, 0xff, 0x27, 0xff, 0x82, 0xfd, 0xa0, 0xfc, 0xc0, 0xfc, 0xd5, 0x64, 0xbf, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0x9d, 0x24, 0x5c, 0x24, 0xfb, 0x1b, 0x79, 0x1b, 0x18, 0x13, 0x38, 0x1b, 0x38, 0x1b, 0x18, 0x13, 0x19, 0x44, + 0xdb, 0x64, 0x38, 0x13, 0x38, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x79, 0x1b, 0x9a, 0x1b, 0xfb, 0x1b, 0x1c, 0x1c, 0x5c, 0x24, 0x7d, 0x24, 0x9f, 0x1c, 0xb5, 0x6c, 0xc2, 0xf4, 0xc0, 0xfc, 0xe0, 0xfc, 0x67, 0xff, 0x67, 0xff, 0x67, 0xff, 0x67, 0xff, 0x67, 0xff, 0x67, 0xff, 0x67, 0xff, 0x27, 0xff, 0x82, 0xfd, 0xa0, 0xfc, 0xc0, 0xfc, 0xb5, 0x64, 0xbe, 0x24, 0x7d, 0x24, 0x5c, 0x24, 0x1b, 0x1c, 0xdb, 0x1b, 0x9a, 0x1b, 0x79, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x18, 0x13, 0x19, 0x44, + 0xdc, 0x95, 0x18, 0x13, 0x38, 0x1b, 0x58, 0x1b, 0xda, 0x1b, 0x9d, 0x24, 0xdf, 0x24, 0xdf, 0x24, 0xdf, 0x24, 0xde, 0x24, 0xde, 0x24, 0xbf, 0x24, 0xd9, 0x4c, 0xc2, 0xf4, 0xc0, 0xfc, 0xc0, 0xfc, 0xe6, 0xfe, 0x67, 0xff, 0x67, 0xff, 0x67, 0xff, 0x67, 0xff, 0x67, 0xff, 0x68, 0xff, 0xc6, 0xfe, 0x21, 0xfd, 0xa0, 0xfc, 0xc0, 0xfc, 0xd8, 0x54, 0xbf, 0x24, 0xde, 0x24, 0xde, 0x24, 0xdf, 0x24, 0xdf, 0x24, 0xdf, 0x24, 0x9e, 0x24, 0xdb, 0x1b, 0x58, 0x1b, 0x38, 0x1b, 0x18, 0x13, 0xfb, 0x6c, + 0xe0, 0x07, 0x58, 0x1b, 0x38, 0x13, 0xfb, 0x1b, 0xde, 0x24, 0xde, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbf, 0x24, 0xc6, 0xdc, 0xc0, 0xfc, 0xc0, 0xfc, 0x82, 0xfd, 0x27, 0xff, 0x88, 0xff, 0x67, 0xff, 0x67, 0xff, 0x68, 0xff, 0x47, 0xff, 0xc3, 0xfd, 0xc0, 0xfc, 0xc0, 0xfc, 0xc7, 0xcc, 0xbb, 0x3c, 0xbf, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xde, 0x24, 0xbe, 0x24, 0x1b, 0x1c, 0x38, 0x13, 0x98, 0x23, 0x5d, 0xb6, + 0xe0, 0x07, 0xbc, 0x95, 0x99, 0x1b, 0xbe, 0x24, 0xde, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbf, 0x1c, 0xd3, 0x74, 0xc0, 0xfc, 0xc0, 0xfc, 0xa0, 0xfc, 0xa3, 0xfd, 0xa5, 0xfe, 0x06, 0xff, 0x06, 0xff, 0xa5, 0xfe, 0xc3, 0xfd, 0xe0, 0xfc, 0xc0, 0xfc, 0xc0, 0xfc, 0xd2, 0x7c, 0xbe, 0x2c, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xde, 0x24, 0xbe, 0x24, 0xfb, 0x23, 0x3b, 0x7d, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0x1d, 0x55, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xcc, 0xac, 0xc0, 0xfc, 0xc0, 0xfc, 0xa0, 0xfc, 0x01, 0xfd, 0x62, 0xfd, 0x62, 0xfd, 0x21, 0xfd, 0xa0, 0xfc, 0xc0, 0xfc, 0xc0, 0xfc, 0xca, 0xb4, 0xbc, 0x3c, 0xbf, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0x3e, 0x4d, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0x7f, 0x55, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbf, 0x24, 0xbc, 0x34, 0xcd, 0xa4, 0xc0, 0xfc, 0xc0, 0xfc, 0xc0, 0xfc, 0xa0, 0xfc, 0xa0, 0xfc, 0xc0, 0xfc, 0xc0, 0xfc, 0xc0, 0xfc, 0xcb, 0xb4, 0xba, 0x44, 0xbf, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0x7f, 0x55, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0x1e, 0x3d, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbf, 0x24, 0x9c, 0x34, 0x73, 0x6c, 0xc9, 0xbc, 0xc2, 0xf4, 0xc0, 0xfc, 0xc0, 0xfc, 0xc1, 0xfc, 0xc8, 0xc4, 0x92, 0x7c, 0x9b, 0x34, 0xdf, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0x3f, 0x45, 0x3f, 0xcf, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0x5f, 0x4d, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xde, 0x24, 0xfb, 0x1b, 0xbe, 0x24, 0xbb, 0x3c, 0xb9, 0x4c, 0xb7, 0x5c, 0xb7, 0x5c, 0xb8, 0x4c, 0xdb, 0x3c, 0x9d, 0x24, 0x5d, 0x1c, 0x9e, 0x24, 0xde, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0x5f, 0x4d, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xff, 0x7d, 0x9e, 0x1c, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xdf, 0x24, 0x1b, 0x1c, 0x3c, 0x24, 0xbe, 0x24, 0xbf, 0x24, 0xbf, 0x24, 0xbf, 0x24, 0xbf, 0x24, 0xbf, 0x24, 0xbf, 0x24, 0xdf, 0x24, 0x3c, 0x1c, 0x3c, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x1c, 0x9f, 0x5d, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xbe, 0x1c, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xdf, 0x24, 0x7d, 0x24, 0x79, 0x1b, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xde, 0x24, 0x9e, 0x24, 0xba, 0x1b, 0x5d, 0x24, 0xde, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xfe, 0x2c, 0x9f, 0x9e, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0x7f, 0x96, 0x9e, 0x1c, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xde, 0x24, 0x9e, 0x24, 0x59, 0x1b, 0xfb, 0x1b, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xdf, 0x24, 0xfb, 0x1b, 0x79, 0x1b, 0x7d, 0x24, 0xde, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbf, 0x6d, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0x7f, 0x96, 0xde, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xdf, 0x24, 0x7d, 0x24, 0x79, 0x1b, 0x18, 0x13, 0x7d, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xdf, 0x24, 0x5d, 0x24, 0x79, 0x1b, 0x79, 0x1b, 0x7d, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xde, 0x24, 0xdf, 0x75, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0x3f, 0x8e, 0x3e, 0x4d, 0x9e, 0x24, 0x5d, 0x24, 0xdb, 0x1b, 0x58, 0x1b, 0x38, 0x1b, 0x59, 0x1b, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xde, 0x24, 0xbe, 0x24, 0x9a, 0x1b, 0x38, 0x1b, 0x58, 0x1b, 0xdb, 0x1b, 0x7d, 0x24, 0xbe, 0x24, 0x1e, 0x3d, 0xff, 0x75, 0x3f, 0xcf, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xbe, 0xc6, 0xd9, 0x33, 0x18, 0x13, 0x38, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x9a, 0x1b, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xdf, 0x24, 0xba, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x18, 0x13, 0xde, 0xce, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xfb, 0x6c, 0x18, 0x13, 0x38, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x79, 0x1b, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0x9a, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x38, 0x13, 0x19, 0x3c, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xde, 0xc6, 0x19, 0x44, 0x38, 0x13, 0x38, 0x13, 0x38, 0x1b, 0x38, 0x1b, 0x9e, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xde, 0x24, 0x7d, 0x24, 0x79, 0x1b, 0x38, 0x1b, 0x38, 0x13, 0x18, 0x13, 0x99, 0x2b, 0xde, 0xce, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0x9e, 0xbe, 0x5a, 0x4c, 0x78, 0x23, 0x38, 0x13, 0x17, 0x13, 0xfb, 0x1b, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xde, 0x24, 0xfb, 0x1b, 0x38, 0x13, 0x18, 0x13, 0x78, 0x23, 0xf9, 0x3b, 0x9d, 0xbe, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xfc, 0x9d, 0xdb, 0x6c, 0x9a, 0x5c, 0x1b, 0x6d, 0xbf, 0x65, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0x7f, 0x55, 0x3c, 0x6d, 0x9a, 0x5c, 0xdb, 0x64, 0xbc, 0x95, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0x1f, 0x7e, 0x1e, 0x3d, 0x9e, 0x1c, 0xbe, 0x1c, 0xbe, 0x1c, 0xbe, 0x1c, 0xfe, 0x34, 0xff, 0x75, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xff, 0xbe, 0x3f, 0x86, 0x9f, 0x5d, 0x7f, 0x55, 0xff, 0x7d, 0xdf, 0xb6, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, +#endif +#if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP != 0 + /*Pixel format: Red: 5 bit, Green: 6 bit, Blue: 5 bit BUT the 2 bytes are swapped*/ + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x7e, 0x1f, 0x55, 0x7f, 0x55, 0x7f, 0x75, 0xff, 0xc7, 0x3f, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x7e, 0x1f, 0x1c, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x1c, 0xbe, 0x6d, 0xdf, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0xb6, 0x7d, 0x7d, 0x3b, 0x64, 0xdb, 0x85, 0x7c, 0x65, 0xbf, 0x1c, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x1c, 0x9e, 0x55, 0x7e, 0x7d, 0x7c, 0x6c, 0xdb, 0x75, 0x1b, 0xb6, 0x5d, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x4c, 0x3a, 0x0b, 0x18, 0x13, 0x18, 0x13, 0x18, 0x13, 0xdb, 0x1c, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbf, 0x13, 0xdb, 0x13, 0x18, 0x13, 0x18, 0x0a, 0xf7, 0x3b, 0xf9, 0xc6, 0xde, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0xce, 0xfe, 0x3b, 0xf9, 0x0b, 0x18, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x38, 0x24, 0x9e, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xde, 0x24, 0x7d, 0x1b, 0x79, 0x1b, 0x38, 0x1b, 0x38, 0x13, 0x18, 0x23, 0x78, 0xce, 0xfe, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x6c, 0xdb, 0x0a, 0xf8, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x79, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xde, 0x1b, 0x9a, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x38, 0x13, 0x18, 0x44, 0x19, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0xb6, 0x9e, 0x34, 0x1a, 0x13, 0x59, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x99, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xdf, 0x1b, 0xba, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x58, 0x13, 0x59, 0xbe, 0xde, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0xbe, 0xff, 0x8e, 0x5f, 0x55, 0x5e, 0x24, 0x7d, 0x24, 0x5c, 0x1b, 0xfb, 0x1b, 0x79, 0x1b, 0x38, 0x1b, 0x59, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xde, 0x24, 0xbe, 0x1b, 0x9a, 0x13, 0x18, 0x1b, 0x79, 0x1b, 0xfb, 0x24, 0x3c, 0x24, 0x5d, 0x4d, 0x3e, 0x86, 0x3f, 0xb6, 0xff, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x86, 0x3f, 0x34, 0xfe, 0x1c, 0x9e, 0x1c, 0xbe, 0x24, 0xde, 0x24, 0xdf, 0x24, 0xdf, 0x24, 0x7d, 0x1b, 0xba, 0x1b, 0x38, 0x24, 0x7d, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xdf, 0x24, 0x5d, 0x1b, 0x59, 0x1b, 0x99, 0x24, 0x5d, 0x24, 0xde, 0x24, 0xdf, 0x24, 0xdf, 0x1c, 0xbe, 0x1c, 0x9e, 0x34, 0xfe, 0x7e, 0x1f, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x8e, 0x3f, 0x24, 0xbe, 0x1c, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xdf, 0x24, 0x9e, 0x1b, 0x99, 0x1b, 0xdb, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xdf, 0x1b, 0xdb, 0x1b, 0x99, 0x24, 0x7d, 0x24, 0xde, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x75, 0xdf, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x24, 0xde, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xdf, 0x24, 0x7d, 0x1b, 0x79, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xde, 0x24, 0x9d, 0x1b, 0xda, 0x24, 0x5c, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x2c, 0xde, 0x9e, 0x9f, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x7e, 0x1f, 0x1c, 0x9e, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xde, 0x24, 0x5c, 0x1c, 0x1c, 0x24, 0xde, 0x24, 0xbe, 0x1c, 0xbf, 0x1c, 0xbf, 0x1c, 0xbf, 0x1c, 0xbf, 0x24, 0xbf, 0x24, 0xdf, 0x24, 0x3c, 0x24, 0x3c, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x5d, 0x9f, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x45, 0x5f, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x1c, 0x1c, 0x1c, 0xbf, 0x24, 0xbe, 0x5c, 0xd6, 0x7c, 0xd2, 0x84, 0xd2, 0x64, 0xd6, 0x34, 0xdd, 0x14, 0x9f, 0x1c, 0x5d, 0x24, 0x9e, 0x24, 0xde, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x4d, 0x5f, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x3d, 0x1f, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbf, 0x84, 0x90, 0xe4, 0xc4, 0xf4, 0xc2, 0xfc, 0xc1, 0xfc, 0xc1, 0xf4, 0xc2, 0xe4, 0xc4, 0x94, 0x8e, 0x2c, 0x9c, 0x1c, 0xbf, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x45, 0x3f, 0xc7, 0x1f, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x5d, 0x9f, 0x1c, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x2c, 0xbd, 0xc4, 0xc8, 0xfc, 0xc1, 0xfc, 0xc0, 0xfc, 0xc0, 0xfc, 0xc0, 0xfc, 0xc0, 0xfc, 0xc0, 0xfc, 0xc0, 0xfc, 0xc0, 0xcc, 0xc8, 0x44, 0xba, 0x1c, 0xbf, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x4d, 0x5f, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x5d, 0x5d, 0x1c, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbf, 0xc4, 0xc8, 0xfc, 0xc0, 0xfc, 0xc0, 0xfc, 0xc0, 0xfc, 0xc0, 0xfd, 0x01, 0xfd, 0x21, 0xfc, 0xc0, 0xfc, 0xc0, 0xfc, 0xc0, 0xfc, 0xc0, 0xbc, 0xca, 0x3c, 0xbb, 0x24, 0xbf, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x1c, 0xbe, 0x55, 0x5e, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x8d, 0x9c, 0x13, 0x59, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x1c, 0xbf, 0x7c, 0xd2, 0xfc, 0xc1, 0xfc, 0xc0, 0xfc, 0xc0, 0xfd, 0x82, 0xff, 0x06, 0xff, 0x68, 0xff, 0x68, 0xff, 0x27, 0xfd, 0xc3, 0xfc, 0xc0, 0xfc, 0xc0, 0xfc, 0xc0, 0x84, 0xd2, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x1b, 0xdb, 0x6c, 0xda, 0x07, 0xe0, + 0x07, 0xe0, 0x13, 0x38, 0x1b, 0x38, 0x1b, 0xda, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x1c, 0xbf, 0xe4, 0xc5, 0xfc, 0xc0, 0xfc, 0xc0, 0xfd, 0x62, 0xff, 0x68, 0xff, 0x67, 0xff, 0x67, 0xff, 0x67, 0xff, 0x67, 0xff, 0x47, 0xfd, 0xe3, 0xfc, 0xa0, 0xfc, 0xc0, 0xd4, 0xc6, 0x44, 0xba, 0x24, 0xbf, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0x3c, 0x13, 0x38, 0x2b, 0x98, 0xae, 0x3d, + 0x95, 0xbc, 0x13, 0x18, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0xda, 0x24, 0x9e, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x1c, 0xbf, 0x4c, 0xd9, 0xf4, 0xc2, 0xfc, 0xc0, 0xfc, 0xc0, 0xfe, 0xe6, 0xff, 0x67, 0xff, 0x67, 0xff, 0x67, 0xff, 0x67, 0xff, 0x67, 0xff, 0x68, 0xfe, 0xc6, 0xfd, 0x21, 0xfc, 0xa0, 0xfc, 0xc0, 0x54, 0xd8, 0x24, 0xbf, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0x9e, 0x1c, 0x1c, 0x1b, 0x38, 0x1b, 0x38, 0x0b, 0x18, 0x6c, 0xfb, + 0x64, 0xdb, 0x13, 0x38, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x58, 0x1b, 0xda, 0x24, 0x3c, 0x24, 0x7d, 0x24, 0x9e, 0x24, 0xbe, 0x1c, 0xbf, 0x6c, 0xd5, 0xf4, 0xc2, 0xfc, 0xc0, 0xfc, 0xe0, 0xff, 0x68, 0xff, 0x67, 0xff, 0x67, 0xff, 0x67, 0xff, 0x67, 0xff, 0x67, 0xff, 0x67, 0xff, 0x27, 0xfd, 0x82, 0xfc, 0xa0, 0xfc, 0xc0, 0x64, 0xd5, 0x24, 0xbf, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0x9d, 0x24, 0x5c, 0x1b, 0xfb, 0x1b, 0x79, 0x13, 0x18, 0x1b, 0x38, 0x1b, 0x38, 0x13, 0x18, 0x44, 0x19, + 0x64, 0xdb, 0x13, 0x38, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x79, 0x1b, 0x9a, 0x1b, 0xfb, 0x1c, 0x1c, 0x24, 0x5c, 0x24, 0x7d, 0x1c, 0x9f, 0x6c, 0xb5, 0xf4, 0xc2, 0xfc, 0xc0, 0xfc, 0xe0, 0xff, 0x67, 0xff, 0x67, 0xff, 0x67, 0xff, 0x67, 0xff, 0x67, 0xff, 0x67, 0xff, 0x67, 0xff, 0x27, 0xfd, 0x82, 0xfc, 0xa0, 0xfc, 0xc0, 0x64, 0xb5, 0x24, 0xbe, 0x24, 0x7d, 0x24, 0x5c, 0x1c, 0x1b, 0x1b, 0xdb, 0x1b, 0x9a, 0x1b, 0x79, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x38, 0x13, 0x18, 0x44, 0x19, + 0x95, 0xdc, 0x13, 0x18, 0x1b, 0x38, 0x1b, 0x58, 0x1b, 0xda, 0x24, 0x9d, 0x24, 0xdf, 0x24, 0xdf, 0x24, 0xdf, 0x24, 0xde, 0x24, 0xde, 0x24, 0xbf, 0x4c, 0xd9, 0xf4, 0xc2, 0xfc, 0xc0, 0xfc, 0xc0, 0xfe, 0xe6, 0xff, 0x67, 0xff, 0x67, 0xff, 0x67, 0xff, 0x67, 0xff, 0x67, 0xff, 0x68, 0xfe, 0xc6, 0xfd, 0x21, 0xfc, 0xa0, 0xfc, 0xc0, 0x54, 0xd8, 0x24, 0xbf, 0x24, 0xde, 0x24, 0xde, 0x24, 0xdf, 0x24, 0xdf, 0x24, 0xdf, 0x24, 0x9e, 0x1b, 0xdb, 0x1b, 0x58, 0x1b, 0x38, 0x13, 0x18, 0x6c, 0xfb, + 0x07, 0xe0, 0x1b, 0x58, 0x13, 0x38, 0x1b, 0xfb, 0x24, 0xde, 0x24, 0xde, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbf, 0xdc, 0xc6, 0xfc, 0xc0, 0xfc, 0xc0, 0xfd, 0x82, 0xff, 0x27, 0xff, 0x88, 0xff, 0x67, 0xff, 0x67, 0xff, 0x68, 0xff, 0x47, 0xfd, 0xc3, 0xfc, 0xc0, 0xfc, 0xc0, 0xcc, 0xc7, 0x3c, 0xbb, 0x24, 0xbf, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xde, 0x24, 0xbe, 0x1c, 0x1b, 0x13, 0x38, 0x23, 0x98, 0xb6, 0x5d, + 0x07, 0xe0, 0x95, 0xbc, 0x1b, 0x99, 0x24, 0xbe, 0x24, 0xde, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x1c, 0xbf, 0x74, 0xd3, 0xfc, 0xc0, 0xfc, 0xc0, 0xfc, 0xa0, 0xfd, 0xa3, 0xfe, 0xa5, 0xff, 0x06, 0xff, 0x06, 0xfe, 0xa5, 0xfd, 0xc3, 0xfc, 0xe0, 0xfc, 0xc0, 0xfc, 0xc0, 0x7c, 0xd2, 0x2c, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xde, 0x24, 0xbe, 0x23, 0xfb, 0x7d, 0x3b, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x55, 0x1d, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0xac, 0xcc, 0xfc, 0xc0, 0xfc, 0xc0, 0xfc, 0xa0, 0xfd, 0x01, 0xfd, 0x62, 0xfd, 0x62, 0xfd, 0x21, 0xfc, 0xa0, 0xfc, 0xc0, 0xfc, 0xc0, 0xb4, 0xca, 0x3c, 0xbc, 0x24, 0xbf, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x4d, 0x3e, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x55, 0x7f, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbf, 0x34, 0xbc, 0xa4, 0xcd, 0xfc, 0xc0, 0xfc, 0xc0, 0xfc, 0xc0, 0xfc, 0xa0, 0xfc, 0xa0, 0xfc, 0xc0, 0xfc, 0xc0, 0xfc, 0xc0, 0xb4, 0xcb, 0x44, 0xba, 0x24, 0xbf, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x55, 0x7f, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x3d, 0x1e, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbf, 0x34, 0x9c, 0x6c, 0x73, 0xbc, 0xc9, 0xf4, 0xc2, 0xfc, 0xc0, 0xfc, 0xc0, 0xfc, 0xc1, 0xc4, 0xc8, 0x7c, 0x92, 0x34, 0x9b, 0x24, 0xdf, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x45, 0x3f, 0xcf, 0x3f, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x4d, 0x5f, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xde, 0x1b, 0xfb, 0x24, 0xbe, 0x3c, 0xbb, 0x4c, 0xb9, 0x5c, 0xb7, 0x5c, 0xb7, 0x4c, 0xb8, 0x3c, 0xdb, 0x24, 0x9d, 0x1c, 0x5d, 0x24, 0x9e, 0x24, 0xde, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x4d, 0x5f, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x7d, 0xff, 0x1c, 0x9e, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xdf, 0x1c, 0x1b, 0x24, 0x3c, 0x24, 0xbe, 0x24, 0xbf, 0x24, 0xbf, 0x24, 0xbf, 0x24, 0xbf, 0x24, 0xbf, 0x24, 0xbf, 0x24, 0xdf, 0x1c, 0x3c, 0x24, 0x3c, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x1c, 0xbe, 0x5d, 0x9f, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x1c, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xdf, 0x24, 0x7d, 0x1b, 0x79, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xde, 0x24, 0x9e, 0x1b, 0xba, 0x24, 0x5d, 0x24, 0xde, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x2c, 0xfe, 0x9e, 0x9f, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x96, 0x7f, 0x1c, 0x9e, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xde, 0x24, 0x9e, 0x1b, 0x59, 0x1b, 0xfb, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xdf, 0x1b, 0xfb, 0x1b, 0x79, 0x24, 0x7d, 0x24, 0xde, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x6d, 0xbf, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x96, 0x7f, 0x24, 0xde, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xdf, 0x24, 0x7d, 0x1b, 0x79, 0x13, 0x18, 0x24, 0x7d, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xdf, 0x24, 0x5d, 0x1b, 0x79, 0x1b, 0x79, 0x24, 0x7d, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xde, 0x75, 0xdf, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x8e, 0x3f, 0x4d, 0x3e, 0x24, 0x9e, 0x24, 0x5d, 0x1b, 0xdb, 0x1b, 0x58, 0x1b, 0x38, 0x1b, 0x59, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xde, 0x24, 0xbe, 0x1b, 0x9a, 0x1b, 0x38, 0x1b, 0x58, 0x1b, 0xdb, 0x24, 0x7d, 0x24, 0xbe, 0x3d, 0x1e, 0x75, 0xff, 0xcf, 0x3f, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0xc6, 0xbe, 0x33, 0xd9, 0x13, 0x18, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x9a, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xdf, 0x1b, 0xba, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x38, 0x13, 0x18, 0xce, 0xde, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x6c, 0xfb, 0x13, 0x18, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x79, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x1b, 0x9a, 0x1b, 0x38, 0x1b, 0x38, 0x1b, 0x38, 0x13, 0x38, 0x3c, 0x19, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0xc6, 0xde, 0x44, 0x19, 0x13, 0x38, 0x13, 0x38, 0x1b, 0x38, 0x1b, 0x38, 0x24, 0x9e, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xde, 0x24, 0x7d, 0x1b, 0x79, 0x1b, 0x38, 0x13, 0x38, 0x13, 0x18, 0x2b, 0x99, 0xce, 0xde, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0xbe, 0x9e, 0x4c, 0x5a, 0x23, 0x78, 0x13, 0x38, 0x13, 0x17, 0x1b, 0xfb, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xde, 0x1b, 0xfb, 0x13, 0x38, 0x13, 0x18, 0x23, 0x78, 0x3b, 0xf9, 0xbe, 0x9d, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x9d, 0xfc, 0x6c, 0xdb, 0x5c, 0x9a, 0x6d, 0x1b, 0x65, 0xbf, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x24, 0xbe, 0x55, 0x7f, 0x6d, 0x3c, 0x5c, 0x9a, 0x64, 0xdb, 0x95, 0xbc, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x7e, 0x1f, 0x3d, 0x1e, 0x1c, 0x9e, 0x1c, 0xbe, 0x1c, 0xbe, 0x1c, 0xbe, 0x34, 0xfe, 0x75, 0xff, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0xbe, 0xff, 0x86, 0x3f, 0x5d, 0x9f, 0x55, 0x7f, 0x7d, 0xff, 0xb6, 0xdf, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, +#endif +#if LV_COLOR_DEPTH == 32 + /*Pixel format: Fix 0xFF: 8 bit, Red: 8 bit, Green: 8 bit, Blue: 8 bit*/ + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xf8, 0xc1, 0x7c, 0xff, 0xf6, 0xad, 0x50, 0xff, 0xf6, 0xab, 0x4d, 0xff, 0xf8, 0xbd, 0x73, 0xff, 0xfc, 0xe3, 0xc2, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xf8, 0xbf, 0x77, 0xff, 0xf2, 0x93, 0x1a, 0xff, 0xf3, 0x94, 0x1d, 0xff, 0xf3, 0x95, 0x1f, 0xff, 0xf3, 0x95, 0x1f, 0xff, 0xf3, 0x94, 0x1d, 0xff, 0xf3, 0x93, 0x1b, 0xff, 0xf7, 0xb7, 0x67, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xeb, 0xcd, 0xb4, 0xff, 0xdb, 0xa6, 0x77, 0xff, 0xd6, 0x99, 0x64, 0xff, 0xdf, 0xac, 0x7d, 0xff, 0xf6, 0xb3, 0x5f, 0xff, 0xf3, 0x93, 0x1b, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x92, 0x18, 0xff, 0xf4, 0xad, 0x54, 0xff, 0xe2, 0xad, 0x7a, 0xff, 0xd5, 0x9a, 0x65, 0xff, 0xda, 0xa2, 0x73, 0xff, 0xea, 0xca, 0xaf, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xcd, 0x85, 0x46, 0xff, 0xbd, 0x5f, 0x0b, 0xff, 0xbe, 0x60, 0x0d, 0xff, 0xbd, 0x5f, 0x0e, 0xff, 0xd8, 0x79, 0x13, 0xff, 0xf2, 0x93, 0x1c, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf5, 0x96, 0x1d, 0xff, 0xda, 0x7a, 0x14, 0xff, 0xc0, 0x62, 0x0f, 0xff, 0xbe, 0x60, 0x0d, 0xff, 0xbc, 0x5b, 0x06, 0xff, 0xca, 0x7d, 0x39, 0xff, 0xef, 0xd8, 0xc4, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xf0, 0xdb, 0xc9, 0xff, 0xc9, 0x7c, 0x37, 0xff, 0xbd, 0x5f, 0x0c, 0xff, 0xc0, 0x65, 0x15, 0xff, 0xc0, 0x65, 0x15, 0xff, 0xc0, 0x65, 0x15, 0xff, 0xef, 0x92, 0x20, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf4, 0x97, 0x21, 0xff, 0xeb, 0x8e, 0x1f, 0xff, 0xca, 0x6e, 0x17, 0xff, 0xbf, 0x64, 0x15, 0xff, 0xc0, 0x65, 0x15, 0xff, 0xbe, 0x61, 0x0f, 0xff, 0xc3, 0x6b, 0x1e, 0xff, 0xf1, 0xdb, 0xc8, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xd5, 0x99, 0x65, 0xff, 0xbd, 0x5e, 0x0b, 0xff, 0xc0, 0x65, 0x15, 0xff, 0xc0, 0x65, 0x15, 0xff, 0xbf, 0x64, 0x15, 0xff, 0xc9, 0x6e, 0x18, 0xff, 0xf1, 0x94, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf4, 0x97, 0x22, 0xff, 0xce, 0x72, 0x19, 0xff, 0xbf, 0x64, 0x15, 0xff, 0xc0, 0x65, 0x15, 0xff, 0xc0, 0x65, 0x15, 0xff, 0xbe, 0x61, 0x10, 0xff, 0xcb, 0x80, 0x3e, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xf1, 0xd1, 0xb1, 0xff, 0xd1, 0x7f, 0x33, 0xff, 0xc5, 0x68, 0x12, 0xff, 0xc0, 0x65, 0x15, 0xff, 0xbf, 0x64, 0x15, 0xff, 0xbf, 0x64, 0x15, 0xff, 0xcc, 0x71, 0x18, 0xff, 0xf1, 0x94, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf5, 0x98, 0x22, 0xff, 0xd0, 0x74, 0x19, 0xff, 0xbf, 0x64, 0x15, 0xff, 0xbf, 0x64, 0x15, 0xff, 0xbf, 0x64, 0x15, 0xff, 0xc4, 0x69, 0x16, 0xff, 0xc6, 0x67, 0x10, 0xff, 0xf3, 0xd8, 0xbc, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xfc, 0xde, 0xb8, 0xff, 0xfa, 0xc7, 0x87, 0xff, 0xf2, 0xa8, 0x4e, 0xff, 0xe8, 0x8c, 0x20, 0xff, 0xe3, 0x87, 0x1d, 0xff, 0xda, 0x7e, 0x1b, 0xff, 0xca, 0x6e, 0x17, 0xff, 0xbf, 0x64, 0x15, 0xff, 0xc5, 0x6a, 0x16, 0xff, 0xf1, 0x94, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf4, 0x97, 0x21, 0xff, 0xf1, 0x94, 0x20, 0xff, 0xcd, 0x71, 0x18, 0xff, 0xbd, 0x62, 0x14, 0xff, 0xc8, 0x6c, 0x17, 0xff, 0xd6, 0x7b, 0x1b, 0xff, 0xe1, 0x84, 0x1d, 0xff, 0xe5, 0x88, 0x1d, 0xff, 0xf0, 0xa5, 0x4b, 0xff, 0xf9, 0xc5, 0x84, 0xff, 0xfb, 0xdc, 0xb4, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xf9, 0xc5, 0x83, 0xff, 0xf4, 0x9e, 0x32, 0xff, 0xf2, 0x91, 0x16, 0xff, 0xf3, 0x94, 0x1b, 0xff, 0xf4, 0x97, 0x21, 0xff, 0xf5, 0x98, 0x22, 0xff, 0xf5, 0x98, 0x22, 0xff, 0xea, 0x8d, 0x1f, 0xff, 0xce, 0x73, 0x18, 0xff, 0xbe, 0x63, 0x15, 0xff, 0xea, 0x8d, 0x1f, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf5, 0x98, 0x21, 0xff, 0xe6, 0x89, 0x1e, 0xff, 0xc5, 0x69, 0x16, 0xff, 0xcb, 0x70, 0x17, 0xff, 0xe5, 0x88, 0x1e, 0xff, 0xf4, 0x97, 0x21, 0xff, 0xf5, 0x98, 0x21, 0xff, 0xf5, 0x98, 0x21, 0xff, 0xf3, 0x94, 0x1c, 0xff, 0xf2, 0x91, 0x16, 0xff, 0xf4, 0x9c, 0x2e, 0xff, 0xf8, 0xc1, 0x7b, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xf9, 0xc5, 0x85, 0xff, 0xf3, 0x95, 0x1f, 0xff, 0xf3, 0x94, 0x1c, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf5, 0x98, 0x22, 0xff, 0xed, 0x90, 0x20, 0xff, 0xca, 0x6f, 0x17, 0xff, 0xd6, 0x7a, 0x1a, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf6, 0x99, 0x22, 0xff, 0xd6, 0x7a, 0x1b, 0xff, 0xcb, 0x70, 0x18, 0xff, 0xe8, 0x8c, 0x1e, 0xff, 0xf4, 0x97, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x95, 0x1e, 0xff, 0xf3, 0x95, 0x1f, 0xff, 0xf7, 0xba, 0x6d, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xf3, 0x97, 0x22, 0xff, 0xf3, 0x95, 0x1e, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf5, 0x98, 0x21, 0xff, 0xea, 0x8e, 0x1f, 0xff, 0xc8, 0x6d, 0x17, 0xff, 0xf0, 0x93, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf4, 0x97, 0x21, 0xff, 0xec, 0x8f, 0x20, 0xff, 0xd2, 0x77, 0x1a, 0xff, 0xe3, 0x87, 0x1d, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x95, 0x1f, 0xff, 0xf3, 0x9a, 0x29, 0xff, 0xfa, 0xcf, 0x99, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xf8, 0xc1, 0x7b, 0xff, 0xf2, 0x92, 0x18, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf4, 0x97, 0x21, 0xff, 0xe3, 0x87, 0x1d, 0xff, 0xdd, 0x81, 0x1c, 0xff, 0xf4, 0x97, 0x21, 0xff, 0xf4, 0x96, 0x20, 0xff, 0xf9, 0x96, 0x1b, 0xff, 0xfc, 0x96, 0x18, 0xff, 0xfd, 0x96, 0x18, 0xff, 0xfa, 0x96, 0x1b, 0xff, 0xf5, 0x96, 0x1f, 0xff, 0xf5, 0x98, 0x22, 0xff, 0xdf, 0x83, 0x1d, 0xff, 0xdf, 0x83, 0x1d, 0xff, 0xf2, 0x95, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x94, 0x1d, 0xff, 0xf6, 0xb1, 0x5a, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xf5, 0xa7, 0x44, 0xff, 0xf3, 0x94, 0x1e, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xdd, 0x80, 0x1b, 0xff, 0xf9, 0x93, 0x19, 0xff, 0xf2, 0x96, 0x22, 0xff, 0xb4, 0x97, 0x5b, 0xff, 0x90, 0x97, 0x7b, 0xff, 0x8e, 0x97, 0x7d, 0xff, 0xae, 0x97, 0x61, 0xff, 0xe7, 0x97, 0x2d, 0xff, 0xf8, 0x8f, 0x14, 0xff, 0xe5, 0x87, 0x1c, 0xff, 0xee, 0x92, 0x20, 0xff, 0xf4, 0x97, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x94, 0x1d, 0xff, 0xf5, 0xa7, 0x45, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xf5, 0xa1, 0x3a, 0xff, 0xf3, 0x95, 0x1e, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf4, 0x96, 0x20, 0xff, 0xf5, 0x94, 0x1e, 0xff, 0x7d, 0x8f, 0x83, 0xff, 0x20, 0x98, 0xe3, 0xff, 0x10, 0x98, 0xf1, 0xff, 0x0b, 0x98, 0xf5, 0xff, 0x0b, 0x98, 0xf5, 0xff, 0x0e, 0x98, 0xf2, 0xff, 0x20, 0x98, 0xe3, 0xff, 0x71, 0x91, 0x91, 0xff, 0xde, 0x90, 0x2c, 0xff, 0xfa, 0x96, 0x1b, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x95, 0x1e, 0xff, 0xf5, 0xa4, 0x3e, 0xff, 0xfc, 0xe2, 0xc0, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xf6, 0xb0, 0x57, 0xff, 0xf3, 0x94, 0x1c, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf4, 0x96, 0x20, 0xff, 0xeb, 0x96, 0x28, 0xff, 0x42, 0x98, 0xc4, 0xff, 0x05, 0x97, 0xfa, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x97, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x40, 0x97, 0xc5, 0xff, 0xce, 0x96, 0x44, 0xff, 0xf9, 0x96, 0x1c, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x94, 0x1d, 0xff, 0xf5, 0xa9, 0x49, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xec, 0xa9, 0x5a, 0xff, 0xf3, 0x94, 0x1c, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf8, 0x96, 0x1d, 0xff, 0x44, 0x98, 0xc1, 0xff, 0x02, 0x98, 0xfe, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x07, 0xa2, 0xff, 0xff, 0x09, 0xa5, 0xff, 0xff, 0x01, 0x9a, 0xff, 0xff, 0x00, 0x97, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x4d, 0x97, 0xb9, 0xff, 0xd8, 0x96, 0x3a, 0xff, 0xf6, 0x96, 0x1e, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x94, 0x1c, 0xff, 0xf3, 0xaa, 0x50, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0xe0, 0xb1, 0x89, 0xff, 0xc6, 0x67, 0x0f, 0xff, 0xf2, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xfb, 0x96, 0x1a, 0xff, 0x91, 0x97, 0x7c, 0xff, 0x06, 0x98, 0xf9, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x99, 0xff, 0xff, 0x10, 0xaf, 0xff, 0xff, 0x34, 0xe1, 0xff, 0xff, 0x3d, 0xee, 0xff, 0xff, 0x3d, 0xed, 0xff, 0xff, 0x36, 0xe4, 0xff, 0xff, 0x18, 0xb9, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x8f, 0x97, 0x7d, 0xff, 0xf1, 0x96, 0x23, 0xff, 0xf4, 0x96, 0x20, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf0, 0x93, 0x20, 0xff, 0xd7, 0x7a, 0x17, 0xff, 0xd4, 0x9a, 0x68, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0xbf, 0x63, 0x12, 0xff, 0xc1, 0x66, 0x15, 0xff, 0xd4, 0x78, 0x1a, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf4, 0x96, 0x20, 0xff, 0xf8, 0x96, 0x1c, 0xff, 0x25, 0x98, 0xde, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x0f, 0xae, 0xff, 0xff, 0x3d, 0xee, 0xff, 0xff, 0x3b, 0xec, 0xff, 0xff, 0x3b, 0xeb, 0xff, 0xff, 0x3b, 0xeb, 0xff, 0xff, 0x3c, 0xec, 0xff, 0xff, 0x3a, 0xe9, 0xff, 0xff, 0x1b, 0xbe, 0xff, 0xff, 0x00, 0x96, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x32, 0x97, 0xd0, 0xff, 0xd2, 0x96, 0x40, 0xff, 0xf6, 0x96, 0x1e, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf2, 0x95, 0x21, 0xff, 0xe1, 0x85, 0x1d, 0xff, 0xbf, 0x63, 0x12, 0xff, 0xc4, 0x70, 0x26, 0xff, 0xe7, 0xc6, 0xa8, 0xff, + 0xe1, 0xb4, 0x8d, 0xff, 0xbf, 0x62, 0x10, 0xff, 0xc0, 0x65, 0x15, 0xff, 0xc0, 0x66, 0x15, 0xff, 0xd3, 0x77, 0x1a, 0xff, 0xee, 0x91, 0x20, 0xff, 0xf1, 0x94, 0x20, 0xff, 0xf2, 0x95, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf8, 0x96, 0x1c, 0xff, 0xc5, 0x97, 0x4c, 0xff, 0x12, 0x98, 0xef, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x31, 0xde, 0xff, 0xff, 0x3c, 0xec, 0xff, 0xff, 0x3b, 0xeb, 0xff, 0xff, 0x3b, 0xeb, 0xff, 0xff, 0x3b, 0xeb, 0xff, 0xff, 0x3b, 0xeb, 0xff, 0xff, 0x3d, 0xee, 0xff, 0xff, 0x2e, 0xd8, 0xff, 0xff, 0x0b, 0xa6, 0xff, 0xff, 0x00, 0x96, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0xbe, 0x97, 0x52, 0xff, 0xf7, 0x96, 0x1d, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf2, 0x95, 0x21, 0xff, 0xf1, 0x94, 0x20, 0xff, 0xee, 0x91, 0x20, 0xff, 0xdd, 0x81, 0x1c, 0xff, 0xc0, 0x65, 0x15, 0xff, 0xc0, 0x65, 0x15, 0xff, 0xbd, 0x5f, 0x0b, 0xff, 0xd7, 0x9d, 0x69, 0xff, + 0xd5, 0x98, 0x62, 0xff, 0xbf, 0x63, 0x12, 0xff, 0xc0, 0x65, 0x15, 0xff, 0xc0, 0x65, 0x15, 0xff, 0xbe, 0x63, 0x15, 0xff, 0xc2, 0x67, 0x16, 0xff, 0xd3, 0x77, 0x1a, 0xff, 0xdf, 0x84, 0x1d, 0xff, 0xe9, 0x8c, 0x1f, 0xff, 0xef, 0x92, 0x20, 0xff, 0xf2, 0x95, 0x21, 0xff, 0xfa, 0x96, 0x1a, 0xff, 0xa7, 0x97, 0x67, 0xff, 0x0e, 0x98, 0xf2, 0xff, 0x00, 0x98, 0xff, 0xff, 0x04, 0x9d, 0xff, 0xff, 0x3d, 0xed, 0xff, 0xff, 0x3b, 0xeb, 0xff, 0xff, 0x3b, 0xeb, 0xff, 0xff, 0x3b, 0xeb, 0xff, 0xff, 0x3b, 0xeb, 0xff, 0xff, 0x3b, 0xeb, 0xff, 0xff, 0x3c, 0xec, 0xff, 0xff, 0x36, 0xe3, 0xff, 0xff, 0x13, 0xb2, 0xff, 0xff, 0x00, 0x95, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0xac, 0x97, 0x61, 0xff, 0xf5, 0x96, 0x1f, 0xff, 0xf2, 0x95, 0x21, 0xff, 0xef, 0x93, 0x20, 0xff, 0xec, 0x8f, 0x1f, 0xff, 0xe4, 0x87, 0x1e, 0xff, 0xd7, 0x7b, 0x1a, 0xff, 0xc8, 0x6d, 0x17, 0xff, 0xbd, 0x62, 0x14, 0xff, 0xc0, 0x65, 0x15, 0xff, 0xc0, 0x65, 0x15, 0xff, 0xbf, 0x62, 0x11, 0xff, 0xcb, 0x80, 0x3d, 0xff, + 0xd6, 0x98, 0x63, 0xff, 0xbf, 0x63, 0x12, 0xff, 0xc0, 0x65, 0x15, 0xff, 0xc0, 0x65, 0x15, 0xff, 0xc1, 0x66, 0x15, 0xff, 0xc8, 0x6d, 0x17, 0xff, 0xce, 0x72, 0x18, 0xff, 0xd6, 0x7b, 0x1b, 0xff, 0xdd, 0x81, 0x1c, 0xff, 0xe3, 0x87, 0x1d, 0xff, 0xea, 0x8d, 0x1f, 0xff, 0xf6, 0x91, 0x19, 0xff, 0xa6, 0x96, 0x66, 0xff, 0x0e, 0x98, 0xf2, 0xff, 0x00, 0x98, 0xff, 0xff, 0x04, 0x9d, 0xff, 0xff, 0x3b, 0xec, 0xff, 0xff, 0x3b, 0xeb, 0xff, 0xff, 0x3b, 0xeb, 0xff, 0xff, 0x3b, 0xeb, 0xff, 0xff, 0x3b, 0xeb, 0xff, 0xff, 0x3b, 0xeb, 0xff, 0xff, 0x3c, 0xec, 0xff, 0xff, 0x36, 0xe3, 0xff, 0xff, 0x13, 0xb2, 0xff, 0xff, 0x00, 0x95, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0xab, 0x95, 0x62, 0xff, 0xf1, 0x93, 0x1f, 0xff, 0xeb, 0x8e, 0x1e, 0xff, 0xe3, 0x87, 0x1e, 0xff, 0xdc, 0x80, 0x1c, 0xff, 0xd5, 0x79, 0x1a, 0xff, 0xcd, 0x72, 0x18, 0xff, 0xc7, 0x6c, 0x17, 0xff, 0xc1, 0x66, 0x15, 0xff, 0xbf, 0x64, 0x15, 0xff, 0xc0, 0x65, 0x15, 0xff, 0xbf, 0x62, 0x10, 0xff, 0xcc, 0x82, 0x40, 0xff, + 0xe1, 0xb7, 0x91, 0xff, 0xbe, 0x60, 0x0e, 0xff, 0xc0, 0x65, 0x15, 0xff, 0xc2, 0x67, 0x16, 0xff, 0xd4, 0x79, 0x1a, 0xff, 0xec, 0x90, 0x20, 0xff, 0xf7, 0x9a, 0x22, 0xff, 0xf6, 0x99, 0x22, 0xff, 0xf5, 0x98, 0x21, 0xff, 0xf4, 0x97, 0x21, 0xff, 0xf4, 0x97, 0x21, 0xff, 0xf8, 0x96, 0x1d, 0xff, 0xc8, 0x97, 0x49, 0xff, 0x11, 0x98, 0xef, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x97, 0xff, 0xff, 0x30, 0xdb, 0xff, 0xff, 0x3c, 0xed, 0xff, 0xff, 0x3b, 0xeb, 0xff, 0xff, 0x3b, 0xeb, 0xff, 0xff, 0x3b, 0xeb, 0xff, 0xff, 0x3b, 0xeb, 0xff, 0xff, 0x3d, 0xee, 0xff, 0xff, 0x2e, 0xd8, 0xff, 0xff, 0x0a, 0xa5, 0xff, 0xff, 0x00, 0x96, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0xbf, 0x97, 0x51, 0xff, 0xf7, 0x96, 0x1d, 0xff, 0xf4, 0x97, 0x21, 0xff, 0xf4, 0x97, 0x21, 0xff, 0xf5, 0x98, 0x21, 0xff, 0xf6, 0x99, 0x22, 0xff, 0xf6, 0x99, 0x22, 0xff, 0xed, 0x90, 0x20, 0xff, 0xd6, 0x7a, 0x1b, 0xff, 0xc3, 0x68, 0x16, 0xff, 0xbf, 0x64, 0x15, 0xff, 0xbe, 0x60, 0x0e, 0xff, 0xd7, 0x9b, 0x68, 0xff, + 0x00, 0xff, 0x00, 0xff, 0xc2, 0x6a, 0x1c, 0xff, 0xc0, 0x64, 0x13, 0xff, 0xd8, 0x7c, 0x1b, 0xff, 0xf4, 0x97, 0x21, 0xff, 0xf4, 0x97, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf4, 0x96, 0x20, 0xff, 0xf6, 0x96, 0x1f, 0xff, 0x2e, 0x98, 0xd5, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x11, 0xb0, 0xff, 0xff, 0x37, 0xe5, 0xff, 0xff, 0x3d, 0xef, 0xff, 0xff, 0x3c, 0xed, 0xff, 0xff, 0x3c, 0xed, 0xff, 0xff, 0x3d, 0xee, 0xff, 0xff, 0x38, 0xe7, 0xff, 0xff, 0x19, 0xba, 0xff, 0xff, 0x00, 0x97, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x39, 0x98, 0xcb, 0xff, 0xd5, 0x96, 0x3c, 0xff, 0xf6, 0x96, 0x1e, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf4, 0x97, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xdc, 0x80, 0x1c, 0xff, 0xc0, 0x63, 0x11, 0xff, 0xc4, 0x6f, 0x24, 0xff, 0xe9, 0xca, 0xad, 0xff, + 0x00, 0xff, 0x00, 0xff, 0xe1, 0xb5, 0x8f, 0xff, 0xcc, 0x71, 0x19, 0xff, 0xf2, 0x95, 0x20, 0xff, 0xf4, 0x97, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xfd, 0x96, 0x18, 0xff, 0x99, 0x97, 0x73, 0xff, 0x02, 0x98, 0xfd, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x96, 0xff, 0xff, 0x15, 0xb5, 0xff, 0xff, 0x2a, 0xd3, 0xff, 0xff, 0x33, 0xdf, 0xff, 0xff, 0x33, 0xe0, 0xff, 0xff, 0x2c, 0xd5, 0xff, 0xff, 0x18, 0xb9, 0xff, 0xff, 0x02, 0x9b, 0xff, 0xff, 0x00, 0x97, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x91, 0x97, 0x7b, 0xff, 0xef, 0x96, 0x25, 0xff, 0xf4, 0x96, 0x20, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf4, 0x97, 0x21, 0xff, 0xf0, 0x93, 0x1f, 0xff, 0xd6, 0x7c, 0x20, 0xff, 0xd8, 0xa4, 0x77, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xeb, 0xa2, 0x4e, 0xff, 0xf4, 0x95, 0x1d, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf4, 0x96, 0x20, 0xff, 0xf2, 0x96, 0x23, 0xff, 0x5e, 0x97, 0xaa, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x95, 0xff, 0xff, 0x06, 0xa1, 0xff, 0xff, 0x0f, 0xad, 0xff, 0xff, 0x10, 0xae, 0xff, 0xff, 0x08, 0xa3, 0xff, 0xff, 0x00, 0x96, 0xff, 0xff, 0x00, 0x97, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x54, 0x97, 0xb3, 0xff, 0xde, 0x96, 0x35, 0xff, 0xf7, 0x96, 0x1d, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x94, 0x1d, 0xff, 0xf1, 0xa5, 0x4a, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xf7, 0xad, 0x4f, 0xff, 0xf3, 0x94, 0x1d, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf7, 0x96, 0x1e, 0xff, 0xdf, 0x96, 0x34, 0xff, 0x68, 0x98, 0xa1, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x97, 0xff, 0xff, 0x00, 0x96, 0xff, 0xff, 0x00, 0x95, 0xff, 0xff, 0x00, 0x97, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x99, 0xff, 0xff, 0x55, 0x98, 0xb2, 0xff, 0xd2, 0x96, 0x3f, 0xff, 0xf6, 0x96, 0x1e, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x94, 0x1d, 0xff, 0xf6, 0xac, 0x4e, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xf4, 0x9f, 0x35, 0xff, 0xf3, 0x95, 0x1f, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf8, 0x96, 0x1d, 0xff, 0xdf, 0x92, 0x2e, 0xff, 0x98, 0x8d, 0x68, 0xff, 0x4c, 0x98, 0xba, 0xff, 0x0e, 0x98, 0xf2, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x08, 0x98, 0xf7, 0xff, 0x44, 0x99, 0xc2, 0xff, 0x8d, 0x8f, 0x76, 0xff, 0xd7, 0x90, 0x33, 0xff, 0xf8, 0x97, 0x1e, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x94, 0x1e, 0xff, 0xf5, 0xa5, 0x41, 0xff, 0xfd, 0xe5, 0xc7, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xf5, 0xa7, 0x45, 0xff, 0xf3, 0x94, 0x1e, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf4, 0x97, 0x22, 0xff, 0xdb, 0x7c, 0x19, 0xff, 0xf2, 0x93, 0x1e, 0xff, 0xda, 0x96, 0x38, 0xff, 0xc5, 0x96, 0x4b, 0xff, 0xba, 0x96, 0x55, 0xff, 0xb8, 0x96, 0x57, 0xff, 0xc4, 0x96, 0x4c, 0xff, 0xd8, 0x97, 0x3b, 0xff, 0xec, 0x91, 0x22, 0xff, 0xe7, 0x87, 0x1a, 0xff, 0xed, 0x90, 0x20, 0xff, 0xf4, 0x97, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x94, 0x1d, 0xff, 0xf5, 0xa8, 0x47, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xf8, 0xbe, 0x76, 0xff, 0xf3, 0x92, 0x19, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf6, 0x98, 0x22, 0xff, 0xdc, 0x80, 0x1c, 0xff, 0xe0, 0x84, 0x1d, 0xff, 0xf4, 0x96, 0x21, 0xff, 0xf5, 0x96, 0x1f, 0xff, 0xf7, 0x96, 0x1d, 0xff, 0xf7, 0x96, 0x1d, 0xff, 0xf7, 0x96, 0x1e, 0xff, 0xf7, 0x96, 0x1d, 0xff, 0xf6, 0x96, 0x1f, 0xff, 0xf5, 0x97, 0x21, 0xff, 0xdf, 0x83, 0x1c, 0xff, 0xe1, 0x85, 0x1d, 0xff, 0xf2, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x93, 0x1b, 0xff, 0xf6, 0xb1, 0x5a, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xf3, 0x94, 0x1c, 0xff, 0xf3, 0x96, 0x20, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf5, 0x98, 0x21, 0xff, 0xe7, 0x8b, 0x1f, 0xff, 0xc7, 0x6c, 0x17, 0xff, 0xf1, 0x94, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf4, 0x97, 0x21, 0xff, 0xee, 0x91, 0x20, 0xff, 0xd2, 0x75, 0x1a, 0xff, 0xe5, 0x88, 0x1e, 0xff, 0xf4, 0x97, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x95, 0x1f, 0xff, 0xf4, 0x9b, 0x2c, 0xff, 0xfa, 0xcf, 0x9a, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xfa, 0xcc, 0x92, 0xff, 0xf2, 0x90, 0x15, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf4, 0x97, 0x21, 0xff, 0xed, 0x90, 0x20, 0xff, 0xc6, 0x6a, 0x16, 0xff, 0xd7, 0x7b, 0x1a, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf6, 0x99, 0x22, 0xff, 0xd8, 0x7c, 0x1b, 0xff, 0xc8, 0x6d, 0x17, 0xff, 0xeb, 0x8e, 0x1f, 0xff, 0xf4, 0x97, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x20, 0xff, 0xf3, 0x96, 0x20, 0xff, 0xf7, 0xb6, 0x66, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xfa, 0xcc, 0x93, 0xff, 0xf3, 0x97, 0x22, 0xff, 0xf3, 0x95, 0x1e, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf5, 0x98, 0x21, 0xff, 0xeb, 0x8e, 0x1f, 0xff, 0xc8, 0x6d, 0x18, 0xff, 0xbd, 0x62, 0x14, 0xff, 0xeb, 0x8e, 0x1f, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf5, 0x98, 0x21, 0xff, 0xe6, 0x89, 0x1e, 0xff, 0xc6, 0x6b, 0x17, 0xff, 0xc8, 0x6c, 0x18, 0xff, 0xeb, 0x8e, 0x1f, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x95, 0x20, 0xff, 0xf3, 0x97, 0x23, 0xff, 0xf7, 0xba, 0x6d, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xf9, 0xc6, 0x86, 0xff, 0xf4, 0xa6, 0x45, 0xff, 0xee, 0x91, 0x20, 0xff, 0xe7, 0x8a, 0x1e, 0xff, 0xd5, 0x79, 0x1a, 0xff, 0xc2, 0x67, 0x16, 0xff, 0xbf, 0x64, 0x15, 0xff, 0xc6, 0x6a, 0x16, 0xff, 0xf1, 0x94, 0x20, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf4, 0x97, 0x21, 0xff, 0xf1, 0x94, 0x21, 0xff, 0xcd, 0x71, 0x18, 0xff, 0xbe, 0x63, 0x15, 0xff, 0xc2, 0x67, 0x15, 0xff, 0xd7, 0x7a, 0x1a, 0xff, 0xe8, 0x8c, 0x1f, 0xff, 0xef, 0x93, 0x20, 0xff, 0xf4, 0xa2, 0x3a, 0xff, 0xf8, 0xbb, 0x6e, 0xff, 0xfd, 0xe3, 0xc5, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xed, 0xd6, 0xc2, 0xff, 0xc6, 0x77, 0x32, 0xff, 0xbd, 0x61, 0x10, 0xff, 0xbf, 0x64, 0x15, 0xff, 0xc0, 0x65, 0x15, 0xff, 0xbf, 0x64, 0x15, 0xff, 0xcd, 0x72, 0x18, 0xff, 0xf1, 0x94, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf5, 0x98, 0x22, 0xff, 0xd0, 0x74, 0x19, 0xff, 0xbf, 0x64, 0x15, 0xff, 0xc0, 0x65, 0x15, 0xff, 0xbf, 0x64, 0x15, 0xff, 0xbe, 0x63, 0x15, 0xff, 0xbf, 0x62, 0x13, 0xff, 0xef, 0xd8, 0xc5, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xd7, 0x9d, 0x69, 0xff, 0xbe, 0x61, 0x0e, 0xff, 0xc0, 0x65, 0x15, 0xff, 0xc0, 0x65, 0x15, 0xff, 0xbf, 0x64, 0x15, 0xff, 0xc9, 0x6d, 0x17, 0xff, 0xf1, 0x94, 0x20, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xce, 0x72, 0x18, 0xff, 0xbf, 0x64, 0x15, 0xff, 0xc0, 0x65, 0x15, 0xff, 0xc0, 0x65, 0x15, 0xff, 0xbf, 0x63, 0x12, 0xff, 0xca, 0x7f, 0x3b, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xef, 0xd7, 0xc2, 0xff, 0xcb, 0x7f, 0x3d, 0xff, 0xbf, 0x63, 0x12, 0xff, 0xc0, 0x64, 0x13, 0xff, 0xc0, 0x65, 0x15, 0xff, 0xc0, 0x65, 0x15, 0xff, 0xee, 0x90, 0x20, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf4, 0x97, 0x21, 0xff, 0xea, 0x8d, 0x1f, 0xff, 0xca, 0x6e, 0x17, 0xff, 0xbf, 0x64, 0x15, 0xff, 0xc0, 0x64, 0x14, 0xff, 0xbf, 0x62, 0x11, 0xff, 0xc5, 0x70, 0x26, 0xff, 0xf0, 0xda, 0xc6, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xed, 0xd2, 0xba, 0xff, 0xcf, 0x89, 0x4b, 0xff, 0xc3, 0x6d, 0x21, 0xff, 0xbf, 0x63, 0x12, 0xff, 0xbc, 0x5f, 0x0e, 0xff, 0xd9, 0x7d, 0x19, 0xff, 0xf2, 0x95, 0x1f, 0xff, 0xf3, 0x96, 0x20, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x20, 0xff, 0xf4, 0x97, 0x20, 0xff, 0xda, 0x7d, 0x18, 0xff, 0xc0, 0x63, 0x0f, 0xff, 0xbf, 0x62, 0x10, 0xff, 0xc3, 0x6c, 0x20, 0xff, 0xca, 0x7e, 0x3b, 0xff, 0xec, 0xd1, 0xb8, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xe4, 0xbc, 0x98, 0xff, 0xd6, 0x9a, 0x66, 0xff, 0xd2, 0x92, 0x58, 0xff, 0xd9, 0x9f, 0x69, 0xff, 0xf6, 0xb4, 0x61, 0xff, 0xf3, 0x95, 0x20, 0xff, 0xf3, 0x94, 0x1e, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x96, 0x21, 0xff, 0xf3, 0x94, 0x1d, 0xff, 0xf3, 0x96, 0x20, 0xff, 0xf5, 0xad, 0x54, 0xff, 0xdf, 0xa4, 0x6a, 0xff, 0xd1, 0x91, 0x59, 0xff, 0xd5, 0x98, 0x62, 0xff, 0xe1, 0xb5, 0x90, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xf8, 0xc0, 0x79, 0xff, 0xf4, 0xa1, 0x37, 0xff, 0xf3, 0x92, 0x19, 0xff, 0xf3, 0x93, 0x1b, 0xff, 0xf3, 0x93, 0x1b, 0xff, 0xf3, 0x93, 0x1a, 0xff, 0xf4, 0x9d, 0x30, 0xff, 0xf8, 0xbc, 0x71, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xfb, 0xdd, 0xb5, 0xff, 0xf9, 0xc3, 0x7f, 0xff, 0xf6, 0xaf, 0x56, 0xff, 0xf6, 0xad, 0x52, 0xff, 0xf8, 0xbe, 0x75, 0xff, 0xfb, 0xda, 0xb0, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, +#endif +}; + +const lv_img_dsc_t img_flower_icon = { + .header.always_zero = 0, + .header.w = 40, + .header.h = 40, + .data_size = 1600 * LV_COLOR_SIZE / 8, + .header.cf = LV_IMG_CF_TRUE_COLOR_CHROMA_KEYED, + .data = img_flower_icon_map, +}; diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.c b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.c new file mode 100644 index 0000000..b3d1746 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.c @@ -0,0 +1,73 @@ +/** + * @file lv_test_img.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_test_img.h" + +#if LV_USE_IMG && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ +LV_IMG_DECLARE(img_flower_icon) + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create images to test their functionalities + */ +void lv_test_img_1(void) +{ + /*Create an image object from a varibale*/ + lv_obj_t * img1 = lv_img_create(lv_disp_get_scr_act(NULL), NULL); + lv_img_set_src(img1, &img_flower_icon); + lv_obj_set_pos(img1, 10, 10); + + /*Copy the previous image and set a redish style*/ + static lv_style_t style; + lv_style_copy(&style, &lv_style_plain); + style.image.color = LV_COLOR_RED; + style.image.intense = LV_OPA_70; + + lv_obj_t * img2 = lv_img_create(lv_disp_get_scr_act(NULL), img1); + lv_img_set_style(img2, LV_IMG_STYLE_MAIN, &style); + lv_obj_align(img2, img1, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 20); + + /*Copy the previous image and test the mosaic feature*/ + lv_obj_t * img3 = lv_img_create(lv_disp_get_scr_act(NULL), img2); + lv_obj_set_size(img3, 100, 100); + lv_obj_align(img3, img2, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 20); + + /*Test symbol drawing*/ + lv_obj_t * img4 = lv_img_create(lv_disp_get_scr_act(NULL), NULL); + lv_img_set_src(img4, LV_SYMBOL_SETTINGS LV_SYMBOL_OK); + lv_obj_align(img4, img3, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 20); +} + +/********************** + * STATIC FUNCTIONS + **********************/ + +#endif /*LV_USE_IMG && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.h b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.h new file mode 100644 index 0000000..727b340 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.h @@ -0,0 +1,53 @@ +/** + * @file lv_test_img.h + * + */ + +#ifndef LV_TEST_IMG_H +#define LV_TEST_IMG_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../../lvgl/lvgl.h" +#include "../../../../lv_ex_conf.h" +#endif + +#if LV_USE_IMG && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create images to test their functionalities + */ +void lv_test_img_1(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_IMG*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_USE_IMG && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.mk b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.mk new file mode 100644 index 0000000..50553cb --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img.mk @@ -0,0 +1,7 @@ +CSRCS += lv_test_img.c +CSRCS += img_flower_icon.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_img +VPATH += :$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_img + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_img" diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img_1.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img_1.png new file mode 100644 index 0000000..67bb346 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_img/lv_test_img_1.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_1.c b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_1.c new file mode 100644 index 0000000..50769de --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_1.c @@ -0,0 +1,149 @@ +#include "lvgl/lvgl.h" +#include "lv_ex_conf.h" + +#if LV_USE_TESTS && LV_USE_IMGBTN + +const uint8_t imgbtn_img_1_map[] = { +#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8 + /*Pixel format: Alpha 8 bit, Red: 3 bit, Green: 3 bit, Blue: 2 bit*/ + 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x0c, 0x06, 0x34, 0x06, 0x73, 0x06, 0xac, 0x06, 0xd7, 0x0a, 0xef, 0x0a, 0xf8, 0x0a, 0xfb, 0x0a, 0xfb, 0x06, 0xfb, 0x06, 0xfb, 0x06, 0xfb, 0x0a, 0xfb, 0x2a, 0xfb, 0x2a, 0xfb, 0x4e, 0xfb, 0x4e, 0xfb, 0x4f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x6f, 0xfc, 0x4f, 0xfc, 0x4e, 0xfb, 0x4e, 0xfb, 0x2a, 0xfb, 0x2a, 0xfb, 0x0a, 0xfb, 0x06, 0xfb, 0x06, 0xfb, 0x06, 0xfb, 0x0a, 0xfb, 0x0a, 0xfb, 0x0a, 0xf8, 0x0a, 0xef, 0x06, 0xd7, 0x06, 0xac, 0x06, 0x73, 0x06, 0x34, 0x01, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, + 0x00, 0x00, 0x01, 0x03, 0x01, 0x10, 0x06, 0x3f, 0x06, 0x78, 0x0a, 0xa7, 0x0a, 0xcb, 0x0a, 0xe4, 0x0a, 0xf4, 0x0a, 0xfb, 0x0a, 0xfc, 0x0a, 0xfc, 0x0a, 0xfc, 0x0a, 0xfc, 0x2a, 0xfc, 0x4e, 0xfc, 0x4f, 0xfc, 0x73, 0xfc, 0x73, 0xfc, 0x93, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x97, 0xfc, 0x93, 0xfc, 0x73, 0xfc, 0x73, 0xfc, 0x4f, 0xfc, 0x4e, 0xfc, 0x2a, 0xfc, 0x0a, 0xfc, 0x0a, 0xfc, 0x0a, 0xfc, 0x0a, 0xfc, 0x0a, 0xfb, 0x0a, 0xf4, 0x0a, 0xe4, 0x0a, 0xcb, 0x0a, 0xa7, 0x06, 0x78, 0x06, 0x3f, 0x01, 0x10, 0x01, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x13, 0x06, 0x44, 0x06, 0x98, 0x0a, 0xe8, 0x0a, 0xfb, 0x0a, 0xfc, 0x0a, 0xfc, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x2e, 0xff, 0x73, 0xff, 0x97, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0x97, 0xff, 0x73, 0xff, 0x2e, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xfc, 0x0a, 0xfc, 0x0a, 0xfb, 0x0a, 0xe8, 0x06, 0x98, 0x06, 0x44, 0x01, 0x13, 0x00, 0x00, + 0x00, 0x00, 0x06, 0x33, 0x06, 0x94, 0x0a, 0xd8, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x4f, 0xff, 0x77, 0xff, 0x97, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xdb, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0x97, 0xff, 0x77, 0xff, 0x4f, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xd8, 0x06, 0x94, 0x06, 0x33, 0x00, 0x00, + 0x01, 0x0c, 0x06, 0x5b, 0x0a, 0xdf, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x2f, 0xff, 0x77, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0x77, 0xff, 0x2f, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xdf, 0x06, 0x5b, 0x01, 0x0c, + 0x01, 0x40, 0x0a, 0x80, 0x0a, 0xef, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x2f, 0xff, 0x77, 0xff, 0x97, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0x9b, 0xff, 0x77, 0xff, 0x2f, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xff, 0x0a, 0xef, 0x0a, 0x80, 0x01, 0x40, + 0x06, 0x6c, 0x0a, 0x9f, 0x2a, 0xf3, 0x2e, 0xff, 0x2e, 0xff, 0x2e, 0xff, 0x2e, 0xff, 0x0e, 0xff, 0x0e, 0xff, 0x2e, 0xff, 0x53, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0x53, 0xff, 0x2e, 0xff, 0x0e, 0xff, 0x0e, 0xff, 0x2e, 0xff, 0x2e, 0xff, 0x2e, 0xff, 0x2e, 0xff, 0x2a, 0xf3, 0x0a, 0x9f, 0x06, 0x6c, + 0x06, 0x83, 0x2a, 0xac, 0x2f, 0xf7, 0x2f, 0xff, 0x2f, 0xff, 0x2f, 0xff, 0x2f, 0xff, 0x2f, 0xff, 0x2f, 0xff, 0x4f, 0xff, 0x73, 0xff, 0x9b, 0xff, 0xbb, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0xbb, 0xff, 0x9b, 0xff, 0x73, 0xff, 0x4f, 0xff, 0x2f, 0xff, 0x2f, 0xff, 0x2f, 0xff, 0x2f, 0xff, 0x2f, 0xff, 0x2f, 0xff, 0x2f, 0xf7, 0x2a, 0xac, 0x06, 0x83, + 0x06, 0x90, 0x2a, 0xb7, 0x2f, 0xf8, 0x4f, 0xff, 0x4f, 0xff, 0x4f, 0xff, 0x4f, 0xff, 0x2f, 0xff, 0x4f, 0xff, 0x53, 0xff, 0x77, 0xff, 0x97, 0xff, 0x9b, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x9b, 0xff, 0x97, 0xff, 0x77, 0xff, 0x53, 0xff, 0x4f, 0xff, 0x2f, 0xff, 0x4f, 0xff, 0x4f, 0xff, 0x4f, 0xff, 0x4f, 0xff, 0x2f, 0xf8, 0x2a, 0xb7, 0x06, 0x90, + 0x2a, 0x94, 0x2e, 0xb8, 0x53, 0xf8, 0x53, 0xff, 0x53, 0xff, 0x53, 0xff, 0x53, 0xff, 0x53, 0xff, 0x53, 0xff, 0x53, 0xff, 0x73, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x73, 0xff, 0x53, 0xff, 0x53, 0xff, 0x53, 0xff, 0x53, 0xff, 0x53, 0xff, 0x53, 0xff, 0x53, 0xff, 0x53, 0xf8, 0x2e, 0xb8, 0x2a, 0x94, + 0x2a, 0x97, 0x4e, 0xbb, 0x53, 0xf8, 0x73, 0xff, 0x73, 0xff, 0x73, 0xff, 0x73, 0xff, 0x73, 0xff, 0x73, 0xff, 0x73, 0xff, 0x73, 0xff, 0x77, 0xff, 0x77, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x77, 0xff, 0x77, 0xff, 0x73, 0xff, 0x73, 0xff, 0x73, 0xff, 0x73, 0xff, 0x73, 0xff, 0x73, 0xff, 0x73, 0xff, 0x73, 0xff, 0x53, 0xf8, 0x4e, 0xbb, 0x2a, 0x97, + 0x2a, 0x98, 0x4e, 0xbb, 0x73, 0xf8, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x73, 0xf8, 0x4e, 0xbb, 0x2a, 0x98, + 0x2a, 0x97, 0x4e, 0xbb, 0x77, 0xf8, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xff, 0x77, 0xf8, 0x4e, 0xbb, 0x2a, 0x97, + 0x2a, 0x97, 0x4f, 0xbb, 0x97, 0xf8, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xf8, 0x4f, 0xbb, 0x2a, 0x97, + 0x2a, 0x94, 0x53, 0xb8, 0x97, 0xf7, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xff, 0x97, 0xf7, 0x53, 0xb8, 0x2a, 0x94, + 0x2a, 0x94, 0x73, 0xb8, 0x97, 0xf7, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x97, 0xf7, 0x73, 0xb8, 0x2a, 0x94, + 0x2a, 0x93, 0x73, 0xb8, 0x97, 0xf7, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x9b, 0xff, 0x97, 0xf7, 0x73, 0xb8, 0x2a, 0x93, + 0x4a, 0x93, 0x73, 0xb7, 0x9b, 0xf7, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0x9b, 0xf7, 0x73, 0xb7, 0x4a, 0x93, + 0x4e, 0x90, 0x73, 0xb7, 0x9b, 0xf7, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0x9b, 0xf7, 0x73, 0xb7, 0x4e, 0x90, + 0x4e, 0x8f, 0x73, 0xb4, 0xbb, 0xf7, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xf7, 0x73, 0xb4, 0x4e, 0x8f, + 0x4e, 0x8b, 0x77, 0xb3, 0xbb, 0xf7, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xf7, 0x77, 0xb3, 0x4e, 0x8b, + 0x4e, 0x87, 0x97, 0xb0, 0xbb, 0xf4, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbb, 0xf4, 0x97, 0xb0, 0x4e, 0x87, + 0x4e, 0x7b, 0x97, 0xa7, 0xbf, 0xf4, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xf4, 0x97, 0xa7, 0x4e, 0x7b, + 0x4a, 0x63, 0x97, 0x97, 0xbf, 0xf0, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xbf, 0xf0, 0x97, 0x97, 0x4a, 0x63, + 0x25, 0x37, 0x97, 0x78, 0xbf, 0xec, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xbf, 0xec, 0x97, 0x78, 0x25, 0x37, + 0x00, 0x04, 0x97, 0x54, 0xbb, 0xdc, 0xbf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xbf, 0xff, 0xbb, 0xdc, 0x97, 0x54, 0x00, 0x04, + 0x00, 0x00, 0x72, 0x2f, 0x97, 0x8f, 0xbb, 0xd8, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xbb, 0xd8, 0x97, 0x8f, 0x72, 0x2f, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0f, 0x29, 0x3c, 0x97, 0x98, 0xbf, 0xf3, 0xdf, 0xff, 0xdf, 0xfc, 0xdf, 0xfc, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xfc, 0xdf, 0xfc, 0xdf, 0xff, 0xbf, 0xf3, 0x97, 0x98, 0x29, 0x3c, 0x00, 0x0f, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x73, 0x40, 0x97, 0x83, 0xbb, 0xb4, 0xbf, 0xd8, 0xbf, 0xe7, 0xdf, 0xec, 0xdf, 0xf0, 0xdf, 0xf3, 0xdf, 0xf3, 0xbf, 0xf3, 0xbf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xbf, 0xf3, 0xbf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf3, 0xdf, 0xf0, 0xdf, 0xec, 0xbf, 0xe7, 0xbf, 0xd8, 0xbb, 0xb4, 0x97, 0x83, 0x73, 0x40, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, + 0x4e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x4a, 0x3f, 0x97, 0x88, 0xbb, 0xc3, 0xbb, 0xd7, 0xbf, 0xe3, 0xbf, 0xe8, 0xbf, 0xeb, 0xbf, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbb, 0xec, 0xbf, 0xec, 0xbf, 0xeb, 0xbf, 0xe8, 0xbf, 0xe3, 0xbb, 0xd7, 0xbb, 0xc3, 0x97, 0x88, 0x4a, 0x3f, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x4e, 0x00, +#endif +#if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP == 0 + /*Pixel format: Alpha 8 bit, Red: 5 bit, Green: 6 bit, Blue: 5 bit*/ + 0xed, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x0c, 0xcd, 0x00, 0x34, 0x4f, 0x01, 0x73, 0x6f, 0x01, 0xac, 0x90, 0x01, 0xd7, 0x90, 0x01, 0xef, 0xb0, 0x01, 0xf8, 0xb0, 0x01, 0xfb, 0xb0, 0x01, 0xfb, 0x90, 0x01, 0xfb, 0x70, 0x01, 0xfb, 0x6f, 0x01, 0xfb, 0xb0, 0x01, 0xfb, 0x11, 0x1a, 0xfb, 0x92, 0x2a, 0xfb, 0xf3, 0x3a, 0xfb, 0x34, 0x43, 0xfb, 0x54, 0x4b, 0xfc, 0x74, 0x53, 0xfc, 0x95, 0x53, 0xfc, 0x95, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x94, 0x53, 0xfc, 0x95, 0x53, 0xfc, 0x95, 0x53, 0xfc, 0x74, 0x53, 0xfc, 0x54, 0x4b, 0xfc, 0x34, 0x43, 0xfb, 0xf3, 0x3a, 0xfb, 0x92, 0x2a, 0xfb, 0x11, 0x1a, 0xfb, 0xb0, 0x01, 0xfb, 0x6f, 0x01, 0xfb, 0x70, 0x01, 0xfb, 0x90, 0x01, 0xfb, 0xb0, 0x01, 0xfb, 0xb0, 0x01, 0xfb, 0xb0, 0x01, 0xf8, 0x90, 0x01, 0xef, 0x90, 0x01, 0xd7, 0x6f, 0x01, 0xac, 0x4f, 0x01, 0x73, 0xcd, 0x00, 0x34, 0x4b, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xed, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x07, 0x00, 0x03, 0x4b, 0x00, 0x10, 0x2f, 0x01, 0x3f, 0x6f, 0x01, 0x78, 0xb0, 0x01, 0xa7, 0xd0, 0x01, 0xcb, 0xd1, 0x01, 0xe4, 0xd1, 0x01, 0xf4, 0xd1, 0x01, 0xfb, 0xd1, 0x01, 0xfc, 0xd1, 0x01, 0xfc, 0xd1, 0x01, 0xfc, 0xf1, 0x09, 0xfc, 0x72, 0x1a, 0xfc, 0xf3, 0x32, 0xfc, 0x95, 0x4b, 0xfc, 0xf6, 0x5b, 0xfc, 0x57, 0x6c, 0xfc, 0x97, 0x7c, 0xfc, 0xb8, 0x7c, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xd8, 0x84, 0xfc, 0xb8, 0x7c, 0xfc, 0x97, 0x7c, 0xfc, 0x57, 0x6c, 0xfc, 0xf6, 0x5b, 0xfc, 0x95, 0x4b, 0xfc, 0xf3, 0x32, 0xfc, 0x72, 0x1a, 0xfc, 0xf1, 0x09, 0xfc, 0xd1, 0x01, 0xfc, 0xd1, 0x01, 0xfc, 0xd1, 0x01, 0xfc, 0xd1, 0x01, 0xfb, 0xd1, 0x01, 0xf4, 0xd1, 0x01, 0xe4, 0xd0, 0x01, 0xcb, 0xb0, 0x01, 0xa7, 0x6f, 0x01, 0x78, 0x2f, 0x01, 0x3f, 0x4b, 0x00, 0x10, 0x07, 0x00, 0x03, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x4b, 0x00, 0x13, 0xad, 0x00, 0x44, 0x6f, 0x01, 0x98, 0xb0, 0x01, 0xe8, 0xf1, 0x01, 0xfb, 0x12, 0x02, 0xfc, 0x32, 0x02, 0xfc, 0x32, 0x02, 0xff, 0x32, 0x02, 0xff, 0x12, 0x02, 0xff, 0x12, 0x02, 0xff, 0x52, 0x0a, 0xff, 0xf4, 0x22, 0xff, 0x37, 0x5c, 0xff, 0x59, 0x85, 0xff, 0xdb, 0x9d, 0xff, 0x3c, 0xb6, 0xff, 0x9c, 0xc6, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0x9c, 0xc6, 0xff, 0x3c, 0xb6, 0xff, 0xdb, 0x9d, 0xff, 0x59, 0x85, 0xff, 0x37, 0x5c, 0xff, 0xf4, 0x22, 0xff, 0x52, 0x0a, 0xff, 0x12, 0x02, 0xff, 0x12, 0x02, 0xff, 0x32, 0x02, 0xff, 0x32, 0x02, 0xff, 0x32, 0x02, 0xfc, 0x12, 0x02, 0xfc, 0xf1, 0x01, 0xfb, 0xb0, 0x01, 0xe8, 0x6f, 0x01, 0x98, 0xad, 0x00, 0x44, 0x4b, 0x00, 0x13, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0e, 0x01, 0x33, 0x4f, 0x01, 0x94, 0xb0, 0x01, 0xd8, 0xf1, 0x01, 0xff, 0x11, 0x02, 0xff, 0x32, 0x02, 0xff, 0x32, 0x02, 0xff, 0x32, 0x02, 0xff, 0x32, 0x02, 0xff, 0x32, 0x02, 0xff, 0x73, 0x0a, 0xff, 0x75, 0x3b, 0xff, 0xb8, 0x6c, 0xff, 0x7a, 0x8d, 0xff, 0x1b, 0xa6, 0xff, 0x5c, 0xb6, 0xff, 0x9d, 0xbe, 0xff, 0xbd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xc6, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xce, 0xff, 0xdd, 0xc6, 0xff, 0xbd, 0xc6, 0xff, 0x9d, 0xbe, 0xff, 0x5c, 0xb6, 0xff, 0x1b, 0xa6, 0xff, 0x7a, 0x8d, 0xff, 0xb8, 0x6c, 0xff, 0x75, 0x3b, 0xff, 0x73, 0x0a, 0xff, 0x32, 0x02, 0xff, 0x32, 0x02, 0xff, 0x32, 0x02, 0xff, 0x32, 0x02, 0xff, 0x32, 0x02, 0xff, 0x11, 0x02, 0xff, 0xf1, 0x01, 0xff, 0xb0, 0x01, 0xd8, 0x4f, 0x01, 0x94, 0x0e, 0x01, 0x33, 0x00, 0x00, 0x00, + 0x07, 0x00, 0x0c, 0x4f, 0x01, 0x5b, 0x90, 0x01, 0xdf, 0xf1, 0x01, 0xff, 0x32, 0x02, 0xff, 0x32, 0x02, 0xff, 0x32, 0x02, 0xff, 0x32, 0x02, 0xff, 0x32, 0x02, 0xff, 0x12, 0x02, 0xff, 0x72, 0x0a, 0xff, 0x34, 0x2b, 0xff, 0xb8, 0x6c, 0xff, 0x1c, 0xae, 0xff, 0x3c, 0xae, 0xff, 0x3c, 0xae, 0xff, 0x3c, 0xae, 0xff, 0x1c, 0xae, 0xff, 0x1c, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1b, 0xae, 0xff, 0x1c, 0xae, 0xff, 0x1c, 0xae, 0xff, 0x3c, 0xae, 0xff, 0x3c, 0xae, 0xff, 0x3c, 0xae, 0xff, 0x1c, 0xae, 0xff, 0xb8, 0x6c, 0xff, 0x34, 0x2b, 0xff, 0x72, 0x0a, 0xff, 0x12, 0x02, 0xff, 0x32, 0x02, 0xff, 0x32, 0x02, 0xff, 0x32, 0x02, 0xff, 0x32, 0x02, 0xff, 0x32, 0x02, 0xff, 0xf1, 0x01, 0xff, 0x90, 0x01, 0xdf, 0x4f, 0x01, 0x5b, 0x07, 0x00, 0x0c, + 0x6c, 0x00, 0x40, 0x90, 0x01, 0x80, 0x11, 0x0a, 0xef, 0x52, 0x0a, 0xff, 0x73, 0x0a, 0xff, 0x73, 0x0a, 0xff, 0x52, 0x0a, 0xff, 0x52, 0x0a, 0xff, 0x52, 0x02, 0xff, 0x32, 0x02, 0xff, 0x34, 0x2b, 0xff, 0xb8, 0x6c, 0xff, 0x9a, 0x95, 0xff, 0xfb, 0xa5, 0xff, 0xfb, 0xa5, 0xff, 0xfb, 0x9d, 0xff, 0xfb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xfb, 0x9d, 0xff, 0xfb, 0x9d, 0xff, 0xfb, 0xa5, 0xff, 0xfb, 0xa5, 0xff, 0x9a, 0x95, 0xff, 0xb8, 0x6c, 0xff, 0x34, 0x2b, 0xff, 0x32, 0x02, 0xff, 0x52, 0x02, 0xff, 0x52, 0x0a, 0xff, 0x52, 0x0a, 0xff, 0x73, 0x0a, 0xff, 0x73, 0x0a, 0xff, 0x52, 0x0a, 0xff, 0x11, 0x0a, 0xef, 0x90, 0x01, 0x80, 0x6c, 0x00, 0x40, + 0xcd, 0x00, 0x6c, 0xd0, 0x09, 0x9f, 0x93, 0x12, 0xf3, 0xb3, 0x12, 0xff, 0xb3, 0x12, 0xff, 0xb3, 0x12, 0xff, 0xb3, 0x12, 0xff, 0x93, 0x12, 0xff, 0x93, 0x12, 0xff, 0xb3, 0x12, 0xff, 0xf6, 0x4b, 0xff, 0xdb, 0x95, 0xff, 0xfb, 0x9d, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0xfb, 0x9d, 0xff, 0xdb, 0x9d, 0xff, 0xf7, 0x4b, 0xff, 0xb3, 0x12, 0xff, 0x93, 0x12, 0xff, 0x93, 0x12, 0xff, 0xb3, 0x12, 0xff, 0xb3, 0x12, 0xff, 0xb3, 0x12, 0xff, 0xb3, 0x12, 0xff, 0x93, 0x12, 0xf3, 0xd0, 0x09, 0x9f, 0xcd, 0x00, 0x6c, + 0x4e, 0x09, 0x83, 0x31, 0x12, 0xac, 0xf4, 0x22, 0xf7, 0x15, 0x23, 0xff, 0x15, 0x23, 0xff, 0x15, 0x23, 0xff, 0x15, 0x23, 0xff, 0xf5, 0x22, 0xff, 0x15, 0x23, 0xff, 0x96, 0x3b, 0xff, 0x98, 0x64, 0xff, 0xbb, 0x95, 0xff, 0xdb, 0x95, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0xdb, 0x95, 0xff, 0xbb, 0x95, 0xff, 0x98, 0x64, 0xff, 0x96, 0x3b, 0xff, 0x15, 0x23, 0xff, 0xf5, 0x22, 0xff, 0x15, 0x23, 0xff, 0x15, 0x23, 0xff, 0x15, 0x23, 0xff, 0x15, 0x23, 0xff, 0xf4, 0x22, 0xf7, 0x31, 0x12, 0xac, 0x4e, 0x09, 0x83, + 0x8e, 0x09, 0x90, 0x72, 0x22, 0xb7, 0x55, 0x33, 0xf8, 0x76, 0x33, 0xff, 0x76, 0x33, 0xff, 0x96, 0x33, 0xff, 0x76, 0x33, 0xff, 0x76, 0x33, 0xff, 0x96, 0x3b, 0xff, 0xf7, 0x4b, 0xff, 0xb9, 0x64, 0xff, 0x7b, 0x85, 0xff, 0x9b, 0x8d, 0xff, 0x7b, 0x85, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x8d, 0xff, 0x7b, 0x85, 0xff, 0x9b, 0x8d, 0xff, 0x7b, 0x85, 0xff, 0xb9, 0x64, 0xff, 0xf7, 0x4b, 0xff, 0x96, 0x3b, 0xff, 0x76, 0x33, 0xff, 0x76, 0x33, 0xff, 0x96, 0x33, 0xff, 0x76, 0x33, 0xff, 0x76, 0x33, 0xff, 0x55, 0x33, 0xf8, 0x72, 0x22, 0xb7, 0x8e, 0x09, 0x90, + 0xae, 0x11, 0x94, 0xb2, 0x2a, 0xb8, 0xb6, 0x43, 0xf8, 0xf7, 0x43, 0xff, 0xf7, 0x43, 0xff, 0xf7, 0x43, 0xff, 0xf7, 0x43, 0xff, 0xf7, 0x43, 0xff, 0xf7, 0x43, 0xff, 0x18, 0x4c, 0xff, 0x79, 0x5c, 0xff, 0x1a, 0x75, 0xff, 0x5b, 0x85, 0xff, 0x7b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x8d, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x7b, 0x85, 0xff, 0x5b, 0x85, 0xff, 0x1a, 0x75, 0xff, 0x79, 0x5c, 0xff, 0xf8, 0x4b, 0xff, 0xf7, 0x43, 0xff, 0xf7, 0x43, 0xff, 0xf7, 0x43, 0xff, 0xf7, 0x43, 0xff, 0xf7, 0x43, 0xff, 0xf7, 0x43, 0xff, 0xb6, 0x43, 0xf8, 0xb2, 0x2a, 0xb8, 0xae, 0x11, 0x94, + 0xae, 0x19, 0x97, 0xf3, 0x32, 0xbb, 0x18, 0x54, 0xf8, 0x59, 0x54, 0xff, 0x59, 0x54, 0xff, 0x59, 0x54, 0xff, 0x59, 0x54, 0xff, 0x59, 0x54, 0xff, 0x59, 0x54, 0xff, 0x59, 0x54, 0xff, 0x99, 0x5c, 0xff, 0xda, 0x6c, 0xff, 0x1a, 0x75, 0xff, 0x3a, 0x75, 0xff, 0x3b, 0x75, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x7d, 0xff, 0x3b, 0x75, 0xff, 0x3a, 0x75, 0xff, 0x1a, 0x75, 0xff, 0xda, 0x6c, 0xff, 0x99, 0x5c, 0xff, 0x59, 0x54, 0xff, 0x59, 0x54, 0xff, 0x59, 0x54, 0xff, 0x59, 0x54, 0xff, 0x59, 0x54, 0xff, 0x59, 0x54, 0xff, 0x59, 0x54, 0xff, 0x18, 0x54, 0xf8, 0xf3, 0x32, 0xbb, 0xae, 0x19, 0x97, + 0xce, 0x19, 0x98, 0x13, 0x3b, 0xbb, 0x79, 0x5c, 0xf8, 0xba, 0x64, 0xff, 0xba, 0x64, 0xff, 0xba, 0x64, 0xff, 0xba, 0x64, 0xff, 0xba, 0x64, 0xff, 0xba, 0x64, 0xff, 0xba, 0x64, 0xff, 0xba, 0x64, 0xff, 0xba, 0x64, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xda, 0x6c, 0xff, 0xba, 0x64, 0xff, 0xba, 0x64, 0xff, 0xba, 0x64, 0xff, 0xba, 0x64, 0xff, 0xba, 0x64, 0xff, 0xba, 0x64, 0xff, 0xba, 0x64, 0xff, 0xba, 0x64, 0xff, 0xba, 0x64, 0xff, 0x79, 0x5c, 0xf8, 0x13, 0x3b, 0xbb, 0xce, 0x19, 0x98, + 0xee, 0x21, 0x97, 0x54, 0x43, 0xbb, 0xba, 0x6c, 0xf8, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0xfb, 0x74, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0xfb, 0x74, 0xff, 0xfb, 0x74, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0x1b, 0x75, 0xff, 0xba, 0x6c, 0xf8, 0x54, 0x43, 0xbb, 0xee, 0x21, 0x97, + 0x0e, 0x2a, 0x97, 0x74, 0x4b, 0xbb, 0xfb, 0x74, 0xf8, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0x5c, 0x7d, 0xff, 0xfb, 0x74, 0xf8, 0x74, 0x4b, 0xbb, 0x0e, 0x2a, 0x97, + 0x2f, 0x2a, 0x94, 0xb5, 0x53, 0xb8, 0x3b, 0x7d, 0xf7, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x7c, 0x85, 0xff, 0x3b, 0x7d, 0xf7, 0xb5, 0x53, 0xb8, 0x2f, 0x2a, 0x94, + 0x4f, 0x2a, 0x94, 0xd5, 0x53, 0xb8, 0x5b, 0x7d, 0xf7, 0xbd, 0x85, 0xff, 0xbd, 0x85, 0xff, 0xbd, 0x8d, 0xff, 0xbd, 0x85, 0xff, 0xbd, 0x85, 0xff, 0xbd, 0x85, 0xff, 0xbd, 0x85, 0xff, 0xbd, 0x85, 0xff, 0xbd, 0x85, 0xff, 0xbd, 0x85, 0xff, 0xbd, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbc, 0x85, 0xff, 0xbd, 0x85, 0xff, 0xbd, 0x85, 0xff, 0xbd, 0x85, 0xff, 0xbd, 0x85, 0xff, 0xbd, 0x85, 0xff, 0xbd, 0x85, 0xff, 0xbd, 0x85, 0xff, 0xbd, 0x85, 0xff, 0xbd, 0x8d, 0xff, 0xbd, 0x85, 0xff, 0xbd, 0x85, 0xff, 0x5b, 0x7d, 0xf7, 0xd5, 0x53, 0xb8, 0x4f, 0x2a, 0x94, + 0x6f, 0x32, 0x93, 0xf5, 0x5b, 0xb8, 0x9c, 0x85, 0xf7, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0xdd, 0x8d, 0xff, 0x9c, 0x85, 0xf7, 0xf5, 0x5b, 0xb8, 0x6f, 0x32, 0x93, + 0x6f, 0x32, 0x93, 0x16, 0x64, 0xb7, 0xbc, 0x8d, 0xf7, 0x1d, 0x96, 0xff, 0xfd, 0x95, 0xff, 0xfd, 0x95, 0xff, 0xfd, 0x95, 0xff, 0xfd, 0x95, 0xff, 0xfd, 0x95, 0xff, 0xfd, 0x95, 0xff, 0xfd, 0x95, 0xff, 0xfd, 0x95, 0xff, 0xfd, 0x95, 0xff, 0xfd, 0x95, 0xff, 0xfd, 0x95, 0xff, 0xfd, 0x95, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0x1d, 0x96, 0xff, 0xfd, 0x95, 0xff, 0xfd, 0x95, 0xff, 0xfd, 0x95, 0xff, 0xfd, 0x95, 0xff, 0xfd, 0x95, 0xff, 0xfd, 0x95, 0xff, 0xfd, 0x95, 0xff, 0xfd, 0x95, 0xff, 0xfd, 0x95, 0xff, 0xfd, 0x95, 0xff, 0xfd, 0x95, 0xff, 0xfd, 0x95, 0xff, 0x1d, 0x96, 0xff, 0xbc, 0x8d, 0xf7, 0x16, 0x64, 0xb7, 0x6f, 0x32, 0x93, + 0x8f, 0x3a, 0x90, 0x36, 0x64, 0xb7, 0xdc, 0x95, 0xf7, 0x3e, 0x9e, 0xff, 0x3e, 0x9e, 0xff, 0x3e, 0x9e, 0xff, 0x3e, 0x9e, 0xff, 0x3e, 0x9e, 0xff, 0x3e, 0x9e, 0xff, 0x3e, 0x9e, 0xff, 0x3e, 0x9e, 0xff, 0x3e, 0x9e, 0xff, 0x3e, 0x9e, 0xff, 0x3e, 0x9e, 0xff, 0x3e, 0x9e, 0xff, 0x3e, 0x9e, 0xff, 0x3e, 0x9e, 0xff, 0x3e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x5e, 0x9e, 0xff, 0x3e, 0x9e, 0xff, 0x3e, 0x9e, 0xff, 0x3e, 0x9e, 0xff, 0x3e, 0x9e, 0xff, 0x3e, 0x9e, 0xff, 0x3e, 0x9e, 0xff, 0x3e, 0x9e, 0xff, 0x3e, 0x9e, 0xff, 0x3e, 0x9e, 0xff, 0x3e, 0x9e, 0xff, 0x3e, 0x9e, 0xff, 0x3e, 0x9e, 0xff, 0x3e, 0x9e, 0xff, 0x3e, 0x9e, 0xff, 0x3e, 0x9e, 0xff, 0xdc, 0x95, 0xf7, 0x36, 0x64, 0xb7, 0x8f, 0x3a, 0x90, + 0xd0, 0x42, 0x8f, 0x76, 0x6c, 0xb4, 0x1d, 0x9e, 0xf7, 0x5e, 0xa6, 0xff, 0x5e, 0xa6, 0xff, 0x5e, 0xa6, 0xff, 0x5e, 0xa6, 0xff, 0x5e, 0xa6, 0xff, 0x5e, 0xa6, 0xff, 0x5e, 0xa6, 0xff, 0x5e, 0xa6, 0xff, 0x5e, 0xa6, 0xff, 0x5e, 0xa6, 0xff, 0x5e, 0xa6, 0xff, 0x7e, 0xa6, 0xff, 0x7e, 0xa6, 0xff, 0x7e, 0xa6, 0xff, 0x7e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x7e, 0xa6, 0xff, 0x7e, 0xa6, 0xff, 0x7e, 0xa6, 0xff, 0x7e, 0xa6, 0xff, 0x5e, 0xa6, 0xff, 0x5e, 0xa6, 0xff, 0x5e, 0xa6, 0xff, 0x5e, 0xa6, 0xff, 0x5e, 0xa6, 0xff, 0x5e, 0xa6, 0xff, 0x5e, 0xa6, 0xff, 0x5e, 0xa6, 0xff, 0x5e, 0xa6, 0xff, 0x5e, 0xa6, 0xff, 0x5e, 0xa6, 0xff, 0x1d, 0x9e, 0xf7, 0x76, 0x6c, 0xb4, 0xd0, 0x42, 0x8f, + 0xf0, 0x42, 0x8b, 0x97, 0x74, 0xb3, 0x3d, 0x9e, 0xf7, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xae, 0xff, 0xbf, 0xae, 0xff, 0xbf, 0xae, 0xff, 0xdf, 0xae, 0xff, 0xdf, 0xb6, 0xff, 0xdf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xbf, 0xb6, 0xff, 0xdf, 0xb6, 0xff, 0xdf, 0xb6, 0xff, 0xdf, 0xae, 0xff, 0xbf, 0xae, 0xff, 0xbf, 0xae, 0xff, 0x9e, 0xae, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x9e, 0xa6, 0xff, 0x3d, 0x9e, 0xf7, 0x97, 0x74, 0xb3, 0xf0, 0x42, 0x8b, + 0x31, 0x4b, 0x87, 0xd7, 0x7c, 0xb0, 0x7e, 0xa6, 0xf4, 0xbf, 0xae, 0xff, 0xbf, 0xae, 0xff, 0xbf, 0xae, 0xff, 0xbf, 0xae, 0xff, 0xbf, 0xae, 0xff, 0xbf, 0xae, 0xff, 0xbf, 0xae, 0xff, 0xbf, 0xae, 0xff, 0xbf, 0xae, 0xff, 0xbf, 0xae, 0xff, 0xdf, 0xae, 0xff, 0xdf, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xdf, 0xb6, 0xff, 0xdf, 0xae, 0xff, 0xbf, 0xae, 0xff, 0xbf, 0xae, 0xff, 0xbf, 0xae, 0xff, 0xbf, 0xae, 0xff, 0xbf, 0xae, 0xff, 0xbf, 0xae, 0xff, 0xbf, 0xae, 0xff, 0xbf, 0xae, 0xff, 0xbf, 0xae, 0xff, 0xbf, 0xae, 0xff, 0x7e, 0xa6, 0xf4, 0xd7, 0x7c, 0xb0, 0x31, 0x4b, 0x87, + 0x10, 0x43, 0x7b, 0xf8, 0x7c, 0xa7, 0x9e, 0xae, 0xf4, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0x1f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x1f, 0xbf, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0x9e, 0xae, 0xf4, 0xf8, 0x7c, 0xa7, 0x10, 0x43, 0x7b, + 0x4d, 0x32, 0x63, 0xf8, 0x7c, 0x97, 0xdf, 0xb6, 0xf0, 0x1f, 0xbf, 0xff, 0x1f, 0xbf, 0xff, 0x1f, 0xbf, 0xff, 0x1f, 0xbf, 0xff, 0x1f, 0xbf, 0xff, 0x1f, 0xbf, 0xff, 0x1f, 0xbf, 0xff, 0x1f, 0xbf, 0xff, 0x1f, 0xbf, 0xff, 0x1f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x3f, 0xbf, 0xff, 0x1f, 0xbf, 0xff, 0x1f, 0xbf, 0xff, 0x1f, 0xbf, 0xff, 0x1f, 0xbf, 0xff, 0x1f, 0xbf, 0xff, 0x1f, 0xbf, 0xff, 0x1f, 0xbf, 0xff, 0x1f, 0xbf, 0xff, 0x1f, 0xbf, 0xff, 0x1f, 0xbf, 0xff, 0xdf, 0xb6, 0xf0, 0xf8, 0x7c, 0x97, 0x4d, 0x32, 0x63, + 0x28, 0x11, 0x37, 0x18, 0x85, 0x78, 0x9e, 0xae, 0xec, 0xff, 0xbe, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x5f, 0xc7, 0xff, 0x7f, 0xc7, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x7f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0xff, 0xbe, 0xff, 0x9e, 0xae, 0xec, 0x18, 0x85, 0x78, 0x28, 0x11, 0x37, + 0x00, 0x00, 0x04, 0x17, 0x85, 0x54, 0xfb, 0x9d, 0xdc, 0xbe, 0xae, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x7f, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0x7f, 0xcf, 0xff, 0x5f, 0xc7, 0xff, 0x3f, 0xc7, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0xbe, 0xae, 0xff, 0xfb, 0x9d, 0xdc, 0x17, 0x85, 0x54, 0x00, 0x00, 0x04, + 0x00, 0x00, 0x00, 0xf3, 0x63, 0x2f, 0xb6, 0x7c, 0x8f, 0x1b, 0xa6, 0xd8, 0x1f, 0xbf, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x9f, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xdf, 0xd7, 0xff, 0xbf, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x5f, 0xc7, 0xff, 0x1f, 0xbf, 0xff, 0x1b, 0xa6, 0xd8, 0xb6, 0x7c, 0x8f, 0xf3, 0x63, 0x2f, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x0f, 0x8a, 0x21, 0x3c, 0x59, 0x8d, 0x98, 0xbe, 0xb6, 0xf3, 0x1f, 0xbf, 0xff, 0x3f, 0xbf, 0xfc, 0x3f, 0xbf, 0xfc, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x5f, 0xc7, 0xff, 0x9f, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xdf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0xdf, 0xcf, 0xff, 0xbf, 0xcf, 0xff, 0x9f, 0xcf, 0xff, 0x5f, 0xc7, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xff, 0x3f, 0xbf, 0xfc, 0x3f, 0xbf, 0xfc, 0x1f, 0xbf, 0xff, 0xbe, 0xb6, 0xf3, 0x59, 0x8d, 0x98, 0x8a, 0x21, 0x3c, 0x03, 0x00, 0x0f, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x0f, 0x75, 0x74, 0x40, 0x79, 0x8d, 0x83, 0x3c, 0xa6, 0xb4, 0x9d, 0xae, 0xd8, 0xde, 0xb6, 0xe7, 0xde, 0xb6, 0xec, 0xde, 0xb6, 0xf0, 0xde, 0xb6, 0xf3, 0xde, 0xb6, 0xf3, 0xde, 0xb6, 0xf3, 0xde, 0xb6, 0xf3, 0xde, 0xb6, 0xf3, 0xfe, 0xb6, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xbe, 0xf3, 0xfe, 0xb6, 0xf3, 0xde, 0xb6, 0xf3, 0xde, 0xb6, 0xf3, 0xde, 0xb6, 0xf3, 0xde, 0xb6, 0xf3, 0xde, 0xb6, 0xf3, 0xde, 0xb6, 0xf0, 0xde, 0xb6, 0xec, 0xde, 0xb6, 0xe7, 0x9d, 0xae, 0xd8, 0x3c, 0xa6, 0xb4, 0x79, 0x8d, 0x83, 0x75, 0x74, 0x40, 0x02, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xae, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x10, 0x8d, 0x3a, 0x3f, 0x38, 0x8d, 0x88, 0x3c, 0xa6, 0xc3, 0x7d, 0xae, 0xd7, 0xbd, 0xae, 0xe3, 0x9d, 0xae, 0xe8, 0x9d, 0xae, 0xeb, 0x9d, 0xae, 0xec, 0x9d, 0xae, 0xec, 0x9d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x7d, 0xae, 0xec, 0x9d, 0xae, 0xec, 0x9d, 0xae, 0xec, 0x9d, 0xae, 0xec, 0x9d, 0xae, 0xeb, 0x9d, 0xae, 0xe8, 0xbd, 0xae, 0xe3, 0x7d, 0xae, 0xd7, 0x3c, 0xa6, 0xc3, 0x38, 0x8d, 0x88, 0x8d, 0x3a, 0x3f, 0x04, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xae, 0x42, 0x00, +#endif +#if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP != 0 + /*Pixel format: Alpha 8 bit, Red: 5 bit, Green: 6 bit, Blue: 5 bit BUT the 2 color bytes are swapped*/ + 0x00, 0xed, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4b, 0x0c, 0x00, 0xcd, 0x34, 0x01, 0x4f, 0x73, 0x01, 0x6f, 0xac, 0x01, 0x90, 0xd7, 0x01, 0x90, 0xef, 0x01, 0xb0, 0xf8, 0x01, 0xb0, 0xfb, 0x01, 0xb0, 0xfb, 0x01, 0x90, 0xfb, 0x01, 0x70, 0xfb, 0x01, 0x6f, 0xfb, 0x01, 0xb0, 0xfb, 0x1a, 0x11, 0xfb, 0x2a, 0x92, 0xfb, 0x3a, 0xf3, 0xfb, 0x43, 0x34, 0xfb, 0x4b, 0x54, 0xfc, 0x53, 0x74, 0xfc, 0x53, 0x95, 0xfc, 0x53, 0x95, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x94, 0xfc, 0x53, 0x95, 0xfc, 0x53, 0x95, 0xfc, 0x53, 0x74, 0xfc, 0x4b, 0x54, 0xfc, 0x43, 0x34, 0xfb, 0x3a, 0xf3, 0xfb, 0x2a, 0x92, 0xfb, 0x1a, 0x11, 0xfb, 0x01, 0xb0, 0xfb, 0x01, 0x6f, 0xfb, 0x01, 0x70, 0xfb, 0x01, 0x90, 0xfb, 0x01, 0xb0, 0xfb, 0x01, 0xb0, 0xfb, 0x01, 0xb0, 0xf8, 0x01, 0x90, 0xef, 0x01, 0x90, 0xd7, 0x01, 0x6f, 0xac, 0x01, 0x4f, 0x73, 0x00, 0xcd, 0x34, 0x00, 0x4b, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xed, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x07, 0x03, 0x00, 0x4b, 0x10, 0x01, 0x2f, 0x3f, 0x01, 0x6f, 0x78, 0x01, 0xb0, 0xa7, 0x01, 0xd0, 0xcb, 0x01, 0xd1, 0xe4, 0x01, 0xd1, 0xf4, 0x01, 0xd1, 0xfb, 0x01, 0xd1, 0xfc, 0x01, 0xd1, 0xfc, 0x01, 0xd1, 0xfc, 0x09, 0xf1, 0xfc, 0x1a, 0x72, 0xfc, 0x32, 0xf3, 0xfc, 0x4b, 0x95, 0xfc, 0x5b, 0xf6, 0xfc, 0x6c, 0x57, 0xfc, 0x7c, 0x97, 0xfc, 0x7c, 0xb8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x84, 0xd8, 0xfc, 0x7c, 0xb8, 0xfc, 0x7c, 0x97, 0xfc, 0x6c, 0x57, 0xfc, 0x5b, 0xf6, 0xfc, 0x4b, 0x95, 0xfc, 0x32, 0xf3, 0xfc, 0x1a, 0x72, 0xfc, 0x09, 0xf1, 0xfc, 0x01, 0xd1, 0xfc, 0x01, 0xd1, 0xfc, 0x01, 0xd1, 0xfc, 0x01, 0xd1, 0xfb, 0x01, 0xd1, 0xf4, 0x01, 0xd1, 0xe4, 0x01, 0xd0, 0xcb, 0x01, 0xb0, 0xa7, 0x01, 0x6f, 0x78, 0x01, 0x2f, 0x3f, 0x00, 0x4b, 0x10, 0x00, 0x07, 0x03, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x4b, 0x13, 0x00, 0xad, 0x44, 0x01, 0x6f, 0x98, 0x01, 0xb0, 0xe8, 0x01, 0xf1, 0xfb, 0x02, 0x12, 0xfc, 0x02, 0x32, 0xfc, 0x02, 0x32, 0xff, 0x02, 0x32, 0xff, 0x02, 0x12, 0xff, 0x02, 0x12, 0xff, 0x0a, 0x52, 0xff, 0x22, 0xf4, 0xff, 0x5c, 0x37, 0xff, 0x85, 0x59, 0xff, 0x9d, 0xdb, 0xff, 0xb6, 0x3c, 0xff, 0xc6, 0x9c, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xc6, 0x9c, 0xff, 0xb6, 0x3c, 0xff, 0x9d, 0xdb, 0xff, 0x85, 0x59, 0xff, 0x5c, 0x37, 0xff, 0x22, 0xf4, 0xff, 0x0a, 0x52, 0xff, 0x02, 0x12, 0xff, 0x02, 0x12, 0xff, 0x02, 0x32, 0xff, 0x02, 0x32, 0xff, 0x02, 0x32, 0xfc, 0x02, 0x12, 0xfc, 0x01, 0xf1, 0xfb, 0x01, 0xb0, 0xe8, 0x01, 0x6f, 0x98, 0x00, 0xad, 0x44, 0x00, 0x4b, 0x13, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x0e, 0x33, 0x01, 0x4f, 0x94, 0x01, 0xb0, 0xd8, 0x01, 0xf1, 0xff, 0x02, 0x11, 0xff, 0x02, 0x32, 0xff, 0x02, 0x32, 0xff, 0x02, 0x32, 0xff, 0x02, 0x32, 0xff, 0x02, 0x32, 0xff, 0x0a, 0x73, 0xff, 0x3b, 0x75, 0xff, 0x6c, 0xb8, 0xff, 0x8d, 0x7a, 0xff, 0xa6, 0x1b, 0xff, 0xb6, 0x5c, 0xff, 0xbe, 0x9d, 0xff, 0xc6, 0xbd, 0xff, 0xc6, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xce, 0xdd, 0xff, 0xc6, 0xdd, 0xff, 0xc6, 0xbd, 0xff, 0xbe, 0x9d, 0xff, 0xb6, 0x5c, 0xff, 0xa6, 0x1b, 0xff, 0x8d, 0x7a, 0xff, 0x6c, 0xb8, 0xff, 0x3b, 0x75, 0xff, 0x0a, 0x73, 0xff, 0x02, 0x32, 0xff, 0x02, 0x32, 0xff, 0x02, 0x32, 0xff, 0x02, 0x32, 0xff, 0x02, 0x32, 0xff, 0x02, 0x11, 0xff, 0x01, 0xf1, 0xff, 0x01, 0xb0, 0xd8, 0x01, 0x4f, 0x94, 0x01, 0x0e, 0x33, 0x00, 0x00, 0x00, + 0x00, 0x07, 0x0c, 0x01, 0x4f, 0x5b, 0x01, 0x90, 0xdf, 0x01, 0xf1, 0xff, 0x02, 0x32, 0xff, 0x02, 0x32, 0xff, 0x02, 0x32, 0xff, 0x02, 0x32, 0xff, 0x02, 0x32, 0xff, 0x02, 0x12, 0xff, 0x0a, 0x72, 0xff, 0x2b, 0x34, 0xff, 0x6c, 0xb8, 0xff, 0xae, 0x1c, 0xff, 0xae, 0x3c, 0xff, 0xae, 0x3c, 0xff, 0xae, 0x3c, 0xff, 0xae, 0x1c, 0xff, 0xae, 0x1c, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1b, 0xff, 0xae, 0x1c, 0xff, 0xae, 0x1c, 0xff, 0xae, 0x3c, 0xff, 0xae, 0x3c, 0xff, 0xae, 0x3c, 0xff, 0xae, 0x1c, 0xff, 0x6c, 0xb8, 0xff, 0x2b, 0x34, 0xff, 0x0a, 0x72, 0xff, 0x02, 0x12, 0xff, 0x02, 0x32, 0xff, 0x02, 0x32, 0xff, 0x02, 0x32, 0xff, 0x02, 0x32, 0xff, 0x02, 0x32, 0xff, 0x01, 0xf1, 0xff, 0x01, 0x90, 0xdf, 0x01, 0x4f, 0x5b, 0x00, 0x07, 0x0c, + 0x00, 0x6c, 0x40, 0x01, 0x90, 0x80, 0x0a, 0x11, 0xef, 0x0a, 0x52, 0xff, 0x0a, 0x73, 0xff, 0x0a, 0x73, 0xff, 0x0a, 0x52, 0xff, 0x0a, 0x52, 0xff, 0x02, 0x52, 0xff, 0x02, 0x32, 0xff, 0x2b, 0x34, 0xff, 0x6c, 0xb8, 0xff, 0x95, 0x9a, 0xff, 0xa5, 0xfb, 0xff, 0xa5, 0xfb, 0xff, 0x9d, 0xfb, 0xff, 0x9d, 0xfb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xdb, 0xff, 0x9d, 0xfb, 0xff, 0x9d, 0xfb, 0xff, 0xa5, 0xfb, 0xff, 0xa5, 0xfb, 0xff, 0x95, 0x9a, 0xff, 0x6c, 0xb8, 0xff, 0x2b, 0x34, 0xff, 0x02, 0x32, 0xff, 0x02, 0x52, 0xff, 0x0a, 0x52, 0xff, 0x0a, 0x52, 0xff, 0x0a, 0x73, 0xff, 0x0a, 0x73, 0xff, 0x0a, 0x52, 0xff, 0x0a, 0x11, 0xef, 0x01, 0x90, 0x80, 0x00, 0x6c, 0x40, + 0x00, 0xcd, 0x6c, 0x09, 0xd0, 0x9f, 0x12, 0x93, 0xf3, 0x12, 0xb3, 0xff, 0x12, 0xb3, 0xff, 0x12, 0xb3, 0xff, 0x12, 0xb3, 0xff, 0x12, 0x93, 0xff, 0x12, 0x93, 0xff, 0x12, 0xb3, 0xff, 0x4b, 0xf6, 0xff, 0x95, 0xdb, 0xff, 0x9d, 0xfb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xbb, 0xff, 0x9d, 0xfb, 0xff, 0x9d, 0xdb, 0xff, 0x4b, 0xf7, 0xff, 0x12, 0xb3, 0xff, 0x12, 0x93, 0xff, 0x12, 0x93, 0xff, 0x12, 0xb3, 0xff, 0x12, 0xb3, 0xff, 0x12, 0xb3, 0xff, 0x12, 0xb3, 0xff, 0x12, 0x93, 0xf3, 0x09, 0xd0, 0x9f, 0x00, 0xcd, 0x6c, + 0x09, 0x4e, 0x83, 0x12, 0x31, 0xac, 0x22, 0xf4, 0xf7, 0x23, 0x15, 0xff, 0x23, 0x15, 0xff, 0x23, 0x15, 0xff, 0x23, 0x15, 0xff, 0x22, 0xf5, 0xff, 0x23, 0x15, 0xff, 0x3b, 0x96, 0xff, 0x64, 0x98, 0xff, 0x95, 0xbb, 0xff, 0x95, 0xdb, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x95, 0xdb, 0xff, 0x95, 0xbb, 0xff, 0x64, 0x98, 0xff, 0x3b, 0x96, 0xff, 0x23, 0x15, 0xff, 0x22, 0xf5, 0xff, 0x23, 0x15, 0xff, 0x23, 0x15, 0xff, 0x23, 0x15, 0xff, 0x23, 0x15, 0xff, 0x22, 0xf4, 0xf7, 0x12, 0x31, 0xac, 0x09, 0x4e, 0x83, + 0x09, 0x8e, 0x90, 0x22, 0x72, 0xb7, 0x33, 0x55, 0xf8, 0x33, 0x76, 0xff, 0x33, 0x76, 0xff, 0x33, 0x96, 0xff, 0x33, 0x76, 0xff, 0x33, 0x76, 0xff, 0x3b, 0x96, 0xff, 0x4b, 0xf7, 0xff, 0x64, 0xb9, 0xff, 0x85, 0x7b, 0xff, 0x8d, 0x9b, 0xff, 0x85, 0x7b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x85, 0x7b, 0xff, 0x8d, 0x9b, 0xff, 0x85, 0x7b, 0xff, 0x64, 0xb9, 0xff, 0x4b, 0xf7, 0xff, 0x3b, 0x96, 0xff, 0x33, 0x76, 0xff, 0x33, 0x76, 0xff, 0x33, 0x96, 0xff, 0x33, 0x76, 0xff, 0x33, 0x76, 0xff, 0x33, 0x55, 0xf8, 0x22, 0x72, 0xb7, 0x09, 0x8e, 0x90, + 0x11, 0xae, 0x94, 0x2a, 0xb2, 0xb8, 0x43, 0xb6, 0xf8, 0x43, 0xf7, 0xff, 0x43, 0xf7, 0xff, 0x43, 0xf7, 0xff, 0x43, 0xf7, 0xff, 0x43, 0xf7, 0xff, 0x43, 0xf7, 0xff, 0x4c, 0x18, 0xff, 0x5c, 0x79, 0xff, 0x75, 0x1a, 0xff, 0x85, 0x5b, 0xff, 0x85, 0x7b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x8d, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x9b, 0xff, 0x85, 0x7b, 0xff, 0x85, 0x5b, 0xff, 0x75, 0x1a, 0xff, 0x5c, 0x79, 0xff, 0x4b, 0xf8, 0xff, 0x43, 0xf7, 0xff, 0x43, 0xf7, 0xff, 0x43, 0xf7, 0xff, 0x43, 0xf7, 0xff, 0x43, 0xf7, 0xff, 0x43, 0xf7, 0xff, 0x43, 0xb6, 0xf8, 0x2a, 0xb2, 0xb8, 0x11, 0xae, 0x94, + 0x19, 0xae, 0x97, 0x32, 0xf3, 0xbb, 0x54, 0x18, 0xf8, 0x54, 0x59, 0xff, 0x54, 0x59, 0xff, 0x54, 0x59, 0xff, 0x54, 0x59, 0xff, 0x54, 0x59, 0xff, 0x54, 0x59, 0xff, 0x54, 0x59, 0xff, 0x5c, 0x99, 0xff, 0x6c, 0xda, 0xff, 0x75, 0x1a, 0xff, 0x75, 0x3a, 0xff, 0x75, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x7d, 0x3b, 0xff, 0x75, 0x3b, 0xff, 0x75, 0x3a, 0xff, 0x75, 0x1a, 0xff, 0x6c, 0xda, 0xff, 0x5c, 0x99, 0xff, 0x54, 0x59, 0xff, 0x54, 0x59, 0xff, 0x54, 0x59, 0xff, 0x54, 0x59, 0xff, 0x54, 0x59, 0xff, 0x54, 0x59, 0xff, 0x54, 0x59, 0xff, 0x54, 0x18, 0xf8, 0x32, 0xf3, 0xbb, 0x19, 0xae, 0x97, + 0x19, 0xce, 0x98, 0x3b, 0x13, 0xbb, 0x5c, 0x79, 0xf8, 0x64, 0xba, 0xff, 0x64, 0xba, 0xff, 0x64, 0xba, 0xff, 0x64, 0xba, 0xff, 0x64, 0xba, 0xff, 0x64, 0xba, 0xff, 0x64, 0xba, 0xff, 0x64, 0xba, 0xff, 0x64, 0xba, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x6c, 0xda, 0xff, 0x64, 0xba, 0xff, 0x64, 0xba, 0xff, 0x64, 0xba, 0xff, 0x64, 0xba, 0xff, 0x64, 0xba, 0xff, 0x64, 0xba, 0xff, 0x64, 0xba, 0xff, 0x64, 0xba, 0xff, 0x64, 0xba, 0xff, 0x5c, 0x79, 0xf8, 0x3b, 0x13, 0xbb, 0x19, 0xce, 0x98, + 0x21, 0xee, 0x97, 0x43, 0x54, 0xbb, 0x6c, 0xba, 0xf8, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x74, 0xfb, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x74, 0xfb, 0xff, 0x74, 0xfb, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x75, 0x1b, 0xff, 0x6c, 0xba, 0xf8, 0x43, 0x54, 0xbb, 0x21, 0xee, 0x97, + 0x2a, 0x0e, 0x97, 0x4b, 0x74, 0xbb, 0x74, 0xfb, 0xf8, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x7d, 0x5c, 0xff, 0x74, 0xfb, 0xf8, 0x4b, 0x74, 0xbb, 0x2a, 0x0e, 0x97, + 0x2a, 0x2f, 0x94, 0x53, 0xb5, 0xb8, 0x7d, 0x3b, 0xf7, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x85, 0x7c, 0xff, 0x7d, 0x3b, 0xf7, 0x53, 0xb5, 0xb8, 0x2a, 0x2f, 0x94, + 0x2a, 0x4f, 0x94, 0x53, 0xd5, 0xb8, 0x7d, 0x5b, 0xf7, 0x85, 0xbd, 0xff, 0x85, 0xbd, 0xff, 0x8d, 0xbd, 0xff, 0x85, 0xbd, 0xff, 0x85, 0xbd, 0xff, 0x85, 0xbd, 0xff, 0x85, 0xbd, 0xff, 0x85, 0xbd, 0xff, 0x85, 0xbd, 0xff, 0x85, 0xbd, 0xff, 0x85, 0xbd, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbc, 0xff, 0x85, 0xbd, 0xff, 0x85, 0xbd, 0xff, 0x85, 0xbd, 0xff, 0x85, 0xbd, 0xff, 0x85, 0xbd, 0xff, 0x85, 0xbd, 0xff, 0x85, 0xbd, 0xff, 0x85, 0xbd, 0xff, 0x8d, 0xbd, 0xff, 0x85, 0xbd, 0xff, 0x85, 0xbd, 0xff, 0x7d, 0x5b, 0xf7, 0x53, 0xd5, 0xb8, 0x2a, 0x4f, 0x94, + 0x32, 0x6f, 0x93, 0x5b, 0xf5, 0xb8, 0x85, 0x9c, 0xf7, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x8d, 0xdd, 0xff, 0x85, 0x9c, 0xf7, 0x5b, 0xf5, 0xb8, 0x32, 0x6f, 0x93, + 0x32, 0x6f, 0x93, 0x64, 0x16, 0xb7, 0x8d, 0xbc, 0xf7, 0x96, 0x1d, 0xff, 0x95, 0xfd, 0xff, 0x95, 0xfd, 0xff, 0x95, 0xfd, 0xff, 0x95, 0xfd, 0xff, 0x95, 0xfd, 0xff, 0x95, 0xfd, 0xff, 0x95, 0xfd, 0xff, 0x95, 0xfd, 0xff, 0x95, 0xfd, 0xff, 0x95, 0xfd, 0xff, 0x95, 0xfd, 0xff, 0x95, 0xfd, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x96, 0x1d, 0xff, 0x95, 0xfd, 0xff, 0x95, 0xfd, 0xff, 0x95, 0xfd, 0xff, 0x95, 0xfd, 0xff, 0x95, 0xfd, 0xff, 0x95, 0xfd, 0xff, 0x95, 0xfd, 0xff, 0x95, 0xfd, 0xff, 0x95, 0xfd, 0xff, 0x95, 0xfd, 0xff, 0x95, 0xfd, 0xff, 0x95, 0xfd, 0xff, 0x96, 0x1d, 0xff, 0x8d, 0xbc, 0xf7, 0x64, 0x16, 0xb7, 0x32, 0x6f, 0x93, + 0x3a, 0x8f, 0x90, 0x64, 0x36, 0xb7, 0x95, 0xdc, 0xf7, 0x9e, 0x3e, 0xff, 0x9e, 0x3e, 0xff, 0x9e, 0x3e, 0xff, 0x9e, 0x3e, 0xff, 0x9e, 0x3e, 0xff, 0x9e, 0x3e, 0xff, 0x9e, 0x3e, 0xff, 0x9e, 0x3e, 0xff, 0x9e, 0x3e, 0xff, 0x9e, 0x3e, 0xff, 0x9e, 0x3e, 0xff, 0x9e, 0x3e, 0xff, 0x9e, 0x3e, 0xff, 0x9e, 0x3e, 0xff, 0x9e, 0x3e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x5e, 0xff, 0x9e, 0x3e, 0xff, 0x9e, 0x3e, 0xff, 0x9e, 0x3e, 0xff, 0x9e, 0x3e, 0xff, 0x9e, 0x3e, 0xff, 0x9e, 0x3e, 0xff, 0x9e, 0x3e, 0xff, 0x9e, 0x3e, 0xff, 0x9e, 0x3e, 0xff, 0x9e, 0x3e, 0xff, 0x9e, 0x3e, 0xff, 0x9e, 0x3e, 0xff, 0x9e, 0x3e, 0xff, 0x9e, 0x3e, 0xff, 0x9e, 0x3e, 0xff, 0x95, 0xdc, 0xf7, 0x64, 0x36, 0xb7, 0x3a, 0x8f, 0x90, + 0x42, 0xd0, 0x8f, 0x6c, 0x76, 0xb4, 0x9e, 0x1d, 0xf7, 0xa6, 0x5e, 0xff, 0xa6, 0x5e, 0xff, 0xa6, 0x5e, 0xff, 0xa6, 0x5e, 0xff, 0xa6, 0x5e, 0xff, 0xa6, 0x5e, 0xff, 0xa6, 0x5e, 0xff, 0xa6, 0x5e, 0xff, 0xa6, 0x5e, 0xff, 0xa6, 0x5e, 0xff, 0xa6, 0x5e, 0xff, 0xa6, 0x7e, 0xff, 0xa6, 0x7e, 0xff, 0xa6, 0x7e, 0xff, 0xa6, 0x7e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x7e, 0xff, 0xa6, 0x7e, 0xff, 0xa6, 0x7e, 0xff, 0xa6, 0x7e, 0xff, 0xa6, 0x5e, 0xff, 0xa6, 0x5e, 0xff, 0xa6, 0x5e, 0xff, 0xa6, 0x5e, 0xff, 0xa6, 0x5e, 0xff, 0xa6, 0x5e, 0xff, 0xa6, 0x5e, 0xff, 0xa6, 0x5e, 0xff, 0xa6, 0x5e, 0xff, 0xa6, 0x5e, 0xff, 0xa6, 0x5e, 0xff, 0x9e, 0x1d, 0xf7, 0x6c, 0x76, 0xb4, 0x42, 0xd0, 0x8f, + 0x42, 0xf0, 0x8b, 0x74, 0x97, 0xb3, 0x9e, 0x3d, 0xf7, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xae, 0x9e, 0xff, 0xae, 0xbf, 0xff, 0xae, 0xbf, 0xff, 0xae, 0xdf, 0xff, 0xb6, 0xdf, 0xff, 0xb6, 0xdf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xbf, 0xff, 0xb6, 0xdf, 0xff, 0xb6, 0xdf, 0xff, 0xae, 0xdf, 0xff, 0xae, 0xbf, 0xff, 0xae, 0xbf, 0xff, 0xae, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0xa6, 0x9e, 0xff, 0x9e, 0x3d, 0xf7, 0x74, 0x97, 0xb3, 0x42, 0xf0, 0x8b, + 0x4b, 0x31, 0x87, 0x7c, 0xd7, 0xb0, 0xa6, 0x7e, 0xf4, 0xae, 0xbf, 0xff, 0xae, 0xbf, 0xff, 0xae, 0xbf, 0xff, 0xae, 0xbf, 0xff, 0xae, 0xbf, 0xff, 0xae, 0xbf, 0xff, 0xae, 0xbf, 0xff, 0xae, 0xbf, 0xff, 0xae, 0xbf, 0xff, 0xae, 0xbf, 0xff, 0xae, 0xdf, 0xff, 0xb6, 0xdf, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xdf, 0xff, 0xae, 0xdf, 0xff, 0xae, 0xbf, 0xff, 0xae, 0xbf, 0xff, 0xae, 0xbf, 0xff, 0xae, 0xbf, 0xff, 0xae, 0xbf, 0xff, 0xae, 0xbf, 0xff, 0xae, 0xbf, 0xff, 0xae, 0xbf, 0xff, 0xae, 0xbf, 0xff, 0xae, 0xbf, 0xff, 0xa6, 0x7e, 0xf4, 0x7c, 0xd7, 0xb0, 0x4b, 0x31, 0x87, + 0x43, 0x10, 0x7b, 0x7c, 0xf8, 0xa7, 0xae, 0x9e, 0xf4, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xbf, 0x1f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x1f, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xb6, 0xff, 0xff, 0xae, 0x9e, 0xf4, 0x7c, 0xf8, 0xa7, 0x43, 0x10, 0x7b, + 0x32, 0x4d, 0x63, 0x7c, 0xf8, 0x97, 0xb6, 0xdf, 0xf0, 0xbf, 0x1f, 0xff, 0xbf, 0x1f, 0xff, 0xbf, 0x1f, 0xff, 0xbf, 0x1f, 0xff, 0xbf, 0x1f, 0xff, 0xbf, 0x1f, 0xff, 0xbf, 0x1f, 0xff, 0xbf, 0x1f, 0xff, 0xbf, 0x1f, 0xff, 0xbf, 0x1f, 0xff, 0xbf, 0x3f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x1f, 0xff, 0xbf, 0x1f, 0xff, 0xbf, 0x1f, 0xff, 0xbf, 0x1f, 0xff, 0xbf, 0x1f, 0xff, 0xbf, 0x1f, 0xff, 0xbf, 0x1f, 0xff, 0xbf, 0x1f, 0xff, 0xbf, 0x1f, 0xff, 0xbf, 0x1f, 0xff, 0xb6, 0xdf, 0xf0, 0x7c, 0xf8, 0x97, 0x32, 0x4d, 0x63, + 0x11, 0x28, 0x37, 0x85, 0x18, 0x78, 0xae, 0x9e, 0xec, 0xbe, 0xff, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x7f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0x9f, 0xff, 0xc7, 0x7f, 0xff, 0xc7, 0x5f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbe, 0xff, 0xff, 0xae, 0x9e, 0xec, 0x85, 0x18, 0x78, 0x11, 0x28, 0x37, + 0x00, 0x00, 0x04, 0x85, 0x17, 0x54, 0x9d, 0xfb, 0xdc, 0xae, 0xbe, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xc7, 0x3f, 0xff, 0xc7, 0x5f, 0xff, 0xcf, 0x7f, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0x7f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xae, 0xbe, 0xff, 0x9d, 0xfb, 0xdc, 0x85, 0x17, 0x54, 0x00, 0x00, 0x04, + 0x00, 0x00, 0x00, 0x63, 0xf3, 0x2f, 0x7c, 0xb6, 0x8f, 0xa6, 0x1b, 0xd8, 0xbf, 0x1f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0xbf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xd7, 0xdf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0x9f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xc7, 0x5f, 0xff, 0xbf, 0x1f, 0xff, 0xa6, 0x1b, 0xd8, 0x7c, 0xb6, 0x8f, 0x63, 0xf3, 0x2f, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x03, 0x0f, 0x21, 0x8a, 0x3c, 0x8d, 0x59, 0x98, 0xb6, 0xbe, 0xf3, 0xbf, 0x1f, 0xff, 0xbf, 0x3f, 0xfc, 0xbf, 0x3f, 0xfc, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xc7, 0x5f, 0xff, 0xcf, 0x9f, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xdf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0xdf, 0xff, 0xcf, 0xbf, 0xff, 0xcf, 0x9f, 0xff, 0xc7, 0x5f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xff, 0xbf, 0x3f, 0xfc, 0xbf, 0x3f, 0xfc, 0xbf, 0x1f, 0xff, 0xb6, 0xbe, 0xf3, 0x8d, 0x59, 0x98, 0x21, 0x8a, 0x3c, 0x00, 0x03, 0x0f, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x0f, 0x74, 0x75, 0x40, 0x8d, 0x79, 0x83, 0xa6, 0x3c, 0xb4, 0xae, 0x9d, 0xd8, 0xb6, 0xde, 0xe7, 0xb6, 0xde, 0xec, 0xb6, 0xde, 0xf0, 0xb6, 0xde, 0xf3, 0xb6, 0xde, 0xf3, 0xb6, 0xde, 0xf3, 0xb6, 0xde, 0xf3, 0xb6, 0xde, 0xf3, 0xb6, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xbe, 0xfe, 0xf3, 0xb6, 0xfe, 0xf3, 0xb6, 0xde, 0xf3, 0xb6, 0xde, 0xf3, 0xb6, 0xde, 0xf3, 0xb6, 0xde, 0xf3, 0xb6, 0xde, 0xf3, 0xb6, 0xde, 0xf0, 0xb6, 0xde, 0xec, 0xb6, 0xde, 0xe7, 0xae, 0x9d, 0xd8, 0xa6, 0x3c, 0xb4, 0x8d, 0x79, 0x83, 0x74, 0x75, 0x40, 0x00, 0x02, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x42, 0xae, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x10, 0x3a, 0x8d, 0x3f, 0x8d, 0x38, 0x88, 0xa6, 0x3c, 0xc3, 0xae, 0x7d, 0xd7, 0xae, 0xbd, 0xe3, 0xae, 0x9d, 0xe8, 0xae, 0x9d, 0xeb, 0xae, 0x9d, 0xec, 0xae, 0x9d, 0xec, 0xae, 0x9d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x7d, 0xec, 0xae, 0x9d, 0xec, 0xae, 0x9d, 0xec, 0xae, 0x9d, 0xec, 0xae, 0x9d, 0xeb, 0xae, 0x9d, 0xe8, 0xae, 0xbd, 0xe3, 0xae, 0x7d, 0xd7, 0xa6, 0x3c, 0xc3, 0x8d, 0x38, 0x88, 0x3a, 0x8d, 0x3f, 0x00, 0x04, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x42, 0xae, 0x00, +#endif +#if LV_COLOR_DEPTH == 32 + 0x6b, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x08, 0x00, 0x0c, 0x69, 0x18, 0x00, 0x34, 0x76, 0x27, 0x00, 0x73, 0x7b, 0x2d, 0x00, 0xac, 0x7e, 0x30, 0x00, 0xd7, 0x7f, 0x31, 0x00, 0xef, 0x80, 0x33, 0x00, 0xf8, 0x80, 0x33, 0x00, 0xfb, 0x80, 0x33, 0x00, 0xfb, 0x7e, 0x30, 0x00, 0xfb, 0x7d, 0x2e, 0x00, 0xfb, 0x7c, 0x2d, 0x00, 0xfb, 0x7f, 0x33, 0x00, 0xfb, 0x8a, 0x42, 0x15, 0xfb, 0x92, 0x50, 0x27, 0xfb, 0x98, 0x5b, 0x36, 0xfb, 0x9d, 0x64, 0x42, 0xfb, 0xa1, 0x6a, 0x4c, 0xfc, 0xa3, 0x6e, 0x51, 0xfc, 0xa5, 0x70, 0x54, 0xfc, 0xa5, 0x70, 0x54, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa4, 0x70, 0x53, 0xfc, 0xa5, 0x70, 0x54, 0xfc, 0xa5, 0x70, 0x54, 0xfc, 0xa3, 0x6e, 0x51, 0xfc, 0xa1, 0x6a, 0x4c, 0xfc, 0x9d, 0x64, 0x43, 0xfb, 0x98, 0x5b, 0x37, 0xfb, 0x92, 0x50, 0x28, 0xfb, 0x8a, 0x42, 0x16, 0xfb, 0x80, 0x33, 0x00, 0xfb, 0x7c, 0x2d, 0x00, 0xfb, 0x7d, 0x2e, 0x00, 0xfb, 0x7e, 0x30, 0x00, 0xfb, 0x80, 0x33, 0x00, 0xfb, 0x80, 0x33, 0x00, 0xfb, 0x80, 0x33, 0x00, 0xf8, 0x7f, 0x31, 0x00, 0xef, 0x7e, 0x30, 0x00, 0xd7, 0x7b, 0x2d, 0x00, 0xac, 0x76, 0x27, 0x00, 0x73, 0x69, 0x18, 0x00, 0x34, 0x5b, 0x08, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x1b, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x03, 0x5b, 0x0a, 0x00, 0x10, 0x75, 0x25, 0x00, 0x3f, 0x7c, 0x2d, 0x00, 0x78, 0x80, 0x33, 0x00, 0xa7, 0x83, 0x37, 0x00, 0xcb, 0x85, 0x38, 0x00, 0xe4, 0x86, 0x39, 0x00, 0xf4, 0x86, 0x3a, 0x00, 0xfb, 0x85, 0x39, 0x00, 0xfc, 0x85, 0x37, 0x00, 0xfc, 0x85, 0x38, 0x00, 0xfc, 0x88, 0x3d, 0x08, 0xfc, 0x91, 0x4d, 0x1b, 0xfc, 0x9c, 0x5e, 0x31, 0xfc, 0xa7, 0x6f, 0x48, 0xfc, 0xaf, 0x7d, 0x5b, 0xfc, 0xb5, 0x88, 0x6a, 0xfc, 0xba, 0x90, 0x75, 0xfc, 0xbd, 0x96, 0x7c, 0xfc, 0xbf, 0x98, 0x80, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x99, 0x81, 0xfc, 0xbf, 0x98, 0x80, 0xfc, 0xbd, 0x96, 0x7c, 0xfc, 0xba, 0x90, 0x76, 0xfc, 0xb5, 0x88, 0x6b, 0xfc, 0xaf, 0x7d, 0x5c, 0xfc, 0xa7, 0x6f, 0x49, 0xfc, 0x9c, 0x5e, 0x31, 0xfc, 0x92, 0x4d, 0x1b, 0xfc, 0x88, 0x3e, 0x08, 0xfc, 0x85, 0x38, 0x00, 0xfc, 0x85, 0x37, 0x00, 0xfc, 0x85, 0x39, 0x00, 0xfc, 0x86, 0x3a, 0x00, 0xfb, 0x86, 0x39, 0x00, 0xf4, 0x85, 0x38, 0x00, 0xe4, 0x83, 0x37, 0x00, 0xcb, 0x80, 0x33, 0x00, 0xa7, 0x7c, 0x2d, 0x00, 0x78, 0x75, 0x25, 0x00, 0x3f, 0x5b, 0x0a, 0x00, 0x10, 0x35, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x5c, 0x0a, 0x00, 0x13, 0x65, 0x15, 0x00, 0x44, 0x7a, 0x2c, 0x00, 0x98, 0x83, 0x36, 0x00, 0xe8, 0x89, 0x3d, 0x00, 0xfb, 0x8d, 0x42, 0x00, 0xfc, 0x8f, 0x44, 0x00, 0xfc, 0x90, 0x44, 0x00, 0xff, 0x8f, 0x44, 0x00, 0xff, 0x8e, 0x42, 0x00, 0xff, 0x8d, 0x41, 0x00, 0xff, 0x92, 0x49, 0x08, 0xff, 0x9e, 0x5d, 0x22, 0xff, 0xb6, 0x85, 0x57, 0xff, 0xcb, 0xa7, 0x83, 0xff, 0xd6, 0xb8, 0x9b, 0xff, 0xdf, 0xc6, 0xae, 0xff, 0xe4, 0xd1, 0xbd, 0xff, 0xe8, 0xd7, 0xc5, 0xff, 0xea, 0xda, 0xc9, 0xff, 0xea, 0xda, 0xc9, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc8, 0xff, 0xea, 0xda, 0xc9, 0xff, 0xea, 0xda, 0xc9, 0xff, 0xe8, 0xd7, 0xc6, 0xff, 0xe4, 0xd1, 0xbe, 0xff, 0xdf, 0xc6, 0xaf, 0xff, 0xd6, 0xb8, 0x9c, 0xff, 0xcb, 0xa7, 0x84, 0xff, 0xb7, 0x86, 0x58, 0xff, 0x9f, 0x5e, 0x23, 0xff, 0x93, 0x4a, 0x09, 0xff, 0x8d, 0x40, 0x00, 0xff, 0x8e, 0x42, 0x00, 0xff, 0x8f, 0x44, 0x00, 0xff, 0x90, 0x44, 0x00, 0xff, 0x8f, 0x44, 0x00, 0xfc, 0x8d, 0x42, 0x00, 0xfc, 0x89, 0x3d, 0x00, 0xfb, 0x83, 0x36, 0x00, 0xe8, 0x7a, 0x2c, 0x00, 0x98, 0x65, 0x15, 0x00, 0x44, 0x5c, 0x0a, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x70, 0x20, 0x00, 0x33, 0x76, 0x27, 0x00, 0x94, 0x80, 0x33, 0x00, 0xd8, 0x89, 0x3d, 0x00, 0xff, 0x8c, 0x41, 0x00, 0xff, 0x8e, 0x44, 0x00, 0xff, 0x90, 0x45, 0x00, 0xff, 0x90, 0x45, 0x00, 0xff, 0x8f, 0x43, 0x00, 0xff, 0x90, 0x45, 0x00, 0xff, 0x95, 0x4d, 0x0b, 0xff, 0xa9, 0x6e, 0x36, 0xff, 0xc0, 0x94, 0x67, 0xff, 0xd0, 0xae, 0x8a, 0xff, 0xdb, 0xc0, 0xa3, 0xff, 0xe1, 0xc9, 0xaf, 0xff, 0xe5, 0xd0, 0xb8, 0xff, 0xe8, 0xd5, 0xbf, 0xff, 0xea, 0xd8, 0xc3, 0xff, 0xea, 0xd9, 0xc5, 0xff, 0xea, 0xd9, 0xc5, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xea, 0xd9, 0xc5, 0xff, 0xea, 0xd9, 0xc5, 0xff, 0xea, 0xd8, 0xc4, 0xff, 0xe8, 0xd5, 0xc0, 0xff, 0xe5, 0xd0, 0xb9, 0xff, 0xe1, 0xc9, 0xaf, 0xff, 0xdb, 0xc0, 0xa3, 0xff, 0xd0, 0xae, 0x8b, 0xff, 0xc1, 0x94, 0x68, 0xff, 0xa9, 0x6e, 0x36, 0xff, 0x95, 0x4d, 0x0b, 0xff, 0x90, 0x45, 0x00, 0xff, 0x8f, 0x43, 0x00, 0xff, 0x90, 0x45, 0x00, 0xff, 0x90, 0x45, 0x00, 0xff, 0x8e, 0x44, 0x00, 0xff, 0x8c, 0x41, 0x00, 0xff, 0x89, 0x3d, 0x00, 0xff, 0x80, 0x33, 0x00, 0xd8, 0x76, 0x27, 0x00, 0x94, 0x70, 0x20, 0x00, 0x33, 0x00, 0x00, 0x00, 0x00, + 0x38, 0x00, 0x00, 0x0c, 0x78, 0x29, 0x00, 0x5b, 0x80, 0x32, 0x00, 0xdf, 0x88, 0x3b, 0x00, 0xff, 0x90, 0x45, 0x00, 0xff, 0x90, 0x45, 0x00, 0xff, 0x8f, 0x44, 0x00, 0xff, 0x8f, 0x44, 0x00, 0xff, 0x8e, 0x43, 0x00, 0xff, 0x8d, 0x40, 0x00, 0xff, 0x93, 0x4b, 0x0b, 0xff, 0xa2, 0x63, 0x29, 0xff, 0xc1, 0x96, 0x6b, 0xff, 0xdd, 0xc2, 0xa7, 0xff, 0xdf, 0xc6, 0xac, 0xff, 0xdd, 0xc3, 0xa8, 0xff, 0xdd, 0xc3, 0xa8, 0xff, 0xdd, 0xc2, 0xa7, 0xff, 0xdd, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa6, 0xff, 0xdc, 0xc2, 0xa6, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdc, 0xc2, 0xa6, 0xff, 0xdc, 0xc2, 0xa6, 0xff, 0xdc, 0xc2, 0xa7, 0xff, 0xdd, 0xc2, 0xa7, 0xff, 0xdd, 0xc2, 0xa7, 0xff, 0xdd, 0xc3, 0xa8, 0xff, 0xdd, 0xc3, 0xa8, 0xff, 0xdf, 0xc6, 0xac, 0xff, 0xdd, 0xc2, 0xa8, 0xff, 0xc1, 0x96, 0x6c, 0xff, 0xa3, 0x64, 0x29, 0xff, 0x94, 0x4c, 0x0b, 0xff, 0x8d, 0x40, 0x00, 0xff, 0x8e, 0x43, 0x00, 0xff, 0x8f, 0x44, 0x00, 0xff, 0x8f, 0x44, 0x00, 0xff, 0x90, 0x45, 0x00, 0xff, 0x90, 0x45, 0x00, 0xff, 0x88, 0x3b, 0x00, 0xff, 0x80, 0x32, 0x00, 0xdf, 0x78, 0x29, 0x00, 0x5b, 0x38, 0x00, 0x00, 0x0c, + 0x5f, 0x0e, 0x00, 0x40, 0x7e, 0x31, 0x04, 0x80, 0x8c, 0x41, 0x07, 0xef, 0x91, 0x47, 0x07, 0xff, 0x95, 0x4b, 0x07, 0xff, 0x95, 0x4b, 0x07, 0xff, 0x94, 0x4a, 0x07, 0xff, 0x94, 0x4a, 0x06, 0xff, 0x92, 0x47, 0x04, 0xff, 0x91, 0x45, 0x02, 0xff, 0xa4, 0x64, 0x2b, 0xff, 0xc1, 0x96, 0x6b, 0xff, 0xd2, 0xb0, 0x8d, 0xff, 0xdb, 0xbe, 0x9f, 0xff, 0xdb, 0xbe, 0x9f, 0xff, 0xd9, 0xbc, 0x9b, 0xff, 0xd9, 0xbb, 0x9a, 0xff, 0xd8, 0xba, 0x99, 0xff, 0xd8, 0xba, 0x99, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xb9, 0x98, 0xff, 0xd8, 0xba, 0x99, 0xff, 0xd8, 0xba, 0x99, 0xff, 0xd9, 0xbb, 0x9a, 0xff, 0xd9, 0xbc, 0x9b, 0xff, 0xdb, 0xbe, 0x9f, 0xff, 0xdb, 0xbe, 0x9f, 0xff, 0xd2, 0xb1, 0x8e, 0xff, 0xc2, 0x96, 0x6b, 0xff, 0xa4, 0x64, 0x2b, 0xff, 0x91, 0x45, 0x02, 0xff, 0x92, 0x47, 0x04, 0xff, 0x94, 0x4a, 0x06, 0xff, 0x94, 0x4a, 0x07, 0xff, 0x95, 0x4b, 0x07, 0xff, 0x95, 0x4b, 0x07, 0xff, 0x91, 0x47, 0x07, 0xff, 0x8c, 0x41, 0x07, 0xef, 0x7e, 0x31, 0x04, 0x80, 0x5f, 0x0e, 0x00, 0x40, + 0x68, 0x1a, 0x00, 0x6c, 0x83, 0x38, 0x0a, 0x9f, 0x98, 0x50, 0x12, 0xf3, 0x9c, 0x54, 0x13, 0xff, 0x9c, 0x54, 0x12, 0xff, 0x9c, 0x54, 0x12, 0xff, 0x9c, 0x53, 0x12, 0xff, 0x9b, 0x52, 0x10, 0xff, 0x9a, 0x52, 0x10, 0xff, 0x9c, 0x53, 0x13, 0xff, 0xb4, 0x7d, 0x48, 0xff, 0xd7, 0xb7, 0x94, 0xff, 0xdb, 0xbd, 0x9b, 0xff, 0xd6, 0xb3, 0x8f, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8e, 0xff, 0xd5, 0xb3, 0x8f, 0xff, 0xdb, 0xbd, 0x9c, 0xff, 0xd7, 0xb7, 0x95, 0xff, 0xb5, 0x7d, 0x49, 0xff, 0x9c, 0x53, 0x13, 0xff, 0x9a, 0x52, 0x10, 0xff, 0x9b, 0x52, 0x10, 0xff, 0x9c, 0x53, 0x12, 0xff, 0x9c, 0x54, 0x12, 0xff, 0x9c, 0x54, 0x12, 0xff, 0x9c, 0x54, 0x13, 0xff, 0x98, 0x50, 0x12, 0xf3, 0x83, 0x38, 0x0a, 0x9f, 0x68, 0x1a, 0x00, 0x6c, + 0x71, 0x28, 0x06, 0x83, 0x8b, 0x43, 0x14, 0xac, 0xa2, 0x5c, 0x20, 0xf7, 0xa7, 0x61, 0x23, 0xff, 0xa7, 0x61, 0x23, 0xff, 0xa7, 0x61, 0x23, 0xff, 0xa7, 0x61, 0x22, 0xff, 0xa5, 0x5e, 0x1e, 0xff, 0xa7, 0x62, 0x24, 0xff, 0xaf, 0x70, 0x36, 0xff, 0xc2, 0x8f, 0x5e, 0xff, 0xd7, 0xb5, 0x8e, 0xff, 0xd9, 0xb7, 0x92, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd5, 0xb0, 0x88, 0xff, 0xd9, 0xb7, 0x92, 0xff, 0xd7, 0xb5, 0x8e, 0xff, 0xc2, 0x8f, 0x5f, 0xff, 0xaf, 0x70, 0x36, 0xff, 0xa7, 0x62, 0x24, 0xff, 0xa5, 0x5e, 0x1e, 0xff, 0xa7, 0x61, 0x22, 0xff, 0xa7, 0x61, 0x23, 0xff, 0xa7, 0x61, 0x23, 0xff, 0xa7, 0x61, 0x23, 0xff, 0xa2, 0x5c, 0x20, 0xf7, 0x8b, 0x43, 0x14, 0xac, 0x71, 0x28, 0x06, 0x83, + 0x74, 0x2f, 0x0c, 0x90, 0x90, 0x4c, 0x1d, 0xb7, 0xab, 0x68, 0x2f, 0xf8, 0xb1, 0x6e, 0x33, 0xff, 0xb2, 0x6e, 0x33, 0xff, 0xb2, 0x6f, 0x33, 0xff, 0xb1, 0x6e, 0x32, 0xff, 0xaf, 0x6b, 0x2f, 0xff, 0xb2, 0x70, 0x35, 0xff, 0xba, 0x7e, 0x47, 0xff, 0xc7, 0x94, 0x63, 0xff, 0xd5, 0xad, 0x82, 0xff, 0xd7, 0xb1, 0x87, 0xff, 0xd6, 0xae, 0x84, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xaf, 0x85, 0xff, 0xd6, 0xae, 0x84, 0xff, 0xd7, 0xb1, 0x87, 0xff, 0xd5, 0xad, 0x82, 0xff, 0xc7, 0x94, 0x63, 0xff, 0xba, 0x7e, 0x47, 0xff, 0xb2, 0x70, 0x35, 0xff, 0xaf, 0x6c, 0x2f, 0xff, 0xb1, 0x6e, 0x32, 0xff, 0xb2, 0x6f, 0x33, 0xff, 0xb2, 0x6e, 0x33, 0xff, 0xb1, 0x6e, 0x33, 0xff, 0xab, 0x68, 0x2f, 0xf8, 0x90, 0x4c, 0x1d, 0xb7, 0x74, 0x2f, 0x0c, 0x90, + 0x73, 0x33, 0x12, 0x94, 0x93, 0x53, 0x28, 0xb8, 0xb4, 0x75, 0x3e, 0xf8, 0xbc, 0x7c, 0x43, 0xff, 0xbc, 0x7b, 0x43, 0xff, 0xbc, 0x7c, 0x43, 0xff, 0xbc, 0x7b, 0x43, 0xff, 0xbb, 0x7b, 0x42, 0xff, 0xbb, 0x7c, 0x43, 0xff, 0xbd, 0x7f, 0x48, 0xff, 0xc6, 0x8e, 0x5a, 0xff, 0xd1, 0xa1, 0x73, 0xff, 0xd5, 0xaa, 0x7d, 0xff, 0xd7, 0xad, 0x81, 0xff, 0xd8, 0xaf, 0x83, 0xff, 0xd8, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x85, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd9, 0xb0, 0x85, 0xff, 0xd9, 0xb0, 0x84, 0xff, 0xd8, 0xb0, 0x84, 0xff, 0xd8, 0xaf, 0x83, 0xff, 0xd7, 0xad, 0x81, 0xff, 0xd5, 0xaa, 0x7d, 0xff, 0xd1, 0xa1, 0x73, 0xff, 0xc6, 0x8d, 0x5a, 0xff, 0xbd, 0x7e, 0x48, 0xff, 0xbb, 0x7c, 0x43, 0xff, 0xbb, 0x7b, 0x42, 0xff, 0xbc, 0x7b, 0x43, 0xff, 0xbc, 0x7c, 0x43, 0xff, 0xbc, 0x7b, 0x43, 0xff, 0xbc, 0x7c, 0x43, 0xff, 0xb4, 0x75, 0x3e, 0xf8, 0x93, 0x53, 0x28, 0xb8, 0x73, 0x33, 0x12, 0x94, + 0x72, 0x36, 0x17, 0x97, 0x97, 0x5b, 0x31, 0xbb, 0xbe, 0x81, 0x4d, 0xf8, 0xc6, 0x89, 0x53, 0xff, 0xc6, 0x89, 0x53, 0xff, 0xc7, 0x89, 0x53, 0xff, 0xc6, 0x89, 0x53, 0xff, 0xc6, 0x89, 0x53, 0xff, 0xc6, 0x89, 0x53, 0xff, 0xc6, 0x89, 0x53, 0xff, 0xca, 0x8f, 0x5b, 0xff, 0xcf, 0x99, 0x68, 0xff, 0xd3, 0x9f, 0x6f, 0xff, 0xd4, 0xa3, 0x73, 0xff, 0xd5, 0xa4, 0x74, 0xff, 0xd5, 0xa4, 0x75, 0xff, 0xd5, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd6, 0xa4, 0x75, 0xff, 0xd5, 0xa4, 0x75, 0xff, 0xd5, 0xa4, 0x75, 0xff, 0xd5, 0xa4, 0x74, 0xff, 0xd4, 0xa3, 0x73, 0xff, 0xd3, 0x9f, 0x6f, 0xff, 0xcf, 0x99, 0x68, 0xff, 0xca, 0x8f, 0x5b, 0xff, 0xc6, 0x88, 0x53, 0xff, 0xc6, 0x89, 0x53, 0xff, 0xc6, 0x89, 0x53, 0xff, 0xc6, 0x89, 0x53, 0xff, 0xc7, 0x89, 0x53, 0xff, 0xc6, 0x89, 0x53, 0xff, 0xc6, 0x89, 0x53, 0xff, 0xbe, 0x81, 0x4d, 0xf8, 0x97, 0x5b, 0x31, 0xbb, 0x72, 0x36, 0x17, 0x97, + 0x72, 0x39, 0x1b, 0x98, 0x9c, 0x62, 0x3b, 0xbb, 0xc8, 0x8c, 0x5c, 0xf8, 0xd1, 0x95, 0x63, 0xff, 0xd0, 0x95, 0x62, 0xff, 0xd1, 0x96, 0x63, 0xff, 0xd0, 0x95, 0x63, 0xff, 0xd0, 0x95, 0x63, 0xff, 0xd0, 0x95, 0x63, 0xff, 0xd0, 0x95, 0x62, 0xff, 0xd1, 0x95, 0x63, 0xff, 0xd1, 0x96, 0x64, 0xff, 0xd2, 0x97, 0x65, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x98, 0x66, 0xff, 0xd2, 0x97, 0x65, 0xff, 0xd1, 0x96, 0x64, 0xff, 0xd1, 0x95, 0x63, 0xff, 0xd0, 0x95, 0x62, 0xff, 0xd0, 0x95, 0x63, 0xff, 0xd0, 0x95, 0x63, 0xff, 0xd0, 0x95, 0x63, 0xff, 0xd1, 0x96, 0x63, 0xff, 0xd0, 0x95, 0x62, 0xff, 0xd1, 0x95, 0x63, 0xff, 0xc8, 0x8c, 0x5c, 0xf8, 0x9c, 0x62, 0x3b, 0xbb, 0x72, 0x39, 0x1b, 0x98, + 0x73, 0x3d, 0x21, 0x97, 0xa0, 0x68, 0x43, 0xbb, 0xd0, 0x96, 0x68, 0xf8, 0xd9, 0xa0, 0x6f, 0xff, 0xd9, 0xa0, 0x6f, 0xff, 0xd9, 0xa0, 0x70, 0xff, 0xd9, 0xa0, 0x6f, 0xff, 0xd9, 0xa0, 0x70, 0xff, 0xd9, 0xa0, 0x70, 0xff, 0xd9, 0xa0, 0x6f, 0xff, 0xd9, 0x9f, 0x6f, 0xff, 0xd9, 0x9e, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9f, 0x6e, 0xff, 0xd9, 0x9e, 0x6e, 0xff, 0xd9, 0x9e, 0x6e, 0xff, 0xd9, 0x9f, 0x6f, 0xff, 0xd9, 0xa0, 0x6f, 0xff, 0xd9, 0xa0, 0x70, 0xff, 0xd9, 0xa0, 0x70, 0xff, 0xd9, 0xa0, 0x6f, 0xff, 0xd9, 0xa0, 0x70, 0xff, 0xd9, 0xa0, 0x6f, 0xff, 0xd9, 0xa0, 0x6f, 0xff, 0xd0, 0x96, 0x68, 0xf8, 0xa0, 0x68, 0x43, 0xbb, 0x73, 0x3d, 0x21, 0x97, + 0x74, 0x40, 0x25, 0x97, 0xa4, 0x6e, 0x4a, 0xbb, 0xd5, 0x9e, 0x71, 0xf8, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xe0, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xe0, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xdf, 0xa8, 0x79, 0xff, 0xd5, 0x9e, 0x71, 0xf8, 0xa4, 0x6e, 0x4a, 0xbb, 0x74, 0x40, 0x25, 0x97, + 0x76, 0x44, 0x28, 0x94, 0xa6, 0x73, 0x4e, 0xb8, 0xd8, 0xa4, 0x76, 0xf7, 0xe2, 0xae, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xae, 0x7f, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xae, 0x7f, 0xff, 0xe2, 0xad, 0x7e, 0xff, 0xe2, 0xae, 0x7e, 0xff, 0xd8, 0xa4, 0x76, 0xf7, 0xa6, 0x73, 0x4e, 0xb8, 0x76, 0x44, 0x28, 0x94, + 0x77, 0x48, 0x2b, 0x94, 0xa8, 0x78, 0x53, 0xb8, 0xdb, 0xa9, 0x7c, 0xf7, 0xe5, 0xb3, 0x84, 0xff, 0xe5, 0xb3, 0x84, 0xff, 0xe5, 0xb3, 0x85, 0xff, 0xe5, 0xb3, 0x84, 0xff, 0xe5, 0xb3, 0x84, 0xff, 0xe5, 0xb3, 0x84, 0xff, 0xe5, 0xb3, 0x84, 0xff, 0xe5, 0xb3, 0x84, 0xff, 0xe5, 0xb3, 0x84, 0xff, 0xe5, 0xb3, 0x84, 0xff, 0xe5, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe4, 0xb3, 0x84, 0xff, 0xe5, 0xb3, 0x84, 0xff, 0xe5, 0xb3, 0x84, 0xff, 0xe5, 0xb3, 0x84, 0xff, 0xe5, 0xb3, 0x84, 0xff, 0xe5, 0xb3, 0x84, 0xff, 0xe5, 0xb3, 0x84, 0xff, 0xe5, 0xb3, 0x84, 0xff, 0xe5, 0xb3, 0x84, 0xff, 0xe5, 0xb3, 0x85, 0xff, 0xe5, 0xb3, 0x84, 0xff, 0xe5, 0xb3, 0x84, 0xff, 0xdb, 0xa9, 0x7c, 0xf7, 0xa8, 0x78, 0x53, 0xb8, 0x77, 0x48, 0x2b, 0x94, + 0x79, 0x4b, 0x2f, 0x93, 0xab, 0x7c, 0x58, 0xb8, 0xde, 0xaf, 0x82, 0xf7, 0xe9, 0xb9, 0x8b, 0xff, 0xe8, 0xb9, 0x8b, 0xff, 0xe8, 0xb9, 0x8c, 0xff, 0xe8, 0xb8, 0x8b, 0xff, 0xe8, 0xb8, 0x8b, 0xff, 0xe8, 0xb8, 0x8b, 0xff, 0xe8, 0xb8, 0x8b, 0xff, 0xe8, 0xb8, 0x8b, 0xff, 0xe8, 0xb8, 0x8b, 0xff, 0xe8, 0xb9, 0x8b, 0xff, 0xe8, 0xb8, 0x8b, 0xff, 0xe8, 0xb8, 0x8b, 0xff, 0xe7, 0xb8, 0x8b, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8a, 0xff, 0xe7, 0xb8, 0x8b, 0xff, 0xe8, 0xb8, 0x8b, 0xff, 0xe8, 0xb8, 0x8b, 0xff, 0xe8, 0xb9, 0x8b, 0xff, 0xe8, 0xb8, 0x8b, 0xff, 0xe8, 0xb8, 0x8b, 0xff, 0xe8, 0xb8, 0x8b, 0xff, 0xe8, 0xb8, 0x8b, 0xff, 0xe8, 0xb8, 0x8b, 0xff, 0xe8, 0xb8, 0x8b, 0xff, 0xe8, 0xb9, 0x8c, 0xff, 0xe8, 0xb9, 0x8b, 0xff, 0xe9, 0xb9, 0x8b, 0xff, 0xde, 0xaf, 0x82, 0xf7, 0xab, 0x7c, 0x58, 0xb8, 0x79, 0x4b, 0x2f, 0x93, + 0x79, 0x4e, 0x33, 0x93, 0xad, 0x81, 0x5d, 0xb7, 0xe1, 0xb4, 0x88, 0xf7, 0xec, 0xbf, 0x91, 0xff, 0xeb, 0xbe, 0x91, 0xff, 0xeb, 0xbe, 0x92, 0xff, 0xeb, 0xbe, 0x91, 0xff, 0xeb, 0xbe, 0x91, 0xff, 0xeb, 0xbe, 0x91, 0xff, 0xeb, 0xbe, 0x91, 0xff, 0xeb, 0xbe, 0x91, 0xff, 0xeb, 0xbe, 0x91, 0xff, 0xeb, 0xbe, 0x91, 0xff, 0xeb, 0xbe, 0x91, 0xff, 0xea, 0xbe, 0x92, 0xff, 0xea, 0xbe, 0x92, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbf, 0x91, 0xff, 0xea, 0xbe, 0x92, 0xff, 0xea, 0xbe, 0x92, 0xff, 0xeb, 0xbe, 0x91, 0xff, 0xeb, 0xbe, 0x91, 0xff, 0xeb, 0xbe, 0x91, 0xff, 0xeb, 0xbe, 0x91, 0xff, 0xeb, 0xbe, 0x91, 0xff, 0xeb, 0xbe, 0x91, 0xff, 0xeb, 0xbe, 0x91, 0xff, 0xeb, 0xbe, 0x91, 0xff, 0xeb, 0xbe, 0x92, 0xff, 0xeb, 0xbe, 0x91, 0xff, 0xec, 0xbf, 0x91, 0xff, 0xe1, 0xb4, 0x88, 0xf7, 0xad, 0x81, 0x5d, 0xb7, 0x79, 0x4e, 0x33, 0x93, + 0x7a, 0x51, 0x37, 0x90, 0xaf, 0x86, 0x63, 0xb7, 0xe4, 0xba, 0x8e, 0xf7, 0xee, 0xc4, 0x97, 0xff, 0xee, 0xc4, 0x97, 0xff, 0xee, 0xc4, 0x97, 0xff, 0xee, 0xc4, 0x97, 0xff, 0xee, 0xc4, 0x97, 0xff, 0xee, 0xc4, 0x97, 0xff, 0xee, 0xc4, 0x97, 0xff, 0xee, 0xc4, 0x97, 0xff, 0xee, 0xc4, 0x97, 0xff, 0xed, 0xc4, 0x97, 0xff, 0xed, 0xc4, 0x97, 0xff, 0xee, 0xc4, 0x98, 0xff, 0xee, 0xc5, 0x99, 0xff, 0xee, 0xc6, 0x99, 0xff, 0xee, 0xc6, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc7, 0x99, 0xff, 0xee, 0xc6, 0x99, 0xff, 0xee, 0xc6, 0x99, 0xff, 0xee, 0xc5, 0x99, 0xff, 0xee, 0xc4, 0x98, 0xff, 0xed, 0xc4, 0x97, 0xff, 0xed, 0xc4, 0x97, 0xff, 0xee, 0xc4, 0x97, 0xff, 0xee, 0xc4, 0x97, 0xff, 0xee, 0xc4, 0x97, 0xff, 0xee, 0xc4, 0x97, 0xff, 0xee, 0xc4, 0x97, 0xff, 0xee, 0xc4, 0x97, 0xff, 0xee, 0xc4, 0x97, 0xff, 0xee, 0xc4, 0x97, 0xff, 0xee, 0xc4, 0x97, 0xff, 0xe4, 0xba, 0x8e, 0xf7, 0xaf, 0x86, 0x63, 0xb7, 0x7a, 0x51, 0x37, 0x90, + 0x7d, 0x57, 0x3d, 0x8f, 0xb2, 0x8b, 0x69, 0xb4, 0xe7, 0xbf, 0x95, 0xf7, 0xf1, 0xca, 0x9d, 0xff, 0xf1, 0xca, 0x9d, 0xff, 0xf1, 0xca, 0x9d, 0xff, 0xf1, 0xca, 0x9d, 0xff, 0xf1, 0xca, 0x9d, 0xff, 0xf1, 0xca, 0x9d, 0xff, 0xf1, 0xca, 0x9d, 0xff, 0xf1, 0xc9, 0x9d, 0xff, 0xf1, 0xc9, 0x9d, 0xff, 0xf0, 0xca, 0x9d, 0xff, 0xf0, 0xca, 0x9e, 0xff, 0xf1, 0xcc, 0xa0, 0xff, 0xf2, 0xce, 0xa2, 0xff, 0xf2, 0xce, 0xa3, 0xff, 0xf3, 0xce, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf2, 0xcf, 0xa3, 0xff, 0xf3, 0xce, 0xa3, 0xff, 0xf2, 0xce, 0xa3, 0xff, 0xf2, 0xce, 0xa2, 0xff, 0xf1, 0xcc, 0xa0, 0xff, 0xf0, 0xca, 0x9e, 0xff, 0xf0, 0xca, 0x9d, 0xff, 0xf1, 0xc9, 0x9d, 0xff, 0xf1, 0xc9, 0x9d, 0xff, 0xf1, 0xca, 0x9d, 0xff, 0xf1, 0xca, 0x9d, 0xff, 0xf1, 0xca, 0x9d, 0xff, 0xf1, 0xca, 0x9d, 0xff, 0xf1, 0xca, 0x9d, 0xff, 0xf1, 0xca, 0x9d, 0xff, 0xf1, 0xca, 0x9d, 0xff, 0xe7, 0xbf, 0x95, 0xf7, 0xb2, 0x8b, 0x69, 0xb4, 0x7d, 0x57, 0x3d, 0x8f, + 0x81, 0x5c, 0x42, 0x8b, 0xb6, 0x92, 0x6f, 0xb3, 0xea, 0xc5, 0x9b, 0xf7, 0xf4, 0xcf, 0xa4, 0xff, 0xf4, 0xcf, 0xa3, 0xff, 0xf4, 0xcf, 0xa4, 0xff, 0xf4, 0xcf, 0xa3, 0xff, 0xf4, 0xcf, 0xa3, 0xff, 0xf4, 0xcf, 0xa3, 0xff, 0xf4, 0xcf, 0xa3, 0xff, 0xf4, 0xcf, 0xa3, 0xff, 0xf4, 0xcf, 0xa3, 0xff, 0xf4, 0xcf, 0xa3, 0xff, 0xf4, 0xd1, 0xa5, 0xff, 0xf5, 0xd4, 0xa8, 0xff, 0xf6, 0xd6, 0xab, 0xff, 0xf7, 0xd7, 0xac, 0xff, 0xf7, 0xd7, 0xad, 0xff, 0xf7, 0xd7, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd6, 0xad, 0xff, 0xf7, 0xd7, 0xad, 0xff, 0xf7, 0xd7, 0xad, 0xff, 0xf7, 0xd7, 0xac, 0xff, 0xf6, 0xd6, 0xab, 0xff, 0xf5, 0xd4, 0xa8, 0xff, 0xf4, 0xd1, 0xa5, 0xff, 0xf4, 0xcf, 0xa3, 0xff, 0xf4, 0xcf, 0xa3, 0xff, 0xf4, 0xcf, 0xa3, 0xff, 0xf4, 0xcf, 0xa3, 0xff, 0xf4, 0xcf, 0xa3, 0xff, 0xf4, 0xcf, 0xa3, 0xff, 0xf4, 0xcf, 0xa3, 0xff, 0xf4, 0xcf, 0xa4, 0xff, 0xf4, 0xcf, 0xa3, 0xff, 0xf4, 0xcf, 0xa4, 0xff, 0xea, 0xc5, 0x9b, 0xf7, 0xb6, 0x92, 0x6f, 0xb3, 0x81, 0x5c, 0x42, 0x8b, + 0x86, 0x63, 0x48, 0x87, 0xbb, 0x98, 0x76, 0xb0, 0xed, 0xcb, 0xa1, 0xf4, 0xf7, 0xd5, 0xaa, 0xff, 0xf7, 0xd5, 0xaa, 0xff, 0xf7, 0xd5, 0xaa, 0xff, 0xf7, 0xd5, 0xaa, 0xff, 0xf7, 0xd5, 0xaa, 0xff, 0xf7, 0xd5, 0xaa, 0xff, 0xf7, 0xd5, 0xaa, 0xff, 0xf7, 0xd5, 0xa9, 0xff, 0xf7, 0xd5, 0xa9, 0xff, 0xf7, 0xd5, 0xaa, 0xff, 0xf7, 0xd7, 0xac, 0xff, 0xf9, 0xda, 0xb0, 0xff, 0xfa, 0xdd, 0xb3, 0xff, 0xfa, 0xde, 0xb4, 0xff, 0xfa, 0xde, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xdd, 0xb4, 0xff, 0xfa, 0xde, 0xb4, 0xff, 0xfa, 0xde, 0xb4, 0xff, 0xfa, 0xdd, 0xb3, 0xff, 0xf9, 0xda, 0xb0, 0xff, 0xf7, 0xd7, 0xac, 0xff, 0xf7, 0xd5, 0xaa, 0xff, 0xf7, 0xd5, 0xa9, 0xff, 0xf7, 0xd5, 0xa9, 0xff, 0xf7, 0xd5, 0xaa, 0xff, 0xf7, 0xd5, 0xaa, 0xff, 0xf7, 0xd5, 0xaa, 0xff, 0xf7, 0xd5, 0xaa, 0xff, 0xf7, 0xd5, 0xaa, 0xff, 0xf7, 0xd5, 0xaa, 0xff, 0xf7, 0xd5, 0xaa, 0xff, 0xed, 0xcb, 0xa1, 0xf4, 0xbb, 0x98, 0x76, 0xb0, 0x86, 0x63, 0x48, 0x87, + 0x81, 0x5f, 0x44, 0x7b, 0xbe, 0x9d, 0x7a, 0xa7, 0xf2, 0xd2, 0xa8, 0xf4, 0xfb, 0xdb, 0xb0, 0xff, 0xfa, 0xdb, 0xb0, 0xff, 0xfb, 0xdb, 0xb0, 0xff, 0xfa, 0xdb, 0xb0, 0xff, 0xfa, 0xdb, 0xb0, 0xff, 0xfa, 0xdb, 0xb0, 0xff, 0xfa, 0xdb, 0xb0, 0xff, 0xfa, 0xdb, 0xb0, 0xff, 0xfa, 0xdb, 0xb0, 0xff, 0xfa, 0xdb, 0xb0, 0xff, 0xfa, 0xdd, 0xb2, 0xff, 0xfb, 0xe1, 0xb7, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe5, 0xbb, 0xff, 0xfc, 0xe5, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfc, 0xe5, 0xbb, 0xff, 0xfc, 0xe5, 0xbb, 0xff, 0xfc, 0xe4, 0xbb, 0xff, 0xfb, 0xe1, 0xb7, 0xff, 0xfa, 0xdd, 0xb2, 0xff, 0xfa, 0xdb, 0xb0, 0xff, 0xfa, 0xdb, 0xb0, 0xff, 0xfa, 0xdb, 0xb0, 0xff, 0xfa, 0xdb, 0xb0, 0xff, 0xfa, 0xdb, 0xb0, 0xff, 0xfa, 0xdb, 0xb0, 0xff, 0xfa, 0xdb, 0xb0, 0xff, 0xfb, 0xdb, 0xb0, 0xff, 0xfa, 0xdb, 0xb0, 0xff, 0xfb, 0xdb, 0xb0, 0xff, 0xf2, 0xd2, 0xa8, 0xf4, 0xbe, 0x9d, 0x7a, 0xa7, 0x81, 0x5f, 0x44, 0x7b, + 0x6b, 0x48, 0x32, 0x63, 0xbd, 0x9e, 0x7c, 0x97, 0xf6, 0xda, 0xb0, 0xf0, 0xff, 0xe2, 0xb7, 0xff, 0xfd, 0xe0, 0xb6, 0xff, 0xfe, 0xe1, 0xb7, 0xff, 0xfd, 0xe2, 0xb6, 0xff, 0xfd, 0xe1, 0xb6, 0xff, 0xfd, 0xe1, 0xb6, 0xff, 0xfd, 0xe2, 0xb6, 0xff, 0xfd, 0xe1, 0xb6, 0xff, 0xfd, 0xe1, 0xb6, 0xff, 0xfd, 0xe1, 0xb7, 0xff, 0xfd, 0xe3, 0xb9, 0xff, 0xfe, 0xe7, 0xbe, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xe7, 0xbe, 0xff, 0xfd, 0xe3, 0xb9, 0xff, 0xfd, 0xe1, 0xb7, 0xff, 0xfd, 0xe1, 0xb6, 0xff, 0xfd, 0xe1, 0xb6, 0xff, 0xfd, 0xe2, 0xb6, 0xff, 0xfd, 0xe1, 0xb6, 0xff, 0xfd, 0xe1, 0xb6, 0xff, 0xfd, 0xe2, 0xb6, 0xff, 0xfe, 0xe1, 0xb7, 0xff, 0xfd, 0xe0, 0xb6, 0xff, 0xff, 0xe2, 0xb7, 0xff, 0xf6, 0xda, 0xb0, 0xf0, 0xbd, 0x9e, 0x7c, 0x97, 0x6b, 0x48, 0x32, 0x63, + 0x42, 0x23, 0x14, 0x37, 0xbd, 0xa0, 0x7f, 0x78, 0xed, 0xd2, 0xaa, 0xec, 0xf9, 0xde, 0xb5, 0xff, 0xff, 0xe6, 0xbc, 0xff, 0xff, 0xe6, 0xbc, 0xff, 0xff, 0xe5, 0xba, 0xff, 0xff, 0xe5, 0xba, 0xff, 0xff, 0xe5, 0xba, 0xff, 0xff, 0xe5, 0xba, 0xff, 0xff, 0xe5, 0xba, 0xff, 0xff, 0xe4, 0xba, 0xff, 0xff, 0xe5, 0xbb, 0xff, 0xff, 0xe7, 0xbd, 0xff, 0xff, 0xec, 0xc2, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xef, 0xc6, 0xff, 0xff, 0xec, 0xc2, 0xff, 0xff, 0xe7, 0xbd, 0xff, 0xff, 0xe5, 0xbb, 0xff, 0xff, 0xe4, 0xba, 0xff, 0xff, 0xe5, 0xba, 0xff, 0xff, 0xe5, 0xba, 0xff, 0xff, 0xe5, 0xba, 0xff, 0xff, 0xe5, 0xba, 0xff, 0xff, 0xe5, 0xba, 0xff, 0xff, 0xe6, 0xbc, 0xff, 0xff, 0xe6, 0xbc, 0xff, 0xf9, 0xde, 0xb5, 0xff, 0xed, 0xd2, 0xaa, 0xec, 0xbd, 0xa0, 0x7f, 0x78, 0x42, 0x23, 0x14, 0x37, + 0x00, 0x00, 0x00, 0x04, 0xb9, 0xa0, 0x81, 0x54, 0xda, 0xbe, 0x99, 0xdc, 0xed, 0xd3, 0xac, 0xff, 0xff, 0xe9, 0xbe, 0xff, 0xff, 0xe9, 0xbe, 0xff, 0xff, 0xe6, 0xbc, 0xff, 0xff, 0xe6, 0xbc, 0xff, 0xff, 0xe6, 0xbc, 0xff, 0xff, 0xe6, 0xbc, 0xff, 0xff, 0xe6, 0xbc, 0xff, 0xff, 0xe6, 0xbc, 0xff, 0xff, 0xe6, 0xbd, 0xff, 0xff, 0xe8, 0xbf, 0xff, 0xff, 0xee, 0xc5, 0xff, 0xff, 0xf3, 0xc9, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xca, 0xff, 0xff, 0xf3, 0xc9, 0xff, 0xff, 0xee, 0xc5, 0xff, 0xff, 0xe8, 0xbf, 0xff, 0xff, 0xe6, 0xbd, 0xff, 0xff, 0xe6, 0xbc, 0xff, 0xff, 0xe6, 0xbc, 0xff, 0xff, 0xe6, 0xbc, 0xff, 0xff, 0xe6, 0xbc, 0xff, 0xff, 0xe6, 0xbc, 0xff, 0xff, 0xe6, 0xbc, 0xff, 0xff, 0xe9, 0xbe, 0xff, 0xff, 0xe9, 0xbe, 0xff, 0xed, 0xd3, 0xac, 0xff, 0xda, 0xbe, 0x99, 0xdc, 0xb9, 0xa0, 0x81, 0x54, 0x00, 0x00, 0x00, 0x04, + 0x00, 0x00, 0x00, 0x00, 0x97, 0x7e, 0x63, 0x2f, 0xb3, 0x96, 0x77, 0x8f, 0xdc, 0xc2, 0x9d, 0xd8, 0xf9, 0xe2, 0xb8, 0xff, 0xff, 0xe7, 0xbd, 0xff, 0xff, 0xe8, 0xbe, 0xff, 0xff, 0xe7, 0xbd, 0xff, 0xff, 0xe7, 0xbd, 0xff, 0xff, 0xe7, 0xbd, 0xff, 0xff, 0xe7, 0xbd, 0xff, 0xff, 0xe7, 0xbd, 0xff, 0xff, 0xe7, 0xbd, 0xff, 0xff, 0xe9, 0xbf, 0xff, 0xff, 0xef, 0xc5, 0xff, 0xff, 0xf5, 0xca, 0xff, 0xff, 0xf8, 0xcd, 0xff, 0xff, 0xf9, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf8, 0xce, 0xff, 0xff, 0xf9, 0xce, 0xff, 0xff, 0xf8, 0xcd, 0xff, 0xff, 0xf5, 0xca, 0xff, 0xff, 0xef, 0xc5, 0xff, 0xff, 0xe9, 0xbf, 0xff, 0xff, 0xe7, 0xbd, 0xff, 0xff, 0xe7, 0xbd, 0xff, 0xff, 0xe7, 0xbd, 0xff, 0xff, 0xe7, 0xbd, 0xff, 0xff, 0xe7, 0xbd, 0xff, 0xff, 0xe7, 0xbd, 0xff, 0xff, 0xe8, 0xbe, 0xff, 0xff, 0xe7, 0xbd, 0xff, 0xf9, 0xe2, 0xb8, 0xff, 0xdc, 0xc2, 0x9d, 0xd8, 0xb3, 0x96, 0x77, 0x8f, 0x97, 0x7e, 0x63, 0x2f, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x0f, 0x50, 0x31, 0x1f, 0x3c, 0xc5, 0xaa, 0x88, 0x98, 0xee, 0xd5, 0xad, 0xf3, 0xf8, 0xdf, 0xb7, 0xff, 0xfe, 0xe5, 0xbc, 0xfc, 0xfe, 0xe5, 0xbc, 0xfc, 0xfe, 0xe5, 0xbb, 0xff, 0xfe, 0xe5, 0xbb, 0xff, 0xfe, 0xe5, 0xbb, 0xff, 0xfe, 0xe5, 0xbb, 0xff, 0xfe, 0xe4, 0xbb, 0xff, 0xfe, 0xe5, 0xbb, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xf0, 0xc6, 0xff, 0xfe, 0xf5, 0xca, 0xff, 0xfe, 0xf7, 0xcc, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf6, 0xcb, 0xff, 0xfe, 0xf7, 0xcc, 0xff, 0xfe, 0xf5, 0xca, 0xff, 0xfe, 0xf0, 0xc6, 0xff, 0xfe, 0xea, 0xc1, 0xff, 0xfe, 0xe5, 0xbb, 0xff, 0xfe, 0xe4, 0xbb, 0xff, 0xfe, 0xe5, 0xbb, 0xff, 0xfe, 0xe5, 0xbb, 0xff, 0xfe, 0xe5, 0xbb, 0xff, 0xfe, 0xe5, 0xbb, 0xff, 0xfe, 0xe5, 0xbc, 0xfc, 0xfe, 0xe5, 0xbc, 0xfc, 0xf8, 0xdf, 0xb7, 0xff, 0xee, 0xd5, 0xad, 0xf3, 0xc5, 0xaa, 0x88, 0x98, 0x50, 0x31, 0x1f, 0x3c, 0x15, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x0f, 0xa6, 0x8b, 0x6d, 0x40, 0xc6, 0xac, 0x8a, 0x83, 0xde, 0xc4, 0x9f, 0xb4, 0xec, 0xd2, 0xab, 0xd8, 0xf1, 0xd8, 0xb0, 0xe7, 0xf3, 0xda, 0xb2, 0xec, 0xf3, 0xda, 0xb1, 0xf0, 0xf2, 0xd9, 0xb1, 0xf3, 0xf1, 0xd9, 0xb1, 0xf3, 0xf1, 0xd8, 0xb0, 0xf3, 0xf1, 0xd8, 0xb0, 0xf3, 0xf1, 0xd9, 0xb1, 0xf3, 0xf1, 0xdb, 0xb3, 0xf3, 0xf1, 0xdd, 0xb5, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xde, 0xb6, 0xf3, 0xf1, 0xdd, 0xb5, 0xf3, 0xf1, 0xdb, 0xb3, 0xf3, 0xf1, 0xd9, 0xb1, 0xf3, 0xf1, 0xd8, 0xb0, 0xf3, 0xf1, 0xd8, 0xb0, 0xf3, 0xf1, 0xd9, 0xb1, 0xf3, 0xf2, 0xd9, 0xb1, 0xf3, 0xf3, 0xda, 0xb1, 0xf0, 0xf3, 0xda, 0xb2, 0xec, 0xf1, 0xd8, 0xb0, 0xe7, 0xec, 0xd2, 0xab, 0xd8, 0xde, 0xc4, 0x9f, 0xb4, 0xc6, 0xac, 0x8a, 0x83, 0xa6, 0x8b, 0x6d, 0x40, 0x0f, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x72, 0x54, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x02, 0x00, 0x10, 0x6b, 0x4f, 0x39, 0x3f, 0xc1, 0xa6, 0x85, 0x88, 0xde, 0xc4, 0x9f, 0xc3, 0xe8, 0xce, 0xa8, 0xd7, 0xec, 0xd3, 0xac, 0xe3, 0xeb, 0xd2, 0xab, 0xe8, 0xea, 0xd1, 0xab, 0xeb, 0xe9, 0xd1, 0xaa, 0xec, 0xe8, 0xd0, 0xa9, 0xec, 0xe8, 0xcf, 0xa9, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa8, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa8, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xce, 0xa7, 0xec, 0xe8, 0xcf, 0xa9, 0xec, 0xe8, 0xd0, 0xa9, 0xec, 0xe9, 0xd1, 0xaa, 0xec, 0xea, 0xd1, 0xab, 0xeb, 0xeb, 0xd2, 0xab, 0xe8, 0xec, 0xd3, 0xac, 0xe3, 0xe8, 0xce, 0xa8, 0xd7, 0xde, 0xc4, 0x9f, 0xc3, 0xc1, 0xa6, 0x85, 0x88, 0x6b, 0x4f, 0x39, 0x3f, 0x20, 0x02, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x54, 0x3d, 0x00, +#endif +}; + +lv_img_dsc_t imgbtn_img_1 = { + .header.always_zero = 0, + .header.w = 100, + .header.h = 30, + .data_size = 3000 * LV_IMG_PX_SIZE_ALPHA_BYTE, + .header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA, + .data = imgbtn_img_1_map, +}; + +#endif /*LV_USE_TESTS && LV_USE_IMGBTN*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_2.c b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_2.c new file mode 100644 index 0000000..4d04d85 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_2.c @@ -0,0 +1,149 @@ +#include "lvgl/lvgl.h" +#include "lv_ex_conf.h" + +#if LV_USE_TESTS && LV_USE_IMGBTN + +const uint8_t imgbtn_img_2_map[] = { +#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8 + /*Pixel format: Alpha 8 bit, Red: 3 bit, Green: 3 bit, Blue: 2 bit*/ + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0x27, 0x7c, 0x60, 0x7c, 0x9b, 0x7c, 0xcb, 0x7c, 0xe8, 0x7c, 0xf8, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xf8, 0x7c, 0xe8, 0x7c, 0xcb, 0x7c, 0x9b, 0x7c, 0x60, 0x7c, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x7c, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0x4b, 0x7c, 0xc7, 0x7c, 0xdf, 0x7c, 0xe8, 0x78, 0xf0, 0x78, 0xf7, 0x54, 0xfc, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xfc, 0x78, 0xf7, 0x78, 0xf0, 0x7c, 0xe8, 0x7c, 0xdf, 0x7c, 0xc7, 0x7c, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x7c, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0x58, 0x7c, 0xa8, 0x7c, 0xd8, 0x78, 0xff, 0x54, 0xff, 0x54, 0xff, 0x50, 0xff, 0x54, 0xff, 0x75, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x75, 0xff, 0x54, 0xff, 0x50, 0xff, 0x54, 0xff, 0x54, 0xff, 0x78, 0xff, 0x7c, 0xd8, 0x7c, 0xa8, 0x7c, 0x58, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x78, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0x78, 0x7c, 0xd4, 0x78, 0xff, 0x54, 0xff, 0x54, 0xff, 0x75, 0xff, 0x75, 0xff, 0x95, 0xff, 0x95, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0x96, 0xff, 0x95, 0xff, 0x95, 0xff, 0x75, 0xff, 0x54, 0xff, 0x54, 0xff, 0x78, 0xff, 0x7c, 0xd4, 0x78, 0x78, 0x00, 0x00, 0x00, 0x00, 0x78, 0x00, 0x78, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x78, 0x0c, 0x78, 0x6b, 0x7c, 0xff, 0x78, 0xff, 0x54, 0xff, 0x50, 0xff, 0x75, 0xff, 0x96, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0x9a, 0xff, 0x75, 0xff, 0x50, 0xff, 0x54, 0xff, 0x78, 0xff, 0x7c, 0xff, 0x78, 0x6b, 0x78, 0x0c, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, + 0x78, 0x00, 0x00, 0x00, 0x78, 0x07, 0x78, 0x67, 0x78, 0xff, 0x78, 0xff, 0x54, 0xff, 0x50, 0xff, 0x95, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0xba, 0xff, 0x95, 0xff, 0x71, 0xff, 0x54, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0x67, 0x78, 0x07, 0x00, 0x00, 0x78, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x78, 0x64, 0x78, 0xe7, 0x78, 0xff, 0x50, 0xff, 0x74, 0xff, 0x95, 0xff, 0x9a, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x9a, 0xff, 0x95, 0xff, 0x75, 0xff, 0x50, 0xff, 0x78, 0xff, 0x78, 0xe7, 0x78, 0x64, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x78, 0x1f, 0x78, 0xa3, 0x78, 0xff, 0x54, 0xff, 0x50, 0xff, 0x75, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x95, 0xff, 0x75, 0xff, 0x54, 0xff, 0x54, 0xff, 0x78, 0xff, 0x78, 0xa3, 0x78, 0x1f, 0x00, 0x00, + 0x00, 0x00, 0x78, 0x98, 0x78, 0xf7, 0x74, 0xff, 0x54, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x75, 0xff, 0x54, 0xff, 0x74, 0xff, 0x78, 0xf7, 0x78, 0x98, 0x00, 0x00, + 0x78, 0x1c, 0x78, 0xc4, 0x74, 0xff, 0x54, 0xff, 0x54, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x54, 0xff, 0x54, 0xff, 0x74, 0xff, 0x78, 0xc4, 0x78, 0x1c, + 0x78, 0x5c, 0x78, 0xd8, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x78, 0xd8, 0x78, 0x5c, + 0x78, 0x9c, 0x78, 0xe7, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x78, 0xe7, 0x78, 0x9c, + 0x78, 0xcf, 0x74, 0xf3, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x74, 0xf3, 0x78, 0xcf, + 0x74, 0xef, 0x74, 0xfb, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x74, 0xfb, 0x74, 0xef, + 0x74, 0xfb, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xff, 0x74, 0xfb, + 0x54, 0xfb, 0x54, 0xff, 0x54, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x54, 0xff, 0x54, 0xff, 0x54, 0xfb, + 0x54, 0xef, 0x54, 0xfb, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x54, 0xfb, 0x54, 0xef, + 0x54, 0xcf, 0x54, 0xf3, 0x74, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x74, 0xff, 0x54, 0xf3, 0x54, 0xcf, + 0x54, 0x9c, 0x54, 0xe7, 0x74, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x74, 0xff, 0x54, 0xe7, 0x54, 0x9c, + 0x54, 0x5c, 0x54, 0xd8, 0x74, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x74, 0xff, 0x54, 0xd8, 0x54, 0x5c, + 0x54, 0x1c, 0x54, 0xc4, 0x54, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x54, 0xff, 0x54, 0xc4, 0x54, 0x1c, + 0x00, 0x00, 0x54, 0x98, 0x54, 0xf7, 0x54, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x54, 0xff, 0x54, 0xf7, 0x54, 0x98, 0x00, 0x00, + 0x00, 0x00, 0x50, 0x1f, 0x50, 0xa3, 0x54, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x54, 0xff, 0x50, 0xa3, 0x50, 0x1f, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x50, 0x64, 0x50, 0xe7, 0x50, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x50, 0xff, 0x50, 0xe7, 0x50, 0x64, 0x00, 0x00, 0x00, 0x00, + 0x50, 0x00, 0x00, 0x00, 0x50, 0x07, 0x50, 0x67, 0x50, 0xff, 0x54, 0xff, 0x78, 0xff, 0x7c, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x7c, 0xff, 0x78, 0xff, 0x54, 0xff, 0x50, 0xff, 0x50, 0x67, 0x50, 0x07, 0x00, 0x00, 0x50, 0x00, + 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x50, 0x0c, 0x50, 0x6b, 0x50, 0xff, 0x50, 0xff, 0x78, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x78, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0x6b, 0x50, 0x0c, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x50, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x78, 0x50, 0xd4, 0x50, 0xff, 0x54, 0xff, 0x78, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x7c, 0xff, 0x78, 0xff, 0x54, 0xff, 0x50, 0xff, 0x50, 0xd4, 0x50, 0x78, 0x00, 0x00, 0x00, 0x00, 0x50, 0x00, 0x50, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x50, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x58, 0x50, 0xa8, 0x50, 0xd8, 0x50, 0xff, 0x74, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x78, 0xff, 0x74, 0xff, 0x50, 0xff, 0x50, 0xd8, 0x50, 0xa8, 0x50, 0x58, 0x00, 0x00, 0x00, 0x00, 0x50, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x00, 0x50, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x4b, 0x50, 0xc7, 0x50, 0xdf, 0x50, 0xe8, 0x50, 0xf0, 0x50, 0xf7, 0x54, 0xfc, 0x54, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x74, 0xff, 0x54, 0xff, 0x54, 0xfc, 0x50, 0xf7, 0x50, 0xf0, 0x50, 0xe8, 0x50, 0xdf, 0x50, 0xc7, 0x50, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x50, 0x00, 0x50, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x27, 0x50, 0x60, 0x50, 0x9b, 0x50, 0xcb, 0x50, 0xe8, 0x50, 0xf8, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xff, 0x50, 0xf8, 0x50, 0xe8, 0x50, 0xcb, 0x50, 0x9b, 0x50, 0x60, 0x50, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +#endif +#if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP == 0 + /*Pixel format: Alpha 8 bit, Red: 5 bit, Green: 6 bit, Blue: 5 bit*/ + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa1, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x6e, 0x27, 0xe2, 0x6e, 0x60, 0xe2, 0x6e, 0x9b, 0xe2, 0x6e, 0xcb, 0x02, 0x6f, 0xe8, 0x02, 0x6f, 0xf8, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xff, 0x02, 0x6f, 0xf8, 0x02, 0x6f, 0xe8, 0xe2, 0x6e, 0xcb, 0xe2, 0x6e, 0x9b, 0xe2, 0x6e, 0x60, 0xe2, 0x6e, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa1, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x81, 0x66, 0x00, 0xa1, 0x6e, 0x00, 0xc1, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc1, 0x6e, 0x4b, 0xe1, 0x6e, 0xc7, 0x01, 0x6f, 0xdf, 0xc1, 0x6e, 0xe8, 0x81, 0x66, 0xf0, 0x21, 0x5e, 0xf7, 0x80, 0x55, 0xfc, 0x20, 0x4d, 0xff, 0x20, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x00, 0x4d, 0xff, 0x20, 0x4d, 0xff, 0x20, 0x4d, 0xff, 0x80, 0x55, 0xfc, 0x01, 0x5e, 0xf7, 0x81, 0x66, 0xf0, 0xc1, 0x6e, 0xe8, 0x02, 0x6f, 0xdf, 0xe1, 0x6e, 0xc7, 0xc1, 0x6e, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc1, 0x6e, 0x00, 0xa1, 0x6e, 0x00, 0x81, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x81, 0x66, 0x00, 0x81, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa1, 0x66, 0x58, 0xc1, 0x6e, 0xa8, 0xe2, 0x6e, 0xd8, 0x61, 0x66, 0xff, 0x00, 0x4d, 0xff, 0xa0, 0x44, 0xff, 0x80, 0x44, 0xff, 0xa2, 0x4c, 0xff, 0xe6, 0x64, 0xff, 0x49, 0x75, 0xff, 0x6b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x6b, 0x85, 0xff, 0x49, 0x7d, 0xff, 0x07, 0x6d, 0xff, 0xa2, 0x54, 0xff, 0x80, 0x44, 0xff, 0xa0, 0x44, 0xff, 0x00, 0x4d, 0xff, 0x61, 0x66, 0xff, 0xe2, 0x6e, 0xd8, 0xc1, 0x6e, 0xa8, 0xa1, 0x66, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x81, 0x66, 0x00, 0x81, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x61, 0x66, 0x00, 0x41, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x81, 0x66, 0x78, 0xe2, 0x6e, 0xd4, 0x21, 0x66, 0xff, 0x40, 0x55, 0xff, 0xc0, 0x4c, 0xff, 0x85, 0x5c, 0xff, 0xe9, 0x74, 0xff, 0x2b, 0x7d, 0xff, 0x4c, 0x85, 0xff, 0xaf, 0x95, 0xff, 0x11, 0xa6, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x32, 0xae, 0xff, 0x11, 0xa6, 0xff, 0xcf, 0x9d, 0xff, 0x6c, 0x85, 0xff, 0x2b, 0x7d, 0xff, 0x0a, 0x75, 0xff, 0xa6, 0x64, 0xff, 0xe0, 0x4c, 0xff, 0x40, 0x55, 0xff, 0x21, 0x66, 0xff, 0xe2, 0x6e, 0xd4, 0x81, 0x66, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x66, 0x00, 0x61, 0x66, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x21, 0x66, 0x00, 0x00, 0x00, 0x00, 0x41, 0x66, 0x0c, 0x61, 0x66, 0x6b, 0x81, 0x66, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x55, 0xff, 0x43, 0x4c, 0xff, 0xa6, 0x64, 0xff, 0x8c, 0x8d, 0xff, 0x31, 0xa6, 0xff, 0x73, 0xb6, 0xff, 0x52, 0xae, 0xff, 0x52, 0xae, 0xff, 0x32, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x31, 0xae, 0xff, 0x32, 0xae, 0xff, 0x52, 0xae, 0xff, 0x52, 0xae, 0xff, 0x73, 0xb6, 0xff, 0x32, 0xae, 0xff, 0xad, 0x8d, 0xff, 0xa7, 0x64, 0xff, 0x43, 0x54, 0xff, 0x01, 0x55, 0xff, 0x01, 0x5e, 0xff, 0x81, 0x66, 0xff, 0x61, 0x66, 0x6b, 0x41, 0x66, 0x0c, 0x00, 0x00, 0x00, 0x21, 0x66, 0x00, 0x00, 0x00, 0x00, + 0x21, 0x66, 0x00, 0x00, 0x00, 0x00, 0x01, 0x5e, 0x07, 0x61, 0x66, 0x67, 0x61, 0x66, 0xff, 0x01, 0x5e, 0xff, 0xa1, 0x4c, 0xff, 0x63, 0x54, 0xff, 0x29, 0x75, 0xff, 0x0f, 0x9e, 0xff, 0xef, 0x9d, 0xff, 0xee, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xce, 0x95, 0xff, 0xee, 0x95, 0xff, 0xef, 0x9d, 0xff, 0x0f, 0x9e, 0xff, 0x4a, 0x7d, 0xff, 0x84, 0x54, 0xff, 0xa1, 0x4c, 0xff, 0x01, 0x5e, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0x67, 0x01, 0x5e, 0x07, 0x00, 0x00, 0x00, 0x21, 0x66, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x66, 0x64, 0x41, 0x66, 0xe7, 0x01, 0x5e, 0xff, 0x61, 0x44, 0xff, 0x84, 0x54, 0xff, 0x49, 0x75, 0xff, 0xac, 0x8d, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0x8b, 0x85, 0xff, 0xac, 0x8d, 0xff, 0x6a, 0x7d, 0xff, 0xc5, 0x5c, 0xff, 0x61, 0x44, 0xff, 0x01, 0x5e, 0xff, 0x41, 0x66, 0xe7, 0x41, 0x66, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x5e, 0x1f, 0x41, 0x66, 0xa3, 0xc1, 0x5d, 0xff, 0xa1, 0x4c, 0xff, 0x81, 0x4c, 0xff, 0x27, 0x6d, 0xff, 0x69, 0x7d, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x48, 0x75, 0xff, 0x69, 0x7d, 0xff, 0x27, 0x6d, 0xff, 0x82, 0x4c, 0xff, 0xa1, 0x4c, 0xff, 0xc1, 0x5d, 0xff, 0x41, 0x66, 0xa3, 0x01, 0x5e, 0x1f, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x5e, 0x98, 0xe1, 0x5d, 0xf7, 0x61, 0x55, 0xff, 0x81, 0x4c, 0xff, 0xe4, 0x5c, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x06, 0x65, 0xff, 0x05, 0x65, 0xff, 0x81, 0x4c, 0xff, 0x61, 0x55, 0xff, 0xe1, 0x5d, 0xf7, 0x01, 0x5e, 0x98, 0x00, 0x00, 0x00, + 0xc1, 0x5d, 0x1c, 0x01, 0x5e, 0xc4, 0x81, 0x55, 0xff, 0xc1, 0x4c, 0xff, 0xa1, 0x4c, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xe3, 0x54, 0xff, 0xa1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0x81, 0x55, 0xff, 0x01, 0x5e, 0xc4, 0xc1, 0x5d, 0x1c, + 0xc1, 0x5d, 0x5c, 0xc1, 0x5d, 0xd8, 0x41, 0x55, 0xff, 0xa1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xc1, 0x4c, 0xff, 0xa1, 0x4c, 0xff, 0x41, 0x55, 0xff, 0xc1, 0x5d, 0xd8, 0xc1, 0x5d, 0x5c, + 0xa1, 0x5d, 0x9c, 0x81, 0x5d, 0xe7, 0x21, 0x55, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0xe1, 0x4c, 0xff, 0x21, 0x55, 0xff, 0x81, 0x5d, 0xe7, 0xa1, 0x5d, 0x9c, + 0x81, 0x55, 0xcf, 0x61, 0x55, 0xf3, 0x21, 0x55, 0xff, 0x01, 0x4d, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x55, 0xff, 0x01, 0x4d, 0xff, 0x21, 0x55, 0xff, 0x61, 0x55, 0xf3, 0x81, 0x55, 0xcf, + 0x61, 0x55, 0xef, 0x41, 0x55, 0xfb, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x21, 0x55, 0xff, 0x41, 0x55, 0xfb, 0x61, 0x55, 0xef, + 0x41, 0x55, 0xfb, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xfb, + 0x41, 0x55, 0xfb, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x61, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xfb, + 0x21, 0x55, 0xef, 0x41, 0x55, 0xfb, 0x61, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x81, 0x55, 0xff, 0x61, 0x55, 0xff, 0x41, 0x55, 0xfb, 0x21, 0x55, 0xef, + 0x01, 0x4d, 0xcf, 0x21, 0x55, 0xf3, 0x61, 0x55, 0xff, 0xa1, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0x81, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0x61, 0x55, 0xff, 0x21, 0x55, 0xf3, 0x01, 0x4d, 0xcf, + 0xe1, 0x4c, 0x9c, 0xe1, 0x4c, 0xe7, 0x61, 0x55, 0xff, 0xc1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xa1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0x61, 0x55, 0xff, 0xe1, 0x4c, 0xe7, 0xe1, 0x4c, 0x9c, + 0xc1, 0x4c, 0x5c, 0xc1, 0x4c, 0xd8, 0x41, 0x55, 0xff, 0xe1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0x41, 0x55, 0xff, 0xc1, 0x4c, 0xd8, 0xc1, 0x4c, 0x5c, + 0xa1, 0x4c, 0x1c, 0x81, 0x4c, 0xc4, 0x01, 0x55, 0xff, 0xc1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xe1, 0x5d, 0xff, 0xc1, 0x5d, 0xff, 0x01, 0x55, 0xff, 0x81, 0x4c, 0xc4, 0xa1, 0x4c, 0x1c, + 0x00, 0x00, 0x00, 0x81, 0x44, 0x98, 0x81, 0x4c, 0xf7, 0x21, 0x55, 0xff, 0x21, 0x66, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x01, 0x5e, 0xff, 0x21, 0x66, 0xff, 0x21, 0x55, 0xff, 0x81, 0x4c, 0xf7, 0x81, 0x44, 0x98, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x81, 0x44, 0x1f, 0x41, 0x44, 0xa3, 0xc1, 0x4c, 0xff, 0xe1, 0x5d, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0x21, 0x66, 0xff, 0xe1, 0x5d, 0xff, 0xc1, 0x4c, 0xff, 0x41, 0x44, 0xa3, 0x81, 0x44, 0x1f, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x44, 0x64, 0x41, 0x44, 0xe7, 0x81, 0x4c, 0xff, 0x21, 0x66, 0xff, 0x61, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x41, 0x66, 0xff, 0x61, 0x66, 0xff, 0x21, 0x66, 0xff, 0x81, 0x4c, 0xff, 0x41, 0x44, 0xe7, 0x41, 0x44, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x61, 0x44, 0x00, 0x00, 0x00, 0x00, 0x61, 0x4c, 0x07, 0x21, 0x44, 0x67, 0x21, 0x44, 0xff, 0x81, 0x44, 0xff, 0x01, 0x5e, 0xff, 0x81, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x81, 0x66, 0xff, 0x01, 0x5e, 0xff, 0x81, 0x44, 0xff, 0x21, 0x44, 0xff, 0x21, 0x44, 0x67, 0x61, 0x4c, 0x07, 0x00, 0x00, 0x00, 0x61, 0x44, 0x00, + 0x00, 0x00, 0x00, 0x41, 0x44, 0x00, 0x00, 0x00, 0x00, 0x41, 0x44, 0x0c, 0x21, 0x44, 0x6b, 0x01, 0x3c, 0xff, 0x81, 0x44, 0xff, 0xa1, 0x5d, 0xff, 0x81, 0x66, 0xff, 0xa1, 0x6e, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0xa1, 0x6e, 0xff, 0x81, 0x66, 0xff, 0xa1, 0x5d, 0xff, 0x81, 0x44, 0xff, 0x01, 0x3c, 0xff, 0x21, 0x44, 0x6b, 0x41, 0x44, 0x0c, 0x00, 0x00, 0x00, 0x41, 0x44, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x21, 0x44, 0x00, 0x41, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x44, 0x78, 0xa1, 0x3b, 0xd4, 0x61, 0x44, 0xff, 0x21, 0x55, 0xff, 0xa1, 0x5d, 0xff, 0x81, 0x66, 0xff, 0xc1, 0x6e, 0xff, 0xc1, 0x6e, 0xff, 0xc1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xa1, 0x6e, 0xff, 0xc1, 0x6e, 0xff, 0xc1, 0x6e, 0xff, 0xc1, 0x6e, 0xff, 0x81, 0x66, 0xff, 0xa1, 0x5d, 0xff, 0x21, 0x55, 0xff, 0x61, 0x44, 0xff, 0xa1, 0x3b, 0xd4, 0x01, 0x44, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x44, 0x00, 0x21, 0x44, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe1, 0x3b, 0x00, 0x01, 0x44, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe1, 0x3b, 0x58, 0xc1, 0x3b, 0xa8, 0xc1, 0x3b, 0xd8, 0x21, 0x44, 0xff, 0x61, 0x55, 0xff, 0xe1, 0x5d, 0xff, 0x01, 0x5e, 0xff, 0x21, 0x66, 0xff, 0x41, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x81, 0x66, 0xff, 0x61, 0x66, 0xff, 0x61, 0x66, 0xff, 0x41, 0x66, 0xff, 0x21, 0x66, 0xff, 0x01, 0x5e, 0xff, 0xe1, 0x5d, 0xff, 0x61, 0x55, 0xff, 0x21, 0x44, 0xff, 0xc1, 0x3b, 0xd8, 0xc1, 0x3b, 0xa8, 0xe1, 0x3b, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x44, 0x00, 0xe1, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x3c, 0x00, 0xe1, 0x3b, 0x00, 0xe1, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc1, 0x3b, 0x4b, 0xa1, 0x3b, 0xc7, 0x81, 0x3b, 0xdf, 0xc1, 0x3b, 0xe8, 0x01, 0x44, 0xf0, 0x61, 0x44, 0xf7, 0xe1, 0x4c, 0xfc, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0x41, 0x55, 0xff, 0xe1, 0x4c, 0xfc, 0x61, 0x44, 0xf7, 0x01, 0x44, 0xf0, 0xc1, 0x3b, 0xe8, 0x81, 0x3b, 0xdf, 0xa1, 0x3b, 0xc7, 0xc1, 0x3b, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe1, 0x3b, 0x00, 0xe1, 0x3b, 0x00, 0x01, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc1, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa1, 0x3b, 0x27, 0xa1, 0x3b, 0x60, 0xa1, 0x3b, 0x9b, 0xa1, 0x3b, 0xcb, 0x81, 0x3b, 0xe8, 0x81, 0x3b, 0xf8, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xff, 0x81, 0x3b, 0xf8, 0x81, 0x3b, 0xe8, 0xa1, 0x3b, 0xcb, 0xa1, 0x3b, 0x9b, 0xa1, 0x3b, 0x60, 0xa1, 0x3b, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc1, 0x3b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +#endif +#if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP != 0 + /*Pixel format: Alpha 8 bit, Red: 5 bit, Green: 6 bit, Blue: 5 bit BUT the 2 color bytes are swapped*/ + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6e, 0xa1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6e, 0xe2, 0x27, 0x6e, 0xe2, 0x60, 0x6e, 0xe2, 0x9b, 0x6e, 0xe2, 0xcb, 0x6f, 0x02, 0xe8, 0x6f, 0x02, 0xf8, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xff, 0x6f, 0x02, 0xf8, 0x6f, 0x02, 0xe8, 0x6e, 0xe2, 0xcb, 0x6e, 0xe2, 0x9b, 0x6e, 0xe2, 0x60, 0x6e, 0xe2, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6e, 0xa1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x81, 0x00, 0x6e, 0xa1, 0x00, 0x6e, 0xc1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6e, 0xc1, 0x4b, 0x6e, 0xe1, 0xc7, 0x6f, 0x01, 0xdf, 0x6e, 0xc1, 0xe8, 0x66, 0x81, 0xf0, 0x5e, 0x21, 0xf7, 0x55, 0x80, 0xfc, 0x4d, 0x20, 0xff, 0x4d, 0x20, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x00, 0xff, 0x4d, 0x20, 0xff, 0x4d, 0x20, 0xff, 0x55, 0x80, 0xfc, 0x5e, 0x01, 0xf7, 0x66, 0x81, 0xf0, 0x6e, 0xc1, 0xe8, 0x6f, 0x02, 0xdf, 0x6e, 0xe1, 0xc7, 0x6e, 0xc1, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6e, 0xc1, 0x00, 0x6e, 0xa1, 0x00, 0x66, 0x81, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x81, 0x00, 0x66, 0x81, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0xa1, 0x58, 0x6e, 0xc1, 0xa8, 0x6e, 0xe2, 0xd8, 0x66, 0x61, 0xff, 0x4d, 0x00, 0xff, 0x44, 0xa0, 0xff, 0x44, 0x80, 0xff, 0x4c, 0xa2, 0xff, 0x64, 0xe6, 0xff, 0x75, 0x49, 0xff, 0x85, 0x6b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x6b, 0xff, 0x7d, 0x49, 0xff, 0x6d, 0x07, 0xff, 0x54, 0xa2, 0xff, 0x44, 0x80, 0xff, 0x44, 0xa0, 0xff, 0x4d, 0x00, 0xff, 0x66, 0x61, 0xff, 0x6e, 0xe2, 0xd8, 0x6e, 0xc1, 0xa8, 0x66, 0xa1, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x81, 0x00, 0x66, 0x81, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x66, 0x61, 0x00, 0x66, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x81, 0x78, 0x6e, 0xe2, 0xd4, 0x66, 0x21, 0xff, 0x55, 0x40, 0xff, 0x4c, 0xc0, 0xff, 0x5c, 0x85, 0xff, 0x74, 0xe9, 0xff, 0x7d, 0x2b, 0xff, 0x85, 0x4c, 0xff, 0x95, 0xaf, 0xff, 0xa6, 0x11, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xae, 0x32, 0xff, 0xa6, 0x11, 0xff, 0x9d, 0xcf, 0xff, 0x85, 0x6c, 0xff, 0x7d, 0x2b, 0xff, 0x75, 0x0a, 0xff, 0x64, 0xa6, 0xff, 0x4c, 0xe0, 0xff, 0x55, 0x40, 0xff, 0x66, 0x21, 0xff, 0x6e, 0xe2, 0xd4, 0x66, 0x81, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x41, 0x00, 0x66, 0x61, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x66, 0x21, 0x00, 0x00, 0x00, 0x00, 0x66, 0x41, 0x0c, 0x66, 0x61, 0x6b, 0x66, 0x81, 0xff, 0x5e, 0x01, 0xff, 0x55, 0x01, 0xff, 0x4c, 0x43, 0xff, 0x64, 0xa6, 0xff, 0x8d, 0x8c, 0xff, 0xa6, 0x31, 0xff, 0xb6, 0x73, 0xff, 0xae, 0x52, 0xff, 0xae, 0x52, 0xff, 0xae, 0x32, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x31, 0xff, 0xae, 0x32, 0xff, 0xae, 0x52, 0xff, 0xae, 0x52, 0xff, 0xb6, 0x73, 0xff, 0xae, 0x32, 0xff, 0x8d, 0xad, 0xff, 0x64, 0xa7, 0xff, 0x54, 0x43, 0xff, 0x55, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x66, 0x81, 0xff, 0x66, 0x61, 0x6b, 0x66, 0x41, 0x0c, 0x00, 0x00, 0x00, 0x66, 0x21, 0x00, 0x00, 0x00, 0x00, + 0x66, 0x21, 0x00, 0x00, 0x00, 0x00, 0x5e, 0x01, 0x07, 0x66, 0x61, 0x67, 0x66, 0x61, 0xff, 0x5e, 0x01, 0xff, 0x4c, 0xa1, 0xff, 0x54, 0x63, 0xff, 0x75, 0x29, 0xff, 0x9e, 0x0f, 0xff, 0x9d, 0xef, 0xff, 0x95, 0xee, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xce, 0xff, 0x95, 0xee, 0xff, 0x9d, 0xef, 0xff, 0x9e, 0x0f, 0xff, 0x7d, 0x4a, 0xff, 0x54, 0x84, 0xff, 0x4c, 0xa1, 0xff, 0x5e, 0x01, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0x67, 0x5e, 0x01, 0x07, 0x00, 0x00, 0x00, 0x66, 0x21, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x41, 0x64, 0x66, 0x41, 0xe7, 0x5e, 0x01, 0xff, 0x44, 0x61, 0xff, 0x54, 0x84, 0xff, 0x75, 0x49, 0xff, 0x8d, 0xac, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x85, 0x8b, 0xff, 0x8d, 0xac, 0xff, 0x7d, 0x6a, 0xff, 0x5c, 0xc5, 0xff, 0x44, 0x61, 0xff, 0x5e, 0x01, 0xff, 0x66, 0x41, 0xe7, 0x66, 0x41, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x5e, 0x01, 0x1f, 0x66, 0x41, 0xa3, 0x5d, 0xc1, 0xff, 0x4c, 0xa1, 0xff, 0x4c, 0x81, 0xff, 0x6d, 0x27, 0xff, 0x7d, 0x69, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x75, 0x48, 0xff, 0x7d, 0x69, 0xff, 0x6d, 0x27, 0xff, 0x4c, 0x82, 0xff, 0x4c, 0xa1, 0xff, 0x5d, 0xc1, 0xff, 0x66, 0x41, 0xa3, 0x5e, 0x01, 0x1f, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x5e, 0x01, 0x98, 0x5d, 0xe1, 0xf7, 0x55, 0x61, 0xff, 0x4c, 0x81, 0xff, 0x5c, 0xe4, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x06, 0xff, 0x65, 0x05, 0xff, 0x4c, 0x81, 0xff, 0x55, 0x61, 0xff, 0x5d, 0xe1, 0xf7, 0x5e, 0x01, 0x98, 0x00, 0x00, 0x00, + 0x5d, 0xc1, 0x1c, 0x5e, 0x01, 0xc4, 0x55, 0x81, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xa1, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x54, 0xe3, 0xff, 0x4c, 0xa1, 0xff, 0x4c, 0xc1, 0xff, 0x55, 0x81, 0xff, 0x5e, 0x01, 0xc4, 0x5d, 0xc1, 0x1c, + 0x5d, 0xc1, 0x5c, 0x5d, 0xc1, 0xd8, 0x55, 0x41, 0xff, 0x4c, 0xa1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xc1, 0xff, 0x4c, 0xa1, 0xff, 0x55, 0x41, 0xff, 0x5d, 0xc1, 0xd8, 0x5d, 0xc1, 0x5c, + 0x5d, 0xa1, 0x9c, 0x5d, 0x81, 0xe7, 0x55, 0x21, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x4c, 0xe1, 0xff, 0x55, 0x21, 0xff, 0x5d, 0x81, 0xe7, 0x5d, 0xa1, 0x9c, + 0x55, 0x81, 0xcf, 0x55, 0x61, 0xf3, 0x55, 0x21, 0xff, 0x4d, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x55, 0x01, 0xff, 0x4d, 0x01, 0xff, 0x55, 0x21, 0xff, 0x55, 0x61, 0xf3, 0x55, 0x81, 0xcf, + 0x55, 0x61, 0xef, 0x55, 0x41, 0xfb, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x21, 0xff, 0x55, 0x41, 0xfb, 0x55, 0x61, 0xef, + 0x55, 0x41, 0xfb, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xfb, + 0x55, 0x41, 0xfb, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x61, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xfb, + 0x55, 0x21, 0xef, 0x55, 0x41, 0xfb, 0x55, 0x61, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x81, 0xff, 0x55, 0x61, 0xff, 0x55, 0x41, 0xfb, 0x55, 0x21, 0xef, + 0x4d, 0x01, 0xcf, 0x55, 0x21, 0xf3, 0x55, 0x61, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0x81, 0xff, 0x5d, 0xa1, 0xff, 0x55, 0x61, 0xff, 0x55, 0x21, 0xf3, 0x4d, 0x01, 0xcf, + 0x4c, 0xe1, 0x9c, 0x4c, 0xe1, 0xe7, 0x55, 0x61, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xa1, 0xff, 0x5d, 0xc1, 0xff, 0x55, 0x61, 0xff, 0x4c, 0xe1, 0xe7, 0x4c, 0xe1, 0x9c, + 0x4c, 0xc1, 0x5c, 0x4c, 0xc1, 0xd8, 0x55, 0x41, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xe1, 0xff, 0x55, 0x41, 0xff, 0x4c, 0xc1, 0xd8, 0x4c, 0xc1, 0x5c, + 0x4c, 0xa1, 0x1c, 0x4c, 0x81, 0xc4, 0x55, 0x01, 0xff, 0x5d, 0xc1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xe1, 0xff, 0x5d, 0xc1, 0xff, 0x55, 0x01, 0xff, 0x4c, 0x81, 0xc4, 0x4c, 0xa1, 0x1c, + 0x00, 0x00, 0x00, 0x44, 0x81, 0x98, 0x4c, 0x81, 0xf7, 0x55, 0x21, 0xff, 0x66, 0x21, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x5e, 0x01, 0xff, 0x66, 0x21, 0xff, 0x55, 0x21, 0xff, 0x4c, 0x81, 0xf7, 0x44, 0x81, 0x98, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x44, 0x81, 0x1f, 0x44, 0x41, 0xa3, 0x4c, 0xc1, 0xff, 0x5d, 0xe1, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x66, 0x21, 0xff, 0x5d, 0xe1, 0xff, 0x4c, 0xc1, 0xff, 0x44, 0x41, 0xa3, 0x44, 0x81, 0x1f, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x41, 0x64, 0x44, 0x41, 0xe7, 0x4c, 0x81, 0xff, 0x66, 0x21, 0xff, 0x66, 0x61, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x41, 0xff, 0x66, 0x61, 0xff, 0x66, 0x21, 0xff, 0x4c, 0x81, 0xff, 0x44, 0x41, 0xe7, 0x44, 0x41, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x44, 0x61, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x61, 0x07, 0x44, 0x21, 0x67, 0x44, 0x21, 0xff, 0x44, 0x81, 0xff, 0x5e, 0x01, 0xff, 0x66, 0x81, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x81, 0xff, 0x5e, 0x01, 0xff, 0x44, 0x81, 0xff, 0x44, 0x21, 0xff, 0x44, 0x21, 0x67, 0x4c, 0x61, 0x07, 0x00, 0x00, 0x00, 0x44, 0x61, 0x00, + 0x00, 0x00, 0x00, 0x44, 0x41, 0x00, 0x00, 0x00, 0x00, 0x44, 0x41, 0x0c, 0x44, 0x21, 0x6b, 0x3c, 0x01, 0xff, 0x44, 0x81, 0xff, 0x5d, 0xa1, 0xff, 0x66, 0x81, 0xff, 0x6e, 0xa1, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x6e, 0xa1, 0xff, 0x66, 0x81, 0xff, 0x5d, 0xa1, 0xff, 0x44, 0x81, 0xff, 0x3c, 0x01, 0xff, 0x44, 0x21, 0x6b, 0x44, 0x41, 0x0c, 0x00, 0x00, 0x00, 0x44, 0x41, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x44, 0x21, 0x00, 0x44, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x01, 0x78, 0x3b, 0xa1, 0xd4, 0x44, 0x61, 0xff, 0x55, 0x21, 0xff, 0x5d, 0xa1, 0xff, 0x66, 0x81, 0xff, 0x6e, 0xc1, 0xff, 0x6e, 0xc1, 0xff, 0x6e, 0xc1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xa1, 0xff, 0x6e, 0xc1, 0xff, 0x6e, 0xc1, 0xff, 0x6e, 0xc1, 0xff, 0x66, 0x81, 0xff, 0x5d, 0xa1, 0xff, 0x55, 0x21, 0xff, 0x44, 0x61, 0xff, 0x3b, 0xa1, 0xd4, 0x44, 0x01, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x41, 0x00, 0x44, 0x21, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0xe1, 0x00, 0x44, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0xe1, 0x58, 0x3b, 0xc1, 0xa8, 0x3b, 0xc1, 0xd8, 0x44, 0x21, 0xff, 0x55, 0x61, 0xff, 0x5d, 0xe1, 0xff, 0x5e, 0x01, 0xff, 0x66, 0x21, 0xff, 0x66, 0x41, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x81, 0xff, 0x66, 0x61, 0xff, 0x66, 0x61, 0xff, 0x66, 0x41, 0xff, 0x66, 0x21, 0xff, 0x5e, 0x01, 0xff, 0x5d, 0xe1, 0xff, 0x55, 0x61, 0xff, 0x44, 0x21, 0xff, 0x3b, 0xc1, 0xd8, 0x3b, 0xc1, 0xa8, 0x3b, 0xe1, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x44, 0x01, 0x00, 0x3b, 0xe1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x01, 0x00, 0x3b, 0xe1, 0x00, 0x3b, 0xe1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0xc1, 0x4b, 0x3b, 0xa1, 0xc7, 0x3b, 0x81, 0xdf, 0x3b, 0xc1, 0xe8, 0x44, 0x01, 0xf0, 0x44, 0x61, 0xf7, 0x4c, 0xe1, 0xfc, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x55, 0x41, 0xff, 0x4c, 0xe1, 0xfc, 0x44, 0x61, 0xf7, 0x44, 0x01, 0xf0, 0x3b, 0xc1, 0xe8, 0x3b, 0x81, 0xdf, 0x3b, 0xa1, 0xc7, 0x3b, 0xc1, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0xe1, 0x00, 0x3b, 0xe1, 0x00, 0x3c, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0xc1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0xa1, 0x27, 0x3b, 0xa1, 0x60, 0x3b, 0xa1, 0x9b, 0x3b, 0xa1, 0xcb, 0x3b, 0x81, 0xe8, 0x3b, 0x81, 0xf8, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xff, 0x3b, 0x81, 0xf8, 0x3b, 0x81, 0xe8, 0x3b, 0xa1, 0xcb, 0x3b, 0xa1, 0x9b, 0x3b, 0xa1, 0x60, 0x3b, 0xa1, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0xc1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +#endif +#if LV_COLOR_DEPTH == 32 + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xd6, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0xdb, 0x69, 0x27, 0x0d, 0xdc, 0x69, 0x60, 0x0d, 0xdc, 0x69, 0x9b, 0x0d, 0xdd, 0x6a, 0xcb, 0x0d, 0xdf, 0x6b, 0xe8, 0x0d, 0xdf, 0x6b, 0xf8, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xe0, 0x6b, 0xff, 0x0d, 0xdf, 0x6b, 0xf8, 0x0d, 0xdf, 0x6b, 0xe8, 0x0d, 0xdd, 0x6a, 0xcb, 0x0d, 0xdc, 0x69, 0x9b, 0x0d, 0xdc, 0x69, 0x60, 0x0d, 0xdb, 0x69, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xd6, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xd1, 0x64, 0x00, 0x0c, 0xd5, 0x65, 0x00, 0x0c, 0xd7, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xd9, 0x67, 0x4b, 0x0c, 0xdb, 0x68, 0xc7, 0x0c, 0xe0, 0x6b, 0xdf, 0x0c, 0xd9, 0x68, 0xe8, 0x0b, 0xd0, 0x63, 0xf0, 0x08, 0xc3, 0x5b, 0xf7, 0x03, 0xb0, 0x50, 0xfc, 0x01, 0xa6, 0x4b, 0xff, 0x00, 0xa3, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa2, 0x48, 0xff, 0x00, 0xa3, 0x48, 0xff, 0x00, 0xa6, 0x4b, 0xff, 0x03, 0xb0, 0x50, 0xfc, 0x08, 0xc2, 0x5b, 0xf7, 0x0b, 0xd0, 0x63, 0xf0, 0x0c, 0xd9, 0x68, 0xe8, 0x0d, 0xe0, 0x6b, 0xdf, 0x0c, 0xdb, 0x68, 0xc7, 0x0c, 0xd9, 0x67, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xd7, 0x66, 0x00, 0x0c, 0xd5, 0x65, 0x00, 0x0c, 0xd1, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xd2, 0x64, 0x00, 0x0c, 0xd0, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xd3, 0x64, 0x58, 0x0c, 0xd9, 0x68, 0xa8, 0x0d, 0xdb, 0x69, 0xd8, 0x0b, 0xce, 0x62, 0xff, 0x03, 0xa2, 0x4a, 0xff, 0x00, 0x93, 0x41, 0xff, 0x00, 0x90, 0x40, 0xff, 0x10, 0x94, 0x4b, 0xff, 0x31, 0x9e, 0x61, 0xff, 0x4a, 0xa8, 0x74, 0xff, 0x55, 0xad, 0x7d, 0xff, 0x59, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x5a, 0xaf, 0x81, 0xff, 0x57, 0xae, 0x7e, 0xff, 0x4c, 0xa9, 0x76, 0xff, 0x35, 0xa1, 0x65, 0xff, 0x13, 0x95, 0x4d, 0xff, 0x02, 0x90, 0x41, 0xff, 0x00, 0x93, 0x41, 0xff, 0x02, 0xa1, 0x49, 0xff, 0x0b, 0xce, 0x62, 0xff, 0x0d, 0xdb, 0x69, 0xd8, 0x0c, 0xd9, 0x68, 0xa8, 0x0c, 0xd3, 0x64, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xd0, 0x63, 0x00, 0x0c, 0xd2, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x0b, 0xcb, 0x63, 0x00, 0x0b, 0xca, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0xd0, 0x63, 0x78, 0x0d, 0xdb, 0x69, 0xd4, 0x0a, 0xc6, 0x5e, 0xff, 0x04, 0xaa, 0x4e, 0xff, 0x02, 0x9a, 0x46, 0xff, 0x28, 0x91, 0x57, 0xff, 0x4b, 0x9d, 0x70, 0xff, 0x58, 0xa4, 0x7a, 0xff, 0x60, 0xaa, 0x81, 0xff, 0x78, 0xb6, 0x93, 0xff, 0x88, 0xc0, 0xa1, 0xff, 0x90, 0xc4, 0xa7, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x93, 0xc6, 0xaa, 0xff, 0x91, 0xc5, 0xa8, 0xff, 0x8a, 0xc1, 0xa2, 0xff, 0x7b, 0xb8, 0x96, 0xff, 0x62, 0xab, 0x83, 0xff, 0x58, 0xa4, 0x7a, 0xff, 0x4e, 0x9f, 0x72, 0xff, 0x30, 0x96, 0x5d, 0xff, 0x03, 0x9b, 0x47, 0xff, 0x03, 0xa9, 0x4e, 0xff, 0x0a, 0xc5, 0x5e, 0xff, 0x0d, 0xdb, 0x69, 0xd4, 0x0c, 0xd0, 0x63, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0b, 0xca, 0x60, 0x00, 0x0b, 0xcb, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x0b, 0xc6, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0xca, 0x61, 0x0c, 0x0b, 0xcd, 0x62, 0x6b, 0x0c, 0xd2, 0x64, 0xff, 0x09, 0xc2, 0x5c, 0xff, 0x09, 0x9f, 0x4d, 0xff, 0x15, 0x88, 0x49, 0xff, 0x32, 0x94, 0x5e, 0xff, 0x62, 0xb0, 0x85, 0xff, 0x8a, 0xc5, 0xa4, 0xff, 0x96, 0xcb, 0xae, 0xff, 0x92, 0xc9, 0xaa, 0xff, 0x8f, 0xc7, 0xa8, 0xff, 0x8d, 0xc6, 0xa6, 0xff, 0x8c, 0xc5, 0xa5, 0xff, 0x8c, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8b, 0xc5, 0xa5, 0xff, 0x8c, 0xc5, 0xa5, 0xff, 0x8d, 0xc6, 0xa6, 0xff, 0x8f, 0xc7, 0xa8, 0xff, 0x92, 0xc9, 0xaa, 0xff, 0x95, 0xcb, 0xad, 0xff, 0x8d, 0xc6, 0xa6, 0xff, 0x6c, 0xb5, 0x8c, 0xff, 0x35, 0x95, 0x60, 0xff, 0x1a, 0x8a, 0x4d, 0xff, 0x0c, 0xa0, 0x4e, 0xff, 0x08, 0xc2, 0x5b, 0xff, 0x0c, 0xd2, 0x64, 0xff, 0x0b, 0xcd, 0x62, 0x6b, 0x0a, 0xca, 0x61, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x0b, 0xc6, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x0b, 0xc3, 0x5d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0b, 0xbf, 0x5b, 0x07, 0x0b, 0xcb, 0x61, 0x67, 0x0b, 0xcb, 0x61, 0xff, 0x0a, 0xc0, 0x5c, 0xff, 0x09, 0x94, 0x47, 0xff, 0x1b, 0x8c, 0x4e, 0xff, 0x47, 0xa5, 0x71, 0xff, 0x7a, 0xbf, 0x99, 0xff, 0x77, 0xbe, 0x97, 0xff, 0x72, 0xbb, 0x93, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x71, 0xba, 0x92, 0xff, 0x72, 0xbb, 0x93, 0xff, 0x76, 0xbd, 0x96, 0xff, 0x7b, 0xc0, 0x9a, 0xff, 0x51, 0xa9, 0x78, 0xff, 0x24, 0x90, 0x53, 0xff, 0x0b, 0x95, 0x48, 0xff, 0x0a, 0xc0, 0x5b, 0xff, 0x0b, 0xcb, 0x61, 0xff, 0x0b, 0xcb, 0x61, 0x67, 0x0b, 0xbf, 0x5b, 0x07, 0x00, 0x00, 0x00, 0x00, 0x0b, 0xc3, 0x5d, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0b, 0xc7, 0x5f, 0x64, 0x0b, 0xc8, 0x60, 0xe7, 0x0a, 0xc0, 0x5c, 0xff, 0x06, 0x8d, 0x42, 0xff, 0x1e, 0x92, 0x53, 0xff, 0x48, 0xa9, 0x74, 0xff, 0x62, 0xb6, 0x88, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5a, 0xb2, 0x81, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5b, 0xb2, 0x82, 0xff, 0x5a, 0xb2, 0x81, 0xff, 0x5a, 0xb2, 0x81, 0xff, 0x62, 0xb5, 0x87, 0xff, 0x4e, 0xac, 0x78, 0xff, 0x27, 0x97, 0x59, 0xff, 0x06, 0x8d, 0x43, 0xff, 0x0a, 0xc0, 0x5c, 0xff, 0x0b, 0xc8, 0x60, 0xe7, 0x0b, 0xc7, 0x5f, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x0b, 0xc2, 0x5c, 0x1f, 0x0b, 0xc8, 0x60, 0xa3, 0x0a, 0xb9, 0x59, 0xff, 0x08, 0x96, 0x47, 0xff, 0x0a, 0x90, 0x46, 0xff, 0x36, 0xa3, 0x67, 0xff, 0x47, 0xab, 0x75, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x44, 0xa9, 0x72, 0xff, 0x48, 0xab, 0x75, 0xff, 0x39, 0xa4, 0x6a, 0xff, 0x11, 0x92, 0x4c, 0xff, 0x08, 0x96, 0x47, 0xff, 0x0a, 0xb9, 0x58, 0xff, 0x0b, 0xc8, 0x60, 0xa3, 0x0b, 0xc2, 0x5c, 0x1f, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x0b, 0xc0, 0x5b, 0x98, 0x0b, 0xbe, 0x5b, 0xf7, 0x08, 0xae, 0x53, 0xff, 0x09, 0x92, 0x46, 0xff, 0x24, 0x9e, 0x5b, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2e, 0xa2, 0x63, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2d, 0xa2, 0x62, 0xff, 0x2e, 0xa2, 0x63, 0xff, 0x2e, 0xa2, 0x63, 0xff, 0x27, 0x9f, 0x5d, 0xff, 0x0a, 0x92, 0x46, 0xff, 0x09, 0xae, 0x52, 0xff, 0x0b, 0xbe, 0x5b, 0xf7, 0x0b, 0xc0, 0x5b, 0x98, 0x00, 0x00, 0x00, 0x00, + 0x0a, 0xba, 0x59, 0x1c, 0x0a, 0xc1, 0x5c, 0xc4, 0x09, 0xaf, 0x54, 0xff, 0x08, 0x99, 0x49, 0xff, 0x09, 0x95, 0x48, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x17, 0x9c, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x16, 0x9b, 0x51, 0xff, 0x17, 0x9c, 0x52, 0xff, 0x17, 0x9b, 0x52, 0xff, 0x0a, 0x95, 0x48, 0xff, 0x08, 0x99, 0x49, 0xff, 0x09, 0xaf, 0x54, 0xff, 0x0a, 0xc1, 0x5c, 0xc4, 0x0a, 0xba, 0x59, 0x1c, + 0x0a, 0xb8, 0x59, 0x5c, 0x0a, 0xba, 0x59, 0xd8, 0x09, 0xa8, 0x50, 0xff, 0x08, 0x95, 0x48, 0xff, 0x08, 0x99, 0x49, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x0a, 0x9a, 0x4a, 0xff, 0x09, 0x99, 0x49, 0xff, 0x08, 0x95, 0x48, 0xff, 0x09, 0xa8, 0x50, 0xff, 0x0a, 0xba, 0x59, 0xd8, 0x0a, 0xb8, 0x59, 0x5c, + 0x0a, 0xb6, 0x57, 0x9c, 0x0a, 0xb2, 0x56, 0xe7, 0x09, 0xa6, 0x50, 0xff, 0x08, 0x9b, 0x4a, 0xff, 0x08, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x07, 0x9d, 0x4b, 0xff, 0x08, 0x9d, 0x4b, 0xff, 0x08, 0x9b, 0x4a, 0xff, 0x09, 0xa6, 0x50, 0xff, 0x0a, 0xb2, 0x56, 0xe7, 0x0a, 0xb6, 0x57, 0x9c, + 0x0a, 0xb2, 0x54, 0xcf, 0x09, 0xad, 0x53, 0xf3, 0x09, 0xa5, 0x4f, 0xff, 0x08, 0xa0, 0x4c, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4d, 0xff, 0x08, 0xa0, 0x4c, 0xff, 0x09, 0xa5, 0x4f, 0xff, 0x09, 0xad, 0x53, 0xf3, 0x0a, 0xb2, 0x54, 0xcf, + 0x09, 0xad, 0x53, 0xef, 0x09, 0xa9, 0x51, 0xfb, 0x09, 0xa5, 0x4f, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa4, 0x4e, 0xff, 0x09, 0xa5, 0x4f, 0xff, 0x09, 0xa9, 0x51, 0xfb, 0x09, 0xad, 0x53, 0xef, + 0x09, 0xaa, 0x51, 0xfb, 0x09, 0xa9, 0x50, 0xff, 0x09, 0xa8, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xff, 0x09, 0xa8, 0x50, 0xff, 0x09, 0xa9, 0x50, 0xff, 0x09, 0xaa, 0x51, 0xfb, + 0x09, 0xa7, 0x50, 0xfb, 0x09, 0xa8, 0x50, 0xff, 0x09, 0xaa, 0x50, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xab, 0x51, 0xff, 0x09, 0xaa, 0x50, 0xff, 0x09, 0xa8, 0x50, 0xff, 0x09, 0xa7, 0x50, 0xfb, + 0x09, 0xa3, 0x4d, 0xef, 0x09, 0xa7, 0x50, 0xfb, 0x09, 0xad, 0x52, 0xff, 0x09, 0xb0, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xaf, 0x53, 0xff, 0x09, 0xb0, 0x53, 0xff, 0x09, 0xad, 0x52, 0xff, 0x09, 0xa7, 0x50, 0xfb, 0x09, 0xa3, 0x4d, 0xef, + 0x08, 0x9f, 0x4b, 0xcf, 0x09, 0xa4, 0x4e, 0xf3, 0x09, 0xac, 0x52, 0xff, 0x0a, 0xb3, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb2, 0x55, 0xff, 0x0a, 0xb3, 0x55, 0xff, 0x09, 0xac, 0x52, 0xff, 0x09, 0xa4, 0x4e, 0xf3, 0x08, 0x9f, 0x4b, 0xcf, + 0x08, 0x9c, 0x4a, 0x9c, 0x08, 0x9e, 0x4b, 0xe7, 0x09, 0xac, 0x52, 0xff, 0x0a, 0xb8, 0x58, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb6, 0x57, 0xff, 0x0a, 0xb8, 0x58, 0xff, 0x09, 0xac, 0x52, 0xff, 0x08, 0x9e, 0x4b, 0xe7, 0x08, 0x9c, 0x4a, 0x9c, + 0x08, 0x98, 0x48, 0x5c, 0x08, 0x98, 0x48, 0xd8, 0x09, 0xaa, 0x51, 0xff, 0x0a, 0xbd, 0x5a, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xba, 0x59, 0xff, 0x0a, 0xbd, 0x5a, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x08, 0x98, 0x48, 0xd8, 0x08, 0x98, 0x48, 0x5c, + 0x08, 0x93, 0x47, 0x1c, 0x08, 0x92, 0x45, 0xc4, 0x09, 0xa2, 0x4d, 0xff, 0x0a, 0xb8, 0x58, 0xff, 0x0a, 0xbe, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbd, 0x5b, 0xff, 0x0a, 0xbe, 0x5b, 0xff, 0x0a, 0xb8, 0x58, 0xff, 0x09, 0xa2, 0x4d, 0xff, 0x08, 0x92, 0x45, 0xc4, 0x08, 0x93, 0x47, 0x1c, + 0x00, 0x00, 0x00, 0x00, 0x07, 0x91, 0x44, 0x98, 0x07, 0x92, 0x46, 0xf7, 0x09, 0xa3, 0x4e, 0xff, 0x0b, 0xc3, 0x5d, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc1, 0x5c, 0xff, 0x0b, 0xc3, 0x5d, 0xff, 0x09, 0xa3, 0x4e, 0xff, 0x07, 0x92, 0x46, 0xf7, 0x07, 0x91, 0x44, 0x98, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x07, 0x8f, 0x43, 0x1f, 0x07, 0x89, 0x41, 0xa3, 0x08, 0x97, 0x48, 0xff, 0x0a, 0xbb, 0x5a, 0xff, 0x0b, 0xc3, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc4, 0x5e, 0xff, 0x0b, 0xc3, 0x5e, 0xff, 0x0a, 0xbb, 0x5a, 0xff, 0x08, 0x97, 0x48, 0xff, 0x07, 0x89, 0x41, 0xa3, 0x07, 0x8f, 0x43, 0x1f, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x89, 0x42, 0x64, 0x07, 0x88, 0x41, 0xe7, 0x08, 0x90, 0x45, 0xff, 0x0b, 0xc5, 0x5e, 0xff, 0x0b, 0xcb, 0x60, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xc8, 0x5f, 0xff, 0x0b, 0xcb, 0x60, 0xff, 0x0b, 0xc5, 0x5e, 0xff, 0x08, 0x90, 0x45, 0xff, 0x07, 0x88, 0x41, 0xe7, 0x07, 0x89, 0x42, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x07, 0x8e, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x8e, 0x48, 0x07, 0x07, 0x85, 0x3f, 0x67, 0x07, 0x86, 0x3f, 0xff, 0x08, 0x91, 0x44, 0xff, 0x0b, 0xbf, 0x5b, 0xff, 0x0c, 0xd1, 0x64, 0xff, 0x0c, 0xcc, 0x62, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcb, 0x61, 0xff, 0x0c, 0xcc, 0x62, 0xff, 0x0c, 0xd1, 0x64, 0xff, 0x0b, 0xbf, 0x5b, 0xff, 0x08, 0x91, 0x44, 0xff, 0x07, 0x86, 0x3f, 0xff, 0x07, 0x85, 0x3f, 0x67, 0x07, 0x8e, 0x48, 0x07, 0x00, 0x00, 0x00, 0x00, 0x07, 0x8e, 0x43, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x07, 0x8a, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x87, 0x3e, 0x0c, 0x07, 0x84, 0x3e, 0x6b, 0x06, 0x7f, 0x3c, 0xff, 0x07, 0x8f, 0x44, 0xff, 0x0a, 0xb3, 0x56, 0xff, 0x0c, 0xd2, 0x64, 0xff, 0x0c, 0xd4, 0x66, 0xff, 0x0c, 0xd0, 0x64, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xd0, 0x64, 0xff, 0x0c, 0xd4, 0x66, 0xff, 0x0c, 0xd2, 0x64, 0xff, 0x0a, 0xb3, 0x56, 0xff, 0x07, 0x8f, 0x44, 0xff, 0x06, 0x7f, 0x3c, 0xff, 0x07, 0x84, 0x3e, 0x6b, 0x08, 0x87, 0x3e, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x07, 0x8a, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x07, 0x85, 0x3e, 0x00, 0x07, 0x87, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x81, 0x3d, 0x78, 0x05, 0x76, 0x38, 0xd4, 0x07, 0x8c, 0x42, 0xff, 0x09, 0xa6, 0x4f, 0xff, 0x0a, 0xb5, 0x56, 0xff, 0x0c, 0xd1, 0x64, 0xff, 0x0c, 0xd9, 0x68, 0xff, 0x0c, 0xd9, 0x68, 0xff, 0x0c, 0xd7, 0x67, 0xff, 0x0c, 0xd6, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd5, 0x66, 0xff, 0x0c, 0xd6, 0x66, 0xff, 0x0c, 0xd7, 0x67, 0xff, 0x0c, 0xd9, 0x68, 0xff, 0x0c, 0xd9, 0x68, 0xff, 0x0c, 0xd1, 0x64, 0xff, 0x0a, 0xb5, 0x56, 0xff, 0x09, 0xa6, 0x4f, 0xff, 0x07, 0x8c, 0x42, 0xff, 0x05, 0x76, 0x38, 0xd4, 0x06, 0x81, 0x3d, 0x78, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x87, 0x3f, 0x00, 0x07, 0x85, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x7e, 0x3c, 0x00, 0x06, 0x82, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x7e, 0x3b, 0x58, 0x06, 0x78, 0x39, 0xa8, 0x06, 0x77, 0x38, 0xd8, 0x07, 0x84, 0x3e, 0xff, 0x09, 0xac, 0x52, 0xff, 0x0a, 0xbb, 0x5a, 0xff, 0x0b, 0xbf, 0x5c, 0xff, 0x0b, 0xc3, 0x5d, 0xff, 0x0b, 0xca, 0x61, 0xff, 0x0c, 0xcd, 0x62, 0xff, 0x0c, 0xce, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xcf, 0x63, 0xff, 0x0c, 0xce, 0x63, 0xff, 0x0c, 0xcd, 0x62, 0xff, 0x0b, 0xca, 0x61, 0xff, 0x0b, 0xc3, 0x5d, 0xff, 0x0b, 0xbf, 0x5c, 0xff, 0x0a, 0xbb, 0x5a, 0xff, 0x09, 0xac, 0x52, 0xff, 0x07, 0x84, 0x3e, 0xff, 0x06, 0x77, 0x38, 0xd8, 0x06, 0x78, 0x39, 0xa8, 0x06, 0x7e, 0x3b, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x82, 0x3d, 0x00, 0x06, 0x7e, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x7f, 0x3c, 0x00, 0x06, 0x7c, 0x3b, 0x00, 0x06, 0x7b, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x77, 0x39, 0x4b, 0x06, 0x76, 0x38, 0xc7, 0x06, 0x71, 0x36, 0xdf, 0x06, 0x77, 0x39, 0xe8, 0x06, 0x81, 0x3d, 0xf0, 0x07, 0x8e, 0x43, 0xf7, 0x09, 0x9e, 0x4c, 0xfc, 0x09, 0xa7, 0x4f, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xaa, 0x51, 0xff, 0x09, 0xa7, 0x4f, 0xff, 0x09, 0x9e, 0x4c, 0xfc, 0x07, 0x8e, 0x43, 0xf7, 0x06, 0x81, 0x3d, 0xf0, 0x06, 0x77, 0x39, 0xe8, 0x06, 0x71, 0x36, 0xdf, 0x06, 0x76, 0x38, 0xc7, 0x06, 0x77, 0x39, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x7b, 0x3a, 0x00, 0x06, 0x7c, 0x3b, 0x00, 0x06, 0x7f, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x79, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x75, 0x38, 0x27, 0x06, 0x75, 0x38, 0x60, 0x06, 0x75, 0x38, 0x9b, 0x06, 0x74, 0x37, 0xcb, 0x06, 0x72, 0x36, 0xe8, 0x06, 0x72, 0x36, 0xf8, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x71, 0x36, 0xff, 0x06, 0x72, 0x36, 0xf8, 0x06, 0x72, 0x36, 0xe8, 0x06, 0x74, 0x37, 0xcb, 0x06, 0x75, 0x38, 0x9b, 0x06, 0x75, 0x38, 0x60, 0x06, 0x75, 0x38, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x79, 0x3a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +#endif +}; + +lv_img_dsc_t imgbtn_img_2 = { + .header.always_zero = 0, + .header.w = 100, + .header.h = 30, + .data_size = 3000 * LV_IMG_PX_SIZE_ALPHA_BYTE, + .header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA, + .data = imgbtn_img_2_map, +}; + +#endif /*LV_USE_TESTS && LV_USE_IMGBTN*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_3.c b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_3.c new file mode 100644 index 0000000..1043ceb --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_3.c @@ -0,0 +1,189 @@ +#include "lvgl/lvgl.h" +#include "lv_ex_conf.h" + +#if LV_USE_TESTS && LV_USE_IMGBTN + +const uint8_t imgbtn_img_3_map[] = { +#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8 + /*Pixel format: Alpha 8 bit, Red: 3 bit, Green: 3 bit, Blue: 2 bit*/ + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x92, 0x04, 0xb6, 0x13, 0xb7, 0x47, 0xdb, 0x8c, 0xdb, 0xcb, 0xdb, 0xef, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xb7, 0xff, 0xdb, 0xef, 0xdb, 0xc8, 0xdb, 0x8c, 0xff, 0x44, 0xff, 0x13, 0xff, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb7, 0x28, 0xdb, 0x7b, 0xdb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xfb, 0xff, 0xf7, 0xff, 0xf7, 0xff, 0xd7, 0xff, 0xd7, 0xff, 0xd6, 0xff, 0xd6, 0xff, 0xd6, 0xff, 0xd6, 0xff, 0xd6, 0xff, 0xd2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0x8e, 0xff, 0x8e, 0xff, 0x8e, 0xff, 0x8e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0xdb, 0xff, 0xdb, 0x7b, 0xff, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb7, 0x6f, 0xdb, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xff, 0xf2, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe4, 0xff, 0xe5, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe9, 0xff, 0xe5, 0xff, 0xe4, 0xff, 0xe0, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe5, 0xff, 0xc9, 0xff, 0xa9, 0xff, 0x8e, 0xff, 0x6e, 0xff, 0x92, 0xff, 0xb7, 0xe8, 0xff, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb7, 0xa8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0xff, 0xe9, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe9, 0xff, 0xed, 0xff, 0xee, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xee, 0xff, 0xed, 0xff, 0xe9, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe4, 0xff, 0xc9, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0xb6, 0xff, 0xff, 0xa8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xb7, 0xa0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe9, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xee, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xee, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe4, 0xff, 0x8e, 0xff, 0x92, 0xff, 0x92, 0xff, 0xff, 0x9f, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xb6, 0x3c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe4, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xee, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0x92, 0xff, 0x92, 0xff, 0xb6, 0xff, 0xff, 0x3c, 0x00, 0x00, + 0x92, 0x07, 0xdb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe4, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xe4, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe4, 0xff, 0x92, 0xff, 0x92, 0xff, 0xff, 0xff, 0xff, 0x07, + 0xb6, 0x4c, 0xff, 0xff, 0xff, 0xff, 0xf6, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe9, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xe9, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xcd, 0xff, 0x92, 0xff, 0xb6, 0xff, 0xff, 0x4c, + 0xdb, 0xa0, 0xff, 0xff, 0xff, 0xff, 0xe4, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xed, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xed, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0x92, 0xff, 0xb6, 0xff, 0xff, 0xa0, + 0xdb, 0xe0, 0xff, 0xff, 0xf7, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe9, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xe9, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xce, 0xff, 0xb6, 0xff, 0xdb, 0xdf, + 0xdb, 0xfb, 0xff, 0xff, 0xee, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe4, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xe4, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe9, 0xff, 0xb6, 0xff, 0xdb, 0xfb, + 0xdb, 0xff, 0xff, 0xff, 0xe9, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe9, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xe9, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe5, 0xff, 0xb6, 0xff, 0xdb, 0xff, + 0xdb, 0xff, 0xff, 0xff, 0xe9, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe9, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xe9, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe5, 0xff, 0xb6, 0xff, 0xdb, 0xff, + 0xdb, 0xff, 0xff, 0xff, 0xe9, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe5, 0xff, 0xed, 0xff, 0xed, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xee, 0xff, 0xed, 0xff, 0xed, 0xff, 0xe5, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe5, 0xff, 0xb6, 0xff, 0xdb, 0xff, + 0xdb, 0xff, 0xff, 0xff, 0xe9, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe4, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe5, 0xff, 0xb6, 0xff, 0xdb, 0xff, + 0xdb, 0xff, 0xff, 0xff, 0xe9, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe5, 0xff, 0xb6, 0xff, 0xdb, 0xff, + 0xdb, 0xff, 0xff, 0xff, 0xe9, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe5, 0xff, 0xb6, 0xff, 0xdb, 0xff, + 0xdb, 0xff, 0xff, 0xff, 0xe9, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe5, 0xff, 0xb6, 0xff, 0xdb, 0xff, + 0xdb, 0xff, 0xff, 0xff, 0xe9, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe5, 0xff, 0xb6, 0xff, 0xdb, 0xff, + 0xdb, 0xff, 0xff, 0xff, 0xe9, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe5, 0xff, 0xb6, 0xff, 0xdb, 0xff, + 0xdb, 0xff, 0xff, 0xff, 0xe9, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe5, 0xff, 0xb6, 0xff, 0xdb, 0xff, + 0xdb, 0xff, 0xff, 0xff, 0xe9, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe5, 0xff, 0xb6, 0xff, 0xdb, 0xff, + 0xdb, 0xff, 0xff, 0xff, 0xe9, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe5, 0xff, 0xb6, 0xff, 0xdb, 0xff, + 0xdb, 0xff, 0xff, 0xff, 0xe9, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe5, 0xff, 0xb6, 0xff, 0xdb, 0xff, + 0xdb, 0xff, 0xff, 0xff, 0xe9, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe5, 0xff, 0xb6, 0xff, 0xdb, 0xff, + 0xdb, 0xff, 0xff, 0xff, 0xe9, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe5, 0xff, 0xb6, 0xff, 0xdb, 0xff, + 0xdb, 0xff, 0xff, 0xff, 0xe9, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe5, 0xff, 0xb6, 0xff, 0xdb, 0xff, + 0xdb, 0xff, 0xff, 0xff, 0xe9, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe5, 0xff, 0xb6, 0xff, 0xdb, 0xff, + 0xdb, 0xff, 0xff, 0xff, 0xe9, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe5, 0xff, 0xb6, 0xff, 0xdb, 0xff, + 0xb7, 0xfb, 0xff, 0xff, 0xed, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe9, 0xff, 0xb6, 0xff, 0xdb, 0xfb, + 0xb6, 0xe0, 0xdb, 0xff, 0xf6, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xce, 0xff, 0xb6, 0xff, 0xff, 0xdf, + 0xb6, 0xa0, 0xdb, 0xff, 0xdb, 0xff, 0xe4, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xff, 0xa0, + 0x92, 0x4c, 0xdb, 0xff, 0xdb, 0xff, 0xf2, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xcd, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xff, 0x4c, + 0x6d, 0x07, 0x92, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xe5, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe4, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xff, 0xff, 0xff, 0x07, + 0x00, 0x00, 0x6e, 0x47, 0xb7, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xe4, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe4, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb7, 0xff, 0xff, 0x44, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x6e, 0xa4, 0xb7, 0xff, 0xb7, 0xff, 0xbb, 0xff, 0xc5, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xe0, 0xff, 0xc0, 0xff, 0xc4, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xff, 0xa4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x92, 0x9f, 0xb6, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xce, 0xff, 0xc5, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc5, 0xff, 0xad, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb7, 0xff, 0xff, 0x9f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x92, 0x68, 0x92, 0xf3, 0xb6, 0xff, 0xb7, 0xff, 0xb6, 0xff, 0xae, 0xff, 0xad, 0xff, 0xa9, 0xff, 0xa5, 0xff, 0xa5, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa5, 0xff, 0xa5, 0xff, 0xa5, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa5, 0xff, 0xa5, 0xff, 0xa5, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa4, 0xff, 0xa5, 0xff, 0xa9, 0xff, 0xad, 0xff, 0xae, 0xff, 0xb2, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xdb, 0xf3, 0xff, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x92, 0x2c, 0x92, 0x8b, 0x92, 0xf4, 0xb6, 0xff, 0xb7, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x8e, 0xff, 0x8e, 0xff, 0x8e, 0xff, 0x8e, 0xff, 0x8e, 0xff, 0x8e, 0xff, 0x8e, 0xff, 0x8e, 0xff, 0x6d, 0xff, 0x6d, 0xff, 0x6d, 0xff, 0x6d, 0xff, 0x6d, 0xff, 0x6d, 0xff, 0x6d, 0xff, 0x8e, 0xff, 0x8e, 0xff, 0x8e, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0xb2, 0xff, 0x96, 0xff, 0x96, 0xff, 0xb7, 0xff, 0xdb, 0xf3, 0xff, 0x88, 0xff, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6e, 0x04, 0x92, 0x0c, 0x92, 0x47, 0x92, 0xb8, 0x92, 0xeb, 0x92, 0xf8, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0x96, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x96, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xf8, 0xdb, 0xeb, 0xff, 0xb8, 0xff, 0x47, 0xff, 0x0c, 0xff, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +#endif +#if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP == 0 + /*Pixel format: Alpha 8 bit, Red: 5 bit, Green: 6 bit, Blue: 5 bit*/ + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x84, 0x04, 0xf4, 0xa4, 0x13, 0x55, 0xad, 0x47, 0xd7, 0xbd, 0x8c, 0xd7, 0xbd, 0xcb, 0x18, 0xc6, 0xef, 0x38, 0xc6, 0xff, 0x18, 0xc6, 0xff, 0x18, 0xc6, 0xff, 0xf8, 0xbd, 0xff, 0xf7, 0xbd, 0xff, 0xd7, 0xbd, 0xff, 0xd7, 0xbd, 0xff, 0xd7, 0xbd, 0xff, 0xd7, 0xbd, 0xff, 0xf7, 0xbd, 0xff, 0xf8, 0xc5, 0xff, 0x18, 0xc6, 0xff, 0x18, 0xc6, 0xff, 0x38, 0xc6, 0xff, 0x38, 0xc6, 0xff, 0x39, 0xc6, 0xff, 0x39, 0xce, 0xff, 0x59, 0xce, 0xff, 0x59, 0xce, 0xff, 0x59, 0xce, 0xff, 0x59, 0xce, 0xff, 0x79, 0xce, 0xff, 0x79, 0xce, 0xff, 0x7a, 0xd6, 0xff, 0x9a, 0xd6, 0xff, 0x9a, 0xd6, 0xff, 0x9a, 0xd6, 0xff, 0x9a, 0xd6, 0xff, 0xba, 0xd6, 0xff, 0xba, 0xd6, 0xff, 0xba, 0xd6, 0xff, 0xbb, 0xde, 0xff, 0xdb, 0xde, 0xff, 0xdb, 0xde, 0xff, 0xdb, 0xde, 0xff, 0xdb, 0xde, 0xff, 0xfb, 0xde, 0xff, 0xfb, 0xde, 0xff, 0xfc, 0xde, 0xff, 0xfc, 0xe6, 0xff, 0x1c, 0xe7, 0xff, 0x1c, 0xe7, 0xff, 0x1c, 0xe7, 0xff, 0x1c, 0xe7, 0xff, 0x1c, 0xe7, 0xff, 0x3c, 0xe7, 0xff, 0x3c, 0xe7, 0xff, 0x3c, 0xe7, 0xff, 0x3c, 0xe7, 0xff, 0x3c, 0xe7, 0xff, 0x3c, 0xe7, 0xff, 0x3c, 0xe7, 0xff, 0x3c, 0xe7, 0xff, 0x1c, 0xe7, 0xff, 0x3c, 0xe7, 0xff, 0x1c, 0xe7, 0xff, 0x3c, 0xe7, 0xff, 0x3c, 0xe7, 0xff, 0x1c, 0xe7, 0xff, 0x1c, 0xe7, 0xff, 0x1c, 0xe7, 0xff, 0x1c, 0xe7, 0xff, 0x1c, 0xe7, 0xff, 0x1c, 0xe7, 0xff, 0x1c, 0xe7, 0xff, 0x1c, 0xe7, 0xff, 0x1c, 0xe7, 0xff, 0x1c, 0xe7, 0xff, 0x1c, 0xe7, 0xff, 0x1c, 0xe7, 0xff, 0x1c, 0xe7, 0xff, 0x1c, 0xe7, 0xff, 0xfc, 0xe6, 0xff, 0xfc, 0xde, 0xff, 0xfb, 0xde, 0xff, 0xdb, 0xde, 0xff, 0xdb, 0xde, 0xff, 0xbb, 0xd6, 0xff, 0x9a, 0xd6, 0xff, 0x9a, 0xd6, 0xff, 0x7a, 0xd6, 0xff, 0x7a, 0xce, 0xff, 0x79, 0xce, 0xff, 0x59, 0xce, 0xff, 0x59, 0xce, 0xff, 0x38, 0xc6, 0xff, 0x18, 0xc6, 0xff, 0x18, 0xc6, 0xff, 0xf8, 0xc5, 0xff, 0xf7, 0xbd, 0xff, 0xd7, 0xbd, 0xff, 0xd7, 0xbd, 0xff, 0xb7, 0xbd, 0xff, 0xb6, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0xb6, 0xb5, 0xef, 0xf8, 0xc5, 0xc8, 0x38, 0xc6, 0x8c, 0xfb, 0xde, 0x44, 0xdb, 0xde, 0x13, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0xad, 0x28, 0xb7, 0xbd, 0x7b, 0x38, 0xc6, 0xff, 0x9e, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xff, 0x5d, 0xff, 0xff, 0xfc, 0xfe, 0xff, 0xdb, 0xfe, 0xff, 0xdb, 0xfe, 0xff, 0xfb, 0xfe, 0xff, 0xdb, 0xfe, 0xff, 0xdb, 0xfe, 0xff, 0xdb, 0xfe, 0xff, 0xdb, 0xfe, 0xff, 0xdb, 0xfe, 0xff, 0xdb, 0xfe, 0xff, 0xdb, 0xfe, 0xff, 0xfb, 0xfe, 0xff, 0xfb, 0xfe, 0xff, 0xfb, 0xfe, 0xff, 0xfb, 0xfe, 0xff, 0xfb, 0xfe, 0xff, 0xfb, 0xfe, 0xff, 0xdb, 0xfe, 0xff, 0xdb, 0xfe, 0xff, 0xdb, 0xfe, 0xff, 0xdb, 0xfe, 0xff, 0xdb, 0xfe, 0xff, 0xbb, 0xfe, 0xff, 0xbb, 0xfe, 0xff, 0xbb, 0xfe, 0xff, 0xbb, 0xfe, 0xff, 0xba, 0xfe, 0xff, 0xba, 0xfe, 0xff, 0xba, 0xfe, 0xff, 0x9a, 0xfe, 0xff, 0x9a, 0xfe, 0xff, 0x9a, 0xfe, 0xff, 0x9a, 0xfe, 0xff, 0x9a, 0xfe, 0xff, 0x9a, 0xfe, 0xff, 0x7a, 0xfe, 0xff, 0x7a, 0xf6, 0xff, 0x7a, 0xf6, 0xff, 0x79, 0xf6, 0xff, 0x79, 0xf6, 0xff, 0x79, 0xf6, 0xff, 0x59, 0xf6, 0xff, 0x59, 0xf6, 0xff, 0x59, 0xf6, 0xff, 0x59, 0xf6, 0xff, 0x59, 0xf6, 0xff, 0x59, 0xf6, 0xff, 0x39, 0xf6, 0xff, 0x39, 0xf6, 0xff, 0x39, 0xee, 0xff, 0x38, 0xee, 0xff, 0x38, 0xee, 0xff, 0x38, 0xee, 0xff, 0x18, 0xee, 0xff, 0x18, 0xee, 0xff, 0x18, 0xee, 0xff, 0x18, 0xee, 0xff, 0x18, 0xee, 0xff, 0x18, 0xee, 0xff, 0xf8, 0xed, 0xff, 0xf8, 0xed, 0xff, 0xf8, 0xe5, 0xff, 0xf8, 0xe5, 0xff, 0xf8, 0xe5, 0xff, 0xf7, 0xe5, 0xff, 0xf7, 0xe5, 0xff, 0xf7, 0xe5, 0xff, 0xf7, 0xe5, 0xff, 0xd7, 0xe5, 0xff, 0xd7, 0xe5, 0xff, 0xd7, 0xe5, 0xff, 0xd7, 0xe5, 0xff, 0xb7, 0xe5, 0xff, 0xb6, 0xdd, 0xff, 0x96, 0xdd, 0xff, 0x55, 0xd5, 0xff, 0x55, 0xd5, 0xff, 0x34, 0xcd, 0xff, 0x14, 0xcd, 0xff, 0xf3, 0xc4, 0xff, 0xd3, 0xc4, 0xff, 0xb3, 0xbc, 0xff, 0x92, 0xbc, 0xff, 0x72, 0xb4, 0xff, 0x51, 0xb4, 0xff, 0x31, 0xb4, 0xff, 0x30, 0xac, 0xff, 0x10, 0xac, 0xff, 0xef, 0xa3, 0xff, 0xcf, 0xa3, 0xff, 0xaf, 0x9b, 0xff, 0xae, 0x9b, 0xff, 0x8e, 0x93, 0xff, 0x6e, 0x93, 0xff, 0x4d, 0x8b, 0xff, 0x4d, 0x8b, 0xff, 0x4d, 0x7b, 0xff, 0x8e, 0x73, 0xff, 0x8e, 0x6b, 0xff, 0x8e, 0x73, 0xff, 0x96, 0xb5, 0xff, 0x59, 0xce, 0x7b, 0x1c, 0xe7, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0xad, 0x6f, 0x9a, 0xd6, 0xeb, 0x5d, 0xef, 0xff, 0xff, 0xff, 0xff, 0x5d, 0xf7, 0xff, 0x76, 0xfd, 0xff, 0x10, 0xfc, 0xff, 0x8a, 0xfa, 0xff, 0x86, 0xf9, 0xff, 0x25, 0xf9, 0xff, 0x24, 0xf9, 0xff, 0x04, 0xf9, 0xff, 0x65, 0xf9, 0xff, 0x08, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x69, 0xfa, 0xff, 0x69, 0xfa, 0xff, 0x69, 0xfa, 0xff, 0x69, 0xfa, 0xff, 0x69, 0xfa, 0xff, 0x69, 0xfa, 0xff, 0x69, 0xfa, 0xff, 0x69, 0xfa, 0xff, 0x69, 0xfa, 0xff, 0x69, 0xfa, 0xff, 0x69, 0xfa, 0xff, 0x69, 0xfa, 0xff, 0x69, 0xfa, 0xff, 0x69, 0xfa, 0xff, 0x69, 0xfa, 0xff, 0x69, 0xfa, 0xff, 0x69, 0xfa, 0xff, 0x69, 0xfa, 0xff, 0x69, 0xfa, 0xff, 0x69, 0xfa, 0xff, 0x69, 0xfa, 0xff, 0x69, 0xfa, 0xff, 0x69, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x29, 0xfa, 0xff, 0x29, 0xfa, 0xff, 0x29, 0xfa, 0xff, 0x29, 0xfa, 0xff, 0x28, 0xfa, 0xff, 0x28, 0xfa, 0xff, 0x08, 0xfa, 0xff, 0x08, 0xfa, 0xff, 0x08, 0xf2, 0xff, 0x08, 0xf2, 0xff, 0x08, 0xf2, 0xff, 0x08, 0xf2, 0xff, 0x08, 0xf2, 0xff, 0xe8, 0xf1, 0xff, 0xe8, 0xf1, 0xff, 0xe8, 0xf1, 0xff, 0xe8, 0xf1, 0xff, 0xe7, 0xf1, 0xff, 0x86, 0xf1, 0xff, 0xe3, 0xf0, 0xff, 0x62, 0xf0, 0xff, 0xa2, 0xe8, 0xff, 0xa2, 0xe8, 0xff, 0xc3, 0xe8, 0xff, 0x25, 0xd1, 0xff, 0xe7, 0xb9, 0xff, 0x8a, 0x9a, 0xff, 0x2c, 0x73, 0xff, 0x0c, 0x5b, 0xff, 0xcf, 0x7b, 0xff, 0x35, 0xad, 0xe8, 0xfc, 0xe6, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x75, 0xad, 0xa8, 0xdb, 0xde, 0xff, 0xbf, 0xf7, 0xff, 0xff, 0xf7, 0xff, 0xcf, 0xfb, 0xff, 0x08, 0xfa, 0xff, 0x41, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x49, 0xfa, 0xff, 0xcb, 0xfa, 0xff, 0x6e, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0xcf, 0xfb, 0xff, 0x6e, 0xfb, 0xff, 0xeb, 0xfa, 0xff, 0x49, 0xfa, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x20, 0xf8, 0xff, 0xe4, 0xd8, 0xff, 0xa6, 0xb1, 0xff, 0x8e, 0x63, 0xff, 0x8e, 0x73, 0xff, 0xf3, 0x9c, 0xff, 0xfc, 0xe6, 0xa8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0xad, 0xa0, 0x5d, 0xef, 0xff, 0x9e, 0xf7, 0xff, 0x5d, 0xf7, 0xff, 0x08, 0xfa, 0xff, 0x20, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x4d, 0xfb, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x4d, 0xfb, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0xe3, 0xd8, 0xff, 0x6e, 0x7b, 0xff, 0xcf, 0x7b, 0xff, 0x92, 0x94, 0xff, 0x3c, 0xe7, 0x9f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xb2, 0x94, 0x3c, 0xfc, 0xe6, 0xff, 0x9e, 0xf7, 0xff, 0x7e, 0xf7, 0xff, 0xe3, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x8e, 0xfb, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x8e, 0xfb, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x62, 0xf0, 0xff, 0xcf, 0x7b, 0xff, 0x30, 0x84, 0xff, 0x14, 0xa5, 0xff, 0xff, 0xff, 0x3c, 0x00, 0x00, 0x00, + 0xae, 0x73, 0x07, 0xb7, 0xbd, 0xff, 0x9e, 0xf7, 0xff, 0x9e, 0xf7, 0xff, 0x04, 0xf9, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x04, 0xf9, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x04, 0xf9, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x82, 0xf0, 0xff, 0x31, 0x84, 0xff, 0x51, 0x8c, 0xff, 0xbb, 0xde, 0xff, 0xff, 0xff, 0x07, + 0x14, 0xa5, 0x4c, 0x7e, 0xf7, 0xff, 0x9e, 0xf7, 0xff, 0x92, 0xfc, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x28, 0xfa, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x28, 0xfa, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x8a, 0xba, 0xff, 0x92, 0x8c, 0xff, 0xb3, 0x9c, 0xff, 0x9e, 0xf7, 0x4c, + 0xb6, 0xb5, 0xa0, 0x7e, 0xf7, 0xff, 0x9e, 0xf7, 0xff, 0xc3, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0xaa, 0xfa, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0xaa, 0xfa, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x62, 0xf0, 0xff, 0x92, 0x94, 0xff, 0xb3, 0x9c, 0xff, 0xdb, 0xde, 0xa0, + 0xf7, 0xbd, 0xe0, 0x7d, 0xef, 0xff, 0x55, 0xf5, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0xe8, 0xf9, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0xe7, 0xf9, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x4d, 0xb3, 0xff, 0xd3, 0x9c, 0xff, 0x9a, 0xd6, 0xdf, + 0x38, 0xc6, 0xfb, 0x7d, 0xef, 0xff, 0x0c, 0xfb, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0xa3, 0xf8, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0xa3, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0xe8, 0xd1, 0xff, 0xd3, 0x9c, 0xff, 0x59, 0xce, 0xfb, + 0x38, 0xc6, 0xff, 0x7d, 0xef, 0xff, 0x29, 0xfa, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x6a, 0xfa, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x69, 0xfa, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x66, 0xe1, 0xff, 0xd3, 0x9c, 0xff, 0x39, 0xce, 0xff, + 0x38, 0xc6, 0xff, 0x5d, 0xef, 0xff, 0x28, 0xfa, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x8a, 0xfa, 0xff, 0xef, 0xfb, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0x10, 0xfc, 0xff, 0xef, 0xfb, 0xff, 0x8a, 0xfa, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x65, 0xe1, 0xff, 0xd3, 0x9c, 0xff, 0x39, 0xce, 0xff, + 0x38, 0xc6, 0xff, 0x5d, 0xef, 0xff, 0x28, 0xfa, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x45, 0xf9, 0xff, 0xcb, 0xfa, 0xff, 0x0c, 0xfb, 0xff, 0x2d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x4d, 0xfb, 0xff, 0x2d, 0xfb, 0xff, 0x0c, 0xfb, 0xff, 0xcb, 0xfa, 0xff, 0x45, 0xf9, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x65, 0xe1, 0xff, 0xd3, 0x9c, 0xff, 0x39, 0xce, 0xff, + 0x38, 0xc6, 0xff, 0x5d, 0xef, 0xff, 0x28, 0xfa, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x41, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0x41, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x65, 0xe1, 0xff, 0xd3, 0x9c, 0xff, 0x39, 0xce, 0xff, + 0x18, 0xc6, 0xff, 0x5d, 0xef, 0xff, 0x08, 0xfa, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x65, 0xe1, 0xff, 0xd3, 0x9c, 0xff, 0x39, 0xce, 0xff, + 0x18, 0xc6, 0xff, 0x3d, 0xef, 0xff, 0x08, 0xfa, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x65, 0xe1, 0xff, 0xd3, 0x9c, 0xff, 0x39, 0xce, 0xff, + 0x18, 0xc6, 0xff, 0x3d, 0xef, 0xff, 0x08, 0xfa, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x65, 0xe1, 0xff, 0xd3, 0x9c, 0xff, 0x39, 0xce, 0xff, + 0x18, 0xc6, 0xff, 0x3d, 0xef, 0xff, 0x08, 0xfa, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x65, 0xe1, 0xff, 0xd3, 0x9c, 0xff, 0x39, 0xce, 0xff, + 0x18, 0xc6, 0xff, 0x3c, 0xe7, 0xff, 0x08, 0xfa, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x65, 0xe1, 0xff, 0xd3, 0x9c, 0xff, 0x39, 0xce, 0xff, + 0x18, 0xc6, 0xff, 0x1c, 0xe7, 0xff, 0x08, 0xfa, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x65, 0xe1, 0xff, 0xd3, 0x9c, 0xff, 0x39, 0xce, 0xff, + 0xf8, 0xc5, 0xff, 0x1c, 0xe7, 0xff, 0x08, 0xfa, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x65, 0xe1, 0xff, 0xd3, 0x9c, 0xff, 0x59, 0xce, 0xff, + 0xf7, 0xbd, 0xff, 0x1c, 0xe7, 0xff, 0x08, 0xfa, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x65, 0xe1, 0xff, 0xd3, 0x9c, 0xff, 0x59, 0xce, 0xff, + 0xf7, 0xbd, 0xff, 0x1c, 0xe7, 0xff, 0x08, 0xfa, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x65, 0xe1, 0xff, 0xd3, 0x9c, 0xff, 0x59, 0xce, 0xff, + 0xd7, 0xbd, 0xff, 0xfc, 0xe6, 0xff, 0x08, 0xfa, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x65, 0xe1, 0xff, 0xd3, 0x9c, 0xff, 0x59, 0xce, 0xff, + 0xd7, 0xbd, 0xff, 0xfc, 0xe6, 0xff, 0x08, 0xfa, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x65, 0xe1, 0xff, 0xd3, 0x9c, 0xff, 0x59, 0xce, 0xff, + 0xb7, 0xbd, 0xff, 0xfb, 0xde, 0xff, 0x08, 0xfa, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x65, 0xe1, 0xff, 0xd3, 0x9c, 0xff, 0x59, 0xce, 0xff, + 0xb6, 0xb5, 0xff, 0xfb, 0xde, 0xff, 0x08, 0xfa, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x65, 0xe1, 0xff, 0xd3, 0x9c, 0xff, 0x59, 0xce, 0xff, + 0x96, 0xb5, 0xff, 0xdb, 0xde, 0xff, 0x08, 0xf2, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x66, 0xe1, 0xff, 0xd3, 0x9c, 0xff, 0x59, 0xce, 0xff, + 0x75, 0xad, 0xfb, 0xba, 0xd6, 0xff, 0xcb, 0xf2, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x08, 0xd2, 0xff, 0xd3, 0x9c, 0xff, 0x59, 0xce, 0xfb, + 0x14, 0xa5, 0xe0, 0x7a, 0xd6, 0xff, 0xb2, 0xdc, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x6e, 0xbb, 0xff, 0xd3, 0x9c, 0xff, 0x9a, 0xd6, 0xdf, + 0xb2, 0x94, 0xa0, 0x39, 0xce, 0xff, 0x79, 0xce, 0xff, 0x82, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x82, 0xf8, 0xff, 0xf3, 0x9c, 0xff, 0xd3, 0x9c, 0xff, 0xfc, 0xe6, 0xa0, + 0xcf, 0x7b, 0x4c, 0x18, 0xc6, 0xff, 0x38, 0xc6, 0xff, 0xcf, 0xdb, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0x00, 0xf8, 0xff, 0xec, 0xc2, 0xff, 0xf3, 0x9c, 0xff, 0xd3, 0x9c, 0xff, 0xbe, 0xf7, 0x4c, + 0xcb, 0x5a, 0x07, 0x51, 0x8c, 0xff, 0xf7, 0xbd, 0xff, 0xd7, 0xbd, 0xff, 0x24, 0xe9, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf0, 0xff, 0x00, 0xf8, 0xff, 0xe4, 0xe0, 0xff, 0xd3, 0x9c, 0xff, 0xb2, 0x94, 0xff, 0xfb, 0xde, 0xff, 0xff, 0xff, 0x07, + 0x00, 0x00, 0x00, 0x4d, 0x6b, 0x47, 0x34, 0xa5, 0xff, 0xb6, 0xb5, 0xff, 0xd7, 0xb5, 0xff, 0xa3, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0x00, 0xe0, 0xff, 0xa2, 0xd8, 0xff, 0xf4, 0x9c, 0xff, 0xd3, 0x9c, 0xff, 0x75, 0xad, 0xff, 0xff, 0xff, 0x44, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6b, 0xa4, 0x55, 0xad, 0xff, 0x76, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0x04, 0xc9, 0xff, 0x41, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x00, 0xd0, 0xff, 0x21, 0xd0, 0xff, 0xe4, 0xc8, 0xff, 0xf3, 0x9c, 0xff, 0xb3, 0x9c, 0xff, 0xf4, 0xa4, 0xff, 0xbe, 0xf7, 0xa4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcf, 0x7b, 0x9f, 0xf3, 0x9c, 0xff, 0x55, 0xad, 0xff, 0x76, 0xad, 0xff, 0x2d, 0xb3, 0xff, 0x45, 0xb9, 0xff, 0x20, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x00, 0xc0, 0xff, 0x25, 0xb9, 0xff, 0xeb, 0xaa, 0xff, 0xf3, 0x9c, 0xff, 0xd3, 0x9c, 0xff, 0x75, 0xad, 0xff, 0x3d, 0xef, 0x9f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x7b, 0x68, 0x51, 0x8c, 0xf3, 0x14, 0xa5, 0xff, 0x75, 0xa5, 0xff, 0xb3, 0xa4, 0xff, 0x4d, 0xab, 0xff, 0xcb, 0xaa, 0xff, 0x29, 0xaa, 0xff, 0x66, 0xb1, 0xff, 0x04, 0xb1, 0xff, 0x04, 0xb1, 0xff, 0x04, 0xb1, 0xff, 0x04, 0xb1, 0xff, 0x04, 0xb1, 0xff, 0x04, 0xb1, 0xff, 0x04, 0xb1, 0xff, 0x04, 0xb1, 0xff, 0x04, 0xb1, 0xff, 0x04, 0xb1, 0xff, 0x04, 0xb1, 0xff, 0x04, 0xb1, 0xff, 0x04, 0xb1, 0xff, 0x04, 0xb1, 0xff, 0x04, 0xb1, 0xff, 0x04, 0xb1, 0xff, 0x04, 0xb1, 0xff, 0x04, 0xb1, 0xff, 0x04, 0xb1, 0xff, 0x04, 0xb1, 0xff, 0x04, 0xb1, 0xff, 0x04, 0xb1, 0xff, 0x04, 0xb1, 0xff, 0x04, 0xb1, 0xff, 0x04, 0xb1, 0xff, 0x04, 0xb1, 0xff, 0x04, 0xb1, 0xff, 0x04, 0xb1, 0xff, 0x04, 0xb1, 0xff, 0x04, 0xb1, 0xff, 0xe4, 0xb0, 0xff, 0xe4, 0xb0, 0xff, 0xe4, 0xa8, 0xff, 0xe4, 0xa8, 0xff, 0xe4, 0xa8, 0xff, 0xe4, 0xa8, 0xff, 0xe4, 0xa8, 0xff, 0xe4, 0xa8, 0xff, 0xe4, 0xa8, 0xff, 0xe4, 0xa8, 0xff, 0xe3, 0xa8, 0xff, 0xe3, 0xa8, 0xff, 0xe3, 0xa8, 0xff, 0xe3, 0xa8, 0xff, 0xe3, 0xa8, 0xff, 0xe3, 0xa8, 0xff, 0xc3, 0xa8, 0xff, 0xc3, 0xa8, 0xff, 0xc3, 0xa8, 0xff, 0xc3, 0xa8, 0xff, 0xc3, 0xa8, 0xff, 0xc3, 0xa8, 0xff, 0xc3, 0xa8, 0xff, 0xc3, 0xa8, 0xff, 0xc3, 0xa8, 0xff, 0xc3, 0xa8, 0xff, 0xa3, 0xa8, 0xff, 0xc3, 0xa8, 0xff, 0xa3, 0xa0, 0xff, 0xa3, 0xa0, 0xff, 0xa3, 0xa0, 0xff, 0xa3, 0xa0, 0xff, 0xa2, 0xa0, 0xff, 0xa2, 0xa0, 0xff, 0xa2, 0xa0, 0xff, 0xa2, 0xa0, 0xff, 0xa3, 0xa0, 0xff, 0xa3, 0xa0, 0xff, 0xc3, 0xa8, 0xff, 0xc3, 0xa8, 0xff, 0xc3, 0xa8, 0xff, 0xc3, 0xa8, 0xff, 0xc3, 0xa8, 0xff, 0xe3, 0xa8, 0xff, 0xe4, 0xa8, 0xff, 0xe4, 0xa8, 0xff, 0xe4, 0xa8, 0xff, 0xe4, 0xa8, 0xff, 0xe4, 0xa8, 0xff, 0xe4, 0xa8, 0xff, 0xe4, 0xa8, 0xff, 0xe4, 0xa8, 0xff, 0xe4, 0xa8, 0xff, 0xe4, 0xa8, 0xff, 0xe4, 0xa8, 0xff, 0xe4, 0xa8, 0xff, 0xe4, 0xa8, 0xff, 0xe4, 0xa8, 0xff, 0xe4, 0xa8, 0xff, 0xe4, 0xa8, 0xff, 0xe4, 0xa8, 0xff, 0xe4, 0xa8, 0xff, 0xe4, 0xa8, 0xff, 0x04, 0xa9, 0xff, 0x45, 0xa9, 0xff, 0x08, 0xaa, 0xff, 0xab, 0xaa, 0xff, 0x0c, 0xa3, 0xff, 0x51, 0x9c, 0xff, 0xf3, 0x94, 0xff, 0xf3, 0x9c, 0xff, 0x59, 0xce, 0xf3, 0x1c, 0xe7, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x73, 0x2c, 0x10, 0x84, 0x8b, 0x71, 0x8c, 0xf4, 0xb3, 0x9c, 0xff, 0x14, 0xa5, 0xff, 0x14, 0xa5, 0xff, 0xf3, 0xa4, 0xff, 0xb2, 0xa4, 0xff, 0x92, 0xa4, 0xff, 0x92, 0xa4, 0xff, 0x92, 0xa4, 0xff, 0x92, 0xa4, 0xff, 0x92, 0xa4, 0xff, 0x92, 0xa4, 0xff, 0xb2, 0xa4, 0xff, 0xb2, 0xa4, 0xff, 0xb2, 0xa4, 0xff, 0xb2, 0xa4, 0xff, 0xb2, 0xa4, 0xff, 0xb2, 0xa4, 0xff, 0xb2, 0xa4, 0xff, 0xb2, 0xa4, 0xff, 0xb2, 0xa4, 0xff, 0xb2, 0xa4, 0xff, 0xb2, 0xa4, 0xff, 0xb2, 0xa4, 0xff, 0xb2, 0xa4, 0xff, 0x92, 0xa4, 0xff, 0x92, 0xa4, 0xff, 0x92, 0xa4, 0xff, 0x92, 0xa4, 0xff, 0x92, 0xa4, 0xff, 0x72, 0xa4, 0xff, 0x72, 0xa4, 0xff, 0x72, 0xa4, 0xff, 0x71, 0x9c, 0xff, 0x71, 0x9c, 0xff, 0x71, 0x9c, 0xff, 0x71, 0x9c, 0xff, 0x51, 0x9c, 0xff, 0x51, 0x9c, 0xff, 0x51, 0x9c, 0xff, 0x31, 0x9c, 0xff, 0x31, 0x9c, 0xff, 0x30, 0x94, 0xff, 0x10, 0x94, 0xff, 0x10, 0x94, 0xff, 0x10, 0x94, 0xff, 0x10, 0x94, 0xff, 0xf0, 0x93, 0xff, 0xf0, 0x8b, 0xff, 0xef, 0x8b, 0xff, 0xcf, 0x8b, 0xff, 0xcf, 0x8b, 0xff, 0xcf, 0x8b, 0xff, 0xaf, 0x83, 0xff, 0xae, 0x83, 0xff, 0x8e, 0x83, 0xff, 0x8e, 0x83, 0xff, 0x6e, 0x7b, 0xff, 0x6d, 0x7b, 0xff, 0x4d, 0x7b, 0xff, 0x4d, 0x7b, 0xff, 0x2d, 0x7b, 0xff, 0x2c, 0x73, 0xff, 0x2c, 0x73, 0xff, 0x0c, 0x73, 0xff, 0xec, 0x72, 0xff, 0xeb, 0x6a, 0xff, 0xcb, 0x6a, 0xff, 0xcb, 0x6a, 0xff, 0xeb, 0x6a, 0xff, 0x0c, 0x73, 0xff, 0x2c, 0x73, 0xff, 0x4d, 0x7b, 0xff, 0x6e, 0x7b, 0xff, 0x8e, 0x83, 0xff, 0xaf, 0x8b, 0xff, 0xcf, 0x8b, 0xff, 0xf0, 0x93, 0xff, 0x30, 0x94, 0xff, 0x31, 0x9c, 0xff, 0x51, 0x9c, 0xff, 0x51, 0x9c, 0xff, 0x51, 0x9c, 0xff, 0x51, 0x9c, 0xff, 0x51, 0x9c, 0xff, 0x51, 0x9c, 0xff, 0x51, 0x9c, 0xff, 0x51, 0x9c, 0xff, 0x51, 0x9c, 0xff, 0x51, 0x9c, 0xff, 0x51, 0x9c, 0xff, 0x51, 0x9c, 0xff, 0x51, 0x9c, 0xff, 0x51, 0x9c, 0xff, 0x51, 0x9c, 0xff, 0x51, 0x9c, 0xff, 0x51, 0x9c, 0xff, 0x51, 0x9c, 0xff, 0x51, 0x9c, 0xff, 0x51, 0x9c, 0xff, 0x51, 0x9c, 0xff, 0x92, 0x94, 0xff, 0x92, 0x94, 0xff, 0xb2, 0x94, 0xff, 0x75, 0xad, 0xff, 0x38, 0xc6, 0xf3, 0xfb, 0xde, 0x88, 0xff, 0xff, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x6b, 0x04, 0x31, 0x8c, 0x0c, 0xf0, 0x83, 0x47, 0x10, 0x84, 0xb8, 0x71, 0x8c, 0xeb, 0x92, 0x94, 0xf8, 0xb2, 0x94, 0xff, 0xb3, 0x94, 0xff, 0xb3, 0x9c, 0xff, 0xd3, 0x9c, 0xff, 0xd3, 0x9c, 0xff, 0xd3, 0x9c, 0xff, 0xf3, 0x9c, 0xff, 0xf3, 0x9c, 0xff, 0xf4, 0x9c, 0xff, 0x14, 0xa5, 0xff, 0x14, 0xa5, 0xff, 0x14, 0xa5, 0xff, 0x14, 0xa5, 0xff, 0x14, 0xa5, 0xff, 0x34, 0xa5, 0xff, 0x34, 0xa5, 0xff, 0x35, 0xa5, 0xff, 0x35, 0xa5, 0xff, 0x35, 0xad, 0xff, 0x35, 0xad, 0xff, 0x55, 0xad, 0xff, 0x55, 0xad, 0xff, 0x55, 0xad, 0xff, 0x55, 0xad, 0xff, 0x55, 0xad, 0xff, 0x55, 0xad, 0xff, 0x55, 0xad, 0xff, 0x55, 0xad, 0xff, 0x55, 0xad, 0xff, 0x55, 0xad, 0xff, 0x55, 0xad, 0xff, 0x55, 0xad, 0xff, 0x55, 0xad, 0xff, 0x55, 0xad, 0xff, 0x55, 0xad, 0xff, 0x35, 0xa5, 0xff, 0x35, 0xa5, 0xff, 0x34, 0xa5, 0xff, 0x34, 0xa5, 0xff, 0x14, 0xa5, 0xff, 0x14, 0xa5, 0xff, 0x14, 0xa5, 0xff, 0x14, 0xa5, 0xff, 0xf4, 0xa4, 0xff, 0xf4, 0xa4, 0xff, 0xf4, 0xa4, 0xff, 0xf3, 0x9c, 0xff, 0xd3, 0x9c, 0xff, 0xd3, 0x9c, 0xff, 0xd3, 0x9c, 0xff, 0xd3, 0x9c, 0xff, 0xb3, 0x9c, 0xff, 0xb3, 0x94, 0xff, 0xb2, 0x94, 0xff, 0x92, 0x94, 0xff, 0x92, 0x94, 0xff, 0x92, 0x94, 0xff, 0x72, 0x94, 0xff, 0x72, 0x8c, 0xff, 0x71, 0x8c, 0xff, 0x51, 0x8c, 0xff, 0x51, 0x8c, 0xff, 0x72, 0x94, 0xff, 0x92, 0x94, 0xff, 0xb2, 0x94, 0xff, 0xd3, 0x9c, 0xff, 0xd3, 0x9c, 0xff, 0xf4, 0xa4, 0xff, 0x14, 0xa5, 0xff, 0x35, 0xad, 0xff, 0x55, 0xad, 0xff, 0x75, 0xad, 0xff, 0x96, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0xb6, 0xb5, 0xff, 0xb6, 0xb5, 0xff, 0xb6, 0xb5, 0xff, 0xf7, 0xbd, 0xf8, 0x9a, 0xd6, 0xeb, 0x9e, 0xf7, 0xb8, 0x9e, 0xf7, 0x47, 0xbb, 0xde, 0x0c, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +#endif +#if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP != 0 + /*Pixel format: Alpha 8 bit, Red: 5 bit, Green: 6 bit, Blue: 5 bit BUT the 2 color bytes are swapped*/ + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0x10, 0x04, 0xa4, 0xf4, 0x13, 0xad, 0x55, 0x47, 0xbd, 0xd7, 0x8c, 0xbd, 0xd7, 0xcb, 0xc6, 0x18, 0xef, 0xc6, 0x38, 0xff, 0xc6, 0x18, 0xff, 0xc6, 0x18, 0xff, 0xbd, 0xf8, 0xff, 0xbd, 0xf7, 0xff, 0xbd, 0xd7, 0xff, 0xbd, 0xd7, 0xff, 0xbd, 0xd7, 0xff, 0xbd, 0xd7, 0xff, 0xbd, 0xf7, 0xff, 0xc5, 0xf8, 0xff, 0xc6, 0x18, 0xff, 0xc6, 0x18, 0xff, 0xc6, 0x38, 0xff, 0xc6, 0x38, 0xff, 0xc6, 0x39, 0xff, 0xce, 0x39, 0xff, 0xce, 0x59, 0xff, 0xce, 0x59, 0xff, 0xce, 0x59, 0xff, 0xce, 0x59, 0xff, 0xce, 0x79, 0xff, 0xce, 0x79, 0xff, 0xd6, 0x7a, 0xff, 0xd6, 0x9a, 0xff, 0xd6, 0x9a, 0xff, 0xd6, 0x9a, 0xff, 0xd6, 0x9a, 0xff, 0xd6, 0xba, 0xff, 0xd6, 0xba, 0xff, 0xd6, 0xba, 0xff, 0xde, 0xbb, 0xff, 0xde, 0xdb, 0xff, 0xde, 0xdb, 0xff, 0xde, 0xdb, 0xff, 0xde, 0xdb, 0xff, 0xde, 0xfb, 0xff, 0xde, 0xfb, 0xff, 0xde, 0xfc, 0xff, 0xe6, 0xfc, 0xff, 0xe7, 0x1c, 0xff, 0xe7, 0x1c, 0xff, 0xe7, 0x1c, 0xff, 0xe7, 0x1c, 0xff, 0xe7, 0x1c, 0xff, 0xe7, 0x3c, 0xff, 0xe7, 0x3c, 0xff, 0xe7, 0x3c, 0xff, 0xe7, 0x3c, 0xff, 0xe7, 0x3c, 0xff, 0xe7, 0x3c, 0xff, 0xe7, 0x3c, 0xff, 0xe7, 0x3c, 0xff, 0xe7, 0x1c, 0xff, 0xe7, 0x3c, 0xff, 0xe7, 0x1c, 0xff, 0xe7, 0x3c, 0xff, 0xe7, 0x3c, 0xff, 0xe7, 0x1c, 0xff, 0xe7, 0x1c, 0xff, 0xe7, 0x1c, 0xff, 0xe7, 0x1c, 0xff, 0xe7, 0x1c, 0xff, 0xe7, 0x1c, 0xff, 0xe7, 0x1c, 0xff, 0xe7, 0x1c, 0xff, 0xe7, 0x1c, 0xff, 0xe7, 0x1c, 0xff, 0xe7, 0x1c, 0xff, 0xe7, 0x1c, 0xff, 0xe7, 0x1c, 0xff, 0xe7, 0x1c, 0xff, 0xe6, 0xfc, 0xff, 0xde, 0xfc, 0xff, 0xde, 0xfb, 0xff, 0xde, 0xdb, 0xff, 0xde, 0xdb, 0xff, 0xd6, 0xbb, 0xff, 0xd6, 0x9a, 0xff, 0xd6, 0x9a, 0xff, 0xd6, 0x7a, 0xff, 0xce, 0x7a, 0xff, 0xce, 0x79, 0xff, 0xce, 0x59, 0xff, 0xce, 0x59, 0xff, 0xc6, 0x38, 0xff, 0xc6, 0x18, 0xff, 0xc6, 0x18, 0xff, 0xc5, 0xf8, 0xff, 0xbd, 0xf7, 0xff, 0xbd, 0xd7, 0xff, 0xbd, 0xd7, 0xff, 0xbd, 0xb7, 0xff, 0xb5, 0xb6, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0xb6, 0xef, 0xc5, 0xf8, 0xc8, 0xc6, 0x38, 0x8c, 0xde, 0xfb, 0x44, 0xde, 0xdb, 0x13, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xad, 0x55, 0x28, 0xbd, 0xb7, 0x7b, 0xc6, 0x38, 0xff, 0xf7, 0x9e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xff, 0x5d, 0xff, 0xfe, 0xfc, 0xff, 0xfe, 0xdb, 0xff, 0xfe, 0xdb, 0xff, 0xfe, 0xfb, 0xff, 0xfe, 0xdb, 0xff, 0xfe, 0xdb, 0xff, 0xfe, 0xdb, 0xff, 0xfe, 0xdb, 0xff, 0xfe, 0xdb, 0xff, 0xfe, 0xdb, 0xff, 0xfe, 0xdb, 0xff, 0xfe, 0xfb, 0xff, 0xfe, 0xfb, 0xff, 0xfe, 0xfb, 0xff, 0xfe, 0xfb, 0xff, 0xfe, 0xfb, 0xff, 0xfe, 0xfb, 0xff, 0xfe, 0xdb, 0xff, 0xfe, 0xdb, 0xff, 0xfe, 0xdb, 0xff, 0xfe, 0xdb, 0xff, 0xfe, 0xdb, 0xff, 0xfe, 0xbb, 0xff, 0xfe, 0xbb, 0xff, 0xfe, 0xbb, 0xff, 0xfe, 0xbb, 0xff, 0xfe, 0xba, 0xff, 0xfe, 0xba, 0xff, 0xfe, 0xba, 0xff, 0xfe, 0x9a, 0xff, 0xfe, 0x9a, 0xff, 0xfe, 0x9a, 0xff, 0xfe, 0x9a, 0xff, 0xfe, 0x9a, 0xff, 0xfe, 0x9a, 0xff, 0xfe, 0x7a, 0xff, 0xf6, 0x7a, 0xff, 0xf6, 0x7a, 0xff, 0xf6, 0x79, 0xff, 0xf6, 0x79, 0xff, 0xf6, 0x79, 0xff, 0xf6, 0x59, 0xff, 0xf6, 0x59, 0xff, 0xf6, 0x59, 0xff, 0xf6, 0x59, 0xff, 0xf6, 0x59, 0xff, 0xf6, 0x59, 0xff, 0xf6, 0x39, 0xff, 0xf6, 0x39, 0xff, 0xee, 0x39, 0xff, 0xee, 0x38, 0xff, 0xee, 0x38, 0xff, 0xee, 0x38, 0xff, 0xee, 0x18, 0xff, 0xee, 0x18, 0xff, 0xee, 0x18, 0xff, 0xee, 0x18, 0xff, 0xee, 0x18, 0xff, 0xee, 0x18, 0xff, 0xed, 0xf8, 0xff, 0xed, 0xf8, 0xff, 0xe5, 0xf8, 0xff, 0xe5, 0xf8, 0xff, 0xe5, 0xf8, 0xff, 0xe5, 0xf7, 0xff, 0xe5, 0xf7, 0xff, 0xe5, 0xf7, 0xff, 0xe5, 0xf7, 0xff, 0xe5, 0xd7, 0xff, 0xe5, 0xd7, 0xff, 0xe5, 0xd7, 0xff, 0xe5, 0xd7, 0xff, 0xe5, 0xb7, 0xff, 0xdd, 0xb6, 0xff, 0xdd, 0x96, 0xff, 0xd5, 0x55, 0xff, 0xd5, 0x55, 0xff, 0xcd, 0x34, 0xff, 0xcd, 0x14, 0xff, 0xc4, 0xf3, 0xff, 0xc4, 0xd3, 0xff, 0xbc, 0xb3, 0xff, 0xbc, 0x92, 0xff, 0xb4, 0x72, 0xff, 0xb4, 0x51, 0xff, 0xb4, 0x31, 0xff, 0xac, 0x30, 0xff, 0xac, 0x10, 0xff, 0xa3, 0xef, 0xff, 0xa3, 0xcf, 0xff, 0x9b, 0xaf, 0xff, 0x9b, 0xae, 0xff, 0x93, 0x8e, 0xff, 0x93, 0x6e, 0xff, 0x8b, 0x4d, 0xff, 0x8b, 0x4d, 0xff, 0x7b, 0x4d, 0xff, 0x73, 0x8e, 0xff, 0x6b, 0x8e, 0xff, 0x73, 0x8e, 0xff, 0xb5, 0x96, 0xff, 0xce, 0x59, 0x7b, 0xe7, 0x1c, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xad, 0x55, 0x6f, 0xd6, 0x9a, 0xeb, 0xef, 0x5d, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x5d, 0xff, 0xfd, 0x76, 0xff, 0xfc, 0x10, 0xff, 0xfa, 0x8a, 0xff, 0xf9, 0x86, 0xff, 0xf9, 0x25, 0xff, 0xf9, 0x24, 0xff, 0xf9, 0x04, 0xff, 0xf9, 0x65, 0xff, 0xfa, 0x08, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x69, 0xff, 0xfa, 0x69, 0xff, 0xfa, 0x69, 0xff, 0xfa, 0x69, 0xff, 0xfa, 0x69, 0xff, 0xfa, 0x69, 0xff, 0xfa, 0x69, 0xff, 0xfa, 0x69, 0xff, 0xfa, 0x69, 0xff, 0xfa, 0x69, 0xff, 0xfa, 0x69, 0xff, 0xfa, 0x69, 0xff, 0xfa, 0x69, 0xff, 0xfa, 0x69, 0xff, 0xfa, 0x69, 0xff, 0xfa, 0x69, 0xff, 0xfa, 0x69, 0xff, 0xfa, 0x69, 0xff, 0xfa, 0x69, 0xff, 0xfa, 0x69, 0xff, 0xfa, 0x69, 0xff, 0xfa, 0x69, 0xff, 0xfa, 0x69, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0x29, 0xff, 0xfa, 0x29, 0xff, 0xfa, 0x29, 0xff, 0xfa, 0x29, 0xff, 0xfa, 0x28, 0xff, 0xfa, 0x28, 0xff, 0xfa, 0x08, 0xff, 0xfa, 0x08, 0xff, 0xf2, 0x08, 0xff, 0xf2, 0x08, 0xff, 0xf2, 0x08, 0xff, 0xf2, 0x08, 0xff, 0xf2, 0x08, 0xff, 0xf1, 0xe8, 0xff, 0xf1, 0xe8, 0xff, 0xf1, 0xe8, 0xff, 0xf1, 0xe8, 0xff, 0xf1, 0xe7, 0xff, 0xf1, 0x86, 0xff, 0xf0, 0xe3, 0xff, 0xf0, 0x62, 0xff, 0xe8, 0xa2, 0xff, 0xe8, 0xa2, 0xff, 0xe8, 0xc3, 0xff, 0xd1, 0x25, 0xff, 0xb9, 0xe7, 0xff, 0x9a, 0x8a, 0xff, 0x73, 0x2c, 0xff, 0x5b, 0x0c, 0xff, 0x7b, 0xcf, 0xff, 0xad, 0x35, 0xe8, 0xe6, 0xfc, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xad, 0x75, 0xa8, 0xde, 0xdb, 0xff, 0xf7, 0xbf, 0xff, 0xf7, 0xff, 0xff, 0xfb, 0xcf, 0xff, 0xfa, 0x08, 0xff, 0xf8, 0x41, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xfa, 0x49, 0xff, 0xfa, 0xcb, 0xff, 0xfb, 0x6e, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0xcf, 0xff, 0xfb, 0x6e, 0xff, 0xfa, 0xeb, 0xff, 0xfa, 0x49, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x20, 0xff, 0xd8, 0xe4, 0xff, 0xb1, 0xa6, 0xff, 0x63, 0x8e, 0xff, 0x73, 0x8e, 0xff, 0x9c, 0xf3, 0xff, 0xe6, 0xfc, 0xa8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xad, 0x55, 0xa0, 0xef, 0x5d, 0xff, 0xf7, 0x9e, 0xff, 0xf7, 0x5d, 0xff, 0xfa, 0x08, 0xff, 0xf8, 0x20, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xfb, 0x4d, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfb, 0x4d, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xd8, 0xe3, 0xff, 0x7b, 0x6e, 0xff, 0x7b, 0xcf, 0xff, 0x94, 0x92, 0xff, 0xe7, 0x3c, 0x9f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x94, 0xb2, 0x3c, 0xe6, 0xfc, 0xff, 0xf7, 0x9e, 0xff, 0xf7, 0x7e, 0xff, 0xf8, 0xe3, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xfb, 0x8e, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfb, 0x8e, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf0, 0x62, 0xff, 0x7b, 0xcf, 0xff, 0x84, 0x30, 0xff, 0xa5, 0x14, 0xff, 0xff, 0xff, 0x3c, 0x00, 0x00, 0x00, + 0x73, 0xae, 0x07, 0xbd, 0xb7, 0xff, 0xf7, 0x9e, 0xff, 0xf7, 0x9e, 0xff, 0xf9, 0x04, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf9, 0x04, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xf9, 0x04, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf0, 0x82, 0xff, 0x84, 0x31, 0xff, 0x8c, 0x51, 0xff, 0xde, 0xbb, 0xff, 0xff, 0xff, 0x07, + 0xa5, 0x14, 0x4c, 0xf7, 0x7e, 0xff, 0xf7, 0x9e, 0xff, 0xfc, 0x92, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xfa, 0x28, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfa, 0x28, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xba, 0x8a, 0xff, 0x8c, 0x92, 0xff, 0x9c, 0xb3, 0xff, 0xf7, 0x9e, 0x4c, + 0xb5, 0xb6, 0xa0, 0xf7, 0x7e, 0xff, 0xf7, 0x9e, 0xff, 0xf8, 0xc3, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xfa, 0xaa, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfa, 0xaa, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf0, 0x62, 0xff, 0x94, 0x92, 0xff, 0x9c, 0xb3, 0xff, 0xde, 0xdb, 0xa0, + 0xbd, 0xf7, 0xe0, 0xef, 0x7d, 0xff, 0xf5, 0x55, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf9, 0xe8, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xf9, 0xe7, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xb3, 0x4d, 0xff, 0x9c, 0xd3, 0xff, 0xd6, 0x9a, 0xdf, + 0xc6, 0x38, 0xfb, 0xef, 0x7d, 0xff, 0xfb, 0x0c, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0xa3, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xf8, 0xa3, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xd1, 0xe8, 0xff, 0x9c, 0xd3, 0xff, 0xce, 0x59, 0xfb, + 0xc6, 0x38, 0xff, 0xef, 0x7d, 0xff, 0xfa, 0x29, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xfa, 0x6a, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfa, 0x69, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xe1, 0x66, 0xff, 0x9c, 0xd3, 0xff, 0xce, 0x39, 0xff, + 0xc6, 0x38, 0xff, 0xef, 0x5d, 0xff, 0xfa, 0x28, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xfa, 0x8a, 0xff, 0xfb, 0xef, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfc, 0x10, 0xff, 0xfb, 0xef, 0xff, 0xfa, 0x8a, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xe1, 0x65, 0xff, 0x9c, 0xd3, 0xff, 0xce, 0x39, 0xff, + 0xc6, 0x38, 0xff, 0xef, 0x5d, 0xff, 0xfa, 0x28, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf9, 0x45, 0xff, 0xfa, 0xcb, 0xff, 0xfb, 0x0c, 0xff, 0xfb, 0x2d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x4d, 0xff, 0xfb, 0x2d, 0xff, 0xfb, 0x0c, 0xff, 0xfa, 0xcb, 0xff, 0xf9, 0x45, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xe1, 0x65, 0xff, 0x9c, 0xd3, 0xff, 0xce, 0x39, 0xff, + 0xc6, 0x38, 0xff, 0xef, 0x5d, 0xff, 0xfa, 0x28, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x41, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x41, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xe1, 0x65, 0xff, 0x9c, 0xd3, 0xff, 0xce, 0x39, 0xff, + 0xc6, 0x18, 0xff, 0xef, 0x5d, 0xff, 0xfa, 0x08, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xe1, 0x65, 0xff, 0x9c, 0xd3, 0xff, 0xce, 0x39, 0xff, + 0xc6, 0x18, 0xff, 0xef, 0x3d, 0xff, 0xfa, 0x08, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xe1, 0x65, 0xff, 0x9c, 0xd3, 0xff, 0xce, 0x39, 0xff, + 0xc6, 0x18, 0xff, 0xef, 0x3d, 0xff, 0xfa, 0x08, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xe1, 0x65, 0xff, 0x9c, 0xd3, 0xff, 0xce, 0x39, 0xff, + 0xc6, 0x18, 0xff, 0xef, 0x3d, 0xff, 0xfa, 0x08, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xe1, 0x65, 0xff, 0x9c, 0xd3, 0xff, 0xce, 0x39, 0xff, + 0xc6, 0x18, 0xff, 0xe7, 0x3c, 0xff, 0xfa, 0x08, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xe1, 0x65, 0xff, 0x9c, 0xd3, 0xff, 0xce, 0x39, 0xff, + 0xc6, 0x18, 0xff, 0xe7, 0x1c, 0xff, 0xfa, 0x08, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xe1, 0x65, 0xff, 0x9c, 0xd3, 0xff, 0xce, 0x39, 0xff, + 0xc5, 0xf8, 0xff, 0xe7, 0x1c, 0xff, 0xfa, 0x08, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xe1, 0x65, 0xff, 0x9c, 0xd3, 0xff, 0xce, 0x59, 0xff, + 0xbd, 0xf7, 0xff, 0xe7, 0x1c, 0xff, 0xfa, 0x08, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xe1, 0x65, 0xff, 0x9c, 0xd3, 0xff, 0xce, 0x59, 0xff, + 0xbd, 0xf7, 0xff, 0xe7, 0x1c, 0xff, 0xfa, 0x08, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xe1, 0x65, 0xff, 0x9c, 0xd3, 0xff, 0xce, 0x59, 0xff, + 0xbd, 0xd7, 0xff, 0xe6, 0xfc, 0xff, 0xfa, 0x08, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xe1, 0x65, 0xff, 0x9c, 0xd3, 0xff, 0xce, 0x59, 0xff, + 0xbd, 0xd7, 0xff, 0xe6, 0xfc, 0xff, 0xfa, 0x08, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xe1, 0x65, 0xff, 0x9c, 0xd3, 0xff, 0xce, 0x59, 0xff, + 0xbd, 0xb7, 0xff, 0xde, 0xfb, 0xff, 0xfa, 0x08, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xe1, 0x65, 0xff, 0x9c, 0xd3, 0xff, 0xce, 0x59, 0xff, + 0xb5, 0xb6, 0xff, 0xde, 0xfb, 0xff, 0xfa, 0x08, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xe1, 0x65, 0xff, 0x9c, 0xd3, 0xff, 0xce, 0x59, 0xff, + 0xb5, 0x96, 0xff, 0xde, 0xdb, 0xff, 0xf2, 0x08, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xe1, 0x66, 0xff, 0x9c, 0xd3, 0xff, 0xce, 0x59, 0xff, + 0xad, 0x75, 0xfb, 0xd6, 0xba, 0xff, 0xf2, 0xcb, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xd2, 0x08, 0xff, 0x9c, 0xd3, 0xff, 0xce, 0x59, 0xfb, + 0xa5, 0x14, 0xe0, 0xd6, 0x7a, 0xff, 0xdc, 0xb2, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xbb, 0x6e, 0xff, 0x9c, 0xd3, 0xff, 0xd6, 0x9a, 0xdf, + 0x94, 0xb2, 0xa0, 0xce, 0x39, 0xff, 0xce, 0x79, 0xff, 0xf8, 0x82, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x82, 0xff, 0x9c, 0xf3, 0xff, 0x9c, 0xd3, 0xff, 0xe6, 0xfc, 0xa0, + 0x7b, 0xcf, 0x4c, 0xc6, 0x18, 0xff, 0xc6, 0x38, 0xff, 0xdb, 0xcf, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xc2, 0xec, 0xff, 0x9c, 0xf3, 0xff, 0x9c, 0xd3, 0xff, 0xf7, 0xbe, 0x4c, + 0x5a, 0xcb, 0x07, 0x8c, 0x51, 0xff, 0xbd, 0xf7, 0xff, 0xbd, 0xd7, 0xff, 0xe9, 0x24, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf0, 0x00, 0xff, 0xf8, 0x00, 0xff, 0xe0, 0xe4, 0xff, 0x9c, 0xd3, 0xff, 0x94, 0xb2, 0xff, 0xde, 0xfb, 0xff, 0xff, 0xff, 0x07, + 0x00, 0x00, 0x00, 0x6b, 0x4d, 0x47, 0xa5, 0x34, 0xff, 0xb5, 0xb6, 0xff, 0xb5, 0xd7, 0xff, 0xe0, 0xa3, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xe0, 0x00, 0xff, 0xd8, 0xa2, 0xff, 0x9c, 0xf4, 0xff, 0x9c, 0xd3, 0xff, 0xad, 0x75, 0xff, 0xff, 0xff, 0x44, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x6d, 0xa4, 0xad, 0x55, 0xff, 0xb5, 0x76, 0xff, 0xb5, 0x96, 0xff, 0xc9, 0x04, 0xff, 0xd0, 0x41, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x00, 0xff, 0xd0, 0x21, 0xff, 0xc8, 0xe4, 0xff, 0x9c, 0xf3, 0xff, 0x9c, 0xb3, 0xff, 0xa4, 0xf4, 0xff, 0xf7, 0xbe, 0xa4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7b, 0xcf, 0x9f, 0x9c, 0xf3, 0xff, 0xad, 0x55, 0xff, 0xad, 0x76, 0xff, 0xb3, 0x2d, 0xff, 0xb9, 0x45, 0xff, 0xc0, 0x20, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xc0, 0x00, 0xff, 0xb9, 0x25, 0xff, 0xaa, 0xeb, 0xff, 0x9c, 0xf3, 0xff, 0x9c, 0xd3, 0xff, 0xad, 0x75, 0xff, 0xef, 0x3d, 0x9f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7b, 0xef, 0x68, 0x8c, 0x51, 0xf3, 0xa5, 0x14, 0xff, 0xa5, 0x75, 0xff, 0xa4, 0xb3, 0xff, 0xab, 0x4d, 0xff, 0xaa, 0xcb, 0xff, 0xaa, 0x29, 0xff, 0xb1, 0x66, 0xff, 0xb1, 0x04, 0xff, 0xb1, 0x04, 0xff, 0xb1, 0x04, 0xff, 0xb1, 0x04, 0xff, 0xb1, 0x04, 0xff, 0xb1, 0x04, 0xff, 0xb1, 0x04, 0xff, 0xb1, 0x04, 0xff, 0xb1, 0x04, 0xff, 0xb1, 0x04, 0xff, 0xb1, 0x04, 0xff, 0xb1, 0x04, 0xff, 0xb1, 0x04, 0xff, 0xb1, 0x04, 0xff, 0xb1, 0x04, 0xff, 0xb1, 0x04, 0xff, 0xb1, 0x04, 0xff, 0xb1, 0x04, 0xff, 0xb1, 0x04, 0xff, 0xb1, 0x04, 0xff, 0xb1, 0x04, 0xff, 0xb1, 0x04, 0xff, 0xb1, 0x04, 0xff, 0xb1, 0x04, 0xff, 0xb1, 0x04, 0xff, 0xb1, 0x04, 0xff, 0xb1, 0x04, 0xff, 0xb1, 0x04, 0xff, 0xb1, 0x04, 0xff, 0xb1, 0x04, 0xff, 0xb0, 0xe4, 0xff, 0xb0, 0xe4, 0xff, 0xa8, 0xe4, 0xff, 0xa8, 0xe4, 0xff, 0xa8, 0xe4, 0xff, 0xa8, 0xe4, 0xff, 0xa8, 0xe4, 0xff, 0xa8, 0xe4, 0xff, 0xa8, 0xe4, 0xff, 0xa8, 0xe4, 0xff, 0xa8, 0xe3, 0xff, 0xa8, 0xe3, 0xff, 0xa8, 0xe3, 0xff, 0xa8, 0xe3, 0xff, 0xa8, 0xe3, 0xff, 0xa8, 0xe3, 0xff, 0xa8, 0xc3, 0xff, 0xa8, 0xc3, 0xff, 0xa8, 0xc3, 0xff, 0xa8, 0xc3, 0xff, 0xa8, 0xc3, 0xff, 0xa8, 0xc3, 0xff, 0xa8, 0xc3, 0xff, 0xa8, 0xc3, 0xff, 0xa8, 0xc3, 0xff, 0xa8, 0xc3, 0xff, 0xa8, 0xa3, 0xff, 0xa8, 0xc3, 0xff, 0xa0, 0xa3, 0xff, 0xa0, 0xa3, 0xff, 0xa0, 0xa3, 0xff, 0xa0, 0xa3, 0xff, 0xa0, 0xa2, 0xff, 0xa0, 0xa2, 0xff, 0xa0, 0xa2, 0xff, 0xa0, 0xa2, 0xff, 0xa0, 0xa3, 0xff, 0xa0, 0xa3, 0xff, 0xa8, 0xc3, 0xff, 0xa8, 0xc3, 0xff, 0xa8, 0xc3, 0xff, 0xa8, 0xc3, 0xff, 0xa8, 0xc3, 0xff, 0xa8, 0xe3, 0xff, 0xa8, 0xe4, 0xff, 0xa8, 0xe4, 0xff, 0xa8, 0xe4, 0xff, 0xa8, 0xe4, 0xff, 0xa8, 0xe4, 0xff, 0xa8, 0xe4, 0xff, 0xa8, 0xe4, 0xff, 0xa8, 0xe4, 0xff, 0xa8, 0xe4, 0xff, 0xa8, 0xe4, 0xff, 0xa8, 0xe4, 0xff, 0xa8, 0xe4, 0xff, 0xa8, 0xe4, 0xff, 0xa8, 0xe4, 0xff, 0xa8, 0xe4, 0xff, 0xa8, 0xe4, 0xff, 0xa8, 0xe4, 0xff, 0xa8, 0xe4, 0xff, 0xa8, 0xe4, 0xff, 0xa9, 0x04, 0xff, 0xa9, 0x45, 0xff, 0xaa, 0x08, 0xff, 0xaa, 0xab, 0xff, 0xa3, 0x0c, 0xff, 0x9c, 0x51, 0xff, 0x94, 0xf3, 0xff, 0x9c, 0xf3, 0xff, 0xce, 0x59, 0xf3, 0xe7, 0x1c, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x73, 0x8e, 0x2c, 0x84, 0x10, 0x8b, 0x8c, 0x71, 0xf4, 0x9c, 0xb3, 0xff, 0xa5, 0x14, 0xff, 0xa5, 0x14, 0xff, 0xa4, 0xf3, 0xff, 0xa4, 0xb2, 0xff, 0xa4, 0x92, 0xff, 0xa4, 0x92, 0xff, 0xa4, 0x92, 0xff, 0xa4, 0x92, 0xff, 0xa4, 0x92, 0xff, 0xa4, 0x92, 0xff, 0xa4, 0xb2, 0xff, 0xa4, 0xb2, 0xff, 0xa4, 0xb2, 0xff, 0xa4, 0xb2, 0xff, 0xa4, 0xb2, 0xff, 0xa4, 0xb2, 0xff, 0xa4, 0xb2, 0xff, 0xa4, 0xb2, 0xff, 0xa4, 0xb2, 0xff, 0xa4, 0xb2, 0xff, 0xa4, 0xb2, 0xff, 0xa4, 0xb2, 0xff, 0xa4, 0xb2, 0xff, 0xa4, 0x92, 0xff, 0xa4, 0x92, 0xff, 0xa4, 0x92, 0xff, 0xa4, 0x92, 0xff, 0xa4, 0x92, 0xff, 0xa4, 0x72, 0xff, 0xa4, 0x72, 0xff, 0xa4, 0x72, 0xff, 0x9c, 0x71, 0xff, 0x9c, 0x71, 0xff, 0x9c, 0x71, 0xff, 0x9c, 0x71, 0xff, 0x9c, 0x51, 0xff, 0x9c, 0x51, 0xff, 0x9c, 0x51, 0xff, 0x9c, 0x31, 0xff, 0x9c, 0x31, 0xff, 0x94, 0x30, 0xff, 0x94, 0x10, 0xff, 0x94, 0x10, 0xff, 0x94, 0x10, 0xff, 0x94, 0x10, 0xff, 0x93, 0xf0, 0xff, 0x8b, 0xf0, 0xff, 0x8b, 0xef, 0xff, 0x8b, 0xcf, 0xff, 0x8b, 0xcf, 0xff, 0x8b, 0xcf, 0xff, 0x83, 0xaf, 0xff, 0x83, 0xae, 0xff, 0x83, 0x8e, 0xff, 0x83, 0x8e, 0xff, 0x7b, 0x6e, 0xff, 0x7b, 0x6d, 0xff, 0x7b, 0x4d, 0xff, 0x7b, 0x4d, 0xff, 0x7b, 0x2d, 0xff, 0x73, 0x2c, 0xff, 0x73, 0x2c, 0xff, 0x73, 0x0c, 0xff, 0x72, 0xec, 0xff, 0x6a, 0xeb, 0xff, 0x6a, 0xcb, 0xff, 0x6a, 0xcb, 0xff, 0x6a, 0xeb, 0xff, 0x73, 0x0c, 0xff, 0x73, 0x2c, 0xff, 0x7b, 0x4d, 0xff, 0x7b, 0x6e, 0xff, 0x83, 0x8e, 0xff, 0x8b, 0xaf, 0xff, 0x8b, 0xcf, 0xff, 0x93, 0xf0, 0xff, 0x94, 0x30, 0xff, 0x9c, 0x31, 0xff, 0x9c, 0x51, 0xff, 0x9c, 0x51, 0xff, 0x9c, 0x51, 0xff, 0x9c, 0x51, 0xff, 0x9c, 0x51, 0xff, 0x9c, 0x51, 0xff, 0x9c, 0x51, 0xff, 0x9c, 0x51, 0xff, 0x9c, 0x51, 0xff, 0x9c, 0x51, 0xff, 0x9c, 0x51, 0xff, 0x9c, 0x51, 0xff, 0x9c, 0x51, 0xff, 0x9c, 0x51, 0xff, 0x9c, 0x51, 0xff, 0x9c, 0x51, 0xff, 0x9c, 0x51, 0xff, 0x9c, 0x51, 0xff, 0x9c, 0x51, 0xff, 0x9c, 0x51, 0xff, 0x9c, 0x51, 0xff, 0x94, 0x92, 0xff, 0x94, 0x92, 0xff, 0x94, 0xb2, 0xff, 0xad, 0x75, 0xff, 0xc6, 0x38, 0xf3, 0xde, 0xfb, 0x88, 0xff, 0xff, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6b, 0x6d, 0x04, 0x8c, 0x31, 0x0c, 0x83, 0xf0, 0x47, 0x84, 0x10, 0xb8, 0x8c, 0x71, 0xeb, 0x94, 0x92, 0xf8, 0x94, 0xb2, 0xff, 0x94, 0xb3, 0xff, 0x9c, 0xb3, 0xff, 0x9c, 0xd3, 0xff, 0x9c, 0xd3, 0xff, 0x9c, 0xd3, 0xff, 0x9c, 0xf3, 0xff, 0x9c, 0xf3, 0xff, 0x9c, 0xf4, 0xff, 0xa5, 0x14, 0xff, 0xa5, 0x14, 0xff, 0xa5, 0x14, 0xff, 0xa5, 0x14, 0xff, 0xa5, 0x14, 0xff, 0xa5, 0x34, 0xff, 0xa5, 0x34, 0xff, 0xa5, 0x35, 0xff, 0xa5, 0x35, 0xff, 0xad, 0x35, 0xff, 0xad, 0x35, 0xff, 0xad, 0x55, 0xff, 0xad, 0x55, 0xff, 0xad, 0x55, 0xff, 0xad, 0x55, 0xff, 0xad, 0x55, 0xff, 0xad, 0x55, 0xff, 0xad, 0x55, 0xff, 0xad, 0x55, 0xff, 0xad, 0x55, 0xff, 0xad, 0x55, 0xff, 0xad, 0x55, 0xff, 0xad, 0x55, 0xff, 0xad, 0x55, 0xff, 0xad, 0x55, 0xff, 0xad, 0x55, 0xff, 0xa5, 0x35, 0xff, 0xa5, 0x35, 0xff, 0xa5, 0x34, 0xff, 0xa5, 0x34, 0xff, 0xa5, 0x14, 0xff, 0xa5, 0x14, 0xff, 0xa5, 0x14, 0xff, 0xa5, 0x14, 0xff, 0xa4, 0xf4, 0xff, 0xa4, 0xf4, 0xff, 0xa4, 0xf4, 0xff, 0x9c, 0xf3, 0xff, 0x9c, 0xd3, 0xff, 0x9c, 0xd3, 0xff, 0x9c, 0xd3, 0xff, 0x9c, 0xd3, 0xff, 0x9c, 0xb3, 0xff, 0x94, 0xb3, 0xff, 0x94, 0xb2, 0xff, 0x94, 0x92, 0xff, 0x94, 0x92, 0xff, 0x94, 0x92, 0xff, 0x94, 0x72, 0xff, 0x8c, 0x72, 0xff, 0x8c, 0x71, 0xff, 0x8c, 0x51, 0xff, 0x8c, 0x51, 0xff, 0x94, 0x72, 0xff, 0x94, 0x92, 0xff, 0x94, 0xb2, 0xff, 0x9c, 0xd3, 0xff, 0x9c, 0xd3, 0xff, 0xa4, 0xf4, 0xff, 0xa5, 0x14, 0xff, 0xad, 0x35, 0xff, 0xad, 0x55, 0xff, 0xad, 0x75, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0xb6, 0xff, 0xb5, 0xb6, 0xff, 0xb5, 0xb6, 0xff, 0xbd, 0xf7, 0xf8, 0xd6, 0x9a, 0xeb, 0xf7, 0x9e, 0xb8, 0xf7, 0x9e, 0x47, 0xde, 0xbb, 0x0c, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +#endif +#if LV_COLOR_DEPTH == 32 + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x81, 0x81, 0x81, 0x04, 0x9d, 0x9d, 0x9d, 0x13, 0xa7, 0xa7, 0xa7, 0x47, 0xb7, 0xb7, 0xb8, 0x8c, 0xb9, 0xb9, 0xb8, 0xcb, 0xc1, 0xc1, 0xc0, 0xef, 0xc3, 0xc3, 0xc3, 0xff, 0xc2, 0xc2, 0xc1, 0xff, 0xc0, 0xc0, 0xbf, 0xff, 0xbd, 0xbd, 0xbc, 0xff, 0xbb, 0xbb, 0xbb, 0xff, 0xb9, 0xb9, 0xb9, 0xff, 0xb7, 0xb7, 0xb7, 0xff, 0xb8, 0xb8, 0xb8, 0xff, 0xba, 0xba, 0xba, 0xff, 0xbc, 0xbc, 0xbc, 0xff, 0xbe, 0xbe, 0xbe, 0xff, 0xbf, 0xbf, 0xbf, 0xff, 0xc1, 0xc1, 0xc0, 0xff, 0xc3, 0xc3, 0xc2, 0xff, 0xc4, 0xc4, 0xc3, 0xff, 0xc5, 0xc5, 0xc4, 0xff, 0xc6, 0xc6, 0xc5, 0xff, 0xc8, 0xc8, 0xc7, 0xff, 0xc9, 0xc9, 0xc8, 0xff, 0xc9, 0xc9, 0xc9, 0xff, 0xca, 0xca, 0xca, 0xff, 0xcb, 0xcb, 0xcb, 0xff, 0xcc, 0xcc, 0xcc, 0xff, 0xce, 0xce, 0xcd, 0xff, 0xcf, 0xcf, 0xce, 0xff, 0xcf, 0xcf, 0xce, 0xff, 0xd1, 0xd1, 0xd0, 0xff, 0xd2, 0xd2, 0xd1, 0xff, 0xd3, 0xd3, 0xd2, 0xff, 0xd4, 0xd4, 0xd3, 0xff, 0xd4, 0xd4, 0xd4, 0xff, 0xd5, 0xd5, 0xd5, 0xff, 0xd7, 0xd7, 0xd7, 0xff, 0xd7, 0xd7, 0xd7, 0xff, 0xd8, 0xd8, 0xd7, 0xff, 0xda, 0xda, 0xd9, 0xff, 0xdb, 0xdb, 0xda, 0xff, 0xdc, 0xdc, 0xdb, 0xff, 0xdd, 0xdd, 0xdc, 0xff, 0xde, 0xde, 0xdd, 0xff, 0xdf, 0xdf, 0xde, 0xff, 0xe0, 0xe0, 0xe0, 0xff, 0xe0, 0xe0, 0xe0, 0xff, 0xe2, 0xe2, 0xe2, 0xff, 0xe2, 0xe2, 0xe2, 0xff, 0xe4, 0xe4, 0xe3, 0xff, 0xe4, 0xe4, 0xe3, 0xff, 0xe3, 0xe3, 0xe2, 0xff, 0xe3, 0xe3, 0xe2, 0xff, 0xe3, 0xe3, 0xe2, 0xff, 0xe3, 0xe3, 0xe2, 0xff, 0xe3, 0xe3, 0xe2, 0xff, 0xe3, 0xe3, 0xe2, 0xff, 0xe2, 0xe2, 0xe1, 0xff, 0xe3, 0xe3, 0xe2, 0xff, 0xe2, 0xe2, 0xe1, 0xff, 0xe3, 0xe3, 0xe2, 0xff, 0xe3, 0xe3, 0xe2, 0xff, 0xe2, 0xe2, 0xe1, 0xff, 0xe2, 0xe2, 0xe1, 0xff, 0xe2, 0xe2, 0xe1, 0xff, 0xe1, 0xe1, 0xe1, 0xff, 0xe1, 0xe1, 0xe1, 0xff, 0xe0, 0xe0, 0xe0, 0xff, 0xe0, 0xe0, 0xe0, 0xff, 0xe0, 0xe0, 0xe0, 0xff, 0xe0, 0xe0, 0xe0, 0xff, 0xe0, 0xe0, 0xe0, 0xff, 0xe0, 0xe0, 0xe0, 0xff, 0xe0, 0xe0, 0xe0, 0xff, 0xe0, 0xe0, 0xe0, 0xff, 0xe0, 0xe0, 0xe0, 0xff, 0xde, 0xde, 0xde, 0xff, 0xdd, 0xdd, 0xdc, 0xff, 0xdb, 0xdb, 0xda, 0xff, 0xd9, 0xd9, 0xd8, 0xff, 0xd7, 0xd7, 0xd6, 0xff, 0xd5, 0xd5, 0xd4, 0xff, 0xd2, 0xd2, 0xd2, 0xff, 0xd0, 0xd0, 0xd0, 0xff, 0xce, 0xce, 0xce, 0xff, 0xcd, 0xcd, 0xcc, 0xff, 0xcb, 0xcb, 0xca, 0xff, 0xc9, 0xc9, 0xc8, 0xff, 0xc7, 0xc7, 0xc6, 0xff, 0xc4, 0xc4, 0xc4, 0xff, 0xc2, 0xc2, 0xc2, 0xff, 0xc0, 0xc0, 0xc0, 0xff, 0xbe, 0xbe, 0xbe, 0xff, 0xbc, 0xbc, 0xbb, 0xff, 0xba, 0xba, 0xb9, 0xff, 0xb9, 0xb9, 0xb8, 0xff, 0xb6, 0xb6, 0xb5, 0xff, 0xb4, 0xb4, 0xb4, 0xff, 0xb2, 0xb2, 0xb2, 0xff, 0xb0, 0xb0, 0xb0, 0xff, 0xb4, 0xb4, 0xb4, 0xef, 0xbe, 0xbe, 0xbe, 0xc8, 0xc4, 0xc4, 0xc4, 0x8c, 0xdc, 0xdc, 0xdc, 0x44, 0xd9, 0xd9, 0xd9, 0x13, 0xff, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa7, 0xa7, 0xa7, 0x28, 0xb6, 0xb6, 0xb6, 0x7b, 0xc3, 0xc3, 0xc3, 0xff, 0xf1, 0xf1, 0xf0, 0xff, 0xfd, 0xfd, 0xf5, 0xff, 0xf9, 0xf9, 0xf9, 0xff, 0xe8, 0xe8, 0xf9, 0xff, 0xde, 0xde, 0xfb, 0xff, 0xd9, 0xd9, 0xfb, 0xff, 0xda, 0xda, 0xfc, 0xff, 0xdb, 0xdb, 0xfe, 0xff, 0xda, 0xda, 0xfe, 0xff, 0xd9, 0xd9, 0xff, 0xff, 0xd8, 0xd8, 0xff, 0xff, 0xd9, 0xd9, 0xff, 0xff, 0xda, 0xda, 0xff, 0xff, 0xda, 0xda, 0xff, 0xff, 0xda, 0xda, 0xff, 0xff, 0xdb, 0xdb, 0xff, 0xff, 0xdb, 0xdb, 0xff, 0xff, 0xdc, 0xdc, 0xff, 0xff, 0xdc, 0xdc, 0xff, 0xff, 0xdb, 0xdb, 0xff, 0xff, 0xdb, 0xdb, 0xff, 0xff, 0xda, 0xda, 0xff, 0xff, 0xda, 0xda, 0xff, 0xff, 0xd9, 0xd9, 0xff, 0xff, 0xd8, 0xd8, 0xfe, 0xff, 0xd8, 0xd8, 0xfe, 0xff, 0xd6, 0xd6, 0xfd, 0xff, 0xd6, 0xd6, 0xfd, 0xff, 0xd5, 0xd5, 0xfc, 0xff, 0xd5, 0xd5, 0xfb, 0xff, 0xd4, 0xd4, 0xfb, 0xff, 0xd3, 0xd3, 0xfa, 0xff, 0xd3, 0xd3, 0xfa, 0xff, 0xd2, 0xd2, 0xf9, 0xff, 0xd1, 0xd1, 0xf8, 0xff, 0xd1, 0xd1, 0xf8, 0xff, 0xd0, 0xd0, 0xf7, 0xff, 0xcf, 0xcf, 0xf6, 0xff, 0xcf, 0xcf, 0xf6, 0xff, 0xce, 0xce, 0xf5, 0xff, 0xcd, 0xcd, 0xf4, 0xff, 0xcd, 0xcd, 0xf4, 0xff, 0xcc, 0xcc, 0xf3, 0xff, 0xcc, 0xcc, 0xf2, 0xff, 0xcb, 0xcb, 0xf1, 0xff, 0xca, 0xca, 0xf0, 0xff, 0xca, 0xca, 0xf0, 0xff, 0xc9, 0xc9, 0xef, 0xff, 0xc8, 0xc8, 0xee, 0xff, 0xc7, 0xc7, 0xee, 0xff, 0xc7, 0xc7, 0xed, 0xff, 0xc6, 0xc6, 0xed, 0xff, 0xc6, 0xc6, 0xed, 0xff, 0xc5, 0xc5, 0xeb, 0xff, 0xc4, 0xc4, 0xeb, 0xff, 0xc4, 0xc4, 0xeb, 0xff, 0xc3, 0xc3, 0xea, 0xff, 0xc2, 0xc2, 0xe9, 0xff, 0xc2, 0xc2, 0xe9, 0xff, 0xc1, 0xc1, 0xe8, 0xff, 0xc0, 0xc0, 0xe7, 0xff, 0xc0, 0xc0, 0xe7, 0xff, 0xbf, 0xbf, 0xe6, 0xff, 0xbe, 0xbe, 0xe5, 0xff, 0xbe, 0xbe, 0xe5, 0xff, 0xbd, 0xbd, 0xe4, 0xff, 0xbd, 0xbd, 0xe4, 0xff, 0xbd, 0xbd, 0xe3, 0xff, 0xbc, 0xbc, 0xe2, 0xff, 0xbc, 0xbc, 0xe2, 0xff, 0xbb, 0xbb, 0xe1, 0xff, 0xbb, 0xbb, 0xe1, 0xff, 0xba, 0xba, 0xe0, 0xff, 0xb9, 0xb9, 0xe0, 0xff, 0xb9, 0xb9, 0xe0, 0xff, 0xb8, 0xb8, 0xdf, 0xff, 0xb6, 0xb6, 0xdd, 0xff, 0xb3, 0xb3, 0xd9, 0xff, 0xaf, 0xaf, 0xd6, 0xff, 0xaa, 0xaa, 0xd1, 0xff, 0xa7, 0xa7, 0xcd, 0xff, 0xa4, 0xa4, 0xcb, 0xff, 0x9f, 0x9f, 0xc6, 0xff, 0x9c, 0x9c, 0xc3, 0xff, 0x98, 0x98, 0xbf, 0xff, 0x95, 0x95, 0xbb, 0xff, 0x91, 0x91, 0xb8, 0xff, 0x8d, 0x8d, 0xb4, 0xff, 0x8a, 0x8a, 0xb0, 0xff, 0x86, 0x86, 0xad, 0xff, 0x83, 0x83, 0xa9, 0xff, 0x7f, 0x7f, 0xa6, 0xff, 0x7b, 0x7b, 0xa2, 0xff, 0x78, 0x78, 0x9f, 0xff, 0x76, 0x76, 0x9b, 0xff, 0x74, 0x74, 0x97, 0xff, 0x71, 0x71, 0x94, 0xff, 0x6e, 0x6e, 0x90, 0xff, 0x6a, 0x6a, 0x8c, 0xff, 0x69, 0x69, 0x86, 0xff, 0x69, 0x69, 0x7b, 0xff, 0x6f, 0x6f, 0x6e, 0xff, 0x70, 0x70, 0x68, 0xff, 0x70, 0x70, 0x6e, 0xff, 0xb1, 0xb1, 0xb1, 0xff, 0xc7, 0xc7, 0xc7, 0x7b, 0xe2, 0xe2, 0xe2, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa8, 0xa8, 0xa8, 0x6f, 0xcf, 0xcf, 0xcf, 0xeb, 0xea, 0xea, 0xe9, 0xff, 0xff, 0xff, 0xf9, 0xff, 0xe9, 0xe9, 0xf4, 0xff, 0xae, 0xae, 0xf7, 0xff, 0x7f, 0x7f, 0xfa, 0xff, 0x4f, 0x4f, 0xfc, 0xff, 0x32, 0x32, 0xfd, 0xff, 0x26, 0x26, 0xfe, 0xff, 0x24, 0x24, 0xfe, 0xff, 0x1f, 0x1f, 0xfe, 0xff, 0x2c, 0x2c, 0xfe, 0xff, 0x40, 0x40, 0xfe, 0xff, 0x4a, 0x4a, 0xfe, 0xff, 0x4c, 0x4c, 0xff, 0xff, 0x4c, 0x4c, 0xff, 0xff, 0x4c, 0x4c, 0xff, 0xff, 0x4c, 0x4c, 0xff, 0xff, 0x4c, 0x4c, 0xfe, 0xff, 0x4c, 0x4c, 0xfe, 0xff, 0x4c, 0x4c, 0xff, 0xff, 0x4c, 0x4c, 0xff, 0xff, 0x4c, 0x4c, 0xff, 0xff, 0x4c, 0x4c, 0xfe, 0xff, 0x4c, 0x4c, 0xff, 0xff, 0x4c, 0x4c, 0xff, 0xff, 0x4c, 0x4c, 0xff, 0xff, 0x4c, 0x4c, 0xff, 0xff, 0x4c, 0x4c, 0xff, 0xff, 0x4b, 0x4b, 0xfe, 0xff, 0x4b, 0x4b, 0xfe, 0xff, 0x4b, 0x4b, 0xfe, 0xff, 0x4b, 0x4b, 0xfe, 0xff, 0x4b, 0x4b, 0xfe, 0xff, 0x4b, 0x4b, 0xfe, 0xff, 0x4b, 0x4b, 0xfe, 0xff, 0x4b, 0x4b, 0xfe, 0xff, 0x4a, 0x4a, 0xfe, 0xff, 0x4a, 0x4a, 0xfd, 0xff, 0x4a, 0x4a, 0xfd, 0xff, 0x4a, 0x4a, 0xfd, 0xff, 0x4a, 0x4a, 0xfd, 0xff, 0x4a, 0x4a, 0xfd, 0xff, 0x4a, 0x4a, 0xfd, 0xff, 0x4a, 0x4a, 0xfd, 0xff, 0x4a, 0x4a, 0xfd, 0xff, 0x4a, 0x4a, 0xfc, 0xff, 0x49, 0x49, 0xfc, 0xff, 0x49, 0x49, 0xfc, 0xff, 0x49, 0x49, 0xfc, 0xff, 0x4a, 0x4a, 0xfc, 0xff, 0x4a, 0x4a, 0xfc, 0xff, 0x49, 0x49, 0xfc, 0xff, 0x49, 0x49, 0xfc, 0xff, 0x49, 0x49, 0xfc, 0xff, 0x49, 0x49, 0xfc, 0xff, 0x49, 0x49, 0xfb, 0xff, 0x49, 0x49, 0xfb, 0xff, 0x49, 0x49, 0xfb, 0xff, 0x49, 0x49, 0xfc, 0xff, 0x49, 0x49, 0xfb, 0xff, 0x49, 0x49, 0xfb, 0xff, 0x48, 0x48, 0xfb, 0xff, 0x48, 0x48, 0xfb, 0xff, 0x48, 0x48, 0xfb, 0xff, 0x48, 0x48, 0xfb, 0xff, 0x48, 0x48, 0xfb, 0xff, 0x48, 0x48, 0xfb, 0xff, 0x48, 0x48, 0xfb, 0xff, 0x48, 0x48, 0xfb, 0xff, 0x48, 0x48, 0xfa, 0xff, 0x47, 0x47, 0xfa, 0xff, 0x47, 0x47, 0xfa, 0xff, 0x47, 0x47, 0xfa, 0xff, 0x47, 0x47, 0xfa, 0xff, 0x47, 0x47, 0xfa, 0xff, 0x47, 0x47, 0xfa, 0xff, 0x47, 0x47, 0xfa, 0xff, 0x47, 0x47, 0xfa, 0xff, 0x46, 0x46, 0xf9, 0xff, 0x46, 0x46, 0xf8, 0xff, 0x45, 0x45, 0xf8, 0xff, 0x45, 0x45, 0xf8, 0xff, 0x44, 0x44, 0xf7, 0xff, 0x43, 0x43, 0xf6, 0xff, 0x42, 0x42, 0xf6, 0xff, 0x42, 0x42, 0xf5, 0xff, 0x42, 0x42, 0xf4, 0xff, 0x41, 0x41, 0xf3, 0xff, 0x40, 0x40, 0xf3, 0xff, 0x40, 0x40, 0xf3, 0xff, 0x3f, 0x3f, 0xf2, 0xff, 0x3e, 0x3e, 0xf1, 0xff, 0x3e, 0x3e, 0xf1, 0xff, 0x3d, 0x3d, 0xf0, 0xff, 0x3d, 0x3d, 0xf0, 0xff, 0x3b, 0x3b, 0xef, 0xff, 0x30, 0x30, 0xee, 0xff, 0x1c, 0x1c, 0xee, 0xff, 0x0e, 0x0e, 0xed, 0xff, 0x13, 0x13, 0xec, 0xff, 0x14, 0x14, 0xeb, 0xff, 0x18, 0x18, 0xe5, 0xff, 0x26, 0x26, 0xd3, 0xff, 0x3b, 0x3b, 0xb7, 0xff, 0x4f, 0x4f, 0x97, 0xff, 0x64, 0x64, 0x71, 0xff, 0x62, 0x62, 0x55, 0xff, 0x78, 0x78, 0x78, 0xff, 0xa5, 0xa5, 0xa5, 0xe8, 0xde, 0xde, 0xde, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xab, 0xab, 0xab, 0xa8, 0xd8, 0xd8, 0xd8, 0xff, 0xf6, 0xf6, 0xf3, 0xff, 0xff, 0xff, 0xf2, 0xff, 0x78, 0x78, 0xf8, 0xff, 0x42, 0x42, 0xfb, 0xff, 0x0a, 0x0a, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x48, 0x48, 0xff, 0xff, 0x5a, 0x5a, 0xff, 0xff, 0x6d, 0x6d, 0xff, 0xff, 0x77, 0x77, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x79, 0x79, 0xff, 0xff, 0x79, 0x79, 0xff, 0xff, 0x79, 0x79, 0xff, 0xff, 0x79, 0x79, 0xff, 0xff, 0x79, 0x79, 0xff, 0xff, 0x79, 0x79, 0xff, 0xff, 0x79, 0x79, 0xff, 0xff, 0x79, 0x79, 0xff, 0xff, 0x79, 0x79, 0xff, 0xff, 0x79, 0x79, 0xff, 0xff, 0x79, 0x79, 0xff, 0xff, 0x79, 0x79, 0xff, 0xff, 0x79, 0x79, 0xff, 0xff, 0x79, 0x79, 0xff, 0xff, 0x79, 0x79, 0xff, 0xff, 0x78, 0x78, 0xff, 0xff, 0x6e, 0x6e, 0xff, 0xff, 0x5b, 0x5b, 0xff, 0xff, 0x4a, 0x4a, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x04, 0x04, 0xf9, 0xff, 0x1d, 0x1d, 0xd6, 0xff, 0x33, 0x33, 0xb3, 0xff, 0x6f, 0x6f, 0x62, 0xff, 0x6f, 0x6f, 0x6d, 0xff, 0x9b, 0x9b, 0x9b, 0xff, 0xdd, 0xdd, 0xdd, 0xa8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa7, 0xa7, 0xa7, 0xa0, 0xe7, 0xe7, 0xe7, 0xff, 0xf1, 0xf1, 0xf1, 0xff, 0xe7, 0xe7, 0xf2, 0xff, 0x40, 0x40, 0xfc, 0xff, 0x04, 0x04, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x81, 0x81, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x81, 0x81, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x02, 0x02, 0xfd, 0xff, 0x1c, 0x1c, 0xd8, 0xff, 0x6e, 0x6e, 0x79, 0xff, 0x79, 0x79, 0x78, 0xff, 0x8f, 0x8f, 0x8f, 0xff, 0xe4, 0xe4, 0xe4, 0x9f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x94, 0x94, 0x94, 0x3c, 0xde, 0xde, 0xde, 0xff, 0xef, 0xef, 0xef, 0xff, 0xed, 0xed, 0xf1, 0xff, 0x1c, 0x1c, 0xfe, 0xff, 0x01, 0x01, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x71, 0x71, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x70, 0x70, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x0e, 0x0e, 0xef, 0xff, 0x7a, 0x7a, 0x7c, 0xff, 0x83, 0x83, 0x83, 0xff, 0x9f, 0x9f, 0x9f, 0xff, 0xfc, 0xfc, 0xfc, 0x3c, 0x00, 0x00, 0x00, 0x00, + 0x74, 0x74, 0x74, 0x07, 0xb6, 0xb6, 0xb6, 0xff, 0xf2, 0xf2, 0xf2, 0xff, 0xf0, 0xf0, 0xef, 0xff, 0x21, 0x21, 0xfd, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x1f, 0x1f, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x1f, 0x1f, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x12, 0x12, 0xed, 0xff, 0x85, 0x85, 0x83, 0xff, 0x88, 0x88, 0x88, 0xff, 0xd5, 0xd5, 0xd5, 0xff, 0xff, 0xff, 0xff, 0x07, + 0x9f, 0x9f, 0x9f, 0x4c, 0xed, 0xed, 0xed, 0xff, 0xf2, 0xf2, 0xed, 0xff, 0x92, 0x92, 0xf5, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x44, 0x44, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x44, 0x44, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x52, 0x52, 0xb5, 0xff, 0x8f, 0x8f, 0x8b, 0xff, 0x96, 0x96, 0x96, 0xff, 0xf1, 0xf1, 0xf1, 0x4c, + 0xb3, 0xb3, 0xb3, 0xa0, 0xed, 0xed, 0xed, 0xff, 0xf0, 0xf0, 0xed, 0xff, 0x17, 0x17, 0xfd, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x53, 0x53, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x53, 0x53, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x0d, 0x0d, 0xf4, 0xff, 0x90, 0x90, 0x8e, 0xff, 0x95, 0x95, 0x95, 0xff, 0xda, 0xda, 0xda, 0xa0, + 0xbc, 0xbc, 0xbc, 0xe0, 0xec, 0xec, 0xec, 0xff, 0xa8, 0xa8, 0xf2, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x3d, 0x3d, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x3c, 0x3c, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x68, 0x68, 0xb1, 0xff, 0x98, 0x98, 0x98, 0xff, 0xcf, 0xcf, 0xcf, 0xdf, + 0xc3, 0xc3, 0xc3, 0xfb, 0xeb, 0xeb, 0xeb, 0xff, 0x62, 0x62, 0xf8, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x16, 0x16, 0xff, 0xff, 0x82, 0x82, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x82, 0x82, 0xff, 0xff, 0x16, 0x16, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x3e, 0x3e, 0xd2, 0xff, 0x98, 0x98, 0x98, 0xff, 0xc7, 0xc7, 0xc7, 0xfb, + 0xc4, 0xc4, 0xc4, 0xff, 0xeb, 0xeb, 0xeb, 0xff, 0x45, 0x45, 0xf9, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x4d, 0x4d, 0xff, 0xff, 0x82, 0x82, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x7f, 0x7f, 0xff, 0xff, 0x82, 0x82, 0xff, 0xff, 0x4c, 0x4c, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x2d, 0x2d, 0xe0, 0xff, 0x98, 0x98, 0x98, 0xff, 0xc6, 0xc6, 0xc6, 0xff, + 0xc4, 0xc4, 0xc4, 0xff, 0xea, 0xea, 0xea, 0xff, 0x43, 0x43, 0xf9, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x50, 0x50, 0xff, 0xff, 0x7b, 0x7b, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x80, 0x80, 0xff, 0xff, 0x7b, 0x7b, 0xff, 0xff, 0x50, 0x50, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x2c, 0x2c, 0xe2, 0xff, 0x98, 0x98, 0x98, 0xff, 0xc6, 0xc6, 0xc6, 0xff, + 0xc4, 0xc4, 0xc4, 0xff, 0xea, 0xea, 0xea, 0xff, 0x43, 0x43, 0xf9, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x29, 0x29, 0xff, 0xff, 0x58, 0x58, 0xff, 0xff, 0x5f, 0x5f, 0xff, 0xff, 0x66, 0x66, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x67, 0x67, 0xff, 0xff, 0x66, 0x66, 0xff, 0xff, 0x5f, 0x5f, 0xff, 0xff, 0x58, 0x58, 0xff, 0xff, 0x29, 0x29, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x2c, 0x2c, 0xe1, 0xff, 0x98, 0x98, 0x98, 0xff, 0xc6, 0xc6, 0xc6, 0xff, + 0xc3, 0xc3, 0xc3, 0xff, 0xe8, 0xe8, 0xe8, 0xff, 0x43, 0x43, 0xf9, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x07, 0x07, 0xff, 0xff, 0x10, 0x10, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x11, 0x11, 0xff, 0xff, 0x10, 0x10, 0xff, 0xff, 0x07, 0x07, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x2c, 0x2c, 0xe1, 0xff, 0x98, 0x98, 0x98, 0xff, 0xc6, 0xc6, 0xc6, 0xff, + 0xc2, 0xc2, 0xc2, 0xff, 0xe7, 0xe7, 0xe7, 0xff, 0x42, 0x42, 0xf9, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x2c, 0x2c, 0xe1, 0xff, 0x98, 0x98, 0x98, 0xff, 0xc6, 0xc6, 0xc6, 0xff, + 0xc2, 0xc2, 0xc2, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0x42, 0x42, 0xf8, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x2c, 0x2c, 0xe1, 0xff, 0x98, 0x98, 0x98, 0xff, 0xc6, 0xc6, 0xc6, 0xff, + 0xc1, 0xc1, 0xc1, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0x42, 0x42, 0xf8, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x2c, 0x2c, 0xe1, 0xff, 0x98, 0x98, 0x98, 0xff, 0xc6, 0xc6, 0xc6, 0xff, + 0xc1, 0xc1, 0xc1, 0xff, 0xe5, 0xe5, 0xe5, 0xff, 0x42, 0x42, 0xf8, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x2c, 0x2c, 0xe1, 0xff, 0x98, 0x98, 0x98, 0xff, 0xc6, 0xc6, 0xc6, 0xff, + 0xc1, 0xc1, 0xc1, 0xff, 0xe4, 0xe4, 0xe4, 0xff, 0x42, 0x42, 0xf7, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x2c, 0x2c, 0xe1, 0xff, 0x98, 0x98, 0x98, 0xff, 0xc6, 0xc6, 0xc6, 0xff, + 0xbf, 0xbf, 0xbf, 0xff, 0xe2, 0xe2, 0xe2, 0xff, 0x41, 0x41, 0xf7, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x2c, 0x2c, 0xe1, 0xff, 0x98, 0x98, 0x98, 0xff, 0xc6, 0xc6, 0xc6, 0xff, + 0xbd, 0xbd, 0xbd, 0xff, 0xe1, 0xe1, 0xe1, 0xff, 0x41, 0x41, 0xf7, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x2c, 0x2c, 0xe1, 0xff, 0x98, 0x98, 0x98, 0xff, 0xc7, 0xc7, 0xc7, 0xff, + 0xbc, 0xbc, 0xbc, 0xff, 0xe1, 0xe1, 0xe1, 0xff, 0x41, 0x41, 0xf6, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x2c, 0x2c, 0xe1, 0xff, 0x98, 0x98, 0x98, 0xff, 0xc7, 0xc7, 0xc7, 0xff, + 0xbb, 0xbb, 0xbb, 0xff, 0xe0, 0xe0, 0xe0, 0xff, 0x40, 0x40, 0xf6, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x2c, 0x2c, 0xe1, 0xff, 0x98, 0x98, 0x98, 0xff, 0xc7, 0xc7, 0xc7, 0xff, + 0xb9, 0xb9, 0xb9, 0xff, 0xde, 0xde, 0xde, 0xff, 0x40, 0x40, 0xf6, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x2c, 0x2c, 0xe1, 0xff, 0x98, 0x98, 0x98, 0xff, 0xc7, 0xc7, 0xc7, 0xff, + 0xb7, 0xb7, 0xb7, 0xff, 0xde, 0xde, 0xde, 0xff, 0x40, 0x40, 0xf6, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x2c, 0x2c, 0xe1, 0xff, 0x98, 0x98, 0x98, 0xff, 0xc7, 0xc7, 0xc7, 0xff, + 0xb5, 0xb5, 0xb5, 0xff, 0xdc, 0xdc, 0xdc, 0xff, 0x3f, 0x3f, 0xf5, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x2c, 0x2c, 0xe1, 0xff, 0x98, 0x98, 0x98, 0xff, 0xc7, 0xc7, 0xc7, 0xff, + 0xb3, 0xb3, 0xb3, 0xff, 0xdb, 0xdb, 0xdb, 0xff, 0x3f, 0x3f, 0xf5, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x2c, 0x2c, 0xe1, 0xff, 0x98, 0x98, 0x98, 0xff, 0xc7, 0xc7, 0xc7, 0xff, + 0xb2, 0xb2, 0xb2, 0xff, 0xda, 0xda, 0xda, 0xff, 0x40, 0x40, 0xf4, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x2d, 0x2d, 0xe0, 0xff, 0x98, 0x98, 0x98, 0xff, 0xc7, 0xc7, 0xc7, 0xff, + 0xab, 0xab, 0xab, 0xfb, 0xd4, 0xd4, 0xd4, 0xff, 0x59, 0x59, 0xee, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x40, 0x40, 0xd4, 0xff, 0x98, 0x98, 0x98, 0xff, 0xc9, 0xc9, 0xc9, 0xfb, + 0xa0, 0xa0, 0xa0, 0xe0, 0xce, 0xce, 0xce, 0xff, 0x94, 0x94, 0xdc, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x6e, 0x6e, 0xb5, 0xff, 0x98, 0x98, 0x98, 0xff, 0xd1, 0xd1, 0xd1, 0xdf, + 0x93, 0x93, 0x93, 0xa0, 0xc6, 0xc6, 0xc6, 0xff, 0xcc, 0xcc, 0xc7, 0xff, 0x12, 0x12, 0xfa, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x0f, 0x0f, 0xf5, 0xff, 0x9b, 0x9b, 0x95, 0xff, 0x98, 0x98, 0x98, 0xff, 0xdd, 0xdd, 0xdd, 0xa0, + 0x7a, 0x7a, 0x7a, 0x4c, 0xbf, 0xbf, 0xbf, 0xff, 0xc4, 0xc4, 0xc0, 0xff, 0x77, 0x77, 0xd9, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x5e, 0x5e, 0xbf, 0xff, 0x9b, 0x9b, 0x97, 0xff, 0x98, 0x98, 0x98, 0xff, 0xf4, 0xf4, 0xf4, 0x4c, + 0x57, 0x57, 0x57, 0x07, 0x88, 0x88, 0x88, 0xff, 0xbb, 0xbb, 0xbc, 0xff, 0xb9, 0xb9, 0xbb, 0xff, 0x23, 0x23, 0xea, 0xff, 0x00, 0x00, 0xf4, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf3, 0xff, 0x00, 0x00, 0xf5, 0xff, 0x1d, 0x1d, 0xe2, 0xff, 0x97, 0x97, 0x99, 0xff, 0x94, 0x94, 0x94, 0xff, 0xdc, 0xdc, 0xdc, 0xff, 0xff, 0xff, 0xff, 0x07, + 0x00, 0x00, 0x00, 0x00, 0x68, 0x68, 0x68, 0x47, 0xa4, 0xa4, 0xa4, 0xff, 0xb3, 0xb3, 0xb3, 0xff, 0xba, 0xba, 0xb3, 0xff, 0x16, 0x16, 0xdd, 0xff, 0x00, 0x00, 0xe2, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe1, 0xff, 0x00, 0x00, 0xe2, 0xff, 0x13, 0x13, 0xd9, 0xff, 0x9d, 0x9d, 0x95, 0xff, 0x98, 0x98, 0x98, 0xff, 0xac, 0xac, 0xac, 0xff, 0xff, 0xff, 0xff, 0x44, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6c, 0x6c, 0x6c, 0xa4, 0xa8, 0xa8, 0xa8, 0xff, 0xad, 0xad, 0xae, 0xff, 0xb2, 0xb2, 0xae, 0xff, 0x22, 0x22, 0xcc, 0xff, 0x07, 0x07, 0xd1, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd2, 0xff, 0x00, 0x00, 0xd3, 0xff, 0x06, 0x06, 0xd0, 0xff, 0x1e, 0x1e, 0xc8, 0xff, 0x9c, 0x9c, 0x96, 0xff, 0x96, 0x96, 0x96, 0xff, 0x9e, 0x9e, 0x9e, 0xff, 0xf3, 0xf3, 0xf3, 0xa4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x77, 0x77, 0x77, 0x9f, 0x9b, 0x9b, 0x9b, 0xff, 0xa9, 0xa9, 0xa7, 0xff, 0xae, 0xae, 0xa7, 0xff, 0x65, 0x65, 0xb3, 0xff, 0x29, 0x29, 0xbc, 0xff, 0x03, 0x03, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc1, 0xff, 0x00, 0x00, 0xc1, 0xff, 0x00, 0x00, 0xc1, 0xff, 0x00, 0x00, 0xc1, 0xff, 0x00, 0x00, 0xc1, 0xff, 0x00, 0x00, 0xc1, 0xff, 0x00, 0x00, 0xc1, 0xff, 0x00, 0x00, 0xc1, 0xff, 0x00, 0x00, 0xc1, 0xff, 0x00, 0x00, 0xc1, 0xff, 0x00, 0x00, 0xc1, 0xff, 0x00, 0x00, 0xc1, 0xff, 0x00, 0x00, 0xc1, 0xff, 0x00, 0x00, 0xc1, 0xff, 0x00, 0x00, 0xc1, 0xff, 0x00, 0x00, 0xc1, 0xff, 0x00, 0x00, 0xc1, 0xff, 0x00, 0x00, 0xc1, 0xff, 0x00, 0x00, 0xc1, 0xff, 0x00, 0x00, 0xc1, 0xff, 0x00, 0x00, 0xc1, 0xff, 0x00, 0x00, 0xc1, 0xff, 0x00, 0x00, 0xc1, 0xff, 0x00, 0x00, 0xc2, 0xff, 0x00, 0x00, 0xc2, 0xff, 0x00, 0x00, 0xc2, 0xff, 0x00, 0x00, 0xc1, 0xff, 0x00, 0x00, 0xc1, 0xff, 0x00, 0x00, 0xc1, 0xff, 0x00, 0x00, 0xc1, 0xff, 0x00, 0x00, 0xc1, 0xff, 0x00, 0x00, 0xc1, 0xff, 0x00, 0x00, 0xc1, 0xff, 0x00, 0x00, 0xc1, 0xff, 0x00, 0x00, 0xc1, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x00, 0x00, 0xc1, 0xff, 0x00, 0x00, 0xc1, 0xff, 0x00, 0x00, 0xc0, 0xff, 0x02, 0x02, 0xc0, 0xff, 0x26, 0x26, 0xb9, 0xff, 0x5c, 0x5c, 0xaa, 0xff, 0x9c, 0x9c, 0x95, 0xff, 0x97, 0x97, 0x95, 0xff, 0xac, 0xac, 0xac, 0xff, 0xe5, 0xe5, 0xe5, 0x9f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7b, 0x7b, 0x7b, 0x68, 0x8a, 0x8a, 0x8a, 0xf3, 0x9f, 0x9f, 0x9e, 0xff, 0xab, 0xab, 0xa1, 0xff, 0x96, 0x96, 0xa4, 0xff, 0x68, 0x68, 0xa9, 0xff, 0x5a, 0x5a, 0xaa, 0xff, 0x46, 0x46, 0xac, 0xff, 0x2d, 0x2d, 0xad, 0xff, 0x21, 0x21, 0xae, 0xff, 0x1f, 0x1f, 0xae, 0xff, 0x20, 0x20, 0xae, 0xff, 0x20, 0x20, 0xae, 0xff, 0x20, 0x20, 0xae, 0xff, 0x20, 0x20, 0xae, 0xff, 0x21, 0x21, 0xaf, 0xff, 0x21, 0x21, 0xaf, 0xff, 0x21, 0x21, 0xaf, 0xff, 0x20, 0x20, 0xaf, 0xff, 0x20, 0x20, 0xaf, 0xff, 0x20, 0x20, 0xaf, 0xff, 0x20, 0x20, 0xaf, 0xff, 0x20, 0x20, 0xaf, 0xff, 0x20, 0x20, 0xaf, 0xff, 0x20, 0x20, 0xaf, 0xff, 0x20, 0x20, 0xaf, 0xff, 0x21, 0x21, 0xaf, 0xff, 0x21, 0x21, 0xaf, 0xff, 0x21, 0x21, 0xaf, 0xff, 0x20, 0x20, 0xae, 0xff, 0x20, 0x20, 0xae, 0xff, 0x20, 0x20, 0xae, 0xff, 0x20, 0x20, 0xae, 0xff, 0x1f, 0x1f, 0xae, 0xff, 0x1f, 0x1f, 0xae, 0xff, 0x20, 0x20, 0xae, 0xff, 0x1f, 0x1f, 0xad, 0xff, 0x1f, 0x1f, 0xad, 0xff, 0x1f, 0x1f, 0xad, 0xff, 0x1e, 0x1e, 0xad, 0xff, 0x1e, 0x1e, 0xad, 0xff, 0x1e, 0x1e, 0xac, 0xff, 0x1d, 0x1d, 0xac, 0xff, 0x1e, 0x1e, 0xac, 0xff, 0x1e, 0x1e, 0xac, 0xff, 0x1e, 0x1e, 0xac, 0xff, 0x1d, 0x1d, 0xab, 0xff, 0x1d, 0x1d, 0xab, 0xff, 0x1d, 0x1d, 0xab, 0xff, 0x1c, 0x1c, 0xaa, 0xff, 0x1c, 0x1c, 0xaa, 0xff, 0x1c, 0x1c, 0xaa, 0xff, 0x1c, 0x1c, 0xaa, 0xff, 0x1b, 0x1b, 0xa9, 0xff, 0x1b, 0x1b, 0xaa, 0xff, 0x1a, 0x1a, 0xa9, 0xff, 0x1a, 0x1a, 0xa9, 0xff, 0x1a, 0x1a, 0xa8, 0xff, 0x19, 0x19, 0xa7, 0xff, 0x19, 0x19, 0xa8, 0xff, 0x18, 0x18, 0xa6, 0xff, 0x18, 0x18, 0xa7, 0xff, 0x18, 0x18, 0xa6, 0xff, 0x17, 0x17, 0xa6, 0xff, 0x18, 0x18, 0xa6, 0xff, 0x16, 0x16, 0xa5, 0xff, 0x17, 0x17, 0xa5, 0xff, 0x15, 0x15, 0xa4, 0xff, 0x16, 0x16, 0xa4, 0xff, 0x15, 0x15, 0xa3, 0xff, 0x15, 0x15, 0xa3, 0xff, 0x14, 0x14, 0xa3, 0xff, 0x13, 0x13, 0xa2, 0xff, 0x13, 0x13, 0xa2, 0xff, 0x14, 0x14, 0xa2, 0xff, 0x15, 0x15, 0xa3, 0xff, 0x16, 0x16, 0xa4, 0xff, 0x17, 0x17, 0xa5, 0xff, 0x18, 0x18, 0xa6, 0xff, 0x18, 0x18, 0xa7, 0xff, 0x19, 0x19, 0xa8, 0xff, 0x1a, 0x1a, 0xa9, 0xff, 0x1b, 0x1b, 0xaa, 0xff, 0x1d, 0x1d, 0xab, 0xff, 0x1d, 0x1d, 0xac, 0xff, 0x1d, 0x1d, 0xac, 0xff, 0x1d, 0x1d, 0xac, 0xff, 0x1d, 0x1d, 0xac, 0xff, 0x1d, 0x1d, 0xac, 0xff, 0x1d, 0x1d, 0xac, 0xff, 0x1d, 0x1d, 0xac, 0xff, 0x1d, 0x1d, 0xac, 0xff, 0x1d, 0x1d, 0xac, 0xff, 0x1d, 0x1d, 0xac, 0xff, 0x1d, 0x1d, 0xac, 0xff, 0x1d, 0x1d, 0xac, 0xff, 0x1d, 0x1d, 0xac, 0xff, 0x1d, 0x1d, 0xac, 0xff, 0x1d, 0x1d, 0xac, 0xff, 0x1d, 0x1d, 0xac, 0xff, 0x1d, 0x1d, 0xac, 0xff, 0x1d, 0x1d, 0xac, 0xff, 0x1f, 0x1f, 0xac, 0xff, 0x2a, 0x2a, 0xaa, 0xff, 0x42, 0x42, 0xa8, 0xff, 0x55, 0x55, 0xa5, 0xff, 0x62, 0x62, 0xa3, 0xff, 0x8a, 0x8a, 0x98, 0xff, 0x9b, 0x9b, 0x92, 0xff, 0x9c, 0x9c, 0x9c, 0xff, 0xc9, 0xc9, 0xc9, 0xf3, 0xe0, 0xe0, 0xe0, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x71, 0x71, 0x71, 0x2c, 0x82, 0x82, 0x82, 0x8b, 0x8c, 0x8c, 0x8c, 0xf4, 0x96, 0x96, 0x95, 0xff, 0xa1, 0xa1, 0x9d, 0xff, 0xa0, 0xa0, 0x9e, 0xff, 0x9b, 0x9b, 0x9e, 0xff, 0x94, 0x94, 0x9f, 0xff, 0x91, 0x91, 0x9f, 0xff, 0x91, 0x91, 0xa0, 0xff, 0x92, 0x92, 0xa1, 0xff, 0x92, 0x92, 0xa1, 0xff, 0x92, 0x92, 0xa2, 0xff, 0x92, 0x92, 0xa2, 0xff, 0x93, 0x93, 0xa3, 0xff, 0x93, 0x93, 0xa3, 0xff, 0x93, 0x93, 0xa3, 0xff, 0x94, 0x94, 0xa3, 0xff, 0x94, 0x94, 0xa3, 0xff, 0x94, 0x94, 0xa3, 0xff, 0x94, 0x94, 0xa3, 0xff, 0x94, 0x94, 0xa3, 0xff, 0x94, 0x94, 0xa3, 0xff, 0x94, 0x94, 0xa3, 0xff, 0x94, 0x94, 0xa3, 0xff, 0x93, 0x93, 0xa2, 0xff, 0x93, 0x93, 0xa1, 0xff, 0x92, 0x92, 0xa1, 0xff, 0x91, 0x91, 0xa1, 0xff, 0x91, 0x91, 0xa0, 0xff, 0x90, 0x90, 0xa0, 0xff, 0x90, 0x90, 0x9f, 0xff, 0x8e, 0x8e, 0x9e, 0xff, 0x8e, 0x8e, 0x9e, 0xff, 0x8e, 0x8e, 0x9d, 0xff, 0x8c, 0x8c, 0x9c, 0xff, 0x8c, 0x8c, 0x9b, 0xff, 0x8c, 0x8c, 0x9b, 0xff, 0x8b, 0x8b, 0x9a, 0xff, 0x89, 0x89, 0x98, 0xff, 0x89, 0x89, 0x97, 0xff, 0x88, 0x88, 0x97, 0xff, 0x86, 0x86, 0x96, 0xff, 0x85, 0x85, 0x95, 0xff, 0x84, 0x84, 0x94, 0xff, 0x82, 0x82, 0x92, 0xff, 0x81, 0x81, 0x91, 0xff, 0x81, 0x81, 0x8f, 0xff, 0x7f, 0x7f, 0x8e, 0xff, 0x7e, 0x7e, 0x8d, 0xff, 0x7d, 0x7d, 0x8c, 0xff, 0x7b, 0x7b, 0x8a, 0xff, 0x79, 0x79, 0x89, 0xff, 0x78, 0x78, 0x87, 0xff, 0x77, 0x77, 0x85, 0xff, 0x75, 0x75, 0x84, 0xff, 0x73, 0x73, 0x82, 0xff, 0x71, 0x71, 0x81, 0xff, 0x6f, 0x6f, 0x7f, 0xff, 0x6d, 0x6d, 0x7c, 0xff, 0x6c, 0x6c, 0x7b, 0xff, 0x6a, 0x6a, 0x79, 0xff, 0x67, 0x67, 0x77, 0xff, 0x66, 0x66, 0x75, 0xff, 0x63, 0x63, 0x73, 0xff, 0x63, 0x63, 0x71, 0xff, 0x60, 0x60, 0x6f, 0xff, 0x5e, 0x5e, 0x6d, 0xff, 0x5b, 0x5b, 0x6b, 0xff, 0x5a, 0x5a, 0x6a, 0xff, 0x59, 0x59, 0x69, 0xff, 0x5c, 0x5c, 0x6b, 0xff, 0x60, 0x60, 0x6f, 0xff, 0x64, 0x64, 0x74, 0xff, 0x68, 0x68, 0x78, 0xff, 0x6d, 0x6d, 0x7c, 0xff, 0x71, 0x71, 0x80, 0xff, 0x75, 0x75, 0x85, 0xff, 0x7a, 0x7a, 0x89, 0xff, 0x7e, 0x7e, 0x8d, 0xff, 0x83, 0x83, 0x93, 0xff, 0x86, 0x86, 0x96, 0xff, 0x87, 0x87, 0x97, 0xff, 0x87, 0x87, 0x96, 0xff, 0x87, 0x87, 0x96, 0xff, 0x87, 0x87, 0x96, 0xff, 0x87, 0x87, 0x96, 0xff, 0x87, 0x87, 0x96, 0xff, 0x87, 0x87, 0x96, 0xff, 0x87, 0x87, 0x96, 0xff, 0x87, 0x87, 0x96, 0xff, 0x87, 0x87, 0x96, 0xff, 0x87, 0x87, 0x96, 0xff, 0x87, 0x87, 0x96, 0xff, 0x87, 0x87, 0x96, 0xff, 0x87, 0x87, 0x96, 0xff, 0x87, 0x87, 0x96, 0xff, 0x87, 0x87, 0x96, 0xff, 0x87, 0x87, 0x96, 0xff, 0x87, 0x87, 0x96, 0xff, 0x87, 0x87, 0x96, 0xff, 0x87, 0x87, 0x96, 0xff, 0x8a, 0x8a, 0x96, 0xff, 0x90, 0x90, 0x94, 0xff, 0x92, 0x92, 0x90, 0xff, 0x93, 0x93, 0x8f, 0xff, 0xac, 0xac, 0xaa, 0xff, 0xc4, 0xc4, 0xc4, 0xf3, 0xdb, 0xdb, 0xdb, 0x88, 0xfc, 0xfc, 0xfc, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6c, 0x6c, 0x6c, 0x04, 0x85, 0x85, 0x85, 0x0c, 0x7d, 0x7d, 0x7d, 0x47, 0x81, 0x81, 0x81, 0xb8, 0x8b, 0x8b, 0x8b, 0xeb, 0x90, 0x90, 0x90, 0xf8, 0x94, 0x94, 0x94, 0xff, 0x95, 0x95, 0x94, 0xff, 0x96, 0x96, 0x95, 0xff, 0x98, 0x98, 0x97, 0xff, 0x98, 0x98, 0x97, 0xff, 0x9a, 0x9a, 0x99, 0xff, 0x9b, 0x9b, 0x9a, 0xff, 0x9c, 0x9c, 0x9b, 0xff, 0x9d, 0x9d, 0x9c, 0xff, 0x9f, 0x9f, 0x9e, 0xff, 0x9f, 0x9f, 0x9e, 0xff, 0xa1, 0xa1, 0xa0, 0xff, 0xa2, 0xa2, 0xa1, 0xff, 0xa2, 0xa2, 0xa1, 0xff, 0xa4, 0xa4, 0xa3, 0xff, 0xa4, 0xa4, 0xa3, 0xff, 0xa5, 0xa5, 0xa4, 0xff, 0xa5, 0xa5, 0xa4, 0xff, 0xa5, 0xa5, 0xa5, 0xff, 0xa6, 0xa6, 0xa6, 0xff, 0xa7, 0xa7, 0xa7, 0xff, 0xa7, 0xa7, 0xa7, 0xff, 0xa8, 0xa8, 0xa7, 0xff, 0xa8, 0xa8, 0xa7, 0xff, 0xa9, 0xa9, 0xa8, 0xff, 0xa9, 0xa9, 0xa8, 0xff, 0xaa, 0xaa, 0xa9, 0xff, 0xa9, 0xa9, 0xa8, 0xff, 0xaa, 0xaa, 0xa9, 0xff, 0xa9, 0xa9, 0xa8, 0xff, 0xa9, 0xa9, 0xa8, 0xff, 0xa8, 0xa8, 0xa7, 0xff, 0xa8, 0xa8, 0xa7, 0xff, 0xa7, 0xa7, 0xa6, 0xff, 0xa7, 0xa7, 0xa6, 0xff, 0xa5, 0xa5, 0xa4, 0xff, 0xa5, 0xa5, 0xa4, 0xff, 0xa4, 0xa4, 0xa3, 0xff, 0xa3, 0xa3, 0xa2, 0xff, 0xa2, 0xa2, 0xa2, 0xff, 0xa1, 0xa1, 0xa1, 0xff, 0xa0, 0xa0, 0xa0, 0xff, 0x9f, 0x9f, 0x9f, 0xff, 0x9e, 0x9e, 0x9e, 0xff, 0x9d, 0x9d, 0x9d, 0xff, 0x9d, 0x9d, 0x9d, 0xff, 0x9b, 0x9b, 0x9b, 0xff, 0x9a, 0x9a, 0x9a, 0xff, 0x99, 0x99, 0x98, 0xff, 0x98, 0x98, 0x97, 0xff, 0x97, 0x97, 0x96, 0xff, 0x96, 0x96, 0x95, 0xff, 0x95, 0x95, 0x94, 0xff, 0x93, 0x93, 0x92, 0xff, 0x92, 0x92, 0x91, 0xff, 0x91, 0x91, 0x90, 0xff, 0x8f, 0x8f, 0x8e, 0xff, 0x8e, 0x8e, 0x8d, 0xff, 0x8d, 0x8d, 0x8c, 0xff, 0x8b, 0x8b, 0x8a, 0xff, 0x8a, 0x8a, 0x89, 0xff, 0x8a, 0x8a, 0x8a, 0xff, 0x8e, 0x8e, 0x8d, 0xff, 0x91, 0x91, 0x90, 0xff, 0x94, 0x94, 0x93, 0xff, 0x97, 0x97, 0x96, 0xff, 0x9a, 0x9a, 0x9a, 0xff, 0x9e, 0x9e, 0x9e, 0xff, 0xa1, 0xa1, 0xa1, 0xff, 0xa5, 0xa5, 0xa5, 0xff, 0xa8, 0xa8, 0xa8, 0xff, 0xac, 0xac, 0xab, 0xff, 0xaf, 0xaf, 0xae, 0xff, 0xb0, 0xb0, 0xaf, 0xff, 0xb0, 0xb0, 0xaf, 0xff, 0xb0, 0xb0, 0xb0, 0xff, 0xb0, 0xb0, 0xaf, 0xff, 0xb0, 0xb0, 0xaf, 0xff, 0xb1, 0xb1, 0xb0, 0xff, 0xb1, 0xb1, 0xb0, 0xff, 0xb1, 0xb1, 0xb0, 0xff, 0xb2, 0xb2, 0xb1, 0xff, 0xb2, 0xb2, 0xb1, 0xff, 0xb2, 0xb2, 0xb1, 0xff, 0xb2, 0xb2, 0xb1, 0xff, 0xb2, 0xb2, 0xb1, 0xff, 0xb2, 0xb2, 0xb1, 0xff, 0xb2, 0xb2, 0xb1, 0xff, 0xb2, 0xb2, 0xb1, 0xff, 0xb2, 0xb2, 0xb1, 0xff, 0xb2, 0xb2, 0xb1, 0xff, 0xb2, 0xb2, 0xb1, 0xff, 0xb2, 0xb2, 0xb1, 0xff, 0xb3, 0xb3, 0xb2, 0xff, 0xb3, 0xb3, 0xb2, 0xff, 0xb4, 0xb4, 0xb3, 0xff, 0xbc, 0xbc, 0xbc, 0xf8, 0xd0, 0xd0, 0xd0, 0xeb, 0xf1, 0xf1, 0xf1, 0xb8, 0xf0, 0xf0, 0xf0, 0x47, 0xd5, 0xd5, 0xd5, 0x0c, 0xff, 0xff, 0xff, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +#endif +}; + +lv_img_dsc_t imgbtn_img_3 = { + .header.always_zero = 0, + .header.w = 120, + .header.h = 40, + .data_size = 4800 * LV_IMG_PX_SIZE_ALPHA_BYTE, + .header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA, + .data = imgbtn_img_3_map, +}; + +#endif /*LV_USE_TESTS && LV_USE_IMGBTN*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_4.c b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_4.c new file mode 100644 index 0000000..1a8cdad --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/imgbtn_img_4.c @@ -0,0 +1,189 @@ +#include "lvgl/lvgl.h" +#include "lv_ex_conf.h" + +#if LV_USE_TESTS && LV_USE_IMGBTN + +const uint8_t imgbtn_img_4_map[] = { +#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8 + /*Pixel format: Alpha 8 bit, Red: 3 bit, Green: 3 bit, Blue: 2 bit*/ + 0x00, 0x00, 0x00, 0x00, 0xff, 0x68, 0xdb, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xdb, 0xff, 0xff, 0x4c, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xdb, 0x3f, 0xdb, 0xa7, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0x94, 0xdb, 0x2c, 0xff, 0x04, + 0xff, 0x14, 0xdb, 0xac, 0xdb, 0xff, 0xdb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xaf, 0xff, 0x20, + 0xdb, 0x93, 0xdb, 0xe4, 0xdb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xbb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdf, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xbb, 0xff, 0xdb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdb, 0xff, 0xdb, 0xe8, 0xdb, 0x98, + 0xdb, 0xff, 0xdb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdb, 0xff, 0xb6, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x96, 0xff, 0xdb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdb, 0xff, 0xdb, 0xff, + 0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x96, 0xff, 0x8d, 0xff, 0xad, 0xff, 0xd1, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd2, 0xff, 0xd1, 0xff, 0xad, 0xff, 0x8d, 0xff, 0xb6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdb, 0xff, 0xdb, 0xff, + 0xb6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdb, 0xff, 0x6d, 0xff, 0x89, 0xff, 0xcd, 0xff, 0xf1, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf2, 0xff, 0xf1, 0xff, 0xcd, 0xff, 0x89, 0xff, 0x8d, 0xff, 0xdb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb7, 0xff, + 0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x6d, 0xff, 0xad, 0xff, 0xf1, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xd1, 0xff, 0xad, 0xff, 0x92, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb7, 0xff, + 0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdb, 0xff, 0x69, 0xff, 0xcd, 0xff, 0xf6, 0xff, 0xfa, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xfa, 0xff, 0xf6, 0xff, 0xcd, 0xff, 0x69, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb7, 0xff, + 0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb7, 0xff, 0xad, 0xff, 0xf1, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xd1, 0xff, 0x89, 0xff, 0xdb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb7, 0xff, + 0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb6, 0xff, 0xcd, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xfa, 0xff, 0xf1, 0xff, 0x89, 0xff, 0xdb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb7, 0xff, + 0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb6, 0xff, 0xf1, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf1, 0xff, 0xad, 0xff, 0xdb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdb, 0xff, + 0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb6, 0xff, 0xf1, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf6, 0xff, 0xf1, 0xff, 0xad, 0xff, 0xdb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb7, 0xff, + 0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb6, 0xff, 0xf1, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf6, 0xff, 0xf1, 0xff, 0xad, 0xff, 0xdb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb7, 0xff, + 0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb6, 0xff, 0xf1, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf1, 0xff, 0xad, 0xff, 0xdb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb7, 0xff, + 0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb6, 0xff, 0xf1, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf1, 0xff, 0xad, 0xff, 0xdb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb7, 0xff, + 0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb6, 0xff, 0xf1, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf1, 0xff, 0xad, 0xff, 0xdb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb7, 0xff, + 0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb6, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf1, 0xff, 0xac, 0xff, 0xdb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd7, 0xff, + 0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb6, 0xff, 0xf1, 0xff, 0xf1, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf0, 0xff, 0xac, 0xff, 0xdb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb7, 0xff, + 0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb6, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf1, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xec, 0xff, 0xac, 0xff, 0xdb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbb, 0xff, + 0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb7, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf1, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf1, 0xff, 0xf0, 0xff, 0xec, 0xff, 0xac, 0xff, 0xdb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb7, 0xff, + 0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb7, 0xff, 0xf1, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xec, 0xff, 0xac, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb7, 0xff, + 0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb7, 0xff, 0xf1, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xec, 0xff, 0xcc, 0xff, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb7, 0xff, + 0xb7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb7, 0xff, 0xf1, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xcc, 0xff, 0xdb, 0xff, 0xff, 0xff, 0xdb, 0xff, 0xb7, 0xff, + 0xb6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb7, 0xff, 0xf1, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xcc, 0xff, 0xb2, 0xff, 0x92, 0xff, 0x92, 0xff, 0xb6, 0xff, + 0x92, 0xff, 0xb7, 0xff, 0xbb, 0xff, 0xb6, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xcc, 0xff, 0x6d, 0xff, 0x49, 0xff, 0x6d, 0xff, 0xb6, 0xff, + 0x49, 0xff, 0x49, 0xff, 0x4d, 0xff, 0x6d, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xcc, 0xff, 0x49, 0xff, 0x25, 0xff, 0x49, 0xff, 0xb6, 0xff, + 0x24, 0xff, 0x24, 0xff, 0x25, 0xff, 0x49, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf4, 0xff, 0xf0, 0xff, 0xcc, 0xff, 0x49, 0xff, 0x24, 0xff, 0x49, 0xff, 0xb6, 0xff, + 0x24, 0xff, 0x00, 0xff, 0x04, 0xff, 0x49, 0xff, 0xf0, 0xff, 0xf0, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf0, 0xff, 0xd0, 0xff, 0x49, 0xff, 0x24, 0xff, 0x49, 0xff, 0xb6, 0xff, + 0x24, 0xff, 0x00, 0xff, 0x00, 0xff, 0x49, 0xff, 0xd0, 0xff, 0xf0, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xd1, 0xff, 0x49, 0xff, 0x04, 0xff, 0x49, 0xff, 0xb7, 0xff, + 0x25, 0xff, 0x00, 0xff, 0x00, 0xff, 0x49, 0xff, 0xad, 0xff, 0xf0, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xb1, 0xff, 0x24, 0xff, 0x00, 0xff, 0x49, 0xff, 0xb7, 0xff, + 0x49, 0xff, 0x00, 0xff, 0x00, 0xff, 0x25, 0xff, 0x8d, 0xff, 0xd0, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf1, 0xff, 0x8d, 0xff, 0x00, 0xff, 0x24, 0xff, 0x6e, 0xff, 0xdb, 0xff, + 0x6d, 0xff, 0x25, 0xff, 0x00, 0xff, 0x24, 0xff, 0x6d, 0xff, 0xb1, 0xff, 0xf0, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf0, 0xff, 0xb1, 0xff, 0x6d, 0xff, 0x00, 0xff, 0x49, 0xff, 0x92, 0xff, 0xdb, 0xff, + 0x6e, 0xff, 0x49, 0xff, 0x24, 0xff, 0x00, 0xff, 0x25, 0xff, 0x8d, 0xff, 0xd1, 0xff, 0xf5, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf9, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf5, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf4, 0xff, 0xf5, 0xff, 0xd1, 0xff, 0x6d, 0xff, 0x24, 0xff, 0x00, 0xff, 0x92, 0xff, 0xdb, 0xff, 0xb7, 0xff, + 0x92, 0xff, 0x6e, 0xff, 0x49, 0xff, 0x00, 0xff, 0x00, 0xff, 0x49, 0xff, 0x6d, 0xff, 0x8d, 0xff, 0xad, 0xff, 0xb1, 0xff, 0xad, 0xff, 0xad, 0xff, 0xad, 0xff, 0xad, 0xff, 0xad, 0xff, 0xad, 0xff, 0xad, 0xff, 0xad, 0xff, 0xad, 0xff, 0xad, 0xff, 0xad, 0xff, 0xad, 0xff, 0xad, 0xff, 0xad, 0xff, 0xad, 0xff, 0xad, 0xff, 0xad, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd5, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xd1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xad, 0xff, 0xad, 0xff, 0xad, 0xff, 0xad, 0xff, 0xad, 0xff, 0x8d, 0xff, 0x6d, 0xff, 0x25, 0xff, 0x24, 0xff, 0x49, 0xff, 0xb7, 0xff, 0xdb, 0xff, 0xb7, 0xff, + 0xdb, 0xff, 0x92, 0xff, 0x49, 0xff, 0x49, 0xff, 0x00, 0xff, 0x00, 0xff, 0x20, 0xff, 0x24, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x24, 0xff, 0x00, 0xff, 0x00, 0xff, 0x49, 0xff, 0xb7, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, + 0xff, 0x9f, 0x92, 0xc4, 0x6e, 0xec, 0x6d, 0xff, 0x49, 0xff, 0x29, 0xff, 0x25, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x49, 0xff, 0x6e, 0xff, 0xb6, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xb7, 0xe3, 0xdb, 0x87, + 0xff, 0x28, 0xb6, 0x70, 0x92, 0xc8, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x6e, 0xff, 0x6d, 0xff, 0x6d, 0xff, 0x6d, 0xff, 0x6d, 0xff, 0x6d, 0xff, 0x6d, 0xff, 0x6d, 0xff, 0x6d, 0xff, 0x6d, 0xff, 0x6d, 0xff, 0x6d, 0xff, 0x6d, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x72, 0xff, 0x92, 0xff, 0x92, 0xff, 0x72, 0xff, 0x72, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0xb6, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xb7, 0xff, 0xb6, 0xa4, 0x00, 0x00, + 0xff, 0x07, 0xdb, 0x27, 0xb7, 0x8f, 0xb6, 0xff, 0x92, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x72, 0xff, 0x72, 0xff, 0x72, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x96, 0xff, 0x96, 0xff, 0x96, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb7, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xdb, 0xff, 0xb7, 0x97, 0xb6, 0x2b, 0x00, 0x00, + 0x00, 0x00, 0xff, 0x00, 0xdb, 0x6c, 0xb7, 0xff, 0x92, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x6e, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x92, 0xff, 0x96, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb6, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xb7, 0xff, 0xdb, 0xff, 0xdb, 0x4c, 0x00, 0x00, 0xff, 0x04, +#endif +#if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP == 0 + /*Pixel format: Alpha 8 bit, Red: 5 bit, Green: 6 bit, Blue: 5 bit*/ + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0xde, 0x68, 0x18, 0xc6, 0xff, 0x35, 0xad, 0xff, 0x14, 0xa5, 0xff, 0x34, 0xa5, 0xff, 0x14, 0xa5, 0xff, 0x14, 0xa5, 0xff, 0x14, 0xa5, 0xff, 0x14, 0xa5, 0xff, 0x14, 0xa5, 0xff, 0x14, 0xa5, 0xff, 0xf4, 0xa4, 0xff, 0xf4, 0xa4, 0xff, 0xf4, 0xa4, 0xff, 0xf3, 0x9c, 0xff, 0xf3, 0x9c, 0xff, 0xf3, 0x9c, 0xff, 0xd3, 0x9c, 0xff, 0xd3, 0x9c, 0xff, 0xd3, 0x9c, 0xff, 0xd3, 0x9c, 0xff, 0xb3, 0x9c, 0xff, 0xd3, 0x9c, 0xff, 0xb3, 0x9c, 0xff, 0xd3, 0x9c, 0xff, 0xd3, 0x9c, 0xff, 0xd3, 0x9c, 0xff, 0xf3, 0x9c, 0xff, 0xf3, 0x9c, 0xff, 0xf4, 0xa4, 0xff, 0xf4, 0xa4, 0xff, 0x14, 0xa5, 0xff, 0x14, 0xa5, 0xff, 0x14, 0xa5, 0xff, 0x14, 0xa5, 0xff, 0x34, 0xa5, 0xff, 0x35, 0xad, 0xff, 0x35, 0xad, 0xff, 0x55, 0xad, 0xff, 0x55, 0xad, 0xff, 0x55, 0xad, 0xff, 0x55, 0xad, 0xff, 0x75, 0xad, 0xff, 0x75, 0xad, 0xff, 0x76, 0xb5, 0xff, 0x76, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0xb6, 0xb5, 0xff, 0xb7, 0xbd, 0xff, 0xb7, 0xbd, 0xff, 0xd7, 0xbd, 0xff, 0xd7, 0xbd, 0xff, 0xd7, 0xbd, 0xff, 0xd7, 0xbd, 0xff, 0xd7, 0xbd, 0xff, 0xd7, 0xbd, 0xff, 0xd7, 0xbd, 0xff, 0xd7, 0xbd, 0xff, 0xd7, 0xbd, 0xff, 0xd7, 0xbd, 0xff, 0xf7, 0xbd, 0xff, 0xf7, 0xbd, 0xff, 0xf7, 0xbd, 0xff, 0xf7, 0xbd, 0xff, 0xf7, 0xbd, 0xff, 0xf7, 0xbd, 0xff, 0xf7, 0xbd, 0xff, 0xf7, 0xbd, 0xff, 0xf7, 0xbd, 0xff, 0xf8, 0xc5, 0xff, 0xf8, 0xc5, 0xff, 0xf7, 0xbd, 0xff, 0xf7, 0xbd, 0xff, 0xf7, 0xbd, 0xff, 0xd7, 0xbd, 0xff, 0xd7, 0xbd, 0xff, 0xd7, 0xbd, 0xff, 0xb7, 0xbd, 0xff, 0xb7, 0xbd, 0xff, 0xb7, 0xbd, 0xff, 0xb6, 0xb5, 0xff, 0xb6, 0xb5, 0xff, 0xb6, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0x76, 0xb5, 0xff, 0x76, 0xb5, 0xff, 0x76, 0xb5, 0xff, 0x75, 0xad, 0xff, 0x75, 0xad, 0xff, 0x75, 0xad, 0xff, 0x55, 0xad, 0xff, 0x55, 0xad, 0xff, 0x55, 0xad, 0xff, 0x55, 0xad, 0xff, 0x55, 0xad, 0xff, 0x75, 0xad, 0xff, 0x75, 0xad, 0xff, 0x76, 0xb5, 0xff, 0x76, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0xb6, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0x55, 0xad, 0xff, 0x55, 0xad, 0xff, 0x9a, 0xd6, 0xff, 0x1c, 0xe7, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x18, 0xc6, 0x3f, 0x38, 0xc6, 0xa7, 0x39, 0xce, 0xff, 0x18, 0xc6, 0xff, 0x18, 0xc6, 0xff, 0x18, 0xc6, 0xff, 0x38, 0xc6, 0xff, 0x38, 0xc6, 0xff, 0x38, 0xc6, 0xff, 0x18, 0xc6, 0xff, 0x18, 0xc6, 0xff, 0x18, 0xc6, 0xff, 0x18, 0xc6, 0xff, 0xf8, 0xc5, 0xff, 0xf8, 0xc5, 0xff, 0xf7, 0xbd, 0xff, 0xf7, 0xbd, 0xff, 0xd7, 0xbd, 0xff, 0xd7, 0xbd, 0xff, 0xd7, 0xbd, 0xff, 0xd7, 0xbd, 0xff, 0xb7, 0xbd, 0xff, 0xb7, 0xbd, 0xff, 0xb7, 0xbd, 0xff, 0xb6, 0xbd, 0xff, 0xb7, 0xbd, 0xff, 0xd7, 0xbd, 0xff, 0xd7, 0xbd, 0xff, 0xd7, 0xbd, 0xff, 0xf7, 0xbd, 0xff, 0xf7, 0xbd, 0xff, 0xf8, 0xc5, 0xff, 0x18, 0xc6, 0xff, 0x18, 0xc6, 0xff, 0x18, 0xc6, 0xff, 0x18, 0xc6, 0xff, 0x38, 0xc6, 0xff, 0x38, 0xce, 0xff, 0x39, 0xce, 0xff, 0x39, 0xce, 0xff, 0x59, 0xce, 0xff, 0x59, 0xce, 0xff, 0x59, 0xce, 0xff, 0x79, 0xce, 0xff, 0x79, 0xd6, 0xff, 0x7a, 0xd6, 0xff, 0x9a, 0xd6, 0xff, 0x9a, 0xd6, 0xff, 0x9a, 0xd6, 0xff, 0x9a, 0xd6, 0xff, 0x9a, 0xd6, 0xff, 0xba, 0xd6, 0xff, 0xba, 0xd6, 0xff, 0xba, 0xde, 0xff, 0xba, 0xde, 0xff, 0xbb, 0xde, 0xff, 0xbb, 0xde, 0xff, 0xbb, 0xde, 0xff, 0xdb, 0xde, 0xff, 0xdb, 0xde, 0xff, 0xdb, 0xde, 0xff, 0xdb, 0xde, 0xff, 0xdb, 0xde, 0xff, 0xdb, 0xde, 0xff, 0xdb, 0xde, 0xff, 0xdb, 0xde, 0xff, 0xdb, 0xde, 0xff, 0xdb, 0xde, 0xff, 0xdb, 0xde, 0xff, 0xdb, 0xde, 0xff, 0xdb, 0xde, 0xff, 0xdb, 0xde, 0xff, 0xdb, 0xde, 0xff, 0xdb, 0xde, 0xff, 0xdb, 0xde, 0xff, 0xdb, 0xde, 0xff, 0xdb, 0xde, 0xff, 0xdb, 0xde, 0xff, 0xdb, 0xde, 0xff, 0xdb, 0xde, 0xff, 0xbb, 0xde, 0xff, 0xba, 0xd6, 0xff, 0x9a, 0xd6, 0xff, 0x9a, 0xd6, 0xff, 0x9a, 0xd6, 0xff, 0x9a, 0xd6, 0xff, 0x7a, 0xd6, 0xff, 0x7a, 0xd6, 0xff, 0x7a, 0xd6, 0xff, 0x79, 0xce, 0xff, 0x59, 0xce, 0xff, 0x59, 0xce, 0xff, 0x59, 0xce, 0xff, 0x59, 0xce, 0xff, 0x39, 0xce, 0xff, 0x38, 0xce, 0xff, 0x38, 0xc6, 0xff, 0x38, 0xc6, 0xff, 0x18, 0xc6, 0xff, 0x18, 0xc6, 0xff, 0x18, 0xc6, 0xff, 0x18, 0xc6, 0xff, 0x38, 0xc6, 0xff, 0x38, 0xc6, 0xff, 0x39, 0xce, 0xff, 0x39, 0xce, 0xff, 0x59, 0xce, 0xff, 0x59, 0xce, 0xff, 0x59, 0xce, 0xff, 0x59, 0xce, 0xff, 0x79, 0xce, 0xff, 0x79, 0xce, 0xff, 0x59, 0xce, 0xff, 0x18, 0xc6, 0xff, 0x18, 0xc6, 0xff, 0x59, 0xce, 0xff, 0x18, 0xc6, 0x94, 0x96, 0xb5, 0x2c, 0xff, 0xff, 0x04, + 0xff, 0xff, 0x14, 0xb6, 0xb5, 0xac, 0xd7, 0xbd, 0xff, 0x9a, 0xd6, 0xff, 0x7d, 0xef, 0xff, 0x7e, 0xf7, 0xff, 0x7d, 0xf7, 0xff, 0x9e, 0xf7, 0xff, 0x9e, 0xf7, 0xff, 0x9e, 0xf7, 0xff, 0x9e, 0xf7, 0xff, 0x7e, 0xf7, 0xff, 0x7d, 0xef, 0xff, 0x7d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0xff, 0x3d, 0xef, 0xff, 0x3d, 0xef, 0xff, 0x1c, 0xe7, 0xff, 0x1c, 0xe7, 0xff, 0x1c, 0xe7, 0xff, 0x1c, 0xe7, 0xff, 0xfc, 0xe6, 0xff, 0xfc, 0xe6, 0xff, 0x1c, 0xe7, 0xff, 0x1c, 0xe7, 0xff, 0x3c, 0xe7, 0xff, 0x3c, 0xe7, 0xff, 0x3d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x7d, 0xef, 0xff, 0x7d, 0xf7, 0xff, 0x7e, 0xf7, 0xff, 0x9e, 0xf7, 0xff, 0x9e, 0xf7, 0xff, 0x9e, 0xf7, 0xff, 0xbe, 0xf7, 0xff, 0xbf, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xbf, 0xff, 0xff, 0xbe, 0xf7, 0xff, 0x9e, 0xf7, 0xff, 0x9e, 0xf7, 0xff, 0x9e, 0xf7, 0xff, 0x7e, 0xf7, 0xff, 0x7d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0xff, 0x3c, 0xef, 0xff, 0x1c, 0xe7, 0xff, 0x1c, 0xe7, 0xff, 0x1c, 0xe7, 0xff, 0x1c, 0xe7, 0xff, 0x1c, 0xe7, 0xff, 0x1c, 0xe7, 0xff, 0x3c, 0xe7, 0xff, 0x3c, 0xe7, 0xff, 0x3c, 0xef, 0xff, 0x3d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x3c, 0xe7, 0xff, 0x18, 0xc6, 0xff, 0xb6, 0xb5, 0xff, 0xd7, 0xbd, 0xaf, 0xff, 0xff, 0x20, + 0x9a, 0xd6, 0x93, 0xf8, 0xc5, 0xe4, 0x39, 0xce, 0xff, 0x3c, 0xe7, 0xff, 0x9e, 0xf7, 0xff, 0xff, 0xff, 0xff, 0x9e, 0xef, 0xff, 0x9a, 0xce, 0xff, 0x19, 0xbe, 0xff, 0xf8, 0xb5, 0xff, 0x18, 0xbe, 0xff, 0xf8, 0xb5, 0xff, 0xf8, 0xb5, 0xff, 0xf8, 0xb5, 0xff, 0xf8, 0xb5, 0xff, 0xf8, 0xb5, 0xff, 0xf8, 0xb5, 0xff, 0xf8, 0xb5, 0xff, 0xd8, 0xb5, 0xff, 0xd8, 0xb5, 0xff, 0xd8, 0xb5, 0xff, 0xd8, 0xb5, 0xff, 0xd8, 0xb5, 0xff, 0xd8, 0xb5, 0xff, 0xd7, 0xb5, 0xff, 0xd8, 0xb5, 0xff, 0xf8, 0xb5, 0xff, 0xf8, 0xbd, 0xff, 0x19, 0xbe, 0xff, 0x19, 0xbe, 0xff, 0x39, 0xbe, 0xff, 0x39, 0xc6, 0xff, 0x5a, 0xc6, 0xff, 0x7a, 0xc6, 0xff, 0x7a, 0xc6, 0xff, 0x9a, 0xce, 0xff, 0x9b, 0xce, 0xff, 0xbb, 0xce, 0xff, 0xdb, 0xd6, 0xff, 0xdc, 0xd6, 0xff, 0xfc, 0xd6, 0xff, 0xfc, 0xde, 0xff, 0x1d, 0xdf, 0xff, 0x3d, 0xdf, 0xff, 0x3d, 0xdf, 0xff, 0x5e, 0xe7, 0xff, 0x7e, 0xe7, 0xff, 0x7e, 0xe7, 0xff, 0x5e, 0xe7, 0xff, 0x5e, 0xe7, 0xff, 0x5e, 0xe7, 0xff, 0x3d, 0xe7, 0xff, 0x3d, 0xdf, 0xff, 0x3d, 0xdf, 0xff, 0x3d, 0xdf, 0xff, 0x1d, 0xdf, 0xff, 0x1d, 0xdf, 0xff, 0x1c, 0xdf, 0xff, 0xfc, 0xde, 0xff, 0xfc, 0xd6, 0xff, 0xfc, 0xd6, 0xff, 0xfc, 0xd6, 0xff, 0xdc, 0xd6, 0xff, 0xdc, 0xd6, 0xff, 0xdc, 0xd6, 0xff, 0xdb, 0xd6, 0xff, 0xdb, 0xd6, 0xff, 0xbb, 0xd6, 0xff, 0xbb, 0xce, 0xff, 0xbb, 0xce, 0xff, 0xbb, 0xce, 0xff, 0xbb, 0xce, 0xff, 0xbb, 0xce, 0xff, 0x9b, 0xce, 0xff, 0x9b, 0xce, 0xff, 0x9b, 0xce, 0xff, 0x7a, 0xce, 0xff, 0x7a, 0xc6, 0xff, 0x7a, 0xc6, 0xff, 0x7a, 0xc6, 0xff, 0x7a, 0xc6, 0xff, 0x5a, 0xc6, 0xff, 0x59, 0xc6, 0xff, 0x39, 0xc6, 0xff, 0x39, 0xbe, 0xff, 0x39, 0xbe, 0xff, 0x39, 0xbe, 0xff, 0x18, 0xbe, 0xff, 0x18, 0xbe, 0xff, 0xf8, 0xb5, 0xff, 0xf8, 0xb5, 0xff, 0xf8, 0xb5, 0xff, 0xd8, 0xb5, 0xff, 0xd7, 0xb5, 0xff, 0xb7, 0xb5, 0xff, 0xb7, 0xad, 0xff, 0xb7, 0xad, 0xff, 0x97, 0xad, 0xff, 0x96, 0xad, 0xff, 0x96, 0xad, 0xff, 0x96, 0xad, 0xff, 0x76, 0xad, 0xff, 0x96, 0xad, 0xff, 0x96, 0xad, 0xff, 0x97, 0xad, 0xff, 0x97, 0xad, 0xff, 0x97, 0xad, 0xff, 0xb7, 0xad, 0xff, 0xb7, 0xad, 0xff, 0xb7, 0xb5, 0xff, 0xb7, 0xb5, 0xff, 0xd8, 0xb5, 0xff, 0x59, 0xbe, 0xff, 0x3d, 0xe7, 0xff, 0xbf, 0xf7, 0xff, 0x7d, 0xf7, 0xff, 0xba, 0xde, 0xff, 0x18, 0xc6, 0xff, 0xf8, 0xc5, 0xe8, 0x7a, 0xce, 0x98, + 0x18, 0xc6, 0xff, 0x59, 0xce, 0xff, 0xfc, 0xe6, 0xff, 0xbe, 0xf7, 0xff, 0x7e, 0xf7, 0xff, 0x5d, 0xef, 0xff, 0x79, 0xce, 0xff, 0xd3, 0x9c, 0xff, 0x31, 0x84, 0xff, 0x30, 0x84, 0xff, 0x30, 0x8c, 0xff, 0x30, 0x84, 0xff, 0x30, 0x84, 0xff, 0x31, 0x84, 0xff, 0x31, 0x84, 0xff, 0x31, 0x8c, 0xff, 0x31, 0x8c, 0xff, 0x31, 0x8c, 0xff, 0x31, 0x8c, 0xff, 0x31, 0x8c, 0xff, 0x31, 0x8c, 0xff, 0x51, 0x8c, 0xff, 0x51, 0x8c, 0xff, 0x51, 0x8c, 0xff, 0x51, 0x8c, 0xff, 0x51, 0x8c, 0xff, 0x72, 0x94, 0xff, 0x92, 0x94, 0xff, 0x92, 0x94, 0xff, 0xb3, 0x94, 0xff, 0xb3, 0x9c, 0xff, 0xd3, 0x9c, 0xff, 0xf3, 0x9c, 0xff, 0xf4, 0xa4, 0xff, 0x14, 0xa5, 0xff, 0x35, 0xa5, 0xff, 0x35, 0xad, 0xff, 0x55, 0xad, 0xff, 0x76, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0xb7, 0xbd, 0xff, 0xd7, 0xbd, 0xff, 0xd8, 0xbd, 0xff, 0xf8, 0xc5, 0xff, 0x18, 0xc6, 0xff, 0x39, 0xc6, 0xff, 0x19, 0xc6, 0xff, 0x18, 0xc6, 0xff, 0x18, 0xc6, 0xff, 0xf8, 0xc5, 0xff, 0xd8, 0xbd, 0xff, 0xd7, 0xbd, 0xff, 0xd7, 0xbd, 0xff, 0xb7, 0xbd, 0xff, 0xb7, 0xbd, 0xff, 0x96, 0xb5, 0xff, 0x96, 0xb5, 0xff, 0x76, 0xb5, 0xff, 0x76, 0xb5, 0xff, 0x55, 0xad, 0xff, 0x55, 0xad, 0xff, 0x55, 0xad, 0xff, 0x35, 0xad, 0xff, 0x35, 0xad, 0xff, 0x34, 0xa5, 0xff, 0x14, 0xa5, 0xff, 0x14, 0xa5, 0xff, 0xf4, 0xa4, 0xff, 0xf4, 0xa4, 0xff, 0xf4, 0xa4, 0xff, 0xf3, 0x9c, 0xff, 0xd3, 0x9c, 0xff, 0xd3, 0x9c, 0xff, 0xb3, 0x9c, 0xff, 0xb3, 0x9c, 0xff, 0x92, 0x94, 0xff, 0x92, 0x94, 0xff, 0x92, 0x94, 0xff, 0x92, 0x94, 0xff, 0x72, 0x94, 0xff, 0x72, 0x94, 0xff, 0x71, 0x8c, 0xff, 0x51, 0x8c, 0xff, 0x51, 0x8c, 0xff, 0x51, 0x8c, 0xff, 0x51, 0x8c, 0xff, 0x31, 0x8c, 0xff, 0x30, 0x8c, 0xff, 0x30, 0x84, 0xff, 0x30, 0x84, 0xff, 0x10, 0x84, 0xff, 0x10, 0x84, 0xff, 0xf0, 0x83, 0xff, 0xf0, 0x83, 0xff, 0xef, 0x83, 0xff, 0xef, 0x83, 0xff, 0xef, 0x83, 0xff, 0xcf, 0x83, 0xff, 0xcf, 0x7b, 0xff, 0xcf, 0x7b, 0xff, 0xcf, 0x7b, 0xff, 0xcf, 0x83, 0xff, 0xcf, 0x83, 0xff, 0xef, 0x83, 0xff, 0xef, 0x83, 0xff, 0xef, 0x83, 0xff, 0xef, 0x83, 0xff, 0xf0, 0x83, 0xff, 0xf0, 0x83, 0xff, 0xf0, 0x83, 0xff, 0x10, 0x84, 0xff, 0x92, 0x94, 0xff, 0x18, 0xc6, 0xff, 0x1c, 0xe7, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0xbb, 0xd6, 0xff, 0x39, 0xc6, 0xff, 0xf8, 0xc5, 0xff, + 0x55, 0xad, 0xff, 0xba, 0xd6, 0xff, 0x9e, 0xf7, 0xff, 0x9e, 0xf7, 0xff, 0x9e, 0xf7, 0xff, 0xb3, 0x94, 0xff, 0xcb, 0x72, 0xff, 0x29, 0xab, 0xff, 0xcc, 0xc3, 0xff, 0x0d, 0xcc, 0xff, 0x0d, 0xcc, 0xff, 0xed, 0xcb, 0xff, 0x0d, 0xcc, 0xff, 0x0d, 0xcc, 0xff, 0x0d, 0xcc, 0xff, 0x0d, 0xcc, 0xff, 0x0d, 0xcc, 0xff, 0x0d, 0xcc, 0xff, 0x0d, 0xcc, 0xff, 0x0d, 0xcc, 0xff, 0x0d, 0xcc, 0xff, 0x0d, 0xcc, 0xff, 0x0d, 0xcc, 0xff, 0x0d, 0xcc, 0xff, 0x0d, 0xcc, 0xff, 0x0d, 0xcc, 0xff, 0x2d, 0xcc, 0xff, 0x2d, 0xcc, 0xff, 0x2d, 0xd4, 0xff, 0x2e, 0xd4, 0xff, 0x4e, 0xd4, 0xff, 0x4e, 0xd4, 0xff, 0x4e, 0xd4, 0xff, 0x6e, 0xd4, 0xff, 0x6e, 0xd4, 0xff, 0x6e, 0xd4, 0xff, 0x6e, 0xdc, 0xff, 0x8f, 0xdc, 0xff, 0x8f, 0xdc, 0xff, 0x8f, 0xdc, 0xff, 0xaf, 0xdc, 0xff, 0xaf, 0xe4, 0xff, 0xaf, 0xe4, 0xff, 0xb0, 0xe4, 0xff, 0xb0, 0xe4, 0xff, 0xd0, 0xe4, 0xff, 0xd0, 0xe4, 0xff, 0xd0, 0xe4, 0xff, 0xd0, 0xe4, 0xff, 0xd0, 0xe4, 0xff, 0xd0, 0xe4, 0xff, 0xb0, 0xe4, 0xff, 0xb0, 0xe4, 0xff, 0xaf, 0xe4, 0xff, 0xaf, 0xdc, 0xff, 0xaf, 0xdc, 0xff, 0x8f, 0xdc, 0xff, 0x8f, 0xdc, 0xff, 0x8f, 0xdc, 0xff, 0x8f, 0xdc, 0xff, 0x8f, 0xdc, 0xff, 0x6f, 0xdc, 0xff, 0x6e, 0xdc, 0xff, 0x6e, 0xdc, 0xff, 0x6e, 0xd4, 0xff, 0x6e, 0xd4, 0xff, 0x4e, 0xd4, 0xff, 0x4e, 0xd4, 0xff, 0x4e, 0xd4, 0xff, 0x4e, 0xd4, 0xff, 0x4e, 0xd4, 0xff, 0x4e, 0xd4, 0xff, 0x4e, 0xd4, 0xff, 0x4e, 0xd4, 0xff, 0x2e, 0xd4, 0xff, 0x2e, 0xcc, 0xff, 0x2d, 0xcc, 0xff, 0x2d, 0xcc, 0xff, 0x2d, 0xcc, 0xff, 0x2d, 0xcc, 0xff, 0x2d, 0xcc, 0xff, 0x0d, 0xcc, 0xff, 0x0d, 0xcc, 0xff, 0x0d, 0xcc, 0xff, 0x0d, 0xcc, 0xff, 0x0d, 0xcc, 0xff, 0x0d, 0xcc, 0xff, 0x0d, 0xcc, 0xff, 0x0d, 0xcc, 0xff, 0x0d, 0xcc, 0xff, 0xed, 0xcb, 0xff, 0xec, 0xcb, 0xff, 0xec, 0xc3, 0xff, 0xec, 0xcb, 0xff, 0xec, 0xcb, 0xff, 0xec, 0xc3, 0xff, 0xec, 0xc3, 0xff, 0xec, 0xc3, 0xff, 0xec, 0xc3, 0xff, 0xcc, 0xc3, 0xff, 0xec, 0xc3, 0xff, 0xec, 0xc3, 0xff, 0xcc, 0xc3, 0xff, 0xec, 0xc3, 0xff, 0xec, 0xc3, 0xff, 0xec, 0xc3, 0xff, 0xec, 0xc3, 0xff, 0xec, 0xc3, 0xff, 0xec, 0xc3, 0xff, 0xec, 0xcb, 0xff, 0xec, 0xc3, 0xff, 0xcb, 0xbb, 0xff, 0x09, 0xab, 0xff, 0x0b, 0x83, 0xff, 0xb2, 0x9c, 0xff, 0x1c, 0xe7, 0xff, 0x5d, 0xef, 0xff, 0x1c, 0xe7, 0xff, 0x7a, 0xce, 0xff, 0x96, 0xb5, 0xff, + 0x14, 0xa5, 0xff, 0xdb, 0xde, 0xff, 0xff, 0xff, 0xff, 0x7d, 0xef, 0xff, 0x38, 0xc6, 0xff, 0xeb, 0x72, 0xff, 0xa4, 0x71, 0xff, 0x27, 0xcb, 0xff, 0x2b, 0xf4, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xf4, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xf4, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6d, 0xfc, 0xff, 0x6d, 0xfc, 0xff, 0x6d, 0xfc, 0xff, 0x6d, 0xfc, 0xff, 0x6d, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xf4, 0xff, 0x6c, 0xf4, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xf4, 0xff, 0x6c, 0xf4, 0xff, 0x6c, 0xf4, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x6c, 0xfc, 0xff, 0x2b, 0xec, 0xff, 0x27, 0xcb, 0xff, 0xe5, 0x81, 0xff, 0x0b, 0x7b, 0xff, 0xf8, 0xc5, 0xff, 0x1c, 0xe7, 0xff, 0x5d, 0xef, 0xff, 0x9a, 0xd6, 0xff, 0x75, 0xad, 0xff, + 0x34, 0xa5, 0xff, 0xdb, 0xde, 0xff, 0xff, 0xff, 0xff, 0x3d, 0xe7, 0xff, 0xeb, 0x62, 0xff, 0xa7, 0x9a, 0xff, 0xea, 0xe3, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x0f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x30, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x2f, 0xfd, 0xff, 0x30, 0xfd, 0xff, 0x0f, 0xfd, 0xff, 0x89, 0xd3, 0xff, 0xc8, 0x9a, 0xff, 0xce, 0x83, 0xff, 0xdb, 0xde, 0xff, 0x7e, 0xef, 0xff, 0xba, 0xd6, 0xff, 0x96, 0xb5, 0xff, + 0x35, 0xad, 0xff, 0xfc, 0xe6, 0xff, 0xdf, 0xff, 0xff, 0x59, 0xce, 0xff, 0x06, 0x6a, 0xff, 0x47, 0xc3, 0xff, 0x0d, 0xfd, 0xff, 0xb0, 0xfd, 0xff, 0x6f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x6f, 0xfd, 0xff, 0x6f, 0xfd, 0xff, 0x6f, 0xfd, 0xff, 0x6f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x50, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x50, 0xfd, 0xff, 0x50, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x6f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x4f, 0xfd, 0xff, 0x70, 0xfd, 0xff, 0x70, 0xfd, 0xff, 0x90, 0xfd, 0xff, 0xcd, 0xfc, 0xff, 0x28, 0xbb, 0xff, 0x68, 0x72, 0xff, 0x9a, 0xd6, 0xff, 0x7e, 0xef, 0xff, 0xba, 0xd6, 0xff, 0x96, 0xb5, 0xff, + 0x55, 0xad, 0xff, 0x1c, 0xe7, 0xff, 0x5d, 0xe7, 0xff, 0x34, 0xa5, 0xff, 0xc7, 0xaa, 0xff, 0x4b, 0xe4, 0xff, 0x6f, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x6f, 0xfd, 0xff, 0xc9, 0xcb, 0xff, 0xe5, 0x71, 0xff, 0x39, 0xd6, 0xff, 0x7e, 0xef, 0xff, 0xbb, 0xde, 0xff, 0x96, 0xb5, 0xff, + 0x55, 0xad, 0xff, 0x3c, 0xef, 0xff, 0x1c, 0xdf, 0xff, 0xb2, 0x9c, 0xff, 0x88, 0xcb, 0xff, 0xac, 0xf4, 0xff, 0x6e, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2d, 0xfd, 0xff, 0x2e, 0xfd, 0xff, 0x8f, 0xfd, 0xff, 0x0a, 0xdc, 0xff, 0x44, 0x92, 0xff, 0xf7, 0xcd, 0xff, 0x5d, 0xef, 0xff, 0xdb, 0xde, 0xff, 0x96, 0xb5, 0xff, + 0x55, 0xad, 0xff, 0x3c, 0xef, 0xff, 0xfc, 0xde, 0xff, 0x92, 0x94, 0xff, 0x2a, 0xdc, 0xff, 0xcb, 0xfc, 0xff, 0x2d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x0d, 0xfd, 0xff, 0x6e, 0xfd, 0xff, 0x4a, 0xe4, 0xff, 0xc5, 0xa2, 0xff, 0xb6, 0xc5, 0xff, 0x3d, 0xe7, 0xff, 0xdb, 0xde, 0xff, 0x96, 0xb5, 0xff, + 0x55, 0xad, 0xff, 0x3c, 0xef, 0xff, 0xfc, 0xde, 0xff, 0x92, 0x94, 0xff, 0x2a, 0xdc, 0xff, 0xcb, 0xfc, 0xff, 0x2d, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x4d, 0xfd, 0xff, 0x29, 0xe4, 0xff, 0xe6, 0xaa, 0xff, 0xd6, 0xc5, 0xff, 0x3d, 0xe7, 0xff, 0xdb, 0xde, 0xff, 0x96, 0xb5, 0xff, + 0x55, 0xad, 0xff, 0x3c, 0xef, 0xff, 0xfc, 0xde, 0xff, 0xb3, 0x9c, 0xff, 0x29, 0xdc, 0xff, 0xaa, 0xfc, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x0c, 0xfd, 0xff, 0x4d, 0xfd, 0xff, 0x29, 0xe4, 0xff, 0xe6, 0xaa, 0xff, 0xd7, 0xcd, 0xff, 0x3d, 0xe7, 0xff, 0xdb, 0xde, 0xff, 0x96, 0xb5, 0xff, + 0x55, 0xad, 0xff, 0x3c, 0xef, 0xff, 0x1c, 0xdf, 0xff, 0xd3, 0x9c, 0xff, 0x29, 0xdc, 0xff, 0xaa, 0xfc, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x0b, 0xfd, 0xff, 0x4b, 0xfd, 0xff, 0x28, 0xe4, 0xff, 0xe5, 0xaa, 0xff, 0xf7, 0xcd, 0xff, 0x3d, 0xe7, 0xff, 0xdb, 0xde, 0xff, 0x96, 0xb5, 0xff, + 0x55, 0xad, 0xff, 0x3c, 0xef, 0xff, 0x1d, 0xdf, 0xff, 0xd3, 0x9c, 0xff, 0x29, 0xe4, 0xff, 0xa9, 0xfc, 0xff, 0x0a, 0xfd, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0xea, 0xfc, 0xff, 0x2b, 0xfd, 0xff, 0x27, 0xe4, 0xff, 0x05, 0xab, 0xff, 0xf7, 0xcd, 0xff, 0x3d, 0xe7, 0xff, 0xdb, 0xde, 0xff, 0x96, 0xb5, 0xff, + 0x55, 0xad, 0xff, 0x3c, 0xef, 0xff, 0x1d, 0xdf, 0xff, 0xd3, 0x9c, 0xff, 0x28, 0xe4, 0xff, 0x88, 0xfc, 0xff, 0x09, 0xfd, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0x2a, 0xfd, 0xff, 0x27, 0xe4, 0xff, 0x05, 0xab, 0xff, 0xf7, 0xcd, 0xff, 0x3d, 0xe7, 0xff, 0xdb, 0xde, 0xff, 0x96, 0xb5, 0xff, + 0x55, 0xad, 0xff, 0x3c, 0xef, 0xff, 0x3d, 0xdf, 0xff, 0xf3, 0xa4, 0xff, 0xe6, 0xe3, 0xff, 0x87, 0xfc, 0xff, 0x09, 0xfd, 0xff, 0xe9, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe9, 0xfc, 0xff, 0x09, 0xfd, 0xff, 0x05, 0xe4, 0xff, 0xe4, 0xaa, 0xff, 0xf7, 0xcd, 0xff, 0x5d, 0xe7, 0xff, 0xdb, 0xde, 0xff, 0x96, 0xb5, 0xff, + 0x55, 0xad, 0xff, 0x3c, 0xef, 0xff, 0x3d, 0xdf, 0xff, 0xf4, 0xa4, 0xff, 0xc4, 0xe3, 0xff, 0x45, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xc4, 0xe3, 0xff, 0xc3, 0xaa, 0xff, 0x17, 0xce, 0xff, 0x5d, 0xef, 0xff, 0xdb, 0xde, 0xff, 0x96, 0xb5, 0xff, + 0x55, 0xad, 0xff, 0x3c, 0xef, 0xff, 0x3d, 0xdf, 0xff, 0x14, 0xa5, 0xff, 0xc4, 0xe3, 0xff, 0xe2, 0xfb, 0xff, 0x65, 0xfc, 0xff, 0xc7, 0xfc, 0xff, 0xc8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xe8, 0xfc, 0xff, 0xc7, 0xfc, 0xff, 0x85, 0xfc, 0xff, 0x81, 0xe3, 0xff, 0xc2, 0xaa, 0xff, 0x17, 0xd6, 0xff, 0x5d, 0xef, 0xff, 0xdb, 0xde, 0xff, 0x96, 0xb5, 0xff, + 0x55, 0xad, 0xff, 0x3c, 0xe7, 0xff, 0x3e, 0xe7, 0xff, 0x14, 0xa5, 0xff, 0xe4, 0xe3, 0xff, 0xc0, 0xfb, 0xff, 0x02, 0xfc, 0xff, 0x85, 0xfc, 0xff, 0x86, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0xa6, 0xfc, 0xff, 0x85, 0xfc, 0xff, 0x42, 0xfc, 0xff, 0x60, 0xe3, 0xff, 0xe2, 0xb2, 0xff, 0x38, 0xd6, 0xff, 0x5e, 0xef, 0xff, 0xdb, 0xde, 0xff, 0x96, 0xb5, 0xff, + 0x55, 0xad, 0xff, 0x3c, 0xe7, 0xff, 0x3e, 0xe7, 0xff, 0x34, 0xad, 0xff, 0x04, 0xe4, 0xff, 0xc0, 0xfb, 0xff, 0xe0, 0xfb, 0xff, 0x01, 0xfc, 0xff, 0x02, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x22, 0xfc, 0xff, 0x02, 0xfc, 0xff, 0xe1, 0xfb, 0xff, 0x00, 0xfc, 0xff, 0x60, 0xe3, 0xff, 0x03, 0xb3, 0xff, 0x58, 0xd6, 0xff, 0x7e, 0xef, 0xff, 0xdb, 0xde, 0xff, 0x96, 0xb5, 0xff, + 0x75, 0xad, 0xff, 0x5d, 0xef, 0xff, 0x5e, 0xe7, 0xff, 0x55, 0xad, 0xff, 0x04, 0xe4, 0xff, 0xe0, 0xfb, 0xff, 0xe0, 0xfb, 0xff, 0xe0, 0xfb, 0xff, 0xe0, 0xfb, 0xff, 0x01, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0xe0, 0xfb, 0xff, 0xe0, 0xfb, 0xff, 0x00, 0xfc, 0xff, 0x60, 0xe3, 0xff, 0x23, 0xb3, 0xff, 0x58, 0xd6, 0xff, 0x5e, 0xef, 0xff, 0xbb, 0xde, 0xff, 0x96, 0xb5, 0xff, + 0x55, 0xad, 0xff, 0x5d, 0xef, 0xff, 0x5e, 0xe7, 0xff, 0x55, 0xad, 0xff, 0x24, 0xe4, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x00, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x80, 0xe3, 0xff, 0x23, 0xb3, 0xff, 0xf7, 0xcd, 0xff, 0xbb, 0xd6, 0xff, 0x59, 0xce, 0xff, 0x76, 0xad, 0xff, + 0xd3, 0x9c, 0xff, 0xba, 0xde, 0xff, 0xfd, 0xde, 0xff, 0x55, 0xad, 0xff, 0x44, 0xe4, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x20, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0xc0, 0xeb, 0xff, 0x43, 0xb3, 0xff, 0x70, 0x9c, 0xff, 0x31, 0x84, 0xff, 0x51, 0x8c, 0xff, 0xf4, 0xa4, 0xff, + 0xaf, 0x7b, 0xff, 0x35, 0xad, 0xff, 0xb7, 0xad, 0xff, 0x92, 0x94, 0xff, 0x24, 0xe4, 0xff, 0x20, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x00, 0xf4, 0xff, 0x43, 0xb3, 0xff, 0xea, 0x6a, 0xff, 0x09, 0x42, 0xff, 0xcb, 0x5a, 0xff, 0x92, 0x94, 0xff, + 0xa7, 0x39, 0xff, 0x49, 0x4a, 0xff, 0xcc, 0x52, 0xff, 0xec, 0x62, 0xff, 0x03, 0xdc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x40, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x21, 0xf4, 0xff, 0x63, 0xbb, 0xff, 0x27, 0x52, 0xff, 0x45, 0x29, 0xff, 0x69, 0x4a, 0xff, 0xb2, 0x94, 0xff, + 0xa3, 0x18, 0xff, 0xc3, 0x18, 0xff, 0x05, 0x19, 0xff, 0x08, 0x42, 0xff, 0x02, 0xdc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x60, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x41, 0xf4, 0xff, 0x84, 0xbb, 0xff, 0xe6, 0x49, 0xff, 0xe4, 0x18, 0xff, 0x29, 0x42, 0xff, 0xb3, 0x94, 0xff, + 0x82, 0x10, 0xff, 0x61, 0x10, 0xff, 0xa4, 0x10, 0xff, 0xc7, 0x39, 0xff, 0x02, 0xd4, 0xff, 0x81, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0x61, 0xf4, 0xff, 0xa4, 0xbb, 0xff, 0xe7, 0x49, 0xff, 0xe4, 0x18, 0xff, 0x28, 0x42, 0xff, 0xb3, 0x94, 0xff, + 0xa2, 0x10, 0xff, 0x41, 0x08, 0xff, 0x83, 0x08, 0xff, 0xe7, 0x39, 0xff, 0xc3, 0xc3, 0xff, 0x81, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0x82, 0xf4, 0xff, 0xc5, 0xb3, 0xff, 0xa6, 0x39, 0xff, 0x83, 0x10, 0xff, 0x28, 0x42, 0xff, 0x14, 0xa5, 0xff, + 0x04, 0x21, 0xff, 0x41, 0x08, 0xff, 0x83, 0x08, 0xff, 0xe7, 0x39, 0xff, 0x64, 0xab, 0xff, 0x62, 0xec, 0xff, 0xc0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa3, 0xec, 0xff, 0xc7, 0xab, 0xff, 0x24, 0x29, 0xff, 0x62, 0x08, 0xff, 0x6a, 0x52, 0xff, 0x76, 0xb5, 0xff, + 0xe7, 0x39, 0xff, 0x82, 0x10, 0xff, 0x21, 0x00, 0xff, 0x45, 0x29, 0xff, 0x49, 0x83, 0xff, 0x24, 0xd4, 0xff, 0xa0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xa0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0x80, 0xfc, 0xff, 0x65, 0xd4, 0xff, 0x8a, 0x83, 0xff, 0x61, 0x10, 0xff, 0xe4, 0x18, 0xff, 0x4d, 0x6b, 0xff, 0xd7, 0xbd, 0xff, + 0xab, 0x5a, 0xff, 0x24, 0x21, 0xff, 0x21, 0x00, 0xff, 0xa3, 0x10, 0xff, 0xaa, 0x5a, 0xff, 0xc6, 0xab, 0xff, 0x62, 0xe4, 0xff, 0xe1, 0xfc, 0xff, 0xc1, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc1, 0xfc, 0xff, 0xc1, 0xfc, 0xff, 0xc1, 0xfc, 0xff, 0xc1, 0xfc, 0xff, 0xc1, 0xfc, 0xff, 0xc1, 0xfc, 0xff, 0xc1, 0xfc, 0xff, 0xc1, 0xfc, 0xff, 0xc1, 0xfc, 0xff, 0xe1, 0xfc, 0xff, 0xc1, 0xfc, 0xff, 0xc1, 0xfc, 0xff, 0xc1, 0xfc, 0xff, 0xc1, 0xfc, 0xff, 0xe1, 0xfc, 0xff, 0xe1, 0xfc, 0xff, 0xe1, 0xfc, 0xff, 0xe1, 0xfc, 0xff, 0xe1, 0xfc, 0xff, 0xe1, 0xfc, 0xff, 0xe1, 0xfc, 0xff, 0xe1, 0xfc, 0xff, 0xe1, 0xfc, 0xff, 0xe1, 0xfc, 0xff, 0xe1, 0xfc, 0xff, 0xe1, 0xfc, 0xff, 0xe1, 0xfc, 0xff, 0xe1, 0xfc, 0xff, 0xe1, 0xfc, 0xff, 0xe1, 0xfc, 0xff, 0xe1, 0xfc, 0xff, 0xe1, 0xfc, 0xff, 0xe1, 0xfc, 0xff, 0xe1, 0xfc, 0xff, 0xe1, 0xfc, 0xff, 0xe1, 0xfc, 0xff, 0xe1, 0xfc, 0xff, 0xe1, 0xfc, 0xff, 0xe1, 0xfc, 0xff, 0xe1, 0xfc, 0xff, 0xc1, 0xfc, 0xff, 0xc1, 0xfc, 0xff, 0xc1, 0xfc, 0xff, 0xe1, 0xfc, 0xff, 0xc1, 0xfc, 0xff, 0xc1, 0xfc, 0xff, 0xc1, 0xfc, 0xff, 0xc1, 0xfc, 0xff, 0xc1, 0xfc, 0xff, 0xc1, 0xfc, 0xff, 0xc1, 0xfc, 0xff, 0xc1, 0xfc, 0xff, 0xc1, 0xfc, 0xff, 0xc1, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc0, 0xfc, 0xff, 0xc1, 0xfc, 0xff, 0xc1, 0xfc, 0xff, 0x83, 0xe4, 0xff, 0xc7, 0xab, 0xff, 0x89, 0x52, 0xff, 0x21, 0x08, 0xff, 0x08, 0x42, 0xff, 0x72, 0x94, 0xff, 0xd7, 0xbd, 0xff, + 0x2c, 0x63, 0xff, 0x49, 0x4a, 0xff, 0xe3, 0x18, 0xff, 0x00, 0x00, 0xff, 0x45, 0x29, 0xff, 0x09, 0x73, 0xff, 0x6a, 0xbc, 0xff, 0xe7, 0xe4, 0xff, 0x83, 0xe4, 0xff, 0x83, 0xe4, 0xff, 0x83, 0xec, 0xff, 0x83, 0xe4, 0xff, 0x83, 0xe4, 0xff, 0x83, 0xe4, 0xff, 0x83, 0xe4, 0xff, 0x83, 0xe4, 0xff, 0x83, 0xe4, 0xff, 0x83, 0xe4, 0xff, 0x83, 0xe4, 0xff, 0x83, 0xe4, 0xff, 0x83, 0xe4, 0xff, 0x83, 0xe4, 0xff, 0x83, 0xe4, 0xff, 0x83, 0xe4, 0xff, 0x83, 0xec, 0xff, 0x83, 0xec, 0xff, 0x83, 0xec, 0xff, 0x83, 0xec, 0xff, 0xa3, 0xec, 0xff, 0xa3, 0xec, 0xff, 0xa3, 0xec, 0xff, 0xa3, 0xec, 0xff, 0xa3, 0xec, 0xff, 0xa2, 0xec, 0xff, 0xa3, 0xec, 0xff, 0xa3, 0xec, 0xff, 0xa3, 0xec, 0xff, 0xa3, 0xec, 0xff, 0xc3, 0xec, 0xff, 0xc3, 0xec, 0xff, 0xc3, 0xec, 0xff, 0xc3, 0xec, 0xff, 0xc3, 0xec, 0xff, 0xe3, 0xec, 0xff, 0xe3, 0xec, 0xff, 0xe4, 0xf4, 0xff, 0xe4, 0xf4, 0xff, 0xe4, 0xf4, 0xff, 0xe4, 0xf4, 0xff, 0x04, 0xf5, 0xff, 0x05, 0xf5, 0xff, 0x05, 0xf5, 0xff, 0x25, 0xf5, 0xff, 0x25, 0xf5, 0xff, 0x25, 0xfd, 0xff, 0x25, 0xfd, 0xff, 0x46, 0xfd, 0xff, 0x46, 0xfd, 0xff, 0x66, 0xfd, 0xff, 0x66, 0xfd, 0xff, 0x86, 0xfd, 0xff, 0x87, 0xfd, 0xff, 0x87, 0xfd, 0xff, 0xa7, 0xfd, 0xff, 0xa7, 0xfd, 0xff, 0xc8, 0xfd, 0xff, 0xc8, 0xfd, 0xff, 0xe8, 0xfd, 0xff, 0x08, 0xfe, 0xff, 0x09, 0xfe, 0xff, 0x09, 0xfe, 0xff, 0xe8, 0xfd, 0xff, 0xc8, 0xfd, 0xff, 0xc8, 0xfd, 0xff, 0xa7, 0xfd, 0xff, 0xa7, 0xfd, 0xff, 0x87, 0xfd, 0xff, 0x87, 0xfd, 0xff, 0x86, 0xfd, 0xff, 0x66, 0xfd, 0xff, 0x66, 0xfd, 0xff, 0x46, 0xfd, 0xff, 0x46, 0xfd, 0xff, 0x45, 0xfd, 0xff, 0x25, 0xfd, 0xff, 0x25, 0xf5, 0xff, 0x25, 0xf5, 0xff, 0x05, 0xf5, 0xff, 0x05, 0xf5, 0xff, 0x04, 0xf5, 0xff, 0xe4, 0xf4, 0xff, 0xe4, 0xf4, 0xff, 0xe4, 0xf4, 0xff, 0xe4, 0xec, 0xff, 0xe3, 0xec, 0xff, 0xe3, 0xec, 0xff, 0xe3, 0xec, 0xff, 0xc3, 0xec, 0xff, 0xc3, 0xec, 0xff, 0xc3, 0xec, 0xff, 0xc3, 0xec, 0xff, 0xa3, 0xec, 0xff, 0xa3, 0xec, 0xff, 0xa3, 0xec, 0xff, 0xa3, 0xec, 0xff, 0xa3, 0xec, 0xff, 0xa3, 0xec, 0xff, 0xa3, 0xec, 0xff, 0xa3, 0xec, 0xff, 0xa3, 0xec, 0xff, 0x83, 0xe4, 0xff, 0x84, 0xe4, 0xff, 0xc7, 0xe4, 0xff, 0x6a, 0xb4, 0xff, 0xc8, 0x6a, 0xff, 0xc3, 0x18, 0xff, 0x82, 0x10, 0xff, 0xf0, 0x7b, 0xff, 0xf8, 0xbd, 0xff, 0x76, 0xad, 0xff, + 0x71, 0x8c, 0xff, 0x2d, 0x6b, 0xff, 0xa6, 0x31, 0xff, 0x61, 0x08, 0xff, 0x42, 0x08, 0xff, 0xa7, 0x31, 0xff, 0xe9, 0x6a, 0xff, 0x67, 0x93, 0xff, 0x85, 0xa3, 0xff, 0x85, 0xa3, 0xff, 0x85, 0xa3, 0xff, 0x85, 0xa3, 0xff, 0x85, 0xa3, 0xff, 0x85, 0xa3, 0xff, 0x85, 0xa3, 0xff, 0x85, 0xa3, 0xff, 0x85, 0xa3, 0xff, 0x85, 0xa3, 0xff, 0x85, 0xa3, 0xff, 0x85, 0xa3, 0xff, 0x85, 0xa3, 0xff, 0x85, 0xa3, 0xff, 0x85, 0xa3, 0xff, 0x85, 0xa3, 0xff, 0x85, 0xa3, 0xff, 0x85, 0xa3, 0xff, 0x85, 0xa3, 0xff, 0x85, 0xa3, 0xff, 0x85, 0xa3, 0xff, 0x85, 0xa3, 0xff, 0x85, 0xa3, 0xff, 0x85, 0xa3, 0xff, 0x85, 0xa3, 0xff, 0xa5, 0xa3, 0xff, 0xa5, 0xab, 0xff, 0xa5, 0xab, 0xff, 0xa5, 0xab, 0xff, 0xa5, 0xab, 0xff, 0xa5, 0xab, 0xff, 0xa5, 0xab, 0xff, 0xa5, 0xab, 0xff, 0xc5, 0xab, 0xff, 0xc6, 0xab, 0xff, 0xc6, 0xab, 0xff, 0xc6, 0xab, 0xff, 0xc6, 0xab, 0xff, 0xe6, 0xab, 0xff, 0xe6, 0xab, 0xff, 0xe6, 0xab, 0xff, 0xe6, 0xab, 0xff, 0xe7, 0xb3, 0xff, 0x07, 0xb4, 0xff, 0x07, 0xb4, 0xff, 0x07, 0xb4, 0xff, 0x07, 0xb4, 0xff, 0x27, 0xb4, 0xff, 0x27, 0xb4, 0xff, 0x28, 0xbc, 0xff, 0x48, 0xbc, 0xff, 0x48, 0xbc, 0xff, 0x68, 0xbc, 0xff, 0x68, 0xbc, 0xff, 0x69, 0xc4, 0xff, 0x89, 0xc4, 0xff, 0x89, 0xc4, 0xff, 0xa9, 0xc4, 0xff, 0xaa, 0xc4, 0xff, 0xca, 0xcc, 0xff, 0xca, 0xcc, 0xff, 0xca, 0xcc, 0xff, 0xca, 0xcc, 0xff, 0xca, 0xcc, 0xff, 0xaa, 0xc4, 0xff, 0xa9, 0xc4, 0xff, 0x89, 0xc4, 0xff, 0x89, 0xc4, 0xff, 0x69, 0xbc, 0xff, 0x68, 0xbc, 0xff, 0x68, 0xbc, 0xff, 0x48, 0xbc, 0xff, 0x48, 0xbc, 0xff, 0x28, 0xbc, 0xff, 0x27, 0xb4, 0xff, 0x27, 0xb4, 0xff, 0x07, 0xb4, 0xff, 0x07, 0xb4, 0xff, 0x07, 0xb4, 0xff, 0xe7, 0xb3, 0xff, 0xe6, 0xb3, 0xff, 0xe6, 0xab, 0xff, 0xe6, 0xab, 0xff, 0xc6, 0xab, 0xff, 0xc6, 0xab, 0xff, 0xc6, 0xab, 0xff, 0xc6, 0xab, 0xff, 0xc6, 0xab, 0xff, 0xc6, 0xab, 0xff, 0xc5, 0xab, 0xff, 0xa5, 0xab, 0xff, 0xa5, 0xab, 0xff, 0xa5, 0xab, 0xff, 0xa5, 0xab, 0xff, 0xa5, 0xab, 0xff, 0x85, 0xab, 0xff, 0x85, 0xa3, 0xff, 0x85, 0xa3, 0xff, 0x85, 0xa3, 0xff, 0x85, 0xa3, 0xff, 0x85, 0xa3, 0xff, 0x85, 0xa3, 0xff, 0x85, 0xa3, 0xff, 0x85, 0x9b, 0xff, 0x67, 0x93, 0xff, 0xa8, 0x62, 0xff, 0x86, 0x31, 0xff, 0xc3, 0x18, 0xff, 0x8a, 0x52, 0xff, 0x55, 0xad, 0xff, 0x59, 0xce, 0xff, 0x76, 0xb5, 0xff, + 0xf8, 0xc5, 0xff, 0xf0, 0x83, 0xff, 0x49, 0x4a, 0xff, 0xa6, 0x31, 0xff, 0x00, 0x00, 0xff, 0x00, 0x00, 0xff, 0x82, 0x10, 0xff, 0x03, 0x29, 0xff, 0x07, 0x4a, 0xff, 0x27, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x27, 0x4a, 0xff, 0x27, 0x52, 0xff, 0x27, 0x52, 0xff, 0x27, 0x52, 0xff, 0x27, 0x52, 0xff, 0x27, 0x4a, 0xff, 0x27, 0x52, 0xff, 0x27, 0x4a, 0xff, 0x27, 0x52, 0xff, 0x28, 0x52, 0xff, 0x28, 0x52, 0xff, 0x28, 0x52, 0xff, 0x28, 0x52, 0xff, 0x28, 0x52, 0xff, 0x28, 0x52, 0xff, 0x28, 0x52, 0xff, 0x28, 0x52, 0xff, 0x28, 0x52, 0xff, 0x28, 0x52, 0xff, 0x28, 0x52, 0xff, 0x28, 0x52, 0xff, 0x28, 0x52, 0xff, 0x27, 0x4a, 0xff, 0x27, 0x52, 0xff, 0x27, 0x52, 0xff, 0x27, 0x4a, 0xff, 0x27, 0x52, 0xff, 0x27, 0x4a, 0xff, 0x27, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0xe7, 0x49, 0xff, 0xe7, 0x49, 0xff, 0xe7, 0x49, 0xff, 0xe7, 0x49, 0xff, 0xe7, 0x49, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0x07, 0x4a, 0xff, 0xe6, 0x41, 0xff, 0x04, 0x29, 0xff, 0x20, 0x08, 0xff, 0x61, 0x08, 0xff, 0x49, 0x4a, 0xff, 0x96, 0xb5, 0xff, 0x38, 0xc6, 0xff, 0xf8, 0xbd, 0xff, 0xd7, 0xbd, 0xff, + 0xdb, 0xde, 0x9f, 0x71, 0x8c, 0xc4, 0x2c, 0x63, 0xec, 0xcb, 0x5a, 0xff, 0x08, 0x42, 0xff, 0x86, 0x31, 0xff, 0x66, 0x29, 0xff, 0x87, 0x31, 0xff, 0x29, 0x42, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x6a, 0x4a, 0xff, 0x6a, 0x4a, 0xff, 0x6a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x6a, 0x4a, 0xff, 0x6a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x6a, 0x4a, 0xff, 0x6a, 0x4a, 0xff, 0x6a, 0x4a, 0xff, 0x6a, 0x4a, 0xff, 0x6a, 0x4a, 0xff, 0x6a, 0x4a, 0xff, 0x6a, 0x4a, 0xff, 0x6a, 0x4a, 0xff, 0x6a, 0x4a, 0xff, 0x6a, 0x4a, 0xff, 0x6a, 0x4a, 0xff, 0x6a, 0x4a, 0xff, 0x6a, 0x4a, 0xff, 0x6a, 0x4a, 0xff, 0x6a, 0x4a, 0xff, 0x6a, 0x4a, 0xff, 0x6a, 0x4a, 0xff, 0x6a, 0x4a, 0xff, 0x6a, 0x4a, 0xff, 0x6a, 0x4a, 0xff, 0x6a, 0x4a, 0xff, 0x6b, 0x4a, 0xff, 0x6b, 0x4a, 0xff, 0x6b, 0x4a, 0xff, 0x6b, 0x52, 0xff, 0x6b, 0x52, 0xff, 0x8b, 0x52, 0xff, 0x8b, 0x52, 0xff, 0x8b, 0x52, 0xff, 0x8b, 0x52, 0xff, 0x6a, 0x52, 0xff, 0x6b, 0x52, 0xff, 0x6b, 0x52, 0xff, 0x8b, 0x52, 0xff, 0x8b, 0x52, 0xff, 0x8b, 0x52, 0xff, 0x8b, 0x52, 0xff, 0x8b, 0x52, 0xff, 0x6a, 0x4a, 0xff, 0x09, 0x3a, 0xff, 0x09, 0x42, 0xff, 0x0c, 0x63, 0xff, 0x92, 0x94, 0xff, 0x39, 0xc6, 0xff, 0xd7, 0xbd, 0xff, 0x96, 0xb5, 0xe3, 0x18, 0xc6, 0x87, + 0xff, 0xff, 0x28, 0xf3, 0x9c, 0x70, 0x10, 0x84, 0xc8, 0xef, 0x7b, 0xff, 0x31, 0x84, 0xff, 0x8e, 0x73, 0xff, 0x0c, 0x63, 0xff, 0xec, 0x62, 0xff, 0xec, 0x5a, 0xff, 0xec, 0x5a, 0xff, 0xec, 0x5a, 0xff, 0xec, 0x5a, 0xff, 0xec, 0x5a, 0xff, 0xec, 0x5a, 0xff, 0xec, 0x5a, 0xff, 0xec, 0x5a, 0xff, 0xec, 0x5a, 0xff, 0xec, 0x5a, 0xff, 0xec, 0x5a, 0xff, 0xec, 0x62, 0xff, 0x0c, 0x63, 0xff, 0x0c, 0x63, 0xff, 0x0c, 0x63, 0xff, 0x0c, 0x63, 0xff, 0x0c, 0x63, 0xff, 0x0c, 0x63, 0xff, 0x0c, 0x63, 0xff, 0x0c, 0x63, 0xff, 0x0c, 0x63, 0xff, 0x0c, 0x63, 0xff, 0x0c, 0x63, 0xff, 0x0c, 0x63, 0xff, 0x0c, 0x63, 0xff, 0x0c, 0x63, 0xff, 0x0c, 0x63, 0xff, 0x2d, 0x63, 0xff, 0x2d, 0x63, 0xff, 0x2d, 0x63, 0xff, 0x2d, 0x63, 0xff, 0x2d, 0x63, 0xff, 0x2d, 0x63, 0xff, 0x2d, 0x63, 0xff, 0x2d, 0x63, 0xff, 0x2d, 0x6b, 0xff, 0x2d, 0x6b, 0xff, 0x2d, 0x6b, 0xff, 0x2d, 0x6b, 0xff, 0x2d, 0x6b, 0xff, 0x4d, 0x6b, 0xff, 0x4d, 0x6b, 0xff, 0x4d, 0x6b, 0xff, 0x4d, 0x6b, 0xff, 0x4d, 0x6b, 0xff, 0x4d, 0x6b, 0xff, 0x4d, 0x6b, 0xff, 0x4d, 0x6b, 0xff, 0x4d, 0x6b, 0xff, 0x4d, 0x6b, 0xff, 0x4d, 0x6b, 0xff, 0x4d, 0x6b, 0xff, 0x4d, 0x6b, 0xff, 0x4d, 0x6b, 0xff, 0x4d, 0x6b, 0xff, 0x4d, 0x6b, 0xff, 0x4d, 0x6b, 0xff, 0x6e, 0x6b, 0xff, 0x6e, 0x6b, 0xff, 0x6e, 0x6b, 0xff, 0x6e, 0x6b, 0xff, 0x6e, 0x6b, 0xff, 0x6e, 0x6b, 0xff, 0x6e, 0x6b, 0xff, 0x6e, 0x6b, 0xff, 0x6e, 0x6b, 0xff, 0x6e, 0x6b, 0xff, 0x6e, 0x6b, 0xff, 0x8e, 0x6b, 0xff, 0x8e, 0x6b, 0xff, 0x8e, 0x73, 0xff, 0x8e, 0x73, 0xff, 0x8e, 0x73, 0xff, 0x8e, 0x73, 0xff, 0x8e, 0x73, 0xff, 0x8e, 0x73, 0xff, 0x8e, 0x73, 0xff, 0x8e, 0x73, 0xff, 0x8e, 0x73, 0xff, 0x8e, 0x73, 0xff, 0x8e, 0x73, 0xff, 0x8e, 0x73, 0xff, 0x8e, 0x73, 0xff, 0x8e, 0x73, 0xff, 0x8e, 0x73, 0xff, 0x8e, 0x73, 0xff, 0xaf, 0x73, 0xff, 0xaf, 0x73, 0xff, 0xaf, 0x73, 0xff, 0xaf, 0x73, 0xff, 0xaf, 0x73, 0xff, 0xaf, 0x73, 0xff, 0xaf, 0x73, 0xff, 0xaf, 0x73, 0xff, 0xaf, 0x73, 0xff, 0xaf, 0x7b, 0xff, 0xaf, 0x7b, 0xff, 0xaf, 0x7b, 0xff, 0xcf, 0x7b, 0xff, 0xcf, 0x7b, 0xff, 0xcf, 0x7b, 0xff, 0xcf, 0x7b, 0xff, 0xcf, 0x7b, 0xff, 0xcf, 0x7b, 0xff, 0xcf, 0x7b, 0xff, 0xf4, 0x9c, 0xff, 0xf8, 0xc5, 0xff, 0x7a, 0xd6, 0xff, 0xf8, 0xbd, 0xff, 0x35, 0xad, 0xff, 0xf4, 0xa4, 0xa4, 0x00, 0x00, 0x00, + 0xff, 0xff, 0x07, 0x59, 0xce, 0x27, 0x14, 0xa5, 0x8f, 0xb2, 0x9c, 0xff, 0xf0, 0x83, 0xff, 0x6e, 0x73, 0xff, 0x2d, 0x6b, 0xff, 0x2d, 0x63, 0xff, 0x0d, 0x63, 0xff, 0x0c, 0x63, 0xff, 0x2d, 0x63, 0xff, 0x2d, 0x63, 0xff, 0x2d, 0x63, 0xff, 0x2d, 0x63, 0xff, 0x2d, 0x63, 0xff, 0x2d, 0x6b, 0xff, 0x2d, 0x6b, 0xff, 0x4d, 0x6b, 0xff, 0x4d, 0x6b, 0xff, 0x4d, 0x6b, 0xff, 0x4d, 0x6b, 0xff, 0x4d, 0x6b, 0xff, 0x4d, 0x6b, 0xff, 0x4d, 0x6b, 0xff, 0x4d, 0x6b, 0xff, 0x6d, 0x6b, 0xff, 0x6e, 0x6b, 0xff, 0x6e, 0x6b, 0xff, 0x6e, 0x6b, 0xff, 0x6e, 0x6b, 0xff, 0x6e, 0x6b, 0xff, 0x6e, 0x6b, 0xff, 0x6e, 0x73, 0xff, 0x6e, 0x73, 0xff, 0x8e, 0x73, 0xff, 0x8e, 0x73, 0xff, 0x8e, 0x73, 0xff, 0x8e, 0x73, 0xff, 0x8e, 0x73, 0xff, 0xaf, 0x73, 0xff, 0xaf, 0x73, 0xff, 0xaf, 0x73, 0xff, 0xaf, 0x73, 0xff, 0xaf, 0x73, 0xff, 0xaf, 0x73, 0xff, 0xaf, 0x7b, 0xff, 0xcf, 0x7b, 0xff, 0xcf, 0x7b, 0xff, 0xcf, 0x7b, 0xff, 0xcf, 0x7b, 0xff, 0xcf, 0x7b, 0xff, 0xcf, 0x7b, 0xff, 0xcf, 0x7b, 0xff, 0xcf, 0x7b, 0xff, 0xcf, 0x7b, 0xff, 0xd0, 0x7b, 0xff, 0xf0, 0x7b, 0xff, 0xf0, 0x7b, 0xff, 0xf0, 0x7b, 0xff, 0xf0, 0x83, 0xff, 0xf0, 0x83, 0xff, 0xf0, 0x83, 0xff, 0x10, 0x84, 0xff, 0x10, 0x84, 0xff, 0x10, 0x84, 0xff, 0x10, 0x84, 0xff, 0x10, 0x84, 0xff, 0x10, 0x84, 0xff, 0x31, 0x84, 0xff, 0x31, 0x84, 0xff, 0x31, 0x84, 0xff, 0x31, 0x84, 0xff, 0x31, 0x84, 0xff, 0x31, 0x84, 0xff, 0x31, 0x8c, 0xff, 0x31, 0x8c, 0xff, 0x51, 0x8c, 0xff, 0x51, 0x8c, 0xff, 0x51, 0x8c, 0xff, 0x51, 0x8c, 0xff, 0x51, 0x8c, 0xff, 0x51, 0x8c, 0xff, 0x51, 0x8c, 0xff, 0x72, 0x8c, 0xff, 0x72, 0x8c, 0xff, 0x72, 0x8c, 0xff, 0x72, 0x8c, 0xff, 0x72, 0x8c, 0xff, 0x72, 0x94, 0xff, 0x72, 0x94, 0xff, 0x72, 0x94, 0xff, 0x72, 0x94, 0xff, 0x92, 0x94, 0xff, 0x92, 0x94, 0xff, 0x92, 0x94, 0xff, 0x92, 0x94, 0xff, 0x92, 0x94, 0xff, 0x92, 0x94, 0xff, 0xb3, 0x94, 0xff, 0xb3, 0x94, 0xff, 0xb3, 0x94, 0xff, 0xb3, 0x94, 0xff, 0xb3, 0x94, 0xff, 0xb3, 0x94, 0xff, 0xb3, 0x9c, 0xff, 0xd3, 0x9c, 0xff, 0xd3, 0x9c, 0xff, 0xd3, 0x9c, 0xff, 0xd3, 0x9c, 0xff, 0xd3, 0x9c, 0xff, 0xd3, 0x9c, 0xff, 0xd3, 0x9c, 0xff, 0xf4, 0x9c, 0xff, 0x55, 0xad, 0xff, 0xb7, 0xb5, 0xff, 0xd7, 0xbd, 0xff, 0xd7, 0xbd, 0xff, 0x76, 0xad, 0x97, 0xb2, 0x94, 0x2b, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x38, 0xc6, 0x6c, 0x14, 0xa5, 0xff, 0x8e, 0x73, 0xff, 0x2d, 0x6b, 0xff, 0x2d, 0x63, 0xff, 0x2d, 0x63, 0xff, 0x2d, 0x6b, 0xff, 0x2d, 0x6b, 0xff, 0x2d, 0x6b, 0xff, 0x4d, 0x6b, 0xff, 0x4d, 0x6b, 0xff, 0x4d, 0x6b, 0xff, 0x4d, 0x6b, 0xff, 0x4d, 0x6b, 0xff, 0x4d, 0x6b, 0xff, 0x6d, 0x6b, 0xff, 0x6d, 0x6b, 0xff, 0x6e, 0x6b, 0xff, 0x6e, 0x6b, 0xff, 0x6e, 0x6b, 0xff, 0x6e, 0x6b, 0xff, 0x6e, 0x73, 0xff, 0x8e, 0x73, 0xff, 0x8e, 0x73, 0xff, 0x8e, 0x73, 0xff, 0x8e, 0x73, 0xff, 0x8e, 0x73, 0xff, 0x8e, 0x73, 0xff, 0x8e, 0x73, 0xff, 0xae, 0x73, 0xff, 0xaf, 0x73, 0xff, 0xaf, 0x73, 0xff, 0xaf, 0x7b, 0xff, 0xcf, 0x7b, 0xff, 0xcf, 0x7b, 0xff, 0xcf, 0x7b, 0xff, 0xcf, 0x7b, 0xff, 0xcf, 0x7b, 0xff, 0xcf, 0x7b, 0xff, 0xcf, 0x7b, 0xff, 0xef, 0x7b, 0xff, 0xf0, 0x7b, 0xff, 0xf0, 0x7b, 0xff, 0xf0, 0x83, 0xff, 0x10, 0x84, 0xff, 0x10, 0x84, 0xff, 0x10, 0x84, 0xff, 0x10, 0x84, 0xff, 0x10, 0x84, 0xff, 0x10, 0x84, 0xff, 0x30, 0x84, 0xff, 0x30, 0x84, 0xff, 0x31, 0x84, 0xff, 0x31, 0x84, 0xff, 0x31, 0x8c, 0xff, 0x51, 0x8c, 0xff, 0x51, 0x8c, 0xff, 0x51, 0x8c, 0xff, 0x51, 0x8c, 0xff, 0x51, 0x8c, 0xff, 0x71, 0x8c, 0xff, 0x72, 0x8c, 0xff, 0x72, 0x8c, 0xff, 0x72, 0x8c, 0xff, 0x72, 0x94, 0xff, 0x72, 0x94, 0xff, 0x92, 0x94, 0xff, 0x92, 0x94, 0xff, 0x92, 0x94, 0xff, 0x92, 0x94, 0xff, 0x92, 0x94, 0xff, 0x92, 0x94, 0xff, 0x92, 0x94, 0xff, 0xb3, 0x94, 0xff, 0xb3, 0x94, 0xff, 0xb3, 0x94, 0xff, 0xb3, 0x9c, 0xff, 0xd3, 0x9c, 0xff, 0xd3, 0x9c, 0xff, 0xd3, 0x9c, 0xff, 0xd3, 0x9c, 0xff, 0xd3, 0x9c, 0xff, 0xf4, 0x9c, 0xff, 0xf4, 0x9c, 0xff, 0xf4, 0x9c, 0xff, 0xf4, 0x9c, 0xff, 0xf4, 0x9c, 0xff, 0xf4, 0xa4, 0xff, 0xf4, 0xa4, 0xff, 0xf4, 0xa4, 0xff, 0x14, 0xa5, 0xff, 0x14, 0xa5, 0xff, 0x14, 0xa5, 0xff, 0x14, 0xa5, 0xff, 0x14, 0xa5, 0xff, 0x35, 0xa5, 0xff, 0x35, 0xa5, 0xff, 0x35, 0xa5, 0xff, 0x35, 0xa5, 0xff, 0x35, 0xa5, 0xff, 0x35, 0xad, 0xff, 0x35, 0xad, 0xff, 0x55, 0xad, 0xff, 0x55, 0xad, 0xff, 0x55, 0xad, 0xff, 0x55, 0xad, 0xff, 0x55, 0xad, 0xff, 0x76, 0xad, 0xff, 0x76, 0xad, 0xff, 0x76, 0xad, 0xff, 0x76, 0xad, 0xff, 0x55, 0xad, 0xff, 0x35, 0xa5, 0xff, 0x35, 0xad, 0xff, 0xd7, 0xbd, 0xff, 0x18, 0xc6, 0x4c, 0x00, 0x00, 0x00, 0x7d, 0xef, 0x04, +#endif +#if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP != 0 + /*Pixel format: Alpha 8 bit, Red: 5 bit, Green: 6 bit, Blue: 5 bit BUT the 2 color bytes are swapped*/ + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0xdb, 0x68, 0xc6, 0x18, 0xff, 0xad, 0x35, 0xff, 0xa5, 0x14, 0xff, 0xa5, 0x34, 0xff, 0xa5, 0x14, 0xff, 0xa5, 0x14, 0xff, 0xa5, 0x14, 0xff, 0xa5, 0x14, 0xff, 0xa5, 0x14, 0xff, 0xa5, 0x14, 0xff, 0xa4, 0xf4, 0xff, 0xa4, 0xf4, 0xff, 0xa4, 0xf4, 0xff, 0x9c, 0xf3, 0xff, 0x9c, 0xf3, 0xff, 0x9c, 0xf3, 0xff, 0x9c, 0xd3, 0xff, 0x9c, 0xd3, 0xff, 0x9c, 0xd3, 0xff, 0x9c, 0xd3, 0xff, 0x9c, 0xb3, 0xff, 0x9c, 0xd3, 0xff, 0x9c, 0xb3, 0xff, 0x9c, 0xd3, 0xff, 0x9c, 0xd3, 0xff, 0x9c, 0xd3, 0xff, 0x9c, 0xf3, 0xff, 0x9c, 0xf3, 0xff, 0xa4, 0xf4, 0xff, 0xa4, 0xf4, 0xff, 0xa5, 0x14, 0xff, 0xa5, 0x14, 0xff, 0xa5, 0x14, 0xff, 0xa5, 0x14, 0xff, 0xa5, 0x34, 0xff, 0xad, 0x35, 0xff, 0xad, 0x35, 0xff, 0xad, 0x55, 0xff, 0xad, 0x55, 0xff, 0xad, 0x55, 0xff, 0xad, 0x55, 0xff, 0xad, 0x75, 0xff, 0xad, 0x75, 0xff, 0xb5, 0x76, 0xff, 0xb5, 0x76, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0xb6, 0xff, 0xbd, 0xb7, 0xff, 0xbd, 0xb7, 0xff, 0xbd, 0xd7, 0xff, 0xbd, 0xd7, 0xff, 0xbd, 0xd7, 0xff, 0xbd, 0xd7, 0xff, 0xbd, 0xd7, 0xff, 0xbd, 0xd7, 0xff, 0xbd, 0xd7, 0xff, 0xbd, 0xd7, 0xff, 0xbd, 0xd7, 0xff, 0xbd, 0xd7, 0xff, 0xbd, 0xf7, 0xff, 0xbd, 0xf7, 0xff, 0xbd, 0xf7, 0xff, 0xbd, 0xf7, 0xff, 0xbd, 0xf7, 0xff, 0xbd, 0xf7, 0xff, 0xbd, 0xf7, 0xff, 0xbd, 0xf7, 0xff, 0xbd, 0xf7, 0xff, 0xc5, 0xf8, 0xff, 0xc5, 0xf8, 0xff, 0xbd, 0xf7, 0xff, 0xbd, 0xf7, 0xff, 0xbd, 0xf7, 0xff, 0xbd, 0xd7, 0xff, 0xbd, 0xd7, 0xff, 0xbd, 0xd7, 0xff, 0xbd, 0xb7, 0xff, 0xbd, 0xb7, 0xff, 0xbd, 0xb7, 0xff, 0xb5, 0xb6, 0xff, 0xb5, 0xb6, 0xff, 0xb5, 0xb6, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0x76, 0xff, 0xb5, 0x76, 0xff, 0xb5, 0x76, 0xff, 0xad, 0x75, 0xff, 0xad, 0x75, 0xff, 0xad, 0x75, 0xff, 0xad, 0x55, 0xff, 0xad, 0x55, 0xff, 0xad, 0x55, 0xff, 0xad, 0x55, 0xff, 0xad, 0x55, 0xff, 0xad, 0x75, 0xff, 0xad, 0x75, 0xff, 0xb5, 0x76, 0xff, 0xb5, 0x76, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0xb6, 0xff, 0xb5, 0x96, 0xff, 0xad, 0x55, 0xff, 0xad, 0x55, 0xff, 0xd6, 0x9a, 0xff, 0xe7, 0x1c, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xc6, 0x18, 0x3f, 0xc6, 0x38, 0xa7, 0xce, 0x39, 0xff, 0xc6, 0x18, 0xff, 0xc6, 0x18, 0xff, 0xc6, 0x18, 0xff, 0xc6, 0x38, 0xff, 0xc6, 0x38, 0xff, 0xc6, 0x38, 0xff, 0xc6, 0x18, 0xff, 0xc6, 0x18, 0xff, 0xc6, 0x18, 0xff, 0xc6, 0x18, 0xff, 0xc5, 0xf8, 0xff, 0xc5, 0xf8, 0xff, 0xbd, 0xf7, 0xff, 0xbd, 0xf7, 0xff, 0xbd, 0xd7, 0xff, 0xbd, 0xd7, 0xff, 0xbd, 0xd7, 0xff, 0xbd, 0xd7, 0xff, 0xbd, 0xb7, 0xff, 0xbd, 0xb7, 0xff, 0xbd, 0xb7, 0xff, 0xbd, 0xb6, 0xff, 0xbd, 0xb7, 0xff, 0xbd, 0xd7, 0xff, 0xbd, 0xd7, 0xff, 0xbd, 0xd7, 0xff, 0xbd, 0xf7, 0xff, 0xbd, 0xf7, 0xff, 0xc5, 0xf8, 0xff, 0xc6, 0x18, 0xff, 0xc6, 0x18, 0xff, 0xc6, 0x18, 0xff, 0xc6, 0x18, 0xff, 0xc6, 0x38, 0xff, 0xce, 0x38, 0xff, 0xce, 0x39, 0xff, 0xce, 0x39, 0xff, 0xce, 0x59, 0xff, 0xce, 0x59, 0xff, 0xce, 0x59, 0xff, 0xce, 0x79, 0xff, 0xd6, 0x79, 0xff, 0xd6, 0x7a, 0xff, 0xd6, 0x9a, 0xff, 0xd6, 0x9a, 0xff, 0xd6, 0x9a, 0xff, 0xd6, 0x9a, 0xff, 0xd6, 0x9a, 0xff, 0xd6, 0xba, 0xff, 0xd6, 0xba, 0xff, 0xde, 0xba, 0xff, 0xde, 0xba, 0xff, 0xde, 0xbb, 0xff, 0xde, 0xbb, 0xff, 0xde, 0xbb, 0xff, 0xde, 0xdb, 0xff, 0xde, 0xdb, 0xff, 0xde, 0xdb, 0xff, 0xde, 0xdb, 0xff, 0xde, 0xdb, 0xff, 0xde, 0xdb, 0xff, 0xde, 0xdb, 0xff, 0xde, 0xdb, 0xff, 0xde, 0xdb, 0xff, 0xde, 0xdb, 0xff, 0xde, 0xdb, 0xff, 0xde, 0xdb, 0xff, 0xde, 0xdb, 0xff, 0xde, 0xdb, 0xff, 0xde, 0xdb, 0xff, 0xde, 0xdb, 0xff, 0xde, 0xdb, 0xff, 0xde, 0xdb, 0xff, 0xde, 0xdb, 0xff, 0xde, 0xdb, 0xff, 0xde, 0xdb, 0xff, 0xde, 0xdb, 0xff, 0xde, 0xbb, 0xff, 0xd6, 0xba, 0xff, 0xd6, 0x9a, 0xff, 0xd6, 0x9a, 0xff, 0xd6, 0x9a, 0xff, 0xd6, 0x9a, 0xff, 0xd6, 0x7a, 0xff, 0xd6, 0x7a, 0xff, 0xd6, 0x7a, 0xff, 0xce, 0x79, 0xff, 0xce, 0x59, 0xff, 0xce, 0x59, 0xff, 0xce, 0x59, 0xff, 0xce, 0x59, 0xff, 0xce, 0x39, 0xff, 0xce, 0x38, 0xff, 0xc6, 0x38, 0xff, 0xc6, 0x38, 0xff, 0xc6, 0x18, 0xff, 0xc6, 0x18, 0xff, 0xc6, 0x18, 0xff, 0xc6, 0x18, 0xff, 0xc6, 0x38, 0xff, 0xc6, 0x38, 0xff, 0xce, 0x39, 0xff, 0xce, 0x39, 0xff, 0xce, 0x59, 0xff, 0xce, 0x59, 0xff, 0xce, 0x59, 0xff, 0xce, 0x59, 0xff, 0xce, 0x79, 0xff, 0xce, 0x79, 0xff, 0xce, 0x59, 0xff, 0xc6, 0x18, 0xff, 0xc6, 0x18, 0xff, 0xce, 0x59, 0xff, 0xc6, 0x18, 0x94, 0xb5, 0x96, 0x2c, 0xff, 0xff, 0x04, + 0xff, 0xff, 0x14, 0xb5, 0xb6, 0xac, 0xbd, 0xd7, 0xff, 0xd6, 0x9a, 0xff, 0xef, 0x7d, 0xff, 0xf7, 0x7e, 0xff, 0xf7, 0x7d, 0xff, 0xf7, 0x9e, 0xff, 0xf7, 0x9e, 0xff, 0xf7, 0x9e, 0xff, 0xf7, 0x9e, 0xff, 0xf7, 0x7e, 0xff, 0xef, 0x7d, 0xff, 0xef, 0x7d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0xff, 0xef, 0x3d, 0xff, 0xef, 0x3d, 0xff, 0xe7, 0x1c, 0xff, 0xe7, 0x1c, 0xff, 0xe7, 0x1c, 0xff, 0xe7, 0x1c, 0xff, 0xe6, 0xfc, 0xff, 0xe6, 0xfc, 0xff, 0xe7, 0x1c, 0xff, 0xe7, 0x1c, 0xff, 0xe7, 0x3c, 0xff, 0xe7, 0x3c, 0xff, 0xef, 0x3d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x7d, 0xff, 0xf7, 0x7d, 0xff, 0xf7, 0x7e, 0xff, 0xf7, 0x9e, 0xff, 0xf7, 0x9e, 0xff, 0xf7, 0x9e, 0xff, 0xf7, 0xbe, 0xff, 0xff, 0xbf, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xbf, 0xff, 0xf7, 0xbe, 0xff, 0xf7, 0x9e, 0xff, 0xf7, 0x9e, 0xff, 0xf7, 0x9e, 0xff, 0xf7, 0x7e, 0xff, 0xef, 0x7d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0xff, 0xef, 0x3c, 0xff, 0xe7, 0x1c, 0xff, 0xe7, 0x1c, 0xff, 0xe7, 0x1c, 0xff, 0xe7, 0x1c, 0xff, 0xe7, 0x1c, 0xff, 0xe7, 0x1c, 0xff, 0xe7, 0x3c, 0xff, 0xe7, 0x3c, 0xff, 0xef, 0x3c, 0xff, 0xef, 0x3d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xe7, 0x3c, 0xff, 0xc6, 0x18, 0xff, 0xb5, 0xb6, 0xff, 0xbd, 0xd7, 0xaf, 0xff, 0xff, 0x20, + 0xd6, 0x9a, 0x93, 0xc5, 0xf8, 0xe4, 0xce, 0x39, 0xff, 0xe7, 0x3c, 0xff, 0xf7, 0x9e, 0xff, 0xff, 0xff, 0xff, 0xef, 0x9e, 0xff, 0xce, 0x9a, 0xff, 0xbe, 0x19, 0xff, 0xb5, 0xf8, 0xff, 0xbe, 0x18, 0xff, 0xb5, 0xf8, 0xff, 0xb5, 0xf8, 0xff, 0xb5, 0xf8, 0xff, 0xb5, 0xf8, 0xff, 0xb5, 0xf8, 0xff, 0xb5, 0xf8, 0xff, 0xb5, 0xf8, 0xff, 0xb5, 0xd8, 0xff, 0xb5, 0xd8, 0xff, 0xb5, 0xd8, 0xff, 0xb5, 0xd8, 0xff, 0xb5, 0xd8, 0xff, 0xb5, 0xd8, 0xff, 0xb5, 0xd7, 0xff, 0xb5, 0xd8, 0xff, 0xb5, 0xf8, 0xff, 0xbd, 0xf8, 0xff, 0xbe, 0x19, 0xff, 0xbe, 0x19, 0xff, 0xbe, 0x39, 0xff, 0xc6, 0x39, 0xff, 0xc6, 0x5a, 0xff, 0xc6, 0x7a, 0xff, 0xc6, 0x7a, 0xff, 0xce, 0x9a, 0xff, 0xce, 0x9b, 0xff, 0xce, 0xbb, 0xff, 0xd6, 0xdb, 0xff, 0xd6, 0xdc, 0xff, 0xd6, 0xfc, 0xff, 0xde, 0xfc, 0xff, 0xdf, 0x1d, 0xff, 0xdf, 0x3d, 0xff, 0xdf, 0x3d, 0xff, 0xe7, 0x5e, 0xff, 0xe7, 0x7e, 0xff, 0xe7, 0x7e, 0xff, 0xe7, 0x5e, 0xff, 0xe7, 0x5e, 0xff, 0xe7, 0x5e, 0xff, 0xe7, 0x3d, 0xff, 0xdf, 0x3d, 0xff, 0xdf, 0x3d, 0xff, 0xdf, 0x3d, 0xff, 0xdf, 0x1d, 0xff, 0xdf, 0x1d, 0xff, 0xdf, 0x1c, 0xff, 0xde, 0xfc, 0xff, 0xd6, 0xfc, 0xff, 0xd6, 0xfc, 0xff, 0xd6, 0xfc, 0xff, 0xd6, 0xdc, 0xff, 0xd6, 0xdc, 0xff, 0xd6, 0xdc, 0xff, 0xd6, 0xdb, 0xff, 0xd6, 0xdb, 0xff, 0xd6, 0xbb, 0xff, 0xce, 0xbb, 0xff, 0xce, 0xbb, 0xff, 0xce, 0xbb, 0xff, 0xce, 0xbb, 0xff, 0xce, 0xbb, 0xff, 0xce, 0x9b, 0xff, 0xce, 0x9b, 0xff, 0xce, 0x9b, 0xff, 0xce, 0x7a, 0xff, 0xc6, 0x7a, 0xff, 0xc6, 0x7a, 0xff, 0xc6, 0x7a, 0xff, 0xc6, 0x7a, 0xff, 0xc6, 0x5a, 0xff, 0xc6, 0x59, 0xff, 0xc6, 0x39, 0xff, 0xbe, 0x39, 0xff, 0xbe, 0x39, 0xff, 0xbe, 0x39, 0xff, 0xbe, 0x18, 0xff, 0xbe, 0x18, 0xff, 0xb5, 0xf8, 0xff, 0xb5, 0xf8, 0xff, 0xb5, 0xf8, 0xff, 0xb5, 0xd8, 0xff, 0xb5, 0xd7, 0xff, 0xb5, 0xb7, 0xff, 0xad, 0xb7, 0xff, 0xad, 0xb7, 0xff, 0xad, 0x97, 0xff, 0xad, 0x96, 0xff, 0xad, 0x96, 0xff, 0xad, 0x96, 0xff, 0xad, 0x76, 0xff, 0xad, 0x96, 0xff, 0xad, 0x96, 0xff, 0xad, 0x97, 0xff, 0xad, 0x97, 0xff, 0xad, 0x97, 0xff, 0xad, 0xb7, 0xff, 0xad, 0xb7, 0xff, 0xb5, 0xb7, 0xff, 0xb5, 0xb7, 0xff, 0xb5, 0xd8, 0xff, 0xbe, 0x59, 0xff, 0xe7, 0x3d, 0xff, 0xf7, 0xbf, 0xff, 0xf7, 0x7d, 0xff, 0xde, 0xba, 0xff, 0xc6, 0x18, 0xff, 0xc5, 0xf8, 0xe8, 0xce, 0x7a, 0x98, + 0xc6, 0x18, 0xff, 0xce, 0x59, 0xff, 0xe6, 0xfc, 0xff, 0xf7, 0xbe, 0xff, 0xf7, 0x7e, 0xff, 0xef, 0x5d, 0xff, 0xce, 0x79, 0xff, 0x9c, 0xd3, 0xff, 0x84, 0x31, 0xff, 0x84, 0x30, 0xff, 0x8c, 0x30, 0xff, 0x84, 0x30, 0xff, 0x84, 0x30, 0xff, 0x84, 0x31, 0xff, 0x84, 0x31, 0xff, 0x8c, 0x31, 0xff, 0x8c, 0x31, 0xff, 0x8c, 0x31, 0xff, 0x8c, 0x31, 0xff, 0x8c, 0x31, 0xff, 0x8c, 0x31, 0xff, 0x8c, 0x51, 0xff, 0x8c, 0x51, 0xff, 0x8c, 0x51, 0xff, 0x8c, 0x51, 0xff, 0x8c, 0x51, 0xff, 0x94, 0x72, 0xff, 0x94, 0x92, 0xff, 0x94, 0x92, 0xff, 0x94, 0xb3, 0xff, 0x9c, 0xb3, 0xff, 0x9c, 0xd3, 0xff, 0x9c, 0xf3, 0xff, 0xa4, 0xf4, 0xff, 0xa5, 0x14, 0xff, 0xa5, 0x35, 0xff, 0xad, 0x35, 0xff, 0xad, 0x55, 0xff, 0xb5, 0x76, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0x96, 0xff, 0xbd, 0xb7, 0xff, 0xbd, 0xd7, 0xff, 0xbd, 0xd8, 0xff, 0xc5, 0xf8, 0xff, 0xc6, 0x18, 0xff, 0xc6, 0x39, 0xff, 0xc6, 0x19, 0xff, 0xc6, 0x18, 0xff, 0xc6, 0x18, 0xff, 0xc5, 0xf8, 0xff, 0xbd, 0xd8, 0xff, 0xbd, 0xd7, 0xff, 0xbd, 0xd7, 0xff, 0xbd, 0xb7, 0xff, 0xbd, 0xb7, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0x96, 0xff, 0xb5, 0x76, 0xff, 0xb5, 0x76, 0xff, 0xad, 0x55, 0xff, 0xad, 0x55, 0xff, 0xad, 0x55, 0xff, 0xad, 0x35, 0xff, 0xad, 0x35, 0xff, 0xa5, 0x34, 0xff, 0xa5, 0x14, 0xff, 0xa5, 0x14, 0xff, 0xa4, 0xf4, 0xff, 0xa4, 0xf4, 0xff, 0xa4, 0xf4, 0xff, 0x9c, 0xf3, 0xff, 0x9c, 0xd3, 0xff, 0x9c, 0xd3, 0xff, 0x9c, 0xb3, 0xff, 0x9c, 0xb3, 0xff, 0x94, 0x92, 0xff, 0x94, 0x92, 0xff, 0x94, 0x92, 0xff, 0x94, 0x92, 0xff, 0x94, 0x72, 0xff, 0x94, 0x72, 0xff, 0x8c, 0x71, 0xff, 0x8c, 0x51, 0xff, 0x8c, 0x51, 0xff, 0x8c, 0x51, 0xff, 0x8c, 0x51, 0xff, 0x8c, 0x31, 0xff, 0x8c, 0x30, 0xff, 0x84, 0x30, 0xff, 0x84, 0x30, 0xff, 0x84, 0x10, 0xff, 0x84, 0x10, 0xff, 0x83, 0xf0, 0xff, 0x83, 0xf0, 0xff, 0x83, 0xef, 0xff, 0x83, 0xef, 0xff, 0x83, 0xef, 0xff, 0x83, 0xcf, 0xff, 0x7b, 0xcf, 0xff, 0x7b, 0xcf, 0xff, 0x7b, 0xcf, 0xff, 0x83, 0xcf, 0xff, 0x83, 0xcf, 0xff, 0x83, 0xef, 0xff, 0x83, 0xef, 0xff, 0x83, 0xef, 0xff, 0x83, 0xef, 0xff, 0x83, 0xf0, 0xff, 0x83, 0xf0, 0xff, 0x83, 0xf0, 0xff, 0x84, 0x10, 0xff, 0x94, 0x92, 0xff, 0xc6, 0x18, 0xff, 0xe7, 0x1c, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xd6, 0xbb, 0xff, 0xc6, 0x39, 0xff, 0xc5, 0xf8, 0xff, + 0xad, 0x55, 0xff, 0xd6, 0xba, 0xff, 0xf7, 0x9e, 0xff, 0xf7, 0x9e, 0xff, 0xf7, 0x9e, 0xff, 0x94, 0xb3, 0xff, 0x72, 0xcb, 0xff, 0xab, 0x29, 0xff, 0xc3, 0xcc, 0xff, 0xcc, 0x0d, 0xff, 0xcc, 0x0d, 0xff, 0xcb, 0xed, 0xff, 0xcc, 0x0d, 0xff, 0xcc, 0x0d, 0xff, 0xcc, 0x0d, 0xff, 0xcc, 0x0d, 0xff, 0xcc, 0x0d, 0xff, 0xcc, 0x0d, 0xff, 0xcc, 0x0d, 0xff, 0xcc, 0x0d, 0xff, 0xcc, 0x0d, 0xff, 0xcc, 0x0d, 0xff, 0xcc, 0x0d, 0xff, 0xcc, 0x0d, 0xff, 0xcc, 0x0d, 0xff, 0xcc, 0x0d, 0xff, 0xcc, 0x2d, 0xff, 0xcc, 0x2d, 0xff, 0xd4, 0x2d, 0xff, 0xd4, 0x2e, 0xff, 0xd4, 0x4e, 0xff, 0xd4, 0x4e, 0xff, 0xd4, 0x4e, 0xff, 0xd4, 0x6e, 0xff, 0xd4, 0x6e, 0xff, 0xd4, 0x6e, 0xff, 0xdc, 0x6e, 0xff, 0xdc, 0x8f, 0xff, 0xdc, 0x8f, 0xff, 0xdc, 0x8f, 0xff, 0xdc, 0xaf, 0xff, 0xe4, 0xaf, 0xff, 0xe4, 0xaf, 0xff, 0xe4, 0xb0, 0xff, 0xe4, 0xb0, 0xff, 0xe4, 0xd0, 0xff, 0xe4, 0xd0, 0xff, 0xe4, 0xd0, 0xff, 0xe4, 0xd0, 0xff, 0xe4, 0xd0, 0xff, 0xe4, 0xd0, 0xff, 0xe4, 0xb0, 0xff, 0xe4, 0xb0, 0xff, 0xe4, 0xaf, 0xff, 0xdc, 0xaf, 0xff, 0xdc, 0xaf, 0xff, 0xdc, 0x8f, 0xff, 0xdc, 0x8f, 0xff, 0xdc, 0x8f, 0xff, 0xdc, 0x8f, 0xff, 0xdc, 0x8f, 0xff, 0xdc, 0x6f, 0xff, 0xdc, 0x6e, 0xff, 0xdc, 0x6e, 0xff, 0xd4, 0x6e, 0xff, 0xd4, 0x6e, 0xff, 0xd4, 0x4e, 0xff, 0xd4, 0x4e, 0xff, 0xd4, 0x4e, 0xff, 0xd4, 0x4e, 0xff, 0xd4, 0x4e, 0xff, 0xd4, 0x4e, 0xff, 0xd4, 0x4e, 0xff, 0xd4, 0x4e, 0xff, 0xd4, 0x2e, 0xff, 0xcc, 0x2e, 0xff, 0xcc, 0x2d, 0xff, 0xcc, 0x2d, 0xff, 0xcc, 0x2d, 0xff, 0xcc, 0x2d, 0xff, 0xcc, 0x2d, 0xff, 0xcc, 0x0d, 0xff, 0xcc, 0x0d, 0xff, 0xcc, 0x0d, 0xff, 0xcc, 0x0d, 0xff, 0xcc, 0x0d, 0xff, 0xcc, 0x0d, 0xff, 0xcc, 0x0d, 0xff, 0xcc, 0x0d, 0xff, 0xcc, 0x0d, 0xff, 0xcb, 0xed, 0xff, 0xcb, 0xec, 0xff, 0xc3, 0xec, 0xff, 0xcb, 0xec, 0xff, 0xcb, 0xec, 0xff, 0xc3, 0xec, 0xff, 0xc3, 0xec, 0xff, 0xc3, 0xec, 0xff, 0xc3, 0xec, 0xff, 0xc3, 0xcc, 0xff, 0xc3, 0xec, 0xff, 0xc3, 0xec, 0xff, 0xc3, 0xcc, 0xff, 0xc3, 0xec, 0xff, 0xc3, 0xec, 0xff, 0xc3, 0xec, 0xff, 0xc3, 0xec, 0xff, 0xc3, 0xec, 0xff, 0xc3, 0xec, 0xff, 0xcb, 0xec, 0xff, 0xc3, 0xec, 0xff, 0xbb, 0xcb, 0xff, 0xab, 0x09, 0xff, 0x83, 0x0b, 0xff, 0x9c, 0xb2, 0xff, 0xe7, 0x1c, 0xff, 0xef, 0x5d, 0xff, 0xe7, 0x1c, 0xff, 0xce, 0x7a, 0xff, 0xb5, 0x96, 0xff, + 0xa5, 0x14, 0xff, 0xde, 0xdb, 0xff, 0xff, 0xff, 0xff, 0xef, 0x7d, 0xff, 0xc6, 0x38, 0xff, 0x72, 0xeb, 0xff, 0x71, 0xa4, 0xff, 0xcb, 0x27, 0xff, 0xf4, 0x2b, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xf4, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xf4, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6d, 0xff, 0xfc, 0x6d, 0xff, 0xfc, 0x6d, 0xff, 0xfc, 0x6d, 0xff, 0xfc, 0x6d, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xf4, 0x6c, 0xff, 0xf4, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xf4, 0x6c, 0xff, 0xf4, 0x6c, 0xff, 0xf4, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xfc, 0x6c, 0xff, 0xec, 0x2b, 0xff, 0xcb, 0x27, 0xff, 0x81, 0xe5, 0xff, 0x7b, 0x0b, 0xff, 0xc5, 0xf8, 0xff, 0xe7, 0x1c, 0xff, 0xef, 0x5d, 0xff, 0xd6, 0x9a, 0xff, 0xad, 0x75, 0xff, + 0xa5, 0x34, 0xff, 0xde, 0xdb, 0xff, 0xff, 0xff, 0xff, 0xe7, 0x3d, 0xff, 0x62, 0xeb, 0xff, 0x9a, 0xa7, 0xff, 0xe3, 0xea, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x0f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x30, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x2f, 0xff, 0xfd, 0x30, 0xff, 0xfd, 0x0f, 0xff, 0xd3, 0x89, 0xff, 0x9a, 0xc8, 0xff, 0x83, 0xce, 0xff, 0xde, 0xdb, 0xff, 0xef, 0x7e, 0xff, 0xd6, 0xba, 0xff, 0xb5, 0x96, 0xff, + 0xad, 0x35, 0xff, 0xe6, 0xfc, 0xff, 0xff, 0xdf, 0xff, 0xce, 0x59, 0xff, 0x6a, 0x06, 0xff, 0xc3, 0x47, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0xb0, 0xff, 0xfd, 0x6f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x6f, 0xff, 0xfd, 0x6f, 0xff, 0xfd, 0x6f, 0xff, 0xfd, 0x6f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x50, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x50, 0xff, 0xfd, 0x50, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x6f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x4f, 0xff, 0xfd, 0x70, 0xff, 0xfd, 0x70, 0xff, 0xfd, 0x90, 0xff, 0xfc, 0xcd, 0xff, 0xbb, 0x28, 0xff, 0x72, 0x68, 0xff, 0xd6, 0x9a, 0xff, 0xef, 0x7e, 0xff, 0xd6, 0xba, 0xff, 0xb5, 0x96, 0xff, + 0xad, 0x55, 0xff, 0xe7, 0x1c, 0xff, 0xe7, 0x5d, 0xff, 0xa5, 0x34, 0xff, 0xaa, 0xc7, 0xff, 0xe4, 0x4b, 0xff, 0xfd, 0x6f, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x6f, 0xff, 0xcb, 0xc9, 0xff, 0x71, 0xe5, 0xff, 0xd6, 0x39, 0xff, 0xef, 0x7e, 0xff, 0xde, 0xbb, 0xff, 0xb5, 0x96, 0xff, + 0xad, 0x55, 0xff, 0xef, 0x3c, 0xff, 0xdf, 0x1c, 0xff, 0x9c, 0xb2, 0xff, 0xcb, 0x88, 0xff, 0xf4, 0xac, 0xff, 0xfd, 0x6e, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x2e, 0xff, 0xfd, 0x8f, 0xff, 0xdc, 0x0a, 0xff, 0x92, 0x44, 0xff, 0xcd, 0xf7, 0xff, 0xef, 0x5d, 0xff, 0xde, 0xdb, 0xff, 0xb5, 0x96, 0xff, + 0xad, 0x55, 0xff, 0xef, 0x3c, 0xff, 0xde, 0xfc, 0xff, 0x94, 0x92, 0xff, 0xdc, 0x2a, 0xff, 0xfc, 0xcb, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x0d, 0xff, 0xfd, 0x6e, 0xff, 0xe4, 0x4a, 0xff, 0xa2, 0xc5, 0xff, 0xc5, 0xb6, 0xff, 0xe7, 0x3d, 0xff, 0xde, 0xdb, 0xff, 0xb5, 0x96, 0xff, + 0xad, 0x55, 0xff, 0xef, 0x3c, 0xff, 0xde, 0xfc, 0xff, 0x94, 0x92, 0xff, 0xdc, 0x2a, 0xff, 0xfc, 0xcb, 0xff, 0xfd, 0x2d, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x4d, 0xff, 0xe4, 0x29, 0xff, 0xaa, 0xe6, 0xff, 0xc5, 0xd6, 0xff, 0xe7, 0x3d, 0xff, 0xde, 0xdb, 0xff, 0xb5, 0x96, 0xff, + 0xad, 0x55, 0xff, 0xef, 0x3c, 0xff, 0xde, 0xfc, 0xff, 0x9c, 0xb3, 0xff, 0xdc, 0x29, 0xff, 0xfc, 0xaa, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x0c, 0xff, 0xfd, 0x4d, 0xff, 0xe4, 0x29, 0xff, 0xaa, 0xe6, 0xff, 0xcd, 0xd7, 0xff, 0xe7, 0x3d, 0xff, 0xde, 0xdb, 0xff, 0xb5, 0x96, 0xff, + 0xad, 0x55, 0xff, 0xef, 0x3c, 0xff, 0xdf, 0x1c, 0xff, 0x9c, 0xd3, 0xff, 0xdc, 0x29, 0xff, 0xfc, 0xaa, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x0b, 0xff, 0xfd, 0x4b, 0xff, 0xe4, 0x28, 0xff, 0xaa, 0xe5, 0xff, 0xcd, 0xf7, 0xff, 0xe7, 0x3d, 0xff, 0xde, 0xdb, 0xff, 0xb5, 0x96, 0xff, + 0xad, 0x55, 0xff, 0xef, 0x3c, 0xff, 0xdf, 0x1d, 0xff, 0x9c, 0xd3, 0xff, 0xe4, 0x29, 0xff, 0xfc, 0xa9, 0xff, 0xfd, 0x0a, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfc, 0xea, 0xff, 0xfd, 0x2b, 0xff, 0xe4, 0x27, 0xff, 0xab, 0x05, 0xff, 0xcd, 0xf7, 0xff, 0xe7, 0x3d, 0xff, 0xde, 0xdb, 0xff, 0xb5, 0x96, 0xff, + 0xad, 0x55, 0xff, 0xef, 0x3c, 0xff, 0xdf, 0x1d, 0xff, 0x9c, 0xd3, 0xff, 0xe4, 0x28, 0xff, 0xfc, 0x88, 0xff, 0xfd, 0x09, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe9, 0xff, 0xfd, 0x2a, 0xff, 0xe4, 0x27, 0xff, 0xab, 0x05, 0xff, 0xcd, 0xf7, 0xff, 0xe7, 0x3d, 0xff, 0xde, 0xdb, 0xff, 0xb5, 0x96, 0xff, + 0xad, 0x55, 0xff, 0xef, 0x3c, 0xff, 0xdf, 0x3d, 0xff, 0xa4, 0xf3, 0xff, 0xe3, 0xe6, 0xff, 0xfc, 0x87, 0xff, 0xfd, 0x09, 0xff, 0xfc, 0xe9, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe9, 0xff, 0xfd, 0x09, 0xff, 0xe4, 0x05, 0xff, 0xaa, 0xe4, 0xff, 0xcd, 0xf7, 0xff, 0xe7, 0x5d, 0xff, 0xde, 0xdb, 0xff, 0xb5, 0x96, 0xff, + 0xad, 0x55, 0xff, 0xef, 0x3c, 0xff, 0xdf, 0x3d, 0xff, 0xa4, 0xf4, 0xff, 0xe3, 0xc4, 0xff, 0xfc, 0x45, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xe3, 0xc4, 0xff, 0xaa, 0xc3, 0xff, 0xce, 0x17, 0xff, 0xef, 0x5d, 0xff, 0xde, 0xdb, 0xff, 0xb5, 0x96, 0xff, + 0xad, 0x55, 0xff, 0xef, 0x3c, 0xff, 0xdf, 0x3d, 0xff, 0xa5, 0x14, 0xff, 0xe3, 0xc4, 0xff, 0xfb, 0xe2, 0xff, 0xfc, 0x65, 0xff, 0xfc, 0xc7, 0xff, 0xfc, 0xc8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xe8, 0xff, 0xfc, 0xc7, 0xff, 0xfc, 0x85, 0xff, 0xe3, 0x81, 0xff, 0xaa, 0xc2, 0xff, 0xd6, 0x17, 0xff, 0xef, 0x5d, 0xff, 0xde, 0xdb, 0xff, 0xb5, 0x96, 0xff, + 0xad, 0x55, 0xff, 0xe7, 0x3c, 0xff, 0xe7, 0x3e, 0xff, 0xa5, 0x14, 0xff, 0xe3, 0xe4, 0xff, 0xfb, 0xc0, 0xff, 0xfc, 0x02, 0xff, 0xfc, 0x85, 0xff, 0xfc, 0x86, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0xa6, 0xff, 0xfc, 0x85, 0xff, 0xfc, 0x42, 0xff, 0xe3, 0x60, 0xff, 0xb2, 0xe2, 0xff, 0xd6, 0x38, 0xff, 0xef, 0x5e, 0xff, 0xde, 0xdb, 0xff, 0xb5, 0x96, 0xff, + 0xad, 0x55, 0xff, 0xe7, 0x3c, 0xff, 0xe7, 0x3e, 0xff, 0xad, 0x34, 0xff, 0xe4, 0x04, 0xff, 0xfb, 0xc0, 0xff, 0xfb, 0xe0, 0xff, 0xfc, 0x01, 0xff, 0xfc, 0x02, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x22, 0xff, 0xfc, 0x02, 0xff, 0xfb, 0xe1, 0xff, 0xfc, 0x00, 0xff, 0xe3, 0x60, 0xff, 0xb3, 0x03, 0xff, 0xd6, 0x58, 0xff, 0xef, 0x7e, 0xff, 0xde, 0xdb, 0xff, 0xb5, 0x96, 0xff, + 0xad, 0x75, 0xff, 0xef, 0x5d, 0xff, 0xe7, 0x5e, 0xff, 0xad, 0x55, 0xff, 0xe4, 0x04, 0xff, 0xfb, 0xe0, 0xff, 0xfb, 0xe0, 0xff, 0xfb, 0xe0, 0xff, 0xfb, 0xe0, 0xff, 0xfc, 0x01, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfb, 0xe0, 0xff, 0xfb, 0xe0, 0xff, 0xfc, 0x00, 0xff, 0xe3, 0x60, 0xff, 0xb3, 0x23, 0xff, 0xd6, 0x58, 0xff, 0xef, 0x5e, 0xff, 0xde, 0xbb, 0xff, 0xb5, 0x96, 0xff, + 0xad, 0x55, 0xff, 0xef, 0x5d, 0xff, 0xe7, 0x5e, 0xff, 0xad, 0x55, 0xff, 0xe4, 0x24, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x00, 0xff, 0xfc, 0x20, 0xff, 0xe3, 0x80, 0xff, 0xb3, 0x23, 0xff, 0xcd, 0xf7, 0xff, 0xd6, 0xbb, 0xff, 0xce, 0x59, 0xff, 0xad, 0x76, 0xff, + 0x9c, 0xd3, 0xff, 0xde, 0xba, 0xff, 0xde, 0xfd, 0xff, 0xad, 0x55, 0xff, 0xe4, 0x44, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x40, 0xff, 0xeb, 0xc0, 0xff, 0xb3, 0x43, 0xff, 0x9c, 0x70, 0xff, 0x84, 0x31, 0xff, 0x8c, 0x51, 0xff, 0xa4, 0xf4, 0xff, + 0x7b, 0xaf, 0xff, 0xad, 0x35, 0xff, 0xad, 0xb7, 0xff, 0x94, 0x92, 0xff, 0xe4, 0x24, 0xff, 0xfc, 0x20, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x60, 0xff, 0xf4, 0x00, 0xff, 0xb3, 0x43, 0xff, 0x6a, 0xea, 0xff, 0x42, 0x09, 0xff, 0x5a, 0xcb, 0xff, 0x94, 0x92, 0xff, + 0x39, 0xa7, 0xff, 0x4a, 0x49, 0xff, 0x52, 0xcc, 0xff, 0x62, 0xec, 0xff, 0xdc, 0x03, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x40, 0xff, 0xfc, 0x60, 0xff, 0xf4, 0x21, 0xff, 0xbb, 0x63, 0xff, 0x52, 0x27, 0xff, 0x29, 0x45, 0xff, 0x4a, 0x69, 0xff, 0x94, 0xb2, 0xff, + 0x18, 0xa3, 0xff, 0x18, 0xc3, 0xff, 0x19, 0x05, 0xff, 0x42, 0x08, 0xff, 0xdc, 0x02, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x60, 0xff, 0xfc, 0x80, 0xff, 0xf4, 0x41, 0xff, 0xbb, 0x84, 0xff, 0x49, 0xe6, 0xff, 0x18, 0xe4, 0xff, 0x42, 0x29, 0xff, 0x94, 0xb3, 0xff, + 0x10, 0x82, 0xff, 0x10, 0x61, 0xff, 0x10, 0xa4, 0xff, 0x39, 0xc7, 0xff, 0xd4, 0x02, 0xff, 0xfc, 0x81, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0xa0, 0xff, 0xf4, 0x61, 0xff, 0xbb, 0xa4, 0xff, 0x49, 0xe7, 0xff, 0x18, 0xe4, 0xff, 0x42, 0x28, 0xff, 0x94, 0xb3, 0xff, + 0x10, 0xa2, 0xff, 0x08, 0x41, 0xff, 0x08, 0x83, 0xff, 0x39, 0xe7, 0xff, 0xc3, 0xc3, 0xff, 0xfc, 0x81, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xf4, 0x82, 0xff, 0xb3, 0xc5, 0xff, 0x39, 0xa6, 0xff, 0x10, 0x83, 0xff, 0x42, 0x28, 0xff, 0xa5, 0x14, 0xff, + 0x21, 0x04, 0xff, 0x08, 0x41, 0xff, 0x08, 0x83, 0xff, 0x39, 0xe7, 0xff, 0xab, 0x64, 0xff, 0xec, 0x62, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xec, 0xa3, 0xff, 0xab, 0xc7, 0xff, 0x29, 0x24, 0xff, 0x08, 0x62, 0xff, 0x52, 0x6a, 0xff, 0xb5, 0x76, 0xff, + 0x39, 0xe7, 0xff, 0x10, 0x82, 0xff, 0x00, 0x21, 0xff, 0x29, 0x45, 0xff, 0x83, 0x49, 0xff, 0xd4, 0x24, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0x80, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xa0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0x80, 0xff, 0xd4, 0x65, 0xff, 0x83, 0x8a, 0xff, 0x10, 0x61, 0xff, 0x18, 0xe4, 0xff, 0x6b, 0x4d, 0xff, 0xbd, 0xd7, 0xff, + 0x5a, 0xab, 0xff, 0x21, 0x24, 0xff, 0x00, 0x21, 0xff, 0x10, 0xa3, 0xff, 0x5a, 0xaa, 0xff, 0xab, 0xc6, 0xff, 0xe4, 0x62, 0xff, 0xfc, 0xe1, 0xff, 0xfc, 0xc1, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc1, 0xff, 0xfc, 0xc1, 0xff, 0xfc, 0xc1, 0xff, 0xfc, 0xc1, 0xff, 0xfc, 0xc1, 0xff, 0xfc, 0xc1, 0xff, 0xfc, 0xc1, 0xff, 0xfc, 0xc1, 0xff, 0xfc, 0xc1, 0xff, 0xfc, 0xe1, 0xff, 0xfc, 0xc1, 0xff, 0xfc, 0xc1, 0xff, 0xfc, 0xc1, 0xff, 0xfc, 0xc1, 0xff, 0xfc, 0xe1, 0xff, 0xfc, 0xe1, 0xff, 0xfc, 0xe1, 0xff, 0xfc, 0xe1, 0xff, 0xfc, 0xe1, 0xff, 0xfc, 0xe1, 0xff, 0xfc, 0xe1, 0xff, 0xfc, 0xe1, 0xff, 0xfc, 0xe1, 0xff, 0xfc, 0xe1, 0xff, 0xfc, 0xe1, 0xff, 0xfc, 0xe1, 0xff, 0xfc, 0xe1, 0xff, 0xfc, 0xe1, 0xff, 0xfc, 0xe1, 0xff, 0xfc, 0xe1, 0xff, 0xfc, 0xe1, 0xff, 0xfc, 0xe1, 0xff, 0xfc, 0xe1, 0xff, 0xfc, 0xe1, 0xff, 0xfc, 0xe1, 0xff, 0xfc, 0xe1, 0xff, 0xfc, 0xe1, 0xff, 0xfc, 0xe1, 0xff, 0xfc, 0xe1, 0xff, 0xfc, 0xe1, 0xff, 0xfc, 0xc1, 0xff, 0xfc, 0xc1, 0xff, 0xfc, 0xc1, 0xff, 0xfc, 0xe1, 0xff, 0xfc, 0xc1, 0xff, 0xfc, 0xc1, 0xff, 0xfc, 0xc1, 0xff, 0xfc, 0xc1, 0xff, 0xfc, 0xc1, 0xff, 0xfc, 0xc1, 0xff, 0xfc, 0xc1, 0xff, 0xfc, 0xc1, 0xff, 0xfc, 0xc1, 0xff, 0xfc, 0xc1, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc0, 0xff, 0xfc, 0xc1, 0xff, 0xfc, 0xc1, 0xff, 0xe4, 0x83, 0xff, 0xab, 0xc7, 0xff, 0x52, 0x89, 0xff, 0x08, 0x21, 0xff, 0x42, 0x08, 0xff, 0x94, 0x72, 0xff, 0xbd, 0xd7, 0xff, + 0x63, 0x2c, 0xff, 0x4a, 0x49, 0xff, 0x18, 0xe3, 0xff, 0x00, 0x00, 0xff, 0x29, 0x45, 0xff, 0x73, 0x09, 0xff, 0xbc, 0x6a, 0xff, 0xe4, 0xe7, 0xff, 0xe4, 0x83, 0xff, 0xe4, 0x83, 0xff, 0xec, 0x83, 0xff, 0xe4, 0x83, 0xff, 0xe4, 0x83, 0xff, 0xe4, 0x83, 0xff, 0xe4, 0x83, 0xff, 0xe4, 0x83, 0xff, 0xe4, 0x83, 0xff, 0xe4, 0x83, 0xff, 0xe4, 0x83, 0xff, 0xe4, 0x83, 0xff, 0xe4, 0x83, 0xff, 0xe4, 0x83, 0xff, 0xe4, 0x83, 0xff, 0xe4, 0x83, 0xff, 0xec, 0x83, 0xff, 0xec, 0x83, 0xff, 0xec, 0x83, 0xff, 0xec, 0x83, 0xff, 0xec, 0xa3, 0xff, 0xec, 0xa3, 0xff, 0xec, 0xa3, 0xff, 0xec, 0xa3, 0xff, 0xec, 0xa3, 0xff, 0xec, 0xa2, 0xff, 0xec, 0xa3, 0xff, 0xec, 0xa3, 0xff, 0xec, 0xa3, 0xff, 0xec, 0xa3, 0xff, 0xec, 0xc3, 0xff, 0xec, 0xc3, 0xff, 0xec, 0xc3, 0xff, 0xec, 0xc3, 0xff, 0xec, 0xc3, 0xff, 0xec, 0xe3, 0xff, 0xec, 0xe3, 0xff, 0xf4, 0xe4, 0xff, 0xf4, 0xe4, 0xff, 0xf4, 0xe4, 0xff, 0xf4, 0xe4, 0xff, 0xf5, 0x04, 0xff, 0xf5, 0x05, 0xff, 0xf5, 0x05, 0xff, 0xf5, 0x25, 0xff, 0xf5, 0x25, 0xff, 0xfd, 0x25, 0xff, 0xfd, 0x25, 0xff, 0xfd, 0x46, 0xff, 0xfd, 0x46, 0xff, 0xfd, 0x66, 0xff, 0xfd, 0x66, 0xff, 0xfd, 0x86, 0xff, 0xfd, 0x87, 0xff, 0xfd, 0x87, 0xff, 0xfd, 0xa7, 0xff, 0xfd, 0xa7, 0xff, 0xfd, 0xc8, 0xff, 0xfd, 0xc8, 0xff, 0xfd, 0xe8, 0xff, 0xfe, 0x08, 0xff, 0xfe, 0x09, 0xff, 0xfe, 0x09, 0xff, 0xfd, 0xe8, 0xff, 0xfd, 0xc8, 0xff, 0xfd, 0xc8, 0xff, 0xfd, 0xa7, 0xff, 0xfd, 0xa7, 0xff, 0xfd, 0x87, 0xff, 0xfd, 0x87, 0xff, 0xfd, 0x86, 0xff, 0xfd, 0x66, 0xff, 0xfd, 0x66, 0xff, 0xfd, 0x46, 0xff, 0xfd, 0x46, 0xff, 0xfd, 0x45, 0xff, 0xfd, 0x25, 0xff, 0xf5, 0x25, 0xff, 0xf5, 0x25, 0xff, 0xf5, 0x05, 0xff, 0xf5, 0x05, 0xff, 0xf5, 0x04, 0xff, 0xf4, 0xe4, 0xff, 0xf4, 0xe4, 0xff, 0xf4, 0xe4, 0xff, 0xec, 0xe4, 0xff, 0xec, 0xe3, 0xff, 0xec, 0xe3, 0xff, 0xec, 0xe3, 0xff, 0xec, 0xc3, 0xff, 0xec, 0xc3, 0xff, 0xec, 0xc3, 0xff, 0xec, 0xc3, 0xff, 0xec, 0xa3, 0xff, 0xec, 0xa3, 0xff, 0xec, 0xa3, 0xff, 0xec, 0xa3, 0xff, 0xec, 0xa3, 0xff, 0xec, 0xa3, 0xff, 0xec, 0xa3, 0xff, 0xec, 0xa3, 0xff, 0xec, 0xa3, 0xff, 0xe4, 0x83, 0xff, 0xe4, 0x84, 0xff, 0xe4, 0xc7, 0xff, 0xb4, 0x6a, 0xff, 0x6a, 0xc8, 0xff, 0x18, 0xc3, 0xff, 0x10, 0x82, 0xff, 0x7b, 0xf0, 0xff, 0xbd, 0xf8, 0xff, 0xad, 0x76, 0xff, + 0x8c, 0x71, 0xff, 0x6b, 0x2d, 0xff, 0x31, 0xa6, 0xff, 0x08, 0x61, 0xff, 0x08, 0x42, 0xff, 0x31, 0xa7, 0xff, 0x6a, 0xe9, 0xff, 0x93, 0x67, 0xff, 0xa3, 0x85, 0xff, 0xa3, 0x85, 0xff, 0xa3, 0x85, 0xff, 0xa3, 0x85, 0xff, 0xa3, 0x85, 0xff, 0xa3, 0x85, 0xff, 0xa3, 0x85, 0xff, 0xa3, 0x85, 0xff, 0xa3, 0x85, 0xff, 0xa3, 0x85, 0xff, 0xa3, 0x85, 0xff, 0xa3, 0x85, 0xff, 0xa3, 0x85, 0xff, 0xa3, 0x85, 0xff, 0xa3, 0x85, 0xff, 0xa3, 0x85, 0xff, 0xa3, 0x85, 0xff, 0xa3, 0x85, 0xff, 0xa3, 0x85, 0xff, 0xa3, 0x85, 0xff, 0xa3, 0x85, 0xff, 0xa3, 0x85, 0xff, 0xa3, 0x85, 0xff, 0xa3, 0x85, 0xff, 0xa3, 0x85, 0xff, 0xa3, 0xa5, 0xff, 0xab, 0xa5, 0xff, 0xab, 0xa5, 0xff, 0xab, 0xa5, 0xff, 0xab, 0xa5, 0xff, 0xab, 0xa5, 0xff, 0xab, 0xa5, 0xff, 0xab, 0xa5, 0xff, 0xab, 0xc5, 0xff, 0xab, 0xc6, 0xff, 0xab, 0xc6, 0xff, 0xab, 0xc6, 0xff, 0xab, 0xc6, 0xff, 0xab, 0xe6, 0xff, 0xab, 0xe6, 0xff, 0xab, 0xe6, 0xff, 0xab, 0xe6, 0xff, 0xb3, 0xe7, 0xff, 0xb4, 0x07, 0xff, 0xb4, 0x07, 0xff, 0xb4, 0x07, 0xff, 0xb4, 0x07, 0xff, 0xb4, 0x27, 0xff, 0xb4, 0x27, 0xff, 0xbc, 0x28, 0xff, 0xbc, 0x48, 0xff, 0xbc, 0x48, 0xff, 0xbc, 0x68, 0xff, 0xbc, 0x68, 0xff, 0xc4, 0x69, 0xff, 0xc4, 0x89, 0xff, 0xc4, 0x89, 0xff, 0xc4, 0xa9, 0xff, 0xc4, 0xaa, 0xff, 0xcc, 0xca, 0xff, 0xcc, 0xca, 0xff, 0xcc, 0xca, 0xff, 0xcc, 0xca, 0xff, 0xcc, 0xca, 0xff, 0xc4, 0xaa, 0xff, 0xc4, 0xa9, 0xff, 0xc4, 0x89, 0xff, 0xc4, 0x89, 0xff, 0xbc, 0x69, 0xff, 0xbc, 0x68, 0xff, 0xbc, 0x68, 0xff, 0xbc, 0x48, 0xff, 0xbc, 0x48, 0xff, 0xbc, 0x28, 0xff, 0xb4, 0x27, 0xff, 0xb4, 0x27, 0xff, 0xb4, 0x07, 0xff, 0xb4, 0x07, 0xff, 0xb4, 0x07, 0xff, 0xb3, 0xe7, 0xff, 0xb3, 0xe6, 0xff, 0xab, 0xe6, 0xff, 0xab, 0xe6, 0xff, 0xab, 0xc6, 0xff, 0xab, 0xc6, 0xff, 0xab, 0xc6, 0xff, 0xab, 0xc6, 0xff, 0xab, 0xc6, 0xff, 0xab, 0xc6, 0xff, 0xab, 0xc5, 0xff, 0xab, 0xa5, 0xff, 0xab, 0xa5, 0xff, 0xab, 0xa5, 0xff, 0xab, 0xa5, 0xff, 0xab, 0xa5, 0xff, 0xab, 0x85, 0xff, 0xa3, 0x85, 0xff, 0xa3, 0x85, 0xff, 0xa3, 0x85, 0xff, 0xa3, 0x85, 0xff, 0xa3, 0x85, 0xff, 0xa3, 0x85, 0xff, 0xa3, 0x85, 0xff, 0x9b, 0x85, 0xff, 0x93, 0x67, 0xff, 0x62, 0xa8, 0xff, 0x31, 0x86, 0xff, 0x18, 0xc3, 0xff, 0x52, 0x8a, 0xff, 0xad, 0x55, 0xff, 0xce, 0x59, 0xff, 0xb5, 0x76, 0xff, + 0xc5, 0xf8, 0xff, 0x83, 0xf0, 0xff, 0x4a, 0x49, 0xff, 0x31, 0xa6, 0xff, 0x00, 0x00, 0xff, 0x00, 0x00, 0xff, 0x10, 0x82, 0xff, 0x29, 0x03, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x27, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x27, 0xff, 0x52, 0x27, 0xff, 0x52, 0x27, 0xff, 0x52, 0x27, 0xff, 0x52, 0x27, 0xff, 0x4a, 0x27, 0xff, 0x52, 0x27, 0xff, 0x4a, 0x27, 0xff, 0x52, 0x27, 0xff, 0x52, 0x28, 0xff, 0x52, 0x28, 0xff, 0x52, 0x28, 0xff, 0x52, 0x28, 0xff, 0x52, 0x28, 0xff, 0x52, 0x28, 0xff, 0x52, 0x28, 0xff, 0x52, 0x28, 0xff, 0x52, 0x28, 0xff, 0x52, 0x28, 0xff, 0x52, 0x28, 0xff, 0x52, 0x28, 0xff, 0x52, 0x28, 0xff, 0x4a, 0x27, 0xff, 0x52, 0x27, 0xff, 0x52, 0x27, 0xff, 0x4a, 0x27, 0xff, 0x52, 0x27, 0xff, 0x4a, 0x27, 0xff, 0x4a, 0x27, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x49, 0xe7, 0xff, 0x49, 0xe7, 0xff, 0x49, 0xe7, 0xff, 0x49, 0xe7, 0xff, 0x49, 0xe7, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x4a, 0x07, 0xff, 0x41, 0xe6, 0xff, 0x29, 0x04, 0xff, 0x08, 0x20, 0xff, 0x08, 0x61, 0xff, 0x4a, 0x49, 0xff, 0xb5, 0x96, 0xff, 0xc6, 0x38, 0xff, 0xbd, 0xf8, 0xff, 0xbd, 0xd7, 0xff, + 0xde, 0xdb, 0x9f, 0x8c, 0x71, 0xc4, 0x63, 0x2c, 0xec, 0x5a, 0xcb, 0xff, 0x42, 0x08, 0xff, 0x31, 0x86, 0xff, 0x29, 0x66, 0xff, 0x31, 0x87, 0xff, 0x42, 0x29, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x6a, 0xff, 0x4a, 0x6a, 0xff, 0x4a, 0x6a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x6a, 0xff, 0x4a, 0x6a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x4a, 0xff, 0x4a, 0x6a, 0xff, 0x4a, 0x6a, 0xff, 0x4a, 0x6a, 0xff, 0x4a, 0x6a, 0xff, 0x4a, 0x6a, 0xff, 0x4a, 0x6a, 0xff, 0x4a, 0x6a, 0xff, 0x4a, 0x6a, 0xff, 0x4a, 0x6a, 0xff, 0x4a, 0x6a, 0xff, 0x4a, 0x6a, 0xff, 0x4a, 0x6a, 0xff, 0x4a, 0x6a, 0xff, 0x4a, 0x6a, 0xff, 0x4a, 0x6a, 0xff, 0x4a, 0x6a, 0xff, 0x4a, 0x6a, 0xff, 0x4a, 0x6a, 0xff, 0x4a, 0x6a, 0xff, 0x4a, 0x6a, 0xff, 0x4a, 0x6a, 0xff, 0x4a, 0x6b, 0xff, 0x4a, 0x6b, 0xff, 0x4a, 0x6b, 0xff, 0x52, 0x6b, 0xff, 0x52, 0x6b, 0xff, 0x52, 0x8b, 0xff, 0x52, 0x8b, 0xff, 0x52, 0x8b, 0xff, 0x52, 0x8b, 0xff, 0x52, 0x6a, 0xff, 0x52, 0x6b, 0xff, 0x52, 0x6b, 0xff, 0x52, 0x8b, 0xff, 0x52, 0x8b, 0xff, 0x52, 0x8b, 0xff, 0x52, 0x8b, 0xff, 0x52, 0x8b, 0xff, 0x4a, 0x6a, 0xff, 0x3a, 0x09, 0xff, 0x42, 0x09, 0xff, 0x63, 0x0c, 0xff, 0x94, 0x92, 0xff, 0xc6, 0x39, 0xff, 0xbd, 0xd7, 0xff, 0xb5, 0x96, 0xe3, 0xc6, 0x18, 0x87, + 0xff, 0xff, 0x28, 0x9c, 0xf3, 0x70, 0x84, 0x10, 0xc8, 0x7b, 0xef, 0xff, 0x84, 0x31, 0xff, 0x73, 0x8e, 0xff, 0x63, 0x0c, 0xff, 0x62, 0xec, 0xff, 0x5a, 0xec, 0xff, 0x5a, 0xec, 0xff, 0x5a, 0xec, 0xff, 0x5a, 0xec, 0xff, 0x5a, 0xec, 0xff, 0x5a, 0xec, 0xff, 0x5a, 0xec, 0xff, 0x5a, 0xec, 0xff, 0x5a, 0xec, 0xff, 0x5a, 0xec, 0xff, 0x5a, 0xec, 0xff, 0x62, 0xec, 0xff, 0x63, 0x0c, 0xff, 0x63, 0x0c, 0xff, 0x63, 0x0c, 0xff, 0x63, 0x0c, 0xff, 0x63, 0x0c, 0xff, 0x63, 0x0c, 0xff, 0x63, 0x0c, 0xff, 0x63, 0x0c, 0xff, 0x63, 0x0c, 0xff, 0x63, 0x0c, 0xff, 0x63, 0x0c, 0xff, 0x63, 0x0c, 0xff, 0x63, 0x0c, 0xff, 0x63, 0x0c, 0xff, 0x63, 0x0c, 0xff, 0x63, 0x2d, 0xff, 0x63, 0x2d, 0xff, 0x63, 0x2d, 0xff, 0x63, 0x2d, 0xff, 0x63, 0x2d, 0xff, 0x63, 0x2d, 0xff, 0x63, 0x2d, 0xff, 0x63, 0x2d, 0xff, 0x6b, 0x2d, 0xff, 0x6b, 0x2d, 0xff, 0x6b, 0x2d, 0xff, 0x6b, 0x2d, 0xff, 0x6b, 0x2d, 0xff, 0x6b, 0x4d, 0xff, 0x6b, 0x4d, 0xff, 0x6b, 0x4d, 0xff, 0x6b, 0x4d, 0xff, 0x6b, 0x4d, 0xff, 0x6b, 0x4d, 0xff, 0x6b, 0x4d, 0xff, 0x6b, 0x4d, 0xff, 0x6b, 0x4d, 0xff, 0x6b, 0x4d, 0xff, 0x6b, 0x4d, 0xff, 0x6b, 0x4d, 0xff, 0x6b, 0x4d, 0xff, 0x6b, 0x4d, 0xff, 0x6b, 0x4d, 0xff, 0x6b, 0x4d, 0xff, 0x6b, 0x4d, 0xff, 0x6b, 0x6e, 0xff, 0x6b, 0x6e, 0xff, 0x6b, 0x6e, 0xff, 0x6b, 0x6e, 0xff, 0x6b, 0x6e, 0xff, 0x6b, 0x6e, 0xff, 0x6b, 0x6e, 0xff, 0x6b, 0x6e, 0xff, 0x6b, 0x6e, 0xff, 0x6b, 0x6e, 0xff, 0x6b, 0x6e, 0xff, 0x6b, 0x8e, 0xff, 0x6b, 0x8e, 0xff, 0x73, 0x8e, 0xff, 0x73, 0x8e, 0xff, 0x73, 0x8e, 0xff, 0x73, 0x8e, 0xff, 0x73, 0x8e, 0xff, 0x73, 0x8e, 0xff, 0x73, 0x8e, 0xff, 0x73, 0x8e, 0xff, 0x73, 0x8e, 0xff, 0x73, 0x8e, 0xff, 0x73, 0x8e, 0xff, 0x73, 0x8e, 0xff, 0x73, 0x8e, 0xff, 0x73, 0x8e, 0xff, 0x73, 0x8e, 0xff, 0x73, 0x8e, 0xff, 0x73, 0xaf, 0xff, 0x73, 0xaf, 0xff, 0x73, 0xaf, 0xff, 0x73, 0xaf, 0xff, 0x73, 0xaf, 0xff, 0x73, 0xaf, 0xff, 0x73, 0xaf, 0xff, 0x73, 0xaf, 0xff, 0x73, 0xaf, 0xff, 0x7b, 0xaf, 0xff, 0x7b, 0xaf, 0xff, 0x7b, 0xaf, 0xff, 0x7b, 0xcf, 0xff, 0x7b, 0xcf, 0xff, 0x7b, 0xcf, 0xff, 0x7b, 0xcf, 0xff, 0x7b, 0xcf, 0xff, 0x7b, 0xcf, 0xff, 0x7b, 0xcf, 0xff, 0x9c, 0xf4, 0xff, 0xc5, 0xf8, 0xff, 0xd6, 0x7a, 0xff, 0xbd, 0xf8, 0xff, 0xad, 0x35, 0xff, 0xa4, 0xf4, 0xa4, 0x00, 0x00, 0x00, + 0xff, 0xff, 0x07, 0xce, 0x59, 0x27, 0xa5, 0x14, 0x8f, 0x9c, 0xb2, 0xff, 0x83, 0xf0, 0xff, 0x73, 0x6e, 0xff, 0x6b, 0x2d, 0xff, 0x63, 0x2d, 0xff, 0x63, 0x0d, 0xff, 0x63, 0x0c, 0xff, 0x63, 0x2d, 0xff, 0x63, 0x2d, 0xff, 0x63, 0x2d, 0xff, 0x63, 0x2d, 0xff, 0x63, 0x2d, 0xff, 0x6b, 0x2d, 0xff, 0x6b, 0x2d, 0xff, 0x6b, 0x4d, 0xff, 0x6b, 0x4d, 0xff, 0x6b, 0x4d, 0xff, 0x6b, 0x4d, 0xff, 0x6b, 0x4d, 0xff, 0x6b, 0x4d, 0xff, 0x6b, 0x4d, 0xff, 0x6b, 0x4d, 0xff, 0x6b, 0x6d, 0xff, 0x6b, 0x6e, 0xff, 0x6b, 0x6e, 0xff, 0x6b, 0x6e, 0xff, 0x6b, 0x6e, 0xff, 0x6b, 0x6e, 0xff, 0x6b, 0x6e, 0xff, 0x73, 0x6e, 0xff, 0x73, 0x6e, 0xff, 0x73, 0x8e, 0xff, 0x73, 0x8e, 0xff, 0x73, 0x8e, 0xff, 0x73, 0x8e, 0xff, 0x73, 0x8e, 0xff, 0x73, 0xaf, 0xff, 0x73, 0xaf, 0xff, 0x73, 0xaf, 0xff, 0x73, 0xaf, 0xff, 0x73, 0xaf, 0xff, 0x73, 0xaf, 0xff, 0x7b, 0xaf, 0xff, 0x7b, 0xcf, 0xff, 0x7b, 0xcf, 0xff, 0x7b, 0xcf, 0xff, 0x7b, 0xcf, 0xff, 0x7b, 0xcf, 0xff, 0x7b, 0xcf, 0xff, 0x7b, 0xcf, 0xff, 0x7b, 0xcf, 0xff, 0x7b, 0xcf, 0xff, 0x7b, 0xd0, 0xff, 0x7b, 0xf0, 0xff, 0x7b, 0xf0, 0xff, 0x7b, 0xf0, 0xff, 0x83, 0xf0, 0xff, 0x83, 0xf0, 0xff, 0x83, 0xf0, 0xff, 0x84, 0x10, 0xff, 0x84, 0x10, 0xff, 0x84, 0x10, 0xff, 0x84, 0x10, 0xff, 0x84, 0x10, 0xff, 0x84, 0x10, 0xff, 0x84, 0x31, 0xff, 0x84, 0x31, 0xff, 0x84, 0x31, 0xff, 0x84, 0x31, 0xff, 0x84, 0x31, 0xff, 0x84, 0x31, 0xff, 0x8c, 0x31, 0xff, 0x8c, 0x31, 0xff, 0x8c, 0x51, 0xff, 0x8c, 0x51, 0xff, 0x8c, 0x51, 0xff, 0x8c, 0x51, 0xff, 0x8c, 0x51, 0xff, 0x8c, 0x51, 0xff, 0x8c, 0x51, 0xff, 0x8c, 0x72, 0xff, 0x8c, 0x72, 0xff, 0x8c, 0x72, 0xff, 0x8c, 0x72, 0xff, 0x8c, 0x72, 0xff, 0x94, 0x72, 0xff, 0x94, 0x72, 0xff, 0x94, 0x72, 0xff, 0x94, 0x72, 0xff, 0x94, 0x92, 0xff, 0x94, 0x92, 0xff, 0x94, 0x92, 0xff, 0x94, 0x92, 0xff, 0x94, 0x92, 0xff, 0x94, 0x92, 0xff, 0x94, 0xb3, 0xff, 0x94, 0xb3, 0xff, 0x94, 0xb3, 0xff, 0x94, 0xb3, 0xff, 0x94, 0xb3, 0xff, 0x94, 0xb3, 0xff, 0x9c, 0xb3, 0xff, 0x9c, 0xd3, 0xff, 0x9c, 0xd3, 0xff, 0x9c, 0xd3, 0xff, 0x9c, 0xd3, 0xff, 0x9c, 0xd3, 0xff, 0x9c, 0xd3, 0xff, 0x9c, 0xd3, 0xff, 0x9c, 0xf4, 0xff, 0xad, 0x55, 0xff, 0xb5, 0xb7, 0xff, 0xbd, 0xd7, 0xff, 0xbd, 0xd7, 0xff, 0xad, 0x76, 0x97, 0x94, 0xb2, 0x2b, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0xc6, 0x38, 0x6c, 0xa5, 0x14, 0xff, 0x73, 0x8e, 0xff, 0x6b, 0x2d, 0xff, 0x63, 0x2d, 0xff, 0x63, 0x2d, 0xff, 0x6b, 0x2d, 0xff, 0x6b, 0x2d, 0xff, 0x6b, 0x2d, 0xff, 0x6b, 0x4d, 0xff, 0x6b, 0x4d, 0xff, 0x6b, 0x4d, 0xff, 0x6b, 0x4d, 0xff, 0x6b, 0x4d, 0xff, 0x6b, 0x4d, 0xff, 0x6b, 0x6d, 0xff, 0x6b, 0x6d, 0xff, 0x6b, 0x6e, 0xff, 0x6b, 0x6e, 0xff, 0x6b, 0x6e, 0xff, 0x6b, 0x6e, 0xff, 0x73, 0x6e, 0xff, 0x73, 0x8e, 0xff, 0x73, 0x8e, 0xff, 0x73, 0x8e, 0xff, 0x73, 0x8e, 0xff, 0x73, 0x8e, 0xff, 0x73, 0x8e, 0xff, 0x73, 0x8e, 0xff, 0x73, 0xae, 0xff, 0x73, 0xaf, 0xff, 0x73, 0xaf, 0xff, 0x7b, 0xaf, 0xff, 0x7b, 0xcf, 0xff, 0x7b, 0xcf, 0xff, 0x7b, 0xcf, 0xff, 0x7b, 0xcf, 0xff, 0x7b, 0xcf, 0xff, 0x7b, 0xcf, 0xff, 0x7b, 0xcf, 0xff, 0x7b, 0xef, 0xff, 0x7b, 0xf0, 0xff, 0x7b, 0xf0, 0xff, 0x83, 0xf0, 0xff, 0x84, 0x10, 0xff, 0x84, 0x10, 0xff, 0x84, 0x10, 0xff, 0x84, 0x10, 0xff, 0x84, 0x10, 0xff, 0x84, 0x10, 0xff, 0x84, 0x30, 0xff, 0x84, 0x30, 0xff, 0x84, 0x31, 0xff, 0x84, 0x31, 0xff, 0x8c, 0x31, 0xff, 0x8c, 0x51, 0xff, 0x8c, 0x51, 0xff, 0x8c, 0x51, 0xff, 0x8c, 0x51, 0xff, 0x8c, 0x51, 0xff, 0x8c, 0x71, 0xff, 0x8c, 0x72, 0xff, 0x8c, 0x72, 0xff, 0x8c, 0x72, 0xff, 0x94, 0x72, 0xff, 0x94, 0x72, 0xff, 0x94, 0x92, 0xff, 0x94, 0x92, 0xff, 0x94, 0x92, 0xff, 0x94, 0x92, 0xff, 0x94, 0x92, 0xff, 0x94, 0x92, 0xff, 0x94, 0x92, 0xff, 0x94, 0xb3, 0xff, 0x94, 0xb3, 0xff, 0x94, 0xb3, 0xff, 0x9c, 0xb3, 0xff, 0x9c, 0xd3, 0xff, 0x9c, 0xd3, 0xff, 0x9c, 0xd3, 0xff, 0x9c, 0xd3, 0xff, 0x9c, 0xd3, 0xff, 0x9c, 0xf4, 0xff, 0x9c, 0xf4, 0xff, 0x9c, 0xf4, 0xff, 0x9c, 0xf4, 0xff, 0x9c, 0xf4, 0xff, 0xa4, 0xf4, 0xff, 0xa4, 0xf4, 0xff, 0xa4, 0xf4, 0xff, 0xa5, 0x14, 0xff, 0xa5, 0x14, 0xff, 0xa5, 0x14, 0xff, 0xa5, 0x14, 0xff, 0xa5, 0x14, 0xff, 0xa5, 0x35, 0xff, 0xa5, 0x35, 0xff, 0xa5, 0x35, 0xff, 0xa5, 0x35, 0xff, 0xa5, 0x35, 0xff, 0xad, 0x35, 0xff, 0xad, 0x35, 0xff, 0xad, 0x55, 0xff, 0xad, 0x55, 0xff, 0xad, 0x55, 0xff, 0xad, 0x55, 0xff, 0xad, 0x55, 0xff, 0xad, 0x76, 0xff, 0xad, 0x76, 0xff, 0xad, 0x76, 0xff, 0xad, 0x76, 0xff, 0xad, 0x55, 0xff, 0xa5, 0x35, 0xff, 0xad, 0x35, 0xff, 0xbd, 0xd7, 0xff, 0xc6, 0x18, 0x4c, 0x00, 0x00, 0x00, 0xef, 0x7d, 0x04, +#endif +#if LV_COLOR_DEPTH == 32 + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xda, 0xda, 0xda, 0x68, 0xc2, 0xc2, 0xc2, 0xff, 0xa5, 0xa5, 0xa5, 0xff, 0xa2, 0xa2, 0xa2, 0xff, 0xa4, 0xa4, 0xa4, 0xff, 0xa2, 0xa2, 0xa2, 0xff, 0xa1, 0xa1, 0xa1, 0xff, 0xa1, 0xa1, 0xa1, 0xff, 0xa1, 0xa1, 0xa1, 0xff, 0xa0, 0xa0, 0xa0, 0xff, 0x9f, 0x9f, 0x9f, 0xff, 0x9e, 0x9e, 0x9e, 0xff, 0x9d, 0x9d, 0x9d, 0xff, 0x9d, 0x9d, 0x9d, 0xff, 0x9b, 0x9b, 0x9b, 0xff, 0x9b, 0x9b, 0x9b, 0xff, 0x9b, 0x9b, 0x9b, 0xff, 0x99, 0x99, 0x99, 0xff, 0x9a, 0x9a, 0x9a, 0xff, 0x98, 0x98, 0x98, 0xff, 0x97, 0x97, 0x97, 0xff, 0x96, 0x96, 0x96, 0xff, 0x97, 0x97, 0x97, 0xff, 0x96, 0x96, 0x96, 0xff, 0x97, 0x97, 0x97, 0xff, 0x99, 0x99, 0x99, 0xff, 0x99, 0x99, 0x99, 0xff, 0x9b, 0x9b, 0x9b, 0xff, 0x9c, 0x9c, 0x9c, 0xff, 0x9d, 0x9e, 0x9e, 0xff, 0x9e, 0x9e, 0x9e, 0xff, 0xa0, 0xa0, 0xa0, 0xff, 0xa0, 0xa0, 0xa0, 0xff, 0xa0, 0xa0, 0xa0, 0xff, 0xa2, 0xa2, 0xa2, 0xff, 0xa4, 0xa4, 0xa4, 0xff, 0xa5, 0xa5, 0xa5, 0xff, 0xa5, 0xa5, 0xa5, 0xff, 0xa7, 0xa7, 0xa7, 0xff, 0xa9, 0xa9, 0xa9, 0xff, 0xaa, 0xaa, 0xaa, 0xff, 0xaa, 0xaa, 0xaa, 0xff, 0xab, 0xab, 0xab, 0xff, 0xac, 0xac, 0xac, 0xff, 0xad, 0xad, 0xad, 0xff, 0xae, 0xae, 0xae, 0xff, 0xaf, 0xaf, 0xaf, 0xff, 0xb0, 0xb0, 0xb0, 0xff, 0xb2, 0xb2, 0xb2, 0xff, 0xb4, 0xb4, 0xb4, 0xff, 0xb5, 0xb5, 0xb5, 0xff, 0xb6, 0xb6, 0xb6, 0xff, 0xb7, 0xb7, 0xb7, 0xff, 0xb7, 0xb7, 0xb7, 0xff, 0xb7, 0xb7, 0xb7, 0xff, 0xb7, 0xb7, 0xb7, 0xff, 0xb8, 0xb8, 0xb8, 0xff, 0xba, 0xba, 0xba, 0xff, 0xba, 0xba, 0xba, 0xff, 0xba, 0xba, 0xba, 0xff, 0xba, 0xba, 0xba, 0xff, 0xba, 0xba, 0xba, 0xff, 0xbb, 0xbb, 0xbb, 0xff, 0xbc, 0xbc, 0xbc, 0xff, 0xbc, 0xbc, 0xbc, 0xff, 0xbb, 0xbb, 0xbb, 0xff, 0xbb, 0xbb, 0xbb, 0xff, 0xbb, 0xbb, 0xbb, 0xff, 0xbb, 0xbb, 0xbb, 0xff, 0xbc, 0xbc, 0xbc, 0xff, 0xbc, 0xbc, 0xbc, 0xff, 0xbd, 0xbd, 0xbd, 0xff, 0xbd, 0xbd, 0xbd, 0xff, 0xbc, 0xbc, 0xbc, 0xff, 0xbc, 0xbc, 0xbc, 0xff, 0xbb, 0xbb, 0xbb, 0xff, 0xb9, 0xb9, 0xb9, 0xff, 0xb9, 0xb9, 0xb9, 0xff, 0xb8, 0xb8, 0xb8, 0xff, 0xb6, 0xb6, 0xb6, 0xff, 0xb5, 0xb5, 0xb5, 0xff, 0xb5, 0xb5, 0xb5, 0xff, 0xb4, 0xb4, 0xb4, 0xff, 0xb3, 0xb3, 0xb3, 0xff, 0xb3, 0xb3, 0xb3, 0xff, 0xb2, 0xb2, 0xb2, 0xff, 0xb1, 0xb1, 0xb1, 0xff, 0xb1, 0xb1, 0xb1, 0xff, 0xb1, 0xb1, 0xb1, 0xff, 0xaf, 0xaf, 0xaf, 0xff, 0xad, 0xad, 0xad, 0xff, 0xae, 0xae, 0xae, 0xff, 0xae, 0xae, 0xae, 0xff, 0xac, 0xac, 0xac, 0xff, 0xab, 0xab, 0xab, 0xff, 0xab, 0xab, 0xab, 0xff, 0xaa, 0xaa, 0xaa, 0xff, 0xa8, 0xa8, 0xa8, 0xff, 0xa9, 0xa9, 0xa9, 0xff, 0xa9, 0xa9, 0xa9, 0xff, 0xa9, 0xa9, 0xa9, 0xff, 0xab, 0xab, 0xab, 0xff, 0xab, 0xab, 0xab, 0xff, 0xad, 0xad, 0xad, 0xff, 0xae, 0xae, 0xae, 0xff, 0xaf, 0xaf, 0xaf, 0xff, 0xaf, 0xb0, 0xb0, 0xff, 0xb1, 0xb0, 0xb0, 0xff, 0xb2, 0xb1, 0xb1, 0xff, 0xb2, 0xb2, 0xb2, 0xff, 0xb3, 0xb3, 0xb3, 0xff, 0xb1, 0xb1, 0xb1, 0xff, 0xaa, 0xaa, 0xaa, 0xff, 0xaa, 0xaa, 0xaa, 0xff, 0xd0, 0xd0, 0xd0, 0xff, 0xdf, 0xdf, 0xdf, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xc1, 0xc1, 0xc1, 0x3f, 0xc3, 0xc3, 0xc3, 0xa7, 0xc6, 0xc6, 0xc6, 0xff, 0xc0, 0xc0, 0xc0, 0xff, 0xbf, 0xbf, 0xbf, 0xff, 0xc1, 0xc1, 0xc1, 0xff, 0xc3, 0xc3, 0xc4, 0xff, 0xc3, 0xc3, 0xc4, 0xff, 0xc3, 0xc3, 0xc3, 0xff, 0xc2, 0xc2, 0xc2, 0xff, 0xc1, 0xc1, 0xc2, 0xff, 0xc0, 0xc0, 0xc0, 0xff, 0xbf, 0xbf, 0xbf, 0xff, 0xbe, 0xbe, 0xbe, 0xff, 0xbd, 0xbd, 0xbe, 0xff, 0xbc, 0xbc, 0xbc, 0xff, 0xbb, 0xbb, 0xbc, 0xff, 0xbb, 0xba, 0xbb, 0xff, 0xb9, 0xb9, 0xb9, 0xff, 0xb9, 0xb8, 0xb9, 0xff, 0xb8, 0xb7, 0xb8, 0xff, 0xb6, 0xb6, 0xb6, 0xff, 0xb5, 0xb5, 0xb5, 0xff, 0xb5, 0xb4, 0xb5, 0xff, 0xb4, 0xb4, 0xb5, 0xff, 0xb5, 0xb6, 0xb6, 0xff, 0xb7, 0xb7, 0xb7, 0xff, 0xb8, 0xb8, 0xb8, 0xff, 0xb9, 0xb9, 0xba, 0xff, 0xba, 0xbb, 0xbb, 0xff, 0xbc, 0xbc, 0xbc, 0xff, 0xbd, 0xbd, 0xbd, 0xff, 0xbf, 0xbf, 0xbf, 0xff, 0xc0, 0xc0, 0xc0, 0xff, 0xc0, 0xc0, 0xc0, 0xff, 0xc1, 0xc1, 0xc2, 0xff, 0xc3, 0xc3, 0xc4, 0xff, 0xc4, 0xc4, 0xc5, 0xff, 0xc5, 0xc5, 0xc5, 0xff, 0xc6, 0xc6, 0xc6, 0xff, 0xc8, 0xc8, 0xc8, 0xff, 0xc9, 0xc9, 0xc9, 0xff, 0xca, 0xca, 0xca, 0xff, 0xca, 0xcb, 0xcb, 0xff, 0xcc, 0xcc, 0xcd, 0xff, 0xcd, 0xce, 0xce, 0xff, 0xce, 0xcf, 0xcf, 0xff, 0xcf, 0xcf, 0xcf, 0xff, 0xd0, 0xd0, 0xd0, 0xff, 0xd1, 0xd1, 0xd1, 0xff, 0xd2, 0xd2, 0xd2, 0xff, 0xd3, 0xd3, 0xd4, 0xff, 0xd4, 0xd4, 0xd4, 0xff, 0xd4, 0xd4, 0xd5, 0xff, 0xd4, 0xd4, 0xd5, 0xff, 0xd5, 0xd5, 0xd5, 0xff, 0xd5, 0xd5, 0xd5, 0xff, 0xd6, 0xd6, 0xd6, 0xff, 0xd7, 0xd7, 0xd7, 0xff, 0xd7, 0xd7, 0xd7, 0xff, 0xd7, 0xd7, 0xd7, 0xff, 0xd7, 0xd7, 0xd7, 0xff, 0xd7, 0xd7, 0xd7, 0xff, 0xd8, 0xd8, 0xd8, 0xff, 0xd8, 0xd8, 0xd9, 0xff, 0xd8, 0xd8, 0xd9, 0xff, 0xd8, 0xd8, 0xd8, 0xff, 0xd8, 0xd8, 0xd8, 0xff, 0xd8, 0xd8, 0xd8, 0xff, 0xd8, 0xd8, 0xd9, 0xff, 0xd9, 0xd9, 0xd9, 0xff, 0xd9, 0xd9, 0xd9, 0xff, 0xd9, 0xd9, 0xda, 0xff, 0xd9, 0xd9, 0xda, 0xff, 0xd9, 0xd9, 0xd9, 0xff, 0xd9, 0xd9, 0xd9, 0xff, 0xd8, 0xd8, 0xd9, 0xff, 0xd8, 0xd8, 0xd8, 0xff, 0xd7, 0xd7, 0xd7, 0xff, 0xd6, 0xd7, 0xd6, 0xff, 0xd5, 0xd5, 0xd5, 0xff, 0xd3, 0xd3, 0xd4, 0xff, 0xd2, 0xd2, 0xd3, 0xff, 0xd1, 0xd1, 0xd2, 0xff, 0xd1, 0xd1, 0xd1, 0xff, 0xd0, 0xd0, 0xd0, 0xff, 0xce, 0xce, 0xce, 0xff, 0xcd, 0xcd, 0xce, 0xff, 0xcd, 0xcd, 0xcd, 0xff, 0xcc, 0xcc, 0xcc, 0xff, 0xca, 0xca, 0xca, 0xff, 0xc9, 0xc9, 0xc9, 0xff, 0xc8, 0xc8, 0xc8, 0xff, 0xc8, 0xc8, 0xc8, 0xff, 0xc6, 0xc6, 0xc6, 0xff, 0xc4, 0xc4, 0xc5, 0xff, 0xc4, 0xc4, 0xc4, 0xff, 0xc3, 0xc3, 0xc3, 0xff, 0xc1, 0xc1, 0xc1, 0xff, 0xc1, 0xc1, 0xc1, 0xff, 0xc1, 0xc1, 0xc1, 0xff, 0xc1, 0xc2, 0xc2, 0xff, 0xc3, 0xc3, 0xc3, 0xff, 0xc4, 0xc4, 0xc4, 0xff, 0xc5, 0xc5, 0xc5, 0xff, 0xc6, 0xc6, 0xc6, 0xff, 0xc7, 0xc7, 0xc7, 0xff, 0xc8, 0xc8, 0xc8, 0xff, 0xc9, 0xc9, 0xc9, 0xff, 0xca, 0xca, 0xca, 0xff, 0xca, 0xcb, 0xcb, 0xff, 0xcb, 0xcb, 0xcb, 0xff, 0xc7, 0xc7, 0xc7, 0xff, 0xc2, 0xc2, 0xc2, 0xff, 0xc1, 0xc1, 0xc1, 0xff, 0xc9, 0xc9, 0xc9, 0xff, 0xc0, 0xbf, 0xc0, 0x94, 0xb2, 0xb1, 0xb1, 0x2c, 0xff, 0xff, 0xff, 0x04, + 0xff, 0xff, 0xff, 0x14, 0xb3, 0xb3, 0xb3, 0xac, 0xb7, 0xb7, 0xb7, 0xff, 0xcf, 0xcf, 0xcf, 0xff, 0xeb, 0xeb, 0xeb, 0xff, 0xed, 0xed, 0xed, 0xff, 0xec, 0xec, 0xed, 0xff, 0xf1, 0xf1, 0xf2, 0xff, 0xf0, 0xf0, 0xf2, 0xff, 0xef, 0xf0, 0xf0, 0xff, 0xef, 0xef, 0xef, 0xff, 0xee, 0xee, 0xee, 0xff, 0xec, 0xec, 0xec, 0xff, 0xeb, 0xeb, 0xec, 0xff, 0xea, 0xe9, 0xea, 0xff, 0xe9, 0xe8, 0xe9, 0xff, 0xe8, 0xe7, 0xe8, 0xff, 0xe7, 0xe6, 0xe7, 0xff, 0xe7, 0xe5, 0xe6, 0xff, 0xe5, 0xe4, 0xe5, 0xff, 0xe3, 0xe2, 0xe3, 0xff, 0xe3, 0xe1, 0xe2, 0xff, 0xe2, 0xe1, 0xe1, 0xff, 0xe0, 0xdf, 0xe0, 0xff, 0xde, 0xdd, 0xde, 0xff, 0xde, 0xde, 0xde, 0xff, 0xdf, 0xdf, 0xdf, 0xff, 0xe1, 0xe1, 0xe1, 0xff, 0xe3, 0xe3, 0xe3, 0xff, 0xe4, 0xe4, 0xe4, 0xff, 0xe5, 0xe5, 0xe5, 0xff, 0xe8, 0xe7, 0xe7, 0xff, 0xe9, 0xe8, 0xe8, 0xff, 0xeb, 0xea, 0xea, 0xff, 0xec, 0xec, 0xec, 0xff, 0xec, 0xec, 0xed, 0xff, 0xee, 0xed, 0xee, 0xff, 0xf0, 0xef, 0xf0, 0xff, 0xf1, 0xf1, 0xf1, 0xff, 0xf2, 0xf1, 0xf2, 0xff, 0xf4, 0xf3, 0xf3, 0xff, 0xf5, 0xf5, 0xf5, 0xff, 0xf7, 0xf7, 0xf7, 0xff, 0xf8, 0xf8, 0xf8, 0xff, 0xf8, 0xf9, 0xf9, 0xff, 0xfa, 0xfb, 0xfb, 0xff, 0xfc, 0xfd, 0xfd, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xfe, 0xfe, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xfe, 0xff, 0xfc, 0xfd, 0xfc, 0xff, 0xfb, 0xfb, 0xfb, 0xff, 0xf9, 0xf9, 0xf9, 0xff, 0xf8, 0xf8, 0xf8, 0xff, 0xf7, 0xf7, 0xf7, 0xff, 0xf6, 0xf6, 0xf5, 0xff, 0xf3, 0xf3, 0xf3, 0xff, 0xf2, 0xf2, 0xf2, 0xff, 0xf0, 0xf0, 0xf1, 0xff, 0xef, 0xef, 0xef, 0xff, 0xed, 0xed, 0xed, 0xff, 0xec, 0xec, 0xec, 0xff, 0xea, 0xea, 0xea, 0xff, 0xe8, 0xe8, 0xe8, 0xff, 0xe7, 0xe8, 0xe8, 0xff, 0xe5, 0xe5, 0xe6, 0xff, 0xe3, 0xe4, 0xe5, 0xff, 0xe2, 0xe2, 0xe3, 0xff, 0xe0, 0xe1, 0xe1, 0xff, 0xdf, 0xdf, 0xdf, 0xff, 0xdf, 0xdf, 0xdf, 0xff, 0xe0, 0xe1, 0xe1, 0xff, 0xe1, 0xe2, 0xe2, 0xff, 0xe3, 0xe3, 0xe3, 0xff, 0xe3, 0xe4, 0xe4, 0xff, 0xe4, 0xe4, 0xe5, 0xff, 0xe5, 0xe5, 0xe6, 0xff, 0xe7, 0xe7, 0xe7, 0xff, 0xe8, 0xe8, 0xe8, 0xff, 0xe9, 0xe9, 0xe9, 0xff, 0xea, 0xea, 0xea, 0xff, 0xea, 0xea, 0xeb, 0xff, 0xe7, 0xe8, 0xe8, 0xff, 0xe8, 0xe8, 0xe8, 0xff, 0xe4, 0xe4, 0xe4, 0xff, 0xc0, 0xc0, 0xc0, 0xff, 0xb4, 0xb3, 0xb3, 0xff, 0xba, 0xb9, 0xb9, 0xaf, 0xff, 0xff, 0xff, 0x20, + 0xcf, 0xcf, 0xcf, 0x93, 0xbd, 0xbd, 0xbd, 0xe4, 0xc6, 0xc6, 0xc6, 0xff, 0xe3, 0xe3, 0xe3, 0xff, 0xf3, 0xf2, 0xf2, 0xff, 0xfe, 0xfe, 0xfd, 0xff, 0xf1, 0xf0, 0xeb, 0xff, 0xd3, 0xd0, 0xc5, 0xff, 0xc5, 0xc1, 0xb6, 0xff, 0xc2, 0xbe, 0xb4, 0xff, 0xc2, 0xbf, 0xb5, 0xff, 0xc1, 0xbd, 0xb4, 0xff, 0xc1, 0xbd, 0xb3, 0xff, 0xc1, 0xbc, 0xb3, 0xff, 0xc1, 0xbc, 0xb2, 0xff, 0xc0, 0xbb, 0xb2, 0xff, 0xc0, 0xbb, 0xb2, 0xff, 0xc0, 0xbb, 0xb1, 0xff, 0xc0, 0xba, 0xb1, 0xff, 0xbf, 0xba, 0xb1, 0xff, 0xbe, 0xb9, 0xb0, 0xff, 0xbf, 0xb9, 0xb1, 0xff, 0xbf, 0xb9, 0xb1, 0xff, 0xbe, 0xb9, 0xb0, 0xff, 0xbc, 0xb8, 0xaf, 0xff, 0xbe, 0xb9, 0xb0, 0xff, 0xc0, 0xbb, 0xb2, 0xff, 0xc2, 0xbe, 0xb5, 0xff, 0xc5, 0xc0, 0xb7, 0xff, 0xc7, 0xc2, 0xb9, 0xff, 0xc9, 0xc4, 0xbb, 0xff, 0xcb, 0xc6, 0xbd, 0xff, 0xce, 0xc9, 0xbf, 0xff, 0xd0, 0xcb, 0xc2, 0xff, 0xd3, 0xcd, 0xc4, 0xff, 0xd4, 0xd0, 0xc6, 0xff, 0xd6, 0xd2, 0xc9, 0xff, 0xda, 0xd4, 0xcb, 0xff, 0xdc, 0xd7, 0xcd, 0xff, 0xde, 0xd9, 0xd0, 0xff, 0xe0, 0xdb, 0xd2, 0xff, 0xe3, 0xde, 0xd5, 0xff, 0xe6, 0xe1, 0xd7, 0xff, 0xe9, 0xe3, 0xda, 0xff, 0xea, 0xe6, 0xdc, 0xff, 0xed, 0xe9, 0xe0, 0xff, 0xef, 0xeb, 0xe2, 0xff, 0xf0, 0xeb, 0xe2, 0xff, 0xef, 0xea, 0xe1, 0xff, 0xee, 0xe9, 0xe0, 0xff, 0xed, 0xe8, 0xde, 0xff, 0xeb, 0xe6, 0xdd, 0xff, 0xeb, 0xe6, 0xdc, 0xff, 0xe9, 0xe4, 0xdb, 0xff, 0xe8, 0xe3, 0xda, 0xff, 0xe7, 0xe2, 0xd9, 0xff, 0xe5, 0xe1, 0xd8, 0xff, 0xe4, 0xdf, 0xd6, 0xff, 0xe3, 0xde, 0xd5, 0xff, 0xe2, 0xde, 0xd4, 0xff, 0xe1, 0xdc, 0xd3, 0xff, 0xe0, 0xdb, 0xd2, 0xff, 0xdf, 0xda, 0xd2, 0xff, 0xde, 0xd9, 0xd0, 0xff, 0xde, 0xd9, 0xcf, 0xff, 0xdc, 0xd8, 0xce, 0xff, 0xdb, 0xd7, 0xce, 0xff, 0xda, 0xd6, 0xcd, 0xff, 0xda, 0xd5, 0xcc, 0xff, 0xd9, 0xd4, 0xcb, 0xff, 0xd8, 0xd4, 0xcb, 0xff, 0xd8, 0xd3, 0xca, 0xff, 0xd7, 0xd3, 0xc9, 0xff, 0xd6, 0xd2, 0xc8, 0xff, 0xd6, 0xd1, 0xc7, 0xff, 0xd5, 0xd0, 0xc7, 0xff, 0xd3, 0xce, 0xc6, 0xff, 0xd3, 0xce, 0xc4, 0xff, 0xd1, 0xcd, 0xc3, 0xff, 0xd0, 0xcd, 0xc3, 0xff, 0xcf, 0xcc, 0xc1, 0xff, 0xce, 0xca, 0xc0, 0xff, 0xcc, 0xc8, 0xbf, 0xff, 0xca, 0xc6, 0xbd, 0xff, 0xc9, 0xc5, 0xbc, 0xff, 0xc7, 0xc4, 0xba, 0xff, 0xc6, 0xc3, 0xb9, 0xff, 0xc4, 0xc1, 0xb7, 0xff, 0xc3, 0xc0, 0xb6, 0xff, 0xc1, 0xbe, 0xb4, 0xff, 0xc0, 0xbd, 0xb3, 0xff, 0xbf, 0xbb, 0xb1, 0xff, 0xbd, 0xba, 0xb0, 0xff, 0xbb, 0xb7, 0xaf, 0xff, 0xba, 0xb5, 0xae, 0xff, 0xb8, 0xb5, 0xac, 0xff, 0xb7, 0xb3, 0xab, 0xff, 0xb5, 0xb2, 0xab, 0xff, 0xb4, 0xb0, 0xa9, 0xff, 0xb3, 0xaf, 0xa7, 0xff, 0xb2, 0xaf, 0xa6, 0xff, 0xb2, 0xae, 0xa7, 0xff, 0xb3, 0xaf, 0xa7, 0xff, 0xb4, 0xb0, 0xa9, 0xff, 0xb5, 0xb2, 0xa9, 0xff, 0xb6, 0xb2, 0xaa, 0xff, 0xb6, 0xb2, 0xaa, 0xff, 0xb6, 0xb3, 0xab, 0xff, 0xb8, 0xb4, 0xac, 0xff, 0xb9, 0xb5, 0xae, 0xff, 0xba, 0xb6, 0xad, 0xff, 0xbe, 0xb9, 0xad, 0xff, 0xcb, 0xc7, 0xbc, 0xff, 0xe7, 0xe5, 0xdf, 0xff, 0xf5, 0xf5, 0xf3, 0xff, 0xec, 0xec, 0xed, 0xff, 0xd4, 0xd4, 0xd5, 0xff, 0xc2, 0xc1, 0xc0, 0xff, 0xc0, 0xbe, 0xbd, 0xe8, 0xce, 0xcd, 0xcc, 0x98, + 0xbf, 0xbf, 0xbf, 0xff, 0xc8, 0xc8, 0xc8, 0xff, 0xdd, 0xdd, 0xdd, 0xff, 0xf3, 0xf3, 0xf3, 0xff, 0xed, 0xed, 0xed, 0xff, 0xeb, 0xea, 0xe9, 0xff, 0xcb, 0xcb, 0xc9, 0xff, 0x98, 0x98, 0x95, 0xff, 0x85, 0x85, 0x83, 0xff, 0x83, 0x84, 0x83, 0xff, 0x84, 0x84, 0x85, 0xff, 0x83, 0x83, 0x84, 0xff, 0x84, 0x84, 0x84, 0xff, 0x85, 0x84, 0x84, 0xff, 0x86, 0x84, 0x84, 0xff, 0x86, 0x84, 0x85, 0xff, 0x86, 0x84, 0x85, 0xff, 0x87, 0x85, 0x86, 0xff, 0x87, 0x85, 0x86, 0xff, 0x87, 0x85, 0x86, 0xff, 0x87, 0x86, 0x87, 0xff, 0x89, 0x87, 0x88, 0xff, 0x8b, 0x88, 0x8a, 0xff, 0x8a, 0x89, 0x8a, 0xff, 0x89, 0x89, 0x89, 0xff, 0x8b, 0x8a, 0x8b, 0xff, 0x8e, 0x8c, 0x8e, 0xff, 0x91, 0x8f, 0x90, 0xff, 0x94, 0x91, 0x92, 0xff, 0x96, 0x94, 0x94, 0xff, 0x98, 0x96, 0x97, 0xff, 0x99, 0x99, 0x99, 0xff, 0x9c, 0x9b, 0x9c, 0xff, 0x9f, 0x9e, 0x9f, 0xff, 0xa2, 0xa0, 0xa2, 0xff, 0xa5, 0xa3, 0xa4, 0xff, 0xa7, 0xa6, 0xa7, 0xff, 0xaa, 0xa9, 0xaa, 0xff, 0xae, 0xac, 0xad, 0xff, 0xb1, 0xaf, 0xb0, 0xff, 0xb3, 0xb2, 0xb4, 0xff, 0xb6, 0xb5, 0xb6, 0xff, 0xba, 0xb7, 0xb8, 0xff, 0xbd, 0xba, 0xbb, 0xff, 0xbf, 0xbe, 0xbf, 0xff, 0xc3, 0xc1, 0xc2, 0xff, 0xc5, 0xc3, 0xc4, 0xff, 0xc5, 0xc2, 0xc4, 0xff, 0xc4, 0xc1, 0xc3, 0xff, 0xc2, 0xbf, 0xc1, 0xff, 0xbf, 0xbd, 0xbe, 0xff, 0xbd, 0xba, 0xbc, 0xff, 0xbc, 0xba, 0xbb, 0xff, 0xba, 0xb7, 0xb9, 0xff, 0xb8, 0xb5, 0xb7, 0xff, 0xb6, 0xb3, 0xb5, 0xff, 0xb3, 0xb1, 0xb3, 0xff, 0xb1, 0xaf, 0xb0, 0xff, 0xaf, 0xad, 0xae, 0xff, 0xad, 0xad, 0xad, 0xff, 0xab, 0xaa, 0xab, 0xff, 0xaa, 0xa9, 0xaa, 0xff, 0xa9, 0xa7, 0xa9, 0xff, 0xa7, 0xa5, 0xa6, 0xff, 0xa6, 0xa4, 0xa5, 0xff, 0xa3, 0xa3, 0xa3, 0xff, 0xa1, 0xa1, 0xa2, 0xff, 0xa0, 0xa0, 0xa0, 0xff, 0x9f, 0x9e, 0x9f, 0xff, 0x9e, 0x9d, 0x9e, 0xff, 0x9d, 0x9c, 0x9d, 0xff, 0x9c, 0x9b, 0x9c, 0xff, 0x9a, 0x99, 0x9a, 0xff, 0x99, 0x98, 0x98, 0xff, 0x98, 0x96, 0x96, 0xff, 0x97, 0x95, 0x96, 0xff, 0x94, 0x92, 0x94, 0xff, 0x93, 0x92, 0x92, 0xff, 0x91, 0x90, 0x90, 0xff, 0x8e, 0x8f, 0x8f, 0xff, 0x8e, 0x8e, 0x8e, 0xff, 0x8d, 0x8d, 0x8d, 0xff, 0x8c, 0x8b, 0x8c, 0xff, 0x8a, 0x89, 0x8b, 0xff, 0x89, 0x89, 0x8a, 0xff, 0x87, 0x88, 0x88, 0xff, 0x86, 0x87, 0x87, 0xff, 0x85, 0x86, 0x86, 0xff, 0x84, 0x85, 0x85, 0xff, 0x83, 0x84, 0x84, 0xff, 0x83, 0x83, 0x83, 0xff, 0x82, 0x82, 0x83, 0xff, 0x80, 0x80, 0x81, 0xff, 0x7f, 0x7e, 0x82, 0xff, 0x7d, 0x7d, 0x81, 0xff, 0x7c, 0x7c, 0x7f, 0xff, 0x7b, 0x7c, 0x7e, 0xff, 0x7b, 0x7b, 0x7e, 0xff, 0x7a, 0x7a, 0x7e, 0xff, 0x79, 0x79, 0x7c, 0xff, 0x7a, 0x7a, 0x7c, 0xff, 0x79, 0x79, 0x7c, 0xff, 0x7a, 0x79, 0x7d, 0xff, 0x7b, 0x7a, 0x7d, 0xff, 0x7b, 0x7b, 0x7e, 0xff, 0x7b, 0x7c, 0x7e, 0xff, 0x7b, 0x7b, 0x7e, 0xff, 0x7b, 0x7b, 0x7e, 0xff, 0x7d, 0x7c, 0x80, 0xff, 0x7e, 0x7d, 0x82, 0xff, 0x7e, 0x7d, 0x7f, 0xff, 0x81, 0x81, 0x7d, 0xff, 0x92, 0x92, 0x8f, 0xff, 0xc1, 0xc1, 0xbf, 0xff, 0xe1, 0xe1, 0xe0, 0xff, 0xe8, 0xe8, 0xe8, 0xff, 0xea, 0xea, 0xea, 0xff, 0xd7, 0xd6, 0xd4, 0xff, 0xc6, 0xc4, 0xc2, 0xff, 0xbf, 0xbe, 0xbd, 0xff, + 0xaa, 0xaa, 0xaa, 0xff, 0xd3, 0xd3, 0xd3, 0xff, 0xf0, 0xf0, 0xf0, 0xff, 0xf1, 0xf1, 0xf1, 0xff, 0xef, 0xf2, 0xef, 0xff, 0x98, 0x94, 0x90, 0xff, 0x55, 0x59, 0x71, 0xff, 0x4b, 0x63, 0xa8, 0xff, 0x5f, 0x79, 0xc0, 0xff, 0x65, 0x7f, 0xc7, 0xff, 0x66, 0x7f, 0xc6, 0xff, 0x65, 0x7e, 0xc5, 0xff, 0x65, 0x7f, 0xc5, 0xff, 0x66, 0x7f, 0xc5, 0xff, 0x67, 0x80, 0xc6, 0xff, 0x67, 0x80, 0xc7, 0xff, 0x67, 0x80, 0xc7, 0xff, 0x67, 0x80, 0xc7, 0xff, 0x67, 0x80, 0xc7, 0xff, 0x67, 0x80, 0xc7, 0xff, 0x68, 0x81, 0xc8, 0xff, 0x69, 0x82, 0xc9, 0xff, 0x69, 0x82, 0xc9, 0xff, 0x69, 0x82, 0xca, 0xff, 0x69, 0x82, 0xca, 0xff, 0x6a, 0x82, 0xcb, 0xff, 0x6a, 0x83, 0xcb, 0xff, 0x6c, 0x83, 0xcc, 0xff, 0x6c, 0x85, 0xcd, 0xff, 0x6e, 0x86, 0xce, 0xff, 0x6f, 0x87, 0xcf, 0xff, 0x6f, 0x89, 0xd0, 0xff, 0x70, 0x8a, 0xd2, 0xff, 0x72, 0x8b, 0xd3, 0xff, 0x72, 0x8c, 0xd4, 0xff, 0x73, 0x8c, 0xd4, 0xff, 0x74, 0x8e, 0xd6, 0xff, 0x75, 0x8f, 0xd7, 0xff, 0x77, 0x90, 0xd8, 0xff, 0x78, 0x91, 0xda, 0xff, 0x79, 0x93, 0xdc, 0xff, 0x7a, 0x94, 0xdd, 0xff, 0x7c, 0x95, 0xde, 0xff, 0x7e, 0x96, 0xdf, 0xff, 0x7f, 0x96, 0xe0, 0xff, 0x82, 0x97, 0xe2, 0xff, 0x83, 0x98, 0xe4, 0xff, 0x83, 0x98, 0xe3, 0xff, 0x81, 0x98, 0xe2, 0xff, 0x80, 0x97, 0xe1, 0xff, 0x7f, 0x97, 0xe0, 0xff, 0x7d, 0x96, 0xdf, 0xff, 0x7d, 0x95, 0xde, 0xff, 0x7b, 0x94, 0xdd, 0xff, 0x7a, 0x93, 0xdc, 0xff, 0x7a, 0x93, 0xdb, 0xff, 0x78, 0x92, 0xda, 0xff, 0x77, 0x90, 0xd8, 0xff, 0x76, 0x90, 0xd8, 0xff, 0x76, 0x90, 0xd8, 0xff, 0x75, 0x8f, 0xd6, 0xff, 0x75, 0x8e, 0xd5, 0xff, 0x74, 0x8d, 0xd5, 0xff, 0x73, 0x8c, 0xd5, 0xff, 0x73, 0x8c, 0xd4, 0xff, 0x71, 0x8b, 0xd3, 0xff, 0x71, 0x8a, 0xd2, 0xff, 0x71, 0x8a, 0xd2, 0xff, 0x70, 0x89, 0xd1, 0xff, 0x70, 0x89, 0xd0, 0xff, 0x70, 0x89, 0xd0, 0xff, 0x6f, 0x88, 0xcf, 0xff, 0x6e, 0x87, 0xce, 0xff, 0x6e, 0x87, 0xcd, 0xff, 0x6d, 0x86, 0xcd, 0xff, 0x6d, 0x86, 0xcc, 0xff, 0x6b, 0x85, 0xcb, 0xff, 0x6b, 0x84, 0xca, 0xff, 0x6a, 0x84, 0xca, 0xff, 0x69, 0x83, 0xc9, 0xff, 0x69, 0x83, 0xc9, 0xff, 0x69, 0x82, 0xc9, 0xff, 0x68, 0x82, 0xc9, 0xff, 0x68, 0x81, 0xc8, 0xff, 0x67, 0x81, 0xc8, 0xff, 0x66, 0x80, 0xc7, 0xff, 0x66, 0x7f, 0xc6, 0xff, 0x66, 0x7f, 0xc6, 0xff, 0x65, 0x7f, 0xc6, 0xff, 0x65, 0x7f, 0xc5, 0xff, 0x65, 0x7e, 0xc5, 0xff, 0x64, 0x7e, 0xc5, 0xff, 0x64, 0x7d, 0xc4, 0xff, 0x64, 0x7d, 0xc5, 0xff, 0x63, 0x7c, 0xc5, 0xff, 0x62, 0x7c, 0xc4, 0xff, 0x62, 0x7c, 0xc4, 0xff, 0x62, 0x7b, 0xc4, 0xff, 0x62, 0x7b, 0xc3, 0xff, 0x61, 0x7a, 0xc3, 0xff, 0x61, 0x7b, 0xc3, 0xff, 0x61, 0x7b, 0xc3, 0xff, 0x61, 0x7a, 0xc3, 0xff, 0x62, 0x7b, 0xc3, 0xff, 0x63, 0x7c, 0xc4, 0xff, 0x63, 0x7c, 0xc4, 0xff, 0x62, 0x7c, 0xc4, 0xff, 0x62, 0x7b, 0xc4, 0xff, 0x63, 0x7c, 0xc4, 0xff, 0x64, 0x7d, 0xc6, 0xff, 0x62, 0x7c, 0xc4, 0xff, 0x5b, 0x77, 0xbb, 0xff, 0x4b, 0x62, 0xa5, 0xff, 0x56, 0x5f, 0x7f, 0xff, 0x94, 0x93, 0x96, 0xff, 0xe4, 0xe2, 0xdd, 0xff, 0xe9, 0xe9, 0xe8, 0xff, 0xe3, 0xe2, 0xe2, 0xff, 0xcd, 0xcb, 0xcb, 0xff, 0xb2, 0xb2, 0xb1, 0xff, + 0x9f, 0x9f, 0x9f, 0xff, 0xd9, 0xd9, 0xd9, 0xff, 0xfc, 0xfc, 0xfc, 0xff, 0xeb, 0xec, 0xeb, 0xff, 0xc1, 0xc5, 0xc3, 0xff, 0x56, 0x5b, 0x6d, 0xff, 0x22, 0x35, 0x71, 0xff, 0x3c, 0x64, 0xcb, 0xff, 0x59, 0x84, 0xef, 0xff, 0x62, 0x8c, 0xf7, 0xff, 0x62, 0x8c, 0xf5, 0xff, 0x61, 0x8b, 0xf4, 0xff, 0x61, 0x8b, 0xf5, 0xff, 0x62, 0x8b, 0xf4, 0xff, 0x62, 0x8c, 0xf5, 0xff, 0x62, 0x8c, 0xf5, 0xff, 0x62, 0x8c, 0xf5, 0xff, 0x62, 0x8c, 0xf5, 0xff, 0x62, 0x8c, 0xf5, 0xff, 0x62, 0x8c, 0xf5, 0xff, 0x63, 0x8c, 0xf6, 0xff, 0x63, 0x8d, 0xf6, 0xff, 0x62, 0x8d, 0xf6, 0xff, 0x62, 0x8d, 0xf6, 0xff, 0x63, 0x8d, 0xf7, 0xff, 0x62, 0x8c, 0xf7, 0xff, 0x62, 0x8c, 0xf6, 0xff, 0x62, 0x8b, 0xf6, 0xff, 0x62, 0x8c, 0xf7, 0xff, 0x62, 0x8b, 0xf7, 0xff, 0x62, 0x8c, 0xf6, 0xff, 0x62, 0x8d, 0xf6, 0xff, 0x62, 0x8c, 0xf7, 0xff, 0x62, 0x8d, 0xf7, 0xff, 0x62, 0x8d, 0xf7, 0xff, 0x62, 0x8c, 0xf7, 0xff, 0x62, 0x8d, 0xf7, 0xff, 0x62, 0x8d, 0xf7, 0xff, 0x62, 0x8c, 0xf7, 0xff, 0x62, 0x8c, 0xf9, 0xff, 0x62, 0x8d, 0xf8, 0xff, 0x62, 0x8d, 0xf9, 0xff, 0x63, 0x8c, 0xf9, 0xff, 0x64, 0x8c, 0xf9, 0xff, 0x64, 0x8b, 0xf8, 0xff, 0x65, 0x8b, 0xf9, 0xff, 0x65, 0x8b, 0xfa, 0xff, 0x65, 0x8b, 0xf9, 0xff, 0x65, 0x8c, 0xf9, 0xff, 0x65, 0x8c, 0xf9, 0xff, 0x64, 0x8c, 0xf9, 0xff, 0x62, 0x8c, 0xf8, 0xff, 0x62, 0x8c, 0xf8, 0xff, 0x62, 0x8c, 0xf8, 0xff, 0x62, 0x8c, 0xf8, 0xff, 0x62, 0x8d, 0xf7, 0xff, 0x61, 0x8c, 0xf6, 0xff, 0x61, 0x8c, 0xf6, 0xff, 0x61, 0x8c, 0xf6, 0xff, 0x61, 0x8c, 0xf7, 0xff, 0x62, 0x8c, 0xf6, 0xff, 0x61, 0x8c, 0xf5, 0xff, 0x61, 0x8b, 0xf5, 0xff, 0x61, 0x8b, 0xf6, 0xff, 0x61, 0x8b, 0xf6, 0xff, 0x61, 0x8b, 0xf6, 0xff, 0x61, 0x8b, 0xf6, 0xff, 0x62, 0x8c, 0xf6, 0xff, 0x62, 0x8c, 0xf5, 0xff, 0x62, 0x8c, 0xf5, 0xff, 0x62, 0x8c, 0xf5, 0xff, 0x62, 0x8c, 0xf5, 0xff, 0x61, 0x8b, 0xf5, 0xff, 0x61, 0x8b, 0xf5, 0xff, 0x61, 0x8b, 0xf5, 0xff, 0x61, 0x8b, 0xf5, 0xff, 0x61, 0x8c, 0xf4, 0xff, 0x61, 0x8c, 0xf4, 0xff, 0x61, 0x8b, 0xf5, 0xff, 0x61, 0x8b, 0xf5, 0xff, 0x61, 0x8b, 0xf5, 0xff, 0x61, 0x8b, 0xf5, 0xff, 0x61, 0x8b, 0xf5, 0xff, 0x61, 0x8b, 0xf5, 0xff, 0x61, 0x8b, 0xf5, 0xff, 0x61, 0x8b, 0xf5, 0xff, 0x61, 0x8b, 0xf4, 0xff, 0x61, 0x8b, 0xf4, 0xff, 0x61, 0x8b, 0xf4, 0xff, 0x61, 0x8b, 0xf5, 0xff, 0x61, 0x8b, 0xf5, 0xff, 0x61, 0x8b, 0xf5, 0xff, 0x61, 0x8b, 0xf5, 0xff, 0x62, 0x8b, 0xf5, 0xff, 0x61, 0x8b, 0xf5, 0xff, 0x61, 0x8b, 0xf5, 0xff, 0x61, 0x8b, 0xf5, 0xff, 0x62, 0x8b, 0xf5, 0xff, 0x62, 0x8b, 0xf5, 0xff, 0x61, 0x8b, 0xf5, 0xff, 0x61, 0x8c, 0xf5, 0xff, 0x61, 0x8b, 0xf5, 0xff, 0x61, 0x8b, 0xf5, 0xff, 0x61, 0x8b, 0xf5, 0xff, 0x62, 0x8b, 0xf5, 0xff, 0x62, 0x8c, 0xf5, 0xff, 0x61, 0x8b, 0xf5, 0xff, 0x61, 0x8b, 0xf5, 0xff, 0x62, 0x8b, 0xf5, 0xff, 0x62, 0x8c, 0xf6, 0xff, 0x61, 0x8c, 0xf5, 0xff, 0x59, 0x84, 0xeb, 0xff, 0x3c, 0x65, 0xcb, 0xff, 0x26, 0x3d, 0x7e, 0xff, 0x59, 0x60, 0x78, 0xff, 0xbf, 0xbe, 0xbd, 0xff, 0xe2, 0xe2, 0xe2, 0xff, 0xeb, 0xea, 0xea, 0xff, 0xd1, 0xd1, 0xd1, 0xff, 0xac, 0xac, 0xab, 0xff, + 0xa3, 0xa3, 0xa3, 0xff, 0xd9, 0xd9, 0xda, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe6, 0xe6, 0xe4, 0xff, 0x5c, 0x5b, 0x5f, 0xff, 0x36, 0x53, 0x9a, 0xff, 0x4e, 0x7d, 0xe3, 0xff, 0x7a, 0xa4, 0xf7, 0xff, 0x77, 0xa4, 0xf9, 0xff, 0x78, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa5, 0xfa, 0xff, 0x79, 0xa5, 0xfa, 0xff, 0x79, 0xa5, 0xfa, 0xff, 0x79, 0xa5, 0xfa, 0xff, 0x79, 0xa5, 0xfa, 0xff, 0x79, 0xa4, 0xfa, 0xff, 0x78, 0xa4, 0xfa, 0xff, 0x78, 0xa4, 0xfa, 0xff, 0x78, 0xa4, 0xfa, 0xff, 0x78, 0xa4, 0xfa, 0xff, 0x78, 0xa3, 0xfa, 0xff, 0x78, 0xa3, 0xfa, 0xff, 0x78, 0xa4, 0xfa, 0xff, 0x79, 0xa4, 0xfa, 0xff, 0x7a, 0xa4, 0xfa, 0xff, 0x79, 0xa4, 0xfa, 0xff, 0x79, 0xa4, 0xfa, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa3, 0xfb, 0xff, 0x79, 0xa3, 0xfb, 0xff, 0x79, 0xa3, 0xfb, 0xff, 0x79, 0xa3, 0xfb, 0xff, 0x7a, 0xa3, 0xfb, 0xff, 0x7c, 0xa2, 0xfb, 0xff, 0x7a, 0xa3, 0xfb, 0xff, 0x79, 0xa3, 0xfa, 0xff, 0x7a, 0xa3, 0xfb, 0xff, 0x7d, 0xa4, 0xfc, 0xff, 0x7c, 0xa4, 0xfc, 0xff, 0x7a, 0xa3, 0xfb, 0xff, 0x79, 0xa3, 0xfb, 0xff, 0x79, 0xa3, 0xfb, 0xff, 0x79, 0xa3, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfa, 0xff, 0x79, 0xa4, 0xfa, 0xff, 0x79, 0xa4, 0xfa, 0xff, 0x79, 0xa4, 0xfa, 0xff, 0x78, 0xa4, 0xfa, 0xff, 0x78, 0xa3, 0xfa, 0xff, 0x78, 0xa3, 0xfa, 0xff, 0x78, 0xa3, 0xfa, 0xff, 0x78, 0xa4, 0xfa, 0xff, 0x78, 0xa4, 0xfa, 0xff, 0x78, 0xa4, 0xfa, 0xff, 0x78, 0xa4, 0xfa, 0xff, 0x79, 0xa4, 0xfa, 0xff, 0x79, 0xa5, 0xfa, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x79, 0xa4, 0xfb, 0xff, 0x7b, 0xa5, 0xfa, 0xff, 0x7d, 0xa5, 0xf9, 0xff, 0x75, 0xa2, 0xf8, 0xff, 0x4a, 0x72, 0xd0, 0xff, 0x40, 0x59, 0x9a, 0xff, 0x74, 0x78, 0x84, 0xff, 0xd8, 0xd8, 0xd9, 0xff, 0xed, 0xec, 0xec, 0xff, 0xd3, 0xd3, 0xd3, 0xff, 0xae, 0xaf, 0xae, 0xff, + 0xa6, 0xa6, 0xa6, 0xff, 0xdd, 0xdd, 0xdd, 0xff, 0xf9, 0xf8, 0xf5, 0xff, 0xc9, 0xc9, 0xc9, 0xff, 0x34, 0x40, 0x65, 0xff, 0x3c, 0x67, 0xc2, 0xff, 0x6b, 0xa2, 0xff, 0xff, 0x84, 0xb3, 0xff, 0xff, 0x7c, 0xac, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xab, 0xfe, 0xff, 0x7b, 0xab, 0xfd, 0xff, 0x7b, 0xab, 0xfe, 0xff, 0x7b, 0xab, 0xfd, 0xff, 0x7b, 0xaa, 0xfd, 0xff, 0x7b, 0xaa, 0xfd, 0xff, 0x7a, 0xaa, 0xfd, 0xff, 0x7a, 0xaa, 0xfd, 0xff, 0x7a, 0xaa, 0xfd, 0xff, 0x7a, 0xaa, 0xfd, 0xff, 0x7a, 0xa9, 0xfd, 0xff, 0x7a, 0xa9, 0xfd, 0xff, 0x7a, 0xaa, 0xfd, 0xff, 0x7b, 0xaa, 0xfd, 0xff, 0x7c, 0xaa, 0xfd, 0xff, 0x7b, 0xaa, 0xfd, 0xff, 0x7b, 0xaa, 0xfd, 0xff, 0x7b, 0xaa, 0xfd, 0xff, 0x7b, 0xa9, 0xfe, 0xff, 0x7b, 0xa9, 0xfe, 0xff, 0x7b, 0xa9, 0xfe, 0xff, 0x7b, 0xa9, 0xfe, 0xff, 0x7c, 0xa9, 0xfe, 0xff, 0x7d, 0xa9, 0xfe, 0xff, 0x7b, 0xa9, 0xfd, 0xff, 0x7a, 0xa9, 0xfd, 0xff, 0x7b, 0xa9, 0xfd, 0xff, 0x7d, 0xaa, 0xfe, 0xff, 0x7d, 0xaa, 0xfe, 0xff, 0x7c, 0xa9, 0xfe, 0xff, 0x7b, 0xa9, 0xfe, 0xff, 0x7b, 0xa9, 0xfe, 0xff, 0x7b, 0xa9, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfd, 0xff, 0x7b, 0xaa, 0xfd, 0xff, 0x7c, 0xaa, 0xfd, 0xff, 0x7b, 0xaa, 0xfd, 0xff, 0x7a, 0xaa, 0xfd, 0xff, 0x7a, 0xa9, 0xfd, 0xff, 0x7a, 0xa9, 0xfd, 0xff, 0x7a, 0xaa, 0xfd, 0xff, 0x7a, 0xaa, 0xfd, 0xff, 0x7a, 0xaa, 0xfd, 0xff, 0x7a, 0xaa, 0xfd, 0xff, 0x7b, 0xaa, 0xfd, 0xff, 0x7b, 0xaa, 0xfd, 0xff, 0x7b, 0xab, 0xfd, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7b, 0xaa, 0xfe, 0xff, 0x7d, 0xab, 0xfe, 0xff, 0x81, 0xad, 0xff, 0xff, 0x82, 0xb1, 0xff, 0xff, 0x65, 0x97, 0xfa, 0xff, 0x3e, 0x63, 0xb5, 0xff, 0x41, 0x4e, 0x6e, 0xff, 0xcf, 0xcf, 0xd4, 0xff, 0xee, 0xed, 0xec, 0xff, 0xd4, 0xd5, 0xd4, 0xff, 0xaf, 0xb0, 0xaf, 0xff, + 0xa8, 0xa8, 0xa8, 0xff, 0xe2, 0xe2, 0xe3, 0xff, 0xea, 0xe7, 0xe1, 0xff, 0xa3, 0xa3, 0xa4, 0xff, 0x37, 0x59, 0xaa, 0xff, 0x59, 0x89, 0xe3, 0xff, 0x7a, 0xae, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x71, 0xa5, 0xff, 0xff, 0x72, 0xa5, 0xff, 0xff, 0x73, 0xa5, 0xff, 0xff, 0x78, 0xae, 0xff, 0xff, 0x49, 0x77, 0xc9, 0xff, 0x25, 0x3c, 0x74, 0xff, 0xc5, 0xc6, 0xcf, 0xff, 0xed, 0xec, 0xea, 0xff, 0xd5, 0xd6, 0xd5, 0xff, 0xb1, 0xaf, 0xaf, 0xff, + 0xa8, 0xa8, 0xa8, 0xff, 0xe4, 0xe4, 0xe5, 0xff, 0xe4, 0xe0, 0xd9, 0xff, 0x94, 0x95, 0x96, 0xff, 0x43, 0x70, 0xca, 0xff, 0x5d, 0x94, 0xf2, 0xff, 0x74, 0xac, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6d, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6d, 0xa3, 0xff, 0xff, 0x6d, 0xa3, 0xff, 0xff, 0x6d, 0xa3, 0xff, 0xff, 0x6d, 0xa3, 0xff, 0xff, 0x6d, 0xa3, 0xff, 0xff, 0x6d, 0xa3, 0xff, 0xff, 0x6d, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6d, 0xa3, 0xff, 0xff, 0x6d, 0xa3, 0xff, 0xff, 0x6d, 0xa3, 0xff, 0xff, 0x6d, 0xa3, 0xff, 0xff, 0x6d, 0xa3, 0xff, 0xff, 0x6d, 0xa3, 0xff, 0xff, 0x6d, 0xa3, 0xff, 0xff, 0x6d, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6c, 0xa3, 0xff, 0xff, 0x6d, 0xa3, 0xff, 0xff, 0x77, 0xb1, 0xff, 0xff, 0x4d, 0x82, 0xd7, 0xff, 0x24, 0x47, 0x8d, 0xff, 0xb9, 0xbc, 0xc6, 0xff, 0xe8, 0xe7, 0xe5, 0xff, 0xd8, 0xd7, 0xd7, 0xff, 0xb1, 0xb0, 0xb0, 0xff, + 0xa7, 0xa7, 0xa7, 0xff, 0xe4, 0xe4, 0xe5, 0xff, 0xe1, 0xdd, 0xd6, 0xff, 0x90, 0x91, 0x91, 0xff, 0x50, 0x83, 0xda, 0xff, 0x5a, 0x98, 0xf8, 0xff, 0x69, 0xa5, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa2, 0xff, 0xff, 0x68, 0xa1, 0xff, 0xff, 0x71, 0xad, 0xff, 0xff, 0x4d, 0x87, 0xdf, 0xff, 0x2c, 0x58, 0xa4, 0xff, 0xb1, 0xb6, 0xc1, 0xff, 0xe5, 0xe3, 0xe1, 0xff, 0xd9, 0xd9, 0xd8, 0xff, 0xb2, 0xb1, 0xb1, 0xff, + 0xa7, 0xa7, 0xa7, 0xff, 0xe4, 0xe4, 0xe5, 0xff, 0xe2, 0xdd, 0xd7, 0xff, 0x92, 0x92, 0x93, 0xff, 0x4e, 0x85, 0xdb, 0xff, 0x56, 0x97, 0xf8, 0xff, 0x65, 0xa3, 0xff, 0xff, 0x64, 0xa0, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa1, 0xff, 0xff, 0x64, 0xa0, 0xff, 0xff, 0x64, 0xa0, 0xff, 0xff, 0x6c, 0xaa, 0xff, 0xff, 0x4a, 0x86, 0xe0, 0xff, 0x2e, 0x5b, 0xa7, 0xff, 0xb3, 0xb7, 0xc3, 0xff, 0xe6, 0xe4, 0xe2, 0xff, 0xd9, 0xd9, 0xd8, 0xff, 0xb2, 0xb0, 0xb0, 0xff, + 0xa7, 0xa7, 0xa7, 0xff, 0xe4, 0xe4, 0xe5, 0xff, 0xe3, 0xde, 0xd7, 0xff, 0x95, 0x94, 0x96, 0xff, 0x4c, 0x85, 0xdb, 0xff, 0x52, 0x96, 0xf8, 0xff, 0x60, 0xa2, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0xa0, 0xff, 0xff, 0x5e, 0x9f, 0xff, 0xff, 0x65, 0xa9, 0xff, 0xff, 0x45, 0x86, 0xe0, 0xff, 0x2d, 0x5d, 0xa8, 0xff, 0xb6, 0xba, 0xc6, 0xff, 0xe7, 0xe5, 0xe3, 0xff, 0xd9, 0xd9, 0xd8, 0xff, 0xb2, 0xb0, 0xb0, 0xff, + 0xa7, 0xa7, 0xa7, 0xff, 0xe4, 0xe4, 0xe5, 0xff, 0xe4, 0xdf, 0xd8, 0xff, 0x96, 0x97, 0x97, 0xff, 0x4b, 0x84, 0xdc, 0xff, 0x4d, 0x95, 0xf7, 0xff, 0x59, 0xa1, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x57, 0x9f, 0xff, 0xff, 0x56, 0x9f, 0xff, 0xff, 0x5b, 0xa8, 0xff, 0xff, 0x3d, 0x86, 0xe1, 0xff, 0x2a, 0x5e, 0xaa, 0xff, 0xb8, 0xbc, 0xc6, 0xff, 0xe8, 0xe6, 0xe3, 0xff, 0xd8, 0xd8, 0xd8, 0xff, 0xb2, 0xb0, 0xb0, 0xff, + 0xa7, 0xa7, 0xa7, 0xff, 0xe4, 0xe4, 0xe5, 0xff, 0xe5, 0xe0, 0xd9, 0xff, 0x98, 0x98, 0x99, 0xff, 0x47, 0x84, 0xdd, 0xff, 0x47, 0x94, 0xf8, 0xff, 0x52, 0xa0, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x50, 0x9e, 0xff, 0xff, 0x4f, 0x9e, 0xff, 0xff, 0x56, 0xa6, 0xff, 0xff, 0x39, 0x85, 0xe1, 0xff, 0x29, 0x5f, 0xac, 0xff, 0xb9, 0xbd, 0xc7, 0xff, 0xe9, 0xe6, 0xe3, 0xff, 0xd8, 0xd8, 0xd8, 0xff, 0xb2, 0xb0, 0xb0, 0xff, + 0xa7, 0xa7, 0xa7, 0xff, 0xe4, 0xe4, 0xe5, 0xff, 0xe7, 0xe2, 0xda, 0xff, 0x99, 0x9a, 0x9b, 0xff, 0x3f, 0x83, 0xde, 0xff, 0x3f, 0x92, 0xf8, 0xff, 0x4c, 0x9f, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x49, 0x9c, 0xff, 0xff, 0x4a, 0x9c, 0xff, 0xff, 0x51, 0xa4, 0xff, 0xff, 0x36, 0x83, 0xe2, 0xff, 0x27, 0x5f, 0xac, 0xff, 0xb9, 0xbe, 0xc8, 0xff, 0xe9, 0xe6, 0xe4, 0xff, 0xd8, 0xd8, 0xd8, 0xff, 0xb2, 0xb0, 0xb0, 0xff, + 0xa7, 0xa7, 0xa7, 0xff, 0xe4, 0xe4, 0xe5, 0xff, 0xe9, 0xe3, 0xdb, 0xff, 0x9b, 0x9c, 0x9d, 0xff, 0x30, 0x7d, 0xdf, 0xff, 0x37, 0x90, 0xf8, 0xff, 0x49, 0x9f, 0xff, 0xff, 0x45, 0x9c, 0xff, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xfe, 0xff, 0x44, 0x9b, 0xff, 0xff, 0x44, 0x9b, 0xff, 0xff, 0x46, 0x9c, 0xfe, 0xff, 0x4a, 0xa2, 0xff, 0xff, 0x2c, 0x7f, 0xe1, 0xff, 0x1e, 0x5c, 0xac, 0xff, 0xb7, 0xbe, 0xca, 0xff, 0xe9, 0xe7, 0xe4, 0xff, 0xd8, 0xd8, 0xd8, 0xff, 0xb2, 0xb0, 0xb1, 0xff, + 0xa7, 0xa7, 0xa7, 0xff, 0xe4, 0xe4, 0xe5, 0xff, 0xeb, 0xe4, 0xdc, 0xff, 0x9d, 0x9e, 0x9f, 0xff, 0x24, 0x79, 0xdf, 0xff, 0x29, 0x8a, 0xf8, 0xff, 0x40, 0x9b, 0xff, 0xff, 0x41, 0x9b, 0xff, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xfe, 0xff, 0x40, 0x9a, 0xff, 0xff, 0x41, 0x9b, 0xfe, 0xff, 0x3e, 0x9c, 0xff, 0xff, 0x1d, 0x79, 0xe1, 0xff, 0x15, 0x5a, 0xab, 0xff, 0xb7, 0xbf, 0xcc, 0xff, 0xea, 0xe7, 0xe5, 0xff, 0xd8, 0xd8, 0xd7, 0xff, 0xb1, 0xb0, 0xb0, 0xff, + 0xa7, 0xa7, 0xa7, 0xff, 0xe3, 0xe4, 0xe5, 0xff, 0xec, 0xe5, 0xdc, 0xff, 0x9f, 0x9f, 0xa0, 0xff, 0x1f, 0x79, 0xde, 0xff, 0x11, 0x7d, 0xf9, 0xff, 0x29, 0x8d, 0xff, 0xff, 0x3c, 0x98, 0xfe, 0xff, 0x3f, 0x9a, 0xff, 0xff, 0x40, 0x9b, 0xff, 0xff, 0x40, 0x9b, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xff, 0xff, 0x3f, 0x9c, 0xfe, 0xff, 0x3c, 0x99, 0xff, 0xff, 0x28, 0x91, 0xff, 0xff, 0x08, 0x6f, 0xe1, 0xff, 0x12, 0x5a, 0xac, 0xff, 0xba, 0xc1, 0xcd, 0xff, 0xec, 0xe8, 0xe7, 0xff, 0xd8, 0xd8, 0xd8, 0xff, 0xb1, 0xb1, 0xb0, 0xff, + 0xa7, 0xa7, 0xa7, 0xff, 0xe3, 0xe4, 0xe4, 0xff, 0xed, 0xe5, 0xdd, 0xff, 0xa1, 0xa1, 0xa2, 0xff, 0x1e, 0x7b, 0xdf, 0xff, 0x03, 0x77, 0xf9, 0xff, 0x14, 0x82, 0xff, 0xff, 0x29, 0x8f, 0xfd, 0xff, 0x2e, 0x92, 0xfe, 0xff, 0x31, 0x93, 0xff, 0xff, 0x30, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2e, 0x94, 0xff, 0xff, 0x2f, 0x94, 0xfe, 0xff, 0x2f, 0x93, 0xfe, 0xff, 0x29, 0x8f, 0xff, 0xff, 0x14, 0x88, 0xff, 0xff, 0x00, 0x6b, 0xe2, 0xff, 0x12, 0x5c, 0xae, 0xff, 0xbd, 0xc4, 0xd0, 0xff, 0xee, 0xea, 0xe8, 0xff, 0xd8, 0xd9, 0xd8, 0xff, 0xb0, 0xb0, 0xaf, 0xff, + 0xa7, 0xa7, 0xa7, 0xff, 0xe2, 0xe3, 0xe3, 0xff, 0xed, 0xe6, 0xdd, 0xff, 0xa4, 0xa5, 0xa5, 0xff, 0x22, 0x7f, 0xe1, 0xff, 0x01, 0x78, 0xfa, 0xff, 0x03, 0x7b, 0xff, 0xff, 0x0a, 0x7f, 0xfe, 0xff, 0x10, 0x82, 0xfd, 0xff, 0x13, 0x83, 0xfd, 0xff, 0x12, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x10, 0x84, 0xfd, 0xff, 0x11, 0x84, 0xfe, 0xff, 0x10, 0x82, 0xff, 0xff, 0x0a, 0x7e, 0xfe, 0xff, 0x04, 0x81, 0xff, 0xff, 0x00, 0x6c, 0xe2, 0xff, 0x15, 0x60, 0xaf, 0xff, 0xc1, 0xc7, 0xd2, 0xff, 0xef, 0xeb, 0xe9, 0xff, 0xd8, 0xd9, 0xd8, 0xff, 0xb1, 0xb0, 0xb0, 0xff, + 0xab, 0xab, 0xab, 0xff, 0xe7, 0xe7, 0xe8, 0xff, 0xf2, 0xea, 0xe2, 0xff, 0xa7, 0xa8, 0xa8, 0xff, 0x22, 0x82, 0xe2, 0xff, 0x00, 0x7b, 0xfa, 0xff, 0x00, 0x7c, 0xff, 0xff, 0x00, 0x7d, 0xfe, 0xff, 0x03, 0x7e, 0xfe, 0xff, 0x05, 0x7f, 0xfe, 0xff, 0x04, 0x7f, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x03, 0x80, 0xfe, 0xff, 0x04, 0x7f, 0xfe, 0xff, 0x03, 0x7e, 0xff, 0xff, 0x00, 0x7c, 0xfe, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x6e, 0xe2, 0xff, 0x16, 0x63, 0xb1, 0xff, 0xc1, 0xc8, 0xd3, 0xff, 0xed, 0xea, 0xe8, 0xff, 0xd6, 0xd6, 0xd6, 0xff, 0xb0, 0xaf, 0xaf, 0xff, + 0xaa, 0xaa, 0xaa, 0xff, 0xe6, 0xe7, 0xe8, 0xff, 0xf3, 0xea, 0xe2, 0xff, 0xa9, 0xa9, 0xa9, 0xff, 0x21, 0x85, 0xe3, 0xff, 0x00, 0x7f, 0xfa, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x81, 0xff, 0xff, 0x00, 0x85, 0xff, 0xff, 0x00, 0x72, 0xe4, 0xff, 0x16, 0x65, 0xb2, 0xff, 0xb5, 0xbe, 0xc8, 0xff, 0xd9, 0xd6, 0xd4, 0xff, 0xc7, 0xc7, 0xc7, 0xff, 0xad, 0xac, 0xac, 0xff, + 0x99, 0x99, 0x99, 0xff, 0xd4, 0xd5, 0xd6, 0xff, 0xe7, 0xde, 0xd6, 0xff, 0xa8, 0xa7, 0xa8, 0xff, 0x22, 0x87, 0xe3, 0xff, 0x00, 0x83, 0xfb, 0xff, 0x00, 0x85, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x84, 0xff, 0xff, 0x00, 0x88, 0xff, 0xff, 0x00, 0x7a, 0xe9, 0xff, 0x18, 0x67, 0xb3, 0xff, 0x82, 0x8b, 0x96, 0xff, 0x89, 0x86, 0x84, 0xff, 0x8b, 0x8a, 0x8a, 0xff, 0x9e, 0x9d, 0x9d, 0xff, + 0x75, 0x75, 0x75, 0xff, 0xa5, 0xa6, 0xa6, 0xff, 0xbb, 0xb3, 0xab, 0xff, 0x93, 0x92, 0x93, 0xff, 0x20, 0x86, 0xe0, 0xff, 0x01, 0x86, 0xfc, 0xff, 0x00, 0x88, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x87, 0xff, 0xff, 0x00, 0x8b, 0xff, 0xff, 0x04, 0x81, 0xed, 0xff, 0x1a, 0x6a, 0xb4, 0xff, 0x54, 0x5d, 0x67, 0xff, 0x45, 0x42, 0x40, 0xff, 0x59, 0x58, 0x58, 0xff, 0x93, 0x92, 0x92, 0xff, + 0x36, 0x36, 0x36, 0xff, 0x49, 0x4a, 0x4b, 0xff, 0x60, 0x57, 0x4f, 0xff, 0x5e, 0x5e, 0x5e, 0xff, 0x18, 0x80, 0xd9, 0xff, 0x02, 0x89, 0xfd, 0xff, 0x00, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x8a, 0xff, 0xff, 0x01, 0x89, 0xff, 0xff, 0x00, 0x8e, 0xff, 0xff, 0x06, 0x86, 0xf0, 0xff, 0x1c, 0x6d, 0xb6, 0xff, 0x3b, 0x44, 0x50, 0xff, 0x2a, 0x27, 0x26, 0xff, 0x4b, 0x4b, 0x4a, 0xff, 0x94, 0x93, 0x93, 0xff, + 0x15, 0x15, 0x15, 0xff, 0x17, 0x17, 0x18, 0xff, 0x2c, 0x22, 0x1b, 0xff, 0x40, 0x40, 0x40, 0xff, 0x14, 0x7f, 0xd5, 0xff, 0x03, 0x8d, 0xfe, 0xff, 0x00, 0x8d, 0xff, 0xff, 0x01, 0x8e, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x01, 0x8d, 0xff, 0xff, 0x00, 0x91, 0xff, 0xff, 0x07, 0x8a, 0xf1, 0xff, 0x1d, 0x70, 0xb6, 0xff, 0x32, 0x3b, 0x46, 0xff, 0x1f, 0x1c, 0x1a, 0xff, 0x45, 0x44, 0x44, 0xff, 0x95, 0x94, 0x93, 0xff, + 0x11, 0x11, 0x11, 0xff, 0x0c, 0x0d, 0x0d, 0xff, 0x1f, 0x16, 0x0f, 0xff, 0x39, 0x39, 0x3a, 0xff, 0x14, 0x80, 0xd3, 0xff, 0x06, 0x90, 0xfd, 0xff, 0x02, 0x91, 0xff, 0xff, 0x01, 0x92, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x01, 0x91, 0xff, 0xff, 0x00, 0x95, 0xff, 0xff, 0x07, 0x8e, 0xf0, 0xff, 0x1d, 0x73, 0xb5, 0xff, 0x36, 0x3e, 0x47, 0xff, 0x1f, 0x1b, 0x19, 0xff, 0x43, 0x43, 0x42, 0xff, 0x95, 0x94, 0x93, 0xff, + 0x14, 0x14, 0x14, 0xff, 0x06, 0x07, 0x08, 0xff, 0x19, 0x10, 0x0a, 0xff, 0x3a, 0x3b, 0x3b, 0xff, 0x17, 0x78, 0xc2, 0xff, 0x08, 0x90, 0xf7, 0xff, 0x03, 0x95, 0xff, 0xff, 0x01, 0x92, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x00, 0x96, 0xff, 0xff, 0x0d, 0x92, 0xf2, 0xff, 0x2b, 0x79, 0xb2, 0xff, 0x2e, 0x34, 0x39, 0xff, 0x16, 0x12, 0x0f, 0xff, 0x44, 0x44, 0x43, 0xff, 0xa1, 0xa0, 0x9f, 0xff, + 0x22, 0x22, 0x22, 0xff, 0x09, 0x09, 0x0a, 0xff, 0x15, 0x0f, 0x0a, 0xff, 0x3c, 0x3c, 0x3b, 0xff, 0x21, 0x6d, 0xa5, 0xff, 0x0e, 0x8d, 0xe9, 0xff, 0x04, 0x97, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x93, 0xff, 0xff, 0x02, 0x94, 0xff, 0xff, 0x00, 0x95, 0xff, 0xff, 0x16, 0x93, 0xec, 0xff, 0x3c, 0x7a, 0xa6, 0xff, 0x20, 0x24, 0x25, 0xff, 0x12, 0x0e, 0x0b, 0xff, 0x4e, 0x4d, 0x4d, 0xff, 0xaf, 0xae, 0xad, 0xff, + 0x3c, 0x3c, 0x3c, 0xff, 0x10, 0x10, 0x10, 0xff, 0x06, 0x03, 0x00, 0xff, 0x2a, 0x2a, 0x29, 0xff, 0x46, 0x67, 0x80, 0xff, 0x1d, 0x85, 0xce, 0xff, 0x00, 0x93, 0xfb, 0xff, 0x00, 0x99, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x97, 0xff, 0xff, 0x00, 0x97, 0xff, 0xff, 0x00, 0x97, 0xff, 0xff, 0x00, 0x97, 0xff, 0xff, 0x00, 0x97, 0xff, 0xff, 0x00, 0x97, 0xff, 0xff, 0x00, 0x96, 0xff, 0xff, 0x00, 0x96, 0xff, 0xff, 0x00, 0x96, 0xff, 0xff, 0x00, 0x96, 0xff, 0xff, 0x00, 0x96, 0xff, 0xff, 0x00, 0x96, 0xff, 0xff, 0x00, 0x96, 0xff, 0xff, 0x00, 0x96, 0xff, 0xff, 0x00, 0x96, 0xff, 0xff, 0x00, 0x95, 0xff, 0xff, 0x00, 0x95, 0xff, 0xff, 0x00, 0x95, 0xff, 0xff, 0x00, 0x95, 0xff, 0xff, 0x00, 0x95, 0xff, 0xff, 0x00, 0x94, 0xff, 0xff, 0x00, 0x94, 0xff, 0xff, 0x00, 0x94, 0xff, 0xff, 0x00, 0x94, 0xff, 0xff, 0x00, 0x93, 0xff, 0xff, 0x00, 0x93, 0xff, 0xff, 0x00, 0x93, 0xff, 0xff, 0x00, 0x93, 0xff, 0xff, 0x00, 0x93, 0xff, 0xff, 0x00, 0x92, 0xff, 0xff, 0x00, 0x91, 0xff, 0xff, 0x00, 0x91, 0xff, 0xff, 0x00, 0x92, 0xff, 0xff, 0x00, 0x92, 0xff, 0xff, 0x00, 0x92, 0xff, 0xff, 0x00, 0x93, 0xff, 0xff, 0x00, 0x93, 0xff, 0xff, 0x00, 0x93, 0xff, 0xff, 0x00, 0x93, 0xff, 0xff, 0x00, 0x94, 0xff, 0xff, 0x00, 0x94, 0xff, 0xff, 0x00, 0x94, 0xff, 0xff, 0x00, 0x94, 0xff, 0xff, 0x00, 0x95, 0xff, 0xff, 0x00, 0x95, 0xff, 0xff, 0x00, 0x95, 0xff, 0xff, 0x00, 0x95, 0xff, 0xff, 0x00, 0x95, 0xff, 0xff, 0x00, 0x96, 0xff, 0xff, 0x00, 0x96, 0xff, 0xff, 0x00, 0x96, 0xff, 0xff, 0x00, 0x96, 0xff, 0xff, 0x00, 0x96, 0xff, 0xff, 0x00, 0x96, 0xff, 0xff, 0x00, 0x96, 0xff, 0xff, 0x00, 0x96, 0xff, 0xff, 0x00, 0x96, 0xff, 0xff, 0x00, 0x96, 0xff, 0xff, 0x00, 0x97, 0xff, 0xff, 0x00, 0x97, 0xff, 0xff, 0x00, 0x97, 0xff, 0xff, 0x00, 0x97, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x98, 0xff, 0xff, 0x00, 0x97, 0xff, 0xff, 0x00, 0x92, 0xfc, 0xff, 0x26, 0x8c, 0xd3, 0xff, 0x50, 0x6f, 0x82, 0xff, 0x0c, 0x0e, 0x0e, 0xff, 0x1f, 0x1c, 0x1a, 0xff, 0x6b, 0x69, 0x69, 0xff, 0xba, 0xb8, 0xb7, 0xff, + 0x55, 0x55, 0x55, 0xff, 0x23, 0x23, 0x23, 0xff, 0x05, 0x04, 0x03, 0xff, 0x16, 0x15, 0x14, 0xff, 0x50, 0x53, 0x56, 0xff, 0x31, 0x77, 0xa7, 0xff, 0x10, 0x8e, 0xe2, 0xff, 0x09, 0x9c, 0xfb, 0xff, 0x05, 0x99, 0xfa, 0xff, 0x04, 0x98, 0xfb, 0xff, 0x04, 0x98, 0xfb, 0xff, 0x04, 0x98, 0xfb, 0xff, 0x04, 0x98, 0xfb, 0xff, 0x04, 0x98, 0xfb, 0xff, 0x04, 0x98, 0xfb, 0xff, 0x04, 0x98, 0xfb, 0xff, 0x04, 0x98, 0xfb, 0xff, 0x04, 0x98, 0xfb, 0xff, 0x04, 0x98, 0xfb, 0xff, 0x04, 0x98, 0xfb, 0xff, 0x04, 0x98, 0xfb, 0xff, 0x04, 0x98, 0xfb, 0xff, 0x04, 0x98, 0xfb, 0xff, 0x04, 0x98, 0xfb, 0xff, 0x04, 0x98, 0xfb, 0xff, 0x04, 0x98, 0xfb, 0xff, 0x04, 0x98, 0xfb, 0xff, 0x04, 0x98, 0xfb, 0xff, 0x04, 0x99, 0xfb, 0xff, 0x04, 0x99, 0xfb, 0xff, 0x04, 0x99, 0xfb, 0xff, 0x03, 0x99, 0xfb, 0xff, 0x03, 0x99, 0xfb, 0xff, 0x03, 0x99, 0xfb, 0xff, 0x04, 0x99, 0xfb, 0xff, 0x04, 0x99, 0xfb, 0xff, 0x04, 0x99, 0xfb, 0xff, 0x04, 0x99, 0xfc, 0xff, 0x04, 0x99, 0xfc, 0xff, 0x04, 0x98, 0xfb, 0xff, 0x04, 0x99, 0xfb, 0xff, 0x04, 0x99, 0xfc, 0xff, 0x04, 0x99, 0xfc, 0xff, 0x05, 0x99, 0xfc, 0xff, 0x05, 0x99, 0xfc, 0xff, 0x05, 0x99, 0xfc, 0xff, 0x06, 0x99, 0xfc, 0xff, 0x06, 0x99, 0xfc, 0xff, 0x06, 0x9a, 0xfc, 0xff, 0x06, 0x9a, 0xfd, 0xff, 0x06, 0x9a, 0xfd, 0xff, 0x06, 0x9a, 0xfd, 0xff, 0x07, 0x9b, 0xfd, 0xff, 0x07, 0x9a, 0xfd, 0xff, 0x07, 0x9a, 0xfe, 0xff, 0x07, 0x9a, 0xfe, 0xff, 0x08, 0x9a, 0xfe, 0xff, 0x08, 0x9b, 0xfe, 0xff, 0x08, 0x9b, 0xff, 0xff, 0x09, 0x9b, 0xff, 0xff, 0x09, 0x9c, 0xff, 0xff, 0x09, 0x9b, 0xff, 0xff, 0x09, 0x9b, 0xff, 0xff, 0x0a, 0x9c, 0xff, 0xff, 0x0a, 0x9c, 0xff, 0xff, 0x0b, 0x9c, 0xff, 0xff, 0x0b, 0x9d, 0xff, 0xff, 0x0b, 0x9d, 0xff, 0xff, 0x0c, 0x9d, 0xff, 0xff, 0x0c, 0x9d, 0xff, 0xff, 0x0c, 0x9d, 0xff, 0xff, 0x0b, 0x9d, 0xff, 0xff, 0x0b, 0x9d, 0xff, 0xff, 0x0b, 0x9c, 0xff, 0xff, 0x0a, 0x9c, 0xff, 0xff, 0x0a, 0x9c, 0xff, 0xff, 0x09, 0x9b, 0xff, 0xff, 0x09, 0x9c, 0xff, 0xff, 0x09, 0x9c, 0xff, 0xff, 0x08, 0x9b, 0xff, 0xff, 0x08, 0x9b, 0xff, 0xff, 0x08, 0x9b, 0xfe, 0xff, 0x08, 0x9b, 0xfe, 0xff, 0x07, 0x9a, 0xfe, 0xff, 0x07, 0x9a, 0xfe, 0xff, 0x07, 0x9a, 0xfd, 0xff, 0x07, 0x9b, 0xfd, 0xff, 0x06, 0x9a, 0xfd, 0xff, 0x06, 0x9a, 0xfd, 0xff, 0x06, 0x9a, 0xfd, 0xff, 0x06, 0x9a, 0xfc, 0xff, 0x06, 0x99, 0xfc, 0xff, 0x06, 0x99, 0xfc, 0xff, 0x05, 0x99, 0xfc, 0xff, 0x05, 0x99, 0xfc, 0xff, 0x05, 0x99, 0xfc, 0xff, 0x05, 0x99, 0xfc, 0xff, 0x04, 0x99, 0xfc, 0xff, 0x04, 0x99, 0xfb, 0xff, 0x04, 0x99, 0xfc, 0xff, 0x04, 0x99, 0xfc, 0xff, 0x04, 0x99, 0xfc, 0xff, 0x04, 0x99, 0xfb, 0xff, 0x04, 0x99, 0xfb, 0xff, 0x04, 0x99, 0xfb, 0xff, 0x03, 0x99, 0xfb, 0xff, 0x03, 0x99, 0xfb, 0xff, 0x04, 0x99, 0xfb, 0xff, 0x04, 0x99, 0xfb, 0xff, 0x04, 0x99, 0xfb, 0xff, 0x04, 0x98, 0xfb, 0xff, 0x05, 0x98, 0xfa, 0xff, 0x08, 0x99, 0xfb, 0xff, 0x15, 0x8f, 0xe3, 0xff, 0x35, 0x79, 0xa8, 0xff, 0x4a, 0x52, 0x54, 0xff, 0x05, 0x05, 0x05, 0xff, 0x42, 0x3f, 0x3f, 0xff, 0x90, 0x8e, 0x8d, 0xff, 0xbb, 0xb9, 0xb8, 0xff, + 0x64, 0x64, 0x64, 0xff, 0x47, 0x47, 0x47, 0xff, 0x1b, 0x1b, 0x1b, 0xff, 0x01, 0x00, 0x00, 0xff, 0x2b, 0x27, 0x26, 0xff, 0x4c, 0x62, 0x71, 0xff, 0x51, 0x8e, 0xb5, 0xff, 0x39, 0x9e, 0xdd, 0xff, 0x1c, 0x92, 0xe1, 0xff, 0x16, 0x91, 0xe4, 0xff, 0x16, 0x91, 0xe5, 0xff, 0x16, 0x91, 0xe4, 0xff, 0x16, 0x91, 0xe4, 0xff, 0x16, 0x91, 0xe4, 0xff, 0x16, 0x91, 0xe4, 0xff, 0x16, 0x91, 0xe4, 0xff, 0x16, 0x91, 0xe4, 0xff, 0x16, 0x91, 0xe4, 0xff, 0x16, 0x91, 0xe4, 0xff, 0x16, 0x91, 0xe4, 0xff, 0x16, 0x91, 0xe4, 0xff, 0x16, 0x91, 0xe4, 0xff, 0x16, 0x91, 0xe4, 0xff, 0x16, 0x91, 0xe4, 0xff, 0x17, 0x91, 0xe5, 0xff, 0x17, 0x91, 0xe5, 0xff, 0x17, 0x92, 0xe6, 0xff, 0x17, 0x92, 0xe6, 0xff, 0x18, 0x93, 0xe6, 0xff, 0x18, 0x93, 0xe6, 0xff, 0x17, 0x93, 0xe6, 0xff, 0x15, 0x93, 0xe6, 0xff, 0x15, 0x94, 0xe6, 0xff, 0x14, 0x95, 0xe6, 0xff, 0x16, 0x95, 0xe6, 0xff, 0x19, 0x96, 0xe7, 0xff, 0x19, 0x96, 0xe8, 0xff, 0x19, 0x96, 0xe9, 0xff, 0x18, 0x97, 0xe9, 0xff, 0x17, 0x98, 0xe9, 0xff, 0x17, 0x98, 0xe9, 0xff, 0x19, 0x99, 0xe9, 0xff, 0x1b, 0x9a, 0xea, 0xff, 0x1b, 0x9b, 0xea, 0xff, 0x1c, 0x9b, 0xeb, 0xff, 0x20, 0x9d, 0xed, 0xff, 0x22, 0x9e, 0xed, 0xff, 0x23, 0x9e, 0xed, 0xff, 0x22, 0x9e, 0xed, 0xff, 0x24, 0x9f, 0xef, 0xff, 0x26, 0xa1, 0xf1, 0xff, 0x26, 0xa2, 0xf2, 0xff, 0x28, 0xa4, 0xf3, 0xff, 0x29, 0xa4, 0xf4, 0xff, 0x2a, 0xa5, 0xf5, 0xff, 0x2b, 0xa6, 0xf6, 0xff, 0x2d, 0xa8, 0xf8, 0xff, 0x2d, 0xaa, 0xfa, 0xff, 0x2f, 0xac, 0xfb, 0xff, 0x33, 0xae, 0xfd, 0xff, 0x33, 0xaf, 0xfe, 0xff, 0x35, 0xb0, 0xff, 0xff, 0x37, 0xb2, 0xff, 0xff, 0x39, 0xb4, 0xff, 0xff, 0x3b, 0xb6, 0xff, 0xff, 0x3e, 0xb7, 0xff, 0xff, 0x40, 0xb9, 0xff, 0xff, 0x41, 0xbc, 0xff, 0xff, 0x44, 0xbf, 0xff, 0xff, 0x46, 0xbf, 0xff, 0xff, 0x45, 0xbf, 0xff, 0xff, 0x42, 0xbd, 0xff, 0xff, 0x41, 0xba, 0xff, 0xff, 0x3e, 0xb8, 0xff, 0xff, 0x3b, 0xb6, 0xff, 0xff, 0x39, 0xb4, 0xff, 0xff, 0x37, 0xb2, 0xff, 0xff, 0x35, 0xb0, 0xff, 0xff, 0x33, 0xaf, 0xff, 0xff, 0x32, 0xad, 0xfd, 0xff, 0x2f, 0xab, 0xfb, 0xff, 0x2e, 0xaa, 0xfa, 0xff, 0x2d, 0xa9, 0xf9, 0xff, 0x2b, 0xa7, 0xf7, 0xff, 0x2a, 0xa5, 0xf5, 0xff, 0x28, 0xa5, 0xf3, 0xff, 0x27, 0xa4, 0xf2, 0xff, 0x26, 0xa2, 0xf2, 0xff, 0x25, 0xa1, 0xf1, 0xff, 0x23, 0x9f, 0xef, 0xff, 0x22, 0x9e, 0xee, 0xff, 0x22, 0x9d, 0xed, 0xff, 0x22, 0x9e, 0xed, 0xff, 0x1e, 0x9c, 0xec, 0xff, 0x1c, 0x9c, 0xeb, 0xff, 0x1c, 0x9c, 0xeb, 0xff, 0x1c, 0x9b, 0xea, 0xff, 0x19, 0x9a, 0xe9, 0xff, 0x17, 0x99, 0xe9, 0xff, 0x17, 0x98, 0xe9, 0xff, 0x19, 0x97, 0xea, 0xff, 0x19, 0x96, 0xe9, 0xff, 0x19, 0x96, 0xe8, 0xff, 0x19, 0x96, 0xe8, 0xff, 0x16, 0x96, 0xe7, 0xff, 0x15, 0x95, 0xe7, 0xff, 0x15, 0x94, 0xe7, 0xff, 0x15, 0x93, 0xe6, 0xff, 0x17, 0x93, 0xe6, 0xff, 0x18, 0x93, 0xe7, 0xff, 0x18, 0x92, 0xe4, 0xff, 0x1d, 0x92, 0xe0, 0xff, 0x35, 0x9a, 0xde, 0xff, 0x4f, 0x8c, 0xb4, 0xff, 0x43, 0x59, 0x68, 0xff, 0x1c, 0x1a, 0x1a, 0xff, 0x0f, 0x0f, 0x0f, 0xff, 0x7d, 0x7b, 0x7b, 0xff, 0xbd, 0xbb, 0xba, 0xff, 0xaf, 0xad, 0xac, 0xff, + 0x8c, 0x8c, 0x8c, 0xff, 0x66, 0x66, 0x66, 0xff, 0x32, 0x33, 0x33, 0xff, 0x0c, 0x0c, 0x0c, 0xff, 0x0e, 0x09, 0x08, 0xff, 0x35, 0x34, 0x34, 0xff, 0x47, 0x5c, 0x68, 0xff, 0x3a, 0x6c, 0x8d, 0xff, 0x2c, 0x70, 0x9e, 0xff, 0x28, 0x71, 0xa3, 0xff, 0x28, 0x70, 0xa3, 0xff, 0x28, 0x70, 0xa3, 0xff, 0x28, 0x70, 0xa3, 0xff, 0x28, 0x70, 0xa3, 0xff, 0x28, 0x70, 0xa3, 0xff, 0x28, 0x70, 0xa3, 0xff, 0x28, 0x70, 0xa3, 0xff, 0x28, 0x70, 0xa3, 0xff, 0x28, 0x70, 0xa3, 0xff, 0x28, 0x70, 0xa3, 0xff, 0x28, 0x70, 0xa3, 0xff, 0x28, 0x70, 0xa3, 0xff, 0x28, 0x70, 0xa3, 0xff, 0x28, 0x70, 0xa3, 0xff, 0x28, 0x70, 0xa4, 0xff, 0x28, 0x70, 0xa4, 0xff, 0x28, 0x70, 0xa4, 0xff, 0x29, 0x71, 0xa4, 0xff, 0x29, 0x71, 0xa4, 0xff, 0x29, 0x72, 0xa4, 0xff, 0x28, 0x71, 0xa4, 0xff, 0x27, 0x71, 0xa4, 0xff, 0x27, 0x72, 0xa4, 0xff, 0x27, 0x73, 0xa4, 0xff, 0x28, 0x73, 0xa5, 0xff, 0x2a, 0x73, 0xa5, 0xff, 0x2a, 0x73, 0xa6, 0xff, 0x2a, 0x74, 0xa7, 0xff, 0x2a, 0x75, 0xa8, 0xff, 0x29, 0x76, 0xa7, 0xff, 0x29, 0x76, 0xa7, 0xff, 0x2b, 0x77, 0xa7, 0xff, 0x2d, 0x78, 0xa7, 0xff, 0x2d, 0x79, 0xa7, 0xff, 0x2e, 0x79, 0xa8, 0xff, 0x30, 0x7a, 0xaa, 0xff, 0x32, 0x7b, 0xab, 0xff, 0x33, 0x7b, 0xaa, 0xff, 0x32, 0x7b, 0xaa, 0xff, 0x34, 0x7d, 0xac, 0xff, 0x35, 0x7e, 0xad, 0xff, 0x36, 0x7f, 0xae, 0xff, 0x38, 0x81, 0xaf, 0xff, 0x39, 0x81, 0xb0, 0xff, 0x39, 0x82, 0xb1, 0xff, 0x3a, 0x83, 0xb3, 0xff, 0x3c, 0x85, 0xb4, 0xff, 0x3d, 0x86, 0xb6, 0xff, 0x3e, 0x88, 0xb7, 0xff, 0x40, 0x8a, 0xb8, 0xff, 0x41, 0x8b, 0xba, 0xff, 0x43, 0x8c, 0xbb, 0xff, 0x45, 0x8e, 0xbd, 0xff, 0x47, 0x90, 0xbf, 0xff, 0x48, 0x92, 0xc1, 0xff, 0x4c, 0x93, 0xc3, 0xff, 0x4e, 0x94, 0xc4, 0xff, 0x4f, 0x97, 0xc6, 0xff, 0x51, 0x99, 0xc6, 0xff, 0x53, 0x9a, 0xc6, 0xff, 0x52, 0x99, 0xc6, 0xff, 0x50, 0x98, 0xc6, 0xff, 0x4e, 0x95, 0xc4, 0xff, 0x4b, 0x93, 0xc3, 0xff, 0x49, 0x92, 0xc1, 0xff, 0x47, 0x90, 0xbf, 0xff, 0x45, 0x8e, 0xbc, 0xff, 0x43, 0x8c, 0xbb, 0xff, 0x41, 0x8b, 0xba, 0xff, 0x40, 0x89, 0xb9, 0xff, 0x3e, 0x87, 0xb6, 0xff, 0x3d, 0x86, 0xb5, 0xff, 0x3c, 0x85, 0xb4, 0xff, 0x3a, 0x83, 0xb2, 0xff, 0x39, 0x82, 0xb1, 0xff, 0x37, 0x81, 0xb0, 0xff, 0x36, 0x80, 0xae, 0xff, 0x35, 0x7e, 0xad, 0xff, 0x34, 0x7e, 0xad, 0xff, 0x33, 0x7c, 0xab, 0xff, 0x32, 0x7b, 0xaa, 0xff, 0x31, 0x7a, 0xaa, 0xff, 0x31, 0x7a, 0xaa, 0xff, 0x2e, 0x79, 0xa9, 0xff, 0x2d, 0x79, 0xa8, 0xff, 0x2d, 0x79, 0xa8, 0xff, 0x2d, 0x78, 0xa7, 0xff, 0x2a, 0x77, 0xa7, 0xff, 0x28, 0x76, 0xa6, 0xff, 0x28, 0x75, 0xa7, 0xff, 0x29, 0x74, 0xa7, 0xff, 0x29, 0x74, 0xa7, 0xff, 0x29, 0x73, 0xa6, 0xff, 0x28, 0x72, 0xa5, 0xff, 0x27, 0x72, 0xa4, 0xff, 0x26, 0x72, 0xa4, 0xff, 0x26, 0x71, 0xa4, 0xff, 0x26, 0x70, 0xa3, 0xff, 0x27, 0x70, 0xa3, 0xff, 0x28, 0x70, 0xa4, 0xff, 0x28, 0x70, 0xa2, 0xff, 0x2b, 0x6f, 0x9b, 0xff, 0x38, 0x6b, 0x8e, 0xff, 0x3f, 0x54, 0x61, 0xff, 0x2e, 0x2f, 0x2e, 0xff, 0x1c, 0x19, 0x18, 0xff, 0x4f, 0x4f, 0x4f, 0xff, 0xa9, 0xa8, 0xa7, 0xff, 0xcb, 0xc9, 0xc7, 0xff, 0xb0, 0xae, 0xae, 0xff, + 0xbe, 0xbe, 0xbe, 0xff, 0x7d, 0x7d, 0x7d, 0xff, 0x49, 0x49, 0x49, 0xff, 0x33, 0x33, 0x33, 0xff, 0x02, 0x02, 0x02, 0xff, 0x01, 0x01, 0x01, 0xff, 0x0d, 0x0f, 0x11, 0xff, 0x1b, 0x1f, 0x25, 0xff, 0x36, 0x3f, 0x45, 0xff, 0x3a, 0x44, 0x4c, 0xff, 0x38, 0x42, 0x4b, 0xff, 0x38, 0x42, 0x4b, 0xff, 0x38, 0x42, 0x4b, 0xff, 0x38, 0x42, 0x4b, 0xff, 0x38, 0x42, 0x4b, 0xff, 0x38, 0x42, 0x4b, 0xff, 0x38, 0x42, 0x4b, 0xff, 0x38, 0x42, 0x4b, 0xff, 0x38, 0x42, 0x4b, 0xff, 0x38, 0x42, 0x4b, 0xff, 0x38, 0x42, 0x4b, 0xff, 0x38, 0x42, 0x4b, 0xff, 0x38, 0x42, 0x4b, 0xff, 0x38, 0x42, 0x4b, 0xff, 0x38, 0x41, 0x4b, 0xff, 0x38, 0x41, 0x4b, 0xff, 0x39, 0x41, 0x4b, 0xff, 0x39, 0x41, 0x4b, 0xff, 0x38, 0x41, 0x4b, 0xff, 0x38, 0x41, 0x4b, 0xff, 0x39, 0x41, 0x4b, 0xff, 0x3a, 0x40, 0x4b, 0xff, 0x3a, 0x41, 0x4b, 0xff, 0x3a, 0x41, 0x4b, 0xff, 0x39, 0x41, 0x4b, 0xff, 0x37, 0x40, 0x4b, 0xff, 0x38, 0x40, 0x4b, 0xff, 0x39, 0x41, 0x4b, 0xff, 0x3a, 0x42, 0x4c, 0xff, 0x3a, 0x41, 0x4c, 0xff, 0x3a, 0x40, 0x4c, 0xff, 0x3c, 0x40, 0x4b, 0xff, 0x3c, 0x41, 0x4b, 0xff, 0x3b, 0x41, 0x4b, 0xff, 0x3b, 0x42, 0x4a, 0xff, 0x3a, 0x42, 0x4b, 0xff, 0x3a, 0x41, 0x4b, 0xff, 0x3a, 0x41, 0x4b, 0xff, 0x3a, 0x41, 0x4b, 0xff, 0x3a, 0x42, 0x4a, 0xff, 0x3a, 0x42, 0x4a, 0xff, 0x3a, 0x42, 0x4a, 0xff, 0x3a, 0x42, 0x4a, 0xff, 0x3b, 0x42, 0x4b, 0xff, 0x3b, 0x43, 0x4c, 0xff, 0x3b, 0x44, 0x4d, 0xff, 0x3b, 0x44, 0x4d, 0xff, 0x3c, 0x44, 0x4e, 0xff, 0x3c, 0x44, 0x4d, 0xff, 0x3b, 0x43, 0x4c, 0xff, 0x3c, 0x44, 0x4d, 0xff, 0x3c, 0x45, 0x4c, 0xff, 0x3c, 0x45, 0x4d, 0xff, 0x3d, 0x46, 0x4e, 0xff, 0x3d, 0x46, 0x4f, 0xff, 0x3f, 0x45, 0x4e, 0xff, 0x40, 0x45, 0x4e, 0xff, 0x3f, 0x45, 0x4f, 0xff, 0x3f, 0x46, 0x4f, 0xff, 0x3f, 0x46, 0x4e, 0xff, 0x3f, 0x46, 0x4e, 0xff, 0x3f, 0x45, 0x4e, 0xff, 0x3f, 0x44, 0x4e, 0xff, 0x3e, 0x45, 0x4e, 0xff, 0x3d, 0x45, 0x4f, 0xff, 0x3d, 0x46, 0x4e, 0xff, 0x3c, 0x45, 0x4c, 0xff, 0x3c, 0x44, 0x4d, 0xff, 0x3c, 0x44, 0x4d, 0xff, 0x3b, 0x44, 0x4c, 0xff, 0x3b, 0x44, 0x4d, 0xff, 0x3b, 0x43, 0x4c, 0xff, 0x3b, 0x43, 0x4b, 0xff, 0x3a, 0x42, 0x4a, 0xff, 0x3a, 0x42, 0x4b, 0xff, 0x3a, 0x42, 0x4b, 0xff, 0x3a, 0x42, 0x4b, 0xff, 0x39, 0x41, 0x4a, 0xff, 0x39, 0x41, 0x4a, 0xff, 0x39, 0x41, 0x4a, 0xff, 0x39, 0x41, 0x4a, 0xff, 0x39, 0x40, 0x4a, 0xff, 0x38, 0x40, 0x4a, 0xff, 0x39, 0x41, 0x4a, 0xff, 0x3a, 0x41, 0x49, 0xff, 0x3a, 0x41, 0x4a, 0xff, 0x3b, 0x41, 0x4a, 0xff, 0x3a, 0x40, 0x4b, 0xff, 0x39, 0x40, 0x4b, 0xff, 0x38, 0x40, 0x4b, 0xff, 0x39, 0x41, 0x4b, 0xff, 0x38, 0x41, 0x4b, 0xff, 0x37, 0x40, 0x4a, 0xff, 0x36, 0x3e, 0x49, 0xff, 0x38, 0x3e, 0x49, 0xff, 0x38, 0x3e, 0x49, 0xff, 0x38, 0x3e, 0x49, 0xff, 0x38, 0x3e, 0x49, 0xff, 0x38, 0x3f, 0x49, 0xff, 0x37, 0x3f, 0x4a, 0xff, 0x37, 0x41, 0x4a, 0xff, 0x34, 0x3d, 0x42, 0xff, 0x20, 0x22, 0x27, 0xff, 0x04, 0x04, 0x06, 0xff, 0x0b, 0x0c, 0x0c, 0xff, 0x47, 0x47, 0x47, 0xff, 0xaf, 0xb0, 0xb0, 0xff, 0xc4, 0xc3, 0xc1, 0xff, 0xbe, 0xbc, 0xbb, 0xff, 0xba, 0xb9, 0xb9, 0xff, + 0xd7, 0xd7, 0xd7, 0x9f, 0x8b, 0x8b, 0x8b, 0xc4, 0x63, 0x63, 0x63, 0xec, 0x58, 0x59, 0x59, 0xff, 0x42, 0x41, 0x41, 0xff, 0x33, 0x32, 0x30, 0xff, 0x2f, 0x2c, 0x2b, 0xff, 0x38, 0x32, 0x31, 0xff, 0x4b, 0x45, 0x42, 0xff, 0x4e, 0x48, 0x46, 0xff, 0x4d, 0x47, 0x45, 0xff, 0x4d, 0x47, 0x45, 0xff, 0x4d, 0x47, 0x45, 0xff, 0x4d, 0x47, 0x45, 0xff, 0x4d, 0x47, 0x45, 0xff, 0x4d, 0x48, 0x45, 0xff, 0x4e, 0x47, 0x45, 0xff, 0x4e, 0x48, 0x45, 0xff, 0x4e, 0x48, 0x45, 0xff, 0x4e, 0x48, 0x46, 0xff, 0x4e, 0x48, 0x46, 0xff, 0x4e, 0x48, 0x46, 0xff, 0x4e, 0x48, 0x46, 0xff, 0x4e, 0x48, 0x46, 0xff, 0x4e, 0x48, 0x46, 0xff, 0x4e, 0x48, 0x46, 0xff, 0x4e, 0x48, 0x46, 0xff, 0x4f, 0x48, 0x46, 0xff, 0x4f, 0x48, 0x47, 0xff, 0x4f, 0x49, 0x47, 0xff, 0x4f, 0x48, 0x47, 0xff, 0x50, 0x48, 0x47, 0xff, 0x50, 0x48, 0x47, 0xff, 0x50, 0x48, 0x47, 0xff, 0x4f, 0x48, 0x47, 0xff, 0x4f, 0x49, 0x47, 0xff, 0x4f, 0x48, 0x47, 0xff, 0x50, 0x49, 0x48, 0xff, 0x51, 0x4a, 0x48, 0xff, 0x51, 0x49, 0x48, 0xff, 0x52, 0x49, 0x48, 0xff, 0x52, 0x49, 0x48, 0xff, 0x52, 0x49, 0x48, 0xff, 0x52, 0x4a, 0x48, 0xff, 0x52, 0x4a, 0x47, 0xff, 0x51, 0x49, 0x48, 0xff, 0x50, 0x49, 0x48, 0xff, 0x50, 0x49, 0x48, 0xff, 0x50, 0x49, 0x48, 0xff, 0x50, 0x4a, 0x48, 0xff, 0x50, 0x4a, 0x47, 0xff, 0x50, 0x49, 0x47, 0xff, 0x50, 0x49, 0x48, 0xff, 0x51, 0x4a, 0x48, 0xff, 0x51, 0x4a, 0x48, 0xff, 0x51, 0x4b, 0x48, 0xff, 0x51, 0x4b, 0x48, 0xff, 0x51, 0x4b, 0x48, 0xff, 0x51, 0x4a, 0x48, 0xff, 0x50, 0x4a, 0x48, 0xff, 0x50, 0x4a, 0x48, 0xff, 0x50, 0x4a, 0x48, 0xff, 0x50, 0x4a, 0x48, 0xff, 0x51, 0x4b, 0x49, 0xff, 0x51, 0x4b, 0x49, 0xff, 0x51, 0x4a, 0x48, 0xff, 0x52, 0x4a, 0x48, 0xff, 0x52, 0x4a, 0x49, 0xff, 0x51, 0x4a, 0x48, 0xff, 0x51, 0x4a, 0x48, 0xff, 0x51, 0x4a, 0x48, 0xff, 0x51, 0x4a, 0x48, 0xff, 0x52, 0x4a, 0x48, 0xff, 0x52, 0x4b, 0x49, 0xff, 0x52, 0x4b, 0x4a, 0xff, 0x52, 0x4c, 0x4a, 0xff, 0x52, 0x4c, 0x49, 0xff, 0x52, 0x4c, 0x49, 0xff, 0x52, 0x4c, 0x49, 0xff, 0x52, 0x4c, 0x4a, 0xff, 0x52, 0x4c, 0x4a, 0xff, 0x53, 0x4c, 0x4a, 0xff, 0x52, 0x4c, 0x49, 0xff, 0x52, 0x4b, 0x49, 0xff, 0x52, 0x4b, 0x4a, 0xff, 0x52, 0x4c, 0x4b, 0xff, 0x53, 0x4c, 0x4b, 0xff, 0x54, 0x4d, 0x4b, 0xff, 0x53, 0x4d, 0x4b, 0xff, 0x53, 0x4d, 0x4b, 0xff, 0x54, 0x4d, 0x4b, 0xff, 0x53, 0x4c, 0x4b, 0xff, 0x53, 0x4c, 0x4b, 0xff, 0x54, 0x4d, 0x4b, 0xff, 0x55, 0x4e, 0x4b, 0xff, 0x55, 0x4e, 0x4c, 0xff, 0x56, 0x4e, 0x4c, 0xff, 0x56, 0x4e, 0x4d, 0xff, 0x56, 0x4e, 0x4e, 0xff, 0x56, 0x4f, 0x4e, 0xff, 0x56, 0x4f, 0x4e, 0xff, 0x56, 0x4f, 0x4e, 0xff, 0x55, 0x4f, 0x4d, 0xff, 0x54, 0x4e, 0x4d, 0xff, 0x56, 0x4e, 0x4d, 0xff, 0x57, 0x4e, 0x4d, 0xff, 0x57, 0x4f, 0x4e, 0xff, 0x57, 0x4f, 0x4e, 0xff, 0x56, 0x50, 0x4e, 0xff, 0x56, 0x50, 0x4e, 0xff, 0x56, 0x50, 0x4e, 0xff, 0x53, 0x4e, 0x4a, 0xff, 0x46, 0x3f, 0x3c, 0xff, 0x46, 0x42, 0x40, 0xff, 0x61, 0x5f, 0x5e, 0xff, 0x93, 0x92, 0x91, 0xff, 0xc5, 0xc4, 0xc3, 0xff, 0xb8, 0xb7, 0xb6, 0xff, 0xaf, 0xaf, 0xae, 0xe3, 0xc3, 0xc2, 0xc2, 0x87, + 0xff, 0xff, 0xff, 0x28, 0x9c, 0x9c, 0x9c, 0x70, 0x80, 0x80, 0x80, 0xc8, 0x7b, 0x7c, 0x7c, 0xff, 0x86, 0x84, 0x83, 0xff, 0x74, 0x72, 0x71, 0xff, 0x64, 0x62, 0x61, 0xff, 0x60, 0x5e, 0x5d, 0xff, 0x5e, 0x5c, 0x5b, 0xff, 0x5e, 0x5c, 0x5b, 0xff, 0x5e, 0x5c, 0x5b, 0xff, 0x5e, 0x5c, 0x5b, 0xff, 0x5e, 0x5c, 0x5b, 0xff, 0x5e, 0x5c, 0x5b, 0xff, 0x5f, 0x5d, 0x5b, 0xff, 0x60, 0x5d, 0x5c, 0xff, 0x60, 0x5d, 0x5c, 0xff, 0x60, 0x5e, 0x5c, 0xff, 0x60, 0x5e, 0x5c, 0xff, 0x61, 0x5e, 0x5d, 0xff, 0x61, 0x5f, 0x5e, 0xff, 0x62, 0x5f, 0x5e, 0xff, 0x61, 0x5f, 0x5e, 0xff, 0x61, 0x5f, 0x5e, 0xff, 0x62, 0x5f, 0x5e, 0xff, 0x62, 0x60, 0x5e, 0xff, 0x63, 0x61, 0x5f, 0xff, 0x63, 0x61, 0x60, 0xff, 0x64, 0x61, 0x60, 0xff, 0x64, 0x62, 0x60, 0xff, 0x64, 0x62, 0x60, 0xff, 0x64, 0x62, 0x60, 0xff, 0x64, 0x62, 0x60, 0xff, 0x64, 0x62, 0x60, 0xff, 0x64, 0x62, 0x61, 0xff, 0x66, 0x64, 0x62, 0xff, 0x66, 0x64, 0x62, 0xff, 0x66, 0x64, 0x63, 0xff, 0x67, 0x64, 0x63, 0xff, 0x67, 0x65, 0x64, 0xff, 0x68, 0x66, 0x64, 0xff, 0x67, 0x66, 0x64, 0xff, 0x67, 0x66, 0x64, 0xff, 0x68, 0x66, 0x65, 0xff, 0x68, 0x66, 0x65, 0xff, 0x68, 0x66, 0x65, 0xff, 0x68, 0x66, 0x66, 0xff, 0x68, 0x66, 0x66, 0xff, 0x69, 0x67, 0x66, 0xff, 0x69, 0x67, 0x66, 0xff, 0x69, 0x67, 0x66, 0xff, 0x69, 0x67, 0x66, 0xff, 0x6a, 0x68, 0x67, 0xff, 0x6a, 0x68, 0x67, 0xff, 0x6a, 0x68, 0x67, 0xff, 0x6a, 0x68, 0x67, 0xff, 0x6b, 0x69, 0x67, 0xff, 0x6a, 0x69, 0x67, 0xff, 0x6b, 0x6a, 0x68, 0xff, 0x6c, 0x6a, 0x69, 0xff, 0x6b, 0x69, 0x68, 0xff, 0x6b, 0x69, 0x69, 0xff, 0x6c, 0x6a, 0x69, 0xff, 0x6c, 0x6a, 0x69, 0xff, 0x6c, 0x6a, 0x69, 0xff, 0x6d, 0x6b, 0x6a, 0xff, 0x6e, 0x6b, 0x6a, 0xff, 0x6d, 0x6b, 0x6a, 0xff, 0x6e, 0x6b, 0x6a, 0xff, 0x6e, 0x6b, 0x6b, 0xff, 0x6d, 0x6b, 0x6b, 0xff, 0x6e, 0x6c, 0x6b, 0xff, 0x6e, 0x6c, 0x6b, 0xff, 0x6f, 0x6d, 0x6c, 0xff, 0x70, 0x6e, 0x6c, 0xff, 0x70, 0x6e, 0x6c, 0xff, 0x71, 0x6f, 0x6c, 0xff, 0x71, 0x6f, 0x6c, 0xff, 0x71, 0x6f, 0x6d, 0xff, 0x71, 0x6f, 0x6e, 0xff, 0x71, 0x6f, 0x6e, 0xff, 0x71, 0x6f, 0x6e, 0xff, 0x71, 0x6f, 0x6e, 0xff, 0x71, 0x6f, 0x6e, 0xff, 0x71, 0x6f, 0x6f, 0xff, 0x71, 0x6f, 0x6f, 0xff, 0x73, 0x71, 0x70, 0xff, 0x74, 0x72, 0x71, 0xff, 0x74, 0x72, 0x71, 0xff, 0x73, 0x71, 0x70, 0xff, 0x73, 0x71, 0x70, 0xff, 0x73, 0x71, 0x71, 0xff, 0x73, 0x71, 0x71, 0xff, 0x74, 0x72, 0x71, 0xff, 0x75, 0x73, 0x71, 0xff, 0x75, 0x73, 0x72, 0xff, 0x75, 0x74, 0x72, 0xff, 0x76, 0x74, 0x73, 0xff, 0x76, 0x75, 0x73, 0xff, 0x76, 0x75, 0x73, 0xff, 0x77, 0x74, 0x74, 0xff, 0x77, 0x75, 0x74, 0xff, 0x77, 0x75, 0x74, 0xff, 0x78, 0x75, 0x75, 0xff, 0x78, 0x76, 0x75, 0xff, 0x78, 0x76, 0x75, 0xff, 0x79, 0x77, 0x75, 0xff, 0x79, 0x77, 0x76, 0xff, 0x79, 0x77, 0x76, 0xff, 0x7a, 0x77, 0x76, 0xff, 0x79, 0x77, 0x76, 0xff, 0x79, 0x77, 0x77, 0xff, 0x7b, 0x7a, 0x79, 0xff, 0x9d, 0x9c, 0x9a, 0xff, 0xc0, 0xbe, 0xbd, 0xff, 0xd0, 0xce, 0xcd, 0xff, 0xbe, 0xbc, 0xbb, 0xff, 0xa6, 0xa6, 0xa5, 0xff, 0x9d, 0x9e, 0x9e, 0xa4, 0x00, 0x00, 0x00, 0x00, + 0xff, 0xff, 0xff, 0x07, 0xc7, 0xc7, 0xc7, 0x27, 0xa2, 0xa2, 0xa2, 0x8f, 0x94, 0x95, 0x95, 0xff, 0x7e, 0x7d, 0x7d, 0xff, 0x6f, 0x6d, 0x6d, 0xff, 0x68, 0x66, 0x65, 0xff, 0x65, 0x64, 0x63, 0xff, 0x65, 0x62, 0x62, 0xff, 0x64, 0x62, 0x62, 0xff, 0x65, 0x63, 0x62, 0xff, 0x65, 0x64, 0x62, 0xff, 0x65, 0x63, 0x62, 0xff, 0x66, 0x64, 0x63, 0xff, 0x67, 0x65, 0x64, 0xff, 0x68, 0x66, 0x65, 0xff, 0x68, 0x66, 0x65, 0xff, 0x68, 0x67, 0x66, 0xff, 0x69, 0x67, 0x66, 0xff, 0x69, 0x67, 0x66, 0xff, 0x6a, 0x69, 0x67, 0xff, 0x6a, 0x69, 0x67, 0xff, 0x6a, 0x69, 0x68, 0xff, 0x6a, 0x69, 0x68, 0xff, 0x6b, 0x6a, 0x69, 0xff, 0x6c, 0x6b, 0x69, 0xff, 0x6d, 0x6b, 0x6a, 0xff, 0x6e, 0x6c, 0x6b, 0xff, 0x6e, 0x6d, 0x6b, 0xff, 0x6f, 0x6d, 0x6c, 0xff, 0x6f, 0x6d, 0x6c, 0xff, 0x6f, 0x6e, 0x6c, 0xff, 0x70, 0x6e, 0x6d, 0xff, 0x70, 0x6e, 0x6d, 0xff, 0x71, 0x70, 0x6e, 0xff, 0x73, 0x71, 0x6f, 0xff, 0x73, 0x71, 0x70, 0xff, 0x73, 0x71, 0x70, 0xff, 0x74, 0x72, 0x71, 0xff, 0x75, 0x73, 0x72, 0xff, 0x75, 0x74, 0x72, 0xff, 0x75, 0x74, 0x72, 0xff, 0x75, 0x74, 0x72, 0xff, 0x76, 0x74, 0x73, 0xff, 0x77, 0x75, 0x74, 0xff, 0x78, 0x76, 0x75, 0xff, 0x78, 0x77, 0x76, 0xff, 0x79, 0x77, 0x76, 0xff, 0x79, 0x78, 0x77, 0xff, 0x7a, 0x78, 0x77, 0xff, 0x7a, 0x78, 0x77, 0xff, 0x7a, 0x79, 0x78, 0xff, 0x7b, 0x7a, 0x78, 0xff, 0x7c, 0x7a, 0x79, 0xff, 0x7c, 0x7a, 0x79, 0xff, 0x7d, 0x7a, 0x7a, 0xff, 0x7d, 0x7c, 0x7a, 0xff, 0x7e, 0x7c, 0x7b, 0xff, 0x7f, 0x7d, 0x7c, 0xff, 0x81, 0x7e, 0x7d, 0xff, 0x80, 0x7e, 0x7d, 0xff, 0x80, 0x7e, 0x7d, 0xff, 0x81, 0x7f, 0x7e, 0xff, 0x82, 0x80, 0x7e, 0xff, 0x82, 0x80, 0x7e, 0xff, 0x83, 0x81, 0x80, 0xff, 0x84, 0x82, 0x81, 0xff, 0x84, 0x82, 0x81, 0xff, 0x85, 0x83, 0x81, 0xff, 0x85, 0x83, 0x82, 0xff, 0x85, 0x83, 0x82, 0xff, 0x85, 0x83, 0x82, 0xff, 0x86, 0x84, 0x83, 0xff, 0x87, 0x85, 0x84, 0xff, 0x88, 0x86, 0x85, 0xff, 0x88, 0x86, 0x85, 0xff, 0x89, 0x87, 0x86, 0xff, 0x8a, 0x88, 0x86, 0xff, 0x8a, 0x88, 0x87, 0xff, 0x8b, 0x89, 0x88, 0xff, 0x8b, 0x89, 0x88, 0xff, 0x8b, 0x89, 0x88, 0xff, 0x8c, 0x8a, 0x89, 0xff, 0x8d, 0x8b, 0x8a, 0xff, 0x8d, 0x8b, 0x8a, 0xff, 0x8e, 0x8c, 0x8b, 0xff, 0x8e, 0x8c, 0x8b, 0xff, 0x8f, 0x8d, 0x8c, 0xff, 0x90, 0x8e, 0x8d, 0xff, 0x90, 0x8e, 0x8d, 0xff, 0x90, 0x8e, 0x8d, 0xff, 0x90, 0x8e, 0x8d, 0xff, 0x91, 0x8f, 0x8e, 0xff, 0x92, 0x90, 0x8f, 0xff, 0x93, 0x91, 0x8f, 0xff, 0x93, 0x91, 0x90, 0xff, 0x94, 0x92, 0x90, 0xff, 0x94, 0x92, 0x91, 0xff, 0x95, 0x93, 0x92, 0xff, 0x95, 0x94, 0x92, 0xff, 0x95, 0x93, 0x92, 0xff, 0x96, 0x94, 0x92, 0xff, 0x97, 0x95, 0x93, 0xff, 0x97, 0x95, 0x94, 0xff, 0x98, 0x96, 0x95, 0xff, 0x99, 0x97, 0x95, 0xff, 0x99, 0x97, 0x96, 0xff, 0x9a, 0x98, 0x97, 0xff, 0x9b, 0x98, 0x97, 0xff, 0x9b, 0x99, 0x98, 0xff, 0x9b, 0x99, 0x98, 0xff, 0x9c, 0x9a, 0x99, 0xff, 0x9e, 0x9d, 0x9b, 0xff, 0xaa, 0xa8, 0xa7, 0xff, 0xb5, 0xb3, 0xb3, 0xff, 0xbc, 0xba, 0xb9, 0xff, 0xbb, 0xba, 0xb9, 0xff, 0xad, 0xad, 0xac, 0x97, 0x90, 0x93, 0x94, 0x2b, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x00, 0xc3, 0xc3, 0xc3, 0x6c, 0xa1, 0xa1, 0xa1, 0xff, 0x73, 0x72, 0x72, 0xff, 0x67, 0x65, 0x65, 0xff, 0x66, 0x64, 0x64, 0xff, 0x65, 0x64, 0x63, 0xff, 0x66, 0x65, 0x65, 0xff, 0x67, 0x65, 0x65, 0xff, 0x67, 0x66, 0x65, 0xff, 0x68, 0x67, 0x66, 0xff, 0x68, 0x67, 0x66, 0xff, 0x69, 0x68, 0x67, 0xff, 0x6a, 0x69, 0x68, 0xff, 0x6b, 0x6a, 0x69, 0xff, 0x6b, 0x6a, 0x69, 0xff, 0x6b, 0x6b, 0x6a, 0xff, 0x6c, 0x6b, 0x6b, 0xff, 0x6d, 0x6b, 0x6b, 0xff, 0x6e, 0x6d, 0x6c, 0xff, 0x6e, 0x6d, 0x6c, 0xff, 0x6e, 0x6d, 0x6c, 0xff, 0x6e, 0x6d, 0x6d, 0xff, 0x70, 0x6f, 0x6e, 0xff, 0x71, 0x70, 0x6f, 0xff, 0x72, 0x70, 0x70, 0xff, 0x73, 0x71, 0x71, 0xff, 0x73, 0x72, 0x71, 0xff, 0x74, 0x72, 0x72, 0xff, 0x74, 0x72, 0x72, 0xff, 0x74, 0x73, 0x72, 0xff, 0x75, 0x74, 0x73, 0xff, 0x76, 0x75, 0x74, 0xff, 0x77, 0x76, 0x75, 0xff, 0x78, 0x77, 0x77, 0xff, 0x79, 0x77, 0x77, 0xff, 0x79, 0x78, 0x77, 0xff, 0x7a, 0x79, 0x78, 0xff, 0x7b, 0x7a, 0x7a, 0xff, 0x7b, 0x7a, 0x79, 0xff, 0x7b, 0x7a, 0x79, 0xff, 0x7c, 0x7b, 0x7a, 0xff, 0x7d, 0x7c, 0x7b, 0xff, 0x7e, 0x7d, 0x7c, 0xff, 0x7f, 0x7e, 0x7d, 0xff, 0x80, 0x7f, 0x7e, 0xff, 0x81, 0x80, 0x7f, 0xff, 0x82, 0x81, 0x80, 0xff, 0x82, 0x81, 0x80, 0xff, 0x83, 0x81, 0x81, 0xff, 0x83, 0x82, 0x81, 0xff, 0x84, 0x83, 0x82, 0xff, 0x84, 0x84, 0x82, 0xff, 0x85, 0x84, 0x83, 0xff, 0x86, 0x84, 0x84, 0xff, 0x87, 0x86, 0x85, 0xff, 0x87, 0x87, 0x86, 0xff, 0x89, 0x87, 0x86, 0xff, 0x8b, 0x88, 0x87, 0xff, 0x8a, 0x89, 0x88, 0xff, 0x8b, 0x8a, 0x89, 0xff, 0x8c, 0x8b, 0x8a, 0xff, 0x8d, 0x8b, 0x8a, 0xff, 0x8d, 0x8b, 0x8a, 0xff, 0x8e, 0x8c, 0x8b, 0xff, 0x90, 0x8e, 0x8d, 0xff, 0x90, 0x8e, 0x8d, 0xff, 0x91, 0x8f, 0x8e, 0xff, 0x91, 0x8f, 0x8e, 0xff, 0x91, 0x8f, 0x8e, 0xff, 0x92, 0x90, 0x8e, 0xff, 0x93, 0x91, 0x90, 0xff, 0x94, 0x92, 0x91, 0xff, 0x94, 0x92, 0x92, 0xff, 0x95, 0x93, 0x93, 0xff, 0x96, 0x94, 0x93, 0xff, 0x97, 0x95, 0x94, 0xff, 0x98, 0x96, 0x95, 0xff, 0x99, 0x97, 0x97, 0xff, 0x9a, 0x98, 0x97, 0xff, 0x9a, 0x98, 0x97, 0xff, 0x9a, 0x98, 0x97, 0xff, 0x9c, 0x9a, 0x99, 0xff, 0x9d, 0x9b, 0x9a, 0xff, 0x9d, 0x9b, 0x9a, 0xff, 0x9d, 0x9b, 0x9a, 0xff, 0x9e, 0x9c, 0x9b, 0xff, 0x9f, 0x9d, 0x9c, 0xff, 0xa0, 0x9e, 0x9d, 0xff, 0xa0, 0x9e, 0x9d, 0xff, 0xa0, 0x9e, 0x9d, 0xff, 0xa1, 0x9f, 0x9e, 0xff, 0xa2, 0xa0, 0x9f, 0xff, 0xa3, 0xa1, 0xa0, 0xff, 0xa3, 0xa1, 0xa0, 0xff, 0xa4, 0xa2, 0xa1, 0xff, 0xa5, 0xa3, 0xa2, 0xff, 0xa6, 0xa4, 0xa3, 0xff, 0xa6, 0xa4, 0xa3, 0xff, 0xa5, 0xa3, 0xa2, 0xff, 0xa6, 0xa4, 0xa3, 0xff, 0xa8, 0xa6, 0xa5, 0xff, 0xa8, 0xa6, 0xa5, 0xff, 0xa9, 0xa7, 0xa6, 0xff, 0xaa, 0xa8, 0xa7, 0xff, 0xab, 0xa9, 0xa8, 0xff, 0xab, 0xa9, 0xa8, 0xff, 0xac, 0xaa, 0xa9, 0xff, 0xad, 0xab, 0xaa, 0xff, 0xae, 0xac, 0xab, 0xff, 0xaf, 0xad, 0xac, 0xff, 0xb0, 0xae, 0xac, 0xff, 0xaa, 0xa8, 0xa8, 0xff, 0xa6, 0xa4, 0xa4, 0xff, 0xa8, 0xa6, 0xa6, 0xff, 0xb9, 0xb8, 0xb7, 0xff, 0xc3, 0xc1, 0xc0, 0x4c, 0x00, 0x00, 0x00, 0x00, 0xeb, 0xec, 0xec, 0x04, +#endif +}; + +lv_img_dsc_t imgbtn_img_4 = { + .header.always_zero = 0, + .header.w = 120, + .header.h = 40, + .data_size = 4800 * LV_IMG_PX_SIZE_ALPHA_BYTE, + .header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA, + .data = imgbtn_img_4_map, +}; + +#endif /*LV_USE_TESTS && LV_USE_IMGBTN*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.c b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.c new file mode 100644 index 0000000..847a623 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.c @@ -0,0 +1,93 @@ +/** + * @file lv_test_imgbtn.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_test_imgbtn.h" +#if LV_USE_IMGBTN && LV_USE_TESTS + +#if LV_EX_PRINTF +#include +#endif + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ +static void imgbtn_event_handler(lv_obj_t * imgbtn, lv_event_t event); + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create imgbtns to test their functionalities + */ +void lv_test_imgbtn_1(void) +{ + /* Create an image button and set images for it*/ + lv_obj_t * imgbtn1 = lv_imgbtn_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_pos(imgbtn1, 10, 10); + lv_imgbtn_set_toggle(imgbtn1, true); + + LV_IMG_DECLARE(imgbtn_img_1); + LV_IMG_DECLARE(imgbtn_img_2); + LV_IMG_DECLARE(imgbtn_img_3); + LV_IMG_DECLARE(imgbtn_img_4); + + lv_imgbtn_set_src(imgbtn1, LV_BTN_STATE_REL, &imgbtn_img_1); + lv_imgbtn_set_src(imgbtn1, LV_BTN_STATE_PR, &imgbtn_img_2); + lv_imgbtn_set_src(imgbtn1, LV_BTN_STATE_TGL_REL, &imgbtn_img_3); + lv_imgbtn_set_src(imgbtn1, LV_BTN_STATE_TGL_PR, &imgbtn_img_4); + + lv_obj_set_event_cb(imgbtn1, imgbtn_event_handler); + + /*Add a label*/ + lv_obj_t * label = lv_label_create(imgbtn1, NULL); + lv_label_set_text(label, "Button 1"); + + /*Copy the image button*/ + lv_obj_t * imgbtn2 = lv_imgbtn_create(lv_disp_get_scr_act(NULL), imgbtn1); + lv_imgbtn_set_state(imgbtn2, LV_BTN_STATE_TGL_REL); + lv_obj_align(imgbtn2, imgbtn1, LV_ALIGN_OUT_RIGHT_MID, 20, 0); + + label = lv_label_create(imgbtn2, NULL); + lv_label_set_text(label, "Button 2"); +} + + +/********************** + * STATIC FUNCTIONS + **********************/ + +static void imgbtn_event_handler(lv_obj_t * imgbtn, lv_event_t event) +{ + (void) imgbtn; /*Unused*/ + + if(event == LV_EVENT_SHORT_CLICKED) { + #if LV_EX_PRINTF + printf("Clicked\n"); + #endif + } + +} + +#endif /*LV_USE_IMGBTN && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.h b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.h new file mode 100644 index 0000000..86156b2 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.h @@ -0,0 +1,53 @@ +/** + * @file lv_test_imgbtn.h + * + */ + +#ifndef LV_TEST_IMGBTN_H +#define LV_TEST_IMGBTN_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../../lvgl/lvgl.h" +#include "../../../../lv_ex_conf.h" +#endif + +#if LV_USE_IMGBTN && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create imgbtns to test their functionalities + */ +void lv_test_imgbtn_1(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_IMGBTN && LV_USE_TESTS*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TEST_BAR_H*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.mk b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.mk new file mode 100644 index 0000000..52feba9 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn.mk @@ -0,0 +1,10 @@ +CSRCS += lv_test_imgbtn.c \ + imgbtn_img_1.c \ + imgbtn_img_2.c \ + imgbtn_img_3.c \ + imgbtn_img_4.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn +VPATH += :$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn" diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn_1.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn_1.png new file mode 100644 index 0000000..5c83144 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_imgbtn/lv_test_imgbtn_1.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.c b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.c new file mode 100644 index 0000000..8ff3053 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.c @@ -0,0 +1,101 @@ +/** + * @file lv_test_kb.c + * + */ + +/********************* + * INCLUDES + *********************/ + +#include "lv_test_kb.h" + +#if LV_USE_KB && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create a default object and test the basic functions + */ +void lv_test_kb_1(void) +{ + + lv_obj_t * ta = lv_ta_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_align(ta, NULL, LV_ALIGN_IN_TOP_MID, 0, 30); + + /* Default object*/ + lv_obj_t * kb1 = lv_kb_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_align(kb1, NULL, LV_ALIGN_IN_BOTTOM_MID, 0, 0); + lv_kb_set_ta(kb1, ta); +} + +/** + * Create a styles keyboard + */ +void lv_test_kb_2(void) +{ + + lv_coord_t hres = lv_disp_get_hor_res(NULL); + lv_coord_t vres = lv_disp_get_ver_res(NULL); + + lv_obj_t * ta = lv_ta_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_align(ta, NULL, LV_ALIGN_IN_TOP_MID, 0, 30); + + /* Default object*/ + lv_obj_t * kb1 = lv_kb_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_size(kb1, hres / 2, vres / 4); + lv_obj_align(kb1, NULL, LV_ALIGN_IN_BOTTOM_MID, 0, 0); + lv_kb_set_ta(kb1, ta); + + static lv_style_t bg; + static lv_style_t rel; + static lv_style_t pr; + + lv_style_copy(&bg, &lv_style_plain_color); + bg.body.main_color = LV_COLOR_NAVY; + bg.body.grad_color = LV_COLOR_NAVY; + bg.body.padding.left = 0; + bg.body.padding.right = 0; + bg.body.padding.top = 10; + bg.body.padding.bottom = 10; + bg.body.padding.inner = 0; + + lv_style_copy(&rel, &lv_style_plain); + rel.body.border.width = 1; + rel.body.main_color = LV_COLOR_WHITE; + rel.body.grad_color = LV_COLOR_SILVER; + rel.body.grad_color = LV_COLOR_SILVER; + rel.text.color = LV_COLOR_NAVY; + lv_style_copy(&pr, &lv_style_plain_color); + + lv_kb_set_style(kb1, LV_KB_STYLE_BG, &bg); + lv_kb_set_style(kb1, LV_KB_STYLE_BTN_REL, &rel); + lv_kb_set_style(kb1, LV_KB_STYLE_BTN_PR, &pr); +} + +/********************** + * STATIC FUNCTIONS + **********************/ + +#endif /*LV_USE_KB && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.h b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.h new file mode 100644 index 0000000..cc21f4b --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.h @@ -0,0 +1,58 @@ +/** + * @file lv_test_kb.h + * + */ + +#ifndef LV_TEST_KB_H +#define LV_TEST_KB_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../../lvgl/lvgl.h" +#include "../../../../lv_ex_conf.h" +#endif + +#if LV_USE_KB && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create a default object and test the basic functions + */ +void lv_test_kb_1(void); + +/** + * Create a styles keyboard + */ +void lv_test_kb_2(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_KB*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_USE_KB && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.mk b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.mk new file mode 100644 index 0000000..c526480 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb.mk @@ -0,0 +1,6 @@ +CSRCS += lv_test_kb.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_kb +VPATH += :$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_kb + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_kb" diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb_1.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb_1.png new file mode 100644 index 0000000..e136ec2 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb_1.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb_2.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb_2.png new file mode 100644 index 0000000..78b7664 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_kb/lv_test_kb_2.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.c b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.c new file mode 100644 index 0000000..8894d7e --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.c @@ -0,0 +1,208 @@ +/** + * @file lv_test_label.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_test_label.h" + +#if LV_USE_LABEL && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create labels with dynamic, static and array texts + */ +void lv_test_label_1(void) +{ + /* Default object*/ + lv_obj_t * label1 = lv_label_create(lv_disp_get_scr_act(NULL), NULL); + + /* Set label text to "I'm testing\nthe labels" */ + lv_obj_t * label2 = lv_label_create(lv_disp_get_scr_act(NULL), NULL); + lv_label_set_text(label2, "I'm testing\nthe labels"); + lv_obj_align(label2, label1, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 20); + + /* Set a static array as text and modify a letter later (Goal is "STATic text")*/ + static char label_static_text[] = {"static text"}; + lv_obj_t * label3 = lv_label_create(lv_disp_get_scr_act(NULL), NULL); + lv_label_set_static_text(label3, label_static_text); + lv_obj_align(label3, label2, LV_ALIGN_OUT_RIGHT_TOP, 20, 0); + label_static_text[0] = 'S'; /*Randomly modify letters*/ + label_static_text[1] = 'T'; + label_static_text[2] = 'A'; + label_static_text[3] = 'T'; + lv_label_set_text(label3, NULL); /*Refresh after modification*/ + + /* Set text from array*/ + char array_text[3]; /*Not static to see the text will remain after this variable is destroyed*/ + array_text[0] = 'a'; + array_text[1] = 'b'; + array_text[2] = 'c'; /*Not need to be '\0' terminated*/ + lv_obj_t * label4 = lv_label_create(lv_disp_get_scr_act(NULL), NULL); + lv_label_set_array_text(label4, array_text, sizeof(array_text)); + lv_obj_align(label4, label3, LV_ALIGN_OUT_RIGHT_TOP, 20, 0); + + /* Copy 'label2' (dynamic) and set style and background*/ + lv_obj_t * label5 = lv_label_create(lv_disp_get_scr_act(NULL), label2); + lv_obj_set_style(label5, &lv_style_pretty_color); + lv_obj_align(label5, label2, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 20); + lv_label_set_body_draw(label5, true); + + /* Copy 'label3' (static) and set style and background*/ + lv_obj_t * label6 = lv_label_create(lv_disp_get_scr_act(NULL), label3); + lv_obj_set_style(label6, &lv_style_pretty_color); + lv_obj_align(label6, label3, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 20); + lv_label_set_body_draw(label6, true); + + /* Copy 'label4' (array) and set style and background*/ + lv_obj_t * label7 = lv_label_create(lv_disp_get_scr_act(NULL), label4); + lv_obj_set_style(label7, &lv_style_pretty_color); + lv_obj_align(label7, label4, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 20); + lv_label_set_body_draw(label7, true); +} + +/** + * Test label long modes + */ +void lv_test_label_2(void) +{ + /* Test LV_LABEL_LONG_EXPAND (default) + * GOAL: A label with a long line*/ + lv_obj_t * label1 = lv_label_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_style(label1, &lv_style_plain_color); /*Set a background to clearly see the label size*/ + lv_label_set_body_draw(label1, true); + lv_label_set_text(label1, "This is a very long line which is not broken."); + lv_label_set_long_mode(label1, LV_LABEL_LONG_EXPAND); + + /* LV_LABEL_LONG_BERAK (set width and test line break) + * GOAL: the words are wrapped into multiple lines */ + lv_obj_t * label2 = lv_label_create(lv_disp_get_scr_act(NULL), NULL); + lv_label_set_body_draw(label2, true); + lv_obj_set_style(label2, &lv_style_plain_color); + lv_label_set_text(label2, "This is a long line and a VeryVeryLongWordToWrap.\n" + "A new line and a lot of spaces: . Can you see them?"); + lv_label_set_long_mode(label2, LV_LABEL_LONG_BREAK); + lv_obj_align(label2, label1, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 20); + lv_obj_set_width(label2, 100); + + /* LV_LABEL_LONG_ROLL (set size and test rolling) + * GOAL: the text is rolled in both directions*/ + lv_obj_t * label3 = lv_label_create(lv_disp_get_scr_act(NULL), NULL); + lv_label_set_body_draw(label3, true); + lv_obj_set_style(label3, &lv_style_plain_color); + lv_label_set_text(label3, "Long line to roll!"); + lv_label_set_long_mode(label3, LV_LABEL_LONG_SROLL); + lv_obj_align(label3, label2, LV_ALIGN_OUT_RIGHT_TOP, 20, 0); + lv_obj_set_size(label3, 100, 50); + + /* LV_LABEL_LONG_ROLL (set size and test rolling) + * GOAL: the text is rolled circularly*/ + lv_obj_t * label4 = lv_label_create(lv_scr_act(), label3); + lv_obj_set_style(label4, &lv_style_plain_color); + lv_label_set_text(label4, "Long line to roll circularly!"); +// lv_label_set_body_draw(label4, true); + lv_label_set_long_mode(label4, LV_LABEL_LONG_SROLL_CIRC); + lv_obj_align(label4, label3, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 20); + + /* LV_LABEL_LONG_DOTS (set size and a long text) + * GOAL: see dots at the end of the size */ + lv_obj_t * label5 = lv_label_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_style(label5, &lv_style_plain_color); + lv_label_set_body_draw(label5, true); + lv_label_set_long_mode(label5, LV_LABEL_LONG_DOT); + lv_obj_set_size(label5, 100, 60); + lv_label_set_text(label5, "Dots: aáeéiíoóuúAÁEÉIÍOÓUÚ"); + lv_obj_align(label5, label4, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 20); + + /*Restore dots*/ + lv_obj_t * label6 = lv_label_create(lv_disp_get_scr_act(NULL), label5); + lv_label_set_long_mode(label6, LV_LABEL_LONG_EXPAND); + lv_obj_align(label6, label5, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 20); +} + + +/** + * Test text insert and cut + */ +void lv_test_label_3(void) +{ + /*Test inserting*/ + lv_obj_t * label1 = lv_label_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_pos(label1, 10, 10); + lv_label_set_text(label1, "Test insert"); + lv_label_ins_text(label1, 4, " the"); + lv_label_ins_text(label1, 0, "I will "); + lv_label_ins_text(label1, LV_LABEL_POS_LAST, " feature"); + + lv_label_ins_text(label1, 7, "(UTF-8: aÁoÓ) "); + + lv_obj_t * label2 = lv_label_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_align(label2, label1, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 20); + lv_label_set_text(label2, "Characters to delete: abcd aÁ uÚ üŰ"); + lv_label_cut_text(label2, 4, 5); + lv_label_cut_text(label2, 21, 3); +} + +/** + * Test mixed features + */ +void lv_test_label_4(void) +{ + /* Create a label with '\r', '\n', '\r\n' and '\n\r' line breaks + * GOAL: The text in 5 lines without empty lines*/ + lv_obj_t * label1 = lv_label_create(lv_disp_get_scr_act(NULL), NULL); + lv_label_set_text(label1, "Line1\n" + "Line2\r" + "Line3\r\n" + "Line4"); + + /* Test recoloring + * GOAL: the word "red" is red*/ + lv_obj_t * label3 = lv_label_create(lv_disp_get_scr_act(NULL), NULL); + lv_label_set_text(label3, "This is a #ff0000 red# word"); + lv_label_set_recolor(label3, true); + lv_obj_align(label3, label1, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 20); + + /* Test UTF-8 support with LV_LABEL_LONG_BREAK, new lines and recolor + * GOAL: the word "red" is red*/ + lv_obj_t * label4 = lv_label_create(lv_disp_get_scr_act(NULL), NULL); + lv_label_set_text(label4, "Normal ASCII\n" + "UTF-8 letters:áÁééőŐöÖúÚűŰ\n" + "Recolor UTF-8: #ff0000 öŐ##00ff00 üŰ##0000ff éÉ#"); + lv_label_set_recolor(label4, true); + lv_label_set_long_mode(label4, LV_LABEL_LONG_BREAK); + lv_obj_set_width(label4, 100); + lv_obj_align(label4, label3, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 20); +} + + +/********************** + * STATIC FUNCTIONS + **********************/ + +#endif /*LV_USE_LABEL && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.h b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.h new file mode 100644 index 0000000..8b3df56 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.h @@ -0,0 +1,66 @@ +/** + * @file lv_test_label.h + * + */ + +#ifndef LV_TEST_LABEL_H +#define LV_TEST_LABEL_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../../lvgl/lvgl.h" +#include "../../../../lv_ex_conf.h" +#endif + +#if LV_USE_LABEL && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ +/** + * Create labels with dynamic, static and array texts + */ +void lv_test_label_1(void); + +/** + * Test label long modes + */ +void lv_test_label_2(void); + +/** + * Test text insert and cut + */ +void lv_test_label_3(void); + +/** + * Test mixed features + */ +void lv_test_label_4(void); +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_LABEL*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_USE_LABEL && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.mk b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.mk new file mode 100644 index 0000000..5731227 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label.mk @@ -0,0 +1,6 @@ +CSRCS += lv_test_label.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_label +VPATH += :$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_label + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_label" diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label_1.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label_1.png new file mode 100644 index 0000000..11b4240 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label_1.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label_2.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label_2.png new file mode 100644 index 0000000..593a412 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label_2.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label_3.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label_3.png new file mode 100644 index 0000000..86ca4bf Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label_3.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label_4.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label_4.png new file mode 100644 index 0000000..08611fc Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_label/lv_test_label_4.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.c b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.c new file mode 100644 index 0000000..ea8caa3 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.c @@ -0,0 +1,85 @@ +/** + * @file lv_test_led.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_test_led.h" + +#if LV_USE_LED && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create LEDs to test their functionalities + */ +void lv_test_led_1(void) +{ + /* Create a default object*/ + lv_obj_t * led1 = lv_led_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_pos(led1, 20, 20); + + /*Create styles LED*/ + static lv_style_t style; + lv_style_copy(&style, &lv_style_pretty_color); + style.body.shadow.width = 10; + style.body.radius = LV_RADIUS_CIRCLE; + style.body.border.width = 3; + style.body.border.opa = LV_OPA_30; + style.body.main_color = lv_color_make(0xb5, 0x0f, 0x04); + style.body.grad_color = lv_color_make(0x50, 0x07, 0x02); + style.body.border.color = lv_color_make(0xfa, 0x0f, 0x00); + style.body.shadow.color = lv_color_make(0xb5, 0x0f, 0x04); + + lv_obj_t * led2 = lv_led_create(lv_disp_get_scr_act(NULL), NULL); + lv_led_set_style(led2, LV_LED_STYLE_MAIN, &style); + lv_obj_align(led2, led1, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 20); + + /*Turned ON LED*/ + lv_obj_t * led_on = lv_led_create(lv_disp_get_scr_act(NULL), led2); + lv_obj_align(led_on, led2, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 20); + lv_led_on(led_on); + + /*Tuned OFF LED*/ + lv_obj_t * led_off = lv_led_create(lv_disp_get_scr_act(NULL), led_on); + lv_obj_align(led_off, led_on, LV_ALIGN_OUT_RIGHT_MID, 10, 0); + lv_led_off(led_off); + + /*Arbitrary brightness*/ + lv_obj_t * led_x = lv_led_create(lv_disp_get_scr_act(NULL), led_off); + lv_obj_align(led_x, led_off, LV_ALIGN_OUT_RIGHT_MID, 10, 0); + lv_led_set_bright(led_x, 170); + + +} + + +/********************** + * STATIC FUNCTIONS + **********************/ + +#endif /*LV_USE_LED && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.h b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.h new file mode 100644 index 0000000..2cfa8f2 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.h @@ -0,0 +1,52 @@ +/** + * @file lv_test_led.h + * + */ + +#ifndef LV_TEST_LED_H +#define LV_TEST_LED_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../../lvgl/lvgl.h" +#include "../../../../lv_ex_conf.h" +#endif + +#if LV_USE_LED && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create LEDs to test their functionalities + */ +void lv_test_led_1(void); +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_LED && LV_USE_TESTS*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TEST_LED_H*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.mk b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.mk new file mode 100644 index 0000000..9e58720 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led.mk @@ -0,0 +1,6 @@ +CSRCS += lv_test_led.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_led +VPATH += :$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_led + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_led" diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led_1.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led_1.png new file mode 100644 index 0000000..ff9406e Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_led/lv_test_led_1.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.c b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.c new file mode 100644 index 0000000..c341c63 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.c @@ -0,0 +1,82 @@ +/** + * @file lv_test_line.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_test_line.h" + +#if LV_USE_LINE && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create lines to test their functionalities + */ +void lv_test_line_1(void) +{ + static const lv_point_t p[] = {{5, 5}, {60, 5}, {120, 65}}; + + /* Create a default object*/ + lv_obj_t * line1 = lv_line_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_pos(line1, 10, 10); + lv_line_set_points(line1, p, 3); + + /*Test y invert*/ + lv_obj_t * line2 = lv_line_create(lv_disp_get_scr_act(NULL), line1); + lv_line_set_y_invert(line2, true); + lv_obj_align(line2, line1, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 5); + + /*Test styling*/ + static lv_style_t style1; + lv_style_copy(&style1, &lv_style_plain); + + style1.line.color = LV_COLOR_RED; + style1.line.width = 20; + + lv_obj_t * line3 = lv_line_create(lv_disp_get_scr_act(NULL), line2); + lv_line_set_style(line3, LV_LINE_STYLE_MAIN, &style1); + lv_obj_align(line3, line1, LV_ALIGN_OUT_RIGHT_TOP, 5, 0); + lv_obj_set_hidden(line3, false); + + /*Test rounding*/ + static lv_style_t style2; + lv_style_copy(&style2, &style1); + style2.line.rounded = 1; + + lv_obj_t * line4 = lv_line_create(lv_disp_get_scr_act(NULL), line3); + lv_line_set_style(line4, LV_LINE_STYLE_MAIN, &style2); + lv_obj_align(line4, line3, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 5); + lv_obj_set_hidden(line4, false); +} + + +/********************** + * STATIC FUNCTIONS + **********************/ + +#endif /*LV_USE_LINE && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.h b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.h new file mode 100644 index 0000000..7a3c102 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.h @@ -0,0 +1,53 @@ +/** + * @file lv_test_line.h + * + */ + +#ifndef LV_TEST_LINE_H +#define LV_TEST_LINE_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../../lvgl/lvgl.h" +#include "../../../../lv_ex_conf.h" +#endif + +#if LV_USE_LINE && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create lines to test their functionalities + */ +void lv_test_line_1(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_LINE && LV_USE_TESTS*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TEST_LINE_H*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.mk b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.mk new file mode 100644 index 0000000..cb61735 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line.mk @@ -0,0 +1,6 @@ +CSRCS += lv_test_line.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_line +VPATH += :$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_line + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_line" diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line_1.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line_1.png new file mode 100644 index 0000000..fdc54dc Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_line/lv_test_line_1.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.c b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.c new file mode 100644 index 0000000..f38777e --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.c @@ -0,0 +1,123 @@ +/** + * @file lv_test_list.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_test_list.h" + +#if LV_USE_LIST && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ +static void list_move_event_handler(lv_obj_t * btn, lv_event_t event); + +/********************** + * STATIC VARIABLES + **********************/ +static lv_obj_t * list1; +static lv_obj_t * list2; +static lv_obj_t * list3; +static lv_obj_t * list4; + +static lv_obj_t * btn_up; +static lv_obj_t * btn_down; + +LV_IMG_DECLARE(img_flower_icon) /*Comes from lv_test_img*/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create lists to test their functionalities + */ +void lv_test_list_1(void) +{ + /* Default object. It will be an empty list*/ + list1 = lv_list_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_pos(list1, 10, 10); + + list2 = lv_list_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_align(list2, list1, LV_ALIGN_OUT_RIGHT_TOP, 20, 0); + lv_list_add_btn(list2, LV_SYMBOL_FILE, "File"); + lv_list_add_btn(list2, LV_SYMBOL_DIRECTORY, "Directory"); + lv_list_add_btn(list2, &img_flower_icon, "Image icon"); + lv_obj_set_width(list2, 100); + + list3 = lv_list_create(lv_disp_get_scr_act(NULL), list2); + lv_obj_align(list3, list2, LV_ALIGN_OUT_RIGHT_TOP, 20, 0); + lv_list_add_btn(list3, NULL, "No icon"); + lv_list_add_btn(list3, LV_SYMBOL_CLOSE, ""); + lv_list_add_btn(list3, LV_SYMBOL_UP, "Up"); + lv_list_add_btn(list3, LV_SYMBOL_DOWN, "Down"); + + static lv_style_t sb; + static lv_style_t bg; + lv_style_copy(&sb, &lv_style_pretty_color); + lv_style_copy(&bg, &lv_style_pretty_color); + sb.body.padding.right = -10; + sb.body.padding.inner = 10; + + bg.body.padding.left = 20; + bg.body.padding.right = 20; + + list4 = lv_list_create(lv_disp_get_scr_act(NULL), list3); + lv_list_set_style(list4, LV_LIST_STYLE_BG, &bg); + lv_list_set_style(list4, LV_LIST_STYLE_SB, &sb); + lv_obj_align(list4, list3, LV_ALIGN_OUT_RIGHT_TOP, 20, 0); + lv_obj_set_width(list4, 200); + + /*Add list up/down buttons*/ + btn_up = lv_btn_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_align(btn_up, list1, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 10); + lv_obj_set_event_cb(btn_up, list_move_event_handler); + lv_obj_t * label = lv_label_create(btn_up, NULL); + lv_label_set_text(label, LV_SYMBOL_UP); + + btn_down = lv_btn_create(lv_disp_get_scr_act(NULL), btn_up); + lv_obj_align(btn_down, btn_up, LV_ALIGN_OUT_RIGHT_MID, 10, 0); + label = lv_label_create(btn_down, NULL); + lv_label_set_text(label, LV_SYMBOL_DOWN); + +} + + + +/********************** + * STATIC FUNCTIONS + **********************/ + +static void list_move_event_handler(lv_obj_t * btn, lv_event_t event) +{ + if(event != LV_EVENT_SHORT_CLICKED) return; + + if(btn == btn_up) { + lv_list_up(list1); + lv_list_up(list2); + lv_list_up(list3); + lv_list_up(list4); + } else if(btn == btn_down) { + lv_list_down(list1); + lv_list_down(list2); + lv_list_down(list3); + lv_list_down(list4); + } +} + +#endif /*LV_USE_LIST && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.h b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.h new file mode 100644 index 0000000..0ccd672 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.h @@ -0,0 +1,53 @@ +/** + * @file lv_test_list.h + * + */ + +#ifndef LV_TEST_LIST_H +#define LV_TEST_LIST_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../../lvgl/lvgl.h" +#include "../../../../lv_ex_conf.h" +#endif + +#if LV_USE_LIST && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create lists to test their functionalities + */ +void lv_test_list_1(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_LIST && LV_USE_TESTS*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TEST_LIST_H*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.mk b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.mk new file mode 100644 index 0000000..c6d0724 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list.mk @@ -0,0 +1,6 @@ +CSRCS += lv_test_list.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_list +VPATH += :$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_list + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_list" diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list_1.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list_1.png new file mode 100644 index 0000000..0dc85d6 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_list/lv_test_list_1.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.c b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.c new file mode 100644 index 0000000..2c42f34 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.c @@ -0,0 +1,81 @@ +/** + * @file lv_test_lmeter.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include + +#include "lv_test_lmeter.h" + +#if LV_USE_LMETER && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ +/** + * Create line meters to test their functionalities + */ +void lv_test_lmeter_1(void) +{ + /* Create a default object*/ + lv_obj_t * lmeter1 = lv_lmeter_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_pos(lmeter1, 10, 10); + lv_lmeter_set_value(lmeter1, 60); + + /*Copy the previous line meter and set smaller size for it*/ + lv_obj_t * lmeter2 = lv_lmeter_create(lv_disp_get_scr_act(NULL), lmeter1); + lv_obj_set_size(lmeter2, LV_DPI / 2, LV_DPI / 2); + lv_obj_align(lmeter2, lmeter1, LV_ALIGN_OUT_BOTTOM_MID, 0, 10); + + /*Create a styled line meter*/ + static lv_style_t style3; + lv_style_copy(&style3, &lv_style_pretty); + style3.body.main_color = LV_COLOR_GREEN; + style3.body.grad_color = LV_COLOR_RED; + style3.body.padding.left = 4; + style3.body.border.color = LV_COLOR_GRAY; /*Means the needle middle*/ + style3.line.width = 2; + style3.line.color = LV_COLOR_SILVER; + + lv_obj_t * lmeter3 = lv_lmeter_create(lv_disp_get_scr_act(NULL), lmeter1); + lv_obj_align(lmeter3, lmeter1, LV_ALIGN_OUT_RIGHT_MID, 20, 0); + lv_obj_set_style(lmeter3, &style3); + lv_lmeter_set_scale(lmeter3, 270, 41); + lv_lmeter_set_range(lmeter3, -100, 100); + lv_lmeter_set_value(lmeter3, 50); + + /*Copy the modified 'lmeter3' and set a smaller size for it*/ + lv_obj_t * lmeter4 = lv_lmeter_create(lv_disp_get_scr_act(NULL), lmeter3); + lv_obj_set_size(lmeter4, 60, 60); + lv_obj_align(lmeter4, lmeter3, LV_ALIGN_OUT_BOTTOM_MID, 0, 10); + +} + +/********************** + * STATIC FUNCTIONS + **********************/ + +#endif /*LV_USE_LMETER && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.h b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.h new file mode 100644 index 0000000..d5e26ab --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.h @@ -0,0 +1,52 @@ +/** + * @file lv_test_lmeter.h + * + */ + +#ifndef LV_TEST_LMETER_H +#define LV_TEST_LMETER_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../../lvgl/lvgl.h" +#include "../../../../lv_ex_conf.h" +#endif + +#if LV_USE_LMETER && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ +/** + * Create line meters to test their functionalities + */ +void lv_test_lmeter_1(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_LMETER && LV_USE_TESTS*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TEST_LMETER_H*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.mk b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.mk new file mode 100644 index 0000000..d898b39 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter.mk @@ -0,0 +1,6 @@ +CSRCS += lv_test_lmeter.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter +VPATH += :$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter" diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter_1.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter_1.png new file mode 100644 index 0000000..d85c92e Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_lmeter/lv_test_lmeter_1.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.c b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.c new file mode 100644 index 0000000..3ac9c51 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.c @@ -0,0 +1,114 @@ +/** + * @file lv_test_mbox.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_test_mbox.h" +#if LV_USE_MBOX && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ +static void mbox_event_cb(lv_obj_t * mbox, lv_event_t event); + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create message boxes to test their functionalities + */ +void lv_test_mbox_1(void) +{ + /* Default object */ + lv_obj_t * mbox1 = lv_mbox_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_pos(mbox1, 10, 10); + + /*Add buttons and modify text*/ + static const char * btns2[] = {"Ok", "Cancel", ""}; + lv_obj_t * mbox2 = lv_mbox_create(lv_disp_get_scr_act(NULL), NULL); + lv_mbox_add_btns(mbox2, btns2); + lv_mbox_set_text(mbox2, "Message"); + lv_obj_set_width(mbox2, lv_disp_get_hor_res(NULL) / 2); + lv_obj_align(mbox2, mbox1, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 10); + + /*Add styles*/ + static lv_style_t bg; + static lv_style_t btn_bg; + lv_style_copy(&bg, &lv_style_pretty); + lv_style_copy(&btn_bg, &lv_style_pretty); + bg.body.padding.left = 20; + bg.body.padding.right = 20; + bg.body.padding.top = 20; + bg.body.padding.bottom = 20; + bg.body.padding.inner = 20; + bg.body.main_color = LV_COLOR_BLACK; + bg.body.grad_color = LV_COLOR_MAROON; + bg.text.color = LV_COLOR_WHITE; + + btn_bg.body.padding.left = 10; + btn_bg.body.padding.right = 10; + btn_bg.body.padding.top = 5; + btn_bg.body.padding.bottom = 5; + btn_bg.body.padding.inner = 40; + btn_bg.body.opa = LV_OPA_TRANSP; + btn_bg.body.border.color = LV_COLOR_WHITE; + btn_bg.text.color = LV_COLOR_WHITE; + + static lv_style_t btn_rel; + lv_style_copy(&btn_rel, &lv_style_btn_rel); + btn_rel.body.opa = LV_OPA_TRANSP; + btn_rel.body.border.color = LV_COLOR_WHITE; + + lv_obj_t * mbox3 = lv_mbox_create(lv_disp_get_scr_act(NULL), mbox2); + lv_mbox_set_style(mbox3, LV_MBOX_STYLE_BTN_REL, &btn_rel); + lv_mbox_set_style(mbox3, LV_MBOX_STYLE_BTN_BG, &btn_bg); + lv_mbox_set_style(mbox3, LV_MBOX_STYLE_BG, &bg); + lv_obj_align(mbox3, mbox1, LV_ALIGN_OUT_RIGHT_TOP, 10, 0); + lv_obj_set_event_cb(mbox3, mbox_event_cb); + + /*Copy with styles and set button width*/ + lv_obj_t * mbox4 = lv_mbox_create(lv_disp_get_scr_act(NULL), mbox3); + lv_mbox_set_text(mbox4, "A quite long message text which is\n" + "manually broken into multiple lines"); + + static const char * btns3[] = {"Ok", "Cancel", "Third", ""}; + lv_mbox_add_btns(mbox4, btns3); + lv_obj_set_event_cb(mbox4, mbox_event_cb); + lv_obj_align(mbox4, mbox3, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 10); +} + +/********************** + * STATIC FUNCTIONS + **********************/ + +static void mbox_event_cb(lv_obj_t * mbox, lv_event_t event) +{ + if(event != LV_EVENT_CLICKED) return; + + const char * btn_txt = lv_mbox_get_active_btn_text(mbox); + if(btn_txt) { + lv_mbox_set_text(mbox, btn_txt); + } +} + +#endif /*LV_USE_MBOX && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.h b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.h new file mode 100644 index 0000000..ccdda44 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.h @@ -0,0 +1,53 @@ +/** + * @file lv_test_mbox.h + * + */ + +#ifndef LV_TEST_MBOX_H +#define LV_TEST_MBOX_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../../lvgl/lvgl.h" +#include "../../../../lv_ex_conf.h" +#endif + +#if LV_USE_MBOX && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create message boxes to test their functionalities + */ +void lv_test_mbox_1(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_MBOX && LV_USE_TESTS*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TEST_MBOX_H*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.mk b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.mk new file mode 100644 index 0000000..810dc2f --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox.mk @@ -0,0 +1,6 @@ +CSRCS += lv_test_mbox.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_mbox +VPATH += :$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_mbox + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_mbox" diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox_1.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox_1.png new file mode 100644 index 0000000..dff0f03 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_mbox/lv_test_mbox_1.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.c b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.c new file mode 100644 index 0000000..77a6f87 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.c @@ -0,0 +1,168 @@ +/** + * @file lv_test_page.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_test_page.h" + +#if LV_USE_PAGE && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ +static void event_handler(lv_obj_t * page, lv_event_t event); + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create pages to test their basic functionalities + */ +void lv_test_page_1(void) +{ + /*Create a page which should look well*/ + lv_obj_t * page1 = lv_page_create(lv_disp_get_scr_act(NULL), NULL); + + /*Resize the page*/ + lv_obj_t * page2 = lv_page_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_size(page2, LV_DPI, LV_DPI * 2); + lv_obj_align(page2, page1, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 20); + + /*Add some text to text the scrolling*/ + lv_obj_t * page3 = lv_page_create(lv_disp_get_scr_act(NULL), page2); + lv_obj_set_size(page3, LV_DPI, LV_DPI * 2); + lv_obj_align(page3, page2, LV_ALIGN_OUT_RIGHT_TOP, 20, 0); + + lv_obj_t * label = lv_label_create(page3, NULL); + lv_label_set_text(label, "First line of a text\n" + "Second line of a text\n" + "Third line of a text\n" + "Forth line of a text\n" + "Fifth line of a text\n" + "Sixth line of a text\n" + "Seventh line of a text\n" + "Eight line of a text\n" + "Ninth line of a text\n" + "Tenth line of a text\n"); + + /*Enable horizontal fit to set scrolling in both directions*/ + lv_obj_t * page4 = lv_page_create(lv_disp_get_scr_act(NULL), page3); + lv_obj_align(page4, page3, LV_ALIGN_OUT_RIGHT_TOP, 20, 0); + label = lv_label_create(page4, label); + +} + +/** + * Test styling, scrollbar modes, layout and action + */ +void lv_test_page_2(void) +{ + static lv_style_t bg; + static lv_style_t scrl; + static lv_style_t sb; + + lv_style_copy(&bg, &lv_style_pretty); + lv_style_copy(&scrl, &lv_style_pretty); + lv_style_copy(&sb, &lv_style_pretty); + + bg.body.main_color = LV_COLOR_SILVER; + bg.body.grad_color = LV_COLOR_GRAY; + bg.body.padding.left = 5; + bg.body.padding.right = 5; + bg.body.padding.top = 20; + bg.body.padding.bottom = 20; + + scrl.body.main_color = LV_COLOR_BLUE; + scrl.body.grad_color = LV_COLOR_NAVY; + scrl.body.padding.left = 3; + scrl.body.padding.right = 3; + scrl.body.padding.top = 3; + scrl.body.padding.bottom = 3; + scrl.body.shadow.width = 15; + scrl.text.color = LV_COLOR_SILVER; + + sb.body.padding.right = -10; /*Out of the page*/ + sb.body.padding.bottom = 10; + sb.body.padding.inner = 10; + sb.body.main_color = LV_COLOR_WHITE; + sb.body.grad_color = LV_COLOR_WHITE; + sb.body.opa = LV_OPA_70; + + /* Create a page with new style, layout, fit, action and scrollbar OFF*/ + lv_obj_t * page1 = lv_page_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_size(page1, LV_DPI, LV_DPI * 2); + lv_page_set_scrl_layout(page1, LV_LAYOUT_COL_L); + lv_page_set_sb_mode(page1, LV_SB_MODE_OFF); + lv_obj_set_event_cb(page1, event_handler); + lv_page_set_style(page1, LV_PAGE_STYLE_BG, &bg); + lv_page_set_style(page1, LV_PAGE_STYLE_SCRL, &scrl); + lv_page_set_style(page1, LV_PAGE_STYLE_SB, &sb); + + lv_obj_t * label = lv_label_create(page1, NULL); + lv_label_set_text(label, "First line of a text\n" + "Second line of a text\n" + "Third line of a text\n" + "Forth line of a text\n" + "Fifth line of a text\n"); + + /*Copy 'page1' and set scrollbar ON*/ + lv_obj_t * page2 = lv_page_create(lv_disp_get_scr_act(NULL), page1); + lv_obj_align(page2, page1, LV_ALIGN_OUT_RIGHT_TOP, 20, 0); + label = lv_label_create(page2, label); + lv_page_set_sb_mode(page2, LV_SB_MODE_ON); + + /*Copy 'page1' and set scrollbar AUTO*/ + lv_obj_t * page3 = lv_page_create(lv_disp_get_scr_act(NULL), page1); + lv_obj_align(page3, page2, LV_ALIGN_OUT_RIGHT_TOP, 20, 0); + label = lv_label_create(page3, label); + lv_page_set_sb_mode(page3, LV_SB_MODE_AUTO); + + /*Copy 'page1' and set scrollbar DRAG*/ + lv_obj_t * page4 = lv_page_create(lv_disp_get_scr_act(NULL), page1); + lv_obj_align(page4, page3, LV_ALIGN_OUT_RIGHT_TOP, 20, 0); + label = lv_label_create(page4, label); + lv_page_set_sb_mode(page4, LV_SB_MODE_DRAG); + + +} + + +/********************** + * STATIC FUNCTIONS + **********************/ + + +static void event_handler(lv_obj_t * page, lv_event_t event) +{ + if(event == LV_EVENT_SHORT_CLICKED) { + lv_obj_t * label = lv_label_create(page, NULL); + lv_label_set_text(label, "First line of a text\n" + "Second line of a text\n" + "Third line of a text\n" + "Forth line of a text\n" + "Fifth line of a text\n"); + } +} + + +#endif /*LV_USE_PAGE && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.h b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.h new file mode 100644 index 0000000..a20ca13 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.h @@ -0,0 +1,58 @@ +/** + * @file lv_test_page.h + * + */ + +#ifndef LV_TEST_PAGE_H +#define LV_TEST_PAGE_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../../lvgl/lvgl.h" +#include "../../../../lv_ex_conf.h" +#endif + +#if LV_USE_PAGE && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create pages to test their basic functionalities + */ +void lv_test_page_1(void); + +/** + * Test styling, scrollbar modes, layout and action + */ +void lv_test_page_2(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_PAGE && LV_USE_TESTS*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TEST_PAGE_H*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.mk b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.mk new file mode 100644 index 0000000..d649463 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page.mk @@ -0,0 +1,6 @@ +CSRCS += lv_test_page.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_page +VPATH += :$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_page + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_page" diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page_1.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page_1.png new file mode 100644 index 0000000..5b59644 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page_1.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page_2.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page_2.png new file mode 100644 index 0000000..7830e0c Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_page/lv_test_page_2.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.c b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.c new file mode 100644 index 0000000..8a722ab --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.c @@ -0,0 +1,83 @@ +/** + * @file lv_test_preload.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_test_preload.h" +#if LV_USE_PRELOAD && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create preloads to test their functionalities + */ +void lv_test_preload_1(void) +{ + /* Create a default object. It will look strange with the default style*/ + lv_obj_t * preload1 = lv_preload_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_pos(preload1, 10, 10); + + /* Create and apply a style*/ + static lv_style_t style1; + lv_style_copy(&style1, &lv_style_plain); + style1.line.color = LV_COLOR_RED; + style1.line.width = 8; + style1.line.rounded = 1; + style1.body.border.width = 2; + style1.body.border.color = LV_COLOR_MAROON; + style1.body.padding.left = 3; + style1.body.padding.right = 3; + style1.body.padding.top = 3; + style1.body.padding.bottom = 3; + lv_obj_t * preload2 = lv_preload_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_size(preload2, 60, 60); + lv_preload_set_style(preload2, LV_PRELOAD_STYLE_MAIN, &style1); + lv_obj_align(preload2, preload1, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 20); + + + lv_obj_t * preload3 = lv_preload_create(lv_disp_get_scr_act(NULL), preload2); + lv_preload_set_arc_length(preload3, 90); + lv_preload_set_spin_time(preload3, 5000); + lv_obj_align(preload3, preload2, LV_ALIGN_OUT_RIGHT_TOP, 20, 0); +// +// /* Copy 'preload2' and set a new style for it */ +// static lv_style_t style1; +// lv_style_copy(&style1, &lv_style_plain); +// style1.line.color = LV_COLOR_RED; +// style1.line.width = 8; +// lv_obj_t * preload3 = lv_preload_create(lv_scr_act(NULL), preload2); +// lv_obj_set_style(preload3, &style1); + +} + + +/********************** + * STATIC FUNCTIONS + **********************/ + +#endif /*LV_USE_PRELOAD && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.h b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.h new file mode 100644 index 0000000..85c0312 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.h @@ -0,0 +1,53 @@ +/** + * @file lv_test_preload.h + * + */ + +#ifndef LV_TEST_PRELOAD_H +#define LV_TEST_PRELOAD_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../../lvgl/lvgl.h" +#include "../../../../lv_ex_conf.h" +#endif + +#if LV_USE_PRELOAD && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create preloads to test their functionalities + */ +void lv_test_preload_1(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_PRELOAD && LV_USE_TESTS*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TEST_BAR_H*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.mk b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.mk new file mode 100644 index 0000000..c756312 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload.mk @@ -0,0 +1,6 @@ +CSRCS += lv_test_preload.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_preload +VPATH += :$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_preload + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_preload" diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload_1.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload_1.png new file mode 100644 index 0000000..e8aff67 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_preload/lv_test_preload_1.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.c b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.c new file mode 100644 index 0000000..05ad062 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.c @@ -0,0 +1,75 @@ +/** + * @file lv_test_roller.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_test_roller.h" + +#if LV_USE_ROLLER && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create rollers to test their functionalities + */ +void lv_test_roller_1(void) +{ + /* Default object*/ + lv_obj_t * roller1 = lv_roller_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_pos(roller1, 10, 10); + + static lv_style_t bg; + lv_style_copy(&bg, &lv_style_pretty); + bg.body.main_color = LV_COLOR_SILVER; + bg.body.grad_color = LV_COLOR_WHITE; + bg.body.shadow.width = 5; + bg.text.line_space = 10; + bg.text.opa = LV_OPA_60; + + lv_obj_t * roller2 = lv_roller_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_align(roller2, roller1, LV_ALIGN_OUT_RIGHT_TOP, 20, 0); + lv_roller_set_anim_time(roller2, 500); + lv_roller_set_style(roller2, LV_ROLLER_STYLE_BG, &bg); + lv_roller_set_style(roller2, LV_ROLLER_STYLE_SEL, &lv_style_plain); + lv_roller_set_selected(roller2, 4, true); + lv_roller_set_options(roller2, "0\n1\n2\n3\n4\n5\n6\n7\n8\n9", true); + lv_roller_set_visible_row_count(roller2, 3); + + lv_obj_t * roller3 = lv_roller_create(lv_disp_get_scr_act(NULL), roller2); + lv_obj_align(roller3, roller2, LV_ALIGN_OUT_RIGHT_TOP, 20, 0); + lv_roller_set_fix_width(roller3, LV_DPI); + lv_roller_set_align(roller3, LV_LABEL_ALIGN_RIGHT); + +} + + +/********************** + * STATIC FUNCTIONS + **********************/ + +#endif /*LV_USE_ROLLER && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.h b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.h new file mode 100644 index 0000000..6e67478 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.h @@ -0,0 +1,53 @@ +/** + * @file lv_test_roller.h + * + */ + +#ifndef LV_TEST_ROLLER_H +#define LV_TEST_ROLLER_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../../lvgl/lvgl.h" +#include "../../../../lv_ex_conf.h" +#endif + +#if LV_USE_ROLLER && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create rollers to test their functionalities + */ +void lv_test_roller_1(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_ROLLER && LV_USE_TESTS*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TEST_ROLLER_H*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.mk b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.mk new file mode 100644 index 0000000..0250fa9 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller.mk @@ -0,0 +1,6 @@ +CSRCS += lv_test_roller.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_roller +VPATH += :$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_roller + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_roller" diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller_1.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller_1.png new file mode 100644 index 0000000..572038d Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_roller/lv_test_roller_1.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.c b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.c new file mode 100644 index 0000000..2eb033c --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.c @@ -0,0 +1,100 @@ +/** + * @file lv_test_slider.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_test_slider.h" + +#if LV_USE_SLIDER && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create sliders to test their functionalities + */ +void lv_test_slider_1(void) +{ + /* Create a default object*/ + lv_obj_t * slider1 = lv_slider_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_pos(slider1, 10, 10); + + /* Modify size and position, range and set to 75 % */ + lv_obj_t * slider2 = lv_slider_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_size(slider2, 150, 50); + lv_obj_align(slider2, slider1, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 20); + lv_slider_set_range(slider2, -50, 50); + lv_slider_set_value(slider2, 25, false); + + /* Copy 'slider2' but set its size to be vertical (indicator at 75%)*/ + lv_obj_t * slider3 = lv_slider_create(lv_disp_get_scr_act(NULL), slider2); + lv_obj_set_size(slider3, 50, 150); + lv_obj_align(slider3, slider2, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 20); + + + /* Copy 'slider2' and set new style for it + * (like 'slider2' on its left but dark bg, thin red indicator with big light)*/ + static lv_style_t slider_bg; + lv_style_copy(&slider_bg, &lv_style_pretty); + slider_bg.body.main_color = LV_COLOR_BLACK; + + static lv_style_t slider_indic; + lv_style_copy(&slider_indic, &lv_style_pretty); + slider_indic.body.main_color = LV_COLOR_RED; + slider_indic.body.grad_color = LV_COLOR_MAROON; + slider_indic.body.shadow.color = LV_COLOR_RED; + slider_indic.body.shadow.width = 20; + slider_indic.body.padding.left = 0; + slider_indic.body.padding.right = 0; + slider_indic.body.padding.top = 0; + slider_indic.body.padding.bottom = 0; + + static lv_style_t slider_knob; + lv_style_copy(&slider_knob, &lv_style_pretty); + slider_knob.body.radius = LV_RADIUS_CIRCLE; + slider_knob.body.border.color = LV_COLOR_BLUE; + slider_knob.body.opa = LV_OPA_TRANSP; + + lv_obj_t * slider4 = lv_slider_create(lv_disp_get_scr_act(NULL), slider2); + lv_obj_align(slider4, slider2, LV_ALIGN_OUT_RIGHT_MID, 20, 0); + lv_slider_set_style(slider4, LV_SLIDER_STYLE_BG, &slider_bg); + lv_slider_set_style(slider4, LV_SLIDER_STYLE_INDIC, &slider_indic); + lv_slider_set_style(slider4, LV_SLIDER_STYLE_KNOB, &slider_knob); + + /* Copy 'slider4' but set its size to be vertical*/ + lv_obj_t * slider5 = lv_slider_create(lv_disp_get_scr_act(NULL), slider4); + lv_obj_set_size(slider5, 50, 150); + lv_obj_align(slider5, slider4, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 20); + +} + + +/********************** + * STATIC FUNCTIONS + **********************/ + +#endif /*LV_USE_SLIDER && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.h b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.h new file mode 100644 index 0000000..1193152 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.h @@ -0,0 +1,53 @@ +/** + * @file lv_test_slider.h + * + */ + +#ifndef LV_TEST_SLIDER_H +#define LV_TEST_SLIDER_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../../lvgl/lvgl.h" +#include "../../../../lv_ex_conf.h" +#endif + +#if LV_USE_SLIDER && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create sliders to test their functionalities + */ +void lv_test_slider_1(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_SLIDER*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_USE_SLIDER && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.mk b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.mk new file mode 100644 index 0000000..4104993 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider.mk @@ -0,0 +1,6 @@ +CSRCS += lv_test_slider.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_slider_bar +VPATH += :$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_slider + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_slider" diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider_1.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider_1.png new file mode 100644 index 0000000..86d15f5 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_slider/lv_test_slider_1.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.c b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.c new file mode 100644 index 0000000..02352ac --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.c @@ -0,0 +1,93 @@ +/** + * @file lv_test_sw.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include /*For printf in the action*/ +#include "lv_test_sw.h" + +#if LV_USE_SW && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ +static void event_handler(lv_obj_t * sw, lv_event_t event); + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create switches to test their functionalities + */ +void lv_test_sw_1(void) +{ + /* Default object */ + lv_obj_t * sw1 = lv_sw_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_pos(sw1, 10, 10); + lv_obj_set_event_cb(sw1, event_handler); + + static lv_style_t bg; + static lv_style_t indic; + + lv_style_copy(&bg, &lv_style_pretty); + bg.body.padding.left = -5; + bg.body.padding.right = -5; + bg.body.padding.top = -5; + bg.body.padding.bottom = -5; + + lv_style_copy(&indic, &lv_style_pretty_color); + indic.body.padding.left = 8; + indic.body.padding.right = 8; + indic.body.padding.top = 8; + indic.body.padding.bottom = 8; + + lv_obj_t * sw2 = lv_sw_create(lv_disp_get_scr_act(NULL), sw1); + lv_sw_set_style(sw2, LV_SW_STYLE_BG, &bg); + lv_sw_set_style(sw2, LV_SW_STYLE_INDIC, &indic); + lv_sw_set_style(sw2, LV_SW_STYLE_KNOB_OFF, &lv_style_btn_pr); + lv_sw_set_style(sw2, LV_SW_STYLE_KNOB_ON, &lv_style_btn_tgl_pr); + + lv_sw_on(sw2, LV_ANIM_OFF); + lv_obj_align(sw2, sw1, LV_ALIGN_OUT_RIGHT_MID, 20, 0); + + lv_obj_t * sw3 = lv_sw_create(lv_disp_get_scr_act(NULL), sw2); + lv_obj_align(sw3, sw2, LV_ALIGN_OUT_RIGHT_MID, 20, 0); + +} + +/********************** + * STATIC FUNCTIONS + **********************/ + +static void event_handler(lv_obj_t * sw, lv_event_t event) +{ + + if(event == LV_EVENT_VALUE_CHANGED) { +#if LV_EX_PRINTF + printf("Switch state: %d\n", lv_sw_get_state(sw)); +#endif + } +} + + +#endif /*LV_USE_SW && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.h b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.h new file mode 100644 index 0000000..1a39d4d --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.h @@ -0,0 +1,53 @@ +/** + * @file lv_test_sw.h + * + */ + +#ifndef LV_TEST_SW_H +#define LV_TEST_SW_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../../lvgl/lvgl.h" +#include "../../../../lv_ex_conf.h" +#endif + +#if LV_USE_SW && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create switches to test their functionalities + */ +void lv_test_sw_1(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_SW && LV_USE_TESTS*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TEST_SW_H*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.mk b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.mk new file mode 100644 index 0000000..2b79eb1 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw.mk @@ -0,0 +1,6 @@ +CSRCS += lv_test_sw.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_sw +VPATH += :$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_sw + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_sw" diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw_1.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw_1.png new file mode 100644 index 0000000..51ecf45 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_sw/lv_test_sw_1.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.c b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.c new file mode 100644 index 0000000..f568613 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.c @@ -0,0 +1,241 @@ +/** + * @file lv_test_ta.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_test_ta.h" + +#if LV_USE_TA && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ +static void nav_btn_event_handler(lv_obj_t * btn, lv_event_t event); + +/********************** + * STATIC VARIABLES + **********************/ +static lv_obj_t * ta2_1; +static lv_obj_t * ta2_2; +static lv_obj_t * ta2_3; +static lv_obj_t * ta2_4; + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create text areas to test their basic functionalities + */ +void lv_test_ta_1(void) +{ + /* Create a text area which looks well */ + lv_obj_t * ta1 = lv_ta_create(lv_disp_get_scr_act(NULL), NULL); + + /*A text area with the following text: + * Next long test text and testing the automatic (line break here) + * and manual line break feature too. + *(The cursor should be at the end of text) + * + * + * If UTF-8 is enabled these characters are added at the beginning: + * "űŰöÖ " + * The cursor should be after these letters*/ + + lv_obj_t * ta2 = lv_ta_create(lv_disp_get_scr_act(NULL), NULL); + lv_ta_set_text(ta2, "New text"); + lv_ta_set_cursor_pos(ta2, 4); + lv_ta_add_text(ta2, "test "); + lv_ta_set_cursor_pos(ta2, 4); + lv_ta_add_char(ta2, 'l'); + lv_ta_add_char(ta2, 'o'); + lv_ta_add_char(ta2, 'n'); + lv_ta_add_char(ta2, 'g'); + lv_ta_add_char(ta2, ' '); + lv_ta_set_cursor_pos(ta2, LV_TA_CURSOR_LAST); + lv_ta_add_text(ta2, " and testing the automatic\n" + "and manual line break feature too."); + + lv_ta_set_cursor_pos(ta2, 0); + lv_ta_add_text(ta2, "á"); + lv_ta_add_text(ta2, "Á"); + lv_ta_add_text(ta2, "ü"); + lv_ta_add_text(ta2, "Ü"); + lv_ta_add_char(ta2, ' '); + + lv_obj_align(ta2, ta1, LV_ALIGN_OUT_BOTTOM_MID, 0, 10); + + /*Test password mode and one line*/ + lv_obj_t * ta3 = lv_ta_create(lv_disp_get_scr_act(NULL), NULL); + lv_ta_set_pwd_mode(ta3, true); + lv_ta_set_one_line(ta3, true); + + lv_obj_align(ta3, ta2, LV_ALIGN_OUT_BOTTOM_MID, 0, 10); + lv_ta_set_text(ta3, "a A"); + lv_ta_set_cursor_pos(ta3, 1); + lv_ta_add_char(ta3, 'b'); + lv_ta_add_text(ta3, "é"); + lv_ta_set_cursor_pos(ta3, 5); + + lv_ta_add_char(ta3, 'B'); + lv_ta_add_text(ta3, "É"); + + /*Get the password text and set in a new text area*/ + lv_obj_t * ta4 = lv_ta_create(lv_disp_get_scr_act(NULL), NULL); + lv_ta_set_one_line(ta4, true); + lv_ta_set_text(ta4, lv_ta_get_text(ta3)); + lv_obj_align(ta4, ta3, LV_ALIGN_OUT_BOTTOM_MID, 0, 10); + +} + +/** + * Test cursor modes + */ +void lv_test_ta_2(void) +{ + + static lv_style_t bg; + static lv_style_t sb; + static lv_style_t cur; + + lv_style_copy(&bg, &lv_style_pretty); + lv_style_copy(&sb, &lv_style_pretty); + lv_style_copy(&cur, &lv_style_pretty); + + + bg.body.main_color = LV_COLOR_BLACK; + bg.body.padding.left = 10; + bg.body.padding.right = 10; + bg.body.padding.top = 10; + bg.body.padding.bottom = 10; + bg.text.color = LV_COLOR_BLUE; + bg.text.letter_space = 4; + bg.text.line_space = 10; + + sb.body.padding.left = 3; + sb.body.padding.right = 3; + sb.body.padding.inner = 10; + sb.body.main_color = LV_COLOR_WHITE; + sb.body.grad_color = LV_COLOR_WHITE; + sb.body.opa = LV_OPA_70; + + cur.body.padding.left = 2; + cur.body.padding.right = 2; + cur.body.padding.top = 4; + cur.body.padding.top = 4; + cur.body.main_color = LV_COLOR_RED; + cur.body.grad_color = LV_COLOR_YELLOW; + cur.body.border.color = LV_COLOR_ORANGE; + cur.body.opa = LV_OPA_70; + cur.text.color = LV_COLOR_WHITE; + cur.line.width = 4; + + + ta2_1 = lv_ta_create(lv_disp_get_scr_act(NULL), NULL); + lv_ta_set_style(ta2_1, LV_TA_STYLE_BG, &bg); + lv_ta_set_style(ta2_1, LV_TA_STYLE_SB, &sb); + lv_ta_set_style(ta2_1, LV_TA_STYLE_CURSOR, &cur); + lv_ta_set_cursor_type(ta2_1, LV_CURSOR_LINE); + lv_ta_set_text(ta2_1, "Some UTF-8 characters " + "áÁabcöÖABC\n" + "\n" + "Í\n" + "W\n" + "abc"); + + ta2_2 = lv_ta_create(lv_disp_get_scr_act(NULL), ta2_1); + lv_obj_align(ta2_2, ta2_1, LV_ALIGN_OUT_BOTTOM_MID, 0, 10); + lv_ta_set_cursor_type(ta2_2, LV_CURSOR_BLOCK); + + ta2_3 = lv_ta_create(lv_disp_get_scr_act(NULL), ta2_1); + lv_obj_align(ta2_3, ta2_2, LV_ALIGN_OUT_BOTTOM_MID, 0, 10); + lv_ta_set_cursor_type(ta2_3, LV_CURSOR_OUTLINE); + + ta2_4 = lv_ta_create(lv_disp_get_scr_act(NULL), ta2_1); + lv_obj_align(ta2_4, ta2_3, LV_ALIGN_OUT_BOTTOM_MID, 0, 10); + lv_ta_set_cursor_type(ta2_4, LV_CURSOR_UNDERLINE); + + lv_obj_t * btn = lv_btn_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_align(btn, ta2_1, LV_ALIGN_OUT_RIGHT_MID, 10, 0); + lv_obj_set_event_cb(btn, nav_btn_event_handler); + lv_obj_t * label = lv_label_create(btn, NULL); + lv_label_set_text(label, "Up"); + + btn = lv_btn_create(lv_disp_get_scr_act(NULL), btn); + lv_obj_align(btn, btn, LV_ALIGN_OUT_BOTTOM_MID, 0, 10); + label = lv_label_create(btn, NULL); + lv_label_set_text(label, "Down"); + + btn = lv_btn_create(lv_disp_get_scr_act(NULL), btn); + lv_obj_align(btn, btn, LV_ALIGN_OUT_BOTTOM_MID, 0, 10); + label = lv_label_create(btn, NULL); + lv_label_set_text(label, "Left"); + + btn = lv_btn_create(lv_disp_get_scr_act(NULL), btn); + lv_obj_align(btn, btn, LV_ALIGN_OUT_BOTTOM_MID, 0, 10); + label = lv_label_create(btn, NULL); + lv_label_set_text(label, "Right"); + + btn = lv_btn_create(lv_disp_get_scr_act(NULL), btn); + lv_obj_align(btn, btn, LV_ALIGN_OUT_BOTTOM_MID, 0, 10); + label = lv_label_create(btn, NULL); + lv_label_set_text(label, "Del"); + + + +} + + +/********************** + * STATIC FUNCTIONS + **********************/ + +static void nav_btn_event_handler(lv_obj_t * btn, lv_event_t event) +{ + if(event != LV_EVENT_SHORT_CLICKED) return; + + + lv_obj_t * label = lv_obj_get_child(btn, NULL); + const char * txt = lv_label_get_text(label); + + if(strcmp(txt, "Up") == 0) { + lv_ta_cursor_up(ta2_1); + lv_ta_cursor_up(ta2_2); + lv_ta_cursor_up(ta2_3); + lv_ta_cursor_up(ta2_4); + } + else if(strcmp(txt, "Down") == 0) { + lv_ta_cursor_down(ta2_1); + lv_ta_cursor_down(ta2_2); + lv_ta_cursor_down(ta2_3); + lv_ta_cursor_down(ta2_4); + } + else if(strcmp(txt, "Left") == 0) { + lv_ta_cursor_left(ta2_1); + lv_ta_cursor_left(ta2_2); + lv_ta_cursor_left(ta2_3); + lv_ta_cursor_left(ta2_4); + } + else if(strcmp(txt, "Right") == 0) { + lv_ta_cursor_right(ta2_1); + lv_ta_cursor_right(ta2_2); + lv_ta_cursor_right(ta2_3); + lv_ta_cursor_right(ta2_4); + } +} +#endif /*LV_USE_TA && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.h b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.h new file mode 100644 index 0000000..0270f23 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.h @@ -0,0 +1,58 @@ +/** + * @file lv_test_ta.h + * + */ + +#ifndef LV_TEST_TA_H +#define LV_TEST_TA_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../../lvgl/lvgl.h" +#include "../../../../lv_ex_conf.h" +#endif + +#if LV_USE_TA && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create text areas to test their basic functionalities + */ +void lv_test_ta_1(void); + +/** + * Test cursor modes + */ +void lv_test_ta_2(void); + +/********************** + * MACROS +**********************/ + +#endif /*LV_USE_TA && LV_USE_TESTS*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TEST_TA_H*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.mk b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.mk new file mode 100644 index 0000000..f4c1970 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta.mk @@ -0,0 +1,6 @@ +CSRCS += lv_test_ta.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_ta +VPATH += :$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_ta + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_ta" diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta_1.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta_1.png new file mode 100644 index 0000000..eedad8e Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta_1.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta_2.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta_2.png new file mode 100644 index 0000000..2bdb8d0 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_ta/lv_test_ta_2.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.c b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.c new file mode 100644 index 0000000..e93583c --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.c @@ -0,0 +1,133 @@ +/** + * @file lv_test_table.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_test_table.h" +#if LV_USE_TABLE && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create tables to test their functionalities + */ +void lv_test_table_1(void) +{ + static lv_style_t cell1_style; + lv_style_copy(&cell1_style, &lv_style_plain); + cell1_style.body.border.width = 1; + cell1_style.line.width = 1; + + static lv_style_t cell_head_style; + lv_style_copy(&cell_head_style, &lv_style_plain); + cell_head_style.body.border.width = 1; + cell_head_style.body.padding.top = 20; + cell_head_style.body.padding.bottom = 20; + cell_head_style.line.width = 1; + cell_head_style.text.color = LV_COLOR_RED; + cell_head_style.text.line_space = 0; + cell_head_style.text.letter_space = 5; + cell_head_style.text.letter_space = 3; + + /* Create a default object*/ + lv_obj_t * table1 = lv_table_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_pos(table1, 10, 10); + lv_table_set_style(table1, LV_TABLE_STYLE_CELL1, &cell1_style); + lv_table_set_style(table1, LV_TABLE_STYLE_CELL2, &cell_head_style); + lv_table_set_col_cnt(table1, 4); + lv_table_set_row_cnt(table1, 5); + + /*Set the type 1 for the first row. Thye will use */ + lv_table_set_cell_type(table1, 0, 0, 2); + lv_table_set_cell_type(table1, 0, 1, 2); + lv_table_set_cell_type(table1, 0, 2, 2); + lv_table_set_cell_type(table1, 0, 3, 2); + + lv_table_set_cell_value(table1, 0, 0, "First\nnew"); + + lv_table_set_cell_value(table1, 0, 1, "Very long second"); + + lv_table_set_cell_value(table1, 0, 2, "Center aligned third"); + lv_table_set_cell_align(table1, 0, 2, LV_LABEL_ALIGN_CENTER); + + lv_table_set_cell_value(table1, 0, 3, "Right aligned fourth "); + lv_table_set_cell_align(table1, 0, 3, LV_LABEL_ALIGN_RIGHT); + + lv_table_set_cell_value(table1, 2, 2, "Merge "); + lv_table_set_cell_merge_right(table1, 2, 2, true); + + + lv_table_set_cell_value(table1, 3, 1, "Vert. center"); + + lv_table_set_cell_value(table1, 3, 2, "Merge center\nin three\nrows"); + lv_table_set_cell_merge_right(table1, 3, 2, true); + lv_table_set_cell_align(table1, 3, 2, LV_LABEL_ALIGN_CENTER); + + lv_table_set_cell_value(table1, 4, 2, "Merge right"); + lv_table_set_cell_merge_right(table1, 4, 2, true); + lv_table_set_cell_align(table1, 4, 2, LV_LABEL_ALIGN_RIGHT); + + + /*Add some extra rows*/ + lv_table_set_row_cnt(table1, lv_table_get_row_cnt(table1) + 2); + lv_table_set_cell_value(table1, 6, 0, "Multiple merge"); + lv_table_set_cell_merge_right(table1, 6, 0, true); + lv_table_set_cell_merge_right(table1, 6, 1, true); + lv_table_set_cell_merge_right(table1, 6, 2, true); +} + +/** + * Create tables to test their functionalities + */ +void lv_test_table_2(void) +{ + lv_obj_t * page = lv_page_create(lv_disp_get_scr_act(NULL), NULL); + lv_page_set_style(page, LV_PAGE_STYLE_BG, &lv_style_transp_fit); + lv_page_set_style(page, LV_PAGE_STYLE_SCRL, &lv_style_transp_fit); + lv_page_set_scrl_fit(page, LV_FIT_TIGHT); + lv_obj_set_size(page, 200, 200); + + static lv_style_t cell_style; + lv_style_copy(&cell_style, &lv_style_plain); + cell_style.body.border.width = 1; + + /* Create a default object*/ + lv_obj_t * table1 = lv_table_create(page, NULL); + lv_obj_set_pos(table1, 10, 10); + lv_page_glue_obj(table1, true); + lv_table_set_style(table1, LV_TABLE_STYLE_CELL1, &cell_style); + lv_table_set_col_cnt(table1, 2); + lv_table_set_row_cnt(table1, 8); + +} + +/********************** + * STATIC FUNCTIONS + **********************/ + +#endif /*LV_USE_TABLE && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.h b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.h new file mode 100644 index 0000000..93b49af --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.h @@ -0,0 +1,58 @@ +/** + * @file lv_test_table.h + * + */ + +#ifndef LV_TEST_TABLE_H +#define LV_TEST_TABLE_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../../lvgl/lvgl.h" +#include "../../../../lv_ex_conf.h" +#endif + +#if LV_USE_TABLE && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create tables to test their functionalities + */ +void lv_test_table_1(void); + +/** + * Create tables to test their functionalities + */ +void lv_test_table_2(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_TABLE && LV_USE_TESTS*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TEST_TABLE_H*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.mk b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.mk new file mode 100644 index 0000000..02673a1 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table.mk @@ -0,0 +1,6 @@ +CSRCS += lv_test_table.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_table +VPATH += :$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_table + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_table" diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table_1.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table_1.png new file mode 100644 index 0000000..bef4d71 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table_1.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table_2.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table_2.png new file mode 100644 index 0000000..67cef9e Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_table/lv_test_table_2.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.c b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.c new file mode 100644 index 0000000..fadd61d --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.c @@ -0,0 +1,244 @@ +/** + * @file lv_test_tabview.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_test_tabview.h" + +#if LV_USE_TABVIEW && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create tab views to test their functionalities + */ +void lv_test_tabview_1(void) +{ + lv_coord_t hres = lv_disp_get_hor_res(NULL); + lv_coord_t vres = lv_disp_get_ver_res(NULL); + + /* Default object. It will be an empty tab view*/ + lv_obj_t * tv1 = lv_tabview_create(lv_disp_get_scr_act(NULL), NULL); + lv_tabview_add_tab(tv1, "First"); + lv_tabview_add_tab(tv1, "Second"); + lv_obj_set_size(tv1, hres / 2 - 10, vres / 2 - 10); + + /*Copy the first tabview and add some texts*/ + lv_obj_t * tv2 = lv_tabview_create(lv_disp_get_scr_act(NULL), tv1); + lv_obj_align(tv2, NULL, LV_ALIGN_IN_TOP_RIGHT, 0, 0); + + lv_obj_t * tab = lv_tabview_get_tab(tv2, 0); + lv_obj_t * label = lv_label_create(tab, NULL); + lv_label_set_text(label, "This is\n\n\nA long text\n\n\ntext\n\n\non the\n\n\nsecond\n\n\ntab\n\n\nto see\n\n\nthe scrolling"); + + tab = lv_tabview_get_tab(tv2, 1); + label = lv_label_create(tab, NULL); + lv_label_set_text(label, "This is the second tab"); + + + /*Create styles*/ + static lv_style_t bg; + static lv_style_t sb; + static lv_style_t btns_bg; + static lv_style_t tab_bg; + static lv_style_t rel; + static lv_style_t pr; + static lv_style_t tgl_rel; + static lv_style_t tgl_pr; + static lv_style_t indic; + + lv_style_copy(&btns_bg, &lv_style_plain_color); + lv_style_copy(&tab_bg, &lv_style_pretty_color); + lv_style_copy(&bg, &lv_style_pretty_color); + lv_style_copy(&sb, &lv_style_pretty); + lv_style_copy(&btns_bg, &lv_style_transp_fit); + lv_style_copy(&rel, &lv_style_plain); + lv_style_copy(&pr, &lv_style_plain); + lv_style_copy(&tgl_rel, &lv_style_plain); + lv_style_copy(&tgl_pr, &lv_style_plain); + lv_style_copy(&indic, &lv_style_plain); + + rel.body.main_color = LV_COLOR_SILVER; + pr.body.main_color = LV_COLOR_GRAY; + tgl_rel.body.main_color = LV_COLOR_RED; + tgl_pr.body.main_color = LV_COLOR_MAROON; + indic.body.main_color = LV_COLOR_ORANGE; + indic.body.grad_color = LV_COLOR_ORANGE; + indic.body.padding.inner = LV_DPI / 16; + tab_bg.body.main_color = LV_COLOR_SILVER; + tab_bg.body.grad_color = LV_COLOR_GREEN; + tab_bg.text.color = LV_COLOR_YELLOW; + + /*Apply the styles*/ + lv_obj_t * tv3 = lv_tabview_create(lv_disp_get_scr_act(NULL), tv2); + lv_obj_align(tv3, NULL, LV_ALIGN_IN_BOTTOM_LEFT, 0, 0); + lv_tabview_set_style(tv3, LV_TABVIEW_STYLE_BG, &bg); + lv_tabview_set_style(tv3, LV_TABVIEW_STYLE_BTN_BG, &btns_bg); + lv_tabview_set_style(tv3, LV_TABVIEW_STYLE_BTN_REL, &rel); + lv_tabview_set_style(tv3, LV_TABVIEW_STYLE_BTN_PR, &pr); + lv_tabview_set_style(tv3, LV_TABVIEW_STYLE_BTN_TGL_REL, &tgl_rel); + lv_tabview_set_style(tv3, LV_TABVIEW_STYLE_BTN_TGL_PR, &tgl_pr); + lv_tabview_set_style(tv3, LV_TABVIEW_STYLE_INDIC, &indic); + + tab = lv_tabview_get_tab(tv3, 0); + lv_page_set_style(tab, LV_PAGE_STYLE_BG, &tab_bg); + lv_page_set_style(tab, LV_PAGE_STYLE_SB, &sb); + label = lv_label_create(tab, NULL); + lv_label_set_text(label, "This is\n\n\nA long text\n\n\ntext\n\n\non the\n\n\nsecond\n\n\ntab\n\n\nto see\n\n\nthe scrolling"); + + tab = lv_tabview_get_tab(tv3, 1); + label = lv_label_create(tab, NULL); + lv_label_set_text(label, "This is the second tab"); + + /*Copy the styles tab view*/ + lv_obj_t * tv4 = lv_tabview_create(lv_disp_get_scr_act(NULL), tv3); + lv_obj_align(tv4, NULL, LV_ALIGN_IN_BOTTOM_RIGHT, 0, 0); +} + +void lv_test_tabview_2(void) +{ + lv_obj_t * tab; + lv_obj_t * label; + + lv_coord_t hres = lv_disp_get_hor_res(NULL); + lv_coord_t vres = lv_disp_get_ver_res(NULL); + + // Tabview 1 + lv_obj_t * tv1 = lv_tabview_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_size(tv1, hres / 2 - 10, vres / 2 - 10); + lv_obj_align(tv1, NULL, LV_ALIGN_IN_TOP_LEFT, 0, 0); + lv_tabview_set_btns_pos(tv1, LV_TABVIEW_BTNS_POS_TOP); + + lv_tabview_add_tab(tv1, "111"); + lv_tabview_add_tab(tv1, "222"); + lv_tabview_add_tab(tv1, "333"); + lv_tabview_add_tab(tv1, "444"); + + tab = lv_tabview_get_tab(tv1, 0); + label = lv_label_create(tab, NULL); + lv_label_set_text(label, "1111This is\n\n\nA long text\n\n\ntext\n\n\non the\n\n\nsecond\n\n\ntab\n\n\nto see\n\n\nthe scrolling"); + + tab = lv_tabview_get_tab(tv1, 1); + label = lv_label_create(tab, NULL); + lv_label_set_text(label, "2222"); + + tab = lv_tabview_get_tab(tv1, 2); + label = lv_label_create(tab, NULL); + lv_label_set_text(label, "3333"); + + tab = lv_tabview_get_tab(tv1, 3); + label = lv_label_create(tab, NULL); + lv_label_set_text(label, "444"); + + // Tabview 2 + lv_obj_t * tv2 = lv_tabview_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_size(tv2, hres / 2 - 10, vres / 2 - 10); + lv_obj_align(tv2, NULL, LV_ALIGN_IN_TOP_RIGHT, 0, 0); + lv_tabview_set_btns_pos(tv2, LV_TABVIEW_BTNS_POS_BOTTOM); + + lv_tabview_add_tab(tv2, "111"); + lv_tabview_add_tab(tv2, "222"); + lv_tabview_add_tab(tv2, "333"); + lv_tabview_add_tab(tv2, "444"); + + tab = lv_tabview_get_tab(tv2, 0); + label = lv_label_create(tab, NULL); + lv_label_set_text(label, "1111This is\n\n\nA long text\n\n\ntext\n\n\non the\n\n\nsecond\n\n\ntab\n\n\nto see\n\n\nthe scrolling"); + + tab = lv_tabview_get_tab(tv2, 1); + label = lv_label_create(tab, NULL); + lv_label_set_text(label, "2222"); + + tab = lv_tabview_get_tab(tv2, 2); + label = lv_label_create(tab, NULL); + lv_label_set_text(label, "3333"); + + tab = lv_tabview_get_tab(tv2, 3); + label = lv_label_create(tab, NULL); + lv_label_set_text(label, "444"); + + // Tabview 3 + lv_obj_t * tv3 = lv_tabview_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_size(tv3, hres / 2 - 10, vres / 2 - 10); + lv_obj_align(tv3, NULL, LV_ALIGN_IN_BOTTOM_LEFT, 0, 0); + lv_tabview_set_btns_pos(tv3, LV_TABVIEW_BTNS_POS_LEFT); + + lv_tabview_add_tab(tv3, "111"); + lv_tabview_add_tab(tv3, "222"); + lv_tabview_add_tab(tv3, "333"); + lv_tabview_add_tab(tv3, "444"); + + tab = lv_tabview_get_tab(tv3, 0); + label = lv_label_create(tab, NULL); + lv_label_set_text(label, "1111This is\n\n\nA long text\n\n\ntext\n\n\non the\n\n\nsecond\n\n\ntab\n\n\nto see\n\n\nthe scrolling"); + + tab = lv_tabview_get_tab(tv3, 1); + label = lv_label_create(tab, NULL); + lv_label_set_text(label, "2222"); + + tab = lv_tabview_get_tab(tv3, 2); + label = lv_label_create(tab, NULL); + lv_label_set_text(label, "3333"); + + tab = lv_tabview_get_tab(tv3, 3); + label = lv_label_create(tab, NULL); + lv_label_set_text(label, "444"); + + // Tabview 4 + lv_obj_t * tv4 = lv_tabview_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_size(tv4, hres / 2 - 10, vres / 2 - 10); + lv_obj_align(tv4, NULL, LV_ALIGN_IN_BOTTOM_RIGHT, 0, 0); + lv_tabview_set_btns_pos(tv4, LV_TABVIEW_BTNS_POS_RIGHT); + + lv_tabview_add_tab(tv4, "111"); + lv_tabview_add_tab(tv4, "222"); + lv_tabview_add_tab(tv4, "333"); + lv_tabview_add_tab(tv4, "444"); + + tab = lv_tabview_get_tab(tv4, 0); + label = lv_label_create(tab, NULL); + lv_label_set_text(label, "1111This is\n\n\nA long text\n\n\ntext\n\n\non the\n\n\nsecond\n\n\ntab\n\n\nto see\n\n\nthe scrolling"); + + tab = lv_tabview_get_tab(tv4, 1); + label = lv_label_create(tab, NULL); + lv_label_set_text(label, "2222"); + + tab = lv_tabview_get_tab(tv4, 2); + label = lv_label_create(tab, NULL); + lv_label_set_text(label, "3333"); + + tab = lv_tabview_get_tab(tv4, 3); + label = lv_label_create(tab, NULL); + lv_label_set_text(label, "444"); +} + +/********************** + * STATIC FUNCTIONS + **********************/ + +#endif /*LV_USE_TABVIEW && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.h b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.h new file mode 100644 index 0000000..150d4c4 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.h @@ -0,0 +1,54 @@ +/** + * @file lv_test_tabview.h + * + */ + +#ifndef LV_TEST_TABVIEW_H +#define LV_TEST_TABVIEW_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../../lvgl/lvgl.h" +#include "../../../../lv_ex_conf.h" +#endif + +#if LV_USE_TABVIEW && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create tab views to test their functionalities + */ +void lv_test_tabview_1(void); +void lv_test_tabview_2(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_TABVIEW && LV_USE_TESTS*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TEST_TABVIEW_H*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.mk b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.mk new file mode 100644 index 0000000..3f43625 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview.mk @@ -0,0 +1,6 @@ +CSRCS += lv_test_tabview.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_tabview +VPATH += :$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_tabview + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_tabview" diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview_1.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview_1.png new file mode 100644 index 0000000..12c4b3c Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview_1.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview_2.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview_2.png new file mode 100644 index 0000000..7fb2d9e Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tabview/lv_test_tabview_2.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.c b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.c new file mode 100644 index 0000000..301a6ae --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.c @@ -0,0 +1,155 @@ +/** + * @file lv_test_tileview.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_test_tileview.h" +#if LV_USE_TILEVIEW && LV_USE_BTN && LV_USE_LABEL && LV_USE_LIST && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create a tileview to test their functionalities + */ +void lv_test_tileview_1(void) +{ + lv_coord_t hres = 240;//lv_disp_get_hor_res(NULL); + lv_coord_t vres = 240;//lv_disp_get_ver_res(NULL); + + static const lv_point_t vp[] = { + {1,0}, /*First row: only the middle tile*/ + {0,1}, {1,1}, {1,2}, /*Second row: all tree tiles */ + {2,1}, {2,2}, /*Third row: middle and right tile*/ + }; + + lv_obj_t * t; + t = lv_tileview_create(lv_disp_get_scr_act(NULL), NULL); + lv_tileview_set_valid_positions(t, vp, 6); + lv_tileview_set_edge_flash(t, true); + lv_obj_set_size(t, hres, vres); + lv_obj_t * label; + + /*x0, y1 container*/ + lv_obj_t * p01 = lv_obj_create(t, NULL); + lv_obj_set_click(p01, true); + lv_obj_set_style(p01, &lv_style_pretty_color); + lv_obj_set_size(p01, lv_obj_get_width(t), lv_obj_get_height(t)); + lv_tileview_add_element(t, p01); + + /*Add a button at x0, y1*/ + lv_obj_t * b01 = lv_btn_create(p01, NULL); + lv_tileview_add_element(t, b01); + lv_obj_align(b01, NULL, LV_ALIGN_CENTER, 0, 50); + label = lv_label_create(b01, NULL); + lv_label_set_text(label, "Button"); + + /*Add a label to indicate the position*/ + label = lv_label_create(p01, NULL); + lv_label_set_text(label, "x0, y1"); + lv_obj_align(label, NULL, LV_ALIGN_CENTER, 0, 0); + + /*x1, y1 container*/ + lv_obj_t * p11 = lv_obj_create(t, p01); + lv_obj_align(p11, p01, LV_ALIGN_OUT_RIGHT_MID, 0, 0); + lv_tileview_add_element(t, p11); + + /*Add a label to indicate the position*/ + label = lv_label_create(p11, NULL); + lv_label_set_text(label, "x1, y1"); + lv_obj_align(label, NULL, LV_ALIGN_CENTER, 0, 0); + + /*x1, y2 list*/ + lv_obj_t * list12 = lv_list_create(t, NULL); + lv_obj_set_size(list12, hres, vres); + lv_obj_align(list12, p11, LV_ALIGN_OUT_BOTTOM_MID, 0, 0); + lv_list_set_scroll_propagation(list12, true); + lv_tileview_add_element(t, list12); + + lv_obj_t * list_btn; + list_btn = lv_list_add_btn(list12, NULL, "One"); + lv_tileview_add_element(t, list_btn); + + list_btn = lv_list_add_btn(list12, NULL, "Two"); + lv_tileview_add_element(t, list_btn); + + list_btn = lv_list_add_btn(list12, NULL, "Three"); + lv_tileview_add_element(t, list_btn); + + list_btn = lv_list_add_btn(list12, NULL, "Four"); + lv_tileview_add_element(t, list_btn); + + list_btn = lv_list_add_btn(list12, NULL, "Five"); + lv_tileview_add_element(t, list_btn); + + list_btn = lv_list_add_btn(list12, NULL, "Six"); + lv_tileview_add_element(t, list_btn); + + list_btn = lv_list_add_btn(list12, NULL, "Seven"); + lv_tileview_add_element(t, list_btn); + + /*x1, y0 container*/ + lv_obj_t * p10 = lv_obj_create(t, p01); + lv_tileview_add_element(t, p10); + + /*Add a label to indicate the position*/ + label = lv_label_create(p10, NULL); + lv_label_set_text(label, "x1, y0"); + lv_obj_align(label, NULL, LV_ALIGN_CENTER, 0, 0); + lv_obj_align(p10, p11, LV_ALIGN_OUT_TOP_MID, 0, 0); + + /*x2, y1 container*/ + lv_obj_t * p21 = lv_obj_create(t, p01); + lv_tileview_add_element(t, p21); + lv_obj_align(p21, p11, LV_ALIGN_OUT_RIGHT_MID, 0, 0); + + /*Add a label to indicate the position*/ + label = lv_label_create(p21, NULL); + lv_label_set_text(label, "x2, y1"); + lv_obj_align(label, NULL, LV_ALIGN_CENTER, 0, 0); + + /*x2, y1 container*/ + lv_obj_t * p22 = lv_obj_create(t, p01); + lv_tileview_add_element(t, p22); + lv_obj_align(p22, p21, LV_ALIGN_OUT_BOTTOM_MID, 0, 0); + + /*Add a label to indicate the position*/ + label = lv_label_create(p22, NULL); + lv_label_set_text(label, "x2, y2"); + lv_obj_align(label, NULL, LV_ALIGN_CENTER, 0, 0); + + /*Focus on a tile (the list)*/ + lv_tileview_set_tile_act(t, 1, 2, true); + +} + + +/********************** + * STATIC FUNCTIONS + **********************/ + +#endif /*LV_USE_TILEVIEW && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.h b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.h new file mode 100644 index 0000000..ae90dd9 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.h @@ -0,0 +1,53 @@ +/** + * @file lv_test_tileview.h + * + */ + +#ifndef LV_TEST_TILEVIEW_H +#define LV_TEST_TILEVIEW_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../../lvgl/lvgl.h" +#include "../../../../lv_ex_conf.h" +#endif + +#if LV_USE_TILEVIEW && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create a tileview to test their functionalities + */ +void lv_test_tileview_1(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_TILEVIEW && LV_USE_TESTS*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TEST_TILEVIEW_H*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.mk b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.mk new file mode 100644 index 0000000..d3fbaa2 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview.mk @@ -0,0 +1,6 @@ +CSRCS += lv_test_tileview.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_tileview +VPATH += :$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_tileview + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_tileview" diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview_1.gif b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview_1.gif new file mode 100644 index 0000000..d5b5cf9 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_tileview/lv_test_tileview_1.gif differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.c b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.c new file mode 100644 index 0000000..9222f0e --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.c @@ -0,0 +1,86 @@ +/** + * @file lv_test_win.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_test_win.h" + +#if LV_USE_WIN && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create windows to test their functionalities + */ +void lv_test_win_1(void) +{ + lv_coord_t hres = lv_disp_get_hor_res(NULL); + lv_coord_t vres = lv_disp_get_ver_res(NULL); + + lv_obj_t * win1 = lv_win_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_size(win1, hres / 2 - LV_DPI / 20, vres / 2 - LV_DPI / 20); + + lv_obj_t * win2 = lv_win_create(lv_disp_get_scr_act(NULL), win1); + lv_obj_align(win2, NULL, LV_ALIGN_IN_TOP_RIGHT, 0, 0); + lv_win_set_title(win2, "Random title"); + lv_win_add_btn(win2, LV_SYMBOL_CLOSE); + lv_win_add_btn(win2, LV_SYMBOL_OK); + lv_win_add_btn(win2, LV_SYMBOL_EDIT); + + lv_obj_t * label = lv_label_create(win2, NULL); + lv_obj_set_pos(label, 10, 10); + lv_label_set_text(label, "Long\n\n\ntext\n\n\nto\n\n\nsee\n\n\nthe\n\n\nscrollbars"); + + + static lv_style_t header; + lv_style_copy(&header, &lv_style_plain); + header.body.main_color = LV_COLOR_RED; + header.body.grad_color = LV_COLOR_MAROON; + header.body.padding.inner = 0; + header.text.color = LV_COLOR_WHITE; + + lv_obj_t * win3 = lv_win_create(lv_disp_get_scr_act(NULL), win2); + lv_obj_align(win3, NULL, LV_ALIGN_IN_BOTTOM_LEFT, 0, 0); + lv_win_set_style(win3, LV_WIN_STYLE_HEADER, &header); + lv_win_set_style(win3, LV_WIN_STYLE_BTN_REL, &lv_style_transp); + lv_win_set_style(win3, LV_WIN_STYLE_BG, &lv_style_plain_color); + lv_win_set_btn_size(win3, LV_DPI / 3); + + label = lv_label_create(win3, NULL); + lv_obj_set_pos(label, 10, 10); + lv_label_set_text(label, "Styled window\n\nThe content background has\ndifferent color"); + + lv_obj_t * win4 = lv_win_create(lv_disp_get_scr_act(NULL), win3); + lv_obj_align(win4, NULL, LV_ALIGN_IN_BOTTOM_RIGHT, 0, 0); +} + +/********************** + * STATIC FUNCTIONS + **********************/ + +#endif /*LV_USE_WIN && LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.h b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.h new file mode 100644 index 0000000..35db772 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.h @@ -0,0 +1,53 @@ +/** + * @file lv_test_win.h + * + */ + +#ifndef LV_TEST_WIN_H +#define LV_TEST_WIN_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../../lvgl/lvgl.h" +#include "../../../../lv_ex_conf.h" +#endif + +#if LV_USE_WIN && LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create windows to test their functionalities + */ +void lv_test_win_1(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_WIN && LV_USE_TESTS*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TEST_WIN_H*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.mk b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.mk new file mode 100644 index 0000000..7160a76 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win.mk @@ -0,0 +1,6 @@ +CSRCS += lv_test_win.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_win +VPATH += :$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_win + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tests/lv_test_objx/lv_test_win" diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win_1.png b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win_1.png new file mode 100644 index 0000000..7b0f6f3 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_objx/lv_test_win/lv_test_win_1.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_stress/lv_test_stress.c b/components/lv_examples/lv_examples/lv_tests/lv_test_stress/lv_test_stress.c new file mode 100644 index 0000000..3de2f51 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_stress/lv_test_stress.c @@ -0,0 +1,422 @@ +/** + * @file lv_test_stress.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include +#include "lv_test_stress.h" + +#if LV_USE_TESTS && LV_USE_ANIMATION + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ +static void obj_mem_leak_tester(lv_task_t *); +static void alloc_free_tester(lv_task_t *); +static void mem_monitor(lv_task_t *); + +/********************** + * STATIC VARIABLES + **********************/ +static lv_obj_t * all_obj_h; +static lv_obj_t * alloc_label; +static lv_obj_t * alloc_ta; +static const char * mbox_btns[] = {"Ok", "Cancel", ""}; +LV_IMG_DECLARE(img_flower_icon) + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create and delete a lot of objects and animations. + */ +void lv_test_stress_1(void) +{ + lv_coord_t hres = lv_disp_get_hor_res(NULL); + lv_coord_t vres = lv_disp_get_ver_res(NULL); + + lv_task_create(obj_mem_leak_tester, 200, LV_TASK_PRIO_MID, NULL); + lv_task_create(mem_monitor, 500, LV_TASK_PRIO_MID, NULL); + lv_task_create(alloc_free_tester, 100, LV_TASK_PRIO_MID, NULL); + + /* Holder for all object types */ + all_obj_h = lv_obj_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_size(all_obj_h, hres / 2, vres); + lv_obj_set_style(all_obj_h, &lv_style_pretty); + + alloc_ta = lv_ta_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_align(alloc_ta, all_obj_h, LV_ALIGN_OUT_RIGHT_TOP, 10, 10); + lv_obj_set_height(alloc_ta, vres / 4); + + alloc_label = lv_label_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_align(alloc_label, alloc_ta, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 20); + + + /*Add style animation to the ta*/ + static lv_style_t ta_style; + lv_style_copy(&ta_style, &lv_style_pretty); + lv_ta_set_style(alloc_ta, LV_TA_STYLE_BG, &ta_style); + + + lv_anim_t sa; + lv_style_anim_init(&sa); + lv_style_anim_set_styles(&sa, &ta_style, &lv_style_pretty, &lv_style_pretty_color); + lv_style_anim_set_time(&sa, 500, 500); + lv_style_anim_set_playback(&sa, 500); + lv_style_anim_set_repeat(&sa, 500); + lv_style_anim_create(&sa); +} + + +/********************** + * STATIC FUNCTIONS + **********************/ + +static void mem_monitor(lv_task_t * param) +{ + (void) param; /*Unused*/ + +#if LV_EX_PRINTF + lv_mem_monitor_t mon; + lv_mem_monitor(&mon); + printf("used: %6d (%3d %%), frag: %3d %%, biggest free: %6d\n", (int)mon.total_size - mon.free_size, + mon.used_pct, + mon.frag_pct, + (int)mon.free_biggest_size); +#endif +} + +static void obj_mem_leak_tester(lv_task_t * param) +{ + (void) param; /*Unused*/ + static const lv_color_t needle_colors[1] = {LV_COLOR_RED}; /*For gauge*/ + + lv_coord_t hres = lv_disp_get_hor_res(NULL); + lv_coord_t vres = lv_disp_get_ver_res(NULL); + + static int16_t state = 0; + lv_obj_t * obj; + static lv_obj_t * page; + + lv_anim_t a; + a.path_cb = lv_anim_path_linear; + a.ready_cb = NULL; + a.act_time = 0; + a.time = 500; + a.playback = 0; + a.repeat = 0; + a.playback_pause = 100; + a.repeat_pause = 100; + + switch(state) { + case 0: + obj = lv_obj_create(all_obj_h, NULL); + lv_obj_set_pos(obj, 10, 5); + a.playback = 1; + a.repeat = 1; + a.exec_cb = (lv_anim_exec_xcb_t)lv_obj_set_x; + a.var = obj; + a.start = 10 ; + a.end = 100 ; + lv_anim_create(&a); + break; + case 1: + obj = lv_btn_create(all_obj_h, NULL); + lv_obj_set_pos(obj, 60, 5); + a.playback = 0; + a.repeat = 1; + a.exec_cb = (lv_anim_exec_xcb_t)lv_obj_set_x; + a.var = obj; + a.start = 150 ; + a.end = 200 ; + lv_anim_create(&a); + obj = lv_label_create(obj, NULL); + lv_label_set_text(obj, "Button"); + break; + case 2: /*Page tests container too*/ + page = lv_page_create(all_obj_h, NULL); + lv_obj_set_pos(page, 10, 60); + lv_obj_set_size(page, lv_obj_get_width(all_obj_h) - (20), 3 * vres / 4); + lv_page_set_scrl_layout(page, LV_LAYOUT_PRETTY); + break; + case 3: + obj = lv_label_create(page, NULL); + lv_label_set_text(obj, "Label"); + break; + case 4: + obj = lv_img_create(page, NULL); + lv_img_set_src(obj, &img_flower_icon); + break; + case 5: + obj = lv_cb_create(page, NULL); + lv_cb_set_text(obj, "Check box"); + break; + case 7: /*Switch tests bar and slider memory leak too*/ + obj = lv_sw_create(page, NULL); + lv_sw_on(obj, LV_ANIM_OFF); + break; + case 8: /*Kb tests butm too*/ + obj = lv_kb_create(all_obj_h, NULL); + lv_obj_set_size(obj, hres / 3, vres / 5); + lv_obj_set_pos(obj, 30, 90); + a.exec_cb = (lv_anim_exec_xcb_t)lv_obj_set_y; + a.var = obj; + a.start = LV_VER_RES ; + a.end = lv_obj_get_y(obj); + a.time = 200; + lv_anim_create(&a); + break; + + case 9: /*Roller test ddlist too*/ + obj = lv_roller_create(page, NULL); + lv_roller_set_options(obj, "One\nTwo\nThree", false); + lv_roller_set_anim_time(obj, 300); + lv_roller_set_selected(obj, 2, true); + break; + case 10: /*Gauge test lmeter too*/ + obj = lv_gauge_create(page, NULL); + lv_gauge_set_needle_count(obj, 1, needle_colors); + lv_gauge_set_value(obj, 1, 30); + break; + case 15: /*Wait a little to see the previous results*/ + obj = lv_list_create(all_obj_h, NULL); + lv_obj_set_pos(obj, 40, 50); + lv_list_add_btn(obj, LV_SYMBOL_OK, "List 1"); + lv_list_add_btn(obj, LV_SYMBOL_OK, "List 2"); + lv_list_add_btn(obj, LV_SYMBOL_OK, "List 3"); + lv_list_add_btn(obj, LV_SYMBOL_OK, "List 4"); + lv_list_add_btn(obj, LV_SYMBOL_OK, "List 5"); + lv_list_add_btn(obj, LV_SYMBOL_OK, "List 6"); + a.exec_cb = (lv_anim_exec_xcb_t)lv_obj_set_height; + a.var = obj; + a.start = 0; + a.end = lv_obj_get_height(obj); + a.time = 5000; + lv_anim_create(&a); + break; + case 16: + obj = lv_win_create(all_obj_h, NULL); + lv_win_add_btn(obj, LV_SYMBOL_CLOSE); + lv_win_add_btn(obj, LV_SYMBOL_OK); + lv_win_set_style(obj, LV_WIN_STYLE_BG, &lv_style_pretty); + lv_obj_set_size(obj, hres / 3, vres / 3); + lv_obj_set_pos(obj, 20, 100); + break; + case 17: + obj = lv_tabview_create(all_obj_h, NULL); + lv_tabview_add_tab(obj, "tab1"); + lv_tabview_add_tab(obj, "tab2"); + lv_tabview_add_tab(obj, "tab3"); + lv_tabview_set_style(obj, LV_TABVIEW_STYLE_BG, &lv_style_pretty); + lv_obj_set_size(obj, hres / 3, vres / 3); + lv_obj_set_pos(obj, 50, 140); + break; + case 18: + obj = lv_mbox_create(all_obj_h, NULL); + lv_obj_set_width(obj, hres / 4); + lv_mbox_set_text(obj, "message"); + lv_mbox_add_btns(obj, mbox_btns); /*Set 3 times to test btnm add memory leasks*/ + lv_mbox_add_btns(obj, mbox_btns); + lv_mbox_add_btns(obj, mbox_btns); + lv_mbox_set_anim_time(obj, 300); + lv_mbox_start_auto_close(obj, 500); + break; + + /*Delete object from the page*/ + case 20: + obj = lv_obj_get_child(lv_page_get_scrl(page), NULL); + if(obj) lv_obj_del(obj); + else { + state = 24; + } + break; + case 21: + obj = lv_obj_get_child_back(lv_page_get_scrl(page), NULL); /*Delete from the end too to be more random*/ + if(obj) { + lv_obj_del(obj); + state -= 2; /*Go back to delete state*/ + } else { + state = 24; + } + break; + /*Remove object from 'all_obj_h'*/ + case 25: + obj = lv_obj_get_child(all_obj_h, NULL); + if(obj) lv_obj_del(obj); + else state = 29; + break; + case 26: + obj = lv_obj_get_child_back(all_obj_h, NULL); /*Delete from the end too to be more random*/ + if(obj) { + lv_obj_del(obj); + state -= 2; /*Go back to delete state*/ + } else state = 29; + break; + + case 30: + state = -1; + break; + default: + break; + } + + state ++; +} + + +/** + * Test alloc and free by settings the text of a label and instering text to a text area + */ +static void alloc_free_tester(lv_task_t * param) +{ + (void) param; /*Unused*/ + + static int16_t state = 0; + + switch(state) { + case 0: + lv_label_set_text(alloc_label, "a"); + break; + + case 1: + lv_ta_set_text(alloc_ta, "Initilal"); + break; + + case 2: + lv_label_set_text(alloc_label, "long long long\nlong long long"); + break; + + case 3: + lv_label_set_text(alloc_label, "b"); + break; + + case 6: /*Wait to be random*/ + lv_ta_set_cursor_pos(alloc_ta, 0); + lv_ta_add_text(alloc_ta, "aaaaaaaaaaaaaaaaaaaaaaaaaaa!\n"); + break; + + case 7: + lv_label_set_text(alloc_label, "medium"); + break; + + case 8: + lv_label_set_text(alloc_label, "very very long very very long\n" + "very very long very very long\n" + "very very long very very long\n" + "very very long very very long\n" + "very very long very very long\n" + "very very long very very long\n" + "very very long very very long\n" + "very very long very very long\n" + "very very long very very long\n" + "very very long very very long\n" + "very very long very very long\n" + "very very long very very long\n" + "very very long very very long\n" + "very very long very very long\n" + "very very long very very long\n" + "very very long very very long\n" + "very very long very very long\n" + "very very long very very long\n" + "very very long very very long\n" + "very very long very very long\n" + "very very long very very long\n" + "very very long very very long\n" + "very very long very very long\n"); + break; + + case 10: /*Wait to be random*/ + lv_label_set_text(alloc_label, "some text"); + break; + + case 11: + lv_ta_set_cursor_pos(alloc_ta, 20); + lv_ta_del_char(alloc_ta); + lv_ta_del_char(alloc_ta); + lv_ta_del_char(alloc_ta); + lv_ta_del_char(alloc_ta); + lv_ta_del_char(alloc_ta); + lv_ta_del_char(alloc_ta); + lv_ta_del_char(alloc_ta); + lv_ta_del_char(alloc_ta); + lv_ta_del_char(alloc_ta); + lv_ta_del_char(alloc_ta); + lv_ta_del_char(alloc_ta); + break; + + case 12: + lv_label_set_text(alloc_label, LV_SYMBOL_DIRECTORY); + break; + + case 16: /*Wait to be random*/ + lv_label_set_text(alloc_label, "A dummy sentence nothing else"); + break; + + case 17: + lv_ta_set_cursor_pos(alloc_ta, 5); + lv_ta_add_char(alloc_ta, 'A'); + lv_ta_add_char(alloc_ta, 'A'); + lv_ta_add_char(alloc_ta, 'A'); + lv_ta_add_char(alloc_ta, 'A'); + lv_ta_add_char(alloc_ta, 'A'); + break; + + case 18: + lv_label_set_text(alloc_label, "ok"); + break; + + case 20: /*Wait to be random*/ + lv_label_set_text(alloc_label, LV_SYMBOL_FILE); + break; + case 21: + lv_label_set_text(alloc_label, "c"); + break; + case 22: + lv_ta_set_cursor_pos(alloc_ta, 20); + lv_ta_add_text(alloc_ta, "Ú"); + lv_ta_add_text(alloc_ta, "Ú"); + lv_ta_add_text(alloc_ta, "Ú"); + lv_ta_add_text(alloc_ta, "Ú"); + lv_ta_add_text(alloc_ta, "Ú"); + break; + + case 23: + lv_label_set_text(alloc_label, "ÁaÁaaÁÁaaaÁÁÁaaaaÁÁÁÁ"); + break; + + case 25: + lv_ta_set_text(alloc_ta, ""); + break; + + case 26: + lv_label_set_text(alloc_label, ""); + break; + + case 28: + state = -1 ; + break; + default: + break; + } + + state ++; +} + +#endif /*LV_USE_TESTS && LV_USE_ANIMATION*/ + diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_stress/lv_test_stress.h b/components/lv_examples/lv_examples/lv_tests/lv_test_stress/lv_test_stress.h new file mode 100644 index 0000000..9a1e16d --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_stress/lv_test_stress.h @@ -0,0 +1,53 @@ +/** + * @file lv_test_stress.h + * + */ + +#ifndef LV_TEST_STRESS_H +#define LV_TEST_STRESS_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../lvgl/lvgl.h" +#include "../../../lv_ex_conf.h" +#endif + +#if LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create and delete a lot of objects and animations. + */ +void lv_test_stress_1(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_TESTS*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TEST_STRESS_H*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_stress/lv_test_stress.mk b/components/lv_examples/lv_examples/lv_tests/lv_test_stress/lv_test_stress.mk new file mode 100644 index 0000000..06b38d8 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_stress/lv_test_stress.mk @@ -0,0 +1,6 @@ +CSRCS += lv_test_stress.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tests/lv_test_stress +VPATH += :$(LVGL_DIR)/lv_examples/lv_tests/lv_test_stress + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tests/lv_test_stress" diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_stress/lv_test_stress.png b/components/lv_examples/lv_examples/lv_tests/lv_test_stress/lv_test_stress.png new file mode 100644 index 0000000..857133e Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_stress/lv_test_stress.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_theme/lv_test_theme.mk b/components/lv_examples/lv_examples/lv_tests/lv_test_theme/lv_test_theme.mk new file mode 100644 index 0000000..6902f24 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_theme/lv_test_theme.mk @@ -0,0 +1,7 @@ +CSRCS += lv_test_theme_1.c +CSRCS += lv_test_theme_2.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tests/lv_test_theme +VPATH += :$(LVGL_DIR)/lv_examples/lv_tests/lv_test_theme + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tests/lv_test_theme" diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.c b/components/lv_examples/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.c new file mode 100644 index 0000000..20d957a --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.c @@ -0,0 +1,340 @@ +/** + * @file lv_test_theme_1.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_test_theme_1.h" + +#if LV_USE_TESTS +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ +static void create_tab1(lv_obj_t * parent); +static void create_tab2(lv_obj_t * parent); +static void create_tab3(lv_obj_t * parent); + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create a test screen with a lot objects and apply the given theme on them + * @param th pointer to a theme + */ +void lv_test_theme_1(lv_theme_t * th) +{ + lv_theme_set_current(th); + th = lv_theme_get_current(); /*If `LV_THEME_LIVE_UPDATE 1` `th` is not used directly so get the real theme after set*/ + lv_obj_t * scr = lv_cont_create(NULL, NULL); + lv_disp_load_scr(scr); + + lv_obj_t * tv = lv_tabview_create(scr, NULL); + lv_obj_set_size(tv, lv_disp_get_hor_res(NULL), lv_disp_get_ver_res(NULL)); + lv_obj_t * tab1 = lv_tabview_add_tab(tv, "Tab 1"); + lv_obj_t * tab2 = lv_tabview_add_tab(tv, "Tab 2"); + lv_obj_t * tab3 = lv_tabview_add_tab(tv, "Tab 3"); + + create_tab1(tab1); + create_tab2(tab2); + create_tab3(tab3); +} + +/********************** + * STATIC FUNCTIONS + **********************/ +static void create_tab1(lv_obj_t * parent) +{ + lv_page_set_scrl_layout(parent, LV_LAYOUT_PRETTY); + + lv_theme_t * th = lv_theme_get_current(); + + static lv_style_t h_style; + lv_style_copy(&h_style, &lv_style_transp); + h_style.body.padding.inner = LV_DPI / 10; + h_style.body.padding.left = LV_DPI / 4; + h_style.body.padding.right = LV_DPI / 4; + h_style.body.padding.top = LV_DPI / 10; + h_style.body.padding.bottom = LV_DPI / 10; + + lv_obj_t * h = lv_cont_create(parent, NULL); + lv_obj_set_style(h, &h_style); + lv_obj_set_click(h, false); + lv_cont_set_fit(h, LV_FIT_TIGHT); + lv_cont_set_layout(h, LV_LAYOUT_COL_M); + + lv_obj_t * btn = lv_btn_create(h, NULL); + lv_btn_set_fit(btn, LV_FIT_TIGHT); + lv_btn_set_toggle(btn, true); + lv_obj_t * btn_label = lv_label_create(btn, NULL); + lv_label_set_text(btn_label, "Button"); + + btn = lv_btn_create(h, btn); + lv_btn_toggle(btn); + btn_label = lv_label_create(btn, NULL); + lv_label_set_text(btn_label, "Toggled"); + + btn = lv_btn_create(h, btn); + lv_btn_set_state(btn, LV_BTN_STATE_INA); + btn_label = lv_label_create(btn, NULL); + lv_label_set_text(btn_label, "Inactive"); + + lv_obj_t * label = lv_label_create(h, NULL); + lv_label_set_text(label, "Primary"); + lv_obj_set_style(label, th->style.label.prim); + + label = lv_label_create(h, NULL); + lv_label_set_text(label, "Secondary"); + lv_obj_set_style(label, th->style.label.sec); + + label = lv_label_create(h, NULL); + lv_label_set_text(label, "Hint"); + lv_obj_set_style(label, th->style.label.hint); + + static const char * btnm_str[] = {"1", "2", "3", LV_SYMBOL_OK, LV_SYMBOL_CLOSE, ""}; + lv_obj_t * btnm = lv_btnm_create(h, NULL); + lv_obj_set_size(btnm, lv_disp_get_hor_res(NULL) / 4, 2 * LV_DPI / 3); + lv_btnm_set_map(btnm, btnm_str); + lv_btnm_set_btn_ctrl_all(btnm, LV_BTNM_CTRL_TGL_ENABLE); + lv_btnm_set_one_toggle(btnm, true); + + lv_obj_t * table = lv_table_create(h, NULL); + lv_table_set_col_cnt(table, 3); + lv_table_set_row_cnt(table, 4); + lv_table_set_col_width(table, 0, LV_DPI / 3); + lv_table_set_col_width(table, 1, LV_DPI / 2); + lv_table_set_col_width(table, 2, LV_DPI / 2); + lv_table_set_cell_merge_right(table, 0, 0, true); + lv_table_set_cell_merge_right(table, 0, 1, true); + + lv_table_set_cell_value(table, 0, 0, "Table"); + lv_table_set_cell_align(table, 0, 0, LV_LABEL_ALIGN_CENTER); + + lv_table_set_cell_value(table, 1, 0, "1"); + lv_table_set_cell_value(table, 1, 1, "13"); + lv_table_set_cell_align(table, 1, 1, LV_LABEL_ALIGN_RIGHT); + lv_table_set_cell_value(table, 1, 2, "ms"); + + lv_table_set_cell_value(table, 2, 0, "2"); + lv_table_set_cell_value(table, 2, 1, "46"); + lv_table_set_cell_align(table, 2, 1, LV_LABEL_ALIGN_RIGHT); + lv_table_set_cell_value(table, 2, 2, "ms"); + + lv_table_set_cell_value(table, 3, 0, "3"); + lv_table_set_cell_value(table, 3, 1, "61"); + lv_table_set_cell_align(table, 3, 1, LV_LABEL_ALIGN_RIGHT); + lv_table_set_cell_value(table, 3, 2, "ms"); + + h = lv_cont_create(parent, h); + + lv_obj_t * sw_h = lv_cont_create(h, NULL); + lv_cont_set_style(sw_h, LV_CONT_STYLE_MAIN, &lv_style_transp); + lv_cont_set_fit2(sw_h, LV_FIT_NONE, LV_FIT_TIGHT); + lv_obj_set_width(sw_h, LV_HOR_RES / 4); + lv_cont_set_layout(sw_h, LV_LAYOUT_PRETTY); + + lv_obj_t * sw = lv_sw_create(sw_h, NULL); + lv_sw_set_anim_time(sw, 250); + + sw = lv_sw_create(sw_h, sw); + lv_sw_on(sw, LV_ANIM_OFF); + + + lv_obj_t * bar = lv_bar_create(h, NULL); + lv_bar_set_value(bar, 70, false); + + lv_obj_t * slider = lv_slider_create(h, NULL); + lv_bar_set_value(slider, 70, false); + + lv_obj_t * line = lv_line_create(h, NULL); + static lv_point_t line_p[2]; + line_p[0].x = 0; + line_p[0].y = 0; + line_p[1].x = lv_disp_get_hor_res(NULL) / 5; + line_p[1].y = 0; + + lv_line_set_points(line, line_p, 2); + lv_line_set_style(line, LV_LINE_STYLE_MAIN, th->style.line.decor); + + lv_obj_t * cb = lv_cb_create(h, NULL); + + cb = lv_cb_create(h, cb); + lv_btn_set_state(cb, LV_BTN_STATE_TGL_REL); + + lv_obj_t * ddlist = lv_ddlist_create(h, NULL); + lv_ddlist_set_fix_width(ddlist, lv_obj_get_width(ddlist) + LV_DPI / 2); /*Make space for the arrow*/ + lv_ddlist_set_draw_arrow(ddlist, true); + + h = lv_cont_create(parent, h); + + lv_obj_t * list = lv_list_create(h, NULL); + lv_obj_set_size(list, lv_disp_get_hor_res(NULL) / 4, lv_disp_get_ver_res(NULL) / 2); + lv_obj_t * list_btn; + list_btn = lv_list_add_btn(list, LV_SYMBOL_GPS, "GPS"); + lv_btn_set_toggle(list_btn, true); + + lv_list_add_btn(list, LV_SYMBOL_WIFI, "WiFi"); + lv_list_add_btn(list, LV_SYMBOL_GPS, "GPS"); + lv_list_add_btn(list, LV_SYMBOL_AUDIO, "Audio"); + lv_list_add_btn(list, LV_SYMBOL_VIDEO, "Video"); + lv_list_add_btn(list, LV_SYMBOL_CALL, "Call"); + lv_list_add_btn(list, LV_SYMBOL_BELL, "Bell"); + lv_list_add_btn(list, LV_SYMBOL_FILE, "File"); + lv_list_add_btn(list, LV_SYMBOL_EDIT, "Edit"); + lv_list_add_btn(list, LV_SYMBOL_CUT, "Cut"); + lv_list_add_btn(list, LV_SYMBOL_COPY, "Copy"); + + lv_obj_t * roller = lv_roller_create(h, NULL); + lv_roller_set_options(roller, "Monday\nTuesday\nWednesday\nThursday\nFriday\nSaturday\nSunday", true); + lv_roller_set_selected(roller, 1, false); + lv_roller_set_visible_row_count(roller, 3); + + +} + +static void create_tab2(lv_obj_t * parent) +{ + lv_coord_t w = lv_page_get_scrl_width(parent); + + lv_obj_t * chart = lv_chart_create(parent, NULL); + lv_chart_set_type(chart, LV_CHART_TYPE_AREA); + lv_obj_set_size(chart, w / 3, lv_disp_get_ver_res(NULL) / 3); + lv_obj_set_pos(chart, LV_DPI / 10, LV_DPI / 10); + lv_chart_series_t * s1 = lv_chart_add_series(chart, LV_COLOR_RED); + lv_chart_set_next(chart, s1, 30); + lv_chart_set_next(chart, s1, 20); + lv_chart_set_next(chart, s1, 10); + lv_chart_set_next(chart, s1, 12); + lv_chart_set_next(chart, s1, 20); + lv_chart_set_next(chart, s1, 27); + lv_chart_set_next(chart, s1, 35); + lv_chart_set_next(chart, s1, 55); + lv_chart_set_next(chart, s1, 70); + lv_chart_set_next(chart, s1, 75); + + + lv_obj_t * gauge = lv_gauge_create(parent, NULL); + lv_gauge_set_value(gauge, 0, 40); + lv_obj_set_size(gauge, w / 4, w / 4); + lv_obj_align(gauge, chart, LV_ALIGN_OUT_BOTTOM_LEFT, 0, LV_DPI / 4); + + + lv_obj_t * arc = lv_arc_create(parent, NULL); + lv_obj_align(arc, gauge, LV_ALIGN_OUT_BOTTOM_MID, 0, LV_DPI / 8); + + lv_obj_t * ta = lv_ta_create(parent, NULL); + lv_obj_set_size(ta, w / 3, lv_disp_get_ver_res(NULL) / 4); + lv_obj_align(ta, NULL, LV_ALIGN_IN_TOP_RIGHT, -LV_DPI / 10, LV_DPI / 10); + lv_ta_set_cursor_type(ta, LV_CURSOR_BLOCK); + + lv_obj_t * kb = lv_kb_create(parent, NULL); + lv_obj_set_size(kb, 2 * w / 3, lv_disp_get_ver_res(NULL) / 3); + lv_obj_align(kb, ta, LV_ALIGN_OUT_BOTTOM_RIGHT, 0, LV_DPI); + lv_kb_set_ta(kb, ta); + +#if LV_USE_ANIMATION + lv_obj_t * loader = lv_preload_create(parent, NULL); + lv_obj_align(loader, NULL, LV_ALIGN_CENTER, 0, - LV_DPI); +#endif +} + + +static void create_tab3(lv_obj_t * parent) +{ + /*Create a Window*/ + lv_obj_t * win = lv_win_create(parent, NULL); + lv_obj_t * win_btn = lv_win_add_btn(win, LV_SYMBOL_CLOSE); + lv_obj_set_event_cb(win_btn, lv_win_close_event_cb); + lv_win_add_btn(win, LV_SYMBOL_DOWN); + lv_obj_set_size(win, lv_disp_get_hor_res(NULL) / 2, lv_disp_get_ver_res(NULL) / 2); + lv_obj_set_pos(win, LV_DPI / 20, LV_DPI / 20); + lv_obj_set_top(win, true); + + + /*Create a Label in the Window*/ + lv_obj_t * label = lv_label_create(win, NULL); + lv_label_set_text(label, "Label in the window"); + + /*Create a Line meter in the Window*/ + lv_obj_t * lmeter = lv_lmeter_create(win, NULL); + lv_obj_align(lmeter, label, LV_ALIGN_OUT_BOTTOM_LEFT, 0, LV_DPI / 2); + lv_lmeter_set_value(lmeter, 70); + + /*Create a 2 LEDs in the Window*/ + lv_obj_t * led1 = lv_led_create(win, NULL); + lv_obj_align(led1, lmeter, LV_ALIGN_OUT_RIGHT_MID, LV_DPI / 2, 0); + lv_led_on(led1); + + lv_obj_t * led2 = lv_led_create(win, NULL); + lv_obj_align(led2, led1, LV_ALIGN_OUT_RIGHT_MID, LV_DPI / 2, 0); + lv_led_off(led2); + + /*Create a Page*/ + lv_obj_t * page = lv_page_create(parent, NULL); + lv_obj_set_size(page, lv_disp_get_hor_res(NULL) / 3, lv_disp_get_ver_res(NULL) / 2); + lv_obj_set_top(page, true); + lv_obj_align(page, win, LV_ALIGN_IN_TOP_RIGHT, LV_DPI, LV_DPI); + + label = lv_label_create(page, NULL); + lv_label_set_text(label, "Lorem ipsum dolor sit amet, repudiare voluptatibus pri cu.\n" + "Ei mundi pertinax posidonium eum, cum tempor maiorum at,\n" + "mea fuisset assentior ad. Usu cu suas civibus iudicabit.\n" + "Eum eu congue tempor facilisi. Tale hinc unum te vim.\n" + "Te cum populo animal eruditi, labitur inciderint at nec.\n\n" + "Eius corpora et quo. Everti voluptaria instructior est id,\n" + "vel in falli primis. Mea ei porro essent admodum,\n" + "his ei malis quodsi, te quis aeterno his.\n" + "Qui tritani recusabo reprehendunt ne,\n" + "per duis explicari at. Simul mediocritatem mei et."); + + /*Create a Calendar*/ + lv_obj_t * cal = lv_calendar_create(parent, NULL); + lv_obj_set_size(cal, 5 * LV_DPI / 2, 5 * LV_DPI / 2); + lv_obj_align(cal, page, LV_ALIGN_OUT_RIGHT_TOP, -LV_DPI / 2, LV_DPI / 3); + lv_obj_set_top(cal, true); + + static lv_calendar_date_t highlighted_days[2]; + highlighted_days[0].day = 5; + highlighted_days[0].month = 5; + highlighted_days[0].year = 2018; + + highlighted_days[1].day = 8; + highlighted_days[1].month = 5; + highlighted_days[1].year = 2018; + + lv_calendar_set_highlighted_dates(cal, highlighted_days, 2); + lv_calendar_set_today_date(cal, &highlighted_days[0]); + lv_calendar_set_showed_date(cal, &highlighted_days[0]); + + /*Create a Message box*/ + static const char * mbox_btn_map[] = {" ", "Got it!", " ", ""}; + lv_obj_t * mbox = lv_mbox_create(parent, NULL); + lv_mbox_set_text(mbox, "Click on the window or the page to bring it to the foreground"); + lv_mbox_add_btns(mbox, mbox_btn_map); + lv_btnm_set_btn_ctrl(lv_mbox_get_btnm(mbox), 0, LV_BTNM_CTRL_HIDDEN); + lv_btnm_set_btn_width(lv_mbox_get_btnm(mbox), 1, 7); + lv_btnm_set_btn_ctrl(lv_mbox_get_btnm(mbox), 2, LV_BTNM_CTRL_HIDDEN); + lv_obj_set_top(mbox, true); + + +} + +#endif /*LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.h b/components/lv_examples/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.h new file mode 100644 index 0000000..84bf829 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.h @@ -0,0 +1,55 @@ +/** + * @file lv_test_theme.h + * + */ + +#ifndef LV_TEST_THEME_H +#define LV_TEST_THEME_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../lvgl/lvgl.h" +#include "../../../lv_ex_conf.h" +#endif + +#if LV_USE_TESTS + + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create a test screen with a lot objects and apply the given theme on them + * @param th pointer to a theme + */ +void lv_test_theme_1(lv_theme_t *th); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_TESTS*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TEST_THEME_H*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.png b/components/lv_examples/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.png new file mode 100644 index 0000000..d64c523 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_theme/lv_test_theme_1.png differ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.c b/components/lv_examples/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.c new file mode 100644 index 0000000..f132ef3 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.c @@ -0,0 +1,367 @@ +/** + * @file lv_test_theme_2.c + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_test_theme_2.h" + +#if LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ +static void header_create(void); +static void sb_create(void); +static void content_create(void); +static void theme_select_event_handler(lv_obj_t * roller, lv_event_t event); +static void hue_select_event_cb(lv_obj_t * roller, lv_event_t event); +static void init_all_themes(uint16_t hue); +static void bar_set_value(lv_obj_t * bar, int16_t value); + +/********************** + * STATIC VARIABLES + **********************/ +static lv_obj_t * header; +static lv_obj_t * sb; +static lv_obj_t * content; +static lv_theme_t * th_act; + +static const char * th_options = +{ + +#if LV_USE_THEME_NIGHT + "Night" +#endif + +#if LV_USE_THEME_MATERIAL + "\nMaterial" +#endif + +#if LV_USE_THEME_ALIEN + "\nAlien" +#endif + +#if LV_USE_THEME_ZEN + "\nZen" +#endif + +#if LV_USE_THEME_NEMO + "\nNemo" +#endif + +#if LV_USE_THEME_MONO + "\nMono" +#endif + +#if LV_USE_THEME_DEFAULT + "\nDefault" +#endif + "" +}; + +static lv_theme_t * themes[8]; + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Test run time theme change + */ +void lv_test_theme_2(void) +{ + /* By doing this, we hide the first (empty) option. */ + if(th_options[0] == '\n') + th_options++; + + init_all_themes(0); + th_act = themes[0]; + if(th_act == NULL) { + LV_LOG_WARN("lv_test_theme_2: no theme is enabled. Check lv_conf.h"); + return; + } + + + lv_theme_set_current(th_act); + + lv_obj_t * scr = lv_obj_create(NULL, NULL); + lv_disp_load_scr(scr); + + header_create(); + sb_create(); + content_create(); + + +} + +/********************** + * STATIC FUNCTIONS + **********************/ + +static void header_create(void) +{ + header = lv_cont_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_width(header, lv_disp_get_hor_res(NULL)); + + lv_obj_t * sym = lv_label_create(header, NULL); + lv_label_set_text(sym, LV_SYMBOL_GPS LV_SYMBOL_WIFI LV_SYMBOL_BLUETOOTH LV_SYMBOL_VOLUME_MAX); + lv_obj_align(sym, NULL, LV_ALIGN_IN_RIGHT_MID, -LV_DPI/10, 0); + + lv_obj_t * clock = lv_label_create(header, NULL); + lv_label_set_text(clock, "14:21"); + lv_obj_align(clock, NULL, LV_ALIGN_IN_LEFT_MID, LV_DPI/10, 0); + + lv_cont_set_fit2(header, LV_FIT_NONE, LV_FIT_TIGHT); /*Let the height set automatically*/ + lv_obj_set_pos(header, 0, 0); + +} + +static void sb_create(void) +{ + lv_coord_t hres = lv_disp_get_hor_res(NULL); + lv_coord_t vres = lv_disp_get_ver_res(NULL); + + sb = lv_page_create(lv_disp_get_scr_act(NULL), NULL); + lv_page_set_scrl_layout(sb, LV_LAYOUT_COL_M); + lv_page_set_style(sb, LV_PAGE_STYLE_BG, &lv_style_transp_tight); + lv_page_set_style(sb, LV_PAGE_STYLE_SCRL, &lv_style_transp); + + lv_obj_t * th_label = lv_label_create(sb, NULL); + lv_label_set_text(th_label, "Theme"); + + lv_obj_t * th_roller = lv_roller_create(sb, NULL); + lv_roller_set_options(th_roller, th_options, true); + lv_obj_set_event_cb(th_roller, theme_select_event_handler); + + lv_obj_t * hue_label = lv_label_create(sb, NULL); + lv_label_set_text(hue_label, "\nColor"); + + lv_obj_t * hue_roller = lv_roller_create(sb, NULL); + lv_roller_set_options(hue_roller, "0\n30\n60\n90\n120\n150\n180\n210\n240\n270\n300\n330", true); + lv_obj_set_event_cb(hue_roller, hue_select_event_cb); + + if(hres > vres) { + lv_obj_set_height(sb, vres - lv_obj_get_height(header)); + lv_cont_set_fit2(sb, LV_FIT_TIGHT, LV_FIT_NONE); + lv_obj_align(sb, header, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 0); + lv_page_set_sb_mode(sb, LV_SB_MODE_DRAG); + } else { + lv_obj_set_size(sb, hres, vres / 2 - lv_obj_get_height(header)); + lv_obj_align(sb, header, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 0); + lv_page_set_sb_mode(sb, LV_SB_MODE_AUTO); + } +} + +static void content_create(void) +{ + lv_coord_t hres = lv_disp_get_hor_res(NULL); + lv_coord_t vres = lv_disp_get_ver_res(NULL); + + content = lv_page_create(lv_disp_get_scr_act(NULL), NULL); + + if(hres > vres) { + lv_obj_set_size(content, hres - lv_obj_get_width(sb), vres - lv_obj_get_height(header)); + lv_obj_set_pos(content, lv_obj_get_width(sb), lv_obj_get_height(header)); + } else { + lv_obj_set_size(content, hres , vres / 2); + lv_obj_set_pos(content, 0, vres / 2); + } + + lv_page_set_scrl_layout(content, LV_LAYOUT_PRETTY); + lv_page_set_scrl_fit2(content, LV_FIT_FLOOD, LV_FIT_TIGHT); + + lv_coord_t max_w = lv_page_get_fit_width(content); + + + /*Button*/ + lv_obj_t * btn = lv_btn_create(content, NULL); + lv_btn_set_ink_in_time(btn, 200); + lv_btn_set_ink_wait_time(btn, 100); + lv_btn_set_ink_out_time(btn, 500); + lv_obj_t * label = lv_label_create(btn, NULL); + lv_label_set_text(label, "Button"); + + /*Switch*/ + lv_obj_t * sw = lv_sw_create(content, NULL); + lv_sw_set_anim_time(sw, 250); + + /*Check box*/ + lv_cb_create(content, NULL); + + /*Bar*/ + lv_obj_t * bar = lv_bar_create(content, NULL); + lv_obj_set_width(bar, LV_MATH_MIN(max_w, 3 * LV_DPI / 2)); +#if LV_USE_ANIMATION + lv_anim_t a; + a.var = bar; + a.start = 0; + a.end = 100; + a.exec_cb = (lv_anim_exec_xcb_t)bar_set_value; + a.path_cb = lv_anim_path_linear; + a.ready_cb = NULL; + a.act_time = 0; + a.time = 1000; + a.playback = 1; + a.playback_pause = 100; + a.repeat = 1; + a.repeat_pause = 100; + lv_anim_create(&a); +#endif + + /*Slider*/ + lv_obj_t * slider = lv_slider_create(content, NULL); + lv_obj_set_width(slider, LV_MATH_MIN(max_w, 3 * LV_DPI / 2)); + lv_slider_set_value(slider, 30, false); + + /*Roller*/ + static const char * days = "Monday\nTuesday\nWednesday\nThursday\nFriday\nSaturday\nSunday"; + lv_obj_t * roller = lv_roller_create(content, NULL); + lv_roller_set_options(roller, days, false); + + /*Drop down list*/ + static const char * nums = "One\nTwo\nThree\nFour"; + lv_obj_t * ddlist = lv_ddlist_create(content, NULL); + lv_ddlist_set_options(ddlist, nums); + + /*Line meter*/ + lv_obj_t * lmeter = lv_lmeter_create(content, NULL); + lv_obj_set_click(lmeter, false); +#if LV_USE_ANIMATION + a.var = lmeter; + a.start = 0; + a.end = 100; + a.exec_cb = (lv_anim_exec_xcb_t)lv_lmeter_set_value; + a.path_cb = lv_anim_path_linear; + a.ready_cb = NULL; + a.act_time = 0; + a.time = 1000; + a.playback = 1; + a.playback_pause = 100; + a.repeat = 1; + a.repeat_pause = 100; + lv_anim_create(&a); +#endif + + /*Gauge*/ + lv_obj_t * gauge = lv_gauge_create(content, NULL); + lv_gauge_set_value(gauge, 0, 47); + lv_obj_set_size(gauge, LV_MATH_MIN(max_w, LV_DPI * 3 / 2), LV_MATH_MIN(max_w, LV_DPI * 3 / 2)); + lv_obj_set_click(gauge, false); + + /*Text area*/ + lv_obj_t * ta = lv_ta_create(content, NULL); + lv_obj_set_width(ta, LV_MATH_MIN(max_w, LV_DPI * 3 / 2)); + lv_ta_set_one_line(ta, true); + lv_ta_set_text(ta, "Type..."); + + /*Keyboard*/ + lv_obj_t * kb = lv_kb_create(content, NULL); + lv_obj_set_width(kb, max_w - LV_DPI / 4); + lv_kb_set_ta(kb, ta); + + lv_obj_t * mbox = lv_mbox_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_drag(mbox, true); + lv_mbox_set_text(mbox, "Choose a theme and a color on the left!"); + + static const char * mbox_btns[] = {"Ok", ""}; + lv_mbox_add_btns(mbox, mbox_btns); + + lv_obj_align(mbox, NULL, LV_ALIGN_CENTER, 0, 0); + +} + +static void theme_select_event_handler(lv_obj_t * roller, lv_event_t event) +{ + if(event == LV_EVENT_VALUE_CHANGED) { + lv_coord_t hres = lv_disp_get_hor_res(NULL); + lv_coord_t vres = lv_disp_get_ver_res(NULL); + + uint16_t opt = lv_roller_get_selected(roller); + th_act = themes[opt]; + lv_theme_set_current(th_act); + + lv_obj_align(header, NULL, LV_ALIGN_IN_TOP_MID, 0, 0); + lv_obj_align(sb, header, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 0); + + if(hres > vres) { + lv_obj_set_size(content, hres - lv_obj_get_width(sb), vres - lv_obj_get_height(header)); + lv_obj_set_pos(content, lv_obj_get_width(sb), lv_obj_get_height(header)); + } else { + lv_obj_set_size(content, hres , vres / 2); + lv_obj_set_pos(content, 0, vres / 2); + } + + lv_page_focus(sb, roller, LV_ANIM_ON); + } +} + + +static void hue_select_event_cb(lv_obj_t * roller, lv_event_t event) +{ + + if(event == LV_EVENT_VALUE_CHANGED) { + uint16_t hue = lv_roller_get_selected(roller) * 30; + + init_all_themes(hue); + + lv_theme_set_current(th_act); + + lv_page_focus(sb, roller, LV_ANIM_ON); + } +} + + +static void init_all_themes(uint16_t hue) +{ + /* NOTE: This must be adjusted if more themes are added. */ + int i = 0; +#if LV_USE_THEME_NIGHT + themes[i++] = lv_theme_night_init(hue, NULL); +#endif + +#if LV_USE_THEME_MATERIAL + themes[i++] = lv_theme_material_init(hue, NULL); +#endif + +#if LV_USE_THEME_ALIEN + themes[i++] = lv_theme_alien_init(hue, NULL); +#endif + +#if LV_USE_THEME_ZEN + themes[i++] = lv_theme_zen_init(hue, NULL); +#endif + +#if LV_USE_THEME_NEMO + themes[i++] = lv_theme_nemo_init(hue, NULL); +#endif + +#if LV_USE_THEME_MONO + themes[i++] = lv_theme_mono_init(hue, NULL); +#endif + +#if LV_USE_THEME_DEFAULT + themes[i++] = lv_theme_default_init(hue, NULL); +#endif +} + +static void bar_set_value(lv_obj_t * bar, int16_t value) +{ + lv_bar_set_value(bar, value, LV_ANIM_OFF); +} + +#endif /*LV_USE_TESTS*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.h b/components/lv_examples/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.h new file mode 100644 index 0000000..67ab926 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.h @@ -0,0 +1,53 @@ +/** + * @file lv_test_theme_2.h + * + */ + +#ifndef LV_TEST_THEME_2_H +#define LV_TEST_THEME_2_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../lvgl/lvgl.h" +#include "../../../lv_ex_conf.h" +#endif + +#if LV_USE_TESTS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Test run time theme change + */ +void lv_test_theme_2(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_TESTS*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TEST_THEME_2_H*/ diff --git a/components/lv_examples/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.png b/components/lv_examples/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.png new file mode 100644 index 0000000..703c25d Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tests/lv_test_theme/lv_test_theme_2.png differ diff --git a/components/lv_examples/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.c b/components/lv_examples/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.c new file mode 100644 index 0000000..ead3b98 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.c @@ -0,0 +1,291 @@ +/** + * @file lv_tutorial_keyboard_simkpad.c + * + */ + +/* + * ------------------------------------------- + * Learn how to use a keyboard/keypad device + * ------------------------------------------- + * + * You need two things to use keypad/keyboard: + * + * INPUT DEVICE DRIVER + * - Similarly to touchpad you need to register an 'lv_indev_drv_t' driver + * - For control keys you should use LV_KEY_... from lv_group.h (e.g. LV_KEY_NEXT) + * - + * + * + * OBJECT GROUP + * - You can iterate through objects in a group (like using 'tab' on PC) and adjust/modify them + * - Firstly you need to create an object group: `lv_group_t *g = lv_group_create();` + * - And add objects to it: `lv_group_add_obj(g, btn1);` + * - Then you can send data to the object in focus: lv_group_send_data(g, 'a'); + * lv_group_send_data(g, LV_GROUP_UP); + * - Or focus on the next/prev. object: lv_group_focus_next(g); + * + */ +/********************* + * INCLUDES + *********************/ +#include "lv_tutorial_keyboard.h" +#if LV_USE_TUTORIALS && LV_USE_GROUP + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ +static void gui_create(void); +static void kaypad_create(void); +static bool emulated_keypad_read(lv_indev_drv_t * indev_drv, lv_indev_data_t * data); +static void mbox_event_cb(lv_obj_t * mbox, lv_event_t event); +static void keypad_event_cb(lv_obj_t * btn, lv_event_t event); +static void message_btn_event_cb(lv_obj_t * btn, lv_event_t event); + +/********************** + * STATIC VARIABLES + **********************/ +static lv_obj_t * btn_enable; /*An enable button*/ +static lv_style_t style_mbox_bg; /*Black bg. style with opacity*/ +static lv_group_t * g; /*An Object Group*/ +static lv_indev_t * emulated_kp_indev; /*The input device of the emulated keypad*/ +static lv_indev_state_t last_state = LV_INDEV_STATE_REL; +static uint32_t last_key = 0; + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create a simple GUI to demonstrate encoder control capability + * kp_indev optinonally pass a keypad input device to control the object (NULL if unused) + */ +void lv_tutorial_keyboard(lv_indev_t * kp_indev) +{ + /*Register the emulated keyboard*/ + lv_indev_drv_t kp_drv; + lv_indev_drv_init(&kp_drv); + kp_drv.type = LV_INDEV_TYPE_KEYPAD; + kp_drv.read_cb = emulated_keypad_read; + emulated_kp_indev = lv_indev_drv_register(&kp_drv); + + /*Create an object group*/ + g = lv_group_create(); + + /*Assig the input device(s) to the created group*/ + lv_indev_set_group(emulated_kp_indev, g); + if(kp_indev) lv_indev_set_group(kp_indev, g); + + /*Create a demo GUI*/ + gui_create(); + + /*Create virtual encoder*/ + kaypad_create(); +} + +/********************** + * STATIC FUNCTIONS + **********************/ + +/** + * Create a demo GUI + */ +static void gui_create(void) +{ + lv_obj_t * scr = lv_disp_get_scr_act(NULL); /*Get the current screen*/ + + /*Create a drop down list*/ + lv_obj_t * ddlist = lv_ddlist_create(scr, NULL); + lv_ddlist_set_options(ddlist, "Low\nMedium\nHigh"); + lv_obj_set_pos(ddlist, LV_DPI / 4, LV_DPI / 4); + lv_group_add_obj(g, ddlist); /*Add the object to the group*/ + + /*Create a holder and check boxes on it*/ + lv_obj_t * holder = lv_cont_create(scr, NULL); /*Create a transparent holder*/ + lv_cont_set_fit(holder, LV_FIT_TIGHT); + + lv_cont_set_layout(holder, LV_LAYOUT_COL_L); + lv_obj_set_style(holder, &lv_style_transp); + lv_obj_align(holder, ddlist, LV_ALIGN_OUT_RIGHT_TOP, LV_DPI / 4, 0); + + lv_obj_t * cb = lv_cb_create(holder, NULL); /*First check box*/ + lv_cb_set_text(cb, "Red"); + lv_group_add_obj(g, cb); /*Add to the group*/ + + cb = lv_cb_create(holder, cb); /*Copy the first check box. Automatically added to the same group*/ + lv_cb_set_text(cb, "Green"); + + cb = lv_cb_create(holder, cb); /*Copy the second check box. Automatically added to the same group*/ + lv_cb_set_text(cb, "Blue"); + + /*Create a sliders*/ + lv_obj_t * slider = lv_slider_create(scr, NULL); + lv_obj_set_size(slider, LV_DPI, LV_DPI / 3); + lv_obj_align(slider, holder, LV_ALIGN_OUT_RIGHT_TOP, LV_DPI / 4, 0); + lv_bar_set_range(slider, 0, 20); + lv_group_add_obj(g, slider); /*Add to the group*/ + + /*Create a button*/ + btn_enable = lv_btn_create(scr, NULL); + lv_obj_set_event_cb(btn_enable, message_btn_event_cb); + lv_btn_set_fit(btn_enable, LV_FIT_TIGHT); + lv_group_add_obj(g, btn_enable); /*Add to the group*/ + lv_obj_t * l = lv_label_create(btn_enable, NULL); + lv_label_set_text(l, "Message"); + lv_obj_align(btn_enable, slider, LV_ALIGN_OUT_BOTTOM_MID, 0, LV_DPI / 2); + + /* Create a dark plain style for a message box's background (modal)*/ + lv_style_copy(&style_mbox_bg, &lv_style_plain); + style_mbox_bg.body.main_color = LV_COLOR_BLACK; + style_mbox_bg.body.grad_color = LV_COLOR_BLACK; + style_mbox_bg.body.opa = LV_OPA_50; +} + +/** + * Create virtual keypad using 4 buttons: + * - Next: focus on the next object in the group + * - Increment: increment the object value + * - Decrement: decrement the object value + * - Enter: Select something + */ +static void kaypad_create(void) +{ + lv_obj_t * scr = lv_disp_get_scr_act(NULL); /*Get the current screen*/ + + /*Next button*/ + lv_obj_t * btn_next = lv_btn_create(scr, NULL); + lv_obj_set_event_cb(btn_next, keypad_event_cb); + lv_btn_set_fit(btn_next, LV_FIT_TIGHT); + lv_obj_t * l = lv_label_create(btn_next, NULL); + lv_label_set_text(l, "Next"); + lv_obj_align(btn_next, NULL, LV_ALIGN_IN_BOTTOM_LEFT, LV_DPI / 4, - LV_DPI / 4); + + /*Increment button*/ + lv_obj_t * btn_inc = lv_btn_create(scr, btn_next); + l = lv_label_create(btn_inc, NULL); + lv_label_set_text(l, "Dec"); + lv_obj_align(btn_inc, btn_next, LV_ALIGN_OUT_RIGHT_MID, LV_DPI / 4, 0); + + /*Decrement button*/ + lv_obj_t * btn_dec = lv_btn_create(scr, btn_next); + l = lv_label_create(btn_dec, NULL); + lv_label_set_text(l, "Inc"); + lv_obj_align(btn_dec, btn_inc, LV_ALIGN_OUT_RIGHT_MID, LV_DPI / 4, 0); + + /*Enter button*/ + lv_obj_t * btn_enter = lv_btn_create(scr, btn_next); + l = lv_label_create(btn_enter, NULL); + lv_label_set_text(l, "Enter"); + lv_obj_align(btn_enter, btn_dec, LV_ALIGN_OUT_RIGHT_MID, LV_DPI / 4, 0); +} + +static bool emulated_keypad_read(lv_indev_drv_t * indev_drv, lv_indev_data_t * data) +{ + (void)indev_drv; /*Unused*/ + data->key = last_key; + data->state = last_state; + return false; +} + +/** + * Called when the Enable button is released. Show a message box to really enable or not? + * @param btn pointer to the Enable button + * @param indev_proc pointer to the caller display input or NULL if the encoder used + * @return LV_RES_OK: because the button is not deleted + */ +static void message_btn_event_cb(lv_obj_t * btn, lv_event_t event) +{ + if(event != LV_EVENT_RELEASED) return; /*We only care only with the release event*/ + + /*If the butto nsi released the show message box to be sure about the Enable*/ + if(lv_btn_get_state(btn) == LV_BTN_STATE_REL) { + /* Create a dark screen sized bg. with opacity to show + * the other objects are not available now*/ + lv_obj_set_style(lv_disp_get_layer_top(NULL), &style_mbox_bg); + lv_obj_set_click(lv_disp_get_layer_top(NULL), false); /*It should be `true` but it'd block the emulated keyboard too*/ + + /*Create a message box*/ + lv_obj_t * mbox = lv_mbox_create(lv_disp_get_layer_top(NULL), NULL); + lv_mbox_set_text(mbox, "Turn on something?"); + lv_obj_set_event_cb(mbox, mbox_event_cb); + lv_group_add_obj(g, mbox); /*Add to he group*/ + + /*Add two buttons*/ + static const char * btns[] = {"Yes", "No", ""}; + lv_mbox_add_btns(mbox, btns); + + lv_obj_align(mbox, NULL, LV_ALIGN_CENTER, 0, - LV_DPI / 2); + + /*Focus on the new message box, can freeze focus on it*/ + lv_group_focus_obj(mbox); + lv_group_focus_freeze(g, true); + } + /*Just disable without message*/ + else { + lv_btn_set_state(btn_enable, LV_BTN_STATE_REL); + } +} + +/** + * Called when a message box button is clicked + * @param mbox pointer to message box + * @param event event type + */ +static void mbox_event_cb(lv_obj_t * mbox, lv_event_t event) +{ + if(event != LV_EVENT_CLICKED) return; + + const char * btn_txt = lv_mbox_get_active_btn_text(mbox); + if(btn_txt) { + lv_group_focus_freeze(g, false); /*Release the freeze*/ + + /*Revert the top layer to not block*/ + lv_obj_set_style(lv_disp_get_layer_top(NULL), &lv_style_transp); + lv_obj_set_click(lv_disp_get_layer_top(NULL), false); + + /*Mark the enabled state by toggling the button*/ + if(strcmp(btn_txt, "No") == 0) lv_btn_set_state(btn_enable, LV_BTN_STATE_REL); + else if(strcmp(btn_txt, "Yes") == 0) lv_btn_set_state(btn_enable, LV_BTN_STATE_TGL_REL); + + lv_obj_del(mbox); + } +} + +/** + * Called the handle the emulated keys' events + * @param btn pointer to the button + * @return LV_RES_OK: because the button is not deleted + */ +static void keypad_event_cb(lv_obj_t * btn, lv_event_t event) +{ + if(event == LV_EVENT_PRESSED) { + + lv_obj_t * label = lv_obj_get_child(btn, NULL); + const char * txt = lv_label_get_text(label); + + if(strcmp(txt, "Next") == 0) last_key = LV_KEY_NEXT; + else if (strcmp(txt, "Inc") == 0) last_key = LV_KEY_UP; + else if (strcmp(txt, "Dec") == 0) last_key = LV_KEY_DOWN; + else if (strcmp(txt, "Enter") == 0) last_key = LV_KEY_ENTER; + else last_key = 0; + + last_state = LV_INDEV_STATE_PR; /*Save the state*/ + } else if(event == LV_EVENT_RELEASED || event == LV_EVENT_PRESS_LOST) { + last_state = LV_INDEV_STATE_REL; + } + +} + + +#endif /*LV_USE_TUTORIALS*/ diff --git a/components/lv_examples/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.h b/components/lv_examples/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.h new file mode 100644 index 0000000..2dcbe37 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.h @@ -0,0 +1,53 @@ +/** + * @file lv_tutorial_keyboard.h + * + */ + +#ifndef LV_TUTORIAL_KEYBOARD_H +#define LV_TUTORIAL_KEYBOARD_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../lvgl/lvgl.h" +#include "../../../lv_ex_conf.h" +#endif + +#if LV_USE_TUTORIALS && LV_USE_GROUP + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ +/** + * Create a simple GUI to demonstrate encoder control capability + * kp_indev optinonally pass a keypad input device to control the object (NULL if unused) + */ +void lv_tutorial_keyboard(lv_indev_t * kp_indev); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_TUTORIALS*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TUTORIAL_KEYBOARD_H*/ diff --git a/components/lv_examples/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.mk b/components/lv_examples/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.mk new file mode 100644 index 0000000..c00dc12 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/10_keyboard/lv_tutorial_keyboard.mk @@ -0,0 +1,6 @@ +CSRCS += lv_tutorial_keyboard.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tutorial/10_keyboard +VPATH += :$(LVGL_DIR)/lv_examples/lv_tutorial/10_keyboard + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tutorial/10_keyboard" diff --git a/components/lv_examples/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.c b/components/lv_examples/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.c new file mode 100644 index 0000000..c8b03df --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.c @@ -0,0 +1,69 @@ +/** + * @file lv_tutorial_hello_world + * + */ + +/* + *------------------------------------------------------------------------------- + * Create your first object: a "Hello world" label + * ------------------------------------------------------------------------------ + * + * If you have ported the LittlevGL you are ready to create content on your display. + * + * Now you will create a "Hello world!" label and align it to the middle. + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_tutorial_hello_world.h" +#if LV_USE_TUTORIALS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create a simple 'Hello world!' label + */ +void lv_tutorial_hello_world(void) +{ + lv_obj_t * scr = lv_disp_get_scr_act(NULL); /*Get the current screen*/ + + /*Create a Label on the currently active screen*/ + lv_obj_t * label1 = lv_label_create(scr, NULL); + + /*Modify the Label's text*/ + lv_label_set_text(label1, "Hello world!"); + + /* Align the Label to the center + * NULL means align on parent (which is the screen now) + * 0, 0 at the end means an x, y offset after alignment*/ + lv_obj_align(label1, NULL, LV_ALIGN_CENTER, 0, 0); +} + +/********************** + * STATIC FUNCTIONS + **********************/ + +#endif /*LV_USE_TUTORIALS*/ diff --git a/components/lv_examples/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.h b/components/lv_examples/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.h new file mode 100644 index 0000000..cea3369 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.h @@ -0,0 +1,49 @@ +/** + * @file lv_tutorial_hello_world + * + */ + +#ifndef LV_TUTORIAL_HELLO_WORLD_H +#define LV_TUTORIAL_HELLO_WORLD_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../lvgl/lvgl.h" +#include "../../../lv_ex_conf.h" +#endif + +#if LV_USE_TUTORIALS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ +void lv_tutorial_hello_world(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_TUTORIALS*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TUTORIAL_HELLO_WORLD_H*/ diff --git a/components/lv_examples/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.mk b/components/lv_examples/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.mk new file mode 100644 index 0000000..b5471fe --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/1_hello_world/lv_tutorial_hello_world.mk @@ -0,0 +1,6 @@ +CSRCS += lv_tutorial_hello_world.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tutorial/1_hello_world +VPATH += :$(LVGL_DIR)/lv_examples/lv_tutorial/1_hello_world + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tutorial/1_hello_world" diff --git a/components/lv_examples/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.c b/components/lv_examples/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.c new file mode 100644 index 0000000..418fa25 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.c @@ -0,0 +1,204 @@ +/** + * @file lv_tutorial_objects.c + * + */ + +/* + * ------------------------------------------------ + * Learn how to create GUI elements on the screen + * ------------------------------------------------ + * + * The basic building blocks (components or widgets) in LittlevGL are the graphical objects. + * For example: + * - Buttons + * - Labels + * - Charts + * - Sliders etc + * + * In this part you can learn the basics of the objects like creating, positioning, sizing etc. + * You will also meet some different object types and their attributes. + * + * Regardless to the object's type the 'lv_obj_t' variable type is used + * and you can refer to an object with an lv_obj_t pointer (lv_obj_t *) + * + * PARENT-CHILD STRUCTURE + * ------------------------- + * A parent can be considered as the container of its children. + * Every object has exactly one parent object (except screens). + * A parent can have unlimited number of children. + * There is no limitation for the type of the parent. + * + * The children are visible only on their parent. The parts outside will be cropped (not displayed) + * + * If the parent is moved the children will be moved with it. + * + * The earlier created object (and its children) will drawn earlier. + * Using this layers can be built. + * + * INHERITANCE + * ------------- + * Similarly to object oriented languages some kind of inheritance is used + * among the object types. Every object is derived from the 'Basic object'. (lv_obj) + * The types are backward compatible therefore to set the basic parameters (size, position etc.) + * you can use 'lv_obj_set/get_...()' function. + + * LEARN MORE + * ------------- + * - General overview: http://www.gl.littlev.hu/objects + * - Detailed description of types: http://www.gl.littlev.hu/object-types + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_tutorial_objects.h" +#if LV_USE_TUTORIALS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ +static void btn_event_cb(lv_obj_t * btn, lv_event_t event); +static void ddlist_event_cb(lv_obj_t * ddlist, lv_event_t event); + +/********************** + * STATIC VARIABLES + **********************/ +static lv_obj_t * slider; + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create some objects + */ +void lv_tutorial_objects(void) +{ + + /******************** + * CREATE A SCREEN + *******************/ + /* Create a new screen and load it + * Screen can be created from any type object type + * Now a Page is used which is an objects with scrollable content*/ + lv_obj_t * scr = lv_page_create(NULL, NULL); + lv_disp_load_scr(scr); + + /**************** + * ADD A TITLE + ****************/ + lv_obj_t * label = lv_label_create(scr, NULL); /*First parameters (scr) is the parent*/ + lv_label_set_text(label, "Object usage demo"); /*Set the text*/ + lv_obj_set_x(label, 50); /*Set the x coordinate*/ + + /*********************** + * CREATE TWO BUTTONS + ***********************/ + /*Create a button*/ + lv_obj_t * btn1 = lv_btn_create(lv_disp_get_scr_act(NULL), NULL); /*Create a button on the currently loaded screen*/ + lv_obj_set_event_cb(btn1, btn_event_cb); /*Set function to be called when the button is released*/ + lv_obj_align(btn1, label, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 20); /*Align below the label*/ + + /*Create a label on the button (the 'label' variable can be reused)*/ + label = lv_label_create(btn1, NULL); + lv_label_set_text(label, "Button 1"); + + /*Copy the previous button*/ + lv_obj_t * btn2 = lv_btn_create(scr, btn1); /*Second parameter is an object to copy*/ + lv_obj_align(btn2, btn1, LV_ALIGN_OUT_RIGHT_MID, 50, 0); /*Align next to the prev. button.*/ + + /*Create a label on the button*/ + label = lv_label_create(btn2, NULL); + lv_label_set_text(label, "Button 2"); + + /**************** + * ADD A SLIDER + ****************/ + slider = lv_slider_create(scr, NULL); /*Create a slider*/ + lv_obj_set_size(slider, lv_obj_get_width(scr) / 3, LV_DPI / 3); /*Set the size*/ + lv_obj_align(slider, btn1, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 20); /*Align below the first button*/ + lv_slider_set_value(slider, 30, false); /*Set the current value*/ + + /*********************** + * ADD A DROP DOWN LIST + ************************/ + lv_obj_t * ddlist = lv_ddlist_create(scr, NULL); /*Create a drop down list*/ + lv_obj_align(ddlist, slider, LV_ALIGN_OUT_RIGHT_TOP, 50, 0); /*Align next to the slider*/ + lv_obj_set_top(ddlist, true); /*Enable to be on the top when clicked*/ + lv_ddlist_set_options(ddlist, "None\nLittle\nHalf\nA lot\nAll"); /*Set the options*/ + lv_obj_set_event_cb(ddlist, ddlist_event_cb); /*Set function to call on new option is chosen*/ + + /**************** + * CREATE A CHART + ****************/ + lv_obj_t * chart = lv_chart_create(scr, NULL); /*Create the chart*/ + lv_obj_set_size(chart, lv_obj_get_width(scr) / 2, lv_obj_get_width(scr) / 4); /*Set the size*/ + lv_obj_align(chart, slider, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 50); /*Align below the slider*/ + lv_chart_set_series_width(chart, 3); /*Set the line width*/ + + /*Add a RED data series and set some points*/ + lv_chart_series_t * dl1 = lv_chart_add_series(chart, LV_COLOR_RED); + lv_chart_set_next(chart, dl1, 10); + lv_chart_set_next(chart, dl1, 25); + lv_chart_set_next(chart, dl1, 45); + lv_chart_set_next(chart, dl1, 80); + + /*Add a BLUE data series and set some points*/ + lv_chart_series_t * dl2 = lv_chart_add_series(chart, lv_color_make(0x40, 0x70, 0xC0)); + lv_chart_set_next(chart, dl2, 10); + lv_chart_set_next(chart, dl2, 25); + lv_chart_set_next(chart, dl2, 45); + lv_chart_set_next(chart, dl2, 80); + lv_chart_set_next(chart, dl2, 75); + lv_chart_set_next(chart, dl2, 505); + +} + +/********************** + * STATIC FUNCTIONS + **********************/ + +/** + * Called when a button is released + * @param btn pointer to the released button + * @param event the triggering event + * @return LV_RES_OK because the object is not deleted in this function + */ +static void btn_event_cb(lv_obj_t * btn, lv_event_t event) +{ + if(event == LV_EVENT_RELEASED) { + /*Increase the button width*/ + lv_coord_t width = lv_obj_get_width(btn); + lv_obj_set_width(btn, width + 20); + } +} + +/** + * Called when a new option is chosen in the drop down list + * @param ddlist pointer to the drop down list + * @param event the triggering event + * @return LV_RES_OK because the object is not deleted in this function + */ +static void ddlist_event_cb(lv_obj_t * ddlist, lv_event_t event) +{ + if(event == LV_EVENT_VALUE_CHANGED) { + uint16_t opt = lv_ddlist_get_selected(ddlist); /*Get the id of selected option*/ + + lv_slider_set_value(slider, (opt * 100) / 4, true); /*Modify the slider value according to the selection*/ + } + +} + +#endif /*LV_USE_TUTORIALS*/ diff --git a/components/lv_examples/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.h b/components/lv_examples/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.h new file mode 100644 index 0000000..da6aa20 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.h @@ -0,0 +1,49 @@ +/** + * @file lv_tutorial_objects.h + * + */ + +#ifndef LV_TUTORIAL_OBJECTS_H +#define EX_OBJECTS_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../lvgl/lvgl.h" +#include "../../../lv_ex_conf.h" +#endif + +#if LV_USE_TUTORIALS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ +void lv_tutorial_objects(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_TUTORIALS*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TUTORIAL_OBJECTS_H*/ diff --git a/components/lv_examples/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.mk b/components/lv_examples/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.mk new file mode 100644 index 0000000..3c1aeea --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/2_objects/lv_tutorial_objects.mk @@ -0,0 +1,6 @@ +CSRCS += lv_tutorial_objects.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tutorial/2_objects +VPATH += :$(LVGL_DIR)/lv_examples/lv_tutorial/2_objects + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tutorial/2_objects" diff --git a/components/lv_examples/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.c b/components/lv_examples/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.c new file mode 100644 index 0000000..e3bad57 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.c @@ -0,0 +1,164 @@ +/** + * @file lv_tutorial_styles.h + * + */ + +/* + * -------------------------------------------------- + * Learn how to modify the appearance of the objects + * -------------------------------------------------- + * + * The appearance of the graphical objects can be customized by styles. + * A style is simple 'lv_style_t' variable which is initialized with colors and other parameters. + * Objects save the address of this variable so it has to be 'static or 'global'. + * + * A style contains various attributes to describe rectangle, text, image or line like + * objects at same time. To know which attribute is used by an object see: + * http://www.gl.littlev.hu/object-types + * + * To set a new style for an object use: 'lv_xxx_set_style(obj, LV_..._STYLE_... ,&style); + * For example the set the release style of a button: + * lv_btn_set_style(btn1, LV_BTN_STYLE_REL, &rel_style) + * + * Or if the object has only one style: lv_label_set_style(label1, &label_style) + * + * If NULL is set as style then the object will inherit the parents style. + * For example is you create a style for button the label's appearance can be defined there as well. + * + * You can use built-in styles: "lv_style_... ' + * Learn more here: http://www.gl.littlev.hu/objects#style + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_tutorial_styles.h" +#if LV_USE_TUTORIALS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create objects and styles + */ +void lv_tutorial_styles(void) +{ + lv_obj_t * scr = lv_disp_get_scr_act(NULL); /*Get the current screen*/ + + /**************************************** + * BASE OBJECT + LABEL WITH DEFAULT STYLE + ****************************************/ + /*Create a simple objects*/ + lv_obj_t * obj1; + obj1 = lv_obj_create(scr, NULL); + lv_obj_set_pos(obj1, 10, 10); + + /*Add a label to the object*/ + lv_obj_t * label; + label = lv_label_create(obj1, NULL); + lv_label_set_text(label, "Default"); + lv_obj_align(label, NULL, LV_ALIGN_CENTER, 0, 0); + + /**************************************** + * BASE OBJECT WITH 'PRETTY COLOR' STYLE + ****************************************/ + /*Create a simple objects*/ + lv_obj_t * obj2; + obj2 = lv_obj_create(scr, NULL); + lv_obj_align(obj2, obj1, LV_ALIGN_OUT_RIGHT_MID, 20, 0); /*Align next to the previous object*/ + lv_obj_set_style(obj2, &lv_style_pretty); /*Set built in style*/ + + /* Add a label to the object. + * Labels by default inherit the parent's style */ + label = lv_label_create(obj2, NULL); + lv_label_set_text(label, "Pretty\nstyle"); + lv_obj_align(label, NULL, LV_ALIGN_CENTER, 0, 0); + + /***************************** + * BASE OBJECT WITH NEW STYLE + *****************************/ + /* Create a new style */ + static lv_style_t style_new; /*Styles can't be local variables*/ + lv_style_copy(&style_new, &lv_style_pretty); /*Copy a built-in style as a starting point*/ + style_new.body.radius = LV_RADIUS_CIRCLE; /*Fully round corners*/ + style_new.body.main_color = LV_COLOR_WHITE; /*White main color*/ + style_new.body.grad_color = LV_COLOR_BLUE; /*Blue gradient color*/ + style_new.body.shadow.color = LV_COLOR_SILVER; /*Light gray shadow color*/ + style_new.body.shadow.width = 8; /*8 px shadow*/ + style_new.body.border.width = 2; /*2 px border width*/ + style_new.text.color = LV_COLOR_RED; /*Red text color */ + style_new.text.letter_space = 10; /*10 px letter space*/ + + /*Create a base object and apply the new style*/ + lv_obj_t * obj3; + obj3 = lv_obj_create(scr, NULL); + lv_obj_align(obj3, obj2, LV_ALIGN_OUT_RIGHT_MID, 20, 0); + lv_obj_set_style(obj3, &style_new); + + /* Add a label to the object. + * Labels by default inherit the parent's style */ + label = lv_label_create(obj3, NULL); + lv_label_set_text(label, "New\nstyle"); + lv_obj_align(label, NULL, LV_ALIGN_CENTER, 0, 0); + + + /************************ + * CREATE A STYLED BAR + ***********************/ + /* Create a bar background style */ + static lv_style_t style_bar_bg; + lv_style_copy(&style_bar_bg, &lv_style_pretty); + style_bar_bg.body.radius = 3; + style_bar_bg.body.opa = LV_OPA_TRANSP; /*Empty (not filled)*/ + style_bar_bg.body.border.color = LV_COLOR_GRAY; /*Gray border color*/ + style_bar_bg.body.border.width = 6; /*2 px border width*/ + style_bar_bg.body.border.opa = LV_OPA_COVER; + + /* Create a bar indicator style */ + static lv_style_t style_bar_indic; + lv_style_copy(&style_bar_indic, &lv_style_pretty); + style_bar_indic.body.radius = 3; + style_bar_indic.body.main_color = LV_COLOR_GRAY; /*White main color*/ + style_bar_indic.body.grad_color = LV_COLOR_GRAY; /*Blue gradient color*/ + style_bar_indic.body.border.width = 0; /*2 px border width*/ + style_bar_indic.body.padding.left = 8; + style_bar_indic.body.padding.right = 8; + style_bar_indic.body.padding.top = 8; + style_bar_indic.body.padding.bottom = 8; + + /*Create a bar and apply the styles*/ + lv_obj_t * bar = lv_bar_create(scr, NULL); + lv_bar_set_style(bar, LV_BAR_STYLE_BG, &style_bar_bg); + lv_bar_set_style(bar, LV_BAR_STYLE_INDIC, &style_bar_indic); + lv_bar_set_value(bar, 70, false); + lv_obj_set_size(bar, 200, 30); + lv_obj_align(bar, obj1, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 20); + +} + +/********************** + * STATIC FUNCTIONS + **********************/ + +#endif /*LV_USE_TUTORIALS*/ diff --git a/components/lv_examples/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.h b/components/lv_examples/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.h new file mode 100644 index 0000000..513be1e --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.h @@ -0,0 +1,49 @@ +/** + * @file lv_tutorial_styles.h + * + */ + +#ifndef LV_TUTORIAL_STYLES_H +#define LV_TUTORIAL_STYLES_H + +#ifdef __cplusplus +lv_tutorialtern "C" { +#endif + + /********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../lvgl/lvgl.h" +#include "../../../lv_ex_conf.h" +#endif + +#if LV_USE_TUTORIALS + + /********************* + * DEFINES + *********************/ + + /********************** + * TYPEDEFS + **********************/ + + /********************** + * GLOBAL PROTOTYPES + **********************/ + void lv_tutorial_styles(void); + + /********************** + * MACROS + **********************/ + +#endif /*LV_USE_TUTORIALS*/ + +#ifdef __cplusplus +} /* lv_tutorialtern "C" */ +#endif + +#endif /*LV_TUTORIAL_STYLES_H*/ diff --git a/components/lv_examples/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.mk b/components/lv_examples/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.mk new file mode 100644 index 0000000..8bd7307 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/3_styles/lv_tutorial_styles.mk @@ -0,0 +1,6 @@ +CSRCS += lv_tutorial_styles.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tutorial/3_styles +VPATH += :$(LVGL_DIR)/lv_examples/lv_tutorial/3_styles + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tutorial/3_styles" diff --git a/components/lv_examples/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.c b/components/lv_examples/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.c new file mode 100644 index 0000000..c481a05 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.c @@ -0,0 +1,85 @@ +/** + * @file lv_tutorial_themes.c + * + */ + +/* + * ------------------------------------------------------------- + * See how the customize with themes much faster and simpler + * -------------------------------------------------------------- + * + * To set up styles you need some deeper knowledge about graphics library and + * requires to be a designer a little bit. In addition it takes quite much time. + * + * To address this issue you can use 'themes'. + * The themes are style collections for every object type with all the required styles. + * + * In 'lv_conf.h' you can enable the themes. E.g.: LV_USE_THEME_ALIEN 1 + * + * When you initialize a theme you can assign a HUE (from HSV color space) and a font: + * For example to initialize the 'Alien' theme with a greenish color: + * lv_theme_t *th = lv_theme_alien_init(130, &lv_font_dejavu_40); + * + * You have two options to use the themes: + * 1. Set the styles in it directly: lv_bar_set_style(my_bar, LV_BAR_STYLE_BG, th->bar.bg); + * 2. Set a system theme and let the library to create objects with the theme's styles + * E.g. lv_theme_set_current(th); + */ + +/********************* + * INCLUDES + *********************/ + +#include "lv_tutorial_themes.h" +#if LV_USE_TUTORIALS && LV_USE_THEME_ALIEN + +#include "../2_objects/lv_tutorial_objects.h" + + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Initialize a theme and create the same objects like "lv_tutorial_objects' + */ +void lv_tutorial_themes(void) +{ + /*Initialize the alien theme + * 210: a green HUE value + * NULL: use the default font (LV_FONT_DEFAULT)*/ + lv_theme_t * th = lv_theme_alien_init(210, NULL); + + /*Set the surent system theme*/ + lv_theme_set_current(th); + + /*Create the 'lv_tutorial_objects'*/ + lv_tutorial_objects(); + +} + +/********************** + * STATIC FUNCTIONS + **********************/ + +#endif /*LV_USE_TUTORIALS*/ diff --git a/components/lv_examples/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.h b/components/lv_examples/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.h new file mode 100644 index 0000000..ad675e5 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.h @@ -0,0 +1,49 @@ +/** + * @file lv_tutorial_themes.h + * + */ + +#ifndef LV_TUTORIAL_THEMES_H +#define LV_TUTORIAL_THEMES_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../lvgl/lvgl.h" +#include "../../../lv_ex_conf.h" +#endif + +#if LV_USE_TUTORIALS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ +void lv_tutorial_themes(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_TUTORIALS*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TUTORIAL_THEMES_H*/ diff --git a/components/lv_examples/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.mk b/components/lv_examples/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.mk new file mode 100644 index 0000000..fcb849b --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/4_themes/lv_tutorial_themes.mk @@ -0,0 +1,6 @@ +CSRCS += lv_tutorial_themes.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tutorial/4_themes +VPATH += :$(LVGL_DIR)/lv_examples/lv_tutorial/4_themes + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tutorial/4_themes" diff --git a/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/apple.png b/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/apple.png new file mode 100644 index 0000000..ba14d68 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/apple.png differ diff --git a/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/apple_chroma.png b/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/apple_chroma.png new file mode 100644 index 0000000..1a5e13f Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/apple_chroma.png differ diff --git a/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/apple_icon_alpha.c b/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/apple_icon_alpha.c new file mode 100644 index 0000000..f098646 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/apple_icon_alpha.c @@ -0,0 +1,147 @@ +#include "lvgl/lvgl.h" +#include "lv_ex_conf.h" + +#if LV_USE_TUTORIALS +const uint8_t apple_icon_alpha_map[] = { +#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8 + /*Pixel format: Alpha 8 bit, Red: 3 bit, Green: 3 bit, Blue: 2 bit*/ + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x54, 0x64, 0xff, 0xb2, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x89, 0x00, 0xad, 0x1f, 0x64, 0xff, 0x64, 0xf7, 0xd7, 0x03, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0xbf, 0x64, 0xff, 0x8d, 0x3f, 0x00, 0x00, 0xdf, 0x04, 0x99, 0x1c, 0x9a, 0x5b, 0x99, 0x68, 0x9a, 0x60, 0x9a, 0x24, 0xba, 0x0c, 0x00, 0x00, 0xba, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfb, 0x17, 0x64, 0xff, 0x64, 0xbc, 0x00, 0x00, 0xba, 0x5f, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x9a, 0x90, 0xba, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x00, 0x89, 0x90, 0x64, 0xff, 0x89, 0x58, 0x99, 0xe3, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xf7, 0xff, 0x0f, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0xcb, 0x64, 0xff, 0x9a, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x9a, 0x5b, 0xdf, 0x04, 0x00, 0x00, 0xdf, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0x00, 0x00, 0xe9, 0x98, 0xe9, 0xe3, 0xe9, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe9, 0xff, 0xe9, 0xd8, 0xe9, 0x8c, 0x84, 0xef, 0x64, 0xff, 0xea, 0x9c, 0xc9, 0xfb, 0xc9, 0xff, 0xcd, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xb1, 0xff, 0xcd, 0xd0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x27, 0xe9, 0xfc, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0x84, 0xff, 0x84, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe9, 0xf8, 0xe9, 0x33, 0xe9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf2, 0x13, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xc5, 0xff, 0xc5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xee, 0x0b, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0xe3, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe9, 0xe3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xfb, 0x00, 0xee, 0x17, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xee, 0x37, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xee, 0x4b, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xe5, 0x60, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe9, 0x77, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xee, 0x9c, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xee, 0xa7, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xe5, 0x5f, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0x77, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xf2, 0x63, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xee, 0x7c, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0xf7, 0x00, 0xe9, 0x23, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xee, 0x37, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xe9, 0x18, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0x00, 0x00, 0xf7, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xee, 0x0c, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe9, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xe4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x7c, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe9, 0x97, 0xf2, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x0c, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf2, 0x03, 0xe9, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe9, 0xdc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x60, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe9, 0x70, 0xee, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf2, 0x00, 0x00, 0x00, 0xe5, 0xf4, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe9, 0xf3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0x00, 0xea, 0x6b, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe9, 0x63, 0xe5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0xd0, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe9, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe9, 0xff, 0xf2, 0x07, 0xf2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe9, 0x14, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xee, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf2, 0x0f, 0xe9, 0xbf, 0xe5, 0xff, 0xe5, 0xff, 0xe9, 0xff, 0xee, 0x70, 0xe9, 0x1b, 0xe9, 0x18, 0xee, 0x74, 0xe9, 0xff, 0xe5, 0xff, 0xe5, 0xff, 0xe9, 0xbf, 0xee, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +#endif +#if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP == 0 + /*Pixel format: Alpha 8 bit, Red: 5 bit, Green: 6 bit, Blue: 5 bit*/ + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0x79, 0x54, 0x43, 0x69, 0xff, 0x10, 0xac, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x82, 0x00, 0x0c, 0x9b, 0x1f, 0x02, 0x69, 0xff, 0x23, 0x69, 0xf7, 0x1a, 0xc5, 0x03, 0x00, 0x00, 0x00, 0x18, 0xd7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x69, 0xbf, 0x02, 0x69, 0xff, 0xca, 0x8a, 0x3f, 0x00, 0x00, 0x00, 0xb5, 0xbe, 0x04, 0xcc, 0x85, 0x1c, 0xee, 0x8d, 0x5b, 0xab, 0x7d, 0x68, 0xee, 0x8d, 0x60, 0xee, 0x8d, 0x24, 0x30, 0x9e, 0x0c, 0x00, 0x00, 0x00, 0x72, 0xae, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0xde, 0x17, 0x02, 0x69, 0xff, 0x64, 0x71, 0xbc, 0x00, 0x00, 0x00, 0x2f, 0x9e, 0x5f, 0x8a, 0x7d, 0xff, 0x8b, 0x7d, 0xff, 0x8b, 0x7d, 0xff, 0x8b, 0x7d, 0xff, 0x8b, 0x7d, 0xff, 0x8b, 0x7d, 0xff, 0x8b, 0x7d, 0xff, 0xcc, 0x85, 0x90, 0x30, 0x9e, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfb, 0xee, 0x00, 0xc6, 0x79, 0x90, 0x02, 0x61, 0xff, 0x69, 0x8a, 0x58, 0xab, 0x7d, 0xe3, 0x8b, 0x7d, 0xff, 0x8b, 0x7d, 0xff, 0x8b, 0x7d, 0xff, 0x8b, 0x7d, 0xff, 0x8b, 0x7d, 0xff, 0x8b, 0x7d, 0xff, 0x8b, 0x7d, 0xff, 0x8b, 0x7d, 0xff, 0x8b, 0x7d, 0xf7, 0x39, 0xd7, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x69, 0xcb, 0xa1, 0x60, 0xff, 0xec, 0x85, 0xff, 0xaa, 0x7d, 0xff, 0x8b, 0x7d, 0xff, 0x8b, 0x7d, 0xff, 0x8b, 0x7d, 0xff, 0x8b, 0x7d, 0xff, 0x8b, 0x7d, 0xff, 0x8b, 0x7d, 0xff, 0xab, 0x7d, 0xff, 0xcd, 0x85, 0x5b, 0xd6, 0xbe, 0x04, 0x00, 0x00, 0x00, 0xf7, 0xce, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0xea, 0x00, 0x00, 0x00, 0x00, 0xca, 0xe1, 0x98, 0xa9, 0xe1, 0xe3, 0x89, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x89, 0xe1, 0xff, 0xa9, 0xe1, 0xd8, 0xca, 0xe1, 0x8c, 0x44, 0x71, 0xef, 0x44, 0x71, 0xff, 0x8c, 0xea, 0x9c, 0x49, 0xd2, 0xfb, 0x89, 0xc2, 0xff, 0x49, 0xb3, 0xff, 0xea, 0xa3, 0xff, 0x4a, 0x9c, 0xff, 0xa9, 0xab, 0xff, 0x0a, 0xc3, 0xd0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0xe1, 0x27, 0xa9, 0xe1, 0xfc, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x69, 0xe1, 0xff, 0x03, 0x71, 0xff, 0x03, 0x79, 0xff, 0x69, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x48, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0xa9, 0xe1, 0xf8, 0x0a, 0xe2, 0x33, 0x4b, 0xe2, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0xec, 0x13, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x67, 0xc9, 0xff, 0x68, 0xd1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x89, 0xe1, 0xff, 0xce, 0xea, 0x0b, 0x9b, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0xe1, 0xe3, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0xca, 0xe1, 0xe3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x7a, 0xfe, 0x00, 0x8c, 0xe2, 0x17, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x89, 0xe1, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, 0xeb, 0x37, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0xce, 0xea, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0xe1, 0x60, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x89, 0xe1, 0x77, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4f, 0xeb, 0x9c, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0xad, 0xe2, 0xa7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0xe1, 0x5f, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x48, 0xe1, 0x77, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb0, 0xeb, 0x63, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x2f, 0xeb, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xf4, 0xf4, 0x00, 0xa9, 0xe1, 0x23, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x6f, 0xeb, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0xe1, 0x18, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x89, 0xe1, 0xff, 0x00, 0x00, 0x00, 0x97, 0xf5, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4f, 0xeb, 0x0c, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x89, 0xe1, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x69, 0xe1, 0xe4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0b, 0xe2, 0x7c, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x2b, 0xe2, 0x97, 0x52, 0xec, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, 0xe3, 0x0c, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x89, 0xe1, 0xff, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x93, 0xec, 0x03, 0xa9, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0xa9, 0xe1, 0xdc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0xe2, 0x60, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x4b, 0xe2, 0x70, 0x6f, 0xeb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x12, 0xec, 0x00, 0x00, 0x00, 0x00, 0x89, 0xe1, 0xf4, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0xa9, 0xe1, 0xf3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0xeb, 0x00, 0x6c, 0xe2, 0x6b, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x0b, 0xe2, 0x63, 0x68, 0xe1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0xe1, 0xd0, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0xea, 0xe1, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa9, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0xa9, 0xe1, 0xff, 0xd0, 0xeb, 0x07, 0xf1, 0xeb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4b, 0xe2, 0x14, 0x89, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x68, 0xe1, 0xff, 0x89, 0xe1, 0xff, 0xcd, 0xe2, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x73, 0xec, 0x0f, 0xea, 0xe1, 0xbf, 0x28, 0xd9, 0xff, 0x48, 0xe1, 0xff, 0xa9, 0xe1, 0xff, 0xad, 0xe2, 0x70, 0xa9, 0xe1, 0x1b, 0xa9, 0xe1, 0x18, 0xad, 0xe2, 0x74, 0xca, 0xe1, 0xff, 0x48, 0xe1, 0xff, 0x48, 0xe1, 0xff, 0x0b, 0xe2, 0xbf, 0x4f, 0xeb, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +#endif +#if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP != 0 + /*Pixel format: Alpha 8 bit, Red: 5 bit, Green: 6 bit, Blue: 5 bit BUT the 2 color bytes are swapped*/ + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x79, 0xe7, 0x54, 0x69, 0x43, 0xff, 0xac, 0x10, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x82, 0x48, 0x00, 0x9b, 0x0c, 0x1f, 0x69, 0x02, 0xff, 0x69, 0x23, 0xf7, 0xc5, 0x1a, 0x03, 0x00, 0x00, 0x00, 0xd7, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x69, 0x23, 0xbf, 0x69, 0x02, 0xff, 0x8a, 0xca, 0x3f, 0x00, 0x00, 0x00, 0xbe, 0xb5, 0x04, 0x85, 0xcc, 0x1c, 0x8d, 0xee, 0x5b, 0x7d, 0xab, 0x68, 0x8d, 0xee, 0x60, 0x8d, 0xee, 0x24, 0x9e, 0x30, 0x0c, 0x00, 0x00, 0x00, 0xae, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xde, 0x59, 0x17, 0x69, 0x02, 0xff, 0x71, 0x64, 0xbc, 0x00, 0x00, 0x00, 0x9e, 0x2f, 0x5f, 0x7d, 0x8a, 0xff, 0x7d, 0x8b, 0xff, 0x7d, 0x8b, 0xff, 0x7d, 0x8b, 0xff, 0x7d, 0x8b, 0xff, 0x7d, 0x8b, 0xff, 0x7d, 0x8b, 0xff, 0x85, 0xcc, 0x90, 0x9e, 0x30, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xee, 0xfb, 0x00, 0x79, 0xc6, 0x90, 0x61, 0x02, 0xff, 0x8a, 0x69, 0x58, 0x7d, 0xab, 0xe3, 0x7d, 0x8b, 0xff, 0x7d, 0x8b, 0xff, 0x7d, 0x8b, 0xff, 0x7d, 0x8b, 0xff, 0x7d, 0x8b, 0xff, 0x7d, 0x8b, 0xff, 0x7d, 0x8b, 0xff, 0x7d, 0x8b, 0xff, 0x7d, 0x8b, 0xf7, 0xd7, 0x39, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x69, 0x23, 0xcb, 0x60, 0xa1, 0xff, 0x85, 0xec, 0xff, 0x7d, 0xaa, 0xff, 0x7d, 0x8b, 0xff, 0x7d, 0x8b, 0xff, 0x7d, 0x8b, 0xff, 0x7d, 0x8b, 0xff, 0x7d, 0x8b, 0xff, 0x7d, 0x8b, 0xff, 0x7d, 0xab, 0xff, 0x85, 0xcd, 0x5b, 0xbe, 0xd6, 0x04, 0x00, 0x00, 0x00, 0xce, 0xf7, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0xee, 0x00, 0x00, 0x00, 0x00, 0xe1, 0xca, 0x98, 0xe1, 0xa9, 0xe3, 0xe1, 0x89, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x89, 0xff, 0xe1, 0xa9, 0xd8, 0xe1, 0xca, 0x8c, 0x71, 0x44, 0xef, 0x71, 0x44, 0xff, 0xea, 0x8c, 0x9c, 0xd2, 0x49, 0xfb, 0xc2, 0x89, 0xff, 0xb3, 0x49, 0xff, 0xa3, 0xea, 0xff, 0x9c, 0x4a, 0xff, 0xab, 0xa9, 0xff, 0xc3, 0x0a, 0xd0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe1, 0xa9, 0x27, 0xe1, 0xa9, 0xfc, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x69, 0xff, 0x71, 0x03, 0xff, 0x79, 0x03, 0xff, 0xe1, 0x69, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x48, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0xa9, 0xf8, 0xe2, 0x0a, 0x33, 0xe2, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xec, 0x53, 0x13, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xc9, 0x67, 0xff, 0xd1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x89, 0xff, 0xea, 0xce, 0x0b, 0xfe, 0x9b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe1, 0xea, 0xe3, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0xca, 0xe3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xfe, 0x7a, 0x00, 0xe2, 0x8c, 0x17, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x89, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0x0e, 0x37, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xea, 0xce, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe1, 0x48, 0x60, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x89, 0x77, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0x4f, 0x9c, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe2, 0xad, 0xa7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe1, 0x48, 0x5f, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x48, 0x77, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0xb0, 0x63, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xeb, 0x2f, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xf4, 0xf4, 0x00, 0xe1, 0xa9, 0x23, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xeb, 0x6f, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe1, 0xa9, 0x18, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x89, 0xff, 0x00, 0x00, 0x00, 0xf5, 0x97, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0x4f, 0x0c, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x89, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe1, 0xea, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x69, 0xe4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x0b, 0x7c, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe2, 0x2b, 0x97, 0xec, 0x52, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe3, 0x0e, 0x0c, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x89, 0xff, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xec, 0x93, 0x03, 0xe1, 0xa9, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0xa9, 0xdc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0xee, 0x60, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe2, 0x4b, 0x70, 0xeb, 0x6f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xec, 0x12, 0x00, 0x00, 0x00, 0x00, 0xe1, 0x89, 0xf4, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0xa9, 0xf3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xeb, 0x90, 0x00, 0xe2, 0x6c, 0x6b, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe2, 0x0b, 0x63, 0xe1, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe1, 0xa9, 0xd0, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0xea, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe1, 0xa9, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0xa9, 0xff, 0xeb, 0xd0, 0x07, 0xeb, 0xf1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe2, 0x4b, 0x14, 0xe1, 0x89, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x68, 0xff, 0xe1, 0x89, 0xff, 0xe2, 0xcd, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xec, 0x73, 0x0f, 0xe1, 0xea, 0xbf, 0xd9, 0x28, 0xff, 0xe1, 0x48, 0xff, 0xe1, 0xa9, 0xff, 0xe2, 0xad, 0x70, 0xe1, 0xa9, 0x1b, 0xe1, 0xa9, 0x18, 0xe2, 0xad, 0x74, 0xe1, 0xca, 0xff, 0xe1, 0x48, 0xff, 0xe1, 0x48, 0xff, 0xe2, 0x0b, 0xbf, 0xeb, 0x4f, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +#endif +#if LV_COLOR_DEPTH == 32 + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x37, 0x3e, 0x7c, 0x54, 0x1c, 0x29, 0x6c, 0xff, 0x7d, 0x7f, 0xa9, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x43, 0x49, 0x82, 0x00, 0x5d, 0x61, 0x95, 0x1f, 0x13, 0x20, 0x66, 0xff, 0x16, 0x23, 0x68, 0xf7, 0xd2, 0xa0, 0xc1, 0x03, 0x00, 0x00, 0x00, 0x00, 0xc4, 0xe2, 0xce, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x25, 0x69, 0xbf, 0x13, 0x21, 0x66, 0xff, 0x50, 0x57, 0x8a, 0x3f, 0x00, 0x00, 0x00, 0x00, 0xa7, 0xd5, 0xb8, 0x04, 0x5e, 0xb7, 0x7f, 0x1c, 0x6e, 0xbd, 0x8a, 0x5b, 0x58, 0xb4, 0x7b, 0x68, 0x70, 0xbe, 0x8c, 0x60, 0x6f, 0xbe, 0x8c, 0x24, 0x80, 0xc5, 0x9a, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x92, 0xcd, 0xa7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc9, 0xc9, 0xd6, 0x17, 0x12, 0x20, 0x65, 0xff, 0x20, 0x2d, 0x6e, 0xbc, 0x00, 0x00, 0x00, 0x00, 0x7b, 0xc3, 0x95, 0x5f, 0x54, 0xb2, 0x76, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x61, 0xb7, 0x80, 0x90, 0x7d, 0xc5, 0x99, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdc, 0xde, 0xe6, 0x00, 0x2e, 0x37, 0x77, 0x90, 0x10, 0x1f, 0x64, 0xff, 0x4a, 0x4c, 0x8a, 0x58, 0x59, 0xb4, 0x7b, 0xe3, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xf7, 0xc9, 0xe4, 0xd1, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x26, 0x6a, 0xcb, 0x0b, 0x15, 0x62, 0xff, 0x64, 0xbd, 0x82, 0xff, 0x54, 0xb3, 0x75, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x58, 0xb3, 0x79, 0xff, 0x65, 0xb9, 0x84, 0x5b, 0xad, 0xd7, 0xbc, 0x04, 0x00, 0x00, 0x00, 0x00, 0xb9, 0xdd, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6f, 0x5d, 0xe5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4f, 0x3a, 0xdf, 0x98, 0x49, 0x33, 0xde, 0xe3, 0x48, 0x32, 0xde, 0xff, 0x42, 0x2c, 0xdd, 0xff, 0x42, 0x2c, 0xdd, 0xff, 0x48, 0x32, 0xde, 0xff, 0x4a, 0x35, 0xde, 0xd8, 0x50, 0x39, 0xe4, 0x8c, 0x20, 0x2a, 0x74, 0xef, 0x1e, 0x29, 0x70, 0xff, 0x61, 0x50, 0xe7, 0x9c, 0x4b, 0x47, 0xce, 0xfb, 0x49, 0x4f, 0xc3, 0xff, 0x4b, 0x67, 0xb1, 0xff, 0x4e, 0x7d, 0xa2, 0xff, 0x4f, 0x87, 0x98, 0xff, 0x4c, 0x75, 0xa7, 0xff, 0x54, 0x5f, 0xc4, 0xd0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x34, 0xde, 0x27, 0x49, 0x33, 0xde, 0xfc, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x45, 0x2e, 0xe0, 0xff, 0x19, 0x22, 0x74, 0xff, 0x19, 0x22, 0x76, 0xff, 0x45, 0x2e, 0xe2, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2d, 0xde, 0xff, 0x44, 0x2b, 0xdf, 0xff, 0x44, 0x2a, 0xe0, 0xff, 0x44, 0x2c, 0xdf, 0xff, 0x43, 0x2d, 0xdd, 0xff, 0x4a, 0x34, 0xde, 0xf8, 0x53, 0x3f, 0xe0, 0x33, 0x5b, 0x47, 0xe1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0x89, 0xec, 0x13, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x3c, 0x2c, 0xca, 0xff, 0x3e, 0x2c, 0xce, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x46, 0x30, 0xdd, 0xff, 0x6e, 0x57, 0xe6, 0x0b, 0xd5, 0xd1, 0xf6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x52, 0x3d, 0xdf, 0xe3, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x50, 0x3a, 0xdf, 0xe3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xd2, 0xce, 0xf6, 0x00, 0x64, 0x52, 0xe3, 0x17, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x46, 0x30, 0xdd, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x61, 0xe5, 0x37, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x6e, 0x5a, 0xe6, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x27, 0xdd, 0x60, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x47, 0x32, 0xde, 0x77, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7a, 0x67, 0xe7, 0x9c, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x68, 0x53, 0xe4, 0xa7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3f, 0x27, 0xdd, 0x5f, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x40, 0x28, 0xdd, 0x77, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x82, 0x74, 0xe8, 0x63, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x75, 0x65, 0xe6, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xa4, 0x9d, 0xee, 0x00, 0x4b, 0x35, 0xde, 0x23, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2d, 0xdd, 0xff, 0x7c, 0x6c, 0xe7, 0x37, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x36, 0xdf, 0x18, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x46, 0x30, 0xdd, 0xff, 0x00, 0x00, 0x00, 0x00, 0xb5, 0xaf, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7a, 0x69, 0xe6, 0x0c, 0x43, 0x2d, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x47, 0x31, 0xdd, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x53, 0x3e, 0xe0, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x46, 0x2e, 0xde, 0xe4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x42, 0xe1, 0x7c, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x58, 0x43, 0xe1, 0x97, 0x92, 0x87, 0xea, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x60, 0xe4, 0x0c, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x46, 0x30, 0xdd, 0xff, 0xff, 0xff, 0xff, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9c, 0x90, 0xec, 0x03, 0x4a, 0x34, 0xde, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x48, 0x33, 0xde, 0xdc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6d, 0x5b, 0xe4, 0x60, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x43, 0x2d, 0xdd, 0xff, 0x5c, 0x48, 0xe1, 0x70, 0x7c, 0x6b, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x81, 0xeb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46, 0x2f, 0xdd, 0xf4, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x4b, 0x36, 0xde, 0xf3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x6f, 0xe7, 0x00, 0x62, 0x4e, 0xe3, 0x6b, 0x44, 0x2d, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x43, 0x2c, 0xdd, 0xff, 0x57, 0x42, 0xe1, 0x63, 0x44, 0x2d, 0xde, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x33, 0xde, 0xd0, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x52, 0x3d, 0xdf, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4a, 0x34, 0xde, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x4a, 0x34, 0xde, 0xff, 0x80, 0x79, 0xe8, 0x07, 0x88, 0x7d, 0xe7, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x47, 0xe0, 0x14, 0x46, 0x30, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x46, 0x30, 0xde, 0xff, 0x6b, 0x59, 0xe3, 0x1b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0x8b, 0xec, 0x0f, 0x52, 0x3d, 0xdf, 0xbf, 0x3e, 0x26, 0xdc, 0xff, 0x40, 0x2a, 0xdd, 0xff, 0x4c, 0x36, 0xdf, 0xff, 0x66, 0x53, 0xe3, 0x70, 0x4b, 0x36, 0xde, 0x1b, 0x4c, 0x36, 0xde, 0x18, 0x65, 0x53, 0xe3, 0x74, 0x4d, 0x38, 0xdf, 0xff, 0x40, 0x29, 0xdd, 0xff, 0x40, 0x29, 0xdd, 0xff, 0x57, 0x41, 0xe1, 0xbf, 0x7a, 0x6a, 0xe6, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +#endif +}; + +lv_img_dsc_t apple_icon_alpha = { + .header.always_zero = 0, + .header.w = 30, + .header.h = 30, + .data_size = 900 * LV_IMG_PX_SIZE_ALPHA_BYTE, + .header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA, + .data = apple_icon_alpha_map, +}; +#endif diff --git a/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/apple_icon_chroma.c b/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/apple_icon_chroma.c new file mode 100644 index 0000000..8bf5308 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/apple_icon_chroma.c @@ -0,0 +1,148 @@ +#include "lvgl/lvgl.h" +#include "lv_ex_conf.h" + +#if LV_USE_TUTORIALS +const uint8_t apple_icon_chroma_map[] = { +#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8 + /*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 bit*/ + 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x89, 0x64, 0xb2, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0xad, 0x64, 0x64, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x64, 0x64, 0x8d, 0x1c, 0x1c, 0x99, 0x9a, 0x99, 0x9a, 0x9a, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x64, 0x64, 0x1c, 0xba, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9a, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x89, 0x64, 0x89, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x64, 0x64, 0x9a, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x99, 0x9a, 0x1c, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0xe9, 0xe9, 0xe9, 0xe5, 0xe5, 0xe9, 0xe9, 0xe9, 0x84, 0x64, 0xea, 0xc9, 0xc9, 0xcd, 0xb1, 0xb1, 0xb1, 0xcd, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0xe9, 0xe9, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0x84, 0x84, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe9, 0xe9, 0x1c, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xc5, 0xc5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0x1c, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0xe9, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe9, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0xee, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xee, 0x1c, 0x1c, + 0x1c, 0x1c, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe9, 0x1c, 0x1c, + 0x1c, 0x1c, 0xee, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xee, 0x1c, 0x1c, + 0x1c, 0x1c, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0x1c, 0x1c, + 0x1c, 0x1c, 0xf2, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xee, 0x1c, 0x1c, + 0x1c, 0x1c, 0xe9, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xee, 0x1c, 0x1c, + 0x1c, 0x1c, 0xe9, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe9, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0xe9, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0xe9, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe9, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0x1c, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0xe9, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe9, 0x1c, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0xee, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe9, 0x1c, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe9, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0xea, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe9, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0xe9, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe9, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0xe9, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe9, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xee, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, + 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0xe9, 0xe5, 0xe5, 0xe9, 0xee, 0xe9, 0xe9, 0xee, 0xe9, 0xe5, 0xe5, 0xe9, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, 0x1c, +#endif +#if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP == 0 + /*Pixel format: Red: 5 bit, Green: 6 bit, Blue: 5 bit*/ + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe7, 0x79, 0x43, 0x69, 0x10, 0xac, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0x0c, 0x9b, 0x02, 0x69, 0x23, 0x69, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0x23, 0x69, 0x02, 0x69, 0xca, 0x8a, 0xe0, 0x07, 0xe0, 0x07, 0xcc, 0x85, 0xee, 0x8d, 0xab, 0x7d, 0xee, 0x8d, 0xee, 0x8d, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0x02, 0x69, 0x64, 0x71, 0xe0, 0x07, 0x2f, 0x9e, 0x8a, 0x7d, 0x8b, 0x7d, 0x8b, 0x7d, 0x8b, 0x7d, 0x8b, 0x7d, 0x8b, 0x7d, 0x8b, 0x7d, 0xcc, 0x85, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xc6, 0x79, 0x02, 0x61, 0x69, 0x8a, 0xab, 0x7d, 0x8b, 0x7d, 0x8b, 0x7d, 0x8b, 0x7d, 0x8b, 0x7d, 0x8b, 0x7d, 0x8b, 0x7d, 0x8b, 0x7d, 0x8b, 0x7d, 0x8b, 0x7d, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0x23, 0x69, 0xa1, 0x60, 0xec, 0x85, 0xaa, 0x7d, 0x8b, 0x7d, 0x8b, 0x7d, 0x8b, 0x7d, 0x8b, 0x7d, 0x8b, 0x7d, 0x8b, 0x7d, 0xab, 0x7d, 0xcd, 0x85, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xca, 0xe1, 0xa9, 0xe1, 0x89, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x89, 0xe1, 0xa9, 0xe1, 0xca, 0xe1, 0x44, 0x71, 0x44, 0x71, 0x8c, 0xea, 0x49, 0xd2, 0x89, 0xc2, 0x49, 0xb3, 0xea, 0xa3, 0x4a, 0x9c, 0xa9, 0xab, 0x0a, 0xc3, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xa9, 0xe1, 0xa9, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x69, 0xe1, 0x03, 0x71, 0x03, 0x79, 0x69, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x48, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0xa9, 0xe1, 0x0a, 0xe2, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x67, 0xc9, 0x68, 0xd1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x89, 0xe1, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xea, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0xca, 0xe1, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x89, 0xe1, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0x0e, 0xeb, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0xce, 0xea, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0x48, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x89, 0xe1, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0x4f, 0xeb, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0xad, 0xe2, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0x48, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x48, 0xe1, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xb0, 0xeb, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x2f, 0xeb, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xa9, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x6f, 0xeb, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xa9, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x89, 0xe1, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x89, 0xe1, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xea, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x69, 0xe1, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0x0b, 0xe2, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x2b, 0xe2, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x89, 0xe1, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xa9, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0xa9, 0xe1, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xee, 0xe2, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x4b, 0xe2, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0x89, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0xa9, 0xe1, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0x6c, 0xe2, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x0b, 0xe2, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xa9, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0xea, 0xe1, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xa9, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0xa9, 0xe1, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0x89, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x89, 0xe1, 0xcd, 0xe2, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, + 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xea, 0xe1, 0x28, 0xd9, 0x48, 0xe1, 0xa9, 0xe1, 0xad, 0xe2, 0xa9, 0xe1, 0xa9, 0xe1, 0xad, 0xe2, 0xca, 0xe1, 0x48, 0xe1, 0x48, 0xe1, 0x0b, 0xe2, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, +#endif +#if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP != 0 + /*Pixel format: Red: 5 bit, Green: 6 bit, Blue: 5 bit BUT the 2 bytes are swapped*/ + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x79, 0xe7, 0x69, 0x43, 0xac, 0x10, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x9b, 0x0c, 0x69, 0x02, 0x69, 0x23, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x69, 0x23, 0x69, 0x02, 0x8a, 0xca, 0x07, 0xe0, 0x07, 0xe0, 0x85, 0xcc, 0x8d, 0xee, 0x7d, 0xab, 0x8d, 0xee, 0x8d, 0xee, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x69, 0x02, 0x71, 0x64, 0x07, 0xe0, 0x9e, 0x2f, 0x7d, 0x8a, 0x7d, 0x8b, 0x7d, 0x8b, 0x7d, 0x8b, 0x7d, 0x8b, 0x7d, 0x8b, 0x7d, 0x8b, 0x85, 0xcc, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x79, 0xc6, 0x61, 0x02, 0x8a, 0x69, 0x7d, 0xab, 0x7d, 0x8b, 0x7d, 0x8b, 0x7d, 0x8b, 0x7d, 0x8b, 0x7d, 0x8b, 0x7d, 0x8b, 0x7d, 0x8b, 0x7d, 0x8b, 0x7d, 0x8b, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x69, 0x23, 0x60, 0xa1, 0x85, 0xec, 0x7d, 0xaa, 0x7d, 0x8b, 0x7d, 0x8b, 0x7d, 0x8b, 0x7d, 0x8b, 0x7d, 0x8b, 0x7d, 0x8b, 0x7d, 0xab, 0x85, 0xcd, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0xe1, 0xca, 0xe1, 0xa9, 0xe1, 0x89, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x89, 0xe1, 0xa9, 0xe1, 0xca, 0x71, 0x44, 0x71, 0x44, 0xea, 0x8c, 0xd2, 0x49, 0xc2, 0x89, 0xb3, 0x49, 0xa3, 0xea, 0x9c, 0x4a, 0xab, 0xa9, 0xc3, 0x0a, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0xe1, 0xa9, 0xe1, 0xa9, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x69, 0x71, 0x03, 0x79, 0x03, 0xe1, 0x69, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x48, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0xa9, 0xe2, 0x0a, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xc9, 0x67, 0xd1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x89, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0xe1, 0xea, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0xca, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x89, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0xeb, 0x0e, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xea, 0xce, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0xe1, 0x48, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x89, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0xeb, 0x4f, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe2, 0xad, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0xe1, 0x48, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x48, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0xeb, 0xb0, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xeb, 0x2f, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0xe1, 0xa9, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xeb, 0x6f, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0xe1, 0xa9, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x89, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x89, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0xe1, 0xea, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x69, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0xe2, 0x0b, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe2, 0x2b, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x89, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0xe1, 0xa9, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0xa9, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0xe2, 0xee, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe2, 0x4b, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0xe1, 0x89, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0xa9, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0xe2, 0x6c, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe2, 0x0b, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0xe1, 0xa9, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0xea, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0xe1, 0xa9, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0xa9, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0xe1, 0x89, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x68, 0xe1, 0x89, 0xe2, 0xcd, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, + 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0xe1, 0xea, 0xd9, 0x28, 0xe1, 0x48, 0xe1, 0xa9, 0xe2, 0xad, 0xe1, 0xa9, 0xe1, 0xa9, 0xe2, 0xad, 0xe1, 0xca, 0xe1, 0x48, 0xe1, 0x48, 0xe2, 0x0b, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, 0x07, 0xe0, +#endif +#if LV_COLOR_DEPTH == 32 + /*Pixel format: Fix 0xFF: 8 bit, Red: 8 bit, Green: 8 bit, Blue: 8 bit*/ + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x37, 0x3e, 0x7c, 0xff, 0x1c, 0x29, 0x6c, 0xff, 0x7d, 0x7f, 0xa9, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x5d, 0x61, 0x95, 0xff, 0x13, 0x20, 0x66, 0xff, 0x16, 0x23, 0x68, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x19, 0x25, 0x69, 0xff, 0x13, 0x21, 0x66, 0xff, 0x50, 0x57, 0x8a, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x5e, 0xb7, 0x7f, 0xff, 0x6e, 0xbd, 0x8a, 0xff, 0x58, 0xb4, 0x7b, 0xff, 0x70, 0xbe, 0x8c, 0xff, 0x6f, 0xbe, 0x8c, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x12, 0x20, 0x65, 0xff, 0x20, 0x2d, 0x6e, 0xff, 0x00, 0xff, 0x00, 0xff, 0x7b, 0xc3, 0x95, 0xff, 0x54, 0xb2, 0x76, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x61, 0xb7, 0x80, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x2e, 0x37, 0x77, 0xff, 0x10, 0x1f, 0x64, 0xff, 0x4a, 0x4c, 0x8a, 0xff, 0x59, 0xb4, 0x7b, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x1a, 0x26, 0x6a, 0xff, 0x0b, 0x15, 0x62, 0xff, 0x64, 0xbd, 0x82, 0xff, 0x54, 0xb3, 0x75, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x55, 0xb2, 0x77, 0xff, 0x58, 0xb3, 0x79, 0xff, 0x65, 0xb9, 0x84, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x4f, 0x3a, 0xdf, 0xff, 0x49, 0x33, 0xde, 0xff, 0x48, 0x32, 0xde, 0xff, 0x42, 0x2c, 0xdd, 0xff, 0x42, 0x2c, 0xdd, 0xff, 0x48, 0x32, 0xde, 0xff, 0x4a, 0x35, 0xde, 0xff, 0x50, 0x39, 0xe4, 0xff, 0x20, 0x2a, 0x74, 0xff, 0x1e, 0x29, 0x70, 0xff, 0x61, 0x50, 0xe7, 0xff, 0x4b, 0x47, 0xce, 0xff, 0x49, 0x4f, 0xc3, 0xff, 0x4b, 0x67, 0xb1, 0xff, 0x4e, 0x7d, 0xa2, 0xff, 0x4f, 0x87, 0x98, 0xff, 0x4c, 0x75, 0xa7, 0xff, 0x54, 0x5f, 0xc4, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x49, 0x34, 0xde, 0xff, 0x49, 0x33, 0xde, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x45, 0x2e, 0xe0, 0xff, 0x19, 0x22, 0x74, 0xff, 0x19, 0x22, 0x76, 0xff, 0x45, 0x2e, 0xe2, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2d, 0xde, 0xff, 0x44, 0x2b, 0xdf, 0xff, 0x44, 0x2a, 0xe0, 0xff, 0x44, 0x2c, 0xdf, 0xff, 0x43, 0x2d, 0xdd, 0xff, 0x4a, 0x34, 0xde, 0xff, 0x53, 0x3f, 0xe0, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x3c, 0x2c, 0xca, 0xff, 0x3e, 0x2c, 0xce, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x46, 0x30, 0xdd, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x52, 0x3d, 0xdf, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x50, 0x3a, 0xdf, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x46, 0x30, 0xdd, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x72, 0x61, 0xe5, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x6e, 0x5a, 0xe6, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x40, 0x27, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x47, 0x32, 0xde, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x7a, 0x67, 0xe7, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x68, 0x53, 0xe4, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x3f, 0x27, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x40, 0x28, 0xdd, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x82, 0x74, 0xe8, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x75, 0x65, 0xe6, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x4b, 0x35, 0xde, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2d, 0xdd, 0xff, 0x7c, 0x6c, 0xe7, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x4c, 0x36, 0xdf, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x46, 0x30, 0xdd, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x43, 0x2d, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x47, 0x31, 0xdd, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x53, 0x3e, 0xe0, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x46, 0x2e, 0xde, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x56, 0x42, 0xe1, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x58, 0x43, 0xe1, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x46, 0x30, 0xdd, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x4a, 0x34, 0xde, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x48, 0x33, 0xde, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x6d, 0x5b, 0xe4, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x43, 0x2d, 0xdd, 0xff, 0x5c, 0x48, 0xe1, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x46, 0x2f, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x4b, 0x36, 0xde, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x62, 0x4e, 0xe3, 0xff, 0x44, 0x2d, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x43, 0x2c, 0xdd, 0xff, 0x57, 0x42, 0xe1, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x49, 0x33, 0xde, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x52, 0x3d, 0xdf, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x4a, 0x34, 0xde, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x4a, 0x34, 0xde, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x46, 0x30, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x44, 0x2e, 0xdd, 0xff, 0x46, 0x30, 0xde, 0xff, 0x6b, 0x59, 0xe3, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, + 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x52, 0x3d, 0xdf, 0xff, 0x3e, 0x26, 0xdc, 0xff, 0x40, 0x2a, 0xdd, 0xff, 0x4c, 0x36, 0xdf, 0xff, 0x66, 0x53, 0xe3, 0xff, 0x4b, 0x36, 0xde, 0xff, 0x4c, 0x36, 0xde, 0xff, 0x65, 0x53, 0xe3, 0xff, 0x4d, 0x38, 0xdf, 0xff, 0x40, 0x29, 0xdd, 0xff, 0x40, 0x29, 0xdd, 0xff, 0x57, 0x41, 0xe1, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, +#endif +}; + +lv_img_dsc_t apple_icon_chroma = { + .header.always_zero = 0, + .header.w = 30, + .header.h = 30, + .header.cf = LV_IMG_CF_TRUE_COLOR_CHROMA_KEYED, + .data = apple_icon_chroma_map, +}; + +#endif diff --git a/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.c b/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.c new file mode 100644 index 0000000..9b2e65f --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.c @@ -0,0 +1,110 @@ +/** + * @file lv_tutorial_antialiasing.h + * + */ + +/* + * -------------------------------------------------------------- + * Learn how to make the drawings smoother with anti aliasing + * -------------------------------------------------------------- + * + * You have several options to make your GUI smoother: + * + * 1. ANTI-ALIASED DRAWING + * By setting LV_ANTIALAIS 1 in lv_conf.h the library will draw + * smooth lines and curves (radius of rectangles). It has very low + * resource requirement because only the required pixels are calculated + * on the edges. + * + * 2. HIGHER BPP FONTS + * You enable can built-in fonts in lv_conf.h. + * By setting for example LV_FONT_DEJAVU_20 4 the font will describe one pixel + * with 4 bits meaning 16 values for one pixel. It will result smoother letters. + * The possible values are 1, 2, 4 or 8. Not that the size of the font is increasing + * by increasing the bpp. + * With the font converter tool you can also create your own fonts with the desired bpp: + * https://littlevgl.com/ttf-font-to-c-array + * + * 3. PIXEL LEVEL OPACITY ON IMAGES + * In the font converter you can enable 'Transparency: Alpha byte' which + * will add an alpha byte the every pixel. It ensures smooth edges and holes on images. + * Check the Image converter here: https://littlevgl.com/image-to-c-array + * + * Try the example by changing the following settings in lv_conf.h: + * - LV_ANTIALAIS 0 or 1 + * - LV_FONT_DEJAVU_... 1 or 2 or 4 or 8 + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_tutorial_antialiasing.h" +#if LV_USE_TUTORIALS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ + +/********************** + * STATIC VARIABLES + **********************/ +LV_IMG_DECLARE(apple_icon_chroma) +LV_IMG_DECLARE(apple_icon_alpha) + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create object to see how they change from the anti aliasing + */ +void lv_tutorial_antialiasing(void) +{ + lv_obj_t * scr = lv_disp_get_scr_act(NULL); /*Get the current screen*/ + + lv_obj_t * label; + + static lv_style_t style1; + lv_style_copy(&style1, &lv_style_btn_rel); + style1.body.radius = 20; + style1.body.border.width = 4; + + lv_obj_t * btn1; + btn1 = lv_btn_create(scr, NULL); + lv_obj_set_pos(btn1, 10, 10); + lv_obj_set_size(btn1, 100, 60); + lv_btn_set_style(btn1, LV_BTN_STYLE_REL, &style1); + + label = lv_label_create(btn1, NULL); + lv_label_set_text(label, "Button"); + + /*Crate an image which is NOT automatically upscaled to compensate the anti aliasing*/ + lv_obj_t * img_normal = lv_img_create(scr, NULL); + lv_img_set_src(img_normal, &apple_icon_chroma); + lv_obj_align(img_normal, btn1, LV_ALIGN_OUT_RIGHT_TOP, 10, 0); + + /*Crate an image which is automatically upscaled to compensate the anti aliasing*/ + lv_obj_t * img_alpha_byte = lv_img_create(scr, img_normal); /*Crate an image object*/ + lv_img_set_src(img_alpha_byte, &apple_icon_alpha); + lv_obj_align(img_alpha_byte, img_normal, LV_ALIGN_OUT_RIGHT_TOP, 10, 0); + + +} + +/********************** + * STATIC FUNCTIONS + **********************/ + +#endif /*LV_USE_TUTORIALS*/ diff --git a/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.h b/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.h new file mode 100644 index 0000000..c871c26 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.h @@ -0,0 +1,54 @@ +/** + * @file lv_tutorial_antialiasing.h + * + */ + +#ifndef LV_TUTORIAL_ANTIALIASING_H +#define LV_TUTORIAL_ANTIALIASING_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../lvgl/lvgl.h" +#include "../../../lv_ex_conf.h" +#endif + +#if LV_USE_TUTORIALS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Create object to see how they change from the anti aliasing + * Modify LV_ANTIALIAS and LV_FONT_ANTIALIAS to see what is changing + */ +void lv_tutorial_antialiasing(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_TUTORIALS*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TUTORIAL_ANTIALIASING_H*/ diff --git a/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.mk b/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.mk new file mode 100644 index 0000000..0af413e --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/5_antialiasing/lv_tutorial_antialiasing.mk @@ -0,0 +1,8 @@ +CSRCS += lv_tutorial_antialiasing.c +CSRCS += apple_icon_alpha.c +CSRCS += apple_icon_chroma.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tutorial/5_antialiasing +VPATH += :$(LVGL_DIR)/lv_examples/lv_tutorial/5_antialiasing + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tutorial/5_antialiasing" diff --git a/components/lv_examples/lv_examples/lv_tutorial/6_images/blue_flower.jpg b/components/lv_examples/lv_examples/lv_tutorial/6_images/blue_flower.jpg new file mode 100644 index 0000000..7924e17 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tutorial/6_images/blue_flower.jpg differ diff --git a/components/lv_examples/lv_examples/lv_tutorial/6_images/blue_flower_16.bin b/components/lv_examples/lv_examples/lv_tutorial/6_images/blue_flower_16.bin new file mode 100644 index 0000000..b13fd58 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tutorial/6_images/blue_flower_16.bin differ diff --git a/components/lv_examples/lv_examples/lv_tutorial/6_images/blue_flower_16_swap.bin b/components/lv_examples/lv_examples/lv_tutorial/6_images/blue_flower_16_swap.bin new file mode 100644 index 0000000..2f0d218 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tutorial/6_images/blue_flower_16_swap.bin differ diff --git a/components/lv_examples/lv_examples/lv_tutorial/6_images/blue_flower_32.bin b/components/lv_examples/lv_examples/lv_tutorial/6_images/blue_flower_32.bin new file mode 100644 index 0000000..9623dc3 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tutorial/6_images/blue_flower_32.bin differ diff --git a/components/lv_examples/lv_examples/lv_tutorial/6_images/blue_flower_8.bin b/components/lv_examples/lv_examples/lv_tutorial/6_images/blue_flower_8.bin new file mode 100644 index 0000000..6342fbd Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tutorial/6_images/blue_flower_8.bin differ diff --git a/components/lv_examples/lv_examples/lv_tutorial/6_images/blue_rose_16.bin b/components/lv_examples/lv_examples/lv_tutorial/6_images/blue_rose_16.bin new file mode 100644 index 0000000..cfd008d Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tutorial/6_images/blue_rose_16.bin differ diff --git a/components/lv_examples/lv_examples/lv_tutorial/6_images/blue_rose_16.png b/components/lv_examples/lv_examples/lv_tutorial/6_images/blue_rose_16.png new file mode 100644 index 0000000..c5c942b Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tutorial/6_images/blue_rose_16.png differ diff --git a/components/lv_examples/lv_examples/lv_tutorial/6_images/flower_icon_alpha.bin b/components/lv_examples/lv_examples/lv_tutorial/6_images/flower_icon_alpha.bin new file mode 100644 index 0000000..4bae4f8 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tutorial/6_images/flower_icon_alpha.bin differ diff --git a/components/lv_examples/lv_examples/lv_tutorial/6_images/flower_icon_alpha.c b/components/lv_examples/lv_examples/lv_tutorial/6_images/flower_icon_alpha.c new file mode 100644 index 0000000..cf72987 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/6_images/flower_icon_alpha.c @@ -0,0 +1,67 @@ +#include "lvgl/lvgl.h" + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +const LV_ATTRIBUTE_MEM_ALIGN uint8_t flower_icon_alpha_map[] = { + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x9d, 0xff, 0xd9, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6f, 0xff, 0xff, 0xff, 0xf6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc1, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x17, 0xbb, 0xa6, 0x00, 0x00, 0x1d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd1, 0x00, 0x00, 0x6a, 0xbb, 0x71, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0xdf, 0xff, 0xff, 0xc1, 0x00, 0x1d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd1, 0x00, 0x2c, 0xff, 0xff, 0xfd, 0x10, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x1f, 0xff, 0xff, 0xff, 0xfd, 0x20, 0x1d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd1, 0x02, 0xdf, 0xff, 0xff, 0xff, 0xf2, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x01, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xc1, 0x1b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x1c, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x10, 0x00, 0x00, + 0x00, 0x00, 0x07, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x09, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0x70, 0x00, 0x00, + 0x00, 0x00, 0x0b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x56, 0xff, 0xff, 0xdd, 0xff, 0xff, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x00, 0x00, + 0x00, 0x00, 0x1b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, 0xff, 0xf7, 0x00, 0x7f, 0xff, 0x5e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc1, 0x00, 0x00, + 0x00, 0x00, 0x0a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0xdf, 0xd2, 0x00, 0x2d, 0xfd, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x00, 0x00, + 0x00, 0x00, 0x06, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xdf, 0xc0, 0x00, 0x0c, 0xfd, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xcf, 0xff, 0xff, 0xff, 0xf5, 0x3b, 0xff, 0xdf, 0xc0, 0x00, 0x0c, 0xfd, 0xff, 0xb3, 0x6f, 0xff, 0xff, 0xff, 0xfd, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x1d, 0xff, 0xff, 0xff, 0x50, 0x00, 0x6f, 0xff, 0xc0, 0x00, 0x0c, 0xff, 0xf6, 0x00, 0x06, 0xff, 0xff, 0xff, 0xd1, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x02, 0xcf, 0xff, 0xff, 0x30, 0x00, 0x05, 0xff, 0xc0, 0x00, 0x1c, 0xff, 0x50, 0x00, 0x03, 0xff, 0xff, 0xfc, 0x20, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x1a, 0xff, 0xff, 0xb0, 0x00, 0x00, 0x8f, 0xd2, 0x00, 0x2d, 0xf8, 0x00, 0x00, 0x0b, 0xff, 0xff, 0xa1, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x11, 0x11, 0x10, 0x5e, 0xff, 0xf6, 0x00, 0x00, 0x0c, 0xe3, 0x00, 0x3e, 0xc0, 0x00, 0x00, 0x6f, 0xff, 0xe5, 0x01, 0x11, 0x11, 0x00, 0x00, + 0x00, 0x48, 0xcd, 0xdd, 0xb9, 0x65, 0xad, 0xff, 0x50, 0x00, 0x01, 0xd5, 0x00, 0x5d, 0x10, 0x00, 0x05, 0xff, 0xda, 0x56, 0x9b, 0xdd, 0xdc, 0x84, 0x00, + 0x06, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdd, 0xdf, 0xf8, 0x00, 0x00, 0x56, 0x00, 0x74, 0x00, 0x00, 0x8f, 0xfd, 0xdd, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, + 0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc1, 0x00, 0x03, 0x00, 0x31, 0x00, 0x1c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, + 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, 0xcc, 0xcd, 0xed, 0x50, 0x02, 0x42, 0x00, 0x14, 0xde, 0xdc, 0xcc, 0xcd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, + 0xdf, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x20, 0x00, 0x02, 0x35, 0x63, 0x2e, 0xfd, 0x10, 0x36, 0x53, 0x21, 0x00, 0x02, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfd, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4f, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xdf, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x20, 0x00, 0x12, 0x35, 0x73, 0x01, 0x40, 0x00, 0x36, 0x53, 0x20, 0x00, 0x02, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xfd, + 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, 0xcc, 0xcd, 0xed, 0x41, 0x00, 0x00, 0x00, 0x15, 0xde, 0xdc, 0xcc, 0xcd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, + 0x2f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc1, 0x00, 0x13, 0x00, 0x31, 0x00, 0x1c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, + 0x06, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdd, 0xdf, 0xf8, 0x00, 0x00, 0x46, 0x00, 0x65, 0x00, 0x00, 0x8f, 0xfd, 0xdd, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, + 0x00, 0x48, 0xcd, 0xdd, 0xb9, 0x65, 0xad, 0xff, 0x50, 0x00, 0x01, 0xd5, 0x00, 0x5d, 0x10, 0x00, 0x05, 0xff, 0xda, 0x56, 0x9b, 0xdd, 0xdc, 0x84, 0x00, + 0x00, 0x00, 0x11, 0x11, 0x00, 0x5e, 0xff, 0xf6, 0x00, 0x00, 0x0c, 0xe3, 0x00, 0x3e, 0xc0, 0x00, 0x00, 0x6f, 0xff, 0xe5, 0x00, 0x11, 0x11, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x1a, 0xff, 0xff, 0xb0, 0x00, 0x00, 0x8f, 0xd2, 0x00, 0x2d, 0xf8, 0x00, 0x00, 0x0b, 0xff, 0xff, 0xa1, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x02, 0xcf, 0xff, 0xff, 0x30, 0x00, 0x05, 0xff, 0xc1, 0x00, 0x0c, 0xff, 0x50, 0x00, 0x03, 0xff, 0xff, 0xfb, 0x20, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x2d, 0xff, 0xff, 0xff, 0x60, 0x00, 0x6f, 0xff, 0xc0, 0x00, 0x0c, 0xff, 0xf6, 0x00, 0x06, 0xff, 0xff, 0xff, 0xd1, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xcf, 0xff, 0xff, 0xff, 0xf6, 0x3b, 0xff, 0xdf, 0xc0, 0x00, 0x0c, 0xfd, 0xff, 0xb3, 0x6f, 0xff, 0xff, 0xff, 0xfc, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x06, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xdf, 0xc0, 0x00, 0x0c, 0xfd, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x00, 0x00, + 0x00, 0x00, 0x0a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0xdf, 0xd2, 0x00, 0x2d, 0xfd, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x00, 0x00, + 0x00, 0x00, 0x1b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, 0xff, 0xf7, 0x00, 0x7f, 0xff, 0x5e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc1, 0x00, 0x00, + 0x00, 0x00, 0x0b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x56, 0xff, 0xff, 0xdd, 0xff, 0xff, 0x65, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x00, 0x00, + 0x00, 0x00, 0x07, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x09, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0x70, 0x00, 0x00, + 0x00, 0x00, 0x01, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xc1, 0x1b, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x1b, 0xff, 0xff, 0xff, 0xff, 0xfd, 0x10, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x1f, 0xff, 0xff, 0xff, 0xfd, 0x20, 0x1d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd1, 0x02, 0xdf, 0xff, 0xff, 0xff, 0xf2, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x02, 0xdf, 0xff, 0xff, 0xd1, 0x00, 0x1d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd1, 0x00, 0x1c, 0xff, 0xff, 0xfd, 0x20, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x17, 0xac, 0xa6, 0x00, 0x00, 0x1d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd1, 0x00, 0x00, 0x6a, 0xcb, 0x71, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc1, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6f, 0xff, 0xff, 0xff, 0xf6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x9d, 0xff, 0xd9, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +}; + +lv_img_dsc_t flower_icon_alpha = { + .header.always_zero = 0, + .header.w = 50, + .header.h = 50, + .data_size = 1250, + .header.cf = LV_IMG_CF_ALPHA_4BIT, + .data = flower_icon_alpha_map, +}; diff --git a/components/lv_examples/lv_examples/lv_tutorial/6_images/flower_icon_alpha.png b/components/lv_examples/lv_examples/lv_tutorial/6_images/flower_icon_alpha.png new file mode 100644 index 0000000..4ed2f84 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tutorial/6_images/flower_icon_alpha.png differ diff --git a/components/lv_examples/lv_examples/lv_tutorial/6_images/lv_tutorial_images.c b/components/lv_examples/lv_examples/lv_tutorial/6_images/lv_tutorial_images.c new file mode 100644 index 0000000..20ee0b9 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/6_images/lv_tutorial_images.c @@ -0,0 +1,313 @@ +/** + * @file lv_tutorial_images.h + * + */ + +/* + * ------------------------------------------------------------------------------------------- + * Learn how to use images stored internally (in a variable) or externally (e.g. on an SD card) + *------------------------------------------------------------------------------------------- + * + * + * The basic object to display images is 'lv_img'. The displayed image is called 'image source'. + * + * IMAGE SOURCES + * ----------------- + * + * 1. IMAGE CONVETED TO C ARRAY + * With the online image converter tool you can convert your images into C arrays: + * https://littlevgl.com/image-to-c-array + * + * If you have the converted file: + * - Copy the result C file into your project + * - Declare the image variable with 'LV_IMG_DECLARE(image_name);' + * - Set it for an image object: 'lv_img_set_src(img1, &image_name);' + * + * In this case you don't need to think about color format because + * all color formats are included in the C file and the currently active + * (according to 'LV_COLOR_DEPTH' in 'lv_conf.h') will be enabled. + * + * 2. IMAGE FROM FILE + * With the above mentioned online image converter tool you can convert images to binary files too. + * Now you should choose the right color format. + * The result of the conversion should be a *.bin file which can be copied to any external device (e.g. SD card) + * + * To read this file you need to provide some functions for LittlevGL. You will see it in the example below. + * + * To set a file for an image object use: 'lv_img_set_src(img, "S:path/to/image.bin")' + * + * 3. IMAGE FROM SYMBOL FONT + * The symbol fonts are letters however they look like small images. + * To set symbols for an image object use: 'lv_img_set_src(img, LV_SYMBOL_CLOSE)' + * + * TRANSPARENCY + * --------------- + * + * The images have 2 features related to pixel level transparency: + * + * 1. CHROMA KEYING + * The LV_COLOR_TRANSP (lv_conf.h) pixels will be transparent. + * This feature can be enabled individually in the images in the online image converter tool. + * Because Chroma keying can only show/hide a pixel edges on the image might be jagged. + * On the other hand it dosn't mean extra memory usage. + * + * 2. ALHPA BYTE + * It will add an extra byte to every pixel to show its opacity. + * This feature also can be enabled in the online converter tool. + * In case of 8 and 16 bit images it means extra 8 bit for every pixel. + * The 24 bit images are stored on 32 bit independently from Alpha byte settings. + * Alpha byte results very smooth edges and high quality images. + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_tutorial_images.h" +#if LV_USE_TUTORIALS + +#include "lvgl/lvgl.h" +#include +#include + +/********************* + * DEFINES + *********************/ +#define PC_FILES 1 /*If you are on PC you can add PC file function to 'lv_fs'*/ + +/********************** + * TYPEDEFS + **********************/ +typedef FILE * pc_file_t; + +/********************** + * STATIC PROTOTYPES + **********************/ +#if PC_FILES && LV_USE_FILESYSTEM +/*Interface functions to standard C file functions (only the required ones to image handling)*/ +static lv_fs_res_t pcfs_open(lv_fs_drv_t * drv, void * file_p, const char * fn, lv_fs_mode_t mode); +static lv_fs_res_t pcfs_close(lv_fs_drv_t * drv, void * file_p); +static lv_fs_res_t pcfs_read(lv_fs_drv_t * drv, void * file_p, void * buf, uint32_t btr, uint32_t * br); +static lv_fs_res_t pcfs_seek(lv_fs_drv_t * drv, void * file_p, uint32_t pos); +static lv_fs_res_t pcfs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p); +#endif + +/********************** + * STATIC VARIABLES + **********************/ +/*Declare the "source code image" which is stored in the flash*/ +LV_IMG_DECLARE(red_flower) +LV_IMG_DECLARE(red_rose_16); +LV_IMG_DECLARE(flower_icon_alpha); + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create images from variable and file + */ +void lv_tutorial_image(void) +{ + lv_obj_t * scr = lv_disp_get_scr_act(NULL); /*Get the current screen*/ + + /************************* + * IMAGE FROM SOURCE CODE + *************************/ + + lv_obj_t * img_var = lv_img_create(scr, NULL); /*Crate an image object*/ + lv_img_set_src(img_var, &red_flower); /*Set the created file as image (a red flower)*/ + lv_obj_set_pos(img_var, 10, 10); /*Set the positions*/ + lv_obj_set_drag(img_var, true); + + img_var = lv_img_create(scr, NULL); /*Crate an image object*/ + lv_img_set_src(img_var, &red_rose_16); /*Set the created file as image (a red rose)*/ + lv_obj_set_pos(img_var, 10, 100); /*Set the positions*/ + lv_obj_set_drag(img_var, true); + + static lv_style_t style_red; + lv_style_copy(&style_red, &lv_style_plain); + style_red.image.color = LV_COLOR_RED; + + img_var = lv_img_create(scr, NULL); /*Crate an image object*/ + lv_img_set_src(img_var, &flower_icon_alpha); /*Set the created file as image (a red flower icon)*/ + lv_img_set_style(img_var, LV_IMG_STYLE_MAIN, &style_red); + lv_obj_set_pos(img_var, 10, 200); /*Set the positions*/ + lv_obj_set_drag(img_var, true); + +#if PC_FILES && LV_USE_FILESYSTEM + /************************** + * IMAGE FROM BINARY FILE + **************************/ + + /* Add a simple drive to open images from PC*/ + lv_fs_drv_t pcfs_drv; /*A driver descriptor*/ + memset(&pcfs_drv, 0, sizeof(lv_fs_drv_t)); /*Initialization*/ + + pcfs_drv.file_size = sizeof(pc_file_t); /*Set up fields...*/ + pcfs_drv.letter = 'P'; + pcfs_drv.open_cb = pcfs_open; + pcfs_drv.close_cb = pcfs_close; + pcfs_drv.read_cb = pcfs_read; + pcfs_drv.seek_cb = pcfs_seek; + pcfs_drv.tell_cb = pcfs_tell; + lv_fs_drv_register(&pcfs_drv); + + + lv_obj_t * img_bin = lv_img_create(scr, NULL); /*Create an image object*/ + /* Set the image's file according to the current color depth + * a blue flower picture*/ +#if LV_COLOR_DEPTH == 8 + lv_img_set_src(img_bin, "P:/lv_examples/lv_tutorial/6_images/blue_flower_8.bin"); +#elif LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP == 0 + lv_img_set_src(img_bin, "P:/lv_examples/lv_tutorial/6_images/blue_flower_16.bin"); +#elif LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP == 1 + lv_img_set_src(img_bin, "P:/lv_examples/lv_tutorial/6_images/blue_flower_16_swap.bin"); +#elif LV_COLOR_DEPTH == 32 + lv_img_set_src(img_bin, "P:/lv_examples/lv_tutorial/6_images/blue_flower_32.bin"); +#endif + + lv_obj_set_pos(img_bin, 150, 10); /*Align next to the source image*/ + lv_obj_set_drag(img_bin, true); + + img_bin = lv_img_create(scr, NULL); /*Crate an image object*/ + lv_img_set_src(img_bin, "P:/lv_examples/lv_tutorial/6_images/blue_rose_16.bin"); /*Set the created file as image (a red rose)*/ + lv_obj_set_pos(img_bin, 150, 100); /*Set the positions*/ + lv_obj_set_drag(img_bin, true); + + static lv_style_t style_blue; + lv_style_copy(&style_blue, &lv_style_plain); + style_blue.image.color = LV_COLOR_BLUE; + + img_bin = lv_img_create(scr, NULL); /*Crate an image object*/ + lv_img_set_src(img_bin, "P:/lv_examples/lv_tutorial/6_images/flower_icon_alpha.bin"); /*Set the created file as image (a red flower icon)*/ + lv_img_set_style(img_bin, LV_IMG_STYLE_MAIN, &style_blue); + lv_obj_set_pos(img_bin, 150, 200); /*Set the positions*/ + lv_obj_set_drag(img_bin, true); +#endif + + lv_obj_t * img_symbol = lv_img_create(scr, NULL); + lv_img_set_src(img_symbol, LV_SYMBOL_OK); + lv_obj_set_drag(img_symbol, true); + lv_obj_set_pos(img_symbol, 300, 10); /*Set the positions*/ +} + +/********************** + * STATIC FUNCTIONS + **********************/ + +#if PC_FILES && LV_USE_FILESYSTEM +/** + * Open a file from the PC + * @param drv pointer to the current driver + * @param file_p pointer to a FILE* variable + * @param fn name of the file. + * @param mode element of 'fs_mode_t' enum or its 'OR' connection (e.g. FS_MODE_WR | FS_MODE_RD) + * @return LV_FS_RES_OK: no error, the file is opened + * any error from lv_fs_res_t enum + */ +static lv_fs_res_t pcfs_open(lv_fs_drv_t * drv, void * file_p, const char * fn, lv_fs_mode_t mode) +{ + (void) drv; /*Unused*/ + + errno = 0; + + const char * flags = ""; + + if(mode == LV_FS_MODE_WR) flags = "wb"; + else if(mode == LV_FS_MODE_RD) flags = "rb"; + else if(mode == (LV_FS_MODE_WR | LV_FS_MODE_RD)) flags = "a+"; + + /*Make the path relative to the current directory (the projects root folder)*/ + char buf[256]; + sprintf(buf, "./%s", fn); + + pc_file_t f = fopen(buf, flags); + if(f == NULL) return LV_FS_RES_UNKNOWN; + else { + fseek(f, 0, SEEK_SET); + + /* 'file_p' is pointer to a file descriptor and + * we need to store our file descriptor here*/ + pc_file_t * fp = file_p; /*Just avoid the confusing casings*/ + *fp = f; + } + + return LV_FS_RES_OK; +} + + +/** + * Close an opened file + * @param drv pointer to the current driver + * @param file_p pointer to a FILE* variable. (opened with lv_ufs_open) + * @return LV_FS_RES_OK: no error, the file is read + * any error from lv__fs_res_t enum + */ +static lv_fs_res_t pcfs_close(lv_fs_drv_t * drv, void * file_p) +{ + (void) drv; /*Unused*/ + + pc_file_t * fp = file_p; /*Just avoid the confusing casings*/ + fclose(*fp); + return LV_FS_RES_OK; +} + +/** + * Read data from an opened file + * @param drv pointer to the current driver + * @param file_p pointer to a FILE variable. + * @param buf pointer to a memory block where to store the read data + * @param btr number of Bytes To Read + * @param br the real number of read bytes (Byte Read) + * @return LV_FS_RES_OK: no error, the file is read + * any error from lv__fs_res_t enum + */ +static lv_fs_res_t pcfs_read(lv_fs_drv_t * drv, void * file_p, void * buf, uint32_t btr, uint32_t * br) +{ + (void) drv; /*Unused*/ + + pc_file_t * fp = file_p; /*Just avoid the confusing casings*/ + *br = (uint32_t)fread(buf, 1, btr, *fp); + return LV_FS_RES_OK; +} + +/** + * Set the read write pointer. Also expand the file size if necessary. + * @param drv pointer to the current driver + * @param file_p pointer to a FILE* variable. (opened with lv_ufs_open ) + * @param pos the new position of read write pointer + * @return LV_FS_RES_OK: no error, the file is read + * any error from lv__fs_res_t enum + */ +static lv_fs_res_t pcfs_seek(lv_fs_drv_t * drv, void * file_p, uint32_t pos) +{ + (void) drv; /*Unused*/ + + pc_file_t * fp = file_p; /*Just avoid the confusing casings*/ + fseek(*fp, pos, SEEK_SET); + return LV_FS_RES_OK; +} + +/** + * Give the position of the read write pointer + * @param drv pointer to the current driver + * @param file_p pointer to a FILE* variable. + * @param pos_p pointer to to store the result + * @return LV_FS_RES_OK: no error, the file is read + * any error from lv__fs_res_t enum + */ +static lv_fs_res_t pcfs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p) +{ + (void) drv; /*Unused*/ + pc_file_t * fp = file_p; /*Just avoid the confusing casings*/ + *pos_p = ftell(*fp); + return LV_FS_RES_OK; +} + +#endif + +#endif /*LV_USE_TUTORIALS*/ diff --git a/components/lv_examples/lv_examples/lv_tutorial/6_images/lv_tutorial_images.h b/components/lv_examples/lv_examples/lv_tutorial/6_images/lv_tutorial_images.h new file mode 100644 index 0000000..ba5eb8c --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/6_images/lv_tutorial_images.h @@ -0,0 +1,54 @@ +/** + * @file lv_tutorial_images.h + * + */ + +#ifndef LV_TUTORIAL_IMAGES_H +#define LV_TUTORIAL_IMAGES_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../lvgl/lvgl.h" +#include "../../../lv_ex_conf.h" +#endif + +#if LV_USE_TUTORIALS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + + +/** + * Create images from variable and file + */ +void lv_tutorial_image(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_TUTORIALS*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TUTORIAL_ANTIALIASING_H*/ diff --git a/components/lv_examples/lv_examples/lv_tutorial/6_images/lv_tutorial_images.mk b/components/lv_examples/lv_examples/lv_tutorial/6_images/lv_tutorial_images.mk new file mode 100644 index 0000000..9cc5d6a --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/6_images/lv_tutorial_images.mk @@ -0,0 +1,9 @@ +CSRCS += lv_tutorial_images.c +CSRCS += red_flower.c +CSRCS += red_rose_16.c +CSRCS += flower_icon_alpha.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tutorial/6_images +VPATH += :$(LVGL_DIR)/lv_examples/lv_tutorial/6_images + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tutorial/6_images" diff --git a/components/lv_examples/lv_examples/lv_tutorial/6_images/red_flower.c b/components/lv_examples/lv_examples/lv_tutorial/6_images/red_flower.c new file mode 100644 index 0000000..46f32a5 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/6_images/red_flower.c @@ -0,0 +1,330 @@ +#include "lvgl/lvgl.h" +#include "lv_ex_conf.h" + +#if LV_USE_TUTORIALS + +const uint8_t red_flower_map[] = { +#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8 + /*Pixel format: Red: 3 bit, Green: 3 bit, Blue: 2 bit*/ + 0x4d, 0x4d, 0x48, 0x4c, 0x71, 0x71, 0x4d, 0x49, 0x48, 0x48, 0x44, 0x6d, 0xb6, 0xb6, 0xb1, 0xb1, 0x8d, 0x8d, 0xb1, 0xb1, 0x8d, 0x91, 0x8d, 0xb1, 0xb1, 0x8d, 0x69, 0x68, 0x6c, 0x6c, 0x6c, 0x48, 0x48, 0x48, 0x24, 0x24, 0x48, 0x24, 0x48, 0x71, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0x91, 0xc8, 0xc4, 0xc4, 0xc4, 0xed, 0x99, 0x99, 0x99, 0xb9, 0xba, 0x99, 0x99, 0xb9, 0xba, 0xb9, 0x95, 0x95, 0x95, 0x75, 0x71, 0x71, 0x91, 0xb1, 0xd6, 0xfa, 0xfa, 0xd5, 0x68, 0x24, 0x44, 0x49, 0x69, 0x69, 0x8d, 0x8d, 0xad, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd2, 0xd2, 0xd2, 0xd1, 0xd1, 0xb1, 0xad, 0xad, 0xad, + 0x4d, 0x4d, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x44, 0x44, 0x44, 0x6d, 0x92, 0x91, 0x8d, 0x91, 0x91, 0xb1, 0xd6, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0x8d, 0x8d, 0x8d, 0x69, 0x69, 0x6d, 0x68, 0x68, 0x68, 0x48, 0x24, 0x24, 0x48, 0x91, 0xd5, 0xda, 0xd9, 0xb1, 0xed, 0xed, 0x8d, 0x6d, 0x6d, 0x6d, 0x68, 0xe9, 0xe5, 0xe5, 0xc4, 0xe4, 0xd5, 0xb9, 0xb9, 0xba, 0xba, 0xb9, 0xba, 0xba, 0xba, 0xb9, 0x95, 0x95, 0x95, 0x95, 0x71, 0x71, 0xb1, 0xb1, 0xd6, 0xfa, 0xfa, 0xf6, 0xb1, 0x44, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x24, 0x24, 0x24, 0x24, + 0x4c, 0x4d, 0x49, 0x44, 0x48, 0x49, 0x49, 0x6d, 0x6d, 0x6d, 0xb6, 0x91, 0x8d, 0x6d, 0x8d, 0x8d, 0x8d, 0x8d, 0x91, 0x91, 0xb1, 0xb1, 0xb1, 0x8d, 0x6d, 0x8d, 0x8d, 0x8d, 0x8d, 0xb1, 0x8d, 0x68, 0x48, 0x48, 0x48, 0x6d, 0x8d, 0xb5, 0xd5, 0xb5, 0xe9, 0xa9, 0xe5, 0xe9, 0xe9, 0x69, 0x69, 0x49, 0xc9, 0xe5, 0xe5, 0xe5, 0xc4, 0xc4, 0xe9, 0xb9, 0xb9, 0xba, 0xb9, 0xba, 0xbe, 0xbe, 0xba, 0xba, 0x95, 0x95, 0x95, 0x95, 0xb1, 0x91, 0x71, 0x6d, 0x91, 0xf6, 0xf6, 0xd6, 0xd2, 0x69, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x4c, 0x6d, 0x4d, 0x69, 0x69, 0x49, 0x91, 0xb2, 0xb1, 0xb6, 0xb6, 0x91, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x6d, 0x8d, 0x8d, 0x8d, 0x8d, 0x6d, 0x6d, 0x6d, 0x69, 0x49, 0x6d, 0x8d, 0x8d, 0x68, 0x48, 0x48, 0x6c, 0x6d, 0x8d, 0x8d, 0x6d, 0x8d, 0xc4, 0xc4, 0xc4, 0xe5, 0xe9, 0xe9, 0x48, 0x68, 0xe5, 0xe4, 0xe4, 0xe4, 0xe4, 0xc4, 0xe5, 0xd5, 0xb9, 0xb9, 0xba, 0xbe, 0xde, 0xbe, 0xba, 0xb9, 0x99, 0x95, 0x95, 0x95, 0xe5, 0xed, 0x6d, 0x69, 0x8d, 0xd1, 0xd6, 0xb1, 0xd1, 0x69, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x4c, 0x4c, 0x71, 0x92, 0x6d, 0x69, 0x8d, 0xb1, 0x91, 0x8d, 0x6d, 0x49, 0x49, 0x49, 0x69, 0x49, 0x44, 0x44, 0x49, 0x69, 0x6d, 0x71, 0x71, 0x4d, 0x48, 0x48, 0x48, 0x49, 0x49, 0x6d, 0x6d, 0x69, 0x44, 0x48, 0x6c, 0x6d, 0x69, 0x69, 0x6d, 0xad, 0xc4, 0xc4, 0xc4, 0xe5, 0xe5, 0xe9, 0xa5, 0xa9, 0xe4, 0xc4, 0xc4, 0xe4, 0xe4, 0xc4, 0xe9, 0xf1, 0xb9, 0xd5, 0xda, 0xde, 0xde, 0xbe, 0xb9, 0x99, 0x95, 0x95, 0x95, 0xcd, 0xe5, 0xe9, 0xad, 0x6d, 0x8d, 0xb1, 0xb1, 0xb1, 0xad, 0x69, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x4c, 0x4c, 0x71, 0x91, 0x91, 0x8d, 0x6d, 0x6d, 0x6d, 0x6d, 0x4d, 0x69, 0x69, 0x69, 0x6d, 0x49, 0x44, 0x44, 0x49, 0x6d, 0x91, 0x91, 0x4d, 0x24, 0x44, 0x44, 0x48, 0x49, 0x49, 0x69, 0x69, 0x49, 0x48, 0x48, 0x6d, 0x6d, 0x6d, 0x6d, 0x8d, 0xad, 0xc4, 0xc4, 0xc4, 0xc4, 0xe5, 0xe5, 0xe9, 0xe5, 0xe5, 0xe4, 0xc4, 0xc4, 0xc4, 0xc4, 0xe9, 0xe9, 0xde, 0xe5, 0xed, 0xf6, 0xde, 0xbe, 0xb9, 0xb9, 0x95, 0x95, 0xf1, 0xe9, 0xe9, 0xe5, 0xed, 0x95, 0x91, 0x91, 0xb1, 0xb1, 0x8d, 0x48, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x4c, 0x4d, 0x4d, 0x71, 0x91, 0x6d, 0x6d, 0x69, 0x6d, 0x71, 0x71, 0x6d, 0x6d, 0x6d, 0x69, 0x48, 0x48, 0x4d, 0x71, 0x71, 0x95, 0x71, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x44, 0x49, 0x69, 0x49, 0x48, 0x69, 0x8d, 0xb1, 0x91, 0x8d, 0x8d, 0x8d, 0xc4, 0xc4, 0xc4, 0xc4, 0xe5, 0xe5, 0xe9, 0xe4, 0xed, 0xf6, 0xed, 0xc4, 0xc4, 0xc4, 0xe9, 0xe5, 0xf6, 0xe9, 0xe9, 0xed, 0xde, 0xbe, 0xb9, 0x99, 0xd5, 0xe9, 0xe4, 0xc4, 0xe4, 0xe4, 0xe9, 0xb5, 0xb6, 0xb1, 0xb1, 0xb1, 0x8d, 0x44, 0x20, 0x20, 0x20, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x4d, 0x4d, 0x6d, 0x70, 0x71, 0x6d, 0x6d, 0x6d, 0x6d, 0x71, 0x70, 0x6d, 0x6d, 0x6d, 0x49, 0x49, 0x6d, 0x71, 0x71, 0x71, 0x71, 0x4d, 0x24, 0x24, 0x24, 0x24, 0x69, 0x6d, 0x6d, 0x69, 0x69, 0x69, 0x69, 0x6d, 0xb1, 0xb2, 0xb1, 0x8d, 0x8d, 0x8d, 0xc4, 0xe5, 0xe5, 0xc4, 0xc4, 0xe5, 0xe5, 0xc4, 0xc4, 0xed, 0xf1, 0xe9, 0xc4, 0xc4, 0xe9, 0xe5, 0xed, 0xe9, 0xe4, 0xe4, 0xed, 0xb9, 0x99, 0xd5, 0xe5, 0xe5, 0xc4, 0xc4, 0xc4, 0xe5, 0xe9, 0x95, 0xd6, 0xd6, 0xb1, 0x8d, 0x69, 0x24, 0x20, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x4d, 0x4d, 0x71, 0x71, 0x71, 0x4d, 0x4d, 0x4d, 0x48, 0x48, 0x4c, 0x4c, 0x4c, 0x4d, 0x6d, 0x6d, 0x71, 0x71, 0x71, 0x71, 0x71, 0x48, 0x24, 0x49, 0x6d, 0x8d, 0xb1, 0xb1, 0x91, 0x6d, 0x6d, 0x8d, 0x8d, 0x8d, 0xed, 0xed, 0x8d, 0x6d, 0x8d, 0x8d, 0xa9, 0xe5, 0xe4, 0xe9, 0xed, 0xe4, 0xe5, 0xc4, 0xc4, 0xc4, 0xe9, 0xed, 0xe5, 0xc4, 0xe9, 0xe9, 0xe5, 0xe4, 0xe4, 0xe4, 0xe5, 0xb5, 0xb9, 0xe5, 0xe5, 0xe4, 0xc4, 0xc4, 0xc4, 0xe5, 0xed, 0x95, 0xb6, 0xb1, 0x8d, 0x69, 0x64, 0x44, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x4c, 0x4d, 0x71, 0x71, 0x71, 0x4c, 0x4c, 0x28, 0x24, 0x24, 0x28, 0x48, 0x48, 0x48, 0x6d, 0x6d, 0x71, 0x91, 0x71, 0x71, 0x6d, 0x48, 0x24, 0x69, 0x8d, 0x8d, 0x91, 0x91, 0x8d, 0x6d, 0x6d, 0x8d, 0x8d, 0xe9, 0xe4, 0xe4, 0xe5, 0xc9, 0x8d, 0xad, 0xad, 0xe4, 0xe4, 0xc4, 0xe9, 0xed, 0xe5, 0xc4, 0xc4, 0xc4, 0xc4, 0xe9, 0xe9, 0xc4, 0xe9, 0xe9, 0xe5, 0xe4, 0xc4, 0xc4, 0xe5, 0xd1, 0xed, 0xe5, 0xe4, 0xc4, 0xc4, 0xc4, 0xc4, 0xe9, 0xed, 0x71, 0x91, 0x8d, 0xc9, 0xe9, 0xe9, 0xe5, 0x84, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x4d, 0x4d, 0x71, 0x71, 0x4d, 0x48, 0x28, 0x24, 0x24, 0x24, 0x44, 0x48, 0x48, 0x48, 0x6d, 0x6d, 0x71, 0x71, 0x6d, 0x4d, 0x48, 0x24, 0x24, 0x24, 0x48, 0x48, 0x49, 0x69, 0x69, 0x6d, 0x8d, 0x8d, 0x8d, 0xc4, 0xe5, 0xe4, 0xc4, 0xe4, 0xe9, 0x8d, 0x8d, 0xc5, 0xc4, 0xc4, 0xc4, 0xe5, 0xed, 0xc4, 0xc4, 0xc4, 0xa0, 0xe4, 0xe9, 0xe4, 0xe5, 0xe5, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xcd, 0xe5, 0xe4, 0xe4, 0xc4, 0xc4, 0xc4, 0xe5, 0xe9, 0xe9, 0x91, 0x6d, 0xe9, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0x20, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x4d, 0x4d, 0x71, 0x71, 0x48, 0x24, 0x24, 0x24, 0x24, 0x24, 0x44, 0x48, 0x48, 0x49, 0x69, 0x6d, 0x8d, 0x8d, 0x8d, 0x6d, 0x69, 0x69, 0x48, 0x48, 0x44, 0x48, 0x48, 0x69, 0x6d, 0x8d, 0x8d, 0x8d, 0x8d, 0xc4, 0xe5, 0xe4, 0xe4, 0xc4, 0xc4, 0xe9, 0x89, 0xa9, 0xc4, 0xc4, 0xc4, 0xc4, 0xe5, 0xe5, 0xc4, 0xc4, 0xa0, 0xa4, 0xe9, 0xe5, 0xe5, 0xe5, 0xee, 0xf2, 0xc4, 0xc4, 0xa0, 0xe5, 0xe5, 0xe4, 0xe4, 0xc4, 0xc4, 0xc4, 0xe9, 0xe9, 0xe9, 0xad, 0xe9, 0xe5, 0xe5, 0xe5, 0xe4, 0xe4, 0xe5, 0x44, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x71, 0x71, 0x71, 0x6d, 0x48, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x44, 0x44, 0x44, 0x49, 0x89, 0xad, 0xb1, 0xd1, 0xd1, 0xd1, 0xd1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0xb1, 0x8d, 0xcd, 0xe9, 0xc4, 0xc4, 0xe4, 0xc4, 0xc4, 0xe9, 0xd1, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xe9, 0xc4, 0xa4, 0xa0, 0xa0, 0xe4, 0xe5, 0xe4, 0xe5, 0xc4, 0xe5, 0xed, 0xc4, 0xa0, 0xc4, 0xe4, 0xe4, 0xc4, 0xc4, 0xc4, 0xe5, 0xe9, 0xe9, 0xe9, 0xe9, 0xe5, 0xe5, 0xe5, 0xe4, 0xe4, 0xe4, 0xe5, 0x64, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x71, 0x71, 0x71, 0x71, 0x48, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x44, 0x44, 0x69, 0x8d, 0xb1, 0xb1, 0xd1, 0xd1, 0xd1, 0xd1, 0xd6, 0xd6, 0xd6, 0xd6, 0xd6, 0xf6, 0xf6, 0xd6, 0xf1, 0xe5, 0xc4, 0xc4, 0xe5, 0xc4, 0xc4, 0xc4, 0xe9, 0xcd, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xe5, 0xa0, 0xa4, 0xa4, 0xa4, 0xe5, 0xe4, 0xc4, 0xc4, 0xa4, 0xc4, 0xe9, 0xa0, 0xc4, 0xe4, 0xe4, 0xc4, 0xc4, 0xc4, 0xe9, 0xe9, 0xe5, 0xe9, 0xe4, 0xe4, 0xe4, 0xe4, 0xe5, 0xe9, 0xe4, 0xe5, 0xe9, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x71, 0x71, 0x71, 0x71, 0x49, 0x44, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x44, 0x44, 0x44, 0x69, 0x69, 0x69, 0x69, 0x8d, 0x8d, 0x8d, 0x8d, 0xad, 0xad, 0xb1, 0xed, 0xed, 0xf2, 0xf6, 0xf6, 0xf6, 0xe5, 0xc4, 0xc4, 0xe5, 0xe5, 0xc4, 0xc4, 0xc4, 0xf2, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xa4, 0xa0, 0xa4, 0xc4, 0xe4, 0xc4, 0xa0, 0xa0, 0xa4, 0xc4, 0xc5, 0xc4, 0xc4, 0xe4, 0xc4, 0xa4, 0xe5, 0xe9, 0xe9, 0xe9, 0xe5, 0xe4, 0xe4, 0xe9, 0xf6, 0xfa, 0xff, 0xf6, 0xe5, 0xe9, 0x44, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x6d, 0x71, 0x71, 0x71, 0x69, 0x49, 0x44, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x44, 0x44, 0x44, 0x48, 0x69, 0x68, 0x48, 0x44, 0x44, 0x44, 0x48, 0x48, 0x69, 0x69, 0xa9, 0xe5, 0xe9, 0xe9, 0xe9, 0xe9, 0xf1, 0xe5, 0xc4, 0xc4, 0xc4, 0xe5, 0xe5, 0xc4, 0xa4, 0xe5, 0xed, 0xc0, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xa4, 0xa0, 0xa0, 0xc4, 0xc4, 0xc4, 0xa0, 0xa0, 0xa0, 0xa4, 0xe5, 0xc4, 0xc4, 0xc4, 0xc4, 0xa4, 0xe9, 0xe9, 0xe5, 0xe9, 0xc4, 0xc4, 0xf2, 0xf2, 0xed, 0xe9, 0xe9, 0xe5, 0xed, 0xe9, 0x44, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x70, 0x71, 0x71, 0x6d, 0x69, 0x49, 0x48, 0x44, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x44, 0x44, 0x48, 0x49, 0x68, 0x68, 0x68, 0x48, 0x89, 0xa9, 0x89, 0x84, 0x64, 0x48, 0xe9, 0xe9, 0xed, 0xed, 0xed, 0xe9, 0xe5, 0xc4, 0xc4, 0xc4, 0xc4, 0xe5, 0xe5, 0xc4, 0xa4, 0xe9, 0xc5, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xa4, 0xa0, 0xa0, 0xa4, 0xc4, 0xc4, 0xa0, 0xa0, 0xa0, 0xa4, 0xe5, 0xc4, 0xc4, 0xc4, 0xa0, 0xe5, 0xe9, 0xe5, 0xe9, 0xe5, 0xc4, 0xe9, 0xe5, 0xe4, 0xe4, 0xe4, 0xe5, 0xee, 0xe9, 0xe5, 0x24, 0x24, 0x44, 0xad, 0xd2, 0xa9, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x71, 0x71, 0x71, 0x6d, 0x69, 0x69, 0x48, 0x44, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x44, 0x44, 0x48, 0x48, 0x69, 0x69, 0xe5, 0xe5, 0xe5, 0xe9, 0xe9, 0xe9, 0xc5, 0xe9, 0xe4, 0xe4, 0xe5, 0xe9, 0xed, 0xe5, 0xe5, 0xc4, 0xc4, 0xe5, 0xe5, 0xe5, 0xa0, 0xe9, 0xed, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xa0, 0xa4, 0xa0, 0xc4, 0xc4, 0xa0, 0xa0, 0xa0, 0xa4, 0xc4, 0xc4, 0xc4, 0xc4, 0xa0, 0xe9, 0xe9, 0xe9, 0xe9, 0xc4, 0xe4, 0xc4, 0xe4, 0xc4, 0xc4, 0xe4, 0xe5, 0xe4, 0xe5, 0x84, 0x64, 0xe9, 0xe9, 0xe9, 0xe5, 0xe5, 0x84, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x71, 0x71, 0x91, 0x6d, 0x69, 0x69, 0x48, 0x48, 0x44, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x44, 0x44, 0x68, 0xe5, 0xc4, 0xc4, 0xe4, 0xe5, 0xe9, 0xe9, 0xe9, 0xc4, 0xc4, 0xe4, 0xc4, 0xc4, 0xc4, 0xe9, 0xe5, 0xc4, 0xc4, 0xe5, 0xe9, 0xe9, 0xe9, 0xc0, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xa0, 0xa0, 0xa0, 0xc4, 0xc4, 0xa4, 0xa0, 0xa0, 0xa4, 0xc4, 0xc4, 0xc4, 0xa0, 0xc4, 0xe9, 0xe5, 0xe9, 0xe5, 0xe4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xa0, 0xe4, 0xa4, 0xa4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x71, 0x91, 0x91, 0x8d, 0x69, 0x49, 0x49, 0x48, 0x44, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0xc9, 0xe5, 0xe4, 0xe5, 0xe5, 0xe4, 0xe5, 0xe5, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xe5, 0xe9, 0xe9, 0xc4, 0xc4, 0xe5, 0xe9, 0xc4, 0xc4, 0xc0, 0xe5, 0xc4, 0xc4, 0xc4, 0xc4, 0xa4, 0xa0, 0xa0, 0xa4, 0xc4, 0xc4, 0xa0, 0xa0, 0xa4, 0xc4, 0xc4, 0xc4, 0xa0, 0xe5, 0xe9, 0xe9, 0xe5, 0xe4, 0xa4, 0xa0, 0xc4, 0xc4, 0xc4, 0xa4, 0xa0, 0xc4, 0xe4, 0xa4, 0xa4, 0xc4, 0xc4, 0xc4, 0xa0, 0xc4, 0x44, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x91, 0x91, 0x91, 0x8d, 0x69, 0x69, 0x49, 0x49, 0x48, 0x44, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x44, 0x44, 0x44, 0x64, 0xed, 0xe9, 0xe9, 0xe5, 0xe5, 0xe5, 0xe5, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xa0, 0xe9, 0xe9, 0xe9, 0xc4, 0xc4, 0xe5, 0xc4, 0xc4, 0xc4, 0xe9, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xa4, 0xa0, 0xa4, 0xc4, 0xa4, 0xa0, 0xa0, 0xa4, 0xc4, 0xc4, 0xa0, 0xa0, 0xe9, 0xe5, 0xe9, 0xc4, 0xa0, 0xa0, 0xa0, 0xa0, 0xc4, 0xa4, 0x80, 0xc4, 0xe5, 0xa0, 0xa4, 0xc4, 0xe5, 0xe5, 0xe9, 0xe9, 0x84, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0xb1, 0x91, 0x91, 0x8d, 0x69, 0x69, 0x49, 0x49, 0x48, 0x48, 0x44, 0x24, 0x24, 0x44, 0x44, 0x24, 0x24, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x89, 0xee, 0xee, 0xee, 0xe9, 0xe9, 0xe9, 0xe9, 0xc4, 0xc4, 0xc4, 0xc4, 0xa4, 0xa0, 0xa0, 0xe9, 0xe5, 0xe9, 0xc4, 0xc4, 0xe4, 0xa4, 0xa4, 0xc4, 0xe9, 0xc4, 0xc4, 0xc4, 0xc4, 0xa4, 0xa0, 0xa4, 0xc4, 0xa4, 0xa0, 0xa0, 0xa4, 0xc4, 0xa4, 0xa0, 0xa4, 0xe5, 0xe9, 0xe5, 0xc4, 0xa4, 0xa0, 0xa0, 0xa4, 0xa0, 0x80, 0xc4, 0xe5, 0xa0, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xe4, 0xe4, 0xe5, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0xb2, 0xb1, 0x91, 0x8d, 0x69, 0x69, 0x49, 0x49, 0x48, 0x48, 0x44, 0x44, 0x24, 0x44, 0x44, 0x44, 0x24, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x89, 0xed, 0xed, 0xed, 0xed, 0xed, 0xe9, 0xe9, 0xe9, 0xc4, 0xc4, 0xc4, 0xa0, 0xa0, 0xa0, 0xe5, 0xe5, 0xe9, 0xc5, 0xc4, 0xc4, 0xa4, 0xa4, 0xc4, 0xe5, 0xc4, 0xc4, 0xc4, 0xa4, 0x80, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xc9, 0xa0, 0xa0, 0xc4, 0xc4, 0xe9, 0xe4, 0xc4, 0xc4, 0x80, 0xa0, 0x80, 0x80, 0xc4, 0xe5, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xe4, 0xe4, 0xe4, 0xc4, 0xc4, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0xd6, 0xb1, 0x91, 0x8d, 0x69, 0x69, 0x49, 0x49, 0x49, 0x48, 0x48, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x64, 0xed, 0xee, 0xe9, 0xe9, 0xe9, 0xe9, 0xed, 0xed, 0xe9, 0xe4, 0xc4, 0xa4, 0xa0, 0xa0, 0xe5, 0xe5, 0xe9, 0xe5, 0xc4, 0xc4, 0x84, 0xa4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xa4, 0xa4, 0x84, 0xa4, 0xa4, 0xa4, 0xc4, 0xa0, 0xa4, 0xa4, 0xc5, 0xe4, 0xe4, 0xc4, 0xc4, 0x80, 0x80, 0x80, 0xc4, 0xe5, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xe4, 0xc4, 0xc4, 0xc4, 0xe5, 0xc5, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0xd6, 0xb1, 0x91, 0x8d, 0x69, 0x69, 0x69, 0x49, 0x49, 0x48, 0x48, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x48, 0xc9, 0xed, 0xe9, 0xe9, 0xe5, 0xe5, 0xe5, 0xc4, 0xc4, 0xe9, 0xe9, 0xe9, 0xe5, 0xc4, 0xa4, 0xa0, 0xa0, 0xc4, 0xe5, 0xe9, 0xe9, 0xc4, 0xa4, 0xa4, 0x84, 0xe4, 0xc5, 0xc4, 0xe9, 0xe5, 0xc5, 0xc4, 0xa4, 0xc4, 0xa4, 0xa4, 0xa4, 0xa4, 0x80, 0x80, 0xe4, 0xc4, 0xc4, 0xc4, 0xc4, 0x80, 0x80, 0xc4, 0xe5, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xe9, 0xe9, 0xe9, 0x64, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0xb6, 0xb2, 0x91, 0x8d, 0x69, 0x69, 0x69, 0x49, 0x49, 0x48, 0x48, 0x48, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x48, 0x48, 0x48, 0x48, 0x68, 0xe4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xe9, 0xe9, 0xe9, 0xc4, 0xc4, 0xa4, 0xa0, 0xa0, 0xa4, 0xe5, 0xe9, 0xc4, 0xa0, 0xa4, 0xc4, 0xc4, 0xe5, 0xc4, 0xf2, 0xe9, 0xed, 0xc5, 0xc9, 0xc5, 0xc4, 0xc5, 0xc4, 0xc4, 0xc4, 0x84, 0xc4, 0xc4, 0xc4, 0xc4, 0xa4, 0x80, 0xc4, 0xe4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xa4, 0xa0, 0xc4, 0xe5, 0xe9, 0xe9, 0xa4, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x91, 0xb1, 0x91, 0x8d, 0x6d, 0x69, 0x69, 0x69, 0x49, 0x49, 0x48, 0x48, 0x44, 0x44, 0x48, 0x48, 0x44, 0x44, 0x44, 0x48, 0x48, 0x48, 0x48, 0x48, 0xa4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xa0, 0xc4, 0xc4, 0xc4, 0xe5, 0xe9, 0xe9, 0xc5, 0xa0, 0xc4, 0xa4, 0xc4, 0x80, 0xc4, 0xc4, 0xc9, 0xc5, 0xe5, 0xc9, 0xc5, 0xe9, 0xc5, 0xed, 0x84, 0xa5, 0xc5, 0xed, 0xa4, 0xa5, 0xc4, 0xc4, 0xa4, 0xa4, 0xa4, 0xc4, 0xc4, 0xc4, 0x80, 0xc4, 0xe4, 0xc4, 0xc4, 0xc4, 0xc4, 0xa4, 0xa0, 0xa4, 0xc4, 0xe9, 0xed, 0xe9, 0xe4, 0x44, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x8d, 0x91, 0x91, 0x91, 0x6d, 0x69, 0x69, 0x69, 0x69, 0x49, 0x49, 0x49, 0x48, 0x44, 0x44, 0x48, 0x48, 0x44, 0x89, 0xa9, 0xc9, 0xe9, 0xe9, 0xe5, 0xe5, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xa4, 0xa0, 0xa0, 0xa0, 0xa4, 0xc4, 0xe5, 0xe9, 0xe9, 0xc4, 0xa4, 0xc0, 0xc9, 0x80, 0xa4, 0xe9, 0xe9, 0xc5, 0xc4, 0x84, 0xa4, 0xa4, 0xa4, 0xa4, 0x84, 0x84, 0x44, 0x64, 0xa4, 0x84, 0xc9, 0xe5, 0xc4, 0xc4, 0xa4, 0xa4, 0xa4, 0xe5, 0xe4, 0xc4, 0xc4, 0xc4, 0xa4, 0xa0, 0xa0, 0xa4, 0xc5, 0xed, 0xe9, 0xe9, 0xe9, 0x64, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x8d, 0x91, 0x91, 0x91, 0x8d, 0x69, 0x69, 0x69, 0x69, 0x69, 0x49, 0x49, 0x49, 0x48, 0x44, 0x49, 0xc9, 0xe9, 0xe9, 0xe5, 0xc4, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xe5, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa4, 0xe5, 0xed, 0xe9, 0xa4, 0xc4, 0xc5, 0xe5, 0xe9, 0xed, 0xc4, 0xa4, 0x64, 0x84, 0x44, 0x64, 0x64, 0x64, 0x88, 0x89, 0x64, 0x84, 0xa4, 0xa4, 0xc5, 0xe5, 0xe9, 0x84, 0xa4, 0xe4, 0xe4, 0xe4, 0xc4, 0xc4, 0xa0, 0xa4, 0xc4, 0xc4, 0xe9, 0xed, 0xe9, 0xe9, 0xe5, 0x64, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x8d, 0xb1, 0xb1, 0xb1, 0x91, 0x69, 0x69, 0x69, 0x69, 0x69, 0x49, 0x49, 0x48, 0x49, 0x48, 0x89, 0xe9, 0xe5, 0xc0, 0xc5, 0xe5, 0xc4, 0xe5, 0xe9, 0xe9, 0xe5, 0xe5, 0xe4, 0xc4, 0xc4, 0xc4, 0xa0, 0xa0, 0xa0, 0xa4, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa4, 0xe5, 0xe9, 0xe9, 0xed, 0xe9, 0xe9, 0xc5, 0x60, 0xc4, 0x44, 0x44, 0x89, 0xad, 0xa9, 0x89, 0xad, 0xcd, 0xad, 0x89, 0xa4, 0xc9, 0xc9, 0xe5, 0xf2, 0xa4, 0xa4, 0xe5, 0xe4, 0xc4, 0xa4, 0xa4, 0xc4, 0xc4, 0xe5, 0xe9, 0xe9, 0xe9, 0xe9, 0xc4, 0x20, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x8d, 0xb1, 0xb2, 0xb1, 0x8d, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x49, 0x49, 0x48, 0x48, 0xa9, 0xe9, 0xe5, 0xc4, 0xe5, 0xe4, 0xc4, 0xc4, 0xe5, 0xe5, 0xe9, 0xe9, 0xe9, 0xe9, 0xe9, 0xe9, 0xe9, 0xe5, 0xc4, 0xa4, 0xa0, 0xa0, 0xa0, 0xa0, 0xa4, 0xa4, 0xa4, 0xa4, 0xe5, 0xe9, 0xe9, 0xe9, 0xc4, 0xe5, 0x64, 0x64, 0x89, 0x64, 0x85, 0xa9, 0x89, 0xa9, 0xa9, 0xa9, 0xa9, 0x64, 0x84, 0x84, 0xe9, 0xee, 0xee, 0xe5, 0xe4, 0xe5, 0xe5, 0xe4, 0xe5, 0xe9, 0xe9, 0xe5, 0xe4, 0xe4, 0xe4, 0xe5, 0xe9, 0xc9, 0x20, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0xb1, 0xd6, 0xd6, 0xb1, 0x8d, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x49, 0x49, 0x49, 0x49, 0x44, 0xc9, 0xed, 0xe9, 0xe9, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xe5, 0xc4, 0xc4, 0xc4, 0xc4, 0xa0, 0x80, 0x80, 0xa0, 0xa4, 0xc4, 0xa4, 0xa4, 0xe9, 0xf2, 0xe9, 0xe5, 0xc4, 0x85, 0xad, 0x89, 0x89, 0x64, 0x65, 0x65, 0x64, 0x89, 0x84, 0xa9, 0xcd, 0x89, 0x64, 0xee, 0xe5, 0xe5, 0xf2, 0xed, 0xe5, 0xe5, 0xe5, 0xe9, 0xe9, 0xe4, 0xc4, 0xc4, 0xe4, 0xe4, 0xe4, 0xc4, 0xc4, 0xe5, 0xa5, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0xd6, 0xfa, 0xd6, 0xb1, 0x8d, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x49, 0x49, 0x49, 0x49, 0x48, 0x44, 0xc9, 0xed, 0xed, 0xe5, 0xe5, 0xe9, 0xe9, 0xe9, 0xe9, 0xe9, 0xe5, 0xc5, 0xc4, 0xa4, 0x84, 0x84, 0x80, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa4, 0xa4, 0xc4, 0xed, 0xed, 0xe9, 0xe9, 0xa4, 0x88, 0xa9, 0xa9, 0x84, 0x65, 0x64, 0x44, 0x44, 0x64, 0x64, 0x85, 0xa9, 0xa9, 0x84, 0x84, 0xc5, 0xf2, 0xe9, 0xed, 0xed, 0xee, 0xe9, 0xe4, 0xe5, 0xe5, 0xe4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xe4, 0x64, 0x64, 0x84, 0xa5, 0xc9, 0xc9, 0xa5, 0x64, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0xd6, 0xd6, 0xb1, 0xb1, 0x8d, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x44, 0xc9, 0xe9, 0xe9, 0xe9, 0xe9, 0xe9, 0xe9, 0xe9, 0xe9, 0xe9, 0xe5, 0xc4, 0xc4, 0xa4, 0xa4, 0x84, 0x84, 0x84, 0x84, 0x84, 0xa4, 0x80, 0xc9, 0xe9, 0xe9, 0xed, 0xe9, 0xc9, 0xe5, 0xc9, 0xcd, 0xa9, 0x84, 0x44, 0x44, 0x44, 0x20, 0x24, 0x64, 0x85, 0x85, 0xa9, 0xcd, 0x88, 0xe9, 0xf2, 0xc5, 0xe5, 0xc4, 0xee, 0xe5, 0xe5, 0xe5, 0xe4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xe4, 0xe9, 0xe9, 0xe9, 0xe9, 0xe9, 0x64, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0xb1, 0xb1, 0x91, 0x91, 0x8d, 0x6d, 0x69, 0x69, 0x69, 0x69, 0x69, 0x49, 0x49, 0x49, 0x48, 0x48, 0x49, 0x49, 0xa9, 0xe9, 0xe9, 0xe9, 0xe9, 0xed, 0xed, 0xe9, 0xe9, 0xe5, 0xa4, 0xa0, 0xa0, 0x80, 0x80, 0x80, 0xa4, 0xa0, 0xa0, 0xa4, 0xa4, 0xa4, 0xa4, 0xc4, 0xe9, 0xee, 0xed, 0xc5, 0xc9, 0xad, 0xcd, 0xd1, 0x89, 0x64, 0x44, 0x20, 0x24, 0x20, 0x85, 0x84, 0xa5, 0xa9, 0xcd, 0xa9, 0xed, 0xe9, 0xf2, 0xe9, 0xe5, 0xe5, 0xed, 0xe4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xa4, 0x80, 0x80, 0x80, 0x84, 0xa4, 0xa0, 0xa0, 0xa4, 0xc4, 0xc4, 0xe9, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x91, 0x8d, 0x8d, 0x8d, 0x8d, 0x6d, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x49, 0x48, 0x48, 0x49, 0x49, 0x49, 0x48, 0x89, 0xe9, 0xe5, 0xe5, 0xc4, 0xc5, 0xe9, 0xe9, 0xe9, 0xe5, 0xc4, 0xc4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa5, 0xc5, 0xa4, 0xa4, 0xc9, 0xa4, 0xa4, 0xe9, 0xed, 0xed, 0xed, 0xcd, 0xcd, 0xcd, 0x85, 0x85, 0x64, 0x24, 0x20, 0x24, 0x64, 0x84, 0xa9, 0xcd, 0xcd, 0xcd, 0xf2, 0xee, 0xed, 0xf2, 0xe9, 0xe4, 0xe9, 0xe9, 0xe4, 0xe4, 0xc4, 0xc4, 0xc4, 0xe4, 0xe4, 0xc4, 0xc4, 0xa4, 0xa4, 0xc4, 0xa4, 0x80, 0x80, 0x80, 0xa0, 0xa0, 0xa0, 0xc4, 0xe9, 0xe9, 0x64, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x8d, 0x8d, 0x69, 0x69, 0x8d, 0x8d, 0x69, 0x69, 0x69, 0x69, 0x69, 0x69, 0x49, 0x48, 0x48, 0x49, 0x49, 0x49, 0x44, 0x44, 0x69, 0x84, 0xa4, 0xa4, 0xa4, 0xa4, 0xa0, 0xa0, 0xa4, 0xa4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xe5, 0xc4, 0xe5, 0xe9, 0xe5, 0xc9, 0xe9, 0xed, 0xed, 0xc4, 0xed, 0xcd, 0xf1, 0xc9, 0x85, 0x85, 0x44, 0x44, 0x44, 0x64, 0x84, 0xa9, 0xa9, 0xa9, 0xcd, 0xcd, 0xe9, 0xf2, 0xe9, 0xe9, 0xe9, 0xe5, 0xe5, 0xed, 0xe5, 0xe4, 0xc4, 0xc4, 0xa4, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xc4, 0xe5, 0xed, 0xa4, 0x80, 0x80, 0xc4, 0xe9, 0xe9, 0xe9, 0xe9, 0xa5, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x69, 0x69, 0x49, 0x69, 0x8d, 0x8d, 0x8d, 0x69, 0x69, 0x69, 0x69, 0x69, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0xa9, 0xe9, 0xc4, 0xa4, 0xa0, 0xa4, 0xa4, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa0, 0xa4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xe4, 0xc4, 0xed, 0xed, 0xed, 0xe5, 0xe9, 0xcd, 0xcd, 0xa9, 0xa5, 0x85, 0x64, 0x65, 0x85, 0x85, 0xa9, 0xa9, 0xc9, 0xa9, 0xcd, 0xf2, 0xf2, 0xe9, 0xed, 0xed, 0xe5, 0xed, 0xe9, 0xe9, 0xe5, 0xe4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xe4, 0xe9, 0xe9, 0xa4, 0xa0, 0xa4, 0xc4, 0xc5, 0xa4, 0x84, 0x44, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x45, 0x49, 0x49, 0x49, 0x8d, 0x8d, 0x6d, 0x69, 0x69, 0x69, 0x69, 0x69, 0x49, 0x48, 0x49, 0x49, 0x49, 0xc9, 0xc4, 0xa0, 0x80, 0x80, 0x80, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x80, 0x80, 0x84, 0x80, 0x84, 0xa0, 0xa4, 0xa4, 0xa4, 0xc4, 0xc5, 0xe5, 0xc5, 0xed, 0xed, 0xe9, 0xe5, 0xa9, 0xd1, 0xcd, 0xcd, 0xa9, 0xa5, 0x84, 0x85, 0x85, 0x85, 0x85, 0xa9, 0xcd, 0xcd, 0xcd, 0xf1, 0xc9, 0xe9, 0xe5, 0xe9, 0xee, 0xf2, 0xed, 0xe9, 0xe9, 0xe5, 0xe4, 0xe4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xe5, 0xc5, 0x64, 0x44, 0x44, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x24, 0x24, 0x44, 0x45, 0x69, 0x8d, 0x8d, 0x69, 0x69, 0x69, 0x69, 0x49, 0x49, 0x48, 0x49, 0x49, 0x49, 0x64, 0xa0, 0xa0, 0xa0, 0x80, 0xa0, 0xa0, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0xa0, 0xa4, 0xa4, 0xc4, 0xc4, 0xc4, 0xe4, 0xe4, 0xe5, 0xf2, 0xe9, 0xed, 0xed, 0xed, 0xed, 0xed, 0xc9, 0xa9, 0xa9, 0x85, 0xa9, 0xa5, 0xa9, 0xcd, 0xc9, 0xad, 0xcd, 0xcd, 0xed, 0xf2, 0xee, 0xed, 0xed, 0xc5, 0xed, 0xf2, 0xed, 0xed, 0xee, 0xe9, 0xe5, 0xe5, 0xe5, 0xe4, 0xc4, 0xc4, 0xc5, 0xe5, 0xe4, 0x64, 0x44, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x24, 0x24, 0x24, 0x49, 0x6d, 0x8d, 0x8d, 0x6d, 0x69, 0x69, 0x69, 0x69, 0x69, 0x49, 0x49, 0x49, 0x49, 0x49, 0x64, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa4, 0xa0, 0xa4, 0xa4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xe4, 0xc4, 0xc4, 0xe9, 0xee, 0xe9, 0xf2, 0xe9, 0xf2, 0xe9, 0xcd, 0xc9, 0xc9, 0xc9, 0xc9, 0xcd, 0xa9, 0xc9, 0xc9, 0xd1, 0xcd, 0xf2, 0xf6, 0xf6, 0xed, 0xe5, 0xe9, 0xe5, 0xe9, 0xee, 0xee, 0xee, 0xee, 0xed, 0xed, 0xee, 0xee, 0xee, 0xee, 0xee, 0xed, 0xe9, 0xa9, 0x69, 0x69, 0x44, 0x44, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x24, 0x24, 0x49, 0x6d, 0x6d, 0x8d, 0x8d, 0x6d, 0x69, 0x69, 0x69, 0x69, 0x69, 0x49, 0x49, 0x49, 0x49, 0x49, 0x68, 0xe5, 0xa4, 0xa4, 0xa4, 0xe9, 0xe9, 0xe9, 0xe9, 0xe9, 0xe9, 0xe9, 0xe5, 0xe5, 0xe5, 0xc4, 0xc4, 0xc4, 0xa4, 0xa4, 0xa4, 0xed, 0xed, 0xed, 0xe9, 0xe5, 0xe9, 0xed, 0xee, 0xed, 0xed, 0xc9, 0xc9, 0xc9, 0xcd, 0xc9, 0xcd, 0xcd, 0xcd, 0xa9, 0xed, 0xee, 0xed, 0xee, 0xe9, 0xe9, 0xe5, 0xe9, 0xee, 0xee, 0xe9, 0xe9, 0xe9, 0xee, 0xee, 0xed, 0xed, 0xee, 0xe9, 0xe4, 0xc4, 0xa4, 0x69, 0x69, 0x69, 0x69, 0x44, 0x44, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x24, 0x49, 0x49, 0x6d, 0x6d, 0x6d, 0x8d, 0x6d, 0x69, 0x69, 0x69, 0x69, 0x49, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x85, 0xe5, 0xc4, 0xa0, 0xe9, 0xe9, 0xe9, 0xe9, 0xed, 0xee, 0xed, 0xe9, 0xe9, 0xe9, 0xe9, 0xe9, 0xe5, 0xe9, 0xe5, 0xe9, 0xe9, 0xed, 0xed, 0xf2, 0xed, 0xee, 0xe9, 0xed, 0xf2, 0xe9, 0xe9, 0xe9, 0xc9, 0xcd, 0xa9, 0x89, 0xcd, 0xcd, 0xed, 0xed, 0xf2, 0xee, 0xe9, 0xe9, 0xed, 0xe5, 0xed, 0xf2, 0xed, 0xee, 0xed, 0xe5, 0xe5, 0xe9, 0xe9, 0xee, 0xee, 0xee, 0xed, 0xe9, 0xe9, 0xed, 0x69, 0x69, 0x69, 0x44, 0x44, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x24, 0x24, 0x49, 0x24, 0x24, 0x69, 0x8d, 0x6d, 0x69, 0x69, 0x69, 0x69, 0x69, 0x49, 0x49, 0x49, 0x49, 0x48, 0x49, 0x45, 0x44, 0x84, 0x84, 0xa4, 0xe9, 0xe5, 0xc4, 0xc4, 0xe4, 0xe5, 0xe5, 0xe9, 0xe9, 0xe9, 0xe9, 0xe9, 0xe5, 0xe9, 0xed, 0xed, 0xee, 0xee, 0xed, 0xe9, 0xe9, 0xee, 0xe9, 0xed, 0xed, 0xee, 0xee, 0xed, 0xed, 0xe9, 0xcd, 0xed, 0xf2, 0xf2, 0xf2, 0xf2, 0xe5, 0xee, 0xe5, 0xe9, 0xe9, 0xed, 0xf2, 0xee, 0xee, 0xee, 0xee, 0xe9, 0xe5, 0xe5, 0xe5, 0xe9, 0xee, 0xf2, 0xed, 0xc9, 0x89, 0x69, 0x69, 0x69, 0x44, 0x44, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x24, 0x24, 0x24, 0x24, 0x24, 0x69, 0x8d, 0x8d, 0x8d, 0x69, 0x69, 0x69, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x44, 0x44, 0x44, 0x44, 0x44, 0x48, 0x64, 0xe9, 0xed, 0xe9, 0xe9, 0xe5, 0xe5, 0xc4, 0xc4, 0xe9, 0xe5, 0xe9, 0xed, 0xed, 0xee, 0xee, 0xee, 0xe9, 0xe9, 0xe5, 0xe9, 0xe9, 0xee, 0xed, 0xed, 0xed, 0xe9, 0xee, 0xf2, 0xed, 0xf6, 0xf2, 0xf2, 0xf2, 0xee, 0xed, 0xe5, 0xe9, 0xe5, 0xed, 0xee, 0xf2, 0xee, 0xed, 0xee, 0xee, 0xee, 0xf2, 0xee, 0xe9, 0xe5, 0xe5, 0xe5, 0xe9, 0xed, 0x24, 0x44, 0x69, 0x69, 0x69, 0x49, 0x44, 0x44, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x24, 0x24, 0x24, 0x24, 0x24, 0x49, 0x6d, 0x8d, 0x6d, 0x6d, 0x69, 0x69, 0x49, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x44, 0x44, 0x48, 0x44, 0x48, 0x48, 0x44, 0xa9, 0xee, 0xf2, 0xee, 0xee, 0xee, 0xee, 0xe9, 0xe9, 0xed, 0xed, 0xee, 0xee, 0xed, 0xe5, 0xe5, 0xe5, 0xed, 0xe9, 0xf2, 0xe5, 0xee, 0xf2, 0xf2, 0xee, 0xf2, 0xed, 0xee, 0xf2, 0xf2, 0xee, 0xf2, 0xe9, 0xed, 0xe9, 0xe9, 0xee, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xe9, 0xee, 0xf2, 0xf2, 0xf2, 0xee, 0xee, 0xe9, 0xe5, 0xe4, 0xed, 0x24, 0x44, 0x69, 0x69, 0x69, 0x69, 0x49, 0x44, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x24, 0x24, 0x24, 0x24, 0x24, 0x48, 0x69, 0x6d, 0x6d, 0x6d, 0x69, 0x49, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x49, 0x48, 0x44, 0x44, 0x44, 0x48, 0x44, 0x84, 0xe4, 0xe5, 0xe9, 0xee, 0xed, 0xee, 0xed, 0xe9, 0xed, 0xee, 0xee, 0xed, 0xe5, 0xc4, 0xe4, 0xc4, 0xe5, 0xe9, 0xf1, 0xe9, 0xe5, 0xe9, 0xed, 0xee, 0xee, 0xed, 0xed, 0xed, 0xee, 0xf2, 0xee, 0xed, 0xe9, 0xe9, 0xe9, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xee, 0xf2, 0xf2, 0xed, 0xe9, 0xf2, 0xf2, 0xf2, 0xee, 0xee, 0xee, 0xee, 0xe9, 0x24, 0x24, 0x44, 0x49, 0x49, 0x49, 0x49, 0x44, 0x44, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x49, 0x6d, 0x6d, 0x6d, 0x69, 0x69, 0x49, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x44, 0x44, 0x44, 0x44, 0xa9, 0xe9, 0xe9, 0xed, 0xed, 0xee, 0xe9, 0xc4, 0x84, 0xc4, 0x84, 0xa4, 0xa4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xe5, 0xed, 0xed, 0xed, 0xe9, 0xf2, 0xf6, 0xe9, 0xe9, 0xe5, 0xe9, 0xf2, 0xf2, 0xe9, 0xe4, 0xe5, 0xe9, 0xed, 0xed, 0xf1, 0xf2, 0xf1, 0xf2, 0xf2, 0xed, 0xf2, 0xee, 0xf2, 0xee, 0xee, 0xe9, 0xf2, 0xf2, 0xf2, 0xee, 0xee, 0xee, 0xc9, 0x24, 0x24, 0x44, 0x49, 0x45, 0x44, 0x44, 0x44, 0x44, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x49, 0x6d, 0x6d, 0x6d, 0x69, 0x69, 0x69, 0x49, 0x49, 0x49, 0x49, 0x49, 0x48, 0x44, 0x44, 0x64, 0xe9, 0xed, 0xed, 0xed, 0xed, 0xe9, 0xc4, 0x84, 0x69, 0xad, 0xe9, 0xa5, 0x60, 0xc5, 0xc4, 0xc4, 0xc4, 0xa4, 0xe9, 0xe9, 0xed, 0xed, 0xe9, 0xf6, 0xf2, 0xe9, 0xe5, 0xe5, 0xc9, 0xe5, 0xe9, 0xc4, 0xe4, 0xe4, 0xe5, 0xf2, 0xf2, 0xf2, 0xf1, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xed, 0xf2, 0xf2, 0xf2, 0xee, 0xee, 0xe9, 0xf2, 0xf2, 0xee, 0xee, 0xee, 0xe9, 0x20, 0x24, 0x24, 0x44, 0x44, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x69, 0x6d, 0x6d, 0x69, 0x69, 0x69, 0x69, 0x49, 0x49, 0x48, 0x49, 0x49, 0x48, 0x44, 0xe9, 0xe9, 0xe9, 0xe9, 0xe5, 0xc4, 0x84, 0x44, 0x44, 0x6d, 0xcd, 0xf2, 0xc9, 0xe9, 0xc4, 0xc4, 0xa4, 0xc4, 0xe9, 0xe9, 0xed, 0xed, 0xe5, 0xed, 0xf2, 0xe9, 0xe4, 0xe9, 0xe5, 0xed, 0xe9, 0xe4, 0xed, 0xe5, 0xc4, 0xe9, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xee, 0xf2, 0xf2, 0xee, 0xed, 0xf2, 0xee, 0xf2, 0xee, 0xee, 0xe9, 0xee, 0xc9, 0xe9, 0x85, 0x24, 0x24, 0x24, 0x24, 0x44, 0x44, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x20, 0x20, 0x20, + 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x49, 0x69, 0x69, 0x69, 0x69, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x48, 0x44, 0x44, 0x64, 0x84, 0x84, 0x64, 0x44, 0x44, 0x44, 0x69, 0x91, 0xb1, 0xf1, 0xe9, 0xc4, 0xc4, 0xa4, 0xc5, 0xe9, 0xe9, 0xed, 0xed, 0xc4, 0xe9, 0xf2, 0xee, 0xe4, 0xe9, 0xee, 0xed, 0xee, 0xe4, 0xee, 0xe9, 0xed, 0xe9, 0xee, 0xee, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xee, 0xf2, 0xee, 0xf2, 0xee, 0xee, 0xf2, 0xee, 0xed, 0xe9, 0x00, 0x00, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x44, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x49, 0x6d, 0x6d, 0x69, 0x69, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x48, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x91, 0x95, 0x75, 0xed, 0xe4, 0xc4, 0xa4, 0xe9, 0xe9, 0xe9, 0xe9, 0xed, 0xc4, 0xe9, 0xf2, 0xf2, 0xe5, 0xe9, 0xed, 0xee, 0xed, 0xe5, 0xe9, 0xf6, 0xe9, 0xf2, 0xed, 0xf2, 0xed, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xf2, 0xee, 0xf2, 0xee, 0xf2, 0xed, 0xe9, 0xee, 0xee, 0xf2, 0xf2, 0xa5, 0x24, 0x20, 0x20, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x49, 0x69, 0x6d, 0x69, 0x69, 0x69, 0x49, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x91, 0x75, 0xb5, 0xe9, 0xc4, 0xc4, 0xe9, 0xe9, 0xe9, 0xe9, 0xed, 0xc4, 0xe5, 0xee, 0xf6, 0xe5, 0xc4, 0xe5, 0xe5, 0xe9, 0xc4, 0xe5, 0xed, 0xf2, 0xed, 0xe9, 0xf1, 0xf2, 0xed, 0xf2, 0xed, 0xf2, 0xed, 0xf6, 0xf2, 0xf2, 0xf2, 0xf2, 0xed, 0xe5, 0xe5, 0xee, 0xee, 0xf2, 0xe9, 0x84, 0x24, 0x24, 0x20, 0x20, 0x20, 0x00, 0x00, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, + 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x49, 0x6d, 0x69, 0x69, 0x69, 0x49, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x48, 0x44, 0x44, 0x44, 0x44, 0x44, 0x49, 0x91, 0x71, 0xf6, 0xe4, 0xc4, 0xe5, 0xe9, 0xe9, 0xed, 0xe9, 0xc4, 0xe5, 0xf2, 0xee, 0xf2, 0xc4, 0xc4, 0xe9, 0xed, 0xc4, 0xc4, 0xe9, 0xf2, 0xed, 0xed, 0xed, 0xf1, 0xf2, 0xee, 0xf2, 0xed, 0xf2, 0xed, 0xed, 0xf2, 0xf2, 0xee, 0xed, 0xe5, 0xc4, 0xc5, 0xee, 0xee, 0xed, 0xa4, 0xa4, 0x84, 0x24, 0x24, 0x24, 0x24, 0x20, 0x20, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x44, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x69, 0x69, 0x49, 0x24, 0x24, + 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x49, 0x69, 0x69, 0x69, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x44, 0x44, 0x44, 0x44, 0x44, 0x49, 0xb6, 0x95, 0xf2, 0xc4, 0xe5, 0xe9, 0xe9, 0xed, 0xe9, 0xc4, 0xe9, 0xee, 0xc4, 0xfa, 0xc4, 0xa4, 0xe5, 0xe5, 0xe5, 0xa4, 0xe4, 0xed, 0xf2, 0xe9, 0xee, 0xed, 0xf1, 0xf2, 0xee, 0xf2, 0xed, 0xf2, 0xee, 0xe9, 0xe9, 0xe9, 0xe5, 0xc4, 0xc4, 0xc4, 0xa0, 0x80, 0xa0, 0x80, 0xa4, 0xa4, 0xc4, 0x44, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x45, 0x49, 0x49, 0x69, 0x6d, 0x6d, 0x8d, 0x91, 0x91, 0xb1, 0x8d, 0x91, 0xb2, 0xb2, 0x91, 0x6d, 0x6d, + 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x49, 0x69, 0x69, 0x69, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x48, 0x44, 0x44, 0x44, 0x49, 0x49, 0x69, 0xb6, 0xb5, 0xee, 0xe4, 0xe9, 0xed, 0xed, 0xe9, 0xc4, 0xe9, 0xee, 0xa0, 0xf2, 0xe9, 0xc4, 0xc4, 0xe9, 0xe5, 0xa4, 0xa4, 0xe9, 0xee, 0xf2, 0xe5, 0xed, 0xed, 0xed, 0xed, 0xf2, 0xf2, 0xee, 0xf2, 0xee, 0xed, 0xe5, 0xe4, 0xa0, 0xa0, 0xa4, 0xc4, 0xc4, 0x80, 0x80, 0xa0, 0x80, 0xa4, 0xa4, 0xc9, 0x24, 0x24, 0x24, 0x24, 0x24, 0x44, 0x24, 0x49, 0x69, 0x8d, 0x91, 0xb1, 0x91, 0x91, 0xb6, 0xb6, 0xb2, 0xb6, 0xda, 0xfa, 0xd6, 0xd6, 0xb6, + 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x44, 0x69, 0x6d, 0x69, 0x69, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x44, 0x44, 0x45, 0x49, 0x44, 0x91, 0x95, 0xed, 0xe5, 0xe9, 0xed, 0xed, 0xe5, 0xc4, 0xee, 0xe9, 0xa0, 0xa4, 0xf6, 0xc4, 0xc4, 0xe9, 0xe5, 0xe9, 0xa4, 0xe9, 0xee, 0xee, 0xed, 0xe5, 0xe9, 0xee, 0xed, 0xed, 0xf2, 0xf2, 0xf2, 0xf1, 0xf2, 0xed, 0xe9, 0xe5, 0xa0, 0xa0, 0xa4, 0xc4, 0xc4, 0xa4, 0xa0, 0xa0, 0xa4, 0xa4, 0xc4, 0xe9, 0x44, 0x24, 0x44, 0x44, 0x44, 0x49, 0x45, 0x44, 0x49, 0x6d, 0xb1, 0xb1, 0x91, 0x91, 0x91, 0xb2, 0xb2, 0xd6, 0xda, 0xfa, 0xd6, 0xd6, 0xda, + 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x24, 0x44, 0x69, 0x69, 0x69, 0x69, 0x69, 0x49, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x44, 0x48, 0x49, 0x45, 0x48, 0xb6, 0xb5, 0xe5, 0xed, 0xe9, 0xe9, 0xe4, 0xe5, 0xee, 0xc5, 0x80, 0x80, 0xf2, 0xe9, 0xc4, 0xe4, 0xe5, 0xed, 0xc5, 0xc4, 0xf2, 0xed, 0xf2, 0xe5, 0xe9, 0xe9, 0xf2, 0xed, 0xed, 0xed, 0xf2, 0xf2, 0xed, 0xf2, 0xed, 0xee, 0xe9, 0xa0, 0xa0, 0xc4, 0xc4, 0xc4, 0xa4, 0xa0, 0xa4, 0xa4, 0xa4, 0xa4, 0xe9, 0x89, 0x24, 0x45, 0x49, 0x69, 0x49, 0x49, 0x45, 0x49, 0x69, 0xb1, 0xb1, 0xb2, 0x91, 0x91, 0x91, 0x92, 0xb2, 0xb6, 0xb6, 0xb2, 0xd6, 0xda, + 0x24, 0x24, 0x24, 0x24, 0x24, 0x28, 0x49, 0x49, 0x49, 0x69, 0x6d, 0x69, 0x69, 0x69, 0x69, 0x69, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x44, 0x44, 0x49, 0x49, 0x44, 0x49, 0xb6, 0xd1, 0xed, 0xed, 0xe9, 0xe5, 0xe5, 0xe9, 0xa4, 0x80, 0x80, 0xa0, 0xf6, 0xc4, 0xc4, 0xe5, 0xe9, 0xed, 0xa4, 0xf2, 0xed, 0xee, 0xed, 0xe4, 0xee, 0xe9, 0xed, 0xed, 0xed, 0xf2, 0xe9, 0xee, 0xf2, 0xf2, 0xf2, 0xed, 0xc4, 0xa4, 0xa4, 0xc4, 0xc4, 0xe5, 0xa4, 0xa4, 0xa4, 0xc4, 0xc4, 0xa4, 0xc5, 0xcd, 0x49, 0x8d, 0xb1, 0xb1, 0x8d, 0x8d, 0x6d, 0x6d, 0x49, 0x6d, 0x91, 0xb6, 0xb2, 0x91, 0x92, 0xb2, 0xb6, 0xd6, 0xd6, 0xd6, 0xda, 0xd6, + 0x24, 0x24, 0x28, 0x49, 0x49, 0x49, 0x49, 0x6d, 0x69, 0x6d, 0x6d, 0x69, 0x69, 0x69, 0x49, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x69, 0xda, 0xf1, 0xe9, 0xe9, 0xe5, 0xe5, 0xc4, 0x80, 0x80, 0xa0, 0xa4, 0xa4, 0xf6, 0xc4, 0xe5, 0xe5, 0xed, 0xc4, 0xe9, 0xf2, 0xed, 0xf2, 0xe9, 0xe9, 0xee, 0xe9, 0xed, 0xed, 0xed, 0xf2, 0xe9, 0xc4, 0xe9, 0xed, 0xed, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xc4, 0xe9, 0x69, 0x84, 0xa4, 0xc4, 0xc4, 0xc4, 0xc5, 0xad, 0xb6, 0xd6, 0xd6, 0xd6, 0xd6, 0xb1, 0xb1, 0xb1, 0x8d, 0x6d, 0x91, 0xb6, 0xb2, 0xb6, 0xb6, 0xb6, 0xda, 0xfb, 0xfa, 0xfa, 0xfa, 0xfa, + 0x49, 0x49, 0x6d, 0x71, 0x71, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x69, 0x69, 0x69, 0x69, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x49, 0x49, 0xba, 0xed, 0xa4, 0xe5, 0xa4, 0xa0, 0xa0, 0x80, 0xa4, 0xa4, 0xa4, 0xc9, 0xf2, 0xe4, 0xe5, 0xe9, 0xed, 0xa0, 0xf2, 0xed, 0xee, 0xed, 0xe5, 0xed, 0xe9, 0xed, 0xed, 0xed, 0xed, 0xf2, 0xed, 0xc4, 0x80, 0x80, 0x91, 0xa4, 0xc4, 0xe5, 0xc4, 0xc4, 0xe9, 0xb1, 0x91, 0x91, 0xad, 0xc9, 0xc5, 0xc5, 0xcd, 0xd6, 0xda, 0xfa, 0xfa, 0xda, 0xd6, 0xd6, 0xb6, 0xb5, 0xb1, 0x8d, 0x8d, 0x91, 0xb2, 0xb6, 0xb6, 0xd6, 0xd6, 0xda, 0xfa, 0xda, 0xd6, 0xd6, + 0x49, 0x6d, 0x71, 0x91, 0x91, 0x91, 0x8d, 0x91, 0x91, 0x91, 0x6d, 0x69, 0x69, 0x69, 0x69, 0x69, 0x49, 0x49, 0x49, 0x44, 0x44, 0x48, 0x48, 0x48, 0x49, 0x49, 0x49, 0x48, 0x91, 0xc9, 0xe5, 0xe5, 0xa4, 0xa0, 0xb1, 0xa4, 0xa4, 0xc4, 0xa4, 0xed, 0xee, 0xe5, 0xe9, 0xed, 0xad, 0xe9, 0xf2, 0xed, 0xf2, 0xe9, 0xe9, 0xed, 0xe9, 0xee, 0xed, 0xed, 0xed, 0xf1, 0xf6, 0xc5, 0xa4, 0xa0, 0x8d, 0x49, 0xa9, 0xed, 0xed, 0xe9, 0xd5, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xb6, 0xd6, 0xda, 0xfa, 0xda, 0xda, 0xda, 0xd6, 0xd6, 0xd6, 0xd6, 0xd6, 0xb6, 0xb1, 0x91, 0x91, 0x91, 0x91, 0xb1, 0xb6, 0xb6, 0xd6, 0xd6, 0xd6, 0xd6, 0xd6, + 0x6d, 0x6d, 0x71, 0x91, 0x91, 0x91, 0x91, 0x91, 0x95, 0x91, 0x8d, 0x69, 0x69, 0x69, 0x69, 0x69, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x48, 0x49, 0x49, 0x69, 0x6d, 0xb6, 0xed, 0xc4, 0xa9, 0xba, 0xb5, 0xc0, 0xc4, 0xc4, 0xa4, 0xed, 0xf2, 0xe5, 0xed, 0xf6, 0xa4, 0xed, 0xed, 0xf2, 0xed, 0xc4, 0xee, 0xed, 0xe9, 0xee, 0xed, 0xed, 0xed, 0xed, 0xf6, 0xed, 0xa4, 0xa0, 0x8d, 0x91, 0xb6, 0xd6, 0xd6, 0xda, 0xda, 0xda, 0xda, 0xda, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xda, 0xd6, 0xd6, 0xda, 0xda, 0xd6, 0xb6, 0xb6, 0xb1, 0x91, 0x8d, 0x8d, 0x91, 0xb1, 0xb2, 0xb6, 0xd6, 0xd6, 0xb6, + 0x6d, 0x71, 0x71, 0x91, 0x91, 0x91, 0x91, 0x95, 0x95, 0x95, 0x8d, 0x69, 0x69, 0x69, 0x69, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x48, 0x48, 0x49, 0x69, 0x69, 0x69, 0x96, 0x79, 0x99, 0x75, 0x99, 0xa8, 0xc4, 0xc4, 0xc4, 0xc4, 0xe9, 0xee, 0xe9, 0xf2, 0xb9, 0xc5, 0xf2, 0xee, 0xf2, 0xc5, 0xc9, 0xee, 0xee, 0xe9, 0xee, 0xed, 0xed, 0xed, 0xf2, 0xf6, 0xed, 0xa4, 0xa4, 0x89, 0xfa, 0xfe, 0xfe, 0xfe, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfe, 0xff, 0xff, 0xfe, 0xfe, 0xfa, 0xfa, 0xda, 0xda, 0xda, 0xda, 0xd6, 0xb6, 0xb1, 0x91, 0x8d, 0x8d, 0xb1, 0xd6, 0xd6, 0xd6, 0xd6, 0xd6, + 0x6d, 0x71, 0x71, 0x71, 0x71, 0x71, 0x91, 0x95, 0x95, 0x95, 0x6d, 0x69, 0x6d, 0x6d, 0x49, 0x49, 0x69, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x69, 0xba, 0x75, 0x95, 0x75, 0x71, 0xe5, 0xe4, 0xc4, 0xc4, 0xe9, 0xee, 0xed, 0xf2, 0xde, 0x91, 0xee, 0xed, 0xf2, 0xe9, 0xa0, 0xe9, 0xed, 0xee, 0xe9, 0xed, 0xed, 0xed, 0xed, 0xf2, 0xf6, 0xc9, 0xa4, 0xa4, 0xa8, 0xfa, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfa, 0xda, 0xda, 0xd6, 0xb6, 0xb1, 0x91, 0x91, 0x8d, 0x8d, 0xb2, 0xd6, 0xd6, 0xda, 0xfa, + 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x91, 0x95, 0x95, 0x71, 0x6d, 0x69, 0x6d, 0x6d, 0x4c, 0x49, 0x69, 0x49, 0x49, 0x49, 0x49, 0x48, 0x49, 0x49, 0x49, 0x49, 0x69, 0x69, 0x8d, 0xda, 0x71, 0x71, 0x75, 0x95, 0xe9, 0xe9, 0xed, 0xee, 0xf2, 0xfb, 0xff, 0xbe, 0x75, 0xcd, 0xee, 0xee, 0xee, 0xa4, 0xa0, 0xe9, 0xed, 0xee, 0xe9, 0xed, 0xed, 0xed, 0xed, 0xf2, 0xf6, 0xc4, 0xa4, 0xa4, 0xa4, 0xda, 0xfe, 0xfe, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfa, 0xfa, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0xda, 0xd6, 0xd6, 0xb6, 0xb1, 0x91, 0x91, 0x8d, 0x91, 0xb2, 0xd6, 0xda, 0xfa, + 0x49, 0x49, 0x49, 0x49, 0x49, 0x69, 0x6d, 0x71, 0x6d, 0x6d, 0x49, 0x49, 0x49, 0x6d, 0x4d, 0x49, 0x49, 0x49, 0x49, 0x49, 0x49, 0x48, 0x48, 0x49, 0x49, 0x49, 0x69, 0x69, 0x91, 0xda, 0x51, 0x51, 0x75, 0x95, 0xba, 0xf1, 0xd1, 0xb6, 0xba, 0x75, 0x79, 0x99, 0x95, 0xed, 0xed, 0xf2, 0xa4, 0xa4, 0xa4, 0xe9, 0xee, 0xe9, 0xed, 0xed, 0xee, 0xed, 0xed, 0xf2, 0xed, 0xa4, 0xa4, 0xa4, 0xa4, 0xda, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfa, 0xfa, 0xfa, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xda, 0xd6, 0xda, 0xd6, 0xb1, 0xb1, 0xb1, 0x91, 0x91, 0xb6, 0xd6, 0xb6, + 0x49, 0x69, 0x69, 0x49, 0x49, 0x49, 0x4d, 0x6d, 0x6d, 0x6d, 0x49, 0x49, 0x49, 0x6d, 0x6d, 0x4d, 0x48, 0x49, 0x69, 0x6d, 0x8d, 0x8d, 0x8d, 0x6d, 0x69, 0x49, 0x49, 0x49, 0x6d, 0xda, 0x75, 0x51, 0x51, 0x51, 0x75, 0x75, 0x71, 0x75, 0x71, 0x51, 0x75, 0x99, 0xd5, 0xee, 0xf2, 0xc4, 0xa4, 0xa4, 0xa4, 0xc5, 0xf2, 0xe9, 0xee, 0xed, 0xed, 0xed, 0xed, 0xe9, 0xc4, 0xa4, 0xa4, 0xa4, 0xa8, 0xba, 0xfa, 0xfa, 0xfa, 0xfa, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfa, 0xfe, 0xff, 0xfe, 0xfe, 0xfa, 0xfa, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xfa, 0xd6, 0xd6, 0xda, 0xb6, 0x91, 0x91, 0x91, 0x8d, 0x92, 0xb2, 0xb1, + 0x49, 0x6d, 0x6d, 0x69, 0x6d, 0x49, 0x6d, 0x71, 0x6d, 0x6d, 0x49, 0x49, 0x48, 0x49, 0x6d, 0x71, 0x91, 0xb1, 0xd6, 0xd6, 0xda, 0xfa, 0xda, 0xd6, 0xb1, 0x6d, 0x49, 0x49, 0x49, 0xda, 0x96, 0x51, 0x4c, 0x4d, 0x71, 0x51, 0x51, 0x71, 0x75, 0x9a, 0x99, 0x99, 0xf2, 0xf2, 0xc5, 0xa4, 0xa4, 0xa4, 0xa4, 0xa8, 0xf2, 0xe9, 0xf2, 0xed, 0xed, 0xe9, 0xe9, 0xc4, 0xa4, 0xc4, 0xa4, 0xa4, 0x88, 0xb6, 0xfe, 0xfa, 0xfa, 0xfa, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xfa, 0xda, 0xd6, 0xb6, 0xb5, 0x91, 0x91, 0x8d, 0x8d, 0x8d, 0x91, 0xb6, + 0x49, 0x4d, 0x6d, 0x6d, 0x6d, 0x6d, 0x6d, 0x71, 0x71, 0x6d, 0x6d, 0x4d, 0x49, 0x49, 0x91, 0xd6, 0xfa, 0xfa, 0xfe, 0xfe, 0xfe, 0xfa, 0xfa, 0xfa, 0xfa, 0xb5, 0x6d, 0x49, 0x49, 0xda, 0x9a, 0x75, 0x95, 0x51, 0x71, 0x75, 0x75, 0x75, 0xdf, 0xff, 0xff, 0xda, 0xf2, 0xc9, 0xa4, 0xa4, 0xa4, 0xa4, 0xa0, 0xda, 0xfa, 0xee, 0xf2, 0xf2, 0xed, 0xf6, 0xe9, 0xc4, 0xa4, 0xc4, 0xc4, 0xe5, 0x88, 0xb5, 0xfe, 0xfe, 0xfe, 0xfa, 0xfe, 0xfe, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xfe, 0xfa, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xda, 0xd6, 0xd6, 0xd6, 0xd6, 0xb6, 0x91, 0x91, 0x91, 0x8d, 0xb5, 0xb5, + 0x49, 0x49, 0x4d, 0x6d, 0x71, 0x6d, 0x6d, 0x71, 0x6d, 0x6d, 0x6d, 0x6d, 0x91, 0xd6, 0xfa, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfa, 0xfa, 0xfa, 0xb5, 0x6d, 0x49, 0xff, 0xba, 0x99, 0x99, 0x75, 0x71, 0x75, 0x71, 0x9a, 0xff, 0xff, 0xdf, 0xd5, 0xda, 0xb2, 0xa4, 0xa4, 0xa4, 0xa0, 0xb1, 0xdf, 0xde, 0xf6, 0xee, 0xf2, 0xfa, 0xff, 0xf2, 0xe5, 0xa4, 0xc4, 0xc4, 0xed, 0x6c, 0x95, 0xfe, 0xfe, 0xfe, 0xfa, 0xfa, 0xfe, 0xfe, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfa, 0xfe, 0xfe, 0xfe, 0xfe, 0xfa, 0xfa, 0xfe, 0xfe, 0xfe, 0xfe, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfe, 0xfb, 0xb6, 0xb6, 0xb2, 0x91, 0x91, 0x91, + 0x6d, 0x6d, 0x6d, 0x6d, 0x71, 0x91, 0x71, 0x71, 0x6d, 0x4d, 0x6d, 0xb5, 0xda, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfa, 0xfa, 0xd9, 0x91, 0x49, 0xde, 0xde, 0xba, 0x99, 0x75, 0x51, 0x51, 0x4d, 0x95, 0xdf, 0xde, 0x99, 0x99, 0xdf, 0xff, 0xa4, 0xa4, 0xa4, 0xb1, 0xbe, 0x9d, 0x99, 0x9d, 0xbd, 0xfe, 0xfe, 0xff, 0xff, 0xe9, 0xc4, 0xc4, 0xe5, 0xed, 0x4c, 0x91, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfa, 0xfa, 0xfe, 0xfe, 0xfe, 0xfa, 0xfa, 0xfe, 0xfe, 0xfe, 0xfa, 0xfa, 0xfa, 0xda, 0xb6, 0xb6, 0xb6, 0xb1, 0x91, + 0x6d, 0x71, 0x71, 0x71, 0x91, 0x91, 0x91, 0x91, 0x71, 0x6d, 0xb5, 0xfa, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xda, 0xd9, 0xd9, 0xd9, 0x91, 0x6d, 0x95, 0xde, 0x95, 0x95, 0x95, 0x75, 0x71, 0x75, 0x95, 0x99, 0x99, 0x75, 0xbe, 0xdf, 0xff, 0xff, 0xad, 0x91, 0xbe, 0xde, 0xbe, 0xbe, 0xbd, 0xbd, 0xfe, 0xfe, 0xfe, 0xfe, 0xfa, 0xc5, 0xc5, 0xc9, 0xcd, 0x4c, 0x71, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfa, 0xda, 0xfa, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfa, 0xfa, 0xfe, 0xfa, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfa, 0xfa, 0xda, 0xfa, 0xfa, 0xfa, 0xfa, 0xd6, 0xb6, 0xb1, + 0x6d, 0x8d, 0x71, 0x71, 0x71, 0x71, 0x71, 0x71, 0x91, 0xd6, 0xfa, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xda, 0xd9, 0xd9, 0xd9, 0xb5, 0x91, 0x71, 0x71, 0xba, 0x96, 0x95, 0x95, 0x75, 0x75, 0x71, 0x9a, 0xbe, 0x95, 0xbe, 0xff, 0xff, 0xde, 0x99, 0x75, 0x75, 0x99, 0xbd, 0xbe, 0xbe, 0xbd, 0xbd, 0xde, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0x91, 0x4c, 0x48, 0x4c, 0x71, 0xfa, 0xfe, 0xfe, 0xfe, 0xfe, 0xfa, 0xfe, 0xff, 0xfe, 0xfe, 0xfe, 0xfa, 0xfe, 0xfe, 0xfa, 0xfa, 0xfa, 0xfe, 0xfa, 0xfa, 0xfa, 0xfe, 0xfe, 0xfe, 0xff, 0xfe, 0xfe, 0xfa, 0xda, 0xda, 0xfa, 0xfe, 0xfe, 0xda, 0xb6, 0xb2, + 0x49, 0x6d, 0x6d, 0x6d, 0x6d, 0x71, 0x95, 0xb6, 0xfa, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xde, 0xd9, 0xd9, 0xd9, 0xb5, 0xb5, 0x6d, 0x4d, 0x28, 0x96, 0x96, 0x75, 0x99, 0xb9, 0xbd, 0x95, 0x95, 0x95, 0x9a, 0xdf, 0xbe, 0x99, 0x75, 0x71, 0x4c, 0x70, 0x70, 0x74, 0x99, 0x99, 0x99, 0xbe, 0xde, 0xfe, 0xfe, 0xfe, 0xfa, 0xda, 0x95, 0x4c, 0x4c, 0x4c, 0x6d, 0xda, 0xfa, 0xfa, 0xfe, 0xfe, 0xfa, 0xff, 0xff, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xda, 0xda, 0xfa, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xfe, 0xfe, 0xfa, 0xfa, 0xfa, 0xfe, 0xfe, 0xfa, 0xda, 0xda, 0xb6, +#endif +#if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP == 0 + /*Pixel format: Red: 5 bit, Green: 6 bit, Blue: 5 bit*/ + 0x24, 0x53, 0xc4, 0x52, 0x23, 0x3a, 0x04, 0x4b, 0x06, 0x64, 0xa6, 0x63, 0xe5, 0x52, 0x65, 0x4a, 0xa4, 0x39, 0xa4, 0x41, 0x63, 0x31, 0x08, 0x5b, 0xae, 0x9c, 0xad, 0xa4, 0xea, 0x9b, 0xaa, 0x93, 0x89, 0x8b, 0x68, 0x8b, 0x4b, 0xa4, 0xca, 0x93, 0x68, 0x8b, 0x88, 0x93, 0x48, 0x83, 0x2b, 0x9c, 0xea, 0x9b, 0xe7, 0x7a, 0x85, 0x6a, 0x44, 0x62, 0xa4, 0x62, 0x04, 0x6b, 0xa3, 0x62, 0x03, 0x52, 0x23, 0x52, 0xe3, 0x41, 0x02, 0x21, 0x42, 0x21, 0xa3, 0x31, 0x63, 0x29, 0xe3, 0x39, 0xa6, 0x6b, 0x67, 0x84, 0x47, 0x84, 0x47, 0x84, 0x47, 0x8c, 0x26, 0x8c, 0x26, 0x8c, 0x06, 0x8c, 0xc6, 0x8b, 0x85, 0x83, 0xa4, 0xc1, 0x04, 0xd1, 0xc3, 0xc8, 0xe3, 0xd0, 0x86, 0xd2, 0xe9, 0x95, 0xa9, 0x8d, 0x89, 0x8d, 0xec, 0x9d, 0x0c, 0x9e, 0xea, 0x95, 0xea, 0x95, 0x2b, 0x9e, 0x2c, 0x9e, 0xeb, 0x95, 0x69, 0x8d, 0x09, 0x85, 0xe8, 0x7c, 0xa6, 0x74, 0x46, 0x6c, 0xa5, 0x6b, 0x87, 0x8b, 0xe8, 0xa3, 0xec, 0xc4, 0xf1, 0xed, 0x11, 0xee, 0x8c, 0xc4, 0xc4, 0x51, 0x03, 0x31, 0x64, 0x39, 0xc5, 0x51, 0x06, 0x5a, 0x67, 0x6a, 0xc8, 0x7a, 0x29, 0x93, 0x8a, 0xab, 0xeb, 0xbb, 0x2b, 0xc4, 0x2c, 0xcc, 0x2b, 0xd4, 0x0c, 0xcc, 0x0c, 0xc4, 0x0c, 0xc4, 0x2c, 0xc4, 0x0c, 0xbc, 0xec, 0xbb, 0xec, 0xb3, 0xcb, 0xb3, 0x8a, 0xa3, 0x69, 0xa3, 0x09, 0x93, + 0x44, 0x53, 0xc4, 0x52, 0x63, 0x29, 0x43, 0x29, 0x83, 0x29, 0x43, 0x29, 0x23, 0x21, 0x43, 0x29, 0x83, 0x39, 0x63, 0x39, 0x63, 0x39, 0xc7, 0x5a, 0x6e, 0x8c, 0xca, 0x83, 0x68, 0x8b, 0x89, 0x93, 0x89, 0x93, 0x4b, 0xa4, 0xcd, 0xbc, 0x0b, 0xa4, 0x2b, 0xa4, 0x2b, 0xac, 0xca, 0x9b, 0xea, 0xa3, 0x89, 0x93, 0x48, 0x83, 0x28, 0x83, 0x86, 0x6a, 0x64, 0x62, 0xc4, 0x72, 0x43, 0x62, 0x03, 0x5a, 0x63, 0x52, 0xe3, 0x41, 0x22, 0x29, 0x43, 0x29, 0x03, 0x42, 0xa6, 0x7b, 0x4c, 0xb5, 0xed, 0xcd, 0xab, 0xbd, 0x67, 0x94, 0xc9, 0xf2, 0xc9, 0xfa, 0x45, 0x8b, 0x65, 0x6b, 0x25, 0x73, 0x84, 0x62, 0x04, 0x52, 0x07, 0xe2, 0x86, 0xf9, 0x04, 0xe1, 0xc3, 0xc0, 0x04, 0xd9, 0xea, 0xbc, 0xeb, 0x9d, 0x0c, 0x9e, 0x4e, 0xa6, 0x4d, 0xa6, 0x2b, 0x9e, 0x4c, 0xa6, 0x6d, 0xa6, 0x6d, 0xa6, 0x0c, 0x9e, 0x89, 0x8d, 0x29, 0x85, 0x09, 0x85, 0xc7, 0x7c, 0x45, 0x6c, 0xc6, 0x6b, 0xe9, 0x93, 0x2a, 0xac, 0xed, 0xc4, 0x12, 0xf6, 0x32, 0xf6, 0x6f, 0xdd, 0xca, 0xab, 0x23, 0x39, 0xc2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xe2, 0x28, 0x02, 0x31, 0x23, 0x31, 0x23, 0x31, 0x23, 0x39, 0x23, 0x39, 0x43, 0x39, 0x43, 0x39, 0x43, 0x39, 0x43, 0x39, 0x43, 0x39, 0x23, 0x31, 0x23, 0x31, 0x02, 0x29, 0xe2, 0x28, 0xe2, 0x28, + 0x03, 0x43, 0x05, 0x53, 0xe4, 0x39, 0x84, 0x39, 0x84, 0x39, 0xe4, 0x39, 0x86, 0x4a, 0x07, 0x6b, 0xc6, 0x6a, 0xe7, 0x62, 0xb0, 0x9c, 0xec, 0x8b, 0x28, 0x73, 0xc7, 0x72, 0xe7, 0x72, 0xe7, 0x72, 0x48, 0x83, 0x89, 0x8b, 0xc9, 0x93, 0xa9, 0x93, 0x0b, 0xa4, 0x0b, 0xa4, 0xca, 0x9b, 0x07, 0x7b, 0xc6, 0x62, 0x28, 0x73, 0x69, 0x83, 0xc6, 0x72, 0x27, 0x83, 0xc8, 0x9b, 0x05, 0x7b, 0x43, 0x52, 0x23, 0x4a, 0xe3, 0x41, 0xc4, 0x39, 0x84, 0x52, 0x85, 0x73, 0xa8, 0xa4, 0x4a, 0xbd, 0x2a, 0xb5, 0x06, 0xea, 0x45, 0xaa, 0x66, 0xf1, 0xa7, 0xf9, 0xc7, 0xf9, 0x44, 0x6a, 0x45, 0x5a, 0x04, 0x4a, 0x47, 0xc2, 0x25, 0xe9, 0x04, 0xe1, 0x25, 0xe9, 0xe3, 0xd0, 0x04, 0xc9, 0x66, 0xda, 0x2b, 0x9e, 0x2b, 0xa6, 0x2c, 0xa6, 0x2b, 0x9e, 0x6c, 0xa6, 0xae, 0xae, 0xae, 0xae, 0x6d, 0xa6, 0x2c, 0x9e, 0x8a, 0x8d, 0x0a, 0x85, 0x09, 0x85, 0x08, 0x7d, 0x27, 0xa4, 0xc7, 0x8b, 0xc7, 0x6b, 0x87, 0x6b, 0xe9, 0x93, 0x4f, 0xdd, 0x6f, 0xdd, 0x0e, 0xcd, 0x8d, 0xc4, 0x45, 0x72, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xe2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xe2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xe2, 0x28, 0xe2, 0x28, + 0x03, 0x43, 0x45, 0x53, 0xc5, 0x52, 0x45, 0x52, 0x25, 0x52, 0x66, 0x52, 0xc9, 0x83, 0x8c, 0xac, 0x4c, 0xac, 0x8d, 0x9c, 0x53, 0xb5, 0xcc, 0x83, 0x25, 0x52, 0x25, 0x52, 0x45, 0x5a, 0x45, 0x5a, 0x45, 0x5a, 0x86, 0x62, 0x86, 0x62, 0x08, 0x7b, 0x08, 0x7b, 0x48, 0x83, 0x88, 0x83, 0x26, 0x6b, 0xc5, 0x5a, 0xa5, 0x5a, 0x86, 0x62, 0x04, 0x52, 0x86, 0x6a, 0x68, 0x8b, 0x47, 0x83, 0x64, 0x62, 0xa2, 0x39, 0xc3, 0x41, 0xa4, 0x5a, 0x44, 0x73, 0x64, 0x7b, 0x65, 0x7b, 0x05, 0x73, 0x85, 0x82, 0xc3, 0xd0, 0xe3, 0xd0, 0xe3, 0xd0, 0x66, 0xf1, 0xa7, 0xf9, 0xa6, 0xe9, 0x84, 0x41, 0xa4, 0x59, 0x65, 0xf1, 0xe4, 0xd8, 0xe3, 0xd8, 0x04, 0xd9, 0x04, 0xe1, 0x04, 0xc9, 0x25, 0xe9, 0x8a, 0xb5, 0x2b, 0xa6, 0x4c, 0xa6, 0x6d, 0xa6, 0xcf, 0xb6, 0xef, 0xb6, 0xce, 0xae, 0x4c, 0xa6, 0xeb, 0x95, 0x8a, 0x8d, 0x09, 0x85, 0x09, 0x85, 0xe8, 0x84, 0x24, 0xe9, 0x0a, 0xf3, 0x26, 0x5b, 0x65, 0x52, 0x27, 0x83, 0x6c, 0xbc, 0x8d, 0xbc, 0x4b, 0xac, 0x2b, 0xb4, 0x45, 0x72, 0xe2, 0x30, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, + 0x24, 0x4b, 0x24, 0x4b, 0xa7, 0x63, 0x2c, 0x8c, 0x09, 0x73, 0x86, 0x62, 0x48, 0x83, 0xea, 0x9b, 0xca, 0x93, 0x69, 0x83, 0x29, 0x6b, 0x25, 0x4a, 0xc4, 0x41, 0x05, 0x52, 0x66, 0x5a, 0xe4, 0x49, 0x83, 0x39, 0x84, 0x39, 0xc4, 0x49, 0x65, 0x5a, 0x06, 0x63, 0xe8, 0x73, 0x87, 0x6b, 0xa5, 0x4a, 0x24, 0x4a, 0xa4, 0x39, 0xa4, 0x41, 0xc4, 0x49, 0xe5, 0x51, 0xa7, 0x6a, 0xc7, 0x72, 0x24, 0x52, 0x63, 0x39, 0xc3, 0x41, 0xa3, 0x5a, 0xe4, 0x6a, 0x84, 0x62, 0x45, 0x5a, 0xa6, 0x72, 0x87, 0x9a, 0xa2, 0xc0, 0xc3, 0xc0, 0xc3, 0xc8, 0x45, 0xd9, 0x86, 0xf9, 0xa7, 0xf9, 0x64, 0xa1, 0x85, 0xb1, 0x04, 0xd9, 0xc3, 0xd0, 0xc3, 0xd0, 0xe3, 0xd0, 0xe4, 0xd8, 0xe3, 0xc8, 0xa7, 0xe9, 0xa8, 0xd3, 0x6b, 0x9e, 0x4c, 0xd5, 0x4f, 0xd6, 0x51, 0xbf, 0x10, 0xb7, 0xce, 0xae, 0x2b, 0x9e, 0xca, 0x95, 0x89, 0x8d, 0x09, 0x85, 0xea, 0x7c, 0x88, 0xc3, 0x04, 0xe1, 0xe7, 0xf1, 0x47, 0xb3, 0xa6, 0x6a, 0x28, 0x83, 0xea, 0xa3, 0xea, 0x9b, 0xa9, 0x9b, 0x68, 0x93, 0xe4, 0x59, 0xe2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, + 0x43, 0x4b, 0x04, 0x4b, 0x85, 0x5b, 0x6b, 0x8c, 0xeb, 0x8b, 0x29, 0x73, 0xa7, 0x72, 0xc7, 0x72, 0xa6, 0x62, 0x06, 0x5b, 0xa5, 0x52, 0x65, 0x52, 0x45, 0x5a, 0x86, 0x62, 0xa7, 0x6a, 0x05, 0x52, 0x64, 0x39, 0x63, 0x39, 0x04, 0x4a, 0x66, 0x63, 0x8a, 0x7c, 0x8a, 0x7c, 0xc5, 0x4a, 0x63, 0x29, 0x84, 0x31, 0x63, 0x31, 0x84, 0x39, 0xa4, 0x41, 0xe4, 0x49, 0x46, 0x5a, 0x45, 0x5a, 0xe4, 0x51, 0xa3, 0x41, 0x24, 0x52, 0xc5, 0x6a, 0x86, 0x6a, 0x85, 0x6a, 0xa6, 0x6a, 0xe7, 0x7a, 0x08, 0x9b, 0xa2, 0xc0, 0xc2, 0xb8, 0xa2, 0xb8, 0x03, 0xc9, 0x86, 0xe9, 0x86, 0xf9, 0xa7, 0xf9, 0x45, 0xe1, 0x86, 0xe1, 0x04, 0xd1, 0xa3, 0xc8, 0xc3, 0xd0, 0xc3, 0xd0, 0xe3, 0xc8, 0xa7, 0xe9, 0x07, 0xea, 0xae, 0xbe, 0x04, 0xf9, 0xca, 0xfa, 0x4e, 0xed, 0x30, 0xbf, 0xcd, 0xae, 0x2a, 0x9e, 0xca, 0x95, 0x8a, 0x8d, 0xe9, 0x8c, 0x2b, 0xdc, 0x49, 0xfa, 0xe7, 0xf1, 0x24, 0xd9, 0x28, 0xdb, 0xaa, 0x8c, 0xe9, 0x8b, 0xaa, 0x93, 0xea, 0x9b, 0xca, 0x9b, 0x48, 0x93, 0xa4, 0x51, 0x82, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xe2, 0x28, + 0x44, 0x4b, 0x24, 0x4b, 0x44, 0x53, 0xc5, 0x63, 0x0a, 0x84, 0x48, 0x6b, 0xa6, 0x5a, 0x66, 0x5a, 0x06, 0x5b, 0x08, 0x74, 0xc7, 0x6b, 0x46, 0x63, 0xe6, 0x6a, 0xc6, 0x62, 0x45, 0x52, 0xc4, 0x41, 0x04, 0x42, 0xc5, 0x52, 0xa6, 0x63, 0x47, 0x74, 0xa9, 0x7c, 0xa7, 0x5b, 0x63, 0x29, 0x23, 0x21, 0x43, 0x29, 0x03, 0x21, 0x43, 0x29, 0x63, 0x31, 0x63, 0x31, 0xa4, 0x41, 0xe5, 0x51, 0xe4, 0x51, 0xe4, 0x49, 0x65, 0x62, 0x07, 0x83, 0xa9, 0x93, 0xaa, 0x93, 0x29, 0x83, 0xe7, 0x7a, 0x28, 0x8b, 0xc3, 0xc8, 0xa2, 0xc0, 0xa2, 0xb8, 0xc3, 0xc0, 0x24, 0xd1, 0x66, 0xf1, 0x87, 0xf9, 0x04, 0xd9, 0x8a, 0xea, 0x31, 0xfd, 0x0a, 0xfb, 0xe3, 0xd0, 0xc3, 0xc8, 0xc3, 0xc8, 0xc7, 0xe9, 0x86, 0xf1, 0xcd, 0xdc, 0x86, 0xf9, 0x89, 0xfa, 0x4b, 0xfb, 0xaf, 0xce, 0xac, 0xae, 0xea, 0x95, 0xca, 0x95, 0xca, 0xbc, 0xe6, 0xf9, 0xe4, 0xe8, 0xc3, 0xd0, 0x04, 0xd1, 0x04, 0xd9, 0x67, 0xe2, 0x4b, 0x95, 0xec, 0xa4, 0x4b, 0x9c, 0xeb, 0x93, 0xca, 0x9b, 0x07, 0x83, 0x43, 0x39, 0x81, 0x10, 0x82, 0x10, 0x82, 0x10, 0x82, 0x18, 0x82, 0x18, 0x82, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, + 0x65, 0x53, 0x45, 0x53, 0x65, 0x53, 0xa4, 0x5b, 0xa5, 0x63, 0x65, 0x5b, 0x25, 0x53, 0x05, 0x53, 0x45, 0x5b, 0xa5, 0x5b, 0xa4, 0x5b, 0x64, 0x5b, 0x24, 0x5b, 0x05, 0x5b, 0x45, 0x52, 0x25, 0x4a, 0x26, 0x5b, 0xe6, 0x63, 0x67, 0x6c, 0x67, 0x6c, 0x06, 0x64, 0x84, 0x42, 0x43, 0x29, 0x23, 0x29, 0x23, 0x29, 0x43, 0x31, 0x65, 0x52, 0xe6, 0x6a, 0xa5, 0x62, 0x45, 0x5a, 0x66, 0x62, 0x66, 0x62, 0x66, 0x62, 0xa6, 0x72, 0x0a, 0xa4, 0x4c, 0xac, 0xcb, 0x93, 0x08, 0x7b, 0xe8, 0x82, 0x08, 0x83, 0x24, 0xc1, 0x45, 0xe1, 0x86, 0xe1, 0x03, 0xc1, 0xc3, 0xc8, 0x45, 0xe1, 0x66, 0xf9, 0xe3, 0xd0, 0xc3, 0xc8, 0xe9, 0xf2, 0xcc, 0xfb, 0x68, 0xfa, 0xc3, 0xc8, 0xa3, 0xc8, 0x08, 0xea, 0x66, 0xf1, 0x29, 0xeb, 0x48, 0xfa, 0xe4, 0xe8, 0x04, 0xe1, 0x08, 0xf3, 0x8c, 0xa6, 0xc9, 0x8d, 0xc9, 0xbc, 0x25, 0xf9, 0x04, 0xe1, 0xe3, 0xd0, 0xa2, 0xc0, 0xa3, 0xc0, 0x04, 0xd9, 0x26, 0xe2, 0x2b, 0x8d, 0x6e, 0xbd, 0xef, 0xbc, 0xeb, 0x9b, 0x28, 0x83, 0x05, 0x62, 0xe2, 0x28, 0x82, 0x10, 0x82, 0x18, 0x82, 0x18, 0x82, 0x18, 0x82, 0x18, 0x82, 0x18, 0x82, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, + 0x65, 0x53, 0x64, 0x53, 0xa5, 0x5b, 0x05, 0x64, 0xc5, 0x63, 0x64, 0x53, 0x64, 0x53, 0x04, 0x4b, 0x63, 0x42, 0x63, 0x3a, 0xa2, 0x42, 0xe3, 0x42, 0xe3, 0x4a, 0xe4, 0x52, 0xa5, 0x52, 0xc5, 0x5a, 0xa7, 0x6b, 0x27, 0x6c, 0x47, 0x6c, 0x27, 0x6c, 0x86, 0x63, 0xe4, 0x41, 0x23, 0x29, 0xe5, 0x49, 0xc6, 0x6a, 0x68, 0x83, 0x2a, 0x94, 0x6b, 0x9c, 0xc8, 0x8b, 0xc7, 0x72, 0xa7, 0x72, 0xc7, 0x72, 0xe8, 0x7a, 0x28, 0x73, 0x89, 0xea, 0x4a, 0xd3, 0x49, 0x8b, 0xa7, 0x72, 0xa7, 0x72, 0x07, 0x7b, 0xc5, 0xb1, 0x24, 0xe9, 0x04, 0xe1, 0x69, 0xf2, 0x6b, 0xf3, 0x04, 0xd9, 0x46, 0xf1, 0xc3, 0xc8, 0xc3, 0xc0, 0xa2, 0xb8, 0x26, 0xf2, 0xc8, 0xfa, 0x45, 0xe1, 0xa2, 0xc0, 0xc7, 0xe9, 0xa7, 0xf1, 0x86, 0xf9, 0xe4, 0xe0, 0xe3, 0xd8, 0xe3, 0xd0, 0x04, 0xf1, 0x09, 0xb5, 0xa8, 0x9d, 0x85, 0xf1, 0x04, 0xe1, 0xe3, 0xd8, 0xa2, 0xc0, 0xa2, 0xb8, 0xa2, 0xc0, 0x65, 0xe1, 0x87, 0xe2, 0xa9, 0x84, 0xcc, 0xa4, 0x4c, 0xac, 0x08, 0x7b, 0x25, 0x62, 0x63, 0x59, 0xe2, 0x40, 0x82, 0x10, 0x82, 0x18, 0x82, 0x18, 0x82, 0x18, 0x82, 0x18, 0x82, 0x18, 0x82, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xa2, 0x20, + 0x64, 0x4b, 0x64, 0x53, 0xc5, 0x5b, 0x87, 0x74, 0xe6, 0x6b, 0x24, 0x4b, 0xe4, 0x4a, 0xe3, 0x31, 0x22, 0x21, 0x42, 0x29, 0xa3, 0x31, 0xe3, 0x39, 0x23, 0x3a, 0x63, 0x42, 0x05, 0x5b, 0x46, 0x63, 0xc7, 0x6b, 0x48, 0x74, 0x49, 0x74, 0x08, 0x6c, 0x05, 0x5b, 0x83, 0x39, 0x02, 0x29, 0x25, 0x5a, 0x27, 0x7b, 0x87, 0x83, 0xa8, 0x8b, 0x88, 0x83, 0x28, 0x7b, 0xa7, 0x72, 0xa7, 0x72, 0xe8, 0x7a, 0xe8, 0x7a, 0xe7, 0xf1, 0xe3, 0xd8, 0xe3, 0xd8, 0x45, 0xf1, 0x27, 0xca, 0xe7, 0x8a, 0x69, 0x93, 0xe8, 0xa2, 0xe4, 0xe0, 0xe3, 0xd0, 0xe3, 0xd0, 0xc7, 0xe9, 0x2b, 0xfb, 0x45, 0xe1, 0xc3, 0xc8, 0xa3, 0xb8, 0xa2, 0xb8, 0xc3, 0xb8, 0x27, 0xfa, 0xe6, 0xf1, 0xc3, 0xc8, 0x86, 0xe1, 0xa6, 0xf9, 0x04, 0xe1, 0xc3, 0xd0, 0xc3, 0xc0, 0xc3, 0xc8, 0x04, 0xe1, 0x07, 0xb4, 0x06, 0xdb, 0x04, 0xe1, 0x04, 0xd9, 0xc3, 0xd0, 0xa2, 0xb8, 0xa2, 0xc0, 0xc3, 0xc0, 0xa7, 0xf1, 0x4a, 0xeb, 0x48, 0x74, 0xc8, 0x7b, 0xc6, 0x72, 0x26, 0xb2, 0xc7, 0xf1, 0x08, 0xfa, 0x86, 0xf9, 0x03, 0x89, 0x82, 0x10, 0x82, 0x18, 0xa2, 0x18, 0x82, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, + 0x84, 0x53, 0x64, 0x4b, 0x05, 0x64, 0x66, 0x74, 0x24, 0x53, 0x23, 0x3a, 0xa3, 0x31, 0x02, 0x21, 0xe2, 0x20, 0x22, 0x29, 0x43, 0x31, 0x83, 0x39, 0xc3, 0x39, 0x24, 0x3a, 0xe5, 0x5a, 0x26, 0x6b, 0xa7, 0x6b, 0xe7, 0x6b, 0x86, 0x63, 0xa5, 0x42, 0xc4, 0x31, 0x23, 0x29, 0xe2, 0x20, 0x43, 0x31, 0xa4, 0x41, 0xc4, 0x41, 0xc4, 0x49, 0x05, 0x52, 0x66, 0x6a, 0xa7, 0x6a, 0xc7, 0x7a, 0x08, 0x7b, 0x08, 0x83, 0x03, 0xc9, 0x86, 0xe9, 0xe4, 0xd0, 0xc3, 0xc8, 0xe3, 0xd8, 0xc7, 0xf1, 0xc8, 0x92, 0x08, 0x7b, 0x24, 0xd1, 0xe3, 0xc8, 0xc3, 0xc0, 0xc3, 0xc8, 0x65, 0xd9, 0x88, 0xfa, 0xa3, 0xc8, 0xa2, 0xb8, 0xa2, 0xb0, 0x82, 0xa8, 0x04, 0xd1, 0x06, 0xfa, 0x04, 0xd9, 0x46, 0xe1, 0x25, 0xf1, 0xc3, 0xd0, 0xa2, 0xc0, 0x82, 0xb8, 0xa3, 0xc0, 0xa3, 0xc8, 0x46, 0xc3, 0x04, 0xe9, 0x04, 0xd9, 0xe3, 0xd8, 0xa3, 0xc0, 0xa2, 0xb8, 0xa2, 0xc0, 0x65, 0xe1, 0x86, 0xe9, 0x67, 0xfa, 0xe7, 0x83, 0x46, 0x6b, 0xe7, 0xe9, 0x45, 0xf9, 0x25, 0xf1, 0x04, 0xe9, 0x04, 0xe1, 0x24, 0xe1, 0x81, 0x20, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, + 0x84, 0x53, 0x64, 0x53, 0xc5, 0x5b, 0xa5, 0x5b, 0x03, 0x3a, 0x42, 0x29, 0x02, 0x21, 0xe2, 0x20, 0xe2, 0x20, 0x22, 0x29, 0x43, 0x31, 0x83, 0x39, 0xc4, 0x39, 0x04, 0x42, 0x65, 0x5a, 0xa6, 0x6a, 0x26, 0x7b, 0x67, 0x83, 0x26, 0x83, 0xa6, 0x72, 0x65, 0x6a, 0x25, 0x5a, 0x84, 0x41, 0x84, 0x41, 0x84, 0x39, 0xc4, 0x49, 0xa4, 0x41, 0x05, 0x5a, 0xa7, 0x72, 0xc7, 0x7a, 0x08, 0x83, 0x08, 0x83, 0x08, 0x7b, 0x04, 0xc1, 0x65, 0xe1, 0xe4, 0xd8, 0x04, 0xd9, 0xc3, 0xc0, 0xe3, 0xd0, 0x86, 0xe9, 0x47, 0x8a, 0x46, 0xa2, 0xa2, 0xc0, 0xc3, 0xc0, 0xc3, 0xc0, 0xc2, 0xc0, 0x65, 0xe1, 0x85, 0xe1, 0xa2, 0xb8, 0xa2, 0xb0, 0x82, 0xa0, 0xa2, 0xb0, 0xa5, 0xe9, 0x65, 0xe1, 0x04, 0xe1, 0x65, 0xe9, 0x6c, 0xfb, 0xac, 0xfb, 0xe3, 0xc0, 0xa2, 0xb8, 0x82, 0xb0, 0x24, 0xd1, 0x04, 0xe1, 0xe4, 0xd8, 0xe3, 0xd0, 0xa2, 0xb8, 0xa2, 0xb8, 0xa2, 0xb8, 0x09, 0xfa, 0xe8, 0xf9, 0xc5, 0xf1, 0x66, 0xb3, 0x06, 0xea, 0x25, 0xf1, 0x04, 0xe9, 0x04, 0xe9, 0xe4, 0xd8, 0xe4, 0xd8, 0x04, 0xe1, 0xa2, 0x50, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, + 0x84, 0x53, 0x84, 0x53, 0xc5, 0x5b, 0x65, 0x5b, 0xe3, 0x41, 0x22, 0x29, 0x02, 0x21, 0x02, 0x21, 0xe2, 0x20, 0x02, 0x29, 0x02, 0x29, 0x22, 0x29, 0x63, 0x31, 0x83, 0x39, 0x84, 0x41, 0xa4, 0x51, 0x65, 0x72, 0x27, 0x9b, 0xc9, 0xb3, 0x2b, 0xc4, 0x4b, 0xbc, 0x0b, 0xbc, 0xea, 0xb3, 0xa9, 0xab, 0xa9, 0xa3, 0x0a, 0xac, 0x4b, 0xb4, 0x4b, 0xb4, 0x6b, 0xb4, 0x2b, 0xac, 0x2b, 0xac, 0xea, 0x9b, 0x28, 0x83, 0xe7, 0xba, 0x86, 0xe1, 0xc3, 0xc0, 0xc3, 0xc8, 0x04, 0xd9, 0xa2, 0xb8, 0xe3, 0xc8, 0xc7, 0xe9, 0xeb, 0xb3, 0xc3, 0xb8, 0xc3, 0xc0, 0xc3, 0xc8, 0xc3, 0xc0, 0xa3, 0xc0, 0xa6, 0xe9, 0xa2, 0xb8, 0x82, 0xa8, 0x82, 0xa0, 0x62, 0x98, 0x03, 0xd1, 0x85, 0xe9, 0x04, 0xd9, 0x04, 0xd9, 0x82, 0xb8, 0x45, 0xd1, 0xe9, 0xfa, 0xe3, 0xc0, 0x61, 0x90, 0xc3, 0xc0, 0xe4, 0xd8, 0xe3, 0xd8, 0xc3, 0xd0, 0x82, 0xb8, 0x82, 0xb8, 0x66, 0xe1, 0x29, 0xfa, 0x09, 0xfa, 0xc6, 0xf9, 0x06, 0xf2, 0x04, 0xe9, 0x04, 0xe1, 0x04, 0xe9, 0xe4, 0xd8, 0xe4, 0xd8, 0xe4, 0xd8, 0x25, 0xe9, 0xa2, 0x68, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xe2, 0x28, + 0xa4, 0x53, 0xa5, 0x5b, 0xe5, 0x5b, 0xa5, 0x5b, 0x04, 0x42, 0x43, 0x31, 0x02, 0x29, 0x02, 0x29, 0x22, 0x29, 0x02, 0x29, 0x02, 0x29, 0x02, 0x29, 0x22, 0x29, 0x23, 0x31, 0x22, 0x31, 0x23, 0x31, 0x64, 0x49, 0x24, 0x6a, 0x07, 0x8b, 0xa9, 0xa3, 0x0a, 0xac, 0x4b, 0xbc, 0x6b, 0xc4, 0x6c, 0xc4, 0x6b, 0xbc, 0xad, 0xcc, 0xed, 0xcc, 0xcd, 0xcc, 0xed, 0xc4, 0x2e, 0xcd, 0x6f, 0xd5, 0x6f, 0xd5, 0x2f, 0xd5, 0xea, 0xeb, 0x24, 0xd9, 0xa3, 0xc0, 0xa3, 0xb8, 0x24, 0xd9, 0xe3, 0xc8, 0xa2, 0xb8, 0xc3, 0xc8, 0x69, 0xea, 0x49, 0xcb, 0x82, 0xb8, 0xc3, 0xc0, 0xc3, 0xc8, 0xc3, 0xc0, 0xc3, 0xc0, 0x65, 0xd9, 0x82, 0xa8, 0x82, 0xa0, 0x82, 0xa0, 0xc2, 0xb0, 0x44, 0xe1, 0x04, 0xd9, 0xa3, 0xc0, 0x82, 0xb0, 0x82, 0xb0, 0xc3, 0xc0, 0x28, 0xfa, 0x82, 0x90, 0xc3, 0xc8, 0xe3, 0xd0, 0xe3, 0xd0, 0xc3, 0xc8, 0x82, 0xb8, 0xa2, 0xb8, 0x29, 0xfa, 0x8b, 0xfa, 0x86, 0xf9, 0x06, 0xfa, 0xe4, 0xd8, 0xe4, 0xd8, 0x04, 0xe1, 0xc3, 0xd8, 0x86, 0xe9, 0x85, 0xe9, 0xe4, 0xe0, 0x45, 0xf1, 0xa6, 0xd9, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xc2, 0x28, + 0x84, 0x53, 0xc5, 0x5b, 0x05, 0x5c, 0xc5, 0x63, 0x24, 0x4a, 0x63, 0x39, 0x23, 0x29, 0x22, 0x29, 0x22, 0x29, 0x22, 0x29, 0x22, 0x29, 0x22, 0x29, 0x22, 0x29, 0x22, 0x31, 0x22, 0x31, 0x23, 0x39, 0x84, 0x49, 0xc4, 0x61, 0x04, 0x62, 0x25, 0x5a, 0x45, 0x62, 0x86, 0x72, 0xc6, 0x7a, 0xc6, 0x7a, 0x27, 0x8b, 0x68, 0x9b, 0x88, 0xa3, 0xc9, 0xa3, 0xc9, 0xea, 0x2a, 0xeb, 0x6d, 0xe4, 0x4f, 0xe5, 0x8f, 0xdd, 0x8d, 0xe4, 0x04, 0xd9, 0xa2, 0xb8, 0xa2, 0xb8, 0x25, 0xe1, 0x46, 0xe9, 0xc3, 0xc0, 0xa2, 0xb0, 0xc3, 0xc8, 0xcc, 0xfb, 0x03, 0xb1, 0xc3, 0xc0, 0xc3, 0xc0, 0xc3, 0xc0, 0xa3, 0xc0, 0x04, 0xc9, 0xa2, 0xb0, 0x82, 0xa0, 0x82, 0xa0, 0x82, 0x98, 0x03, 0xd1, 0xe4, 0xd0, 0xa3, 0xc0, 0x82, 0xa8, 0x82, 0xa8, 0x82, 0xa8, 0xe3, 0xc8, 0x24, 0xd1, 0xa3, 0xc0, 0xe3, 0xd0, 0xe3, 0xd0, 0xa2, 0xb8, 0x82, 0xb0, 0x46, 0xd9, 0x6a, 0xfa, 0xc8, 0xf9, 0xa7, 0xf9, 0x65, 0xe9, 0xc3, 0xd0, 0xe4, 0xd8, 0x68, 0xf2, 0xee, 0xfc, 0x12, 0xfe, 0x96, 0xfe, 0xf1, 0xfc, 0x46, 0xf9, 0x48, 0xfa, 0x81, 0x30, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xe2, 0x28, + 0x84, 0x53, 0xc5, 0x5b, 0x25, 0x64, 0xa5, 0x63, 0x45, 0x52, 0xa4, 0x41, 0x63, 0x39, 0x23, 0x29, 0x22, 0x29, 0x22, 0x29, 0x22, 0x29, 0x22, 0x29, 0x22, 0x31, 0x43, 0x31, 0x43, 0x39, 0x63, 0x39, 0xa4, 0x49, 0xe4, 0x59, 0xe4, 0x59, 0xa4, 0x49, 0x84, 0x41, 0x63, 0x41, 0x84, 0x41, 0x84, 0x49, 0xa4, 0x49, 0xe4, 0x59, 0x25, 0x6a, 0x67, 0xaa, 0x65, 0xe1, 0xe6, 0xe1, 0x07, 0xf2, 0xa6, 0xf9, 0x48, 0xf2, 0x8a, 0xdb, 0x85, 0xe1, 0xa3, 0xb8, 0x82, 0xb0, 0xc3, 0xc8, 0x66, 0xf1, 0x86, 0xe9, 0xa2, 0xb8, 0xa2, 0xb0, 0x04, 0xd1, 0x0a, 0xe3, 0x82, 0xb0, 0xc3, 0xc0, 0xa3, 0xc0, 0xc3, 0xc0, 0xa2, 0xc0, 0xe3, 0xc0, 0x82, 0xa0, 0x82, 0xa0, 0x82, 0x90, 0xe3, 0xc0, 0xe3, 0xc8, 0xa3, 0xc0, 0x82, 0xa8, 0x82, 0xa8, 0x82, 0xa8, 0xa2, 0xa8, 0x25, 0xe1, 0xa3, 0xc0, 0xc3, 0xd0, 0xc3, 0xc8, 0x82, 0xb0, 0x82, 0xb0, 0x09, 0xfa, 0x6a, 0xfa, 0x87, 0xf1, 0x08, 0xfa, 0xc3, 0xd0, 0xa3, 0xd0, 0xcd, 0xfb, 0x2d, 0xfc, 0x0a, 0xfb, 0x28, 0xf2, 0xa7, 0xf1, 0x25, 0xf9, 0xec, 0xfa, 0xc6, 0xf9, 0x81, 0x38, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xe2, 0x28, + 0x84, 0x53, 0xc5, 0x5b, 0x06, 0x6c, 0x45, 0x63, 0x25, 0x5a, 0xe4, 0x49, 0x84, 0x41, 0x43, 0x31, 0x23, 0x29, 0x02, 0x29, 0x22, 0x29, 0x22, 0x29, 0x22, 0x29, 0x22, 0x31, 0x43, 0x31, 0x63, 0x39, 0x83, 0x41, 0xc4, 0x51, 0xe4, 0x59, 0xe4, 0x51, 0xc4, 0x51, 0xc4, 0x51, 0xa5, 0x79, 0xa5, 0x91, 0xa5, 0x91, 0x64, 0x71, 0x64, 0x51, 0x83, 0x41, 0xc7, 0xf1, 0x69, 0xfa, 0xeb, 0xfa, 0xeb, 0xfa, 0x2b, 0xfb, 0x86, 0xe9, 0x45, 0xe9, 0xe3, 0xc8, 0xa2, 0xb8, 0x82, 0xb0, 0xe4, 0xd0, 0x66, 0xf1, 0x66, 0xe9, 0xa2, 0xb8, 0x82, 0xa8, 0x69, 0xf2, 0x44, 0xc1, 0xa3, 0xb8, 0xc3, 0xc0, 0xa3, 0xc0, 0xc3, 0xc0, 0xe3, 0xc8, 0x82, 0xa8, 0x82, 0x98, 0x82, 0xa0, 0xa2, 0xa8, 0xc3, 0xc0, 0xa3, 0xc0, 0x82, 0xa0, 0x82, 0xa0, 0x82, 0xa0, 0xa2, 0xa0, 0x04, 0xd9, 0xa2, 0xc0, 0xc3, 0xc8, 0xa2, 0xb8, 0x82, 0xa8, 0x25, 0xd9, 0x2a, 0xfa, 0x66, 0xf1, 0x09, 0xfa, 0x45, 0xe9, 0xc3, 0xc8, 0x07, 0xf2, 0x25, 0xe1, 0xc3, 0xd8, 0xe3, 0xd8, 0x04, 0xd9, 0x25, 0xe9, 0xec, 0xfa, 0xc7, 0xf1, 0x64, 0xe1, 0xa2, 0x20, 0xa2, 0x18, 0x03, 0x41, 0xc9, 0x9a, 0xed, 0xbb, 0x68, 0x92, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xe2, 0x28, + 0xc5, 0x63, 0xe5, 0x63, 0xe6, 0x6b, 0xc5, 0x62, 0x25, 0x5a, 0x05, 0x52, 0xc4, 0x49, 0x83, 0x39, 0x43, 0x31, 0x23, 0x29, 0x22, 0x29, 0x02, 0x29, 0x02, 0x29, 0x02, 0x29, 0x02, 0x29, 0x22, 0x29, 0x23, 0x31, 0x63, 0x39, 0x84, 0x49, 0xc4, 0x51, 0xe4, 0x59, 0xe4, 0x69, 0x45, 0xe1, 0x04, 0xd9, 0x66, 0xf1, 0xa7, 0xf9, 0xc7, 0xf9, 0xa6, 0xd1, 0x44, 0xc1, 0xe7, 0xe9, 0xe4, 0xd8, 0x04, 0xe1, 0x04, 0xe1, 0x89, 0xfa, 0x89, 0xea, 0x65, 0xe1, 0x25, 0xd1, 0xa2, 0xb8, 0xa2, 0xb8, 0x04, 0xd9, 0x86, 0xf1, 0x45, 0xe1, 0x82, 0xb0, 0x88, 0xe2, 0xca, 0xfa, 0xa2, 0xb8, 0xc3, 0xc0, 0xa2, 0xc0, 0xc3, 0xc0, 0xc3, 0xc0, 0xa3, 0xb8, 0x82, 0x98, 0x82, 0xa0, 0x82, 0x98, 0xc3, 0xc0, 0xa2, 0xc0, 0x82, 0xa8, 0x82, 0xa0, 0x82, 0xa0, 0x82, 0xa0, 0x04, 0xd1, 0xa3, 0xc0, 0xa2, 0xb8, 0x82, 0xb0, 0x82, 0xa8, 0xa7, 0xf1, 0xe8, 0xf9, 0xc8, 0xf1, 0xa7, 0xf9, 0xc3, 0xc8, 0x04, 0xd9, 0xa3, 0xc8, 0xc3, 0xd0, 0xc3, 0xd0, 0xc3, 0xd0, 0xe4, 0xd8, 0x66, 0xe1, 0xe4, 0xd0, 0x44, 0xe1, 0xe2, 0x70, 0x03, 0x61, 0xc7, 0xd9, 0x08, 0xf2, 0xa7, 0xe1, 0x65, 0xd9, 0x65, 0xd9, 0xe3, 0x70, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xe2, 0x28, + 0x06, 0x6c, 0x06, 0x6c, 0xe7, 0x7b, 0xe6, 0x6a, 0x45, 0x62, 0x25, 0x52, 0xe4, 0x49, 0xa3, 0x41, 0x63, 0x31, 0x42, 0x31, 0x22, 0x29, 0x22, 0x29, 0x22, 0x29, 0x02, 0x29, 0x02, 0x29, 0x02, 0x29, 0x02, 0x29, 0x02, 0x29, 0x22, 0x31, 0x63, 0x39, 0x63, 0x39, 0xa4, 0x69, 0x45, 0xe1, 0xc3, 0xd0, 0xe3, 0xd0, 0xe4, 0xd0, 0x45, 0xe9, 0xc7, 0xf9, 0x29, 0xfa, 0xa5, 0xe9, 0xc3, 0xc8, 0xc3, 0xc8, 0xc3, 0xd0, 0xc3, 0xc8, 0xc3, 0xc8, 0x04, 0xd1, 0x29, 0xfa, 0x86, 0xe1, 0xc3, 0xc8, 0xa3, 0xc0, 0x04, 0xd9, 0xa7, 0xf9, 0xa6, 0xe9, 0xa6, 0xe1, 0x82, 0xb8, 0xc3, 0xc0, 0x82, 0xb8, 0xc3, 0xc0, 0xa2, 0xc0, 0xc3, 0xc0, 0xe3, 0xc0, 0x82, 0x98, 0x82, 0xa0, 0x82, 0xa0, 0xc3, 0xb8, 0xa2, 0xb8, 0x82, 0xb0, 0x82, 0xa0, 0x82, 0xa0, 0x82, 0xa0, 0xe4, 0xd0, 0xa2, 0xb8, 0xa2, 0xb8, 0x82, 0xb0, 0xc3, 0xb8, 0x09, 0xfa, 0x46, 0xe1, 0xc8, 0xf9, 0x24, 0xe1, 0xe4, 0xd0, 0xa2, 0xb8, 0xc3, 0xc0, 0xa3, 0xc8, 0xa2, 0xc0, 0xc3, 0xc8, 0xa3, 0xc0, 0x61, 0xa0, 0x04, 0xd9, 0xe3, 0xb0, 0xc3, 0xa0, 0xc3, 0xd0, 0xc3, 0xd0, 0xa2, 0xc0, 0xa2, 0xb8, 0x82, 0xb0, 0xa2, 0xb8, 0xc2, 0x30, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xc2, 0x28, + 0x46, 0x6c, 0x26, 0x74, 0x08, 0x8c, 0x07, 0x73, 0x45, 0x5a, 0x04, 0x52, 0xe4, 0x49, 0xa3, 0x41, 0x63, 0x39, 0x43, 0x31, 0x42, 0x29, 0x42, 0x31, 0x22, 0x31, 0x22, 0x31, 0x22, 0x29, 0x22, 0x29, 0x22, 0x29, 0x02, 0x29, 0x22, 0x29, 0x23, 0x31, 0x23, 0x31, 0x22, 0x31, 0xa6, 0xd1, 0x04, 0xd9, 0xe3, 0xd0, 0x04, 0xd9, 0x04, 0xe1, 0xe4, 0xd8, 0x25, 0xe9, 0x85, 0xe1, 0xc3, 0xc0, 0xc3, 0xc0, 0xa3, 0xc0, 0xa2, 0xb8, 0x82, 0xb8, 0x82, 0xb0, 0x45, 0xd9, 0xe8, 0xf9, 0x09, 0xfa, 0xc3, 0xc0, 0xc3, 0xc8, 0x25, 0xe1, 0xa7, 0xf9, 0xa3, 0xc0, 0xc3, 0xc8, 0x82, 0xb0, 0x66, 0xd9, 0xa3, 0xc0, 0xa3, 0xc0, 0xc3, 0xc0, 0xc3, 0xc8, 0x82, 0xa8, 0x81, 0xa0, 0x82, 0xa0, 0xa2, 0xb0, 0xc3, 0xc0, 0xa2, 0xb0, 0x82, 0xa0, 0x82, 0x98, 0x82, 0xa0, 0xe3, 0xd0, 0x82, 0xb0, 0x82, 0xb0, 0x82, 0xa8, 0x04, 0xd1, 0xa7, 0xf1, 0xa7, 0xf1, 0x46, 0xf1, 0xe3, 0xd0, 0x82, 0xb0, 0x82, 0xa8, 0xa2, 0xb8, 0x82, 0xb0, 0xa3, 0xc0, 0x82, 0xb0, 0x61, 0x90, 0xe3, 0xc8, 0x04, 0xd9, 0x82, 0xb0, 0x82, 0xa0, 0xc3, 0xc0, 0xc3, 0xc0, 0x82, 0xb0, 0x62, 0xa8, 0xc2, 0xb8, 0xc2, 0x30, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x28, + 0x88, 0x84, 0x48, 0x84, 0xe9, 0x8b, 0x07, 0x73, 0x25, 0x5a, 0xe5, 0x51, 0x04, 0x52, 0xe4, 0x49, 0x83, 0x39, 0x63, 0x31, 0x43, 0x31, 0x43, 0x31, 0x43, 0x31, 0x43, 0x31, 0x22, 0x31, 0x22, 0x31, 0x22, 0x31, 0x23, 0x31, 0x23, 0x31, 0x23, 0x31, 0x43, 0x31, 0x63, 0x39, 0x63, 0x59, 0xcc, 0xfa, 0x8b, 0xfa, 0xe9, 0xf9, 0x86, 0xf9, 0x46, 0xf1, 0x25, 0xe1, 0x44, 0xe1, 0xe4, 0xc8, 0xc3, 0xc0, 0xa3, 0xc0, 0xa3, 0xc0, 0x82, 0xb0, 0x82, 0xb0, 0x62, 0xb0, 0xa7, 0xe1, 0xc8, 0xf9, 0x09, 0xfa, 0xc3, 0xc8, 0xc3, 0xc0, 0x25, 0xe1, 0xa3, 0xc0, 0xc3, 0xc0, 0x82, 0xb0, 0xe7, 0xe9, 0xe4, 0xc8, 0xc3, 0xc0, 0xa2, 0xc0, 0xc3, 0xc8, 0xa3, 0xb8, 0xc3, 0xa8, 0x82, 0xa0, 0xa2, 0xa8, 0xe3, 0xc0, 0x82, 0xb0, 0x82, 0x98, 0x82, 0x98, 0x82, 0xa0, 0xe3, 0xc8, 0xa2, 0xb0, 0x82, 0xa8, 0x82, 0xa8, 0x86, 0xe9, 0x46, 0xe1, 0xe8, 0xf9, 0xc3, 0xd0, 0x82, 0xa8, 0x61, 0x98, 0x82, 0xa0, 0x82, 0xa0, 0xa2, 0xb8, 0x82, 0xa8, 0x61, 0x88, 0xc3, 0xc0, 0x04, 0xd9, 0x62, 0x98, 0x82, 0xa8, 0xc3, 0xc8, 0x46, 0xe9, 0x66, 0xf1, 0xa7, 0xf9, 0x08, 0xf2, 0x03, 0x71, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, + 0x6b, 0x94, 0x0a, 0x94, 0xc9, 0x8b, 0x07, 0x73, 0x25, 0x5a, 0xe5, 0x51, 0x05, 0x52, 0xe4, 0x49, 0xa4, 0x41, 0x83, 0x39, 0x63, 0x31, 0x43, 0x31, 0x43, 0x31, 0x43, 0x31, 0x43, 0x31, 0x43, 0x31, 0x42, 0x31, 0x43, 0x31, 0x43, 0x39, 0x43, 0x31, 0x43, 0x39, 0x64, 0x39, 0x84, 0x41, 0x84, 0x79, 0x0d, 0xfb, 0xec, 0xfa, 0xec, 0xfa, 0x6a, 0xfa, 0xe8, 0xf9, 0x87, 0xf9, 0xa6, 0xf1, 0xe4, 0xc8, 0xa3, 0xc0, 0xa3, 0xc0, 0xe3, 0xc8, 0x82, 0xa8, 0x82, 0xa8, 0x82, 0xa8, 0x87, 0xe1, 0x87, 0xf9, 0x29, 0xfa, 0xe4, 0xc8, 0xa2, 0xb8, 0x04, 0xd1, 0x82, 0xb0, 0xe2, 0xb0, 0xe3, 0xb8, 0xe7, 0xf1, 0xa3, 0xc0, 0xc3, 0xc8, 0xe3, 0xc8, 0xc3, 0xc8, 0xa2, 0xa0, 0x81, 0x98, 0x82, 0xa0, 0xc3, 0xb8, 0x82, 0xa8, 0x82, 0xa0, 0x82, 0x98, 0xa2, 0xa8, 0xa2, 0xb8, 0xa2, 0xa8, 0x82, 0xa0, 0x82, 0xa8, 0x86, 0xe9, 0xc8, 0xf1, 0x25, 0xe1, 0xc3, 0xb8, 0x82, 0xa0, 0x61, 0x90, 0x61, 0x90, 0x82, 0xa8, 0x82, 0x98, 0x61, 0x80, 0xc3, 0xb8, 0x04, 0xe1, 0x82, 0xa8, 0xa3, 0xc8, 0xc3, 0xd0, 0xc3, 0xd0, 0xc3, 0xc8, 0xc3, 0xd0, 0xe4, 0xd8, 0xe4, 0xd8, 0x66, 0xe1, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xe2, 0x28, + 0x6d, 0xa4, 0xea, 0x9b, 0xc9, 0x93, 0x27, 0x7b, 0x25, 0x5a, 0xe5, 0x51, 0xe5, 0x51, 0xe4, 0x49, 0xc4, 0x49, 0xa3, 0x41, 0x83, 0x39, 0x63, 0x31, 0x43, 0x31, 0x43, 0x31, 0x43, 0x31, 0x43, 0x31, 0x43, 0x31, 0x43, 0x31, 0x43, 0x31, 0x43, 0x39, 0x63, 0x39, 0x63, 0x39, 0x63, 0x41, 0x64, 0x41, 0x84, 0x79, 0xcb, 0xfa, 0x8b, 0xfa, 0x8b, 0xfa, 0xab, 0xfa, 0xab, 0xfa, 0x29, 0xfa, 0x6a, 0xfa, 0xa7, 0xe1, 0xa3, 0xc8, 0xc3, 0xc8, 0xc3, 0xc8, 0x82, 0xa8, 0x82, 0xa8, 0x62, 0xa8, 0x66, 0xd9, 0x87, 0xf1, 0x29, 0xfa, 0x45, 0xd1, 0xa2, 0xb0, 0xe3, 0xc8, 0xa2, 0xa0, 0xa2, 0x98, 0xe3, 0xb8, 0x65, 0xe1, 0xa3, 0xc0, 0xc3, 0xc0, 0xe3, 0xc8, 0xa2, 0xa8, 0x82, 0x88, 0x82, 0x98, 0xa2, 0x98, 0xa2, 0xa8, 0xe3, 0xa0, 0xa2, 0x98, 0xa2, 0xb0, 0xa5, 0xc9, 0x61, 0x98, 0x82, 0x98, 0xc3, 0xb0, 0xe3, 0xc0, 0xc7, 0xf1, 0xe3, 0xd0, 0xa3, 0xc8, 0xa3, 0xc0, 0x61, 0x88, 0x62, 0x98, 0x82, 0x90, 0x61, 0x80, 0xc3, 0xb8, 0x25, 0xe1, 0xa2, 0xc0, 0xc3, 0xc8, 0xa3, 0xc8, 0xa3, 0xc0, 0xa3, 0xc0, 0xe4, 0xd0, 0xe4, 0xd8, 0xe4, 0xd0, 0xc3, 0xc0, 0x03, 0xc9, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, + 0xef, 0xb4, 0x0b, 0x9c, 0xa9, 0x93, 0x07, 0x7b, 0x45, 0x5a, 0x05, 0x52, 0xe4, 0x51, 0xe4, 0x51, 0xe4, 0x49, 0xa4, 0x41, 0x83, 0x39, 0x63, 0x39, 0x63, 0x39, 0x63, 0x31, 0x63, 0x39, 0x63, 0x39, 0x63, 0x31, 0x43, 0x31, 0x43, 0x31, 0x63, 0x39, 0x63, 0x41, 0x63, 0x41, 0x84, 0x41, 0x84, 0x41, 0x63, 0x41, 0x64, 0x61, 0x89, 0xe2, 0x0c, 0xfb, 0x4a, 0xfa, 0x09, 0xfa, 0x29, 0xfa, 0xa7, 0xf1, 0x8b, 0xfa, 0xab, 0xfa, 0xa7, 0xf1, 0xe4, 0xd0, 0xa2, 0xb8, 0x82, 0xa8, 0x62, 0xa8, 0x62, 0xa0, 0x45, 0xd1, 0x66, 0xe9, 0x08, 0xfa, 0x86, 0xd9, 0x04, 0xb9, 0xc3, 0xb8, 0xa2, 0x90, 0xa2, 0x90, 0xe3, 0xb8, 0xe3, 0xc8, 0xa2, 0xb8, 0xc3, 0xb0, 0xe3, 0xc8, 0xe3, 0xb0, 0xe3, 0xa0, 0xa2, 0x98, 0x82, 0x88, 0x82, 0x90, 0x82, 0x98, 0xa2, 0xa8, 0xe3, 0xb8, 0x62, 0xa0, 0xa2, 0xa0, 0xc3, 0xa8, 0x04, 0xd1, 0xe4, 0xd0, 0xe3, 0xd0, 0xc3, 0xc8, 0xa3, 0xb8, 0x61, 0x80, 0x82, 0x80, 0x61, 0x78, 0xe3, 0xb8, 0x24, 0xe1, 0xa3, 0xc0, 0xa3, 0xc0, 0xa2, 0xc0, 0xa2, 0xb8, 0xc3, 0xc8, 0xc3, 0xd0, 0xc3, 0xc8, 0xa2, 0xc0, 0xc3, 0xc8, 0x24, 0xd9, 0x86, 0xb9, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x20, + 0x0f, 0xb5, 0x2c, 0x9c, 0xa9, 0x93, 0x07, 0x83, 0x45, 0x62, 0x05, 0x5a, 0x05, 0x52, 0xe5, 0x51, 0xe4, 0x49, 0xc4, 0x49, 0xa4, 0x41, 0x83, 0x39, 0x63, 0x39, 0x63, 0x39, 0x63, 0x39, 0x63, 0x39, 0x63, 0x31, 0x63, 0x39, 0x63, 0x39, 0x84, 0x41, 0x84, 0x41, 0x84, 0x41, 0x84, 0x49, 0x84, 0x49, 0x68, 0xca, 0xeb, 0xfa, 0x69, 0xf2, 0xa6, 0xe9, 0x86, 0xf1, 0x66, 0xf1, 0x65, 0xf1, 0xc3, 0xc8, 0xe4, 0xd0, 0x4a, 0xfa, 0x6a, 0xfa, 0x29, 0xfa, 0x04, 0xd9, 0x82, 0xb8, 0x82, 0xa8, 0x82, 0xa8, 0x62, 0xa0, 0xe4, 0xb8, 0x66, 0xe9, 0xe8, 0xf9, 0xc7, 0xf1, 0xa2, 0xb0, 0xc2, 0xa0, 0xc2, 0x98, 0xa2, 0x90, 0x04, 0xd1, 0x65, 0xc9, 0xe3, 0xc0, 0x28, 0xea, 0x45, 0xd9, 0x04, 0xc9, 0xa2, 0xb0, 0xa2, 0xb0, 0xc3, 0xc0, 0xa2, 0xa8, 0xa2, 0xa8, 0xa2, 0xb0, 0x04, 0xa9, 0x82, 0x80, 0x82, 0x90, 0xe4, 0xd0, 0xc3, 0xd0, 0xc3, 0xc8, 0xa2, 0xb8, 0xc3, 0xb8, 0x61, 0x78, 0x61, 0x70, 0xe3, 0xb8, 0x04, 0xe1, 0xa3, 0xc0, 0xa3, 0xc0, 0x82, 0xb8, 0xa2, 0xb8, 0xc3, 0xc8, 0xa3, 0xc0, 0x82, 0xb8, 0xa2, 0xb8, 0xa7, 0xf1, 0x4a, 0xfa, 0x28, 0xfa, 0xc2, 0x58, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x20, + 0xae, 0xa4, 0x6d, 0xa4, 0xc9, 0x93, 0x48, 0x83, 0x86, 0x6a, 0x25, 0x5a, 0x25, 0x5a, 0x05, 0x52, 0xe4, 0x49, 0xe4, 0x49, 0xc4, 0x41, 0xa4, 0x41, 0x83, 0x39, 0x63, 0x39, 0x84, 0x39, 0x63, 0x39, 0x63, 0x39, 0x63, 0x39, 0x83, 0x39, 0x84, 0x41, 0xa4, 0x49, 0xa4, 0x49, 0x84, 0x49, 0x84, 0x61, 0xe3, 0xd8, 0xc3, 0xc8, 0xc3, 0xc8, 0xa3, 0xc0, 0xa2, 0xc0, 0xa3, 0xc0, 0xc3, 0xc8, 0xc3, 0xc8, 0xc3, 0xc0, 0xc3, 0xc0, 0x08, 0xf2, 0x4a, 0xfa, 0x4a, 0xfa, 0xc3, 0xc0, 0x82, 0xb0, 0x82, 0xa8, 0x82, 0xa8, 0x82, 0xa8, 0xc3, 0xa8, 0x66, 0xe9, 0xa7, 0xf9, 0x04, 0xc9, 0x82, 0x90, 0x82, 0xa0, 0xc3, 0xc0, 0xa2, 0xc0, 0x65, 0xd1, 0xe3, 0xc0, 0xcf, 0xeb, 0x87, 0xe9, 0xaa, 0xe2, 0x45, 0xc9, 0x48, 0xd2, 0x24, 0xd1, 0xc3, 0xb8, 0x65, 0xc9, 0xc3, 0xb8, 0xe3, 0xb8, 0x04, 0xb9, 0x82, 0x90, 0xc3, 0xc8, 0xc3, 0xc8, 0xa3, 0xc0, 0xa2, 0xb0, 0xa2, 0xa8, 0x61, 0x70, 0xe3, 0xc0, 0x04, 0xd9, 0xa2, 0xc0, 0xa2, 0xb8, 0x82, 0xb8, 0xa2, 0xb8, 0xa2, 0xb8, 0x82, 0xa8, 0x82, 0xa8, 0xa2, 0xb0, 0x25, 0xd9, 0x6a, 0xfa, 0x27, 0xf2, 0xe2, 0xa0, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, + 0xec, 0x8b, 0x0b, 0x94, 0xc9, 0x93, 0x69, 0x83, 0xa7, 0x6a, 0x45, 0x62, 0x25, 0x5a, 0x05, 0x52, 0x04, 0x4a, 0x04, 0x4a, 0xe4, 0x49, 0xc4, 0x41, 0x84, 0x41, 0x83, 0x39, 0x84, 0x41, 0x84, 0x41, 0x83, 0x41, 0x83, 0x41, 0x64, 0x41, 0x84, 0x41, 0xa4, 0x49, 0xa4, 0x49, 0xc4, 0x49, 0xa4, 0x49, 0x03, 0x99, 0xc3, 0xc8, 0xc3, 0xc8, 0xc3, 0xc8, 0xa2, 0xc0, 0x82, 0xb8, 0x82, 0xb0, 0x82, 0xb0, 0x82, 0xb0, 0xa2, 0xb8, 0xa2, 0xb8, 0x25, 0xd9, 0x6a, 0xfa, 0x4a, 0xfa, 0x25, 0xd1, 0x82, 0xb0, 0x82, 0xb0, 0x82, 0xb0, 0x82, 0xb0, 0x61, 0x90, 0xe3, 0xb8, 0x04, 0xb9, 0x85, 0xc9, 0x65, 0xc1, 0x86, 0xd1, 0x28, 0xd2, 0x45, 0xd1, 0xe8, 0xd1, 0x85, 0xb9, 0x4a, 0xf3, 0xc3, 0x90, 0x45, 0xb1, 0x85, 0xc1, 0x0b, 0xe3, 0x04, 0x99, 0x24, 0xb1, 0xc3, 0xc0, 0xa2, 0xc0, 0xa2, 0xa8, 0xa2, 0xa8, 0x82, 0xa8, 0xc3, 0xc0, 0x04, 0xb9, 0xc3, 0xc0, 0x82, 0x80, 0x04, 0xc9, 0xe3, 0xd0, 0xa3, 0xc0, 0xa2, 0xb8, 0xa2, 0xc0, 0xa3, 0xb8, 0x82, 0xa8, 0x82, 0xa0, 0x82, 0xa8, 0x82, 0xb8, 0xc7, 0xe1, 0xaa, 0xfa, 0x85, 0xf1, 0x64, 0xe1, 0xa2, 0x38, 0xa2, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x20, + 0x49, 0x83, 0xca, 0x8b, 0xca, 0x93, 0xa9, 0x83, 0xc7, 0x6a, 0x46, 0x62, 0x25, 0x5a, 0x25, 0x52, 0x24, 0x52, 0x24, 0x52, 0x04, 0x52, 0xc4, 0x49, 0xa4, 0x41, 0x84, 0x39, 0x84, 0x41, 0x84, 0x41, 0x84, 0x41, 0x84, 0x51, 0x84, 0x81, 0x27, 0xa2, 0x47, 0xba, 0x07, 0xda, 0x86, 0xf1, 0x65, 0xf9, 0x66, 0xf9, 0xe3, 0xd0, 0xa2, 0xc0, 0xa2, 0xc0, 0xc3, 0xc0, 0xa3, 0xc0, 0xa2, 0xb8, 0x82, 0xb0, 0x82, 0xa8, 0x82, 0xa8, 0x82, 0xa0, 0x82, 0xa8, 0x82, 0xb0, 0x86, 0xe1, 0x6b, 0xfa, 0x29, 0xf2, 0xa3, 0xb8, 0x82, 0xb0, 0x82, 0xb8, 0xe8, 0xd1, 0x61, 0x88, 0xa2, 0xa8, 0x6a, 0xda, 0x69, 0xe2, 0x86, 0xc9, 0xa2, 0xb8, 0x03, 0x89, 0x24, 0xb1, 0xc3, 0x98, 0xa3, 0xb0, 0xe3, 0xa0, 0xa2, 0x80, 0x82, 0x80, 0xa2, 0x40, 0xe2, 0x68, 0x03, 0x99, 0xe3, 0x90, 0xe7, 0xb9, 0x45, 0xd1, 0xc3, 0xc0, 0xc3, 0xc0, 0xc3, 0xb0, 0xc3, 0xb0, 0xa2, 0xa0, 0x04, 0xd1, 0xe3, 0xd0, 0xc3, 0xc8, 0xa3, 0xc0, 0xa3, 0xc0, 0x82, 0xb0, 0x82, 0x98, 0x82, 0xa0, 0xa3, 0xb0, 0x45, 0xd1, 0xab, 0xfa, 0x69, 0xfa, 0xa5, 0xf9, 0x85, 0xf1, 0xe2, 0x70, 0xa2, 0x18, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x20, + 0x29, 0x83, 0xab, 0x8b, 0xea, 0x93, 0xe9, 0x8b, 0x48, 0x7b, 0x46, 0x5a, 0x25, 0x5a, 0x05, 0x52, 0x25, 0x5a, 0x25, 0x52, 0x24, 0x52, 0xe4, 0x49, 0xa4, 0x49, 0x84, 0x41, 0x84, 0x41, 0x84, 0x49, 0x07, 0xc2, 0x49, 0xfa, 0x69, 0xfa, 0x04, 0xd9, 0xa3, 0xc8, 0x24, 0xe1, 0x25, 0xe1, 0x45, 0xe9, 0x45, 0xe9, 0x25, 0xe9, 0x45, 0xe9, 0x24, 0xd9, 0xa2, 0xc0, 0xa2, 0xb8, 0xa2, 0xb8, 0xa2, 0xb8, 0x82, 0xb0, 0x82, 0xa8, 0x82, 0xa8, 0x82, 0xa0, 0x82, 0x98, 0x82, 0x98, 0x82, 0xb0, 0x45, 0xd9, 0x8b, 0xfa, 0xa7, 0xd9, 0x82, 0xb0, 0xa2, 0xb8, 0x45, 0xd1, 0x66, 0xe1, 0xc7, 0xe9, 0x0b, 0xe3, 0x24, 0xc1, 0xa2, 0xa8, 0x82, 0x70, 0xc2, 0x70, 0x03, 0x51, 0x64, 0x71, 0x23, 0x69, 0x23, 0x51, 0x84, 0x71, 0x05, 0x82, 0x43, 0x61, 0xc2, 0x90, 0xa2, 0xa8, 0xe3, 0x98, 0x04, 0xb9, 0x45, 0xd9, 0xc7, 0xd9, 0x82, 0x80, 0xc3, 0xa0, 0x04, 0xd9, 0xe4, 0xd0, 0xc3, 0xd0, 0xc3, 0xc8, 0xa2, 0xb8, 0x82, 0x98, 0x82, 0xa0, 0xc3, 0xb0, 0x04, 0xc9, 0xe8, 0xf1, 0xab, 0xfa, 0x28, 0xfa, 0xc6, 0xf9, 0x65, 0xf1, 0xc2, 0x60, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, + 0x6a, 0x8b, 0xec, 0x93, 0xeb, 0x93, 0x0a, 0x9c, 0x89, 0x83, 0x86, 0x62, 0x05, 0x5a, 0x04, 0x52, 0x25, 0x5a, 0x25, 0x52, 0x25, 0x52, 0x04, 0x4a, 0xc4, 0x49, 0xa4, 0x41, 0x84, 0x41, 0xa4, 0x71, 0xa7, 0xf9, 0x86, 0xe9, 0x82, 0xb8, 0x24, 0xd1, 0x66, 0xe9, 0xe3, 0xd0, 0x45, 0xe1, 0x86, 0xf1, 0x86, 0xf9, 0x66, 0xf1, 0x45, 0xe1, 0x04, 0xd9, 0xc3, 0xd0, 0xa2, 0xc0, 0x82, 0xb8, 0x82, 0xb0, 0x82, 0xa8, 0x82, 0xa8, 0x82, 0xa0, 0x82, 0xa8, 0x82, 0xa0, 0x82, 0xa0, 0x81, 0x98, 0x82, 0x90, 0x82, 0xa8, 0x45, 0xd9, 0x29, 0xfa, 0xe7, 0xd9, 0xab, 0xf2, 0x49, 0xfa, 0xc7, 0xd9, 0x65, 0xc1, 0x81, 0x68, 0xc3, 0xc0, 0xc2, 0x48, 0xe3, 0x50, 0xc5, 0x81, 0x08, 0xab, 0x47, 0xa2, 0xa5, 0x81, 0xa7, 0xaa, 0x89, 0xcb, 0xa6, 0xa2, 0x05, 0x8a, 0x03, 0xa1, 0x85, 0xb9, 0xa6, 0xd1, 0x24, 0xd9, 0xae, 0xeb, 0xc3, 0xa8, 0x82, 0xa8, 0x04, 0xd9, 0xe4, 0xd8, 0xe3, 0xc8, 0xa2, 0xb0, 0xa2, 0xb0, 0xe3, 0xc0, 0xc3, 0xc8, 0x86, 0xe1, 0x29, 0xfa, 0x28, 0xfa, 0x89, 0xfa, 0x89, 0xfa, 0x03, 0xb1, 0x81, 0x20, 0xa2, 0x18, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, + 0x29, 0x7b, 0x0c, 0x9c, 0x6c, 0xa4, 0x0a, 0x9c, 0x89, 0x83, 0x85, 0x62, 0x25, 0x5a, 0x05, 0x52, 0x25, 0x5a, 0x45, 0x5a, 0x24, 0x52, 0x04, 0x52, 0xe4, 0x49, 0xc4, 0x49, 0x84, 0x41, 0xe6, 0x99, 0x29, 0xfa, 0x04, 0xd9, 0xc3, 0xc0, 0x86, 0xe1, 0xc3, 0xd0, 0xc3, 0xd0, 0xc3, 0xc8, 0x04, 0xd9, 0x66, 0xe9, 0xa7, 0xf1, 0xe8, 0xf9, 0x29, 0xfa, 0x29, 0xfa, 0x29, 0xfa, 0xe8, 0xf9, 0xa7, 0xf9, 0x45, 0xe9, 0xc3, 0xc0, 0x82, 0xa8, 0x82, 0x98, 0x82, 0x98, 0x82, 0xa0, 0x82, 0xa8, 0x82, 0xa8, 0xa2, 0xa8, 0xa2, 0xa8, 0xa2, 0xb0, 0x04, 0xd9, 0x8a, 0xfa, 0xa7, 0xf9, 0x69, 0xda, 0xe3, 0xb0, 0x45, 0xd9, 0xc2, 0x68, 0x64, 0x69, 0xa4, 0x79, 0xe3, 0x60, 0x84, 0x81, 0xe6, 0x99, 0xa5, 0x79, 0x26, 0x9a, 0xa5, 0x99, 0x06, 0xaa, 0x05, 0x9a, 0x23, 0x69, 0xc2, 0x88, 0xa2, 0x78, 0xa6, 0xe1, 0x0d, 0xfb, 0x4d, 0xfb, 0x45, 0xe1, 0xe4, 0xd0, 0x25, 0xd9, 0x24, 0xd9, 0xe4, 0xd8, 0x24, 0xe1, 0x08, 0xf2, 0x08, 0xfa, 0x05, 0xe1, 0xc3, 0xd0, 0xe4, 0xd0, 0x04, 0xd9, 0x05, 0xe1, 0x28, 0xfa, 0x86, 0xb9, 0x81, 0x10, 0x82, 0x18, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, + 0x0a, 0x94, 0x4f, 0xc5, 0x2e, 0xbd, 0x2b, 0xa4, 0x47, 0x7b, 0x65, 0x62, 0x25, 0x5a, 0x05, 0x52, 0x25, 0x5a, 0x45, 0x5a, 0x25, 0x52, 0x04, 0x52, 0xe4, 0x51, 0xc4, 0x49, 0xa4, 0x49, 0x84, 0x41, 0xe6, 0xb1, 0xcc, 0xfa, 0x49, 0xfa, 0x87, 0xe9, 0xc3, 0xc0, 0xc3, 0xc0, 0xa2, 0xc0, 0xa2, 0xc0, 0x82, 0xb8, 0xa2, 0xb8, 0xa3, 0xc0, 0xa3, 0xc0, 0xc3, 0xc8, 0xe4, 0xd0, 0x04, 0xd1, 0xe3, 0xc8, 0xe4, 0xc8, 0xe4, 0xd0, 0xc3, 0xc8, 0x82, 0x90, 0x62, 0x88, 0x82, 0x90, 0x82, 0x98, 0x82, 0xa8, 0xa2, 0xb0, 0x82, 0xb0, 0xa2, 0xb0, 0x86, 0xe1, 0xaf, 0xfb, 0x69, 0xfa, 0x85, 0xd9, 0x04, 0xb9, 0x44, 0x91, 0xe8, 0x9a, 0xe4, 0x89, 0xc5, 0x81, 0x23, 0x69, 0x44, 0x69, 0x44, 0x69, 0xe3, 0x58, 0xa6, 0x89, 0x24, 0x81, 0xc6, 0x91, 0xc8, 0xba, 0x26, 0x92, 0xc2, 0x50, 0x6d, 0xeb, 0x66, 0xd1, 0x05, 0xe1, 0x30, 0xfc, 0x0b, 0xfb, 0x66, 0xe9, 0x45, 0xf9, 0x45, 0xf9, 0x28, 0xfa, 0xc7, 0xe9, 0xc3, 0xd0, 0xe3, 0xd0, 0xe4, 0xd0, 0x04, 0xd9, 0x04, 0xd9, 0xe4, 0xd0, 0xe3, 0xd0, 0xc3, 0xc8, 0x45, 0xd9, 0x65, 0xa1, 0x81, 0x18, 0xa2, 0x18, 0xa2, 0x20, 0xa2, 0x18, 0xa2, 0x18, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x20, + 0x2e, 0xc5, 0x90, 0xd5, 0x4f, 0xc5, 0x0a, 0x9c, 0x27, 0x83, 0x65, 0x62, 0x24, 0x5a, 0x04, 0x5a, 0x05, 0x5a, 0x45, 0x5a, 0x44, 0x52, 0x04, 0x4a, 0xe4, 0x49, 0xc4, 0x49, 0xa4, 0x49, 0x84, 0x49, 0x84, 0x41, 0xc6, 0xb1, 0xcb, 0xfa, 0xec, 0xfa, 0x45, 0xe1, 0x45, 0xe1, 0x08, 0xfa, 0x49, 0xfa, 0x4a, 0xf2, 0x08, 0xea, 0xc7, 0xd9, 0x86, 0xd1, 0x45, 0xc9, 0xe3, 0xb0, 0x82, 0x90, 0x82, 0x78, 0x82, 0x80, 0x82, 0x88, 0x82, 0x90, 0x82, 0x98, 0x82, 0x98, 0x82, 0x98, 0x81, 0x90, 0x61, 0x90, 0xa2, 0xa0, 0xc3, 0xa8, 0xe3, 0xb8, 0xeb, 0xfa, 0xeb, 0xfa, 0x6a, 0xfa, 0xc6, 0xd9, 0x24, 0x99, 0xa4, 0x89, 0xe5, 0x99, 0x47, 0x9a, 0x44, 0x71, 0x44, 0x61, 0xe3, 0x58, 0xa2, 0x40, 0xc2, 0x40, 0x04, 0x61, 0x04, 0x71, 0x45, 0x81, 0xc5, 0x99, 0xe6, 0x91, 0x64, 0x79, 0xe3, 0x90, 0x44, 0xb9, 0xce, 0xfb, 0xe8, 0xf9, 0x0c, 0xfb, 0xcb, 0xfa, 0x0d, 0xfb, 0xe8, 0xf9, 0xe4, 0xd8, 0x04, 0xd9, 0x04, 0xd9, 0xe4, 0xd0, 0xc3, 0xd0, 0xc3, 0xc0, 0xa2, 0xb8, 0x82, 0xb0, 0xa2, 0xb8, 0xc3, 0xb8, 0xc3, 0xc0, 0xe3, 0xd0, 0xa2, 0x68, 0xc2, 0x70, 0xc2, 0x80, 0x45, 0xb1, 0x07, 0xc2, 0xc6, 0xb9, 0x65, 0x99, 0xe3, 0x58, 0xa2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, + 0x0e, 0xc5, 0xcd, 0xbc, 0x6c, 0xac, 0xc9, 0x93, 0x27, 0x83, 0x65, 0x62, 0x25, 0x5a, 0x24, 0x5a, 0x24, 0x5a, 0x25, 0x5a, 0x45, 0x52, 0x24, 0x52, 0xe4, 0x51, 0xe4, 0x49, 0xa4, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x41, 0xa6, 0xc1, 0xa7, 0xf1, 0x87, 0xf1, 0x6a, 0xfa, 0x6a, 0xfa, 0x08, 0xfa, 0xe8, 0xf9, 0xe8, 0xf9, 0xe8, 0xf9, 0xe8, 0xf9, 0x45, 0xe1, 0xc3, 0xc8, 0xa3, 0xb8, 0xa2, 0xa0, 0x82, 0x90, 0x82, 0x88, 0x82, 0x80, 0x82, 0x80, 0x82, 0x78, 0x82, 0x78, 0xc3, 0x90, 0x82, 0x90, 0xc5, 0xb9, 0x6a, 0xea, 0x6a, 0xf2, 0x0b, 0xfb, 0x49, 0xfa, 0xa5, 0xd1, 0x65, 0xd9, 0xa5, 0xb9, 0x07, 0xb3, 0x06, 0xa2, 0x44, 0x79, 0xa2, 0x50, 0xc3, 0x48, 0xa2, 0x40, 0x82, 0x20, 0x82, 0x28, 0x04, 0x69, 0x24, 0x89, 0x65, 0x91, 0x67, 0xb2, 0xa7, 0xba, 0xa4, 0x71, 0xa6, 0xe1, 0x8e, 0xfb, 0x24, 0xc1, 0x86, 0xf9, 0xe4, 0xc8, 0x4c, 0xfb, 0x66, 0xf9, 0x25, 0xe9, 0x04, 0xe1, 0xe3, 0xd0, 0xc3, 0xc8, 0xa3, 0xc0, 0xa3, 0xb8, 0xa3, 0xb8, 0xa3, 0xb8, 0xa2, 0xb8, 0xa3, 0xb8, 0xc3, 0xc0, 0xc3, 0xc8, 0xe3, 0xd0, 0x82, 0xb8, 0xa2, 0xb8, 0xc3, 0xc0, 0x04, 0xd9, 0x8a, 0xfa, 0x69, 0xfa, 0x49, 0xfa, 0x69, 0xfa, 0x28, 0xea, 0x24, 0x71, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, + 0xea, 0x9b, 0xca, 0x93, 0xaa, 0x93, 0x89, 0x93, 0x47, 0x83, 0x85, 0x6a, 0x25, 0x62, 0x25, 0x5a, 0x25, 0x5a, 0x25, 0x5a, 0x45, 0x52, 0x24, 0x52, 0x04, 0x52, 0xe4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0x84, 0x49, 0x06, 0xa2, 0xe8, 0xf9, 0xa7, 0xf9, 0xc8, 0xf9, 0x4a, 0xfa, 0xab, 0xfa, 0xab, 0xfa, 0x29, 0xfa, 0xc7, 0xf9, 0x86, 0xf1, 0x82, 0xb0, 0x82, 0x98, 0x82, 0x98, 0x82, 0x90, 0x82, 0x90, 0x82, 0x90, 0x82, 0x90, 0x82, 0x98, 0x82, 0x98, 0x82, 0xa0, 0xa2, 0xa0, 0xa3, 0xb0, 0x82, 0xa8, 0xc3, 0xb8, 0x6a, 0xf2, 0x8e, 0xfb, 0xcb, 0xfa, 0x86, 0xb9, 0xe5, 0xc9, 0xc7, 0xb2, 0x69, 0xc3, 0x8a, 0xcb, 0x85, 0x91, 0x24, 0x69, 0xc3, 0x48, 0x81, 0x18, 0x82, 0x20, 0x61, 0x18, 0x25, 0x79, 0x24, 0x79, 0x65, 0x91, 0x06, 0xa2, 0x6a, 0xcb, 0x66, 0xa2, 0xca, 0xe2, 0x28, 0xda, 0x31, 0xfc, 0xc7, 0xe1, 0x25, 0xe1, 0x66, 0xd9, 0xca, 0xfa, 0xc3, 0xd0, 0xc3, 0xd0, 0xc3, 0xc8, 0xa3, 0xc0, 0xa3, 0xb8, 0xa2, 0xb8, 0xa2, 0xb0, 0xa3, 0xb8, 0xc3, 0xc0, 0xe3, 0xd0, 0xc3, 0xc0, 0xa2, 0xa0, 0x81, 0x88, 0x82, 0x88, 0x82, 0x88, 0x82, 0x90, 0x82, 0x90, 0x82, 0xa0, 0x82, 0xa8, 0x82, 0xb0, 0xa2, 0xb0, 0xc3, 0xb8, 0xc6, 0xd9, 0xc2, 0x30, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x20, + 0x89, 0x8b, 0x69, 0x83, 0x29, 0x83, 0x28, 0x83, 0x27, 0x83, 0xa6, 0x72, 0x65, 0x62, 0x25, 0x5a, 0x05, 0x5a, 0x25, 0x5a, 0x45, 0x5a, 0x44, 0x52, 0x04, 0x4a, 0xe4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xc4, 0x71, 0xa6, 0xd9, 0x25, 0xd9, 0x45, 0xe1, 0xa3, 0xb8, 0x04, 0xc1, 0xc7, 0xd9, 0x6a, 0xf2, 0xa7, 0xf1, 0x04, 0xd9, 0x04, 0xc9, 0xc3, 0xb8, 0xc3, 0xb0, 0xa3, 0xa0, 0xa2, 0xa0, 0xa2, 0x98, 0x82, 0x98, 0x25, 0xb1, 0x45, 0xb9, 0xc2, 0xa8, 0xc3, 0xb0, 0xc5, 0xc9, 0x03, 0xa9, 0xe3, 0xa8, 0xc7, 0xe9, 0xec, 0xfa, 0xa9, 0xfa, 0xcb, 0xfa, 0x08, 0xbb, 0xa7, 0xba, 0x87, 0xb2, 0x85, 0x89, 0x44, 0x79, 0x04, 0x59, 0xa2, 0x30, 0x61, 0x18, 0xa2, 0x28, 0x04, 0x69, 0x04, 0x81, 0x07, 0x9a, 0xc9, 0xc2, 0xa7, 0xba, 0x69, 0xc3, 0x2f, 0xfc, 0x4c, 0xeb, 0x8a, 0xf2, 0xae, 0xfb, 0x49, 0xf2, 0xe4, 0xd0, 0x49, 0xfa, 0x86, 0xe9, 0xe4, 0xd8, 0xe4, 0xd0, 0xc3, 0xc8, 0xc3, 0xc8, 0xe4, 0xd0, 0xe4, 0xd0, 0xe4, 0xd0, 0xc3, 0xc8, 0xa2, 0xb8, 0xa2, 0xa8, 0xa2, 0xa8, 0xc3, 0xb0, 0xe3, 0xa0, 0x61, 0x78, 0x81, 0x80, 0x81, 0x88, 0x81, 0x90, 0x81, 0x98, 0x82, 0xa8, 0xa2, 0xb8, 0x86, 0xe9, 0x08, 0xfa, 0x03, 0x69, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x20, + 0x08, 0x73, 0x08, 0x73, 0x46, 0x62, 0x66, 0x62, 0xe7, 0x7a, 0xc6, 0x7a, 0x85, 0x72, 0x45, 0x62, 0x05, 0x5a, 0x05, 0x5a, 0x25, 0x5a, 0x24, 0x52, 0x24, 0x52, 0x04, 0x4a, 0xc4, 0x49, 0xc4, 0x49, 0xa4, 0x51, 0xa4, 0x49, 0x84, 0x49, 0x83, 0x49, 0x84, 0x69, 0x03, 0x89, 0x82, 0x98, 0x82, 0x98, 0x82, 0xa0, 0xa2, 0xa8, 0x82, 0xa0, 0x82, 0xa0, 0x82, 0xa0, 0xa2, 0xb0, 0xa3, 0xb8, 0xc3, 0xb8, 0xc3, 0xc0, 0xc3, 0xc0, 0xc3, 0xc0, 0xc3, 0xc0, 0x24, 0xd1, 0xe3, 0xc8, 0x85, 0xe1, 0xc6, 0xe9, 0x24, 0xd1, 0xc6, 0xb9, 0x8a, 0xfa, 0x2c, 0xfb, 0x8a, 0xf2, 0xc3, 0xb8, 0xa9, 0xfa, 0x69, 0xcb, 0xeb, 0xdb, 0x27, 0xba, 0x85, 0x89, 0x65, 0x79, 0xa2, 0x50, 0xe3, 0x48, 0xa2, 0x40, 0x04, 0x61, 0x04, 0x79, 0xa7, 0xa1, 0xc6, 0xa9, 0x26, 0xb2, 0x8a, 0xd3, 0xe8, 0xc2, 0x47, 0xea, 0x8d, 0xfb, 0x49, 0xfa, 0xc7, 0xf9, 0x29, 0xfa, 0x86, 0xe9, 0x25, 0xe9, 0xaa, 0xfa, 0x04, 0xe1, 0xe4, 0xd8, 0xe4, 0xc8, 0xa3, 0xb8, 0x82, 0xb0, 0x82, 0xa0, 0x62, 0xa0, 0x82, 0xa0, 0x82, 0xa0, 0x82, 0xa8, 0x82, 0xb0, 0x66, 0xe1, 0x8b, 0xfa, 0xe3, 0xa0, 0x81, 0x88, 0x81, 0x90, 0xe3, 0xc0, 0xe7, 0xe9, 0x49, 0xfa, 0x6a, 0xfa, 0xe7, 0xf1, 0x24, 0xa1, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x20, + 0x46, 0x5a, 0x46, 0x5a, 0xe5, 0x49, 0x05, 0x52, 0xc7, 0x7a, 0xc6, 0x7a, 0x86, 0x72, 0x65, 0x6a, 0x05, 0x5a, 0xe4, 0x51, 0x04, 0x52, 0x24, 0x52, 0x05, 0x52, 0xe4, 0x49, 0xc4, 0x49, 0xc4, 0x49, 0xc4, 0x51, 0xa4, 0x49, 0x06, 0x9a, 0xa6, 0xe9, 0x82, 0xb0, 0x82, 0xa0, 0x82, 0x98, 0x82, 0x90, 0x82, 0x98, 0x82, 0x98, 0x82, 0x98, 0x82, 0x90, 0x82, 0x98, 0x82, 0x98, 0x82, 0x98, 0x82, 0xa0, 0x82, 0xa8, 0x82, 0xa8, 0x82, 0xb0, 0xa2, 0xb8, 0xa3, 0xc0, 0xc3, 0xc0, 0xc3, 0xc8, 0xc3, 0xd0, 0xe3, 0xd0, 0xc3, 0xc8, 0x0b, 0xf3, 0xec, 0xfa, 0xeb, 0xfa, 0x65, 0xd1, 0x08, 0xf2, 0x08, 0xbb, 0x28, 0xcb, 0x47, 0xb2, 0x65, 0x91, 0x44, 0x79, 0xe3, 0x68, 0x24, 0x71, 0x24, 0x79, 0x65, 0x81, 0x86, 0x99, 0xe7, 0xa9, 0x48, 0xb2, 0x46, 0xb2, 0xa7, 0xba, 0x4c, 0xe4, 0x8e, 0xfb, 0x69, 0xfa, 0xcb, 0xfa, 0xec, 0xfa, 0x65, 0xe9, 0xab, 0xfa, 0xc7, 0xf9, 0xc7, 0xf9, 0x25, 0xe9, 0xe3, 0xd0, 0xc3, 0xc8, 0xa3, 0xc0, 0xa2, 0xb8, 0xa2, 0xb8, 0xa2, 0xb0, 0xa2, 0xb8, 0xa2, 0xb8, 0xa3, 0xb8, 0x04, 0xd1, 0xe8, 0xf9, 0x4a, 0xfa, 0xa2, 0xa0, 0x82, 0x90, 0x82, 0x98, 0xe3, 0xb8, 0x65, 0xd1, 0x03, 0xa1, 0xc2, 0x78, 0xc2, 0x48, 0xc2, 0x20, 0xe2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, + 0x84, 0x39, 0xa4, 0x39, 0xa5, 0x41, 0xe5, 0x49, 0xa6, 0x72, 0xe6, 0x7a, 0xa6, 0x72, 0x86, 0x72, 0x45, 0x62, 0x05, 0x5a, 0x04, 0x52, 0x04, 0x52, 0xc4, 0x49, 0xa4, 0x41, 0xc4, 0x49, 0xc4, 0x49, 0xa4, 0x49, 0x06, 0xba, 0xc3, 0xc8, 0x81, 0x90, 0x81, 0x80, 0x61, 0x78, 0x61, 0x70, 0x61, 0x68, 0x61, 0x60, 0x61, 0x60, 0x82, 0x60, 0x82, 0x68, 0x82, 0x68, 0x82, 0x70, 0x82, 0x78, 0x82, 0x78, 0x82, 0x78, 0x82, 0x80, 0x82, 0x90, 0x82, 0x98, 0x82, 0xa8, 0x82, 0xa8, 0xa2, 0xb8, 0x25, 0xd1, 0x45, 0xd9, 0x45, 0xd1, 0x0c, 0xf3, 0x8b, 0xfa, 0x6a, 0xfa, 0x45, 0xe1, 0x06, 0xaa, 0xaa, 0xc3, 0x87, 0xba, 0xc8, 0xca, 0xe6, 0xa1, 0x45, 0x99, 0x04, 0x81, 0x04, 0x89, 0x04, 0x81, 0x24, 0x89, 0x45, 0x91, 0x27, 0xb2, 0x08, 0xc3, 0xe8, 0xc2, 0xc7, 0xca, 0xab, 0xe3, 0x68, 0xca, 0xe7, 0xe1, 0x45, 0xe1, 0x28, 0xfa, 0x6d, 0xfb, 0xce, 0xfb, 0x0b, 0xfb, 0x29, 0xfa, 0x89, 0xfa, 0x25, 0xe9, 0xe4, 0xd8, 0xe4, 0xd8, 0xe3, 0xd0, 0xc3, 0xc8, 0xc3, 0xc8, 0xc3, 0xc8, 0xc3, 0xc8, 0xc3, 0xc8, 0xc3, 0xc8, 0x45, 0xe1, 0x84, 0xc1, 0xc2, 0x50, 0xc2, 0x48, 0xc2, 0x38, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x18, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x20, 0xa2, 0x20, + 0x44, 0x31, 0x44, 0x31, 0x64, 0x31, 0x84, 0x39, 0x66, 0x6a, 0xe6, 0x7a, 0xa6, 0x72, 0x86, 0x6a, 0x45, 0x62, 0x25, 0x5a, 0x04, 0x52, 0x05, 0x52, 0xe4, 0x49, 0xa4, 0x49, 0xc4, 0x49, 0xc4, 0x51, 0xc4, 0x51, 0x64, 0x71, 0x82, 0xa0, 0x82, 0x90, 0x82, 0x90, 0x82, 0x90, 0x81, 0x90, 0x81, 0x90, 0x82, 0x90, 0x82, 0x88, 0x82, 0x80, 0x82, 0x80, 0x82, 0x78, 0x81, 0x78, 0x82, 0x78, 0x82, 0x78, 0x82, 0x88, 0x82, 0x90, 0x82, 0xa0, 0x82, 0xb0, 0xa2, 0xb8, 0xa2, 0xc0, 0xe3, 0xc8, 0xe4, 0xd0, 0x04, 0xd9, 0x65, 0xe9, 0x70, 0xfc, 0x6a, 0xfa, 0xcb, 0xfa, 0x0c, 0xfb, 0xaa, 0xf2, 0x09, 0xe3, 0x69, 0xdb, 0x47, 0xba, 0x07, 0xb2, 0xa6, 0xa1, 0x44, 0x89, 0x85, 0x99, 0x24, 0x91, 0xa6, 0xa9, 0x2a, 0xd3, 0x67, 0xba, 0x86, 0xb2, 0x08, 0xc3, 0xa8, 0xd2, 0x2b, 0xfb, 0xcc, 0xfb, 0x6d, 0xfb, 0x0c, 0xf3, 0x89, 0xfa, 0x25, 0xc9, 0x0b, 0xfb, 0x0d, 0xfc, 0xca, 0xfa, 0x6c, 0xfb, 0x8c, 0xfb, 0x69, 0xfa, 0x86, 0xe9, 0x04, 0xe1, 0x04, 0xd9, 0xe4, 0xd0, 0xe4, 0xd0, 0xe4, 0xd0, 0x24, 0xd1, 0x65, 0xe9, 0x84, 0xd9, 0x43, 0x61, 0x03, 0x39, 0xe2, 0x28, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xa2, 0x20, + 0x03, 0x29, 0xe3, 0x20, 0x64, 0x29, 0xe5, 0x39, 0xa6, 0x62, 0xc7, 0x7a, 0xa6, 0x72, 0x86, 0x6a, 0x45, 0x62, 0x05, 0x5a, 0x25, 0x5a, 0x25, 0x52, 0x24, 0x52, 0xe4, 0x49, 0xe4, 0x51, 0xc4, 0x51, 0xa4, 0x51, 0xa4, 0x49, 0x64, 0x61, 0xa2, 0xa0, 0x82, 0xa8, 0x82, 0xa8, 0x82, 0xa8, 0x82, 0xa8, 0x82, 0xa8, 0x82, 0xa8, 0x82, 0xb0, 0x82, 0xb0, 0x82, 0xb0, 0x82, 0xb0, 0xa2, 0xb8, 0xa3, 0xb8, 0xa3, 0xb8, 0xa3, 0xb8, 0xa3, 0xc0, 0xc3, 0xc0, 0xc3, 0xc8, 0xc3, 0xc8, 0xe3, 0xd8, 0xc3, 0xd0, 0xc3, 0xd0, 0x69, 0xea, 0x2d, 0xfb, 0xc7, 0xf9, 0x10, 0xfc, 0x29, 0xfa, 0x0d, 0xfc, 0x46, 0xe2, 0xa8, 0xca, 0x88, 0xba, 0x68, 0xca, 0x07, 0xc2, 0x07, 0xba, 0x89, 0xca, 0xa6, 0xb1, 0x07, 0xc2, 0x26, 0xba, 0xeb, 0xd3, 0x69, 0xbb, 0xac, 0xfb, 0x52, 0xfd, 0xb2, 0xfc, 0x8a, 0xea, 0x65, 0xf1, 0x8a, 0xfa, 0x65, 0xd1, 0xc7, 0xf9, 0x4d, 0xfb, 0x6d, 0xfb, 0x6d, 0xfb, 0x4c, 0xfb, 0x4b, 0xfb, 0x4c, 0xfb, 0x4d, 0xfb, 0x4d, 0xfb, 0x4d, 0xfb, 0x6d, 0xfb, 0x6d, 0xfb, 0xec, 0xfa, 0xe7, 0xf9, 0xa4, 0x99, 0xc4, 0x61, 0x84, 0x59, 0x63, 0x49, 0x03, 0x31, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xa2, 0x20, + 0xe2, 0x20, 0x64, 0x29, 0x46, 0x4a, 0xe7, 0x5a, 0xe7, 0x62, 0x07, 0x7b, 0xe7, 0x7a, 0xa6, 0x72, 0x66, 0x6a, 0x25, 0x5a, 0x25, 0x5a, 0x25, 0x5a, 0x24, 0x52, 0xe4, 0x51, 0xc4, 0x51, 0xc4, 0x51, 0xa4, 0x51, 0xa4, 0x49, 0xa4, 0x61, 0x65, 0xe1, 0xa2, 0xa0, 0x82, 0x98, 0x82, 0xa8, 0xc7, 0xe1, 0x6a, 0xfa, 0x6a, 0xfa, 0x4a, 0xfa, 0x29, 0xfa, 0xe8, 0xf9, 0xc7, 0xf9, 0x86, 0xf1, 0x25, 0xe1, 0x04, 0xd1, 0xe4, 0xc8, 0xe4, 0xc8, 0xc3, 0xc0, 0x82, 0xb0, 0x82, 0xa0, 0xc3, 0xb0, 0xaa, 0xea, 0xac, 0xfa, 0x8b, 0xfa, 0x69, 0xfa, 0x25, 0xf1, 0x89, 0xea, 0xec, 0xfa, 0x2d, 0xfb, 0x4c, 0xf3, 0x89, 0xf2, 0x27, 0xc2, 0x07, 0xba, 0x48, 0xba, 0x88, 0xba, 0x47, 0xba, 0xa9, 0xc2, 0xc9, 0xca, 0x29, 0xc3, 0x66, 0xaa, 0xa9, 0xe2, 0x4c, 0xfb, 0xec, 0xfa, 0x0c, 0xfb, 0x8a, 0xe2, 0xa7, 0xf1, 0x66, 0xf9, 0xe7, 0xf9, 0xed, 0xfa, 0x6e, 0xfb, 0xe8, 0xf9, 0xc8, 0xf9, 0x6a, 0xfa, 0xec, 0xfa, 0x4c, 0xfb, 0x2c, 0xfb, 0x0c, 0xfb, 0x2c, 0xfb, 0x8a, 0xfa, 0xe4, 0xd8, 0xc3, 0xd0, 0x44, 0x99, 0x05, 0x72, 0xe4, 0x61, 0xc4, 0x59, 0x84, 0x51, 0x43, 0x49, 0x02, 0x31, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x20, 0xa2, 0x20, 0xa2, 0x18, + 0xe3, 0x20, 0xc5, 0x39, 0x66, 0x4a, 0xc6, 0x52, 0xa6, 0x5a, 0xc6, 0x6a, 0xe7, 0x7a, 0xa6, 0x72, 0x86, 0x6a, 0x25, 0x5a, 0x04, 0x5a, 0x04, 0x5a, 0x04, 0x52, 0xe4, 0x51, 0xa4, 0x51, 0xc4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0x84, 0x49, 0x84, 0x89, 0x86, 0xe9, 0xe4, 0xd0, 0x81, 0xa0, 0xa6, 0xd9, 0xe8, 0xf1, 0xe8, 0xf1, 0x8a, 0xfa, 0xcc, 0xfa, 0xec, 0xfa, 0xec, 0xfa, 0x6a, 0xfa, 0x29, 0xfa, 0x09, 0xfa, 0xe8, 0xf9, 0xa7, 0xf9, 0x66, 0xf1, 0xc7, 0xf1, 0x66, 0xf1, 0xa7, 0xf9, 0x29, 0xfa, 0xcb, 0xfa, 0x6c, 0xfb, 0x0e, 0xfc, 0x0b, 0xfb, 0x4c, 0xfb, 0x49, 0xfa, 0xab, 0xfa, 0xcf, 0xfb, 0x49, 0xfa, 0x69, 0xda, 0x48, 0xea, 0x48, 0xba, 0x09, 0xcb, 0x87, 0xb2, 0xc4, 0x91, 0xe8, 0xc2, 0x2a, 0xc3, 0x89, 0xf2, 0xca, 0xf2, 0xae, 0xfb, 0x6c, 0xeb, 0xc7, 0xf9, 0xa7, 0xf9, 0x0b, 0xfb, 0x04, 0xf1, 0x2c, 0xfb, 0xac, 0xfb, 0x6c, 0xfb, 0x6d, 0xfb, 0xab, 0xfa, 0x66, 0xf1, 0x25, 0xe9, 0xa7, 0xf1, 0x8b, 0xfa, 0x4d, 0xfb, 0x4d, 0xfb, 0x8e, 0xfb, 0xec, 0xf2, 0xa6, 0xd9, 0xc7, 0xe1, 0xaa, 0xfa, 0xe4, 0x69, 0xc4, 0x59, 0xa4, 0x59, 0x64, 0x51, 0x43, 0x39, 0x02, 0x29, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x20, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, + 0x03, 0x29, 0x43, 0x29, 0xa4, 0x39, 0x84, 0x31, 0x64, 0x31, 0x46, 0x62, 0xa6, 0x72, 0xa6, 0x72, 0x86, 0x6a, 0x45, 0x5a, 0x05, 0x52, 0x04, 0x5a, 0x04, 0x52, 0xe4, 0x51, 0xc4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x41, 0x64, 0x71, 0x03, 0x79, 0xe3, 0x98, 0x29, 0xfa, 0x66, 0xe9, 0xc3, 0xd0, 0xa3, 0xc8, 0xc3, 0xd0, 0x04, 0xe1, 0x66, 0xe9, 0xc8, 0xf1, 0x29, 0xfa, 0x4a, 0xfa, 0x4a, 0xfa, 0xa7, 0xf9, 0x66, 0xf9, 0x29, 0xfa, 0x8a, 0xfa, 0x4c, 0xfb, 0x6c, 0xfb, 0x6d, 0xfb, 0x0b, 0xfb, 0x08, 0xea, 0xa7, 0xe9, 0x6e, 0xf3, 0xc8, 0xf9, 0xcb, 0xfa, 0x0c, 0xfb, 0x6d, 0xfb, 0x6d, 0xfb, 0x0a, 0xf3, 0xca, 0xda, 0x68, 0xda, 0x29, 0xd3, 0x09, 0xdb, 0xad, 0xfb, 0x4f, 0xfc, 0x0d, 0xfc, 0x0f, 0xfc, 0x86, 0xf9, 0x6c, 0xfb, 0x86, 0xe9, 0x49, 0xfa, 0xc8, 0xf1, 0xab, 0xfa, 0x8e, 0xfb, 0x8d, 0xfb, 0x6d, 0xfb, 0x4d, 0xfb, 0x4d, 0xfb, 0x29, 0xfa, 0x25, 0xe9, 0x05, 0xe1, 0x66, 0xe9, 0x6a, 0xfa, 0x2d, 0xfb, 0xf0, 0xfb, 0x2b, 0xf3, 0x47, 0xc2, 0xc4, 0x79, 0xc4, 0x51, 0xc4, 0x59, 0xa4, 0x59, 0x84, 0x51, 0x43, 0x41, 0x02, 0x31, 0xe2, 0x28, 0xe2, 0x20, 0xe2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x20, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, + 0x03, 0x29, 0x03, 0x29, 0x03, 0x21, 0xe3, 0x20, 0x23, 0x29, 0x05, 0x5a, 0xa6, 0x72, 0xa7, 0x72, 0xc6, 0x72, 0x66, 0x62, 0x25, 0x5a, 0x04, 0x52, 0xe4, 0x51, 0xc4, 0x51, 0xc4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0xa4, 0x49, 0x83, 0x59, 0x29, 0xea, 0xcc, 0xfa, 0x4a, 0xfa, 0xe8, 0xf1, 0x86, 0xe1, 0x25, 0xd9, 0xc3, 0xc8, 0xa3, 0xc8, 0xc8, 0xf9, 0x45, 0xf1, 0xe8, 0xf9, 0xab, 0xfa, 0xcb, 0xfa, 0x4c, 0xfb, 0x4c, 0xfb, 0x4d, 0xfb, 0x29, 0xf2, 0x08, 0xfa, 0x66, 0xf9, 0x49, 0xfa, 0xc7, 0xe9, 0x0d, 0xfb, 0x0b, 0xfb, 0x8b, 0xfa, 0x0c, 0xfb, 0x69, 0xfa, 0x4d, 0xfb, 0x8c, 0xfb, 0x4c, 0xfb, 0x91, 0xfc, 0xad, 0xfb, 0x50, 0xfc, 0x0f, 0xfc, 0x6d, 0xfb, 0x8c, 0xfb, 0x45, 0xf1, 0xa7, 0xf9, 0x25, 0xe9, 0x0c, 0xfb, 0x6c, 0xfb, 0x70, 0xfc, 0x6d, 0xfb, 0xcc, 0xfa, 0x8e, 0xfb, 0x6e, 0xfb, 0x8e, 0xfb, 0x8e, 0xfb, 0x2d, 0xfb, 0x29, 0xfa, 0x25, 0xe9, 0x25, 0xe1, 0x25, 0xe1, 0xe8, 0xf1, 0xcb, 0xea, 0xe2, 0x20, 0x64, 0x49, 0xe4, 0x59, 0xe4, 0x59, 0xc4, 0x51, 0xa4, 0x51, 0x84, 0x41, 0x43, 0x31, 0xe2, 0x28, 0xe2, 0x20, 0xc2, 0x20, 0xe2, 0x20, 0xc2, 0x20, 0xe2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, + 0xe2, 0x20, 0xe2, 0x20, 0xe3, 0x20, 0xe3, 0x20, 0x23, 0x29, 0xc5, 0x49, 0x86, 0x72, 0xc7, 0x72, 0xc7, 0x72, 0x86, 0x6a, 0x45, 0x5a, 0x05, 0x52, 0xe4, 0x51, 0xc4, 0x51, 0xa4, 0x51, 0xa4, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x63, 0x49, 0x07, 0xb2, 0x2d, 0xfb, 0x8e, 0xfb, 0x4d, 0xfb, 0x4d, 0xfb, 0x2d, 0xfb, 0x0c, 0xfb, 0xe8, 0xf9, 0x6a, 0xfa, 0xcb, 0xfa, 0x0c, 0xfb, 0x4d, 0xfb, 0x4d, 0xfb, 0xcb, 0xfa, 0x66, 0xe9, 0x25, 0xe1, 0xe4, 0xe0, 0xec, 0xfa, 0x89, 0xfa, 0x2e, 0xfc, 0x25, 0xf1, 0x6c, 0xf3, 0x70, 0xfc, 0xef, 0xfb, 0x2c, 0xfb, 0x2f, 0xfc, 0xec, 0xfa, 0x6e, 0xfb, 0x30, 0xfc, 0xae, 0xfb, 0x6c, 0xfb, 0x8c, 0xfb, 0x86, 0xf9, 0x0b, 0xfb, 0x29, 0xfa, 0x48, 0xfa, 0xed, 0xfa, 0x0d, 0xfc, 0xad, 0xfb, 0x8e, 0xfb, 0xcd, 0xfb, 0x8d, 0xfb, 0x6a, 0xfa, 0x0d, 0xfb, 0xaf, 0xfb, 0xae, 0xfb, 0xef, 0xfb, 0x4d, 0xfb, 0x0c, 0xfb, 0x4a, 0xfa, 0x66, 0xe9, 0xe4, 0xd8, 0xab, 0xfa, 0xa1, 0x30, 0x43, 0x39, 0xc4, 0x51, 0xe5, 0x59, 0xc5, 0x59, 0xc5, 0x51, 0xa4, 0x49, 0x63, 0x41, 0x23, 0x31, 0xe2, 0x20, 0xe2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0x82, 0x18, + 0xe2, 0x20, 0xe2, 0x20, 0xe2, 0x18, 0xc2, 0x18, 0x03, 0x21, 0x84, 0x39, 0x46, 0x5a, 0xa7, 0x72, 0xc7, 0x72, 0x86, 0x62, 0x45, 0x5a, 0x05, 0x52, 0xe4, 0x51, 0xc4, 0x51, 0xa4, 0x51, 0xa4, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x43, 0x89, 0xe4, 0xd8, 0x04, 0xe1, 0x28, 0xfa, 0x0c, 0xfb, 0xec, 0xfa, 0x0c, 0xfb, 0xcb, 0xfa, 0x49, 0xfa, 0xec, 0xfa, 0x6d, 0xfb, 0x4d, 0xfb, 0xaa, 0xfa, 0x66, 0xe9, 0xc3, 0xc8, 0xe4, 0xd0, 0xe4, 0xd0, 0x04, 0xd9, 0x8a, 0xfa, 0xac, 0xfb, 0x69, 0xf2, 0x45, 0xe9, 0x08, 0xea, 0xa8, 0xfa, 0xec, 0xfa, 0xec, 0xfa, 0x89, 0xfa, 0x0b, 0xfb, 0x2b, 0xfb, 0x4e, 0xfb, 0xaf, 0xfb, 0x6d, 0xfb, 0xec, 0xea, 0x29, 0xfa, 0xa6, 0xf9, 0x28, 0xfa, 0x6d, 0xfc, 0x4f, 0xfc, 0x0f, 0xfc, 0xac, 0xfb, 0x8d, 0xfb, 0x8e, 0xfb, 0xad, 0xfb, 0x8d, 0xfb, 0x8b, 0xfa, 0x2a, 0xfa, 0xf0, 0xfb, 0xcf, 0xfb, 0x51, 0xfc, 0x6c, 0xfb, 0x4c, 0xfb, 0x0c, 0xfb, 0xec, 0xfa, 0x48, 0xf2, 0xa2, 0x28, 0x03, 0x31, 0x84, 0x49, 0xa4, 0x51, 0xc4, 0x51, 0xc4, 0x49, 0xa4, 0x49, 0x84, 0x41, 0x43, 0x31, 0x02, 0x29, 0xe2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0x82, 0x10, 0x82, 0x10, + 0xe3, 0x20, 0xe2, 0x20, 0x03, 0x21, 0x03, 0x21, 0x03, 0x21, 0x43, 0x29, 0x05, 0x52, 0x87, 0x6a, 0xc7, 0x72, 0xa6, 0x6a, 0x65, 0x5a, 0x05, 0x52, 0xe4, 0x51, 0xa4, 0x51, 0xa4, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x64, 0x49, 0x64, 0x49, 0x63, 0x41, 0xc6, 0xa1, 0x89, 0xf2, 0x69, 0xfa, 0xca, 0xfa, 0x2c, 0xfb, 0x4c, 0xfb, 0x07, 0xe2, 0xc2, 0xb8, 0x63, 0x91, 0x04, 0xc1, 0x82, 0x88, 0xa2, 0x98, 0xe3, 0x98, 0xe3, 0xb0, 0xc3, 0xc8, 0xc3, 0xc0, 0xe4, 0xd0, 0xa2, 0xb8, 0x45, 0xd9, 0xab, 0xfa, 0x2b, 0xfb, 0x0a, 0xfb, 0x48, 0xfa, 0xae, 0xfb, 0x8f, 0xfc, 0xa6, 0xf1, 0x28, 0xfa, 0x24, 0xd9, 0x49, 0xfa, 0x8e, 0xfb, 0x31, 0xfc, 0xa7, 0xe9, 0x04, 0xe1, 0x04, 0xe9, 0xc7, 0xf1, 0xaa, 0xfa, 0x0c, 0xfb, 0xcc, 0xfb, 0x2d, 0xfc, 0xac, 0xfb, 0xee, 0xfb, 0x0f, 0xfc, 0x6c, 0xfb, 0x8d, 0xfb, 0x4e, 0xfb, 0xcd, 0xfb, 0x6d, 0xfb, 0x0c, 0xfb, 0xe8, 0xf9, 0xcf, 0xfb, 0x51, 0xfc, 0xcf, 0xfb, 0x4c, 0xfb, 0x6c, 0xfb, 0x8e, 0xfb, 0xc7, 0xc1, 0xa2, 0x18, 0xe2, 0x28, 0x43, 0x39, 0x84, 0x41, 0x84, 0x41, 0x84, 0x39, 0x63, 0x39, 0x43, 0x39, 0x23, 0x31, 0x02, 0x29, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0x82, 0x10, 0x82, 0x10, + 0x03, 0x21, 0x03, 0x21, 0x23, 0x21, 0x03, 0x21, 0xe3, 0x20, 0xe2, 0x20, 0x84, 0x41, 0x86, 0x6a, 0xc7, 0x6a, 0x86, 0x6a, 0x66, 0x5a, 0x25, 0x5a, 0xe5, 0x51, 0xc4, 0x51, 0xa4, 0x49, 0x84, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0x84, 0x49, 0x84, 0x49, 0x64, 0x59, 0x69, 0xea, 0xeb, 0xfa, 0x2b, 0xfb, 0x2b, 0xfb, 0x0b, 0xfb, 0x07, 0xea, 0xe2, 0xc0, 0x03, 0x89, 0xc4, 0x51, 0xa8, 0x9a, 0xc5, 0xd1, 0x65, 0xb1, 0x61, 0x60, 0x45, 0xc1, 0xc3, 0xc8, 0xc3, 0xc8, 0xc3, 0xc0, 0x82, 0xa8, 0x87, 0xe9, 0x6a, 0xfa, 0xeb, 0xfa, 0x0a, 0xfb, 0x49, 0xf2, 0xf2, 0xfc, 0x90, 0xfc, 0xe8, 0xf9, 0x24, 0xe1, 0x45, 0xe9, 0xc7, 0xc1, 0x66, 0xe1, 0x29, 0xea, 0x82, 0xb8, 0x04, 0xe1, 0x04, 0xd1, 0x25, 0xe1, 0xad, 0xfb, 0x6f, 0xfc, 0x4f, 0xfc, 0x2c, 0xfc, 0x0d, 0xfc, 0xcd, 0xfb, 0xcd, 0xfb, 0xaf, 0xfb, 0xae, 0xfb, 0x6c, 0xfb, 0xae, 0xfb, 0xcf, 0xfb, 0x8c, 0xfb, 0x6d, 0xfb, 0x4d, 0xfb, 0xc8, 0xf9, 0x31, 0xfc, 0xd0, 0xfb, 0x0d, 0xfb, 0x2d, 0xfb, 0x2d, 0xfb, 0x69, 0xe2, 0x81, 0x10, 0xc2, 0x20, 0x23, 0x31, 0x64, 0x39, 0x64, 0x31, 0x43, 0x31, 0x43, 0x31, 0x23, 0x31, 0x03, 0x29, 0xe2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0x82, 0x18, 0x82, 0x10, 0x82, 0x10, 0x82, 0x10, + 0x03, 0x21, 0x03, 0x21, 0x03, 0x29, 0x03, 0x21, 0x03, 0x21, 0xe3, 0x20, 0x43, 0x31, 0x46, 0x5a, 0xa7, 0x6a, 0x86, 0x62, 0x66, 0x62, 0x05, 0x5a, 0xe5, 0x51, 0xc4, 0x51, 0xa4, 0x51, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0x84, 0x49, 0x63, 0x41, 0x68, 0xe2, 0x8a, 0xfa, 0x68, 0xfa, 0x07, 0xf2, 0x84, 0xe1, 0x23, 0xc1, 0x43, 0x81, 0x63, 0x49, 0x64, 0x41, 0x86, 0x5a, 0x88, 0xba, 0x8e, 0xfc, 0x27, 0xc2, 0x08, 0xe2, 0xc3, 0xc8, 0xe4, 0xd0, 0xa2, 0xb0, 0xc3, 0xb8, 0xe8, 0xf9, 0x09, 0xfa, 0xeb, 0xfa, 0xeb, 0xfa, 0x04, 0xe1, 0xea, 0xfa, 0x90, 0xfc, 0x6a, 0xfa, 0xc3, 0xd0, 0x49, 0xfa, 0x86, 0xf9, 0xaa, 0xfa, 0x69, 0xfa, 0xa3, 0xd0, 0xaa, 0xfa, 0x25, 0xe1, 0xc3, 0xc0, 0xc7, 0xe9, 0xad, 0xfb, 0x4e, 0xfc, 0xcc, 0xfb, 0xed, 0xfb, 0x0e, 0xfc, 0xcd, 0xfb, 0x6d, 0xfb, 0xef, 0xfb, 0xf0, 0xfb, 0x6c, 0xfb, 0x6c, 0xfb, 0x30, 0xfc, 0x6c, 0xfb, 0x8d, 0xfb, 0x6d, 0xfb, 0x2c, 0xfb, 0x09, 0xfa, 0x4d, 0xfb, 0x08, 0xca, 0x29, 0xe2, 0x25, 0x91, 0x81, 0x18, 0xa2, 0x18, 0xc2, 0x20, 0x03, 0x29, 0x64, 0x39, 0x43, 0x31, 0x43, 0x31, 0x23, 0x31, 0x23, 0x29, 0x02, 0x29, 0xe2, 0x20, 0xc2, 0x20, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0x82, 0x10, 0x82, 0x10, 0x82, 0x10, 0x82, 0x10, + 0xe2, 0x28, 0xe3, 0x20, 0xe2, 0x20, 0xe2, 0x20, 0xe3, 0x20, 0x03, 0x29, 0x43, 0x29, 0x05, 0x52, 0x87, 0x62, 0x86, 0x62, 0x66, 0x5a, 0x25, 0x52, 0xc5, 0x51, 0xa4, 0x51, 0xa4, 0x51, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0x84, 0x49, 0x84, 0x49, 0x64, 0x41, 0x63, 0x61, 0x63, 0x71, 0x63, 0x71, 0x64, 0x51, 0x64, 0x41, 0x64, 0x49, 0x64, 0x41, 0x46, 0x5a, 0x8b, 0x8c, 0xa8, 0xab, 0x8c, 0xfb, 0x8a, 0xfa, 0xc3, 0xd0, 0xe4, 0xc8, 0x82, 0xa8, 0x04, 0xd1, 0x49, 0xfa, 0xc8, 0xf9, 0x8b, 0xfa, 0xeb, 0xfa, 0xe3, 0xd0, 0x69, 0xfa, 0x6f, 0xfc, 0x8d, 0xfb, 0xc3, 0xd0, 0xe7, 0xf1, 0x4d, 0xfb, 0x2c, 0xfb, 0x6d, 0xfb, 0xe4, 0xe0, 0x6d, 0xfb, 0x8a, 0xfa, 0xab, 0xfa, 0xe7, 0xf9, 0x2c, 0xfb, 0x6c, 0xfb, 0xee, 0xfb, 0x0d, 0xfc, 0xac, 0xfb, 0x0f, 0xfc, 0xac, 0xfb, 0xce, 0xfb, 0x8d, 0xfb, 0x8e, 0xfb, 0xf0, 0xfb, 0x6c, 0xfb, 0xce, 0xfb, 0x4c, 0xfb, 0x6c, 0xfb, 0x8d, 0xfb, 0x6d, 0xfb, 0x0c, 0xfb, 0x69, 0xfa, 0x61, 0x08, 0x81, 0x10, 0x82, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xe2, 0x20, 0x23, 0x31, 0x43, 0x31, 0x43, 0x31, 0x23, 0x31, 0x23, 0x29, 0x03, 0x29, 0x02, 0x21, 0xc2, 0x20, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0x82, 0x18, 0x82, 0x10, 0x82, 0x10, 0x82, 0x10, 0xa2, 0x10, 0xa2, 0x18, + 0xc2, 0x28, 0xc2, 0x20, 0xa2, 0x18, 0x82, 0x18, 0xc2, 0x18, 0x03, 0x21, 0x23, 0x29, 0xc5, 0x41, 0x87, 0x62, 0x86, 0x62, 0x46, 0x5a, 0x05, 0x52, 0xe4, 0x51, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x51, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0x84, 0x49, 0x84, 0x41, 0x84, 0x41, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x64, 0x41, 0x64, 0x41, 0x64, 0x41, 0x63, 0x41, 0xea, 0x83, 0xa9, 0x7c, 0xa7, 0x64, 0xea, 0xea, 0xe4, 0xd8, 0xe4, 0xc8, 0x82, 0xa8, 0xa7, 0xe9, 0x4a, 0xfa, 0xc8, 0xf9, 0x6a, 0xfa, 0xcb, 0xfa, 0xc3, 0xc0, 0xc7, 0xf1, 0xce, 0xfb, 0x6f, 0xfc, 0x45, 0xe9, 0x86, 0xf1, 0x0c, 0xfb, 0x2c, 0xfb, 0xeb, 0xfa, 0x25, 0xe1, 0xc7, 0xf1, 0x11, 0xfd, 0x6a, 0xfa, 0x30, 0xfc, 0xea, 0xfa, 0xee, 0xfb, 0x6c, 0xfb, 0xef, 0xfb, 0xcc, 0xfb, 0xcd, 0xfb, 0xae, 0xfb, 0xee, 0xfb, 0xef, 0xfb, 0x6c, 0xfb, 0xee, 0xfb, 0x8e, 0xfb, 0x10, 0xfc, 0xea, 0xfa, 0x29, 0xfa, 0x6d, 0xfb, 0x6c, 0xfb, 0xad, 0xfb, 0xef, 0xfb, 0x64, 0xa1, 0x82, 0x10, 0x82, 0x10, 0x81, 0x10, 0x82, 0x18, 0xa2, 0x18, 0x82, 0x10, 0xa2, 0x18, 0xe2, 0x20, 0x03, 0x29, 0x03, 0x29, 0x03, 0x29, 0x03, 0x29, 0x03, 0x29, 0xe2, 0x20, 0xc2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xc2, 0x18, 0xc2, 0x18, 0xe3, 0x20, + 0xa2, 0x20, 0xa2, 0x18, 0xa2, 0x18, 0xc2, 0x20, 0xc2, 0x18, 0xc2, 0x20, 0x23, 0x29, 0x84, 0x39, 0x46, 0x5a, 0xa7, 0x62, 0x66, 0x62, 0x25, 0x5a, 0xe5, 0x51, 0xc4, 0x51, 0xa4, 0x49, 0xa4, 0x51, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x41, 0x84, 0x41, 0x84, 0x41, 0x84, 0x41, 0x84, 0x41, 0x64, 0x41, 0x64, 0x41, 0x64, 0x41, 0x84, 0x41, 0x2a, 0x8c, 0x87, 0x6c, 0x4b, 0xa5, 0xa8, 0xf1, 0xe4, 0xd0, 0xa2, 0xb8, 0xa7, 0xf1, 0x29, 0xfa, 0xc8, 0xf9, 0x8a, 0xfa, 0x8a, 0xfa, 0xc3, 0xc0, 0x66, 0xe9, 0x6d, 0xfb, 0x12, 0xfd, 0x86, 0xe1, 0xe4, 0xd0, 0x25, 0xf1, 0x66, 0xf9, 0xa7, 0xf9, 0xa3, 0xc0, 0x04, 0xe1, 0xea, 0xfa, 0xad, 0xfb, 0xaa, 0xfa, 0x8a, 0xfa, 0xec, 0xfb, 0x0e, 0xfc, 0x6c, 0xfb, 0xef, 0xfb, 0x8b, 0xfb, 0xce, 0xfb, 0xeb, 0xfa, 0x91, 0xfc, 0x8d, 0xfb, 0x8d, 0xfb, 0xcd, 0xfb, 0xce, 0xfb, 0xaa, 0xfa, 0x65, 0xf9, 0x87, 0xf9, 0x8c, 0xfb, 0x6c, 0xfb, 0xad, 0xfb, 0xc7, 0xe1, 0x82, 0x88, 0xa2, 0x18, 0x82, 0x18, 0x82, 0x10, 0x82, 0x10, 0x82, 0x10, 0x61, 0x10, 0x82, 0x10, 0xa2, 0x18, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xe2, 0x20, 0xc2, 0x20, 0xa2, 0x18, 0xc2, 0x18, 0xc2, 0x18, 0x23, 0x29, 0x03, 0x29, 0xe3, 0x28, 0xe3, 0x20, 0x03, 0x29, 0x44, 0x31, 0x03, 0x21, 0xe3, 0x20, 0xc2, 0x18, + 0xc2, 0x18, 0xc2, 0x18, 0xc2, 0x20, 0xe2, 0x20, 0xe2, 0x20, 0xc3, 0x20, 0x03, 0x21, 0x23, 0x29, 0x26, 0x52, 0x86, 0x62, 0x66, 0x62, 0x25, 0x5a, 0xe5, 0x51, 0xc4, 0x51, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x51, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x41, 0xa4, 0x49, 0xa4, 0x41, 0x84, 0x41, 0x84, 0x41, 0x64, 0x41, 0x64, 0x41, 0x63, 0x41, 0x64, 0x41, 0xa4, 0x49, 0x6a, 0x84, 0x67, 0x64, 0x0f, 0xe5, 0xc3, 0xd0, 0xc3, 0xc8, 0x86, 0xf1, 0x49, 0xfa, 0x49, 0xfa, 0xab, 0xfa, 0x8a, 0xfa, 0xa2, 0xb8, 0x25, 0xe1, 0xae, 0xfb, 0x6d, 0xf3, 0xad, 0xf3, 0xa2, 0xb8, 0xc3, 0xc8, 0xc8, 0xf9, 0xab, 0xfa, 0xc3, 0xc8, 0xc3, 0xc0, 0x86, 0xe9, 0xed, 0xfb, 0xaa, 0xfa, 0xeb, 0xfa, 0xaa, 0xfa, 0xeb, 0xfb, 0x0f, 0xfc, 0x6c, 0xfb, 0x0f, 0xfc, 0x6b, 0xfb, 0xee, 0xfb, 0x2b, 0xfb, 0xcb, 0xfa, 0x4f, 0xfc, 0xad, 0xfb, 0x8d, 0xfb, 0xcb, 0xfa, 0x44, 0xe1, 0xa2, 0xb8, 0x25, 0xc9, 0x4c, 0xfb, 0x6d, 0xfb, 0xeb, 0xfa, 0xa2, 0xb0, 0x82, 0xa8, 0xe2, 0x78, 0xe2, 0x20, 0xc2, 0x18, 0xa2, 0x18, 0x82, 0x10, 0x82, 0x10, 0x82, 0x10, 0xc2, 0x20, 0x23, 0x29, 0x23, 0x29, 0x23, 0x29, 0x03, 0x29, 0x23, 0x29, 0x84, 0x39, 0xe5, 0x49, 0x25, 0x52, 0x45, 0x4a, 0x05, 0x4a, 0xa5, 0x41, 0xe6, 0x49, 0x67, 0x52, 0x87, 0x5a, 0xc5, 0x41, 0x03, 0x21, 0x03, 0x21, + 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xe2, 0x20, 0xe3, 0x20, 0xe2, 0x20, 0x03, 0x21, 0x03, 0x29, 0xe5, 0x49, 0x66, 0x5a, 0x66, 0x62, 0x25, 0x5a, 0xe5, 0x51, 0xc5, 0x51, 0xc4, 0x49, 0xa4, 0x49, 0xc4, 0x49, 0xa4, 0x49, 0x84, 0x49, 0xa4, 0x41, 0xa4, 0x41, 0xa4, 0x41, 0x84, 0x41, 0x63, 0x41, 0x63, 0x39, 0x63, 0x41, 0x64, 0x41, 0x64, 0x41, 0xe5, 0x51, 0x2d, 0x95, 0xc8, 0x7c, 0x4f, 0xfc, 0xc3, 0xc8, 0x45, 0xe9, 0x6a, 0xfa, 0x8b, 0xfa, 0xcb, 0xfa, 0x49, 0xfa, 0x82, 0xb8, 0xa6, 0xe1, 0x8e, 0xfb, 0x04, 0xb9, 0x93, 0xfd, 0xa3, 0xc8, 0x82, 0xb0, 0x86, 0xe9, 0x66, 0xe9, 0x65, 0xe1, 0x82, 0xa0, 0xe4, 0xd0, 0x0b, 0xfb, 0xcd, 0xfb, 0xe7, 0xf1, 0x2c, 0xfb, 0xca, 0xfa, 0xcb, 0xfb, 0xee, 0xfb, 0x8d, 0xfb, 0x0f, 0xfc, 0x6c, 0xfb, 0xce, 0xfb, 0x6c, 0xfb, 0xc7, 0xf9, 0xc7, 0xe9, 0xc7, 0xf9, 0x24, 0xf1, 0xe3, 0xd0, 0xa2, 0xb8, 0x82, 0xb8, 0x82, 0xa0, 0x61, 0x80, 0x41, 0x90, 0x61, 0x80, 0xa2, 0xa0, 0xa2, 0xa8, 0xc3, 0xb8, 0x43, 0x41, 0x03, 0x29, 0xe2, 0x20, 0xe2, 0x20, 0xc2, 0x18, 0xc2, 0x18, 0x03, 0x21, 0x64, 0x31, 0xc5, 0x49, 0x06, 0x52, 0x46, 0x5a, 0xa7, 0x6a, 0xe8, 0x72, 0x49, 0x83, 0xa9, 0x83, 0x2a, 0x8c, 0xea, 0x9b, 0x28, 0x73, 0xab, 0x83, 0x2d, 0x9c, 0x4d, 0x9c, 0xaa, 0x8b, 0x87, 0x62, 0xc7, 0x6a, + 0xe3, 0x20, 0xc2, 0x20, 0xe2, 0x20, 0xe2, 0x20, 0xe3, 0x20, 0x03, 0x29, 0x23, 0x29, 0x03, 0x21, 0xa4, 0x39, 0x46, 0x5a, 0x86, 0x62, 0x45, 0x5a, 0xe4, 0x51, 0xc4, 0x51, 0xc4, 0x51, 0xc4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x41, 0xa4, 0x41, 0xa4, 0x41, 0x84, 0x41, 0x63, 0x41, 0x63, 0x39, 0x64, 0x41, 0x84, 0x49, 0x84, 0x49, 0x86, 0x5a, 0x8e, 0xa5, 0xc8, 0x9c, 0x2c, 0xf3, 0xe4, 0xd8, 0x29, 0xfa, 0xab, 0xfa, 0xec, 0xfa, 0xe8, 0xf1, 0x82, 0xc0, 0x69, 0xea, 0x6d, 0xfb, 0x61, 0x98, 0x2f, 0xe4, 0xe7, 0xe9, 0xa2, 0xb0, 0xc3, 0xc8, 0x86, 0xe9, 0x65, 0xf1, 0xa2, 0xb0, 0xa2, 0xa8, 0x8a, 0xf2, 0x6c, 0xfb, 0xad, 0xfb, 0x25, 0xe9, 0xcb, 0xfa, 0x2b, 0xfb, 0x8b, 0xfb, 0x8c, 0xfb, 0x31, 0xfc, 0x0f, 0xfc, 0x8d, 0xfb, 0xcd, 0xfb, 0x8c, 0xfb, 0x0b, 0xfb, 0xe4, 0xe0, 0xe4, 0xd0, 0x62, 0xa0, 0x82, 0xa8, 0x82, 0xb0, 0xa2, 0xb8, 0xa2, 0xb8, 0x82, 0x88, 0x82, 0x88, 0x82, 0x98, 0x82, 0x88, 0xa2, 0xa8, 0xa2, 0xb0, 0xe7, 0xc1, 0x03, 0x21, 0x03, 0x29, 0x23, 0x31, 0x23, 0x29, 0x23, 0x29, 0x43, 0x31, 0x44, 0x31, 0xc5, 0x41, 0x47, 0x5a, 0xe8, 0x72, 0xca, 0x93, 0x0b, 0x9c, 0xeb, 0x8b, 0x0a, 0x84, 0xcc, 0xa4, 0xad, 0xac, 0x6c, 0x9c, 0xef, 0xb4, 0xb1, 0xcd, 0xd2, 0xdd, 0x50, 0xcd, 0xcd, 0xb4, 0x8d, 0xac, + 0xe3, 0x20, 0xe3, 0x20, 0xe3, 0x20, 0xe2, 0x20, 0xc2, 0x20, 0x23, 0x29, 0x23, 0x29, 0x03, 0x21, 0x84, 0x39, 0x45, 0x5a, 0x86, 0x62, 0x66, 0x5a, 0x25, 0x5a, 0xe4, 0x51, 0xc4, 0x51, 0xc4, 0x49, 0xc4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xc4, 0x49, 0xa4, 0x41, 0x84, 0x41, 0x64, 0x41, 0x64, 0x41, 0x84, 0x41, 0x84, 0x49, 0x64, 0x41, 0xca, 0x7b, 0x4b, 0x85, 0xa7, 0xe2, 0x86, 0xe9, 0xa7, 0xf1, 0xcb, 0xfa, 0xcc, 0xfa, 0x66, 0xe1, 0xa3, 0xc8, 0x4c, 0xfb, 0x89, 0xf2, 0x61, 0x90, 0xc3, 0x98, 0x33, 0xfd, 0xa3, 0xc8, 0xc3, 0xc0, 0xa7, 0xf1, 0x66, 0xe9, 0xc7, 0xe9, 0x82, 0x98, 0x86, 0xd9, 0x6d, 0xfb, 0x6d, 0xfb, 0xaa, 0xfa, 0x86, 0xe9, 0x49, 0xf2, 0x8c, 0xfb, 0x6b, 0xfb, 0x6b, 0xfb, 0xee, 0xfb, 0x0f, 0xfc, 0xef, 0xfb, 0xac, 0xfb, 0xad, 0xfb, 0x6c, 0xfb, 0xe8, 0xf9, 0x04, 0xe1, 0x62, 0xa8, 0x82, 0xa8, 0x82, 0xb0, 0xa2, 0xb8, 0xa2, 0xc0, 0x82, 0x98, 0x82, 0x90, 0x82, 0x98, 0x82, 0xa0, 0x82, 0x90, 0xc3, 0xb0, 0x49, 0xea, 0x23, 0x41, 0x23, 0x29, 0x44, 0x31, 0x44, 0x31, 0x64, 0x39, 0x84, 0x41, 0x64, 0x39, 0x64, 0x31, 0xa5, 0x41, 0xc7, 0x6a, 0x0a, 0xac, 0x4b, 0xac, 0xca, 0x8b, 0xea, 0x83, 0x0b, 0x8c, 0x6c, 0x94, 0x8d, 0x9c, 0x2f, 0xb5, 0xb1, 0xd5, 0xf2, 0xdd, 0x70, 0xcd, 0x50, 0xc5, 0x91, 0xcd, + 0xe3, 0x20, 0xe3, 0x20, 0xe2, 0x20, 0xc2, 0x20, 0xe2, 0x20, 0x23, 0x29, 0x64, 0x31, 0x44, 0x29, 0x64, 0x31, 0x46, 0x5a, 0x86, 0x62, 0x66, 0x62, 0x45, 0x5a, 0x05, 0x52, 0xe5, 0x51, 0xc4, 0x51, 0xc4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x41, 0xa4, 0x49, 0xa4, 0x41, 0x84, 0x41, 0x64, 0x41, 0x84, 0x49, 0x84, 0x49, 0x84, 0x41, 0x84, 0x49, 0x0e, 0x9d, 0x0c, 0x9d, 0x87, 0xf1, 0xab, 0xfa, 0x6a, 0xfa, 0xa7, 0xf1, 0xc3, 0xd0, 0x45, 0xd9, 0x4c, 0xfb, 0x45, 0xc9, 0x61, 0x88, 0x61, 0x88, 0xee, 0xdb, 0x28, 0xea, 0xc3, 0xc0, 0x04, 0xd9, 0x87, 0xf1, 0xcb, 0xfa, 0x04, 0xd1, 0x04, 0xc1, 0xcf, 0xfb, 0xeb, 0xfa, 0xad, 0xfb, 0x66, 0xe1, 0x49, 0xfa, 0x08, 0xf2, 0x8d, 0xfb, 0x4b, 0xfb, 0x4b, 0xfb, 0x6b, 0xfb, 0xef, 0xfb, 0x50, 0xfc, 0x8c, 0xfb, 0x8c, 0xfb, 0x6c, 0xfb, 0x6c, 0xfb, 0x4a, 0xea, 0x82, 0xa0, 0x82, 0xa8, 0x82, 0xb0, 0xc3, 0xc0, 0xc3, 0xc8, 0xa2, 0xa0, 0x82, 0x98, 0x82, 0xa0, 0x82, 0xa8, 0xa2, 0xa8, 0xa2, 0xa0, 0xa7, 0xd9, 0x07, 0x8a, 0x23, 0x29, 0x84, 0x39, 0xc5, 0x41, 0x25, 0x52, 0xe5, 0x51, 0x84, 0x39, 0x84, 0x39, 0x84, 0x39, 0x46, 0x5a, 0x89, 0x9b, 0x6b, 0xac, 0x6c, 0x9c, 0x0b, 0x94, 0xab, 0x8b, 0xeb, 0x8b, 0x2c, 0x8c, 0x6c, 0x94, 0xce, 0xac, 0xae, 0xac, 0x8d, 0xa4, 0x50, 0xbd, 0xb2, 0xcd, + 0xe2, 0x20, 0xe2, 0x20, 0xc2, 0x20, 0xc2, 0x18, 0x43, 0x21, 0x84, 0x31, 0xa5, 0x39, 0xc5, 0x39, 0xa4, 0x39, 0x46, 0x5a, 0xa6, 0x6a, 0x86, 0x62, 0x66, 0x5a, 0x25, 0x52, 0xe5, 0x51, 0xc4, 0x51, 0xc4, 0x51, 0xc4, 0x49, 0xa4, 0x49, 0xa4, 0x41, 0xa4, 0x41, 0xa4, 0x41, 0x84, 0x41, 0x84, 0x41, 0x84, 0x49, 0x84, 0x49, 0x84, 0x41, 0xe4, 0x51, 0x90, 0xad, 0x2c, 0xc4, 0xab, 0xfa, 0x8b, 0xfa, 0x08, 0xfa, 0x66, 0xe1, 0x86, 0xf1, 0xc6, 0xf1, 0x82, 0x98, 0x61, 0x88, 0x82, 0x90, 0x61, 0x98, 0x53, 0xfd, 0xa3, 0xc8, 0xe3, 0xd0, 0x66, 0xf1, 0xa7, 0xf1, 0xaa, 0xfa, 0x82, 0xa8, 0xae, 0xfb, 0x2c, 0xfb, 0x4d, 0xfb, 0x2b, 0xfb, 0xc3, 0xd8, 0x2c, 0xfb, 0x08, 0xf2, 0x4b, 0xfb, 0x2c, 0xfb, 0x4c, 0xfb, 0x8c, 0xfb, 0xa7, 0xf1, 0x6d, 0xfb, 0xad, 0xfb, 0x8c, 0xfb, 0xcd, 0xfb, 0x0c, 0xfb, 0xa2, 0xc0, 0x82, 0xa8, 0x82, 0xb0, 0xa2, 0xb8, 0xc3, 0xc0, 0x04, 0xd9, 0xa2, 0xa0, 0x82, 0x98, 0xa2, 0xa8, 0xa2, 0xb0, 0xa3, 0xb8, 0xc2, 0xb0, 0x66, 0xd1, 0xeb, 0xd2, 0x46, 0x52, 0x48, 0x83, 0xea, 0x9b, 0xea, 0x9b, 0x68, 0x83, 0x07, 0x7b, 0xe7, 0x72, 0xa7, 0x62, 0x26, 0x52, 0xc7, 0x62, 0x2b, 0x8c, 0xee, 0xa4, 0x6d, 0xa4, 0xec, 0x93, 0x4c, 0x8c, 0x6d, 0x94, 0xcf, 0xac, 0x51, 0xbd, 0x51, 0xc5, 0x71, 0xc5, 0xb1, 0xd5, 0x90, 0xcd, + 0x23, 0x21, 0x63, 0x29, 0xa4, 0x31, 0x44, 0x3a, 0x45, 0x42, 0x25, 0x4a, 0x66, 0x52, 0x87, 0x5a, 0x66, 0x52, 0xa7, 0x62, 0xc6, 0x6a, 0x86, 0x62, 0x46, 0x62, 0x45, 0x5a, 0xe5, 0x51, 0xc4, 0x51, 0xe4, 0x51, 0xe4, 0x51, 0xa4, 0x51, 0xa4, 0x49, 0xa4, 0x41, 0xa4, 0x41, 0xa4, 0x49, 0x84, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0x05, 0x5a, 0xf2, 0xb5, 0x8c, 0xdb, 0xa6, 0xe1, 0x49, 0xf2, 0x65, 0xd9, 0x44, 0xd9, 0xc3, 0xb8, 0x61, 0x88, 0x82, 0x88, 0x82, 0x98, 0x82, 0xa0, 0xc3, 0xa8, 0xd1, 0xfc, 0xc3, 0xc8, 0x04, 0xd9, 0x66, 0xf1, 0x2c, 0xfb, 0x04, 0xc1, 0xe7, 0xe1, 0xce, 0xfb, 0xeb, 0xfa, 0xad, 0xfb, 0x28, 0xf2, 0xa6, 0xe9, 0x2c, 0xfb, 0x49, 0xf2, 0x4b, 0xfb, 0x2b, 0xfb, 0x2b, 0xfb, 0xac, 0xfb, 0xa7, 0xe9, 0x03, 0xc1, 0x28, 0xea, 0xca, 0xea, 0xe9, 0xe2, 0xa3, 0xc8, 0xa2, 0xb8, 0xa2, 0xb8, 0xa2, 0xb8, 0xa3, 0xb8, 0xe4, 0xc8, 0x49, 0xf2, 0xe5, 0x59, 0xe2, 0x80, 0x82, 0xb0, 0xc3, 0xc0, 0xe3, 0xc0, 0xe3, 0xc0, 0x86, 0xd1, 0x89, 0xa3, 0x8c, 0xac, 0x4f, 0xcd, 0x6f, 0xcd, 0x4e, 0xc5, 0xcd, 0xb4, 0x6b, 0xac, 0x4b, 0xa4, 0x0a, 0x9c, 0x48, 0x83, 0xc7, 0x6a, 0xaa, 0x7b, 0x8d, 0x9c, 0x6d, 0xac, 0x8d, 0xac, 0xee, 0xac, 0x2f, 0xb5, 0x92, 0xc5, 0x35, 0xde, 0x14, 0xde, 0xd2, 0xdd, 0xd2, 0xdd, 0xd2, 0xdd, + 0xc4, 0x39, 0x65, 0x4a, 0x25, 0x5b, 0xc6, 0x6b, 0xa7, 0x6b, 0x07, 0x63, 0xe7, 0x6a, 0x28, 0x73, 0x28, 0x6b, 0x28, 0x6b, 0xe7, 0x72, 0x66, 0x62, 0x45, 0x62, 0x45, 0x5a, 0x05, 0x52, 0xe4, 0x51, 0xc4, 0x51, 0xc4, 0x51, 0xa4, 0x51, 0x84, 0x49, 0x84, 0x49, 0xa4, 0x41, 0xa4, 0x41, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xe4, 0x51, 0xd2, 0xb5, 0xa9, 0xd2, 0x82, 0xb0, 0x45, 0xe9, 0x82, 0xa8, 0x82, 0x98, 0x61, 0x98, 0x82, 0x88, 0x82, 0xa0, 0x82, 0xa0, 0x82, 0xa8, 0xa6, 0xb9, 0xce, 0xf3, 0xe4, 0xd8, 0x45, 0xe9, 0x69, 0xfa, 0x09, 0xf3, 0x82, 0xa0, 0x8d, 0xfb, 0x2c, 0xfb, 0x4d, 0xfb, 0x6c, 0xfb, 0xe4, 0xd8, 0xaa, 0xfa, 0x8a, 0xf2, 0xcb, 0xfa, 0x2b, 0xfb, 0x2b, 0xfb, 0x2b, 0xfb, 0xac, 0xfb, 0xab, 0xfa, 0x03, 0xb9, 0x82, 0x90, 0x21, 0x90, 0x09, 0x84, 0x03, 0xa9, 0xc3, 0xc0, 0x04, 0xd1, 0xc3, 0xc0, 0xe3, 0xc8, 0xa7, 0xe9, 0xea, 0xab, 0x2a, 0x8c, 0xca, 0x8b, 0xa7, 0x92, 0x84, 0xb1, 0x44, 0xc9, 0x64, 0xc9, 0x29, 0xd3, 0x8e, 0xc5, 0xd0, 0xd5, 0xf0, 0xdd, 0xf0, 0xdd, 0xaf, 0xcd, 0x4e, 0xc5, 0x0d, 0xbd, 0xcc, 0xb4, 0xac, 0xac, 0x2a, 0xa4, 0x68, 0x8b, 0x69, 0x7b, 0xcb, 0x8b, 0x4c, 0xa4, 0x8d, 0xac, 0x0e, 0xb5, 0x4f, 0xb5, 0x71, 0xbd, 0xd3, 0xd5, 0xf3, 0xd5, 0xd3, 0xd5, 0x91, 0xcd, 0x91, 0xd5, + 0x65, 0x52, 0x26, 0x63, 0xe7, 0x73, 0x67, 0x7c, 0x68, 0x84, 0xa7, 0x7b, 0x67, 0x73, 0xa9, 0x83, 0xe9, 0x7b, 0xc9, 0x7b, 0x07, 0x73, 0x86, 0x6a, 0x45, 0x62, 0x45, 0x5a, 0x05, 0x5a, 0xe4, 0x51, 0xc4, 0x51, 0xa4, 0x51, 0x84, 0x49, 0x84, 0x41, 0x84, 0x41, 0x83, 0x39, 0x83, 0x39, 0xa4, 0x41, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x51, 0xa4, 0x51, 0x4c, 0x8c, 0x47, 0xc2, 0x45, 0xd9, 0x24, 0xd1, 0x82, 0xa0, 0x61, 0xa0, 0x87, 0x93, 0x43, 0xa9, 0x82, 0xa8, 0xa2, 0xb8, 0xa2, 0xa8, 0x0b, 0xd3, 0x6d, 0xf3, 0x25, 0xe1, 0xa7, 0xf9, 0x2c, 0xfb, 0xe6, 0xb2, 0xc7, 0xd9, 0xad, 0xfb, 0xcc, 0xfa, 0xee, 0xfb, 0xc6, 0xd9, 0x87, 0xf1, 0x2b, 0xfb, 0x29, 0xf2, 0x4c, 0xfb, 0x2b, 0xfb, 0x0b, 0xfb, 0x4b, 0xfb, 0x8c, 0xfb, 0xb2, 0xfc, 0x65, 0xc1, 0x82, 0x98, 0x61, 0x90, 0x27, 0x8b, 0xc5, 0x41, 0xc5, 0x91, 0x2b, 0xf3, 0xeb, 0xfa, 0x48, 0xf2, 0x8c, 0xcc, 0x6d, 0xad, 0x0c, 0xa5, 0x8c, 0xa4, 0x8c, 0xac, 0xed, 0xac, 0x0d, 0xb5, 0x4e, 0xbd, 0xcf, 0xcd, 0xef, 0xd5, 0xcf, 0xcd, 0xcf, 0xcd, 0xae, 0xcd, 0x8e, 0xc5, 0x6d, 0xc5, 0x6d, 0xc5, 0x6e, 0xc5, 0x2d, 0xbd, 0xac, 0xac, 0x2b, 0x9c, 0xca, 0x93, 0x89, 0x8b, 0xaa, 0x93, 0xcb, 0x93, 0x6b, 0x9c, 0xcc, 0xa4, 0xed, 0xa4, 0x10, 0xbd, 0x51, 0xc5, 0x72, 0xc5, 0x0f, 0xbd, 0xce, 0xbc, + 0xa6, 0x5a, 0x67, 0x6b, 0xe7, 0x73, 0x28, 0x7c, 0x68, 0x84, 0x28, 0x7c, 0xe8, 0x7b, 0x29, 0x84, 0xaa, 0x8c, 0x6a, 0x84, 0x47, 0x73, 0x66, 0x62, 0x46, 0x62, 0x25, 0x62, 0x05, 0x5a, 0xe5, 0x51, 0xc4, 0x51, 0x84, 0x49, 0x84, 0x41, 0x84, 0x41, 0x84, 0x41, 0xa3, 0x39, 0xa4, 0x39, 0xc4, 0x41, 0xc4, 0x41, 0xa4, 0x49, 0xc5, 0x51, 0xc4, 0x51, 0xe7, 0x6a, 0x0d, 0xb5, 0xa9, 0xfa, 0x43, 0xc1, 0x45, 0x9a, 0x0f, 0xa6, 0x4a, 0xa5, 0x82, 0xb8, 0xc3, 0xc0, 0xa2, 0xb8, 0xa2, 0xa8, 0x0b, 0xdb, 0x8e, 0xf3, 0x45, 0xe9, 0xaa, 0xfa, 0xec, 0xec, 0x43, 0x99, 0x4c, 0xfb, 0xeb, 0xfa, 0x8e, 0xfb, 0x4b, 0xfb, 0xe4, 0xc0, 0x2c, 0xfb, 0x2b, 0xfb, 0x29, 0xf2, 0x4c, 0xfb, 0x0b, 0xfb, 0x0b, 0xfb, 0x4b, 0xfb, 0x8c, 0xfb, 0xd3, 0xfc, 0x89, 0xda, 0xa2, 0xa0, 0x82, 0x98, 0x86, 0x8a, 0x2b, 0x94, 0xcd, 0xac, 0x4f, 0xc5, 0x6f, 0xcd, 0xd0, 0xcd, 0xcf, 0xc5, 0xaf, 0xc5, 0xaf, 0xc5, 0xb0, 0xd5, 0xd0, 0xd5, 0x11, 0xde, 0x11, 0xe6, 0x31, 0xe6, 0x31, 0xe6, 0x31, 0xde, 0x31, 0xe6, 0x51, 0xde, 0x10, 0xd6, 0x8e, 0xcd, 0x6d, 0xbd, 0x8e, 0xc5, 0xce, 0xcd, 0xcf, 0xcd, 0x6e, 0xbd, 0xed, 0xb4, 0x8c, 0xac, 0x0a, 0x9c, 0x89, 0x8b, 0x08, 0x7b, 0x28, 0x7b, 0x0a, 0x94, 0x2c, 0xa4, 0x6d, 0xac, 0x8e, 0xb4, 0xef, 0xbc, 0xae, 0xb4, 0xad, 0xb4, + 0x26, 0x5b, 0xe7, 0x73, 0x08, 0x74, 0x29, 0x7c, 0x29, 0x7c, 0x28, 0x74, 0x28, 0x7c, 0xa9, 0x84, 0x0b, 0x8d, 0xaa, 0x84, 0x67, 0x73, 0x66, 0x62, 0x45, 0x62, 0x85, 0x5a, 0x24, 0x52, 0xc5, 0x51, 0xc4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xc4, 0x49, 0xe4, 0x41, 0xe4, 0x41, 0xc4, 0x49, 0xa4, 0x49, 0xc4, 0x51, 0xc4, 0x51, 0x05, 0x5a, 0x2e, 0x95, 0xa9, 0x75, 0x08, 0x7e, 0x48, 0x75, 0xab, 0x7d, 0xe3, 0xa9, 0xe3, 0xc8, 0xc3, 0xc8, 0xa2, 0xb8, 0xa2, 0xb8, 0x08, 0xe2, 0x2c, 0xfb, 0xc7, 0xf9, 0xee, 0xfb, 0xac, 0x9d, 0x45, 0xc9, 0x8d, 0xfb, 0xec, 0xfa, 0x0e, 0xfc, 0x45, 0xc9, 0xc7, 0xc9, 0x4c, 0xfb, 0x6c, 0xfb, 0x09, 0xea, 0x6c, 0xfb, 0x4c, 0xfb, 0x2c, 0xfb, 0x4b, 0xfb, 0x8c, 0xfb, 0x14, 0xfd, 0xca, 0xe2, 0xa2, 0xa0, 0x82, 0x98, 0xe4, 0x89, 0x31, 0xd6, 0x93, 0xee, 0xb3, 0xf6, 0x93, 0xee, 0x93, 0xee, 0x92, 0xee, 0x52, 0xe6, 0x52, 0xe6, 0x52, 0xe6, 0x73, 0xee, 0x93, 0xee, 0x72, 0xee, 0x72, 0xe6, 0x92, 0xe6, 0xd3, 0xee, 0x34, 0xff, 0x56, 0xff, 0x14, 0xff, 0xb2, 0xee, 0x51, 0xde, 0xf0, 0xd5, 0xef, 0xcd, 0x0f, 0xce, 0xef, 0xcd, 0x8e, 0xc5, 0x2e, 0xbd, 0xad, 0xac, 0x0a, 0x94, 0x89, 0x8b, 0x28, 0x83, 0x28, 0x8b, 0x0c, 0xac, 0xae, 0xb4, 0xee, 0xbc, 0x0f, 0xc5, 0x0f, 0xbd, 0x50, 0xc5, + 0x67, 0x63, 0xe8, 0x6b, 0xe7, 0x73, 0xe9, 0x73, 0x88, 0x6b, 0x87, 0x6b, 0x48, 0x7c, 0xea, 0x8c, 0x4c, 0x8d, 0xab, 0x7c, 0x47, 0x6b, 0x66, 0x62, 0xc5, 0x5a, 0x05, 0x5b, 0x64, 0x4a, 0xc4, 0x51, 0xc5, 0x51, 0xc4, 0x51, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xc4, 0x49, 0xc4, 0x49, 0xc4, 0x49, 0xa4, 0x51, 0xa4, 0x51, 0xa4, 0x51, 0x05, 0x52, 0xb0, 0xad, 0x29, 0x75, 0x68, 0x75, 0xe8, 0x74, 0x67, 0x64, 0x04, 0xe1, 0x04, 0xd9, 0xc3, 0xc8, 0xc3, 0xc8, 0x08, 0xea, 0x6d, 0xfb, 0x6b, 0xfb, 0x31, 0xfc, 0xf2, 0xbe, 0xa5, 0x8b, 0x2c, 0xfb, 0xeb, 0xfa, 0xef, 0xfb, 0x69, 0xea, 0x61, 0x98, 0x29, 0xda, 0x4b, 0xfb, 0x6d, 0xfb, 0x08, 0xea, 0x6c, 0xfb, 0x2c, 0xfb, 0x0b, 0xfb, 0x4b, 0xfb, 0x8c, 0xfb, 0x33, 0xfd, 0x27, 0xd2, 0x82, 0xa8, 0xa2, 0xa0, 0xa4, 0x91, 0x72, 0xde, 0xd3, 0xf6, 0xd3, 0xf6, 0xf3, 0xf6, 0xf4, 0xf6, 0xb3, 0xee, 0x72, 0xe6, 0x73, 0xe6, 0x73, 0xee, 0x73, 0xe6, 0x73, 0xe6, 0x73, 0xe6, 0xd4, 0xee, 0xf4, 0xf6, 0x35, 0xff, 0x77, 0xff, 0x98, 0xff, 0x99, 0xff, 0x77, 0xff, 0x55, 0xff, 0xf4, 0xf6, 0x93, 0xee, 0x31, 0xde, 0xef, 0xcd, 0xae, 0xc5, 0x6e, 0xbd, 0x0d, 0xad, 0x6b, 0x9c, 0x0a, 0x94, 0x8a, 0x8b, 0x48, 0x83, 0x49, 0x83, 0x4d, 0xa4, 0x30, 0xbd, 0x92, 0xcd, 0xb2, 0xd5, 0xf3, 0xdd, + 0x06, 0x5b, 0x07, 0x5b, 0x27, 0x5b, 0x07, 0x5b, 0xc7, 0x52, 0xc7, 0x5a, 0x29, 0x7c, 0xca, 0x84, 0x89, 0x7c, 0xc8, 0x73, 0xc6, 0x62, 0x45, 0x5a, 0x06, 0x5b, 0x65, 0x5b, 0xc4, 0x4a, 0xe4, 0x51, 0xc5, 0x51, 0xa4, 0x51, 0xa4, 0x49, 0xa5, 0x49, 0xa4, 0x49, 0x84, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x51, 0xa4, 0x51, 0xa4, 0x51, 0x89, 0x7b, 0x53, 0xbe, 0x26, 0x54, 0x25, 0x54, 0x86, 0x64, 0xc9, 0x8c, 0x2a, 0xfa, 0x6a, 0xfa, 0xab, 0xfa, 0x4d, 0xfb, 0x2f, 0xfc, 0x56, 0xf6, 0xf9, 0xdf, 0xae, 0x96, 0x26, 0x6d, 0x27, 0xb3, 0x6c, 0xfb, 0x6e, 0xfb, 0x8d, 0xfb, 0x82, 0xa0, 0x81, 0x98, 0x6a, 0xda, 0x2b, 0xfb, 0x0c, 0xfb, 0x69, 0xf2, 0x4c, 0xfb, 0x2c, 0xfb, 0x2b, 0xfb, 0x4b, 0xfb, 0xcd, 0xfb, 0xd2, 0xfc, 0x23, 0xb9, 0x82, 0xa8, 0x82, 0xa0, 0x63, 0x99, 0x51, 0xce, 0xf3, 0xf6, 0xd3, 0xf6, 0x14, 0xff, 0xf4, 0xf6, 0xd3, 0xee, 0xb3, 0xe6, 0xb3, 0xe6, 0x93, 0xee, 0x73, 0xe6, 0x73, 0xe6, 0xb4, 0xe6, 0x15, 0xf7, 0x15, 0xf7, 0x34, 0xf7, 0x56, 0xff, 0x98, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x78, 0xff, 0x58, 0xff, 0xd5, 0xf6, 0x73, 0xe6, 0xd0, 0xcd, 0x6e, 0xbd, 0x4e, 0xbd, 0xed, 0xac, 0x2b, 0x94, 0xc9, 0x8b, 0xc9, 0x8b, 0x48, 0x7b, 0xab, 0x8b, 0x6e, 0xa4, 0x31, 0xbd, 0xf4, 0xd5, 0xf3, 0xd5, + 0x46, 0x4a, 0x26, 0x52, 0x46, 0x52, 0x46, 0x4a, 0x26, 0x4a, 0x66, 0x52, 0x88, 0x6b, 0xe9, 0x73, 0x68, 0x6b, 0xe7, 0x62, 0x26, 0x52, 0xe5, 0x51, 0x65, 0x52, 0x45, 0x5b, 0x04, 0x4b, 0x64, 0x4a, 0xe4, 0x49, 0xa4, 0x49, 0xa5, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x41, 0x84, 0x41, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x51, 0xc4, 0x51, 0xc4, 0x51, 0x0b, 0x8c, 0x52, 0xb6, 0xe6, 0x53, 0x85, 0x4b, 0xa6, 0x64, 0x0a, 0x75, 0x4e, 0x9e, 0x6a, 0xdc, 0x2a, 0xbc, 0x4d, 0xa5, 0x8d, 0x9e, 0x48, 0x75, 0x87, 0x75, 0x2a, 0x8e, 0x48, 0x75, 0x6b, 0xf3, 0x2c, 0xfb, 0xef, 0xfb, 0xc2, 0xa8, 0x82, 0x98, 0x82, 0x98, 0x29, 0xda, 0x6c, 0xfb, 0x6a, 0xfa, 0x0c, 0xfb, 0x4b, 0xfb, 0x2c, 0xfb, 0x4b, 0xfb, 0x4c, 0xfb, 0x2f, 0xfc, 0x89, 0xda, 0xc2, 0xb0, 0x82, 0xa8, 0xa2, 0xa8, 0x63, 0x99, 0x10, 0xc6, 0xd3, 0xf6, 0xb3, 0xee, 0xf4, 0xf6, 0xd3, 0xee, 0xd3, 0xee, 0xd4, 0xf6, 0xd4, 0xee, 0x93, 0xee, 0x73, 0xe6, 0x73, 0xe6, 0x93, 0xe6, 0xd4, 0xe6, 0xd3, 0xee, 0xd3, 0xee, 0x14, 0xf7, 0x15, 0xf7, 0x14, 0xf7, 0x35, 0xf7, 0x55, 0xff, 0x56, 0xff, 0x78, 0xff, 0x36, 0xff, 0x36, 0xff, 0xb4, 0xee, 0xb0, 0xcd, 0x6f, 0xbd, 0xb0, 0xc5, 0x4e, 0xb5, 0x4b, 0x94, 0x4b, 0x9c, 0x2a, 0x9c, 0xaa, 0x8b, 0xec, 0x93, 0xaf, 0xa4, 0x72, 0xc5, 0xf0, 0xb4, + 0x06, 0x4a, 0x46, 0x5a, 0x26, 0x5a, 0x06, 0x4a, 0x46, 0x4a, 0x66, 0x52, 0xa6, 0x52, 0x27, 0x5b, 0xe7, 0x5a, 0x86, 0x5a, 0x05, 0x4a, 0xc4, 0x39, 0xc4, 0x41, 0xe6, 0x5a, 0x85, 0x5b, 0xe4, 0x4a, 0x04, 0x42, 0x05, 0x52, 0x66, 0x5a, 0xa6, 0x6a, 0x07, 0x7b, 0x48, 0x83, 0x27, 0x7b, 0xc6, 0x6a, 0x25, 0x5a, 0xc4, 0x49, 0xc5, 0x49, 0xc5, 0x51, 0x86, 0x62, 0x74, 0xc6, 0xea, 0x74, 0xc5, 0x4b, 0xe4, 0x4b, 0xa5, 0x4b, 0xc7, 0x64, 0x05, 0x5d, 0x87, 0x64, 0x89, 0x6c, 0x45, 0x5c, 0x25, 0x54, 0x46, 0x6d, 0x08, 0x86, 0xa9, 0xb4, 0x6c, 0xfb, 0x0e, 0xfc, 0x24, 0xb9, 0xa2, 0x90, 0x82, 0xa0, 0x82, 0x98, 0x65, 0xc1, 0xcf, 0xfb, 0xe8, 0xf9, 0x8d, 0xfb, 0x4b, 0xfb, 0x4c, 0xfb, 0xea, 0xfa, 0xeb, 0xfa, 0xe6, 0xe1, 0xe3, 0xb8, 0xa2, 0xb0, 0xa2, 0xa8, 0xa2, 0xa8, 0xa3, 0x99, 0xae, 0xb5, 0x92, 0xee, 0x72, 0xe6, 0x93, 0xe6, 0x92, 0xee, 0xb3, 0xee, 0xd4, 0xee, 0x93, 0xe6, 0xb3, 0xe6, 0xb3, 0xee, 0xb3, 0xe6, 0x93, 0xde, 0x94, 0xde, 0xd4, 0xee, 0xd4, 0xee, 0x93, 0xe6, 0x72, 0xe6, 0x93, 0xe6, 0x92, 0xe6, 0xb2, 0xee, 0xf3, 0xf6, 0xf4, 0xfe, 0x14, 0xff, 0x56, 0xff, 0x16, 0xff, 0x32, 0xe6, 0x4e, 0xbd, 0x6d, 0xb5, 0xef, 0xc5, 0x0c, 0xad, 0x0a, 0x8c, 0x2b, 0x94, 0xca, 0x8b, 0x8a, 0x83, 0xec, 0x93, 0x6d, 0x9c, 0x2c, 0x94, + 0x26, 0x4a, 0xc6, 0x5a, 0xa6, 0x5a, 0x86, 0x52, 0xa7, 0x52, 0x66, 0x52, 0x46, 0x5b, 0xc7, 0x6b, 0x87, 0x63, 0xa6, 0x52, 0x66, 0x4a, 0x25, 0x42, 0xa4, 0x39, 0x04, 0x42, 0x25, 0x53, 0xc6, 0x6b, 0x08, 0x84, 0x8b, 0xa4, 0x0d, 0xbd, 0x4e, 0xc5, 0x8f, 0xd5, 0xaf, 0xd5, 0x8f, 0xd5, 0x0d, 0xbd, 0x4a, 0x9c, 0x07, 0x6b, 0xe5, 0x51, 0xc5, 0x49, 0xc4, 0x49, 0x54, 0xc6, 0x6c, 0x85, 0xe5, 0x53, 0x64, 0x43, 0x64, 0x43, 0x47, 0x5c, 0xa5, 0x4b, 0xa5, 0x4b, 0x08, 0x5c, 0xca, 0x6c, 0xee, 0x8d, 0xca, 0x7d, 0xa7, 0x75, 0xec, 0xf3, 0xed, 0xfb, 0x45, 0xc9, 0xa2, 0x90, 0xa2, 0xa0, 0xa2, 0xa0, 0xa2, 0xa0, 0xa3, 0xa1, 0x50, 0xfc, 0x8a, 0xfa, 0xac, 0xfb, 0x6b, 0xfb, 0x4c, 0xfb, 0x48, 0xe2, 0x08, 0xea, 0xe3, 0xc0, 0xa2, 0xa0, 0xa2, 0xb0, 0xa2, 0xb0, 0xa2, 0xb0, 0xe4, 0x91, 0x4d, 0xa5, 0xd3, 0xf6, 0x92, 0xe6, 0x93, 0xee, 0x72, 0xe6, 0x93, 0xe6, 0xd4, 0xee, 0xd4, 0xee, 0xf4, 0xf6, 0x13, 0xef, 0xf3, 0xee, 0xd3, 0xee, 0xb3, 0xe6, 0x15, 0xef, 0x15, 0xf7, 0x93, 0xe6, 0x93, 0xee, 0xb3, 0xee, 0x92, 0xe6, 0xb2, 0xe6, 0xd3, 0xee, 0xd3, 0xf6, 0xf4, 0xf6, 0x35, 0xff, 0x14, 0xf7, 0x72, 0xe6, 0xaf, 0xcd, 0x6e, 0xb5, 0x2c, 0xad, 0xcb, 0x9c, 0xc9, 0x7b, 0xc9, 0x7b, 0x69, 0x7b, 0x08, 0x73, 0x49, 0x7b, 0x0b, 0x8c, 0xcc, 0xa4, + 0x05, 0x42, 0xe6, 0x52, 0x06, 0x5b, 0x07, 0x63, 0x68, 0x63, 0xc6, 0x52, 0x06, 0x53, 0xe7, 0x6b, 0xa7, 0x6b, 0x27, 0x5b, 0xe6, 0x5a, 0xa6, 0x4a, 0xe4, 0x39, 0x25, 0x4a, 0x09, 0x8c, 0x8d, 0xbd, 0x10, 0xde, 0x92, 0xee, 0xb2, 0xf6, 0xb2, 0xf6, 0xb2, 0xf6, 0x92, 0xf6, 0x71, 0xee, 0x50, 0xe6, 0x0f, 0xd6, 0x0b, 0xb5, 0x26, 0x73, 0xe5, 0x49, 0xc4, 0x49, 0x94, 0xc6, 0xae, 0x95, 0xe7, 0x6c, 0x48, 0x75, 0xc5, 0x4b, 0x69, 0x64, 0x29, 0x6d, 0xe8, 0x6c, 0xca, 0x6c, 0x77, 0xcf, 0xfd, 0xef, 0xda, 0xdf, 0x2f, 0xc6, 0x91, 0xfc, 0xc6, 0xc9, 0xa2, 0xa0, 0xa2, 0x98, 0xa2, 0xa0, 0xa2, 0xa0, 0x81, 0xa0, 0x10, 0xb6, 0xf0, 0xe5, 0x6e, 0xfb, 0xac, 0xfb, 0x8c, 0xfb, 0x4b, 0xfb, 0x6f, 0xdd, 0xa7, 0xe9, 0xc3, 0xc8, 0xa2, 0xa0, 0xa2, 0xb8, 0xc2, 0xb0, 0x45, 0xd9, 0x64, 0x7a, 0x0c, 0x9d, 0xf3, 0xee, 0xb3, 0xe6, 0x93, 0xe6, 0x72, 0xe6, 0xb4, 0xe6, 0xd4, 0xee, 0x14, 0xf7, 0x34, 0xff, 0x13, 0xf7, 0xf3, 0xee, 0xd3, 0xee, 0xb3, 0xe6, 0xb4, 0xe6, 0xd4, 0xee, 0x93, 0xe6, 0x92, 0xe6, 0xb3, 0xee, 0xb3, 0xee, 0xb3, 0xee, 0xb4, 0xee, 0xb4, 0xf6, 0xd4, 0xf6, 0x15, 0xff, 0x15, 0xff, 0x10, 0xd6, 0x6d, 0xbd, 0x8e, 0xbd, 0x6e, 0xbd, 0x6f, 0xb5, 0x4f, 0xad, 0x4c, 0x8c, 0xeb, 0x8b, 0x8a, 0x7b, 0x68, 0x7b, 0xab, 0x94, 0x0c, 0xa5, + 0x05, 0x4a, 0x25, 0x4a, 0x86, 0x52, 0x47, 0x63, 0xe8, 0x73, 0x86, 0x63, 0x26, 0x5b, 0x86, 0x63, 0x65, 0x5b, 0x46, 0x63, 0x47, 0x63, 0x07, 0x63, 0xa9, 0x83, 0x0c, 0xb5, 0x30, 0xde, 0xb2, 0xee, 0xf3, 0xf6, 0x14, 0xff, 0x14, 0xff, 0x14, 0xff, 0xf3, 0xfe, 0xb2, 0xf6, 0xb2, 0xf6, 0x91, 0xe6, 0x91, 0xe6, 0x4f, 0xd6, 0xea, 0xa4, 0xa5, 0x62, 0x05, 0x52, 0x56, 0xdf, 0x70, 0xa6, 0xeb, 0x8d, 0x49, 0x96, 0x07, 0x6d, 0x66, 0x5c, 0x06, 0x65, 0x45, 0x5c, 0xae, 0x95, 0xfd, 0xf7, 0xff, 0xff, 0x97, 0xd7, 0x0c, 0xc5, 0x11, 0xd6, 0x4c, 0xac, 0xa2, 0xa0, 0xa2, 0xa8, 0xa2, 0xa8, 0x82, 0xa8, 0xea, 0xab, 0xf7, 0xd7, 0x71, 0xb7, 0xad, 0xec, 0x4d, 0xfb, 0xac, 0xfb, 0x11, 0xf6, 0x14, 0xf7, 0x2e, 0xfc, 0x24, 0xd9, 0xc3, 0xb0, 0xc3, 0xc0, 0xc3, 0xc0, 0xec, 0xfa, 0xc4, 0x62, 0x8a, 0x84, 0xf2, 0xee, 0xd2, 0xee, 0x92, 0xe6, 0x72, 0xde, 0x72, 0xde, 0x93, 0xe6, 0xf4, 0xf6, 0x56, 0xff, 0x35, 0xf7, 0xd3, 0xe6, 0xd3, 0xe6, 0x93, 0xde, 0x92, 0xde, 0xb2, 0xe6, 0xd3, 0xee, 0xd3, 0xee, 0xd3, 0xee, 0x73, 0xe6, 0x73, 0xe6, 0xb4, 0xee, 0xb3, 0xee, 0xb3, 0xf6, 0xb3, 0xee, 0x72, 0xe6, 0x11, 0xd6, 0x52, 0xde, 0x31, 0xd6, 0x72, 0xe6, 0xb4, 0xe6, 0x74, 0xde, 0x4f, 0xb5, 0xcd, 0x9c, 0x4c, 0x94, 0xea, 0x83, 0x2a, 0x8c, 0x4a, 0x8c, + 0xa6, 0x62, 0xc6, 0x5a, 0x26, 0x5b, 0x67, 0x63, 0x48, 0x74, 0x48, 0x74, 0x08, 0x74, 0x27, 0x6c, 0x65, 0x5b, 0xa5, 0x4a, 0x46, 0x63, 0xab, 0xa4, 0xcf, 0xd5, 0xb1, 0xee, 0x12, 0xf7, 0x32, 0xf7, 0x33, 0xf7, 0x34, 0xff, 0x14, 0xff, 0x13, 0xff, 0xf2, 0xf6, 0xb2, 0xf6, 0xb1, 0xee, 0x90, 0xe6, 0x8f, 0xde, 0x8e, 0xde, 0xec, 0xbd, 0xc7, 0x7b, 0x24, 0x4a, 0xd2, 0xc6, 0x33, 0xcf, 0x0c, 0x96, 0x0a, 0x96, 0xe7, 0x6c, 0xe5, 0x4b, 0xc5, 0x4b, 0x85, 0x43, 0xea, 0x74, 0x77, 0xd7, 0x12, 0xb7, 0x0a, 0x8e, 0xab, 0x85, 0x55, 0xc7, 0x39, 0xdf, 0xc2, 0x98, 0xc2, 0xa8, 0xa2, 0xb0, 0xc9, 0xab, 0xec, 0x96, 0x89, 0x8e, 0x48, 0x8e, 0xe9, 0x96, 0xea, 0xae, 0x33, 0xe7, 0xf3, 0xee, 0x35, 0xf7, 0xf4, 0xf6, 0xa6, 0xe1, 0xe3, 0xb8, 0xe3, 0xc8, 0x25, 0xd9, 0x2b, 0xe3, 0xc4, 0x4a, 0x28, 0x74, 0xf2, 0xee, 0xd2, 0xee, 0xb2, 0xe6, 0xb3, 0xe6, 0xb3, 0xe6, 0xb3, 0xe6, 0xb3, 0xe6, 0xf4, 0xee, 0x14, 0xef, 0xf3, 0xe6, 0xd3, 0xe6, 0xb3, 0xe6, 0xd3, 0xe6, 0xd2, 0xe6, 0xd3, 0xee, 0xd3, 0xee, 0xd3, 0xee, 0x72, 0xe6, 0x73, 0xe6, 0xb4, 0xee, 0xb3, 0xf6, 0x93, 0xee, 0x71, 0xe6, 0x51, 0xde, 0xb3, 0xee, 0x13, 0xef, 0x91, 0xde, 0x71, 0xde, 0x91, 0xde, 0x72, 0xde, 0xf0, 0xcd, 0x2d, 0xad, 0x2f, 0xad, 0xcd, 0xa4, 0x4c, 0x9c, 0x8a, 0x83, + 0x07, 0x6b, 0xa7, 0x6b, 0x28, 0x74, 0x07, 0x74, 0x48, 0x74, 0x68, 0x7c, 0x48, 0x74, 0x68, 0x74, 0x86, 0x63, 0x46, 0x63, 0xeb, 0xac, 0x30, 0xde, 0xf2, 0xf6, 0x32, 0xff, 0x52, 0xf7, 0x52, 0xf7, 0x53, 0xf7, 0x34, 0xff, 0x13, 0xff, 0xf2, 0xf6, 0xf1, 0xee, 0xd0, 0xe6, 0x8f, 0xd6, 0x6d, 0xd6, 0x6c, 0xd6, 0x6c, 0xd6, 0xeb, 0xbd, 0x68, 0x8c, 0x67, 0x63, 0x0b, 0x95, 0xf2, 0xc6, 0x8b, 0x85, 0x8b, 0x85, 0x09, 0x75, 0xe7, 0x6c, 0x46, 0x5c, 0x86, 0x5c, 0xea, 0x74, 0xeb, 0x85, 0xe8, 0x85, 0x29, 0x75, 0xd3, 0xae, 0x75, 0xbf, 0xf8, 0xd7, 0xf7, 0xd6, 0x68, 0xa3, 0x65, 0x84, 0xcd, 0x96, 0x52, 0xbf, 0x11, 0xaf, 0xad, 0x9e, 0xea, 0x9e, 0xa9, 0x96, 0x34, 0xdf, 0xf3, 0xee, 0xd2, 0xe6, 0xb1, 0xde, 0xaf, 0xd5, 0x65, 0xc9, 0x64, 0xc9, 0x86, 0xba, 0xa7, 0xba, 0xc4, 0x4a, 0xe7, 0x6b, 0xd2, 0xe6, 0xb1, 0xe6, 0x92, 0xe6, 0xb3, 0xe6, 0xd3, 0xee, 0x92, 0xe6, 0x31, 0xd6, 0x92, 0xde, 0xf4, 0xee, 0xf4, 0xee, 0xd3, 0xe6, 0xb3, 0xe6, 0xb3, 0xe6, 0xd3, 0xe6, 0xd2, 0xe6, 0xb3, 0xe6, 0xb3, 0xe6, 0x93, 0xe6, 0x93, 0xe6, 0x93, 0xee, 0x93, 0xee, 0x93, 0xee, 0xd2, 0xee, 0xd2, 0xee, 0xd3, 0xee, 0xb2, 0xe6, 0x71, 0xde, 0x31, 0xd6, 0x31, 0xd6, 0x51, 0xde, 0x51, 0xd6, 0x71, 0xd6, 0x53, 0xde, 0x6f, 0xc5, 0xce, 0xb4, 0x2c, 0x9c, + 0xa6, 0x62, 0x67, 0x73, 0x87, 0x6b, 0x86, 0x63, 0xa7, 0x6b, 0xe7, 0x6b, 0xe7, 0x6b, 0x07, 0x74, 0x69, 0x8c, 0x4d, 0xbd, 0x51, 0xe6, 0xd2, 0xf6, 0x13, 0xf7, 0x32, 0xf7, 0x52, 0xf7, 0x52, 0xf7, 0x54, 0xff, 0x34, 0xff, 0xf4, 0xf6, 0xf2, 0xf6, 0xf0, 0xee, 0xcf, 0xde, 0x6d, 0xce, 0x6c, 0xce, 0x6c, 0xd6, 0x6c, 0xce, 0x89, 0xb5, 0x67, 0x84, 0x08, 0x6c, 0x07, 0x6c, 0xf1, 0xad, 0x4c, 0x85, 0x4a, 0x7d, 0x8a, 0x85, 0x27, 0x6d, 0xe7, 0x6c, 0x66, 0x5c, 0xcd, 0x95, 0xae, 0x9e, 0x88, 0x7d, 0xd3, 0xb6, 0xfe, 0xff, 0xfd, 0xf7, 0x72, 0xbf, 0x49, 0x96, 0xc4, 0x5c, 0x05, 0x65, 0x06, 0x7e, 0xaa, 0x96, 0x4e, 0xaf, 0xcc, 0x9e, 0xca, 0x96, 0xeb, 0x9e, 0x54, 0xd7, 0xf3, 0xe6, 0xd2, 0xde, 0xf2, 0xe6, 0xd2, 0xe6, 0x13, 0xef, 0x4a, 0x84, 0xc4, 0x42, 0x63, 0x3a, 0xc3, 0x4a, 0xc6, 0x63, 0x71, 0xde, 0x91, 0xe6, 0xb2, 0xe6, 0x92, 0xe6, 0xb2, 0xe6, 0x51, 0xde, 0xb3, 0xe6, 0x14, 0xef, 0xd4, 0xee, 0xb3, 0xe6, 0xb3, 0xee, 0x93, 0xde, 0x93, 0xe6, 0x92, 0xee, 0x72, 0xde, 0x72, 0xde, 0x93, 0xe6, 0x92, 0xe6, 0x92, 0xde, 0x92, 0xde, 0x72, 0xde, 0xd3, 0xee, 0x14, 0xf7, 0x14, 0xf7, 0xf4, 0xf6, 0xf4, 0xf6, 0xb3, 0xe6, 0x31, 0xd6, 0x0f, 0xd6, 0x10, 0xd6, 0x72, 0xde, 0xd3, 0xe6, 0xb2, 0xe6, 0xae, 0xbd, 0xed, 0xac, 0x4c, 0x9c, + 0x65, 0x4a, 0x26, 0x6b, 0x67, 0x6b, 0x46, 0x63, 0x87, 0x63, 0xe7, 0x73, 0xaa, 0x8c, 0x4d, 0xb5, 0x10, 0xde, 0x92, 0xee, 0xd3, 0xf6, 0xf2, 0xf6, 0x13, 0xf7, 0x33, 0xf7, 0x53, 0xf7, 0x53, 0xff, 0x14, 0xff, 0xf4, 0xf6, 0xf3, 0xf6, 0xd2, 0xee, 0xd0, 0xde, 0x8d, 0xce, 0x0b, 0xbe, 0xcb, 0xbd, 0xca, 0xbd, 0x69, 0xb5, 0xa7, 0x9c, 0x44, 0x63, 0xa4, 0x4a, 0xc3, 0x31, 0xce, 0x94, 0x0c, 0x85, 0xa6, 0x6c, 0xc9, 0x8d, 0x6b, 0x9e, 0xcb, 0x9e, 0x48, 0x75, 0x89, 0x85, 0x86, 0x75, 0x8c, 0x85, 0x35, 0xc7, 0xf0, 0xb6, 0x2a, 0x8e, 0x65, 0x6d, 0x44, 0x5c, 0x84, 0x43, 0x44, 0x54, 0x63, 0x5c, 0x24, 0x65, 0x05, 0x7e, 0xe7, 0x7d, 0x89, 0x8e, 0x0c, 0xa7, 0x12, 0xcf, 0xb2, 0xde, 0xd2, 0xe6, 0xd1, 0xe6, 0x91, 0xde, 0x0f, 0xce, 0xab, 0x94, 0xa3, 0x42, 0x83, 0x42, 0xc4, 0x42, 0x65, 0x5b, 0x30, 0xce, 0x91, 0xde, 0x92, 0xde, 0xb3, 0xee, 0xb3, 0xee, 0x93, 0xde, 0x15, 0xf7, 0x14, 0xef, 0x51, 0xde, 0x30, 0xde, 0x71, 0xde, 0x52, 0xde, 0x52, 0xe6, 0x10, 0xde, 0x10, 0xd6, 0x11, 0xd6, 0x72, 0xde, 0xb2, 0xe6, 0xf3, 0xee, 0xf3, 0xee, 0xd3, 0xe6, 0xd3, 0xe6, 0xf3, 0xee, 0xf4, 0xee, 0xf5, 0xee, 0xd4, 0xee, 0xb3, 0xe6, 0x11, 0xd6, 0xef, 0xdd, 0x0f, 0xd6, 0xd3, 0xee, 0xd3, 0xee, 0x50, 0xd6, 0x4f, 0xd6, 0x0f, 0xce, 0x2d, 0xad, +#endif +#if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP != 0 + /*Pixel format: Red: 5 bit, Green: 6 bit, Blue: 5 bit BUT the 2 bytes are swapped*/ + 0x53, 0x24, 0x52, 0xc4, 0x3a, 0x23, 0x4b, 0x04, 0x64, 0x06, 0x63, 0xa6, 0x52, 0xe5, 0x4a, 0x65, 0x39, 0xa4, 0x41, 0xa4, 0x31, 0x63, 0x5b, 0x08, 0x9c, 0xae, 0xa4, 0xad, 0x9b, 0xea, 0x93, 0xaa, 0x8b, 0x89, 0x8b, 0x68, 0xa4, 0x4b, 0x93, 0xca, 0x8b, 0x68, 0x93, 0x88, 0x83, 0x48, 0x9c, 0x2b, 0x9b, 0xea, 0x7a, 0xe7, 0x6a, 0x85, 0x62, 0x44, 0x62, 0xa4, 0x6b, 0x04, 0x62, 0xa3, 0x52, 0x03, 0x52, 0x23, 0x41, 0xe3, 0x21, 0x02, 0x21, 0x42, 0x31, 0xa3, 0x29, 0x63, 0x39, 0xe3, 0x6b, 0xa6, 0x84, 0x67, 0x84, 0x47, 0x84, 0x47, 0x8c, 0x47, 0x8c, 0x26, 0x8c, 0x26, 0x8c, 0x06, 0x8b, 0xc6, 0x83, 0x85, 0xc1, 0xa4, 0xd1, 0x04, 0xc8, 0xc3, 0xd0, 0xe3, 0xd2, 0x86, 0x95, 0xe9, 0x8d, 0xa9, 0x8d, 0x89, 0x9d, 0xec, 0x9e, 0x0c, 0x95, 0xea, 0x95, 0xea, 0x9e, 0x2b, 0x9e, 0x2c, 0x95, 0xeb, 0x8d, 0x69, 0x85, 0x09, 0x7c, 0xe8, 0x74, 0xa6, 0x6c, 0x46, 0x6b, 0xa5, 0x8b, 0x87, 0xa3, 0xe8, 0xc4, 0xec, 0xed, 0xf1, 0xee, 0x11, 0xc4, 0x8c, 0x51, 0xc4, 0x31, 0x03, 0x39, 0x64, 0x51, 0xc5, 0x5a, 0x06, 0x6a, 0x67, 0x7a, 0xc8, 0x93, 0x29, 0xab, 0x8a, 0xbb, 0xeb, 0xc4, 0x2b, 0xcc, 0x2c, 0xd4, 0x2b, 0xcc, 0x0c, 0xc4, 0x0c, 0xc4, 0x0c, 0xc4, 0x2c, 0xbc, 0x0c, 0xbb, 0xec, 0xb3, 0xec, 0xb3, 0xcb, 0xa3, 0x8a, 0xa3, 0x69, 0x93, 0x09, + 0x53, 0x44, 0x52, 0xc4, 0x29, 0x63, 0x29, 0x43, 0x29, 0x83, 0x29, 0x43, 0x21, 0x23, 0x29, 0x43, 0x39, 0x83, 0x39, 0x63, 0x39, 0x63, 0x5a, 0xc7, 0x8c, 0x6e, 0x83, 0xca, 0x8b, 0x68, 0x93, 0x89, 0x93, 0x89, 0xa4, 0x4b, 0xbc, 0xcd, 0xa4, 0x0b, 0xa4, 0x2b, 0xac, 0x2b, 0x9b, 0xca, 0xa3, 0xea, 0x93, 0x89, 0x83, 0x48, 0x83, 0x28, 0x6a, 0x86, 0x62, 0x64, 0x72, 0xc4, 0x62, 0x43, 0x5a, 0x03, 0x52, 0x63, 0x41, 0xe3, 0x29, 0x22, 0x29, 0x43, 0x42, 0x03, 0x7b, 0xa6, 0xb5, 0x4c, 0xcd, 0xed, 0xbd, 0xab, 0x94, 0x67, 0xf2, 0xc9, 0xfa, 0xc9, 0x8b, 0x45, 0x6b, 0x65, 0x73, 0x25, 0x62, 0x84, 0x52, 0x04, 0xe2, 0x07, 0xf9, 0x86, 0xe1, 0x04, 0xc0, 0xc3, 0xd9, 0x04, 0xbc, 0xea, 0x9d, 0xeb, 0x9e, 0x0c, 0xa6, 0x4e, 0xa6, 0x4d, 0x9e, 0x2b, 0xa6, 0x4c, 0xa6, 0x6d, 0xa6, 0x6d, 0x9e, 0x0c, 0x8d, 0x89, 0x85, 0x29, 0x85, 0x09, 0x7c, 0xc7, 0x6c, 0x45, 0x6b, 0xc6, 0x93, 0xe9, 0xac, 0x2a, 0xc4, 0xed, 0xf6, 0x12, 0xf6, 0x32, 0xdd, 0x6f, 0xab, 0xca, 0x39, 0x23, 0x20, 0xc2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xe2, 0x31, 0x02, 0x31, 0x23, 0x31, 0x23, 0x39, 0x23, 0x39, 0x23, 0x39, 0x43, 0x39, 0x43, 0x39, 0x43, 0x39, 0x43, 0x39, 0x43, 0x31, 0x23, 0x31, 0x23, 0x29, 0x02, 0x28, 0xe2, 0x28, 0xe2, + 0x43, 0x03, 0x53, 0x05, 0x39, 0xe4, 0x39, 0x84, 0x39, 0x84, 0x39, 0xe4, 0x4a, 0x86, 0x6b, 0x07, 0x6a, 0xc6, 0x62, 0xe7, 0x9c, 0xb0, 0x8b, 0xec, 0x73, 0x28, 0x72, 0xc7, 0x72, 0xe7, 0x72, 0xe7, 0x83, 0x48, 0x8b, 0x89, 0x93, 0xc9, 0x93, 0xa9, 0xa4, 0x0b, 0xa4, 0x0b, 0x9b, 0xca, 0x7b, 0x07, 0x62, 0xc6, 0x73, 0x28, 0x83, 0x69, 0x72, 0xc6, 0x83, 0x27, 0x9b, 0xc8, 0x7b, 0x05, 0x52, 0x43, 0x4a, 0x23, 0x41, 0xe3, 0x39, 0xc4, 0x52, 0x84, 0x73, 0x85, 0xa4, 0xa8, 0xbd, 0x4a, 0xb5, 0x2a, 0xea, 0x06, 0xaa, 0x45, 0xf1, 0x66, 0xf9, 0xa7, 0xf9, 0xc7, 0x6a, 0x44, 0x5a, 0x45, 0x4a, 0x04, 0xc2, 0x47, 0xe9, 0x25, 0xe1, 0x04, 0xe9, 0x25, 0xd0, 0xe3, 0xc9, 0x04, 0xda, 0x66, 0x9e, 0x2b, 0xa6, 0x2b, 0xa6, 0x2c, 0x9e, 0x2b, 0xa6, 0x6c, 0xae, 0xae, 0xae, 0xae, 0xa6, 0x6d, 0x9e, 0x2c, 0x8d, 0x8a, 0x85, 0x0a, 0x85, 0x09, 0x7d, 0x08, 0xa4, 0x27, 0x8b, 0xc7, 0x6b, 0xc7, 0x6b, 0x87, 0x93, 0xe9, 0xdd, 0x4f, 0xdd, 0x6f, 0xcd, 0x0e, 0xc4, 0x8d, 0x72, 0x45, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xe2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xe2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xe2, 0x28, 0xe2, + 0x43, 0x03, 0x53, 0x45, 0x52, 0xc5, 0x52, 0x45, 0x52, 0x25, 0x52, 0x66, 0x83, 0xc9, 0xac, 0x8c, 0xac, 0x4c, 0x9c, 0x8d, 0xb5, 0x53, 0x83, 0xcc, 0x52, 0x25, 0x52, 0x25, 0x5a, 0x45, 0x5a, 0x45, 0x5a, 0x45, 0x62, 0x86, 0x62, 0x86, 0x7b, 0x08, 0x7b, 0x08, 0x83, 0x48, 0x83, 0x88, 0x6b, 0x26, 0x5a, 0xc5, 0x5a, 0xa5, 0x62, 0x86, 0x52, 0x04, 0x6a, 0x86, 0x8b, 0x68, 0x83, 0x47, 0x62, 0x64, 0x39, 0xa2, 0x41, 0xc3, 0x5a, 0xa4, 0x73, 0x44, 0x7b, 0x64, 0x7b, 0x65, 0x73, 0x05, 0x82, 0x85, 0xd0, 0xc3, 0xd0, 0xe3, 0xd0, 0xe3, 0xf1, 0x66, 0xf9, 0xa7, 0xe9, 0xa6, 0x41, 0x84, 0x59, 0xa4, 0xf1, 0x65, 0xd8, 0xe4, 0xd8, 0xe3, 0xd9, 0x04, 0xe1, 0x04, 0xc9, 0x04, 0xe9, 0x25, 0xb5, 0x8a, 0xa6, 0x2b, 0xa6, 0x4c, 0xa6, 0x6d, 0xb6, 0xcf, 0xb6, 0xef, 0xae, 0xce, 0xa6, 0x4c, 0x95, 0xeb, 0x8d, 0x8a, 0x85, 0x09, 0x85, 0x09, 0x84, 0xe8, 0xe9, 0x24, 0xf3, 0x0a, 0x5b, 0x26, 0x52, 0x65, 0x83, 0x27, 0xbc, 0x6c, 0xbc, 0x8d, 0xac, 0x4b, 0xb4, 0x2b, 0x72, 0x45, 0x30, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, + 0x4b, 0x24, 0x4b, 0x24, 0x63, 0xa7, 0x8c, 0x2c, 0x73, 0x09, 0x62, 0x86, 0x83, 0x48, 0x9b, 0xea, 0x93, 0xca, 0x83, 0x69, 0x6b, 0x29, 0x4a, 0x25, 0x41, 0xc4, 0x52, 0x05, 0x5a, 0x66, 0x49, 0xe4, 0x39, 0x83, 0x39, 0x84, 0x49, 0xc4, 0x5a, 0x65, 0x63, 0x06, 0x73, 0xe8, 0x6b, 0x87, 0x4a, 0xa5, 0x4a, 0x24, 0x39, 0xa4, 0x41, 0xa4, 0x49, 0xc4, 0x51, 0xe5, 0x6a, 0xa7, 0x72, 0xc7, 0x52, 0x24, 0x39, 0x63, 0x41, 0xc3, 0x5a, 0xa3, 0x6a, 0xe4, 0x62, 0x84, 0x5a, 0x45, 0x72, 0xa6, 0x9a, 0x87, 0xc0, 0xa2, 0xc0, 0xc3, 0xc8, 0xc3, 0xd9, 0x45, 0xf9, 0x86, 0xf9, 0xa7, 0xa1, 0x64, 0xb1, 0x85, 0xd9, 0x04, 0xd0, 0xc3, 0xd0, 0xc3, 0xd0, 0xe3, 0xd8, 0xe4, 0xc8, 0xe3, 0xe9, 0xa7, 0xd3, 0xa8, 0x9e, 0x6b, 0xd5, 0x4c, 0xd6, 0x4f, 0xbf, 0x51, 0xb7, 0x10, 0xae, 0xce, 0x9e, 0x2b, 0x95, 0xca, 0x8d, 0x89, 0x85, 0x09, 0x7c, 0xea, 0xc3, 0x88, 0xe1, 0x04, 0xf1, 0xe7, 0xb3, 0x47, 0x6a, 0xa6, 0x83, 0x28, 0xa3, 0xea, 0x9b, 0xea, 0x9b, 0xa9, 0x93, 0x68, 0x59, 0xe4, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, + 0x4b, 0x43, 0x4b, 0x04, 0x5b, 0x85, 0x8c, 0x6b, 0x8b, 0xeb, 0x73, 0x29, 0x72, 0xa7, 0x72, 0xc7, 0x62, 0xa6, 0x5b, 0x06, 0x52, 0xa5, 0x52, 0x65, 0x5a, 0x45, 0x62, 0x86, 0x6a, 0xa7, 0x52, 0x05, 0x39, 0x64, 0x39, 0x63, 0x4a, 0x04, 0x63, 0x66, 0x7c, 0x8a, 0x7c, 0x8a, 0x4a, 0xc5, 0x29, 0x63, 0x31, 0x84, 0x31, 0x63, 0x39, 0x84, 0x41, 0xa4, 0x49, 0xe4, 0x5a, 0x46, 0x5a, 0x45, 0x51, 0xe4, 0x41, 0xa3, 0x52, 0x24, 0x6a, 0xc5, 0x6a, 0x86, 0x6a, 0x85, 0x6a, 0xa6, 0x7a, 0xe7, 0x9b, 0x08, 0xc0, 0xa2, 0xb8, 0xc2, 0xb8, 0xa2, 0xc9, 0x03, 0xe9, 0x86, 0xf9, 0x86, 0xf9, 0xa7, 0xe1, 0x45, 0xe1, 0x86, 0xd1, 0x04, 0xc8, 0xa3, 0xd0, 0xc3, 0xd0, 0xc3, 0xc8, 0xe3, 0xe9, 0xa7, 0xea, 0x07, 0xbe, 0xae, 0xf9, 0x04, 0xfa, 0xca, 0xed, 0x4e, 0xbf, 0x30, 0xae, 0xcd, 0x9e, 0x2a, 0x95, 0xca, 0x8d, 0x8a, 0x8c, 0xe9, 0xdc, 0x2b, 0xfa, 0x49, 0xf1, 0xe7, 0xd9, 0x24, 0xdb, 0x28, 0x8c, 0xaa, 0x8b, 0xe9, 0x93, 0xaa, 0x9b, 0xea, 0x9b, 0xca, 0x93, 0x48, 0x51, 0xa4, 0x18, 0x82, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xe2, + 0x4b, 0x44, 0x4b, 0x24, 0x53, 0x44, 0x63, 0xc5, 0x84, 0x0a, 0x6b, 0x48, 0x5a, 0xa6, 0x5a, 0x66, 0x5b, 0x06, 0x74, 0x08, 0x6b, 0xc7, 0x63, 0x46, 0x6a, 0xe6, 0x62, 0xc6, 0x52, 0x45, 0x41, 0xc4, 0x42, 0x04, 0x52, 0xc5, 0x63, 0xa6, 0x74, 0x47, 0x7c, 0xa9, 0x5b, 0xa7, 0x29, 0x63, 0x21, 0x23, 0x29, 0x43, 0x21, 0x03, 0x29, 0x43, 0x31, 0x63, 0x31, 0x63, 0x41, 0xa4, 0x51, 0xe5, 0x51, 0xe4, 0x49, 0xe4, 0x62, 0x65, 0x83, 0x07, 0x93, 0xa9, 0x93, 0xaa, 0x83, 0x29, 0x7a, 0xe7, 0x8b, 0x28, 0xc8, 0xc3, 0xc0, 0xa2, 0xb8, 0xa2, 0xc0, 0xc3, 0xd1, 0x24, 0xf1, 0x66, 0xf9, 0x87, 0xd9, 0x04, 0xea, 0x8a, 0xfd, 0x31, 0xfb, 0x0a, 0xd0, 0xe3, 0xc8, 0xc3, 0xc8, 0xc3, 0xe9, 0xc7, 0xf1, 0x86, 0xdc, 0xcd, 0xf9, 0x86, 0xfa, 0x89, 0xfb, 0x4b, 0xce, 0xaf, 0xae, 0xac, 0x95, 0xea, 0x95, 0xca, 0xbc, 0xca, 0xf9, 0xe6, 0xe8, 0xe4, 0xd0, 0xc3, 0xd1, 0x04, 0xd9, 0x04, 0xe2, 0x67, 0x95, 0x4b, 0xa4, 0xec, 0x9c, 0x4b, 0x93, 0xeb, 0x9b, 0xca, 0x83, 0x07, 0x39, 0x43, 0x10, 0x81, 0x10, 0x82, 0x10, 0x82, 0x18, 0x82, 0x18, 0x82, 0x18, 0x82, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, + 0x53, 0x65, 0x53, 0x45, 0x53, 0x65, 0x5b, 0xa4, 0x63, 0xa5, 0x5b, 0x65, 0x53, 0x25, 0x53, 0x05, 0x5b, 0x45, 0x5b, 0xa5, 0x5b, 0xa4, 0x5b, 0x64, 0x5b, 0x24, 0x5b, 0x05, 0x52, 0x45, 0x4a, 0x25, 0x5b, 0x26, 0x63, 0xe6, 0x6c, 0x67, 0x6c, 0x67, 0x64, 0x06, 0x42, 0x84, 0x29, 0x43, 0x29, 0x23, 0x29, 0x23, 0x31, 0x43, 0x52, 0x65, 0x6a, 0xe6, 0x62, 0xa5, 0x5a, 0x45, 0x62, 0x66, 0x62, 0x66, 0x62, 0x66, 0x72, 0xa6, 0xa4, 0x0a, 0xac, 0x4c, 0x93, 0xcb, 0x7b, 0x08, 0x82, 0xe8, 0x83, 0x08, 0xc1, 0x24, 0xe1, 0x45, 0xe1, 0x86, 0xc1, 0x03, 0xc8, 0xc3, 0xe1, 0x45, 0xf9, 0x66, 0xd0, 0xe3, 0xc8, 0xc3, 0xf2, 0xe9, 0xfb, 0xcc, 0xfa, 0x68, 0xc8, 0xc3, 0xc8, 0xa3, 0xea, 0x08, 0xf1, 0x66, 0xeb, 0x29, 0xfa, 0x48, 0xe8, 0xe4, 0xe1, 0x04, 0xf3, 0x08, 0xa6, 0x8c, 0x8d, 0xc9, 0xbc, 0xc9, 0xf9, 0x25, 0xe1, 0x04, 0xd0, 0xe3, 0xc0, 0xa2, 0xc0, 0xa3, 0xd9, 0x04, 0xe2, 0x26, 0x8d, 0x2b, 0xbd, 0x6e, 0xbc, 0xef, 0x9b, 0xeb, 0x83, 0x28, 0x62, 0x05, 0x28, 0xe2, 0x10, 0x82, 0x18, 0x82, 0x18, 0x82, 0x18, 0x82, 0x18, 0x82, 0x18, 0x82, 0x18, 0x82, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, + 0x53, 0x65, 0x53, 0x64, 0x5b, 0xa5, 0x64, 0x05, 0x63, 0xc5, 0x53, 0x64, 0x53, 0x64, 0x4b, 0x04, 0x42, 0x63, 0x3a, 0x63, 0x42, 0xa2, 0x42, 0xe3, 0x4a, 0xe3, 0x52, 0xe4, 0x52, 0xa5, 0x5a, 0xc5, 0x6b, 0xa7, 0x6c, 0x27, 0x6c, 0x47, 0x6c, 0x27, 0x63, 0x86, 0x41, 0xe4, 0x29, 0x23, 0x49, 0xe5, 0x6a, 0xc6, 0x83, 0x68, 0x94, 0x2a, 0x9c, 0x6b, 0x8b, 0xc8, 0x72, 0xc7, 0x72, 0xa7, 0x72, 0xc7, 0x7a, 0xe8, 0x73, 0x28, 0xea, 0x89, 0xd3, 0x4a, 0x8b, 0x49, 0x72, 0xa7, 0x72, 0xa7, 0x7b, 0x07, 0xb1, 0xc5, 0xe9, 0x24, 0xe1, 0x04, 0xf2, 0x69, 0xf3, 0x6b, 0xd9, 0x04, 0xf1, 0x46, 0xc8, 0xc3, 0xc0, 0xc3, 0xb8, 0xa2, 0xf2, 0x26, 0xfa, 0xc8, 0xe1, 0x45, 0xc0, 0xa2, 0xe9, 0xc7, 0xf1, 0xa7, 0xf9, 0x86, 0xe0, 0xe4, 0xd8, 0xe3, 0xd0, 0xe3, 0xf1, 0x04, 0xb5, 0x09, 0x9d, 0xa8, 0xf1, 0x85, 0xe1, 0x04, 0xd8, 0xe3, 0xc0, 0xa2, 0xb8, 0xa2, 0xc0, 0xa2, 0xe1, 0x65, 0xe2, 0x87, 0x84, 0xa9, 0xa4, 0xcc, 0xac, 0x4c, 0x7b, 0x08, 0x62, 0x25, 0x59, 0x63, 0x40, 0xe2, 0x10, 0x82, 0x18, 0x82, 0x18, 0x82, 0x18, 0x82, 0x18, 0x82, 0x18, 0x82, 0x18, 0x82, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xa2, + 0x4b, 0x64, 0x53, 0x64, 0x5b, 0xc5, 0x74, 0x87, 0x6b, 0xe6, 0x4b, 0x24, 0x4a, 0xe4, 0x31, 0xe3, 0x21, 0x22, 0x29, 0x42, 0x31, 0xa3, 0x39, 0xe3, 0x3a, 0x23, 0x42, 0x63, 0x5b, 0x05, 0x63, 0x46, 0x6b, 0xc7, 0x74, 0x48, 0x74, 0x49, 0x6c, 0x08, 0x5b, 0x05, 0x39, 0x83, 0x29, 0x02, 0x5a, 0x25, 0x7b, 0x27, 0x83, 0x87, 0x8b, 0xa8, 0x83, 0x88, 0x7b, 0x28, 0x72, 0xa7, 0x72, 0xa7, 0x7a, 0xe8, 0x7a, 0xe8, 0xf1, 0xe7, 0xd8, 0xe3, 0xd8, 0xe3, 0xf1, 0x45, 0xca, 0x27, 0x8a, 0xe7, 0x93, 0x69, 0xa2, 0xe8, 0xe0, 0xe4, 0xd0, 0xe3, 0xd0, 0xe3, 0xe9, 0xc7, 0xfb, 0x2b, 0xe1, 0x45, 0xc8, 0xc3, 0xb8, 0xa3, 0xb8, 0xa2, 0xb8, 0xc3, 0xfa, 0x27, 0xf1, 0xe6, 0xc8, 0xc3, 0xe1, 0x86, 0xf9, 0xa6, 0xe1, 0x04, 0xd0, 0xc3, 0xc0, 0xc3, 0xc8, 0xc3, 0xe1, 0x04, 0xb4, 0x07, 0xdb, 0x06, 0xe1, 0x04, 0xd9, 0x04, 0xd0, 0xc3, 0xb8, 0xa2, 0xc0, 0xa2, 0xc0, 0xc3, 0xf1, 0xa7, 0xeb, 0x4a, 0x74, 0x48, 0x7b, 0xc8, 0x72, 0xc6, 0xb2, 0x26, 0xf1, 0xc7, 0xfa, 0x08, 0xf9, 0x86, 0x89, 0x03, 0x10, 0x82, 0x18, 0x82, 0x18, 0xa2, 0x18, 0x82, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, + 0x53, 0x84, 0x4b, 0x64, 0x64, 0x05, 0x74, 0x66, 0x53, 0x24, 0x3a, 0x23, 0x31, 0xa3, 0x21, 0x02, 0x20, 0xe2, 0x29, 0x22, 0x31, 0x43, 0x39, 0x83, 0x39, 0xc3, 0x3a, 0x24, 0x5a, 0xe5, 0x6b, 0x26, 0x6b, 0xa7, 0x6b, 0xe7, 0x63, 0x86, 0x42, 0xa5, 0x31, 0xc4, 0x29, 0x23, 0x20, 0xe2, 0x31, 0x43, 0x41, 0xa4, 0x41, 0xc4, 0x49, 0xc4, 0x52, 0x05, 0x6a, 0x66, 0x6a, 0xa7, 0x7a, 0xc7, 0x7b, 0x08, 0x83, 0x08, 0xc9, 0x03, 0xe9, 0x86, 0xd0, 0xe4, 0xc8, 0xc3, 0xd8, 0xe3, 0xf1, 0xc7, 0x92, 0xc8, 0x7b, 0x08, 0xd1, 0x24, 0xc8, 0xe3, 0xc0, 0xc3, 0xc8, 0xc3, 0xd9, 0x65, 0xfa, 0x88, 0xc8, 0xa3, 0xb8, 0xa2, 0xb0, 0xa2, 0xa8, 0x82, 0xd1, 0x04, 0xfa, 0x06, 0xd9, 0x04, 0xe1, 0x46, 0xf1, 0x25, 0xd0, 0xc3, 0xc0, 0xa2, 0xb8, 0x82, 0xc0, 0xa3, 0xc8, 0xa3, 0xc3, 0x46, 0xe9, 0x04, 0xd9, 0x04, 0xd8, 0xe3, 0xc0, 0xa3, 0xb8, 0xa2, 0xc0, 0xa2, 0xe1, 0x65, 0xe9, 0x86, 0xfa, 0x67, 0x83, 0xe7, 0x6b, 0x46, 0xe9, 0xe7, 0xf9, 0x45, 0xf1, 0x25, 0xe9, 0x04, 0xe1, 0x04, 0xe1, 0x24, 0x20, 0x81, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, + 0x53, 0x84, 0x53, 0x64, 0x5b, 0xc5, 0x5b, 0xa5, 0x3a, 0x03, 0x29, 0x42, 0x21, 0x02, 0x20, 0xe2, 0x20, 0xe2, 0x29, 0x22, 0x31, 0x43, 0x39, 0x83, 0x39, 0xc4, 0x42, 0x04, 0x5a, 0x65, 0x6a, 0xa6, 0x7b, 0x26, 0x83, 0x67, 0x83, 0x26, 0x72, 0xa6, 0x6a, 0x65, 0x5a, 0x25, 0x41, 0x84, 0x41, 0x84, 0x39, 0x84, 0x49, 0xc4, 0x41, 0xa4, 0x5a, 0x05, 0x72, 0xa7, 0x7a, 0xc7, 0x83, 0x08, 0x83, 0x08, 0x7b, 0x08, 0xc1, 0x04, 0xe1, 0x65, 0xd8, 0xe4, 0xd9, 0x04, 0xc0, 0xc3, 0xd0, 0xe3, 0xe9, 0x86, 0x8a, 0x47, 0xa2, 0x46, 0xc0, 0xa2, 0xc0, 0xc3, 0xc0, 0xc3, 0xc0, 0xc2, 0xe1, 0x65, 0xe1, 0x85, 0xb8, 0xa2, 0xb0, 0xa2, 0xa0, 0x82, 0xb0, 0xa2, 0xe9, 0xa5, 0xe1, 0x65, 0xe1, 0x04, 0xe9, 0x65, 0xfb, 0x6c, 0xfb, 0xac, 0xc0, 0xe3, 0xb8, 0xa2, 0xb0, 0x82, 0xd1, 0x24, 0xe1, 0x04, 0xd8, 0xe4, 0xd0, 0xe3, 0xb8, 0xa2, 0xb8, 0xa2, 0xb8, 0xa2, 0xfa, 0x09, 0xf9, 0xe8, 0xf1, 0xc5, 0xb3, 0x66, 0xea, 0x06, 0xf1, 0x25, 0xe9, 0x04, 0xe9, 0x04, 0xd8, 0xe4, 0xd8, 0xe4, 0xe1, 0x04, 0x50, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, + 0x53, 0x84, 0x53, 0x84, 0x5b, 0xc5, 0x5b, 0x65, 0x41, 0xe3, 0x29, 0x22, 0x21, 0x02, 0x21, 0x02, 0x20, 0xe2, 0x29, 0x02, 0x29, 0x02, 0x29, 0x22, 0x31, 0x63, 0x39, 0x83, 0x41, 0x84, 0x51, 0xa4, 0x72, 0x65, 0x9b, 0x27, 0xb3, 0xc9, 0xc4, 0x2b, 0xbc, 0x4b, 0xbc, 0x0b, 0xb3, 0xea, 0xab, 0xa9, 0xa3, 0xa9, 0xac, 0x0a, 0xb4, 0x4b, 0xb4, 0x4b, 0xb4, 0x6b, 0xac, 0x2b, 0xac, 0x2b, 0x9b, 0xea, 0x83, 0x28, 0xba, 0xe7, 0xe1, 0x86, 0xc0, 0xc3, 0xc8, 0xc3, 0xd9, 0x04, 0xb8, 0xa2, 0xc8, 0xe3, 0xe9, 0xc7, 0xb3, 0xeb, 0xb8, 0xc3, 0xc0, 0xc3, 0xc8, 0xc3, 0xc0, 0xc3, 0xc0, 0xa3, 0xe9, 0xa6, 0xb8, 0xa2, 0xa8, 0x82, 0xa0, 0x82, 0x98, 0x62, 0xd1, 0x03, 0xe9, 0x85, 0xd9, 0x04, 0xd9, 0x04, 0xb8, 0x82, 0xd1, 0x45, 0xfa, 0xe9, 0xc0, 0xe3, 0x90, 0x61, 0xc0, 0xc3, 0xd8, 0xe4, 0xd8, 0xe3, 0xd0, 0xc3, 0xb8, 0x82, 0xb8, 0x82, 0xe1, 0x66, 0xfa, 0x29, 0xfa, 0x09, 0xf9, 0xc6, 0xf2, 0x06, 0xe9, 0x04, 0xe1, 0x04, 0xe9, 0x04, 0xd8, 0xe4, 0xd8, 0xe4, 0xd8, 0xe4, 0xe9, 0x25, 0x68, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xe2, + 0x53, 0xa4, 0x5b, 0xa5, 0x5b, 0xe5, 0x5b, 0xa5, 0x42, 0x04, 0x31, 0x43, 0x29, 0x02, 0x29, 0x02, 0x29, 0x22, 0x29, 0x02, 0x29, 0x02, 0x29, 0x02, 0x29, 0x22, 0x31, 0x23, 0x31, 0x22, 0x31, 0x23, 0x49, 0x64, 0x6a, 0x24, 0x8b, 0x07, 0xa3, 0xa9, 0xac, 0x0a, 0xbc, 0x4b, 0xc4, 0x6b, 0xc4, 0x6c, 0xbc, 0x6b, 0xcc, 0xad, 0xcc, 0xed, 0xcc, 0xcd, 0xc4, 0xed, 0xcd, 0x2e, 0xd5, 0x6f, 0xd5, 0x6f, 0xd5, 0x2f, 0xeb, 0xea, 0xd9, 0x24, 0xc0, 0xa3, 0xb8, 0xa3, 0xd9, 0x24, 0xc8, 0xe3, 0xb8, 0xa2, 0xc8, 0xc3, 0xea, 0x69, 0xcb, 0x49, 0xb8, 0x82, 0xc0, 0xc3, 0xc8, 0xc3, 0xc0, 0xc3, 0xc0, 0xc3, 0xd9, 0x65, 0xa8, 0x82, 0xa0, 0x82, 0xa0, 0x82, 0xb0, 0xc2, 0xe1, 0x44, 0xd9, 0x04, 0xc0, 0xa3, 0xb0, 0x82, 0xb0, 0x82, 0xc0, 0xc3, 0xfa, 0x28, 0x90, 0x82, 0xc8, 0xc3, 0xd0, 0xe3, 0xd0, 0xe3, 0xc8, 0xc3, 0xb8, 0x82, 0xb8, 0xa2, 0xfa, 0x29, 0xfa, 0x8b, 0xf9, 0x86, 0xfa, 0x06, 0xd8, 0xe4, 0xd8, 0xe4, 0xe1, 0x04, 0xd8, 0xc3, 0xe9, 0x86, 0xe9, 0x85, 0xe0, 0xe4, 0xf1, 0x45, 0xd9, 0xa6, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xc2, + 0x53, 0x84, 0x5b, 0xc5, 0x5c, 0x05, 0x63, 0xc5, 0x4a, 0x24, 0x39, 0x63, 0x29, 0x23, 0x29, 0x22, 0x29, 0x22, 0x29, 0x22, 0x29, 0x22, 0x29, 0x22, 0x29, 0x22, 0x31, 0x22, 0x31, 0x22, 0x39, 0x23, 0x49, 0x84, 0x61, 0xc4, 0x62, 0x04, 0x5a, 0x25, 0x62, 0x45, 0x72, 0x86, 0x7a, 0xc6, 0x7a, 0xc6, 0x8b, 0x27, 0x9b, 0x68, 0xa3, 0x88, 0xa3, 0xc9, 0xea, 0xc9, 0xeb, 0x2a, 0xe4, 0x6d, 0xe5, 0x4f, 0xdd, 0x8f, 0xe4, 0x8d, 0xd9, 0x04, 0xb8, 0xa2, 0xb8, 0xa2, 0xe1, 0x25, 0xe9, 0x46, 0xc0, 0xc3, 0xb0, 0xa2, 0xc8, 0xc3, 0xfb, 0xcc, 0xb1, 0x03, 0xc0, 0xc3, 0xc0, 0xc3, 0xc0, 0xc3, 0xc0, 0xa3, 0xc9, 0x04, 0xb0, 0xa2, 0xa0, 0x82, 0xa0, 0x82, 0x98, 0x82, 0xd1, 0x03, 0xd0, 0xe4, 0xc0, 0xa3, 0xa8, 0x82, 0xa8, 0x82, 0xa8, 0x82, 0xc8, 0xe3, 0xd1, 0x24, 0xc0, 0xa3, 0xd0, 0xe3, 0xd0, 0xe3, 0xb8, 0xa2, 0xb0, 0x82, 0xd9, 0x46, 0xfa, 0x6a, 0xf9, 0xc8, 0xf9, 0xa7, 0xe9, 0x65, 0xd0, 0xc3, 0xd8, 0xe4, 0xf2, 0x68, 0xfc, 0xee, 0xfe, 0x12, 0xfe, 0x96, 0xfc, 0xf1, 0xf9, 0x46, 0xfa, 0x48, 0x30, 0x81, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xe2, + 0x53, 0x84, 0x5b, 0xc5, 0x64, 0x25, 0x63, 0xa5, 0x52, 0x45, 0x41, 0xa4, 0x39, 0x63, 0x29, 0x23, 0x29, 0x22, 0x29, 0x22, 0x29, 0x22, 0x29, 0x22, 0x31, 0x22, 0x31, 0x43, 0x39, 0x43, 0x39, 0x63, 0x49, 0xa4, 0x59, 0xe4, 0x59, 0xe4, 0x49, 0xa4, 0x41, 0x84, 0x41, 0x63, 0x41, 0x84, 0x49, 0x84, 0x49, 0xa4, 0x59, 0xe4, 0x6a, 0x25, 0xaa, 0x67, 0xe1, 0x65, 0xe1, 0xe6, 0xf2, 0x07, 0xf9, 0xa6, 0xf2, 0x48, 0xdb, 0x8a, 0xe1, 0x85, 0xb8, 0xa3, 0xb0, 0x82, 0xc8, 0xc3, 0xf1, 0x66, 0xe9, 0x86, 0xb8, 0xa2, 0xb0, 0xa2, 0xd1, 0x04, 0xe3, 0x0a, 0xb0, 0x82, 0xc0, 0xc3, 0xc0, 0xa3, 0xc0, 0xc3, 0xc0, 0xa2, 0xc0, 0xe3, 0xa0, 0x82, 0xa0, 0x82, 0x90, 0x82, 0xc0, 0xe3, 0xc8, 0xe3, 0xc0, 0xa3, 0xa8, 0x82, 0xa8, 0x82, 0xa8, 0x82, 0xa8, 0xa2, 0xe1, 0x25, 0xc0, 0xa3, 0xd0, 0xc3, 0xc8, 0xc3, 0xb0, 0x82, 0xb0, 0x82, 0xfa, 0x09, 0xfa, 0x6a, 0xf1, 0x87, 0xfa, 0x08, 0xd0, 0xc3, 0xd0, 0xa3, 0xfb, 0xcd, 0xfc, 0x2d, 0xfb, 0x0a, 0xf2, 0x28, 0xf1, 0xa7, 0xf9, 0x25, 0xfa, 0xec, 0xf9, 0xc6, 0x38, 0x81, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xe2, + 0x53, 0x84, 0x5b, 0xc5, 0x6c, 0x06, 0x63, 0x45, 0x5a, 0x25, 0x49, 0xe4, 0x41, 0x84, 0x31, 0x43, 0x29, 0x23, 0x29, 0x02, 0x29, 0x22, 0x29, 0x22, 0x29, 0x22, 0x31, 0x22, 0x31, 0x43, 0x39, 0x63, 0x41, 0x83, 0x51, 0xc4, 0x59, 0xe4, 0x51, 0xe4, 0x51, 0xc4, 0x51, 0xc4, 0x79, 0xa5, 0x91, 0xa5, 0x91, 0xa5, 0x71, 0x64, 0x51, 0x64, 0x41, 0x83, 0xf1, 0xc7, 0xfa, 0x69, 0xfa, 0xeb, 0xfa, 0xeb, 0xfb, 0x2b, 0xe9, 0x86, 0xe9, 0x45, 0xc8, 0xe3, 0xb8, 0xa2, 0xb0, 0x82, 0xd0, 0xe4, 0xf1, 0x66, 0xe9, 0x66, 0xb8, 0xa2, 0xa8, 0x82, 0xf2, 0x69, 0xc1, 0x44, 0xb8, 0xa3, 0xc0, 0xc3, 0xc0, 0xa3, 0xc0, 0xc3, 0xc8, 0xe3, 0xa8, 0x82, 0x98, 0x82, 0xa0, 0x82, 0xa8, 0xa2, 0xc0, 0xc3, 0xc0, 0xa3, 0xa0, 0x82, 0xa0, 0x82, 0xa0, 0x82, 0xa0, 0xa2, 0xd9, 0x04, 0xc0, 0xa2, 0xc8, 0xc3, 0xb8, 0xa2, 0xa8, 0x82, 0xd9, 0x25, 0xfa, 0x2a, 0xf1, 0x66, 0xfa, 0x09, 0xe9, 0x45, 0xc8, 0xc3, 0xf2, 0x07, 0xe1, 0x25, 0xd8, 0xc3, 0xd8, 0xe3, 0xd9, 0x04, 0xe9, 0x25, 0xfa, 0xec, 0xf1, 0xc7, 0xe1, 0x64, 0x20, 0xa2, 0x18, 0xa2, 0x41, 0x03, 0x9a, 0xc9, 0xbb, 0xed, 0x92, 0x68, 0x28, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xe2, + 0x63, 0xc5, 0x63, 0xe5, 0x6b, 0xe6, 0x62, 0xc5, 0x5a, 0x25, 0x52, 0x05, 0x49, 0xc4, 0x39, 0x83, 0x31, 0x43, 0x29, 0x23, 0x29, 0x22, 0x29, 0x02, 0x29, 0x02, 0x29, 0x02, 0x29, 0x02, 0x29, 0x22, 0x31, 0x23, 0x39, 0x63, 0x49, 0x84, 0x51, 0xc4, 0x59, 0xe4, 0x69, 0xe4, 0xe1, 0x45, 0xd9, 0x04, 0xf1, 0x66, 0xf9, 0xa7, 0xf9, 0xc7, 0xd1, 0xa6, 0xc1, 0x44, 0xe9, 0xe7, 0xd8, 0xe4, 0xe1, 0x04, 0xe1, 0x04, 0xfa, 0x89, 0xea, 0x89, 0xe1, 0x65, 0xd1, 0x25, 0xb8, 0xa2, 0xb8, 0xa2, 0xd9, 0x04, 0xf1, 0x86, 0xe1, 0x45, 0xb0, 0x82, 0xe2, 0x88, 0xfa, 0xca, 0xb8, 0xa2, 0xc0, 0xc3, 0xc0, 0xa2, 0xc0, 0xc3, 0xc0, 0xc3, 0xb8, 0xa3, 0x98, 0x82, 0xa0, 0x82, 0x98, 0x82, 0xc0, 0xc3, 0xc0, 0xa2, 0xa8, 0x82, 0xa0, 0x82, 0xa0, 0x82, 0xa0, 0x82, 0xd1, 0x04, 0xc0, 0xa3, 0xb8, 0xa2, 0xb0, 0x82, 0xa8, 0x82, 0xf1, 0xa7, 0xf9, 0xe8, 0xf1, 0xc8, 0xf9, 0xa7, 0xc8, 0xc3, 0xd9, 0x04, 0xc8, 0xa3, 0xd0, 0xc3, 0xd0, 0xc3, 0xd0, 0xc3, 0xd8, 0xe4, 0xe1, 0x66, 0xd0, 0xe4, 0xe1, 0x44, 0x70, 0xe2, 0x61, 0x03, 0xd9, 0xc7, 0xf2, 0x08, 0xe1, 0xa7, 0xd9, 0x65, 0xd9, 0x65, 0x70, 0xe3, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xe2, + 0x6c, 0x06, 0x6c, 0x06, 0x7b, 0xe7, 0x6a, 0xe6, 0x62, 0x45, 0x52, 0x25, 0x49, 0xe4, 0x41, 0xa3, 0x31, 0x63, 0x31, 0x42, 0x29, 0x22, 0x29, 0x22, 0x29, 0x22, 0x29, 0x02, 0x29, 0x02, 0x29, 0x02, 0x29, 0x02, 0x29, 0x02, 0x31, 0x22, 0x39, 0x63, 0x39, 0x63, 0x69, 0xa4, 0xe1, 0x45, 0xd0, 0xc3, 0xd0, 0xe3, 0xd0, 0xe4, 0xe9, 0x45, 0xf9, 0xc7, 0xfa, 0x29, 0xe9, 0xa5, 0xc8, 0xc3, 0xc8, 0xc3, 0xd0, 0xc3, 0xc8, 0xc3, 0xc8, 0xc3, 0xd1, 0x04, 0xfa, 0x29, 0xe1, 0x86, 0xc8, 0xc3, 0xc0, 0xa3, 0xd9, 0x04, 0xf9, 0xa7, 0xe9, 0xa6, 0xe1, 0xa6, 0xb8, 0x82, 0xc0, 0xc3, 0xb8, 0x82, 0xc0, 0xc3, 0xc0, 0xa2, 0xc0, 0xc3, 0xc0, 0xe3, 0x98, 0x82, 0xa0, 0x82, 0xa0, 0x82, 0xb8, 0xc3, 0xb8, 0xa2, 0xb0, 0x82, 0xa0, 0x82, 0xa0, 0x82, 0xa0, 0x82, 0xd0, 0xe4, 0xb8, 0xa2, 0xb8, 0xa2, 0xb0, 0x82, 0xb8, 0xc3, 0xfa, 0x09, 0xe1, 0x46, 0xf9, 0xc8, 0xe1, 0x24, 0xd0, 0xe4, 0xb8, 0xa2, 0xc0, 0xc3, 0xc8, 0xa3, 0xc0, 0xa2, 0xc8, 0xc3, 0xc0, 0xa3, 0xa0, 0x61, 0xd9, 0x04, 0xb0, 0xe3, 0xa0, 0xc3, 0xd0, 0xc3, 0xd0, 0xc3, 0xc0, 0xa2, 0xb8, 0xa2, 0xb0, 0x82, 0xb8, 0xa2, 0x30, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xc2, + 0x6c, 0x46, 0x74, 0x26, 0x8c, 0x08, 0x73, 0x07, 0x5a, 0x45, 0x52, 0x04, 0x49, 0xe4, 0x41, 0xa3, 0x39, 0x63, 0x31, 0x43, 0x29, 0x42, 0x31, 0x42, 0x31, 0x22, 0x31, 0x22, 0x29, 0x22, 0x29, 0x22, 0x29, 0x22, 0x29, 0x02, 0x29, 0x22, 0x31, 0x23, 0x31, 0x23, 0x31, 0x22, 0xd1, 0xa6, 0xd9, 0x04, 0xd0, 0xe3, 0xd9, 0x04, 0xe1, 0x04, 0xd8, 0xe4, 0xe9, 0x25, 0xe1, 0x85, 0xc0, 0xc3, 0xc0, 0xc3, 0xc0, 0xa3, 0xb8, 0xa2, 0xb8, 0x82, 0xb0, 0x82, 0xd9, 0x45, 0xf9, 0xe8, 0xfa, 0x09, 0xc0, 0xc3, 0xc8, 0xc3, 0xe1, 0x25, 0xf9, 0xa7, 0xc0, 0xa3, 0xc8, 0xc3, 0xb0, 0x82, 0xd9, 0x66, 0xc0, 0xa3, 0xc0, 0xa3, 0xc0, 0xc3, 0xc8, 0xc3, 0xa8, 0x82, 0xa0, 0x81, 0xa0, 0x82, 0xb0, 0xa2, 0xc0, 0xc3, 0xb0, 0xa2, 0xa0, 0x82, 0x98, 0x82, 0xa0, 0x82, 0xd0, 0xe3, 0xb0, 0x82, 0xb0, 0x82, 0xa8, 0x82, 0xd1, 0x04, 0xf1, 0xa7, 0xf1, 0xa7, 0xf1, 0x46, 0xd0, 0xe3, 0xb0, 0x82, 0xa8, 0x82, 0xb8, 0xa2, 0xb0, 0x82, 0xc0, 0xa3, 0xb0, 0x82, 0x90, 0x61, 0xc8, 0xe3, 0xd9, 0x04, 0xb0, 0x82, 0xa0, 0x82, 0xc0, 0xc3, 0xc0, 0xc3, 0xb0, 0x82, 0xa8, 0x62, 0xb8, 0xc2, 0x30, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x28, 0xc2, + 0x84, 0x88, 0x84, 0x48, 0x8b, 0xe9, 0x73, 0x07, 0x5a, 0x25, 0x51, 0xe5, 0x52, 0x04, 0x49, 0xe4, 0x39, 0x83, 0x31, 0x63, 0x31, 0x43, 0x31, 0x43, 0x31, 0x43, 0x31, 0x43, 0x31, 0x22, 0x31, 0x22, 0x31, 0x22, 0x31, 0x23, 0x31, 0x23, 0x31, 0x23, 0x31, 0x43, 0x39, 0x63, 0x59, 0x63, 0xfa, 0xcc, 0xfa, 0x8b, 0xf9, 0xe9, 0xf9, 0x86, 0xf1, 0x46, 0xe1, 0x25, 0xe1, 0x44, 0xc8, 0xe4, 0xc0, 0xc3, 0xc0, 0xa3, 0xc0, 0xa3, 0xb0, 0x82, 0xb0, 0x82, 0xb0, 0x62, 0xe1, 0xa7, 0xf9, 0xc8, 0xfa, 0x09, 0xc8, 0xc3, 0xc0, 0xc3, 0xe1, 0x25, 0xc0, 0xa3, 0xc0, 0xc3, 0xb0, 0x82, 0xe9, 0xe7, 0xc8, 0xe4, 0xc0, 0xc3, 0xc0, 0xa2, 0xc8, 0xc3, 0xb8, 0xa3, 0xa8, 0xc3, 0xa0, 0x82, 0xa8, 0xa2, 0xc0, 0xe3, 0xb0, 0x82, 0x98, 0x82, 0x98, 0x82, 0xa0, 0x82, 0xc8, 0xe3, 0xb0, 0xa2, 0xa8, 0x82, 0xa8, 0x82, 0xe9, 0x86, 0xe1, 0x46, 0xf9, 0xe8, 0xd0, 0xc3, 0xa8, 0x82, 0x98, 0x61, 0xa0, 0x82, 0xa0, 0x82, 0xb8, 0xa2, 0xa8, 0x82, 0x88, 0x61, 0xc0, 0xc3, 0xd9, 0x04, 0x98, 0x62, 0xa8, 0x82, 0xc8, 0xc3, 0xe9, 0x46, 0xf1, 0x66, 0xf9, 0xa7, 0xf2, 0x08, 0x71, 0x03, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, + 0x94, 0x6b, 0x94, 0x0a, 0x8b, 0xc9, 0x73, 0x07, 0x5a, 0x25, 0x51, 0xe5, 0x52, 0x05, 0x49, 0xe4, 0x41, 0xa4, 0x39, 0x83, 0x31, 0x63, 0x31, 0x43, 0x31, 0x43, 0x31, 0x43, 0x31, 0x43, 0x31, 0x43, 0x31, 0x42, 0x31, 0x43, 0x39, 0x43, 0x31, 0x43, 0x39, 0x43, 0x39, 0x64, 0x41, 0x84, 0x79, 0x84, 0xfb, 0x0d, 0xfa, 0xec, 0xfa, 0xec, 0xfa, 0x6a, 0xf9, 0xe8, 0xf9, 0x87, 0xf1, 0xa6, 0xc8, 0xe4, 0xc0, 0xa3, 0xc0, 0xa3, 0xc8, 0xe3, 0xa8, 0x82, 0xa8, 0x82, 0xa8, 0x82, 0xe1, 0x87, 0xf9, 0x87, 0xfa, 0x29, 0xc8, 0xe4, 0xb8, 0xa2, 0xd1, 0x04, 0xb0, 0x82, 0xb0, 0xe2, 0xb8, 0xe3, 0xf1, 0xe7, 0xc0, 0xa3, 0xc8, 0xc3, 0xc8, 0xe3, 0xc8, 0xc3, 0xa0, 0xa2, 0x98, 0x81, 0xa0, 0x82, 0xb8, 0xc3, 0xa8, 0x82, 0xa0, 0x82, 0x98, 0x82, 0xa8, 0xa2, 0xb8, 0xa2, 0xa8, 0xa2, 0xa0, 0x82, 0xa8, 0x82, 0xe9, 0x86, 0xf1, 0xc8, 0xe1, 0x25, 0xb8, 0xc3, 0xa0, 0x82, 0x90, 0x61, 0x90, 0x61, 0xa8, 0x82, 0x98, 0x82, 0x80, 0x61, 0xb8, 0xc3, 0xe1, 0x04, 0xa8, 0x82, 0xc8, 0xa3, 0xd0, 0xc3, 0xd0, 0xc3, 0xc8, 0xc3, 0xd0, 0xc3, 0xd8, 0xe4, 0xd8, 0xe4, 0xe1, 0x66, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xe2, + 0xa4, 0x6d, 0x9b, 0xea, 0x93, 0xc9, 0x7b, 0x27, 0x5a, 0x25, 0x51, 0xe5, 0x51, 0xe5, 0x49, 0xe4, 0x49, 0xc4, 0x41, 0xa3, 0x39, 0x83, 0x31, 0x63, 0x31, 0x43, 0x31, 0x43, 0x31, 0x43, 0x31, 0x43, 0x31, 0x43, 0x31, 0x43, 0x31, 0x43, 0x39, 0x43, 0x39, 0x63, 0x39, 0x63, 0x41, 0x63, 0x41, 0x64, 0x79, 0x84, 0xfa, 0xcb, 0xfa, 0x8b, 0xfa, 0x8b, 0xfa, 0xab, 0xfa, 0xab, 0xfa, 0x29, 0xfa, 0x6a, 0xe1, 0xa7, 0xc8, 0xa3, 0xc8, 0xc3, 0xc8, 0xc3, 0xa8, 0x82, 0xa8, 0x82, 0xa8, 0x62, 0xd9, 0x66, 0xf1, 0x87, 0xfa, 0x29, 0xd1, 0x45, 0xb0, 0xa2, 0xc8, 0xe3, 0xa0, 0xa2, 0x98, 0xa2, 0xb8, 0xe3, 0xe1, 0x65, 0xc0, 0xa3, 0xc0, 0xc3, 0xc8, 0xe3, 0xa8, 0xa2, 0x88, 0x82, 0x98, 0x82, 0x98, 0xa2, 0xa8, 0xa2, 0xa0, 0xe3, 0x98, 0xa2, 0xb0, 0xa2, 0xc9, 0xa5, 0x98, 0x61, 0x98, 0x82, 0xb0, 0xc3, 0xc0, 0xe3, 0xf1, 0xc7, 0xd0, 0xe3, 0xc8, 0xa3, 0xc0, 0xa3, 0x88, 0x61, 0x98, 0x62, 0x90, 0x82, 0x80, 0x61, 0xb8, 0xc3, 0xe1, 0x25, 0xc0, 0xa2, 0xc8, 0xc3, 0xc8, 0xa3, 0xc0, 0xa3, 0xc0, 0xa3, 0xd0, 0xe4, 0xd8, 0xe4, 0xd0, 0xe4, 0xc0, 0xc3, 0xc9, 0x03, 0x28, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, + 0xb4, 0xef, 0x9c, 0x0b, 0x93, 0xa9, 0x7b, 0x07, 0x5a, 0x45, 0x52, 0x05, 0x51, 0xe4, 0x51, 0xe4, 0x49, 0xe4, 0x41, 0xa4, 0x39, 0x83, 0x39, 0x63, 0x39, 0x63, 0x31, 0x63, 0x39, 0x63, 0x39, 0x63, 0x31, 0x63, 0x31, 0x43, 0x31, 0x43, 0x39, 0x63, 0x41, 0x63, 0x41, 0x63, 0x41, 0x84, 0x41, 0x84, 0x41, 0x63, 0x61, 0x64, 0xe2, 0x89, 0xfb, 0x0c, 0xfa, 0x4a, 0xfa, 0x09, 0xfa, 0x29, 0xf1, 0xa7, 0xfa, 0x8b, 0xfa, 0xab, 0xf1, 0xa7, 0xd0, 0xe4, 0xb8, 0xa2, 0xa8, 0x82, 0xa8, 0x62, 0xa0, 0x62, 0xd1, 0x45, 0xe9, 0x66, 0xfa, 0x08, 0xd9, 0x86, 0xb9, 0x04, 0xb8, 0xc3, 0x90, 0xa2, 0x90, 0xa2, 0xb8, 0xe3, 0xc8, 0xe3, 0xb8, 0xa2, 0xb0, 0xc3, 0xc8, 0xe3, 0xb0, 0xe3, 0xa0, 0xe3, 0x98, 0xa2, 0x88, 0x82, 0x90, 0x82, 0x98, 0x82, 0xa8, 0xa2, 0xb8, 0xe3, 0xa0, 0x62, 0xa0, 0xa2, 0xa8, 0xc3, 0xd1, 0x04, 0xd0, 0xe4, 0xd0, 0xe3, 0xc8, 0xc3, 0xb8, 0xa3, 0x80, 0x61, 0x80, 0x82, 0x78, 0x61, 0xb8, 0xe3, 0xe1, 0x24, 0xc0, 0xa3, 0xc0, 0xa3, 0xc0, 0xa2, 0xb8, 0xa2, 0xc8, 0xc3, 0xd0, 0xc3, 0xc8, 0xc3, 0xc0, 0xa2, 0xc8, 0xc3, 0xd9, 0x24, 0xb9, 0x86, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x20, 0xc2, + 0xb5, 0x0f, 0x9c, 0x2c, 0x93, 0xa9, 0x83, 0x07, 0x62, 0x45, 0x5a, 0x05, 0x52, 0x05, 0x51, 0xe5, 0x49, 0xe4, 0x49, 0xc4, 0x41, 0xa4, 0x39, 0x83, 0x39, 0x63, 0x39, 0x63, 0x39, 0x63, 0x39, 0x63, 0x31, 0x63, 0x39, 0x63, 0x39, 0x63, 0x41, 0x84, 0x41, 0x84, 0x41, 0x84, 0x49, 0x84, 0x49, 0x84, 0xca, 0x68, 0xfa, 0xeb, 0xf2, 0x69, 0xe9, 0xa6, 0xf1, 0x86, 0xf1, 0x66, 0xf1, 0x65, 0xc8, 0xc3, 0xd0, 0xe4, 0xfa, 0x4a, 0xfa, 0x6a, 0xfa, 0x29, 0xd9, 0x04, 0xb8, 0x82, 0xa8, 0x82, 0xa8, 0x82, 0xa0, 0x62, 0xb8, 0xe4, 0xe9, 0x66, 0xf9, 0xe8, 0xf1, 0xc7, 0xb0, 0xa2, 0xa0, 0xc2, 0x98, 0xc2, 0x90, 0xa2, 0xd1, 0x04, 0xc9, 0x65, 0xc0, 0xe3, 0xea, 0x28, 0xd9, 0x45, 0xc9, 0x04, 0xb0, 0xa2, 0xb0, 0xa2, 0xc0, 0xc3, 0xa8, 0xa2, 0xa8, 0xa2, 0xb0, 0xa2, 0xa9, 0x04, 0x80, 0x82, 0x90, 0x82, 0xd0, 0xe4, 0xd0, 0xc3, 0xc8, 0xc3, 0xb8, 0xa2, 0xb8, 0xc3, 0x78, 0x61, 0x70, 0x61, 0xb8, 0xe3, 0xe1, 0x04, 0xc0, 0xa3, 0xc0, 0xa3, 0xb8, 0x82, 0xb8, 0xa2, 0xc8, 0xc3, 0xc0, 0xa3, 0xb8, 0x82, 0xb8, 0xa2, 0xf1, 0xa7, 0xfa, 0x4a, 0xfa, 0x28, 0x58, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x20, 0xc2, + 0xa4, 0xae, 0xa4, 0x6d, 0x93, 0xc9, 0x83, 0x48, 0x6a, 0x86, 0x5a, 0x25, 0x5a, 0x25, 0x52, 0x05, 0x49, 0xe4, 0x49, 0xe4, 0x41, 0xc4, 0x41, 0xa4, 0x39, 0x83, 0x39, 0x63, 0x39, 0x84, 0x39, 0x63, 0x39, 0x63, 0x39, 0x63, 0x39, 0x83, 0x41, 0x84, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0x84, 0x61, 0x84, 0xd8, 0xe3, 0xc8, 0xc3, 0xc8, 0xc3, 0xc0, 0xa3, 0xc0, 0xa2, 0xc0, 0xa3, 0xc8, 0xc3, 0xc8, 0xc3, 0xc0, 0xc3, 0xc0, 0xc3, 0xf2, 0x08, 0xfa, 0x4a, 0xfa, 0x4a, 0xc0, 0xc3, 0xb0, 0x82, 0xa8, 0x82, 0xa8, 0x82, 0xa8, 0x82, 0xa8, 0xc3, 0xe9, 0x66, 0xf9, 0xa7, 0xc9, 0x04, 0x90, 0x82, 0xa0, 0x82, 0xc0, 0xc3, 0xc0, 0xa2, 0xd1, 0x65, 0xc0, 0xe3, 0xeb, 0xcf, 0xe9, 0x87, 0xe2, 0xaa, 0xc9, 0x45, 0xd2, 0x48, 0xd1, 0x24, 0xb8, 0xc3, 0xc9, 0x65, 0xb8, 0xc3, 0xb8, 0xe3, 0xb9, 0x04, 0x90, 0x82, 0xc8, 0xc3, 0xc8, 0xc3, 0xc0, 0xa3, 0xb0, 0xa2, 0xa8, 0xa2, 0x70, 0x61, 0xc0, 0xe3, 0xd9, 0x04, 0xc0, 0xa2, 0xb8, 0xa2, 0xb8, 0x82, 0xb8, 0xa2, 0xb8, 0xa2, 0xa8, 0x82, 0xa8, 0x82, 0xb0, 0xa2, 0xd9, 0x25, 0xfa, 0x6a, 0xf2, 0x27, 0xa0, 0xe2, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, + 0x8b, 0xec, 0x94, 0x0b, 0x93, 0xc9, 0x83, 0x69, 0x6a, 0xa7, 0x62, 0x45, 0x5a, 0x25, 0x52, 0x05, 0x4a, 0x04, 0x4a, 0x04, 0x49, 0xe4, 0x41, 0xc4, 0x41, 0x84, 0x39, 0x83, 0x41, 0x84, 0x41, 0x84, 0x41, 0x83, 0x41, 0x83, 0x41, 0x64, 0x41, 0x84, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xc4, 0x49, 0xa4, 0x99, 0x03, 0xc8, 0xc3, 0xc8, 0xc3, 0xc8, 0xc3, 0xc0, 0xa2, 0xb8, 0x82, 0xb0, 0x82, 0xb0, 0x82, 0xb0, 0x82, 0xb8, 0xa2, 0xb8, 0xa2, 0xd9, 0x25, 0xfa, 0x6a, 0xfa, 0x4a, 0xd1, 0x25, 0xb0, 0x82, 0xb0, 0x82, 0xb0, 0x82, 0xb0, 0x82, 0x90, 0x61, 0xb8, 0xe3, 0xb9, 0x04, 0xc9, 0x85, 0xc1, 0x65, 0xd1, 0x86, 0xd2, 0x28, 0xd1, 0x45, 0xd1, 0xe8, 0xb9, 0x85, 0xf3, 0x4a, 0x90, 0xc3, 0xb1, 0x45, 0xc1, 0x85, 0xe3, 0x0b, 0x99, 0x04, 0xb1, 0x24, 0xc0, 0xc3, 0xc0, 0xa2, 0xa8, 0xa2, 0xa8, 0xa2, 0xa8, 0x82, 0xc0, 0xc3, 0xb9, 0x04, 0xc0, 0xc3, 0x80, 0x82, 0xc9, 0x04, 0xd0, 0xe3, 0xc0, 0xa3, 0xb8, 0xa2, 0xc0, 0xa2, 0xb8, 0xa3, 0xa8, 0x82, 0xa0, 0x82, 0xa8, 0x82, 0xb8, 0x82, 0xe1, 0xc7, 0xfa, 0xaa, 0xf1, 0x85, 0xe1, 0x64, 0x38, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x20, 0xc2, + 0x83, 0x49, 0x8b, 0xca, 0x93, 0xca, 0x83, 0xa9, 0x6a, 0xc7, 0x62, 0x46, 0x5a, 0x25, 0x52, 0x25, 0x52, 0x24, 0x52, 0x24, 0x52, 0x04, 0x49, 0xc4, 0x41, 0xa4, 0x39, 0x84, 0x41, 0x84, 0x41, 0x84, 0x41, 0x84, 0x51, 0x84, 0x81, 0x84, 0xa2, 0x27, 0xba, 0x47, 0xda, 0x07, 0xf1, 0x86, 0xf9, 0x65, 0xf9, 0x66, 0xd0, 0xe3, 0xc0, 0xa2, 0xc0, 0xa2, 0xc0, 0xc3, 0xc0, 0xa3, 0xb8, 0xa2, 0xb0, 0x82, 0xa8, 0x82, 0xa8, 0x82, 0xa0, 0x82, 0xa8, 0x82, 0xb0, 0x82, 0xe1, 0x86, 0xfa, 0x6b, 0xf2, 0x29, 0xb8, 0xa3, 0xb0, 0x82, 0xb8, 0x82, 0xd1, 0xe8, 0x88, 0x61, 0xa8, 0xa2, 0xda, 0x6a, 0xe2, 0x69, 0xc9, 0x86, 0xb8, 0xa2, 0x89, 0x03, 0xb1, 0x24, 0x98, 0xc3, 0xb0, 0xa3, 0xa0, 0xe3, 0x80, 0xa2, 0x80, 0x82, 0x40, 0xa2, 0x68, 0xe2, 0x99, 0x03, 0x90, 0xe3, 0xb9, 0xe7, 0xd1, 0x45, 0xc0, 0xc3, 0xc0, 0xc3, 0xb0, 0xc3, 0xb0, 0xc3, 0xa0, 0xa2, 0xd1, 0x04, 0xd0, 0xe3, 0xc8, 0xc3, 0xc0, 0xa3, 0xc0, 0xa3, 0xb0, 0x82, 0x98, 0x82, 0xa0, 0x82, 0xb0, 0xa3, 0xd1, 0x45, 0xfa, 0xab, 0xfa, 0x69, 0xf9, 0xa5, 0xf1, 0x85, 0x70, 0xe2, 0x18, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x20, 0xc2, + 0x83, 0x29, 0x8b, 0xab, 0x93, 0xea, 0x8b, 0xe9, 0x7b, 0x48, 0x5a, 0x46, 0x5a, 0x25, 0x52, 0x05, 0x5a, 0x25, 0x52, 0x25, 0x52, 0x24, 0x49, 0xe4, 0x49, 0xa4, 0x41, 0x84, 0x41, 0x84, 0x49, 0x84, 0xc2, 0x07, 0xfa, 0x49, 0xfa, 0x69, 0xd9, 0x04, 0xc8, 0xa3, 0xe1, 0x24, 0xe1, 0x25, 0xe9, 0x45, 0xe9, 0x45, 0xe9, 0x25, 0xe9, 0x45, 0xd9, 0x24, 0xc0, 0xa2, 0xb8, 0xa2, 0xb8, 0xa2, 0xb8, 0xa2, 0xb0, 0x82, 0xa8, 0x82, 0xa8, 0x82, 0xa0, 0x82, 0x98, 0x82, 0x98, 0x82, 0xb0, 0x82, 0xd9, 0x45, 0xfa, 0x8b, 0xd9, 0xa7, 0xb0, 0x82, 0xb8, 0xa2, 0xd1, 0x45, 0xe1, 0x66, 0xe9, 0xc7, 0xe3, 0x0b, 0xc1, 0x24, 0xa8, 0xa2, 0x70, 0x82, 0x70, 0xc2, 0x51, 0x03, 0x71, 0x64, 0x69, 0x23, 0x51, 0x23, 0x71, 0x84, 0x82, 0x05, 0x61, 0x43, 0x90, 0xc2, 0xa8, 0xa2, 0x98, 0xe3, 0xb9, 0x04, 0xd9, 0x45, 0xd9, 0xc7, 0x80, 0x82, 0xa0, 0xc3, 0xd9, 0x04, 0xd0, 0xe4, 0xd0, 0xc3, 0xc8, 0xc3, 0xb8, 0xa2, 0x98, 0x82, 0xa0, 0x82, 0xb0, 0xc3, 0xc9, 0x04, 0xf1, 0xe8, 0xfa, 0xab, 0xfa, 0x28, 0xf9, 0xc6, 0xf1, 0x65, 0x60, 0xc2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, + 0x8b, 0x6a, 0x93, 0xec, 0x93, 0xeb, 0x9c, 0x0a, 0x83, 0x89, 0x62, 0x86, 0x5a, 0x05, 0x52, 0x04, 0x5a, 0x25, 0x52, 0x25, 0x52, 0x25, 0x4a, 0x04, 0x49, 0xc4, 0x41, 0xa4, 0x41, 0x84, 0x71, 0xa4, 0xf9, 0xa7, 0xe9, 0x86, 0xb8, 0x82, 0xd1, 0x24, 0xe9, 0x66, 0xd0, 0xe3, 0xe1, 0x45, 0xf1, 0x86, 0xf9, 0x86, 0xf1, 0x66, 0xe1, 0x45, 0xd9, 0x04, 0xd0, 0xc3, 0xc0, 0xa2, 0xb8, 0x82, 0xb0, 0x82, 0xa8, 0x82, 0xa8, 0x82, 0xa0, 0x82, 0xa8, 0x82, 0xa0, 0x82, 0xa0, 0x82, 0x98, 0x81, 0x90, 0x82, 0xa8, 0x82, 0xd9, 0x45, 0xfa, 0x29, 0xd9, 0xe7, 0xf2, 0xab, 0xfa, 0x49, 0xd9, 0xc7, 0xc1, 0x65, 0x68, 0x81, 0xc0, 0xc3, 0x48, 0xc2, 0x50, 0xe3, 0x81, 0xc5, 0xab, 0x08, 0xa2, 0x47, 0x81, 0xa5, 0xaa, 0xa7, 0xcb, 0x89, 0xa2, 0xa6, 0x8a, 0x05, 0xa1, 0x03, 0xb9, 0x85, 0xd1, 0xa6, 0xd9, 0x24, 0xeb, 0xae, 0xa8, 0xc3, 0xa8, 0x82, 0xd9, 0x04, 0xd8, 0xe4, 0xc8, 0xe3, 0xb0, 0xa2, 0xb0, 0xa2, 0xc0, 0xe3, 0xc8, 0xc3, 0xe1, 0x86, 0xfa, 0x29, 0xfa, 0x28, 0xfa, 0x89, 0xfa, 0x89, 0xb1, 0x03, 0x20, 0x81, 0x18, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, + 0x7b, 0x29, 0x9c, 0x0c, 0xa4, 0x6c, 0x9c, 0x0a, 0x83, 0x89, 0x62, 0x85, 0x5a, 0x25, 0x52, 0x05, 0x5a, 0x25, 0x5a, 0x45, 0x52, 0x24, 0x52, 0x04, 0x49, 0xe4, 0x49, 0xc4, 0x41, 0x84, 0x99, 0xe6, 0xfa, 0x29, 0xd9, 0x04, 0xc0, 0xc3, 0xe1, 0x86, 0xd0, 0xc3, 0xd0, 0xc3, 0xc8, 0xc3, 0xd9, 0x04, 0xe9, 0x66, 0xf1, 0xa7, 0xf9, 0xe8, 0xfa, 0x29, 0xfa, 0x29, 0xfa, 0x29, 0xf9, 0xe8, 0xf9, 0xa7, 0xe9, 0x45, 0xc0, 0xc3, 0xa8, 0x82, 0x98, 0x82, 0x98, 0x82, 0xa0, 0x82, 0xa8, 0x82, 0xa8, 0x82, 0xa8, 0xa2, 0xa8, 0xa2, 0xb0, 0xa2, 0xd9, 0x04, 0xfa, 0x8a, 0xf9, 0xa7, 0xda, 0x69, 0xb0, 0xe3, 0xd9, 0x45, 0x68, 0xc2, 0x69, 0x64, 0x79, 0xa4, 0x60, 0xe3, 0x81, 0x84, 0x99, 0xe6, 0x79, 0xa5, 0x9a, 0x26, 0x99, 0xa5, 0xaa, 0x06, 0x9a, 0x05, 0x69, 0x23, 0x88, 0xc2, 0x78, 0xa2, 0xe1, 0xa6, 0xfb, 0x0d, 0xfb, 0x4d, 0xe1, 0x45, 0xd0, 0xe4, 0xd9, 0x25, 0xd9, 0x24, 0xd8, 0xe4, 0xe1, 0x24, 0xf2, 0x08, 0xfa, 0x08, 0xe1, 0x05, 0xd0, 0xc3, 0xd0, 0xe4, 0xd9, 0x04, 0xe1, 0x05, 0xfa, 0x28, 0xb9, 0x86, 0x10, 0x81, 0x18, 0x82, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, + 0x94, 0x0a, 0xc5, 0x4f, 0xbd, 0x2e, 0xa4, 0x2b, 0x7b, 0x47, 0x62, 0x65, 0x5a, 0x25, 0x52, 0x05, 0x5a, 0x25, 0x5a, 0x45, 0x52, 0x25, 0x52, 0x04, 0x51, 0xe4, 0x49, 0xc4, 0x49, 0xa4, 0x41, 0x84, 0xb1, 0xe6, 0xfa, 0xcc, 0xfa, 0x49, 0xe9, 0x87, 0xc0, 0xc3, 0xc0, 0xc3, 0xc0, 0xa2, 0xc0, 0xa2, 0xb8, 0x82, 0xb8, 0xa2, 0xc0, 0xa3, 0xc0, 0xa3, 0xc8, 0xc3, 0xd0, 0xe4, 0xd1, 0x04, 0xc8, 0xe3, 0xc8, 0xe4, 0xd0, 0xe4, 0xc8, 0xc3, 0x90, 0x82, 0x88, 0x62, 0x90, 0x82, 0x98, 0x82, 0xa8, 0x82, 0xb0, 0xa2, 0xb0, 0x82, 0xb0, 0xa2, 0xe1, 0x86, 0xfb, 0xaf, 0xfa, 0x69, 0xd9, 0x85, 0xb9, 0x04, 0x91, 0x44, 0x9a, 0xe8, 0x89, 0xe4, 0x81, 0xc5, 0x69, 0x23, 0x69, 0x44, 0x69, 0x44, 0x58, 0xe3, 0x89, 0xa6, 0x81, 0x24, 0x91, 0xc6, 0xba, 0xc8, 0x92, 0x26, 0x50, 0xc2, 0xeb, 0x6d, 0xd1, 0x66, 0xe1, 0x05, 0xfc, 0x30, 0xfb, 0x0b, 0xe9, 0x66, 0xf9, 0x45, 0xf9, 0x45, 0xfa, 0x28, 0xe9, 0xc7, 0xd0, 0xc3, 0xd0, 0xe3, 0xd0, 0xe4, 0xd9, 0x04, 0xd9, 0x04, 0xd0, 0xe4, 0xd0, 0xe3, 0xc8, 0xc3, 0xd9, 0x45, 0xa1, 0x65, 0x18, 0x81, 0x18, 0xa2, 0x20, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x20, 0xc2, + 0xc5, 0x2e, 0xd5, 0x90, 0xc5, 0x4f, 0x9c, 0x0a, 0x83, 0x27, 0x62, 0x65, 0x5a, 0x24, 0x5a, 0x04, 0x5a, 0x05, 0x5a, 0x45, 0x52, 0x44, 0x4a, 0x04, 0x49, 0xe4, 0x49, 0xc4, 0x49, 0xa4, 0x49, 0x84, 0x41, 0x84, 0xb1, 0xc6, 0xfa, 0xcb, 0xfa, 0xec, 0xe1, 0x45, 0xe1, 0x45, 0xfa, 0x08, 0xfa, 0x49, 0xf2, 0x4a, 0xea, 0x08, 0xd9, 0xc7, 0xd1, 0x86, 0xc9, 0x45, 0xb0, 0xe3, 0x90, 0x82, 0x78, 0x82, 0x80, 0x82, 0x88, 0x82, 0x90, 0x82, 0x98, 0x82, 0x98, 0x82, 0x98, 0x82, 0x90, 0x81, 0x90, 0x61, 0xa0, 0xa2, 0xa8, 0xc3, 0xb8, 0xe3, 0xfa, 0xeb, 0xfa, 0xeb, 0xfa, 0x6a, 0xd9, 0xc6, 0x99, 0x24, 0x89, 0xa4, 0x99, 0xe5, 0x9a, 0x47, 0x71, 0x44, 0x61, 0x44, 0x58, 0xe3, 0x40, 0xa2, 0x40, 0xc2, 0x61, 0x04, 0x71, 0x04, 0x81, 0x45, 0x99, 0xc5, 0x91, 0xe6, 0x79, 0x64, 0x90, 0xe3, 0xb9, 0x44, 0xfb, 0xce, 0xf9, 0xe8, 0xfb, 0x0c, 0xfa, 0xcb, 0xfb, 0x0d, 0xf9, 0xe8, 0xd8, 0xe4, 0xd9, 0x04, 0xd9, 0x04, 0xd0, 0xe4, 0xd0, 0xc3, 0xc0, 0xc3, 0xb8, 0xa2, 0xb0, 0x82, 0xb8, 0xa2, 0xb8, 0xc3, 0xc0, 0xc3, 0xd0, 0xe3, 0x68, 0xa2, 0x70, 0xc2, 0x80, 0xc2, 0xb1, 0x45, 0xc2, 0x07, 0xb9, 0xc6, 0x99, 0x65, 0x58, 0xe3, 0x28, 0xa2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, + 0xc5, 0x0e, 0xbc, 0xcd, 0xac, 0x6c, 0x93, 0xc9, 0x83, 0x27, 0x62, 0x65, 0x5a, 0x25, 0x5a, 0x24, 0x5a, 0x24, 0x5a, 0x25, 0x52, 0x45, 0x52, 0x24, 0x51, 0xe4, 0x49, 0xe4, 0x49, 0xa4, 0x49, 0x84, 0x49, 0x84, 0x41, 0x84, 0xc1, 0xa6, 0xf1, 0xa7, 0xf1, 0x87, 0xfa, 0x6a, 0xfa, 0x6a, 0xfa, 0x08, 0xf9, 0xe8, 0xf9, 0xe8, 0xf9, 0xe8, 0xf9, 0xe8, 0xe1, 0x45, 0xc8, 0xc3, 0xb8, 0xa3, 0xa0, 0xa2, 0x90, 0x82, 0x88, 0x82, 0x80, 0x82, 0x80, 0x82, 0x78, 0x82, 0x78, 0x82, 0x90, 0xc3, 0x90, 0x82, 0xb9, 0xc5, 0xea, 0x6a, 0xf2, 0x6a, 0xfb, 0x0b, 0xfa, 0x49, 0xd1, 0xa5, 0xd9, 0x65, 0xb9, 0xa5, 0xb3, 0x07, 0xa2, 0x06, 0x79, 0x44, 0x50, 0xa2, 0x48, 0xc3, 0x40, 0xa2, 0x20, 0x82, 0x28, 0x82, 0x69, 0x04, 0x89, 0x24, 0x91, 0x65, 0xb2, 0x67, 0xba, 0xa7, 0x71, 0xa4, 0xe1, 0xa6, 0xfb, 0x8e, 0xc1, 0x24, 0xf9, 0x86, 0xc8, 0xe4, 0xfb, 0x4c, 0xf9, 0x66, 0xe9, 0x25, 0xe1, 0x04, 0xd0, 0xe3, 0xc8, 0xc3, 0xc0, 0xa3, 0xb8, 0xa3, 0xb8, 0xa3, 0xb8, 0xa3, 0xb8, 0xa2, 0xb8, 0xa3, 0xc0, 0xc3, 0xc8, 0xc3, 0xd0, 0xe3, 0xb8, 0x82, 0xb8, 0xa2, 0xc0, 0xc3, 0xd9, 0x04, 0xfa, 0x8a, 0xfa, 0x69, 0xfa, 0x49, 0xfa, 0x69, 0xea, 0x28, 0x71, 0x24, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, + 0x9b, 0xea, 0x93, 0xca, 0x93, 0xaa, 0x93, 0x89, 0x83, 0x47, 0x6a, 0x85, 0x62, 0x25, 0x5a, 0x25, 0x5a, 0x25, 0x5a, 0x25, 0x52, 0x45, 0x52, 0x24, 0x52, 0x04, 0x49, 0xe4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0x84, 0xa2, 0x06, 0xf9, 0xe8, 0xf9, 0xa7, 0xf9, 0xc8, 0xfa, 0x4a, 0xfa, 0xab, 0xfa, 0xab, 0xfa, 0x29, 0xf9, 0xc7, 0xf1, 0x86, 0xb0, 0x82, 0x98, 0x82, 0x98, 0x82, 0x90, 0x82, 0x90, 0x82, 0x90, 0x82, 0x90, 0x82, 0x98, 0x82, 0x98, 0x82, 0xa0, 0x82, 0xa0, 0xa2, 0xb0, 0xa3, 0xa8, 0x82, 0xb8, 0xc3, 0xf2, 0x6a, 0xfb, 0x8e, 0xfa, 0xcb, 0xb9, 0x86, 0xc9, 0xe5, 0xb2, 0xc7, 0xc3, 0x69, 0xcb, 0x8a, 0x91, 0x85, 0x69, 0x24, 0x48, 0xc3, 0x18, 0x81, 0x20, 0x82, 0x18, 0x61, 0x79, 0x25, 0x79, 0x24, 0x91, 0x65, 0xa2, 0x06, 0xcb, 0x6a, 0xa2, 0x66, 0xe2, 0xca, 0xda, 0x28, 0xfc, 0x31, 0xe1, 0xc7, 0xe1, 0x25, 0xd9, 0x66, 0xfa, 0xca, 0xd0, 0xc3, 0xd0, 0xc3, 0xc8, 0xc3, 0xc0, 0xa3, 0xb8, 0xa3, 0xb8, 0xa2, 0xb0, 0xa2, 0xb8, 0xa3, 0xc0, 0xc3, 0xd0, 0xe3, 0xc0, 0xc3, 0xa0, 0xa2, 0x88, 0x81, 0x88, 0x82, 0x88, 0x82, 0x90, 0x82, 0x90, 0x82, 0xa0, 0x82, 0xa8, 0x82, 0xb0, 0x82, 0xb0, 0xa2, 0xb8, 0xc3, 0xd9, 0xc6, 0x30, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x20, 0xc2, + 0x8b, 0x89, 0x83, 0x69, 0x83, 0x29, 0x83, 0x28, 0x83, 0x27, 0x72, 0xa6, 0x62, 0x65, 0x5a, 0x25, 0x5a, 0x05, 0x5a, 0x25, 0x5a, 0x45, 0x52, 0x44, 0x4a, 0x04, 0x49, 0xe4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x71, 0xc4, 0xd9, 0xa6, 0xd9, 0x25, 0xe1, 0x45, 0xb8, 0xa3, 0xc1, 0x04, 0xd9, 0xc7, 0xf2, 0x6a, 0xf1, 0xa7, 0xd9, 0x04, 0xc9, 0x04, 0xb8, 0xc3, 0xb0, 0xc3, 0xa0, 0xa3, 0xa0, 0xa2, 0x98, 0xa2, 0x98, 0x82, 0xb1, 0x25, 0xb9, 0x45, 0xa8, 0xc2, 0xb0, 0xc3, 0xc9, 0xc5, 0xa9, 0x03, 0xa8, 0xe3, 0xe9, 0xc7, 0xfa, 0xec, 0xfa, 0xa9, 0xfa, 0xcb, 0xbb, 0x08, 0xba, 0xa7, 0xb2, 0x87, 0x89, 0x85, 0x79, 0x44, 0x59, 0x04, 0x30, 0xa2, 0x18, 0x61, 0x28, 0xa2, 0x69, 0x04, 0x81, 0x04, 0x9a, 0x07, 0xc2, 0xc9, 0xba, 0xa7, 0xc3, 0x69, 0xfc, 0x2f, 0xeb, 0x4c, 0xf2, 0x8a, 0xfb, 0xae, 0xf2, 0x49, 0xd0, 0xe4, 0xfa, 0x49, 0xe9, 0x86, 0xd8, 0xe4, 0xd0, 0xe4, 0xc8, 0xc3, 0xc8, 0xc3, 0xd0, 0xe4, 0xd0, 0xe4, 0xd0, 0xe4, 0xc8, 0xc3, 0xb8, 0xa2, 0xa8, 0xa2, 0xa8, 0xa2, 0xb0, 0xc3, 0xa0, 0xe3, 0x78, 0x61, 0x80, 0x81, 0x88, 0x81, 0x90, 0x81, 0x98, 0x81, 0xa8, 0x82, 0xb8, 0xa2, 0xe9, 0x86, 0xfa, 0x08, 0x69, 0x03, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x20, 0xc2, + 0x73, 0x08, 0x73, 0x08, 0x62, 0x46, 0x62, 0x66, 0x7a, 0xe7, 0x7a, 0xc6, 0x72, 0x85, 0x62, 0x45, 0x5a, 0x05, 0x5a, 0x05, 0x5a, 0x25, 0x52, 0x24, 0x52, 0x24, 0x4a, 0x04, 0x49, 0xc4, 0x49, 0xc4, 0x51, 0xa4, 0x49, 0xa4, 0x49, 0x84, 0x49, 0x83, 0x69, 0x84, 0x89, 0x03, 0x98, 0x82, 0x98, 0x82, 0xa0, 0x82, 0xa8, 0xa2, 0xa0, 0x82, 0xa0, 0x82, 0xa0, 0x82, 0xb0, 0xa2, 0xb8, 0xa3, 0xb8, 0xc3, 0xc0, 0xc3, 0xc0, 0xc3, 0xc0, 0xc3, 0xc0, 0xc3, 0xd1, 0x24, 0xc8, 0xe3, 0xe1, 0x85, 0xe9, 0xc6, 0xd1, 0x24, 0xb9, 0xc6, 0xfa, 0x8a, 0xfb, 0x2c, 0xf2, 0x8a, 0xb8, 0xc3, 0xfa, 0xa9, 0xcb, 0x69, 0xdb, 0xeb, 0xba, 0x27, 0x89, 0x85, 0x79, 0x65, 0x50, 0xa2, 0x48, 0xe3, 0x40, 0xa2, 0x61, 0x04, 0x79, 0x04, 0xa1, 0xa7, 0xa9, 0xc6, 0xb2, 0x26, 0xd3, 0x8a, 0xc2, 0xe8, 0xea, 0x47, 0xfb, 0x8d, 0xfa, 0x49, 0xf9, 0xc7, 0xfa, 0x29, 0xe9, 0x86, 0xe9, 0x25, 0xfa, 0xaa, 0xe1, 0x04, 0xd8, 0xe4, 0xc8, 0xe4, 0xb8, 0xa3, 0xb0, 0x82, 0xa0, 0x82, 0xa0, 0x62, 0xa0, 0x82, 0xa0, 0x82, 0xa8, 0x82, 0xb0, 0x82, 0xe1, 0x66, 0xfa, 0x8b, 0xa0, 0xe3, 0x88, 0x81, 0x90, 0x81, 0xc0, 0xe3, 0xe9, 0xe7, 0xfa, 0x49, 0xfa, 0x6a, 0xf1, 0xe7, 0xa1, 0x24, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x20, 0xc2, + 0x5a, 0x46, 0x5a, 0x46, 0x49, 0xe5, 0x52, 0x05, 0x7a, 0xc7, 0x7a, 0xc6, 0x72, 0x86, 0x6a, 0x65, 0x5a, 0x05, 0x51, 0xe4, 0x52, 0x04, 0x52, 0x24, 0x52, 0x05, 0x49, 0xe4, 0x49, 0xc4, 0x49, 0xc4, 0x51, 0xc4, 0x49, 0xa4, 0x9a, 0x06, 0xe9, 0xa6, 0xb0, 0x82, 0xa0, 0x82, 0x98, 0x82, 0x90, 0x82, 0x98, 0x82, 0x98, 0x82, 0x98, 0x82, 0x90, 0x82, 0x98, 0x82, 0x98, 0x82, 0x98, 0x82, 0xa0, 0x82, 0xa8, 0x82, 0xa8, 0x82, 0xb0, 0x82, 0xb8, 0xa2, 0xc0, 0xa3, 0xc0, 0xc3, 0xc8, 0xc3, 0xd0, 0xc3, 0xd0, 0xe3, 0xc8, 0xc3, 0xf3, 0x0b, 0xfa, 0xec, 0xfa, 0xeb, 0xd1, 0x65, 0xf2, 0x08, 0xbb, 0x08, 0xcb, 0x28, 0xb2, 0x47, 0x91, 0x65, 0x79, 0x44, 0x68, 0xe3, 0x71, 0x24, 0x79, 0x24, 0x81, 0x65, 0x99, 0x86, 0xa9, 0xe7, 0xb2, 0x48, 0xb2, 0x46, 0xba, 0xa7, 0xe4, 0x4c, 0xfb, 0x8e, 0xfa, 0x69, 0xfa, 0xcb, 0xfa, 0xec, 0xe9, 0x65, 0xfa, 0xab, 0xf9, 0xc7, 0xf9, 0xc7, 0xe9, 0x25, 0xd0, 0xe3, 0xc8, 0xc3, 0xc0, 0xa3, 0xb8, 0xa2, 0xb8, 0xa2, 0xb0, 0xa2, 0xb8, 0xa2, 0xb8, 0xa2, 0xb8, 0xa3, 0xd1, 0x04, 0xf9, 0xe8, 0xfa, 0x4a, 0xa0, 0xa2, 0x90, 0x82, 0x98, 0x82, 0xb8, 0xe3, 0xd1, 0x65, 0xa1, 0x03, 0x78, 0xc2, 0x48, 0xc2, 0x20, 0xc2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, + 0x39, 0x84, 0x39, 0xa4, 0x41, 0xa5, 0x49, 0xe5, 0x72, 0xa6, 0x7a, 0xe6, 0x72, 0xa6, 0x72, 0x86, 0x62, 0x45, 0x5a, 0x05, 0x52, 0x04, 0x52, 0x04, 0x49, 0xc4, 0x41, 0xa4, 0x49, 0xc4, 0x49, 0xc4, 0x49, 0xa4, 0xba, 0x06, 0xc8, 0xc3, 0x90, 0x81, 0x80, 0x81, 0x78, 0x61, 0x70, 0x61, 0x68, 0x61, 0x60, 0x61, 0x60, 0x61, 0x60, 0x82, 0x68, 0x82, 0x68, 0x82, 0x70, 0x82, 0x78, 0x82, 0x78, 0x82, 0x78, 0x82, 0x80, 0x82, 0x90, 0x82, 0x98, 0x82, 0xa8, 0x82, 0xa8, 0x82, 0xb8, 0xa2, 0xd1, 0x25, 0xd9, 0x45, 0xd1, 0x45, 0xf3, 0x0c, 0xfa, 0x8b, 0xfa, 0x6a, 0xe1, 0x45, 0xaa, 0x06, 0xc3, 0xaa, 0xba, 0x87, 0xca, 0xc8, 0xa1, 0xe6, 0x99, 0x45, 0x81, 0x04, 0x89, 0x04, 0x81, 0x04, 0x89, 0x24, 0x91, 0x45, 0xb2, 0x27, 0xc3, 0x08, 0xc2, 0xe8, 0xca, 0xc7, 0xe3, 0xab, 0xca, 0x68, 0xe1, 0xe7, 0xe1, 0x45, 0xfa, 0x28, 0xfb, 0x6d, 0xfb, 0xce, 0xfb, 0x0b, 0xfa, 0x29, 0xfa, 0x89, 0xe9, 0x25, 0xd8, 0xe4, 0xd8, 0xe4, 0xd0, 0xe3, 0xc8, 0xc3, 0xc8, 0xc3, 0xc8, 0xc3, 0xc8, 0xc3, 0xc8, 0xc3, 0xc8, 0xc3, 0xe1, 0x45, 0xc1, 0x84, 0x50, 0xc2, 0x48, 0xc2, 0x38, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x18, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xa2, + 0x31, 0x44, 0x31, 0x44, 0x31, 0x64, 0x39, 0x84, 0x6a, 0x66, 0x7a, 0xe6, 0x72, 0xa6, 0x6a, 0x86, 0x62, 0x45, 0x5a, 0x25, 0x52, 0x04, 0x52, 0x05, 0x49, 0xe4, 0x49, 0xa4, 0x49, 0xc4, 0x51, 0xc4, 0x51, 0xc4, 0x71, 0x64, 0xa0, 0x82, 0x90, 0x82, 0x90, 0x82, 0x90, 0x82, 0x90, 0x81, 0x90, 0x81, 0x90, 0x82, 0x88, 0x82, 0x80, 0x82, 0x80, 0x82, 0x78, 0x82, 0x78, 0x81, 0x78, 0x82, 0x78, 0x82, 0x88, 0x82, 0x90, 0x82, 0xa0, 0x82, 0xb0, 0x82, 0xb8, 0xa2, 0xc0, 0xa2, 0xc8, 0xe3, 0xd0, 0xe4, 0xd9, 0x04, 0xe9, 0x65, 0xfc, 0x70, 0xfa, 0x6a, 0xfa, 0xcb, 0xfb, 0x0c, 0xf2, 0xaa, 0xe3, 0x09, 0xdb, 0x69, 0xba, 0x47, 0xb2, 0x07, 0xa1, 0xa6, 0x89, 0x44, 0x99, 0x85, 0x91, 0x24, 0xa9, 0xa6, 0xd3, 0x2a, 0xba, 0x67, 0xb2, 0x86, 0xc3, 0x08, 0xd2, 0xa8, 0xfb, 0x2b, 0xfb, 0xcc, 0xfb, 0x6d, 0xf3, 0x0c, 0xfa, 0x89, 0xc9, 0x25, 0xfb, 0x0b, 0xfc, 0x0d, 0xfa, 0xca, 0xfb, 0x6c, 0xfb, 0x8c, 0xfa, 0x69, 0xe9, 0x86, 0xe1, 0x04, 0xd9, 0x04, 0xd0, 0xe4, 0xd0, 0xe4, 0xd0, 0xe4, 0xd1, 0x24, 0xe9, 0x65, 0xd9, 0x84, 0x61, 0x43, 0x39, 0x03, 0x28, 0xe2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xa2, 0x20, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xa2, + 0x29, 0x03, 0x20, 0xe3, 0x29, 0x64, 0x39, 0xe5, 0x62, 0xa6, 0x7a, 0xc7, 0x72, 0xa6, 0x6a, 0x86, 0x62, 0x45, 0x5a, 0x05, 0x5a, 0x25, 0x52, 0x25, 0x52, 0x24, 0x49, 0xe4, 0x51, 0xe4, 0x51, 0xc4, 0x51, 0xa4, 0x49, 0xa4, 0x61, 0x64, 0xa0, 0xa2, 0xa8, 0x82, 0xa8, 0x82, 0xa8, 0x82, 0xa8, 0x82, 0xa8, 0x82, 0xa8, 0x82, 0xb0, 0x82, 0xb0, 0x82, 0xb0, 0x82, 0xb0, 0x82, 0xb8, 0xa2, 0xb8, 0xa3, 0xb8, 0xa3, 0xb8, 0xa3, 0xc0, 0xa3, 0xc0, 0xc3, 0xc8, 0xc3, 0xc8, 0xc3, 0xd8, 0xe3, 0xd0, 0xc3, 0xd0, 0xc3, 0xea, 0x69, 0xfb, 0x2d, 0xf9, 0xc7, 0xfc, 0x10, 0xfa, 0x29, 0xfc, 0x0d, 0xe2, 0x46, 0xca, 0xa8, 0xba, 0x88, 0xca, 0x68, 0xc2, 0x07, 0xba, 0x07, 0xca, 0x89, 0xb1, 0xa6, 0xc2, 0x07, 0xba, 0x26, 0xd3, 0xeb, 0xbb, 0x69, 0xfb, 0xac, 0xfd, 0x52, 0xfc, 0xb2, 0xea, 0x8a, 0xf1, 0x65, 0xfa, 0x8a, 0xd1, 0x65, 0xf9, 0xc7, 0xfb, 0x4d, 0xfb, 0x6d, 0xfb, 0x6d, 0xfb, 0x4c, 0xfb, 0x4b, 0xfb, 0x4c, 0xfb, 0x4d, 0xfb, 0x4d, 0xfb, 0x4d, 0xfb, 0x6d, 0xfb, 0x6d, 0xfa, 0xec, 0xf9, 0xe7, 0x99, 0xa4, 0x61, 0xc4, 0x59, 0x84, 0x49, 0x63, 0x31, 0x03, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xa2, + 0x20, 0xe2, 0x29, 0x64, 0x4a, 0x46, 0x5a, 0xe7, 0x62, 0xe7, 0x7b, 0x07, 0x7a, 0xe7, 0x72, 0xa6, 0x6a, 0x66, 0x5a, 0x25, 0x5a, 0x25, 0x5a, 0x25, 0x52, 0x24, 0x51, 0xe4, 0x51, 0xc4, 0x51, 0xc4, 0x51, 0xa4, 0x49, 0xa4, 0x61, 0xa4, 0xe1, 0x65, 0xa0, 0xa2, 0x98, 0x82, 0xa8, 0x82, 0xe1, 0xc7, 0xfa, 0x6a, 0xfa, 0x6a, 0xfa, 0x4a, 0xfa, 0x29, 0xf9, 0xe8, 0xf9, 0xc7, 0xf1, 0x86, 0xe1, 0x25, 0xd1, 0x04, 0xc8, 0xe4, 0xc8, 0xe4, 0xc0, 0xc3, 0xb0, 0x82, 0xa0, 0x82, 0xb0, 0xc3, 0xea, 0xaa, 0xfa, 0xac, 0xfa, 0x8b, 0xfa, 0x69, 0xf1, 0x25, 0xea, 0x89, 0xfa, 0xec, 0xfb, 0x2d, 0xf3, 0x4c, 0xf2, 0x89, 0xc2, 0x27, 0xba, 0x07, 0xba, 0x48, 0xba, 0x88, 0xba, 0x47, 0xc2, 0xa9, 0xca, 0xc9, 0xc3, 0x29, 0xaa, 0x66, 0xe2, 0xa9, 0xfb, 0x4c, 0xfa, 0xec, 0xfb, 0x0c, 0xe2, 0x8a, 0xf1, 0xa7, 0xf9, 0x66, 0xf9, 0xe7, 0xfa, 0xed, 0xfb, 0x6e, 0xf9, 0xe8, 0xf9, 0xc8, 0xfa, 0x6a, 0xfa, 0xec, 0xfb, 0x4c, 0xfb, 0x2c, 0xfb, 0x0c, 0xfb, 0x2c, 0xfa, 0x8a, 0xd8, 0xe4, 0xd0, 0xc3, 0x99, 0x44, 0x72, 0x05, 0x61, 0xe4, 0x59, 0xc4, 0x51, 0x84, 0x49, 0x43, 0x31, 0x02, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xa2, 0x18, 0xa2, + 0x20, 0xe3, 0x39, 0xc5, 0x4a, 0x66, 0x52, 0xc6, 0x5a, 0xa6, 0x6a, 0xc6, 0x7a, 0xe7, 0x72, 0xa6, 0x6a, 0x86, 0x5a, 0x25, 0x5a, 0x04, 0x5a, 0x04, 0x52, 0x04, 0x51, 0xe4, 0x51, 0xa4, 0x49, 0xc4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0x84, 0x89, 0x84, 0xe9, 0x86, 0xd0, 0xe4, 0xa0, 0x81, 0xd9, 0xa6, 0xf1, 0xe8, 0xf1, 0xe8, 0xfa, 0x8a, 0xfa, 0xcc, 0xfa, 0xec, 0xfa, 0xec, 0xfa, 0x6a, 0xfa, 0x29, 0xfa, 0x09, 0xf9, 0xe8, 0xf9, 0xa7, 0xf1, 0x66, 0xf1, 0xc7, 0xf1, 0x66, 0xf9, 0xa7, 0xfa, 0x29, 0xfa, 0xcb, 0xfb, 0x6c, 0xfc, 0x0e, 0xfb, 0x0b, 0xfb, 0x4c, 0xfa, 0x49, 0xfa, 0xab, 0xfb, 0xcf, 0xfa, 0x49, 0xda, 0x69, 0xea, 0x48, 0xba, 0x48, 0xcb, 0x09, 0xb2, 0x87, 0x91, 0xc4, 0xc2, 0xe8, 0xc3, 0x2a, 0xf2, 0x89, 0xf2, 0xca, 0xfb, 0xae, 0xeb, 0x6c, 0xf9, 0xc7, 0xf9, 0xa7, 0xfb, 0x0b, 0xf1, 0x04, 0xfb, 0x2c, 0xfb, 0xac, 0xfb, 0x6c, 0xfb, 0x6d, 0xfa, 0xab, 0xf1, 0x66, 0xe9, 0x25, 0xf1, 0xa7, 0xfa, 0x8b, 0xfb, 0x4d, 0xfb, 0x4d, 0xfb, 0x8e, 0xf2, 0xec, 0xd9, 0xa6, 0xe1, 0xc7, 0xfa, 0xaa, 0x69, 0xe4, 0x59, 0xc4, 0x59, 0xa4, 0x51, 0x64, 0x39, 0x43, 0x29, 0x02, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, + 0x29, 0x03, 0x29, 0x43, 0x39, 0xa4, 0x31, 0x84, 0x31, 0x64, 0x62, 0x46, 0x72, 0xa6, 0x72, 0xa6, 0x6a, 0x86, 0x5a, 0x45, 0x52, 0x05, 0x5a, 0x04, 0x52, 0x04, 0x51, 0xe4, 0x49, 0xc4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0x84, 0x49, 0x84, 0x41, 0x84, 0x71, 0x64, 0x79, 0x03, 0x98, 0xe3, 0xfa, 0x29, 0xe9, 0x66, 0xd0, 0xc3, 0xc8, 0xa3, 0xd0, 0xc3, 0xe1, 0x04, 0xe9, 0x66, 0xf1, 0xc8, 0xfa, 0x29, 0xfa, 0x4a, 0xfa, 0x4a, 0xf9, 0xa7, 0xf9, 0x66, 0xfa, 0x29, 0xfa, 0x8a, 0xfb, 0x4c, 0xfb, 0x6c, 0xfb, 0x6d, 0xfb, 0x0b, 0xea, 0x08, 0xe9, 0xa7, 0xf3, 0x6e, 0xf9, 0xc8, 0xfa, 0xcb, 0xfb, 0x0c, 0xfb, 0x6d, 0xfb, 0x6d, 0xf3, 0x0a, 0xda, 0xca, 0xda, 0x68, 0xd3, 0x29, 0xdb, 0x09, 0xfb, 0xad, 0xfc, 0x4f, 0xfc, 0x0d, 0xfc, 0x0f, 0xf9, 0x86, 0xfb, 0x6c, 0xe9, 0x86, 0xfa, 0x49, 0xf1, 0xc8, 0xfa, 0xab, 0xfb, 0x8e, 0xfb, 0x8d, 0xfb, 0x6d, 0xfb, 0x4d, 0xfb, 0x4d, 0xfa, 0x29, 0xe9, 0x25, 0xe1, 0x05, 0xe9, 0x66, 0xfa, 0x6a, 0xfb, 0x2d, 0xfb, 0xf0, 0xf3, 0x2b, 0xc2, 0x47, 0x79, 0xc4, 0x51, 0xc4, 0x59, 0xc4, 0x59, 0xa4, 0x51, 0x84, 0x41, 0x43, 0x31, 0x02, 0x28, 0xe2, 0x20, 0xe2, 0x28, 0xe2, 0x28, 0xc2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xe2, 0x28, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, + 0x29, 0x03, 0x29, 0x03, 0x21, 0x03, 0x20, 0xe3, 0x29, 0x23, 0x5a, 0x05, 0x72, 0xa6, 0x72, 0xa7, 0x72, 0xc6, 0x62, 0x66, 0x5a, 0x25, 0x52, 0x04, 0x51, 0xe4, 0x51, 0xc4, 0x49, 0xc4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0xa4, 0x59, 0x83, 0xea, 0x29, 0xfa, 0xcc, 0xfa, 0x4a, 0xf1, 0xe8, 0xe1, 0x86, 0xd9, 0x25, 0xc8, 0xc3, 0xc8, 0xa3, 0xf9, 0xc8, 0xf1, 0x45, 0xf9, 0xe8, 0xfa, 0xab, 0xfa, 0xcb, 0xfb, 0x4c, 0xfb, 0x4c, 0xfb, 0x4d, 0xf2, 0x29, 0xfa, 0x08, 0xf9, 0x66, 0xfa, 0x49, 0xe9, 0xc7, 0xfb, 0x0d, 0xfb, 0x0b, 0xfa, 0x8b, 0xfb, 0x0c, 0xfa, 0x69, 0xfb, 0x4d, 0xfb, 0x8c, 0xfb, 0x4c, 0xfc, 0x91, 0xfb, 0xad, 0xfc, 0x50, 0xfc, 0x0f, 0xfb, 0x6d, 0xfb, 0x8c, 0xf1, 0x45, 0xf9, 0xa7, 0xe9, 0x25, 0xfb, 0x0c, 0xfb, 0x6c, 0xfc, 0x70, 0xfb, 0x6d, 0xfa, 0xcc, 0xfb, 0x8e, 0xfb, 0x6e, 0xfb, 0x8e, 0xfb, 0x8e, 0xfb, 0x2d, 0xfa, 0x29, 0xe9, 0x25, 0xe1, 0x25, 0xe1, 0x25, 0xf1, 0xe8, 0xea, 0xcb, 0x20, 0xe2, 0x49, 0x64, 0x59, 0xe4, 0x59, 0xe4, 0x51, 0xc4, 0x51, 0xa4, 0x41, 0x84, 0x31, 0x43, 0x28, 0xe2, 0x20, 0xe2, 0x20, 0xc2, 0x20, 0xe2, 0x20, 0xc2, 0x20, 0xe2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, + 0x20, 0xe2, 0x20, 0xe2, 0x20, 0xe3, 0x20, 0xe3, 0x29, 0x23, 0x49, 0xc5, 0x72, 0x86, 0x72, 0xc7, 0x72, 0xc7, 0x6a, 0x86, 0x5a, 0x45, 0x52, 0x05, 0x51, 0xe4, 0x51, 0xc4, 0x51, 0xa4, 0x49, 0xa4, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x63, 0xb2, 0x07, 0xfb, 0x2d, 0xfb, 0x8e, 0xfb, 0x4d, 0xfb, 0x4d, 0xfb, 0x2d, 0xfb, 0x0c, 0xf9, 0xe8, 0xfa, 0x6a, 0xfa, 0xcb, 0xfb, 0x0c, 0xfb, 0x4d, 0xfb, 0x4d, 0xfa, 0xcb, 0xe9, 0x66, 0xe1, 0x25, 0xe0, 0xe4, 0xfa, 0xec, 0xfa, 0x89, 0xfc, 0x2e, 0xf1, 0x25, 0xf3, 0x6c, 0xfc, 0x70, 0xfb, 0xef, 0xfb, 0x2c, 0xfc, 0x2f, 0xfa, 0xec, 0xfb, 0x6e, 0xfc, 0x30, 0xfb, 0xae, 0xfb, 0x6c, 0xfb, 0x8c, 0xf9, 0x86, 0xfb, 0x0b, 0xfa, 0x29, 0xfa, 0x48, 0xfa, 0xed, 0xfc, 0x0d, 0xfb, 0xad, 0xfb, 0x8e, 0xfb, 0xcd, 0xfb, 0x8d, 0xfa, 0x6a, 0xfb, 0x0d, 0xfb, 0xaf, 0xfb, 0xae, 0xfb, 0xef, 0xfb, 0x4d, 0xfb, 0x0c, 0xfa, 0x4a, 0xe9, 0x66, 0xd8, 0xe4, 0xfa, 0xab, 0x30, 0xa1, 0x39, 0x43, 0x51, 0xc4, 0x59, 0xe5, 0x59, 0xc5, 0x51, 0xc5, 0x49, 0xa4, 0x41, 0x63, 0x31, 0x23, 0x20, 0xe2, 0x20, 0xe2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0x82, + 0x20, 0xe2, 0x20, 0xe2, 0x18, 0xe2, 0x18, 0xc2, 0x21, 0x03, 0x39, 0x84, 0x5a, 0x46, 0x72, 0xa7, 0x72, 0xc7, 0x62, 0x86, 0x5a, 0x45, 0x52, 0x05, 0x51, 0xe4, 0x51, 0xc4, 0x51, 0xa4, 0x49, 0xa4, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x89, 0x43, 0xd8, 0xe4, 0xe1, 0x04, 0xfa, 0x28, 0xfb, 0x0c, 0xfa, 0xec, 0xfb, 0x0c, 0xfa, 0xcb, 0xfa, 0x49, 0xfa, 0xec, 0xfb, 0x6d, 0xfb, 0x4d, 0xfa, 0xaa, 0xe9, 0x66, 0xc8, 0xc3, 0xd0, 0xe4, 0xd0, 0xe4, 0xd9, 0x04, 0xfa, 0x8a, 0xfb, 0xac, 0xf2, 0x69, 0xe9, 0x45, 0xea, 0x08, 0xfa, 0xa8, 0xfa, 0xec, 0xfa, 0xec, 0xfa, 0x89, 0xfb, 0x0b, 0xfb, 0x2b, 0xfb, 0x4e, 0xfb, 0xaf, 0xfb, 0x6d, 0xea, 0xec, 0xfa, 0x29, 0xf9, 0xa6, 0xfa, 0x28, 0xfc, 0x6d, 0xfc, 0x4f, 0xfc, 0x0f, 0xfb, 0xac, 0xfb, 0x8d, 0xfb, 0x8e, 0xfb, 0xad, 0xfb, 0x8d, 0xfa, 0x8b, 0xfa, 0x2a, 0xfb, 0xf0, 0xfb, 0xcf, 0xfc, 0x51, 0xfb, 0x6c, 0xfb, 0x4c, 0xfb, 0x0c, 0xfa, 0xec, 0xf2, 0x48, 0x28, 0xa2, 0x31, 0x03, 0x49, 0x84, 0x51, 0xa4, 0x51, 0xc4, 0x49, 0xc4, 0x49, 0xa4, 0x41, 0x84, 0x31, 0x43, 0x29, 0x02, 0x20, 0xe2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x10, 0x82, 0x10, 0x82, + 0x20, 0xe3, 0x20, 0xe2, 0x21, 0x03, 0x21, 0x03, 0x21, 0x03, 0x29, 0x43, 0x52, 0x05, 0x6a, 0x87, 0x72, 0xc7, 0x6a, 0xa6, 0x5a, 0x65, 0x52, 0x05, 0x51, 0xe4, 0x51, 0xa4, 0x49, 0xa4, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x64, 0x49, 0x64, 0x41, 0x63, 0xa1, 0xc6, 0xf2, 0x89, 0xfa, 0x69, 0xfa, 0xca, 0xfb, 0x2c, 0xfb, 0x4c, 0xe2, 0x07, 0xb8, 0xc2, 0x91, 0x63, 0xc1, 0x04, 0x88, 0x82, 0x98, 0xa2, 0x98, 0xe3, 0xb0, 0xe3, 0xc8, 0xc3, 0xc0, 0xc3, 0xd0, 0xe4, 0xb8, 0xa2, 0xd9, 0x45, 0xfa, 0xab, 0xfb, 0x2b, 0xfb, 0x0a, 0xfa, 0x48, 0xfb, 0xae, 0xfc, 0x8f, 0xf1, 0xa6, 0xfa, 0x28, 0xd9, 0x24, 0xfa, 0x49, 0xfb, 0x8e, 0xfc, 0x31, 0xe9, 0xa7, 0xe1, 0x04, 0xe9, 0x04, 0xf1, 0xc7, 0xfa, 0xaa, 0xfb, 0x0c, 0xfb, 0xcc, 0xfc, 0x2d, 0xfb, 0xac, 0xfb, 0xee, 0xfc, 0x0f, 0xfb, 0x6c, 0xfb, 0x8d, 0xfb, 0x4e, 0xfb, 0xcd, 0xfb, 0x6d, 0xfb, 0x0c, 0xf9, 0xe8, 0xfb, 0xcf, 0xfc, 0x51, 0xfb, 0xcf, 0xfb, 0x4c, 0xfb, 0x6c, 0xfb, 0x8e, 0xc1, 0xc7, 0x18, 0xa2, 0x28, 0xe2, 0x39, 0x43, 0x41, 0x84, 0x41, 0x84, 0x39, 0x84, 0x39, 0x63, 0x39, 0x43, 0x31, 0x23, 0x29, 0x02, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x10, 0x82, 0x10, 0x82, + 0x21, 0x03, 0x21, 0x03, 0x21, 0x23, 0x21, 0x03, 0x20, 0xe3, 0x20, 0xe2, 0x41, 0x84, 0x6a, 0x86, 0x6a, 0xc7, 0x6a, 0x86, 0x5a, 0x66, 0x5a, 0x25, 0x51, 0xe5, 0x51, 0xc4, 0x49, 0xa4, 0x49, 0x84, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0x84, 0x49, 0x84, 0x59, 0x64, 0xea, 0x69, 0xfa, 0xeb, 0xfb, 0x2b, 0xfb, 0x2b, 0xfb, 0x0b, 0xea, 0x07, 0xc0, 0xe2, 0x89, 0x03, 0x51, 0xc4, 0x9a, 0xa8, 0xd1, 0xc5, 0xb1, 0x65, 0x60, 0x61, 0xc1, 0x45, 0xc8, 0xc3, 0xc8, 0xc3, 0xc0, 0xc3, 0xa8, 0x82, 0xe9, 0x87, 0xfa, 0x6a, 0xfa, 0xeb, 0xfb, 0x0a, 0xf2, 0x49, 0xfc, 0xf2, 0xfc, 0x90, 0xf9, 0xe8, 0xe1, 0x24, 0xe9, 0x45, 0xc1, 0xc7, 0xe1, 0x66, 0xea, 0x29, 0xb8, 0x82, 0xe1, 0x04, 0xd1, 0x04, 0xe1, 0x25, 0xfb, 0xad, 0xfc, 0x6f, 0xfc, 0x4f, 0xfc, 0x2c, 0xfc, 0x0d, 0xfb, 0xcd, 0xfb, 0xcd, 0xfb, 0xaf, 0xfb, 0xae, 0xfb, 0x6c, 0xfb, 0xae, 0xfb, 0xcf, 0xfb, 0x8c, 0xfb, 0x6d, 0xfb, 0x4d, 0xf9, 0xc8, 0xfc, 0x31, 0xfb, 0xd0, 0xfb, 0x0d, 0xfb, 0x2d, 0xfb, 0x2d, 0xe2, 0x69, 0x10, 0x81, 0x20, 0xc2, 0x31, 0x23, 0x39, 0x64, 0x31, 0x64, 0x31, 0x43, 0x31, 0x43, 0x31, 0x23, 0x29, 0x03, 0x20, 0xe2, 0x20, 0xc2, 0x20, 0xc2, 0x18, 0xc2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0x82, 0x10, 0x82, 0x10, 0x82, 0x10, 0x82, + 0x21, 0x03, 0x21, 0x03, 0x29, 0x03, 0x21, 0x03, 0x21, 0x03, 0x20, 0xe3, 0x31, 0x43, 0x5a, 0x46, 0x6a, 0xa7, 0x62, 0x86, 0x62, 0x66, 0x5a, 0x05, 0x51, 0xe5, 0x51, 0xc4, 0x51, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0x84, 0x41, 0x63, 0xe2, 0x68, 0xfa, 0x8a, 0xfa, 0x68, 0xf2, 0x07, 0xe1, 0x84, 0xc1, 0x23, 0x81, 0x43, 0x49, 0x63, 0x41, 0x64, 0x5a, 0x86, 0xba, 0x88, 0xfc, 0x8e, 0xc2, 0x27, 0xe2, 0x08, 0xc8, 0xc3, 0xd0, 0xe4, 0xb0, 0xa2, 0xb8, 0xc3, 0xf9, 0xe8, 0xfa, 0x09, 0xfa, 0xeb, 0xfa, 0xeb, 0xe1, 0x04, 0xfa, 0xea, 0xfc, 0x90, 0xfa, 0x6a, 0xd0, 0xc3, 0xfa, 0x49, 0xf9, 0x86, 0xfa, 0xaa, 0xfa, 0x69, 0xd0, 0xa3, 0xfa, 0xaa, 0xe1, 0x25, 0xc0, 0xc3, 0xe9, 0xc7, 0xfb, 0xad, 0xfc, 0x4e, 0xfb, 0xcc, 0xfb, 0xed, 0xfc, 0x0e, 0xfb, 0xcd, 0xfb, 0x6d, 0xfb, 0xef, 0xfb, 0xf0, 0xfb, 0x6c, 0xfb, 0x6c, 0xfc, 0x30, 0xfb, 0x6c, 0xfb, 0x8d, 0xfb, 0x6d, 0xfb, 0x2c, 0xfa, 0x09, 0xfb, 0x4d, 0xca, 0x08, 0xe2, 0x29, 0x91, 0x25, 0x18, 0x81, 0x18, 0xa2, 0x20, 0xc2, 0x29, 0x03, 0x39, 0x64, 0x31, 0x43, 0x31, 0x43, 0x31, 0x23, 0x29, 0x23, 0x29, 0x02, 0x20, 0xe2, 0x20, 0xc2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x10, 0x82, 0x10, 0x82, 0x10, 0x82, 0x10, 0x82, + 0x28, 0xe2, 0x20, 0xe3, 0x20, 0xe2, 0x20, 0xe2, 0x20, 0xe3, 0x29, 0x03, 0x29, 0x43, 0x52, 0x05, 0x62, 0x87, 0x62, 0x86, 0x5a, 0x66, 0x52, 0x25, 0x51, 0xc5, 0x51, 0xa4, 0x51, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0x84, 0x49, 0x84, 0x41, 0x64, 0x61, 0x63, 0x71, 0x63, 0x71, 0x63, 0x51, 0x64, 0x41, 0x64, 0x49, 0x64, 0x41, 0x64, 0x5a, 0x46, 0x8c, 0x8b, 0xab, 0xa8, 0xfb, 0x8c, 0xfa, 0x8a, 0xd0, 0xc3, 0xc8, 0xe4, 0xa8, 0x82, 0xd1, 0x04, 0xfa, 0x49, 0xf9, 0xc8, 0xfa, 0x8b, 0xfa, 0xeb, 0xd0, 0xe3, 0xfa, 0x69, 0xfc, 0x6f, 0xfb, 0x8d, 0xd0, 0xc3, 0xf1, 0xe7, 0xfb, 0x4d, 0xfb, 0x2c, 0xfb, 0x6d, 0xe0, 0xe4, 0xfb, 0x6d, 0xfa, 0x8a, 0xfa, 0xab, 0xf9, 0xe7, 0xfb, 0x2c, 0xfb, 0x6c, 0xfb, 0xee, 0xfc, 0x0d, 0xfb, 0xac, 0xfc, 0x0f, 0xfb, 0xac, 0xfb, 0xce, 0xfb, 0x8d, 0xfb, 0x8e, 0xfb, 0xf0, 0xfb, 0x6c, 0xfb, 0xce, 0xfb, 0x4c, 0xfb, 0x6c, 0xfb, 0x8d, 0xfb, 0x6d, 0xfb, 0x0c, 0xfa, 0x69, 0x08, 0x61, 0x10, 0x81, 0x18, 0x82, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x20, 0xe2, 0x31, 0x23, 0x31, 0x43, 0x31, 0x43, 0x31, 0x23, 0x29, 0x23, 0x29, 0x03, 0x21, 0x02, 0x20, 0xc2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0x82, 0x10, 0x82, 0x10, 0x82, 0x10, 0x82, 0x10, 0xa2, 0x18, 0xa2, + 0x28, 0xc2, 0x20, 0xc2, 0x18, 0xa2, 0x18, 0x82, 0x18, 0xc2, 0x21, 0x03, 0x29, 0x23, 0x41, 0xc5, 0x62, 0x87, 0x62, 0x86, 0x5a, 0x46, 0x52, 0x05, 0x51, 0xe4, 0x49, 0xa4, 0x49, 0xa4, 0x51, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0x84, 0x41, 0x84, 0x41, 0x84, 0x49, 0x84, 0x49, 0x84, 0x49, 0x84, 0x41, 0x64, 0x41, 0x64, 0x41, 0x64, 0x41, 0x63, 0x83, 0xea, 0x7c, 0xa9, 0x64, 0xa7, 0xea, 0xea, 0xd8, 0xe4, 0xc8, 0xe4, 0xa8, 0x82, 0xe9, 0xa7, 0xfa, 0x4a, 0xf9, 0xc8, 0xfa, 0x6a, 0xfa, 0xcb, 0xc0, 0xc3, 0xf1, 0xc7, 0xfb, 0xce, 0xfc, 0x6f, 0xe9, 0x45, 0xf1, 0x86, 0xfb, 0x0c, 0xfb, 0x2c, 0xfa, 0xeb, 0xe1, 0x25, 0xf1, 0xc7, 0xfd, 0x11, 0xfa, 0x6a, 0xfc, 0x30, 0xfa, 0xea, 0xfb, 0xee, 0xfb, 0x6c, 0xfb, 0xef, 0xfb, 0xcc, 0xfb, 0xcd, 0xfb, 0xae, 0xfb, 0xee, 0xfb, 0xef, 0xfb, 0x6c, 0xfb, 0xee, 0xfb, 0x8e, 0xfc, 0x10, 0xfa, 0xea, 0xfa, 0x29, 0xfb, 0x6d, 0xfb, 0x6c, 0xfb, 0xad, 0xfb, 0xef, 0xa1, 0x64, 0x10, 0x82, 0x10, 0x82, 0x10, 0x81, 0x18, 0x82, 0x18, 0xa2, 0x10, 0x82, 0x18, 0xa2, 0x20, 0xe2, 0x29, 0x03, 0x29, 0x03, 0x29, 0x03, 0x29, 0x03, 0x29, 0x03, 0x20, 0xe2, 0x18, 0xc2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x18, 0xc2, 0x18, 0xc2, 0x20, 0xe3, + 0x20, 0xa2, 0x18, 0xa2, 0x18, 0xa2, 0x20, 0xc2, 0x18, 0xc2, 0x20, 0xc2, 0x29, 0x23, 0x39, 0x84, 0x5a, 0x46, 0x62, 0xa7, 0x62, 0x66, 0x5a, 0x25, 0x51, 0xe5, 0x51, 0xc4, 0x49, 0xa4, 0x51, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x41, 0xa4, 0x41, 0x84, 0x41, 0x84, 0x41, 0x84, 0x41, 0x84, 0x41, 0x64, 0x41, 0x64, 0x41, 0x64, 0x41, 0x84, 0x8c, 0x2a, 0x6c, 0x87, 0xa5, 0x4b, 0xf1, 0xa8, 0xd0, 0xe4, 0xb8, 0xa2, 0xf1, 0xa7, 0xfa, 0x29, 0xf9, 0xc8, 0xfa, 0x8a, 0xfa, 0x8a, 0xc0, 0xc3, 0xe9, 0x66, 0xfb, 0x6d, 0xfd, 0x12, 0xe1, 0x86, 0xd0, 0xe4, 0xf1, 0x25, 0xf9, 0x66, 0xf9, 0xa7, 0xc0, 0xa3, 0xe1, 0x04, 0xfa, 0xea, 0xfb, 0xad, 0xfa, 0xaa, 0xfa, 0x8a, 0xfb, 0xec, 0xfc, 0x0e, 0xfb, 0x6c, 0xfb, 0xef, 0xfb, 0x8b, 0xfb, 0xce, 0xfa, 0xeb, 0xfc, 0x91, 0xfb, 0x8d, 0xfb, 0x8d, 0xfb, 0xcd, 0xfb, 0xce, 0xfa, 0xaa, 0xf9, 0x65, 0xf9, 0x87, 0xfb, 0x8c, 0xfb, 0x6c, 0xfb, 0xad, 0xe1, 0xc7, 0x88, 0x82, 0x18, 0xa2, 0x18, 0x82, 0x10, 0x82, 0x10, 0x82, 0x10, 0x82, 0x10, 0x61, 0x10, 0x82, 0x18, 0xa2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xe2, 0x20, 0xc2, 0x18, 0xa2, 0x18, 0xc2, 0x18, 0xc2, 0x29, 0x23, 0x29, 0x03, 0x28, 0xe3, 0x20, 0xe3, 0x29, 0x03, 0x31, 0x44, 0x21, 0x03, 0x20, 0xe3, 0x18, 0xc2, + 0x18, 0xc2, 0x18, 0xc2, 0x20, 0xc2, 0x20, 0xe2, 0x20, 0xe2, 0x20, 0xc3, 0x21, 0x03, 0x29, 0x23, 0x52, 0x26, 0x62, 0x86, 0x62, 0x66, 0x5a, 0x25, 0x51, 0xe5, 0x51, 0xc4, 0x49, 0xa4, 0x49, 0xa4, 0x51, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x41, 0xa4, 0x49, 0xa4, 0x41, 0xa4, 0x41, 0x84, 0x41, 0x84, 0x41, 0x64, 0x41, 0x64, 0x41, 0x63, 0x41, 0x64, 0x49, 0xa4, 0x84, 0x6a, 0x64, 0x67, 0xe5, 0x0f, 0xd0, 0xc3, 0xc8, 0xc3, 0xf1, 0x86, 0xfa, 0x49, 0xfa, 0x49, 0xfa, 0xab, 0xfa, 0x8a, 0xb8, 0xa2, 0xe1, 0x25, 0xfb, 0xae, 0xf3, 0x6d, 0xf3, 0xad, 0xb8, 0xa2, 0xc8, 0xc3, 0xf9, 0xc8, 0xfa, 0xab, 0xc8, 0xc3, 0xc0, 0xc3, 0xe9, 0x86, 0xfb, 0xed, 0xfa, 0xaa, 0xfa, 0xeb, 0xfa, 0xaa, 0xfb, 0xeb, 0xfc, 0x0f, 0xfb, 0x6c, 0xfc, 0x0f, 0xfb, 0x6b, 0xfb, 0xee, 0xfb, 0x2b, 0xfa, 0xcb, 0xfc, 0x4f, 0xfb, 0xad, 0xfb, 0x8d, 0xfa, 0xcb, 0xe1, 0x44, 0xb8, 0xa2, 0xc9, 0x25, 0xfb, 0x4c, 0xfb, 0x6d, 0xfa, 0xeb, 0xb0, 0xa2, 0xa8, 0x82, 0x78, 0xe2, 0x20, 0xe2, 0x18, 0xc2, 0x18, 0xa2, 0x10, 0x82, 0x10, 0x82, 0x10, 0x82, 0x20, 0xc2, 0x29, 0x23, 0x29, 0x23, 0x29, 0x23, 0x29, 0x03, 0x29, 0x23, 0x39, 0x84, 0x49, 0xe5, 0x52, 0x25, 0x4a, 0x45, 0x4a, 0x05, 0x41, 0xa5, 0x49, 0xe6, 0x52, 0x67, 0x5a, 0x87, 0x41, 0xc5, 0x21, 0x03, 0x21, 0x03, + 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xc2, 0x20, 0xe2, 0x20, 0xe3, 0x20, 0xe2, 0x21, 0x03, 0x29, 0x03, 0x49, 0xe5, 0x5a, 0x66, 0x62, 0x66, 0x5a, 0x25, 0x51, 0xe5, 0x51, 0xc5, 0x49, 0xc4, 0x49, 0xa4, 0x49, 0xc4, 0x49, 0xa4, 0x49, 0x84, 0x41, 0xa4, 0x41, 0xa4, 0x41, 0xa4, 0x41, 0x84, 0x41, 0x63, 0x39, 0x63, 0x41, 0x63, 0x41, 0x64, 0x41, 0x64, 0x51, 0xe5, 0x95, 0x2d, 0x7c, 0xc8, 0xfc, 0x4f, 0xc8, 0xc3, 0xe9, 0x45, 0xfa, 0x6a, 0xfa, 0x8b, 0xfa, 0xcb, 0xfa, 0x49, 0xb8, 0x82, 0xe1, 0xa6, 0xfb, 0x8e, 0xb9, 0x04, 0xfd, 0x93, 0xc8, 0xa3, 0xb0, 0x82, 0xe9, 0x86, 0xe9, 0x66, 0xe1, 0x65, 0xa0, 0x82, 0xd0, 0xe4, 0xfb, 0x0b, 0xfb, 0xcd, 0xf1, 0xe7, 0xfb, 0x2c, 0xfa, 0xca, 0xfb, 0xcb, 0xfb, 0xee, 0xfb, 0x8d, 0xfc, 0x0f, 0xfb, 0x6c, 0xfb, 0xce, 0xfb, 0x6c, 0xf9, 0xc7, 0xe9, 0xc7, 0xf9, 0xc7, 0xf1, 0x24, 0xd0, 0xe3, 0xb8, 0xa2, 0xb8, 0x82, 0xa0, 0x82, 0x80, 0x61, 0x90, 0x41, 0x80, 0x61, 0xa0, 0xa2, 0xa8, 0xa2, 0xb8, 0xc3, 0x41, 0x43, 0x29, 0x03, 0x20, 0xe2, 0x20, 0xe2, 0x18, 0xc2, 0x18, 0xc2, 0x21, 0x03, 0x31, 0x64, 0x49, 0xc5, 0x52, 0x06, 0x5a, 0x46, 0x6a, 0xa7, 0x72, 0xe8, 0x83, 0x49, 0x83, 0xa9, 0x8c, 0x2a, 0x9b, 0xea, 0x73, 0x28, 0x83, 0xab, 0x9c, 0x2d, 0x9c, 0x4d, 0x8b, 0xaa, 0x62, 0x87, 0x6a, 0xc7, + 0x20, 0xe3, 0x20, 0xc2, 0x20, 0xe2, 0x20, 0xe2, 0x20, 0xe3, 0x29, 0x03, 0x29, 0x23, 0x21, 0x03, 0x39, 0xa4, 0x5a, 0x46, 0x62, 0x86, 0x5a, 0x45, 0x51, 0xe4, 0x51, 0xc4, 0x51, 0xc4, 0x49, 0xc4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x41, 0xa4, 0x41, 0xa4, 0x41, 0xa4, 0x41, 0x84, 0x41, 0x63, 0x39, 0x63, 0x41, 0x64, 0x49, 0x84, 0x49, 0x84, 0x5a, 0x86, 0xa5, 0x8e, 0x9c, 0xc8, 0xf3, 0x2c, 0xd8, 0xe4, 0xfa, 0x29, 0xfa, 0xab, 0xfa, 0xec, 0xf1, 0xe8, 0xc0, 0x82, 0xea, 0x69, 0xfb, 0x6d, 0x98, 0x61, 0xe4, 0x2f, 0xe9, 0xe7, 0xb0, 0xa2, 0xc8, 0xc3, 0xe9, 0x86, 0xf1, 0x65, 0xb0, 0xa2, 0xa8, 0xa2, 0xf2, 0x8a, 0xfb, 0x6c, 0xfb, 0xad, 0xe9, 0x25, 0xfa, 0xcb, 0xfb, 0x2b, 0xfb, 0x8b, 0xfb, 0x8c, 0xfc, 0x31, 0xfc, 0x0f, 0xfb, 0x8d, 0xfb, 0xcd, 0xfb, 0x8c, 0xfb, 0x0b, 0xe0, 0xe4, 0xd0, 0xe4, 0xa0, 0x62, 0xa8, 0x82, 0xb0, 0x82, 0xb8, 0xa2, 0xb8, 0xa2, 0x88, 0x82, 0x88, 0x82, 0x98, 0x82, 0x88, 0x82, 0xa8, 0xa2, 0xb0, 0xa2, 0xc1, 0xe7, 0x21, 0x03, 0x29, 0x03, 0x31, 0x23, 0x29, 0x23, 0x29, 0x23, 0x31, 0x43, 0x31, 0x44, 0x41, 0xc5, 0x5a, 0x47, 0x72, 0xe8, 0x93, 0xca, 0x9c, 0x0b, 0x8b, 0xeb, 0x84, 0x0a, 0xa4, 0xcc, 0xac, 0xad, 0x9c, 0x6c, 0xb4, 0xef, 0xcd, 0xb1, 0xdd, 0xd2, 0xcd, 0x50, 0xb4, 0xcd, 0xac, 0x8d, + 0x20, 0xe3, 0x20, 0xe3, 0x20, 0xe3, 0x20, 0xe2, 0x20, 0xc2, 0x29, 0x23, 0x29, 0x23, 0x21, 0x03, 0x39, 0x84, 0x5a, 0x45, 0x62, 0x86, 0x5a, 0x66, 0x5a, 0x25, 0x51, 0xe4, 0x51, 0xc4, 0x49, 0xc4, 0x49, 0xc4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xc4, 0x41, 0xa4, 0x41, 0x84, 0x41, 0x64, 0x41, 0x64, 0x41, 0x84, 0x49, 0x84, 0x41, 0x64, 0x7b, 0xca, 0x85, 0x4b, 0xe2, 0xa7, 0xe9, 0x86, 0xf1, 0xa7, 0xfa, 0xcb, 0xfa, 0xcc, 0xe1, 0x66, 0xc8, 0xa3, 0xfb, 0x4c, 0xf2, 0x89, 0x90, 0x61, 0x98, 0xc3, 0xfd, 0x33, 0xc8, 0xa3, 0xc0, 0xc3, 0xf1, 0xa7, 0xe9, 0x66, 0xe9, 0xc7, 0x98, 0x82, 0xd9, 0x86, 0xfb, 0x6d, 0xfb, 0x6d, 0xfa, 0xaa, 0xe9, 0x86, 0xf2, 0x49, 0xfb, 0x8c, 0xfb, 0x6b, 0xfb, 0x6b, 0xfb, 0xee, 0xfc, 0x0f, 0xfb, 0xef, 0xfb, 0xac, 0xfb, 0xad, 0xfb, 0x6c, 0xf9, 0xe8, 0xe1, 0x04, 0xa8, 0x62, 0xa8, 0x82, 0xb0, 0x82, 0xb8, 0xa2, 0xc0, 0xa2, 0x98, 0x82, 0x90, 0x82, 0x98, 0x82, 0xa0, 0x82, 0x90, 0x82, 0xb0, 0xc3, 0xea, 0x49, 0x41, 0x23, 0x29, 0x23, 0x31, 0x44, 0x31, 0x44, 0x39, 0x64, 0x41, 0x84, 0x39, 0x64, 0x31, 0x64, 0x41, 0xa5, 0x6a, 0xc7, 0xac, 0x0a, 0xac, 0x4b, 0x8b, 0xca, 0x83, 0xea, 0x8c, 0x0b, 0x94, 0x6c, 0x9c, 0x8d, 0xb5, 0x2f, 0xd5, 0xb1, 0xdd, 0xf2, 0xcd, 0x70, 0xc5, 0x50, 0xcd, 0x91, + 0x20, 0xe3, 0x20, 0xe3, 0x20, 0xe2, 0x20, 0xc2, 0x20, 0xe2, 0x29, 0x23, 0x31, 0x64, 0x29, 0x44, 0x31, 0x64, 0x5a, 0x46, 0x62, 0x86, 0x62, 0x66, 0x5a, 0x45, 0x52, 0x05, 0x51, 0xe5, 0x51, 0xc4, 0x49, 0xc4, 0x49, 0xa4, 0x49, 0xa4, 0x41, 0xa4, 0x49, 0xa4, 0x41, 0xa4, 0x41, 0x84, 0x41, 0x64, 0x49, 0x84, 0x49, 0x84, 0x41, 0x84, 0x49, 0x84, 0x9d, 0x0e, 0x9d, 0x0c, 0xf1, 0x87, 0xfa, 0xab, 0xfa, 0x6a, 0xf1, 0xa7, 0xd0, 0xc3, 0xd9, 0x45, 0xfb, 0x4c, 0xc9, 0x45, 0x88, 0x61, 0x88, 0x61, 0xdb, 0xee, 0xea, 0x28, 0xc0, 0xc3, 0xd9, 0x04, 0xf1, 0x87, 0xfa, 0xcb, 0xd1, 0x04, 0xc1, 0x04, 0xfb, 0xcf, 0xfa, 0xeb, 0xfb, 0xad, 0xe1, 0x66, 0xfa, 0x49, 0xf2, 0x08, 0xfb, 0x8d, 0xfb, 0x4b, 0xfb, 0x4b, 0xfb, 0x6b, 0xfb, 0xef, 0xfc, 0x50, 0xfb, 0x8c, 0xfb, 0x8c, 0xfb, 0x6c, 0xfb, 0x6c, 0xea, 0x4a, 0xa0, 0x82, 0xa8, 0x82, 0xb0, 0x82, 0xc0, 0xc3, 0xc8, 0xc3, 0xa0, 0xa2, 0x98, 0x82, 0xa0, 0x82, 0xa8, 0x82, 0xa8, 0xa2, 0xa0, 0xa2, 0xd9, 0xa7, 0x8a, 0x07, 0x29, 0x23, 0x39, 0x84, 0x41, 0xc5, 0x52, 0x25, 0x51, 0xe5, 0x39, 0x84, 0x39, 0x84, 0x39, 0x84, 0x5a, 0x46, 0x9b, 0x89, 0xac, 0x6b, 0x9c, 0x6c, 0x94, 0x0b, 0x8b, 0xab, 0x8b, 0xeb, 0x8c, 0x2c, 0x94, 0x6c, 0xac, 0xce, 0xac, 0xae, 0xa4, 0x8d, 0xbd, 0x50, 0xcd, 0xb2, + 0x20, 0xe2, 0x20, 0xe2, 0x20, 0xc2, 0x18, 0xc2, 0x21, 0x43, 0x31, 0x84, 0x39, 0xa5, 0x39, 0xc5, 0x39, 0xa4, 0x5a, 0x46, 0x6a, 0xa6, 0x62, 0x86, 0x5a, 0x66, 0x52, 0x25, 0x51, 0xe5, 0x51, 0xc4, 0x51, 0xc4, 0x49, 0xc4, 0x49, 0xa4, 0x41, 0xa4, 0x41, 0xa4, 0x41, 0xa4, 0x41, 0x84, 0x41, 0x84, 0x49, 0x84, 0x49, 0x84, 0x41, 0x84, 0x51, 0xe4, 0xad, 0x90, 0xc4, 0x2c, 0xfa, 0xab, 0xfa, 0x8b, 0xfa, 0x08, 0xe1, 0x66, 0xf1, 0x86, 0xf1, 0xc6, 0x98, 0x82, 0x88, 0x61, 0x90, 0x82, 0x98, 0x61, 0xfd, 0x53, 0xc8, 0xa3, 0xd0, 0xe3, 0xf1, 0x66, 0xf1, 0xa7, 0xfa, 0xaa, 0xa8, 0x82, 0xfb, 0xae, 0xfb, 0x2c, 0xfb, 0x4d, 0xfb, 0x2b, 0xd8, 0xc3, 0xfb, 0x2c, 0xf2, 0x08, 0xfb, 0x4b, 0xfb, 0x2c, 0xfb, 0x4c, 0xfb, 0x8c, 0xf1, 0xa7, 0xfb, 0x6d, 0xfb, 0xad, 0xfb, 0x8c, 0xfb, 0xcd, 0xfb, 0x0c, 0xc0, 0xa2, 0xa8, 0x82, 0xb0, 0x82, 0xb8, 0xa2, 0xc0, 0xc3, 0xd9, 0x04, 0xa0, 0xa2, 0x98, 0x82, 0xa8, 0xa2, 0xb0, 0xa2, 0xb8, 0xa3, 0xb0, 0xc2, 0xd1, 0x66, 0xd2, 0xeb, 0x52, 0x46, 0x83, 0x48, 0x9b, 0xea, 0x9b, 0xea, 0x83, 0x68, 0x7b, 0x07, 0x72, 0xe7, 0x62, 0xa7, 0x52, 0x26, 0x62, 0xc7, 0x8c, 0x2b, 0xa4, 0xee, 0xa4, 0x6d, 0x93, 0xec, 0x8c, 0x4c, 0x94, 0x6d, 0xac, 0xcf, 0xbd, 0x51, 0xc5, 0x51, 0xc5, 0x71, 0xd5, 0xb1, 0xcd, 0x90, + 0x21, 0x23, 0x29, 0x63, 0x31, 0xa4, 0x3a, 0x44, 0x42, 0x45, 0x4a, 0x25, 0x52, 0x66, 0x5a, 0x87, 0x52, 0x66, 0x62, 0xa7, 0x6a, 0xc6, 0x62, 0x86, 0x62, 0x46, 0x5a, 0x45, 0x51, 0xe5, 0x51, 0xc4, 0x51, 0xe4, 0x51, 0xe4, 0x51, 0xa4, 0x49, 0xa4, 0x41, 0xa4, 0x41, 0xa4, 0x49, 0xa4, 0x49, 0x84, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x5a, 0x05, 0xb5, 0xf2, 0xdb, 0x8c, 0xe1, 0xa6, 0xf2, 0x49, 0xd9, 0x65, 0xd9, 0x44, 0xb8, 0xc3, 0x88, 0x61, 0x88, 0x82, 0x98, 0x82, 0xa0, 0x82, 0xa8, 0xc3, 0xfc, 0xd1, 0xc8, 0xc3, 0xd9, 0x04, 0xf1, 0x66, 0xfb, 0x2c, 0xc1, 0x04, 0xe1, 0xe7, 0xfb, 0xce, 0xfa, 0xeb, 0xfb, 0xad, 0xf2, 0x28, 0xe9, 0xa6, 0xfb, 0x2c, 0xf2, 0x49, 0xfb, 0x4b, 0xfb, 0x2b, 0xfb, 0x2b, 0xfb, 0xac, 0xe9, 0xa7, 0xc1, 0x03, 0xea, 0x28, 0xea, 0xca, 0xe2, 0xe9, 0xc8, 0xa3, 0xb8, 0xa2, 0xb8, 0xa2, 0xb8, 0xa2, 0xb8, 0xa3, 0xc8, 0xe4, 0xf2, 0x49, 0x59, 0xe5, 0x80, 0xe2, 0xb0, 0x82, 0xc0, 0xc3, 0xc0, 0xe3, 0xc0, 0xe3, 0xd1, 0x86, 0xa3, 0x89, 0xac, 0x8c, 0xcd, 0x4f, 0xcd, 0x6f, 0xc5, 0x4e, 0xb4, 0xcd, 0xac, 0x6b, 0xa4, 0x4b, 0x9c, 0x0a, 0x83, 0x48, 0x6a, 0xc7, 0x7b, 0xaa, 0x9c, 0x8d, 0xac, 0x6d, 0xac, 0x8d, 0xac, 0xee, 0xb5, 0x2f, 0xc5, 0x92, 0xde, 0x35, 0xde, 0x14, 0xdd, 0xd2, 0xdd, 0xd2, 0xdd, 0xd2, + 0x39, 0xc4, 0x4a, 0x65, 0x5b, 0x25, 0x6b, 0xc6, 0x6b, 0xa7, 0x63, 0x07, 0x6a, 0xe7, 0x73, 0x28, 0x6b, 0x28, 0x6b, 0x28, 0x72, 0xe7, 0x62, 0x66, 0x62, 0x45, 0x5a, 0x45, 0x52, 0x05, 0x51, 0xe4, 0x51, 0xc4, 0x51, 0xc4, 0x51, 0xa4, 0x49, 0x84, 0x49, 0x84, 0x41, 0xa4, 0x41, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x51, 0xe4, 0xb5, 0xd2, 0xd2, 0xa9, 0xb0, 0x82, 0xe9, 0x45, 0xa8, 0x82, 0x98, 0x82, 0x98, 0x61, 0x88, 0x82, 0xa0, 0x82, 0xa0, 0x82, 0xa8, 0x82, 0xb9, 0xa6, 0xf3, 0xce, 0xd8, 0xe4, 0xe9, 0x45, 0xfa, 0x69, 0xf3, 0x09, 0xa0, 0x82, 0xfb, 0x8d, 0xfb, 0x2c, 0xfb, 0x4d, 0xfb, 0x6c, 0xd8, 0xe4, 0xfa, 0xaa, 0xf2, 0x8a, 0xfa, 0xcb, 0xfb, 0x2b, 0xfb, 0x2b, 0xfb, 0x2b, 0xfb, 0xac, 0xfa, 0xab, 0xb9, 0x03, 0x90, 0x82, 0x90, 0x21, 0x84, 0x09, 0xa9, 0x03, 0xc0, 0xc3, 0xd1, 0x04, 0xc0, 0xc3, 0xc8, 0xe3, 0xe9, 0xa7, 0xab, 0xea, 0x8c, 0x2a, 0x8b, 0xca, 0x92, 0xa7, 0xb1, 0x84, 0xc9, 0x44, 0xc9, 0x64, 0xd3, 0x29, 0xc5, 0x8e, 0xd5, 0xd0, 0xdd, 0xf0, 0xdd, 0xf0, 0xcd, 0xaf, 0xc5, 0x4e, 0xbd, 0x0d, 0xb4, 0xcc, 0xac, 0xac, 0xa4, 0x2a, 0x8b, 0x68, 0x7b, 0x69, 0x8b, 0xcb, 0xa4, 0x4c, 0xac, 0x8d, 0xb5, 0x0e, 0xb5, 0x4f, 0xbd, 0x71, 0xd5, 0xd3, 0xd5, 0xf3, 0xd5, 0xd3, 0xcd, 0x91, 0xd5, 0x91, + 0x52, 0x65, 0x63, 0x26, 0x73, 0xe7, 0x7c, 0x67, 0x84, 0x68, 0x7b, 0xa7, 0x73, 0x67, 0x83, 0xa9, 0x7b, 0xe9, 0x7b, 0xc9, 0x73, 0x07, 0x6a, 0x86, 0x62, 0x45, 0x5a, 0x45, 0x5a, 0x05, 0x51, 0xe4, 0x51, 0xc4, 0x51, 0xa4, 0x49, 0x84, 0x41, 0x84, 0x41, 0x84, 0x39, 0x83, 0x39, 0x83, 0x41, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x51, 0xa4, 0x51, 0xa4, 0x8c, 0x4c, 0xc2, 0x47, 0xd9, 0x45, 0xd1, 0x24, 0xa0, 0x82, 0xa0, 0x61, 0x93, 0x87, 0xa9, 0x43, 0xa8, 0x82, 0xb8, 0xa2, 0xa8, 0xa2, 0xd3, 0x0b, 0xf3, 0x6d, 0xe1, 0x25, 0xf9, 0xa7, 0xfb, 0x2c, 0xb2, 0xe6, 0xd9, 0xc7, 0xfb, 0xad, 0xfa, 0xcc, 0xfb, 0xee, 0xd9, 0xc6, 0xf1, 0x87, 0xfb, 0x2b, 0xf2, 0x29, 0xfb, 0x4c, 0xfb, 0x2b, 0xfb, 0x0b, 0xfb, 0x4b, 0xfb, 0x8c, 0xfc, 0xb2, 0xc1, 0x65, 0x98, 0x82, 0x90, 0x61, 0x8b, 0x27, 0x41, 0xc5, 0x91, 0xc5, 0xf3, 0x2b, 0xfa, 0xeb, 0xf2, 0x48, 0xcc, 0x8c, 0xad, 0x6d, 0xa5, 0x0c, 0xa4, 0x8c, 0xac, 0x8c, 0xac, 0xed, 0xb5, 0x0d, 0xbd, 0x4e, 0xcd, 0xcf, 0xd5, 0xef, 0xcd, 0xcf, 0xcd, 0xcf, 0xcd, 0xae, 0xc5, 0x8e, 0xc5, 0x6d, 0xc5, 0x6d, 0xc5, 0x6e, 0xbd, 0x2d, 0xac, 0xac, 0x9c, 0x2b, 0x93, 0xca, 0x8b, 0x89, 0x93, 0xaa, 0x93, 0xcb, 0x9c, 0x6b, 0xa4, 0xcc, 0xa4, 0xed, 0xbd, 0x10, 0xc5, 0x51, 0xc5, 0x72, 0xbd, 0x0f, 0xbc, 0xce, + 0x5a, 0xa6, 0x6b, 0x67, 0x73, 0xe7, 0x7c, 0x28, 0x84, 0x68, 0x7c, 0x28, 0x7b, 0xe8, 0x84, 0x29, 0x8c, 0xaa, 0x84, 0x6a, 0x73, 0x47, 0x62, 0x66, 0x62, 0x46, 0x62, 0x25, 0x5a, 0x05, 0x51, 0xe5, 0x51, 0xc4, 0x49, 0x84, 0x41, 0x84, 0x41, 0x84, 0x41, 0x84, 0x39, 0xa3, 0x39, 0xa4, 0x41, 0xc4, 0x41, 0xc4, 0x49, 0xa4, 0x51, 0xc5, 0x51, 0xc4, 0x6a, 0xe7, 0xb5, 0x0d, 0xfa, 0xa9, 0xc1, 0x43, 0x9a, 0x45, 0xa6, 0x0f, 0xa5, 0x4a, 0xb8, 0x82, 0xc0, 0xc3, 0xb8, 0xa2, 0xa8, 0xa2, 0xdb, 0x0b, 0xf3, 0x8e, 0xe9, 0x45, 0xfa, 0xaa, 0xec, 0xec, 0x99, 0x43, 0xfb, 0x4c, 0xfa, 0xeb, 0xfb, 0x8e, 0xfb, 0x4b, 0xc0, 0xe4, 0xfb, 0x2c, 0xfb, 0x2b, 0xf2, 0x29, 0xfb, 0x4c, 0xfb, 0x0b, 0xfb, 0x0b, 0xfb, 0x4b, 0xfb, 0x8c, 0xfc, 0xd3, 0xda, 0x89, 0xa0, 0xa2, 0x98, 0x82, 0x8a, 0x86, 0x94, 0x2b, 0xac, 0xcd, 0xc5, 0x4f, 0xcd, 0x6f, 0xcd, 0xd0, 0xc5, 0xcf, 0xc5, 0xaf, 0xc5, 0xaf, 0xd5, 0xb0, 0xd5, 0xd0, 0xde, 0x11, 0xe6, 0x11, 0xe6, 0x31, 0xe6, 0x31, 0xde, 0x31, 0xe6, 0x31, 0xde, 0x51, 0xd6, 0x10, 0xcd, 0x8e, 0xbd, 0x6d, 0xc5, 0x8e, 0xcd, 0xce, 0xcd, 0xcf, 0xbd, 0x6e, 0xb4, 0xed, 0xac, 0x8c, 0x9c, 0x0a, 0x8b, 0x89, 0x7b, 0x08, 0x7b, 0x28, 0x94, 0x0a, 0xa4, 0x2c, 0xac, 0x6d, 0xb4, 0x8e, 0xbc, 0xef, 0xb4, 0xae, 0xb4, 0xad, + 0x5b, 0x26, 0x73, 0xe7, 0x74, 0x08, 0x7c, 0x29, 0x7c, 0x29, 0x74, 0x28, 0x7c, 0x28, 0x84, 0xa9, 0x8d, 0x0b, 0x84, 0xaa, 0x73, 0x67, 0x62, 0x66, 0x62, 0x45, 0x5a, 0x85, 0x52, 0x24, 0x51, 0xc5, 0x49, 0xc4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xc4, 0x41, 0xe4, 0x41, 0xe4, 0x49, 0xc4, 0x49, 0xa4, 0x51, 0xc4, 0x51, 0xc4, 0x5a, 0x05, 0x95, 0x2e, 0x75, 0xa9, 0x7e, 0x08, 0x75, 0x48, 0x7d, 0xab, 0xa9, 0xe3, 0xc8, 0xe3, 0xc8, 0xc3, 0xb8, 0xa2, 0xb8, 0xa2, 0xe2, 0x08, 0xfb, 0x2c, 0xf9, 0xc7, 0xfb, 0xee, 0x9d, 0xac, 0xc9, 0x45, 0xfb, 0x8d, 0xfa, 0xec, 0xfc, 0x0e, 0xc9, 0x45, 0xc9, 0xc7, 0xfb, 0x4c, 0xfb, 0x6c, 0xea, 0x09, 0xfb, 0x6c, 0xfb, 0x4c, 0xfb, 0x2c, 0xfb, 0x4b, 0xfb, 0x8c, 0xfd, 0x14, 0xe2, 0xca, 0xa0, 0xa2, 0x98, 0x82, 0x89, 0xe4, 0xd6, 0x31, 0xee, 0x93, 0xf6, 0xb3, 0xee, 0x93, 0xee, 0x93, 0xee, 0x92, 0xe6, 0x52, 0xe6, 0x52, 0xe6, 0x52, 0xee, 0x73, 0xee, 0x93, 0xee, 0x72, 0xe6, 0x72, 0xe6, 0x92, 0xee, 0xd3, 0xff, 0x34, 0xff, 0x56, 0xff, 0x14, 0xee, 0xb2, 0xde, 0x51, 0xd5, 0xf0, 0xcd, 0xef, 0xce, 0x0f, 0xcd, 0xef, 0xc5, 0x8e, 0xbd, 0x2e, 0xac, 0xad, 0x94, 0x0a, 0x8b, 0x89, 0x83, 0x28, 0x8b, 0x28, 0xac, 0x0c, 0xb4, 0xae, 0xbc, 0xee, 0xc5, 0x0f, 0xbd, 0x0f, 0xc5, 0x50, + 0x63, 0x67, 0x6b, 0xe8, 0x73, 0xe7, 0x73, 0xe9, 0x6b, 0x88, 0x6b, 0x87, 0x7c, 0x48, 0x8c, 0xea, 0x8d, 0x4c, 0x7c, 0xab, 0x6b, 0x47, 0x62, 0x66, 0x5a, 0xc5, 0x5b, 0x05, 0x4a, 0x64, 0x51, 0xc4, 0x51, 0xc5, 0x51, 0xc4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xc4, 0x49, 0xc4, 0x49, 0xc4, 0x51, 0xa4, 0x51, 0xa4, 0x51, 0xa4, 0x52, 0x05, 0xad, 0xb0, 0x75, 0x29, 0x75, 0x68, 0x74, 0xe8, 0x64, 0x67, 0xe1, 0x04, 0xd9, 0x04, 0xc8, 0xc3, 0xc8, 0xc3, 0xea, 0x08, 0xfb, 0x6d, 0xfb, 0x6b, 0xfc, 0x31, 0xbe, 0xf2, 0x8b, 0xa5, 0xfb, 0x2c, 0xfa, 0xeb, 0xfb, 0xef, 0xea, 0x69, 0x98, 0x61, 0xda, 0x29, 0xfb, 0x4b, 0xfb, 0x6d, 0xea, 0x08, 0xfb, 0x6c, 0xfb, 0x2c, 0xfb, 0x0b, 0xfb, 0x4b, 0xfb, 0x8c, 0xfd, 0x33, 0xd2, 0x27, 0xa8, 0x82, 0xa0, 0xa2, 0x91, 0xa4, 0xde, 0x72, 0xf6, 0xd3, 0xf6, 0xd3, 0xf6, 0xf3, 0xf6, 0xf4, 0xee, 0xb3, 0xe6, 0x72, 0xe6, 0x73, 0xee, 0x73, 0xe6, 0x73, 0xe6, 0x73, 0xe6, 0x73, 0xee, 0xd4, 0xf6, 0xf4, 0xff, 0x35, 0xff, 0x77, 0xff, 0x98, 0xff, 0x99, 0xff, 0x77, 0xff, 0x55, 0xf6, 0xf4, 0xee, 0x93, 0xde, 0x31, 0xcd, 0xef, 0xc5, 0xae, 0xbd, 0x6e, 0xad, 0x0d, 0x9c, 0x6b, 0x94, 0x0a, 0x8b, 0x8a, 0x83, 0x48, 0x83, 0x49, 0xa4, 0x4d, 0xbd, 0x30, 0xcd, 0x92, 0xd5, 0xb2, 0xdd, 0xf3, + 0x5b, 0x06, 0x5b, 0x07, 0x5b, 0x27, 0x5b, 0x07, 0x52, 0xc7, 0x5a, 0xc7, 0x7c, 0x29, 0x84, 0xca, 0x7c, 0x89, 0x73, 0xc8, 0x62, 0xc6, 0x5a, 0x45, 0x5b, 0x06, 0x5b, 0x65, 0x4a, 0xc4, 0x51, 0xe4, 0x51, 0xc5, 0x51, 0xa4, 0x49, 0xa4, 0x49, 0xa5, 0x49, 0xa4, 0x49, 0x84, 0x49, 0xa4, 0x49, 0xa4, 0x49, 0xa4, 0x51, 0xa4, 0x51, 0xa4, 0x51, 0xa4, 0x7b, 0x89, 0xbe, 0x53, 0x54, 0x26, 0x54, 0x25, 0x64, 0x86, 0x8c, 0xc9, 0xfa, 0x2a, 0xfa, 0x6a, 0xfa, 0xab, 0xfb, 0x4d, 0xfc, 0x2f, 0xf6, 0x56, 0xdf, 0xf9, 0x96, 0xae, 0x6d, 0x26, 0xb3, 0x27, 0xfb, 0x6c, 0xfb, 0x6e, 0xfb, 0x8d, 0xa0, 0x82, 0x98, 0x81, 0xda, 0x6a, 0xfb, 0x2b, 0xfb, 0x0c, 0xf2, 0x69, 0xfb, 0x4c, 0xfb, 0x2c, 0xfb, 0x2b, 0xfb, 0x4b, 0xfb, 0xcd, 0xfc, 0xd2, 0xb9, 0x23, 0xa8, 0x82, 0xa0, 0x82, 0x99, 0x63, 0xce, 0x51, 0xf6, 0xf3, 0xf6, 0xd3, 0xff, 0x14, 0xf6, 0xf4, 0xee, 0xd3, 0xe6, 0xb3, 0xe6, 0xb3, 0xee, 0x93, 0xe6, 0x73, 0xe6, 0x73, 0xe6, 0xb4, 0xf7, 0x15, 0xf7, 0x15, 0xf7, 0x34, 0xff, 0x56, 0xff, 0x98, 0xff, 0x99, 0xff, 0x99, 0xff, 0x99, 0xff, 0x78, 0xff, 0x58, 0xf6, 0xd5, 0xe6, 0x73, 0xcd, 0xd0, 0xbd, 0x6e, 0xbd, 0x4e, 0xac, 0xed, 0x94, 0x2b, 0x8b, 0xc9, 0x8b, 0xc9, 0x7b, 0x48, 0x8b, 0xab, 0xa4, 0x6e, 0xbd, 0x31, 0xd5, 0xf4, 0xd5, 0xf3, + 0x4a, 0x46, 0x52, 0x26, 0x52, 0x46, 0x4a, 0x46, 0x4a, 0x26, 0x52, 0x66, 0x6b, 0x88, 0x73, 0xe9, 0x6b, 0x68, 0x62, 0xe7, 0x52, 0x26, 0x51, 0xe5, 0x52, 0x65, 0x5b, 0x45, 0x4b, 0x04, 0x4a, 0x64, 0x49, 0xe4, 0x49, 0xa4, 0x49, 0xa5, 0x49, 0x84, 0x49, 0x84, 0x41, 0x84, 0x41, 0x84, 0x49, 0xa4, 0x49, 0xa4, 0x51, 0xa4, 0x51, 0xc4, 0x51, 0xc4, 0x8c, 0x0b, 0xb6, 0x52, 0x53, 0xe6, 0x4b, 0x85, 0x64, 0xa6, 0x75, 0x0a, 0x9e, 0x4e, 0xdc, 0x6a, 0xbc, 0x2a, 0xa5, 0x4d, 0x9e, 0x8d, 0x75, 0x48, 0x75, 0x87, 0x8e, 0x2a, 0x75, 0x48, 0xf3, 0x6b, 0xfb, 0x2c, 0xfb, 0xef, 0xa8, 0xc2, 0x98, 0x82, 0x98, 0x82, 0xda, 0x29, 0xfb, 0x6c, 0xfa, 0x6a, 0xfb, 0x0c, 0xfb, 0x4b, 0xfb, 0x2c, 0xfb, 0x4b, 0xfb, 0x4c, 0xfc, 0x2f, 0xda, 0x89, 0xb0, 0xc2, 0xa8, 0x82, 0xa8, 0xa2, 0x99, 0x63, 0xc6, 0x10, 0xf6, 0xd3, 0xee, 0xb3, 0xf6, 0xf4, 0xee, 0xd3, 0xee, 0xd3, 0xf6, 0xd4, 0xee, 0xd4, 0xee, 0x93, 0xe6, 0x73, 0xe6, 0x73, 0xe6, 0x93, 0xe6, 0xd4, 0xee, 0xd3, 0xee, 0xd3, 0xf7, 0x14, 0xf7, 0x15, 0xf7, 0x14, 0xf7, 0x35, 0xff, 0x55, 0xff, 0x56, 0xff, 0x78, 0xff, 0x36, 0xff, 0x36, 0xee, 0xb4, 0xcd, 0xb0, 0xbd, 0x6f, 0xc5, 0xb0, 0xb5, 0x4e, 0x94, 0x4b, 0x9c, 0x4b, 0x9c, 0x2a, 0x8b, 0xaa, 0x93, 0xec, 0xa4, 0xaf, 0xc5, 0x72, 0xb4, 0xf0, + 0x4a, 0x06, 0x5a, 0x46, 0x5a, 0x26, 0x4a, 0x06, 0x4a, 0x46, 0x52, 0x66, 0x52, 0xa6, 0x5b, 0x27, 0x5a, 0xe7, 0x5a, 0x86, 0x4a, 0x05, 0x39, 0xc4, 0x41, 0xc4, 0x5a, 0xe6, 0x5b, 0x85, 0x4a, 0xe4, 0x42, 0x04, 0x52, 0x05, 0x5a, 0x66, 0x6a, 0xa6, 0x7b, 0x07, 0x83, 0x48, 0x7b, 0x27, 0x6a, 0xc6, 0x5a, 0x25, 0x49, 0xc4, 0x49, 0xc5, 0x51, 0xc5, 0x62, 0x86, 0xc6, 0x74, 0x74, 0xea, 0x4b, 0xc5, 0x4b, 0xe4, 0x4b, 0xa5, 0x64, 0xc7, 0x5d, 0x05, 0x64, 0x87, 0x6c, 0x89, 0x5c, 0x45, 0x54, 0x25, 0x6d, 0x46, 0x86, 0x08, 0xb4, 0xa9, 0xfb, 0x6c, 0xfc, 0x0e, 0xb9, 0x24, 0x90, 0xa2, 0xa0, 0x82, 0x98, 0x82, 0xc1, 0x65, 0xfb, 0xcf, 0xf9, 0xe8, 0xfb, 0x8d, 0xfb, 0x4b, 0xfb, 0x4c, 0xfa, 0xea, 0xfa, 0xeb, 0xe1, 0xe6, 0xb8, 0xe3, 0xb0, 0xa2, 0xa8, 0xa2, 0xa8, 0xa2, 0x99, 0xa3, 0xb5, 0xae, 0xee, 0x92, 0xe6, 0x72, 0xe6, 0x93, 0xee, 0x92, 0xee, 0xb3, 0xee, 0xd4, 0xe6, 0x93, 0xe6, 0xb3, 0xee, 0xb3, 0xe6, 0xb3, 0xde, 0x93, 0xde, 0x94, 0xee, 0xd4, 0xee, 0xd4, 0xe6, 0x93, 0xe6, 0x72, 0xe6, 0x93, 0xe6, 0x92, 0xee, 0xb2, 0xf6, 0xf3, 0xfe, 0xf4, 0xff, 0x14, 0xff, 0x56, 0xff, 0x16, 0xe6, 0x32, 0xbd, 0x4e, 0xb5, 0x6d, 0xc5, 0xef, 0xad, 0x0c, 0x8c, 0x0a, 0x94, 0x2b, 0x8b, 0xca, 0x83, 0x8a, 0x93, 0xec, 0x9c, 0x6d, 0x94, 0x2c, + 0x4a, 0x26, 0x5a, 0xc6, 0x5a, 0xa6, 0x52, 0x86, 0x52, 0xa7, 0x52, 0x66, 0x5b, 0x46, 0x6b, 0xc7, 0x63, 0x87, 0x52, 0xa6, 0x4a, 0x66, 0x42, 0x25, 0x39, 0xa4, 0x42, 0x04, 0x53, 0x25, 0x6b, 0xc6, 0x84, 0x08, 0xa4, 0x8b, 0xbd, 0x0d, 0xc5, 0x4e, 0xd5, 0x8f, 0xd5, 0xaf, 0xd5, 0x8f, 0xbd, 0x0d, 0x9c, 0x4a, 0x6b, 0x07, 0x51, 0xe5, 0x49, 0xc5, 0x49, 0xc4, 0xc6, 0x54, 0x85, 0x6c, 0x53, 0xe5, 0x43, 0x64, 0x43, 0x64, 0x5c, 0x47, 0x4b, 0xa5, 0x4b, 0xa5, 0x5c, 0x08, 0x6c, 0xca, 0x8d, 0xee, 0x7d, 0xca, 0x75, 0xa7, 0xf3, 0xec, 0xfb, 0xed, 0xc9, 0x45, 0x90, 0xa2, 0xa0, 0xa2, 0xa0, 0xa2, 0xa0, 0xa2, 0xa1, 0xa3, 0xfc, 0x50, 0xfa, 0x8a, 0xfb, 0xac, 0xfb, 0x6b, 0xfb, 0x4c, 0xe2, 0x48, 0xea, 0x08, 0xc0, 0xe3, 0xa0, 0xa2, 0xb0, 0xa2, 0xb0, 0xa2, 0xb0, 0xa2, 0x91, 0xe4, 0xa5, 0x4d, 0xf6, 0xd3, 0xe6, 0x92, 0xee, 0x93, 0xe6, 0x72, 0xe6, 0x93, 0xee, 0xd4, 0xee, 0xd4, 0xf6, 0xf4, 0xef, 0x13, 0xee, 0xf3, 0xee, 0xd3, 0xe6, 0xb3, 0xef, 0x15, 0xf7, 0x15, 0xe6, 0x93, 0xee, 0x93, 0xee, 0xb3, 0xe6, 0x92, 0xe6, 0xb2, 0xee, 0xd3, 0xf6, 0xd3, 0xf6, 0xf4, 0xff, 0x35, 0xf7, 0x14, 0xe6, 0x72, 0xcd, 0xaf, 0xb5, 0x6e, 0xad, 0x2c, 0x9c, 0xcb, 0x7b, 0xc9, 0x7b, 0xc9, 0x7b, 0x69, 0x73, 0x08, 0x7b, 0x49, 0x8c, 0x0b, 0xa4, 0xcc, + 0x42, 0x05, 0x52, 0xe6, 0x5b, 0x06, 0x63, 0x07, 0x63, 0x68, 0x52, 0xc6, 0x53, 0x06, 0x6b, 0xe7, 0x6b, 0xa7, 0x5b, 0x27, 0x5a, 0xe6, 0x4a, 0xa6, 0x39, 0xe4, 0x4a, 0x25, 0x8c, 0x09, 0xbd, 0x8d, 0xde, 0x10, 0xee, 0x92, 0xf6, 0xb2, 0xf6, 0xb2, 0xf6, 0xb2, 0xf6, 0x92, 0xee, 0x71, 0xe6, 0x50, 0xd6, 0x0f, 0xb5, 0x0b, 0x73, 0x26, 0x49, 0xe5, 0x49, 0xc4, 0xc6, 0x94, 0x95, 0xae, 0x6c, 0xe7, 0x75, 0x48, 0x4b, 0xc5, 0x64, 0x69, 0x6d, 0x29, 0x6c, 0xe8, 0x6c, 0xca, 0xcf, 0x77, 0xef, 0xfd, 0xdf, 0xda, 0xc6, 0x2f, 0xfc, 0x91, 0xc9, 0xc6, 0xa0, 0xa2, 0x98, 0xa2, 0xa0, 0xa2, 0xa0, 0xa2, 0xa0, 0x81, 0xb6, 0x10, 0xe5, 0xf0, 0xfb, 0x6e, 0xfb, 0xac, 0xfb, 0x8c, 0xfb, 0x4b, 0xdd, 0x6f, 0xe9, 0xa7, 0xc8, 0xc3, 0xa0, 0xa2, 0xb8, 0xa2, 0xb0, 0xc2, 0xd9, 0x45, 0x7a, 0x64, 0x9d, 0x0c, 0xee, 0xf3, 0xe6, 0xb3, 0xe6, 0x93, 0xe6, 0x72, 0xe6, 0xb4, 0xee, 0xd4, 0xf7, 0x14, 0xff, 0x34, 0xf7, 0x13, 0xee, 0xf3, 0xee, 0xd3, 0xe6, 0xb3, 0xe6, 0xb4, 0xee, 0xd4, 0xe6, 0x93, 0xe6, 0x92, 0xee, 0xb3, 0xee, 0xb3, 0xee, 0xb3, 0xee, 0xb4, 0xf6, 0xb4, 0xf6, 0xd4, 0xff, 0x15, 0xff, 0x15, 0xd6, 0x10, 0xbd, 0x6d, 0xbd, 0x8e, 0xbd, 0x6e, 0xb5, 0x6f, 0xad, 0x4f, 0x8c, 0x4c, 0x8b, 0xeb, 0x7b, 0x8a, 0x7b, 0x68, 0x94, 0xab, 0xa5, 0x0c, + 0x4a, 0x05, 0x4a, 0x25, 0x52, 0x86, 0x63, 0x47, 0x73, 0xe8, 0x63, 0x86, 0x5b, 0x26, 0x63, 0x86, 0x5b, 0x65, 0x63, 0x46, 0x63, 0x47, 0x63, 0x07, 0x83, 0xa9, 0xb5, 0x0c, 0xde, 0x30, 0xee, 0xb2, 0xf6, 0xf3, 0xff, 0x14, 0xff, 0x14, 0xff, 0x14, 0xfe, 0xf3, 0xf6, 0xb2, 0xf6, 0xb2, 0xe6, 0x91, 0xe6, 0x91, 0xd6, 0x4f, 0xa4, 0xea, 0x62, 0xa5, 0x52, 0x05, 0xdf, 0x56, 0xa6, 0x70, 0x8d, 0xeb, 0x96, 0x49, 0x6d, 0x07, 0x5c, 0x66, 0x65, 0x06, 0x5c, 0x45, 0x95, 0xae, 0xf7, 0xfd, 0xff, 0xff, 0xd7, 0x97, 0xc5, 0x0c, 0xd6, 0x11, 0xac, 0x4c, 0xa0, 0xa2, 0xa8, 0xa2, 0xa8, 0xa2, 0xa8, 0x82, 0xab, 0xea, 0xd7, 0xf7, 0xb7, 0x71, 0xec, 0xad, 0xfb, 0x4d, 0xfb, 0xac, 0xf6, 0x11, 0xf7, 0x14, 0xfc, 0x2e, 0xd9, 0x24, 0xb0, 0xc3, 0xc0, 0xc3, 0xc0, 0xc3, 0xfa, 0xec, 0x62, 0xc4, 0x84, 0x8a, 0xee, 0xf2, 0xee, 0xd2, 0xe6, 0x92, 0xde, 0x72, 0xde, 0x72, 0xe6, 0x93, 0xf6, 0xf4, 0xff, 0x56, 0xf7, 0x35, 0xe6, 0xd3, 0xe6, 0xd3, 0xde, 0x93, 0xde, 0x92, 0xe6, 0xb2, 0xee, 0xd3, 0xee, 0xd3, 0xee, 0xd3, 0xe6, 0x73, 0xe6, 0x73, 0xee, 0xb4, 0xee, 0xb3, 0xf6, 0xb3, 0xee, 0xb3, 0xe6, 0x72, 0xd6, 0x11, 0xde, 0x52, 0xd6, 0x31, 0xe6, 0x72, 0xe6, 0xb4, 0xde, 0x74, 0xb5, 0x4f, 0x9c, 0xcd, 0x94, 0x4c, 0x83, 0xea, 0x8c, 0x2a, 0x8c, 0x4a, + 0x62, 0xa6, 0x5a, 0xc6, 0x5b, 0x26, 0x63, 0x67, 0x74, 0x48, 0x74, 0x48, 0x74, 0x08, 0x6c, 0x27, 0x5b, 0x65, 0x4a, 0xa5, 0x63, 0x46, 0xa4, 0xab, 0xd5, 0xcf, 0xee, 0xb1, 0xf7, 0x12, 0xf7, 0x32, 0xf7, 0x33, 0xff, 0x34, 0xff, 0x14, 0xff, 0x13, 0xf6, 0xf2, 0xf6, 0xb2, 0xee, 0xb1, 0xe6, 0x90, 0xde, 0x8f, 0xde, 0x8e, 0xbd, 0xec, 0x7b, 0xc7, 0x4a, 0x24, 0xc6, 0xd2, 0xcf, 0x33, 0x96, 0x0c, 0x96, 0x0a, 0x6c, 0xe7, 0x4b, 0xe5, 0x4b, 0xc5, 0x43, 0x85, 0x74, 0xea, 0xd7, 0x77, 0xb7, 0x12, 0x8e, 0x0a, 0x85, 0xab, 0xc7, 0x55, 0xdf, 0x39, 0x98, 0xc2, 0xa8, 0xc2, 0xb0, 0xa2, 0xab, 0xc9, 0x96, 0xec, 0x8e, 0x89, 0x8e, 0x48, 0x96, 0xe9, 0xae, 0xea, 0xe7, 0x33, 0xee, 0xf3, 0xf7, 0x35, 0xf6, 0xf4, 0xe1, 0xa6, 0xb8, 0xe3, 0xc8, 0xe3, 0xd9, 0x25, 0xe3, 0x2b, 0x4a, 0xc4, 0x74, 0x28, 0xee, 0xf2, 0xee, 0xd2, 0xe6, 0xb2, 0xe6, 0xb3, 0xe6, 0xb3, 0xe6, 0xb3, 0xe6, 0xb3, 0xee, 0xf4, 0xef, 0x14, 0xe6, 0xf3, 0xe6, 0xd3, 0xe6, 0xb3, 0xe6, 0xd3, 0xe6, 0xd2, 0xee, 0xd3, 0xee, 0xd3, 0xee, 0xd3, 0xe6, 0x72, 0xe6, 0x73, 0xee, 0xb4, 0xf6, 0xb3, 0xee, 0x93, 0xe6, 0x71, 0xde, 0x51, 0xee, 0xb3, 0xef, 0x13, 0xde, 0x91, 0xde, 0x71, 0xde, 0x91, 0xde, 0x72, 0xcd, 0xf0, 0xad, 0x2d, 0xad, 0x2f, 0xa4, 0xcd, 0x9c, 0x4c, 0x83, 0x8a, + 0x6b, 0x07, 0x6b, 0xa7, 0x74, 0x28, 0x74, 0x07, 0x74, 0x48, 0x7c, 0x68, 0x74, 0x48, 0x74, 0x68, 0x63, 0x86, 0x63, 0x46, 0xac, 0xeb, 0xde, 0x30, 0xf6, 0xf2, 0xff, 0x32, 0xf7, 0x52, 0xf7, 0x52, 0xf7, 0x53, 0xff, 0x34, 0xff, 0x13, 0xf6, 0xf2, 0xee, 0xf1, 0xe6, 0xd0, 0xd6, 0x8f, 0xd6, 0x6d, 0xd6, 0x6c, 0xd6, 0x6c, 0xbd, 0xeb, 0x8c, 0x68, 0x63, 0x67, 0x95, 0x0b, 0xc6, 0xf2, 0x85, 0x8b, 0x85, 0x8b, 0x75, 0x09, 0x6c, 0xe7, 0x5c, 0x46, 0x5c, 0x86, 0x74, 0xea, 0x85, 0xeb, 0x85, 0xe8, 0x75, 0x29, 0xae, 0xd3, 0xbf, 0x75, 0xd7, 0xf8, 0xd6, 0xf7, 0xa3, 0x68, 0x84, 0x65, 0x96, 0xcd, 0xbf, 0x52, 0xaf, 0x11, 0x9e, 0xad, 0x9e, 0xea, 0x96, 0xa9, 0xdf, 0x34, 0xee, 0xf3, 0xe6, 0xd2, 0xde, 0xb1, 0xd5, 0xaf, 0xc9, 0x65, 0xc9, 0x64, 0xba, 0x86, 0xba, 0xa7, 0x4a, 0xc4, 0x6b, 0xe7, 0xe6, 0xd2, 0xe6, 0xb1, 0xe6, 0x92, 0xe6, 0xb3, 0xee, 0xd3, 0xe6, 0x92, 0xd6, 0x31, 0xde, 0x92, 0xee, 0xf4, 0xee, 0xf4, 0xe6, 0xd3, 0xe6, 0xb3, 0xe6, 0xb3, 0xe6, 0xd3, 0xe6, 0xd2, 0xe6, 0xb3, 0xe6, 0xb3, 0xe6, 0x93, 0xe6, 0x93, 0xee, 0x93, 0xee, 0x93, 0xee, 0x93, 0xee, 0xd2, 0xee, 0xd2, 0xee, 0xd3, 0xe6, 0xb2, 0xde, 0x71, 0xd6, 0x31, 0xd6, 0x31, 0xde, 0x51, 0xd6, 0x51, 0xd6, 0x71, 0xde, 0x53, 0xc5, 0x6f, 0xb4, 0xce, 0x9c, 0x2c, + 0x62, 0xa6, 0x73, 0x67, 0x6b, 0x87, 0x63, 0x86, 0x6b, 0xa7, 0x6b, 0xe7, 0x6b, 0xe7, 0x74, 0x07, 0x8c, 0x69, 0xbd, 0x4d, 0xe6, 0x51, 0xf6, 0xd2, 0xf7, 0x13, 0xf7, 0x32, 0xf7, 0x52, 0xf7, 0x52, 0xff, 0x54, 0xff, 0x34, 0xf6, 0xf4, 0xf6, 0xf2, 0xee, 0xf0, 0xde, 0xcf, 0xce, 0x6d, 0xce, 0x6c, 0xd6, 0x6c, 0xce, 0x6c, 0xb5, 0x89, 0x84, 0x67, 0x6c, 0x08, 0x6c, 0x07, 0xad, 0xf1, 0x85, 0x4c, 0x7d, 0x4a, 0x85, 0x8a, 0x6d, 0x27, 0x6c, 0xe7, 0x5c, 0x66, 0x95, 0xcd, 0x9e, 0xae, 0x7d, 0x88, 0xb6, 0xd3, 0xff, 0xfe, 0xf7, 0xfd, 0xbf, 0x72, 0x96, 0x49, 0x5c, 0xc4, 0x65, 0x05, 0x7e, 0x06, 0x96, 0xaa, 0xaf, 0x4e, 0x9e, 0xcc, 0x96, 0xca, 0x9e, 0xeb, 0xd7, 0x54, 0xe6, 0xf3, 0xde, 0xd2, 0xe6, 0xf2, 0xe6, 0xd2, 0xef, 0x13, 0x84, 0x4a, 0x42, 0xc4, 0x3a, 0x63, 0x4a, 0xc3, 0x63, 0xc6, 0xde, 0x71, 0xe6, 0x91, 0xe6, 0xb2, 0xe6, 0x92, 0xe6, 0xb2, 0xde, 0x51, 0xe6, 0xb3, 0xef, 0x14, 0xee, 0xd4, 0xe6, 0xb3, 0xee, 0xb3, 0xde, 0x93, 0xe6, 0x93, 0xee, 0x92, 0xde, 0x72, 0xde, 0x72, 0xe6, 0x93, 0xe6, 0x92, 0xde, 0x92, 0xde, 0x92, 0xde, 0x72, 0xee, 0xd3, 0xf7, 0x14, 0xf7, 0x14, 0xf6, 0xf4, 0xf6, 0xf4, 0xe6, 0xb3, 0xd6, 0x31, 0xd6, 0x0f, 0xd6, 0x10, 0xde, 0x72, 0xe6, 0xd3, 0xe6, 0xb2, 0xbd, 0xae, 0xac, 0xed, 0x9c, 0x4c, + 0x4a, 0x65, 0x6b, 0x26, 0x6b, 0x67, 0x63, 0x46, 0x63, 0x87, 0x73, 0xe7, 0x8c, 0xaa, 0xb5, 0x4d, 0xde, 0x10, 0xee, 0x92, 0xf6, 0xd3, 0xf6, 0xf2, 0xf7, 0x13, 0xf7, 0x33, 0xf7, 0x53, 0xff, 0x53, 0xff, 0x14, 0xf6, 0xf4, 0xf6, 0xf3, 0xee, 0xd2, 0xde, 0xd0, 0xce, 0x8d, 0xbe, 0x0b, 0xbd, 0xcb, 0xbd, 0xca, 0xb5, 0x69, 0x9c, 0xa7, 0x63, 0x44, 0x4a, 0xa4, 0x31, 0xc3, 0x94, 0xce, 0x85, 0x0c, 0x6c, 0xa6, 0x8d, 0xc9, 0x9e, 0x6b, 0x9e, 0xcb, 0x75, 0x48, 0x85, 0x89, 0x75, 0x86, 0x85, 0x8c, 0xc7, 0x35, 0xb6, 0xf0, 0x8e, 0x2a, 0x6d, 0x65, 0x5c, 0x44, 0x43, 0x84, 0x54, 0x44, 0x5c, 0x63, 0x65, 0x24, 0x7e, 0x05, 0x7d, 0xe7, 0x8e, 0x89, 0xa7, 0x0c, 0xcf, 0x12, 0xde, 0xb2, 0xe6, 0xd2, 0xe6, 0xd1, 0xde, 0x91, 0xce, 0x0f, 0x94, 0xab, 0x42, 0xa3, 0x42, 0x83, 0x42, 0xc4, 0x5b, 0x65, 0xce, 0x30, 0xde, 0x91, 0xde, 0x92, 0xee, 0xb3, 0xee, 0xb3, 0xde, 0x93, 0xf7, 0x15, 0xef, 0x14, 0xde, 0x51, 0xde, 0x30, 0xde, 0x71, 0xde, 0x52, 0xe6, 0x52, 0xde, 0x10, 0xd6, 0x10, 0xd6, 0x11, 0xde, 0x72, 0xe6, 0xb2, 0xee, 0xf3, 0xee, 0xf3, 0xe6, 0xd3, 0xe6, 0xd3, 0xee, 0xf3, 0xee, 0xf4, 0xee, 0xf5, 0xee, 0xd4, 0xe6, 0xb3, 0xd6, 0x11, 0xdd, 0xef, 0xd6, 0x0f, 0xee, 0xd3, 0xee, 0xd3, 0xd6, 0x50, 0xd6, 0x4f, 0xce, 0x0f, 0xad, 0x2d, +#endif +#if LV_COLOR_DEPTH == 32 + /*Pixel format: Fix 0xFF: 8 bit, Red: 8 bit, Green: 8 bit, Blue: 8 bit*/ + 0x21, 0x66, 0x4e, 0xff, 0x23, 0x57, 0x4d, 0xff, 0x1a, 0x43, 0x38, 0xff, 0x1d, 0x62, 0x47, 0xff, 0x2f, 0x80, 0x61, 0xff, 0x33, 0x76, 0x5e, 0xff, 0x2b, 0x5d, 0x4f, 0xff, 0x25, 0x4d, 0x46, 0xff, 0x1d, 0x36, 0x39, 0xff, 0x1f, 0x35, 0x3f, 0xff, 0x1b, 0x2e, 0x34, 0xff, 0x41, 0x60, 0x58, 0xff, 0x73, 0x95, 0x95, 0xff, 0x6c, 0x93, 0xa4, 0xff, 0x51, 0x7d, 0x98, 0xff, 0x4e, 0x76, 0x93, 0xff, 0x49, 0x70, 0x8c, 0xff, 0x44, 0x6d, 0x85, 0xff, 0x5c, 0x87, 0x9e, 0xff, 0x4d, 0x79, 0x92, 0xff, 0x41, 0x6d, 0x8c, 0xff, 0x44, 0x72, 0x8f, 0xff, 0x3d, 0x67, 0x82, 0xff, 0x56, 0x83, 0x9b, 0xff, 0x52, 0x7c, 0x95, 0xff, 0x35, 0x5d, 0x75, 0xff, 0x27, 0x4f, 0x65, 0xff, 0x1e, 0x4a, 0x5f, 0xff, 0x1d, 0x54, 0x64, 0xff, 0x1f, 0x60, 0x6c, 0xff, 0x1b, 0x55, 0x60, 0xff, 0x15, 0x3f, 0x50, 0xff, 0x16, 0x44, 0x4e, 0xff, 0x17, 0x3e, 0x40, 0xff, 0x12, 0x20, 0x21, 0xff, 0x14, 0x27, 0x24, 0xff, 0x18, 0x35, 0x31, 0xff, 0x15, 0x2e, 0x2a, 0xff, 0x1a, 0x3d, 0x38, 0xff, 0x30, 0x73, 0x69, 0xff, 0x3c, 0x8c, 0x81, 0xff, 0x39, 0x88, 0x80, 0xff, 0x37, 0x8a, 0x84, 0xff, 0x35, 0x89, 0x88, 0xff, 0x34, 0x85, 0x88, 0xff, 0x31, 0x83, 0x89, 0xff, 0x2f, 0x81, 0x87, 0xff, 0x2d, 0x7a, 0x86, 0xff, 0x2a, 0x72, 0x7d, 0xff, 0x20, 0x35, 0xbf, 0xff, 0x1e, 0x20, 0xd0, 0xff, 0x16, 0x19, 0xca, 0xff, 0x1c, 0x1d, 0xce, 0xff, 0x30, 0x51, 0xd4, 0xff, 0x47, 0xbd, 0x8e, 0xff, 0x46, 0xb4, 0x8b, 0xff, 0x4b, 0xb1, 0x8a, 0xff, 0x60, 0xbb, 0x97, 0xff, 0x63, 0xc1, 0x9c, 0xff, 0x4e, 0xbc, 0x8e, 0xff, 0x52, 0xbc, 0x8f, 0xff, 0x5b, 0xc3, 0x95, 0xff, 0x63, 0xc5, 0x9a, 0xff, 0x5a, 0xbd, 0x94, 0xff, 0x49, 0xac, 0x85, 0xff, 0x4b, 0xa0, 0x7f, 0xff, 0x3f, 0x9b, 0x78, 0xff, 0x33, 0x93, 0x70, 0xff, 0x30, 0x87, 0x69, 0xff, 0x2c, 0x76, 0x69, 0xff, 0x35, 0x71, 0x8c, 0xff, 0x3d, 0x7c, 0xa0, 0xff, 0x62, 0x9d, 0xc3, 0xff, 0x89, 0xbe, 0xe8, 0xff, 0x8b, 0xc0, 0xeb, 0xff, 0x60, 0x92, 0xbf, 0xff, 0x1e, 0x39, 0x51, 0xff, 0x17, 0x22, 0x2d, 0xff, 0x1f, 0x2d, 0x3c, 0xff, 0x27, 0x38, 0x4d, 0xff, 0x2e, 0x41, 0x58, 0xff, 0x38, 0x4d, 0x68, 0xff, 0x40, 0x57, 0x78, 0xff, 0x49, 0x64, 0x90, 0xff, 0x4f, 0x70, 0xa6, 0xff, 0x56, 0x7b, 0xb7, 0xff, 0x5b, 0x83, 0xc4, 0xff, 0x5d, 0x84, 0xc9, 0xff, 0x5b, 0x83, 0xcd, 0xff, 0x5e, 0x82, 0xc8, 0xff, 0x60, 0x81, 0xc1, 0xff, 0x62, 0x82, 0xbe, 0xff, 0x63, 0x83, 0xbd, 0xff, 0x62, 0x81, 0xba, 0xff, 0x5f, 0x7d, 0xb5, 0xff, 0x5d, 0x7d, 0xb4, 0xff, 0x59, 0x77, 0xae, 0xff, 0x52, 0x70, 0xa3, 0xff, 0x4b, 0x6b, 0x9d, 0xff, 0x45, 0x61, 0x92, 0xff, + 0x21, 0x67, 0x4d, 0xff, 0x23, 0x59, 0x4d, 0xff, 0x17, 0x2c, 0x2b, 0xff, 0x16, 0x27, 0x26, 0xff, 0x18, 0x2f, 0x2b, 0xff, 0x17, 0x27, 0x26, 0xff, 0x15, 0x23, 0x24, 0xff, 0x17, 0x27, 0x2b, 0xff, 0x1c, 0x30, 0x3a, 0xff, 0x1a, 0x2d, 0x35, 0xff, 0x18, 0x2e, 0x36, 0xff, 0x36, 0x57, 0x55, 0xff, 0x6e, 0x8b, 0x89, 0xff, 0x54, 0x7a, 0x84, 0xff, 0x43, 0x6b, 0x87, 0xff, 0x47, 0x72, 0x8d, 0xff, 0x4a, 0x71, 0x8f, 0xff, 0x59, 0x88, 0xa4, 0xff, 0x6c, 0x99, 0xb6, 0xff, 0x57, 0x81, 0x9d, 0xff, 0x55, 0x84, 0xa3, 0xff, 0x59, 0x84, 0xa5, 0xff, 0x4f, 0x7a, 0x96, 0xff, 0x51, 0x7e, 0x9f, 0xff, 0x46, 0x6f, 0x8d, 0xff, 0x43, 0x67, 0x7d, 0xff, 0x40, 0x65, 0x7e, 0xff, 0x2e, 0x50, 0x67, 0xff, 0x23, 0x4c, 0x63, 0xff, 0x21, 0x59, 0x6f, 0xff, 0x19, 0x49, 0x5f, 0xff, 0x18, 0x41, 0x55, 0xff, 0x19, 0x4d, 0x53, 0xff, 0x1a, 0x3e, 0x40, 0xff, 0x14, 0x24, 0x25, 0xff, 0x16, 0x27, 0x26, 0xff, 0x1c, 0x40, 0x3f, 0xff, 0x33, 0x74, 0x76, 0xff, 0x5d, 0xa9, 0xb1, 0xff, 0x6b, 0xbb, 0xc8, 0xff, 0x5a, 0xb4, 0xb7, 0xff, 0x37, 0x8e, 0x93, 0xff, 0x45, 0x59, 0xf2, 0xff, 0x4a, 0x57, 0xf9, 0xff, 0x26, 0x69, 0x89, 0xff, 0x27, 0x6b, 0x6b, 0xff, 0x28, 0x65, 0x6d, 0xff, 0x22, 0x52, 0x5f, 0xff, 0x1f, 0x42, 0x53, 0xff, 0x39, 0x42, 0xe2, 0xff, 0x2f, 0x2f, 0xf8, 0xff, 0x21, 0x21, 0xde, 0xff, 0x16, 0x1a, 0xc4, 0xff, 0x1f, 0x20, 0xd6, 0xff, 0x4e, 0x9c, 0xb9, 0xff, 0x58, 0xbb, 0x98, 0xff, 0x5e, 0xbf, 0x9a, 0xff, 0x6d, 0xca, 0xa3, 0xff, 0x6a, 0xc9, 0xa4, 0xff, 0x5b, 0xc4, 0x99, 0xff, 0x63, 0xc9, 0x9e, 0xff, 0x68, 0xcd, 0xa0, 0xff, 0x6c, 0xcd, 0xa3, 0xff, 0x60, 0xc2, 0x9a, 0xff, 0x4b, 0xaf, 0x87, 0xff, 0x4a, 0xa3, 0x7f, 0xff, 0x46, 0xa1, 0x7e, 0xff, 0x3c, 0x99, 0x76, 0xff, 0x2c, 0x88, 0x67, 0xff, 0x31, 0x77, 0x6a, 0xff, 0x46, 0x7e, 0x93, 0xff, 0x53, 0x86, 0xa5, 0xff, 0x6a, 0x9e, 0xc4, 0xff, 0x90, 0xc2, 0xf2, 0xff, 0x91, 0xc5, 0xf2, 0xff, 0x7b, 0xad, 0xdb, 0xff, 0x4d, 0x79, 0xa7, 0xff, 0x15, 0x26, 0x39, 0xff, 0x10, 0x17, 0x20, 0xff, 0x0e, 0x16, 0x1f, 0xff, 0x0f, 0x16, 0x1f, 0xff, 0x0e, 0x16, 0x1f, 0xff, 0x0f, 0x17, 0x21, 0xff, 0x10, 0x1a, 0x21, 0xff, 0x13, 0x1d, 0x27, 0xff, 0x14, 0x20, 0x2d, 0xff, 0x15, 0x23, 0x30, 0xff, 0x17, 0x24, 0x34, 0xff, 0x16, 0x25, 0x35, 0xff, 0x18, 0x26, 0x37, 0xff, 0x1a, 0x28, 0x3a, 0xff, 0x1b, 0x29, 0x39, 0xff, 0x1c, 0x2a, 0x3a, 0xff, 0x1b, 0x2a, 0x38, 0xff, 0x1a, 0x28, 0x36, 0xff, 0x19, 0x26, 0x33, 0xff, 0x18, 0x23, 0x2f, 0xff, 0x14, 0x20, 0x2b, 0xff, 0x13, 0x1e, 0x28, 0xff, 0x12, 0x1b, 0x25, 0xff, + 0x1a, 0x60, 0x41, 0xff, 0x26, 0x61, 0x4f, 0xff, 0x21, 0x3e, 0x38, 0xff, 0x1e, 0x2f, 0x37, 0xff, 0x20, 0x32, 0x3a, 0xff, 0x21, 0x3b, 0x38, 0xff, 0x2f, 0x50, 0x48, 0xff, 0x38, 0x60, 0x6c, 0xff, 0x31, 0x57, 0x67, 0xff, 0x37, 0x5d, 0x5e, 0xff, 0x7e, 0x96, 0x95, 0xff, 0x5d, 0x7c, 0x85, 0xff, 0x41, 0x63, 0x74, 0xff, 0x39, 0x5a, 0x6d, 0xff, 0x39, 0x5c, 0x72, 0xff, 0x3b, 0x5d, 0x71, 0xff, 0x41, 0x68, 0x82, 0xff, 0x48, 0x6f, 0x89, 0xff, 0x4b, 0x77, 0x8e, 0xff, 0x4c, 0x76, 0x8f, 0xff, 0x58, 0x81, 0xa1, 0xff, 0x59, 0x82, 0xa1, 0xff, 0x50, 0x79, 0x98, 0xff, 0x37, 0x62, 0x79, 0xff, 0x2d, 0x59, 0x64, 0xff, 0x3e, 0x64, 0x72, 0xff, 0x45, 0x6b, 0x83, 0xff, 0x34, 0x58, 0x71, 0xff, 0x3a, 0x66, 0x7d, 0xff, 0x42, 0x77, 0x96, 0xff, 0x27, 0x61, 0x7a, 0xff, 0x16, 0x47, 0x53, 0xff, 0x18, 0x45, 0x48, 0xff, 0x19, 0x3d, 0x40, 0xff, 0x1d, 0x37, 0x3b, 0xff, 0x22, 0x51, 0x53, 0xff, 0x27, 0x70, 0x74, 0xff, 0x41, 0x94, 0xa1, 0xff, 0x54, 0xa9, 0xb9, 0xff, 0x53, 0xa6, 0xb0, 0xff, 0x31, 0x41, 0xe7, 0xff, 0x25, 0x49, 0xa8, 0xff, 0x2e, 0x2e, 0xed, 0xff, 0x36, 0x35, 0xfe, 0xff, 0x3a, 0x38, 0xff, 0xff, 0x23, 0x47, 0x6b, 0xff, 0x27, 0x4a, 0x59, 0xff, 0x22, 0x3f, 0x4c, 0xff, 0x35, 0x49, 0xbf, 0xff, 0x26, 0x26, 0xec, 0xff, 0x21, 0x21, 0xe3, 0xff, 0x25, 0x26, 0xec, 0xff, 0x1a, 0x1b, 0xcf, 0xff, 0x1f, 0x21, 0xcb, 0xff, 0x34, 0x4e, 0xda, 0xff, 0x58, 0xc4, 0x98, 0xff, 0x5b, 0xc3, 0x9d, 0xff, 0x61, 0xc6, 0xa0, 0xff, 0x5b, 0xc5, 0x9b, 0xff, 0x63, 0xcd, 0x9f, 0xff, 0x73, 0xd6, 0xa9, 0xff, 0x6f, 0xd5, 0xa8, 0xff, 0x6a, 0xcd, 0xa3, 0xff, 0x61, 0xc3, 0x9c, 0xff, 0x4f, 0xb0, 0x89, 0xff, 0x4d, 0xa2, 0x81, 0xff, 0x4b, 0xa0, 0x7f, 0xff, 0x42, 0x9f, 0x7a, 0xff, 0x3b, 0x83, 0xa0, 0xff, 0x37, 0x79, 0x85, 0xff, 0x3b, 0x77, 0x6c, 0xff, 0x39, 0x6f, 0x68, 0xff, 0x4a, 0x7d, 0x8d, 0xff, 0x78, 0xaa, 0xd5, 0xff, 0x7c, 0xad, 0xd7, 0xff, 0x6e, 0xa1, 0xc8, 0xff, 0x65, 0x90, 0xc1, 0xff, 0x27, 0x49, 0x6e, 0xff, 0x10, 0x1a, 0x24, 0xff, 0x11, 0x19, 0x24, 0xff, 0x11, 0x1a, 0x25, 0xff, 0x10, 0x1a, 0x25, 0xff, 0x10, 0x1b, 0x25, 0xff, 0x11, 0x1a, 0x25, 0xff, 0x11, 0x1a, 0x26, 0xff, 0x11, 0x1b, 0x24, 0xff, 0x11, 0x1a, 0x26, 0xff, 0x11, 0x1a, 0x25, 0xff, 0x10, 0x1a, 0x25, 0xff, 0x10, 0x1a, 0x23, 0xff, 0x10, 0x19, 0x23, 0xff, 0x10, 0x19, 0x23, 0xff, 0x10, 0x19, 0x23, 0xff, 0x10, 0x1a, 0x23, 0xff, 0x11, 0x1a, 0x23, 0xff, 0x10, 0x1b, 0x22, 0xff, 0x11, 0x1a, 0x24, 0xff, 0x11, 0x1a, 0x24, 0xff, 0x11, 0x1b, 0x25, 0xff, 0x11, 0x1b, 0x26, 0xff, + 0x1c, 0x61, 0x43, 0xff, 0x29, 0x6a, 0x52, 0xff, 0x2c, 0x57, 0x4f, 0xff, 0x2b, 0x47, 0x51, 0xff, 0x29, 0x43, 0x51, 0xff, 0x2d, 0x4d, 0x4e, 0xff, 0x4b, 0x78, 0x82, 0xff, 0x62, 0x8f, 0xaa, 0xff, 0x5f, 0x8a, 0xa5, 0xff, 0x6a, 0x92, 0x9c, 0xff, 0x96, 0xaa, 0xb0, 0xff, 0x5f, 0x79, 0x7d, 0xff, 0x28, 0x44, 0x51, 0xff, 0x29, 0x44, 0x54, 0xff, 0x2c, 0x49, 0x5a, 0xff, 0x2a, 0x48, 0x56, 0xff, 0x2b, 0x49, 0x58, 0xff, 0x30, 0x50, 0x64, 0xff, 0x31, 0x51, 0x63, 0xff, 0x3f, 0x61, 0x7a, 0xff, 0x40, 0x62, 0x77, 0xff, 0x3e, 0x67, 0x7d, 0xff, 0x3f, 0x6f, 0x80, 0xff, 0x2e, 0x65, 0x65, 0xff, 0x27, 0x59, 0x59, 0xff, 0x29, 0x53, 0x57, 0xff, 0x2e, 0x4f, 0x5d, 0xff, 0x24, 0x40, 0x4f, 0xff, 0x32, 0x52, 0x66, 0xff, 0x41, 0x6e, 0x8c, 0xff, 0x37, 0x67, 0x81, 0xff, 0x20, 0x4e, 0x5e, 0xff, 0x14, 0x34, 0x39, 0xff, 0x18, 0x39, 0x3e, 0xff, 0x1f, 0x55, 0x59, 0xff, 0x22, 0x68, 0x6e, 0xff, 0x24, 0x6b, 0x75, 0xff, 0x27, 0x6b, 0x76, 0xff, 0x26, 0x60, 0x6e, 0xff, 0x28, 0x51, 0x81, 0xff, 0x15, 0x17, 0xcd, 0xff, 0x19, 0x1b, 0xce, 0xff, 0x1b, 0x1c, 0xcd, 0xff, 0x2d, 0x2e, 0xee, 0xff, 0x37, 0x34, 0xff, 0xff, 0x30, 0x35, 0xe9, 0xff, 0x1e, 0x32, 0x40, 0xff, 0x1f, 0x34, 0x5a, 0xff, 0x2c, 0x2c, 0xf4, 0xff, 0x1e, 0x1e, 0xd8, 0xff, 0x1c, 0x1c, 0xd6, 0xff, 0x1e, 0x1f, 0xdb, 0xff, 0x20, 0x20, 0xdd, 0xff, 0x1e, 0x1f, 0xc8, 0xff, 0x28, 0x23, 0xe5, 0xff, 0x54, 0xb0, 0xb2, 0xff, 0x57, 0xc6, 0x9d, 0xff, 0x60, 0xc9, 0xa1, 0xff, 0x66, 0xce, 0xa3, 0xff, 0x75, 0xd9, 0xae, 0xff, 0x7c, 0xdd, 0xb1, 0xff, 0x72, 0xd7, 0xab, 0xff, 0x63, 0xca, 0x9d, 0xff, 0x58, 0xbd, 0x94, 0xff, 0x4d, 0xb1, 0x8a, 0xff, 0x49, 0xa2, 0x80, 0xff, 0x4c, 0x9f, 0x7f, 0xff, 0x40, 0x9c, 0x84, 0xff, 0x24, 0x23, 0xe9, 0xff, 0x4f, 0x60, 0xf2, 0xff, 0x2f, 0x63, 0x5b, 0xff, 0x28, 0x4c, 0x51, 0xff, 0x3c, 0x64, 0x7f, 0xff, 0x60, 0x8d, 0xb5, 0xff, 0x65, 0x92, 0xb6, 0xff, 0x5c, 0x87, 0xac, 0xff, 0x58, 0x84, 0xb3, 0xff, 0x2b, 0x4a, 0x6f, 0xff, 0x14, 0x1e, 0x2f, 0xff, 0x11, 0x1c, 0x29, 0xff, 0x12, 0x1c, 0x28, 0xff, 0x12, 0x1c, 0x28, 0xff, 0x11, 0x1c, 0x28, 0xff, 0x12, 0x1c, 0x27, 0xff, 0x12, 0x1c, 0x2a, 0xff, 0x13, 0x1c, 0x2a, 0xff, 0x12, 0x1d, 0x2b, 0xff, 0x12, 0x1d, 0x2b, 0xff, 0x12, 0x1c, 0x2a, 0xff, 0x11, 0x1d, 0x29, 0xff, 0x13, 0x1b, 0x2a, 0xff, 0x11, 0x1c, 0x29, 0xff, 0x12, 0x1c, 0x29, 0xff, 0x11, 0x1d, 0x28, 0xff, 0x13, 0x1c, 0x29, 0xff, 0x13, 0x1d, 0x2a, 0xff, 0x13, 0x1d, 0x28, 0xff, 0x11, 0x1d, 0x29, 0xff, 0x13, 0x1d, 0x2a, 0xff, 0x13, 0x1d, 0x2a, 0xff, + 0x1d, 0x66, 0x46, 0xff, 0x1f, 0x63, 0x47, 0xff, 0x38, 0x74, 0x63, 0xff, 0x64, 0x84, 0x88, 0xff, 0x45, 0x62, 0x70, 0xff, 0x30, 0x50, 0x5e, 0xff, 0x42, 0x6a, 0x84, 0xff, 0x52, 0x7e, 0x9a, 0xff, 0x50, 0x7a, 0x8f, 0xff, 0x47, 0x6e, 0x7f, 0xff, 0x45, 0x65, 0x6a, 0xff, 0x2a, 0x45, 0x4c, 0xff, 0x21, 0x37, 0x42, 0xff, 0x28, 0x3f, 0x4f, 0xff, 0x30, 0x4c, 0x5c, 0xff, 0x23, 0x3c, 0x4c, 0xff, 0x1c, 0x2f, 0x36, 0xff, 0x1d, 0x30, 0x39, 0xff, 0x23, 0x39, 0x46, 0xff, 0x2a, 0x4c, 0x58, 0xff, 0x31, 0x61, 0x5f, 0xff, 0x40, 0x7b, 0x6e, 0xff, 0x38, 0x71, 0x67, 0xff, 0x25, 0x54, 0x4c, 0xff, 0x20, 0x43, 0x46, 0xff, 0x20, 0x35, 0x3b, 0xff, 0x20, 0x35, 0x3e, 0xff, 0x21, 0x39, 0x46, 0xff, 0x25, 0x3e, 0x4d, 0xff, 0x37, 0x56, 0x68, 0xff, 0x38, 0x5a, 0x70, 0xff, 0x22, 0x43, 0x53, 0xff, 0x15, 0x2d, 0x37, 0xff, 0x18, 0x3a, 0x40, 0xff, 0x1b, 0x56, 0x5c, 0xff, 0x21, 0x5c, 0x69, 0xff, 0x24, 0x50, 0x60, 0xff, 0x26, 0x4a, 0x5c, 0xff, 0x32, 0x56, 0x6f, 0xff, 0x35, 0x51, 0x95, 0xff, 0x13, 0x15, 0xc4, 0xff, 0x15, 0x17, 0xc1, 0xff, 0x17, 0x19, 0xc7, 0xff, 0x25, 0x28, 0xd8, 0xff, 0x31, 0x30, 0xf9, 0xff, 0x38, 0x35, 0xff, 0xff, 0x24, 0x2e, 0x9f, 0xff, 0x28, 0x31, 0xad, 0xff, 0x1e, 0x1f, 0xd9, 0xff, 0x17, 0x19, 0xce, 0xff, 0x18, 0x19, 0xce, 0xff, 0x1a, 0x1b, 0xd2, 0xff, 0x1d, 0x1e, 0xd9, 0xff, 0x1c, 0x1d, 0xc9, 0xff, 0x35, 0x34, 0xe8, 0xff, 0x44, 0x73, 0xd2, 0xff, 0x59, 0xce, 0x9a, 0xff, 0x5d, 0xa8, 0xcf, 0xff, 0x7c, 0xc9, 0xd0, 0xff, 0x8a, 0xe7, 0xb8, 0xff, 0x7e, 0xe0, 0xb4, 0xff, 0x71, 0xd9, 0xab, 0xff, 0x59, 0xc6, 0x99, 0xff, 0x4e, 0xba, 0x8e, 0xff, 0x4a, 0xaf, 0x89, 0xff, 0x46, 0xa0, 0x7f, 0xff, 0x4d, 0x9e, 0x7a, 0xff, 0x40, 0x70, 0xbd, 0xff, 0x23, 0x21, 0xe0, 0xff, 0x3a, 0x3d, 0xed, 0xff, 0x3a, 0x6a, 0xb0, 0xff, 0x31, 0x56, 0x66, 0xff, 0x3d, 0x63, 0x7d, 0xff, 0x53, 0x7c, 0x9d, 0xff, 0x51, 0x7b, 0x9b, 0xff, 0x4c, 0x75, 0x95, 0xff, 0x44, 0x6c, 0x93, 0xff, 0x23, 0x3c, 0x5a, 0xff, 0x12, 0x1b, 0x2a, 0xff, 0x11, 0x1a, 0x26, 0xff, 0x11, 0x1a, 0x25, 0xff, 0x11, 0x1a, 0x27, 0xff, 0x11, 0x1c, 0x29, 0xff, 0x13, 0x1c, 0x28, 0xff, 0x11, 0x1c, 0x2a, 0xff, 0x12, 0x1c, 0x2b, 0xff, 0x13, 0x1d, 0x2c, 0xff, 0x13, 0x1d, 0x2b, 0xff, 0x12, 0x1d, 0x2b, 0xff, 0x11, 0x1d, 0x2c, 0xff, 0x12, 0x1d, 0x2b, 0xff, 0x12, 0x1c, 0x2b, 0xff, 0x12, 0x1d, 0x2c, 0xff, 0x13, 0x1d, 0x2b, 0xff, 0x13, 0x1d, 0x2c, 0xff, 0x13, 0x1d, 0x2c, 0xff, 0x12, 0x1d, 0x2c, 0xff, 0x14, 0x1d, 0x2c, 0xff, 0x13, 0x1e, 0x2c, 0xff, 0x13, 0x1d, 0x2c, 0xff, + 0x1b, 0x68, 0x46, 0xff, 0x1d, 0x61, 0x45, 0xff, 0x29, 0x71, 0x57, 0xff, 0x57, 0x8c, 0x8b, 0xff, 0x58, 0x7d, 0x88, 0xff, 0x46, 0x64, 0x72, 0xff, 0x37, 0x56, 0x6e, 0xff, 0x38, 0x59, 0x6f, 0xff, 0x31, 0x53, 0x61, 0xff, 0x2f, 0x60, 0x5b, 0xff, 0x27, 0x56, 0x4f, 0xff, 0x27, 0x4b, 0x53, 0xff, 0x2a, 0x49, 0x58, 0xff, 0x31, 0x50, 0x5d, 0xff, 0x35, 0x54, 0x65, 0xff, 0x26, 0x41, 0x4f, 0xff, 0x1d, 0x2d, 0x36, 0xff, 0x1c, 0x2d, 0x37, 0xff, 0x22, 0x41, 0x47, 0xff, 0x32, 0x6c, 0x63, 0xff, 0x4d, 0x8f, 0x7b, 0xff, 0x4d, 0x90, 0x76, 0xff, 0x2a, 0x57, 0x45, 0xff, 0x1b, 0x2c, 0x2b, 0xff, 0x1e, 0x2f, 0x34, 0xff, 0x1b, 0x2c, 0x31, 0xff, 0x20, 0x31, 0x3b, 0xff, 0x21, 0x36, 0x42, 0xff, 0x24, 0x3c, 0x47, 0xff, 0x30, 0x48, 0x55, 0xff, 0x2c, 0x49, 0x5a, 0xff, 0x23, 0x3c, 0x4d, 0xff, 0x18, 0x33, 0x3e, 0xff, 0x1f, 0x43, 0x4f, 0xff, 0x2a, 0x57, 0x6b, 0xff, 0x2e, 0x52, 0x6b, 0xff, 0x2c, 0x51, 0x68, 0xff, 0x2d, 0x53, 0x6a, 0xff, 0x36, 0x5c, 0x78, 0xff, 0x43, 0x60, 0x96, 0xff, 0x12, 0x13, 0xc2, 0xff, 0x14, 0x17, 0xbc, 0xff, 0x14, 0x16, 0xbc, 0xff, 0x1c, 0x1f, 0xcb, 0xff, 0x32, 0x2f, 0xe9, 0xff, 0x32, 0x30, 0xff, 0xff, 0x36, 0x36, 0xff, 0xff, 0x26, 0x28, 0xe0, 0xff, 0x2d, 0x30, 0xe0, 0xff, 0x1e, 0x20, 0xd3, 0xff, 0x15, 0x16, 0xc8, 0xff, 0x18, 0x19, 0xcf, 0xff, 0x18, 0x19, 0xcf, 0xff, 0x1c, 0x1c, 0xcc, 0xff, 0x36, 0x36, 0xe7, 0xff, 0x39, 0x42, 0xe9, 0xff, 0x72, 0xd6, 0xb7, 0xff, 0x23, 0x21, 0xf9, 0xff, 0x50, 0x57, 0xfb, 0xff, 0x71, 0xa8, 0xec, 0xff, 0x82, 0xe5, 0xb8, 0xff, 0x6a, 0xd7, 0xa9, 0xff, 0x54, 0xc4, 0x95, 0xff, 0x54, 0xb8, 0x91, 0xff, 0x4f, 0xaf, 0x8c, 0xff, 0x45, 0x9d, 0x88, 0xff, 0x56, 0x86, 0xd5, 0xff, 0x47, 0x4a, 0xfa, 0xff, 0x39, 0x3d, 0xef, 0xff, 0x23, 0x24, 0xd7, 0xff, 0x40, 0x63, 0xd9, 0xff, 0x54, 0x94, 0x8c, 0xff, 0x49, 0x7c, 0x86, 0xff, 0x4f, 0x76, 0x8e, 0xff, 0x51, 0x7b, 0x95, 0xff, 0x54, 0x79, 0x98, 0xff, 0x42, 0x67, 0x8d, 0xff, 0x20, 0x34, 0x4d, 0xff, 0x0d, 0x12, 0x17, 0xff, 0x0d, 0x13, 0x1a, 0xff, 0x0f, 0x13, 0x19, 0xff, 0x0e, 0x15, 0x1c, 0xff, 0x10, 0x16, 0x1e, 0xff, 0x0e, 0x16, 0x20, 0xff, 0x10, 0x17, 0x21, 0xff, 0x10, 0x18, 0x23, 0xff, 0x10, 0x19, 0x23, 0xff, 0x10, 0x19, 0x24, 0xff, 0x10, 0x1a, 0x25, 0xff, 0x11, 0x1a, 0x26, 0xff, 0x11, 0x1b, 0x27, 0xff, 0x11, 0x1b, 0x26, 0xff, 0x11, 0x1b, 0x27, 0xff, 0x13, 0x1b, 0x27, 0xff, 0x10, 0x1b, 0x26, 0xff, 0x12, 0x1b, 0x27, 0xff, 0x11, 0x1b, 0x27, 0xff, 0x12, 0x1a, 0x27, 0xff, 0x11, 0x1c, 0x25, 0xff, 0x10, 0x1b, 0x25, 0xff, + 0x1d, 0x69, 0x48, 0xff, 0x21, 0x66, 0x49, 0xff, 0x21, 0x69, 0x4d, 0xff, 0x2b, 0x78, 0x62, 0xff, 0x4d, 0x81, 0x7d, 0xff, 0x3f, 0x69, 0x69, 0xff, 0x2e, 0x55, 0x58, 0xff, 0x2d, 0x4d, 0x56, 0xff, 0x32, 0x5f, 0x5b, 0xff, 0x3f, 0x7f, 0x6e, 0xff, 0x37, 0x78, 0x69, 0xff, 0x30, 0x67, 0x63, 0xff, 0x2f, 0x5d, 0x65, 0xff, 0x2f, 0x57, 0x62, 0xff, 0x28, 0x47, 0x53, 0xff, 0x1f, 0x39, 0x43, 0xff, 0x1f, 0x40, 0x42, 0xff, 0x26, 0x58, 0x50, 0xff, 0x31, 0x74, 0x61, 0xff, 0x3a, 0x8a, 0x6e, 0xff, 0x49, 0x95, 0x75, 0xff, 0x38, 0x74, 0x5a, 0xff, 0x18, 0x2e, 0x27, 0xff, 0x16, 0x24, 0x24, 0xff, 0x1b, 0x28, 0x28, 0xff, 0x15, 0x21, 0x22, 0xff, 0x18, 0x28, 0x2b, 0xff, 0x1a, 0x2b, 0x2e, 0xff, 0x1a, 0x2c, 0x32, 0xff, 0x21, 0x36, 0x40, 0xff, 0x26, 0x3d, 0x51, 0xff, 0x22, 0x3d, 0x4d, 0xff, 0x1f, 0x3e, 0x48, 0xff, 0x26, 0x4b, 0x61, 0xff, 0x35, 0x60, 0x81, 0xff, 0x49, 0x73, 0x92, 0xff, 0x52, 0x76, 0x90, 0xff, 0x45, 0x65, 0x80, 0xff, 0x3a, 0x5d, 0x7c, 0xff, 0x3f, 0x63, 0x8a, 0xff, 0x17, 0x1a, 0xc5, 0xff, 0x14, 0x16, 0xbe, 0xff, 0x12, 0x14, 0xb6, 0xff, 0x18, 0x19, 0xc1, 0xff, 0x22, 0x23, 0xd2, 0xff, 0x2f, 0x2e, 0xf4, 0xff, 0x35, 0x32, 0xff, 0xff, 0x1f, 0x20, 0xd9, 0xff, 0x4f, 0x52, 0xec, 0xff, 0x87, 0xa4, 0xff, 0xff, 0x54, 0x60, 0xf9, 0xff, 0x1c, 0x1d, 0xd0, 0xff, 0x18, 0x18, 0xca, 0xff, 0x19, 0x19, 0xc9, 0xff, 0x3b, 0x38, 0xe7, 0xff, 0x34, 0x30, 0xf2, 0xff, 0x66, 0x98, 0xd8, 0xff, 0x2e, 0x32, 0xf5, 0xff, 0x4a, 0x4f, 0xf9, 0xff, 0x5a, 0x67, 0xff, 0xff, 0x7a, 0xd4, 0xca, 0xff, 0x64, 0xd3, 0xa6, 0xff, 0x50, 0xbe, 0x92, 0xff, 0x54, 0xb7, 0x8d, 0xff, 0x4e, 0x99, 0xb8, 0xff, 0x34, 0x3c, 0xfb, 0xff, 0x20, 0x1e, 0xe8, 0xff, 0x19, 0x1a, 0xd0, 0xff, 0x1e, 0x20, 0xd4, 0xff, 0x1f, 0x20, 0xd5, 0xff, 0x35, 0x4e, 0xde, 0xff, 0x5a, 0xa9, 0x93, 0xff, 0x61, 0x9c, 0x9d, 0xff, 0x5c, 0x88, 0x9c, 0xff, 0x55, 0x7d, 0x94, 0xff, 0x54, 0x79, 0x98, 0xff, 0x3c, 0x5f, 0x80, 0xff, 0x1a, 0x2a, 0x3c, 0xff, 0x0c, 0x0f, 0x12, 0xff, 0x0d, 0x10, 0x14, 0xff, 0x0d, 0x10, 0x14, 0xff, 0x0e, 0x11, 0x15, 0xff, 0x0d, 0x11, 0x15, 0xff, 0x0e, 0x12, 0x17, 0xff, 0x0e, 0x13, 0x18, 0xff, 0x0e, 0x13, 0x19, 0xff, 0x0e, 0x13, 0x1b, 0xff, 0x0f, 0x14, 0x1b, 0xff, 0x0e, 0x14, 0x1c, 0xff, 0x0f, 0x15, 0x1c, 0xff, 0x0f, 0x16, 0x1e, 0xff, 0x0e, 0x16, 0x1f, 0xff, 0x0e, 0x16, 0x1f, 0xff, 0x0e, 0x17, 0x1f, 0xff, 0x0f, 0x16, 0x1f, 0xff, 0x0f, 0x17, 0x1e, 0xff, 0x0f, 0x17, 0x1f, 0xff, 0x0f, 0x16, 0x1e, 0xff, 0x0e, 0x16, 0x1e, 0xff, 0x0e, 0x16, 0x1e, 0xff, + 0x26, 0x6e, 0x4e, 0xff, 0x25, 0x69, 0x4d, 0xff, 0x25, 0x6e, 0x52, 0xff, 0x20, 0x75, 0x55, 0xff, 0x2b, 0x76, 0x61, 0xff, 0x28, 0x6b, 0x57, 0xff, 0x27, 0x65, 0x52, 0xff, 0x26, 0x60, 0x52, 0xff, 0x2a, 0x6a, 0x58, 0xff, 0x26, 0x74, 0x5b, 0xff, 0x1f, 0x73, 0x5a, 0xff, 0x21, 0x6c, 0x59, 0xff, 0x24, 0x66, 0x59, 0xff, 0x28, 0x61, 0x5b, 0xff, 0x25, 0x49, 0x4e, 0xff, 0x25, 0x46, 0x4b, 0xff, 0x2d, 0x65, 0x5b, 0xff, 0x33, 0x7d, 0x64, 0xff, 0x39, 0x8c, 0x6b, 0xff, 0x36, 0x8b, 0x6b, 0xff, 0x32, 0x7f, 0x62, 0xff, 0x21, 0x51, 0x44, 0xff, 0x17, 0x27, 0x26, 0xff, 0x17, 0x25, 0x26, 0xff, 0x17, 0x26, 0x26, 0xff, 0x17, 0x2a, 0x2d, 0xff, 0x2a, 0x4c, 0x52, 0xff, 0x2e, 0x5d, 0x65, 0xff, 0x2b, 0x54, 0x5e, 0xff, 0x29, 0x47, 0x59, 0xff, 0x2e, 0x4b, 0x5f, 0xff, 0x2e, 0x4e, 0x62, 0xff, 0x30, 0x4e, 0x64, 0xff, 0x30, 0x56, 0x6f, 0xff, 0x51, 0x7f, 0x9d, 0xff, 0x63, 0x89, 0xac, 0xff, 0x56, 0x79, 0x94, 0xff, 0x42, 0x62, 0x79, 0xff, 0x3e, 0x5c, 0x7d, 0xff, 0x42, 0x62, 0x83, 0xff, 0x1e, 0x25, 0xbd, 0xff, 0x28, 0x2a, 0xe0, 0xff, 0x2e, 0x30, 0xe2, 0xff, 0x1c, 0x1f, 0xc3, 0xff, 0x1a, 0x1a, 0xc8, 0xff, 0x29, 0x29, 0xe2, 0xff, 0x2e, 0x2e, 0xf9, 0xff, 0x1a, 0x1b, 0xcf, 0xff, 0x19, 0x1a, 0xc8, 0xff, 0x4c, 0x5b, 0xf3, 0xff, 0x5e, 0x7a, 0xff, 0xff, 0x40, 0x4b, 0xfd, 0xff, 0x17, 0x17, 0xc9, 0xff, 0x16, 0x16, 0xc5, 0xff, 0x40, 0x3f, 0xeb, 0xff, 0x30, 0x2d, 0xef, 0xff, 0x4b, 0x66, 0xe9, 0xff, 0x43, 0x47, 0xfa, 0xff, 0x20, 0x1e, 0xeb, 0xff, 0x20, 0x20, 0xe4, 0xff, 0x41, 0x62, 0xf0, 0xff, 0x5f, 0xd0, 0xa0, 0xff, 0x45, 0xb7, 0x8b, 0xff, 0x47, 0x98, 0xb7, 0xff, 0x27, 0x25, 0xf8, 0xff, 0x21, 0x21, 0xe0, 0xff, 0x1a, 0x1b, 0xd0, 0xff, 0x14, 0x15, 0xbe, 0xff, 0x16, 0x16, 0xc1, 0xff, 0x24, 0x22, 0xdc, 0xff, 0x31, 0x44, 0xe1, 0xff, 0x57, 0xa3, 0x8b, 0xff, 0x74, 0xad, 0xb5, 0xff, 0x76, 0x9e, 0xba, 0xff, 0x56, 0x7b, 0x97, 0xff, 0x42, 0x63, 0x81, 0xff, 0x29, 0x41, 0x5f, 0xff, 0x13, 0x1d, 0x27, 0xff, 0x0d, 0x10, 0x13, 0xff, 0x0d, 0x11, 0x15, 0xff, 0x0e, 0x11, 0x15, 0xff, 0x0d, 0x11, 0x16, 0xff, 0x0e, 0x11, 0x16, 0xff, 0x0e, 0x12, 0x17, 0xff, 0x0d, 0x12, 0x18, 0xff, 0x0e, 0x13, 0x18, 0xff, 0x0e, 0x14, 0x1b, 0xff, 0x0d, 0x13, 0x1a, 0xff, 0x0e, 0x14, 0x1b, 0xff, 0x0d, 0x14, 0x1b, 0xff, 0x0e, 0x15, 0x1c, 0xff, 0x0e, 0x15, 0x1c, 0xff, 0x0e, 0x15, 0x1c, 0xff, 0x0f, 0x15, 0x1d, 0xff, 0x0e, 0x15, 0x1d, 0xff, 0x0e, 0x15, 0x1e, 0xff, 0x0e, 0x15, 0x1d, 0xff, 0x0e, 0x15, 0x1e, 0xff, 0x0f, 0x15, 0x1e, 0xff, 0x0f, 0x16, 0x1e, 0xff, + 0x26, 0x6e, 0x4d, 0xff, 0x24, 0x6b, 0x4d, 0xff, 0x27, 0x74, 0x56, 0xff, 0x26, 0x80, 0x5f, 0xff, 0x2a, 0x7a, 0x61, 0xff, 0x22, 0x6b, 0x4e, 0xff, 0x23, 0x6e, 0x50, 0xff, 0x22, 0x62, 0x4a, 0xff, 0x1b, 0x4e, 0x3f, 0xff, 0x15, 0x4b, 0x38, 0xff, 0x14, 0x54, 0x3e, 0xff, 0x15, 0x5b, 0x44, 0xff, 0x1a, 0x5c, 0x49, 0xff, 0x22, 0x5b, 0x4e, 0xff, 0x26, 0x53, 0x52, 0xff, 0x2a, 0x57, 0x59, 0xff, 0x35, 0x73, 0x65, 0xff, 0x3a, 0x84, 0x69, 0xff, 0x3b, 0x89, 0x68, 0xff, 0x38, 0x84, 0x67, 0xff, 0x2e, 0x71, 0x61, 0xff, 0x1e, 0x3e, 0x41, 0xff, 0x19, 0x25, 0x2b, 0xff, 0x25, 0x3c, 0x48, 0xff, 0x33, 0x5a, 0x6b, 0xff, 0x3e, 0x6e, 0x7e, 0xff, 0x4f, 0x85, 0x93, 0xff, 0x56, 0x8b, 0x9b, 0xff, 0x44, 0x77, 0x8a, 0xff, 0x35, 0x58, 0x6e, 0xff, 0x36, 0x53, 0x6d, 0xff, 0x3b, 0x5a, 0x74, 0xff, 0x3f, 0x5c, 0x77, 0xff, 0x41, 0x63, 0x71, 0xff, 0x48, 0x52, 0xe7, 0xff, 0x50, 0x68, 0xd3, 0xff, 0x45, 0x67, 0x8c, 0xff, 0x37, 0x55, 0x6f, 0xff, 0x36, 0x55, 0x73, 0xff, 0x3b, 0x5f, 0x7c, 0xff, 0x2a, 0x38, 0xaf, 0xff, 0x24, 0x25, 0xea, 0xff, 0x1f, 0x20, 0xde, 0xff, 0x47, 0x4e, 0xf4, 0xff, 0x57, 0x6b, 0xf4, 0xff, 0x20, 0x1f, 0xd5, 0xff, 0x2d, 0x2a, 0xee, 0xff, 0x19, 0x19, 0xca, 0xff, 0x18, 0x1a, 0xc3, 0xff, 0x14, 0x14, 0xba, 0xff, 0x33, 0x46, 0xf1, 0xff, 0x44, 0x58, 0xff, 0xff, 0x25, 0x29, 0xe3, 0xff, 0x14, 0x15, 0xc2, 0xff, 0x3b, 0x3a, 0xe7, 0xff, 0x38, 0x36, 0xf4, 0xff, 0x2e, 0x2f, 0xf9, 0xff, 0x1f, 0x1e, 0xde, 0xff, 0x1c, 0x1c, 0xd7, 0xff, 0x1b, 0x1d, 0xd4, 0xff, 0x22, 0x1f, 0xed, 0xff, 0x45, 0xa1, 0xaf, 0xff, 0x44, 0xb4, 0x95, 0xff, 0x29, 0x2f, 0xf2, 0xff, 0x22, 0x22, 0xe1, 0xff, 0x1b, 0x1d, 0xd5, 0xff, 0x14, 0x14, 0xbd, 0xff, 0x14, 0x14, 0xbc, 0xff, 0x14, 0x16, 0xc0, 0xff, 0x2a, 0x2b, 0xe0, 0xff, 0x3b, 0x51, 0xe4, 0xff, 0x4c, 0x96, 0x7e, 0xff, 0x62, 0x99, 0xa2, 0xff, 0x60, 0x87, 0xa8, 0xff, 0x3e, 0x5f, 0x7c, 0xff, 0x2b, 0x46, 0x5f, 0xff, 0x1c, 0x2c, 0x56, 0xff, 0x14, 0x1c, 0x42, 0xff, 0x0e, 0x11, 0x13, 0xff, 0x0d, 0x11, 0x16, 0xff, 0x0e, 0x12, 0x17, 0xff, 0x0e, 0x11, 0x16, 0xff, 0x0e, 0x12, 0x17, 0xff, 0x0e, 0x12, 0x18, 0xff, 0x0f, 0x12, 0x1a, 0xff, 0x0f, 0x13, 0x1a, 0xff, 0x0e, 0x14, 0x1b, 0xff, 0x0e, 0x14, 0x1b, 0xff, 0x0f, 0x15, 0x1d, 0xff, 0x0e, 0x15, 0x1e, 0xff, 0x0e, 0x15, 0x1d, 0xff, 0x0f, 0x16, 0x1e, 0xff, 0x0e, 0x15, 0x1e, 0xff, 0x0f, 0x15, 0x1f, 0xff, 0x0f, 0x16, 0x1f, 0xff, 0x0f, 0x16, 0x1f, 0xff, 0x0f, 0x15, 0x20, 0xff, 0x10, 0x16, 0x20, 0xff, 0x0f, 0x17, 0x1f, 0xff, 0x0f, 0x16, 0x20, 0xff, + 0x20, 0x6d, 0x4b, 0xff, 0x24, 0x6d, 0x4d, 0xff, 0x29, 0x7a, 0x5b, 0xff, 0x37, 0x90, 0x6f, 0xff, 0x2e, 0x7e, 0x65, 0xff, 0x1e, 0x66, 0x4b, 0xff, 0x1d, 0x5b, 0x45, 0xff, 0x17, 0x3c, 0x30, 0xff, 0x11, 0x24, 0x21, 0xff, 0x13, 0x28, 0x26, 0xff, 0x15, 0x34, 0x2e, 0xff, 0x17, 0x3e, 0x35, 0xff, 0x1a, 0x46, 0x3a, 0xff, 0x1c, 0x4d, 0x3f, 0xff, 0x2a, 0x60, 0x57, 0xff, 0x2e, 0x68, 0x5f, 0xff, 0x36, 0x7a, 0x69, 0xff, 0x44, 0x88, 0x72, 0xff, 0x45, 0x89, 0x70, 0xff, 0x3e, 0x81, 0x6a, 0xff, 0x2b, 0x60, 0x59, 0xff, 0x1b, 0x31, 0x3a, 0xff, 0x13, 0x20, 0x25, 0xff, 0x29, 0x44, 0x55, 0xff, 0x35, 0x63, 0x79, 0xff, 0x3b, 0x70, 0x82, 0xff, 0x3f, 0x75, 0x85, 0xff, 0x40, 0x71, 0x84, 0xff, 0x3d, 0x64, 0x7b, 0xff, 0x35, 0x54, 0x6d, 0xff, 0x36, 0x55, 0x6e, 0xff, 0x40, 0x5d, 0x75, 0xff, 0x42, 0x5e, 0x7b, 0xff, 0x37, 0x3c, 0xef, 0xff, 0x1b, 0x1c, 0xd5, 0xff, 0x1b, 0x1c, 0xd9, 0xff, 0x29, 0x28, 0xf4, 0xff, 0x39, 0x46, 0xcc, 0xff, 0x3c, 0x5d, 0x85, 0xff, 0x47, 0x6e, 0x93, 0xff, 0x40, 0x5c, 0xa1, 0xff, 0x1e, 0x1d, 0xde, 0xff, 0x1a, 0x1c, 0xd1, 0xff, 0x18, 0x1b, 0xcd, 0xff, 0x35, 0x38, 0xe6, 0xff, 0x56, 0x66, 0xfa, 0xff, 0x29, 0x27, 0xe2, 0xff, 0x17, 0x18, 0xc7, 0xff, 0x15, 0x16, 0xbc, 0xff, 0x13, 0x14, 0xb5, 0xff, 0x16, 0x17, 0xbc, 0xff, 0x36, 0x46, 0xf8, 0xff, 0x32, 0x3b, 0xf3, 0xff, 0x16, 0x17, 0xc6, 0xff, 0x32, 0x31, 0xdf, 0xff, 0x33, 0x33, 0xfe, 0xff, 0x21, 0x22, 0xe1, 0xff, 0x19, 0x1a, 0xd1, 0xff, 0x15, 0x17, 0xc4, 0xff, 0x17, 0x18, 0xc6, 0xff, 0x22, 0x20, 0xe4, 0xff, 0x37, 0x81, 0xb2, 0xff, 0x34, 0x61, 0xd8, 0xff, 0x22, 0x21, 0xe3, 0xff, 0x1e, 0x1f, 0xd7, 0xff, 0x18, 0x1a, 0xce, 0xff, 0x12, 0x13, 0xb7, 0xff, 0x14, 0x15, 0xbf, 0xff, 0x18, 0x18, 0xc4, 0xff, 0x38, 0x36, 0xee, 0xff, 0x4e, 0x69, 0xea, 0xff, 0x3d, 0x87, 0x6f, 0xff, 0x40, 0x77, 0x79, 0xff, 0x34, 0x57, 0x74, 0xff, 0x33, 0x44, 0xb1, 0xff, 0x35, 0x39, 0xf4, 0xff, 0x3e, 0x3f, 0xff, 0xff, 0x30, 0x2f, 0xfa, 0xff, 0x1b, 0x20, 0x87, 0xff, 0x0d, 0x11, 0x12, 0xff, 0x0e, 0x12, 0x19, 0xff, 0x0d, 0x13, 0x19, 0xff, 0x0e, 0x12, 0x19, 0xff, 0x0d, 0x13, 0x1a, 0xff, 0x0d, 0x13, 0x1b, 0xff, 0x0e, 0x14, 0x1c, 0xff, 0x0e, 0x14, 0x1e, 0xff, 0x0e, 0x15, 0x1d, 0xff, 0x0f, 0x15, 0x1f, 0xff, 0x0e, 0x15, 0x1e, 0xff, 0x0f, 0x16, 0x20, 0xff, 0x0f, 0x16, 0x1f, 0xff, 0x0f, 0x16, 0x1f, 0xff, 0x10, 0x17, 0x20, 0xff, 0x0f, 0x17, 0x20, 0xff, 0x10, 0x17, 0x21, 0xff, 0x0e, 0x17, 0x21, 0xff, 0x0f, 0x18, 0x22, 0xff, 0x0f, 0x17, 0x21, 0xff, 0x0f, 0x18, 0x22, 0xff, + 0x24, 0x6f, 0x4f, 0xff, 0x23, 0x6c, 0x4c, 0xff, 0x2b, 0x7f, 0x60, 0xff, 0x34, 0x8e, 0x6e, 0xff, 0x22, 0x66, 0x50, 0xff, 0x1a, 0x46, 0x3b, 0xff, 0x15, 0x35, 0x2d, 0xff, 0x10, 0x1f, 0x1f, 0xff, 0x11, 0x1e, 0x20, 0xff, 0x13, 0x23, 0x2b, 0xff, 0x17, 0x2a, 0x32, 0xff, 0x1b, 0x32, 0x36, 0xff, 0x1b, 0x3a, 0x35, 0xff, 0x20, 0x46, 0x3c, 0xff, 0x2c, 0x5d, 0x5c, 0xff, 0x32, 0x66, 0x65, 0xff, 0x35, 0x74, 0x69, 0xff, 0x39, 0x7b, 0x6a, 0xff, 0x34, 0x6f, 0x5d, 0xff, 0x26, 0x53, 0x43, 0xff, 0x1d, 0x37, 0x32, 0xff, 0x18, 0x24, 0x2b, 0xff, 0x13, 0x1d, 0x22, 0xff, 0x18, 0x28, 0x2e, 0xff, 0x1d, 0x35, 0x3d, 0xff, 0x1e, 0x39, 0x43, 0xff, 0x21, 0x39, 0x45, 0xff, 0x28, 0x3f, 0x52, 0xff, 0x30, 0x4d, 0x65, 0xff, 0x35, 0x54, 0x6b, 0xff, 0x3a, 0x5a, 0x75, 0xff, 0x40, 0x61, 0x7b, 0xff, 0x44, 0x62, 0x84, 0xff, 0x1b, 0x1f, 0xc7, 0xff, 0x30, 0x2f, 0xe7, 0xff, 0x1d, 0x1e, 0xd4, 0xff, 0x17, 0x18, 0xc7, 0xff, 0x1c, 0x1e, 0xd5, 0xff, 0x35, 0x39, 0xed, 0xff, 0x3d, 0x57, 0x90, 0xff, 0x41, 0x60, 0x76, 0xff, 0x22, 0x26, 0xce, 0xff, 0x18, 0x1b, 0xcb, 0xff, 0x18, 0x19, 0xc2, 0xff, 0x15, 0x18, 0xc5, 0xff, 0x2b, 0x2d, 0xdc, 0xff, 0x44, 0x52, 0xfb, 0xff, 0x18, 0x16, 0xc7, 0xff, 0x14, 0x14, 0xb6, 0xff, 0x14, 0x14, 0xb3, 0xff, 0x0f, 0x0f, 0xa7, 0xff, 0x1d, 0x22, 0xd3, 0xff, 0x34, 0x40, 0xf7, 0xff, 0x20, 0x22, 0xd6, 0xff, 0x2d, 0x2a, 0xe3, 0xff, 0x25, 0x26, 0xf0, 0xff, 0x17, 0x17, 0xd0, 0xff, 0x13, 0x13, 0xc3, 0xff, 0x11, 0x12, 0xb5, 0xff, 0x15, 0x15, 0xbe, 0xff, 0x17, 0x16, 0xca, 0xff, 0x30, 0x69, 0xc0, 0xff, 0x22, 0x21, 0xe7, 0xff, 0x20, 0x20, 0xdc, 0xff, 0x1c, 0x1c, 0xd5, 0xff, 0x15, 0x16, 0xc3, 0xff, 0x12, 0x13, 0xb7, 0xff, 0x14, 0x15, 0xbe, 0xff, 0x2c, 0x2b, 0xde, 0xff, 0x33, 0x32, 0xec, 0xff, 0x3c, 0x4b, 0xff, 0xff, 0x3a, 0x7b, 0x83, 0xff, 0x32, 0x68, 0x6b, 0xff, 0x35, 0x3b, 0xe8, 0xff, 0x29, 0x28, 0xf9, 0xff, 0x25, 0x26, 0xf0, 0xff, 0x22, 0x22, 0xe7, 0xff, 0x21, 0x20, 0xde, 0xff, 0x24, 0x24, 0xe3, 0xff, 0x0b, 0x10, 0x1f, 0xff, 0x0e, 0x13, 0x1b, 0xff, 0x0e, 0x13, 0x1a, 0xff, 0x0e, 0x14, 0x1c, 0xff, 0x0e, 0x14, 0x1c, 0xff, 0x0e, 0x15, 0x1c, 0xff, 0x0e, 0x15, 0x1e, 0xff, 0x0e, 0x16, 0x1d, 0xff, 0x0f, 0x15, 0x1f, 0xff, 0x10, 0x16, 0x20, 0xff, 0x0f, 0x17, 0x20, 0xff, 0x0f, 0x17, 0x20, 0xff, 0x0f, 0x18, 0x20, 0xff, 0x0f, 0x18, 0x22, 0xff, 0x10, 0x17, 0x21, 0xff, 0x0f, 0x18, 0x21, 0xff, 0x0f, 0x18, 0x22, 0xff, 0x10, 0x19, 0x22, 0xff, 0x10, 0x19, 0x23, 0xff, 0x10, 0x19, 0x24, 0xff, 0x0f, 0x1a, 0x23, 0xff, + 0x21, 0x6f, 0x4e, 0xff, 0x22, 0x6e, 0x4f, 0xff, 0x26, 0x79, 0x59, 0xff, 0x25, 0x73, 0x5b, 0xff, 0x19, 0x3f, 0x39, 0xff, 0x14, 0x28, 0x2b, 0xff, 0x10, 0x1f, 0x23, 0xff, 0x11, 0x1d, 0x22, 0xff, 0x12, 0x1e, 0x22, 0xff, 0x13, 0x23, 0x2a, 0xff, 0x17, 0x29, 0x32, 0xff, 0x1b, 0x32, 0x38, 0xff, 0x1e, 0x3a, 0x3a, 0xff, 0x23, 0x40, 0x42, 0xff, 0x27, 0x4b, 0x56, 0xff, 0x2d, 0x53, 0x68, 0xff, 0x33, 0x63, 0x78, 0xff, 0x38, 0x6b, 0x82, 0xff, 0x34, 0x64, 0x7e, 0xff, 0x2e, 0x55, 0x70, 0xff, 0x2c, 0x4c, 0x67, 0xff, 0x28, 0x43, 0x5a, 0xff, 0x1d, 0x32, 0x43, 0xff, 0x1f, 0x32, 0x40, 0xff, 0x1d, 0x2f, 0x3c, 0xff, 0x1f, 0x38, 0x48, 0xff, 0x1f, 0x35, 0x43, 0xff, 0x29, 0x42, 0x55, 0xff, 0x39, 0x56, 0x70, 0xff, 0x39, 0x5a, 0x76, 0xff, 0x3f, 0x61, 0x80, 0xff, 0x42, 0x62, 0x7f, 0xff, 0x43, 0x5f, 0x78, 0xff, 0x1d, 0x22, 0xbf, 0xff, 0x2a, 0x2b, 0xde, 0xff, 0x1e, 0x1e, 0xd8, 0xff, 0x20, 0x20, 0xd8, 0xff, 0x16, 0x17, 0xc2, 0xff, 0x1b, 0x1b, 0xce, 0xff, 0x31, 0x31, 0xe7, 0xff, 0x37, 0x4a, 0x87, 0xff, 0x34, 0x4a, 0xa0, 0xff, 0x12, 0x13, 0xc3, 0xff, 0x17, 0x18, 0xc2, 0xff, 0x16, 0x17, 0xc2, 0xff, 0x14, 0x17, 0xbd, 0xff, 0x2b, 0x2d, 0xdf, 0xff, 0x27, 0x2f, 0xdf, 0xff, 0x12, 0x14, 0xb6, 0xff, 0x13, 0x14, 0xb1, 0xff, 0x0f, 0x10, 0xa2, 0xff, 0x13, 0x14, 0xae, 0xff, 0x2b, 0x33, 0xec, 0xff, 0x25, 0x2b, 0xe1, 0xff, 0x23, 0x22, 0xdf, 0xff, 0x2c, 0x2e, 0xec, 0xff, 0x61, 0x6e, 0xfb, 0xff, 0x64, 0x73, 0xfc, 0xff, 0x18, 0x1b, 0xc0, 0xff, 0x11, 0x14, 0xb5, 0xff, 0x10, 0x10, 0xaf, 0xff, 0x21, 0x25, 0xd4, 0xff, 0x21, 0x1f, 0xdf, 0xff, 0x1d, 0x1d, 0xd8, 0xff, 0x1b, 0x1c, 0xd3, 0xff, 0x12, 0x13, 0xba, 0xff, 0x12, 0x13, 0xb8, 0xff, 0x11, 0x13, 0xbc, 0xff, 0x48, 0x42, 0xfd, 0xff, 0x41, 0x3d, 0xfc, 0xff, 0x2a, 0x38, 0xef, 0xff, 0x33, 0x6e, 0xae, 0xff, 0x32, 0x3f, 0xe9, 0xff, 0x25, 0x23, 0xf0, 0xff, 0x24, 0x22, 0xe9, 0xff, 0x22, 0x21, 0xe6, 0xff, 0x20, 0x1e, 0xda, 0xff, 0x1e, 0x1e, 0xd7, 0xff, 0x24, 0x22, 0xe2, 0xff, 0x0f, 0x15, 0x4f, 0xff, 0x0e, 0x14, 0x1d, 0xff, 0x0d, 0x14, 0x1d, 0xff, 0x0e, 0x15, 0x1d, 0xff, 0x0e, 0x14, 0x1e, 0xff, 0x0e, 0x15, 0x1e, 0xff, 0x0f, 0x16, 0x1f, 0xff, 0x0f, 0x16, 0x1f, 0xff, 0x0f, 0x17, 0x1f, 0xff, 0x0f, 0x17, 0x20, 0xff, 0x10, 0x17, 0x22, 0xff, 0x0f, 0x18, 0x22, 0xff, 0x0f, 0x18, 0x22, 0xff, 0x0f, 0x18, 0x24, 0xff, 0x10, 0x19, 0x23, 0xff, 0x0f, 0x19, 0x24, 0xff, 0x0f, 0x19, 0x24, 0xff, 0x10, 0x19, 0x25, 0xff, 0x10, 0x19, 0x27, 0xff, 0x11, 0x1a, 0x26, 0xff, 0x10, 0x1a, 0x26, 0xff, + 0x23, 0x72, 0x51, 0xff, 0x23, 0x71, 0x51, 0xff, 0x25, 0x78, 0x57, 0xff, 0x26, 0x6e, 0x58, 0xff, 0x1b, 0x3c, 0x3d, 0xff, 0x12, 0x26, 0x2b, 0xff, 0x11, 0x20, 0x24, 0xff, 0x10, 0x20, 0x22, 0xff, 0x11, 0x1e, 0x23, 0xff, 0x12, 0x20, 0x25, 0xff, 0x11, 0x22, 0x27, 0xff, 0x13, 0x25, 0x2c, 0xff, 0x19, 0x2d, 0x33, 0xff, 0x1a, 0x30, 0x38, 0xff, 0x1d, 0x30, 0x40, 0xff, 0x21, 0x36, 0x4d, 0xff, 0x2b, 0x4c, 0x72, 0xff, 0x3b, 0x66, 0x96, 0xff, 0x4a, 0x77, 0xae, 0xff, 0x59, 0x86, 0xbe, 0xff, 0x5b, 0x88, 0xbc, 0xff, 0x56, 0x82, 0xb6, 0xff, 0x50, 0x7d, 0xb1, 0xff, 0x4b, 0x75, 0xa8, 0xff, 0x47, 0x74, 0x9f, 0xff, 0x51, 0x7f, 0xa6, 0xff, 0x56, 0x87, 0xae, 0xff, 0x58, 0x8a, 0xae, 0xff, 0x5c, 0x8b, 0xaf, 0xff, 0x57, 0x85, 0xa7, 0xff, 0x56, 0x86, 0xa8, 0xff, 0x4f, 0x7d, 0x9c, 0xff, 0x41, 0x66, 0x81, 0xff, 0x3a, 0x5e, 0xbc, 0xff, 0x30, 0x32, 0xe0, 0xff, 0x16, 0x18, 0xc4, 0xff, 0x18, 0x19, 0xca, 0xff, 0x1f, 0x1f, 0xd6, 0xff, 0x14, 0x16, 0xbc, 0xff, 0x1a, 0x1c, 0xcc, 0xff, 0x37, 0x38, 0xe7, 0xff, 0x55, 0x7b, 0xb1, 0xff, 0x15, 0x19, 0xb8, 0xff, 0x16, 0x17, 0xc0, 0xff, 0x18, 0x19, 0xc5, 0xff, 0x17, 0x19, 0xc3, 0xff, 0x15, 0x16, 0xbe, 0xff, 0x2f, 0x34, 0xe7, 0xff, 0x14, 0x15, 0xbc, 0xff, 0x12, 0x12, 0xac, 0xff, 0x10, 0x10, 0xa2, 0xff, 0x0d, 0x0e, 0x98, 0xff, 0x1c, 0x20, 0xd1, 0xff, 0x28, 0x30, 0xe7, 0xff, 0x20, 0x21, 0xdc, 0xff, 0x21, 0x1f, 0xdc, 0xff, 0x11, 0x11, 0xba, 0xff, 0x27, 0x27, 0xd1, 0xff, 0x49, 0x5c, 0xff, 0xff, 0x1a, 0x1d, 0xc3, 0xff, 0x0b, 0x0e, 0x94, 0xff, 0x18, 0x17, 0xc3, 0xff, 0x1f, 0x1e, 0xda, 0xff, 0x1c, 0x1d, 0xd6, 0xff, 0x19, 0x1a, 0xce, 0xff, 0x11, 0x12, 0xb7, 0xff, 0x11, 0x12, 0xb5, 0xff, 0x2f, 0x2d, 0xdd, 0xff, 0x4b, 0x43, 0xff, 0xff, 0x47, 0x42, 0xfd, 0xff, 0x2d, 0x38, 0xf6, 0xff, 0x2f, 0x40, 0xf2, 0xff, 0x23, 0x21, 0xec, 0xff, 0x22, 0x20, 0xe2, 0xff, 0x22, 0x21, 0xe5, 0xff, 0x1e, 0x1d, 0xd9, 0xff, 0x1e, 0x1d, 0xd7, 0xff, 0x1e, 0x1d, 0xd7, 0xff, 0x26, 0x23, 0xe6, 0xff, 0x11, 0x15, 0x68, 0xff, 0x0e, 0x14, 0x1e, 0xff, 0x0e, 0x14, 0x1e, 0xff, 0x0e, 0x14, 0x1e, 0xff, 0x0e, 0x15, 0x1e, 0xff, 0x0f, 0x15, 0x20, 0xff, 0x0e, 0x16, 0x1f, 0xff, 0x10, 0x16, 0x21, 0xff, 0x0f, 0x16, 0x22, 0xff, 0x0e, 0x17, 0x21, 0xff, 0x0f, 0x18, 0x22, 0xff, 0x10, 0x19, 0x23, 0xff, 0x0f, 0x18, 0x23, 0xff, 0x0f, 0x18, 0x24, 0xff, 0x10, 0x19, 0x25, 0xff, 0x0f, 0x19, 0x25, 0xff, 0x10, 0x19, 0x27, 0xff, 0x10, 0x19, 0x26, 0xff, 0x10, 0x1a, 0x27, 0xff, 0x11, 0x1a, 0x28, 0xff, 0x10, 0x1b, 0x27, 0xff, + 0x23, 0x73, 0x53, 0xff, 0x25, 0x74, 0x55, 0xff, 0x26, 0x7e, 0x5a, 0xff, 0x27, 0x74, 0x5b, 0xff, 0x1d, 0x41, 0x41, 0xff, 0x15, 0x28, 0x30, 0xff, 0x12, 0x22, 0x28, 0xff, 0x11, 0x22, 0x27, 0xff, 0x12, 0x23, 0x27, 0xff, 0x12, 0x22, 0x27, 0xff, 0x12, 0x22, 0x27, 0xff, 0x13, 0x22, 0x28, 0xff, 0x13, 0x24, 0x29, 0xff, 0x15, 0x25, 0x2e, 0xff, 0x14, 0x23, 0x2d, 0xff, 0x15, 0x24, 0x32, 0xff, 0x1d, 0x2e, 0x47, 0xff, 0x24, 0x44, 0x68, 0xff, 0x35, 0x60, 0x8b, 0xff, 0x49, 0x75, 0xa3, 0xff, 0x51, 0x80, 0xac, 0xff, 0x59, 0x88, 0xbc, 0xff, 0x5b, 0x8b, 0xc2, 0xff, 0x5f, 0x8b, 0xbf, 0xff, 0x5c, 0x8b, 0xbb, 0xff, 0x65, 0x96, 0xc5, 0xff, 0x67, 0x9b, 0xc7, 0xff, 0x69, 0x99, 0xc8, 0xff, 0x67, 0x9c, 0xc0, 0xff, 0x6f, 0xa5, 0xc7, 0xff, 0x79, 0xae, 0xd3, 0xff, 0x7a, 0xac, 0xd3, 0xff, 0x75, 0xa6, 0xcf, 0xff, 0x54, 0x7c, 0xe5, 0xff, 0x21, 0x24, 0xd7, 0xff, 0x15, 0x16, 0xbe, 0xff, 0x15, 0x15, 0xbc, 0xff, 0x23, 0x24, 0xdc, 0xff, 0x1b, 0x1b, 0xcb, 0xff, 0x13, 0x15, 0xb6, 0xff, 0x18, 0x1a, 0xc9, 0xff, 0x47, 0x4d, 0xeb, 0xff, 0x48, 0x67, 0xc9, 0xff, 0x11, 0x11, 0xb7, 0xff, 0x19, 0x19, 0xc4, 0xff, 0x17, 0x18, 0xc6, 0xff, 0x19, 0x1a, 0xc3, 0xff, 0x15, 0x17, 0xbf, 0xff, 0x2a, 0x2e, 0xdc, 0xff, 0x0f, 0x0f, 0xa8, 0xff, 0x0e, 0x11, 0x9f, 0xff, 0x0d, 0x11, 0x9d, 0xff, 0x14, 0x17, 0xb0, 0xff, 0x24, 0x28, 0xdf, 0xff, 0x1d, 0x1f, 0xd7, 0xff, 0x16, 0x16, 0xc1, 0xff, 0x11, 0x12, 0xb3, 0xff, 0x10, 0x11, 0xae, 0xff, 0x18, 0x17, 0xbf, 0xff, 0x3e, 0x46, 0xfa, 0xff, 0x0d, 0x10, 0x92, 0xff, 0x18, 0x18, 0xc8, 0xff, 0x1c, 0x1c, 0xd4, 0xff, 0x1b, 0x1c, 0xd4, 0xff, 0x16, 0x17, 0xc5, 0xff, 0x11, 0x12, 0xb5, 0xff, 0x13, 0x14, 0xb7, 0xff, 0x49, 0x43, 0xfe, 0xff, 0x56, 0x4f, 0xff, 0xff, 0x34, 0x30, 0xf8, 0xff, 0x34, 0x3f, 0xff, 0xff, 0x1d, 0x1c, 0xda, 0xff, 0x1d, 0x1d, 0xd9, 0xff, 0x20, 0x1f, 0xe0, 0xff, 0x1b, 0x19, 0xda, 0xff, 0x2e, 0x2f, 0xe6, 0xff, 0x2c, 0x32, 0xe6, 0xff, 0x20, 0x1c, 0xe1, 0xff, 0x2a, 0x28, 0xed, 0xff, 0x31, 0x33, 0xda, 0xff, 0x0d, 0x13, 0x1d, 0xff, 0x0e, 0x15, 0x1f, 0xff, 0x0f, 0x15, 0x20, 0xff, 0x0f, 0x15, 0x21, 0xff, 0x0f, 0x16, 0x20, 0xff, 0x0f, 0x16, 0x21, 0xff, 0x0e, 0x17, 0x21, 0xff, 0x0f, 0x18, 0x22, 0xff, 0x0f, 0x18, 0x23, 0xff, 0x10, 0x18, 0x24, 0xff, 0x0f, 0x18, 0x23, 0xff, 0x0f, 0x19, 0x24, 0xff, 0x10, 0x19, 0x25, 0xff, 0x10, 0x1a, 0x26, 0xff, 0x10, 0x1a, 0x27, 0xff, 0x11, 0x19, 0x28, 0xff, 0x11, 0x1a, 0x28, 0xff, 0x11, 0x1b, 0x28, 0xff, 0x11, 0x1a, 0x2a, 0xff, 0x11, 0x1a, 0x28, 0xff, + 0x22, 0x71, 0x54, 0xff, 0x26, 0x77, 0x59, 0xff, 0x25, 0x82, 0x5c, 0xff, 0x26, 0x78, 0x5e, 0xff, 0x21, 0x46, 0x4a, 0xff, 0x1a, 0x2e, 0x39, 0xff, 0x15, 0x26, 0x2b, 0xff, 0x14, 0x24, 0x2a, 0xff, 0x14, 0x24, 0x2b, 0xff, 0x14, 0x25, 0x2b, 0xff, 0x12, 0x24, 0x2b, 0xff, 0x13, 0x23, 0x2b, 0xff, 0x14, 0x25, 0x2b, 0xff, 0x14, 0x26, 0x2e, 0xff, 0x14, 0x25, 0x31, 0xff, 0x17, 0x26, 0x37, 0xff, 0x1d, 0x2f, 0x4a, 0xff, 0x23, 0x3a, 0x5d, 0xff, 0x24, 0x41, 0x63, 0xff, 0x25, 0x43, 0x5c, 0xff, 0x2a, 0x49, 0x61, 0xff, 0x2e, 0x52, 0x73, 0xff, 0x30, 0x58, 0x79, 0xff, 0x32, 0x5a, 0x7b, 0xff, 0x3b, 0x64, 0x89, 0xff, 0x41, 0x6c, 0x9a, 0xff, 0x41, 0x70, 0x9d, 0xff, 0x4a, 0x7a, 0xa1, 0xff, 0x4a, 0x59, 0xe5, 0xff, 0x51, 0x66, 0xea, 0xff, 0x6b, 0x8e, 0xe4, 0xff, 0x78, 0xa8, 0xdd, 0xff, 0x7b, 0xaf, 0xd8, 0xff, 0x67, 0x91, 0xdf, 0xff, 0x21, 0x22, 0xd7, 0xff, 0x13, 0x14, 0xba, 0xff, 0x12, 0x14, 0xb7, 0xff, 0x28, 0x26, 0xe0, 0xff, 0x2d, 0x2a, 0xe8, 0xff, 0x17, 0x18, 0xc2, 0xff, 0x13, 0x14, 0xb3, 0xff, 0x18, 0x18, 0xc8, 0xff, 0x62, 0x78, 0xf6, 0xff, 0x18, 0x20, 0xb2, 0xff, 0x17, 0x18, 0xc0, 0xff, 0x16, 0x17, 0xc4, 0xff, 0x17, 0x18, 0xc4, 0xff, 0x15, 0x16, 0xbe, 0xff, 0x1e, 0x1f, 0xcb, 0xff, 0x14, 0x14, 0xb1, 0xff, 0x0f, 0x11, 0x9f, 0xff, 0x0e, 0x10, 0x9e, 0xff, 0x0f, 0x11, 0x97, 0xff, 0x1c, 0x21, 0xd0, 0xff, 0x1e, 0x1e, 0xd4, 0xff, 0x15, 0x16, 0xbf, 0xff, 0x10, 0x10, 0xab, 0xff, 0x0f, 0x10, 0xa8, 0xff, 0x11, 0x11, 0xab, 0xff, 0x1c, 0x1b, 0xc7, 0xff, 0x22, 0x24, 0xd0, 0xff, 0x17, 0x16, 0xc4, 0xff, 0x19, 0x1b, 0xd0, 0xff, 0x1b, 0x1c, 0xd3, 0xff, 0x13, 0x14, 0xba, 0xff, 0x11, 0x11, 0xb0, 0xff, 0x2d, 0x2a, 0xd9, 0xff, 0x54, 0x4d, 0xff, 0xff, 0x3e, 0x37, 0xfc, 0xff, 0x35, 0x33, 0xf5, 0xff, 0x28, 0x2d, 0xea, 0xff, 0x1a, 0x19, 0xd1, 0xff, 0x1e, 0x1b, 0xdb, 0xff, 0x40, 0x4c, 0xf1, 0xff, 0x72, 0x9d, 0xff, 0xff, 0x91, 0xc1, 0xff, 0xff, 0xad, 0xd2, 0xff, 0xff, 0x89, 0x9d, 0xff, 0xff, 0x2e, 0x2a, 0xfc, 0xff, 0x42, 0x48, 0xfe, 0xff, 0x0c, 0x12, 0x33, 0xff, 0x0f, 0x15, 0x20, 0xff, 0x0f, 0x16, 0x21, 0xff, 0x10, 0x16, 0x23, 0xff, 0x10, 0x17, 0x22, 0xff, 0x0f, 0x17, 0x22, 0xff, 0x0f, 0x18, 0x23, 0xff, 0x0f, 0x18, 0x23, 0xff, 0x10, 0x18, 0x24, 0xff, 0x0f, 0x18, 0x23, 0xff, 0x10, 0x19, 0x25, 0xff, 0x10, 0x19, 0x26, 0xff, 0x11, 0x19, 0x26, 0xff, 0x10, 0x1a, 0x27, 0xff, 0x11, 0x1a, 0x27, 0xff, 0x11, 0x1b, 0x28, 0xff, 0x12, 0x1a, 0x29, 0xff, 0x11, 0x1b, 0x28, 0xff, 0x12, 0x1a, 0x2a, 0xff, 0x10, 0x1c, 0x29, 0xff, + 0x22, 0x6f, 0x51, 0xff, 0x28, 0x78, 0x58, 0xff, 0x2a, 0x84, 0x62, 0xff, 0x29, 0x73, 0x63, 0xff, 0x26, 0x49, 0x54, 0xff, 0x21, 0x36, 0x44, 0xff, 0x1a, 0x2c, 0x36, 0xff, 0x16, 0x26, 0x2c, 0xff, 0x14, 0x24, 0x2b, 0xff, 0x13, 0x25, 0x2b, 0xff, 0x14, 0x26, 0x2c, 0xff, 0x13, 0x25, 0x2c, 0xff, 0x14, 0x26, 0x2e, 0xff, 0x16, 0x28, 0x32, 0xff, 0x18, 0x29, 0x37, 0xff, 0x19, 0x2b, 0x3b, 0xff, 0x20, 0x36, 0x4c, 0xff, 0x21, 0x3e, 0x5b, 0xff, 0x1f, 0x3d, 0x55, 0xff, 0x1f, 0x33, 0x48, 0xff, 0x1d, 0x2f, 0x40, 0xff, 0x1c, 0x2e, 0x3e, 0xff, 0x1d, 0x2f, 0x40, 0xff, 0x1e, 0x31, 0x45, 0xff, 0x20, 0x34, 0x4b, 0xff, 0x23, 0x3c, 0x58, 0xff, 0x27, 0x46, 0x6c, 0xff, 0x35, 0x4c, 0xab, 0xff, 0x2a, 0x2e, 0xdf, 0xff, 0x32, 0x3b, 0xe2, 0xff, 0x38, 0x3f, 0xf2, 0xff, 0x31, 0x33, 0xf6, 0xff, 0x40, 0x48, 0xed, 0xff, 0x54, 0x71, 0xdc, 0xff, 0x29, 0x2f, 0xdd, 0xff, 0x16, 0x15, 0xbc, 0xff, 0x12, 0x12, 0xb4, 0xff, 0x1b, 0x1a, 0xc7, 0xff, 0x31, 0x2d, 0xf0, 0xff, 0x32, 0x2f, 0xe9, 0xff, 0x13, 0x14, 0xb9, 0xff, 0x12, 0x13, 0xaf, 0xff, 0x21, 0x21, 0xd3, 0xff, 0x4f, 0x62, 0xdd, 0xff, 0x10, 0x10, 0xb4, 0xff, 0x19, 0x19, 0xc3, 0xff, 0x15, 0x16, 0xbf, 0xff, 0x18, 0x19, 0xc2, 0xff, 0x14, 0x15, 0xbd, 0xff, 0x1b, 0x1b, 0xc0, 0xff, 0x10, 0x11, 0x9f, 0xff, 0x0e, 0x10, 0x9d, 0xff, 0x0d, 0x0f, 0x93, 0xff, 0x17, 0x1b, 0xbf, 0xff, 0x1a, 0x1b, 0xc9, 0xff, 0x15, 0x15, 0xbf, 0xff, 0x10, 0x0f, 0xa5, 0xff, 0x10, 0x10, 0xa5, 0xff, 0x10, 0x10, 0xa7, 0xff, 0x13, 0x14, 0xac, 0xff, 0x26, 0x25, 0xde, 0xff, 0x15, 0x14, 0xc0, 0xff, 0x19, 0x19, 0xce, 0xff, 0x18, 0x19, 0xca, 0xff, 0x11, 0x11, 0xb3, 0xff, 0x11, 0x12, 0xb0, 0xff, 0x47, 0x41, 0xff, 0xff, 0x52, 0x4c, 0xff, 0xff, 0x36, 0x30, 0xf1, 0xff, 0x41, 0x41, 0xff, 0xff, 0x18, 0x18, 0xcd, 0xff, 0x17, 0x16, 0xcf, 0xff, 0x65, 0x7a, 0xfb, 0xff, 0x6a, 0x86, 0xfe, 0xff, 0x52, 0x61, 0xf5, 0xff, 0x43, 0x46, 0xed, 0xff, 0x35, 0x33, 0xef, 0xff, 0x2a, 0x25, 0xf7, 0xff, 0x5d, 0x5b, 0xff, 0xff, 0x2d, 0x39, 0xf5, 0xff, 0x0c, 0x11, 0x35, 0xff, 0x0f, 0x15, 0x22, 0xff, 0x0e, 0x17, 0x22, 0xff, 0x0f, 0x17, 0x23, 0xff, 0x10, 0x17, 0x22, 0xff, 0x0f, 0x18, 0x24, 0xff, 0x10, 0x19, 0x25, 0xff, 0x10, 0x19, 0x24, 0xff, 0x10, 0x19, 0x25, 0xff, 0x10, 0x19, 0x26, 0xff, 0x10, 0x19, 0x27, 0xff, 0x10, 0x19, 0x28, 0xff, 0x10, 0x1a, 0x28, 0xff, 0x11, 0x1a, 0x28, 0xff, 0x12, 0x1b, 0x29, 0xff, 0x11, 0x1a, 0x28, 0xff, 0x11, 0x1b, 0x29, 0xff, 0x11, 0x1a, 0x28, 0xff, 0x10, 0x1b, 0x28, 0xff, 0x11, 0x1b, 0x29, 0xff, + 0x20, 0x71, 0x54, 0xff, 0x26, 0x78, 0x59, 0xff, 0x30, 0x81, 0x67, 0xff, 0x2c, 0x67, 0x63, 0xff, 0x28, 0x46, 0x59, 0xff, 0x22, 0x3c, 0x4a, 0xff, 0x1d, 0x32, 0x3d, 0xff, 0x18, 0x2a, 0x33, 0xff, 0x15, 0x25, 0x2b, 0xff, 0x14, 0x22, 0x29, 0xff, 0x13, 0x24, 0x28, 0xff, 0x12, 0x23, 0x28, 0xff, 0x12, 0x23, 0x2b, 0xff, 0x14, 0x26, 0x30, 0xff, 0x15, 0x28, 0x31, 0xff, 0x18, 0x2b, 0x36, 0xff, 0x1c, 0x31, 0x3f, 0xff, 0x21, 0x39, 0x4e, 0xff, 0x20, 0x3e, 0x57, 0xff, 0x20, 0x3b, 0x54, 0xff, 0x20, 0x39, 0x52, 0xff, 0x20, 0x37, 0x50, 0xff, 0x26, 0x36, 0x79, 0xff, 0x29, 0x36, 0x94, 0xff, 0x26, 0x33, 0x90, 0xff, 0x20, 0x2d, 0x71, 0xff, 0x1d, 0x2e, 0x51, 0xff, 0x1a, 0x32, 0x41, 0xff, 0x35, 0x39, 0xed, 0xff, 0x4c, 0x4c, 0xfc, 0xff, 0x57, 0x5d, 0xfb, 0xff, 0x56, 0x5d, 0xf9, 0xff, 0x59, 0x64, 0xfb, 0xff, 0x2e, 0x31, 0xeb, 0xff, 0x27, 0x27, 0xe7, 0xff, 0x1c, 0x1c, 0xc9, 0xff, 0x14, 0x15, 0xbb, 0xff, 0x12, 0x12, 0xb4, 0xff, 0x1f, 0x1e, 0xcf, 0xff, 0x30, 0x2e, 0xf3, 0xff, 0x31, 0x2e, 0xe6, 0xff, 0x11, 0x13, 0xb5, 0xff, 0x11, 0x12, 0xab, 0xff, 0x46, 0x4b, 0xf0, 0xff, 0x24, 0x29, 0xc1, 0xff, 0x15, 0x15, 0xba, 0xff, 0x15, 0x17, 0xc1, 0xff, 0x15, 0x16, 0xbf, 0xff, 0x16, 0x17, 0xc0, 0xff, 0x1b, 0x1c, 0xc6, 0xff, 0x0f, 0x11, 0xa5, 0xff, 0x0d, 0x10, 0x9a, 0xff, 0x0e, 0x10, 0x9d, 0xff, 0x13, 0x14, 0xa7, 0xff, 0x16, 0x18, 0xbe, 0xff, 0x15, 0x15, 0xc0, 0xff, 0x0f, 0x10, 0xa2, 0xff, 0x0f, 0x10, 0xa0, 0xff, 0x0f, 0x10, 0xa1, 0xff, 0x11, 0x13, 0xa3, 0xff, 0x22, 0x22, 0xd7, 0xff, 0x14, 0x14, 0xbf, 0xff, 0x18, 0x17, 0xc6, 0xff, 0x13, 0x14, 0xbc, 0xff, 0x0e, 0x10, 0xac, 0xff, 0x29, 0x26, 0xd6, 0xff, 0x4d, 0x46, 0xff, 0xff, 0x32, 0x2c, 0xf0, 0xff, 0x49, 0x42, 0xfd, 0xff, 0x25, 0x27, 0xe8, 0xff, 0x17, 0x18, 0xc7, 0xff, 0x3c, 0x3f, 0xf3, 0xff, 0x27, 0x23, 0xe2, 0xff, 0x1a, 0x19, 0xd7, 0xff, 0x1c, 0x1c, 0xd6, 0xff, 0x1f, 0x1f, 0xda, 0xff, 0x27, 0x25, 0xeb, 0xff, 0x63, 0x5e, 0xff, 0xff, 0x36, 0x37, 0xf3, 0xff, 0x24, 0x2d, 0xe2, 0xff, 0x0d, 0x13, 0x1f, 0xff, 0x0d, 0x13, 0x1a, 0xff, 0x17, 0x20, 0x3e, 0xff, 0x46, 0x58, 0x98, 0xff, 0x6a, 0x7b, 0xb7, 0xff, 0x41, 0x4c, 0x91, 0xff, 0x0f, 0x17, 0x2a, 0xff, 0x0f, 0x18, 0x24, 0xff, 0x0f, 0x18, 0x25, 0xff, 0x10, 0x19, 0x26, 0xff, 0x10, 0x19, 0x26, 0xff, 0x10, 0x1a, 0x27, 0xff, 0x11, 0x1a, 0x28, 0xff, 0x11, 0x1a, 0x29, 0xff, 0x11, 0x1a, 0x28, 0xff, 0x12, 0x1b, 0x29, 0xff, 0x11, 0x1a, 0x2a, 0xff, 0x10, 0x1b, 0x27, 0xff, 0x10, 0x1a, 0x27, 0xff, 0x10, 0x1b, 0x27, 0xff, + 0x2c, 0x77, 0x63, 0xff, 0x2c, 0x7d, 0x5f, 0xff, 0x32, 0x7b, 0x69, 0xff, 0x2c, 0x59, 0x64, 0xff, 0x28, 0x46, 0x5b, 0xff, 0x25, 0x40, 0x53, 0xff, 0x1e, 0x38, 0x46, 0xff, 0x19, 0x2f, 0x39, 0xff, 0x16, 0x28, 0x30, 0xff, 0x15, 0x24, 0x2a, 0xff, 0x13, 0x23, 0x27, 0xff, 0x14, 0x22, 0x26, 0xff, 0x12, 0x20, 0x25, 0xff, 0x12, 0x20, 0x26, 0xff, 0x13, 0x21, 0x27, 0xff, 0x13, 0x23, 0x2a, 0xff, 0x15, 0x26, 0x31, 0xff, 0x18, 0x2c, 0x38, 0xff, 0x1d, 0x32, 0x46, 0xff, 0x20, 0x3a, 0x4e, 0xff, 0x22, 0x3d, 0x57, 0xff, 0x24, 0x3d, 0x69, 0xff, 0x29, 0x27, 0xe4, 0xff, 0x22, 0x20, 0xd7, 0xff, 0x2f, 0x2c, 0xed, 0xff, 0x38, 0x36, 0xff, 0xff, 0x39, 0x37, 0xff, 0xff, 0x31, 0x36, 0xd4, 0xff, 0x21, 0x27, 0xc4, 0xff, 0x37, 0x3b, 0xe8, 0xff, 0x1d, 0x1d, 0xd5, 0xff, 0x1f, 0x1f, 0xdd, 0xff, 0x22, 0x20, 0xe3, 0xff, 0x4c, 0x4f, 0xf7, 0xff, 0x45, 0x52, 0xec, 0xff, 0x2a, 0x2b, 0xe1, 0xff, 0x25, 0x23, 0xd3, 0xff, 0x14, 0x15, 0xba, 0xff, 0x13, 0x14, 0xb9, 0xff, 0x22, 0x20, 0xd5, 0xff, 0x33, 0x30, 0xf2, 0xff, 0x2c, 0x2a, 0xe0, 0xff, 0x0e, 0x0f, 0xb0, 0xff, 0x3f, 0x4f, 0xe2, 0xff, 0x50, 0x57, 0xf8, 0xff, 0x14, 0x15, 0xba, 0xff, 0x17, 0x18, 0xbe, 0xff, 0x14, 0x16, 0xc1, 0xff, 0x18, 0x18, 0xc1, 0xff, 0x17, 0x18, 0xc2, 0xff, 0x15, 0x16, 0xb5, 0xff, 0x0d, 0x10, 0x99, 0xff, 0x0e, 0x11, 0xa1, 0xff, 0x0d, 0x0f, 0x97, 0xff, 0x18, 0x19, 0xbe, 0xff, 0x14, 0x16, 0xbf, 0xff, 0x0f, 0x10, 0xa5, 0xff, 0x0e, 0x10, 0x9e, 0xff, 0x0e, 0x10, 0x9e, 0xff, 0x11, 0x12, 0xa0, 0xff, 0x1f, 0x1f, 0xd0, 0xff, 0x15, 0x15, 0xc1, 0xff, 0x13, 0x14, 0xbc, 0xff, 0x11, 0x11, 0xb3, 0xff, 0x0f, 0x10, 0xa7, 0xff, 0x38, 0x33, 0xf3, 0xff, 0x44, 0x3e, 0xf7, 0xff, 0x3d, 0x37, 0xf2, 0xff, 0x36, 0x34, 0xfe, 0xff, 0x17, 0x18, 0xc7, 0xff, 0x1f, 0x1f, 0xd7, 0xff, 0x16, 0x16, 0xca, 0xff, 0x19, 0x1a, 0xd1, 0xff, 0x18, 0x19, 0xce, 0xff, 0x17, 0x19, 0xcd, 0xff, 0x1e, 0x1c, 0xd7, 0xff, 0x2e, 0x2b, 0xe1, 0xff, 0x1f, 0x1e, 0xd4, 0xff, 0x22, 0x28, 0xe0, 0xff, 0x14, 0x1c, 0x72, 0xff, 0x1b, 0x22, 0x63, 0xff, 0x36, 0x3a, 0xd6, 0xff, 0x3d, 0x40, 0xf3, 0xff, 0x35, 0x34, 0xdd, 0xff, 0x2c, 0x2c, 0xd7, 0xff, 0x2c, 0x2c, 0xd8, 0xff, 0x15, 0x1c, 0x74, 0xff, 0x0f, 0x19, 0x25, 0xff, 0x10, 0x19, 0x26, 0xff, 0x11, 0x19, 0x28, 0xff, 0x11, 0x1a, 0x27, 0xff, 0x11, 0x1a, 0x29, 0xff, 0x11, 0x1b, 0x29, 0xff, 0x12, 0x1a, 0x29, 0xff, 0x12, 0x1b, 0x29, 0xff, 0x11, 0x1b, 0x29, 0xff, 0x11, 0x1b, 0x29, 0xff, 0x11, 0x1a, 0x29, 0xff, 0x11, 0x1b, 0x27, 0xff, 0x10, 0x1b, 0x27, 0xff, + 0x2e, 0x80, 0x67, 0xff, 0x2f, 0x81, 0x65, 0xff, 0x38, 0x7c, 0x78, 0xff, 0x2f, 0x5d, 0x6b, 0xff, 0x2a, 0x48, 0x5e, 0xff, 0x26, 0x44, 0x54, 0xff, 0x1e, 0x3c, 0x48, 0xff, 0x1c, 0x33, 0x3e, 0xff, 0x18, 0x2b, 0x34, 0xff, 0x14, 0x27, 0x2e, 0xff, 0x14, 0x24, 0x2b, 0xff, 0x13, 0x24, 0x2a, 0xff, 0x13, 0x23, 0x28, 0xff, 0x12, 0x20, 0x27, 0xff, 0x12, 0x20, 0x26, 0xff, 0x12, 0x20, 0x27, 0xff, 0x12, 0x21, 0x28, 0xff, 0x13, 0x22, 0x29, 0xff, 0x14, 0x25, 0x2d, 0xff, 0x17, 0x2b, 0x36, 0xff, 0x1a, 0x2e, 0x3b, 0xff, 0x1f, 0x35, 0x6a, 0xff, 0x25, 0x27, 0xe0, 0xff, 0x1b, 0x1a, 0xcf, 0xff, 0x1c, 0x1c, 0xcf, 0xff, 0x1f, 0x1e, 0xd4, 0xff, 0x2b, 0x2a, 0xea, 0xff, 0x3c, 0x38, 0xfc, 0xff, 0x48, 0x44, 0xff, 0xff, 0x2c, 0x33, 0xea, 0xff, 0x17, 0x18, 0xc5, 0xff, 0x18, 0x19, 0xca, 0xff, 0x1b, 0x1a, 0xd1, 0xff, 0x17, 0x18, 0xca, 0xff, 0x1c, 0x1a, 0xcb, 0xff, 0x1e, 0x20, 0xce, 0xff, 0x49, 0x44, 0xff, 0xff, 0x2f, 0x2f, 0xdd, 0xff, 0x19, 0x18, 0xc6, 0xff, 0x16, 0x15, 0xc1, 0xff, 0x23, 0x20, 0xda, 0xff, 0x39, 0x34, 0xf7, 0xff, 0x30, 0x33, 0xe7, 0xff, 0x32, 0x33, 0xe1, 0xff, 0x10, 0x10, 0xb7, 0xff, 0x17, 0x17, 0xbf, 0xff, 0x12, 0x12, 0xb8, 0xff, 0x17, 0x18, 0xc3, 0xff, 0x14, 0x15, 0xbf, 0xff, 0x17, 0x17, 0xc1, 0xff, 0x1a, 0x1b, 0xc4, 0xff, 0x0d, 0x10, 0x9a, 0xff, 0x0e, 0x0f, 0xa2, 0xff, 0x0d, 0x0f, 0x9d, 0xff, 0x16, 0x19, 0xb9, 0xff, 0x14, 0x14, 0xbb, 0xff, 0x11, 0x12, 0xad, 0xff, 0x0e, 0x10, 0x9e, 0xff, 0x0e, 0x10, 0x9d, 0xff, 0x10, 0x12, 0x9d, 0xff, 0x1f, 0x1e, 0xcf, 0xff, 0x13, 0x13, 0xbb, 0xff, 0x13, 0x13, 0xb7, 0xff, 0x0f, 0x10, 0xad, 0xff, 0x16, 0x17, 0xb7, 0xff, 0x49, 0x42, 0xfe, 0xff, 0x2e, 0x29, 0xe3, 0xff, 0x40, 0x3a, 0xfe, 0xff, 0x24, 0x23, 0xe4, 0xff, 0x1d, 0x1c, 0xd4, 0xff, 0x11, 0x13, 0xb7, 0xff, 0x15, 0x17, 0xc2, 0xff, 0x15, 0x16, 0xc5, 0xff, 0x14, 0x15, 0xbf, 0xff, 0x19, 0x18, 0xc9, 0xff, 0x16, 0x16, 0xc0, 0xff, 0x0c, 0x0d, 0xa2, 0xff, 0x1f, 0x20, 0xd8, 0xff, 0x17, 0x1c, 0xad, 0xff, 0x15, 0x18, 0x9e, 0xff, 0x18, 0x1a, 0xce, 0xff, 0x17, 0x1a, 0xcd, 0xff, 0x13, 0x15, 0xbd, 0xff, 0x12, 0x15, 0xbc, 0xff, 0x11, 0x11, 0xb4, 0xff, 0x12, 0x16, 0xb5, 0xff, 0x10, 0x17, 0x2d, 0xff, 0x0f, 0x19, 0x25, 0xff, 0x10, 0x18, 0x26, 0xff, 0x11, 0x1a, 0x27, 0xff, 0x11, 0x1a, 0x28, 0xff, 0x12, 0x1b, 0x29, 0xff, 0x11, 0x1a, 0x29, 0xff, 0x12, 0x1b, 0x2a, 0xff, 0x11, 0x1a, 0x2a, 0xff, 0x11, 0x1a, 0x2b, 0xff, 0x11, 0x1b, 0x2a, 0xff, 0x11, 0x1a, 0x28, 0xff, 0x11, 0x1b, 0x27, 0xff, 0x11, 0x1a, 0x29, 0xff, + 0x32, 0x8a, 0x6c, 0xff, 0x2e, 0x85, 0x71, 0xff, 0x42, 0x7f, 0x8a, 0xff, 0x35, 0x62, 0x73, 0xff, 0x2a, 0x48, 0x5a, 0xff, 0x24, 0x42, 0x50, 0xff, 0x21, 0x3e, 0x4c, 0xff, 0x1c, 0x36, 0x42, 0xff, 0x18, 0x2e, 0x35, 0xff, 0x16, 0x2a, 0x2e, 0xff, 0x14, 0x27, 0x2c, 0xff, 0x14, 0x27, 0x2d, 0xff, 0x14, 0x26, 0x2e, 0xff, 0x14, 0x24, 0x2d, 0xff, 0x14, 0x23, 0x2b, 0xff, 0x13, 0x23, 0x29, 0xff, 0x12, 0x24, 0x2a, 0xff, 0x13, 0x21, 0x2a, 0xff, 0x13, 0x23, 0x2c, 0xff, 0x15, 0x24, 0x2d, 0xff, 0x15, 0x25, 0x30, 0xff, 0x14, 0x26, 0x2e, 0xff, 0x30, 0x34, 0xcf, 0xff, 0x23, 0x22, 0xdb, 0xff, 0x1c, 0x1b, 0xd3, 0xff, 0x22, 0x21, 0xdb, 0xff, 0x24, 0x22, 0xdd, 0xff, 0x1f, 0x1e, 0xd6, 0xff, 0x2a, 0x25, 0xe8, 0xff, 0x28, 0x30, 0xe3, 0xff, 0x17, 0x17, 0xc3, 0xff, 0x16, 0x17, 0xc2, 0xff, 0x16, 0x16, 0xc1, 0xff, 0x13, 0x14, 0xbb, 0xff, 0x12, 0x12, 0xb8, 0xff, 0x11, 0x11, 0xb3, 0xff, 0x2c, 0x2a, 0xd7, 0xff, 0x41, 0x3b, 0xfe, 0xff, 0x47, 0x40, 0xfe, 0xff, 0x18, 0x18, 0xc4, 0xff, 0x17, 0x18, 0xc6, 0xff, 0x25, 0x25, 0xe4, 0xff, 0x38, 0x35, 0xf7, 0xff, 0x15, 0x15, 0xc3, 0xff, 0x16, 0x17, 0xc6, 0xff, 0x0f, 0x0f, 0xb1, 0xff, 0x2e, 0x2e, 0xd9, 0xff, 0x16, 0x16, 0xbe, 0xff, 0x15, 0x16, 0xc2, 0xff, 0x17, 0x17, 0xc2, 0xff, 0x18, 0x1a, 0xc6, 0xff, 0x10, 0x12, 0xa6, 0xff, 0x0c, 0x10, 0x9e, 0xff, 0x0f, 0x10, 0xa0, 0xff, 0x13, 0x15, 0xad, 0xff, 0x15, 0x17, 0xbd, 0xff, 0x12, 0x13, 0xb2, 0xff, 0x0e, 0x10, 0x9d, 0xff, 0x0d, 0x10, 0x9c, 0xff, 0x10, 0x11, 0x9d, 0xff, 0x1c, 0x1e, 0xd0, 0xff, 0x12, 0x11, 0xb4, 0xff, 0x12, 0x12, 0xb4, 0xff, 0x10, 0x0f, 0xaa, 0xff, 0x23, 0x22, 0xd1, 0xff, 0x3c, 0x36, 0xf1, 0xff, 0x3b, 0x36, 0xef, 0xff, 0x2d, 0x2a, 0xef, 0xff, 0x1b, 0x1b, 0xd1, 0xff, 0x10, 0x11, 0xaf, 0xff, 0x0e, 0x0f, 0xa8, 0xff, 0x12, 0x13, 0xb8, 0xff, 0x11, 0x11, 0xb2, 0xff, 0x15, 0x15, 0xc0, 0xff, 0x12, 0x12, 0xaf, 0xff, 0x0b, 0x0e, 0x93, 0xff, 0x1b, 0x1c, 0xca, 0xff, 0x1e, 0x1f, 0xd5, 0xff, 0x11, 0x12, 0xad, 0xff, 0x0e, 0x11, 0xa2, 0xff, 0x15, 0x17, 0xbe, 0xff, 0x19, 0x19, 0xc0, 0xff, 0x0f, 0x11, 0xb1, 0xff, 0x0d, 0x0e, 0xa8, 0xff, 0x13, 0x17, 0xb5, 0xff, 0x0f, 0x17, 0x32, 0xff, 0x10, 0x18, 0x23, 0xff, 0x0f, 0x18, 0x24, 0xff, 0x10, 0x19, 0x25, 0xff, 0x10, 0x19, 0x24, 0xff, 0x10, 0x19, 0x26, 0xff, 0x10, 0x1a, 0x26, 0xff, 0x10, 0x19, 0x27, 0xff, 0x11, 0x1a, 0x28, 0xff, 0x10, 0x19, 0x27, 0xff, 0x10, 0x1a, 0x29, 0xff, 0x11, 0x1a, 0x28, 0xff, 0x10, 0x1a, 0x25, 0xff, 0x10, 0x1a, 0x24, 0xff, 0x11, 0x19, 0x27, 0xff, + 0x44, 0x90, 0x7d, 0xff, 0x3e, 0x87, 0x82, 0xff, 0x48, 0x7c, 0x8c, 0xff, 0x36, 0x5f, 0x74, 0xff, 0x28, 0x43, 0x56, 0xff, 0x26, 0x3d, 0x51, 0xff, 0x22, 0x3f, 0x4e, 0xff, 0x21, 0x3b, 0x48, 0xff, 0x1a, 0x32, 0x3b, 0xff, 0x18, 0x2d, 0x33, 0xff, 0x17, 0x2a, 0x2f, 0xff, 0x15, 0x27, 0x2e, 0xff, 0x16, 0x28, 0x2f, 0xff, 0x15, 0x27, 0x2f, 0xff, 0x14, 0x26, 0x2e, 0xff, 0x13, 0x25, 0x2e, 0xff, 0x14, 0x26, 0x2d, 0xff, 0x16, 0x26, 0x2f, 0xff, 0x17, 0x24, 0x2f, 0xff, 0x17, 0x26, 0x31, 0xff, 0x18, 0x27, 0x34, 0xff, 0x1b, 0x2b, 0x3b, 0xff, 0x1c, 0x2d, 0x5a, 0xff, 0x5d, 0x58, 0xff, 0xff, 0x55, 0x50, 0xff, 0xff, 0x45, 0x3e, 0xfd, 0xff, 0x34, 0x30, 0xf8, 0xff, 0x2d, 0x2a, 0xf2, 0xff, 0x26, 0x23, 0xe3, 0xff, 0x22, 0x27, 0xdd, 0xff, 0x1e, 0x1d, 0xcb, 0xff, 0x16, 0x17, 0xc1, 0xff, 0x16, 0x16, 0xc1, 0xff, 0x16, 0x16, 0xbe, 0xff, 0x11, 0x11, 0xb1, 0xff, 0x10, 0x11, 0xb2, 0xff, 0x0d, 0x0e, 0xad, 0xff, 0x37, 0x33, 0xe3, 0xff, 0x3e, 0x37, 0xfc, 0xff, 0x48, 0x40, 0xff, 0xff, 0x1a, 0x19, 0xc5, 0xff, 0x17, 0x17, 0xc3, 0xff, 0x27, 0x26, 0xe1, 0xff, 0x17, 0x16, 0xc0, 0xff, 0x15, 0x17, 0xc2, 0xff, 0x10, 0x12, 0xb1, 0xff, 0x38, 0x3b, 0xea, 0xff, 0x1e, 0x1c, 0xc9, 0xff, 0x17, 0x18, 0xc4, 0xff, 0x13, 0x14, 0xbd, 0xff, 0x18, 0x19, 0xc5, 0xff, 0x15, 0x15, 0xb8, 0xff, 0x16, 0x1a, 0xa9, 0xff, 0x0d, 0x10, 0x9d, 0xff, 0x12, 0x14, 0xa5, 0xff, 0x18, 0x1b, 0xc3, 0xff, 0x11, 0x12, 0xaf, 0xff, 0x0e, 0x10, 0x9c, 0xff, 0x0d, 0x10, 0x9c, 0xff, 0x10, 0x12, 0xa0, 0xff, 0x19, 0x1b, 0xc9, 0xff, 0x11, 0x13, 0xb1, 0xff, 0x0e, 0x10, 0xab, 0xff, 0x0f, 0x10, 0xa7, 0xff, 0x34, 0x31, 0xe9, 0xff, 0x2e, 0x2a, 0xe1, 0xff, 0x44, 0x3e, 0xff, 0xff, 0x1b, 0x1a, 0xcf, 0xff, 0x10, 0x10, 0xa8, 0xff, 0x0c, 0x0e, 0x99, 0xff, 0x0d, 0x10, 0x9f, 0xff, 0x0e, 0x0f, 0xa3, 0xff, 0x11, 0x13, 0xb9, 0xff, 0x10, 0x11, 0xa5, 0xff, 0x0b, 0x0d, 0x89, 0xff, 0x19, 0x1a, 0xc1, 0xff, 0x21, 0x21, 0xd9, 0xff, 0x0d, 0x0d, 0x99, 0xff, 0x10, 0x12, 0xaa, 0xff, 0x18, 0x17, 0xc5, 0xff, 0x2d, 0x2a, 0xea, 0xff, 0x2f, 0x2d, 0xf4, 0xff, 0x36, 0x34, 0xf8, 0xff, 0x3f, 0x3f, 0xf4, 0xff, 0x18, 0x1f, 0x73, 0xff, 0x0e, 0x18, 0x22, 0xff, 0x10, 0x18, 0x23, 0xff, 0x10, 0x18, 0x24, 0xff, 0x10, 0x19, 0x25, 0xff, 0x10, 0x19, 0x26, 0xff, 0x10, 0x19, 0x23, 0xff, 0x10, 0x19, 0x26, 0xff, 0x10, 0x19, 0x26, 0xff, 0x10, 0x19, 0x26, 0xff, 0x10, 0x19, 0x27, 0xff, 0x10, 0x1a, 0x26, 0xff, 0x10, 0x19, 0x27, 0xff, 0x10, 0x19, 0x26, 0xff, 0x10, 0x1a, 0x26, 0xff, 0x10, 0x1a, 0x26, 0xff, + 0x56, 0x8d, 0x91, 0xff, 0x4d, 0x81, 0x8f, 0xff, 0x47, 0x7a, 0x8c, 0xff, 0x37, 0x60, 0x72, 0xff, 0x28, 0x44, 0x56, 0xff, 0x25, 0x3c, 0x51, 0xff, 0x25, 0x3f, 0x4e, 0xff, 0x22, 0x3d, 0x4c, 0xff, 0x1e, 0x36, 0x43, 0xff, 0x1a, 0x31, 0x38, 0xff, 0x19, 0x2c, 0x33, 0xff, 0x16, 0x2a, 0x30, 0xff, 0x15, 0x29, 0x30, 0xff, 0x17, 0x28, 0x31, 0xff, 0x17, 0x28, 0x31, 0xff, 0x16, 0x27, 0x2e, 0xff, 0x14, 0x27, 0x2f, 0xff, 0x17, 0x28, 0x32, 0xff, 0x18, 0x28, 0x35, 0xff, 0x18, 0x28, 0x34, 0xff, 0x1a, 0x29, 0x36, 0xff, 0x1d, 0x2d, 0x3c, 0xff, 0x1f, 0x2f, 0x42, 0xff, 0x23, 0x31, 0x79, 0xff, 0x65, 0x61, 0xff, 0xff, 0x61, 0x5e, 0xff, 0xff, 0x61, 0x5d, 0xff, 0xff, 0x54, 0x4d, 0xff, 0xff, 0x40, 0x3b, 0xff, 0xff, 0x37, 0x32, 0xfe, 0xff, 0x33, 0x34, 0xee, 0xff, 0x1e, 0x1e, 0xcc, 0xff, 0x16, 0x15, 0xc0, 0xff, 0x16, 0x16, 0xc1, 0xff, 0x1b, 0x1b, 0xc8, 0xff, 0x10, 0x11, 0xac, 0xff, 0x10, 0x10, 0xac, 0xff, 0x0e, 0x0f, 0xaa, 0xff, 0x35, 0x32, 0xe0, 0xff, 0x35, 0x30, 0xf5, 0xff, 0x4c, 0x45, 0xff, 0xff, 0x1e, 0x1e, 0xc8, 0xff, 0x14, 0x14, 0xba, 0xff, 0x20, 0x21, 0xd4, 0xff, 0x10, 0x12, 0xb0, 0xff, 0x12, 0x1b, 0xaf, 0xff, 0x19, 0x1b, 0xbb, 0xff, 0x38, 0x3c, 0xf1, 0xff, 0x15, 0x15, 0xc2, 0xff, 0x1a, 0x1a, 0xc6, 0xff, 0x1a, 0x1b, 0xc5, 0xff, 0x1a, 0x1a, 0xc5, 0xff, 0x12, 0x13, 0xa4, 0xff, 0x0c, 0x10, 0x99, 0xff, 0x0e, 0x11, 0x9f, 0xff, 0x17, 0x18, 0xba, 0xff, 0x10, 0x11, 0xa8, 0xff, 0x0e, 0x10, 0x9d, 0xff, 0x0e, 0x10, 0x9a, 0xff, 0x14, 0x15, 0xac, 0xff, 0x14, 0x15, 0xb7, 0xff, 0x13, 0x13, 0xab, 0xff, 0x0e, 0x10, 0xa1, 0xff, 0x0f, 0x11, 0xaa, 0xff, 0x32, 0x30, 0xec, 0xff, 0x3e, 0x3a, 0xf1, 0xff, 0x26, 0x23, 0xdf, 0xff, 0x17, 0x17, 0xb8, 0xff, 0x0f, 0x11, 0xa0, 0xff, 0x0c, 0x0e, 0x91, 0xff, 0x0c, 0x0e, 0x92, 0xff, 0x0f, 0x11, 0xaa, 0xff, 0x0e, 0x10, 0x99, 0xff, 0x0b, 0x0d, 0x84, 0xff, 0x19, 0x1a, 0xbc, 0xff, 0x22, 0x22, 0xdd, 0xff, 0x0e, 0x0f, 0xa6, 0xff, 0x16, 0x15, 0xc7, 0xff, 0x19, 0x18, 0xcf, 0xff, 0x19, 0x19, 0xcd, 0xff, 0x1a, 0x19, 0xcb, 0xff, 0x1b, 0x1a, 0xcf, 0xff, 0x1f, 0x1d, 0xd7, 0xff, 0x1f, 0x1e, 0xdb, 0xff, 0x2d, 0x2e, 0xde, 0xff, 0x0f, 0x17, 0x2b, 0xff, 0x0f, 0x18, 0x25, 0xff, 0x10, 0x19, 0x26, 0xff, 0x10, 0x19, 0x28, 0xff, 0x10, 0x19, 0x26, 0xff, 0x11, 0x19, 0x27, 0xff, 0x10, 0x19, 0x26, 0xff, 0x10, 0x19, 0x27, 0xff, 0x10, 0x1a, 0x27, 0xff, 0x10, 0x1a, 0x28, 0xff, 0x10, 0x1a, 0x27, 0xff, 0x11, 0x1b, 0x28, 0xff, 0x10, 0x1a, 0x27, 0xff, 0x10, 0x1a, 0x26, 0xff, 0x11, 0x1b, 0x27, 0xff, + 0x66, 0x8d, 0xa1, 0xff, 0x53, 0x7d, 0x95, 0xff, 0x48, 0x79, 0x8d, 0xff, 0x3a, 0x63, 0x79, 0xff, 0x29, 0x46, 0x57, 0xff, 0x25, 0x3e, 0x52, 0xff, 0x25, 0x3d, 0x4e, 0xff, 0x23, 0x3e, 0x4c, 0xff, 0x20, 0x39, 0x47, 0xff, 0x1c, 0x34, 0x3e, 0xff, 0x1a, 0x2f, 0x37, 0xff, 0x19, 0x2c, 0x33, 0xff, 0x17, 0x29, 0x30, 0xff, 0x18, 0x29, 0x31, 0xff, 0x18, 0x2a, 0x34, 0xff, 0x18, 0x2a, 0x33, 0xff, 0x16, 0x28, 0x2f, 0xff, 0x17, 0x29, 0x32, 0xff, 0x18, 0x28, 0x34, 0xff, 0x1a, 0x29, 0x37, 0xff, 0x1b, 0x2b, 0x3b, 0xff, 0x1b, 0x2d, 0x3a, 0xff, 0x1c, 0x2d, 0x3d, 0xff, 0x1d, 0x2e, 0x3f, 0xff, 0x24, 0x31, 0x77, 0xff, 0x59, 0x57, 0xfb, 0xff, 0x58, 0x52, 0xff, 0xff, 0x56, 0x51, 0xff, 0xff, 0x59, 0x56, 0xff, 0xff, 0x5b, 0x55, 0xff, 0xff, 0x49, 0x43, 0xff, 0xff, 0x51, 0x4c, 0xfd, 0xff, 0x39, 0x35, 0xe2, 0xff, 0x16, 0x16, 0xc6, 0xff, 0x18, 0x18, 0xc6, 0xff, 0x1b, 0x1a, 0xc7, 0xff, 0x10, 0x10, 0xa7, 0xff, 0x0f, 0x10, 0xa8, 0xff, 0x0d, 0x0d, 0xa7, 0xff, 0x31, 0x2e, 0xdc, 0xff, 0x35, 0x2f, 0xf2, 0xff, 0x4a, 0x44, 0xff, 0xff, 0x29, 0x27, 0xcd, 0xff, 0x11, 0x13, 0xb2, 0xff, 0x1a, 0x1d, 0xc7, 0xff, 0x10, 0x14, 0xa0, 0xff, 0x10, 0x13, 0x97, 0xff, 0x19, 0x1e, 0xb8, 0xff, 0x2b, 0x2d, 0xe3, 0xff, 0x16, 0x16, 0xc2, 0xff, 0x16, 0x17, 0xbf, 0xff, 0x1a, 0x1b, 0xc8, 0xff, 0x11, 0x13, 0xa9, 0xff, 0x0e, 0x10, 0x8c, 0xff, 0x0e, 0x11, 0x96, 0xff, 0x10, 0x13, 0x9b, 0xff, 0x10, 0x13, 0xa6, 0xff, 0x19, 0x1d, 0xa3, 0xff, 0x0e, 0x13, 0x98, 0xff, 0x14, 0x15, 0xb0, 0xff, 0x29, 0x36, 0xc5, 0xff, 0x0c, 0x0e, 0x9c, 0xff, 0x0d, 0x0f, 0x9c, 0xff, 0x15, 0x18, 0xb1, 0xff, 0x1b, 0x1b, 0xc4, 0xff, 0x3b, 0x37, 0xf4, 0xff, 0x1c, 0x1b, 0xd2, 0xff, 0x17, 0x16, 0xc6, 0xff, 0x16, 0x16, 0xc0, 0xff, 0x0b, 0x0c, 0x85, 0xff, 0x0d, 0x0e, 0x96, 0xff, 0x0d, 0x0f, 0x8d, 0xff, 0x0b, 0x0d, 0x7e, 0xff, 0x1a, 0x1a, 0xba, 0xff, 0x25, 0x24, 0xe3, 0xff, 0x14, 0x13, 0xbd, 0xff, 0x16, 0x17, 0xca, 0xff, 0x15, 0x16, 0xc5, 0xff, 0x15, 0x15, 0xc0, 0xff, 0x17, 0x16, 0xc4, 0xff, 0x1d, 0x1b, 0xd2, 0xff, 0x1f, 0x1d, 0xd8, 0xff, 0x1d, 0x1b, 0xd4, 0xff, 0x17, 0x18, 0xc4, 0xff, 0x1c, 0x1f, 0xca, 0xff, 0x0e, 0x17, 0x28, 0xff, 0x0f, 0x18, 0x23, 0xff, 0x0f, 0x18, 0x25, 0xff, 0x0f, 0x18, 0x25, 0xff, 0x10, 0x19, 0x26, 0xff, 0x10, 0x19, 0x26, 0xff, 0x11, 0x1a, 0x26, 0xff, 0x11, 0x19, 0x28, 0xff, 0x11, 0x1a, 0x28, 0xff, 0x11, 0x1a, 0x29, 0xff, 0x10, 0x1a, 0x27, 0xff, 0x11, 0x1a, 0x28, 0xff, 0x10, 0x1a, 0x27, 0xff, 0x10, 0x19, 0x25, 0xff, 0x10, 0x19, 0x25, 0xff, + 0x76, 0x9c, 0xb4, 0xff, 0x5a, 0x82, 0x9b, 0xff, 0x47, 0x73, 0x8d, 0xff, 0x3a, 0x61, 0x7b, 0xff, 0x29, 0x48, 0x5a, 0xff, 0x27, 0x41, 0x54, 0xff, 0x24, 0x3e, 0x50, 0xff, 0x24, 0x3e, 0x4e, 0xff, 0x22, 0x3c, 0x4a, 0xff, 0x1e, 0x36, 0x43, 0xff, 0x1c, 0x32, 0x3b, 0xff, 0x19, 0x2e, 0x37, 0xff, 0x19, 0x2b, 0x35, 0xff, 0x19, 0x2c, 0x33, 0xff, 0x1b, 0x2d, 0x36, 0xff, 0x19, 0x2c, 0x35, 0xff, 0x19, 0x2b, 0x33, 0xff, 0x18, 0x29, 0x33, 0xff, 0x19, 0x29, 0x34, 0xff, 0x1a, 0x2b, 0x38, 0xff, 0x1c, 0x2d, 0x3d, 0xff, 0x1a, 0x2e, 0x3e, 0xff, 0x1e, 0x2f, 0x41, 0xff, 0x1f, 0x30, 0x44, 0xff, 0x1c, 0x2c, 0x40, 0xff, 0x1d, 0x2e, 0x5d, 0xff, 0x4a, 0x52, 0xe3, 0xff, 0x63, 0x61, 0xff, 0xff, 0x4f, 0x4a, 0xff, 0xff, 0x46, 0x3f, 0xff, 0xff, 0x4c, 0x46, 0xff, 0xff, 0x36, 0x33, 0xf3, 0xff, 0x58, 0x51, 0xff, 0xff, 0x5c, 0x55, 0xff, 0xff, 0x3a, 0x35, 0xf2, 0xff, 0x1f, 0x1d, 0xd2, 0xff, 0x14, 0x15, 0xbc, 0xff, 0x10, 0x11, 0xa7, 0xff, 0x0e, 0x0e, 0xa6, 0xff, 0x0d, 0x0e, 0xa4, 0xff, 0x2a, 0x28, 0xd2, 0xff, 0x31, 0x2e, 0xeb, 0xff, 0x44, 0x3f, 0xfa, 0xff, 0x2f, 0x30, 0xd5, 0xff, 0x1d, 0x1f, 0xba, 0xff, 0x17, 0x1a, 0xbb, 0xff, 0x10, 0x15, 0x8f, 0xff, 0x10, 0x15, 0x91, 0xff, 0x1b, 0x1e, 0xb8, 0xff, 0x1a, 0x1b, 0xc9, 0xff, 0x13, 0x15, 0xbc, 0xff, 0x15, 0x17, 0xb4, 0xff, 0x1c, 0x1e, 0xc6, 0xff, 0x1a, 0x1b, 0xb1, 0xff, 0x18, 0x1c, 0xa0, 0xff, 0x11, 0x13, 0x97, 0xff, 0x0f, 0x11, 0x8c, 0xff, 0x11, 0x12, 0x91, 0xff, 0x0f, 0x11, 0x95, 0xff, 0x13, 0x16, 0xaa, 0xff, 0x1c, 0x1d, 0xbc, 0xff, 0x0d, 0x0e, 0xa2, 0xff, 0x11, 0x13, 0x9d, 0xff, 0x17, 0x18, 0xac, 0xff, 0x23, 0x21, 0xcd, 0xff, 0x1d, 0x1c, 0xd3, 0xff, 0x1c, 0x1b, 0xd2, 0xff, 0x18, 0x17, 0xc6, 0xff, 0x16, 0x16, 0xbc, 0xff, 0x0c, 0x0d, 0x7e, 0xff, 0x0d, 0x0f, 0x7e, 0xff, 0x0b, 0x0e, 0x7b, 0xff, 0x1b, 0x1c, 0xbb, 0xff, 0x24, 0x25, 0xe3, 0xff, 0x16, 0x15, 0xc4, 0xff, 0x15, 0x15, 0xc3, 0xff, 0x13, 0x13, 0xbd, 0xff, 0x13, 0x13, 0xbc, 0xff, 0x17, 0x17, 0xc7, 0xff, 0x1b, 0x1a, 0xd1, 0xff, 0x19, 0x18, 0xcc, 0xff, 0x14, 0x14, 0xbf, 0xff, 0x17, 0x17, 0xc5, 0xff, 0x24, 0x23, 0xd6, 0xff, 0x2d, 0x2f, 0xbc, 0xff, 0x0e, 0x16, 0x1e, 0xff, 0x0f, 0x17, 0x23, 0xff, 0x0f, 0x18, 0x23, 0xff, 0x0f, 0x18, 0x22, 0xff, 0x0f, 0x18, 0x24, 0xff, 0x10, 0x19, 0x24, 0xff, 0x10, 0x19, 0x27, 0xff, 0x10, 0x19, 0x28, 0xff, 0x10, 0x1a, 0x26, 0xff, 0x10, 0x19, 0x27, 0xff, 0x11, 0x19, 0x27, 0xff, 0x10, 0x1a, 0x27, 0xff, 0x11, 0x19, 0x26, 0xff, 0x10, 0x18, 0x24, 0xff, 0x10, 0x19, 0x24, 0xff, + 0x7b, 0x9f, 0xb3, 0xff, 0x5e, 0x86, 0x9c, 0xff, 0x47, 0x73, 0x8d, 0xff, 0x3b, 0x62, 0x7f, 0xff, 0x2b, 0x4a, 0x5e, 0xff, 0x27, 0x41, 0x58, 0xff, 0x27, 0x40, 0x54, 0xff, 0x25, 0x3e, 0x4f, 0xff, 0x22, 0x3d, 0x4a, 0xff, 0x1f, 0x39, 0x45, 0xff, 0x1d, 0x34, 0x3f, 0xff, 0x1c, 0x30, 0x39, 0xff, 0x19, 0x2c, 0x36, 0xff, 0x19, 0x2c, 0x35, 0xff, 0x1b, 0x2e, 0x38, 0xff, 0x1b, 0x2c, 0x36, 0xff, 0x19, 0x2b, 0x33, 0xff, 0x19, 0x2c, 0x35, 0xff, 0x1b, 0x2d, 0x39, 0xff, 0x1d, 0x2f, 0x3d, 0xff, 0x1d, 0x30, 0x40, 0xff, 0x1d, 0x30, 0x40, 0xff, 0x1e, 0x2f, 0x45, 0xff, 0x1e, 0x32, 0x4c, 0xff, 0x41, 0x4e, 0xc8, 0xff, 0x55, 0x5e, 0xf7, 0xff, 0x46, 0x4b, 0xf0, 0xff, 0x34, 0x36, 0xe9, 0xff, 0x31, 0x30, 0xef, 0xff, 0x2e, 0x2e, 0xf3, 0xff, 0x2c, 0x2b, 0xf0, 0xff, 0x19, 0x18, 0xc9, 0xff, 0x1e, 0x1d, 0xd0, 0xff, 0x4f, 0x49, 0xff, 0xff, 0x53, 0x4d, 0xff, 0xff, 0x4c, 0x44, 0xfc, 0xff, 0x23, 0x20, 0xd8, 0xff, 0x13, 0x12, 0xb8, 0xff, 0x10, 0x11, 0xaa, 0xff, 0x0e, 0x0f, 0xa7, 0xff, 0x0d, 0x0e, 0xa4, 0xff, 0x1e, 0x1d, 0xbb, 0xff, 0x33, 0x2e, 0xec, 0xff, 0x40, 0x3c, 0xf9, 0xff, 0x3c, 0x3a, 0xf0, 0xff, 0x14, 0x15, 0xb3, 0xff, 0x11, 0x17, 0xa4, 0xff, 0x14, 0x19, 0x9c, 0xff, 0x0f, 0x13, 0x90, 0xff, 0x20, 0x20, 0xd1, 0xff, 0x29, 0x2d, 0xcc, 0xff, 0x1b, 0x1b, 0xc4, 0xff, 0x40, 0x43, 0xea, 0xff, 0x28, 0x2a, 0xda, 0xff, 0x21, 0x20, 0xc7, 0xff, 0x13, 0x14, 0xb4, 0xff, 0x12, 0x15, 0xad, 0xff, 0x19, 0x1a, 0xbf, 0xff, 0x12, 0x14, 0xab, 0xff, 0x14, 0x15, 0xa7, 0xff, 0x14, 0x15, 0xae, 0xff, 0x1d, 0x20, 0xa5, 0xff, 0x0d, 0x10, 0x82, 0xff, 0x0d, 0x0f, 0x90, 0xff, 0x1e, 0x1e, 0xd1, 0xff, 0x1b, 0x1a, 0xcd, 0xff, 0x19, 0x18, 0xcb, 0xff, 0x14, 0x13, 0xb9, 0xff, 0x17, 0x17, 0xbc, 0xff, 0x0c, 0x0e, 0x75, 0xff, 0x0b, 0x0d, 0x73, 0xff, 0x1c, 0x1d, 0xbc, 0xff, 0x21, 0x22, 0xdd, 0xff, 0x15, 0x15, 0xc3, 0xff, 0x15, 0x14, 0xc0, 0xff, 0x11, 0x12, 0xb7, 0xff, 0x13, 0x14, 0xbc, 0xff, 0x17, 0x17, 0xc5, 0xff, 0x16, 0x15, 0xc0, 0xff, 0x12, 0x12, 0xb6, 0xff, 0x13, 0x13, 0xb9, 0xff, 0x37, 0x33, 0xf0, 0xff, 0x4e, 0x48, 0xff, 0xff, 0x42, 0x44, 0xf9, 0xff, 0x11, 0x18, 0x5c, 0xff, 0x0f, 0x18, 0x23, 0xff, 0x0f, 0x17, 0x21, 0xff, 0x0f, 0x17, 0x22, 0xff, 0x0e, 0x17, 0x21, 0xff, 0x0f, 0x18, 0x24, 0xff, 0x10, 0x19, 0x24, 0xff, 0x10, 0x19, 0x26, 0xff, 0x11, 0x19, 0x27, 0xff, 0x10, 0x19, 0x27, 0xff, 0x10, 0x19, 0x27, 0xff, 0x11, 0x19, 0x27, 0xff, 0x11, 0x1a, 0x26, 0xff, 0x10, 0x1a, 0x28, 0xff, 0x10, 0x19, 0x24, 0xff, 0x0f, 0x18, 0x22, 0xff, + 0x73, 0x95, 0xa3, 0xff, 0x66, 0x8c, 0x9e, 0xff, 0x4c, 0x79, 0x90, 0xff, 0x44, 0x67, 0x82, 0xff, 0x31, 0x4f, 0x67, 0xff, 0x2b, 0x45, 0x5c, 0xff, 0x29, 0x44, 0x58, 0xff, 0x26, 0x3f, 0x4f, 0xff, 0x21, 0x3d, 0x49, 0xff, 0x20, 0x3b, 0x46, 0xff, 0x1e, 0x37, 0x44, 0xff, 0x1e, 0x34, 0x41, 0xff, 0x1c, 0x30, 0x3a, 0xff, 0x1b, 0x2d, 0x39, 0xff, 0x1d, 0x2f, 0x3a, 0xff, 0x1a, 0x2e, 0x36, 0xff, 0x1a, 0x2c, 0x37, 0xff, 0x1b, 0x2e, 0x39, 0xff, 0x1c, 0x2f, 0x3c, 0xff, 0x1f, 0x31, 0x41, 0xff, 0x20, 0x33, 0x47, 0xff, 0x1f, 0x33, 0x49, 0xff, 0x20, 0x32, 0x49, 0xff, 0x20, 0x31, 0x60, 0xff, 0x1a, 0x1b, 0xdb, 0xff, 0x17, 0x18, 0xca, 0xff, 0x15, 0x17, 0xc5, 0xff, 0x15, 0x16, 0xc3, 0xff, 0x13, 0x14, 0xbf, 0xff, 0x15, 0x15, 0xc1, 0xff, 0x19, 0x19, 0xc8, 0xff, 0x17, 0x18, 0xc6, 0xff, 0x17, 0x17, 0xc2, 0xff, 0x17, 0x17, 0xc4, 0xff, 0x44, 0x3f, 0xf4, 0xff, 0x53, 0x4a, 0xff, 0xff, 0x50, 0x49, 0xff, 0xff, 0x19, 0x19, 0xc1, 0xff, 0x12, 0x11, 0xb3, 0xff, 0x12, 0x11, 0xac, 0xff, 0x0f, 0x10, 0xa9, 0xff, 0x10, 0x10, 0xa9, 0xff, 0x15, 0x17, 0xa6, 0xff, 0x2f, 0x2c, 0xe9, 0xff, 0x38, 0x36, 0xf9, 0xff, 0x1f, 0x1f, 0xc6, 0xff, 0x0e, 0x10, 0x92, 0xff, 0x0d, 0x11, 0x9e, 0xff, 0x18, 0x19, 0xc1, 0xff, 0x14, 0x15, 0xbe, 0xff, 0x2a, 0x2b, 0xd4, 0xff, 0x19, 0x1d, 0xc2, 0xff, 0x78, 0x79, 0xec, 0xff, 0x38, 0x32, 0xe8, 0xff, 0x50, 0x54, 0xde, 0xff, 0x28, 0x28, 0xc5, 0xff, 0x44, 0x47, 0xce, 0xff, 0x24, 0x23, 0xcf, 0xff, 0x1a, 0x1a, 0xb6, 0xff, 0x2a, 0x2d, 0xc7, 0xff, 0x18, 0x19, 0xbb, 0xff, 0x1b, 0x1b, 0xbc, 0xff, 0x1d, 0x1f, 0xb9, 0xff, 0x0f, 0x11, 0x8e, 0xff, 0x18, 0x19, 0xc7, 0xff, 0x19, 0x1a, 0xcc, 0xff, 0x15, 0x15, 0xbf, 0xff, 0x14, 0x15, 0xb4, 0xff, 0x13, 0x13, 0xa7, 0xff, 0x0b, 0x0d, 0x73, 0xff, 0x1b, 0x1e, 0xbe, 0xff, 0x1f, 0x1f, 0xd6, 0xff, 0x14, 0x15, 0xc2, 0xff, 0x12, 0x13, 0xbb, 0xff, 0x12, 0x12, 0xb7, 0xff, 0x13, 0x14, 0xbc, 0xff, 0x14, 0x14, 0xba, 0xff, 0x10, 0x11, 0xaa, 0xff, 0x0f, 0x10, 0xa9, 0xff, 0x13, 0x13, 0xb4, 0xff, 0x25, 0x24, 0xdb, 0xff, 0x51, 0x4d, 0xff, 0xff, 0x38, 0x44, 0xef, 0xff, 0x14, 0x1e, 0x9f, 0xff, 0x0f, 0x16, 0x1d, 0xff, 0x10, 0x17, 0x23, 0xff, 0x0f, 0x18, 0x23, 0xff, 0x0f, 0x17, 0x23, 0xff, 0x0f, 0x18, 0x22, 0xff, 0x10, 0x18, 0x24, 0xff, 0x10, 0x19, 0x26, 0xff, 0x11, 0x1a, 0x28, 0xff, 0x11, 0x19, 0x29, 0xff, 0x10, 0x1a, 0x26, 0xff, 0x10, 0x1a, 0x27, 0xff, 0x11, 0x19, 0x28, 0xff, 0x10, 0x1a, 0x26, 0xff, 0x10, 0x1a, 0x27, 0xff, 0x10, 0x19, 0x25, 0xff, 0x10, 0x19, 0x23, 0xff, + 0x5f, 0x7d, 0x8c, 0xff, 0x5c, 0x82, 0x92, 0xff, 0x4c, 0x7a, 0x8e, 0xff, 0x47, 0x6d, 0x83, 0xff, 0x35, 0x55, 0x69, 0xff, 0x2c, 0x47, 0x5e, 0xff, 0x2b, 0x46, 0x5a, 0xff, 0x25, 0x42, 0x53, 0xff, 0x21, 0x41, 0x4b, 0xff, 0x21, 0x3f, 0x46, 0xff, 0x20, 0x3c, 0x48, 0xff, 0x1f, 0x37, 0x44, 0xff, 0x1d, 0x30, 0x3d, 0xff, 0x1c, 0x2f, 0x3b, 0xff, 0x1e, 0x31, 0x3d, 0xff, 0x1d, 0x31, 0x3e, 0xff, 0x1c, 0x30, 0x3d, 0xff, 0x1c, 0x2f, 0x3e, 0xff, 0x1d, 0x2e, 0x3e, 0xff, 0x1e, 0x32, 0x42, 0xff, 0x1f, 0x33, 0x46, 0xff, 0x1f, 0x36, 0x47, 0xff, 0x1f, 0x37, 0x47, 0xff, 0x1e, 0x36, 0x48, 0xff, 0x17, 0x22, 0x9a, 0xff, 0x17, 0x18, 0xc8, 0xff, 0x18, 0x18, 0xcb, 0xff, 0x16, 0x17, 0xc5, 0xff, 0x14, 0x15, 0xbe, 0xff, 0x12, 0x12, 0xb6, 0xff, 0x11, 0x11, 0xb1, 0xff, 0x0f, 0x10, 0xad, 0xff, 0x10, 0x12, 0xb2, 0xff, 0x13, 0x14, 0xb8, 0xff, 0x13, 0x14, 0xba, 0xff, 0x26, 0x25, 0xd6, 0xff, 0x52, 0x4c, 0xfe, 0xff, 0x4e, 0x47, 0xff, 0xff, 0x26, 0x24, 0xcd, 0xff, 0x10, 0x10, 0xae, 0xff, 0x12, 0x11, 0xb1, 0xff, 0x10, 0x11, 0xaf, 0xff, 0x13, 0x12, 0xb2, 0xff, 0x0b, 0x0e, 0x8e, 0xff, 0x1a, 0x1b, 0xb7, 0xff, 0x1f, 0x20, 0xba, 0xff, 0x2c, 0x32, 0xcc, 0xff, 0x2c, 0x2e, 0xc1, 0xff, 0x2e, 0x2f, 0xd2, 0xff, 0x40, 0x43, 0xd0, 0xff, 0x27, 0x28, 0xcf, 0xff, 0x3e, 0x3d, 0xd1, 0xff, 0x2b, 0x2f, 0xba, 0xff, 0x54, 0x6a, 0xed, 0xff, 0x1a, 0x19, 0x90, 0xff, 0x25, 0x28, 0xad, 0xff, 0x2c, 0x2f, 0xc2, 0xff, 0x5a, 0x5f, 0xe1, 0xff, 0x1f, 0x20, 0x98, 0xff, 0x21, 0x24, 0xae, 0xff, 0x19, 0x19, 0xc3, 0xff, 0x14, 0x15, 0xbd, 0xff, 0x14, 0x16, 0xa6, 0xff, 0x12, 0x16, 0xa5, 0xff, 0x10, 0x12, 0xa7, 0xff, 0x17, 0x17, 0xc2, 0xff, 0x1e, 0x1f, 0xba, 0xff, 0x18, 0x18, 0xc1, 0xff, 0x0d, 0x10, 0x84, 0xff, 0x1f, 0x20, 0xc9, 0xff, 0x1c, 0x1c, 0xd3, 0xff, 0x16, 0x16, 0xc4, 0xff, 0x13, 0x13, 0xbb, 0xff, 0x14, 0x14, 0xbd, 0xff, 0x15, 0x14, 0xbc, 0xff, 0x0f, 0x11, 0xaa, 0xff, 0x0f, 0x10, 0x9f, 0xff, 0x11, 0x11, 0xaa, 0xff, 0x12, 0x12, 0xb5, 0xff, 0x3b, 0x3a, 0xe0, 0xff, 0x54, 0x54, 0xff, 0xff, 0x28, 0x31, 0xee, 0xff, 0x1f, 0x2b, 0xdf, 0xff, 0x0f, 0x16, 0x3b, 0xff, 0x0e, 0x15, 0x20, 0xff, 0x0f, 0x15, 0x20, 0xff, 0x0f, 0x17, 0x21, 0xff, 0x0f, 0x17, 0x21, 0xff, 0x0f, 0x18, 0x23, 0xff, 0x0f, 0x19, 0x26, 0xff, 0x10, 0x19, 0x26, 0xff, 0x11, 0x1a, 0x28, 0xff, 0x10, 0x19, 0x27, 0xff, 0x11, 0x19, 0x27, 0xff, 0x10, 0x1a, 0x27, 0xff, 0x11, 0x19, 0x27, 0xff, 0x0f, 0x18, 0x23, 0xff, 0x0f, 0x18, 0x23, 0xff, 0x10, 0x19, 0x25, 0xff, 0x10, 0x18, 0x22, 0xff, + 0x4b, 0x6a, 0x7d, 0xff, 0x54, 0x77, 0x88, 0xff, 0x4e, 0x79, 0x8d, 0xff, 0x47, 0x73, 0x83, 0xff, 0x35, 0x59, 0x6b, 0xff, 0x2d, 0x49, 0x5d, 0xff, 0x2c, 0x45, 0x59, 0xff, 0x27, 0x43, 0x54, 0xff, 0x24, 0x44, 0x52, 0xff, 0x22, 0x45, 0x4f, 0xff, 0x22, 0x41, 0x4d, 0xff, 0x21, 0x3a, 0x47, 0xff, 0x1d, 0x33, 0x40, 0xff, 0x1d, 0x2f, 0x3c, 0xff, 0x1e, 0x30, 0x3f, 0xff, 0x20, 0x31, 0x41, 0xff, 0x20, 0x31, 0x3e, 0xff, 0x1f, 0x2f, 0x4d, 0xff, 0x24, 0x31, 0x7e, 0xff, 0x39, 0x46, 0x9f, 0xff, 0x3b, 0x47, 0xb5, 0xff, 0x37, 0x40, 0xda, 0xff, 0x2e, 0x31, 0xf0, 0xff, 0x2c, 0x2d, 0xf8, 0xff, 0x2d, 0x2b, 0xf6, 0xff, 0x19, 0x1b, 0xd0, 0xff, 0x12, 0x14, 0xbd, 0xff, 0x14, 0x15, 0xc0, 0xff, 0x15, 0x17, 0xc3, 0xff, 0x15, 0x16, 0xc3, 0xff, 0x12, 0x13, 0xb8, 0xff, 0x0f, 0x11, 0xae, 0xff, 0x0f, 0x0f, 0xa9, 0xff, 0x0e, 0x0f, 0xa5, 0xff, 0x0e, 0x0f, 0xa3, 0xff, 0x10, 0x12, 0xa7, 0xff, 0x11, 0x11, 0xb3, 0xff, 0x34, 0x30, 0xe0, 0xff, 0x55, 0x4e, 0xff, 0xff, 0x47, 0x43, 0xed, 0xff, 0x17, 0x16, 0xb7, 0xff, 0x11, 0x11, 0xb0, 0xff, 0x10, 0x0f, 0xb7, 0xff, 0x3d, 0x3d, 0xcf, 0xff, 0x0b, 0x0d, 0x86, 0xff, 0x14, 0x16, 0xa7, 0xff, 0x4d, 0x4c, 0xd9, 0xff, 0x4a, 0x4d, 0xdf, 0xff, 0x31, 0x30, 0xcb, 0xff, 0x12, 0x13, 0xb6, 0xff, 0x1c, 0x20, 0x8a, 0xff, 0x20, 0x23, 0xb0, 0xff, 0x15, 0x18, 0x9c, 0xff, 0x16, 0x16, 0xae, 0xff, 0x17, 0x1c, 0xa2, 0xff, 0x12, 0x16, 0x81, 0xff, 0x0e, 0x11, 0x7d, 0xff, 0x0e, 0x15, 0x42, 0xff, 0x14, 0x1c, 0x6a, 0xff, 0x1c, 0x1f, 0x95, 0xff, 0x15, 0x1b, 0x8e, 0xff, 0x35, 0x3b, 0xb8, 0xff, 0x25, 0x29, 0xd2, 0xff, 0x19, 0x1a, 0xbe, 0xff, 0x18, 0x19, 0xbe, 0xff, 0x15, 0x18, 0xad, 0xff, 0x16, 0x17, 0xae, 0xff, 0x14, 0x14, 0xa4, 0xff, 0x22, 0x21, 0xd3, 0xff, 0x1c, 0x1c, 0xd3, 0xff, 0x18, 0x17, 0xc8, 0xff, 0x16, 0x15, 0xc2, 0xff, 0x16, 0x15, 0xc1, 0xff, 0x12, 0x12, 0xad, 0xff, 0x0e, 0x10, 0x9a, 0xff, 0x0f, 0x10, 0xa1, 0xff, 0x15, 0x16, 0xaf, 0xff, 0x2a, 0x28, 0xcf, 0xff, 0x58, 0x55, 0xfb, 0xff, 0x4a, 0x4c, 0xff, 0xff, 0x2a, 0x36, 0xfd, 0xff, 0x27, 0x31, 0xf4, 0xff, 0x11, 0x1b, 0x6f, 0xff, 0x0e, 0x14, 0x1c, 0xff, 0x0e, 0x14, 0x1f, 0xff, 0x0e, 0x15, 0x1e, 0xff, 0x0f, 0x15, 0x1f, 0xff, 0x0f, 0x16, 0x21, 0xff, 0x0f, 0x18, 0x23, 0xff, 0x10, 0x19, 0x25, 0xff, 0x10, 0x19, 0x26, 0xff, 0x10, 0x19, 0x27, 0xff, 0x10, 0x19, 0x27, 0xff, 0x10, 0x19, 0x27, 0xff, 0x10, 0x19, 0x26, 0xff, 0x10, 0x1a, 0x26, 0xff, 0x11, 0x19, 0x25, 0xff, 0x10, 0x18, 0x25, 0xff, 0x0f, 0x18, 0x22, 0xff, 0x0f, 0x17, 0x21, 0xff, + 0x47, 0x65, 0x7f, 0xff, 0x55, 0x74, 0x8a, 0xff, 0x51, 0x7d, 0x90, 0xff, 0x4b, 0x7c, 0x8b, 0xff, 0x3e, 0x68, 0x76, 0xff, 0x2d, 0x4a, 0x5c, 0xff, 0x27, 0x44, 0x58, 0xff, 0x25, 0x40, 0x54, 0xff, 0x26, 0x44, 0x55, 0xff, 0x25, 0x45, 0x53, 0xff, 0x23, 0x43, 0x4e, 0xff, 0x22, 0x3d, 0x4a, 0xff, 0x21, 0x36, 0x45, 0xff, 0x1d, 0x31, 0x40, 0xff, 0x1e, 0x30, 0x3f, 0xff, 0x21, 0x32, 0x4a, 0xff, 0x38, 0x42, 0xc4, 0xff, 0x46, 0x49, 0xff, 0xff, 0x4a, 0x4b, 0xfc, 0xff, 0x22, 0x22, 0xd9, 0xff, 0x16, 0x16, 0xc9, 0xff, 0x24, 0x25, 0xde, 0xff, 0x25, 0x25, 0xe0, 0xff, 0x29, 0x28, 0xe8, 0xff, 0x26, 0x28, 0xe7, 0xff, 0x28, 0x26, 0xe7, 0xff, 0x28, 0x28, 0xe8, 0xff, 0x24, 0x23, 0xda, 0xff, 0x13, 0x14, 0xbd, 0xff, 0x13, 0x13, 0xb9, 0xff, 0x14, 0x14, 0xba, 0xff, 0x13, 0x14, 0xb9, 0xff, 0x13, 0x12, 0xb3, 0xff, 0x10, 0x10, 0xaa, 0xff, 0x0f, 0x10, 0xa5, 0xff, 0x0f, 0x10, 0xa1, 0xff, 0x0e, 0x0f, 0x9c, 0xff, 0x0e, 0x0f, 0x9c, 0xff, 0x10, 0x12, 0xad, 0xff, 0x2c, 0x2a, 0xda, 0xff, 0x56, 0x52, 0xff, 0xff, 0x37, 0x34, 0xdc, 0xff, 0x10, 0x12, 0xb0, 0xff, 0x14, 0x14, 0xbb, 0xff, 0x2c, 0x2a, 0xcf, 0xff, 0x2e, 0x2d, 0xe3, 0xff, 0x3c, 0x39, 0xe5, 0xff, 0x5c, 0x61, 0xdf, 0xff, 0x20, 0x23, 0xbd, 0xff, 0x12, 0x16, 0xaa, 0xff, 0x0f, 0x12, 0x6d, 0xff, 0x12, 0x18, 0x74, 0xff, 0x17, 0x22, 0x50, 0xff, 0x1e, 0x2b, 0x6f, 0xff, 0x18, 0x26, 0x67, 0xff, 0x17, 0x23, 0x52, 0xff, 0x1f, 0x31, 0x72, 0xff, 0x27, 0x3f, 0x80, 0xff, 0x1a, 0x28, 0x5f, 0xff, 0x12, 0x17, 0x8e, 0xff, 0x13, 0x16, 0xa6, 0xff, 0x1b, 0x1e, 0x9c, 0xff, 0x23, 0x22, 0xb6, 0xff, 0x26, 0x29, 0xd6, 0xff, 0x37, 0x37, 0xdb, 0xff, 0x0e, 0x12, 0x82, 0xff, 0x15, 0x18, 0xa2, 0xff, 0x20, 0x22, 0xd7, 0xff, 0x1e, 0x1c, 0xd3, 0xff, 0x1b, 0x1a, 0xd1, 0xff, 0x18, 0x19, 0xcb, 0xff, 0x14, 0x14, 0xb8, 0xff, 0x0e, 0x10, 0x9a, 0xff, 0x0f, 0x12, 0xa0, 0xff, 0x18, 0x18, 0xb3, 0xff, 0x1e, 0x1f, 0xc5, 0xff, 0x40, 0x3b, 0xf1, 0xff, 0x58, 0x55, 0xff, 0xff, 0x3f, 0x46, 0xff, 0xff, 0x2f, 0x3a, 0xff, 0xff, 0x26, 0x2e, 0xf4, 0xff, 0x10, 0x18, 0x5f, 0xff, 0x0e, 0x16, 0x20, 0xff, 0x0f, 0x15, 0x22, 0xff, 0x0f, 0x16, 0x21, 0xff, 0x10, 0x16, 0x21, 0xff, 0x0f, 0x17, 0x21, 0xff, 0x0f, 0x17, 0x21, 0xff, 0x0f, 0x18, 0x23, 0xff, 0x10, 0x19, 0x26, 0xff, 0x10, 0x19, 0x27, 0xff, 0x12, 0x1a, 0x29, 0xff, 0x10, 0x1a, 0x28, 0xff, 0x11, 0x1a, 0x29, 0xff, 0x11, 0x1b, 0x28, 0xff, 0x11, 0x1a, 0x27, 0xff, 0x10, 0x1a, 0x27, 0xff, 0x11, 0x19, 0x28, 0xff, 0x10, 0x19, 0x25, 0xff, 0x10, 0x19, 0x24, 0xff, + 0x4e, 0x6e, 0x85, 0xff, 0x5e, 0x7d, 0x92, 0xff, 0x58, 0x7e, 0x93, 0xff, 0x51, 0x82, 0x95, 0xff, 0x46, 0x71, 0x82, 0xff, 0x2f, 0x4f, 0x5f, 0xff, 0x27, 0x41, 0x55, 0xff, 0x24, 0x3f, 0x54, 0xff, 0x27, 0x44, 0x57, 0xff, 0x25, 0x45, 0x53, 0xff, 0x25, 0x43, 0x50, 0xff, 0x21, 0x3f, 0x4a, 0xff, 0x20, 0x39, 0x47, 0xff, 0x21, 0x33, 0x44, 0xff, 0x1e, 0x31, 0x42, 0xff, 0x24, 0x35, 0x71, 0xff, 0x37, 0x34, 0xff, 0xff, 0x30, 0x30, 0xe8, 0xff, 0x0f, 0x10, 0xb9, 0xff, 0x23, 0x24, 0xcf, 0xff, 0x30, 0x2e, 0xea, 0xff, 0x1b, 0x1b, 0xce, 0xff, 0x29, 0x28, 0xe0, 0xff, 0x33, 0x31, 0xf3, 0xff, 0x34, 0x31, 0xf7, 0xff, 0x31, 0x2e, 0xee, 0xff, 0x28, 0x27, 0xe3, 0xff, 0x20, 0x1f, 0xd8, 0xff, 0x1b, 0x1a, 0xd0, 0xff, 0x14, 0x15, 0xc3, 0xff, 0x11, 0x11, 0xb7, 0xff, 0x0e, 0x0f, 0xae, 0xff, 0x0f, 0x0f, 0xaa, 0xff, 0x10, 0x10, 0xa7, 0xff, 0x0f, 0x11, 0xa4, 0xff, 0x0f, 0x10, 0xa5, 0xff, 0x0f, 0x10, 0xa4, 0xff, 0x0d, 0x0f, 0x9d, 0xff, 0x0c, 0x0f, 0x96, 0xff, 0x0d, 0x0f, 0x93, 0xff, 0x10, 0x12, 0xaa, 0xff, 0x2b, 0x2a, 0xd8, 0xff, 0x46, 0x43, 0xfb, 0xff, 0x3a, 0x3b, 0xd6, 0xff, 0x56, 0x54, 0xef, 0xff, 0x48, 0x47, 0xf8, 0xff, 0x39, 0x38, 0xd7, 0xff, 0x2b, 0x2b, 0xc4, 0xff, 0x0b, 0x10, 0x66, 0xff, 0x16, 0x1a, 0xc3, 0xff, 0x11, 0x1a, 0x49, 0xff, 0x15, 0x1e, 0x50, 0xff, 0x26, 0x38, 0x80, 0xff, 0x40, 0x60, 0xac, 0xff, 0x35, 0x49, 0xa3, 0xff, 0x25, 0x36, 0x81, 0xff, 0x39, 0x54, 0xa5, 0xff, 0x4c, 0x70, 0xc7, 0xff, 0x34, 0x54, 0xa0, 0xff, 0x2a, 0x40, 0x8b, 0xff, 0x1c, 0x1f, 0xa2, 0xff, 0x27, 0x31, 0xbc, 0xff, 0x32, 0x36, 0xcf, 0xff, 0x24, 0x26, 0xd9, 0xff, 0x70, 0x74, 0xea, 0xff, 0x1b, 0x1a, 0xa6, 0xff, 0x0f, 0x12, 0xa8, 0xff, 0x21, 0x1f, 0xd7, 0xff, 0x1e, 0x1d, 0xd7, 0xff, 0x1c, 0x1d, 0xcb, 0xff, 0x12, 0x13, 0xad, 0xff, 0x13, 0x15, 0xb0, 0xff, 0x1a, 0x1b, 0xc1, 0xff, 0x1a, 0x19, 0xca, 0xff, 0x2f, 0x2f, 0xe1, 0xff, 0x47, 0x43, 0xff, 0xff, 0x44, 0x44, 0xff, 0xff, 0x4a, 0x4f, 0xff, 0xff, 0x48, 0x50, 0xff, 0xff, 0x19, 0x20, 0xb3, 0xff, 0x0a, 0x10, 0x20, 0xff, 0x0f, 0x13, 0x1c, 0xff, 0x0e, 0x14, 0x1e, 0xff, 0x0f, 0x15, 0x20, 0xff, 0x0f, 0x16, 0x21, 0xff, 0x0f, 0x17, 0x22, 0xff, 0x0f, 0x18, 0x23, 0xff, 0x10, 0x19, 0x24, 0xff, 0x0f, 0x19, 0x26, 0xff, 0x11, 0x1a, 0x27, 0xff, 0x11, 0x1a, 0x29, 0xff, 0x11, 0x1b, 0x2a, 0xff, 0x11, 0x1c, 0x2b, 0xff, 0x11, 0x1c, 0x2c, 0xff, 0x11, 0x1b, 0x2c, 0xff, 0x11, 0x1a, 0x2a, 0xff, 0x11, 0x1a, 0x29, 0xff, 0x11, 0x1a, 0x28, 0xff, 0x10, 0x1a, 0x27, 0xff, 0x10, 0x19, 0x25, 0xff, + 0x46, 0x64, 0x76, 0xff, 0x5d, 0x81, 0x96, 0xff, 0x63, 0x8d, 0xa1, 0xff, 0x50, 0x7f, 0x95, 0xff, 0x46, 0x6f, 0x84, 0xff, 0x2c, 0x4f, 0x5f, 0xff, 0x26, 0x43, 0x55, 0xff, 0x26, 0x40, 0x54, 0xff, 0x27, 0x45, 0x56, 0xff, 0x26, 0x47, 0x55, 0xff, 0x24, 0x44, 0x52, 0xff, 0x22, 0x41, 0x4e, 0xff, 0x21, 0x3c, 0x4a, 0xff, 0x20, 0x37, 0x47, 0xff, 0x20, 0x32, 0x44, 0xff, 0x2f, 0x3c, 0x95, 0xff, 0x48, 0x44, 0xfb, 0xff, 0x23, 0x22, 0xdb, 0xff, 0x16, 0x17, 0xc4, 0xff, 0x2f, 0x30, 0xe2, 0xff, 0x1b, 0x1a, 0xd1, 0xff, 0x1b, 0x1a, 0xcd, 0xff, 0x1a, 0x1a, 0xcb, 0xff, 0x23, 0x21, 0xd8, 0xff, 0x2e, 0x2b, 0xec, 0xff, 0x38, 0x35, 0xf4, 0xff, 0x41, 0x3d, 0xf9, 0xff, 0x49, 0x43, 0xfe, 0xff, 0x4c, 0x46, 0xff, 0xff, 0x48, 0x44, 0xff, 0xff, 0x43, 0x3d, 0xff, 0xff, 0x39, 0x36, 0xfb, 0xff, 0x29, 0x27, 0xe7, 0xff, 0x19, 0x19, 0xc3, 0xff, 0x0f, 0x11, 0xa7, 0xff, 0x0d, 0x0f, 0x99, 0xff, 0x0d, 0x0f, 0x95, 0xff, 0x0d, 0x10, 0x9e, 0xff, 0x0f, 0x10, 0xa8, 0xff, 0x0f, 0x11, 0xa8, 0xff, 0x12, 0x13, 0xa5, 0xff, 0x13, 0x15, 0xa8, 0xff, 0x14, 0x15, 0xb0, 0xff, 0x21, 0x21, 0xd8, 0xff, 0x4e, 0x50, 0xfa, 0xff, 0x37, 0x35, 0xfb, 0xff, 0x45, 0x4d, 0xdc, 0xff, 0x1a, 0x1d, 0xb3, 0xff, 0x27, 0x2a, 0xdb, 0xff, 0x11, 0x18, 0x65, 0xff, 0x1e, 0x2d, 0x68, 0xff, 0x22, 0x33, 0x76, 0xff, 0x16, 0x1e, 0x60, 0xff, 0x22, 0x30, 0x81, 0xff, 0x32, 0x3e, 0x9a, 0xff, 0x26, 0x33, 0x7a, 0xff, 0x31, 0x44, 0x96, 0xff, 0x26, 0x35, 0x99, 0xff, 0x2d, 0x40, 0xa6, 0xff, 0x2a, 0x3f, 0x9c, 0xff, 0x18, 0x23, 0x67, 0xff, 0x12, 0x19, 0x8a, 0xff, 0x12, 0x16, 0x79, 0xff, 0x31, 0x33, 0xe0, 0xff, 0x67, 0x62, 0xfe, 0xff, 0x67, 0x67, 0xfe, 0xff, 0x29, 0x28, 0xe0, 0xff, 0x1d, 0x1c, 0xd2, 0xff, 0x27, 0x25, 0xdb, 0xff, 0x24, 0x23, 0xd6, 0xff, 0x1e, 0x1e, 0xd9, 0xff, 0x24, 0x24, 0xdd, 0xff, 0x42, 0x42, 0xf0, 0xff, 0x42, 0x41, 0xf6, 0xff, 0x25, 0x22, 0xe4, 0xff, 0x1a, 0x19, 0xd2, 0xff, 0x1e, 0x1c, 0xd2, 0xff, 0x20, 0x20, 0xd8, 0xff, 0x25, 0x22, 0xe3, 0xff, 0x44, 0x45, 0xfc, 0xff, 0x2e, 0x31, 0xb9, 0xff, 0x0b, 0x10, 0x11, 0xff, 0x0e, 0x12, 0x1c, 0xff, 0x0e, 0x13, 0x1d, 0xff, 0x0e, 0x14, 0x1f, 0xff, 0x0f, 0x16, 0x20, 0xff, 0x0e, 0x16, 0x22, 0xff, 0x10, 0x18, 0x23, 0xff, 0x0f, 0x19, 0x24, 0xff, 0x10, 0x19, 0x26, 0xff, 0x11, 0x1b, 0x28, 0xff, 0x11, 0x1b, 0x29, 0xff, 0x11, 0x1b, 0x2b, 0xff, 0x11, 0x1b, 0x2a, 0xff, 0x12, 0x1b, 0x29, 0xff, 0x11, 0x1a, 0x28, 0xff, 0x11, 0x1a, 0x28, 0xff, 0x10, 0x1a, 0x28, 0xff, 0x10, 0x19, 0x26, 0xff, 0x11, 0x19, 0x25, 0xff, + 0x54, 0x80, 0x93, 0xff, 0x75, 0xa7, 0xbd, 0xff, 0x74, 0xa3, 0xbb, 0xff, 0x55, 0x85, 0x9d, 0xff, 0x3b, 0x67, 0x7c, 0xff, 0x2b, 0x4e, 0x5f, 0xff, 0x25, 0x43, 0x55, 0xff, 0x25, 0x3f, 0x53, 0xff, 0x27, 0x44, 0x56, 0xff, 0x28, 0x49, 0x56, 0xff, 0x25, 0x45, 0x53, 0xff, 0x23, 0x41, 0x4e, 0xff, 0x23, 0x3b, 0x4d, 0xff, 0x21, 0x39, 0x49, 0xff, 0x21, 0x35, 0x47, 0xff, 0x1e, 0x30, 0x40, 0xff, 0x31, 0x3b, 0xb1, 0xff, 0x5d, 0x59, 0xff, 0xff, 0x4c, 0x48, 0xff, 0xff, 0x35, 0x32, 0xeb, 0xff, 0x17, 0x17, 0xc1, 0xff, 0x16, 0x17, 0xc2, 0xff, 0x14, 0x14, 0xbe, 0xff, 0x13, 0x13, 0xbd, 0xff, 0x12, 0x12, 0xb9, 0xff, 0x13, 0x13, 0xba, 0xff, 0x15, 0x15, 0xbe, 0xff, 0x18, 0x16, 0xc1, 0xff, 0x1b, 0x1a, 0xc9, 0xff, 0x1f, 0x1d, 0xd0, 0xff, 0x21, 0x1f, 0xd1, 0xff, 0x1c, 0x1c, 0xc6, 0xff, 0x1d, 0x1c, 0xc6, 0xff, 0x20, 0x1e, 0xd0, 0xff, 0x1a, 0x1a, 0xc5, 0xff, 0x0e, 0x0f, 0x93, 0xff, 0x0e, 0x0e, 0x8a, 0xff, 0x0e, 0x10, 0x90, 0xff, 0x0e, 0x10, 0x9a, 0xff, 0x10, 0x11, 0xa6, 0xff, 0x12, 0x13, 0xb3, 0xff, 0x11, 0x12, 0xb0, 0xff, 0x13, 0x15, 0xaf, 0xff, 0x30, 0x32, 0xe3, 0xff, 0x7a, 0x76, 0xf8, 0xff, 0x4a, 0x4b, 0xf9, 0xff, 0x2b, 0x2f, 0xd5, 0xff, 0x1d, 0x21, 0xbc, 0xff, 0x21, 0x29, 0x8f, 0xff, 0x40, 0x5b, 0x99, 0xff, 0x23, 0x3b, 0x86, 0xff, 0x2a, 0x38, 0x81, 0xff, 0x1b, 0x25, 0x67, 0xff, 0x21, 0x28, 0x6a, 0xff, 0x23, 0x29, 0x6a, 0xff, 0x19, 0x1b, 0x5a, 0xff, 0x2f, 0x34, 0x87, 0xff, 0x20, 0x23, 0x84, 0xff, 0x2f, 0x39, 0x94, 0xff, 0x3e, 0x5a, 0xb7, 0xff, 0x2d, 0x45, 0x8e, 0xff, 0x11, 0x18, 0x53, 0xff, 0x66, 0x6c, 0xe8, 0xff, 0x2e, 0x2e, 0xd2, 0xff, 0x25, 0x22, 0xe4, 0xff, 0x80, 0x85, 0xff, 0xff, 0x5b, 0x62, 0xf9, 0xff, 0x2d, 0x2c, 0xe8, 0xff, 0x27, 0x27, 0xf6, 0xff, 0x2c, 0x29, 0xf5, 0xff, 0x44, 0x45, 0xfa, 0xff, 0x37, 0x37, 0xea, 0xff, 0x1b, 0x19, 0xd4, 0xff, 0x1c, 0x1b, 0xcd, 0xff, 0x1e, 0x1d, 0xcf, 0xff, 0x1f, 0x1f, 0xd6, 0xff, 0x1e, 0x1f, 0xd8, 0xff, 0x1d, 0x1d, 0xd4, 0xff, 0x1a, 0x1b, 0xcf, 0xff, 0x1a, 0x1a, 0xcb, 0xff, 0x26, 0x28, 0xd7, 0xff, 0x26, 0x2b, 0x9f, 0xff, 0x0c, 0x12, 0x17, 0xff, 0x0e, 0x13, 0x1c, 0xff, 0x0e, 0x14, 0x1d, 0xff, 0x0e, 0x15, 0x1c, 0xff, 0x0e, 0x16, 0x1c, 0xff, 0x10, 0x17, 0x1f, 0xff, 0x0f, 0x18, 0x21, 0xff, 0x10, 0x18, 0x24, 0xff, 0x10, 0x19, 0x26, 0xff, 0x11, 0x1a, 0x27, 0xff, 0x10, 0x1a, 0x27, 0xff, 0x11, 0x1a, 0x28, 0xff, 0x11, 0x19, 0x27, 0xff, 0x11, 0x1a, 0x29, 0xff, 0x11, 0x1a, 0x27, 0xff, 0x11, 0x1a, 0x28, 0xff, 0x0f, 0x19, 0x24, 0xff, 0x0f, 0x19, 0x24, 0xff, + 0x6f, 0xa3, 0xc0, 0xff, 0x7e, 0xb2, 0xd2, 0xff, 0x78, 0xaa, 0xc4, 0xff, 0x50, 0x7f, 0x98, 0xff, 0x38, 0x63, 0x7d, 0xff, 0x29, 0x4e, 0x5f, 0xff, 0x24, 0x44, 0x56, 0xff, 0x23, 0x40, 0x56, 0xff, 0x25, 0x42, 0x57, 0xff, 0x27, 0x49, 0x57, 0xff, 0x24, 0x48, 0x52, 0xff, 0x23, 0x41, 0x4c, 0xff, 0x22, 0x3c, 0x4c, 0xff, 0x21, 0x39, 0x4b, 0xff, 0x21, 0x36, 0x48, 0xff, 0x20, 0x31, 0x48, 0xff, 0x1e, 0x2f, 0x43, 0xff, 0x2f, 0x37, 0xb2, 0xff, 0x5c, 0x5a, 0xff, 0xff, 0x5d, 0x5b, 0xfe, 0xff, 0x2b, 0x2a, 0xdf, 0xff, 0x2a, 0x28, 0xe1, 0xff, 0x42, 0x3f, 0xf6, 0xff, 0x4c, 0x48, 0xfb, 0xff, 0x4e, 0x49, 0xf4, 0xff, 0x40, 0x40, 0xe8, 0xff, 0x3a, 0x38, 0xdc, 0xff, 0x32, 0x30, 0xd1, 0xff, 0x29, 0x29, 0xc5, 0xff, 0x1c, 0x1b, 0xb2, 0xff, 0x11, 0x12, 0x92, 0xff, 0x0e, 0x11, 0x7b, 0xff, 0x0e, 0x11, 0x7f, 0xff, 0x0f, 0x10, 0x88, 0xff, 0x0e, 0x0f, 0x93, 0xff, 0x0e, 0x10, 0x98, 0xff, 0x0e, 0x0f, 0x9c, 0xff, 0x0e, 0x0f, 0x96, 0xff, 0x0c, 0x0f, 0x91, 0xff, 0x0c, 0x0e, 0x92, 0xff, 0x11, 0x14, 0xa1, 0xff, 0x15, 0x18, 0xa7, 0xff, 0x1c, 0x1b, 0xbb, 0xff, 0x5c, 0x5e, 0xff, 0xff, 0x5a, 0x5b, 0xff, 0xff, 0x4d, 0x4d, 0xfc, 0xff, 0x33, 0x37, 0xda, 0xff, 0x1d, 0x23, 0x98, 0xff, 0x20, 0x33, 0x8b, 0xff, 0x29, 0x3d, 0x97, 0xff, 0x36, 0x49, 0x9b, 0xff, 0x20, 0x29, 0x72, 0xff, 0x24, 0x29, 0x64, 0xff, 0x19, 0x1b, 0x58, 0xff, 0x10, 0x15, 0x3f, 0xff, 0x14, 0x17, 0x44, 0xff, 0x1d, 0x21, 0x63, 0xff, 0x1e, 0x1f, 0x70, 0xff, 0x25, 0x2a, 0x84, 0xff, 0x2a, 0x38, 0x9c, 0xff, 0x2d, 0x3d, 0x91, 0xff, 0x1e, 0x2e, 0x78, 0xff, 0x15, 0x1c, 0x8e, 0xff, 0x24, 0x28, 0xb6, 0xff, 0x71, 0x77, 0xff, 0xff, 0x44, 0x3d, 0xf7, 0xff, 0x5e, 0x62, 0xff, 0xff, 0x57, 0x59, 0xff, 0xff, 0x65, 0x5f, 0xff, 0xff, 0x3e, 0x3c, 0xf5, 0xff, 0x1f, 0x1c, 0xdb, 0xff, 0x22, 0x1f, 0xd8, 0xff, 0x21, 0x1f, 0xd5, 0xff, 0x1d, 0x1d, 0xd3, 0xff, 0x1a, 0x1a, 0xce, 0xff, 0x16, 0x17, 0xc3, 0xff, 0x14, 0x14, 0xb9, 0xff, 0x13, 0x12, 0xb3, 0xff, 0x13, 0x13, 0xb6, 0xff, 0x17, 0x18, 0xbc, 0xff, 0x18, 0x19, 0xc0, 0xff, 0x1c, 0x1e, 0xd3, 0xff, 0x11, 0x16, 0x68, 0xff, 0x12, 0x17, 0x6d, 0xff, 0x14, 0x18, 0x80, 0xff, 0x28, 0x2a, 0xae, 0xff, 0x39, 0x3f, 0xc2, 0xff, 0x33, 0x3a, 0xb5, 0xff, 0x2a, 0x2e, 0x99, 0xff, 0x18, 0x1e, 0x5a, 0xff, 0x0e, 0x16, 0x25, 0xff, 0x11, 0x19, 0x27, 0xff, 0x11, 0x19, 0x27, 0xff, 0x10, 0x1a, 0x27, 0xff, 0x11, 0x1a, 0x28, 0xff, 0x11, 0x1a, 0x28, 0xff, 0x10, 0x1a, 0x28, 0xff, 0x11, 0x1a, 0x27, 0xff, 0x10, 0x19, 0x25, 0xff, 0x10, 0x18, 0x23, 0xff, + 0x6d, 0x9f, 0xbe, 0xff, 0x68, 0x99, 0xb5, 0xff, 0x5f, 0x8c, 0xa9, 0xff, 0x4b, 0x77, 0x92, 0xff, 0x39, 0x64, 0x7e, 0xff, 0x29, 0x4d, 0x63, 0xff, 0x25, 0x43, 0x5a, 0xff, 0x24, 0x43, 0x5c, 0xff, 0x24, 0x44, 0x5a, 0xff, 0x27, 0x46, 0x57, 0xff, 0x25, 0x48, 0x52, 0xff, 0x22, 0x43, 0x4f, 0xff, 0x22, 0x3e, 0x4d, 0xff, 0x21, 0x3b, 0x4a, 0xff, 0x22, 0x35, 0x4a, 0xff, 0x20, 0x31, 0x49, 0xff, 0x20, 0x31, 0x48, 0xff, 0x1f, 0x30, 0x40, 0xff, 0x2e, 0x36, 0xc4, 0xff, 0x39, 0x35, 0xf2, 0xff, 0x36, 0x32, 0xf2, 0xff, 0x51, 0x4c, 0xff, 0xff, 0x54, 0x4e, 0xff, 0xff, 0x44, 0x40, 0xff, 0xff, 0x40, 0x3b, 0xff, 0xff, 0x3f, 0x3c, 0xff, 0xff, 0x40, 0x3b, 0xfd, 0xff, 0x40, 0x3b, 0xfe, 0xff, 0x28, 0x27, 0xe2, 0xff, 0x19, 0x19, 0xc5, 0xff, 0x15, 0x15, 0xb6, 0xff, 0x11, 0x13, 0xa4, 0xff, 0x0f, 0x12, 0x94, 0xff, 0x0f, 0x12, 0x89, 0xff, 0x11, 0x12, 0x81, 0xff, 0x0f, 0x11, 0x7d, 0xff, 0x10, 0x12, 0x7b, 0xff, 0x0e, 0x11, 0x7c, 0xff, 0x15, 0x17, 0x91, 0xff, 0x0e, 0x0f, 0x90, 0xff, 0x2b, 0x38, 0xbc, 0xff, 0x4f, 0x4d, 0xe7, 0xff, 0x4d, 0x4b, 0xf0, 0xff, 0x5b, 0x60, 0xff, 0xff, 0x4b, 0x47, 0xfc, 0xff, 0x27, 0x35, 0xcf, 0xff, 0x29, 0x2d, 0xd8, 0xff, 0x2a, 0x36, 0xba, 0xff, 0x3c, 0x5f, 0xb3, 0xff, 0x2e, 0x41, 0xa1, 0xff, 0x1f, 0x27, 0x7c, 0xff, 0x12, 0x14, 0x4d, 0xff, 0x16, 0x18, 0x4b, 0xff, 0x13, 0x14, 0x44, 0xff, 0x0d, 0x0f, 0x21, 0xff, 0x11, 0x12, 0x28, 0xff, 0x20, 0x20, 0x68, 0xff, 0x24, 0x26, 0x8a, 0xff, 0x29, 0x2e, 0x8e, 0xff, 0x3a, 0x4e, 0xb0, 0xff, 0x3a, 0x53, 0xb5, 0xff, 0x1f, 0x33, 0x74, 0xff, 0x2f, 0x33, 0xe2, 0xff, 0x6f, 0x72, 0xfa, 0xff, 0x24, 0x25, 0xbd, 0xff, 0x31, 0x2f, 0xfc, 0xff, 0x1e, 0x1e, 0xc8, 0xff, 0x62, 0x6a, 0xff, 0xff, 0x31, 0x2e, 0xfa, 0xff, 0x28, 0x23, 0xe8, 0xff, 0x23, 0x20, 0xde, 0xff, 0x1c, 0x1b, 0xd3, 0xff, 0x16, 0x17, 0xc7, 0xff, 0x16, 0x15, 0xc0, 0xff, 0x15, 0x15, 0xbc, 0xff, 0x15, 0x15, 0xbb, 0xff, 0x15, 0x14, 0xb7, 0xff, 0x14, 0x14, 0xb6, 0xff, 0x16, 0x16, 0xbb, 0xff, 0x17, 0x18, 0xc2, 0xff, 0x18, 0x1a, 0xc6, 0xff, 0x1c, 0x1d, 0xd0, 0xff, 0x11, 0x12, 0xb5, 0xff, 0x13, 0x14, 0xba, 0xff, 0x15, 0x17, 0xc0, 0xff, 0x1f, 0x20, 0xd6, 0xff, 0x4e, 0x50, 0xff, 0xff, 0x49, 0x4b, 0xf9, 0xff, 0x49, 0x49, 0xf7, 0xff, 0x4c, 0x4c, 0xff, 0xff, 0x41, 0x44, 0xe8, 0xff, 0x1d, 0x25, 0x6e, 0xff, 0x11, 0x1a, 0x26, 0xff, 0x11, 0x19, 0x27, 0xff, 0x11, 0x1a, 0x29, 0xff, 0x11, 0x1a, 0x28, 0xff, 0x11, 0x1a, 0x27, 0xff, 0x10, 0x19, 0x26, 0xff, 0x11, 0x19, 0x25, 0xff, 0x10, 0x18, 0x25, 0xff, + 0x51, 0x7b, 0x96, 0xff, 0x4f, 0x77, 0x92, 0xff, 0x50, 0x75, 0x8f, 0xff, 0x49, 0x71, 0x90, 0xff, 0x3c, 0x67, 0x82, 0xff, 0x2b, 0x51, 0x68, 0xff, 0x26, 0x45, 0x5d, 0xff, 0x26, 0x45, 0x5b, 0xff, 0x25, 0x44, 0x58, 0xff, 0x26, 0x44, 0x56, 0xff, 0x25, 0x47, 0x54, 0xff, 0x23, 0x45, 0x50, 0xff, 0x21, 0x40, 0x4e, 0xff, 0x22, 0x3b, 0x4a, 0xff, 0x20, 0x35, 0x4a, 0xff, 0x20, 0x33, 0x4a, 0xff, 0x21, 0x33, 0x49, 0xff, 0x21, 0x32, 0x47, 0xff, 0x34, 0x40, 0xa0, 0xff, 0x44, 0x3e, 0xfd, 0xff, 0x38, 0x34, 0xfd, 0xff, 0x3f, 0x38, 0xff, 0xff, 0x4d, 0x48, 0xff, 0xff, 0x5a, 0x56, 0xfe, 0xff, 0x57, 0x56, 0xff, 0xff, 0x49, 0x46, 0xff, 0xff, 0x3c, 0x38, 0xfa, 0xff, 0x32, 0x2f, 0xee, 0xff, 0x12, 0x12, 0xb0, 0xff, 0x0e, 0x10, 0x9a, 0xff, 0x0f, 0x10, 0x95, 0xff, 0x0e, 0x10, 0x8f, 0xff, 0x0f, 0x10, 0x8f, 0xff, 0x0e, 0x10, 0x8f, 0xff, 0x0e, 0x11, 0x92, 0xff, 0x0d, 0x10, 0x97, 0xff, 0x0e, 0x10, 0x98, 0xff, 0x0f, 0x11, 0x9e, 0xff, 0x12, 0x14, 0xa2, 0xff, 0x15, 0x16, 0xae, 0xff, 0x13, 0x11, 0xab, 0xff, 0x17, 0x18, 0xbc, 0xff, 0x4d, 0x4c, 0xed, 0xff, 0x71, 0x6f, 0xff, 0xff, 0x59, 0x58, 0xff, 0xff, 0x2e, 0x30, 0xbc, 0xff, 0x2c, 0x3b, 0xcb, 0xff, 0x3c, 0x58, 0xad, 0xff, 0x48, 0x6e, 0xc4, 0xff, 0x52, 0x71, 0xcc, 0xff, 0x26, 0x31, 0x90, 0xff, 0x20, 0x25, 0x6c, 0xff, 0x16, 0x19, 0x4c, 0xff, 0x0c, 0x0f, 0x1b, 0xff, 0x0f, 0x11, 0x1f, 0xff, 0x0b, 0x0d, 0x15, 0xff, 0x25, 0x24, 0x78, 0xff, 0x20, 0x23, 0x7a, 0xff, 0x2b, 0x2e, 0x93, 0xff, 0x33, 0x41, 0x9e, 0xff, 0x51, 0x6e, 0xc8, 0xff, 0x2d, 0x4e, 0x9d, 0xff, 0x50, 0x57, 0xe0, 0xff, 0x42, 0x46, 0xdb, 0xff, 0x86, 0x85, 0xff, 0xff, 0x39, 0x3a, 0xe1, 0xff, 0x26, 0x25, 0xe2, 0xff, 0x2e, 0x2d, 0xdb, 0xff, 0x50, 0x57, 0xf9, 0xff, 0x1b, 0x1a, 0xd4, 0xff, 0x1b, 0x1a, 0xcf, 0xff, 0x18, 0x19, 0xc8, 0xff, 0x16, 0x16, 0xbe, 0xff, 0x15, 0x15, 0xb7, 0xff, 0x14, 0x14, 0xb5, 0xff, 0x14, 0x14, 0xb4, 0xff, 0x15, 0x16, 0xb8, 0xff, 0x18, 0x19, 0xc3, 0xff, 0x1c, 0x1c, 0xce, 0xff, 0x19, 0x19, 0xc3, 0xff, 0x12, 0x14, 0xa3, 0xff, 0x0c, 0x0f, 0x88, 0xff, 0x0d, 0x10, 0x87, 0xff, 0x0d, 0x10, 0x89, 0xff, 0x0e, 0x11, 0x8d, 0xff, 0x0d, 0x12, 0x91, 0xff, 0x0d, 0x0f, 0xa1, 0xff, 0x0e, 0x10, 0xa9, 0xff, 0x11, 0x12, 0xaf, 0xff, 0x10, 0x13, 0xb3, 0xff, 0x16, 0x18, 0xbb, 0xff, 0x32, 0x37, 0xd7, 0xff, 0x0f, 0x18, 0x2d, 0xff, 0x10, 0x19, 0x27, 0xff, 0x10, 0x19, 0x25, 0xff, 0x10, 0x1a, 0x26, 0xff, 0x10, 0x1a, 0x26, 0xff, 0x11, 0x19, 0x25, 0xff, 0x10, 0x19, 0x24, 0xff, 0x0f, 0x18, 0x23, 0xff, + 0x4c, 0x71, 0x85, 0xff, 0x47, 0x6b, 0x80, 0xff, 0x46, 0x66, 0x7e, 0xff, 0x43, 0x66, 0x83, 0xff, 0x3c, 0x63, 0x82, 0xff, 0x2f, 0x56, 0x70, 0xff, 0x29, 0x4b, 0x64, 0xff, 0x26, 0x44, 0x5a, 0xff, 0x25, 0x3f, 0x55, 0xff, 0x25, 0x43, 0x55, 0xff, 0x25, 0x48, 0x55, 0xff, 0x24, 0x47, 0x51, 0xff, 0x22, 0x42, 0x4b, 0xff, 0x20, 0x3c, 0x48, 0xff, 0x20, 0x36, 0x48, 0xff, 0x22, 0x35, 0x4a, 0xff, 0x23, 0x34, 0x49, 0xff, 0x22, 0x34, 0x49, 0xff, 0x20, 0x33, 0x49, 0xff, 0x24, 0x37, 0x74, 0xff, 0x31, 0x36, 0xdb, 0xff, 0x27, 0x24, 0xdc, 0xff, 0x2b, 0x28, 0xdf, 0xff, 0x15, 0x15, 0xbb, 0xff, 0x21, 0x1f, 0xc4, 0xff, 0x39, 0x38, 0xdb, 0xff, 0x4f, 0x4c, 0xf4, 0xff, 0x39, 0x36, 0xf2, 0xff, 0x23, 0x22, 0xd5, 0xff, 0x1e, 0x1f, 0xc8, 0xff, 0x1a, 0x1a, 0xbb, 0xff, 0x18, 0x18, 0xae, 0xff, 0x15, 0x16, 0xa4, 0xff, 0x13, 0x14, 0x9f, 0xff, 0x11, 0x14, 0x98, 0xff, 0x10, 0x12, 0x99, 0xff, 0x25, 0x25, 0xae, 0xff, 0x26, 0x28, 0xbb, 0xff, 0x14, 0x18, 0xaa, 0xff, 0x17, 0x19, 0xae, 0xff, 0x2b, 0x39, 0xcc, 0xff, 0x1b, 0x22, 0xab, 0xff, 0x1a, 0x1d, 0xaa, 0xff, 0x36, 0x38, 0xe7, 0xff, 0x5d, 0x5c, 0xfe, 0xff, 0x47, 0x53, 0xf6, 0xff, 0x55, 0x5a, 0xf6, 0xff, 0x3e, 0x60, 0xbb, 0xff, 0x35, 0x54, 0xb5, 0xff, 0x3c, 0x51, 0xb2, 0xff, 0x28, 0x30, 0x8b, 0xff, 0x22, 0x28, 0x75, 0xff, 0x1d, 0x20, 0x5c, 0xff, 0x12, 0x15, 0x30, 0xff, 0x0c, 0x0e, 0x1c, 0xff, 0x14, 0x16, 0x2b, 0xff, 0x1e, 0x20, 0x69, 0xff, 0x20, 0x1f, 0x82, 0xff, 0x38, 0x3f, 0x9b, 0xff, 0x48, 0x57, 0xbf, 0xff, 0x38, 0x56, 0xb5, 0xff, 0x47, 0x6c, 0xc4, 0xff, 0x79, 0x86, 0xfa, 0xff, 0x63, 0x67, 0xe9, 0xff, 0x51, 0x52, 0xf4, 0xff, 0x6e, 0x74, 0xfe, 0xff, 0x46, 0x47, 0xf3, 0xff, 0x1d, 0x1d, 0xd2, 0xff, 0x46, 0x49, 0xf6, 0xff, 0x30, 0x31, 0xeb, 0xff, 0x20, 0x1e, 0xd7, 0xff, 0x1e, 0x1c, 0xd3, 0xff, 0x1b, 0x1a, 0xcb, 0xff, 0x1b, 0x1a, 0xca, 0xff, 0x1d, 0x1c, 0xce, 0xff, 0x1e, 0x1d, 0xd2, 0xff, 0x1e, 0x1d, 0xd4, 0xff, 0x1b, 0x19, 0xcc, 0xff, 0x14, 0x15, 0xba, 0xff, 0x12, 0x13, 0xaa, 0xff, 0x13, 0x15, 0xac, 0xff, 0x17, 0x19, 0xb2, 0xff, 0x19, 0x1b, 0xa4, 0xff, 0x0a, 0x0d, 0x7b, 0xff, 0x0c, 0x0f, 0x81, 0xff, 0x0b, 0x0f, 0x8a, 0xff, 0x0c, 0x0f, 0x93, 0xff, 0x0c, 0x0f, 0x9b, 0xff, 0x0e, 0x10, 0xa5, 0xff, 0x12, 0x14, 0xb7, 0xff, 0x32, 0x32, 0xe6, 0xff, 0x3f, 0x3f, 0xfd, 0xff, 0x18, 0x1f, 0x68, 0xff, 0x10, 0x19, 0x25, 0xff, 0x10, 0x1a, 0x27, 0xff, 0x11, 0x1a, 0x26, 0xff, 0x11, 0x1a, 0x25, 0xff, 0x10, 0x19, 0x25, 0xff, 0x0f, 0x19, 0x24, 0xff, 0x10, 0x19, 0x22, 0xff, + 0x40, 0x61, 0x72, 0xff, 0x3f, 0x60, 0x72, 0xff, 0x32, 0x4a, 0x5d, 0xff, 0x31, 0x4d, 0x63, 0xff, 0x37, 0x5d, 0x7c, 0xff, 0x32, 0x59, 0x75, 0xff, 0x2c, 0x50, 0x6f, 0xff, 0x28, 0x49, 0x63, 0xff, 0x26, 0x3f, 0x55, 0xff, 0x25, 0x41, 0x55, 0xff, 0x25, 0x46, 0x55, 0xff, 0x24, 0x45, 0x52, 0xff, 0x22, 0x43, 0x4e, 0xff, 0x20, 0x3f, 0x4a, 0xff, 0x20, 0x38, 0x49, 0xff, 0x21, 0x37, 0x4c, 0xff, 0x22, 0x36, 0x4e, 0xff, 0x21, 0x34, 0x4a, 0xff, 0x20, 0x30, 0x48, 0xff, 0x1c, 0x2f, 0x45, 0xff, 0x23, 0x32, 0x6b, 0xff, 0x16, 0x21, 0x8b, 0xff, 0x0d, 0x11, 0x95, 0xff, 0x0e, 0x11, 0x96, 0xff, 0x10, 0x12, 0x9f, 0xff, 0x11, 0x13, 0xa7, 0xff, 0x0e, 0x10, 0xa4, 0xff, 0x0f, 0x10, 0xa1, 0xff, 0x10, 0x11, 0xa4, 0xff, 0x13, 0x14, 0xae, 0xff, 0x15, 0x16, 0xb6, 0xff, 0x17, 0x18, 0xbc, 0xff, 0x18, 0x18, 0xbf, 0xff, 0x1a, 0x19, 0xc0, 0xff, 0x1a, 0x19, 0xbe, 0xff, 0x1a, 0x1a, 0xbf, 0xff, 0x23, 0x24, 0xd4, 0xff, 0x1c, 0x1b, 0xc9, 0xff, 0x2b, 0x30, 0xe0, 0xff, 0x32, 0x39, 0xea, 0xff, 0x24, 0x24, 0xd3, 0xff, 0x32, 0x38, 0xb5, 0xff, 0x54, 0x4f, 0xfc, 0xff, 0x5e, 0x65, 0xff, 0xff, 0x52, 0x51, 0xf4, 0xff, 0x15, 0x19, 0xb8, 0xff, 0x4b, 0x55, 0xf6, 0xff, 0x4a, 0x6b, 0xc6, 0xff, 0x57, 0x7d, 0xd6, 0xff, 0x36, 0x46, 0xb9, 0xff, 0x2b, 0x30, 0x85, 0xff, 0x27, 0x2c, 0x79, 0xff, 0x12, 0x13, 0x50, 0xff, 0x19, 0x1c, 0x4c, 0xff, 0x13, 0x16, 0x40, 0xff, 0x1f, 0x20, 0x63, 0xff, 0x1e, 0x1f, 0x7a, 0xff, 0x37, 0x34, 0xa3, 0xff, 0x31, 0x38, 0xab, 0xff, 0x33, 0x43, 0xb0, 0xff, 0x4d, 0x6f, 0xce, 0xff, 0x3d, 0x5b, 0xc4, 0xff, 0x3b, 0x48, 0xe8, 0xff, 0x6c, 0x71, 0xff, 0xff, 0x49, 0x48, 0xfc, 0xff, 0x38, 0x39, 0xf5, 0xff, 0x45, 0x44, 0xff, 0xff, 0x2f, 0x2f, 0xe5, 0xff, 0x26, 0x26, 0xea, 0xff, 0x4e, 0x53, 0xfe, 0xff, 0x22, 0x1f, 0xe0, 0xff, 0x20, 0x1e, 0xd6, 0xff, 0x1d, 0x1b, 0xcb, 0xff, 0x17, 0x16, 0xbb, 0xff, 0x11, 0x12, 0xae, 0xff, 0x0e, 0x0f, 0xa4, 0xff, 0x0e, 0x0e, 0x9f, 0xff, 0x0e, 0x0f, 0xa2, 0xff, 0x0f, 0x0f, 0xa4, 0xff, 0x0f, 0x10, 0xa9, 0xff, 0x11, 0x11, 0xb2, 0xff, 0x30, 0x2d, 0xe2, 0xff, 0x56, 0x51, 0xff, 0xff, 0x19, 0x1b, 0xa2, 0xff, 0x0c, 0x0f, 0x85, 0xff, 0x0c, 0x0f, 0x90, 0xff, 0x1a, 0x1c, 0xbd, 0xff, 0x39, 0x3b, 0xe9, 0xff, 0x48, 0x49, 0xfe, 0xff, 0x50, 0x4d, 0xff, 0xff, 0x3b, 0x3b, 0xf1, 0xff, 0x22, 0x26, 0xa1, 0xff, 0x10, 0x18, 0x26, 0xff, 0x11, 0x1a, 0x28, 0xff, 0x11, 0x1a, 0x28, 0xff, 0x11, 0x1a, 0x27, 0xff, 0x10, 0x1a, 0x24, 0xff, 0x10, 0x19, 0x25, 0xff, 0x10, 0x19, 0x24, 0xff, 0x10, 0x18, 0x22, 0xff, + 0x2e, 0x4a, 0x55, 0xff, 0x30, 0x49, 0x59, 0xff, 0x26, 0x3b, 0x49, 0xff, 0x2a, 0x41, 0x52, 0xff, 0x36, 0x59, 0x76, 0xff, 0x32, 0x59, 0x76, 0xff, 0x2f, 0x52, 0x72, 0xff, 0x2b, 0x4e, 0x6c, 0xff, 0x26, 0x42, 0x59, 0xff, 0x23, 0x3e, 0x54, 0xff, 0x24, 0x42, 0x54, 0xff, 0x24, 0x44, 0x52, 0xff, 0x25, 0x40, 0x4e, 0xff, 0x22, 0x3c, 0x49, 0xff, 0x22, 0x39, 0x49, 0xff, 0x23, 0x37, 0x4b, 0xff, 0x22, 0x37, 0x4e, 0xff, 0x21, 0x33, 0x4c, 0xff, 0x30, 0x41, 0x9a, 0xff, 0x31, 0x35, 0xea, 0xff, 0x11, 0x12, 0xb2, 0xff, 0x0f, 0x11, 0x9e, 0xff, 0x0e, 0x10, 0x95, 0xff, 0x0f, 0x11, 0x93, 0xff, 0x0e, 0x12, 0x95, 0xff, 0x10, 0x10, 0x96, 0xff, 0x0f, 0x10, 0x95, 0xff, 0x0e, 0x10, 0x94, 0xff, 0x0d, 0x0f, 0x95, 0xff, 0x0e, 0x0f, 0x95, 0xff, 0x0d, 0x0f, 0x99, 0xff, 0x0e, 0x10, 0x9d, 0xff, 0x10, 0x10, 0xa5, 0xff, 0x10, 0x11, 0xab, 0xff, 0x12, 0x11, 0xb2, 0xff, 0x13, 0x13, 0xb8, 0xff, 0x16, 0x15, 0xbe, 0xff, 0x16, 0x18, 0xc3, 0xff, 0x19, 0x19, 0xc9, 0xff, 0x19, 0x1a, 0xcd, 0xff, 0x1b, 0x1b, 0xd1, 0xff, 0x1a, 0x1a, 0xcc, 0xff, 0x5b, 0x61, 0xee, 0xff, 0x60, 0x5e, 0xff, 0xff, 0x58, 0x5c, 0xff, 0xff, 0x28, 0x2e, 0xd2, 0xff, 0x41, 0x42, 0xef, 0xff, 0x40, 0x5f, 0xb7, 0xff, 0x42, 0x63, 0xcb, 0xff, 0x38, 0x48, 0xb0, 0xff, 0x26, 0x2d, 0x92, 0xff, 0x23, 0x27, 0x7b, 0xff, 0x1b, 0x1d, 0x66, 0xff, 0x24, 0x24, 0x6d, 0xff, 0x24, 0x25, 0x7a, 0xff, 0x2a, 0x2d, 0x82, 0xff, 0x31, 0x31, 0x95, 0xff, 0x35, 0x3e, 0xab, 0xff, 0x41, 0x4a, 0xb3, 0xff, 0x32, 0x4a, 0xb0, 0xff, 0x38, 0x55, 0xb6, 0xff, 0x63, 0x88, 0xde, 0xff, 0x6f, 0x71, 0xfe, 0xff, 0x4a, 0x4d, 0xf8, 0xff, 0x5b, 0x58, 0xfb, 0xff, 0x60, 0x5e, 0xff, 0xff, 0x2b, 0x2b, 0xe5, 0xff, 0x58, 0x55, 0xff, 0xff, 0x3a, 0x37, 0xff, 0xff, 0x39, 0x39, 0xfb, 0xff, 0x26, 0x26, 0xe9, 0xff, 0x1b, 0x1c, 0xd3, 0xff, 0x17, 0x18, 0xc7, 0xff, 0x16, 0x16, 0xc2, 0xff, 0x14, 0x14, 0xba, 0xff, 0x12, 0x13, 0xb6, 0xff, 0x13, 0x14, 0xb4, 0xff, 0x13, 0x14, 0xb5, 0xff, 0x14, 0x15, 0xb9, 0xff, 0x16, 0x15, 0xbc, 0xff, 0x1f, 0x1f, 0xd3, 0xff, 0x40, 0x3b, 0xf7, 0xff, 0x4d, 0x47, 0xfe, 0xff, 0x0f, 0x15, 0x9d, 0xff, 0x0d, 0x0f, 0x94, 0xff, 0x0e, 0x11, 0x9c, 0xff, 0x1a, 0x1c, 0xb6, 0xff, 0x2a, 0x2c, 0xd0, 0xff, 0x1c, 0x21, 0xa4, 0xff, 0x11, 0x17, 0x77, 0xff, 0x0f, 0x17, 0x46, 0xff, 0x11, 0x1a, 0x23, 0xff, 0x12, 0x1b, 0x28, 0xff, 0x11, 0x1a, 0x29, 0xff, 0x12, 0x1a, 0x29, 0xff, 0x11, 0x19, 0x27, 0xff, 0x11, 0x1a, 0x24, 0xff, 0x0f, 0x19, 0x24, 0xff, 0x10, 0x19, 0x21, 0xff, 0x10, 0x17, 0x1f, 0xff, + 0x21, 0x30, 0x37, 0xff, 0x23, 0x34, 0x3b, 0xff, 0x26, 0x34, 0x3d, 0xff, 0x2a, 0x3b, 0x49, 0xff, 0x34, 0x56, 0x74, 0xff, 0x34, 0x5b, 0x7a, 0xff, 0x32, 0x54, 0x6f, 0xff, 0x2e, 0x50, 0x6e, 0xff, 0x28, 0x47, 0x61, 0xff, 0x25, 0x42, 0x58, 0xff, 0x24, 0x41, 0x52, 0xff, 0x24, 0x42, 0x51, 0xff, 0x22, 0x3a, 0x48, 0xff, 0x1f, 0x36, 0x44, 0xff, 0x21, 0x38, 0x48, 0xff, 0x22, 0x37, 0x4c, 0xff, 0x23, 0x36, 0x49, 0xff, 0x34, 0x40, 0xb8, 0xff, 0x18, 0x1a, 0xc7, 0xff, 0x0c, 0x0f, 0x93, 0xff, 0x0b, 0x0f, 0x80, 0xff, 0x0c, 0x0e, 0x79, 0xff, 0x0b, 0x0e, 0x72, 0xff, 0x0b, 0x0e, 0x66, 0xff, 0x0b, 0x0e, 0x61, 0xff, 0x0c, 0x0e, 0x5e, 0xff, 0x0d, 0x0f, 0x62, 0xff, 0x0d, 0x0f, 0x69, 0xff, 0x0e, 0x0f, 0x6b, 0xff, 0x0e, 0x10, 0x71, 0xff, 0x0f, 0x10, 0x76, 0xff, 0x0f, 0x11, 0x79, 0xff, 0x0f, 0x10, 0x7b, 0xff, 0x0f, 0x11, 0x84, 0xff, 0x0f, 0x10, 0x93, 0xff, 0x0f, 0x11, 0x9c, 0xff, 0x10, 0x11, 0xa5, 0xff, 0x10, 0x11, 0xac, 0xff, 0x14, 0x16, 0xb6, 0xff, 0x26, 0x24, 0xcd, 0xff, 0x29, 0x28, 0xd6, 0xff, 0x26, 0x27, 0xd0, 0xff, 0x5f, 0x60, 0xf3, 0xff, 0x5a, 0x51, 0xff, 0xff, 0x50, 0x4e, 0xf9, 0xff, 0x29, 0x29, 0xe3, 0xff, 0x30, 0x3f, 0xac, 0xff, 0x54, 0x75, 0xc3, 0xff, 0x36, 0x51, 0xbb, 0xff, 0x43, 0x5a, 0xc7, 0xff, 0x33, 0x3e, 0xa4, 0xff, 0x29, 0x2a, 0x96, 0xff, 0x1d, 0x20, 0x81, 0xff, 0x22, 0x22, 0x88, 0xff, 0x24, 0x22, 0x7e, 0xff, 0x21, 0x23, 0x8a, 0xff, 0x25, 0x28, 0x8f, 0xff, 0x3a, 0x43, 0xb0, 0xff, 0x44, 0x60, 0xc3, 0xff, 0x41, 0x5d, 0xbd, 0xff, 0x37, 0x59, 0xc7, 0xff, 0x56, 0x74, 0xdd, 0xff, 0x3d, 0x4d, 0xc7, 0xff, 0x39, 0x3c, 0xe2, 0xff, 0x2a, 0x28, 0xdf, 0xff, 0x42, 0x45, 0xff, 0xff, 0x65, 0x6d, 0xff, 0xff, 0x6d, 0x78, 0xff, 0xff, 0x5c, 0x5f, 0xff, 0xff, 0x47, 0x46, 0xff, 0xff, 0x4a, 0x4f, 0xfe, 0xff, 0x27, 0x24, 0xec, 0xff, 0x20, 0x1e, 0xdb, 0xff, 0x1e, 0x1d, 0xd7, 0xff, 0x1c, 0x1b, 0xd0, 0xff, 0x1a, 0x1a, 0xcc, 0xff, 0x19, 0x18, 0xc9, 0xff, 0x19, 0x19, 0xc9, 0xff, 0x19, 0x19, 0xca, 0xff, 0x1b, 0x19, 0xcc, 0xff, 0x1a, 0x1a, 0xca, 0xff, 0x2a, 0x2a, 0xe4, 0xff, 0x22, 0x2f, 0xc4, 0xff, 0x11, 0x17, 0x54, 0xff, 0x10, 0x17, 0x46, 0xff, 0x10, 0x18, 0x37, 0xff, 0x0f, 0x18, 0x2c, 0xff, 0x0f, 0x18, 0x20, 0xff, 0x10, 0x18, 0x1c, 0xff, 0x0f, 0x17, 0x1e, 0xff, 0x0f, 0x18, 0x22, 0xff, 0x10, 0x19, 0x26, 0xff, 0x11, 0x1a, 0x27, 0xff, 0x11, 0x1a, 0x28, 0xff, 0x12, 0x1a, 0x29, 0xff, 0x11, 0x1a, 0x27, 0xff, 0x10, 0x19, 0x26, 0xff, 0x10, 0x19, 0x24, 0xff, 0x10, 0x18, 0x22, 0xff, 0x0f, 0x16, 0x1d, 0xff, + 0x1d, 0x27, 0x2e, 0xff, 0x1e, 0x28, 0x2f, 0xff, 0x20, 0x2c, 0x32, 0xff, 0x22, 0x30, 0x37, 0xff, 0x2f, 0x4b, 0x67, 0xff, 0x34, 0x5b, 0x7c, 0xff, 0x31, 0x54, 0x71, 0xff, 0x2f, 0x4f, 0x6b, 0xff, 0x2a, 0x49, 0x63, 0xff, 0x25, 0x43, 0x58, 0xff, 0x24, 0x42, 0x51, 0xff, 0x25, 0x42, 0x50, 0xff, 0x21, 0x3b, 0x49, 0xff, 0x1e, 0x36, 0x45, 0xff, 0x21, 0x39, 0x4b, 0xff, 0x21, 0x39, 0x4e, 0xff, 0x21, 0x37, 0x4f, 0xff, 0x1d, 0x2c, 0x6e, 0xff, 0x0d, 0x10, 0xa0, 0xff, 0x0d, 0x10, 0x91, 0xff, 0x0d, 0x10, 0x91, 0xff, 0x0e, 0x10, 0x90, 0xff, 0x0c, 0x10, 0x92, 0xff, 0x0c, 0x10, 0x91, 0xff, 0x0d, 0x0f, 0x8e, 0xff, 0x0d, 0x10, 0x88, 0xff, 0x0d, 0x0f, 0x81, 0xff, 0x0d, 0x0f, 0x7d, 0xff, 0x0d, 0x0f, 0x7a, 0xff, 0x0c, 0x0f, 0x79, 0xff, 0x0e, 0x0f, 0x78, 0xff, 0x0e, 0x0f, 0x7b, 0xff, 0x0e, 0x10, 0x85, 0xff, 0x0f, 0x10, 0x92, 0xff, 0x10, 0x12, 0xa1, 0xff, 0x11, 0x12, 0xad, 0xff, 0x12, 0x13, 0xb5, 0xff, 0x14, 0x16, 0xbe, 0xff, 0x19, 0x1b, 0xc9, 0xff, 0x1e, 0x1e, 0xd4, 0xff, 0x1e, 0x1f, 0xd9, 0xff, 0x29, 0x2b, 0xe6, 0xff, 0x84, 0x8c, 0xff, 0xff, 0x54, 0x4b, 0xfc, 0xff, 0x57, 0x58, 0xff, 0xff, 0x60, 0x62, 0xff, 0xff, 0x4e, 0x53, 0xf4, 0xff, 0x4c, 0x62, 0xdf, 0xff, 0x4c, 0x6b, 0xd5, 0xff, 0x3c, 0x49, 0xbc, 0xff, 0x39, 0x42, 0xb0, 0xff, 0x31, 0x33, 0xa3, 0xff, 0x23, 0x29, 0x8b, 0xff, 0x2c, 0x31, 0x9b, 0xff, 0x23, 0x26, 0x91, 0xff, 0x34, 0x35, 0xa6, 0xff, 0x52, 0x65, 0xcd, 0xff, 0x36, 0x4d, 0xb6, 0xff, 0x34, 0x52, 0xaf, 0xff, 0x43, 0x60, 0xbe, 0xff, 0x3d, 0x54, 0xce, 0xff, 0x5c, 0x66, 0xfc, 0xff, 0x64, 0x78, 0xff, 0xff, 0x65, 0x6b, 0xfc, 0xff, 0x5e, 0x5f, 0xf3, 0xff, 0x4c, 0x52, 0xfb, 0xff, 0x25, 0x26, 0xca, 0xff, 0x55, 0x5f, 0xfa, 0xff, 0x66, 0x7f, 0xff, 0xff, 0x53, 0x59, 0xff, 0xff, 0x5f, 0x6b, 0xff, 0xff, 0x62, 0x70, 0xff, 0xff, 0x49, 0x4b, 0xfa, 0xff, 0x31, 0x2f, 0xec, 0xff, 0x24, 0x22, 0xdd, 0xff, 0x21, 0x1f, 0xd7, 0xff, 0x1e, 0x1d, 0xd4, 0xff, 0x1d, 0x1c, 0xd0, 0xff, 0x1f, 0x1e, 0xce, 0xff, 0x22, 0x23, 0xd0, 0xff, 0x2c, 0x2b, 0xe8, 0xff, 0x20, 0x2f, 0xda, 0xff, 0x19, 0x2a, 0x5d, 0xff, 0x17, 0x22, 0x38, 0xff, 0x11, 0x1b, 0x28, 0xff, 0x10, 0x19, 0x24, 0xff, 0x10, 0x18, 0x24, 0xff, 0x0f, 0x17, 0x22, 0xff, 0x0f, 0x16, 0x21, 0xff, 0x10, 0x16, 0x21, 0xff, 0x0f, 0x18, 0x22, 0xff, 0x10, 0x19, 0x24, 0xff, 0x10, 0x1a, 0x27, 0xff, 0x11, 0x1a, 0x27, 0xff, 0x10, 0x19, 0x28, 0xff, 0x11, 0x1a, 0x26, 0xff, 0x10, 0x19, 0x24, 0xff, 0x10, 0x19, 0x23, 0xff, 0x10, 0x18, 0x22, 0xff, 0x0f, 0x16, 0x1d, 0xff, + 0x17, 0x20, 0x25, 0xff, 0x15, 0x1e, 0x21, 0xff, 0x1e, 0x2b, 0x2c, 0xff, 0x27, 0x3b, 0x3c, 0xff, 0x32, 0x54, 0x60, 0xff, 0x35, 0x5a, 0x79, 0xff, 0x33, 0x56, 0x73, 0xff, 0x30, 0x51, 0x6b, 0xff, 0x2a, 0x48, 0x62, 0xff, 0x26, 0x42, 0x59, 0xff, 0x25, 0x45, 0x56, 0xff, 0x25, 0x44, 0x53, 0xff, 0x23, 0x43, 0x51, 0xff, 0x22, 0x3d, 0x4c, 0xff, 0x21, 0x3c, 0x4f, 0xff, 0x21, 0x38, 0x4f, 0xff, 0x22, 0x36, 0x4f, 0xff, 0x22, 0x33, 0x4b, 0xff, 0x1d, 0x2b, 0x61, 0xff, 0x12, 0x16, 0xa3, 0xff, 0x11, 0x11, 0xa5, 0xff, 0x12, 0x12, 0xa7, 0xff, 0x11, 0x12, 0xa7, 0xff, 0x12, 0x12, 0xa8, 0xff, 0x10, 0x11, 0xa9, 0xff, 0x10, 0x10, 0xac, 0xff, 0x10, 0x11, 0xad, 0xff, 0x10, 0x11, 0xb0, 0xff, 0x11, 0x12, 0xb1, 0xff, 0x12, 0x12, 0xb2, 0xff, 0x14, 0x14, 0xb5, 0xff, 0x15, 0x15, 0xb8, 0xff, 0x16, 0x15, 0xba, 0xff, 0x16, 0x16, 0xbc, 0xff, 0x16, 0x16, 0xbe, 0xff, 0x18, 0x18, 0xc1, 0xff, 0x17, 0x18, 0xc6, 0xff, 0x1a, 0x19, 0xcb, 0xff, 0x1c, 0x1d, 0xd6, 0xff, 0x17, 0x17, 0xcd, 0xff, 0x19, 0x19, 0xcf, 0xff, 0x49, 0x4b, 0xe7, 0xff, 0x6c, 0x63, 0xfc, 0xff, 0x3b, 0x37, 0xfa, 0xff, 0x80, 0x81, 0xff, 0xff, 0x4c, 0x46, 0xf9, 0xff, 0x6a, 0x81, 0xff, 0xff, 0x32, 0x47, 0xdf, 0xff, 0x44, 0x55, 0xcc, 0xff, 0x3f, 0x4f, 0xbc, 0xff, 0x44, 0x4e, 0xc5, 0xff, 0x38, 0x41, 0xc2, 0xff, 0x38, 0x3f, 0xb5, 0xff, 0x46, 0x51, 0xc8, 0xff, 0x2f, 0x35, 0xaf, 0xff, 0x39, 0x3f, 0xbe, 0xff, 0x33, 0x46, 0xb6, 0xff, 0x59, 0x7d, 0xcd, 0xff, 0x49, 0x6b, 0xba, 0xff, 0x62, 0x74, 0xf9, 0xff, 0x8d, 0xaa, 0xf6, 0xff, 0x8e, 0x93, 0xf7, 0xff, 0x4f, 0x52, 0xeb, 0xff, 0x2c, 0x2c, 0xf3, 0xff, 0x52, 0x50, 0xfc, 0xff, 0x2c, 0x2b, 0xd3, 0xff, 0x3b, 0x3a, 0xfc, 0xff, 0x65, 0x6a, 0xff, 0xff, 0x66, 0x6c, 0xff, 0xff, 0x65, 0x6c, 0xff, 0xff, 0x61, 0x69, 0xff, 0xff, 0x5c, 0x67, 0xff, 0xff, 0x60, 0x69, 0xff, 0xff, 0x66, 0x6a, 0xff, 0xff, 0x65, 0x69, 0xff, 0xff, 0x65, 0x6a, 0xff, 0xff, 0x65, 0x6b, 0xff, 0xff, 0x6b, 0x6d, 0xff, 0xff, 0x60, 0x5e, 0xff, 0xff, 0x3c, 0x3e, 0xf8, 0xff, 0x22, 0x35, 0x9c, 0xff, 0x22, 0x38, 0x5e, 0xff, 0x21, 0x32, 0x55, 0xff, 0x1c, 0x2b, 0x47, 0xff, 0x16, 0x21, 0x34, 0xff, 0x11, 0x1a, 0x28, 0xff, 0x11, 0x19, 0x25, 0xff, 0x11, 0x19, 0x24, 0xff, 0x10, 0x19, 0x24, 0xff, 0x10, 0x19, 0x24, 0xff, 0x11, 0x19, 0x25, 0xff, 0x10, 0x1b, 0x26, 0xff, 0x12, 0x1b, 0x28, 0xff, 0x11, 0x1b, 0x28, 0xff, 0x11, 0x1a, 0x27, 0xff, 0x10, 0x19, 0x25, 0xff, 0x10, 0x19, 0x23, 0xff, 0x10, 0x18, 0x21, 0xff, 0x10, 0x18, 0x20, 0xff, 0x0f, 0x16, 0x1e, 0xff, + 0x13, 0x1b, 0x1e, 0xff, 0x1d, 0x2c, 0x2b, 0xff, 0x2d, 0x48, 0x45, 0xff, 0x3b, 0x5e, 0x58, 0xff, 0x37, 0x5c, 0x62, 0xff, 0x39, 0x5f, 0x75, 0xff, 0x35, 0x5b, 0x75, 0xff, 0x31, 0x56, 0x70, 0xff, 0x2d, 0x4e, 0x68, 0xff, 0x27, 0x45, 0x59, 0xff, 0x25, 0x43, 0x56, 0xff, 0x26, 0x44, 0x55, 0xff, 0x24, 0x43, 0x52, 0xff, 0x22, 0x3d, 0x4e, 0xff, 0x21, 0x3a, 0x4f, 0xff, 0x21, 0x3a, 0x4e, 0xff, 0x23, 0x36, 0x4e, 0xff, 0x21, 0x33, 0x4b, 0xff, 0x20, 0x35, 0x5f, 0xff, 0x2a, 0x2b, 0xe0, 0xff, 0x11, 0x14, 0xa4, 0xff, 0x0f, 0x12, 0x9c, 0xff, 0x0f, 0x11, 0xa5, 0xff, 0x38, 0x39, 0xdf, 0xff, 0x4f, 0x4d, 0xf9, 0xff, 0x52, 0x4e, 0xff, 0xff, 0x4f, 0x48, 0xff, 0xff, 0x4b, 0x44, 0xff, 0xff, 0x43, 0x3d, 0xff, 0xff, 0x3c, 0x38, 0xf9, 0xff, 0x32, 0x2f, 0xed, 0xff, 0x29, 0x26, 0xe0, 0xff, 0x22, 0x22, 0xd4, 0xff, 0x1e, 0x1d, 0xcc, 0xff, 0x1d, 0x1c, 0xcb, 0xff, 0x19, 0x1a, 0xc4, 0xff, 0x13, 0x12, 0xaf, 0xff, 0x10, 0x12, 0x9f, 0xff, 0x1a, 0x1a, 0xae, 0xff, 0x54, 0x54, 0xec, 0xff, 0x5d, 0x53, 0xff, 0xff, 0x57, 0x52, 0xff, 0xff, 0x4c, 0x4d, 0xff, 0xff, 0x28, 0x25, 0xed, 0xff, 0x47, 0x4f, 0xe6, 0xff, 0x5f, 0x5c, 0xfd, 0xff, 0x6a, 0x65, 0xff, 0xff, 0x60, 0x68, 0xf3, 0xff, 0x48, 0x52, 0xf1, 0xff, 0x3b, 0x44, 0xbf, 0xff, 0x36, 0x41, 0xbc, 0xff, 0x41, 0x48, 0xbb, 0xff, 0x40, 0x52, 0xb7, 0xff, 0x37, 0x49, 0xb8, 0xff, 0x47, 0x56, 0xc4, 0xff, 0x49, 0x58, 0xc9, 0xff, 0x48, 0x63, 0xbe, 0xff, 0x31, 0x4e, 0xa8, 0xff, 0x48, 0x56, 0xe0, 0xff, 0x62, 0x67, 0xf8, 0xff, 0x5d, 0x5d, 0xf7, 0xff, 0x64, 0x62, 0xfd, 0xff, 0x53, 0x50, 0xe4, 0xff, 0x37, 0x35, 0xee, 0xff, 0x2f, 0x2c, 0xf5, 0xff, 0x39, 0x3b, 0xf7, 0xff, 0x65, 0x5c, 0xff, 0xff, 0x6d, 0x6e, 0xff, 0xff, 0x42, 0x3c, 0xff, 0xff, 0x41, 0x3a, 0xfc, 0xff, 0x53, 0x4d, 0xfa, 0xff, 0x62, 0x5e, 0xfe, 0xff, 0x64, 0x67, 0xff, 0xff, 0x5e, 0x66, 0xff, 0xff, 0x5d, 0x62, 0xff, 0xff, 0x63, 0x65, 0xff, 0xff, 0x53, 0x50, 0xff, 0xff, 0x1f, 0x1e, 0xd9, 0xff, 0x18, 0x18, 0xce, 0xff, 0x1d, 0x27, 0x97, 0xff, 0x28, 0x3f, 0x6e, 0xff, 0x24, 0x3c, 0x5d, 0xff, 0x22, 0x37, 0x5b, 0xff, 0x21, 0x32, 0x54, 0xff, 0x1b, 0x2a, 0x46, 0xff, 0x14, 0x20, 0x31, 0xff, 0x12, 0x1b, 0x29, 0xff, 0x12, 0x1b, 0x27, 0xff, 0x11, 0x1b, 0x27, 0xff, 0x11, 0x1a, 0x27, 0xff, 0x11, 0x1b, 0x26, 0xff, 0x12, 0x1b, 0x27, 0xff, 0x11, 0x1c, 0x29, 0xff, 0x12, 0x1b, 0x28, 0xff, 0x11, 0x1b, 0x27, 0xff, 0x11, 0x1a, 0x26, 0xff, 0x0f, 0x19, 0x21, 0xff, 0x0f, 0x17, 0x1e, 0xff, 0x0f, 0x16, 0x1d, 0xff, 0x0f, 0x15, 0x1a, 0xff, + 0x15, 0x1d, 0x21, 0xff, 0x25, 0x37, 0x38, 0xff, 0x33, 0x4e, 0x4c, 0xff, 0x33, 0x57, 0x51, 0xff, 0x32, 0x55, 0x56, 0xff, 0x34, 0x57, 0x6c, 0xff, 0x36, 0x5d, 0x77, 0xff, 0x34, 0x56, 0x6f, 0xff, 0x2f, 0x4f, 0x69, 0xff, 0x28, 0x45, 0x5a, 0xff, 0x24, 0x41, 0x55, 0xff, 0x22, 0x41, 0x56, 0xff, 0x22, 0x40, 0x50, 0xff, 0x23, 0x3b, 0x4d, 0xff, 0x22, 0x36, 0x4d, 0xff, 0x21, 0x39, 0x4c, 0xff, 0x22, 0x36, 0x4c, 0xff, 0x20, 0x34, 0x49, 0xff, 0x20, 0x32, 0x49, 0xff, 0x24, 0x30, 0x88, 0xff, 0x2f, 0x2f, 0xe9, 0xff, 0x1d, 0x1d, 0xcd, 0xff, 0x0c, 0x10, 0x9d, 0xff, 0x33, 0x36, 0xd7, 0xff, 0x42, 0x3e, 0xf4, 0xff, 0x42, 0x3e, 0xf1, 0xff, 0x53, 0x50, 0xfe, 0xff, 0x5e, 0x59, 0xff, 0xff, 0x61, 0x5d, 0xff, 0xff, 0x5f, 0x5b, 0xff, 0xff, 0x53, 0x4e, 0xff, 0xff, 0x4a, 0x46, 0xff, 0xff, 0x45, 0x41, 0xff, 0xff, 0x40, 0x3c, 0xfe, 0xff, 0x39, 0x35, 0xfa, 0xff, 0x30, 0x2e, 0xf1, 0xff, 0x3c, 0x39, 0xf1, 0xff, 0x30, 0x2e, 0xef, 0xff, 0x3a, 0x36, 0xfd, 0xff, 0x48, 0x43, 0xfe, 0xff, 0x56, 0x57, 0xff, 0xff, 0x60, 0x6b, 0xff, 0xff, 0x6e, 0x7f, 0xff, 0xff, 0x5b, 0x62, 0xff, 0xff, 0x62, 0x69, 0xff, 0xff, 0x48, 0x49, 0xfd, 0xff, 0x55, 0x55, 0xff, 0xff, 0x76, 0x77, 0xff, 0xff, 0x47, 0x49, 0xf5, 0xff, 0x4a, 0x4e, 0xdb, 0xff, 0x42, 0x48, 0xe6, 0xff, 0x43, 0x4a, 0xb7, 0xff, 0x49, 0x61, 0xc7, 0xff, 0x38, 0x4f, 0xad, 0xff, 0x24, 0x37, 0x8e, 0xff, 0x42, 0x5e, 0xc1, 0xff, 0x4e, 0x66, 0xc1, 0xff, 0x48, 0x52, 0xf0, 0xff, 0x4d, 0x58, 0xf2, 0xff, 0x6e, 0x73, 0xfd, 0xff, 0x61, 0x6d, 0xe8, 0xff, 0x3a, 0x37, 0xf5, 0xff, 0x38, 0x34, 0xff, 0xff, 0x55, 0x60, 0xfe, 0xff, 0x24, 0x21, 0xef, 0xff, 0x60, 0x66, 0xff, 0xff, 0x62, 0x73, 0xff, 0xff, 0x60, 0x6c, 0xff, 0xff, 0x66, 0x6d, 0xff, 0xff, 0x59, 0x56, 0xfe, 0xff, 0x2f, 0x2c, 0xf1, 0xff, 0x2a, 0x25, 0xe5, 0xff, 0x3b, 0x35, 0xed, 0xff, 0x56, 0x50, 0xf8, 0xff, 0x6c, 0x69, 0xff, 0xff, 0x67, 0x6a, 0xff, 0xff, 0x6e, 0x70, 0xff, 0xff, 0x5f, 0x5b, 0xf1, 0xff, 0x31, 0x34, 0xd6, 0xff, 0x39, 0x3a, 0xe4, 0xff, 0x52, 0x53, 0xff, 0xff, 0x23, 0x3b, 0x69, 0xff, 0x22, 0x39, 0x58, 0xff, 0x21, 0x35, 0x58, 0xff, 0x1f, 0x2d, 0x4d, 0xff, 0x19, 0x27, 0x39, 0xff, 0x14, 0x1f, 0x2b, 0xff, 0x12, 0x1c, 0x27, 0xff, 0x11, 0x1b, 0x27, 0xff, 0x11, 0x1b, 0x27, 0xff, 0x12, 0x1b, 0x27, 0xff, 0x12, 0x1c, 0x26, 0xff, 0x13, 0x1c, 0x29, 0xff, 0x11, 0x1c, 0x29, 0xff, 0x12, 0x1a, 0x26, 0xff, 0x10, 0x1a, 0x23, 0xff, 0x0f, 0x17, 0x20, 0xff, 0x0f, 0x16, 0x1b, 0xff, 0x0f, 0x15, 0x19, 0xff, 0x10, 0x14, 0x1a, 0xff, + 0x18, 0x22, 0x27, 0xff, 0x1c, 0x28, 0x2b, 0xff, 0x24, 0x36, 0x35, 0xff, 0x1f, 0x30, 0x2f, 0xff, 0x1d, 0x2c, 0x30, 0xff, 0x2d, 0x48, 0x5f, 0xff, 0x34, 0x56, 0x74, 0xff, 0x32, 0x54, 0x70, 0xff, 0x2e, 0x50, 0x68, 0xff, 0x29, 0x47, 0x59, 0xff, 0x25, 0x41, 0x54, 0xff, 0x23, 0x41, 0x55, 0xff, 0x23, 0x40, 0x52, 0xff, 0x24, 0x3b, 0x4d, 0xff, 0x22, 0x38, 0x4b, 0xff, 0x22, 0x36, 0x4b, 0xff, 0x21, 0x34, 0x4a, 0xff, 0x20, 0x33, 0x4a, 0xff, 0x21, 0x32, 0x4a, 0xff, 0x21, 0x2f, 0x4a, 0xff, 0x1e, 0x2f, 0x43, 0xff, 0x1e, 0x2e, 0x73, 0xff, 0x16, 0x21, 0x7b, 0xff, 0x16, 0x1c, 0x97, 0xff, 0x49, 0x46, 0xf9, 0xff, 0x31, 0x2e, 0xe5, 0xff, 0x1b, 0x1a, 0xce, 0xff, 0x15, 0x14, 0xc8, 0xff, 0x1b, 0x19, 0xd4, 0xff, 0x23, 0x20, 0xde, 0xff, 0x31, 0x2d, 0xea, 0xff, 0x3f, 0x3a, 0xf3, 0xff, 0x4b, 0x45, 0xfb, 0xff, 0x50, 0x49, 0xfd, 0xff, 0x52, 0x4a, 0xff, 0xff, 0x39, 0x34, 0xfa, 0xff, 0x32, 0x2c, 0xf6, 0xff, 0x4b, 0x45, 0xff, 0xff, 0x54, 0x52, 0xff, 0xff, 0x5f, 0x68, 0xff, 0xff, 0x62, 0x6e, 0xff, 0xff, 0x69, 0x6e, 0xff, 0xff, 0x57, 0x60, 0xfa, 0xff, 0x3f, 0x42, 0xe6, 0xff, 0x35, 0x36, 0xeb, 0xff, 0x6d, 0x6b, 0xf3, 0xff, 0x40, 0x3a, 0xfb, 0xff, 0x55, 0x57, 0xf7, 0xff, 0x5f, 0x5f, 0xf9, 0xff, 0x6b, 0x6c, 0xfa, 0xff, 0x6a, 0x6d, 0xff, 0xff, 0x54, 0x61, 0xee, 0xff, 0x4e, 0x58, 0xd6, 0xff, 0x42, 0x4d, 0xd7, 0xff, 0x4c, 0x63, 0xcf, 0xff, 0x4c, 0x61, 0xd8, 0xff, 0x6a, 0x75, 0xff, 0xff, 0x77, 0x87, 0xff, 0xff, 0x6b, 0x82, 0xfd, 0xff, 0x76, 0x80, 0xf9, 0xff, 0x31, 0x30, 0xfb, 0xff, 0x63, 0x6b, 0xfc, 0xff, 0x31, 0x30, 0xe8, 0xff, 0x48, 0x49, 0xfc, 0xff, 0x43, 0x39, 0xed, 0xff, 0x5a, 0x55, 0xfe, 0xff, 0x6f, 0x72, 0xff, 0xff, 0x6a, 0x70, 0xff, 0xff, 0x69, 0x6e, 0xff, 0xff, 0x66, 0x69, 0xff, 0xff, 0x6a, 0x69, 0xff, 0xff, 0x48, 0x45, 0xfb, 0xff, 0x2b, 0x26, 0xe8, 0xff, 0x26, 0x22, 0xdf, 0xff, 0x2f, 0x2b, 0xe5, 0xff, 0x50, 0x4c, 0xf7, 0xff, 0x67, 0x63, 0xff, 0xff, 0x81, 0x7c, 0xff, 0xff, 0x5c, 0x64, 0xf4, 0xff, 0x35, 0x49, 0xbf, 0xff, 0x23, 0x38, 0x77, 0xff, 0x23, 0x3a, 0x51, 0xff, 0x22, 0x39, 0x58, 0xff, 0x22, 0x35, 0x55, 0xff, 0x20, 0x30, 0x4d, 0xff, 0x1c, 0x29, 0x3d, 0xff, 0x14, 0x22, 0x2d, 0xff, 0x12, 0x1d, 0x26, 0xff, 0x11, 0x1b, 0x24, 0xff, 0x10, 0x1b, 0x25, 0xff, 0x11, 0x1a, 0x25, 0xff, 0x11, 0x1b, 0x25, 0xff, 0x11, 0x1b, 0x29, 0xff, 0x11, 0x1b, 0x27, 0xff, 0x10, 0x1a, 0x25, 0xff, 0x10, 0x19, 0x22, 0xff, 0x10, 0x18, 0x1e, 0xff, 0x10, 0x15, 0x1b, 0xff, 0x10, 0x14, 0x1a, 0xff, 0x0f, 0x13, 0x19, 0xff, + 0x16, 0x20, 0x26, 0xff, 0x18, 0x20, 0x26, 0xff, 0x18, 0x20, 0x22, 0xff, 0x18, 0x1e, 0x23, 0xff, 0x1a, 0x26, 0x2c, 0xff, 0x2a, 0x41, 0x56, 0xff, 0x33, 0x55, 0x74, 0xff, 0x35, 0x56, 0x73, 0xff, 0x32, 0x57, 0x72, 0xff, 0x2d, 0x4e, 0x64, 0xff, 0x27, 0x45, 0x56, 0xff, 0x24, 0x42, 0x52, 0xff, 0x22, 0x3e, 0x4f, 0xff, 0x23, 0x3a, 0x4e, 0xff, 0x21, 0x37, 0x4c, 0xff, 0x21, 0x36, 0x4a, 0xff, 0x21, 0x34, 0x48, 0xff, 0x21, 0x31, 0x46, 0xff, 0x1f, 0x30, 0x48, 0xff, 0x20, 0x30, 0x48, 0xff, 0x20, 0x2f, 0x49, 0xff, 0x1f, 0x2f, 0x4b, 0xff, 0x1e, 0x30, 0x4b, 0xff, 0x1e, 0x33, 0x48, 0xff, 0x1c, 0x30, 0x5b, 0xff, 0x45, 0x46, 0xeb, 0xff, 0x5e, 0x58, 0xff, 0xff, 0x50, 0x4a, 0xfc, 0xff, 0x3f, 0x3b, 0xef, 0xff, 0x34, 0x30, 0xe4, 0xff, 0x26, 0x24, 0xd8, 0xff, 0x1a, 0x19, 0xcc, 0xff, 0x15, 0x15, 0xc5, 0xff, 0x3e, 0x38, 0xf7, 0xff, 0x2c, 0x28, 0xf4, 0xff, 0x42, 0x3b, 0xf9, 0xff, 0x58, 0x53, 0xff, 0xff, 0x58, 0x57, 0xff, 0xff, 0x62, 0x68, 0xff, 0xff, 0x61, 0x67, 0xff, 0xff, 0x67, 0x6a, 0xff, 0xff, 0x48, 0x46, 0xf4, 0xff, 0x43, 0x41, 0xf6, 0xff, 0x30, 0x2e, 0xf8, 0xff, 0x4c, 0x49, 0xf7, 0xff, 0x36, 0x37, 0xe8, 0xff, 0x65, 0x62, 0xff, 0xff, 0x5a, 0x60, 0xfb, 0xff, 0x56, 0x52, 0xff, 0xff, 0x5e, 0x5f, 0xff, 0xff, 0x48, 0x4c, 0xfa, 0xff, 0x68, 0x68, 0xfc, 0xff, 0x62, 0x72, 0xf8, 0xff, 0x5f, 0x69, 0xff, 0xff, 0x89, 0x92, 0xff, 0xff, 0x65, 0x74, 0xf7, 0xff, 0x82, 0x89, 0xfe, 0xff, 0x7b, 0x82, 0xfc, 0xff, 0x6b, 0x6c, 0xfc, 0xff, 0x60, 0x70, 0xfe, 0xff, 0x2b, 0x29, 0xf4, 0xff, 0x3a, 0x36, 0xfb, 0xff, 0x26, 0x24, 0xec, 0xff, 0x5d, 0x61, 0xff, 0xff, 0x63, 0x6d, 0xff, 0xff, 0x82, 0x8b, 0xff, 0xff, 0x65, 0x6c, 0xff, 0xff, 0x60, 0x5a, 0xff, 0xff, 0x74, 0x70, 0xff, 0xff, 0x6d, 0x6c, 0xff, 0xff, 0x6f, 0x70, 0xff, 0xff, 0x71, 0x72, 0xff, 0xff, 0x66, 0x63, 0xff, 0xff, 0x48, 0x43, 0xfa, 0xff, 0x2b, 0x26, 0xe8, 0xff, 0x26, 0x23, 0xde, 0xff, 0x2a, 0x26, 0xe2, 0xff, 0x43, 0x3e, 0xf1, 0xff, 0x5b, 0x59, 0xe6, 0xff, 0x11, 0x1c, 0x20, 0xff, 0x20, 0x2e, 0x47, 0xff, 0x23, 0x3b, 0x55, 0xff, 0x24, 0x3b, 0x58, 0xff, 0x21, 0x38, 0x54, 0xff, 0x22, 0x34, 0x4d, 0xff, 0x1f, 0x30, 0x43, 0xff, 0x19, 0x27, 0x33, 0xff, 0x13, 0x1e, 0x25, 0xff, 0x11, 0x1b, 0x22, 0xff, 0x12, 0x19, 0x22, 0xff, 0x11, 0x1b, 0x23, 0xff, 0x11, 0x1a, 0x24, 0xff, 0x11, 0x1b, 0x24, 0xff, 0x10, 0x19, 0x24, 0xff, 0x10, 0x18, 0x21, 0xff, 0x0f, 0x17, 0x1e, 0xff, 0x10, 0x15, 0x1c, 0xff, 0x0f, 0x15, 0x19, 0xff, 0x0f, 0x14, 0x18, 0xff, 0x0f, 0x14, 0x18, 0xff, + 0x14, 0x1c, 0x21, 0xff, 0x14, 0x1c, 0x21, 0xff, 0x15, 0x1c, 0x1e, 0xff, 0x16, 0x1c, 0x1f, 0xff, 0x1b, 0x24, 0x2c, 0xff, 0x25, 0x39, 0x4b, 0xff, 0x33, 0x51, 0x6d, 0xff, 0x36, 0x58, 0x74, 0xff, 0x36, 0x59, 0x70, 0xff, 0x32, 0x52, 0x65, 0xff, 0x29, 0x47, 0x57, 0xff, 0x25, 0x42, 0x51, 0xff, 0x23, 0x3d, 0x4f, 0xff, 0x23, 0x3a, 0x4e, 0xff, 0x22, 0x36, 0x4d, 0xff, 0x22, 0x34, 0x49, 0xff, 0x21, 0x32, 0x49, 0xff, 0x1f, 0x31, 0x47, 0xff, 0x20, 0x31, 0x48, 0xff, 0x1f, 0x30, 0x49, 0xff, 0x20, 0x30, 0x48, 0xff, 0x20, 0x31, 0x46, 0xff, 0x1d, 0x30, 0x46, 0xff, 0x1f, 0x32, 0x48, 0xff, 0x1f, 0x31, 0x4a, 0xff, 0x1c, 0x2e, 0x4a, 0xff, 0x38, 0x42, 0xae, 0xff, 0x67, 0x64, 0xff, 0xff, 0x72, 0x72, 0xff, 0xff, 0x6a, 0x68, 0xff, 0xff, 0x6a, 0x68, 0xff, 0xff, 0x69, 0x66, 0xff, 0xff, 0x62, 0x5f, 0xff, 0xff, 0x43, 0x3d, 0xfb, 0xff, 0x54, 0x4c, 0xff, 0xff, 0x5c, 0x57, 0xff, 0xff, 0x60, 0x60, 0xff, 0xff, 0x65, 0x68, 0xff, 0xff, 0x66, 0x68, 0xff, 0xff, 0x57, 0x5a, 0xff, 0xff, 0x2e, 0x2c, 0xec, 0xff, 0x2b, 0x26, 0xe3, 0xff, 0x23, 0x1e, 0xe0, 0xff, 0x5e, 0x5c, 0xf5, 0xff, 0x49, 0x4f, 0xfd, 0xff, 0x71, 0x83, 0xff, 0xff, 0x28, 0x26, 0xf3, 0xff, 0x61, 0x6e, 0xf2, 0xff, 0x7f, 0x8b, 0xfe, 0xff, 0x7b, 0x7e, 0xff, 0xff, 0x63, 0x63, 0xff, 0xff, 0x7a, 0x86, 0xff, 0xff, 0x5e, 0x5c, 0xff, 0xff, 0x6d, 0x6c, 0xf9, 0xff, 0x7e, 0x84, 0xff, 0xff, 0x70, 0x73, 0xfd, 0xff, 0x61, 0x6e, 0xfb, 0xff, 0x63, 0x72, 0xff, 0xff, 0x34, 0x31, 0xff, 0xff, 0x58, 0x5f, 0xfe, 0xff, 0x47, 0x45, 0xfd, 0xff, 0x42, 0x47, 0xf8, 0xff, 0x65, 0x5e, 0xfd, 0xff, 0x6a, 0x80, 0xff, 0xff, 0x66, 0x75, 0xff, 0xff, 0x72, 0x72, 0xff, 0xff, 0x65, 0x77, 0xff, 0xff, 0x69, 0x72, 0xff, 0xff, 0x51, 0x4d, 0xff, 0xff, 0x65, 0x5f, 0xff, 0xff, 0x75, 0x73, 0xff, 0xff, 0x72, 0x73, 0xff, 0xff, 0x7c, 0x7c, 0xff, 0xff, 0x68, 0x69, 0xff, 0xff, 0x62, 0x5f, 0xff, 0xff, 0x4f, 0x48, 0xfa, 0xff, 0x32, 0x2d, 0xe9, 0xff, 0x20, 0x1e, 0xd9, 0xff, 0x55, 0x56, 0xf9, 0xff, 0x0b, 0x14, 0x2d, 0xff, 0x1b, 0x29, 0x3c, 0xff, 0x23, 0x37, 0x52, 0xff, 0x25, 0x3b, 0x57, 0xff, 0x25, 0x38, 0x55, 0xff, 0x25, 0x3a, 0x51, 0xff, 0x23, 0x35, 0x49, 0xff, 0x1c, 0x2e, 0x3d, 0xff, 0x16, 0x23, 0x2d, 0xff, 0x12, 0x1c, 0x22, 0xff, 0x11, 0x1b, 0x1f, 0xff, 0x11, 0x1a, 0x20, 0xff, 0x12, 0x1a, 0x21, 0xff, 0x11, 0x19, 0x20, 0xff, 0x10, 0x17, 0x1f, 0xff, 0x10, 0x17, 0x1e, 0xff, 0x10, 0x16, 0x1b, 0xff, 0x0e, 0x15, 0x19, 0xff, 0x10, 0x14, 0x18, 0xff, 0x0f, 0x14, 0x17, 0xff, 0x0d, 0x12, 0x15, 0xff, + 0x14, 0x1b, 0x20, 0xff, 0x14, 0x1c, 0x21, 0xff, 0x14, 0x1b, 0x1c, 0xff, 0x13, 0x18, 0x1a, 0xff, 0x18, 0x22, 0x24, 0xff, 0x20, 0x31, 0x36, 0xff, 0x2e, 0x49, 0x5c, 0xff, 0x36, 0x54, 0x6e, 0xff, 0x36, 0x57, 0x6d, 0xff, 0x31, 0x52, 0x64, 0xff, 0x29, 0x48, 0x57, 0xff, 0x25, 0x42, 0x50, 0xff, 0x24, 0x3b, 0x4e, 0xff, 0x23, 0x37, 0x4e, 0xff, 0x23, 0x35, 0x4d, 0xff, 0x21, 0x33, 0x4a, 0xff, 0x20, 0x32, 0x47, 0xff, 0x1f, 0x32, 0x46, 0xff, 0x21, 0x32, 0x4b, 0xff, 0x20, 0x31, 0x4a, 0xff, 0x20, 0x2f, 0x48, 0xff, 0x1f, 0x30, 0x46, 0xff, 0x1f, 0x30, 0x46, 0xff, 0x1e, 0x31, 0x48, 0xff, 0x1d, 0x2f, 0x4b, 0xff, 0x1c, 0x28, 0x89, 0xff, 0x1d, 0x1e, 0xd5, 0xff, 0x21, 0x20, 0xdf, 0xff, 0x44, 0x43, 0xfb, 0xff, 0x61, 0x62, 0xff, 0xff, 0x5f, 0x5d, 0xff, 0xff, 0x61, 0x62, 0xff, 0xff, 0x5a, 0x5a, 0xff, 0xff, 0x48, 0x48, 0xfe, 0xff, 0x5f, 0x5c, 0xff, 0xff, 0x69, 0x6b, 0xff, 0xff, 0x69, 0x69, 0xff, 0xff, 0x53, 0x53, 0xfc, 0xff, 0x31, 0x2e, 0xec, 0xff, 0x1a, 0x18, 0xcc, 0xff, 0x1e, 0x1d, 0xd1, 0xff, 0x1e, 0x1c, 0xce, 0xff, 0x22, 0x22, 0xd7, 0xff, 0x4d, 0x4f, 0xff, 0xff, 0x60, 0x76, 0xff, 0xff, 0x47, 0x4b, 0xf0, 0xff, 0x27, 0x27, 0xeb, 0xff, 0x41, 0x42, 0xec, 0xff, 0x42, 0x55, 0xfb, 0xff, 0x61, 0x5b, 0xff, 0xff, 0x61, 0x5e, 0xff, 0xff, 0x4c, 0x51, 0xff, 0xff, 0x5c, 0x60, 0xff, 0xff, 0x5a, 0x65, 0xff, 0xff, 0x6e, 0x6a, 0xfe, 0xff, 0x76, 0x75, 0xff, 0xff, 0x68, 0x6e, 0xff, 0xff, 0x60, 0x5e, 0xe9, 0xff, 0x46, 0x44, 0xfc, 0xff, 0x34, 0x35, 0xf8, 0xff, 0x43, 0x43, 0xf9, 0xff, 0x65, 0x8c, 0xff, 0xff, 0x79, 0x88, 0xff, 0xff, 0x76, 0x81, 0xff, 0xff, 0x61, 0x74, 0xff, 0xff, 0x65, 0x72, 0xff, 0xff, 0x73, 0x6f, 0xff, 0xff, 0x66, 0x74, 0xff, 0xff, 0x6a, 0x72, 0xff, 0xff, 0x55, 0x52, 0xfe, 0xff, 0x4d, 0x46, 0xfd, 0xff, 0x7e, 0x7b, 0xff, 0xff, 0x77, 0x77, 0xff, 0xff, 0x88, 0x89, 0xff, 0xff, 0x63, 0x6c, 0xff, 0xff, 0x61, 0x67, 0xff, 0xff, 0x63, 0x61, 0xff, 0xff, 0x64, 0x5c, 0xff, 0xff, 0x44, 0x48, 0xf0, 0xff, 0x0e, 0x16, 0x27, 0xff, 0x15, 0x21, 0x2e, 0xff, 0x1f, 0x30, 0x46, 0xff, 0x23, 0x36, 0x4f, 0xff, 0x24, 0x38, 0x50, 0xff, 0x24, 0x38, 0x4c, 0xff, 0x23, 0x34, 0x4a, 0xff, 0x1e, 0x30, 0x42, 0xff, 0x18, 0x27, 0x34, 0xff, 0x14, 0x1f, 0x26, 0xff, 0x11, 0x1b, 0x21, 0xff, 0x12, 0x19, 0x20, 0xff, 0x10, 0x1a, 0x1f, 0xff, 0x11, 0x19, 0x1f, 0xff, 0x0f, 0x18, 0x1d, 0xff, 0x10, 0x16, 0x1b, 0xff, 0x10, 0x16, 0x1a, 0xff, 0x10, 0x15, 0x19, 0xff, 0x10, 0x14, 0x18, 0xff, 0x0e, 0x12, 0x14, 0xff, 0x0f, 0x11, 0x11, 0xff, + 0x16, 0x1e, 0x20, 0xff, 0x14, 0x1d, 0x1e, 0xff, 0x15, 0x1f, 0x1f, 0xff, 0x15, 0x1f, 0x1f, 0xff, 0x16, 0x20, 0x20, 0xff, 0x1a, 0x27, 0x26, 0xff, 0x29, 0x3f, 0x4e, 0xff, 0x35, 0x52, 0x6c, 0xff, 0x37, 0x58, 0x6d, 0xff, 0x33, 0x55, 0x6b, 0xff, 0x2b, 0x4b, 0x5c, 0xff, 0x26, 0x42, 0x52, 0xff, 0x24, 0x3b, 0x4e, 0xff, 0x23, 0x36, 0x4e, 0xff, 0x22, 0x33, 0x4a, 0xff, 0x22, 0x32, 0x4a, 0xff, 0x21, 0x32, 0x48, 0xff, 0x20, 0x32, 0x46, 0xff, 0x20, 0x32, 0x4a, 0xff, 0x1e, 0x30, 0x4a, 0xff, 0x1e, 0x2e, 0x46, 0xff, 0x1e, 0x2e, 0x47, 0xff, 0x1a, 0x2b, 0x44, 0xff, 0x30, 0x3a, 0xa0, 0xff, 0x49, 0x50, 0xf4, 0xff, 0x48, 0x4e, 0xff, 0xff, 0x51, 0x58, 0xff, 0xff, 0x5d, 0x65, 0xff, 0xff, 0x63, 0x68, 0xff, 0xff, 0x39, 0x3f, 0xe3, 0xff, 0x0f, 0x19, 0xbc, 0xff, 0x1a, 0x2b, 0x8e, 0xff, 0x1f, 0x22, 0xc1, 0xff, 0x0f, 0x11, 0x85, 0xff, 0x14, 0x16, 0x95, 0xff, 0x1a, 0x1d, 0x97, 0xff, 0x1b, 0x1b, 0xb4, 0xff, 0x18, 0x19, 0xc7, 0xff, 0x17, 0x17, 0xc1, 0xff, 0x1d, 0x1c, 0xce, 0xff, 0x14, 0x15, 0xb6, 0xff, 0x28, 0x28, 0xdb, 0xff, 0x59, 0x56, 0xff, 0xff, 0x5b, 0x63, 0xff, 0xff, 0x52, 0x5f, 0xfa, 0xff, 0x3f, 0x47, 0xfc, 0xff, 0x73, 0x75, 0xff, 0xff, 0x7c, 0x92, 0xff, 0xff, 0x31, 0x33, 0xed, 0xff, 0x41, 0x44, 0xf6, 0xff, 0x23, 0x23, 0xd6, 0xff, 0x49, 0x47, 0xf7, 0xff, 0x6f, 0x72, 0xff, 0xff, 0x85, 0x86, 0xf6, 0xff, 0x39, 0x34, 0xec, 0xff, 0x20, 0x20, 0xde, 0xff, 0x24, 0x21, 0xe9, 0xff, 0x39, 0x38, 0xf1, 0xff, 0x52, 0x55, 0xfc, 0xff, 0x5f, 0x61, 0xfc, 0xff, 0x60, 0x78, 0xff, 0xff, 0x65, 0x84, 0xff, 0xff, 0x5f, 0x76, 0xff, 0xff, 0x6e, 0x7b, 0xff, 0xff, 0x7c, 0x7f, 0xff, 0xff, 0x60, 0x6e, 0xff, 0xff, 0x67, 0x71, 0xff, 0xff, 0x6f, 0x6a, 0xff, 0xff, 0x68, 0x78, 0xff, 0xff, 0x69, 0x6e, 0xff, 0xff, 0x64, 0x61, 0xfe, 0xff, 0x42, 0x3b, 0xfa, 0xff, 0x7b, 0x79, 0xff, 0xff, 0x89, 0x88, 0xff, 0xff, 0x7b, 0x7a, 0xff, 0xff, 0x61, 0x67, 0xff, 0xff, 0x64, 0x6c, 0xff, 0xff, 0x6d, 0x6f, 0xff, 0xff, 0x36, 0x39, 0xc2, 0xff, 0x0f, 0x15, 0x18, 0xff, 0x12, 0x1b, 0x27, 0xff, 0x1b, 0x27, 0x38, 0xff, 0x21, 0x31, 0x43, 0xff, 0x21, 0x30, 0x3f, 0xff, 0x1f, 0x2f, 0x3c, 0xff, 0x1b, 0x2c, 0x39, 0xff, 0x1b, 0x2a, 0x38, 0xff, 0x19, 0x26, 0x32, 0xff, 0x13, 0x1f, 0x26, 0xff, 0x10, 0x1a, 0x21, 0xff, 0x10, 0x19, 0x1e, 0xff, 0x10, 0x18, 0x1f, 0xff, 0x10, 0x18, 0x1d, 0xff, 0x10, 0x16, 0x1b, 0xff, 0x10, 0x15, 0x19, 0xff, 0x0f, 0x14, 0x18, 0xff, 0x0f, 0x14, 0x17, 0xff, 0x0f, 0x13, 0x17, 0xff, 0x0d, 0x11, 0x13, 0xff, 0x0d, 0x11, 0x12, 0xff, + 0x15, 0x1f, 0x20, 0xff, 0x15, 0x1f, 0x21, 0xff, 0x16, 0x23, 0x23, 0xff, 0x17, 0x20, 0x22, 0xff, 0x16, 0x1d, 0x1f, 0xff, 0x14, 0x1d, 0x1f, 0xff, 0x21, 0x32, 0x3e, 0xff, 0x34, 0x51, 0x67, 0xff, 0x37, 0x57, 0x6c, 0xff, 0x34, 0x52, 0x65, 0xff, 0x2e, 0x4c, 0x5c, 0xff, 0x29, 0x44, 0x55, 0xff, 0x26, 0x3d, 0x51, 0xff, 0x23, 0x37, 0x4f, 0xff, 0x22, 0x33, 0x4c, 0xff, 0x23, 0x32, 0x4b, 0xff, 0x21, 0x33, 0x47, 0xff, 0x21, 0x33, 0x48, 0xff, 0x20, 0x34, 0x4b, 0xff, 0x1f, 0x30, 0x4a, 0xff, 0x1e, 0x2f, 0x48, 0xff, 0x1f, 0x2e, 0x5c, 0xff, 0x48, 0x4c, 0xeb, 0xff, 0x56, 0x5e, 0xff, 0xff, 0x57, 0x63, 0xff, 0xff, 0x5a, 0x64, 0xff, 0xff, 0x57, 0x60, 0xfd, 0xff, 0x37, 0x3f, 0xea, 0xff, 0x13, 0x1d, 0xc3, 0xff, 0x15, 0x22, 0x8c, 0xff, 0x24, 0x38, 0x54, 0xff, 0x43, 0x56, 0x9a, 0xff, 0x27, 0x39, 0xd2, 0xff, 0x28, 0x2e, 0xad, 0xff, 0x0c, 0x0e, 0x5d, 0xff, 0x28, 0x28, 0xbd, 0xff, 0x18, 0x17, 0xc5, 0xff, 0x1a, 0x19, 0xc7, 0xff, 0x1a, 0x1a, 0xc1, 0xff, 0x13, 0x12, 0xab, 0xff, 0x35, 0x32, 0xeb, 0xff, 0x53, 0x4e, 0xff, 0xff, 0x5b, 0x5d, 0xff, 0xff, 0x54, 0x60, 0xfc, 0xff, 0x4a, 0x4a, 0xf4, 0xff, 0x8e, 0x9e, 0xff, 0xff, 0x80, 0x8f, 0xff, 0xff, 0x3d, 0x3b, 0xf6, 0xff, 0x24, 0x25, 0xdd, 0xff, 0x2b, 0x2a, 0xec, 0xff, 0x36, 0x39, 0xc1, 0xff, 0x2e, 0x2c, 0xe4, 0xff, 0x45, 0x43, 0xe7, 0xff, 0x10, 0x11, 0xb9, 0xff, 0x1f, 0x1f, 0xdd, 0xff, 0x20, 0x1f, 0xd2, 0xff, 0x25, 0x24, 0xdd, 0xff, 0x6a, 0x73, 0xff, 0xff, 0x79, 0x8c, 0xff, 0xff, 0x77, 0x88, 0xfe, 0xff, 0x60, 0x83, 0xff, 0xff, 0x67, 0x7f, 0xff, 0xff, 0x65, 0x77, 0xff, 0xff, 0x6a, 0x7a, 0xff, 0xff, 0x75, 0x76, 0xff, 0xff, 0x71, 0x73, 0xff, 0xff, 0x5e, 0x6c, 0xff, 0xff, 0x70, 0x75, 0xff, 0xff, 0x76, 0x78, 0xff, 0xff, 0x64, 0x72, 0xff, 0xff, 0x66, 0x6d, 0xff, 0xff, 0x69, 0x69, 0xff, 0xff, 0x40, 0x3a, 0xf8, 0xff, 0x88, 0x85, 0xff, 0xff, 0x7e, 0x7a, 0xff, 0xff, 0x66, 0x61, 0xff, 0xff, 0x68, 0x65, 0xff, 0xff, 0x67, 0x66, 0xff, 0xff, 0x4c, 0x4b, 0xe3, 0xff, 0x0a, 0x10, 0x14, 0xff, 0x11, 0x18, 0x21, 0xff, 0x18, 0x24, 0x30, 0xff, 0x1e, 0x2d, 0x3b, 0xff, 0x1d, 0x2b, 0x33, 0xff, 0x1a, 0x27, 0x2e, 0xff, 0x1a, 0x27, 0x2f, 0xff, 0x18, 0x24, 0x2e, 0xff, 0x16, 0x21, 0x28, 0xff, 0x12, 0x1c, 0x23, 0xff, 0x11, 0x19, 0x1f, 0xff, 0x10, 0x18, 0x1e, 0xff, 0x11, 0x17, 0x1c, 0xff, 0x0f, 0x16, 0x1a, 0xff, 0x10, 0x16, 0x19, 0xff, 0x10, 0x15, 0x17, 0xff, 0x0f, 0x14, 0x17, 0xff, 0x0f, 0x12, 0x16, 0xff, 0x0e, 0x12, 0x14, 0xff, 0x0d, 0x12, 0x12, 0xff, 0x0e, 0x11, 0x11, 0xff, + 0x15, 0x1f, 0x1f, 0xff, 0x15, 0x1f, 0x21, 0xff, 0x17, 0x20, 0x25, 0xff, 0x16, 0x1f, 0x24, 0xff, 0x18, 0x20, 0x23, 0xff, 0x17, 0x1e, 0x22, 0xff, 0x1b, 0x29, 0x2f, 0xff, 0x2f, 0x47, 0x5b, 0xff, 0x35, 0x53, 0x67, 0xff, 0x33, 0x52, 0x61, 0xff, 0x2e, 0x4b, 0x5d, 0xff, 0x2a, 0x42, 0x57, 0xff, 0x27, 0x3b, 0x53, 0xff, 0x23, 0x37, 0x51, 0xff, 0x22, 0x33, 0x4d, 0xff, 0x23, 0x34, 0x4a, 0xff, 0x20, 0x34, 0x47, 0xff, 0x21, 0x34, 0x47, 0xff, 0x21, 0x35, 0x4a, 0xff, 0x20, 0x32, 0x48, 0xff, 0x1c, 0x2e, 0x3e, 0xff, 0x44, 0x4b, 0xe2, 0xff, 0x4d, 0x4f, 0xff, 0xff, 0x43, 0x4b, 0xf7, 0xff, 0x35, 0x40, 0xed, 0xff, 0x24, 0x30, 0xe4, 0xff, 0x16, 0x24, 0xbd, 0xff, 0x1a, 0x28, 0x7d, 0xff, 0x1c, 0x2c, 0x4c, 0xff, 0x1d, 0x2b, 0x3f, 0xff, 0x32, 0x51, 0x5c, 0xff, 0x3d, 0x51, 0xb6, 0xff, 0x6f, 0x90, 0xff, 0xff, 0x3c, 0x46, 0xbd, 0xff, 0x42, 0x41, 0xe4, 0xff, 0x17, 0x17, 0xc6, 0xff, 0x1e, 0x1d, 0xcf, 0xff, 0x14, 0x15, 0xae, 0xff, 0x19, 0x18, 0xb8, 0xff, 0x42, 0x3e, 0xf8, 0xff, 0x47, 0x42, 0xfe, 0xff, 0x5c, 0x5c, 0xff, 0xff, 0x57, 0x5d, 0xfd, 0xff, 0x21, 0x1f, 0xde, 0xff, 0x50, 0x5d, 0xff, 0xff, 0x80, 0x90, 0xff, 0xff, 0x4d, 0x4d, 0xf5, 0xff, 0x1b, 0x19, 0xd3, 0xff, 0x45, 0x47, 0xff, 0xff, 0x30, 0x30, 0xf7, 0xff, 0x50, 0x53, 0xfa, 0xff, 0x4b, 0x4d, 0xf6, 0xff, 0x16, 0x15, 0xd2, 0xff, 0x53, 0x55, 0xfa, 0xff, 0x27, 0x26, 0xe2, 0xff, 0x19, 0x18, 0xc1, 0xff, 0x37, 0x37, 0xe9, 0xff, 0x67, 0x73, 0xff, 0xff, 0x73, 0x88, 0xff, 0xff, 0x64, 0x79, 0xff, 0xff, 0x65, 0x7d, 0xff, 0xff, 0x72, 0x80, 0xff, 0xff, 0x66, 0x78, 0xff, 0xff, 0x66, 0x6e, 0xff, 0xff, 0x77, 0x7b, 0xff, 0xff, 0x7d, 0x7b, 0xff, 0xff, 0x64, 0x6c, 0xff, 0xff, 0x60, 0x6c, 0xff, 0xff, 0x80, 0x83, 0xff, 0xff, 0x64, 0x6e, 0xff, 0xff, 0x69, 0x72, 0xff, 0xff, 0x67, 0x6e, 0xff, 0xff, 0x64, 0x66, 0xfe, 0xff, 0x48, 0x3f, 0xfa, 0xff, 0x6b, 0x68, 0xfc, 0xff, 0x43, 0x40, 0xc7, 0xff, 0x4a, 0x46, 0xe3, 0xff, 0x25, 0x25, 0x8f, 0xff, 0x0c, 0x11, 0x1b, 0xff, 0x0f, 0x15, 0x1c, 0xff, 0x0f, 0x17, 0x1e, 0xff, 0x16, 0x21, 0x2a, 0xff, 0x1d, 0x2b, 0x36, 0xff, 0x1b, 0x2a, 0x32, 0xff, 0x1a, 0x27, 0x2d, 0xff, 0x18, 0x26, 0x2e, 0xff, 0x17, 0x23, 0x2b, 0xff, 0x14, 0x1f, 0x26, 0xff, 0x12, 0x1c, 0x22, 0xff, 0x11, 0x19, 0x1f, 0xff, 0x11, 0x16, 0x1c, 0xff, 0x10, 0x15, 0x1b, 0xff, 0x10, 0x15, 0x19, 0xff, 0x11, 0x16, 0x19, 0xff, 0x0f, 0x14, 0x17, 0xff, 0x0e, 0x13, 0x17, 0xff, 0x0d, 0x12, 0x13, 0xff, 0x0d, 0x10, 0x12, 0xff, 0x0e, 0x10, 0x11, 0xff, 0x0e, 0x10, 0x11, 0xff, + 0x14, 0x1b, 0x28, 0xff, 0x15, 0x1d, 0x24, 0xff, 0x14, 0x1b, 0x22, 0xff, 0x14, 0x1b, 0x1e, 0xff, 0x17, 0x1e, 0x23, 0xff, 0x18, 0x21, 0x25, 0xff, 0x1c, 0x27, 0x2c, 0xff, 0x2b, 0x40, 0x4e, 0xff, 0x35, 0x50, 0x62, 0xff, 0x31, 0x50, 0x61, 0xff, 0x2e, 0x4c, 0x5c, 0xff, 0x28, 0x43, 0x54, 0xff, 0x26, 0x3a, 0x4f, 0xff, 0x24, 0x35, 0x4d, 0xff, 0x23, 0x35, 0x4d, 0xff, 0x21, 0x35, 0x4c, 0xff, 0x23, 0x35, 0x48, 0xff, 0x21, 0x34, 0x4a, 0xff, 0x21, 0x33, 0x4a, 0xff, 0x1f, 0x31, 0x46, 0xff, 0x20, 0x30, 0x45, 0xff, 0x1d, 0x2e, 0x3f, 0xff, 0x1b, 0x2c, 0x5e, 0xff, 0x1b, 0x2c, 0x72, 0xff, 0x1c, 0x2d, 0x71, 0xff, 0x1d, 0x2e, 0x53, 0xff, 0x1d, 0x2e, 0x3e, 0xff, 0x1f, 0x2e, 0x45, 0xff, 0x1e, 0x2d, 0x43, 0xff, 0x2d, 0x49, 0x57, 0xff, 0x57, 0x90, 0x89, 0xff, 0x3d, 0x74, 0xa9, 0xff, 0x5f, 0x71, 0xff, 0xff, 0x53, 0x50, 0xfa, 0xff, 0x19, 0x18, 0xce, 0xff, 0x1f, 0x1d, 0xcc, 0xff, 0x11, 0x12, 0xa5, 0xff, 0x23, 0x22, 0xce, 0xff, 0x4c, 0x48, 0xff, 0xff, 0x3f, 0x39, 0xfa, 0xff, 0x55, 0x51, 0xff, 0xff, 0x57, 0x5d, 0xfe, 0xff, 0x1c, 0x1b, 0xce, 0xff, 0x4a, 0x4e, 0xfc, 0xff, 0x78, 0x8c, 0xff, 0xff, 0x69, 0x70, 0xfa, 0xff, 0x1a, 0x18, 0xd2, 0xff, 0x39, 0x3d, 0xef, 0xff, 0x65, 0x68, 0xff, 0xff, 0x5d, 0x66, 0xff, 0xff, 0x68, 0x6e, 0xfe, 0xff, 0x1f, 0x1c, 0xe1, 0xff, 0x6b, 0x6b, 0xff, 0xff, 0x4e, 0x4f, 0xff, 0xff, 0x5b, 0x55, 0xfc, 0xff, 0x3c, 0x3e, 0xf6, 0xff, 0x63, 0x64, 0xff, 0xff, 0x61, 0x6c, 0xff, 0xff, 0x74, 0x7d, 0xff, 0xff, 0x67, 0x82, 0xff, 0xff, 0x63, 0x74, 0xff, 0xff, 0x77, 0x7f, 0xff, 0xff, 0x62, 0x74, 0xff, 0xff, 0x71, 0x77, 0xff, 0xff, 0x6b, 0x72, 0xff, 0xff, 0x6f, 0x6f, 0xff, 0xff, 0x7d, 0x7d, 0xff, 0xff, 0x64, 0x6e, 0xff, 0xff, 0x6e, 0x77, 0xff, 0xff, 0x64, 0x67, 0xff, 0xff, 0x63, 0x6d, 0xff, 0xff, 0x67, 0x72, 0xff, 0xff, 0x67, 0x6c, 0xff, 0xff, 0x5e, 0x60, 0xff, 0xff, 0x4b, 0x4e, 0xf5, 0xff, 0x09, 0x0e, 0x0a, 0xff, 0x0b, 0x10, 0x0d, 0xff, 0x0e, 0x11, 0x15, 0xff, 0x0f, 0x13, 0x18, 0xff, 0x10, 0x14, 0x19, 0xff, 0x10, 0x14, 0x1a, 0xff, 0x12, 0x1b, 0x21, 0xff, 0x18, 0x26, 0x2e, 0xff, 0x1b, 0x28, 0x32, 0xff, 0x1a, 0x27, 0x30, 0xff, 0x19, 0x26, 0x2e, 0xff, 0x17, 0x23, 0x2a, 0xff, 0x16, 0x21, 0x28, 0xff, 0x14, 0x1f, 0x23, 0xff, 0x11, 0x19, 0x1e, 0xff, 0x10, 0x16, 0x1a, 0xff, 0x10, 0x15, 0x19, 0xff, 0x10, 0x16, 0x19, 0xff, 0x0f, 0x14, 0x17, 0xff, 0x0e, 0x12, 0x15, 0xff, 0x0d, 0x11, 0x11, 0xff, 0x0e, 0x12, 0x14, 0xff, 0x0e, 0x12, 0x14, 0xff, 0x0f, 0x13, 0x14, 0xff, 0x11, 0x15, 0x16, 0xff, + 0x13, 0x1a, 0x2b, 0xff, 0x11, 0x17, 0x21, 0xff, 0x0f, 0x14, 0x19, 0xff, 0x0f, 0x12, 0x15, 0xff, 0x13, 0x18, 0x1a, 0xff, 0x18, 0x20, 0x24, 0xff, 0x1c, 0x24, 0x2a, 0xff, 0x26, 0x38, 0x42, 0xff, 0x35, 0x51, 0x60, 0xff, 0x34, 0x51, 0x62, 0xff, 0x2e, 0x4a, 0x5b, 0xff, 0x28, 0x42, 0x54, 0xff, 0x24, 0x3b, 0x4f, 0xff, 0x24, 0x36, 0x4c, 0xff, 0x23, 0x36, 0x4b, 0xff, 0x23, 0x35, 0x4d, 0xff, 0x24, 0x35, 0x4c, 0xff, 0x22, 0x35, 0x4b, 0xff, 0x21, 0x34, 0x4c, 0xff, 0x20, 0x31, 0x47, 0xff, 0x1e, 0x30, 0x42, 0xff, 0x1e, 0x30, 0x42, 0xff, 0x1f, 0x30, 0x46, 0xff, 0x1f, 0x2f, 0x46, 0xff, 0x1f, 0x2f, 0x46, 0xff, 0x1e, 0x2e, 0x44, 0xff, 0x1e, 0x2c, 0x43, 0xff, 0x1e, 0x2c, 0x41, 0xff, 0x1c, 0x2d, 0x40, 0xff, 0x54, 0x7d, 0x82, 0xff, 0x4c, 0x96, 0x79, 0xff, 0x39, 0x93, 0x64, 0xff, 0x50, 0x5c, 0xe9, 0xff, 0x20, 0x1e, 0xd8, 0xff, 0x1d, 0x1d, 0xcc, 0xff, 0x11, 0x12, 0xa9, 0xff, 0x36, 0x33, 0xe6, 0xff, 0x4e, 0x47, 0xff, 0xff, 0x3e, 0x38, 0xf6, 0xff, 0x4f, 0x4c, 0xfe, 0xff, 0x55, 0x58, 0xfe, 0xff, 0x1a, 0x19, 0xc4, 0xff, 0x3a, 0x39, 0xf4, 0xff, 0x72, 0x78, 0xff, 0xff, 0x7b, 0x8b, 0xfb, 0xff, 0x26, 0x2a, 0xe9, 0xff, 0x34, 0x32, 0xee, 0xff, 0x5f, 0x62, 0xfe, 0xff, 0x61, 0x65, 0xff, 0xff, 0x5c, 0x5e, 0xfe, 0xff, 0x27, 0x24, 0xe3, 0xff, 0x3a, 0x39, 0xf3, 0xff, 0x8c, 0xa1, 0xff, 0xff, 0x4d, 0x4e, 0xff, 0xff, 0x84, 0x84, 0xfc, 0xff, 0x50, 0x5d, 0xff, 0xff, 0x70, 0x7e, 0xff, 0xff, 0x5f, 0x6e, 0xff, 0xff, 0x75, 0x7d, 0xff, 0xff, 0x62, 0x77, 0xff, 0xff, 0x6a, 0x77, 0xff, 0xff, 0x6e, 0x74, 0xff, 0xff, 0x6d, 0x7d, 0xff, 0xff, 0x75, 0x7e, 0xff, 0xff, 0x62, 0x6b, 0xff, 0xff, 0x74, 0x7d, 0xff, 0xff, 0x73, 0x70, 0xff, 0xff, 0x7d, 0x82, 0xff, 0xff, 0x54, 0x5c, 0xff, 0xff, 0x49, 0x44, 0xfe, 0xff, 0x66, 0x6c, 0xff, 0xff, 0x63, 0x6e, 0xff, 0xff, 0x69, 0x73, 0xff, 0xff, 0x79, 0x7b, 0xff, 0xff, 0x23, 0x2d, 0xa2, 0xff, 0x0d, 0x11, 0x14, 0xff, 0x0d, 0x10, 0x14, 0xff, 0x0c, 0x10, 0x14, 0xff, 0x0e, 0x12, 0x15, 0xff, 0x0e, 0x13, 0x16, 0xff, 0x0e, 0x11, 0x13, 0xff, 0x0f, 0x13, 0x16, 0xff, 0x12, 0x1b, 0x1f, 0xff, 0x16, 0x21, 0x27, 0xff, 0x17, 0x22, 0x29, 0xff, 0x16, 0x22, 0x28, 0xff, 0x16, 0x21, 0x28, 0xff, 0x15, 0x20, 0x26, 0xff, 0x13, 0x1c, 0x24, 0xff, 0x10, 0x19, 0x1c, 0xff, 0x10, 0x15, 0x19, 0xff, 0x10, 0x14, 0x17, 0xff, 0x10, 0x16, 0x19, 0xff, 0x11, 0x16, 0x19, 0xff, 0x10, 0x14, 0x17, 0xff, 0x10, 0x15, 0x16, 0xff, 0x11, 0x16, 0x18, 0xff, 0x13, 0x17, 0x19, 0xff, 0x13, 0x18, 0x1a, 0xff, 0x15, 0x1b, 0x1d, 0xff, + 0x11, 0x16, 0x1f, 0xff, 0x10, 0x14, 0x1c, 0xff, 0x11, 0x15, 0x18, 0xff, 0x13, 0x19, 0x1e, 0xff, 0x13, 0x18, 0x1c, 0xff, 0x13, 0x1a, 0x1f, 0xff, 0x1b, 0x24, 0x28, 0xff, 0x21, 0x31, 0x36, 0xff, 0x31, 0x4a, 0x5a, 0xff, 0x36, 0x54, 0x64, 0xff, 0x32, 0x4c, 0x5e, 0xff, 0x2a, 0x45, 0x58, 0xff, 0x25, 0x3e, 0x52, 0xff, 0x24, 0x39, 0x4d, 0xff, 0x24, 0x35, 0x4b, 0xff, 0x23, 0x36, 0x4e, 0xff, 0x21, 0x36, 0x4c, 0xff, 0x23, 0x36, 0x4c, 0xff, 0x20, 0x34, 0x4c, 0xff, 0x20, 0x33, 0x46, 0xff, 0x1f, 0x33, 0x43, 0xff, 0x1f, 0x31, 0x43, 0xff, 0x20, 0x30, 0x44, 0xff, 0x1f, 0x30, 0x42, 0xff, 0x1f, 0x2f, 0x44, 0xff, 0x1e, 0x2d, 0x44, 0xff, 0x1d, 0x2d, 0x43, 0xff, 0x1e, 0x2c, 0x42, 0xff, 0x1e, 0x2f, 0x44, 0xff, 0x54, 0x85, 0x86, 0xff, 0x3b, 0x92, 0x6a, 0xff, 0x5b, 0xa8, 0xa0, 0xff, 0x3d, 0x36, 0xf0, 0xff, 0x1d, 0x1e, 0xce, 0xff, 0x14, 0x15, 0xb8, 0xff, 0x38, 0x35, 0xed, 0xff, 0x4b, 0x46, 0xfe, 0xff, 0x3e, 0x39, 0xf7, 0xff, 0x53, 0x50, 0xff, 0xff, 0x54, 0x52, 0xfc, 0xff, 0x19, 0x18, 0xbd, 0xff, 0x2d, 0x2c, 0xe8, 0xff, 0x6b, 0x6c, 0xfe, 0xff, 0x8e, 0xa2, 0xff, 0xff, 0x2f, 0x2f, 0xdd, 0xff, 0x1d, 0x1e, 0xd0, 0xff, 0x27, 0x26, 0xef, 0xff, 0x2d, 0x2e, 0xf9, 0xff, 0x36, 0x33, 0xfe, 0xff, 0x15, 0x16, 0xc4, 0xff, 0x21, 0x1f, 0xdf, 0xff, 0x4e, 0x5d, 0xfe, 0xff, 0x67, 0x75, 0xfe, 0xff, 0x51, 0x54, 0xfe, 0xff, 0x4f, 0x4f, 0xff, 0xff, 0x5d, 0x7e, 0xff, 0xff, 0x73, 0x80, 0xff, 0xff, 0x60, 0x6c, 0xff, 0xff, 0x77, 0x7e, 0xff, 0xff, 0x5c, 0x6f, 0xff, 0xff, 0x6f, 0x7a, 0xff, 0xff, 0x5a, 0x5c, 0xff, 0xff, 0x86, 0x91, 0xff, 0xff, 0x65, 0x72, 0xff, 0xff, 0x69, 0x71, 0xff, 0xff, 0x6a, 0x77, 0xff, 0xff, 0x72, 0x79, 0xff, 0xff, 0x53, 0x55, 0xf8, 0xff, 0x2b, 0x2b, 0xf8, 0xff, 0x35, 0x30, 0xfa, 0xff, 0x64, 0x70, 0xff, 0xff, 0x62, 0x6d, 0xff, 0xff, 0x6a, 0x73, 0xff, 0xff, 0x3a, 0x3a, 0xe0, 0xff, 0x0f, 0x11, 0x8c, 0xff, 0x0f, 0x13, 0x17, 0xff, 0x0e, 0x12, 0x19, 0xff, 0x0e, 0x10, 0x14, 0xff, 0x0d, 0x10, 0x11, 0xff, 0x0d, 0x10, 0x11, 0xff, 0x0c, 0x0e, 0x0e, 0xff, 0x0d, 0x0f, 0x10, 0xff, 0x0f, 0x14, 0x16, 0xff, 0x12, 0x18, 0x1e, 0xff, 0x12, 0x19, 0x1d, 0xff, 0x11, 0x1a, 0x1f, 0xff, 0x12, 0x1b, 0x1e, 0xff, 0x12, 0x18, 0x1d, 0xff, 0x10, 0x15, 0x1b, 0xff, 0x11, 0x17, 0x1a, 0xff, 0x11, 0x1a, 0x1a, 0xff, 0x16, 0x23, 0x26, 0xff, 0x18, 0x21, 0x29, 0xff, 0x16, 0x1e, 0x25, 0xff, 0x17, 0x1e, 0x23, 0xff, 0x19, 0x22, 0x25, 0xff, 0x1f, 0x28, 0x2d, 0xff, 0x17, 0x20, 0x23, 0xff, 0x17, 0x1c, 0x20, 0xff, 0x14, 0x1a, 0x1c, 0xff, + 0x13, 0x18, 0x1a, 0xff, 0x12, 0x17, 0x1b, 0xff, 0x13, 0x1a, 0x20, 0xff, 0x14, 0x1c, 0x22, 0xff, 0x13, 0x1b, 0x20, 0xff, 0x15, 0x1a, 0x1e, 0xff, 0x16, 0x1f, 0x22, 0xff, 0x1b, 0x26, 0x2a, 0xff, 0x2d, 0x44, 0x50, 0xff, 0x34, 0x52, 0x61, 0xff, 0x2f, 0x4e, 0x5f, 0xff, 0x2b, 0x46, 0x57, 0xff, 0x27, 0x3e, 0x52, 0xff, 0x24, 0x38, 0x4f, 0xff, 0x24, 0x36, 0x4c, 0xff, 0x23, 0x35, 0x4b, 0xff, 0x23, 0x36, 0x4d, 0xff, 0x23, 0x35, 0x4a, 0xff, 0x20, 0x35, 0x47, 0xff, 0x1f, 0x35, 0x44, 0xff, 0x20, 0x34, 0x47, 0xff, 0x20, 0x34, 0x44, 0xff, 0x1f, 0x32, 0x42, 0xff, 0x1e, 0x2f, 0x41, 0xff, 0x1d, 0x2e, 0x40, 0xff, 0x1e, 0x2d, 0x41, 0xff, 0x1c, 0x2c, 0x43, 0xff, 0x1d, 0x2e, 0x43, 0xff, 0x21, 0x35, 0x47, 0xff, 0x51, 0x8c, 0x7f, 0xff, 0x36, 0x8c, 0x5e, 0xff, 0x78, 0xa0, 0xe0, 0xff, 0x1a, 0x18, 0xd1, 0xff, 0x1a, 0x1a, 0xc7, 0xff, 0x32, 0x2f, 0xed, 0xff, 0x4c, 0x47, 0xff, 0xff, 0x4c, 0x47, 0xfe, 0xff, 0x57, 0x53, 0xff, 0xff, 0x51, 0x4f, 0xfa, 0xff, 0x14, 0x15, 0xb9, 0xff, 0x26, 0x26, 0xdf, 0xff, 0x74, 0x74, 0xff, 0xff, 0x65, 0x6e, 0xee, 0xff, 0x67, 0x73, 0xef, 0xff, 0x13, 0x13, 0xba, 0xff, 0x17, 0x18, 0xca, 0xff, 0x3f, 0x39, 0xf6, 0xff, 0x56, 0x56, 0xff, 0xff, 0x18, 0x18, 0xc9, 0xff, 0x16, 0x17, 0xbd, 0xff, 0x33, 0x32, 0xea, 0xff, 0x68, 0x7b, 0xff, 0xff, 0x4f, 0x53, 0xf8, 0xff, 0x5c, 0x5d, 0xfe, 0xff, 0x51, 0x56, 0xfe, 0xff, 0x5c, 0x7b, 0xff, 0xff, 0x77, 0x7f, 0xff, 0xff, 0x61, 0x6c, 0xff, 0xff, 0x7a, 0x80, 0xff, 0xff, 0x5c, 0x6c, 0xff, 0xff, 0x71, 0x7e, 0xff, 0xff, 0x5b, 0x64, 0xff, 0xff, 0x5b, 0x5a, 0xfd, 0xff, 0x7b, 0x88, 0xff, 0xff, 0x6a, 0x76, 0xff, 0xff, 0x67, 0x70, 0xff, 0xff, 0x55, 0x59, 0xfc, 0xff, 0x21, 0x28, 0xe3, 0xff, 0x13, 0x14, 0xb9, 0xff, 0x26, 0x24, 0xcb, 0xff, 0x64, 0x69, 0xff, 0xff, 0x68, 0x6d, 0xff, 0xff, 0x5a, 0x5d, 0xf6, 0xff, 0x12, 0x13, 0xaf, 0xff, 0x11, 0x12, 0xac, 0xff, 0x14, 0x1b, 0x77, 0xff, 0x13, 0x1d, 0x21, 0xff, 0x12, 0x18, 0x1c, 0xff, 0x0f, 0x13, 0x18, 0xff, 0x0e, 0x11, 0x12, 0xff, 0x0d, 0x10, 0x11, 0xff, 0x0d, 0x10, 0x11, 0xff, 0x13, 0x1a, 0x1d, 0xff, 0x19, 0x23, 0x28, 0xff, 0x1c, 0x25, 0x2c, 0xff, 0x19, 0x23, 0x2a, 0xff, 0x17, 0x20, 0x25, 0xff, 0x18, 0x23, 0x27, 0xff, 0x20, 0x30, 0x36, 0xff, 0x27, 0x3c, 0x4c, 0xff, 0x28, 0x45, 0x4d, 0xff, 0x29, 0x48, 0x49, 0xff, 0x28, 0x42, 0x48, 0xff, 0x26, 0x33, 0x3e, 0xff, 0x2e, 0x3d, 0x45, 0xff, 0x38, 0x4b, 0x54, 0xff, 0x3c, 0x4f, 0x5b, 0xff, 0x29, 0x38, 0x40, 0xff, 0x18, 0x20, 0x22, 0xff, 0x17, 0x20, 0x22, 0xff, + 0x13, 0x1a, 0x1d, 0xff, 0x13, 0x1a, 0x1e, 0xff, 0x13, 0x1a, 0x1f, 0xff, 0x13, 0x1b, 0x20, 0xff, 0x15, 0x1b, 0x1f, 0xff, 0x14, 0x1c, 0x20, 0xff, 0x17, 0x20, 0x24, 0xff, 0x18, 0x22, 0x26, 0xff, 0x27, 0x3b, 0x46, 0xff, 0x2f, 0x4e, 0x5c, 0xff, 0x2e, 0x4e, 0x5e, 0xff, 0x2a, 0x46, 0x56, 0xff, 0x25, 0x3b, 0x4f, 0xff, 0x25, 0x39, 0x4d, 0xff, 0x23, 0x37, 0x4b, 0xff, 0x24, 0x35, 0x4b, 0xff, 0x23, 0x37, 0x4b, 0xff, 0x23, 0x35, 0x4b, 0xff, 0x21, 0x32, 0x46, 0xff, 0x20, 0x34, 0x44, 0xff, 0x20, 0x35, 0x43, 0xff, 0x1f, 0x35, 0x42, 0xff, 0x20, 0x32, 0x41, 0xff, 0x1c, 0x2d, 0x3d, 0xff, 0x1c, 0x2b, 0x3c, 0xff, 0x1c, 0x2c, 0x3f, 0xff, 0x1f, 0x2e, 0x42, 0xff, 0x1f, 0x2e, 0x44, 0xff, 0x26, 0x3c, 0x4d, 0xff, 0x6b, 0xa4, 0x93, 0xff, 0x43, 0x98, 0x78, 0xff, 0x79, 0x87, 0xf9, 0xff, 0x18, 0x18, 0xca, 0xff, 0x29, 0x27, 0xe7, 0xff, 0x53, 0x4d, 0xff, 0xff, 0x55, 0x4f, 0xff, 0xff, 0x5a, 0x57, 0xff, 0xff, 0x4c, 0x48, 0xf5, 0xff, 0x12, 0x12, 0xb9, 0xff, 0x33, 0x34, 0xe0, 0xff, 0x70, 0x70, 0xff, 0xff, 0x20, 0x22, 0xba, 0xff, 0x9c, 0xb2, 0xfe, 0xff, 0x17, 0x14, 0xc9, 0xff, 0x11, 0x11, 0xad, 0xff, 0x30, 0x2f, 0xe6, 0xff, 0x2f, 0x2d, 0xe7, 0xff, 0x2b, 0x2b, 0xdd, 0xff, 0x10, 0x12, 0xa1, 0xff, 0x20, 0x1e, 0xd1, 0xff, 0x59, 0x62, 0xff, 0xff, 0x6b, 0x77, 0xff, 0xff, 0x3c, 0x3b, 0xf0, 0xff, 0x63, 0x66, 0xff, 0xff, 0x4f, 0x5a, 0xfd, 0xff, 0x59, 0x77, 0xff, 0xff, 0x74, 0x7e, 0xff, 0xff, 0x6a, 0x70, 0xff, 0xff, 0x7a, 0x81, 0xff, 0xff, 0x5f, 0x6d, 0xff, 0xff, 0x6d, 0x7a, 0xff, 0xff, 0x63, 0x6e, 0xff, 0xff, 0x3b, 0x39, 0xf6, 0xff, 0x39, 0x37, 0xe8, 0xff, 0x3a, 0x39, 0xf7, 0xff, 0x21, 0x23, 0xed, 0xff, 0x19, 0x1d, 0xd0, 0xff, 0x12, 0x14, 0xba, 0xff, 0x13, 0x12, 0xb5, 0xff, 0x0f, 0x0f, 0xa3, 0xff, 0x09, 0x0b, 0x81, 0xff, 0x09, 0x0a, 0x94, 0xff, 0x09, 0x0c, 0x84, 0xff, 0x10, 0x13, 0xa0, 0xff, 0x13, 0x13, 0xab, 0xff, 0x17, 0x1a, 0xb6, 0xff, 0x1c, 0x27, 0x41, 0xff, 0x18, 0x22, 0x28, 0xff, 0x14, 0x1b, 0x21, 0xff, 0x14, 0x1b, 0x20, 0xff, 0x12, 0x18, 0x1c, 0xff, 0x12, 0x17, 0x1b, 0xff, 0x17, 0x1f, 0x23, 0xff, 0x24, 0x2d, 0x34, 0xff, 0x2b, 0x39, 0x45, 0xff, 0x31, 0x42, 0x4f, 0xff, 0x34, 0x49, 0x5b, 0xff, 0x3a, 0x53, 0x65, 0xff, 0x42, 0x5e, 0x70, 0xff, 0x46, 0x69, 0x7f, 0xff, 0x45, 0x75, 0x7f, 0xff, 0x4d, 0x85, 0x8b, 0xff, 0x50, 0x7e, 0x97, 0xff, 0x44, 0x65, 0x74, 0xff, 0x56, 0x73, 0x83, 0xff, 0x66, 0x86, 0x97, 0xff, 0x68, 0x87, 0x9b, 0xff, 0x54, 0x75, 0x85, 0xff, 0x36, 0x52, 0x5f, 0xff, 0x3b, 0x59, 0x67, 0xff, + 0x15, 0x1c, 0x1e, 0xff, 0x13, 0x1a, 0x1e, 0xff, 0x14, 0x1b, 0x1f, 0xff, 0x13, 0x1b, 0x1f, 0xff, 0x15, 0x1c, 0x21, 0xff, 0x17, 0x21, 0x25, 0xff, 0x18, 0x23, 0x28, 0xff, 0x18, 0x1f, 0x24, 0xff, 0x22, 0x33, 0x3b, 0xff, 0x2d, 0x4a, 0x59, 0xff, 0x31, 0x4f, 0x5f, 0xff, 0x2b, 0x49, 0x5b, 0xff, 0x24, 0x3d, 0x4f, 0xff, 0x24, 0x3a, 0x4e, 0xff, 0x24, 0x38, 0x4d, 0xff, 0x23, 0x37, 0x4c, 0xff, 0x23, 0x36, 0x4b, 0xff, 0x23, 0x34, 0x49, 0xff, 0x20, 0x33, 0x47, 0xff, 0x1f, 0x34, 0x43, 0xff, 0x20, 0x35, 0x43, 0xff, 0x1f, 0x34, 0x40, 0xff, 0x1d, 0x32, 0x40, 0xff, 0x1b, 0x2c, 0x3e, 0xff, 0x1b, 0x2c, 0x3b, 0xff, 0x1e, 0x2e, 0x3e, 0xff, 0x22, 0x31, 0x45, 0xff, 0x21, 0x31, 0x47, 0xff, 0x32, 0x50, 0x5b, 0xff, 0x73, 0xaf, 0x9e, 0xff, 0x40, 0x99, 0x95, 0xff, 0x62, 0x64, 0xf3, 0xff, 0x20, 0x1e, 0xd9, 0xff, 0x49, 0x44, 0xfc, 0xff, 0x5a, 0x56, 0xff, 0xff, 0x5d, 0x5b, 0xff, 0xff, 0x42, 0x3e, 0xed, 0xff, 0x11, 0x11, 0xbd, 0xff, 0x49, 0x4b, 0xe9, 0xff, 0x6a, 0x6e, 0xfe, 0xff, 0x0c, 0x0e, 0x99, 0xff, 0x75, 0x84, 0xdd, 0xff, 0x3c, 0x3c, 0xe6, 0xff, 0x13, 0x13, 0xb1, 0xff, 0x18, 0x18, 0xc7, 0xff, 0x34, 0x32, 0xe9, 0xff, 0x2c, 0x2c, 0xef, 0xff, 0x13, 0x14, 0xae, 0xff, 0x12, 0x14, 0xa9, 0xff, 0x50, 0x50, 0xf1, 0xff, 0x64, 0x6c, 0xff, 0xff, 0x6b, 0x73, 0xff, 0xff, 0x29, 0x26, 0xe7, 0xff, 0x5b, 0x5a, 0xfd, 0xff, 0x56, 0x63, 0xfd, 0xff, 0x59, 0x70, 0xff, 0xff, 0x5f, 0x6f, 0xff, 0xff, 0x85, 0x85, 0xff, 0xff, 0x75, 0x80, 0xff, 0xff, 0x67, 0x70, 0xff, 0xff, 0x67, 0x78, 0xff, 0xff, 0x62, 0x70, 0xff, 0xff, 0x59, 0x60, 0xff, 0xff, 0x22, 0x1e, 0xe0, 0xff, 0x1f, 0x1d, 0xd1, 0xff, 0x0e, 0x0e, 0xa1, 0xff, 0x0f, 0x10, 0xa8, 0xff, 0x11, 0x11, 0xb0, 0xff, 0x13, 0x13, 0xb6, 0xff, 0x13, 0x13, 0xb8, 0xff, 0x0d, 0x0f, 0x89, 0xff, 0x0e, 0x10, 0x88, 0xff, 0x0e, 0x10, 0x9a, 0xff, 0x0d, 0x10, 0x85, 0xff, 0x12, 0x14, 0xa9, 0xff, 0x12, 0x14, 0xae, 0xff, 0x38, 0x3c, 0xbe, 0xff, 0x17, 0x22, 0x22, 0xff, 0x18, 0x20, 0x28, 0xff, 0x1b, 0x25, 0x2e, 0xff, 0x1a, 0x24, 0x2c, 0xff, 0x1a, 0x23, 0x2a, 0xff, 0x1c, 0x29, 0x31, 0xff, 0x1e, 0x29, 0x2f, 0xff, 0x2a, 0x38, 0x40, 0xff, 0x36, 0x4a, 0x5a, 0xff, 0x41, 0x5e, 0x73, 0xff, 0x54, 0x7a, 0x90, 0xff, 0x5b, 0x7f, 0x9a, 0xff, 0x55, 0x7c, 0x8a, 0xff, 0x4f, 0x7f, 0x83, 0xff, 0x62, 0x97, 0xa1, 0xff, 0x68, 0x95, 0xa9, 0xff, 0x63, 0x8e, 0x9b, 0xff, 0x76, 0x9d, 0xb0, 0xff, 0x89, 0xb4, 0xcc, 0xff, 0x92, 0xba, 0xd7, 0xff, 0x84, 0xaa, 0xcc, 0xff, 0x6c, 0x98, 0xb3, 0xff, 0x69, 0x92, 0xaa, 0xff, + 0x15, 0x1e, 0x21, 0xff, 0x15, 0x1d, 0x21, 0xff, 0x15, 0x1d, 0x22, 0xff, 0x14, 0x1b, 0x1f, 0xff, 0x13, 0x1a, 0x1e, 0xff, 0x19, 0x23, 0x26, 0xff, 0x1a, 0x25, 0x28, 0xff, 0x17, 0x21, 0x24, 0xff, 0x20, 0x2f, 0x37, 0xff, 0x2c, 0x48, 0x57, 0xff, 0x2f, 0x51, 0x5d, 0xff, 0x2f, 0x4b, 0x5c, 0xff, 0x26, 0x45, 0x55, 0xff, 0x24, 0x3e, 0x4f, 0xff, 0x23, 0x39, 0x4f, 0xff, 0x22, 0x37, 0x4b, 0xff, 0x23, 0x37, 0x49, 0xff, 0x23, 0x35, 0x49, 0xff, 0x21, 0x34, 0x48, 0xff, 0x20, 0x36, 0x46, 0xff, 0x20, 0x37, 0x45, 0xff, 0x1f, 0x35, 0x42, 0xff, 0x1e, 0x32, 0x41, 0xff, 0x1e, 0x2d, 0x40, 0xff, 0x1e, 0x2d, 0x40, 0xff, 0x21, 0x30, 0x43, 0xff, 0x21, 0x32, 0x45, 0xff, 0x20, 0x2e, 0x43, 0xff, 0x4f, 0x79, 0x7b, 0xff, 0x5c, 0xa9, 0x82, 0xff, 0x35, 0x53, 0xde, 0xff, 0x2e, 0x2f, 0xe5, 0xff, 0x37, 0x33, 0xef, 0xff, 0x5c, 0x59, 0xff, 0xff, 0x5d, 0x5a, 0xff, 0xff, 0x30, 0x2c, 0xdf, 0xff, 0x15, 0x14, 0xc7, 0xff, 0x63, 0x67, 0xf6, 0xff, 0x4c, 0x50, 0xed, 0xff, 0x0c, 0x0e, 0x93, 0xff, 0x16, 0x19, 0x9a, 0xff, 0x95, 0xa4, 0xff, 0xff, 0x17, 0x13, 0xc5, 0xff, 0x15, 0x17, 0xc0, 0xff, 0x37, 0x35, 0xf2, 0xff, 0x2f, 0x2d, 0xe7, 0xff, 0x3b, 0x37, 0xe9, 0xff, 0x10, 0x12, 0x98, 0xff, 0x32, 0x31, 0xdb, 0xff, 0x67, 0x6e, 0xff, 0xff, 0x6c, 0x6e, 0xff, 0xff, 0x4f, 0x53, 0xf5, 0xff, 0x2f, 0x30, 0xe9, 0xff, 0x4a, 0x48, 0xf3, 0xff, 0x62, 0x6f, 0xff, 0xff, 0x5c, 0x6e, 0xff, 0xff, 0x5a, 0x6c, 0xff, 0xff, 0x73, 0x7b, 0xff, 0xff, 0x77, 0x81, 0xff, 0xff, 0x75, 0x7c, 0xff, 0xff, 0x60, 0x75, 0xff, 0xff, 0x65, 0x73, 0xff, 0xff, 0x5d, 0x6c, 0xff, 0xff, 0x3d, 0x3c, 0xf7, 0xff, 0x24, 0x20, 0xe1, 0xff, 0x0d, 0x0e, 0xa5, 0xff, 0x10, 0x10, 0xa7, 0xff, 0x11, 0x11, 0xaf, 0xff, 0x14, 0x14, 0xb8, 0xff, 0x14, 0x16, 0xbe, 0xff, 0x0f, 0x11, 0x9b, 0xff, 0x0d, 0x10, 0x92, 0xff, 0x0e, 0x10, 0x96, 0xff, 0x10, 0x11, 0xa2, 0xff, 0x0e, 0x12, 0x92, 0xff, 0x15, 0x17, 0xb2, 0xff, 0x48, 0x48, 0xe9, 0xff, 0x1a, 0x23, 0x42, 0xff, 0x1a, 0x24, 0x2c, 0xff, 0x1d, 0x29, 0x33, 0xff, 0x1d, 0x29, 0x32, 0xff, 0x20, 0x2e, 0x3b, 0xff, 0x22, 0x31, 0x44, 0xff, 0x22, 0x2e, 0x3a, 0xff, 0x20, 0x2c, 0x33, 0xff, 0x26, 0x34, 0x3e, 0xff, 0x3a, 0x59, 0x6c, 0xff, 0x52, 0x80, 0xa7, 0xff, 0x58, 0x88, 0xac, 0xff, 0x54, 0x7a, 0x89, 0xff, 0x52, 0x7c, 0x80, 0xff, 0x58, 0x81, 0x86, 0xff, 0x62, 0x8d, 0x92, 0xff, 0x66, 0x90, 0x95, 0xff, 0x7a, 0xa5, 0xb2, 0xff, 0x8b, 0xb6, 0xcd, 0xff, 0x91, 0xbb, 0xd9, 0xff, 0x80, 0xad, 0xc8, 0xff, 0x7d, 0xa9, 0xbf, 0xff, 0x8a, 0xb2, 0xca, 0xff, + 0x15, 0x1c, 0x20, 0xff, 0x15, 0x1d, 0x22, 0xff, 0x13, 0x1b, 0x20, 0xff, 0x13, 0x1a, 0x1f, 0xff, 0x14, 0x1d, 0x1e, 0xff, 0x18, 0x25, 0x25, 0xff, 0x1f, 0x2b, 0x2d, 0xff, 0x1d, 0x27, 0x29, 0xff, 0x1f, 0x2e, 0x33, 0xff, 0x2f, 0x49, 0x58, 0xff, 0x2f, 0x50, 0x5f, 0xff, 0x2f, 0x4e, 0x5d, 0xff, 0x2a, 0x48, 0x57, 0xff, 0x27, 0x41, 0x52, 0xff, 0x25, 0x3c, 0x4e, 0xff, 0x22, 0x38, 0x4e, 0xff, 0x22, 0x37, 0x4a, 0xff, 0x21, 0x35, 0x45, 0xff, 0x21, 0x35, 0x45, 0xff, 0x1e, 0x36, 0x44, 0xff, 0x20, 0x36, 0x45, 0xff, 0x20, 0x36, 0x44, 0xff, 0x1e, 0x31, 0x40, 0xff, 0x1f, 0x2e, 0x43, 0xff, 0x20, 0x31, 0x48, 0xff, 0x21, 0x31, 0x46, 0xff, 0x21, 0x30, 0x44, 0xff, 0x1d, 0x31, 0x46, 0xff, 0x71, 0xa1, 0x9c, 0xff, 0x5e, 0xa0, 0x98, 0xff, 0x35, 0x30, 0xf2, 0xff, 0x59, 0x54, 0xff, 0xff, 0x4f, 0x4b, 0xff, 0xff, 0x39, 0x33, 0xf3, 0xff, 0x1a, 0x19, 0xd2, 0xff, 0x29, 0x29, 0xd7, 0xff, 0x63, 0x67, 0xff, 0xff, 0x26, 0x2a, 0xcc, 0xff, 0x0b, 0x0c, 0x8b, 0xff, 0x0c, 0x0d, 0x89, 0xff, 0x6e, 0x7c, 0xd7, 0xff, 0x43, 0x44, 0xe8, 0xff, 0x16, 0x17, 0xc0, 0xff, 0x20, 0x1f, 0xd8, 0xff, 0x37, 0x30, 0xf0, 0xff, 0x57, 0x58, 0xfe, 0xff, 0x22, 0x20, 0xcd, 0xff, 0x1f, 0x20, 0xc4, 0xff, 0x76, 0x78, 0xff, 0xff, 0x5c, 0x5e, 0xff, 0xff, 0x6c, 0x75, 0xff, 0xff, 0x2d, 0x2d, 0xde, 0xff, 0x47, 0x49, 0xfa, 0xff, 0x43, 0x3f, 0xf1, 0xff, 0x65, 0x71, 0xff, 0xff, 0x5c, 0x68, 0xff, 0xff, 0x5c, 0x68, 0xff, 0xff, 0x5a, 0x6b, 0xff, 0xff, 0x78, 0x7b, 0xff, 0xff, 0x84, 0x88, 0xff, 0xff, 0x5f, 0x70, 0xff, 0xff, 0x63, 0x72, 0xff, 0xff, 0x5e, 0x6e, 0xff, 0xff, 0x61, 0x6d, 0xff, 0xff, 0x4d, 0x4a, 0xe8, 0xff, 0x0e, 0x0f, 0xa4, 0xff, 0x10, 0x10, 0xac, 0xff, 0x13, 0x12, 0xb4, 0xff, 0x16, 0x17, 0xbf, 0xff, 0x19, 0x19, 0xc5, 0xff, 0x11, 0x14, 0xa1, 0xff, 0x0f, 0x10, 0x97, 0xff, 0x0f, 0x12, 0x9f, 0xff, 0x12, 0x12, 0xa9, 0xff, 0x11, 0x13, 0xab, 0xff, 0x14, 0x16, 0xa2, 0xff, 0x36, 0x35, 0xd7, 0xff, 0x3c, 0x3f, 0x88, 0xff, 0x19, 0x25, 0x29, 0xff, 0x21, 0x2f, 0x37, 0xff, 0x27, 0x3a, 0x43, 0xff, 0x29, 0x43, 0x51, 0xff, 0x27, 0x3d, 0x50, 0xff, 0x21, 0x32, 0x3b, 0xff, 0x23, 0x30, 0x36, 0xff, 0x23, 0x32, 0x39, 0xff, 0x2e, 0x48, 0x58, 0xff, 0x46, 0x72, 0x97, 0xff, 0x57, 0x8b, 0xa8, 0xff, 0x64, 0x8e, 0x97, 0xff, 0x5a, 0x80, 0x8d, 0xff, 0x57, 0x76, 0x85, 0xff, 0x5c, 0x7e, 0x86, 0xff, 0x61, 0x85, 0x8a, 0xff, 0x63, 0x8c, 0x94, 0xff, 0x74, 0x98, 0xab, 0xff, 0x6d, 0x95, 0xa8, 0xff, 0x67, 0x8f, 0xa2, 0xff, 0x84, 0xa7, 0xb9, 0xff, 0x8f, 0xb3, 0xca, 0xff, + 0x13, 0x1c, 0x1e, 0xff, 0x13, 0x1d, 0x20, 0xff, 0x13, 0x1a, 0x1f, 0xff, 0x13, 0x1a, 0x1c, 0xff, 0x19, 0x27, 0x24, 0xff, 0x20, 0x32, 0x30, 0xff, 0x26, 0x36, 0x38, 0xff, 0x27, 0x38, 0x39, 0xff, 0x23, 0x36, 0x39, 0xff, 0x2f, 0x4a, 0x5a, 0xff, 0x31, 0x55, 0x66, 0xff, 0x2f, 0x4f, 0x60, 0xff, 0x2d, 0x4c, 0x5a, 0xff, 0x29, 0x44, 0x54, 0xff, 0x26, 0x3d, 0x52, 0xff, 0x23, 0x3a, 0x51, 0xff, 0x23, 0x3a, 0x4d, 0xff, 0x21, 0x37, 0x48, 0xff, 0x1f, 0x36, 0x46, 0xff, 0x1f, 0x35, 0x43, 0xff, 0x1e, 0x36, 0x43, 0xff, 0x20, 0x35, 0x43, 0xff, 0x1f, 0x30, 0x40, 0xff, 0x1f, 0x2f, 0x42, 0xff, 0x21, 0x32, 0x47, 0xff, 0x21, 0x31, 0x48, 0xff, 0x20, 0x2f, 0x43, 0xff, 0x24, 0x3e, 0x50, 0xff, 0x83, 0xb0, 0xa8, 0xff, 0x60, 0x85, 0xc3, 0xff, 0x5c, 0x54, 0xff, 0xff, 0x56, 0x52, 0xff, 0xff, 0x43, 0x41, 0xfb, 0xff, 0x2e, 0x2b, 0xe2, 0xff, 0x30, 0x30, 0xed, 0xff, 0x34, 0x37, 0xed, 0xff, 0x0e, 0x11, 0x99, 0xff, 0x0c, 0x0e, 0x89, 0xff, 0x0d, 0x10, 0x8f, 0xff, 0x09, 0x0b, 0x9a, 0xff, 0x96, 0xa9, 0xf8, 0xff, 0x16, 0x13, 0xcb, 0xff, 0x1a, 0x1b, 0xd0, 0xff, 0x32, 0x2e, 0xed, 0xff, 0x37, 0x35, 0xf3, 0xff, 0x53, 0x53, 0xf9, 0xff, 0x11, 0x12, 0xa5, 0xff, 0x74, 0x76, 0xff, 0xff, 0x60, 0x66, 0xff, 0xff, 0x69, 0x68, 0xff, 0xff, 0x5a, 0x64, 0xff, 0xff, 0x1c, 0x19, 0xd7, 0xff, 0x62, 0x63, 0xff, 0xff, 0x43, 0x40, 0xee, 0xff, 0x5c, 0x69, 0xff, 0xff, 0x5e, 0x66, 0xff, 0xff, 0x5d, 0x67, 0xff, 0xff, 0x61, 0x72, 0xff, 0xff, 0x36, 0x34, 0xf0, 0xff, 0x66, 0x6d, 0xff, 0xff, 0x6b, 0x76, 0xff, 0xff, 0x63, 0x72, 0xff, 0xff, 0x6a, 0x77, 0xff, 0xff, 0x5d, 0x62, 0xfd, 0xff, 0x14, 0x14, 0xbd, 0xff, 0x11, 0x12, 0xac, 0xff, 0x11, 0x12, 0xb0, 0xff, 0x13, 0x14, 0xb7, 0xff, 0x1a, 0x1a, 0xc3, 0xff, 0x23, 0x21, 0xd5, 0xff, 0x14, 0x16, 0xa0, 0xff, 0x0f, 0x11, 0x96, 0xff, 0x12, 0x13, 0xaa, 0xff, 0x14, 0x15, 0xb2, 0xff, 0x15, 0x16, 0xba, 0xff, 0x14, 0x17, 0xae, 0xff, 0x31, 0x2e, 0xce, 0xff, 0x59, 0x5c, 0xd0, 0xff, 0x2d, 0x48, 0x4f, 0xff, 0x43, 0x68, 0x7d, 0xff, 0x51, 0x7b, 0x95, 0xff, 0x50, 0x7b, 0x97, 0xff, 0x43, 0x6c, 0x84, 0xff, 0x3c, 0x60, 0x78, 0xff, 0x3b, 0x5d, 0x70, 0xff, 0x36, 0x53, 0x62, 0xff, 0x2d, 0x46, 0x50, 0xff, 0x37, 0x57, 0x63, 0xff, 0x59, 0x84, 0x8c, 0xff, 0x6d, 0x9c, 0xa1, 0xff, 0x66, 0x8e, 0x9e, 0xff, 0x5e, 0x7e, 0x8f, 0xff, 0x61, 0x87, 0x8c, 0xff, 0x68, 0x8d, 0x91, 0xff, 0x79, 0x98, 0xa6, 0xff, 0x89, 0xaa, 0xbc, 0xff, 0x87, 0xa9, 0xbd, 0xff, 0x88, 0xab, 0xc4, 0xff, 0x8c, 0xb3, 0xcf, 0xff, 0x83, 0xaf, 0xcb, 0xff, + 0x18, 0x25, 0x24, 0xff, 0x1b, 0x2c, 0x29, 0xff, 0x1d, 0x33, 0x2f, 0xff, 0x22, 0x47, 0x3a, 0xff, 0x27, 0x4a, 0x41, 0xff, 0x2b, 0x44, 0x45, 0xff, 0x30, 0x4d, 0x50, 0xff, 0x36, 0x52, 0x58, 0xff, 0x31, 0x4c, 0x51, 0xff, 0x36, 0x55, 0x62, 0xff, 0x34, 0x57, 0x6b, 0xff, 0x2f, 0x4f, 0x61, 0xff, 0x2d, 0x4a, 0x5e, 0xff, 0x2a, 0x47, 0x57, 0xff, 0x26, 0x3e, 0x50, 0xff, 0x24, 0x39, 0x50, 0xff, 0x24, 0x3b, 0x4d, 0xff, 0x23, 0x3b, 0x4d, 0xff, 0x22, 0x36, 0x4d, 0xff, 0x20, 0x34, 0x46, 0xff, 0x20, 0x33, 0x44, 0xff, 0x1e, 0x34, 0x43, 0xff, 0x1f, 0x33, 0x45, 0xff, 0x20, 0x32, 0x46, 0xff, 0x21, 0x33, 0x48, 0xff, 0x22, 0x33, 0x4b, 0xff, 0x23, 0x33, 0x4a, 0xff, 0x26, 0x42, 0x56, 0xff, 0x90, 0xbc, 0xb2, 0xff, 0x5e, 0x72, 0xd7, 0xff, 0x31, 0x35, 0xe1, 0xff, 0x46, 0x4a, 0xef, 0xff, 0x27, 0x2b, 0xd6, 0xff, 0x24, 0x2a, 0xd7, 0xff, 0x15, 0x1a, 0xbb, 0xff, 0x0b, 0x0e, 0x88, 0xff, 0x0d, 0x10, 0x89, 0xff, 0x0d, 0x10, 0x95, 0xff, 0x0f, 0x11, 0xa0, 0xff, 0x17, 0x19, 0xaa, 0xff, 0x8a, 0x97, 0xf9, 0xff, 0x17, 0x17, 0xc9, 0xff, 0x22, 0x21, 0xdc, 0xff, 0x31, 0x2c, 0xf0, 0xff, 0x5e, 0x65, 0xff, 0xff, 0x1f, 0x1f, 0xbf, 0xff, 0x39, 0x3c, 0xde, 0xff, 0x6e, 0x77, 0xff, 0xff, 0x5c, 0x5b, 0xff, 0xff, 0x6a, 0x75, 0xff, 0xff, 0x41, 0x43, 0xf0, 0xff, 0x33, 0x33, 0xec, 0xff, 0x61, 0x63, 0xff, 0xff, 0x49, 0x48, 0xef, 0xff, 0x5b, 0x67, 0xff, 0xff, 0x5b, 0x63, 0xff, 0xff, 0x5c, 0x65, 0xff, 0xff, 0x64, 0x74, 0xff, 0xff, 0x35, 0x33, 0xe7, 0xff, 0x1a, 0x21, 0xc4, 0xff, 0x3d, 0x46, 0xe6, 0xff, 0x4f, 0x57, 0xea, 0xff, 0x4a, 0x5d, 0xe0, 0xff, 0x15, 0x15, 0xc6, 0xff, 0x14, 0x15, 0xbc, 0xff, 0x13, 0x14, 0xb7, 0xff, 0x12, 0x14, 0xb6, 0xff, 0x16, 0x16, 0xbc, 0xff, 0x1e, 0x1e, 0xca, 0xff, 0x46, 0x4a, 0xf1, 0xff, 0x25, 0x3c, 0x59, 0xff, 0x14, 0x1c, 0x83, 0xff, 0x12, 0x12, 0xad, 0xff, 0x18, 0x1a, 0xbe, 0xff, 0x1a, 0x1b, 0xc3, 0xff, 0x19, 0x1c, 0xc4, 0xff, 0x2d, 0x2f, 0xd0, 0xff, 0x4a, 0x6f, 0x9d, 0xff, 0x61, 0x91, 0xa8, 0xff, 0x76, 0xa8, 0xc5, 0xff, 0x77, 0xae, 0xcc, 0xff, 0x6f, 0xa7, 0xc4, 0xff, 0x66, 0x98, 0xb4, 0xff, 0x5c, 0x8c, 0xa6, 0xff, 0x5a, 0x88, 0xa1, 0xff, 0x54, 0x81, 0x99, 0xff, 0x40, 0x68, 0x7d, 0xff, 0x36, 0x57, 0x65, 0xff, 0x4d, 0x74, 0x77, 0xff, 0x68, 0x92, 0x9b, 0xff, 0x6a, 0x8d, 0xa5, 0xff, 0x6c, 0x91, 0xa7, 0xff, 0x74, 0x9d, 0xa9, 0xff, 0x77, 0xa5, 0xad, 0xff, 0x92, 0xb2, 0xc1, 0xff, 0xa5, 0xc5, 0xd9, 0xff, 0x9d, 0xbf, 0xd6, 0xff, 0x93, 0xb8, 0xd5, 0xff, 0x91, 0xb9, 0xd9, 0xff, 0x8f, 0xb8, 0xd9, 0xff, + 0x22, 0x3a, 0x37, 0xff, 0x27, 0x4d, 0x47, 0xff, 0x2a, 0x64, 0x56, 0xff, 0x33, 0x78, 0x65, 0xff, 0x3a, 0x75, 0x69, 0xff, 0x35, 0x5f, 0x5e, 0xff, 0x37, 0x5b, 0x67, 0xff, 0x40, 0x65, 0x6e, 0xff, 0x40, 0x64, 0x67, 0xff, 0x41, 0x63, 0x6c, 0xff, 0x3b, 0x5c, 0x6e, 0xff, 0x2e, 0x4e, 0x64, 0xff, 0x2b, 0x48, 0x5d, 0xff, 0x2a, 0x48, 0x5a, 0xff, 0x27, 0x40, 0x52, 0xff, 0x23, 0x3b, 0x50, 0xff, 0x24, 0x3a, 0x50, 0xff, 0x24, 0x38, 0x4e, 0xff, 0x24, 0x35, 0x4d, 0xff, 0x20, 0x32, 0x4a, 0xff, 0x20, 0x32, 0x45, 0xff, 0x1e, 0x33, 0x42, 0xff, 0x20, 0x34, 0x44, 0xff, 0x22, 0x34, 0x4b, 0xff, 0x22, 0x36, 0x4b, 0xff, 0x24, 0x35, 0x4b, 0xff, 0x24, 0x36, 0x49, 0xff, 0x23, 0x3b, 0x4f, 0xff, 0x91, 0xb8, 0xb0, 0xff, 0x48, 0x54, 0xd2, 0xff, 0x10, 0x11, 0xae, 0xff, 0x2a, 0x28, 0xea, 0xff, 0x0f, 0x11, 0xa7, 0xff, 0x0e, 0x10, 0x9a, 0xff, 0x0c, 0x0d, 0x95, 0xff, 0x0d, 0x10, 0x87, 0xff, 0x0e, 0x11, 0xa1, 0xff, 0x0f, 0x12, 0xa4, 0xff, 0x12, 0x11, 0xaa, 0xff, 0x30, 0x36, 0xb7, 0xff, 0x6f, 0x79, 0xf0, 0xff, 0x1e, 0x1e, 0xd6, 0xff, 0x2c, 0x29, 0xe9, 0xff, 0x4c, 0x4c, 0xfd, 0xff, 0x4c, 0x62, 0xef, 0xff, 0x0f, 0x0f, 0xa1, 0xff, 0x6a, 0x72, 0xff, 0xff, 0x5f, 0x63, 0xff, 0xff, 0x6b, 0x69, 0xff, 0xff, 0x5f, 0x6e, 0xff, 0xff, 0x21, 0x1d, 0xdb, 0xff, 0x4d, 0x54, 0xfc, 0xff, 0x4f, 0x50, 0xf3, 0xff, 0x58, 0x5a, 0xfa, 0xff, 0x5a, 0x64, 0xff, 0xff, 0x5c, 0x64, 0xff, 0xff, 0x5c, 0x66, 0xff, 0xff, 0x62, 0x74, 0xff, 0xff, 0x55, 0x53, 0xf7, 0xff, 0x1a, 0x20, 0xb9, 0xff, 0x0d, 0x10, 0x8e, 0xff, 0x08, 0x06, 0x8d, 0xff, 0x4b, 0x7f, 0x7f, 0xff, 0x1c, 0x22, 0xa9, 0xff, 0x17, 0x18, 0xc4, 0xff, 0x22, 0x21, 0xd4, 0xff, 0x16, 0x18, 0xc1, 0xff, 0x1c, 0x1c, 0xc8, 0xff, 0x36, 0x34, 0xeb, 0xff, 0x4f, 0x7d, 0xac, 0xff, 0x51, 0x83, 0x8a, 0xff, 0x51, 0x77, 0x87, 0xff, 0x3a, 0x54, 0x93, 0xff, 0x24, 0x31, 0xb3, 0xff, 0x24, 0x28, 0xc9, 0xff, 0x23, 0x2b, 0xca, 0xff, 0x45, 0x65, 0xcf, 0xff, 0x6e, 0xb0, 0xc2, 0xff, 0x7d, 0xb9, 0xce, 0xff, 0x84, 0xbe, 0xd6, 0xff, 0x7e, 0xbd, 0xd7, 0xff, 0x77, 0xb5, 0xcc, 0xff, 0x6d, 0xaa, 0xc2, 0xff, 0x65, 0x9f, 0xb6, 0xff, 0x62, 0x97, 0xae, 0xff, 0x60, 0x93, 0xa8, 0xff, 0x52, 0x83, 0x9d, 0xff, 0x42, 0x6c, 0x85, 0xff, 0x49, 0x6d, 0x7a, 0xff, 0x5a, 0x7a, 0x89, 0xff, 0x64, 0x88, 0xa2, 0xff, 0x6b, 0x91, 0xac, 0xff, 0x6f, 0x9f, 0xae, 0xff, 0x75, 0xaa, 0xb2, 0xff, 0x85, 0xae, 0xbb, 0xff, 0x96, 0xb9, 0xce, 0xff, 0x99, 0xbc, 0xd1, 0xff, 0x95, 0xb7, 0xcf, 0xff, 0x8c, 0xb0, 0xca, 0xff, 0x8a, 0xb0, 0xcf, 0xff, + 0x2b, 0x4c, 0x4f, 0xff, 0x33, 0x65, 0x61, 0xff, 0x36, 0x7c, 0x6d, 0xff, 0x39, 0x8b, 0x78, 0xff, 0x44, 0x8c, 0x7d, 0xff, 0x3b, 0x74, 0x75, 0xff, 0x3a, 0x6b, 0x73, 0xff, 0x46, 0x75, 0x7d, 0xff, 0x49, 0x7e, 0x7c, 0xff, 0x46, 0x7a, 0x7b, 0xff, 0x3a, 0x61, 0x6e, 0xff, 0x2f, 0x4f, 0x65, 0xff, 0x2c, 0x4a, 0x61, 0xff, 0x2a, 0x47, 0x5b, 0xff, 0x27, 0x41, 0x57, 0xff, 0x23, 0x3d, 0x53, 0xff, 0x24, 0x39, 0x50, 0xff, 0x24, 0x35, 0x4d, 0xff, 0x21, 0x32, 0x45, 0xff, 0x1d, 0x30, 0x40, 0xff, 0x1e, 0x30, 0x3f, 0xff, 0x1c, 0x31, 0x3b, 0xff, 0x1c, 0x31, 0x3c, 0xff, 0x1f, 0x35, 0x42, 0xff, 0x22, 0x36, 0x48, 0xff, 0x21, 0x35, 0x47, 0xff, 0x24, 0x35, 0x4d, 0xff, 0x20, 0x34, 0x4f, 0xff, 0x5d, 0x87, 0x87, 0xff, 0x3a, 0x4a, 0xc4, 0xff, 0x2b, 0x29, 0xdb, 0xff, 0x24, 0x23, 0xd4, 0xff, 0x10, 0x12, 0xa0, 0xff, 0x09, 0x0b, 0xa0, 0xff, 0x3a, 0x71, 0x94, 0xff, 0x16, 0x28, 0xa5, 0xff, 0x11, 0x12, 0xaa, 0xff, 0x13, 0x14, 0xb6, 0xff, 0x12, 0x13, 0xa7, 0xff, 0x58, 0x60, 0xd1, 0xff, 0x68, 0x6b, 0xee, 0xff, 0x25, 0x23, 0xe0, 0xff, 0x3a, 0x36, 0xf7, 0xff, 0x5d, 0x66, 0xff, 0xff, 0x2f, 0x5c, 0xad, 0xff, 0x35, 0x39, 0xda, 0xff, 0x6a, 0x75, 0xff, 0xff, 0x5e, 0x59, 0xff, 0xff, 0x70, 0x7d, 0xff, 0xff, 0x34, 0x3a, 0xda, 0xff, 0x35, 0x32, 0xf0, 0xff, 0x59, 0x63, 0xff, 0xff, 0x48, 0x44, 0xef, 0xff, 0x62, 0x67, 0xfe, 0xff, 0x5b, 0x64, 0xff, 0xff, 0x5b, 0x62, 0xff, 0xff, 0x5c, 0x69, 0xff, 0xff, 0x5e, 0x71, 0xff, 0xff, 0x93, 0x94, 0xff, 0xff, 0x26, 0x2b, 0xc3, 0xff, 0x0e, 0x12, 0x99, 0xff, 0x0c, 0x0e, 0x93, 0xff, 0x3a, 0x66, 0x87, 0xff, 0x2a, 0x3a, 0x41, 0xff, 0x2a, 0x3a, 0x94, 0xff, 0x5b, 0x65, 0xef, 0xff, 0x5c, 0x5b, 0xfb, 0xff, 0x40, 0x49, 0xee, 0xff, 0x5d, 0x92, 0xc7, 0xff, 0x66, 0xac, 0xa6, 0xff, 0x64, 0x9f, 0xa4, 0xff, 0x61, 0x91, 0xa1, 0xff, 0x64, 0x91, 0xa6, 0xff, 0x68, 0x9b, 0xab, 0xff, 0x6a, 0xa2, 0xae, 0xff, 0x6d, 0xaa, 0xb8, 0xff, 0x76, 0xb7, 0xc9, 0xff, 0x7a, 0xbe, 0xd3, 0xff, 0x78, 0xb9, 0xcb, 0xff, 0x79, 0xb8, 0xc8, 0xff, 0x74, 0xb5, 0xc9, 0xff, 0x72, 0xb0, 0xc4, 0xff, 0x6c, 0xac, 0xbd, 0xff, 0x6c, 0xad, 0xbf, 0xff, 0x6d, 0xac, 0xbf, 0xff, 0x6c, 0xa4, 0xb6, 0xff, 0x62, 0x95, 0xa9, 0xff, 0x55, 0x85, 0x9c, 0xff, 0x4d, 0x79, 0x8f, 0xff, 0x4b, 0x71, 0x85, 0xff, 0x53, 0x75, 0x8d, 0xff, 0x55, 0x77, 0x90, 0xff, 0x5c, 0x8d, 0x99, 0xff, 0x63, 0x97, 0x9e, 0xff, 0x68, 0x9b, 0xa3, 0xff, 0x7e, 0xa0, 0xb5, 0xff, 0x87, 0xa9, 0xbd, 0xff, 0x8e, 0xae, 0xc4, 0xff, 0x7b, 0xa2, 0xba, 0xff, 0x71, 0x98, 0xb5, 0xff, + 0x30, 0x55, 0x58, 0xff, 0x38, 0x6e, 0x68, 0xff, 0x3a, 0x7e, 0x6f, 0xff, 0x44, 0x86, 0x78, 0xff, 0x44, 0x8e, 0x7e, 0xff, 0x44, 0x86, 0x7b, 0xff, 0x42, 0x7c, 0x77, 0xff, 0x46, 0x86, 0x80, 0xff, 0x4e, 0x96, 0x87, 0xff, 0x4d, 0x8d, 0x82, 0xff, 0x3a, 0x67, 0x71, 0xff, 0x2e, 0x4e, 0x63, 0xff, 0x2d, 0x49, 0x62, 0xff, 0x28, 0x46, 0x5d, 0xff, 0x27, 0x41, 0x56, 0xff, 0x25, 0x3b, 0x51, 0xff, 0x23, 0x38, 0x4d, 0xff, 0x22, 0x32, 0x47, 0xff, 0x20, 0x32, 0x44, 0xff, 0x1e, 0x32, 0x41, 0xff, 0x1e, 0x32, 0x40, 0xff, 0x1c, 0x34, 0x3c, 0xff, 0x1d, 0x35, 0x3b, 0xff, 0x1e, 0x38, 0x3e, 0xff, 0x20, 0x37, 0x43, 0xff, 0x22, 0x36, 0x46, 0xff, 0x25, 0x38, 0x4e, 0xff, 0x23, 0x37, 0x51, 0xff, 0x3c, 0x5c, 0x67, 0xff, 0x6a, 0xa0, 0xb0, 0xff, 0x49, 0x56, 0xf8, 0xff, 0x1b, 0x29, 0xbf, 0xff, 0x25, 0x47, 0x9b, 0xff, 0x75, 0xc1, 0xa3, 0xff, 0x54, 0xa7, 0xa1, 0xff, 0x10, 0x0f, 0xb6, 0xff, 0x16, 0x17, 0xbf, 0xff, 0x14, 0x15, 0xb6, 0xff, 0x12, 0x13, 0xab, 0xff, 0x59, 0x60, 0xd8, 0xff, 0x6e, 0x71, 0xf1, 0xff, 0x2b, 0x27, 0xe9, 0xff, 0x52, 0x54, 0xff, 0xff, 0x64, 0x9c, 0xe7, 0xff, 0x15, 0x29, 0x96, 0xff, 0x60, 0x67, 0xff, 0xff, 0x5b, 0x5e, 0xff, 0xff, 0x72, 0x72, 0xff, 0xff, 0x5b, 0x6a, 0xff, 0xff, 0x1e, 0x1e, 0xbf, 0xff, 0x64, 0x66, 0xff, 0xff, 0x59, 0x66, 0xff, 0xff, 0x48, 0x45, 0xed, 0xff, 0x62, 0x69, 0xff, 0xff, 0x5b, 0x62, 0xff, 0xff, 0x5c, 0x62, 0xff, 0xff, 0x5c, 0x6a, 0xff, 0xff, 0x5e, 0x70, 0xff, 0xff, 0x99, 0x99, 0xff, 0xff, 0x4a, 0x52, 0xdb, 0xff, 0x0f, 0x13, 0xa0, 0xff, 0x0e, 0x0f, 0x97, 0xff, 0x2f, 0x52, 0x88, 0xff, 0x55, 0x83, 0x8f, 0xff, 0x69, 0x98, 0xac, 0xff, 0x77, 0xaa, 0xc1, 0xff, 0x77, 0xac, 0xc5, 0xff, 0x7d, 0xb7, 0xc6, 0xff, 0x79, 0xb8, 0xbf, 0xff, 0x75, 0xb4, 0xbf, 0xff, 0x77, 0xb3, 0xc4, 0xff, 0x7d, 0xb3, 0xcd, 0xff, 0x84, 0xba, 0xd4, 0xff, 0x87, 0xc1, 0xdc, 0xff, 0x87, 0xc1, 0xdd, 0xff, 0x8a, 0xc3, 0xdf, 0xff, 0x89, 0xc4, 0xdd, 0xff, 0x88, 0xc3, 0xdc, 0xff, 0x87, 0xc6, 0xde, 0xff, 0x87, 0xc7, 0xdc, 0xff, 0x7f, 0xbf, 0xd3, 0xff, 0x73, 0xb2, 0xc5, 0xff, 0x6c, 0xab, 0xbb, 0xff, 0x6d, 0xaf, 0xbe, 0xff, 0x73, 0xb8, 0xc7, 0xff, 0x77, 0xba, 0xc8, 0xff, 0x70, 0xab, 0xbc, 0xff, 0x67, 0x9b, 0xae, 0xff, 0x63, 0x91, 0xa7, 0xff, 0x53, 0x7f, 0x96, 0xff, 0x4a, 0x71, 0x88, 0xff, 0x40, 0x61, 0x7a, 0xff, 0x41, 0x66, 0x79, 0xff, 0x51, 0x82, 0x8f, 0xff, 0x60, 0x86, 0xa1, 0xff, 0x66, 0x8b, 0xa9, 0xff, 0x6e, 0x92, 0xae, 0xff, 0x76, 0x9d, 0xba, 0xff, 0x6d, 0x93, 0xb4, 0xff, 0x6c, 0x94, 0xb0, 0xff, + 0x30, 0x63, 0x5a, 0xff, 0x38, 0x7c, 0x6d, 0xff, 0x3e, 0x80, 0x70, 0xff, 0x49, 0x86, 0x77, 0xff, 0x46, 0x85, 0x75, 0xff, 0x42, 0x84, 0x73, 0xff, 0x41, 0x85, 0x76, 0xff, 0x48, 0x94, 0x83, 0xff, 0x57, 0xa1, 0x87, 0xff, 0x51, 0x94, 0x7f, 0xff, 0x3b, 0x6c, 0x71, 0xff, 0x30, 0x4d, 0x61, 0xff, 0x2c, 0x4a, 0x5d, 0xff, 0x27, 0x4f, 0x5b, 0xff, 0x24, 0x43, 0x51, 0xff, 0x25, 0x3a, 0x4e, 0xff, 0x23, 0x37, 0x4c, 0xff, 0x22, 0x34, 0x46, 0xff, 0x21, 0x33, 0x46, 0xff, 0x21, 0x33, 0x47, 0xff, 0x21, 0x34, 0x47, 0xff, 0x20, 0x37, 0x45, 0xff, 0x1e, 0x3c, 0x44, 0xff, 0x1f, 0x3b, 0x44, 0xff, 0x20, 0x38, 0x47, 0xff, 0x22, 0x35, 0x4b, 0xff, 0x24, 0x38, 0x51, 0xff, 0x23, 0x38, 0x52, 0xff, 0x26, 0x41, 0x55, 0xff, 0x70, 0xa4, 0x90, 0xff, 0x4b, 0xb4, 0x6d, 0xff, 0x40, 0xc2, 0x75, 0xff, 0x43, 0xa7, 0x6e, 0xff, 0x5b, 0xb3, 0x79, 0xff, 0x1a, 0x3c, 0xab, 0xff, 0x1a, 0x1b, 0xc7, 0xff, 0x19, 0x1a, 0xc5, 0xff, 0x13, 0x16, 0xb8, 0xff, 0x12, 0x14, 0xb5, 0xff, 0x3d, 0x3f, 0xdd, 0xff, 0x64, 0x65, 0xf5, 0xff, 0x3b, 0x38, 0xf6, 0xff, 0x6d, 0x7b, 0xfe, 0xff, 0x5f, 0xb6, 0x9a, 0xff, 0x27, 0x28, 0xcc, 0xff, 0x67, 0x72, 0xff, 0xff, 0x63, 0x5e, 0xff, 0xff, 0x72, 0x82, 0xff, 0xff, 0x27, 0x29, 0xc8, 0xff, 0x37, 0x37, 0xcb, 0xff, 0x63, 0x69, 0xff, 0xff, 0x62, 0x6c, 0xff, 0xff, 0x47, 0x41, 0xec, 0xff, 0x61, 0x6b, 0xff, 0xff, 0x5f, 0x67, 0xff, 0xff, 0x5d, 0x63, 0xff, 0xff, 0x59, 0x6a, 0xff, 0xff, 0x61, 0x71, 0xff, 0xff, 0x9d, 0xa2, 0xff, 0xff, 0x50, 0x5a, 0xde, 0xff, 0x0f, 0x13, 0xa2, 0xff, 0x0e, 0x12, 0x9b, 0xff, 0x23, 0x3e, 0x8c, 0xff, 0x8c, 0xc3, 0xd2, 0xff, 0x99, 0xd2, 0xec, 0xff, 0x9c, 0xd5, 0xef, 0xff, 0x97, 0xd2, 0xea, 0xff, 0x96, 0xd0, 0xe8, 0xff, 0x94, 0xcf, 0xe5, 0xff, 0x8f, 0xc7, 0xdf, 0xff, 0x90, 0xc9, 0xe2, 0xff, 0x91, 0xc9, 0xe3, 0xff, 0x95, 0xcc, 0xe6, 0xff, 0x97, 0xd0, 0xea, 0xff, 0x93, 0xcc, 0xe6, 0xff, 0x92, 0xcc, 0xe4, 0xff, 0x94, 0xcf, 0xe4, 0xff, 0x99, 0xd7, 0xea, 0xff, 0xa1, 0xe3, 0xf5, 0xff, 0xaf, 0xe9, 0xf9, 0xff, 0xa0, 0xe1, 0xf5, 0xff, 0x92, 0xd5, 0xe9, 0xff, 0x89, 0xc8, 0xdc, 0xff, 0x83, 0xbc, 0xd3, 0xff, 0x7b, 0xbb, 0xcb, 0xff, 0x76, 0xbf, 0xca, 0xff, 0x75, 0xbc, 0xc8, 0xff, 0x72, 0xb1, 0xc0, 0xff, 0x71, 0xa3, 0xb5, 0xff, 0x68, 0x96, 0xa7, 0xff, 0x53, 0x81, 0x94, 0xff, 0x49, 0x71, 0x85, 0xff, 0x43, 0x65, 0x80, 0xff, 0x44, 0x66, 0x86, 0xff, 0x5e, 0x82, 0xa6, 0xff, 0x6e, 0x93, 0xb3, 0xff, 0x74, 0x9b, 0xb7, 0xff, 0x7a, 0xa1, 0xbe, 0xff, 0x76, 0xa0, 0xbc, 0xff, 0x80, 0xa7, 0xbe, 0xff, + 0x35, 0x6d, 0x62, 0xff, 0x3d, 0x7b, 0x6c, 0xff, 0x3c, 0x7e, 0x6f, 0xff, 0x48, 0x7e, 0x70, 0xff, 0x3f, 0x72, 0x67, 0xff, 0x38, 0x72, 0x65, 0xff, 0x40, 0x8a, 0x79, 0xff, 0x4d, 0x9e, 0x85, 0xff, 0x5f, 0xa9, 0x8b, 0xff, 0x56, 0x93, 0x7c, 0xff, 0x3a, 0x69, 0x69, 0xff, 0x2e, 0x4b, 0x60, 0xff, 0x2c, 0x58, 0x5a, 0xff, 0x27, 0x62, 0x57, 0xff, 0x22, 0x4c, 0x4a, 0xff, 0x23, 0x3a, 0x4e, 0xff, 0x25, 0x39, 0x51, 0xff, 0x24, 0x37, 0x4d, 0xff, 0x24, 0x35, 0x4c, 0xff, 0x23, 0x35, 0x48, 0xff, 0x21, 0x33, 0x46, 0xff, 0x21, 0x36, 0x46, 0xff, 0x21, 0x38, 0x48, 0xff, 0x23, 0x39, 0x4a, 0xff, 0x23, 0x37, 0x4a, 0xff, 0x22, 0x34, 0x4e, 0xff, 0x23, 0x35, 0x50, 0xff, 0x24, 0x36, 0x4f, 0xff, 0x26, 0x40, 0x52, 0xff, 0x84, 0xb6, 0xa6, 0xff, 0x4b, 0xa5, 0x70, 0xff, 0x3d, 0xab, 0x73, 0xff, 0x3d, 0x9e, 0x6e, 0xff, 0x37, 0x8c, 0x63, 0xff, 0x21, 0x21, 0xdf, 0xff, 0x20, 0x20, 0xd5, 0xff, 0x18, 0x19, 0xc5, 0xff, 0x19, 0x1a, 0xca, 0xff, 0x40, 0x41, 0xe5, 0xff, 0x69, 0x6e, 0xff, 0xff, 0x5a, 0x6b, 0xf7, 0xff, 0x85, 0x85, 0xff, 0xff, 0x8f, 0xdc, 0xb5, 0xff, 0x2c, 0x73, 0x87, 0xff, 0x62, 0x65, 0xfc, 0xff, 0x5b, 0x5e, 0xff, 0xff, 0x77, 0x7c, 0xff, 0xff, 0x45, 0x4c, 0xea, 0xff, 0x0b, 0x0e, 0x95, 0xff, 0x45, 0x44, 0xd6, 0xff, 0x5c, 0x67, 0xff, 0xff, 0x66, 0x6b, 0xff, 0xff, 0x43, 0x41, 0xec, 0xff, 0x60, 0x6b, 0xff, 0xff, 0x5e, 0x65, 0xff, 0xff, 0x5c, 0x62, 0xff, 0xff, 0x59, 0x6a, 0xff, 0xff, 0x62, 0x71, 0xff, 0xff, 0x9a, 0xa4, 0xff, 0xff, 0x37, 0x46, 0xd0, 0xff, 0x10, 0x12, 0xa5, 0xff, 0x10, 0x13, 0xa1, 0xff, 0x1d, 0x34, 0x92, 0xff, 0x8e, 0xcc, 0xd5, 0xff, 0x99, 0xd7, 0xf0, 0xff, 0x9c, 0xda, 0xf1, 0xff, 0x9c, 0xdb, 0xf1, 0xff, 0x9e, 0xde, 0xf2, 0xff, 0x96, 0xd6, 0xec, 0xff, 0x91, 0xce, 0xe0, 0xff, 0x95, 0xcd, 0xe0, 0xff, 0x95, 0xcd, 0xe5, 0xff, 0x96, 0xcb, 0xe2, 0xff, 0x97, 0xcc, 0xe2, 0xff, 0x97, 0xcd, 0xe4, 0xff, 0xa1, 0xd8, 0xec, 0xff, 0xa4, 0xde, 0xf0, 0xff, 0xa6, 0xe4, 0xf6, 0xff, 0xb6, 0xec, 0xfa, 0xff, 0xc2, 0xf1, 0xfd, 0xff, 0xc6, 0xef, 0xff, 0xff, 0xbb, 0xeb, 0xfc, 0xff, 0xab, 0xe7, 0xf7, 0xff, 0x9f, 0xdb, 0xf1, 0xff, 0x99, 0xd1, 0xe9, 0xff, 0x89, 0xc4, 0xd6, 0xff, 0x7a, 0xbd, 0xc7, 0xff, 0x70, 0xb3, 0xbe, 0xff, 0x71, 0xad, 0xbb, 0xff, 0x69, 0xa0, 0xac, 0xff, 0x5b, 0x8c, 0x99, 0xff, 0x52, 0x7f, 0x8f, 0xff, 0x4e, 0x72, 0x86, 0xff, 0x43, 0x67, 0x7e, 0xff, 0x45, 0x68, 0x82, 0xff, 0x67, 0x88, 0xa2, 0xff, 0x83, 0xa5, 0xbb, 0xff, 0x8d, 0xaf, 0xc8, 0xff, 0x91, 0xb5, 0xcf, 0xff, 0x98, 0xbc, 0xd7, 0xff, + 0x32, 0x5f, 0x5a, 0xff, 0x36, 0x61, 0x5c, 0xff, 0x37, 0x64, 0x5c, 0xff, 0x3c, 0x61, 0x5a, 0xff, 0x36, 0x57, 0x52, 0xff, 0x35, 0x59, 0x5b, 0xff, 0x4b, 0x86, 0x7a, 0xff, 0x53, 0x99, 0x84, 0xff, 0x48, 0x91, 0x7a, 0xff, 0x40, 0x79, 0x6e, 0xff, 0x34, 0x57, 0x5e, 0xff, 0x2c, 0x48, 0x57, 0xff, 0x31, 0x60, 0x5a, 0xff, 0x2b, 0x6e, 0x58, 0xff, 0x1e, 0x59, 0x49, 0xff, 0x23, 0x3e, 0x4d, 0xff, 0x25, 0x3a, 0x52, 0xff, 0x24, 0x36, 0x4d, 0xff, 0x23, 0x36, 0x4c, 0xff, 0x25, 0x35, 0x4a, 0xff, 0x22, 0x33, 0x4a, 0xff, 0x20, 0x31, 0x46, 0xff, 0x22, 0x34, 0x47, 0xff, 0x23, 0x35, 0x48, 0xff, 0x24, 0x35, 0x4b, 0xff, 0x23, 0x35, 0x4d, 0xff, 0x23, 0x35, 0x51, 0xff, 0x23, 0x36, 0x51, 0xff, 0x4b, 0x6f, 0x75, 0xff, 0x95, 0xc9, 0xb7, 0xff, 0x32, 0x85, 0x53, 0xff, 0x2b, 0x85, 0x53, 0xff, 0x34, 0x91, 0x60, 0xff, 0x4c, 0x98, 0x85, 0xff, 0x4f, 0x45, 0xff, 0xff, 0x51, 0x4e, 0xf9, 0xff, 0x55, 0x53, 0xf9, 0xff, 0x69, 0x68, 0xff, 0xff, 0x78, 0x85, 0xff, 0xff, 0xaf, 0xc9, 0xf3, 0xff, 0xcc, 0xfb, 0xd8, 0xff, 0x74, 0xd4, 0x92, 0xff, 0x34, 0xa4, 0x68, 0xff, 0x3a, 0x65, 0xb1, 0xff, 0x62, 0x6e, 0xff, 0xff, 0x6d, 0x6c, 0xff, 0xff, 0x65, 0x70, 0xfe, 0xff, 0x0f, 0x11, 0x9e, 0xff, 0x0b, 0x10, 0x95, 0xff, 0x4d, 0x4b, 0xdb, 0xff, 0x5b, 0x66, 0xff, 0xff, 0x61, 0x61, 0xfe, 0xff, 0x4c, 0x4c, 0xf1, 0xff, 0x5e, 0x68, 0xff, 0xff, 0x60, 0x65, 0xff, 0xff, 0x5a, 0x63, 0xff, 0xff, 0x5a, 0x69, 0xff, 0xff, 0x6b, 0x78, 0xff, 0xff, 0x8e, 0x98, 0xff, 0xff, 0x1b, 0x26, 0xb5, 0xff, 0x10, 0x11, 0xa5, 0xff, 0x11, 0x12, 0xa4, 0xff, 0x19, 0x2e, 0x96, 0xff, 0x8a, 0xc7, 0xc8, 0xff, 0x9c, 0xdb, 0xf2, 0xff, 0x9b, 0xd9, 0xf0, 0xff, 0xa2, 0xe0, 0xf6, 0xff, 0x9f, 0xde, 0xf4, 0xff, 0x95, 0xd7, 0xe8, 0xff, 0x98, 0xd4, 0xe4, 0xff, 0x99, 0xd3, 0xe4, 0xff, 0x9a, 0xd2, 0xe8, 0xff, 0x96, 0xcc, 0xe4, 0xff, 0x96, 0xcb, 0xde, 0xff, 0x9e, 0xd4, 0xe4, 0xff, 0xa7, 0xdf, 0xef, 0xff, 0xa6, 0xe1, 0xf0, 0xff, 0xa4, 0xe3, 0xf3, 0xff, 0xb2, 0xea, 0xfa, 0xff, 0xc3, 0xef, 0xfd, 0xff, 0xcc, 0xef, 0xff, 0xff, 0xcb, 0xef, 0xff, 0xff, 0xc5, 0xef, 0xfc, 0xff, 0xc0, 0xee, 0xfd, 0xff, 0xc2, 0xea, 0xff, 0xff, 0xab, 0xda, 0xf4, 0xff, 0x99, 0xcb, 0xdf, 0xff, 0x7e, 0xb8, 0xc7, 0xff, 0x70, 0xac, 0xb6, 0xff, 0x71, 0xa9, 0xb8, 0xff, 0x6b, 0x9e, 0xab, 0xff, 0x55, 0x84, 0x91, 0xff, 0x4c, 0x78, 0x87, 0xff, 0x4b, 0x78, 0x89, 0xff, 0x42, 0x69, 0x79, 0xff, 0x56, 0x74, 0x85, 0xff, 0x6e, 0x8d, 0x9f, 0xff, 0x85, 0xa6, 0xb6, 0xff, 0x9d, 0xbd, 0xd0, 0xff, 0x9b, 0xbc, 0xd2, 0xff, + 0x2e, 0x47, 0x4c, 0xff, 0x31, 0x45, 0x50, 0xff, 0x32, 0x48, 0x50, 0xff, 0x2f, 0x47, 0x49, 0xff, 0x2e, 0x43, 0x49, 0xff, 0x2f, 0x4c, 0x51, 0xff, 0x3e, 0x6f, 0x68, 0xff, 0x47, 0x7c, 0x6f, 0xff, 0x3d, 0x6e, 0x66, 0xff, 0x35, 0x5b, 0x60, 0xff, 0x2d, 0x45, 0x50, 0xff, 0x28, 0x3e, 0x4e, 0xff, 0x2a, 0x4b, 0x4f, 0xff, 0x2c, 0x69, 0x55, 0xff, 0x23, 0x60, 0x4b, 0xff, 0x23, 0x4b, 0x47, 0xff, 0x23, 0x3b, 0x49, 0xff, 0x23, 0x35, 0x47, 0xff, 0x25, 0x35, 0x48, 0xff, 0x22, 0x32, 0x48, 0xff, 0x21, 0x31, 0x46, 0xff, 0x20, 0x31, 0x44, 0xff, 0x20, 0x31, 0x43, 0xff, 0x22, 0x34, 0x47, 0xff, 0x23, 0x36, 0x48, 0xff, 0x24, 0x35, 0x4d, 0xff, 0x24, 0x37, 0x51, 0xff, 0x23, 0x37, 0x54, 0xff, 0x5b, 0x82, 0x87, 0xff, 0x90, 0xc8, 0xb1, 0xff, 0x30, 0x7c, 0x4e, 0xff, 0x27, 0x71, 0x45, 0xff, 0x31, 0x96, 0x60, 0xff, 0x51, 0xa2, 0x72, 0xff, 0x6d, 0xca, 0x9c, 0xff, 0x54, 0x8c, 0xd7, 0xff, 0x51, 0x86, 0xb5, 0xff, 0x69, 0xaa, 0xa3, 0xff, 0x6c, 0xd0, 0x97, 0xff, 0x3e, 0xa9, 0x6f, 0xff, 0x38, 0xb1, 0x70, 0xff, 0x50, 0xc4, 0x86, 0xff, 0x3f, 0xa9, 0x71, 0xff, 0x5a, 0x6e, 0xf2, 0xff, 0x5e, 0x65, 0xff, 0xff, 0x75, 0x7e, 0xff, 0xff, 0x14, 0x17, 0xa6, 0xff, 0x0f, 0x12, 0x9b, 0xff, 0x0d, 0x11, 0x97, 0xff, 0x45, 0x45, 0xd5, 0xff, 0x62, 0x6b, 0xff, 0xff, 0x52, 0x4e, 0xf6, 0xff, 0x5e, 0x60, 0xfd, 0xff, 0x5b, 0x69, 0xff, 0xff, 0x61, 0x66, 0xff, 0xff, 0x5c, 0x67, 0xff, 0xff, 0x5d, 0x68, 0xff, 0xff, 0x78, 0x84, 0xff, 0xff, 0x46, 0x51, 0xdc, 0xff, 0x14, 0x17, 0xaf, 0xff, 0x10, 0x12, 0xa8, 0xff, 0x12, 0x13, 0xa7, 0xff, 0x19, 0x2d, 0x99, 0xff, 0x83, 0xc0, 0xbe, 0xff, 0x99, 0xd8, 0xf1, 0xff, 0x9a, 0xd4, 0xec, 0xff, 0xa0, 0xdc, 0xf2, 0xff, 0x9a, 0xd9, 0xec, 0xff, 0x9c, 0xd8, 0xec, 0xff, 0x9d, 0xd9, 0xed, 0xff, 0xa0, 0xd8, 0xea, 0xff, 0x9c, 0xd2, 0xe7, 0xff, 0x98, 0xce, 0xe1, 0xff, 0x98, 0xcc, 0xdd, 0xff, 0x9b, 0xd0, 0xdd, 0xff, 0x9f, 0xd7, 0xe2, 0xff, 0x9b, 0xd7, 0xe5, 0xff, 0x9b, 0xd7, 0xe7, 0xff, 0xa2, 0xdf, 0xef, 0xff, 0xa6, 0xe2, 0xf4, 0xff, 0xa2, 0xe0, 0xf3, 0xff, 0xa5, 0xe4, 0xf4, 0xff, 0xa8, 0xe7, 0xf6, 0xff, 0xb4, 0xea, 0xfa, 0xff, 0xbf, 0xeb, 0xfd, 0xff, 0xb4, 0xe3, 0xf9, 0xff, 0xb4, 0xe4, 0xf8, 0xff, 0xa3, 0xd5, 0xec, 0xff, 0x81, 0xb6, 0xc6, 0xff, 0x75, 0xad, 0xba, 0xff, 0x7d, 0xb3, 0xc0, 0xff, 0x71, 0xa8, 0xb4, 0xff, 0x58, 0x89, 0x94, 0xff, 0x59, 0x8a, 0x9a, 0xff, 0x53, 0x86, 0x96, 0xff, 0x50, 0x74, 0x85, 0xff, 0x5e, 0x7c, 0x8d, 0xff, 0x77, 0x93, 0xa2, 0xff, 0x92, 0xad, 0xbd, 0xff, 0x80, 0x9e, 0xaf, 0xff, + 0x2d, 0x3f, 0x4a, 0xff, 0x34, 0x48, 0x56, 0xff, 0x33, 0x46, 0x56, 0xff, 0x2f, 0x42, 0x49, 0xff, 0x31, 0x48, 0x48, 0xff, 0x31, 0x4c, 0x4d, 0xff, 0x2f, 0x54, 0x4e, 0xff, 0x35, 0x65, 0x58, 0xff, 0x38, 0x5c, 0x5a, 0xff, 0x33, 0x52, 0x59, 0xff, 0x28, 0x40, 0x46, 0xff, 0x21, 0x37, 0x39, 0xff, 0x24, 0x39, 0x42, 0xff, 0x2f, 0x5d, 0x55, 0xff, 0x2b, 0x6f, 0x58, 0xff, 0x23, 0x5b, 0x48, 0xff, 0x1f, 0x41, 0x3f, 0xff, 0x25, 0x3f, 0x4d, 0xff, 0x2d, 0x4b, 0x5a, 0xff, 0x32, 0x55, 0x67, 0xff, 0x38, 0x60, 0x77, 0xff, 0x3e, 0x68, 0x7f, 0xff, 0x3b, 0x66, 0x7a, 0xff, 0x33, 0x5a, 0x6a, 0xff, 0x29, 0x45, 0x55, 0xff, 0x24, 0x37, 0x49, 0xff, 0x25, 0x37, 0x4a, 0xff, 0x25, 0x37, 0x4e, 0xff, 0x32, 0x52, 0x61, 0xff, 0x9e, 0xcb, 0xbd, 0xff, 0x4d, 0x9b, 0x6e, 0xff, 0x2b, 0x77, 0x49, 0xff, 0x23, 0x7c, 0x4a, 0xff, 0x28, 0x76, 0x48, 0xff, 0x39, 0x98, 0x5e, 0xff, 0x2c, 0x9f, 0x5c, 0xff, 0x3a, 0x90, 0x62, 0xff, 0x49, 0x92, 0x6a, 0xff, 0x29, 0x88, 0x55, 0xff, 0x25, 0x84, 0x50, 0xff, 0x2f, 0xa9, 0x69, 0xff, 0x42, 0xc2, 0x82, 0xff, 0x48, 0x93, 0xb2, 0xff, 0x61, 0x6e, 0xff, 0xff, 0x74, 0x7f, 0xff, 0xff, 0x20, 0x23, 0xb9, 0xff, 0x0f, 0x13, 0x92, 0xff, 0x0e, 0x12, 0x9d, 0xff, 0x0e, 0x12, 0x9a, 0xff, 0x2c, 0x2e, 0xc2, 0xff, 0x79, 0x7a, 0xff, 0xff, 0x43, 0x3e, 0xf8, 0xff, 0x68, 0x70, 0xff, 0xff, 0x59, 0x69, 0xff, 0xff, 0x5f, 0x68, 0xff, 0xff, 0x53, 0x5d, 0xfc, 0xff, 0x57, 0x5b, 0xfa, 0xff, 0x2f, 0x3e, 0xe0, 0xff, 0x17, 0x1e, 0xba, 0xff, 0x12, 0x13, 0xb0, 0xff, 0x11, 0x14, 0xac, 0xff, 0x12, 0x13, 0xa9, 0xff, 0x1c, 0x34, 0x9a, 0xff, 0x73, 0xb3, 0xaf, 0xff, 0x93, 0xd0, 0xe8, 0xff, 0x92, 0xcd, 0xe3, 0xff, 0x96, 0xd0, 0xe4, 0xff, 0x94, 0xcf, 0xe5, 0xff, 0x99, 0xd4, 0xe7, 0xff, 0x9e, 0xd7, 0xe9, 0xff, 0x9b, 0xd2, 0xe1, 0xff, 0x9c, 0xd6, 0xe4, 0xff, 0x9a, 0xd5, 0xe7, 0xff, 0x9a, 0xd4, 0xe2, 0xff, 0x9c, 0xd0, 0xdb, 0xff, 0x9e, 0xd1, 0xdb, 0xff, 0xa1, 0xd9, 0xe8, 0xff, 0x9f, 0xd9, 0xeb, 0xff, 0x98, 0xd1, 0xe2, 0xff, 0x94, 0xce, 0xe3, 0xff, 0x95, 0xd0, 0xe1, 0xff, 0x91, 0xd2, 0xe2, 0xff, 0x91, 0xd5, 0xe8, 0xff, 0x9c, 0xdb, 0xf2, 0xff, 0xa4, 0xde, 0xf6, 0xff, 0xa2, 0xdf, 0xf5, 0xff, 0xb3, 0xe7, 0xfa, 0xff, 0xae, 0xe0, 0xf7, 0xff, 0x91, 0xc5, 0xdd, 0xff, 0x6f, 0xaa, 0xb6, 0xff, 0x6c, 0xad, 0xb2, 0xff, 0x79, 0xbb, 0xc3, 0xff, 0x63, 0x9f, 0xa5, 0xff, 0x51, 0x81, 0x88, 0xff, 0x56, 0x85, 0x90, 0xff, 0x51, 0x7a, 0x87, 0xff, 0x52, 0x6f, 0x80, 0xff, 0x62, 0x7d, 0x90, 0xff, 0x6c, 0x8c, 0x9a, 0xff, 0x5d, 0x86, 0x92, 0xff, + 0x2e, 0x44, 0x4b, 0xff, 0x34, 0x59, 0x58, 0xff, 0x34, 0x55, 0x57, 0xff, 0x34, 0x4f, 0x52, 0xff, 0x37, 0x54, 0x51, 0xff, 0x34, 0x4e, 0x4f, 0xff, 0x32, 0x67, 0x58, 0xff, 0x3b, 0x7a, 0x67, 0xff, 0x3c, 0x6f, 0x64, 0xff, 0x32, 0x54, 0x53, 0xff, 0x2e, 0x4b, 0x49, 0xff, 0x26, 0x43, 0x3d, 0xff, 0x1f, 0x36, 0x35, 0xff, 0x23, 0x42, 0x3e, 0xff, 0x2a, 0x64, 0x51, 0xff, 0x33, 0x77, 0x65, 0xff, 0x42, 0x80, 0x81, 0xff, 0x58, 0x8f, 0xa3, 0xff, 0x66, 0xa0, 0xb8, 0xff, 0x6d, 0xa8, 0xc4, 0xff, 0x76, 0xb1, 0xcf, 0xff, 0x78, 0xb5, 0xd3, 0xff, 0x76, 0xb1, 0xcd, 0xff, 0x69, 0xa2, 0xba, 0xff, 0x50, 0x89, 0x99, 0xff, 0x35, 0x5f, 0x6b, 0xff, 0x26, 0x3d, 0x4d, 0xff, 0x26, 0x37, 0x4a, 0xff, 0x23, 0x39, 0x4c, 0xff, 0x9f, 0xca, 0xbd, 0xff, 0x64, 0xab, 0x81, 0xff, 0x2a, 0x7b, 0x4d, 0xff, 0x20, 0x6c, 0x3e, 0xff, 0x24, 0x6b, 0x40, 0xff, 0x38, 0x88, 0x58, 0xff, 0x27, 0x76, 0x45, 0xff, 0x2a, 0x73, 0x48, 0xff, 0x3e, 0x7f, 0x5b, 0xff, 0x52, 0x97, 0x66, 0xff, 0x6e, 0xbd, 0x87, 0xff, 0x54, 0xb9, 0x7a, 0xff, 0x36, 0xb3, 0x73, 0xff, 0x64, 0x7b, 0xf4, 0xff, 0x6c, 0x7b, 0xff, 0xff, 0x26, 0x29, 0xc5, 0xff, 0x0e, 0x13, 0x92, 0xff, 0x0f, 0x14, 0x9d, 0xff, 0x0e, 0x14, 0xa1, 0xff, 0x0f, 0x14, 0x9e, 0xff, 0x1a, 0x33, 0xa3, 0xff, 0x82, 0x8a, 0xff, 0xff, 0x52, 0x4f, 0xff, 0xff, 0x63, 0x73, 0xff, 0xff, 0x5b, 0x6c, 0xff, 0xff, 0x5e, 0x6a, 0xff, 0xff, 0x3e, 0x4a, 0xe4, 0xff, 0x41, 0x42, 0xe9, 0xff, 0x17, 0x1c, 0xc3, 0xff, 0x10, 0x13, 0x9f, 0xff, 0x12, 0x14, 0xb4, 0xff, 0x13, 0x15, 0xaf, 0xff, 0x13, 0x14, 0xae, 0xff, 0x1d, 0x3e, 0x8d, 0xff, 0x6a, 0xa8, 0xa2, 0xff, 0x9c, 0xda, 0xf0, 0xff, 0x94, 0xcf, 0xe3, 0xff, 0x96, 0xd0, 0xe5, 0xff, 0x94, 0xcb, 0xe1, 0xff, 0x99, 0xd1, 0xe1, 0xff, 0x9f, 0xd7, 0xe5, 0xff, 0x9f, 0xda, 0xe8, 0xff, 0x9f, 0xde, 0xee, 0xff, 0x9a, 0xdf, 0xec, 0xff, 0x99, 0xdd, 0xe7, 0xff, 0x9b, 0xd8, 0xe5, 0xff, 0x9b, 0xd5, 0xe0, 0xff, 0xa6, 0xe0, 0xec, 0xff, 0xaa, 0xe0, 0xf2, 0xff, 0x9a, 0xd1, 0xe4, 0xff, 0x98, 0xd1, 0xe6, 0xff, 0x99, 0xd3, 0xe7, 0xff, 0x91, 0xd1, 0xe0, 0xff, 0x91, 0xd4, 0xe1, 0xff, 0x99, 0xd7, 0xe8, 0xff, 0x9a, 0xd8, 0xf1, 0xff, 0x9e, 0xdb, 0xf2, 0xff, 0xaa, 0xe3, 0xf8, 0xff, 0xa1, 0xdf, 0xf3, 0xff, 0x8e, 0xcc, 0xde, 0xff, 0x77, 0xb5, 0xc5, 0xff, 0x6e, 0xac, 0xb4, 0xff, 0x64, 0xa5, 0xab, 0xff, 0x5c, 0x97, 0x99, 0xff, 0x4b, 0x7a, 0x7a, 0xff, 0x4c, 0x77, 0x7a, 0xff, 0x45, 0x6d, 0x7a, 0xff, 0x41, 0x62, 0x72, 0xff, 0x46, 0x69, 0x76, 0xff, 0x55, 0x82, 0x8a, 0xff, 0x63, 0x97, 0x9e, 0xff, + 0x29, 0x3f, 0x3d, 0xff, 0x30, 0x5b, 0x50, 0xff, 0x31, 0x61, 0x58, 0xff, 0x36, 0x61, 0x5f, 0xff, 0x3d, 0x6d, 0x64, 0xff, 0x34, 0x5a, 0x54, 0xff, 0x2f, 0x61, 0x54, 0xff, 0x36, 0x7d, 0x6a, 0xff, 0x35, 0x73, 0x65, 0xff, 0x35, 0x65, 0x5c, 0xff, 0x34, 0x5b, 0x56, 0xff, 0x2f, 0x54, 0x4c, 0xff, 0x22, 0x3d, 0x3b, 0xff, 0x27, 0x46, 0x4c, 0xff, 0x45, 0x80, 0x89, 0xff, 0x69, 0xb0, 0xba, 0xff, 0x83, 0xc2, 0xd8, 0xff, 0x90, 0xcf, 0xea, 0xff, 0x94, 0xd4, 0xf0, 0xff, 0x93, 0xd5, 0xf1, 0xff, 0x92, 0xd5, 0xf2, 0xff, 0x8e, 0xd0, 0xee, 0xff, 0x8b, 0xcd, 0xe7, 0xff, 0x84, 0xc7, 0xde, 0xff, 0x7a, 0xc0, 0xd2, 0xff, 0x5c, 0x9f, 0xad, 0xff, 0x34, 0x65, 0x70, 0xff, 0x27, 0x3c, 0x4c, 0xff, 0x23, 0x39, 0x4a, 0xff, 0x9f, 0xcf, 0xc2, 0xff, 0x70, 0xb5, 0x8d, 0xff, 0x3b, 0x9b, 0x67, 0xff, 0x3d, 0xaa, 0x71, 0xff, 0x26, 0x78, 0x48, 0xff, 0x45, 0x8e, 0x5d, 0xff, 0x49, 0xa3, 0x6c, 0xff, 0x3d, 0x9d, 0x68, 0xff, 0x4f, 0x99, 0x6b, 0xff, 0xb8, 0xec, 0xc5, 0xff, 0xe6, 0xfd, 0xea, 0xff, 0xd2, 0xf7, 0xda, 0xff, 0x7b, 0xc4, 0xc0, 0xff, 0x8b, 0x90, 0xff, 0xff, 0x2e, 0x3a, 0xc7, 0xff, 0x0f, 0x15, 0x9d, 0xff, 0x10, 0x15, 0x9a, 0xff, 0x11, 0x15, 0xa3, 0xff, 0x0f, 0x14, 0xa3, 0xff, 0x0b, 0x10, 0x9f, 0xff, 0x7e, 0xc0, 0xb2, 0xff, 0x83, 0xbb, 0xdd, 0xff, 0x6f, 0x6d, 0xff, 0xff, 0x64, 0x73, 0xff, 0xff, 0x62, 0x71, 0xff, 0xff, 0x5a, 0x68, 0xff, 0xff, 0x75, 0xae, 0xda, 0xff, 0x35, 0x36, 0xe9, 0xff, 0x18, 0x19, 0xc9, 0xff, 0x12, 0x15, 0xa4, 0xff, 0x13, 0x16, 0xb7, 0xff, 0x14, 0x17, 0xb4, 0xff, 0x2a, 0x28, 0xdc, 0xff, 0x1f, 0x4e, 0x78, 0xff, 0x60, 0x9f, 0x96, 0xff, 0x9c, 0xdc, 0xec, 0xff, 0x95, 0xd4, 0xe4, 0xff, 0x98, 0xd2, 0xe2, 0xff, 0x94, 0xcc, 0xde, 0xff, 0x9e, 0xd4, 0xe2, 0xff, 0x9d, 0xd9, 0xe8, 0xff, 0xa3, 0xe0, 0xf0, 0xff, 0xa4, 0xe6, 0xf6, 0xff, 0x9a, 0xe2, 0xed, 0xff, 0x98, 0xdc, 0xe7, 0xff, 0x98, 0xd9, 0xe5, 0xff, 0x99, 0xd6, 0xe1, 0xff, 0x9e, 0xd6, 0xe4, 0xff, 0xa1, 0xd8, 0xec, 0xff, 0x9a, 0xd2, 0xe3, 0xff, 0x93, 0xd0, 0xe1, 0xff, 0x97, 0xd6, 0xe7, 0xff, 0x98, 0xd3, 0xe5, 0xff, 0x9b, 0xd4, 0xe7, 0xff, 0x9d, 0xd5, 0xe8, 0xff, 0x9d, 0xd5, 0xed, 0xff, 0xa1, 0xd9, 0xf1, 0xff, 0xaa, 0xe2, 0xf8, 0xff, 0xaa, 0xe1, 0xf9, 0xff, 0x7f, 0xbf, 0xd0, 0xff, 0x6c, 0xae, 0xb5, 0xff, 0x74, 0xaf, 0xb9, 0xff, 0x73, 0xac, 0xba, 0xff, 0x7b, 0xac, 0xb4, 0xff, 0x7c, 0xa8, 0xac, 0xff, 0x5f, 0x88, 0x8b, 0xff, 0x5a, 0x7d, 0x85, 0xff, 0x4f, 0x72, 0x7a, 0xff, 0x41, 0x6e, 0x75, 0xff, 0x5a, 0x93, 0x94, 0xff, 0x60, 0x9f, 0xa0, 0xff, + 0x29, 0x3f, 0x49, 0xff, 0x28, 0x44, 0x49, 0xff, 0x2d, 0x51, 0x4e, 0xff, 0x39, 0x69, 0x64, 0xff, 0x43, 0x7e, 0x6e, 0xff, 0x34, 0x70, 0x5d, 0xff, 0x30, 0x66, 0x57, 0xff, 0x31, 0x72, 0x5e, 0xff, 0x2c, 0x6d, 0x56, 0xff, 0x31, 0x68, 0x5d, 0xff, 0x37, 0x67, 0x61, 0xff, 0x35, 0x60, 0x63, 0xff, 0x46, 0x75, 0x82, 0xff, 0x62, 0xa0, 0xb2, 0xff, 0x7e, 0xc4, 0xd9, 0xff, 0x8f, 0xd6, 0xeb, 0xff, 0x98, 0xdd, 0xf2, 0xff, 0x9f, 0xe0, 0xf5, 0xff, 0x9e, 0xe2, 0xf7, 0xff, 0x9d, 0xdf, 0xf9, 0xff, 0x98, 0xdb, 0xf7, 0xff, 0x92, 0xd5, 0xf2, 0xff, 0x8f, 0xd3, 0xed, 0xff, 0x87, 0xd0, 0xe4, 0xff, 0x86, 0xcf, 0xdd, 0xff, 0x78, 0xc7, 0xd2, 0xff, 0x52, 0x9b, 0xa1, 0xff, 0x2c, 0x56, 0x60, 0xff, 0x27, 0x42, 0x4f, 0xff, 0xad, 0xe7, 0xd7, 0xff, 0x81, 0xcc, 0xa2, 0xff, 0x59, 0xbc, 0x8a, 0xff, 0x45, 0xc9, 0x8d, 0xff, 0x39, 0xa2, 0x6c, 0xff, 0x33, 0x8b, 0x58, 0xff, 0x33, 0xa0, 0x63, 0xff, 0x29, 0x8a, 0x56, 0xff, 0x74, 0xb5, 0x8d, 0xff, 0xeb, 0xff, 0xf2, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xbb, 0xf0, 0xcd, 0xff, 0x5f, 0xa1, 0xc4, 0xff, 0x87, 0xbf, 0xcd, 0xff, 0x62, 0x87, 0xab, 0xff, 0x10, 0x16, 0x9e, 0xff, 0x12, 0x16, 0xa6, 0xff, 0x12, 0x16, 0xa7, 0xff, 0x0f, 0x10, 0xa6, 0xff, 0x50, 0x7c, 0xac, 0xff, 0xbb, 0xff, 0xd0, 0xff, 0x88, 0xed, 0xb3, 0xff, 0x67, 0x96, 0xec, 0xff, 0x6a, 0x6a, 0xff, 0xff, 0x64, 0x76, 0xff, 0xff, 0x8a, 0xbf, 0xf4, 0xff, 0xa4, 0xe2, 0xf2, 0xff, 0x73, 0x84, 0xfc, 0xff, 0x21, 0x23, 0xdb, 0xff, 0x16, 0x18, 0xae, 0xff, 0x17, 0x19, 0xbd, 0xff, 0x18, 0x19, 0xbd, 0xff, 0x5d, 0x5e, 0xff, 0xff, 0x1e, 0x5a, 0x5f, 0xff, 0x51, 0x91, 0x83, 0xff, 0x91, 0xdc, 0xe7, 0xff, 0x91, 0xd8, 0xe5, 0xff, 0x93, 0xd2, 0xde, 0xff, 0x93, 0xce, 0xdb, 0xff, 0x91, 0xcc, 0xd8, 0xff, 0x97, 0xd1, 0xdf, 0xff, 0xa0, 0xde, 0xf0, 0xff, 0xad, 0xe9, 0xf7, 0xff, 0xa8, 0xe6, 0xf4, 0xff, 0x96, 0xd9, 0xe3, 0xff, 0x96, 0xd7, 0xdf, 0xff, 0x96, 0xd2, 0xdc, 0xff, 0x92, 0xcf, 0xdb, 0xff, 0x93, 0xd3, 0xe3, 0xff, 0x9a, 0xd8, 0xea, 0xff, 0x9a, 0xda, 0xea, 0xff, 0x9b, 0xd7, 0xe9, 0xff, 0x97, 0xce, 0xe2, 0xff, 0x9b, 0xce, 0xe3, 0xff, 0x9d, 0xd3, 0xea, 0xff, 0x9c, 0xd3, 0xeb, 0xff, 0x9a, 0xd4, 0xed, 0xff, 0x98, 0xd5, 0xec, 0xff, 0x90, 0xcb, 0xe1, 0xff, 0x86, 0xc2, 0xd1, 0xff, 0x8d, 0xc9, 0xda, 0xff, 0x85, 0xc6, 0xd3, 0xff, 0x91, 0xcc, 0xe0, 0xff, 0xa0, 0xd5, 0xe2, 0xff, 0xa2, 0xcc, 0xda, 0xff, 0x7a, 0xaa, 0xae, 0xff, 0x6b, 0x97, 0x9a, 0xff, 0x61, 0x8a, 0x91, 0xff, 0x51, 0x7d, 0x84, 0xff, 0x50, 0x84, 0x87, 0xff, 0x4e, 0x88, 0x8a, 0xff, + 0x30, 0x56, 0x5f, 0xff, 0x2e, 0x59, 0x56, 0xff, 0x33, 0x65, 0x5a, 0xff, 0x37, 0x6e, 0x61, 0xff, 0x44, 0x88, 0x70, 0xff, 0x42, 0x88, 0x72, 0xff, 0x3d, 0x80, 0x6d, 0xff, 0x3b, 0x84, 0x6a, 0xff, 0x2c, 0x6b, 0x55, 0xff, 0x27, 0x55, 0x49, 0xff, 0x30, 0x69, 0x61, 0xff, 0x5a, 0x94, 0xa0, 0xff, 0x77, 0xb9, 0xd0, 0xff, 0x8b, 0xd4, 0xe8, 0xff, 0x91, 0xe0, 0xf2, 0xff, 0x91, 0xe4, 0xf4, 0xff, 0x97, 0xe5, 0xf2, 0xff, 0x9f, 0xe5, 0xf8, 0xff, 0x9e, 0xe2, 0xf9, 0xff, 0x9a, 0xe0, 0xf8, 0xff, 0x94, 0xdd, 0xf4, 0xff, 0x8d, 0xd6, 0xed, 0xff, 0x8b, 0xd4, 0xe7, 0xff, 0x80, 0xd2, 0xde, 0xff, 0x75, 0xcf, 0xd5, 0xff, 0x72, 0xcf, 0xd5, 0xff, 0x60, 0xbb, 0xbc, 0xff, 0x35, 0x78, 0x7c, 0xff, 0x24, 0x44, 0x4a, 0xff, 0x93, 0xd7, 0xc2, 0xff, 0x98, 0xe4, 0xc6, 0xff, 0x61, 0xbf, 0x91, 0xff, 0x52, 0xc2, 0x8d, 0xff, 0x39, 0x9b, 0x69, 0xff, 0x2a, 0x7c, 0x4a, 0xff, 0x2a, 0x7a, 0x47, 0xff, 0x26, 0x70, 0x43, 0xff, 0x4d, 0x9d, 0x72, 0xff, 0xb6, 0xeb, 0xce, 0xff, 0x8f, 0xe2, 0xb1, 0xff, 0x4f, 0xc0, 0x86, 0xff, 0x5b, 0xb6, 0x81, 0xff, 0xa7, 0xea, 0xbf, 0xff, 0xc6, 0xe4, 0xd9, 0xff, 0x13, 0x17, 0x9b, 0xff, 0x13, 0x17, 0xab, 0xff, 0x14, 0x16, 0xae, 0xff, 0x48, 0x79, 0xaa, 0xff, 0x64, 0xdd, 0x93, 0xff, 0x46, 0xd2, 0x8a, 0xff, 0x40, 0xc9, 0x85, 0xff, 0x4a, 0xdb, 0x90, 0xff, 0x53, 0xde, 0xac, 0xff, 0x99, 0xe6, 0xe4, 0xff, 0x9a, 0xdd, 0xeb, 0xff, 0xa9, 0xe4, 0xf4, 0xff, 0xa3, 0xde, 0xf4, 0xff, 0x33, 0x35, 0xdf, 0xff, 0x19, 0x1d, 0xba, 0xff, 0x1c, 0x1e, 0xc5, 0xff, 0x26, 0x26, 0xd9, 0xff, 0x55, 0x66, 0xe3, 0xff, 0x1e, 0x5a, 0x47, 0xff, 0x3e, 0x83, 0x71, 0xff, 0x90, 0xdd, 0xe9, 0xff, 0x90, 0xd9, 0xe6, 0xff, 0x92, 0xd5, 0xe0, 0xff, 0x96, 0xd5, 0xe2, 0xff, 0x97, 0xd3, 0xde, 0xff, 0x99, 0xd6, 0xe2, 0xff, 0x9b, 0xd5, 0xe4, 0xff, 0x9f, 0xdc, 0xe9, 0xff, 0xa2, 0xe2, 0xec, 0xff, 0x97, 0xdb, 0xe4, 0xff, 0x99, 0xd8, 0xdf, 0xff, 0x99, 0xd5, 0xdd, 0xff, 0x98, 0xd7, 0xe0, 0xff, 0x94, 0xd8, 0xe0, 0xff, 0x98, 0xda, 0xe7, 0xff, 0x99, 0xd9, 0xe5, 0xff, 0x9a, 0xd7, 0xe8, 0xff, 0x92, 0xcb, 0xde, 0xff, 0x99, 0xcd, 0xe2, 0xff, 0xa0, 0xd3, 0xec, 0xff, 0x9c, 0xd5, 0xee, 0xff, 0x98, 0xd2, 0xe9, 0xff, 0x8c, 0xcc, 0xe2, 0xff, 0x8c, 0xc8, 0xd9, 0xff, 0x96, 0xd5, 0xe5, 0xff, 0x99, 0xdf, 0xeb, 0xff, 0x89, 0xd1, 0xdb, 0xff, 0x8a, 0xcc, 0xdc, 0xff, 0x8c, 0xcf, 0xdb, 0xff, 0x90, 0xce, 0xd9, 0xff, 0x7e, 0xbe, 0xc7, 0xff, 0x69, 0xa4, 0xa6, 0xff, 0x75, 0xa5, 0xab, 0xff, 0x6a, 0x97, 0xa3, 0xff, 0x60, 0x89, 0x97, 0xff, 0x4d, 0x71, 0x7f, 0xff, + 0x35, 0x61, 0x6a, 0xff, 0x35, 0x74, 0x68, 0xff, 0x40, 0x83, 0x6f, 0xff, 0x3c, 0x82, 0x6f, 0xff, 0x3f, 0x87, 0x71, 0xff, 0x43, 0x8d, 0x7a, 0xff, 0x3d, 0x89, 0x73, 0xff, 0x3e, 0x8b, 0x72, 0xff, 0x31, 0x72, 0x5e, 0xff, 0x34, 0x69, 0x62, 0xff, 0x5c, 0x9b, 0xa7, 0xff, 0x80, 0xc5, 0xda, 0xff, 0x90, 0xdc, 0xf2, 0xff, 0x91, 0xe3, 0xf6, 0xff, 0x90, 0xe8, 0xf4, 0xff, 0x8d, 0xea, 0xf0, 0xff, 0x97, 0xe9, 0xf1, 0xff, 0x9f, 0xe6, 0xf8, 0xff, 0x9c, 0xdf, 0xf5, 0xff, 0x90, 0xdb, 0xef, 0xff, 0x87, 0xdc, 0xe8, 0xff, 0x82, 0xd7, 0xe0, 0xff, 0x76, 0xd1, 0xd4, 0xff, 0x68, 0xce, 0xcd, 0xff, 0x60, 0xcd, 0xcd, 0xff, 0x5e, 0xce, 0xcd, 0xff, 0x57, 0xbc, 0xbb, 0xff, 0x41, 0x8e, 0x85, 0xff, 0x37, 0x6b, 0x5d, 0xff, 0x5c, 0xa2, 0x8d, 0xff, 0x94, 0xdb, 0xc0, 0xff, 0x5a, 0xaf, 0x84, 0xff, 0x56, 0xaf, 0x80, 0xff, 0x48, 0xa0, 0x72, 0xff, 0x39, 0x9d, 0x6a, 0xff, 0x2e, 0x8a, 0x55, 0xff, 0x2f, 0x92, 0x5b, 0xff, 0x51, 0x9d, 0x71, 0xff, 0x56, 0xbd, 0x82, 0xff, 0x43, 0xbc, 0x7e, 0xff, 0x45, 0xa4, 0x6e, 0xff, 0x9a, 0xd8, 0xab, 0xff, 0xa5, 0xee, 0xb8, 0xff, 0xc0, 0xfd, 0xd3, 0xff, 0xbc, 0xdd, 0xd3, 0xff, 0x40, 0x6b, 0xa4, 0xff, 0x2a, 0x8e, 0x7f, 0xff, 0x66, 0xd9, 0x94, 0xff, 0x94, 0xe9, 0xb5, 0xff, 0x85, 0xe2, 0xa9, 0xff, 0x6b, 0xd3, 0x96, 0xff, 0x4e, 0xdc, 0x96, 0xff, 0x4b, 0xd5, 0x91, 0xff, 0x9d, 0xe5, 0xd7, 0xff, 0x9a, 0xdc, 0xe6, 0xff, 0x91, 0xd8, 0xdf, 0xff, 0x87, 0xd4, 0xd6, 0xff, 0x77, 0xb6, 0xd2, 0xff, 0x25, 0x2b, 0xc6, 0xff, 0x24, 0x2d, 0xc5, 0xff, 0x32, 0x4f, 0xba, 0xff, 0x39, 0x54, 0xb8, 0xff, 0x1f, 0x5a, 0x46, 0xff, 0x35, 0x7b, 0x66, 0xff, 0x8f, 0xd7, 0xe3, 0xff, 0x8a, 0xd4, 0xe0, 0xff, 0x91, 0xd1, 0xde, 0xff, 0x97, 0xd6, 0xe3, 0xff, 0x9a, 0xd8, 0xe5, 0xff, 0x93, 0xd0, 0xdf, 0xff, 0x89, 0xc4, 0xcf, 0xff, 0x90, 0xcf, 0xd5, 0xff, 0x9e, 0xdc, 0xe6, 0xff, 0x9e, 0xdd, 0xe5, 0xff, 0x9a, 0xd7, 0xe2, 0xff, 0x98, 0xd4, 0xdd, 0xff, 0x9a, 0xd6, 0xdf, 0xff, 0x97, 0xd9, 0xe2, 0xff, 0x94, 0xd7, 0xdf, 0xff, 0x97, 0xd4, 0xe0, 0xff, 0x98, 0xd4, 0xe4, 0xff, 0x98, 0xd0, 0xe2, 0xff, 0x99, 0xcf, 0xe2, 0xff, 0x9c, 0xd1, 0xea, 0xff, 0x99, 0xd0, 0xe9, 0xff, 0x96, 0xd2, 0xe6, 0xff, 0x93, 0xd8, 0xe6, 0xff, 0x94, 0xd8, 0xe9, 0xff, 0x97, 0xd8, 0xe9, 0xff, 0x93, 0xd5, 0xe3, 0xff, 0x8a, 0xcb, 0xda, 0xff, 0x8a, 0xc4, 0xd1, 0xff, 0x86, 0xc4, 0xce, 0xff, 0x88, 0xc8, 0xd5, 0xff, 0x88, 0xc9, 0xd4, 0xff, 0x8b, 0xcc, 0xd2, 0xff, 0x9a, 0xc9, 0xd9, 0xff, 0x7a, 0xac, 0xbe, 0xff, 0x70, 0x98, 0xaf, 0xff, 0x60, 0x84, 0x96, 0xff, + 0x32, 0x55, 0x64, 0xff, 0x3a, 0x6d, 0x74, 0xff, 0x38, 0x72, 0x6c, 0xff, 0x34, 0x71, 0x64, 0xff, 0x35, 0x73, 0x65, 0xff, 0x36, 0x7d, 0x6b, 0xff, 0x35, 0x7b, 0x67, 0xff, 0x37, 0x7f, 0x6d, 0xff, 0x4c, 0x8e, 0x89, 0xff, 0x6c, 0xa9, 0xb6, 0xff, 0x86, 0xc7, 0xdf, 0xff, 0x92, 0xda, 0xef, 0xff, 0x95, 0xe2, 0xf3, 0xff, 0x93, 0xe6, 0xf3, 0xff, 0x90, 0xea, 0xf1, 0xff, 0x93, 0xea, 0xf3, 0xff, 0x9e, 0xe8, 0xf5, 0xff, 0xa4, 0xe3, 0xf8, 0xff, 0xa2, 0xdd, 0xf4, 0xff, 0x94, 0xdd, 0xee, 0xff, 0x84, 0xde, 0xe6, 0xff, 0x75, 0xd9, 0xd7, 0xff, 0x67, 0xce, 0xc8, 0xff, 0x60, 0xcb, 0xc5, 0xff, 0x60, 0xce, 0xcd, 0xff, 0x5d, 0xcc, 0xcb, 0xff, 0x4a, 0xb0, 0xb0, 0xff, 0x3c, 0x8d, 0x7e, 0xff, 0x40, 0x81, 0x6b, 0xff, 0x36, 0x7f, 0x68, 0xff, 0x86, 0xbb, 0xa7, 0xff, 0x63, 0xa7, 0x7f, 0xff, 0x50, 0xa8, 0x7c, 0xff, 0x54, 0xaf, 0x82, 0xff, 0x39, 0xa4, 0x6c, 0xff, 0x3a, 0x9e, 0x66, 0xff, 0x2f, 0x8b, 0x56, 0xff, 0x66, 0xb8, 0x8d, 0xff, 0x6e, 0xd3, 0x9c, 0xff, 0x41, 0xb0, 0x76, 0xff, 0x9b, 0xd7, 0xae, 0xff, 0xf3, 0xff, 0xf8, 0xff, 0xe9, 0xfe, 0xee, 0xff, 0x94, 0xec, 0xba, 0xff, 0x48, 0xc7, 0x8d, 0xff, 0x24, 0x99, 0x5c, 0xff, 0x28, 0xa1, 0x64, 0xff, 0x34, 0xc1, 0x7b, 0xff, 0x4d, 0xd5, 0x93, 0xff, 0x73, 0xe8, 0xab, 0xff, 0x61, 0xd7, 0x96, 0xff, 0x53, 0xd8, 0x91, 0xff, 0x5b, 0xdd, 0x99, 0xff, 0x9e, 0xe7, 0xcf, 0xff, 0x9a, 0xdb, 0xdf, 0xff, 0x8d, 0xd7, 0xdb, 0xff, 0x8d, 0xdc, 0xe0, 0xff, 0x8d, 0xd8, 0xdd, 0xff, 0x97, 0xe2, 0xe7, 0xff, 0x4d, 0x89, 0x82, 0xff, 0x1e, 0x57, 0x43, 0xff, 0x18, 0x4e, 0x3c, 0xff, 0x1c, 0x58, 0x46, 0xff, 0x32, 0x77, 0x60, 0xff, 0x8b, 0xcd, 0xda, 0xff, 0x8a, 0xd2, 0xdd, 0xff, 0x94, 0xd4, 0xe2, 0xff, 0x92, 0xd2, 0xde, 0xff, 0x90, 0xd3, 0xe0, 0xff, 0x89, 0xc9, 0xd6, 0xff, 0x9b, 0xd5, 0xde, 0xff, 0xa4, 0xe0, 0xeb, 0xff, 0x9e, 0xd9, 0xe5, 0xff, 0x97, 0xd4, 0xe0, 0xff, 0x9b, 0xd6, 0xe6, 0xff, 0x95, 0xd0, 0xdc, 0xff, 0x95, 0xd2, 0xe4, 0xff, 0x92, 0xd2, 0xe9, 0xff, 0x8e, 0xcd, 0xd9, 0xff, 0x92, 0xcb, 0xd5, 0xff, 0x95, 0xd0, 0xe1, 0xff, 0x94, 0xd1, 0xe1, 0xff, 0x91, 0xd0, 0xdc, 0xff, 0x90, 0xcf, 0xda, 0xff, 0x92, 0xcd, 0xdc, 0xff, 0x9a, 0xd8, 0xe5, 0xff, 0x9e, 0xe1, 0xef, 0xff, 0xa0, 0xdf, 0xee, 0xff, 0xa3, 0xdd, 0xef, 0xff, 0x9f, 0xdb, 0xee, 0xff, 0x96, 0xd4, 0xe3, 0xff, 0x8c, 0xc6, 0xd3, 0xff, 0x7c, 0xc0, 0xce, 0xff, 0x81, 0xc2, 0xcf, 0xff, 0x91, 0xcc, 0xd8, 0xff, 0x95, 0xd8, 0xe1, 0xff, 0x94, 0xd3, 0xdd, 0xff, 0x71, 0xb4, 0xbc, 0xff, 0x67, 0x9b, 0xa6, 0xff, 0x62, 0x8a, 0x9c, 0xff, + 0x29, 0x4d, 0x4b, 0xff, 0x32, 0x65, 0x68, 0xff, 0x35, 0x6e, 0x6a, 0xff, 0x32, 0x6a, 0x63, 0xff, 0x35, 0x70, 0x64, 0xff, 0x3a, 0x7e, 0x6d, 0xff, 0x50, 0x93, 0x8c, 0xff, 0x68, 0xaa, 0xb0, 0xff, 0x80, 0xc2, 0xd6, 0xff, 0x92, 0xd1, 0xea, 0xff, 0x97, 0xda, 0xef, 0xff, 0x93, 0xdc, 0xee, 0xff, 0x95, 0xdf, 0xf0, 0xff, 0x97, 0xe4, 0xf1, 0xff, 0x97, 0xe9, 0xf4, 0xff, 0x99, 0xe8, 0xf6, 0xff, 0x9d, 0xe2, 0xf6, 0xff, 0x9f, 0xde, 0xf4, 0xff, 0x9b, 0xdb, 0xf0, 0xff, 0x8f, 0xda, 0xe5, 0xff, 0x7d, 0xd8, 0xd9, 0xff, 0x6a, 0xd2, 0xca, 0xff, 0x59, 0xc1, 0xb9, 0xff, 0x55, 0xba, 0xb8, 0xff, 0x52, 0xb7, 0xb8, 0xff, 0x4a, 0xae, 0xb0, 0xff, 0x39, 0x96, 0x98, 0xff, 0x23, 0x67, 0x5f, 0xff, 0x22, 0x55, 0x45, 0xff, 0x18, 0x37, 0x30, 0xff, 0x72, 0x98, 0x8d, 0xff, 0x64, 0xa2, 0x80, 0xff, 0x34, 0x93, 0x66, 0xff, 0x49, 0xb7, 0x87, 0xff, 0x5b, 0xcb, 0x97, 0xff, 0x56, 0xd7, 0x9b, 0xff, 0x42, 0xa7, 0x71, 0xff, 0x4b, 0xaf, 0x81, 0xff, 0x34, 0xb0, 0x74, 0xff, 0x63, 0xb1, 0x7f, 0xff, 0xa9, 0xe4, 0xbf, 0xff, 0x82, 0xdd, 0xad, 0xff, 0x51, 0xc5, 0x8b, 0xff, 0x27, 0xab, 0x6c, 0xff, 0x21, 0x8a, 0x55, 0xff, 0x1e, 0x70, 0x41, 0xff, 0x1e, 0x87, 0x52, 0xff, 0x1b, 0x8d, 0x55, 0xff, 0x1f, 0xa5, 0x63, 0xff, 0x29, 0xc0, 0x77, 0xff, 0x3b, 0xbe, 0x7a, 0xff, 0x4a, 0xcf, 0x89, 0xff, 0x63, 0xe0, 0xa0, 0xff, 0x8d, 0xdf, 0xc6, 0xff, 0x92, 0xd5, 0xdb, 0xff, 0x8e, 0xd7, 0xde, 0xff, 0x8a, 0xd9, 0xe1, 0xff, 0x85, 0xd0, 0xd7, 0xff, 0x79, 0xc2, 0xc9, 0xff, 0x57, 0x95, 0x8e, 0xff, 0x1a, 0x55, 0x42, 0xff, 0x1b, 0x51, 0x41, 0xff, 0x1d, 0x57, 0x43, 0xff, 0x25, 0x6e, 0x56, 0xff, 0x81, 0xc5, 0xcb, 0xff, 0x87, 0xcf, 0xd9, 0xff, 0x93, 0xcf, 0xda, 0xff, 0x97, 0xd5, 0xe5, 0xff, 0x97, 0xd5, 0xe7, 0xff, 0x96, 0xcf, 0xdb, 0xff, 0xaa, 0xe2, 0xed, 0xff, 0xa2, 0xe1, 0xeb, 0xff, 0x85, 0xc8, 0xd8, 0xff, 0x84, 0xc4, 0xd5, 0xff, 0x8a, 0xcb, 0xd9, 0xff, 0x8d, 0xca, 0xda, 0xff, 0x8d, 0xc8, 0xdd, 0xff, 0x7f, 0xbf, 0xd8, 0xff, 0x83, 0xbf, 0xce, 0xff, 0x8b, 0xc1, 0xce, 0xff, 0x90, 0xce, 0xdc, 0xff, 0x94, 0xd6, 0xe2, 0xff, 0x97, 0xdb, 0xe7, 0xff, 0x99, 0xdc, 0xe5, 0xff, 0x95, 0xd7, 0xdd, 0xff, 0x96, 0xd7, 0xe0, 0xff, 0x9b, 0xdb, 0xec, 0xff, 0xa2, 0xdc, 0xec, 0xff, 0xa6, 0xdb, 0xec, 0xff, 0x9f, 0xda, 0xea, 0xff, 0x97, 0xd3, 0xe3, 0xff, 0x85, 0xc1, 0xd1, 0xff, 0x7a, 0xbe, 0xd5, 0xff, 0x79, 0xc1, 0xd2, 0xff, 0x99, 0xd7, 0xeb, 0xff, 0x97, 0xd7, 0xe9, 0xff, 0x84, 0xca, 0xd3, 0xff, 0x7c, 0xc8, 0xcf, 0xff, 0x78, 0xbf, 0xc6, 0xff, 0x65, 0xa3, 0xa9, 0xff, +#endif +}; + +lv_img_dsc_t red_flower = { + .header.always_zero = 0, + .header.w = 100, + .header.h = 75, + .data_size = 7500 * LV_COLOR_SIZE / 8, + .header.cf = LV_IMG_CF_TRUE_COLOR, + .data = red_flower_map, +}; + +#endif diff --git a/components/lv_examples/lv_examples/lv_tutorial/6_images/red_flower.png b/components/lv_examples/lv_examples/lv_tutorial/6_images/red_flower.png new file mode 100644 index 0000000..76e5226 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tutorial/6_images/red_flower.png differ diff --git a/components/lv_examples/lv_examples/lv_tutorial/6_images/red_rose_16.c b/components/lv_examples/lv_examples/lv_tutorial/6_images/red_rose_16.c new file mode 100644 index 0000000..84ec3e7 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/6_images/red_rose_16.c @@ -0,0 +1,114 @@ +#include "lvgl/lvgl.h" + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +const LV_ATTRIBUTE_MEM_ALIGN uint8_t red_rose_16_map[] = { + 0x05, 0x08, 0x58, 0xff, /*Color of index 0*/ + 0x0e, 0x1a, 0x43, 0xff, /*Color of index 1*/ + 0x08, 0x0e, 0x8e, 0xff, /*Color of index 2*/ + 0x07, 0x07, 0xcb, 0xff, /*Color of index 3*/ + 0x1a, 0x13, 0xbd, 0xff, /*Color of index 4*/ + 0x3c, 0x53, 0x7a, 0xff, /*Color of index 5*/ + 0x3e, 0x4a, 0x9b, 0xff, /*Color of index 6*/ + 0x16, 0x6f, 0x61, 0xff, /*Color of index 7*/ + 0x37, 0x50, 0xe9, 0xff, /*Color of index 8*/ + 0x5e, 0x5f, 0xe3, 0xff, /*Color of index 9*/ + 0x7f, 0x93, 0xc9, 0xff, /*Color of index 10*/ + 0x38, 0xac, 0x91, 0xff, /*Color of index 11*/ + 0x75, 0xa3, 0xa0, 0xff, /*Color of index 12*/ + 0x9e, 0xd6, 0xce, 0xff, /*Color of index 13*/ + 0xbc, 0xcf, 0xde, 0xff, /*Color of index 14*/ + 0xfc, 0xff, 0xfd, 0xff, /*Color of index 15*/ + + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xee, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa8, 0x33, 0x33, 0x3a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x33, 0x33, 0x33, 0x33, 0x9e, 0xea, 0x9e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x8e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x83, 0x33, 0x34, 0x44, 0x33, 0x33, 0x33, 0x33, 0x33, 0x38, 0x8e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x33, 0x33, 0x42, 0x22, 0x44, 0x33, 0x33, 0x33, 0x33, 0x33, 0x38, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xaa, 0xee, 0x33, 0x34, 0x22, 0x22, 0x44, 0x33, 0x34, 0x43, 0x33, 0x33, 0x33, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x32, 0xae, 0x33, 0x32, 0x22, 0x22, 0x23, 0x33, 0x34, 0x24, 0x43, 0x43, 0x33, 0x3a, 0xee, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0x32, 0x5e, 0x33, 0x42, 0x22, 0x22, 0x24, 0x43, 0x34, 0x42, 0x24, 0x44, 0x23, 0x32, 0x23, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x33, 0x5f, 0x93, 0x24, 0x42, 0x42, 0x42, 0x44, 0x22, 0x24, 0x22, 0x44, 0x44, 0x33, 0x43, 0x3e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, 0x33, 0x6f, 0x63, 0x22, 0x24, 0x22, 0x44, 0x22, 0x00, 0x04, 0x44, 0x44, 0x33, 0x43, 0x43, 0x33, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe4, 0x33, 0x65, 0x04, 0x00, 0x02, 0x44, 0x44, 0x44, 0x20, 0x00, 0x43, 0x33, 0x33, 0x43, 0x44, 0x33, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa4, 0x43, 0x41, 0x12, 0x00, 0x04, 0x34, 0x43, 0x22, 0x44, 0x00, 0x02, 0x33, 0x33, 0x43, 0x44, 0x43, 0x39, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa2, 0x43, 0x31, 0x11, 0x01, 0x04, 0x33, 0x33, 0x39, 0x44, 0x40, 0x00, 0x23, 0x33, 0x33, 0x44, 0x44, 0x33, 0x9e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe2, 0x43, 0x30, 0x11, 0x01, 0x14, 0x44, 0x43, 0x33, 0x94, 0x30, 0x10, 0x02, 0x33, 0x33, 0x44, 0x22, 0x43, 0x34, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf6, 0x28, 0x32, 0x11, 0x11, 0x04, 0x42, 0x24, 0x33, 0x49, 0x40, 0x10, 0x00, 0x23, 0x43, 0x33, 0x22, 0x22, 0x44, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xff, 0x55, 0x62, 0x34, 0x11, 0x11, 0x02, 0x42, 0x24, 0x33, 0x39, 0x44, 0x94, 0x00, 0x94, 0x44, 0x34, 0x42, 0x22, 0x24, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xfc, 0x55, 0x52, 0x33, 0x01, 0x11, 0x02, 0x23, 0x22, 0x33, 0x33, 0x44, 0x33, 0x00, 0x94, 0x43, 0x23, 0x42, 0x22, 0x22, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xe5, 0x55, 0x50, 0x33, 0x21, 0x11, 0x00, 0x24, 0x34, 0x24, 0x44, 0x44, 0x43, 0x34, 0x44, 0x34, 0x23, 0x44, 0x22, 0x24, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x55, 0x55, 0x10, 0x43, 0x41, 0x10, 0x00, 0x02, 0x23, 0x42, 0x24, 0x34, 0x93, 0x33, 0x33, 0x32, 0x23, 0x44, 0x42, 0x29, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x55, 0x55, 0x11, 0x23, 0x30, 0x10, 0x00, 0x00, 0x22, 0x34, 0x24, 0x33, 0x33, 0x33, 0x34, 0x22, 0x43, 0x44, 0x42, 0x4e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x55, 0x51, 0x11, 0x04, 0x32, 0x11, 0x02, 0x20, 0x02, 0x23, 0x32, 0x24, 0x33, 0x33, 0x33, 0x33, 0x38, 0x43, 0x43, 0x38, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, 0x55, 0x11, 0x11, 0x12, 0x33, 0x01, 0x10, 0x44, 0x22, 0x24, 0x33, 0x44, 0x34, 0x44, 0x43, 0x33, 0x44, 0x44, 0x43, 0x33, 0x49, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc5, 0x51, 0x11, 0x11, 0x10, 0x23, 0x21, 0x11, 0x04, 0x33, 0x42, 0x23, 0x33, 0x43, 0x44, 0x44, 0x44, 0x32, 0x42, 0x24, 0x24, 0x44, 0x8a, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x55, 0x11, 0x11, 0x11, 0x11, 0x04, 0x40, 0x11, 0x10, 0x23, 0x33, 0x42, 0x33, 0x43, 0x33, 0x44, 0x33, 0x42, 0x42, 0x24, 0x84, 0x44, 0x44, 0x4e, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x55, 0x11, 0x11, 0x11, 0x11, 0x12, 0x32, 0x11, 0x11, 0x02, 0x23, 0x33, 0x33, 0x34, 0x44, 0x43, 0x34, 0x22, 0x22, 0x24, 0x34, 0x44, 0x43, 0x39, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x51, 0x11, 0x11, 0x11, 0x11, 0x10, 0x22, 0x01, 0x11, 0x10, 0x02, 0x24, 0x33, 0x33, 0x44, 0x43, 0x42, 0x22, 0x24, 0x33, 0x42, 0x43, 0x33, 0x38, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x24, 0x21, 0x11, 0x10, 0x00, 0x02, 0x24, 0x33, 0x33, 0x34, 0x22, 0x22, 0x24, 0x32, 0x24, 0x33, 0x33, 0x38, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x02, 0x40, 0x00, 0x00, 0x00, 0x00, 0x02, 0x22, 0x43, 0x33, 0x22, 0x22, 0x10, 0x22, 0x43, 0x33, 0x33, 0x39, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x10, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x22, 0x22, 0x24, 0x32, 0x00, 0x22, 0x43, 0x33, 0x33, 0x4e, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x22, 0x22, 0x44, 0x40, 0x12, 0x24, 0x33, 0x33, 0x33, 0xaf, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x12, 0x20, 0x00, 0x00, 0x00, 0x00, 0x22, 0x22, 0x22, 0x44, 0x20, 0x02, 0x44, 0x33, 0x33, 0x33, 0xef, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe5, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x10, 0x22, 0x00, 0x00, 0x00, 0x00, 0x22, 0x22, 0x22, 0x22, 0x20, 0x24, 0x43, 0x33, 0x33, 0x3a, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf5, 0x51, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x10, 0x22, 0x00, 0x00, 0x00, 0x00, 0x22, 0x22, 0x22, 0x22, 0x22, 0x44, 0x43, 0x33, 0x39, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x55, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x02, 0x20, 0x00, 0x00, 0x00, 0x22, 0x02, 0x22, 0x22, 0x44, 0x44, 0x34, 0x8a, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x55, 0x55, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x02, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x44, 0x44, 0x43, 0x4b, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xee, 0xff, 0xff, 0xff, 0xff, 0xe5, 0x55, 0x11, 0x11, 0x11, 0x11, 0x10, 0x11, 0x02, 0x20, 0x00, 0x00, 0x00, 0x00, 0x22, 0x44, 0x44, 0x33, 0x34, 0xde, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xee, 0xff, 0xff, 0xff, 0xfa, 0x55, 0x55, 0x11, 0x11, 0x11, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x44, 0x44, 0x44, 0x44, 0x6d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xcf, 0xff, 0xff, 0xfd, 0x75, 0x55, 0x55, 0x11, 0x10, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x22, 0x44, 0x44, 0x44, 0x44, 0x6e, 0xcd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdc, 0x77, 0xbd, 0xbb, 0xb7, 0x55, 0x55, 0x55, 0x10, 0x00, 0x00, 0x00, 0x01, 0x10, 0x02, 0x44, 0x44, 0x44, 0x22, 0x9a, 0xeb, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x77, 0x7b, 0xbb, 0xb7, 0x75, 0x55, 0x55, 0x55, 0x00, 0x00, 0x00, 0x11, 0x02, 0x22, 0x24, 0x22, 0x29, 0x96, 0xaa, 0x7d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xcb, 0x77, 0xb7, 0x77, 0x7c, 0x55, 0x55, 0x50, 0x00, 0x01, 0x00, 0x22, 0x26, 0x66, 0x66, 0x66, 0xaa, 0xcc, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x77, 0x77, 0x77, 0x7c, 0xec, 0x55, 0x55, 0x05, 0x50, 0x22, 0x26, 0x66, 0x66, 0x66, 0x6a, 0xae, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xcc, 0xde, 0xff, 0xe7, 0x77, 0x55, 0x55, 0x56, 0x66, 0x65, 0x66, 0x66, 0x66, 0xaa, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe7, 0x77, 0x77, 0x77, 0xca, 0xa5, 0x55, 0x55, 0x66, 0xaa, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc7, 0x77, 0xbb, 0xbb, 0xbb, 0xfe, 0xaa, 0xaa, 0xae, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x77, 0x7b, 0xbb, 0xbb, 0xbb, 0xef, 0xee, 0xde, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x77, 0x7b, 0xdb, 0xdb, 0xbb, 0xdf, 0xdd, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x77, 0xbb, 0xdf, 0xc7, 0x7d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x77, 0xbd, 0xff, 0xfe, 0xde, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7b, 0xbd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x7b, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x7b, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe7, 0xbb, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc7, 0xbb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc7, 0xbd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x77, 0xbd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x77, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x7b, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x7b, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7b, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7c, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x7d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0x7d, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xbd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe7, 0xbd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe7, 0xbe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc7, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc7, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcb, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7b, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7b, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7b, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7b, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7b, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7b, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7b, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, +}; + +lv_img_dsc_t red_rose_16 = { + .header.always_zero = 0, + .header.w = 80, + .header.h = 80, + .data_size = 3264, + .header.cf = LV_IMG_CF_INDEXED_4BIT, + .data = red_rose_16_map, +}; diff --git a/components/lv_examples/lv_examples/lv_tutorial/6_images/red_rose_16.png b/components/lv_examples/lv_examples/lv_tutorial/6_images/red_rose_16.png new file mode 100644 index 0000000..bbc5cc4 Binary files /dev/null and b/components/lv_examples/lv_examples/lv_tutorial/6_images/red_rose_16.png differ diff --git a/components/lv_examples/lv_examples/lv_tutorial/7_fonts/arial_20.c b/components/lv_examples/lv_examples/lv_tutorial/7_fonts/arial_20.c new file mode 100644 index 0000000..9492282 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/7_fonts/arial_20.c @@ -0,0 +1,3572 @@ +#include "lvgl/lvgl.h" + +/******************************************************************************* + * Size: 20 px + * Bpp: 4 + * Opts: + ******************************************************************************/ + +#ifndef ARIAL_20 +#define ARIAL_20 1 +#endif + +#if ARIAL_20 + +/*----------------- + * BITMAPS + *----------------*/ + +/*Store the image of the glyphs*/ +static LV_ATTRIBUTE_LARGE_CONST const uint8_t gylph_bitmap[] = { + /* U+20 " " */ + + /* U+21 "!" */ + 0x13, 0x34, 0xff, 0x4f, 0xf4, 0xff, 0x4f, 0xc4, + 0xfc, 0xf, 0xc0, 0xfb, 0xf, 0x80, 0xf8, 0xc, + 0x80, 0x64, 0x0, 0x4, 0xfc, 0x4f, 0xc0, + + /* U+22 "\"" */ + 0x43, 0x3, 0x31, 0xff, 0xc, 0xf4, 0xff, 0xc, + 0xf4, 0xfd, 0xc, 0xf1, 0xdb, 0x9, 0xf0, 0x86, + 0x6, 0x90, + + /* U+23 "#" */ + 0x0, 0x0, 0x84, 0x0, 0x47, 0x0, 0x0, 0x4f, + 0x40, 0xb, 0xd0, 0x0, 0x7, 0xf1, 0x0, 0xea, + 0x0, 0x0, 0xae, 0x0, 0x1f, 0x70, 0x33, 0x3c, + 0xc3, 0x36, 0xf6, 0x3c, 0xff, 0xff, 0xff, 0xff, + 0xfc, 0x0, 0x4f, 0x40, 0xb, 0xd0, 0x0, 0x7, + 0xf0, 0x0, 0xe9, 0x0, 0x0, 0xad, 0x0, 0x1f, + 0x60, 0x3, 0x3c, 0xb3, 0x36, 0xf6, 0x33, 0xcf, + 0xff, 0xff, 0xff, 0xff, 0xc0, 0x4f, 0x40, 0xb, + 0xc0, 0x0, 0x7, 0xf0, 0x0, 0xf9, 0x0, 0x0, + 0xad, 0x0, 0x2f, 0x60, 0x0, 0xd, 0xa0, 0x5, + 0xf3, 0x0, 0x0, 0x42, 0x0, 0x24, 0x0, 0x0, + + /* U+24 "$" */ + 0x0, 0x0, 0xc, 0x0, 0x0, 0x0, 0x1, 0x6a, + 0xfa, 0x50, 0x0, 0x1, 0xcf, 0xdf, 0xef, 0xb0, + 0x0, 0x9f, 0x60, 0xf0, 0xaf, 0x70, 0xe, 0xe0, + 0xf, 0x2, 0xf9, 0x0, 0xfc, 0x0, 0xf0, 0x0, + 0x0, 0xc, 0xf5, 0xf, 0x0, 0x0, 0x0, 0x4f, + 0xf9, 0xf2, 0x0, 0x0, 0x0, 0x3c, 0xff, 0xfc, + 0x50, 0x0, 0x0, 0x1, 0xfa, 0xff, 0x60, 0x0, + 0x0, 0xf, 0x3, 0xfe, 0x0, 0x22, 0x0, 0xf0, + 0xc, 0xf3, 0x4f, 0xb0, 0xf, 0x0, 0xcf, 0x10, + 0xfe, 0x20, 0xf0, 0x1e, 0xf0, 0x7, 0xfd, 0x5f, + 0x4c, 0xf5, 0x0, 0x8, 0xff, 0xff, 0xf5, 0x0, + 0x0, 0x0, 0x4f, 0x30, 0x0, 0x0, 0x0, 0x0, + 0xf0, 0x0, 0x0, + + /* U+25 "%" */ + 0x1, 0x67, 0x40, 0x0, 0x0, 0x17, 0x30, 0x0, + 0x1d, 0xec, 0xf6, 0x0, 0x0, 0x8e, 0x10, 0x0, + 0x8f, 0x10, 0x9e, 0x0, 0x1, 0xe6, 0x0, 0x0, + 0xcc, 0x0, 0x4f, 0x40, 0x8, 0xe0, 0x0, 0x0, + 0xcc, 0x0, 0x4f, 0x40, 0x1e, 0x60, 0x0, 0x0, + 0xbc, 0x0, 0x6f, 0x10, 0x9e, 0x0, 0x0, 0x0, + 0x4f, 0x64, 0xdb, 0x2, 0xf6, 0x0, 0x0, 0x0, + 0x6, 0xef, 0xa1, 0xa, 0xe0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x2f, 0x50, 0x4d, 0xfc, 0x30, + 0x0, 0x0, 0x0, 0xac, 0x1, 0xea, 0x4a, 0xe1, + 0x0, 0x0, 0x2, 0xf4, 0x7, 0xf1, 0x2, 0xf6, + 0x0, 0x0, 0xb, 0xc0, 0x8, 0xf0, 0x0, 0xf8, + 0x0, 0x0, 0x4f, 0x40, 0x8, 0xf0, 0x0, 0xf8, + 0x0, 0x0, 0xcc, 0x0, 0x4, 0xf4, 0x5, 0xf3, + 0x0, 0x4, 0xf4, 0x0, 0x0, 0xae, 0xbe, 0xa0, + 0x0, 0x5, 0x70, 0x0, 0x0, 0x5, 0x84, 0x0, + + /* U+26 "&" */ + 0x0, 0x0, 0x27, 0x74, 0x0, 0x0, 0x0, 0x0, + 0x6f, 0xff, 0xfa, 0x0, 0x0, 0x0, 0x2e, 0xd1, + 0xb, 0xf5, 0x0, 0x0, 0x4, 0xf8, 0x0, 0x4f, + 0x80, 0x0, 0x0, 0x3f, 0xc0, 0x8, 0xf3, 0x0, + 0x0, 0x0, 0xcf, 0x97, 0xfa, 0x0, 0x0, 0x0, + 0x1, 0xff, 0xf7, 0x0, 0x0, 0x0, 0x3, 0xbf, + 0xff, 0x40, 0x0, 0x0, 0x3, 0xef, 0x76, 0xfe, + 0x20, 0xa6, 0x0, 0xcf, 0x40, 0x9, 0xfc, 0x5f, + 0xa0, 0xf, 0xd0, 0x0, 0xc, 0xfe, 0xf4, 0x1, + 0xfd, 0x0, 0x0, 0x1e, 0xfd, 0x0, 0xe, 0xf4, + 0x0, 0x3, 0xef, 0xf6, 0x0, 0x4f, 0xf8, 0x48, + 0xef, 0xaf, 0xf6, 0x0, 0x3e, 0xff, 0xfc, 0x30, + 0x6f, 0x60, 0x0, 0x1, 0x42, 0x0, 0x0, 0x10, + + /* U+27 "'" */ + 0x43, 0xff, 0xff, 0xfc, 0xea, 0x96, + + /* U+28 "(" */ + 0x0, 0x4, 0x60, 0x1, 0xe5, 0x0, 0xbc, 0x0, + 0x3f, 0x50, 0xa, 0xe0, 0x1, 0xfa, 0x0, 0x5f, + 0x60, 0x9, 0xf4, 0x0, 0xcf, 0x0, 0xc, 0xf0, + 0x0, 0xcf, 0x20, 0xa, 0xf4, 0x0, 0x8f, 0x70, + 0x3, 0xf9, 0x0, 0xe, 0xc0, 0x0, 0x8f, 0x40, + 0x1, 0xfa, 0x0, 0x8, 0xf2, 0x0, 0xd, 0xa0, + 0x0, 0x24, + + /* U+29 ")" */ + 0x55, 0x0, 0x4, 0xf3, 0x0, 0xa, 0xc0, 0x0, + 0x2f, 0x60, 0x0, 0xdb, 0x0, 0x8, 0xf3, 0x0, + 0x4f, 0x80, 0x1, 0xfc, 0x0, 0xf, 0xc0, 0x0, + 0xff, 0x0, 0xf, 0xe0, 0x2, 0xfc, 0x0, 0x4f, + 0xa0, 0x8, 0xf6, 0x0, 0xaf, 0x10, 0x1f, 0xa0, + 0x8, 0xf2, 0x1, 0xe9, 0x0, 0x8e, 0x10, 0x3, + 0x20, 0x0, + + /* U+2A "*" */ + 0x0, 0x6, 0x40, 0x0, 0x0, 0xc8, 0x0, 0x2d, + 0x7c, 0x99, 0xc1, 0x8c, 0xff, 0xc7, 0x0, 0xad, + 0xf5, 0x0, 0x5f, 0x48, 0xe1, 0x0, 0x50, 0x4, + 0x0, + + /* U+2B "+" */ + 0x0, 0x0, 0xc9, 0x0, 0x0, 0x0, 0x0, 0xfc, + 0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, + 0x0, 0xfc, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, + 0xf8, 0xcc, 0xcc, 0xff, 0xcc, 0xc6, 0x0, 0x0, + 0xfc, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, + 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xc9, + 0x0, 0x0, + + /* U+2C "," */ + 0x4f, 0xc4, 0xfc, 0x4, 0xc0, 0xb8, 0x2a, 0x0, + + /* U+2D "-" */ + 0x1, 0x11, 0x11, 0x5, 0xff, 0xff, 0xf0, 0x4b, + 0xbb, 0xbb, 0x0, + + /* U+2E "." */ + 0x2f, 0xd2, 0xfd, + + /* U+2F "/" */ + 0x0, 0x0, 0x84, 0x0, 0x2, 0xf4, 0x0, 0x7, + 0xf0, 0x0, 0xb, 0xb0, 0x0, 0xf, 0x70, 0x0, + 0x5f, 0x20, 0x0, 0x9e, 0x0, 0x0, 0xd9, 0x0, + 0x2, 0xf5, 0x0, 0x6, 0xf0, 0x0, 0xb, 0xc0, + 0x0, 0xf, 0x70, 0x0, 0x4f, 0x30, 0x0, 0x8e, + 0x0, 0x0, 0xda, 0x0, 0x0, 0x42, 0x0, 0x0, + + /* U+30 "0" */ + 0x0, 0x0, 0x43, 0x30, 0x0, 0x0, 0x3, 0xdf, + 0xff, 0xd3, 0x0, 0x1, 0xef, 0x52, 0x6f, 0xe1, + 0x0, 0x8f, 0x60, 0x0, 0x6f, 0x70, 0xd, 0xf1, + 0x0, 0x1, 0xfc, 0x0, 0xfc, 0x0, 0x0, 0xc, + 0xf0, 0xf, 0xc0, 0x0, 0x0, 0xcf, 0x4, 0xfc, + 0x0, 0x0, 0xc, 0xf4, 0x2f, 0xc0, 0x0, 0x0, + 0xcf, 0x20, 0xfc, 0x0, 0x0, 0xc, 0xf0, 0xf, + 0xc0, 0x0, 0x0, 0xcf, 0x0, 0xbf, 0x10, 0x0, + 0x1f, 0xc0, 0x6, 0xf7, 0x0, 0x8, 0xf6, 0x0, + 0xd, 0xf7, 0x37, 0xfd, 0x0, 0x0, 0x1c, 0xff, + 0xfc, 0x10, 0x0, 0x0, 0x0, 0x41, 0x0, 0x0, + + /* U+31 "1" */ + 0x0, 0x0, 0x32, 0x0, 0x4, 0xf8, 0x0, 0x4e, + 0xf8, 0x17, 0xff, 0xf8, 0xcf, 0xb5, 0xf8, 0x84, + 0x4, 0xf8, 0x0, 0x4, 0xf8, 0x0, 0x4, 0xf8, + 0x0, 0x4, 0xf8, 0x0, 0x4, 0xf8, 0x0, 0x4, + 0xf8, 0x0, 0x4, 0xf8, 0x0, 0x4, 0xf8, 0x0, + 0x4, 0xf8, 0x0, 0x4, 0xf8, + + /* U+32 "2" */ + 0x0, 0x1, 0x33, 0x31, 0x0, 0x0, 0x5e, 0xff, + 0xfe, 0x60, 0x4, 0xfd, 0x52, 0x5d, 0xf6, 0xc, + 0xf2, 0x0, 0x1, 0xfc, 0xc, 0xd0, 0x0, 0x0, + 0xcf, 0x0, 0x0, 0x0, 0x1, 0xef, 0x0, 0x0, + 0x0, 0x8, 0xf9, 0x0, 0x0, 0x0, 0x6f, 0xe1, + 0x0, 0x0, 0x6, 0xff, 0x30, 0x0, 0x0, 0x8f, + 0xd3, 0x0, 0x0, 0xa, 0xfd, 0x10, 0x0, 0x0, + 0xaf, 0xa1, 0x0, 0x0, 0x8, 0xfa, 0x0, 0x0, + 0x0, 0x1f, 0xfc, 0xbb, 0xbb, 0xbb, 0x5f, 0xff, + 0xff, 0xff, 0xff, + + /* U+33 "3" */ + 0x0, 0x13, 0x33, 0x0, 0x0, 0x6, 0xef, 0xff, + 0xc3, 0x0, 0x4f, 0xd5, 0x16, 0xfe, 0x10, 0xbf, + 0x20, 0x0, 0x9f, 0x60, 0x77, 0x0, 0x0, 0x5f, + 0x80, 0x0, 0x0, 0x0, 0xbf, 0x40, 0x0, 0x2, + 0x6b, 0xfa, 0x0, 0x0, 0x9, 0xff, 0xd5, 0x0, + 0x0, 0x2, 0x4, 0xdf, 0x80, 0x0, 0x0, 0x0, + 0x1f, 0xe0, 0x0, 0x0, 0x0, 0xc, 0xf3, 0xec, + 0x0, 0x0, 0xc, 0xf1, 0xdf, 0x30, 0x0, 0x4f, + 0xd0, 0x4f, 0xd5, 0x37, 0xef, 0x30, 0x4, 0xef, + 0xff, 0xd3, 0x0, 0x0, 0x2, 0x41, 0x0, 0x0, + + /* U+34 "4" */ + 0x0, 0x0, 0x0, 0x13, 0x10, 0x0, 0x0, 0x0, + 0xd, 0xf4, 0x0, 0x0, 0x0, 0x8, 0xff, 0x40, + 0x0, 0x0, 0x3, 0xff, 0xf4, 0x0, 0x0, 0x1, + 0xdc, 0x8f, 0x40, 0x0, 0x0, 0x9f, 0x28, 0xf4, + 0x0, 0x0, 0x5f, 0x60, 0x8f, 0x40, 0x0, 0x1e, + 0xb0, 0x8, 0xf4, 0x0, 0xc, 0xf1, 0x0, 0x8f, + 0x40, 0x7, 0xf5, 0x0, 0x8, 0xf4, 0x0, 0xcf, + 0xff, 0xff, 0xff, 0xff, 0x46, 0x88, 0x88, 0x8c, + 0xfa, 0x82, 0x0, 0x0, 0x0, 0x8f, 0x40, 0x0, + 0x0, 0x0, 0x8, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0x8f, 0x40, 0x0, + + /* U+35 "5" */ + 0x0, 0x9f, 0xff, 0xff, 0xfc, 0x0, 0xc, 0xf8, + 0x88, 0x88, 0x60, 0x0, 0xfc, 0x0, 0x0, 0x0, + 0x0, 0x3f, 0x80, 0x0, 0x0, 0x0, 0x5, 0xf5, + 0x36, 0x53, 0x0, 0x0, 0x8f, 0xdf, 0xff, 0xf8, + 0x0, 0xc, 0xfb, 0x31, 0x5d, 0xf8, 0x0, 0x36, + 0x0, 0x0, 0x1f, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0xbf, 0x40, 0x0, 0x0, 0x0, 0x9, 0xf4, 0x1c, + 0xb0, 0x0, 0x0, 0xcf, 0x10, 0xdf, 0x30, 0x0, + 0x4f, 0xc0, 0x4, 0xfe, 0x53, 0x7e, 0xf3, 0x0, + 0x4, 0xef, 0xff, 0xc2, 0x0, 0x0, 0x0, 0x14, + 0x0, 0x0, 0x0, + + /* U+36 "6" */ + 0x0, 0x0, 0x13, 0x32, 0x0, 0x0, 0x1, 0xaf, + 0xff, 0xf7, 0x0, 0x0, 0xdf, 0x82, 0x4d, 0xf5, + 0x0, 0x4f, 0x70, 0x0, 0x1f, 0xc0, 0xc, 0xf0, + 0x0, 0x0, 0x34, 0x0, 0xfb, 0x1, 0x33, 0x0, + 0x0, 0xf, 0x87, 0xef, 0xfe, 0x50, 0x4, 0xfc, + 0xf9, 0x47, 0xff, 0x40, 0x4f, 0xf5, 0x0, 0x3, + 0xfd, 0x2, 0xff, 0x0, 0x0, 0xc, 0xf0, 0xf, + 0xc0, 0x0, 0x0, 0xaf, 0x40, 0xee, 0x0, 0x0, + 0xc, 0xf0, 0x6, 0xf7, 0x0, 0x3, 0xfc, 0x0, + 0xd, 0xf7, 0x35, 0xef, 0x30, 0x0, 0x1a, 0xff, + 0xfe, 0x40, 0x0, 0x0, 0x0, 0x33, 0x0, 0x0, + + /* U+37 "7" */ + 0x43, 0x33, 0x33, 0x33, 0x31, 0xff, 0xff, 0xff, + 0xff, 0xf4, 0x88, 0x88, 0x88, 0x9f, 0xf1, 0x0, + 0x0, 0x0, 0xcf, 0x30, 0x0, 0x0, 0x8, 0xf8, + 0x0, 0x0, 0x0, 0x2e, 0xe0, 0x0, 0x0, 0x0, + 0xaf, 0x50, 0x0, 0x0, 0x2, 0xfe, 0x0, 0x0, + 0x0, 0xa, 0xf6, 0x0, 0x0, 0x0, 0xf, 0xf0, + 0x0, 0x0, 0x0, 0x4f, 0xa0, 0x0, 0x0, 0x0, + 0x8f, 0x50, 0x0, 0x0, 0x0, 0xcf, 0x20, 0x0, + 0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0xfc, + 0x0, 0x0, 0x0, + + /* U+38 "8" */ + 0x0, 0x0, 0x43, 0x30, 0x0, 0x0, 0x5, 0xdf, + 0xff, 0xd4, 0x0, 0x2, 0xef, 0x52, 0x5f, 0xe2, + 0x0, 0x8f, 0x60, 0x0, 0x6f, 0x80, 0x8, 0xf4, + 0x0, 0x4, 0xf9, 0x0, 0x6f, 0x90, 0x0, 0x8f, + 0x60, 0x0, 0xaf, 0xa7, 0x9f, 0xa0, 0x0, 0x5, + 0xdf, 0xff, 0xd4, 0x0, 0x6, 0xfd, 0x30, 0x3c, + 0xf6, 0x0, 0xff, 0x10, 0x0, 0x1e, 0xe0, 0x3f, + 0xb0, 0x0, 0x0, 0xaf, 0x41, 0xfc, 0x0, 0x0, + 0xb, 0xf2, 0xe, 0xf2, 0x0, 0x2, 0xef, 0x0, + 0x4f, 0xe5, 0x35, 0xdf, 0x40, 0x0, 0x4e, 0xff, + 0xfe, 0x40, 0x0, 0x0, 0x1, 0x41, 0x0, 0x0, + + /* U+39 "9" */ + 0x0, 0x0, 0x43, 0x30, 0x0, 0x0, 0x5, 0xef, + 0xff, 0xc3, 0x0, 0x4, 0xff, 0x52, 0x5f, 0xe1, + 0x0, 0xcf, 0x40, 0x0, 0x4f, 0xa0, 0xf, 0xc0, + 0x0, 0x0, 0xdd, 0x2, 0xfc, 0x0, 0x0, 0xc, + 0xf1, 0xf, 0xc0, 0x0, 0x0, 0xef, 0x40, 0xcf, + 0x60, 0x0, 0x7f, 0xf4, 0x3, 0xff, 0x87, 0x9f, + 0xdf, 0x40, 0x3, 0xcf, 0xfe, 0x58, 0xf2, 0x0, + 0x0, 0x1, 0x0, 0xcf, 0x0, 0x46, 0x0, 0x0, + 0x1f, 0xc0, 0xb, 0xf2, 0x0, 0x8, 0xf6, 0x0, + 0x4f, 0xc4, 0x38, 0xfd, 0x0, 0x0, 0x5f, 0xff, + 0xfa, 0x10, 0x0, 0x0, 0x3, 0x40, 0x0, 0x0, + + /* U+3A ":" */ + 0x13, 0x34, 0xfc, 0x3c, 0x90, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xfc, 0x4f, + 0xc0, + + /* U+3B ";" */ + 0x13, 0x34, 0xfc, 0x3c, 0x90, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xfc, 0x4f, + 0xc0, 0x4c, 0xb, 0x82, 0xa0, + + /* U+3C "<" */ + 0x0, 0x0, 0x0, 0x1, 0x66, 0x0, 0x0, 0x3, + 0x9e, 0xf8, 0x0, 0x6, 0xbf, 0xfb, 0x50, 0x27, + 0xdf, 0xe8, 0x20, 0x0, 0xff, 0xc6, 0x0, 0x0, + 0x0, 0xef, 0xd7, 0x10, 0x0, 0x0, 0x6, 0xcf, + 0xf9, 0x40, 0x0, 0x0, 0x3, 0xaf, 0xfc, 0x51, + 0x0, 0x0, 0x1, 0x8e, 0xf8, 0x0, 0x0, 0x0, + 0x0, 0x65, + + /* U+3D "=" */ + 0xff, 0xff, 0xff, 0xff, 0xf8, 0x88, 0x88, 0x88, + 0x88, 0x84, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xcb, 0xbb, 0xbb, 0xbb, + 0xb6, 0xff, 0xff, 0xff, 0xff, 0xf8, + + /* U+3E ">" */ + 0xc4, 0x0, 0x0, 0x0, 0x0, 0xff, 0xd6, 0x10, + 0x0, 0x0, 0x16, 0xef, 0xf9, 0x30, 0x0, 0x0, + 0x4, 0xaf, 0xfb, 0x50, 0x0, 0x0, 0x1, 0x8e, + 0xf8, 0x0, 0x0, 0x3, 0x9e, 0xf7, 0x0, 0x6, + 0xcf, 0xfa, 0x30, 0x28, 0xef, 0xe8, 0x10, 0x0, + 0xff, 0xc6, 0x0, 0x0, 0x0, 0xa3, 0x0, 0x0, + 0x0, 0x0, + + /* U+3F "?" */ + 0x0, 0x26, 0x76, 0x30, 0x0, 0x9f, 0xff, 0xff, + 0x90, 0x7f, 0xd2, 0x1, 0xbf, 0x9d, 0xf1, 0x0, + 0x1, 0xee, 0xb9, 0x0, 0x0, 0xc, 0xf0, 0x0, + 0x0, 0x1, 0xee, 0x0, 0x0, 0x1, 0xcf, 0x60, + 0x0, 0x1, 0xcf, 0x60, 0x0, 0x0, 0xcf, 0x60, + 0x0, 0x0, 0x3f, 0xa0, 0x0, 0x0, 0x6, 0xf5, + 0x0, 0x0, 0x0, 0x48, 0x20, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, + 0x8, 0xf8, 0x0, 0x0, + + /* U+40 "@" */ + 0x0, 0x0, 0x0, 0x23, 0x77, 0x76, 0x30, 0x0, + 0x0, 0x0, 0x0, 0x2, 0x9f, 0xff, 0xef, 0xff, + 0xc5, 0x0, 0x0, 0x0, 0x6, 0xfe, 0x82, 0x0, + 0x1, 0x6d, 0xf8, 0x0, 0x0, 0x6, 0xfb, 0x10, + 0x0, 0x0, 0x0, 0x8, 0xf8, 0x0, 0x2, 0xea, + 0x0, 0x4, 0x77, 0x20, 0x43, 0x9, 0xf3, 0x0, + 0xce, 0x10, 0x1a, 0xff, 0xfe, 0x4f, 0xc0, 0xf, + 0xa0, 0x2f, 0x60, 0xc, 0xf7, 0x0, 0xaf, 0xf8, + 0x0, 0x9e, 0x7, 0xf1, 0x6, 0xf9, 0x0, 0x0, + 0xff, 0x50, 0x7, 0xf0, 0xcc, 0x0, 0xdf, 0x20, + 0x0, 0xc, 0xf1, 0x0, 0x7f, 0xc, 0xa0, 0xf, + 0xc0, 0x0, 0x0, 0xde, 0x0, 0x9, 0xd0, 0xf8, + 0x4, 0xfa, 0x0, 0x0, 0x1f, 0xb0, 0x0, 0xfa, + 0xc, 0xc0, 0x1f, 0xc0, 0x0, 0x8, 0xf7, 0x0, + 0x8f, 0x20, 0xbc, 0x0, 0xee, 0x20, 0x3, 0xff, + 0x40, 0x6f, 0x80, 0x6, 0xf3, 0x5, 0xfd, 0x79, + 0xfd, 0xfb, 0xcf, 0x90, 0x0, 0x1f, 0xa0, 0x5, + 0xef, 0xc3, 0x5f, 0xfc, 0x50, 0x13, 0x20, 0x8f, + 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1c, 0xf2, + 0x0, 0xaf, 0xb2, 0x0, 0x0, 0x0, 0x0, 0x4d, + 0xf6, 0x0, 0x0, 0x7f, 0xfc, 0x75, 0x33, 0x58, + 0xdf, 0xd3, 0x0, 0x0, 0x0, 0x17, 0xcf, 0xff, + 0xff, 0xfb, 0x60, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1, 0x44, 0x0, 0x0, 0x0, 0x0, + + /* U+41 "A" */ + 0x0, 0x0, 0x2, 0x32, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3f, 0xdf, 0x40, 0x0, 0x0, 0x0, 0x0, 0xaf, + 0x4f, 0xa0, 0x0, 0x0, 0x0, 0x1, 0xed, 0xd, + 0xf1, 0x0, 0x0, 0x0, 0x6, 0xf7, 0x6, 0xf8, + 0x0, 0x0, 0x0, 0xc, 0xf2, 0x1, 0xfd, 0x0, + 0x0, 0x0, 0x2f, 0xb0, 0x0, 0xaf, 0x50, 0x0, + 0x0, 0x9f, 0x60, 0x0, 0x5f, 0xb0, 0x0, 0x0, + 0xef, 0xff, 0xff, 0xff, 0xf2, 0x0, 0x5, 0xfe, + 0xcc, 0xcc, 0xce, 0xf8, 0x0, 0xb, 0xf4, 0x0, + 0x0, 0x2, 0xfe, 0x0, 0x1f, 0xe0, 0x0, 0x0, + 0x0, 0xcf, 0x60, 0x7f, 0x90, 0x0, 0x0, 0x0, + 0x6f, 0xb0, 0xef, 0x20, 0x0, 0x0, 0x0, 0x1f, + 0xf2, + + /* U+42 "B" */ + 0x23, 0x33, 0x33, 0x32, 0x0, 0x0, 0x8f, 0xff, + 0xff, 0xff, 0xd3, 0x0, 0x8f, 0x74, 0x47, 0x8a, + 0xfe, 0x10, 0x8f, 0x40, 0x0, 0x0, 0x9f, 0x70, + 0x8f, 0x40, 0x0, 0x0, 0x4f, 0x80, 0x8f, 0x40, + 0x0, 0x0, 0x8f, 0x60, 0x8f, 0x63, 0x33, 0x49, + 0xfa, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xd3, 0x0, + 0x8f, 0xa8, 0x88, 0x89, 0xff, 0x60, 0x8f, 0x40, + 0x0, 0x0, 0x3f, 0xe1, 0x8f, 0x40, 0x0, 0x0, + 0xc, 0xf4, 0x8f, 0x40, 0x0, 0x0, 0xd, 0xf4, + 0x8f, 0x40, 0x0, 0x0, 0x6f, 0xf0, 0x8f, 0xcb, + 0xbb, 0xbc, 0xff, 0x50, 0x8f, 0xff, 0xff, 0xfe, + 0xa4, 0x0, + + /* U+43 "C" */ + 0x0, 0x0, 0x36, 0x77, 0x30, 0x0, 0x0, 0x3, + 0xbf, 0xff, 0xff, 0xd5, 0x0, 0x3, 0xef, 0xa4, + 0x13, 0x8f, 0xf5, 0x1, 0xdf, 0x60, 0x0, 0x0, + 0x4f, 0xd0, 0x6f, 0xa0, 0x0, 0x0, 0x0, 0xcd, + 0x3b, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc, 0xf2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9f, 0x60, 0x0, 0x0, 0x0, 0x7c, 0x54, + 0xfc, 0x0, 0x0, 0x0, 0xd, 0xf4, 0xc, 0xf9, + 0x0, 0x0, 0xa, 0xfc, 0x0, 0x1d, 0xfd, 0x77, + 0x7d, 0xfe, 0x10, 0x0, 0x18, 0xff, 0xff, 0xf8, + 0x10, 0x0, 0x0, 0x0, 0x14, 0x20, 0x0, 0x0, + + /* U+44 "D" */ + 0x23, 0x33, 0x33, 0x33, 0x0, 0x0, 0x8, 0xff, + 0xff, 0xff, 0xfe, 0x70, 0x0, 0x8f, 0xa4, 0x46, + 0x89, 0xff, 0x90, 0x8, 0xf8, 0x0, 0x0, 0x1, + 0xef, 0x60, 0x8f, 0x80, 0x0, 0x0, 0x4, 0xfd, + 0x8, 0xf8, 0x0, 0x0, 0x0, 0xe, 0xf2, 0x8f, + 0x80, 0x0, 0x0, 0x0, 0xcf, 0x48, 0xf8, 0x0, + 0x0, 0x0, 0x9, 0xf4, 0x8f, 0x80, 0x0, 0x0, + 0x0, 0xaf, 0x48, 0xf8, 0x0, 0x0, 0x0, 0xc, + 0xf4, 0x8f, 0x80, 0x0, 0x0, 0x0, 0xff, 0x8, + 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xb0, 0x8f, 0x80, + 0x0, 0x0, 0x6e, 0xf2, 0x8, 0xfd, 0xbb, 0xbb, + 0xef, 0xf6, 0x0, 0x8f, 0xff, 0xff, 0xfd, 0xa2, + 0x0, 0x0, + + /* U+45 "E" */ + 0x23, 0x33, 0x33, 0x33, 0x33, 0x30, 0x8f, 0xff, + 0xff, 0xff, 0xff, 0xf0, 0x8f, 0xa4, 0x44, 0x44, + 0x44, 0x40, 0x8f, 0x80, 0x0, 0x0, 0x0, 0x0, + 0x8f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x8f, 0x80, + 0x0, 0x0, 0x0, 0x0, 0x8f, 0x93, 0x33, 0x33, + 0x33, 0x20, 0x8f, 0xff, 0xff, 0xff, 0xff, 0x80, + 0x8f, 0xc8, 0x88, 0x88, 0x88, 0x40, 0x8f, 0x80, + 0x0, 0x0, 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, + 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, 0x0, 0x0, + 0x8f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xdb, + 0xbb, 0xbb, 0xbb, 0xb3, 0x8f, 0xff, 0xff, 0xff, + 0xff, 0xf4, + + /* U+46 "F" */ + 0x13, 0x33, 0x33, 0x33, 0x33, 0x14, 0xff, 0xff, + 0xff, 0xff, 0xf4, 0x4f, 0xa4, 0x44, 0x44, 0x44, + 0x14, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x4f, 0x80, + 0x0, 0x0, 0x0, 0x4, 0xf8, 0x0, 0x0, 0x0, + 0x0, 0x4f, 0x93, 0x33, 0x33, 0x31, 0x4, 0xff, + 0xff, 0xff, 0xff, 0x40, 0x4f, 0xc8, 0x88, 0x88, + 0x82, 0x4, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x4f, + 0x80, 0x0, 0x0, 0x0, 0x4, 0xf8, 0x0, 0x0, + 0x0, 0x0, 0x4f, 0x80, 0x0, 0x0, 0x0, 0x4, + 0xf8, 0x0, 0x0, 0x0, 0x0, 0x4f, 0x80, 0x0, + 0x0, 0x0, 0x0, + + /* U+47 "G" */ + 0x0, 0x0, 0x15, 0x77, 0x73, 0x0, 0x0, 0x0, + 0x19, 0xff, 0xff, 0xff, 0xc3, 0x0, 0x2, 0xdf, + 0xc5, 0x20, 0x4a, 0xfe, 0x20, 0xc, 0xf8, 0x0, + 0x0, 0x0, 0x7f, 0xb0, 0x3f, 0xc0, 0x0, 0x0, + 0x0, 0xe, 0xe0, 0xaf, 0x60, 0x0, 0x0, 0x0, + 0x1, 0x0, 0xcf, 0x20, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xff, 0x0, 0x0, 0x3, 0x33, 0x33, 0x31, + 0xef, 0x0, 0x0, 0xc, 0xff, 0xff, 0xf4, 0xcf, + 0x40, 0x0, 0x6, 0x88, 0x8c, 0xf4, 0x8f, 0x80, + 0x0, 0x0, 0x0, 0x8, 0xf4, 0x2f, 0xe2, 0x0, + 0x0, 0x0, 0x8, 0xf4, 0x8, 0xfc, 0x30, 0x0, + 0x0, 0x6e, 0xf4, 0x0, 0x9f, 0xfc, 0x77, 0x9d, + 0xff, 0x91, 0x0, 0x4, 0xbf, 0xff, 0xff, 0xa2, + 0x0, 0x0, 0x0, 0x0, 0x34, 0x30, 0x0, 0x0, + + /* U+48 "H" */ + 0x23, 0x20, 0x0, 0x0, 0x0, 0x43, 0x8f, 0x80, + 0x0, 0x0, 0x0, 0xfc, 0x8f, 0x80, 0x0, 0x0, + 0x0, 0xfc, 0x8f, 0x80, 0x0, 0x0, 0x0, 0xfc, + 0x8f, 0x80, 0x0, 0x0, 0x0, 0xfc, 0x8f, 0x80, + 0x0, 0x0, 0x0, 0xfc, 0x8f, 0xb7, 0x77, 0x77, + 0x77, 0xfc, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xfc, + 0x8f, 0xa4, 0x44, 0x44, 0x44, 0xfc, 0x8f, 0x80, + 0x0, 0x0, 0x0, 0xfc, 0x8f, 0x80, 0x0, 0x0, + 0x0, 0xfc, 0x8f, 0x80, 0x0, 0x0, 0x0, 0xfc, + 0x8f, 0x80, 0x0, 0x0, 0x0, 0xfc, 0x8f, 0x80, + 0x0, 0x0, 0x0, 0xfc, 0x8f, 0x80, 0x0, 0x0, + 0x0, 0xfc, + + /* U+49 "I" */ + 0x5, 0x32, 0xfc, 0x2f, 0xc2, 0xfc, 0x2f, 0xc2, + 0xfc, 0x2f, 0xc2, 0xfc, 0x2f, 0xc2, 0xfc, 0x2f, + 0xc2, 0xfc, 0x2f, 0xc2, 0xfc, 0x2f, 0xc0, + + /* U+4A "J" */ + 0x0, 0x0, 0x0, 0x23, 0x20, 0x0, 0x0, 0x8, + 0xf8, 0x0, 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, + 0x8, 0xf8, 0x0, 0x0, 0x0, 0x8f, 0x80, 0x0, + 0x0, 0x8, 0xf8, 0x0, 0x0, 0x0, 0x8f, 0x80, + 0x0, 0x0, 0x8, 0xf8, 0x0, 0x0, 0x0, 0x8f, + 0x80, 0x0, 0x0, 0x8, 0xf8, 0x4, 0x10, 0x0, + 0x8f, 0x86, 0xf6, 0x0, 0x8, 0xf6, 0x4f, 0xa0, + 0x0, 0xcf, 0x30, 0xdf, 0xa7, 0xbf, 0xd0, 0x3, + 0xdf, 0xff, 0xc2, 0x0, 0x0, 0x14, 0x20, 0x0, + + /* U+4B "K" */ + 0x23, 0x10, 0x0, 0x0, 0x3, 0x33, 0x8, 0xf4, + 0x0, 0x0, 0x6, 0xff, 0x30, 0x8f, 0x40, 0x0, + 0x6, 0xff, 0x30, 0x8, 0xf4, 0x0, 0x6, 0xff, + 0x30, 0x0, 0x8f, 0x40, 0x6, 0xff, 0x30, 0x0, + 0x8, 0xf4, 0x6, 0xff, 0x30, 0x0, 0x0, 0x8f, + 0x46, 0xff, 0x50, 0x0, 0x0, 0x8, 0xf9, 0xff, + 0xfb, 0x0, 0x0, 0x0, 0x8f, 0xfd, 0x1c, 0xf8, + 0x0, 0x0, 0x8, 0xfd, 0x10, 0x2f, 0xf4, 0x0, + 0x0, 0x8f, 0x40, 0x0, 0x6f, 0xe1, 0x0, 0x8, + 0xf4, 0x0, 0x0, 0xbf, 0xb0, 0x0, 0x8f, 0x40, + 0x0, 0x1, 0xef, 0x70, 0x8, 0xf4, 0x0, 0x0, + 0x4, 0xff, 0x30, 0x8f, 0x40, 0x0, 0x0, 0x9, + 0xfd, 0x10, + + /* U+4C "L" */ + 0x23, 0x10, 0x0, 0x0, 0x0, 0x8f, 0x40, 0x0, + 0x0, 0x0, 0x8f, 0x40, 0x0, 0x0, 0x0, 0x8f, + 0x40, 0x0, 0x0, 0x0, 0x8f, 0x40, 0x0, 0x0, + 0x0, 0x8f, 0x40, 0x0, 0x0, 0x0, 0x8f, 0x40, + 0x0, 0x0, 0x0, 0x8f, 0x40, 0x0, 0x0, 0x0, + 0x8f, 0x40, 0x0, 0x0, 0x0, 0x8f, 0x40, 0x0, + 0x0, 0x0, 0x8f, 0x40, 0x0, 0x0, 0x0, 0x8f, + 0x40, 0x0, 0x0, 0x0, 0x8f, 0x40, 0x0, 0x0, + 0x0, 0x8f, 0xcb, 0xbb, 0xbb, 0xb6, 0x8f, 0xff, + 0xff, 0xff, 0xf8, + + /* U+4D "M" */ + 0x23, 0x32, 0x0, 0x0, 0x0, 0x2, 0x33, 0x18, + 0xff, 0xa0, 0x0, 0x0, 0x0, 0xbf, 0xf4, 0x8f, + 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x48, 0xfb, + 0xf5, 0x0, 0x0, 0x6, 0xfe, 0xf4, 0x8f, 0x6f, + 0xa0, 0x0, 0x0, 0xbd, 0xcf, 0x48, 0xf4, 0xde, + 0x0, 0x0, 0x1f, 0x7c, 0xf4, 0x8f, 0x47, 0xf5, + 0x0, 0x6, 0xf2, 0xcf, 0x48, 0xf4, 0x2f, 0xa0, + 0x0, 0xcd, 0xc, 0xf4, 0x8f, 0x40, 0xde, 0x0, + 0x2f, 0x60, 0xcf, 0x48, 0xf4, 0x7, 0xf5, 0x7, + 0xf1, 0xc, 0xf4, 0x8f, 0x40, 0x1f, 0xa0, 0xdb, + 0x0, 0xcf, 0x48, 0xf4, 0x0, 0xbe, 0x2f, 0x60, + 0xc, 0xf4, 0x8f, 0x40, 0x6, 0xfc, 0xf1, 0x0, + 0xcf, 0x48, 0xf4, 0x0, 0x1f, 0xfb, 0x0, 0xc, + 0xf4, 0x8f, 0x40, 0x0, 0xbf, 0x60, 0x0, 0xcf, + 0x40, + + /* U+4E "N" */ + 0x23, 0x20, 0x0, 0x0, 0x0, 0x43, 0x8f, 0xe1, + 0x0, 0x0, 0x0, 0xfc, 0x8f, 0xfa, 0x0, 0x0, + 0x0, 0xfc, 0x8f, 0xff, 0x50, 0x0, 0x0, 0xfc, + 0x8f, 0x7f, 0xe1, 0x0, 0x0, 0xfc, 0x8f, 0x48, + 0xfa, 0x0, 0x0, 0xfc, 0x8f, 0x40, 0xdf, 0x50, + 0x0, 0xfc, 0x8f, 0x40, 0x3f, 0xe1, 0x0, 0xfc, + 0x8f, 0x40, 0x8, 0xfa, 0x0, 0xfc, 0x8f, 0x40, + 0x0, 0xdf, 0x50, 0xfc, 0x8f, 0x40, 0x0, 0x3f, + 0xe1, 0xfc, 0x8f, 0x40, 0x0, 0x8, 0xfa, 0xfc, + 0x8f, 0x40, 0x0, 0x0, 0xdf, 0xfc, 0x8f, 0x40, + 0x0, 0x0, 0x3f, 0xfc, 0x8f, 0x40, 0x0, 0x0, + 0x8, 0xfc, + + /* U+4F "O" */ + 0x0, 0x0, 0x24, 0x77, 0x51, 0x0, 0x0, 0x0, + 0x1a, 0xff, 0xff, 0xfe, 0x80, 0x0, 0x3, 0xef, + 0xb4, 0x23, 0x6e, 0xfb, 0x0, 0xc, 0xf6, 0x0, + 0x0, 0x1, 0xdf, 0x80, 0x6f, 0xc0, 0x0, 0x0, + 0x0, 0x2f, 0xe0, 0xbf, 0x40, 0x0, 0x0, 0x0, + 0xb, 0xf5, 0xcf, 0x20, 0x0, 0x0, 0x0, 0x8, + 0xf8, 0xff, 0x0, 0x0, 0x0, 0x0, 0x4, 0xfa, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x6, 0xf9, 0xef, + 0x20, 0x0, 0x0, 0x0, 0x8, 0xf8, 0xaf, 0x60, + 0x0, 0x0, 0x0, 0xc, 0xf3, 0x4f, 0xd1, 0x0, + 0x0, 0x0, 0x5f, 0xe0, 0x9, 0xfb, 0x10, 0x0, + 0x5, 0xef, 0x40, 0x1, 0xbf, 0xe9, 0x77, 0xbf, + 0xf6, 0x0, 0x0, 0x6, 0xef, 0xff, 0xfa, 0x30, + 0x0, 0x0, 0x0, 0x0, 0x43, 0x0, 0x0, 0x0, + + /* U+50 "P" */ + 0x23, 0x33, 0x33, 0x33, 0x10, 0x0, 0x8f, 0xff, + 0xff, 0xff, 0xfb, 0x10, 0x8f, 0xa4, 0x44, 0x78, + 0xdf, 0xc0, 0x8f, 0x80, 0x0, 0x0, 0x1e, 0xf3, + 0x8f, 0x80, 0x0, 0x0, 0x8, 0xf8, 0x8f, 0x80, + 0x0, 0x0, 0x9, 0xf5, 0x8f, 0x80, 0x0, 0x0, + 0x3e, 0xf2, 0x8f, 0xb7, 0x77, 0x7a, 0xff, 0x90, + 0x8f, 0xff, 0xff, 0xff, 0xe6, 0x0, 0x8f, 0xa4, + 0x44, 0x20, 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, + 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, 0x0, 0x0, + 0x8f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x8f, 0x80, + 0x0, 0x0, 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, + 0x0, 0x0, + + /* U+51 "Q" */ + 0x0, 0x0, 0x3, 0x77, 0x74, 0x0, 0x0, 0x0, + 0x0, 0x3c, 0xff, 0xff, 0xfe, 0x60, 0x0, 0x0, + 0x4e, 0xfa, 0x41, 0x36, 0xef, 0x90, 0x0, 0x1d, + 0xf6, 0x0, 0x0, 0x1, 0xdf, 0x50, 0x7, 0xfa, + 0x0, 0x0, 0x0, 0x3, 0xfd, 0x0, 0xdf, 0x20, + 0x0, 0x0, 0x0, 0xd, 0xf3, 0xf, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0x8f, 0x71, 0xfd, 0x0, 0x0, + 0x0, 0x0, 0x8, 0xf8, 0xf, 0xe0, 0x0, 0x0, + 0x0, 0x0, 0x8f, 0x80, 0xff, 0x0, 0x0, 0x0, + 0x0, 0xb, 0xf7, 0xb, 0xf5, 0x0, 0x0, 0x0, + 0x0, 0xef, 0x20, 0x6f, 0xc0, 0x0, 0xd, 0x60, + 0x8f, 0xc0, 0x0, 0xcf, 0xa1, 0x2, 0xbf, 0xcf, + 0xf3, 0x0, 0x1, 0xdf, 0xd9, 0x77, 0xcf, 0xfb, + 0x0, 0x0, 0x0, 0x7e, 0xff, 0xff, 0xaa, 0xfd, + 0x50, 0x0, 0x0, 0x1, 0x43, 0x0, 0x4, 0xc8, + + /* U+52 "R" */ + 0x23, 0x33, 0x33, 0x33, 0x30, 0x0, 0x8, 0xff, + 0xff, 0xff, 0xff, 0xf7, 0x0, 0x8f, 0xa4, 0x44, + 0x44, 0x9f, 0xf6, 0x8, 0xf8, 0x0, 0x0, 0x0, + 0x4f, 0xd0, 0x8f, 0x80, 0x0, 0x0, 0x0, 0xff, + 0x8, 0xf8, 0x0, 0x0, 0x0, 0x2f, 0xe0, 0x8f, + 0x80, 0x0, 0x0, 0x5c, 0xf7, 0x8, 0xff, 0xff, + 0xff, 0xff, 0xf8, 0x0, 0x8f, 0xec, 0xcc, 0xff, + 0xa1, 0x0, 0x8, 0xf8, 0x0, 0x2, 0xdf, 0x60, + 0x0, 0x8f, 0x80, 0x0, 0x3, 0xff, 0x40, 0x8, + 0xf8, 0x0, 0x0, 0x7, 0xfd, 0x10, 0x8f, 0x80, + 0x0, 0x0, 0xc, 0xf9, 0x8, 0xf8, 0x0, 0x0, + 0x0, 0x3f, 0xf4, 0x8f, 0x80, 0x0, 0x0, 0x0, + 0x8f, 0xd0, + + /* U+53 "S" */ + 0x0, 0x4, 0x77, 0x74, 0x0, 0x0, 0x3, 0xdf, + 0xff, 0xff, 0xd5, 0x0, 0x1e, 0xf8, 0x43, 0x48, + 0xfe, 0x20, 0x7f, 0x80, 0x0, 0x0, 0x7f, 0xa0, + 0x8f, 0x50, 0x0, 0x0, 0x1c, 0x90, 0x6f, 0xc2, + 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xc7, 0x30, + 0x0, 0x0, 0x0, 0x8e, 0xff, 0xff, 0x93, 0x0, + 0x0, 0x0, 0x37, 0xbf, 0xff, 0x60, 0x0, 0x0, + 0x0, 0x1, 0x8f, 0xe1, 0xb9, 0x0, 0x0, 0x0, + 0xa, 0xf4, 0xfe, 0x10, 0x0, 0x0, 0x9, 0xf4, + 0x8f, 0xa1, 0x0, 0x0, 0x3e, 0xe0, 0x1d, 0xfe, + 0x97, 0x7a, 0xff, 0x60, 0x1, 0x8e, 0xff, 0xff, + 0xc4, 0x0, 0x0, 0x0, 0x24, 0x41, 0x0, 0x0, + + /* U+54 "T" */ + 0x23, 0x33, 0x33, 0x33, 0x33, 0x33, 0x8f, 0xff, + 0xff, 0xff, 0xff, 0xfc, 0x24, 0x44, 0x4d, 0xf4, + 0x44, 0x43, 0x0, 0x0, 0xc, 0xf0, 0x0, 0x0, + 0x0, 0x0, 0xc, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0xc, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xf0, + 0x0, 0x0, 0x0, 0x0, 0xc, 0xf0, 0x0, 0x0, + 0x0, 0x0, 0xc, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0xc, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xf0, + 0x0, 0x0, 0x0, 0x0, 0xc, 0xf0, 0x0, 0x0, + 0x0, 0x0, 0xc, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0xc, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xf0, + 0x0, 0x0, + + /* U+55 "U" */ + 0x23, 0x20, 0x0, 0x0, 0x0, 0x43, 0x8f, 0x80, + 0x0, 0x0, 0x0, 0xfc, 0x8f, 0x80, 0x0, 0x0, + 0x0, 0xfc, 0x8f, 0x80, 0x0, 0x0, 0x0, 0xfc, + 0x8f, 0x80, 0x0, 0x0, 0x0, 0xfc, 0x8f, 0x80, + 0x0, 0x0, 0x0, 0xfc, 0x8f, 0x80, 0x0, 0x0, + 0x0, 0xfc, 0x8f, 0x80, 0x0, 0x0, 0x0, 0xfc, + 0x8f, 0x80, 0x0, 0x0, 0x0, 0xfc, 0x7f, 0x80, + 0x0, 0x0, 0x2, 0xfc, 0x4f, 0x80, 0x0, 0x0, + 0x4, 0xfc, 0x3f, 0xc0, 0x0, 0x0, 0x6, 0xf9, + 0xe, 0xf6, 0x0, 0x0, 0x2d, 0xf4, 0x4, 0xff, + 0xb7, 0x7a, 0xef, 0xa0, 0x0, 0x3c, 0xff, 0xff, + 0xe8, 0x0, 0x0, 0x0, 0x4, 0x41, 0x0, 0x0, + + /* U+56 "V" */ + 0x33, 0x10, 0x0, 0x0, 0x0, 0x3, 0x3a, 0xf7, + 0x0, 0x0, 0x0, 0x1, 0xfe, 0x3f, 0xc0, 0x0, + 0x0, 0x0, 0x7f, 0x70, 0xef, 0x20, 0x0, 0x0, + 0xd, 0xf2, 0x7, 0xf8, 0x0, 0x0, 0x3, 0xfb, + 0x0, 0x1f, 0xd0, 0x0, 0x0, 0x9f, 0x50, 0x0, + 0xaf, 0x30, 0x0, 0xe, 0xe0, 0x0, 0x5, 0xf9, + 0x0, 0x5, 0xf8, 0x0, 0x0, 0xe, 0xe0, 0x0, + 0xaf, 0x20, 0x0, 0x0, 0x8f, 0x50, 0x1f, 0xc0, + 0x0, 0x0, 0x2, 0xfa, 0x6, 0xf6, 0x0, 0x0, + 0x0, 0xb, 0xe1, 0xdf, 0x0, 0x0, 0x0, 0x0, + 0x6f, 0x7f, 0x90, 0x0, 0x0, 0x0, 0x0, 0xfe, + 0xf2, 0x0, 0x0, 0x0, 0x0, 0x9, 0xfc, 0x0, + 0x0, 0x0, + + /* U+57 "W" */ + 0x33, 0x10, 0x0, 0x0, 0x33, 0x30, 0x0, 0x0, + 0x13, 0x29, 0xf6, 0x0, 0x0, 0xe, 0xfd, 0x0, + 0x0, 0x7, 0xf7, 0x5f, 0xa0, 0x0, 0x3, 0xff, + 0xf2, 0x0, 0x0, 0xbf, 0x20, 0xfc, 0x0, 0x0, + 0x7f, 0x8f, 0x70, 0x0, 0xf, 0xe0, 0xc, 0xf1, + 0x0, 0xc, 0xe0, 0xfb, 0x0, 0x3, 0xfa, 0x0, + 0x8f, 0x50, 0x0, 0xfa, 0xc, 0xf0, 0x0, 0x7f, + 0x50, 0x3, 0xf8, 0x0, 0x5f, 0x50, 0x7f, 0x40, + 0xb, 0xf1, 0x0, 0xf, 0xc0, 0x9, 0xf1, 0x3, + 0xf9, 0x0, 0xfd, 0x0, 0x0, 0xbf, 0x0, 0xed, + 0x0, 0xe, 0xc0, 0x3f, 0x80, 0x0, 0x7, 0xf4, + 0x2f, 0x80, 0x0, 0xaf, 0x17, 0xf4, 0x0, 0x0, + 0x2f, 0x87, 0xf3, 0x0, 0x6, 0xf5, 0xaf, 0x0, + 0x0, 0x0, 0xeb, 0xbf, 0x0, 0x0, 0x1f, 0x8e, + 0xb0, 0x0, 0x0, 0xa, 0xdf, 0xb0, 0x0, 0x0, + 0xdd, 0xf7, 0x0, 0x0, 0x0, 0x6f, 0xf6, 0x0, + 0x0, 0x8, 0xff, 0x20, 0x0, 0x0, 0x1, 0xff, + 0x20, 0x0, 0x0, 0x4f, 0xe0, 0x0, 0x0, + + /* U+58 "X" */ + 0x4, 0x31, 0x0, 0x0, 0x0, 0x23, 0x30, 0xbf, + 0x90, 0x0, 0x0, 0x1c, 0xf3, 0x1, 0xff, 0x40, + 0x0, 0xa, 0xf7, 0x0, 0x4, 0xfe, 0x10, 0x6, + 0xfc, 0x0, 0x0, 0x9, 0xfa, 0x3, 0xef, 0x10, + 0x0, 0x0, 0xd, 0xf5, 0xdf, 0x40, 0x0, 0x0, + 0x0, 0x3f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, + 0xaf, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x2e, 0xff, + 0x90, 0x0, 0x0, 0x0, 0xd, 0xf5, 0xff, 0x40, + 0x0, 0x0, 0x9, 0xf9, 0x5, 0xfe, 0x10, 0x0, + 0x5, 0xfd, 0x10, 0x9, 0xfa, 0x0, 0x2, 0xef, + 0x30, 0x0, 0x1e, 0xf7, 0x0, 0xdf, 0x70, 0x0, + 0x0, 0x3f, 0xe3, 0x9f, 0xc0, 0x0, 0x0, 0x0, + 0x8f, 0xc0, + + /* U+59 "Y" */ + 0x33, 0x20, 0x0, 0x0, 0x0, 0x13, 0x37, 0xfd, + 0x10, 0x0, 0x0, 0x9, 0xfa, 0xc, 0xf9, 0x0, + 0x0, 0x4, 0xfe, 0x10, 0x2f, 0xf3, 0x0, 0x1, + 0xdf, 0x40, 0x0, 0x7f, 0xc0, 0x0, 0x8f, 0x90, + 0x0, 0x0, 0xcf, 0x80, 0x3f, 0xd0, 0x0, 0x0, + 0x2, 0xff, 0x2d, 0xf3, 0x0, 0x0, 0x0, 0x7, + 0xfd, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xc, 0xfc, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0x80, 0x0, + 0x0, 0x0, 0x0, 0x8, 0xf8, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, 0x0, 0x0, + 0x8, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, + 0x80, 0x0, 0x0, 0x0, 0x0, 0x8, 0xf8, 0x0, + 0x0, 0x0, + + /* U+5A "Z" */ + 0x3, 0x33, 0x33, 0x33, 0x33, 0x32, 0xc, 0xff, + 0xff, 0xff, 0xff, 0xf8, 0x3, 0x44, 0x44, 0x44, + 0x5e, 0xf5, 0x0, 0x0, 0x0, 0x0, 0xdf, 0x90, + 0x0, 0x0, 0x0, 0xa, 0xfc, 0x0, 0x0, 0x0, + 0x0, 0x6f, 0xe1, 0x0, 0x0, 0x0, 0x3, 0xff, + 0x30, 0x0, 0x0, 0x0, 0x1e, 0xf6, 0x0, 0x0, + 0x0, 0x0, 0xdf, 0x80, 0x0, 0x0, 0x0, 0xa, + 0xfb, 0x0, 0x0, 0x0, 0x0, 0x6f, 0xd1, 0x0, + 0x0, 0x0, 0x3, 0xff, 0x30, 0x0, 0x0, 0x0, + 0x1e, 0xf5, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xeb, + 0xbb, 0xbb, 0xbb, 0xb9, 0x8f, 0xff, 0xff, 0xff, + 0xff, 0xfc, + + /* U+5B "[" */ + 0x33, 0x33, 0x1c, 0xff, 0xf4, 0xcf, 0x44, 0x1c, + 0xf0, 0x0, 0xcf, 0x0, 0xc, 0xf0, 0x0, 0xcf, + 0x0, 0xc, 0xf0, 0x0, 0xcf, 0x0, 0xc, 0xf0, + 0x0, 0xcf, 0x0, 0xc, 0xf0, 0x0, 0xcf, 0x0, + 0xc, 0xf0, 0x0, 0xcf, 0x0, 0xc, 0xf0, 0x0, + 0xcf, 0x0, 0xc, 0xf7, 0x72, 0xcf, 0xff, 0x40, + + /* U+5C "\\" */ + 0x84, 0x0, 0x0, 0xbb, 0x0, 0x0, 0x7f, 0x0, + 0x0, 0x2f, 0x40, 0x0, 0xe, 0x90, 0x0, 0x9, + 0xc0, 0x0, 0x5, 0xf2, 0x0, 0x1, 0xf6, 0x0, + 0x0, 0xcb, 0x0, 0x0, 0x7e, 0x0, 0x0, 0x3f, + 0x30, 0x0, 0xe, 0x80, 0x0, 0xa, 0xc0, 0x0, + 0x6, 0xf1, 0x0, 0x1, 0xf6, 0x0, 0x0, 0x42, + + /* U+5D "]" */ + 0x23, 0x33, 0x18, 0xff, 0xf4, 0x24, 0xaf, 0x40, + 0x8, 0xf4, 0x0, 0x8f, 0x40, 0x8, 0xf4, 0x0, + 0x8f, 0x40, 0x8, 0xf4, 0x0, 0x8f, 0x40, 0x8, + 0xf4, 0x0, 0x8f, 0x40, 0x8, 0xf4, 0x0, 0x8f, + 0x40, 0x8, 0xf4, 0x0, 0x8f, 0x40, 0x8, 0xf4, + 0x0, 0x8f, 0x44, 0x7b, 0xf4, 0x8f, 0xff, 0x40, + + /* U+5E "^" */ + 0x0, 0x1, 0x74, 0x0, 0x0, 0x0, 0x8f, 0xd0, + 0x0, 0x0, 0xf, 0xef, 0x50, 0x0, 0x6, 0xf4, + 0xeb, 0x0, 0x0, 0xde, 0x8, 0xf3, 0x0, 0x4f, + 0x70, 0x1f, 0xa0, 0xb, 0xf1, 0x0, 0xaf, 0x22, + 0xfa, 0x0, 0x4, 0xf8, 0x24, 0x20, 0x0, 0x4, + 0x30, + + /* U+5F "_" */ + 0x14, 0x44, 0x44, 0x44, 0x44, 0x44, 0x14, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf5, + + /* U+60 "`" */ + 0x87, 0x20, 0x6f, 0xa0, 0xa, 0xf2, 0x0, 0x42, + + /* U+61 "a" */ + 0x0, 0x4, 0x77, 0x75, 0x10, 0x0, 0x1c, 0xff, + 0xef, 0xfe, 0x20, 0xa, 0xf7, 0x0, 0x1a, 0xf9, + 0x0, 0xab, 0x0, 0x0, 0x2f, 0xc0, 0x0, 0x0, + 0x1, 0x37, 0xfc, 0x0, 0x6, 0xbf, 0xff, 0xff, + 0xc0, 0xa, 0xfe, 0x96, 0x30, 0xfc, 0x3, 0xfd, + 0x0, 0x0, 0x3f, 0xc0, 0x4f, 0xb0, 0x0, 0x9, + 0xfc, 0x0, 0xff, 0x53, 0x3a, 0xff, 0xc0, 0x4, + 0xef, 0xff, 0xc3, 0xbf, 0x10, 0x0, 0x24, 0x10, + 0x0, 0x0, + + /* U+62 "b" */ + 0x33, 0x0, 0x0, 0x0, 0x0, 0xcf, 0x0, 0x0, + 0x0, 0x0, 0xcf, 0x0, 0x0, 0x0, 0x0, 0xcf, + 0x0, 0x0, 0x0, 0x0, 0xcf, 0x4, 0x77, 0x40, + 0x0, 0xcf, 0x9f, 0xef, 0xfb, 0x10, 0xcf, 0xf4, + 0x1, 0xaf, 0x80, 0xcf, 0x60, 0x0, 0x1f, 0xe0, + 0xcf, 0x0, 0x0, 0xb, 0xf3, 0xcf, 0x0, 0x0, + 0x8, 0xf4, 0xcf, 0x0, 0x0, 0x9, 0xf4, 0xcf, + 0x20, 0x0, 0xd, 0xf0, 0xcf, 0x80, 0x0, 0x4f, + 0xc0, 0xcf, 0xf8, 0x36, 0xef, 0x20, 0xcf, 0x3f, + 0xff, 0xd3, 0x0, 0x0, 0x0, 0x31, 0x0, 0x0, + + /* U+63 "c" */ + 0x0, 0x2, 0x77, 0x72, 0x0, 0x0, 0x9f, 0xff, + 0xff, 0x70, 0x7, 0xfc, 0x10, 0x1d, 0xf3, 0xe, + 0xf1, 0x0, 0x3, 0xd7, 0x1f, 0xc0, 0x0, 0x0, + 0x0, 0x4f, 0xa0, 0x0, 0x0, 0x0, 0x2f, 0xb0, + 0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0xc8, + 0xc, 0xf4, 0x0, 0x6, 0xf7, 0x2, 0xfe, 0x63, + 0x6e, 0xe1, 0x0, 0x3d, 0xff, 0xfc, 0x20, 0x0, + 0x0, 0x4, 0x10, 0x0, + + /* U+64 "d" */ + 0x0, 0x0, 0x0, 0x0, 0x43, 0x0, 0x0, 0x0, + 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, + 0x0, 0x0, 0x0, 0xfc, 0x0, 0x4, 0x77, 0x40, + 0xfc, 0x1, 0x9f, 0xff, 0xf9, 0xfc, 0x8, 0xfa, + 0x0, 0x4f, 0xfc, 0xf, 0xf0, 0x0, 0x6, 0xfc, + 0x4f, 0xa0, 0x0, 0x1, 0xfc, 0x4f, 0x80, 0x0, + 0x0, 0xfc, 0x4f, 0x80, 0x0, 0x0, 0xfc, 0x2f, + 0xc0, 0x0, 0x2, 0xfc, 0xc, 0xf3, 0x0, 0x8, + 0xfc, 0x4, 0xfe, 0x53, 0x9f, 0xfc, 0x0, 0x3e, + 0xff, 0xf3, 0xfc, 0x0, 0x0, 0x22, 0x0, 0x0, + + /* U+65 "e" */ + 0x0, 0x2, 0x67, 0x63, 0x0, 0x0, 0x7, 0xff, + 0xff, 0xf7, 0x0, 0x5, 0xfc, 0x10, 0x1a, 0xf6, + 0x0, 0xef, 0x10, 0x0, 0xe, 0xe0, 0xf, 0xc3, + 0x33, 0x33, 0xbf, 0x14, 0xff, 0xff, 0xff, 0xff, + 0xf4, 0x4f, 0xb4, 0x44, 0x44, 0x44, 0x10, 0xfc, + 0x0, 0x0, 0x3, 0x31, 0xc, 0xf4, 0x0, 0x1, + 0xef, 0x10, 0x2f, 0xe7, 0x34, 0xcf, 0x60, 0x0, + 0x3d, 0xff, 0xfe, 0x50, 0x0, 0x0, 0x0, 0x42, + 0x0, 0x0, + + /* U+66 "f" */ + 0x0, 0x15, 0x77, 0x20, 0xd, 0xff, 0xf1, 0x3, + 0xfc, 0x11, 0x0, 0x4f, 0x80, 0x0, 0x36, 0xf9, + 0x32, 0xc, 0xff, 0xff, 0x80, 0x4, 0xf8, 0x0, + 0x0, 0x4f, 0x80, 0x0, 0x4, 0xf8, 0x0, 0x0, + 0x4f, 0x80, 0x0, 0x4, 0xf8, 0x0, 0x0, 0x4f, + 0x80, 0x0, 0x4, 0xf8, 0x0, 0x0, 0x4f, 0x80, + 0x0, 0x4, 0xf8, 0x0, 0x0, + + /* U+67 "g" */ + 0x0, 0x4, 0x77, 0x40, 0x33, 0x1, 0x9f, 0xff, + 0xf9, 0xdc, 0x8, 0xfa, 0x10, 0x3f, 0xfc, 0xf, + 0xe0, 0x0, 0x6, 0xfc, 0x4f, 0x90, 0x0, 0x0, + 0xfc, 0x4f, 0x80, 0x0, 0x0, 0xfc, 0x4f, 0x80, + 0x0, 0x0, 0xfc, 0x1f, 0xb0, 0x0, 0x2, 0xfc, + 0xa, 0xf4, 0x0, 0xb, 0xfc, 0x2, 0xff, 0x97, + 0xcf, 0xfc, 0x0, 0x1b, 0xef, 0xb2, 0xfc, 0x0, + 0x0, 0x0, 0x1, 0xfb, 0xe, 0xc0, 0x0, 0x7, + 0xf7, 0x9, 0xfa, 0x33, 0x7f, 0xe1, 0x0, 0x9f, + 0xff, 0xfb, 0x20, 0x0, 0x0, 0x24, 0x0, 0x0, + + /* U+68 "h" */ + 0x33, 0x0, 0x0, 0x0, 0xc, 0xf0, 0x0, 0x0, + 0x0, 0xcf, 0x0, 0x0, 0x0, 0xc, 0xf0, 0x0, + 0x0, 0x0, 0xcf, 0x3, 0x77, 0x51, 0xc, 0xf7, + 0xff, 0xff, 0xd1, 0xcf, 0xf4, 0x1, 0xaf, 0x8c, + 0xf6, 0x0, 0x2, 0xfc, 0xcf, 0x20, 0x0, 0xf, + 0xcc, 0xf0, 0x0, 0x0, 0xfc, 0xcf, 0x0, 0x0, + 0xf, 0xcc, 0xf0, 0x0, 0x0, 0xfc, 0xcf, 0x0, + 0x0, 0xf, 0xcc, 0xf0, 0x0, 0x0, 0xfc, 0xcf, + 0x0, 0x0, 0xf, 0xc0, + + /* U+69 "i" */ + 0x33, 0xcf, 0x9c, 0x0, 0x33, 0xcf, 0xcf, 0xcf, + 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, + + /* U+6A "j" */ + 0x0, 0x33, 0x0, 0xcf, 0x0, 0x9c, 0x0, 0x0, + 0x0, 0x33, 0x0, 0xcf, 0x0, 0xcf, 0x0, 0xcf, + 0x0, 0xcf, 0x0, 0xcf, 0x0, 0xcf, 0x0, 0xcf, + 0x0, 0xcf, 0x0, 0xcf, 0x0, 0xcf, 0x0, 0xcf, + 0x0, 0xcf, 0x45, 0xfd, 0xdf, 0xf4, 0x24, 0x0, + + /* U+6B "k" */ + 0x33, 0x0, 0x0, 0x0, 0xc, 0xf0, 0x0, 0x0, + 0x0, 0xcf, 0x0, 0x0, 0x0, 0xc, 0xf0, 0x0, + 0x0, 0x0, 0xcf, 0x0, 0x0, 0x43, 0x1c, 0xf0, + 0x0, 0xaf, 0xa0, 0xcf, 0x0, 0xaf, 0xa0, 0xc, + 0xf0, 0xaf, 0xa0, 0x0, 0xcf, 0x9f, 0xd0, 0x0, + 0xc, 0xff, 0xff, 0x40, 0x0, 0xcf, 0x73, 0xfd, + 0x10, 0xc, 0xf0, 0x8, 0xf9, 0x0, 0xcf, 0x0, + 0xd, 0xf4, 0xc, 0xf0, 0x0, 0x4f, 0xd1, 0xcf, + 0x0, 0x0, 0x9f, 0x90, + + /* U+6C "l" */ + 0x35, 0xb, 0xf0, 0xbf, 0xb, 0xf0, 0xbf, 0xb, + 0xf0, 0xbf, 0xb, 0xf0, 0xbf, 0xb, 0xf0, 0xbf, + 0xb, 0xf0, 0xbf, 0xb, 0xf0, 0xbf, 0x0, + + /* U+6D "m" */ + 0x33, 0x4, 0x77, 0x40, 0x3, 0x67, 0x50, 0xc, + 0xfa, 0xff, 0xff, 0x96, 0xff, 0xff, 0x90, 0xcf, + 0xf4, 0x2, 0xff, 0xf4, 0x1, 0xdf, 0x3c, 0xf6, + 0x0, 0x9, 0xf9, 0x0, 0x8, 0xf4, 0xcf, 0x30, + 0x0, 0x8f, 0x40, 0x0, 0x8f, 0x4c, 0xf0, 0x0, + 0x8, 0xf4, 0x0, 0x8, 0xf4, 0xcf, 0x0, 0x0, + 0x8f, 0x40, 0x0, 0x8f, 0x4c, 0xf0, 0x0, 0x8, + 0xf4, 0x0, 0x8, 0xf4, 0xcf, 0x0, 0x0, 0x8f, + 0x40, 0x0, 0x8f, 0x4c, 0xf0, 0x0, 0x8, 0xf4, + 0x0, 0x8, 0xf4, 0xcf, 0x0, 0x0, 0x8f, 0x40, + 0x0, 0x8f, 0x40, + + /* U+6E "n" */ + 0x33, 0x3, 0x67, 0x51, 0xc, 0xf6, 0xff, 0xff, + 0xc1, 0xcf, 0xf4, 0x1, 0xaf, 0x9c, 0xf6, 0x0, + 0x2, 0xfc, 0xcf, 0x40, 0x0, 0xf, 0xcc, 0xf0, + 0x0, 0x0, 0xfc, 0xcf, 0x0, 0x0, 0xf, 0xcc, + 0xf0, 0x0, 0x0, 0xfc, 0xcf, 0x0, 0x0, 0xf, + 0xcc, 0xf0, 0x0, 0x0, 0xfc, 0xcf, 0x0, 0x0, + 0xf, 0xc0, + + /* U+6F "o" */ + 0x0, 0x2, 0x77, 0x63, 0x0, 0x0, 0x9, 0xff, + 0xff, 0xf8, 0x0, 0x7, 0xfb, 0x10, 0x1b, 0xf7, + 0x0, 0xff, 0x10, 0x0, 0x1f, 0xe0, 0x2f, 0xa0, + 0x0, 0x0, 0x9f, 0x44, 0xf8, 0x0, 0x0, 0x8, + 0xf4, 0x4f, 0x80, 0x0, 0x0, 0x8f, 0x41, 0xfc, + 0x0, 0x0, 0xb, 0xf3, 0xc, 0xf3, 0x0, 0x3, + 0xfe, 0x0, 0x3f, 0xe6, 0x36, 0xef, 0x40, 0x0, + 0x3d, 0xff, 0xfd, 0x40, 0x0, 0x0, 0x0, 0x42, + 0x0, 0x0, + + /* U+70 "p" */ + 0x33, 0x5, 0x77, 0x40, 0x0, 0xcf, 0xaf, 0xdf, + 0xf9, 0x10, 0xcf, 0xf3, 0x0, 0xaf, 0x80, 0xcf, + 0x60, 0x0, 0xe, 0xe0, 0xcf, 0x0, 0x0, 0xa, + 0xf4, 0xcf, 0x0, 0x0, 0x8, 0xf4, 0xcf, 0x0, + 0x0, 0x8, 0xf4, 0xcf, 0x10, 0x0, 0xc, 0xf2, + 0xcf, 0x80, 0x0, 0x3f, 0xc0, 0xcf, 0xf9, 0x35, + 0xef, 0x30, 0xcf, 0x6f, 0xff, 0xe3, 0x0, 0xcf, + 0x0, 0x42, 0x0, 0x0, 0xcf, 0x0, 0x0, 0x0, + 0x0, 0xcf, 0x0, 0x0, 0x0, 0x0, 0xcf, 0x0, + 0x0, 0x0, 0x0, + + /* U+71 "q" */ + 0x0, 0x4, 0x77, 0x30, 0x43, 0x1, 0x9f, 0xfd, + 0xf9, 0xfc, 0x8, 0xfa, 0x0, 0x3f, 0xfc, 0xf, + 0xf0, 0x0, 0x6, 0xfc, 0x4f, 0xb0, 0x0, 0x0, + 0xfc, 0x4f, 0x80, 0x0, 0x0, 0xfc, 0x4f, 0x90, + 0x0, 0x0, 0xfc, 0xf, 0xc0, 0x0, 0x1, 0xfc, + 0xb, 0xf4, 0x0, 0x8, 0xfc, 0x2, 0xfe, 0x63, + 0x9f, 0xfc, 0x0, 0x3d, 0xff, 0xf6, 0xfc, 0x0, + 0x0, 0x14, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0, + 0xfc, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, + 0x0, 0x0, 0xfc, + + /* U+72 "r" */ + 0x33, 0x16, 0x74, 0xcf, 0xbf, 0xfb, 0xcf, 0xf5, + 0x54, 0xcf, 0x60, 0x0, 0xcf, 0x20, 0x0, 0xcf, + 0x0, 0x0, 0xcf, 0x0, 0x0, 0xcf, 0x0, 0x0, + 0xcf, 0x0, 0x0, 0xcf, 0x0, 0x0, 0xcf, 0x0, + 0x0, + + /* U+73 "s" */ + 0x0, 0x26, 0x77, 0x50, 0x0, 0x6, 0xff, 0xef, + 0xfd, 0x20, 0xf, 0xe2, 0x0, 0x7f, 0xa0, 0xf, + 0xb0, 0x0, 0x8, 0x40, 0xd, 0xfb, 0x62, 0x0, + 0x0, 0x3, 0xcf, 0xff, 0xd7, 0x10, 0x0, 0x2, + 0x7b, 0xff, 0xc0, 0x13, 0x20, 0x0, 0x1e, 0xf3, + 0x3f, 0xa0, 0x0, 0xb, 0xf2, 0xd, 0xf9, 0x33, + 0x7f, 0xc0, 0x1, 0xaf, 0xff, 0xfa, 0x10, 0x0, + 0x0, 0x44, 0x10, 0x0, + + /* U+74 "t" */ + 0x0, 0x87, 0x0, 0x4, 0xf8, 0x0, 0x4, 0xf8, + 0x0, 0x36, 0xf9, 0x31, 0xcf, 0xff, 0xf4, 0x4, + 0xf8, 0x0, 0x4, 0xf8, 0x0, 0x4, 0xf8, 0x0, + 0x4, 0xf8, 0x0, 0x4, 0xf8, 0x0, 0x4, 0xf8, + 0x0, 0x4, 0xf8, 0x0, 0x4, 0xfc, 0x72, 0x0, + 0xcf, 0xf5, 0x0, 0x0, 0x10, + + /* U+75 "u" */ + 0x33, 0x0, 0x0, 0x4, 0x3c, 0xf0, 0x0, 0x0, + 0xfc, 0xcf, 0x0, 0x0, 0xf, 0xcc, 0xf0, 0x0, + 0x0, 0xfc, 0xcf, 0x0, 0x0, 0xf, 0xcc, 0xf0, + 0x0, 0x0, 0xfc, 0xcf, 0x0, 0x0, 0xf, 0xcc, + 0xf0, 0x0, 0x4, 0xfc, 0xaf, 0x50, 0x0, 0x8f, + 0xc6, 0xfe, 0x53, 0x9f, 0xfc, 0x8, 0xff, 0xfc, + 0x3f, 0xc0, 0x1, 0x41, 0x0, 0x0, + + /* U+76 "v" */ + 0x33, 0x10, 0x0, 0x1, 0x33, 0x6f, 0x60, 0x0, + 0x6, 0xf7, 0x1f, 0xc0, 0x0, 0xb, 0xf1, 0xa, + 0xf2, 0x0, 0x2f, 0xb0, 0x5, 0xf8, 0x0, 0x7f, + 0x50, 0x0, 0xed, 0x0, 0xde, 0x0, 0x0, 0x8f, + 0x33, 0xf9, 0x0, 0x0, 0x2f, 0x99, 0xf2, 0x0, + 0x0, 0xc, 0xde, 0xd0, 0x0, 0x0, 0x6, 0xff, + 0x60, 0x0, 0x0, 0x1, 0xff, 0x10, 0x0, + + /* U+77 "w" */ + 0x33, 0x0, 0x0, 0x33, 0x10, 0x0, 0x23, 0x1b, + 0xf2, 0x0, 0xf, 0xf6, 0x0, 0xb, 0xf1, 0x6f, + 0x60, 0x3, 0xff, 0xa0, 0x0, 0xfb, 0x1, 0xfb, + 0x0, 0x7f, 0xdd, 0x0, 0x5f, 0x60, 0xc, 0xe0, + 0xc, 0xc8, 0xf2, 0x9, 0xf1, 0x0, 0x7f, 0x30, + 0xf8, 0x4f, 0x60, 0xed, 0x0, 0x2, 0xf8, 0x4f, + 0x40, 0xfa, 0x3f, 0x70, 0x0, 0xe, 0xc8, 0xf0, + 0xb, 0xe7, 0xf2, 0x0, 0x0, 0x9f, 0xcb, 0x0, + 0x7f, 0xed, 0x0, 0x0, 0x3, 0xff, 0x70, 0x3, + 0xff, 0x90, 0x0, 0x0, 0xf, 0xf3, 0x0, 0xf, + 0xf3, 0x0, 0x0, + + /* U+78 "x" */ + 0x23, 0x30, 0x0, 0x3, 0x32, 0x1e, 0xf3, 0x0, + 0x3f, 0xe1, 0x4, 0xfc, 0x1, 0xcf, 0x30, 0x0, + 0x9f, 0x89, 0xf8, 0x0, 0x0, 0xd, 0xff, 0xc0, + 0x0, 0x0, 0x4, 0xff, 0x20, 0x0, 0x0, 0xb, + 0xff, 0xa0, 0x0, 0x0, 0x7f, 0x99, 0xf7, 0x0, + 0x2, 0xee, 0x11, 0xfe, 0x20, 0xd, 0xf4, 0x0, + 0x5f, 0xc0, 0x8f, 0x90, 0x0, 0xb, 0xf8, + + /* U+79 "y" */ + 0x23, 0x10, 0x0, 0x0, 0x43, 0x6f, 0x90, 0x0, + 0x4, 0xf8, 0xf, 0xd0, 0x0, 0xa, 0xf2, 0xa, + 0xf4, 0x0, 0x1e, 0xc0, 0x3, 0xfa, 0x0, 0x6f, + 0x60, 0x0, 0xee, 0x0, 0xbf, 0x10, 0x0, 0x7f, + 0x52, 0xfa, 0x0, 0x0, 0x2f, 0xa7, 0xf4, 0x0, + 0x0, 0xb, 0xeb, 0xe0, 0x0, 0x0, 0x5, 0xff, + 0x80, 0x0, 0x0, 0x0, 0xff, 0x20, 0x0, 0x0, + 0x0, 0xec, 0x0, 0x0, 0x0, 0x6, 0xf6, 0x0, + 0x0, 0x9, 0x8e, 0xe0, 0x0, 0x0, 0xc, 0xff, + 0x30, 0x0, 0x0, 0x1, 0x40, 0x0, 0x0, 0x0, + + /* U+7A "z" */ + 0x13, 0x33, 0x33, 0x33, 0x31, 0x4f, 0xff, 0xff, + 0xff, 0xf4, 0x0, 0x0, 0x0, 0x6f, 0xa0, 0x0, + 0x0, 0x6, 0xfd, 0x0, 0x0, 0x0, 0x3e, 0xd1, + 0x0, 0x0, 0x3, 0xef, 0x30, 0x0, 0x0, 0x1c, + 0xf4, 0x0, 0x0, 0x1, 0xcf, 0x60, 0x0, 0x0, + 0xa, 0xf9, 0x0, 0x0, 0x0, 0x7f, 0xe7, 0x77, + 0x77, 0x74, 0x8f, 0xff, 0xff, 0xff, 0xf8, + + /* U+7B "{" */ + 0x0, 0x1, 0x67, 0x20, 0x0, 0xdf, 0xf4, 0x0, + 0x4f, 0x90, 0x0, 0x7, 0xf4, 0x0, 0x0, 0x8f, + 0x40, 0x0, 0x8, 0xf4, 0x0, 0x0, 0x8f, 0x40, + 0x0, 0x9, 0xf0, 0x0, 0x4, 0xeb, 0x0, 0x8, + 0xfb, 0x10, 0x0, 0x5e, 0xe3, 0x0, 0x0, 0x1e, + 0xc0, 0x0, 0x0, 0x8f, 0x10, 0x0, 0x8, 0xf4, + 0x0, 0x0, 0x8f, 0x40, 0x0, 0x8, 0xf4, 0x0, + 0x0, 0x5f, 0x40, 0x0, 0x3, 0xfc, 0x41, 0x0, + 0x9, 0xff, 0x40, 0x0, 0x1, 0x41, + + /* U+7C "|" */ + 0x18, 0x32, 0xf5, 0x2f, 0x52, 0xf5, 0x2f, 0x52, + 0xf5, 0x2f, 0x52, 0xf5, 0x2f, 0x52, 0xf5, 0x2f, + 0x52, 0xf5, 0x2f, 0x52, 0xf5, 0x2f, 0x52, 0xf5, + 0x2f, 0x52, 0xf5, 0x2f, 0x50, 0x31, + + /* U+7D "}" */ + 0x47, 0x50, 0x0, 0x8f, 0xf8, 0x0, 0x1, 0xee, + 0x0, 0x0, 0x8f, 0x0, 0x0, 0x8f, 0x0, 0x0, + 0x8f, 0x0, 0x0, 0x8f, 0x30, 0x0, 0x6f, 0x50, + 0x0, 0x1f, 0xc1, 0x0, 0x3, 0xdf, 0x0, 0x8, + 0xfd, 0x0, 0x3f, 0x80, 0x0, 0x7f, 0x40, 0x0, + 0x8f, 0x10, 0x0, 0x8f, 0x0, 0x0, 0x8f, 0x0, + 0x0, 0xaf, 0x0, 0x26, 0xed, 0x0, 0x8f, 0xf4, + 0x0, 0x24, 0x0, 0x0, + + /* U+7E "~" */ + 0x1, 0x67, 0x73, 0x0, 0x0, 0x32, 0xdf, 0xff, + 0xfc, 0x64, 0x9c, 0x4f, 0x64, 0x7e, 0xff, 0xff, + 0x92, 0x10, 0x0, 0x3, 0x88, 0x40, + + /* U+401 "Ё" */ + 0x0, 0x4, 0x30, 0x13, 0x20, 0x0, 0x0, 0xf, + 0xc0, 0x4f, 0x80, 0x0, 0x0, 0xc, 0x90, 0x3c, + 0x60, 0x0, 0x23, 0x33, 0x33, 0x33, 0x33, 0x30, + 0x8f, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x8f, 0xa4, + 0x44, 0x44, 0x44, 0x40, 0x8f, 0x80, 0x0, 0x0, + 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, 0x0, 0x0, + 0x8f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x8f, 0x93, + 0x33, 0x33, 0x33, 0x20, 0x8f, 0xff, 0xff, 0xff, + 0xff, 0x80, 0x8f, 0xc8, 0x88, 0x88, 0x88, 0x40, + 0x8f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x8f, 0x80, + 0x0, 0x0, 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, + 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, 0x0, 0x0, + 0x8f, 0xdb, 0xbb, 0xbb, 0xbb, 0xb3, 0x8f, 0xff, + 0xff, 0xff, 0xff, 0xf4, + + /* U+402 "Ђ" */ + 0x23, 0x33, 0x33, 0x33, 0x33, 0x33, 0x0, 0x0, + 0x8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, + 0x0, 0x24, 0x44, 0x4d, 0xf7, 0x44, 0x44, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xcf, 0x40, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc, 0xf4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0x40, 0x0, + 0x10, 0x0, 0x0, 0x0, 0x0, 0xc, 0xf7, 0x9e, + 0xff, 0xfa, 0x30, 0x0, 0x0, 0x0, 0xcf, 0xfe, + 0xa8, 0x8b, 0xff, 0x40, 0x0, 0x0, 0xc, 0xf6, + 0x0, 0x0, 0x5, 0xfe, 0x10, 0x0, 0x0, 0xcf, + 0x40, 0x0, 0x0, 0xa, 0xf4, 0x0, 0x0, 0xc, + 0xf4, 0x0, 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, + 0xcf, 0x40, 0x0, 0x0, 0x9, 0xf5, 0x0, 0x0, + 0xc, 0xf4, 0x0, 0x0, 0x1, 0xef, 0x20, 0x0, + 0x0, 0xcf, 0x40, 0x9, 0x37, 0xef, 0x80, 0x0, + 0x0, 0xc, 0xf4, 0x4, 0xff, 0xff, 0x70, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0x43, 0x0, 0x0, + + /* U+403 "Ѓ" */ + 0x0, 0x0, 0x4f, 0xd1, 0x0, 0x0, 0x0, 0xcf, + 0x30, 0x0, 0x0, 0x2, 0xc5, 0x0, 0x0, 0x23, + 0x33, 0x33, 0x33, 0x33, 0x8f, 0xff, 0xff, 0xff, + 0xfc, 0x8f, 0xa4, 0x44, 0x44, 0x43, 0x8f, 0x80, + 0x0, 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, 0x0, + 0x8f, 0x80, 0x0, 0x0, 0x0, 0x8f, 0x80, 0x0, + 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, 0x0, 0x8f, + 0x80, 0x0, 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, + 0x0, 0x8f, 0x80, 0x0, 0x0, 0x0, 0x8f, 0x80, + 0x0, 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, 0x0, + 0x8f, 0x80, 0x0, 0x0, 0x0, 0x8f, 0x80, 0x0, + 0x0, 0x0, + + /* U+404 "Є" */ + 0x0, 0x0, 0x36, 0x77, 0x30, 0x0, 0x0, 0x1, + 0xbf, 0xff, 0xff, 0xd5, 0x0, 0x3, 0xef, 0xb4, + 0x24, 0x8f, 0xf6, 0x0, 0xcf, 0x60, 0x0, 0x0, + 0x3f, 0xe1, 0x5f, 0xc0, 0x0, 0x0, 0x0, 0xae, + 0x4a, 0xf6, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, + 0x63, 0x33, 0x31, 0x0, 0x0, 0xf, 0xff, 0xff, + 0xff, 0x40, 0x0, 0x0, 0xcf, 0x88, 0x88, 0x82, + 0x0, 0x0, 0xc, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9f, 0x70, 0x0, 0x0, 0x0, 0x6c, 0x52, + 0xfd, 0x10, 0x0, 0x0, 0xc, 0xf4, 0xa, 0xfa, + 0x10, 0x0, 0x9, 0xfd, 0x0, 0x1c, 0xfd, 0x86, + 0x7c, 0xff, 0x10, 0x0, 0x8, 0xdf, 0xff, 0xfa, + 0x20, 0x0, 0x0, 0x0, 0x4, 0x20, 0x0, 0x0, + + /* U+405 "Ѕ" */ + 0x0, 0x4, 0x77, 0x74, 0x0, 0x0, 0x3, 0xdf, + 0xff, 0xff, 0xd5, 0x0, 0x1e, 0xf8, 0x43, 0x48, + 0xfe, 0x20, 0x7f, 0x80, 0x0, 0x0, 0x7f, 0xa0, + 0x8f, 0x50, 0x0, 0x0, 0x1c, 0x90, 0x6f, 0xc2, + 0x0, 0x0, 0x0, 0x0, 0xc, 0xff, 0xc7, 0x30, + 0x0, 0x0, 0x0, 0x8e, 0xff, 0xff, 0x93, 0x0, + 0x0, 0x0, 0x37, 0xbf, 0xff, 0x60, 0x0, 0x0, + 0x0, 0x1, 0x8f, 0xe1, 0xb9, 0x0, 0x0, 0x0, + 0xa, 0xf4, 0xfe, 0x10, 0x0, 0x0, 0x9, 0xf4, + 0x8f, 0xa1, 0x0, 0x0, 0x3e, 0xe0, 0x1d, 0xfe, + 0x97, 0x7a, 0xff, 0x60, 0x1, 0x8e, 0xff, 0xff, + 0xc4, 0x0, 0x0, 0x0, 0x24, 0x41, 0x0, 0x0, + + /* U+406 "І" */ + 0x5, 0x32, 0xfc, 0x2f, 0xc2, 0xfc, 0x2f, 0xc2, + 0xfc, 0x2f, 0xc2, 0xfc, 0x2f, 0xc2, 0xfc, 0x2f, + 0xc2, 0xfc, 0x2f, 0xc2, 0xfc, 0x2f, 0xc0, + + /* U+407 "Ї" */ + 0x43, 0x1, 0x32, 0xff, 0x4, 0xf8, 0xcc, 0x3, + 0xc6, 0x1, 0x33, 0x0, 0x4, 0xfc, 0x0, 0x4, + 0xfc, 0x0, 0x4, 0xfc, 0x0, 0x4, 0xfc, 0x0, + 0x4, 0xfc, 0x0, 0x4, 0xfc, 0x0, 0x4, 0xfc, + 0x0, 0x4, 0xfc, 0x0, 0x4, 0xfc, 0x0, 0x4, + 0xfc, 0x0, 0x4, 0xfc, 0x0, 0x4, 0xfc, 0x0, + 0x4, 0xfc, 0x0, 0x4, 0xfc, 0x0, + + /* U+408 "Ј" */ + 0x0, 0x0, 0x0, 0x23, 0x20, 0x0, 0x0, 0x8, + 0xf8, 0x0, 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, + 0x8, 0xf8, 0x0, 0x0, 0x0, 0x8f, 0x80, 0x0, + 0x0, 0x8, 0xf8, 0x0, 0x0, 0x0, 0x8f, 0x80, + 0x0, 0x0, 0x8, 0xf8, 0x0, 0x0, 0x0, 0x8f, + 0x80, 0x0, 0x0, 0x8, 0xf8, 0x4, 0x10, 0x0, + 0x8f, 0x86, 0xf6, 0x0, 0x8, 0xf6, 0x4f, 0xa0, + 0x0, 0xcf, 0x30, 0xdf, 0xa7, 0xbf, 0xd0, 0x3, + 0xdf, 0xff, 0xc2, 0x0, 0x0, 0x14, 0x20, 0x0, + + /* U+409 "Љ" */ + 0x0, 0x23, 0x33, 0x33, 0x33, 0x32, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8, 0xff, 0xff, 0xff, 0xff, + 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xa4, + 0x44, 0x4a, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8, 0xf8, 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8f, 0x80, 0x0, 0x8, 0xf8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xf8, 0x0, + 0x0, 0x8f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8f, 0x80, 0x0, 0x8, 0xf9, 0x33, 0x33, 0x10, + 0x0, 0x0, 0x8, 0xf8, 0x0, 0x0, 0x8f, 0xff, + 0xff, 0xff, 0xe8, 0x10, 0x0, 0x8f, 0x80, 0x0, + 0x8, 0xfc, 0x88, 0x88, 0x9f, 0xfa, 0x0, 0x8, + 0xf8, 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, 0x2f, + 0xf2, 0x0, 0x8f, 0x80, 0x0, 0x8, 0xf8, 0x0, + 0x0, 0x0, 0xcf, 0x50, 0x8, 0xf7, 0x0, 0x0, + 0x8f, 0x80, 0x0, 0x0, 0xc, 0xf4, 0x0, 0xaf, + 0x40, 0x0, 0x8, 0xf8, 0x0, 0x0, 0x3, 0xff, + 0x15, 0x8f, 0xf1, 0x0, 0x0, 0x8f, 0xb7, 0x77, + 0x9b, 0xff, 0x70, 0xcf, 0xf6, 0x0, 0x0, 0x8, + 0xff, 0xff, 0xff, 0xfc, 0x50, 0x1, 0x42, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + + /* U+40A "Њ" */ + 0x23, 0x20, 0x0, 0x1, 0x32, 0x0, 0x0, 0x0, + 0x0, 0x8, 0xf8, 0x0, 0x0, 0x4f, 0x80, 0x0, + 0x0, 0x0, 0x0, 0x8f, 0x80, 0x0, 0x4, 0xf8, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xf8, 0x0, 0x0, + 0x4f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x8f, 0x80, + 0x0, 0x4, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x8, + 0xf8, 0x0, 0x0, 0x4f, 0x80, 0x0, 0x0, 0x0, + 0x0, 0x8f, 0x93, 0x33, 0x36, 0xf9, 0x33, 0x33, + 0x20, 0x0, 0x8, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xe9, 0x10, 0x8f, 0xc8, 0x88, 0x8a, + 0xfc, 0x88, 0x88, 0x9f, 0xfb, 0x8, 0xf8, 0x0, + 0x0, 0x4f, 0x80, 0x0, 0x0, 0x1f, 0xf3, 0x8f, + 0x80, 0x0, 0x4, 0xf8, 0x0, 0x0, 0x0, 0xaf, + 0x78, 0xf8, 0x0, 0x0, 0x4f, 0x80, 0x0, 0x0, + 0xb, 0xf6, 0x8f, 0x80, 0x0, 0x4, 0xf8, 0x0, + 0x0, 0x3, 0xef, 0x28, 0xf8, 0x0, 0x0, 0x4f, + 0xb7, 0x77, 0xab, 0xff, 0x90, 0x8f, 0x80, 0x0, + 0x4, 0xff, 0xff, 0xff, 0xfc, 0x60, 0x0, + + /* U+40B "Ћ" */ + 0x23, 0x33, 0x33, 0x33, 0x33, 0x33, 0x0, 0x0, + 0x8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, + 0x0, 0x24, 0x44, 0x4d, 0xf7, 0x44, 0x44, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xcf, 0x40, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xc, 0xf4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0x40, 0x0, + 0x10, 0x0, 0x0, 0x0, 0x0, 0xc, 0xf7, 0x9d, + 0xff, 0xfb, 0x40, 0x0, 0x0, 0x0, 0xcf, 0xff, + 0xc8, 0x8a, 0xff, 0x40, 0x0, 0x0, 0xc, 0xf7, + 0x0, 0x0, 0x6, 0xfc, 0x0, 0x0, 0x0, 0xcf, + 0x40, 0x0, 0x0, 0xf, 0xf0, 0x0, 0x0, 0xc, + 0xf4, 0x0, 0x0, 0x0, 0xcf, 0x20, 0x0, 0x0, + 0xcf, 0x40, 0x0, 0x0, 0xc, 0xf4, 0x0, 0x0, + 0xc, 0xf4, 0x0, 0x0, 0x0, 0xcf, 0x40, 0x0, + 0x0, 0xcf, 0x40, 0x0, 0x0, 0xc, 0xf4, 0x0, + 0x0, 0xc, 0xf4, 0x0, 0x0, 0x0, 0xcf, 0x40, + + /* U+40C "Ќ" */ + 0x0, 0x0, 0xc, 0xf6, 0x0, 0x0, 0x0, 0x4, + 0xfa, 0x0, 0x0, 0x0, 0x0, 0x8b, 0x0, 0x0, + 0x2, 0x32, 0x0, 0x0, 0x3, 0x32, 0x8f, 0x80, + 0x0, 0x1b, 0xff, 0x88, 0xf8, 0x0, 0xa, 0xfb, + 0x52, 0x8f, 0x80, 0x2, 0xfe, 0x0, 0x8, 0xf8, + 0x0, 0xaf, 0x60, 0x0, 0x8f, 0x80, 0x2f, 0xe0, + 0x0, 0x8, 0xf8, 0x3c, 0xf6, 0x0, 0x0, 0x8f, + 0xff, 0xf6, 0x0, 0x0, 0x8, 0xfa, 0x9f, 0xe3, + 0x0, 0x0, 0x8f, 0x80, 0x5f, 0xe2, 0x0, 0x8, + 0xf8, 0x0, 0x9f, 0xb0, 0x0, 0x8f, 0x80, 0x1, + 0xef, 0x70, 0x8, 0xf8, 0x0, 0x5, 0xfe, 0x10, + 0x8f, 0x80, 0x0, 0xb, 0xfa, 0x8, 0xf8, 0x0, + 0x0, 0x2f, 0xf4, + + /* U+40E "Ў" */ + 0x0, 0x0, 0xc3, 0x0, 0x87, 0x0, 0x0, 0x0, + 0xa, 0xd7, 0x8f, 0x50, 0x0, 0x0, 0x0, 0x18, + 0xcc, 0x50, 0x0, 0x3, 0x30, 0x0, 0x0, 0x0, + 0x1, 0x32, 0x8f, 0x80, 0x0, 0x0, 0x0, 0xaf, + 0x40, 0xee, 0x10, 0x0, 0x0, 0x2f, 0xc0, 0x6, + 0xf8, 0x0, 0x0, 0x9, 0xf4, 0x0, 0xc, 0xe1, + 0x0, 0x1, 0xec, 0x0, 0x0, 0x4f, 0xa0, 0x0, + 0x8f, 0x60, 0x0, 0x0, 0xcf, 0x20, 0xf, 0xe0, + 0x0, 0x0, 0x2, 0xfa, 0x6, 0xf6, 0x0, 0x0, + 0x0, 0xa, 0xf2, 0xee, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xef, 0x60, 0x0, 0x0, 0x0, 0x0, 0x8f, + 0xe0, 0x0, 0x0, 0x0, 0x0, 0x5, 0xf6, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xce, 0x0, 0x0, 0x0, + 0x0, 0x95, 0xaf, 0x50, 0x0, 0x0, 0x0, 0xf, + 0xff, 0x90, 0x0, 0x0, 0x0, 0x0, 0x4, 0x10, + 0x0, 0x0, 0x0, 0x0, + + /* U+40F "Џ" */ + 0x23, 0x20, 0x0, 0x0, 0x0, 0x43, 0x8f, 0x80, + 0x0, 0x0, 0x0, 0xfc, 0x8f, 0x80, 0x0, 0x0, + 0x0, 0xfc, 0x8f, 0x80, 0x0, 0x0, 0x0, 0xfc, + 0x8f, 0x80, 0x0, 0x0, 0x0, 0xfc, 0x8f, 0x80, + 0x0, 0x0, 0x0, 0xfc, 0x8f, 0x80, 0x0, 0x0, + 0x0, 0xfc, 0x8f, 0x80, 0x0, 0x0, 0x0, 0xfc, + 0x8f, 0x80, 0x0, 0x0, 0x0, 0xfc, 0x8f, 0x80, + 0x0, 0x0, 0x0, 0xfc, 0x8f, 0x80, 0x0, 0x0, + 0x0, 0xfc, 0x8f, 0x80, 0x0, 0x0, 0x0, 0xfc, + 0x8f, 0x80, 0x0, 0x0, 0x0, 0xfc, 0x8f, 0xdb, + 0xbb, 0xbb, 0xbb, 0xfc, 0x8f, 0xff, 0xff, 0xff, + 0xff, 0xfc, 0x0, 0x0, 0xc, 0xf0, 0x0, 0x0, + 0x0, 0x0, 0xc, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0xc, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xf0, + 0x0, 0x0, + + /* U+410 "А" */ + 0x0, 0x0, 0x2, 0x32, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xe, 0xfd, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x3f, 0xdf, 0x40, 0x0, 0x0, 0x0, 0x0, 0xaf, + 0x4f, 0xa0, 0x0, 0x0, 0x0, 0x1, 0xed, 0xd, + 0xf1, 0x0, 0x0, 0x0, 0x6, 0xf7, 0x6, 0xf8, + 0x0, 0x0, 0x0, 0xc, 0xf2, 0x1, 0xfd, 0x0, + 0x0, 0x0, 0x2f, 0xb0, 0x0, 0xaf, 0x50, 0x0, + 0x0, 0x9f, 0x60, 0x0, 0x5f, 0xb0, 0x0, 0x0, + 0xef, 0xff, 0xff, 0xff, 0xf2, 0x0, 0x5, 0xfe, + 0xcc, 0xcc, 0xce, 0xf8, 0x0, 0xb, 0xf4, 0x0, + 0x0, 0x2, 0xfe, 0x0, 0x1f, 0xe0, 0x0, 0x0, + 0x0, 0xcf, 0x60, 0x7f, 0x90, 0x0, 0x0, 0x0, + 0x6f, 0xb0, 0xef, 0x20, 0x0, 0x0, 0x0, 0x1f, + 0xf2, + + /* U+411 "Б" */ + 0x13, 0x33, 0x33, 0x33, 0x33, 0x0, 0x4f, 0xff, + 0xff, 0xff, 0xff, 0x0, 0x4f, 0xa4, 0x44, 0x44, + 0x44, 0x0, 0x4f, 0x80, 0x0, 0x0, 0x0, 0x0, + 0x4f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x4f, 0x80, + 0x0, 0x0, 0x0, 0x0, 0x4f, 0x93, 0x33, 0x33, + 0x0, 0x0, 0x4f, 0xff, 0xff, 0xff, 0xe9, 0x10, + 0x4f, 0xc8, 0x88, 0x89, 0xff, 0xa0, 0x4f, 0x80, + 0x0, 0x0, 0x1f, 0xf3, 0x4f, 0x80, 0x0, 0x0, + 0xc, 0xf6, 0x4f, 0x80, 0x0, 0x0, 0xc, 0xf5, + 0x4f, 0x80, 0x0, 0x0, 0x3f, 0xf1, 0x4f, 0xb7, + 0x77, 0x9c, 0xff, 0x80, 0x4f, 0xff, 0xff, 0xff, + 0xb5, 0x0, + + /* U+412 "В" */ + 0x23, 0x33, 0x33, 0x32, 0x0, 0x0, 0x8f, 0xff, + 0xff, 0xff, 0xd3, 0x0, 0x8f, 0x74, 0x47, 0x8a, + 0xfe, 0x10, 0x8f, 0x40, 0x0, 0x0, 0x9f, 0x70, + 0x8f, 0x40, 0x0, 0x0, 0x4f, 0x80, 0x8f, 0x40, + 0x0, 0x0, 0x8f, 0x60, 0x8f, 0x63, 0x33, 0x49, + 0xfa, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xd3, 0x0, + 0x8f, 0xa8, 0x88, 0x89, 0xff, 0x60, 0x8f, 0x40, + 0x0, 0x0, 0x3f, 0xe1, 0x8f, 0x40, 0x0, 0x0, + 0xc, 0xf4, 0x8f, 0x40, 0x0, 0x0, 0xd, 0xf4, + 0x8f, 0x40, 0x0, 0x0, 0x6f, 0xf0, 0x8f, 0xcb, + 0xbb, 0xbc, 0xff, 0x50, 0x8f, 0xff, 0xff, 0xfe, + 0xa4, 0x0, + + /* U+413 "Г" */ + 0x23, 0x33, 0x33, 0x33, 0x33, 0x8f, 0xff, 0xff, + 0xff, 0xfc, 0x8f, 0xa4, 0x44, 0x44, 0x43, 0x8f, + 0x80, 0x0, 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, + 0x0, 0x8f, 0x80, 0x0, 0x0, 0x0, 0x8f, 0x80, + 0x0, 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, 0x0, + 0x8f, 0x80, 0x0, 0x0, 0x0, 0x8f, 0x80, 0x0, + 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, 0x0, 0x8f, + 0x80, 0x0, 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, + 0x0, 0x8f, 0x80, 0x0, 0x0, 0x0, 0x8f, 0x80, + 0x0, 0x0, 0x0, + + /* U+414 "Д" */ + 0x0, 0x13, 0x33, 0x33, 0x33, 0x32, 0x0, 0x4, + 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x4f, 0xd4, + 0x44, 0x47, 0xf8, 0x0, 0x4, 0xfc, 0x0, 0x0, + 0x4f, 0x80, 0x0, 0x4f, 0x90, 0x0, 0x4, 0xf8, + 0x0, 0x4, 0xf8, 0x0, 0x0, 0x4f, 0x80, 0x0, + 0x4f, 0x80, 0x0, 0x4, 0xf8, 0x0, 0x7, 0xf7, + 0x0, 0x0, 0x4f, 0x80, 0x0, 0x8f, 0x40, 0x0, + 0x4, 0xf8, 0x0, 0xa, 0xf1, 0x0, 0x0, 0x4f, + 0x80, 0x0, 0xef, 0x0, 0x0, 0x4, 0xf8, 0x0, + 0x1f, 0xb0, 0x0, 0x0, 0x4f, 0x80, 0x8, 0xf5, + 0x0, 0x0, 0x4, 0xf8, 0xc, 0xef, 0xbb, 0xbb, + 0xbb, 0xcf, 0xd9, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xcf, 0xc0, 0x0, 0x0, 0x0, 0x0, 0xcc, + 0xfc, 0x0, 0x0, 0x0, 0x0, 0xc, 0xcf, 0xc0, + 0x0, 0x0, 0x0, 0x0, 0xcc, 0x43, 0x0, 0x0, + 0x0, 0x0, 0x3, 0x30, + + /* U+415 "Е" */ + 0x23, 0x33, 0x33, 0x33, 0x33, 0x30, 0x8f, 0xff, + 0xff, 0xff, 0xff, 0xf0, 0x8f, 0xa4, 0x44, 0x44, + 0x44, 0x40, 0x8f, 0x80, 0x0, 0x0, 0x0, 0x0, + 0x8f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x8f, 0x80, + 0x0, 0x0, 0x0, 0x0, 0x8f, 0x93, 0x33, 0x33, + 0x33, 0x20, 0x8f, 0xff, 0xff, 0xff, 0xff, 0x80, + 0x8f, 0xc8, 0x88, 0x88, 0x88, 0x40, 0x8f, 0x80, + 0x0, 0x0, 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, + 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, 0x0, 0x0, + 0x8f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x8f, 0xdb, + 0xbb, 0xbb, 0xbb, 0xb3, 0x8f, 0xff, 0xff, 0xff, + 0xff, 0xf4, + + /* U+416 "Ж" */ + 0x33, 0x20, 0x0, 0x0, 0x33, 0x10, 0x0, 0x0, + 0x43, 0x1c, 0xff, 0x70, 0x0, 0xc, 0xf4, 0x0, + 0x3, 0xdf, 0xf4, 0x36, 0xdf, 0x40, 0x0, 0xcf, + 0x40, 0x0, 0xdf, 0x94, 0x10, 0x4, 0xfb, 0x0, + 0xc, 0xf4, 0x0, 0x5f, 0xb0, 0x0, 0x0, 0xc, + 0xf4, 0x0, 0xcf, 0x40, 0xc, 0xf2, 0x0, 0x0, + 0x0, 0x4f, 0xb0, 0xc, 0xf4, 0x4, 0xfc, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0x72, 0xcf, 0x45, 0xdf, + 0x30, 0x0, 0x0, 0x0, 0x1, 0xaf, 0xff, 0xff, + 0xfe, 0x30, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xe7, + 0xdf, 0x8a, 0xfc, 0x30, 0x0, 0x0, 0x0, 0x6f, + 0xd1, 0xc, 0xf4, 0x8, 0xfc, 0x10, 0x0, 0x0, + 0x3f, 0xf3, 0x0, 0xcf, 0x40, 0xc, 0xf9, 0x0, + 0x0, 0xc, 0xf9, 0x0, 0xc, 0xf4, 0x0, 0x2f, + 0xf4, 0x0, 0x6, 0xff, 0x10, 0x0, 0xcf, 0x40, + 0x0, 0x8f, 0xc0, 0x1, 0xef, 0x50, 0x0, 0xc, + 0xf4, 0x0, 0x0, 0xef, 0x80, 0xaf, 0xc0, 0x0, + 0x0, 0xcf, 0x40, 0x0, 0x4, 0xfe, 0x20, + + /* U+417 "З" */ + 0x0, 0x1, 0x47, 0x74, 0x10, 0x0, 0x0, 0x5d, + 0xff, 0xff, 0xd4, 0x0, 0x2, 0xef, 0x83, 0x38, + 0xfe, 0x10, 0x9, 0xf7, 0x0, 0x0, 0x9f, 0x70, + 0xe, 0xf0, 0x0, 0x0, 0x4f, 0x80, 0x2, 0x30, + 0x0, 0x0, 0xaf, 0x50, 0x0, 0x0, 0x4, 0x4a, + 0xfa, 0x0, 0x0, 0x0, 0xf, 0xff, 0xe3, 0x0, + 0x0, 0x0, 0x8, 0x8b, 0xff, 0x60, 0x0, 0x0, + 0x0, 0x0, 0x5f, 0xe0, 0x4, 0x50, 0x0, 0x0, + 0xd, 0xf4, 0x1f, 0xe1, 0x0, 0x0, 0xd, 0xf2, + 0xa, 0xf9, 0x0, 0x0, 0x6f, 0xf0, 0x1, 0xdf, + 0xc7, 0x79, 0xff, 0x30, 0x0, 0x1a, 0xff, 0xff, + 0xc3, 0x0, 0x0, 0x0, 0x3, 0x30, 0x0, 0x0, + + /* U+418 "И" */ + 0x23, 0x10, 0x0, 0x0, 0x1, 0x33, 0x8f, 0x40, + 0x0, 0x0, 0xb, 0xfc, 0x8f, 0x40, 0x0, 0x0, + 0x5f, 0xfc, 0x8f, 0x40, 0x0, 0x1, 0xef, 0xfc, + 0x8f, 0x40, 0x0, 0xb, 0xf9, 0xfc, 0x8f, 0x40, + 0x0, 0x5f, 0xd1, 0xfc, 0x8f, 0x40, 0x1, 0xef, + 0x30, 0xfc, 0x8f, 0x40, 0xb, 0xf8, 0x0, 0xfc, + 0x8f, 0x40, 0x5f, 0xd0, 0x0, 0xfc, 0x8f, 0x41, + 0xef, 0x30, 0x0, 0xfc, 0x8f, 0x4b, 0xf8, 0x0, + 0x0, 0xfc, 0x8f, 0x9f, 0xd0, 0x0, 0x0, 0xfc, + 0x8f, 0xff, 0x30, 0x0, 0x0, 0xfc, 0x8f, 0xf8, + 0x0, 0x0, 0x0, 0xfc, 0x8f, 0xd0, 0x0, 0x0, + 0x0, 0xfc, + + /* U+419 "Й" */ + 0x0, 0x9, 0x50, 0x5, 0x90, 0x0, 0x0, 0x8, + 0xe7, 0x7e, 0x80, 0x0, 0x0, 0x0, 0x7c, 0xc7, + 0x0, 0x0, 0x23, 0x10, 0x0, 0x0, 0x1, 0x33, + 0x8f, 0x40, 0x0, 0x0, 0xb, 0xfc, 0x8f, 0x40, + 0x0, 0x0, 0x5f, 0xfc, 0x8f, 0x40, 0x0, 0x1, + 0xef, 0xfc, 0x8f, 0x40, 0x0, 0xb, 0xf9, 0xfc, + 0x8f, 0x40, 0x0, 0x5f, 0xd1, 0xfc, 0x8f, 0x40, + 0x1, 0xef, 0x30, 0xfc, 0x8f, 0x40, 0xb, 0xf8, + 0x0, 0xfc, 0x8f, 0x40, 0x5f, 0xd0, 0x0, 0xfc, + 0x8f, 0x41, 0xef, 0x30, 0x0, 0xfc, 0x8f, 0x4b, + 0xf8, 0x0, 0x0, 0xfc, 0x8f, 0x9f, 0xd0, 0x0, + 0x0, 0xfc, 0x8f, 0xff, 0x30, 0x0, 0x0, 0xfc, + 0x8f, 0xf8, 0x0, 0x0, 0x0, 0xfc, 0x8f, 0xd0, + 0x0, 0x0, 0x0, 0xfc, + + /* U+41A "К" */ + 0x23, 0x20, 0x0, 0x0, 0x33, 0x28, 0xf8, 0x0, + 0x1, 0xbf, 0xf8, 0x8f, 0x80, 0x0, 0xaf, 0xb5, + 0x28, 0xf8, 0x0, 0x2f, 0xe0, 0x0, 0x8f, 0x80, + 0xa, 0xf6, 0x0, 0x8, 0xf8, 0x2, 0xfe, 0x0, + 0x0, 0x8f, 0x83, 0xcf, 0x60, 0x0, 0x8, 0xff, + 0xff, 0x60, 0x0, 0x0, 0x8f, 0xa9, 0xfe, 0x30, + 0x0, 0x8, 0xf8, 0x5, 0xfe, 0x20, 0x0, 0x8f, + 0x80, 0x9, 0xfb, 0x0, 0x8, 0xf8, 0x0, 0x1e, + 0xf7, 0x0, 0x8f, 0x80, 0x0, 0x5f, 0xe1, 0x8, + 0xf8, 0x0, 0x0, 0xbf, 0xa0, 0x8f, 0x80, 0x0, + 0x2, 0xff, 0x40, + + /* U+41B "Л" */ + 0x0, 0x23, 0x33, 0x33, 0x33, 0x32, 0x0, 0x8f, + 0xff, 0xff, 0xff, 0xf8, 0x0, 0x8f, 0xa4, 0x44, + 0x47, 0xf8, 0x0, 0x8f, 0x80, 0x0, 0x4, 0xf8, + 0x0, 0x8f, 0x80, 0x0, 0x4, 0xf8, 0x0, 0x8f, + 0x80, 0x0, 0x4, 0xf8, 0x0, 0x8f, 0x80, 0x0, + 0x4, 0xf8, 0x0, 0x8f, 0x80, 0x0, 0x4, 0xf8, + 0x0, 0x8f, 0x80, 0x0, 0x4, 0xf8, 0x0, 0x8f, + 0x80, 0x0, 0x4, 0xf8, 0x0, 0x8f, 0x80, 0x0, + 0x4, 0xf8, 0x0, 0x8f, 0x80, 0x0, 0x4, 0xf8, + 0x0, 0x9f, 0x40, 0x0, 0x4, 0xf8, 0x57, 0xef, + 0x20, 0x0, 0x4, 0xf8, 0xcf, 0xf7, 0x0, 0x0, + 0x4, 0xf8, 0x14, 0x20, 0x0, 0x0, 0x0, 0x0, + + /* U+41C "М" */ + 0x23, 0x32, 0x0, 0x0, 0x0, 0x2, 0x33, 0x18, + 0xff, 0xa0, 0x0, 0x0, 0x0, 0xbf, 0xf4, 0x8f, + 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x48, 0xfb, + 0xf5, 0x0, 0x0, 0x6, 0xfe, 0xf4, 0x8f, 0x6f, + 0xa0, 0x0, 0x0, 0xbd, 0xcf, 0x48, 0xf4, 0xde, + 0x0, 0x0, 0x1f, 0x7c, 0xf4, 0x8f, 0x47, 0xf5, + 0x0, 0x6, 0xf2, 0xcf, 0x48, 0xf4, 0x2f, 0xa0, + 0x0, 0xcd, 0xc, 0xf4, 0x8f, 0x40, 0xde, 0x0, + 0x2f, 0x60, 0xcf, 0x48, 0xf4, 0x7, 0xf5, 0x7, + 0xf1, 0xc, 0xf4, 0x8f, 0x40, 0x1f, 0xa0, 0xdb, + 0x0, 0xcf, 0x48, 0xf4, 0x0, 0xbe, 0x2f, 0x60, + 0xc, 0xf4, 0x8f, 0x40, 0x6, 0xfc, 0xf1, 0x0, + 0xcf, 0x48, 0xf4, 0x0, 0x1f, 0xfb, 0x0, 0xc, + 0xf4, 0x8f, 0x40, 0x0, 0xbf, 0x60, 0x0, 0xcf, + 0x40, + + /* U+41D "Н" */ + 0x23, 0x20, 0x0, 0x0, 0x0, 0x43, 0x8f, 0x80, + 0x0, 0x0, 0x0, 0xfc, 0x8f, 0x80, 0x0, 0x0, + 0x0, 0xfc, 0x8f, 0x80, 0x0, 0x0, 0x0, 0xfc, + 0x8f, 0x80, 0x0, 0x0, 0x0, 0xfc, 0x8f, 0x80, + 0x0, 0x0, 0x0, 0xfc, 0x8f, 0xb7, 0x77, 0x77, + 0x77, 0xfc, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xfc, + 0x8f, 0xa4, 0x44, 0x44, 0x44, 0xfc, 0x8f, 0x80, + 0x0, 0x0, 0x0, 0xfc, 0x8f, 0x80, 0x0, 0x0, + 0x0, 0xfc, 0x8f, 0x80, 0x0, 0x0, 0x0, 0xfc, + 0x8f, 0x80, 0x0, 0x0, 0x0, 0xfc, 0x8f, 0x80, + 0x0, 0x0, 0x0, 0xfc, 0x8f, 0x80, 0x0, 0x0, + 0x0, 0xfc, + + /* U+41E "О" */ + 0x0, 0x0, 0x24, 0x77, 0x51, 0x0, 0x0, 0x0, + 0x1a, 0xff, 0xff, 0xfe, 0x80, 0x0, 0x3, 0xef, + 0xb4, 0x23, 0x6e, 0xfb, 0x0, 0xc, 0xf6, 0x0, + 0x0, 0x1, 0xdf, 0x80, 0x6f, 0xc0, 0x0, 0x0, + 0x0, 0x2f, 0xe0, 0xbf, 0x40, 0x0, 0x0, 0x0, + 0xb, 0xf5, 0xcf, 0x20, 0x0, 0x0, 0x0, 0x8, + 0xf8, 0xff, 0x0, 0x0, 0x0, 0x0, 0x4, 0xfa, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x6, 0xf9, 0xef, + 0x20, 0x0, 0x0, 0x0, 0x8, 0xf8, 0xaf, 0x60, + 0x0, 0x0, 0x0, 0xc, 0xf3, 0x4f, 0xd1, 0x0, + 0x0, 0x0, 0x5f, 0xe0, 0x9, 0xfb, 0x10, 0x0, + 0x5, 0xef, 0x40, 0x1, 0xbf, 0xe9, 0x77, 0xbf, + 0xf6, 0x0, 0x0, 0x6, 0xef, 0xff, 0xfa, 0x30, + 0x0, 0x0, 0x0, 0x0, 0x43, 0x0, 0x0, 0x0, + + /* U+41F "П" */ + 0x23, 0x33, 0x33, 0x33, 0x33, 0x33, 0x8f, 0xff, + 0xff, 0xff, 0xff, 0xfc, 0x8f, 0xa4, 0x44, 0x44, + 0x44, 0xfc, 0x8f, 0x80, 0x0, 0x0, 0x0, 0xfc, + 0x8f, 0x80, 0x0, 0x0, 0x0, 0xfc, 0x8f, 0x80, + 0x0, 0x0, 0x0, 0xfc, 0x8f, 0x80, 0x0, 0x0, + 0x0, 0xfc, 0x8f, 0x80, 0x0, 0x0, 0x0, 0xfc, + 0x8f, 0x80, 0x0, 0x0, 0x0, 0xfc, 0x8f, 0x80, + 0x0, 0x0, 0x0, 0xfc, 0x8f, 0x80, 0x0, 0x0, + 0x0, 0xfc, 0x8f, 0x80, 0x0, 0x0, 0x0, 0xfc, + 0x8f, 0x80, 0x0, 0x0, 0x0, 0xfc, 0x8f, 0x80, + 0x0, 0x0, 0x0, 0xfc, 0x8f, 0x80, 0x0, 0x0, + 0x0, 0xfc, + + /* U+420 "Р" */ + 0x23, 0x33, 0x33, 0x33, 0x10, 0x0, 0x8f, 0xff, + 0xff, 0xff, 0xfb, 0x10, 0x8f, 0xa4, 0x44, 0x78, + 0xdf, 0xc0, 0x8f, 0x80, 0x0, 0x0, 0x1e, 0xf3, + 0x8f, 0x80, 0x0, 0x0, 0x8, 0xf8, 0x8f, 0x80, + 0x0, 0x0, 0x9, 0xf5, 0x8f, 0x80, 0x0, 0x0, + 0x3e, 0xf2, 0x8f, 0xb7, 0x77, 0x7a, 0xff, 0x90, + 0x8f, 0xff, 0xff, 0xff, 0xe6, 0x0, 0x8f, 0xa4, + 0x44, 0x20, 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, + 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, 0x0, 0x0, + 0x8f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x8f, 0x80, + 0x0, 0x0, 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, + 0x0, 0x0, + + /* U+421 "С" */ + 0x0, 0x0, 0x36, 0x77, 0x30, 0x0, 0x0, 0x3, + 0xbf, 0xff, 0xff, 0xd5, 0x0, 0x3, 0xef, 0xa4, + 0x13, 0x8f, 0xf5, 0x1, 0xdf, 0x60, 0x0, 0x0, + 0x4f, 0xd0, 0x6f, 0xa0, 0x0, 0x0, 0x0, 0xcd, + 0x3b, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0xef, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc, 0xf2, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x9f, 0x60, 0x0, 0x0, 0x0, 0x7c, 0x54, + 0xfc, 0x0, 0x0, 0x0, 0xd, 0xf4, 0xc, 0xf9, + 0x0, 0x0, 0xa, 0xfc, 0x0, 0x1d, 0xfd, 0x77, + 0x7d, 0xfe, 0x10, 0x0, 0x18, 0xff, 0xff, 0xf8, + 0x10, 0x0, 0x0, 0x0, 0x14, 0x20, 0x0, 0x0, + + /* U+422 "Т" */ + 0x23, 0x33, 0x33, 0x33, 0x33, 0x33, 0x8f, 0xff, + 0xff, 0xff, 0xff, 0xfc, 0x24, 0x44, 0x4d, 0xf4, + 0x44, 0x43, 0x0, 0x0, 0xc, 0xf0, 0x0, 0x0, + 0x0, 0x0, 0xc, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0xc, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xf0, + 0x0, 0x0, 0x0, 0x0, 0xc, 0xf0, 0x0, 0x0, + 0x0, 0x0, 0xc, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0xc, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xf0, + 0x0, 0x0, 0x0, 0x0, 0xc, 0xf0, 0x0, 0x0, + 0x0, 0x0, 0xc, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0xc, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xf0, + 0x0, 0x0, + + /* U+423 "У" */ + 0x33, 0x0, 0x0, 0x0, 0x0, 0x13, 0x28, 0xf8, + 0x0, 0x0, 0x0, 0xa, 0xf4, 0xe, 0xe1, 0x0, + 0x0, 0x2, 0xfc, 0x0, 0x6f, 0x80, 0x0, 0x0, + 0x9f, 0x40, 0x0, 0xce, 0x10, 0x0, 0x1e, 0xc0, + 0x0, 0x4, 0xfa, 0x0, 0x8, 0xf6, 0x0, 0x0, + 0xc, 0xf2, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x2f, + 0xa0, 0x6f, 0x60, 0x0, 0x0, 0x0, 0xaf, 0x2e, + 0xe0, 0x0, 0x0, 0x0, 0x1, 0xfe, 0xf6, 0x0, + 0x0, 0x0, 0x0, 0x8, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x5f, 0x60, 0x0, 0x0, 0x0, 0x0, + 0xc, 0xe0, 0x0, 0x0, 0x0, 0x9, 0x5a, 0xf5, + 0x0, 0x0, 0x0, 0x0, 0xff, 0xf9, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x41, 0x0, 0x0, 0x0, 0x0, + + /* U+424 "Ф" */ + 0x0, 0x0, 0x0, 0x27, 0x40, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4, 0xf8, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x35, 0x9f, 0xb6, 0x30, 0x0, 0x0, 0x2, + 0x9f, 0xff, 0xff, 0xff, 0xb3, 0x0, 0x1, 0xdf, + 0xb4, 0x5f, 0x84, 0x9f, 0xe3, 0x0, 0xaf, 0x90, + 0x4, 0xf8, 0x0, 0x5f, 0xc0, 0xf, 0xf0, 0x0, + 0x4f, 0x80, 0x0, 0xdf, 0x22, 0xfc, 0x0, 0x4, + 0xf8, 0x0, 0xa, 0xf5, 0x1f, 0xd0, 0x0, 0x4f, + 0x80, 0x0, 0xbf, 0x40, 0xef, 0x30, 0x4, 0xf8, + 0x0, 0x1e, 0xf1, 0x5, 0xfc, 0x20, 0x4f, 0x80, + 0x1b, 0xf8, 0x0, 0x8, 0xff, 0xb9, 0xfb, 0xae, + 0xfb, 0x0, 0x0, 0x3, 0xbf, 0xff, 0xff, 0xc5, + 0x0, 0x0, 0x0, 0x0, 0x5, 0xf9, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x4f, 0x80, 0x0, 0x0, + 0x0, + + /* U+425 "Х" */ + 0x4, 0x31, 0x0, 0x0, 0x0, 0x23, 0x30, 0xbf, + 0x90, 0x0, 0x0, 0x1c, 0xf3, 0x1, 0xff, 0x40, + 0x0, 0xa, 0xf7, 0x0, 0x4, 0xfe, 0x10, 0x6, + 0xfc, 0x0, 0x0, 0x9, 0xfa, 0x3, 0xef, 0x10, + 0x0, 0x0, 0xd, 0xf5, 0xdf, 0x40, 0x0, 0x0, + 0x0, 0x3f, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, + 0xaf, 0xe0, 0x0, 0x0, 0x0, 0x0, 0x2e, 0xff, + 0x90, 0x0, 0x0, 0x0, 0xd, 0xf5, 0xff, 0x40, + 0x0, 0x0, 0x9, 0xf9, 0x5, 0xfe, 0x10, 0x0, + 0x5, 0xfd, 0x10, 0x9, 0xfa, 0x0, 0x2, 0xef, + 0x30, 0x0, 0x1e, 0xf7, 0x0, 0xdf, 0x70, 0x0, + 0x0, 0x3f, 0xe3, 0x9f, 0xc0, 0x0, 0x0, 0x0, + 0x8f, 0xc0, + + /* U+426 "Ц" */ + 0x23, 0x20, 0x0, 0x0, 0x0, 0x43, 0x8, 0xf8, + 0x0, 0x0, 0x0, 0xf, 0xc0, 0x8f, 0x80, 0x0, + 0x0, 0x0, 0xfc, 0x8, 0xf8, 0x0, 0x0, 0x0, + 0xf, 0xc0, 0x8f, 0x80, 0x0, 0x0, 0x0, 0xfc, + 0x8, 0xf8, 0x0, 0x0, 0x0, 0xf, 0xc0, 0x8f, + 0x80, 0x0, 0x0, 0x0, 0xfc, 0x8, 0xf8, 0x0, + 0x0, 0x0, 0xf, 0xc0, 0x8f, 0x80, 0x0, 0x0, + 0x0, 0xfc, 0x8, 0xf8, 0x0, 0x0, 0x0, 0xf, + 0xc0, 0x8f, 0x80, 0x0, 0x0, 0x0, 0xfc, 0x8, + 0xf8, 0x0, 0x0, 0x0, 0xf, 0xc0, 0x8f, 0x80, + 0x0, 0x0, 0x0, 0xfc, 0x8, 0xfd, 0xbb, 0xbb, + 0xbb, 0xbf, 0xeb, 0x8f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8f, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x8, 0xf0, + + /* U+427 "Ч" */ + 0x13, 0x30, 0x0, 0x0, 0x1, 0x33, 0x4f, 0xc0, + 0x0, 0x0, 0x4, 0xfc, 0x4f, 0xc0, 0x0, 0x0, + 0x4, 0xfc, 0x4f, 0xc0, 0x0, 0x0, 0x4, 0xfc, + 0x4f, 0xc0, 0x0, 0x0, 0x4, 0xfc, 0x2f, 0xc0, + 0x0, 0x0, 0x4, 0xfc, 0xf, 0xf0, 0x0, 0x0, + 0x4, 0xfc, 0xd, 0xf7, 0x0, 0x0, 0x7, 0xfc, + 0x5, 0xff, 0xb7, 0x7a, 0xef, 0xfc, 0x0, 0x4d, + 0xff, 0xff, 0xa8, 0xfc, 0x0, 0x0, 0x3, 0x0, + 0x4, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x4, 0xfc, + 0x0, 0x0, 0x0, 0x0, 0x4, 0xfc, 0x0, 0x0, + 0x0, 0x0, 0x4, 0xfc, 0x0, 0x0, 0x0, 0x0, + 0x4, 0xfc, + + /* U+428 "Ш" */ + 0x23, 0x20, 0x0, 0x3, 0x30, 0x0, 0x1, 0x33, + 0x8f, 0x80, 0x0, 0xc, 0xf0, 0x0, 0x4, 0xfc, + 0x8f, 0x80, 0x0, 0xc, 0xf0, 0x0, 0x4, 0xfc, + 0x8f, 0x80, 0x0, 0xc, 0xf0, 0x0, 0x4, 0xfc, + 0x8f, 0x80, 0x0, 0xc, 0xf0, 0x0, 0x4, 0xfc, + 0x8f, 0x80, 0x0, 0xc, 0xf0, 0x0, 0x4, 0xfc, + 0x8f, 0x80, 0x0, 0xc, 0xf0, 0x0, 0x4, 0xfc, + 0x8f, 0x80, 0x0, 0xc, 0xf0, 0x0, 0x4, 0xfc, + 0x8f, 0x80, 0x0, 0xc, 0xf0, 0x0, 0x4, 0xfc, + 0x8f, 0x80, 0x0, 0xc, 0xf0, 0x0, 0x4, 0xfc, + 0x8f, 0x80, 0x0, 0xc, 0xf0, 0x0, 0x4, 0xfc, + 0x8f, 0x80, 0x0, 0xc, 0xf0, 0x0, 0x4, 0xfc, + 0x8f, 0x80, 0x0, 0xc, 0xf0, 0x0, 0x4, 0xfc, + 0x8f, 0xdb, 0xbb, 0xbe, 0xfb, 0xbb, 0xbc, 0xfc, + 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, + + /* U+429 "Щ" */ + 0x23, 0x20, 0x0, 0x3, 0x30, 0x0, 0x1, 0x33, + 0x8, 0xf8, 0x0, 0x0, 0xcf, 0x0, 0x0, 0x4f, + 0xc0, 0x8f, 0x80, 0x0, 0xc, 0xf0, 0x0, 0x4, + 0xfc, 0x8, 0xf8, 0x0, 0x0, 0xcf, 0x0, 0x0, + 0x4f, 0xc0, 0x8f, 0x80, 0x0, 0xc, 0xf0, 0x0, + 0x4, 0xfc, 0x8, 0xf8, 0x0, 0x0, 0xcf, 0x0, + 0x0, 0x4f, 0xc0, 0x8f, 0x80, 0x0, 0xc, 0xf0, + 0x0, 0x4, 0xfc, 0x8, 0xf8, 0x0, 0x0, 0xcf, + 0x0, 0x0, 0x4f, 0xc0, 0x8f, 0x80, 0x0, 0xc, + 0xf0, 0x0, 0x4, 0xfc, 0x8, 0xf8, 0x0, 0x0, + 0xcf, 0x0, 0x0, 0x4f, 0xc0, 0x8f, 0x80, 0x0, + 0xc, 0xf0, 0x0, 0x4, 0xfc, 0x8, 0xf8, 0x0, + 0x0, 0xcf, 0x0, 0x0, 0x4f, 0xc0, 0x8f, 0x80, + 0x0, 0xc, 0xf0, 0x0, 0x4, 0xfc, 0x8, 0xfd, + 0xbb, 0xbb, 0xef, 0xbb, 0xbb, 0xcf, 0xeb, 0x8f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x8, 0xf0, + + /* U+42A "Ъ" */ + 0x43, 0x33, 0x33, 0x10, 0x0, 0x0, 0x0, 0x0, + 0xff, 0xff, 0xff, 0x40, 0x0, 0x0, 0x0, 0x0, + 0x44, 0x44, 0xdf, 0x40, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xcf, 0x40, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xcf, 0x40, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xcf, 0x40, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xcf, 0x63, 0x33, 0x10, 0x0, 0x0, + 0x0, 0x0, 0xcf, 0xff, 0xff, 0xff, 0xd4, 0x0, + 0x0, 0x0, 0xcf, 0xa8, 0x88, 0x8a, 0xff, 0x60, + 0x0, 0x0, 0xcf, 0x40, 0x0, 0x0, 0x6f, 0xe0, + 0x0, 0x0, 0xcf, 0x40, 0x0, 0x0, 0xf, 0xf1, + 0x0, 0x0, 0xcf, 0x40, 0x0, 0x0, 0xf, 0xf0, + 0x0, 0x0, 0xcf, 0x40, 0x0, 0x0, 0x9f, 0xc0, + 0x0, 0x0, 0xcf, 0x97, 0x78, 0xbd, 0xff, 0x30, + 0x0, 0x0, 0xcf, 0xff, 0xff, 0xfc, 0xa1, 0x0, + + /* U+42B "Ы" */ + 0x13, 0x20, 0x0, 0x0, 0x0, 0x0, 0x3, 0x34, + 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0x4f, + 0x80, 0x0, 0x0, 0x0, 0x0, 0xc, 0xf4, 0xf8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0x4f, 0x80, + 0x0, 0x0, 0x0, 0x0, 0xc, 0xf4, 0xf8, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xcf, 0x4f, 0x93, 0x33, + 0x30, 0x0, 0x0, 0xc, 0xf4, 0xff, 0xff, 0xff, + 0xfe, 0x70, 0x0, 0xcf, 0x4f, 0xc8, 0x88, 0x89, + 0xff, 0xa0, 0xc, 0xf4, 0xf8, 0x0, 0x0, 0x1, + 0xff, 0x30, 0xcf, 0x4f, 0x80, 0x0, 0x0, 0xb, + 0xf6, 0xc, 0xf4, 0xf8, 0x0, 0x0, 0x0, 0xcf, + 0x50, 0xcf, 0x4f, 0x80, 0x0, 0x0, 0x3f, 0xf2, + 0xc, 0xf4, 0xfb, 0x77, 0x7b, 0xcf, 0xf7, 0x0, + 0xcf, 0x4f, 0xff, 0xff, 0xfc, 0xb4, 0x0, 0xc, + 0xf0, + + /* U+42C "Ь" */ + 0x23, 0x20, 0x0, 0x0, 0x0, 0x0, 0x8f, 0x80, + 0x0, 0x0, 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, + 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, 0x0, 0x0, + 0x8f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x8f, 0x80, + 0x0, 0x0, 0x0, 0x0, 0x8f, 0x93, 0x33, 0x30, + 0x0, 0x0, 0x8f, 0xff, 0xff, 0xff, 0xe8, 0x0, + 0x8f, 0xc8, 0x88, 0x89, 0xff, 0xa0, 0x8f, 0x80, + 0x0, 0x0, 0x2f, 0xf2, 0x8f, 0x80, 0x0, 0x0, + 0xc, 0xf6, 0x8f, 0x80, 0x0, 0x0, 0xc, 0xf4, + 0x8f, 0x80, 0x0, 0x0, 0x5f, 0xf1, 0x8f, 0xb7, + 0x77, 0xbc, 0xff, 0x60, 0x8f, 0xff, 0xff, 0xfc, + 0xb3, 0x0, + + /* U+42D "Э" */ + 0x0, 0x0, 0x36, 0x77, 0x30, 0x0, 0x0, 0x0, + 0x3b, 0xff, 0xff, 0xfd, 0x50, 0x0, 0x1, 0xdf, + 0xa4, 0x34, 0x8f, 0xf6, 0x0, 0xa, 0xfa, 0x0, + 0x0, 0x2, 0xff, 0x30, 0xc, 0xf1, 0x0, 0x0, + 0x0, 0x6f, 0xb0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf, 0xf0, 0x0, 0x0, 0x0, 0x43, 0x33, 0x3d, + 0xf4, 0x0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xf4, + 0x0, 0x0, 0x0, 0x88, 0x88, 0x8e, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xe, 0xf0, 0x2a, 0xa0, + 0x0, 0x0, 0x0, 0x1f, 0xf0, 0xe, 0xf2, 0x0, + 0x0, 0x0, 0x9f, 0x80, 0x7, 0xfc, 0x10, 0x0, + 0x6, 0xff, 0x10, 0x0, 0xaf, 0xe8, 0x67, 0xbf, + 0xf4, 0x0, 0x0, 0x6, 0xef, 0xff, 0xfb, 0x20, + 0x0, 0x0, 0x0, 0x1, 0x41, 0x0, 0x0, 0x0, + + /* U+42E "Ю" */ + 0x23, 0x20, 0x0, 0x0, 0x3, 0x47, 0x63, 0x0, + 0x0, 0x8, 0xf8, 0x0, 0x0, 0x18, 0xff, 0xff, + 0xfd, 0x30, 0x0, 0x8f, 0x80, 0x0, 0x1c, 0xfb, + 0x41, 0x38, 0xff, 0x50, 0x8, 0xf8, 0x0, 0x9, + 0xf9, 0x0, 0x0, 0x3, 0xfe, 0x10, 0x8f, 0x80, + 0x3, 0xfe, 0x0, 0x0, 0x0, 0x8, 0xf9, 0x8, + 0xf8, 0x0, 0x6f, 0x80, 0x0, 0x0, 0x0, 0x1f, + 0xc0, 0x8f, 0x80, 0xa, 0xf4, 0x0, 0x0, 0x0, + 0x0, 0xff, 0x8, 0xff, 0xff, 0xff, 0x40, 0x0, + 0x0, 0x0, 0xc, 0xf3, 0x8f, 0xec, 0xcf, 0xf4, + 0x0, 0x0, 0x0, 0x0, 0xdf, 0x18, 0xf8, 0x0, + 0x9f, 0x50, 0x0, 0x0, 0x0, 0xf, 0xf0, 0x8f, + 0x80, 0x5, 0xf9, 0x0, 0x0, 0x0, 0x2, 0xfc, + 0x8, 0xf8, 0x0, 0x1f, 0xf2, 0x0, 0x0, 0x0, + 0xbf, 0x60, 0x8f, 0x80, 0x0, 0x5f, 0xc1, 0x0, + 0x0, 0x8f, 0xc0, 0x8, 0xf8, 0x0, 0x0, 0xaf, + 0xe9, 0x77, 0xcf, 0xd3, 0x0, 0x8f, 0x80, 0x0, + 0x0, 0x5e, 0xff, 0xfe, 0x91, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x41, 0x0, 0x0, 0x0, + + /* U+42F "Я" */ + 0x0, 0x0, 0x23, 0x33, 0x33, 0x33, 0x30, 0x3, + 0xdf, 0xff, 0xff, 0xff, 0xfc, 0x1, 0xef, 0xc6, + 0x44, 0x44, 0x4f, 0xc0, 0x7f, 0xb0, 0x0, 0x0, + 0x0, 0xfc, 0x8, 0xf8, 0x0, 0x0, 0x0, 0xf, + 0xc0, 0x7f, 0xa0, 0x0, 0x0, 0x0, 0xfc, 0x1, + 0xff, 0x72, 0x0, 0x0, 0xf, 0xc0, 0x3, 0xef, + 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x5e, 0xfd, + 0xcc, 0xcf, 0xc0, 0x0, 0x1c, 0xf6, 0x0, 0x0, + 0xfc, 0x0, 0xd, 0xf9, 0x0, 0x0, 0xf, 0xc0, + 0x8, 0xfe, 0x0, 0x0, 0x0, 0xfc, 0x3, 0xff, + 0x40, 0x0, 0x0, 0xf, 0xc0, 0xcf, 0x90, 0x0, + 0x0, 0x0, 0xfc, 0x7f, 0xe1, 0x0, 0x0, 0x0, + 0xf, 0xc0, + + /* U+430 "а" */ + 0x0, 0x4, 0x77, 0x75, 0x10, 0x0, 0x1c, 0xff, + 0xef, 0xfe, 0x20, 0xa, 0xf7, 0x0, 0x1a, 0xf9, + 0x0, 0xab, 0x0, 0x0, 0x2f, 0xc0, 0x0, 0x0, + 0x1, 0x37, 0xfc, 0x0, 0x6, 0xbf, 0xff, 0xff, + 0xc0, 0xa, 0xfe, 0x96, 0x30, 0xfc, 0x3, 0xfd, + 0x0, 0x0, 0x3f, 0xc0, 0x4f, 0xb0, 0x0, 0x9, + 0xfc, 0x0, 0xff, 0x53, 0x3a, 0xff, 0xc0, 0x4, + 0xef, 0xff, 0xc3, 0xbf, 0x10, 0x0, 0x24, 0x10, + 0x0, 0x0, + + /* U+431 "б" */ + 0x0, 0x0, 0x43, 0x35, 0xb5, 0x1, 0x9f, 0xff, + 0xff, 0xf2, 0xe, 0xfb, 0x88, 0x87, 0x20, 0x6f, + 0x30, 0x0, 0x0, 0x0, 0xcb, 0x2, 0x33, 0x10, + 0x0, 0xf8, 0x9f, 0xff, 0xf8, 0x0, 0xfe, 0xf7, + 0x34, 0xaf, 0xa0, 0xff, 0x80, 0x0, 0xc, 0xf3, + 0xff, 0x10, 0x0, 0x5, 0xf8, 0xff, 0x0, 0x0, + 0x4, 0xfa, 0xfe, 0x0, 0x0, 0x4, 0xf9, 0xcf, + 0x10, 0x0, 0x7, 0xf7, 0x6f, 0x80, 0x0, 0x1d, + 0xf2, 0xd, 0xf9, 0x34, 0xcf, 0x80, 0x1, 0xaf, + 0xff, 0xf8, 0x0, 0x0, 0x0, 0x43, 0x0, 0x0, + + /* U+432 "в" */ + 0x33, 0x33, 0x33, 0x20, 0xc, 0xff, 0xff, 0xff, + 0x80, 0xcf, 0x0, 0x14, 0xdf, 0x3c, 0xf0, 0x0, + 0x8, 0xf4, 0xcf, 0x0, 0x2, 0xcf, 0x2c, 0xff, + 0xff, 0xff, 0x90, 0xcf, 0x88, 0x88, 0xef, 0x5c, + 0xf0, 0x0, 0x2, 0xfc, 0xcf, 0x0, 0x0, 0x1f, + 0xcc, 0xf7, 0x77, 0x7d, 0xf6, 0xcf, 0xff, 0xff, + 0xc6, 0x0, + + /* U+433 "г" */ + 0x33, 0x33, 0x33, 0x1c, 0xff, 0xff, 0xf4, 0xcf, + 0x0, 0x0, 0xc, 0xf0, 0x0, 0x0, 0xcf, 0x0, + 0x0, 0xc, 0xf0, 0x0, 0x0, 0xcf, 0x0, 0x0, + 0xc, 0xf0, 0x0, 0x0, 0xcf, 0x0, 0x0, 0xc, + 0xf0, 0x0, 0x0, 0xcf, 0x0, 0x0, 0x0, + + /* U+434 "д" */ + 0x0, 0x13, 0x33, 0x33, 0x33, 0x0, 0x4, 0xff, + 0xff, 0xff, 0xf0, 0x0, 0x4f, 0x20, 0x0, 0xcf, + 0x0, 0x6, 0xf0, 0x0, 0xc, 0xf0, 0x0, 0x8f, + 0x0, 0x0, 0xcf, 0x0, 0xa, 0xc0, 0x0, 0xc, + 0xf0, 0x0, 0xdb, 0x0, 0x0, 0xcf, 0x0, 0x2f, + 0x50, 0x0, 0xc, 0xf0, 0x8, 0xf0, 0x0, 0x0, + 0xcf, 0x8, 0xed, 0x77, 0x77, 0x7d, 0xf7, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, + 0x0, 0x8f, 0xf8, 0x0, 0x0, 0x0, 0x8, 0xff, + 0x80, 0x0, 0x0, 0x0, 0x8f, + + /* U+435 "е" */ + 0x0, 0x2, 0x67, 0x63, 0x0, 0x0, 0x7, 0xff, + 0xff, 0xf7, 0x0, 0x5, 0xfc, 0x10, 0x1a, 0xf6, + 0x0, 0xef, 0x10, 0x0, 0xe, 0xe0, 0xf, 0xc3, + 0x33, 0x33, 0xbf, 0x14, 0xff, 0xff, 0xff, 0xff, + 0xf4, 0x4f, 0xb4, 0x44, 0x44, 0x44, 0x10, 0xfc, + 0x0, 0x0, 0x3, 0x31, 0xc, 0xf4, 0x0, 0x1, + 0xef, 0x10, 0x2f, 0xe7, 0x34, 0xcf, 0x60, 0x0, + 0x3d, 0xff, 0xfe, 0x50, 0x0, 0x0, 0x0, 0x42, + 0x0, 0x0, + + /* U+436 "ж" */ + 0x33, 0x10, 0x1, 0x32, 0x0, 0x3, 0x30, 0xcf, + 0xc1, 0x4, 0xf8, 0x0, 0x8f, 0xf0, 0x4, 0xf6, + 0x4, 0xf8, 0x1, 0xe9, 0x0, 0x0, 0xad, 0x4, + 0xf8, 0x8, 0xf1, 0x0, 0x0, 0x4f, 0x74, 0xf8, + 0x2e, 0x90, 0x0, 0x0, 0x6, 0xff, 0xff, 0xfa, + 0x10, 0x0, 0x0, 0x3e, 0xd7, 0xfa, 0x8f, 0x70, + 0x0, 0x1, 0xce, 0x14, 0xf8, 0x9, 0xf5, 0x0, + 0x9, 0xf6, 0x4, 0xf8, 0x1, 0xfd, 0x10, 0x3f, + 0xc0, 0x4, 0xf8, 0x0, 0x6f, 0x80, 0xcf, 0x30, + 0x4, 0xf8, 0x0, 0xc, 0xf2, + + /* U+437 "з" */ + 0x0, 0x27, 0x77, 0x20, 0x0, 0x3e, 0xff, 0xff, + 0x50, 0xe, 0xf4, 0x3, 0xfe, 0x0, 0x75, 0x0, + 0xc, 0xf0, 0x0, 0x0, 0x15, 0xfd, 0x0, 0x0, + 0x8f, 0xff, 0x30, 0x0, 0x2, 0x47, 0xfe, 0x10, + 0x21, 0x0, 0x6, 0xf6, 0x6f, 0x80, 0x0, 0x7f, + 0x61, 0xff, 0x73, 0x5e, 0xf2, 0x3, 0xcf, 0xff, + 0xe4, 0x0, 0x0, 0x14, 0x20, 0x0, + + /* U+438 "и" */ + 0x33, 0x0, 0x0, 0x13, 0x3c, 0xf0, 0x0, 0x9, + 0xfc, 0xcf, 0x0, 0x4, 0xff, 0xcc, 0xf0, 0x0, + 0xde, 0xfc, 0xcf, 0x0, 0x7f, 0x4f, 0xcc, 0xf0, + 0x2e, 0xa0, 0xfc, 0xcf, 0xb, 0xf1, 0xf, 0xcc, + 0xf4, 0xf6, 0x0, 0xfc, 0xcf, 0xdc, 0x0, 0xf, + 0xcc, 0xff, 0x20, 0x0, 0xfc, 0xcf, 0x80, 0x0, + 0xf, 0xc0, + + /* U+439 "й" */ + 0x0, 0x40, 0x0, 0x32, 0x0, 0xf, 0x70, 0x2d, + 0x60, 0x0, 0x5f, 0xff, 0xc0, 0x0, 0x0, 0x4, + 0x20, 0x0, 0x33, 0x0, 0x0, 0x13, 0x3c, 0xf0, + 0x0, 0x9, 0xfc, 0xcf, 0x0, 0x4, 0xff, 0xcc, + 0xf0, 0x0, 0xde, 0xfc, 0xcf, 0x0, 0x7f, 0x4f, + 0xcc, 0xf0, 0x2e, 0xa0, 0xfc, 0xcf, 0xb, 0xf1, + 0xf, 0xcc, 0xf4, 0xf6, 0x0, 0xfc, 0xcf, 0xdc, + 0x0, 0xf, 0xcc, 0xff, 0x20, 0x0, 0xfc, 0xcf, + 0x80, 0x0, 0xf, 0xc0, + + /* U+43A "к" */ + 0x33, 0x0, 0x2, 0x32, 0xcf, 0x0, 0x2e, 0xf8, + 0xcf, 0x0, 0xaf, 0x20, 0xcf, 0x1, 0xe8, 0x0, + 0xcf, 0xa, 0xf2, 0x0, 0xcf, 0xfe, 0x30, 0x0, + 0xcf, 0x5d, 0xd1, 0x0, 0xcf, 0x2, 0xfb, 0x0, + 0xcf, 0x0, 0x8f, 0x70, 0xcf, 0x0, 0xe, 0xe1, + 0xcf, 0x0, 0x5, 0xfa, + + /* U+43B "л" */ + 0x0, 0x33, 0x33, 0x33, 0x33, 0x10, 0xc, 0xff, + 0xff, 0xff, 0xf4, 0x0, 0xcf, 0x0, 0x0, 0x8f, + 0x40, 0xc, 0xf0, 0x0, 0x8, 0xf4, 0x0, 0xcf, + 0x0, 0x0, 0x8f, 0x40, 0xc, 0xf0, 0x0, 0x8, + 0xf4, 0x0, 0xcf, 0x0, 0x0, 0x8f, 0x40, 0xc, + 0xf0, 0x0, 0x8, 0xf4, 0x0, 0xdf, 0x0, 0x0, + 0x8f, 0x46, 0x8f, 0xc0, 0x0, 0x8, 0xf4, 0xcf, + 0xf5, 0x0, 0x0, 0x8f, 0x40, + + /* U+43C "м" */ + 0x33, 0x31, 0x0, 0x0, 0x13, 0x32, 0xcf, 0xf6, + 0x0, 0x0, 0x7f, 0xf8, 0xcf, 0xdb, 0x0, 0x0, + 0xef, 0xf8, 0xcf, 0x9f, 0x10, 0x3, 0xf9, 0xf8, + 0xcf, 0x3f, 0x60, 0x9, 0xf4, 0xf8, 0xcf, 0xe, + 0xb0, 0xf, 0x94, 0xf8, 0xcf, 0x9, 0xf1, 0x5f, + 0x34, 0xf8, 0xcf, 0x3, 0xf6, 0xae, 0x4, 0xf8, + 0xcf, 0x0, 0xec, 0xf7, 0x4, 0xf8, 0xcf, 0x0, + 0x9f, 0xf2, 0x4, 0xf8, 0xcf, 0x0, 0x3f, 0xc0, + 0x4, 0xf8, + + /* U+43D "н" */ + 0x33, 0x0, 0x0, 0x4, 0x3c, 0xf0, 0x0, 0x0, + 0xfc, 0xcf, 0x0, 0x0, 0xf, 0xcc, 0xf0, 0x0, + 0x0, 0xfc, 0xcf, 0x0, 0x0, 0xf, 0xcc, 0xff, + 0xff, 0xff, 0xfc, 0xcf, 0x88, 0x88, 0x8f, 0xcc, + 0xf0, 0x0, 0x0, 0xfc, 0xcf, 0x0, 0x0, 0xf, + 0xcc, 0xf0, 0x0, 0x0, 0xfc, 0xcf, 0x0, 0x0, + 0xf, 0xc0, + + /* U+43E "о" */ + 0x0, 0x2, 0x77, 0x63, 0x0, 0x0, 0x9, 0xff, + 0xff, 0xf8, 0x0, 0x7, 0xfb, 0x10, 0x1b, 0xf7, + 0x0, 0xff, 0x10, 0x0, 0x1f, 0xe0, 0x2f, 0xa0, + 0x0, 0x0, 0x9f, 0x44, 0xf8, 0x0, 0x0, 0x8, + 0xf4, 0x4f, 0x80, 0x0, 0x0, 0x8f, 0x41, 0xfc, + 0x0, 0x0, 0xb, 0xf3, 0xc, 0xf3, 0x0, 0x3, + 0xfe, 0x0, 0x3f, 0xe6, 0x36, 0xef, 0x40, 0x0, + 0x3d, 0xff, 0xfd, 0x40, 0x0, 0x0, 0x0, 0x42, + 0x0, 0x0, + + /* U+43F "п" */ + 0x33, 0x33, 0x33, 0x33, 0x2c, 0xff, 0xff, 0xff, + 0xf8, 0xcf, 0x0, 0x0, 0x4f, 0x8c, 0xf0, 0x0, + 0x4, 0xf8, 0xcf, 0x0, 0x0, 0x4f, 0x8c, 0xf0, + 0x0, 0x4, 0xf8, 0xcf, 0x0, 0x0, 0x4f, 0x8c, + 0xf0, 0x0, 0x4, 0xf8, 0xcf, 0x0, 0x0, 0x4f, + 0x8c, 0xf0, 0x0, 0x4, 0xf8, 0xcf, 0x0, 0x0, + 0x4f, 0x80, + + /* U+440 "р" */ + 0x33, 0x5, 0x77, 0x40, 0x0, 0xcf, 0xaf, 0xdf, + 0xf9, 0x10, 0xcf, 0xf3, 0x0, 0xaf, 0x80, 0xcf, + 0x60, 0x0, 0xe, 0xe0, 0xcf, 0x0, 0x0, 0xa, + 0xf4, 0xcf, 0x0, 0x0, 0x8, 0xf4, 0xcf, 0x0, + 0x0, 0x8, 0xf4, 0xcf, 0x10, 0x0, 0xc, 0xf2, + 0xcf, 0x80, 0x0, 0x3f, 0xc0, 0xcf, 0xf9, 0x35, + 0xef, 0x30, 0xcf, 0x6f, 0xff, 0xe3, 0x0, 0xcf, + 0x0, 0x42, 0x0, 0x0, 0xcf, 0x0, 0x0, 0x0, + 0x0, 0xcf, 0x0, 0x0, 0x0, 0x0, 0xcf, 0x0, + 0x0, 0x0, 0x0, + + /* U+441 "с" */ + 0x0, 0x2, 0x77, 0x72, 0x0, 0x0, 0x9f, 0xff, + 0xff, 0x70, 0x7, 0xfc, 0x10, 0x1d, 0xf3, 0xe, + 0xf1, 0x0, 0x3, 0xd7, 0x1f, 0xc0, 0x0, 0x0, + 0x0, 0x4f, 0xa0, 0x0, 0x0, 0x0, 0x2f, 0xb0, + 0x0, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0xc8, + 0xc, 0xf4, 0x0, 0x6, 0xf7, 0x2, 0xfe, 0x63, + 0x6e, 0xe1, 0x0, 0x3d, 0xff, 0xfc, 0x20, 0x0, + 0x0, 0x4, 0x10, 0x0, + + /* U+442 "т" */ + 0x33, 0x33, 0x33, 0x33, 0x3c, 0xff, 0xff, 0xff, + 0xfc, 0x0, 0x4, 0xf8, 0x0, 0x0, 0x0, 0x4f, + 0x80, 0x0, 0x0, 0x4, 0xf8, 0x0, 0x0, 0x0, + 0x4f, 0x80, 0x0, 0x0, 0x4, 0xf8, 0x0, 0x0, + 0x0, 0x4f, 0x80, 0x0, 0x0, 0x4, 0xf8, 0x0, + 0x0, 0x0, 0x4f, 0x80, 0x0, 0x0, 0x4, 0xf8, + 0x0, 0x0, + + /* U+443 "у" */ + 0x23, 0x10, 0x0, 0x0, 0x43, 0x6f, 0x90, 0x0, + 0x4, 0xf8, 0xf, 0xd0, 0x0, 0xa, 0xf2, 0xa, + 0xf4, 0x0, 0x1e, 0xc0, 0x3, 0xfa, 0x0, 0x6f, + 0x60, 0x0, 0xee, 0x0, 0xbf, 0x10, 0x0, 0x7f, + 0x52, 0xfa, 0x0, 0x0, 0x2f, 0xa7, 0xf4, 0x0, + 0x0, 0xb, 0xeb, 0xe0, 0x0, 0x0, 0x5, 0xff, + 0x80, 0x0, 0x0, 0x0, 0xff, 0x20, 0x0, 0x0, + 0x0, 0xec, 0x0, 0x0, 0x0, 0x6, 0xf6, 0x0, + 0x0, 0x9, 0x8e, 0xe0, 0x0, 0x0, 0xc, 0xff, + 0x30, 0x0, 0x0, 0x1, 0x40, 0x0, 0x0, 0x0, + + /* U+444 "ф" */ + 0x0, 0x0, 0x0, 0x3, 0x30, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xc, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xc, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xc, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x5, 0x77, 0x2c, 0xf0, 0x67, 0x62, 0x0, + 0x0, 0xaf, 0xff, 0xed, 0xfa, 0xfe, 0xfe, 0x30, + 0x8, 0xfa, 0x0, 0xaf, 0xff, 0x30, 0x3f, 0xd0, + 0xe, 0xe0, 0x0, 0x1f, 0xf7, 0x0, 0x7, 0xf6, + 0x2f, 0xa0, 0x0, 0xc, 0xf4, 0x0, 0x4, 0xf8, + 0x4f, 0x80, 0x0, 0xc, 0xf2, 0x0, 0x0, 0xfc, + 0x3f, 0x90, 0x0, 0xc, 0xf3, 0x0, 0x2, 0xfa, + 0xf, 0xc0, 0x0, 0xc, 0xf4, 0x0, 0x5, 0xf8, + 0xc, 0xf2, 0x0, 0x2f, 0xf9, 0x0, 0xb, 0xf2, + 0x4, 0xfd, 0x54, 0xcf, 0xff, 0x63, 0xaf, 0xa0, + 0x0, 0x4f, 0xff, 0xcd, 0xf6, 0xff, 0xfa, 0x0, + 0x0, 0x0, 0x33, 0xc, 0xf0, 0x14, 0x10, 0x0, + 0x0, 0x0, 0x0, 0xc, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xc, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xc, 0xf0, 0x0, 0x0, 0x0, + + /* U+445 "х" */ + 0x23, 0x30, 0x0, 0x3, 0x32, 0x1e, 0xf3, 0x0, + 0x3f, 0xe1, 0x4, 0xfc, 0x1, 0xcf, 0x30, 0x0, + 0x9f, 0x89, 0xf8, 0x0, 0x0, 0xd, 0xff, 0xc0, + 0x0, 0x0, 0x4, 0xff, 0x20, 0x0, 0x0, 0xb, + 0xff, 0xa0, 0x0, 0x0, 0x7f, 0x99, 0xf7, 0x0, + 0x2, 0xee, 0x11, 0xfe, 0x20, 0xd, 0xf4, 0x0, + 0x5f, 0xc0, 0x8f, 0x90, 0x0, 0xb, 0xf8, + + /* U+446 "ц" */ + 0x33, 0x0, 0x0, 0x4, 0x30, 0xcf, 0x0, 0x0, + 0xf, 0xc0, 0xcf, 0x0, 0x0, 0xf, 0xc0, 0xcf, + 0x0, 0x0, 0xf, 0xc0, 0xcf, 0x0, 0x0, 0xf, + 0xc0, 0xcf, 0x0, 0x0, 0xf, 0xc0, 0xcf, 0x0, + 0x0, 0xf, 0xc0, 0xcf, 0x0, 0x0, 0xf, 0xc0, + 0xcf, 0x0, 0x0, 0xf, 0xc0, 0xcf, 0x77, 0x77, + 0x7f, 0xd6, 0xcf, 0xff, 0xff, 0xff, 0xfc, 0x0, + 0x0, 0x0, 0x0, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x8c, 0x0, 0x0, 0x0, 0x0, 0x8c, + + /* U+447 "ч" */ + 0x13, 0x20, 0x0, 0x3, 0x34, 0xf8, 0x0, 0x0, + 0xcf, 0x4f, 0x80, 0x0, 0xc, 0xf4, 0xf8, 0x0, + 0x0, 0xcf, 0x3f, 0xa0, 0x0, 0xc, 0xf0, 0xef, + 0x73, 0x36, 0xdf, 0x3, 0xef, 0xff, 0xff, 0xf0, + 0x0, 0x44, 0x40, 0xcf, 0x0, 0x0, 0x0, 0xc, + 0xf0, 0x0, 0x0, 0x0, 0xcf, 0x0, 0x0, 0x0, + 0xc, 0xf0, + + /* U+448 "ш" */ + 0x23, 0x10, 0x0, 0x33, 0x0, 0x0, 0x43, 0x8f, + 0x40, 0x0, 0xcf, 0x0, 0x0, 0xfc, 0x8f, 0x40, + 0x0, 0xcf, 0x0, 0x0, 0xfc, 0x8f, 0x40, 0x0, + 0xcf, 0x0, 0x0, 0xfc, 0x8f, 0x40, 0x0, 0xcf, + 0x0, 0x0, 0xfc, 0x8f, 0x40, 0x0, 0xcf, 0x0, + 0x0, 0xfc, 0x8f, 0x40, 0x0, 0xcf, 0x0, 0x0, + 0xfc, 0x8f, 0x40, 0x0, 0xcf, 0x0, 0x0, 0xfc, + 0x8f, 0x40, 0x0, 0xcf, 0x0, 0x0, 0xfc, 0x8f, + 0x97, 0x77, 0xdf, 0x77, 0x77, 0xfc, 0x8f, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfc, + + /* U+449 "щ" */ + 0x23, 0x10, 0x0, 0x33, 0x0, 0x0, 0x43, 0x8, + 0xf4, 0x0, 0xc, 0xf0, 0x0, 0xf, 0xc0, 0x8f, + 0x40, 0x0, 0xcf, 0x0, 0x0, 0xfc, 0x8, 0xf4, + 0x0, 0xc, 0xf0, 0x0, 0xf, 0xc0, 0x8f, 0x40, + 0x0, 0xcf, 0x0, 0x0, 0xfc, 0x8, 0xf4, 0x0, + 0xc, 0xf0, 0x0, 0xf, 0xc0, 0x8f, 0x40, 0x0, + 0xcf, 0x0, 0x0, 0xfc, 0x8, 0xf4, 0x0, 0xc, + 0xf0, 0x0, 0xf, 0xc0, 0x8f, 0x40, 0x0, 0xcf, + 0x0, 0x0, 0xfc, 0x8, 0xf9, 0x77, 0x7d, 0xf7, + 0x77, 0x7f, 0xd6, 0x8f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xcc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xc, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xcc, + + /* U+44A "ъ" */ + 0x23, 0x33, 0x30, 0x0, 0x0, 0x0, 0x8f, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0xc, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0xc, 0xf0, 0x0, 0x0, 0x0, + 0x0, 0xc, 0xf3, 0x33, 0x30, 0x0, 0x0, 0xc, + 0xff, 0xff, 0xfe, 0x70, 0x0, 0xc, 0xf4, 0x44, + 0x5c, 0xf5, 0x0, 0xc, 0xf0, 0x0, 0x2, 0xfb, + 0x0, 0xc, 0xf0, 0x0, 0x4, 0xfb, 0x0, 0xc, + 0xf7, 0x77, 0x9e, 0xf4, 0x0, 0xc, 0xff, 0xff, + 0xfb, 0x40, + + /* U+44B "ы" */ + 0x33, 0x0, 0x0, 0x0, 0x0, 0x33, 0xcf, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0xcf, 0x0, 0x0, 0x0, + 0x0, 0xcf, 0xcf, 0x0, 0x0, 0x0, 0x0, 0xcf, + 0xcf, 0x33, 0x33, 0x0, 0x0, 0xcf, 0xcf, 0xff, + 0xff, 0xe7, 0x0, 0xcf, 0xcf, 0x44, 0x44, 0xbf, + 0x80, 0xcf, 0xcf, 0x0, 0x0, 0x1f, 0xc0, 0xcf, + 0xcf, 0x0, 0x0, 0x3f, 0xc0, 0xcf, 0xcf, 0x77, + 0x79, 0xef, 0x50, 0xcf, 0xcf, 0xff, 0xff, 0xb4, + 0x0, 0xcf, + + /* U+44C "ь" */ + 0x33, 0x0, 0x0, 0x0, 0xc, 0xf0, 0x0, 0x0, + 0x0, 0xcf, 0x0, 0x0, 0x0, 0xc, 0xf0, 0x0, + 0x0, 0x0, 0xcf, 0x33, 0x33, 0x0, 0xc, 0xff, + 0xff, 0xfe, 0x70, 0xcf, 0x44, 0x45, 0xcf, 0x6c, + 0xf0, 0x0, 0x1, 0xfc, 0xcf, 0x0, 0x0, 0x4f, + 0xbc, 0xf7, 0x77, 0x9e, 0xf4, 0xcf, 0xff, 0xff, + 0xb4, 0x0, + + /* U+44D "э" */ + 0x0, 0x16, 0x77, 0x30, 0x0, 0x4, 0xef, 0xff, + 0xf9, 0x10, 0x1e, 0xf5, 0x0, 0xaf, 0x80, 0x4d, + 0x80, 0x0, 0xe, 0xe1, 0x0, 0x0, 0x0, 0x8, + 0xf4, 0x0, 0x0, 0xff, 0xff, 0xf6, 0x0, 0x0, + 0x88, 0x8c, 0xf5, 0x5b, 0x40, 0x0, 0xa, 0xf4, + 0x3f, 0xb0, 0x0, 0x1e, 0xe0, 0xb, 0xfa, 0x45, + 0xcf, 0x60, 0x1, 0x9f, 0xff, 0xf7, 0x0, 0x0, + 0x0, 0x33, 0x0, 0x0, + + /* U+44E "ю" */ + 0x33, 0x0, 0x0, 0x16, 0x77, 0x40, 0x0, 0xcf, + 0x0, 0x4, 0xef, 0xff, 0xf9, 0x0, 0xcf, 0x0, + 0x1e, 0xf3, 0x1, 0xaf, 0x70, 0xcf, 0x0, 0x7f, + 0x60, 0x0, 0x1f, 0xd0, 0xcf, 0x0, 0xbf, 0x20, + 0x0, 0xc, 0xf0, 0xcf, 0xff, 0xff, 0x0, 0x0, + 0xb, 0xf4, 0xcf, 0x88, 0xef, 0x0, 0x0, 0xc, + 0xf1, 0xcf, 0x0, 0x9f, 0x40, 0x0, 0xd, 0xf0, + 0xcf, 0x0, 0x5f, 0xa0, 0x0, 0x4f, 0xb0, 0xcf, + 0x0, 0xc, 0xf8, 0x35, 0xef, 0x20, 0xcf, 0x0, + 0x1, 0xaf, 0xff, 0xe3, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x41, 0x0, 0x0, + + /* U+44F "я" */ + 0x0, 0x4, 0x33, 0x33, 0x32, 0x3, 0xdf, 0xff, + 0xff, 0xf8, 0xc, 0xf7, 0x30, 0x4, 0xf8, 0xf, + 0xc0, 0x0, 0x4, 0xf8, 0xe, 0xe1, 0x0, 0x4, + 0xf8, 0x6, 0xfd, 0x87, 0x79, 0xf8, 0x0, 0x5b, + 0xff, 0xff, 0xf8, 0x0, 0x3e, 0xe3, 0x4, 0xf8, + 0x1, 0xef, 0x30, 0x4, 0xf8, 0xb, 0xf8, 0x0, + 0x4, 0xf8, 0x5f, 0xd0, 0x0, 0x4, 0xf8, + + /* U+451 "ё" */ + 0x0, 0x27, 0x40, 0x47, 0x20, 0x0, 0x4, 0xf8, + 0x8, 0xf4, 0x0, 0x0, 0x28, 0x40, 0x48, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, + 0x67, 0x63, 0x0, 0x0, 0x7, 0xff, 0xff, 0xf7, + 0x0, 0x5, 0xfc, 0x10, 0x1a, 0xf6, 0x0, 0xef, + 0x10, 0x0, 0xe, 0xe0, 0xf, 0xc3, 0x33, 0x33, + 0xbf, 0x14, 0xff, 0xff, 0xff, 0xff, 0xf4, 0x4f, + 0xb4, 0x44, 0x44, 0x44, 0x10, 0xfc, 0x0, 0x0, + 0x3, 0x31, 0xc, 0xf4, 0x0, 0x1, 0xef, 0x10, + 0x2f, 0xe7, 0x34, 0xcf, 0x60, 0x0, 0x3d, 0xff, + 0xfe, 0x50, 0x0, 0x0, 0x0, 0x42, 0x0, 0x0, + + /* U+452 "ђ" */ + 0x3, 0x30, 0x0, 0x0, 0x0, 0xc, 0xf0, 0x0, + 0x0, 0x0, 0xff, 0xff, 0xff, 0x80, 0x0, 0xc, + 0xf0, 0x0, 0x0, 0x0, 0xc, 0xf0, 0x47, 0x76, + 0x10, 0xc, 0xf9, 0xff, 0xff, 0xd1, 0xc, 0xff, + 0x40, 0x1a, 0xf7, 0xc, 0xf6, 0x0, 0x2, 0xfb, + 0xc, 0xf3, 0x0, 0x0, 0xfc, 0xc, 0xf0, 0x0, + 0x0, 0xfc, 0xc, 0xf0, 0x0, 0x0, 0xfc, 0xc, + 0xf0, 0x0, 0x0, 0xfc, 0xc, 0xf0, 0x0, 0x0, + 0xfc, 0xc, 0xf0, 0x0, 0x0, 0xfc, 0xc, 0xf0, + 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xfc, + 0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, + 0x68, 0xf7, 0x0, 0x0, 0x2, 0xff, 0xe1, 0x0, + 0x0, 0x0, 0x33, 0x0, + + /* U+453 "ѓ" */ + 0x0, 0x3, 0x77, 0x0, 0x0, 0xcf, 0x40, 0x0, + 0x4f, 0x70, 0x0, 0x2, 0x40, 0x0, 0x33, 0x33, + 0x33, 0x1c, 0xff, 0xff, 0xf4, 0xcf, 0x0, 0x0, + 0xc, 0xf0, 0x0, 0x0, 0xcf, 0x0, 0x0, 0xc, + 0xf0, 0x0, 0x0, 0xcf, 0x0, 0x0, 0xc, 0xf0, + 0x0, 0x0, 0xcf, 0x0, 0x0, 0xc, 0xf0, 0x0, + 0x0, 0xcf, 0x0, 0x0, 0x0, + + /* U+454 "є" */ + 0x0, 0x3, 0x67, 0x72, 0x0, 0x0, 0x8f, 0xff, + 0xff, 0x60, 0x5, 0xfc, 0x10, 0x3e, 0xf3, 0xe, + 0xf1, 0x0, 0x6, 0xe6, 0xf, 0xb0, 0x0, 0x0, + 0x0, 0x3f, 0xff, 0xff, 0x40, 0x0, 0x2f, 0xe8, + 0x88, 0x20, 0x0, 0xf, 0xc0, 0x0, 0x1, 0xb7, + 0xc, 0xf4, 0x0, 0x8, 0xf7, 0x4, 0xfe, 0x53, + 0x9e, 0xd1, 0x0, 0x5f, 0xff, 0xfb, 0x20, 0x0, + 0x0, 0x24, 0x0, 0x0, + + /* U+455 "ѕ" */ + 0x0, 0x26, 0x77, 0x50, 0x0, 0x6, 0xff, 0xef, + 0xfd, 0x20, 0xf, 0xe2, 0x0, 0x7f, 0xa0, 0xf, + 0xb0, 0x0, 0x8, 0x40, 0xd, 0xfb, 0x62, 0x0, + 0x0, 0x3, 0xcf, 0xff, 0xd7, 0x10, 0x0, 0x2, + 0x7b, 0xff, 0xc0, 0x13, 0x20, 0x0, 0x1e, 0xf3, + 0x3f, 0xa0, 0x0, 0xb, 0xf2, 0xd, 0xf9, 0x33, + 0x7f, 0xc0, 0x1, 0xaf, 0xff, 0xfa, 0x10, 0x0, + 0x0, 0x44, 0x10, 0x0, + + /* U+456 "і" */ + 0x33, 0xcf, 0x9c, 0x0, 0x33, 0xcf, 0xcf, 0xcf, + 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, 0xcf, + + /* U+457 "ї" */ + 0x87, 0x2, 0x74, 0xff, 0x4, 0xf8, 0x88, 0x2, + 0x84, 0x0, 0x0, 0x0, 0x0, 0x43, 0x0, 0x0, + 0xfc, 0x0, 0x0, 0xfc, 0x0, 0x0, 0xfc, 0x0, + 0x0, 0xfc, 0x0, 0x0, 0xfc, 0x0, 0x0, 0xfc, + 0x0, 0x0, 0xfc, 0x0, 0x0, 0xfc, 0x0, 0x0, + 0xfc, 0x0, 0x0, 0xfc, 0x0, + + /* U+458 "ј" */ + 0x0, 0x33, 0x0, 0xcf, 0x0, 0x9c, 0x0, 0x0, + 0x0, 0x33, 0x0, 0xcf, 0x0, 0xcf, 0x0, 0xcf, + 0x0, 0xcf, 0x0, 0xcf, 0x0, 0xcf, 0x0, 0xcf, + 0x0, 0xcf, 0x0, 0xcf, 0x0, 0xcf, 0x0, 0xcf, + 0x0, 0xcf, 0x45, 0xfd, 0xdf, 0xf4, 0x24, 0x0, + + /* U+459 "љ" */ + 0x0, 0x33, 0x33, 0x33, 0x33, 0x30, 0x0, 0x0, + 0x0, 0x0, 0xcf, 0xff, 0xff, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0x0, 0x0, 0xf, 0xc0, + 0x0, 0x0, 0x0, 0x0, 0xcf, 0x0, 0x0, 0xf, + 0xc0, 0x0, 0x0, 0x0, 0x0, 0xcf, 0x0, 0x0, + 0xf, 0xc3, 0x33, 0x30, 0x0, 0x0, 0xcf, 0x0, + 0x0, 0xf, 0xff, 0xff, 0xfc, 0x30, 0x0, 0xcf, + 0x0, 0x0, 0xf, 0xd4, 0x44, 0x6f, 0xe2, 0x0, + 0xcf, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x8, 0xf5, + 0x0, 0xcf, 0x0, 0x0, 0xf, 0xc0, 0x0, 0x9, + 0xf4, 0x55, 0xfe, 0x0, 0x0, 0xf, 0xd7, 0x77, + 0xaf, 0xd0, 0xcf, 0xf6, 0x0, 0x0, 0xf, 0xff, + 0xff, 0xda, 0x10, + + /* U+45A "њ" */ + 0x33, 0x0, 0x0, 0x43, 0x0, 0x0, 0x0, 0xc, + 0xf0, 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0, 0xcf, + 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0xc, 0xf0, + 0x0, 0xf, 0xc0, 0x0, 0x0, 0x0, 0xcf, 0x0, + 0x0, 0xfc, 0x0, 0x0, 0x0, 0xc, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe9, 0x20, 0xcf, 0x88, 0x88, + 0xfe, 0x88, 0x8a, 0xfe, 0x2c, 0xf0, 0x0, 0xf, + 0xc0, 0x0, 0x6, 0xf7, 0xcf, 0x0, 0x0, 0xfc, + 0x0, 0x0, 0x6f, 0x7c, 0xf0, 0x0, 0xf, 0xd7, + 0x77, 0x9e, 0xf2, 0xcf, 0x0, 0x0, 0xff, 0xff, + 0xfe, 0xa2, 0x0, + + /* U+45B "ћ" */ + 0x3, 0x30, 0x0, 0x0, 0x0, 0xc, 0xf0, 0x0, + 0x0, 0x0, 0xff, 0xff, 0xff, 0x80, 0x0, 0xc, + 0xf0, 0x0, 0x0, 0x0, 0xc, 0xf0, 0x47, 0x76, + 0x10, 0xc, 0xf9, 0xff, 0xff, 0xd1, 0xc, 0xff, + 0x40, 0x1a, 0xf7, 0xc, 0xf6, 0x0, 0x2, 0xfb, + 0xc, 0xf3, 0x0, 0x0, 0xfc, 0xc, 0xf0, 0x0, + 0x0, 0xfc, 0xc, 0xf0, 0x0, 0x0, 0xfc, 0xc, + 0xf0, 0x0, 0x0, 0xfc, 0xc, 0xf0, 0x0, 0x0, + 0xfc, 0xc, 0xf0, 0x0, 0x0, 0xfc, 0xc, 0xf0, + 0x0, 0x0, 0xfc, + + /* U+45C "ќ" */ + 0x0, 0x3, 0x77, 0x0, 0x0, 0xc, 0xf4, 0x0, + 0x0, 0x4f, 0x70, 0x0, 0x0, 0x24, 0x0, 0x0, + 0x33, 0x0, 0x2, 0x32, 0xcf, 0x0, 0x2e, 0xf8, + 0xcf, 0x0, 0xaf, 0x20, 0xcf, 0x1, 0xe8, 0x0, + 0xcf, 0xa, 0xf2, 0x0, 0xcf, 0xfe, 0x30, 0x0, + 0xcf, 0x5d, 0xd1, 0x0, 0xcf, 0x2, 0xfb, 0x0, + 0xcf, 0x0, 0x8f, 0x70, 0xcf, 0x0, 0xe, 0xe1, + 0xcf, 0x0, 0x5, 0xfa, + + /* U+45E "ў" */ + 0x0, 0x32, 0x0, 0x13, 0x0, 0x0, 0x9c, 0x10, + 0xad, 0x0, 0x0, 0x1c, 0xff, 0xe3, 0x0, 0x0, + 0x0, 0x23, 0x0, 0x0, 0x23, 0x10, 0x0, 0x0, + 0x43, 0x6f, 0x90, 0x0, 0x4, 0xf8, 0xf, 0xd0, + 0x0, 0xa, 0xf2, 0xa, 0xf4, 0x0, 0x1e, 0xc0, + 0x3, 0xfa, 0x0, 0x6f, 0x60, 0x0, 0xee, 0x0, + 0xbf, 0x10, 0x0, 0x7f, 0x52, 0xfa, 0x0, 0x0, + 0x2f, 0xa7, 0xf4, 0x0, 0x0, 0xb, 0xeb, 0xe0, + 0x0, 0x0, 0x5, 0xff, 0x80, 0x0, 0x0, 0x0, + 0xff, 0x20, 0x0, 0x0, 0x0, 0xec, 0x0, 0x0, + 0x0, 0x6, 0xf6, 0x0, 0x0, 0x9, 0x8e, 0xe0, + 0x0, 0x0, 0xc, 0xff, 0x30, 0x0, 0x0, 0x1, + 0x40, 0x0, 0x0, 0x0, + + /* U+45F "џ" */ + 0x33, 0x0, 0x0, 0x4, 0x3c, 0xf0, 0x0, 0x0, + 0xfc, 0xcf, 0x0, 0x0, 0xf, 0xcc, 0xf0, 0x0, + 0x0, 0xfc, 0xcf, 0x0, 0x0, 0xf, 0xcc, 0xf0, + 0x0, 0x0, 0xfc, 0xcf, 0x0, 0x0, 0xf, 0xcc, + 0xf0, 0x0, 0x0, 0xfc, 0xcf, 0x0, 0x0, 0xf, + 0xcc, 0xf7, 0x77, 0x77, 0xfc, 0xcf, 0xff, 0xff, + 0xff, 0xc0, 0x0, 0x4f, 0x40, 0x0, 0x0, 0x4, + 0xf4, 0x0, 0x0, 0x0, 0x4f, 0x40, 0x0, + + /* U+490 "Ґ" */ + 0x0, 0x0, 0x0, 0x23, 0x10, 0x0, 0x0, 0x8, + 0xf4, 0x0, 0x0, 0x0, 0x8f, 0x40, 0x0, 0x0, + 0x8, 0xf4, 0x23, 0x33, 0x33, 0x9f, 0x48, 0xff, + 0xff, 0xff, 0xf4, 0x8f, 0xa4, 0x44, 0x44, 0x18, + 0xf8, 0x0, 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, + 0x8, 0xf8, 0x0, 0x0, 0x0, 0x8f, 0x80, 0x0, + 0x0, 0x8, 0xf8, 0x0, 0x0, 0x0, 0x8f, 0x80, + 0x0, 0x0, 0x8, 0xf8, 0x0, 0x0, 0x0, 0x8f, + 0x80, 0x0, 0x0, 0x8, 0xf8, 0x0, 0x0, 0x0, + 0x8f, 0x80, 0x0, 0x0, 0x8, 0xf8, 0x0, 0x0, + 0x0, 0x8f, 0x80, 0x0, 0x0, 0x0, + + /* U+491 "ґ" */ + 0x0, 0x0, 0x3, 0x20, 0x0, 0x0, 0xc8, 0x0, + 0x0, 0xc, 0x80, 0x0, 0x0, 0xc8, 0x33, 0x33, + 0x3c, 0x8c, 0xff, 0xff, 0xf8, 0xcf, 0x0, 0x0, + 0xc, 0xf0, 0x0, 0x0, 0xcf, 0x0, 0x0, 0xc, + 0xf0, 0x0, 0x0, 0xcf, 0x0, 0x0, 0xc, 0xf0, + 0x0, 0x0, 0xcf, 0x0, 0x0, 0xc, 0xf0, 0x0, + 0x0, 0xcf, 0x0, 0x0, 0x0, + + /* U+492 "Ғ" */ + 0x2, 0x33, 0x33, 0x33, 0x33, 0x30, 0x8f, 0xff, + 0xff, 0xff, 0xfc, 0x8, 0xfa, 0x44, 0x44, 0x44, + 0x30, 0x8f, 0x80, 0x0, 0x0, 0x0, 0x8, 0xf8, + 0x0, 0x0, 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, + 0x0, 0x8, 0xf8, 0x0, 0x0, 0x0, 0xc, 0xdf, + 0xdb, 0xbb, 0x60, 0x0, 0x8c, 0xfc, 0x88, 0x84, + 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, 0x0, 0x8, + 0xf8, 0x0, 0x0, 0x0, 0x0, 0x8f, 0x80, 0x0, + 0x0, 0x0, 0x8, 0xf8, 0x0, 0x0, 0x0, 0x0, + 0x8f, 0x80, 0x0, 0x0, 0x0, 0x8, 0xf8, 0x0, + 0x0, 0x0, 0x0, + + /* U+493 "ғ" */ + 0x3, 0x33, 0x33, 0x31, 0xc, 0xff, 0xff, 0xf4, + 0xc, 0xf0, 0x0, 0x0, 0xc, 0xf0, 0x0, 0x0, + 0x4c, 0xf3, 0x31, 0x0, 0xff, 0xff, 0xf4, 0x0, + 0xc, 0xf0, 0x0, 0x0, 0xc, 0xf0, 0x0, 0x0, + 0xc, 0xf0, 0x0, 0x0, 0xc, 0xf0, 0x0, 0x0, + 0xc, 0xf0, 0x0, 0x0, + + /* U+496 "Җ" */ + 0x33, 0x10, 0x0, 0x0, 0x33, 0x10, 0x0, 0x0, + 0x33, 0x1c, 0xff, 0x60, 0x0, 0xc, 0xf4, 0x0, + 0x2, 0xcf, 0xf4, 0x36, 0xdf, 0x40, 0x0, 0xcf, + 0x40, 0x0, 0xdf, 0xa5, 0x10, 0x4, 0xfb, 0x0, + 0xc, 0xf4, 0x0, 0x5f, 0xa0, 0x0, 0x0, 0xc, + 0xf4, 0x0, 0xcf, 0x40, 0xc, 0xf2, 0x0, 0x0, + 0x0, 0x4f, 0xb0, 0xc, 0xf4, 0x4, 0xfc, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0x83, 0xcf, 0x54, 0xdf, + 0x30, 0x0, 0x0, 0x0, 0x1, 0xaf, 0xff, 0xff, + 0xfe, 0x30, 0x0, 0x0, 0x0, 0x0, 0x9f, 0xe7, + 0xdf, 0x9b, 0xfc, 0x20, 0x0, 0x0, 0x0, 0x6f, + 0xe1, 0xc, 0xf4, 0x7, 0xfc, 0x10, 0x0, 0x0, + 0x3f, 0xf4, 0x0, 0xcf, 0x40, 0xc, 0xf9, 0x0, + 0x0, 0xc, 0xf9, 0x0, 0xc, 0xf4, 0x0, 0x2f, + 0xf4, 0x0, 0x6, 0xff, 0x10, 0x0, 0xcf, 0x40, + 0x0, 0x8f, 0xc0, 0x1, 0xef, 0x50, 0x0, 0xc, + 0xf4, 0x0, 0x0, 0xef, 0xc6, 0xaf, 0xc0, 0x0, + 0x0, 0xcf, 0x40, 0x0, 0x4, 0xff, 0x80, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xf8, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x4f, 0x80, + + /* U+497 "җ" */ + 0x33, 0x10, 0x1, 0x32, 0x0, 0x3, 0x30, 0xcf, + 0xc1, 0x4, 0xf8, 0x0, 0x8f, 0xf0, 0x3, 0xf7, + 0x4, 0xf8, 0x1, 0xea, 0x10, 0x0, 0xad, 0x4, + 0xf8, 0x8, 0xf1, 0x0, 0x0, 0x4f, 0x74, 0xf8, + 0x3e, 0x90, 0x0, 0x0, 0x5, 0xff, 0xff, 0xfa, + 0x0, 0x0, 0x0, 0x3e, 0xd7, 0xfa, 0x8f, 0x70, + 0x0, 0x1, 0xce, 0x14, 0xf8, 0x9, 0xf5, 0x0, + 0x9, 0xf6, 0x4, 0xf8, 0x1, 0xfd, 0x10, 0x3f, + 0xc0, 0x4, 0xf8, 0x0, 0x6f, 0xa2, 0xcf, 0x30, + 0x4, 0xf8, 0x0, 0xc, 0xf4, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x4, 0xf4, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x4, 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x4, 0xf4, + + /* U+49A "Қ" */ + 0x23, 0x20, 0x0, 0x0, 0x33, 0x28, 0xf8, 0x0, + 0x1, 0xcf, 0xf8, 0x8f, 0x80, 0x0, 0xaf, 0xb5, + 0x28, 0xf8, 0x0, 0x2f, 0xe0, 0x0, 0x8f, 0x80, + 0xa, 0xf6, 0x0, 0x8, 0xf8, 0x1, 0xef, 0x0, + 0x0, 0x8f, 0x85, 0xcf, 0x50, 0x0, 0x8, 0xff, + 0xff, 0x60, 0x0, 0x0, 0x8f, 0xb9, 0xfe, 0x30, + 0x0, 0x8, 0xf8, 0x4, 0xfe, 0x20, 0x0, 0x8f, + 0x80, 0x9, 0xfb, 0x0, 0x8, 0xf8, 0x0, 0x1e, + 0xf7, 0x0, 0x8f, 0x80, 0x0, 0x5f, 0xe1, 0x8, + 0xf8, 0x0, 0x0, 0xbf, 0xd6, 0x8f, 0x80, 0x0, + 0x2, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0xf8, + 0x0, 0x0, 0x0, 0x0, 0xf, 0x80, 0x0, 0x0, + 0x0, 0x0, 0xf8, 0x0, 0x0, 0x0, 0x0, 0xf, + 0x80, + + /* U+49B "қ" */ + 0x33, 0x0, 0x1, 0x32, 0xcf, 0x0, 0x2e, 0xf8, + 0xcf, 0x0, 0xaf, 0x30, 0xcf, 0x1, 0xe8, 0x0, + 0xcf, 0xa, 0xf2, 0x0, 0xcf, 0xfe, 0x30, 0x0, + 0xcf, 0x5d, 0xd1, 0x0, 0xcf, 0x2, 0xfb, 0x0, + 0xcf, 0x0, 0x8f, 0x70, 0xcf, 0x0, 0xe, 0xe6, + 0xcf, 0x0, 0x5, 0xfc, 0x0, 0x0, 0x0, 0xcc, + 0x0, 0x0, 0x0, 0xcc, 0x0, 0x0, 0x0, 0xcc, + + /* U+49C "Ҝ" */ + 0x23, 0x20, 0x0, 0x0, 0x33, 0x28, 0xf8, 0x0, + 0x1, 0xbf, 0xf8, 0x8f, 0x81, 0x30, 0xaf, 0xb5, + 0x28, 0xf8, 0x4c, 0x2f, 0xe0, 0x0, 0x8f, 0x84, + 0xca, 0xf6, 0x0, 0x8, 0xf8, 0x4d, 0xef, 0x0, + 0x0, 0x8f, 0x86, 0xff, 0x50, 0x0, 0x8, 0xff, + 0xff, 0x60, 0x0, 0x0, 0x8f, 0xa9, 0xfe, 0x30, + 0x0, 0x8, 0xf8, 0x4f, 0xfe, 0x20, 0x0, 0x8f, + 0x84, 0xc9, 0xfb, 0x0, 0x8, 0xf8, 0x4c, 0x1e, + 0xf7, 0x0, 0x8f, 0x83, 0x90, 0x5f, 0xe1, 0x8, + 0xf8, 0x0, 0x0, 0xbf, 0xa0, 0x8f, 0x80, 0x0, + 0x2, 0xff, 0x40, + + /* U+49D "ҝ" */ + 0x33, 0x0, 0x1, 0x32, 0xcf, 0x13, 0x2e, 0xf8, + 0xcf, 0x4c, 0xaf, 0x30, 0xcf, 0x4d, 0xe8, 0x0, + 0xcf, 0x4f, 0xf2, 0x0, 0xcf, 0xff, 0x40, 0x0, + 0xcf, 0x7f, 0xd1, 0x0, 0xcf, 0x4e, 0xfb, 0x0, + 0xcf, 0x4c, 0x8f, 0x70, 0xcf, 0x26, 0xe, 0xe1, + 0xcf, 0x0, 0x5, 0xfa, + + /* U+4A2 "Ң" */ + 0x23, 0x20, 0x0, 0x0, 0x0, 0x43, 0x0, 0x8f, + 0x80, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x8f, 0x80, + 0x0, 0x0, 0x0, 0xfc, 0x0, 0x8f, 0x80, 0x0, + 0x0, 0x0, 0xfc, 0x0, 0x8f, 0x80, 0x0, 0x0, + 0x0, 0xfc, 0x0, 0x8f, 0x80, 0x0, 0x0, 0x0, + 0xfc, 0x0, 0x8f, 0xb7, 0x77, 0x77, 0x77, 0xfc, + 0x0, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, + 0x8f, 0xa4, 0x44, 0x44, 0x44, 0xfc, 0x0, 0x8f, + 0x80, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x8f, 0x80, + 0x0, 0x0, 0x0, 0xfc, 0x0, 0x8f, 0x80, 0x0, + 0x0, 0x0, 0xfc, 0x0, 0x8f, 0x80, 0x0, 0x0, + 0x0, 0xfc, 0x0, 0x8f, 0x80, 0x0, 0x0, 0x0, + 0xfe, 0xb3, 0x8f, 0x80, 0x0, 0x0, 0x0, 0xff, + 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xf4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xf4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8, 0xf4, + + /* U+4A3 "ң" */ + 0x33, 0x0, 0x0, 0x4, 0x30, 0xcf, 0x0, 0x0, + 0xf, 0xc0, 0xcf, 0x0, 0x0, 0xf, 0xc0, 0xcf, + 0x0, 0x0, 0xf, 0xc0, 0xcf, 0x0, 0x0, 0xf, + 0xc0, 0xcf, 0xff, 0xff, 0xff, 0xc0, 0xcf, 0x88, + 0x88, 0x8f, 0xc0, 0xcf, 0x0, 0x0, 0xf, 0xc0, + 0xcf, 0x0, 0x0, 0xf, 0xc0, 0xcf, 0x0, 0x0, + 0xf, 0xd6, 0xcf, 0x0, 0x0, 0xf, 0xfc, 0x0, + 0x0, 0x0, 0x0, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x8c, 0x0, 0x0, 0x0, 0x0, 0x8c, + + /* U+4AE "Ү" */ + 0x43, 0x0, 0x0, 0x0, 0x13, 0x39, 0xf6, 0x0, + 0x0, 0x8, 0xfa, 0x1f, 0xd1, 0x0, 0x1, 0xef, + 0x10, 0x7f, 0x80, 0x0, 0x8f, 0x80, 0x0, 0xee, + 0x20, 0x2f, 0xe0, 0x0, 0x4, 0xfa, 0xa, 0xf5, + 0x0, 0x0, 0xc, 0xf4, 0xfc, 0x0, 0x0, 0x0, + 0x2f, 0xff, 0x40, 0x0, 0x0, 0x0, 0x9f, 0xa0, + 0x0, 0x0, 0x0, 0x4, 0xf8, 0x0, 0x0, 0x0, + 0x0, 0x4f, 0x80, 0x0, 0x0, 0x0, 0x4, 0xf8, + 0x0, 0x0, 0x0, 0x0, 0x4f, 0x80, 0x0, 0x0, + 0x0, 0x4, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x4f, + 0x80, 0x0, 0x0, + + /* U+4AF "ү" */ + 0x33, 0x10, 0x0, 0x1, 0x33, 0x7f, 0x60, 0x0, + 0x6, 0xf7, 0x2f, 0xb0, 0x0, 0xc, 0xf2, 0xb, + 0xf2, 0x0, 0x2f, 0xb0, 0x6, 0xf7, 0x0, 0x7f, + 0x60, 0x0, 0xfd, 0x0, 0xef, 0x0, 0x0, 0xaf, + 0x33, 0xfa, 0x0, 0x0, 0x3f, 0x99, 0xf3, 0x0, + 0x0, 0xd, 0xde, 0xe0, 0x0, 0x0, 0x7, 0xff, + 0x70, 0x0, 0x0, 0x1, 0xff, 0x10, 0x0, 0x0, + 0x0, 0xcf, 0x0, 0x0, 0x0, 0x0, 0xcf, 0x0, + 0x0, 0x0, 0x0, 0xcf, 0x0, 0x0, 0x0, 0x0, + 0xcf, 0x0, 0x0, + + /* U+4B0 "Ұ" */ + 0x43, 0x0, 0x0, 0x0, 0x13, 0x39, 0xf6, 0x0, + 0x0, 0x8, 0xfa, 0x1f, 0xd1, 0x0, 0x1, 0xef, + 0x10, 0x7f, 0x80, 0x0, 0x8f, 0x80, 0x0, 0xee, + 0x20, 0x2f, 0xe0, 0x0, 0x4, 0xfa, 0xa, 0xf5, + 0x0, 0x0, 0xc, 0xf4, 0xfc, 0x0, 0x2, 0x33, + 0x5f, 0xff, 0x63, 0x32, 0x8f, 0xff, 0xff, 0xff, + 0xff, 0x80, 0x0, 0x4, 0xf8, 0x0, 0x0, 0x0, + 0x0, 0x4f, 0x80, 0x0, 0x0, 0x0, 0x4, 0xf8, + 0x0, 0x0, 0x0, 0x0, 0x4f, 0x80, 0x0, 0x0, + 0x0, 0x4, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x4f, + 0x80, 0x0, 0x0, + + /* U+4B1 "ұ" */ + 0x33, 0x10, 0x0, 0x1, 0x33, 0x7f, 0x60, 0x0, + 0x6, 0xf7, 0x2f, 0xb0, 0x0, 0xc, 0xf2, 0xb, + 0xf2, 0x0, 0x2f, 0xb0, 0x6, 0xf7, 0x0, 0x7f, + 0x60, 0x0, 0xfd, 0x0, 0xef, 0x0, 0x0, 0xaf, + 0x33, 0xfa, 0x0, 0x0, 0x3f, 0x99, 0xf3, 0x0, + 0x0, 0xd, 0xde, 0xe0, 0x0, 0x0, 0x7, 0xff, + 0x70, 0x0, 0x0, 0x1, 0xff, 0x10, 0x0, 0xf, + 0xff, 0xff, 0xff, 0xf0, 0x4, 0x44, 0xdf, 0x44, + 0x40, 0x0, 0x0, 0xcf, 0x0, 0x0, 0x0, 0x0, + 0xcf, 0x0, 0x0, + + /* U+4B2 "Ҳ" */ + 0x4, 0x31, 0x0, 0x0, 0x0, 0x23, 0x30, 0xb, + 0xf9, 0x0, 0x0, 0x1, 0xcf, 0x30, 0x1, 0xff, + 0x40, 0x0, 0xa, 0xf7, 0x0, 0x0, 0x4f, 0xe1, + 0x0, 0x6f, 0xc0, 0x0, 0x0, 0x9, 0xfa, 0x3, + 0xef, 0x10, 0x0, 0x0, 0x0, 0xdf, 0x5d, 0xf4, + 0x0, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, + 0x0, 0x0, 0x0, 0xa, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x2e, 0xff, 0x90, 0x0, 0x0, 0x0, + 0x0, 0xdf, 0x5f, 0xf4, 0x0, 0x0, 0x0, 0x9, + 0xf9, 0x5, 0xfe, 0x10, 0x0, 0x0, 0x5f, 0xd1, + 0x0, 0x9f, 0xa0, 0x0, 0x2, 0xef, 0x30, 0x0, + 0x1e, 0xf7, 0x0, 0xd, 0xf7, 0x0, 0x0, 0x3, + 0xfe, 0xb3, 0x9f, 0xc0, 0x0, 0x0, 0x0, 0x8f, + 0xf4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xf4, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0xf4, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x8, 0xf4, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x8, 0xf4, + + /* U+4B3 "ҳ" */ + 0x23, 0x30, 0x0, 0x3, 0x32, 0x1e, 0xf3, 0x0, + 0x3f, 0xe1, 0x4, 0xfc, 0x1, 0xcf, 0x30, 0x0, + 0x9f, 0x89, 0xf8, 0x0, 0x0, 0xd, 0xff, 0xc0, + 0x0, 0x0, 0x4, 0xff, 0x20, 0x0, 0x0, 0xb, + 0xff, 0xa0, 0x0, 0x0, 0x7f, 0x99, 0xf7, 0x0, + 0x2, 0xee, 0x11, 0xee, 0x20, 0xd, 0xf4, 0x0, + 0x5f, 0xc6, 0x8f, 0x90, 0x0, 0xb, 0xfc, 0x0, + 0x0, 0x0, 0x0, 0x8c, 0x0, 0x0, 0x0, 0x0, + 0x8c, 0x0, 0x0, 0x0, 0x0, 0x8c, + + /* U+4B8 "Ҹ" */ + 0x13, 0x30, 0x0, 0x0, 0x1, 0x33, 0x4f, 0xc0, + 0x0, 0x0, 0x4, 0xfc, 0x4f, 0xc0, 0x0, 0x0, + 0x4, 0xfc, 0x4f, 0xc0, 0x0, 0x0, 0x4, 0xfc, + 0x4f, 0xc0, 0x3, 0xb0, 0x4, 0xfc, 0x2f, 0xc0, + 0x4, 0xf0, 0x4, 0xfc, 0xf, 0xf0, 0x4, 0xf0, + 0x4, 0xfc, 0xd, 0xf7, 0x4, 0xf0, 0x6, 0xfc, + 0x4, 0xff, 0xb9, 0xfa, 0xdf, 0xfc, 0x0, 0x4d, + 0xff, 0xff, 0xb9, 0xfc, 0x0, 0x0, 0x7, 0xf0, + 0x4, 0xfc, 0x0, 0x0, 0x4, 0xf0, 0x4, 0xfc, + 0x0, 0x0, 0x3, 0xc0, 0x4, 0xfc, 0x0, 0x0, + 0x0, 0x0, 0x4, 0xfc, 0x0, 0x0, 0x0, 0x0, + 0x4, 0xfc, + + /* U+4B9 "ҹ" */ + 0x13, 0x20, 0x0, 0x3, 0x34, 0xf8, 0x0, 0x0, + 0xcf, 0x4f, 0x80, 0x0, 0xc, 0xf4, 0xf8, 0xc, + 0x40, 0xcf, 0x3f, 0xa0, 0xc4, 0xc, 0xf0, 0xef, + 0x7c, 0x66, 0xdf, 0x3, 0xef, 0xff, 0xff, 0xf0, + 0x0, 0x4d, 0x70, 0xcf, 0x0, 0x0, 0xc4, 0xc, + 0xf0, 0x0, 0x3, 0x10, 0xcf, 0x0, 0x0, 0x0, + 0xc, 0xf0, + + /* U+4BA "Һ" */ + 0x23, 0x20, 0x0, 0x0, 0x0, 0x0, 0x8f, 0x80, + 0x0, 0x0, 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, + 0x0, 0x0, 0x8f, 0x80, 0x0, 0x0, 0x0, 0x0, + 0x8f, 0x80, 0x0, 0x0, 0x0, 0x0, 0x8f, 0x80, + 0x23, 0x77, 0x30, 0x0, 0x8f, 0xcd, 0xff, 0xff, + 0xfc, 0x20, 0x8f, 0xfb, 0x64, 0x45, 0xdf, 0xc0, + 0x8f, 0x80, 0x0, 0x0, 0x1e, 0xf4, 0x8f, 0x80, + 0x0, 0x0, 0x9, 0xf7, 0x8f, 0x80, 0x0, 0x0, + 0x8, 0xf8, 0x8f, 0x80, 0x0, 0x0, 0x8, 0xf8, + 0x8f, 0x80, 0x0, 0x0, 0x8, 0xf8, 0x8f, 0x80, + 0x0, 0x0, 0x8, 0xf8, 0x8f, 0x80, 0x0, 0x0, + 0x8, 0xf8, + + /* U+4BB "һ" */ + 0x33, 0x0, 0x0, 0x0, 0xc, 0xf0, 0x0, 0x0, + 0x0, 0xcf, 0x0, 0x0, 0x0, 0xc, 0xf0, 0x0, + 0x0, 0x0, 0xcf, 0x47, 0xaa, 0x51, 0xc, 0xff, + 0xfc, 0xef, 0xc1, 0xcf, 0x30, 0x0, 0xaf, 0x7c, + 0xf0, 0x0, 0x2, 0xfb, 0xcf, 0x0, 0x0, 0xf, + 0xcc, 0xf0, 0x0, 0x0, 0xfc, 0xcf, 0x0, 0x0, + 0xf, 0xc0, + + /* U+4D8 "Ә" */ + 0x0, 0x0, 0x37, 0x77, 0x30, 0x0, 0x0, 0x0, + 0x3c, 0xff, 0xff, 0xfd, 0x30, 0x0, 0x3, 0xef, + 0xa4, 0x24, 0x8f, 0xf5, 0x0, 0xc, 0xf7, 0x0, + 0x0, 0x3, 0xfe, 0x10, 0x2d, 0xe0, 0x0, 0x0, + 0x0, 0x8f, 0x90, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x2f, 0xd0, 0x43, 0x33, 0x33, 0x33, 0x33, 0x3f, + 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf2, + 0xff, 0x88, 0x88, 0x88, 0x88, 0x8f, 0xf0, 0xcf, + 0x20, 0x0, 0x0, 0x0, 0xf, 0xf0, 0xbf, 0x50, + 0x0, 0x0, 0x0, 0x3f, 0xc0, 0x4f, 0xc0, 0x0, + 0x0, 0x0, 0xcf, 0x60, 0xc, 0xf9, 0x0, 0x0, + 0x8, 0xfe, 0x0, 0x2, 0xdf, 0xd7, 0x67, 0xcf, + 0xe3, 0x0, 0x0, 0x9, 0xef, 0xff, 0xea, 0x10, + 0x0, 0x0, 0x0, 0x0, 0x41, 0x0, 0x0, 0x0, + + /* U+4D9 "ә" */ + 0x0, 0x4, 0x77, 0x63, 0x0, 0x0, 0xc, 0xff, + 0xff, 0xf8, 0x10, 0x9, 0xfb, 0x20, 0x1b, 0xf8, + 0x0, 0xbf, 0x10, 0x0, 0x1e, 0xe0, 0x0, 0x0, + 0x0, 0x0, 0x9f, 0x43, 0xbb, 0xbb, 0xbb, 0xbd, + 0xf4, 0x1f, 0xfc, 0xcc, 0xcc, 0xef, 0x40, 0xfc, + 0x0, 0x0, 0xb, 0xf2, 0xa, 0xf4, 0x0, 0x2, + 0xec, 0x0, 0x2f, 0xe6, 0x35, 0xef, 0x40, 0x0, + 0x2c, 0xff, 0xfe, 0x30, 0x0, 0x0, 0x0, 0x40, + 0x0, 0x0, + + /* U+4E8 "Ө" */ + 0x0, 0x0, 0x24, 0x76, 0x31, 0x0, 0x0, 0x0, + 0x1b, 0xff, 0xff, 0xfe, 0x60, 0x0, 0x3, 0xef, + 0xb4, 0x23, 0x6f, 0xf9, 0x0, 0xc, 0xf6, 0x0, + 0x0, 0x1, 0xdf, 0x60, 0x6f, 0xb0, 0x0, 0x0, + 0x0, 0x2f, 0xd1, 0xcf, 0x40, 0x0, 0x0, 0x0, + 0xb, 0xf4, 0xdf, 0x0, 0x0, 0x0, 0x0, 0x8, + 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, + 0xff, 0xcc, 0xcc, 0xcc, 0xcc, 0xce, 0xf8, 0xff, + 0x10, 0x0, 0x0, 0x0, 0x9, 0xf6, 0xaf, 0x50, + 0x0, 0x0, 0x0, 0xd, 0xf3, 0x4f, 0xd0, 0x0, + 0x0, 0x0, 0x5f, 0xc0, 0xb, 0xfb, 0x10, 0x0, + 0x5, 0xef, 0x30, 0x1, 0xbf, 0xe9, 0x77, 0xbf, + 0xf5, 0x0, 0x0, 0x6, 0xef, 0xff, 0xfb, 0x20, + 0x0, 0x0, 0x0, 0x0, 0x42, 0x0, 0x0, 0x0, + + /* U+4E9 "ө" */ + 0x0, 0x2, 0x77, 0x63, 0x0, 0x0, 0x9, 0xff, + 0xff, 0xf8, 0x0, 0x7, 0xfb, 0x10, 0x1b, 0xf8, + 0x0, 0xfe, 0x10, 0x0, 0xe, 0xe0, 0x2f, 0xb3, + 0x33, 0x33, 0xaf, 0x44, 0xff, 0xff, 0xff, 0xff, + 0xf4, 0x4f, 0xa4, 0x44, 0x44, 0xaf, 0x41, 0xfc, + 0x0, 0x0, 0xb, 0xf0, 0xc, 0xf3, 0x0, 0x3, + 0xfd, 0x0, 0x4f, 0xe6, 0x36, 0xef, 0x30, 0x0, + 0x3d, 0xff, 0xfd, 0x30, 0x0, 0x0, 0x0, 0x42, + 0x0, 0x0, + + /* U+2211 "∑" */ + 0x67, 0x77, 0x77, 0x77, 0x77, 0x77, 0x4c, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf8, 0x6f, 0xe3, 0x0, + 0x0, 0x0, 0x0, 0x0, 0xaf, 0xd1, 0x0, 0x0, + 0x0, 0x0, 0x0, 0xdf, 0xa0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, + 0x4, 0xff, 0x50, 0x0, 0x0, 0x0, 0x0, 0x7, + 0xfe, 0x20, 0x0, 0x0, 0x0, 0x0, 0xb, 0xfc, + 0x10, 0x0, 0x0, 0x0, 0x0, 0x1f, 0xf8, 0x0, + 0x0, 0x0, 0x0, 0x6, 0xff, 0x10, 0x0, 0x0, + 0x0, 0x3, 0xff, 0x30, 0x0, 0x0, 0x0, 0x1, + 0xdf, 0x70, 0x0, 0x0, 0x0, 0x0, 0xcf, 0xa0, + 0x0, 0x0, 0x0, 0x0, 0x9f, 0xd1, 0x0, 0x0, + 0x0, 0x0, 0x5f, 0xf2, 0x0, 0x0, 0x0, 0x0, + 0x3e, 0xf4, 0x0, 0x0, 0x0, 0x0, 0xb, 0xfa, + 0x33, 0x33, 0x33, 0x33, 0x32, 0xcf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x83, 0x44, 0x44, 0x44, 0x44, + 0x44, 0x42, + + /* U+221E "∞" */ + 0x0, 0x0, 0x0, 0x0, 0x21, 0x0, 0x2, 0x76, + 0x20, 0x1b, 0xff, 0xa0, 0x1e, 0x9a, 0xf3, 0xda, + 0x11, 0xd7, 0x7b, 0x0, 0x6f, 0xd0, 0x0, 0x6c, + 0x7b, 0x0, 0x6f, 0xb0, 0x0, 0x6c, 0x1f, 0x9a, + 0xf3, 0xd9, 0x1, 0xb8, 0x2, 0x87, 0x20, 0x1c, + 0xff, 0xc1, 0x0, 0x0, 0x0, 0x0, 0x22, 0x0 +}; + + +/*--------------------- + * GLYPH DESCRIPTION + *--------------------*/ + +static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { + {.bitmap_index = 0, .adv_w = 0, .box_h = 0, .box_w = 0, .ofs_x = 0, .ofs_y = 0} /* id = 0 reserved */, + {.bitmap_index = 0, .adv_w = 89, .box_h = 0, .box_w = 0, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 0, .adv_w = 89, .box_h = 15, .box_w = 3, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 23, .adv_w = 114, .box_h = 6, .box_w = 6, .ofs_x = 1, .ofs_y = 9}, + {.bitmap_index = 41, .adv_w = 178, .box_h = 16, .box_w = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 129, .adv_w = 178, .box_h = 18, .box_w = 11, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 228, .adv_w = 285, .box_h = 16, .box_w = 16, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 356, .adv_w = 213, .box_h = 16, .box_w = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 460, .adv_w = 61, .box_h = 6, .box_w = 2, .ofs_x = 1, .ofs_y = 9}, + {.bitmap_index = 466, .adv_w = 107, .box_h = 20, .box_w = 5, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 516, .adv_w = 107, .box_h = 20, .box_w = 5, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 566, .adv_w = 125, .box_h = 7, .box_w = 7, .ofs_x = 0, .ofs_y = 8}, + {.bitmap_index = 591, .adv_w = 187, .box_h = 10, .box_w = 10, .ofs_x = 1, .ofs_y = 2}, + {.bitmap_index = 641, .adv_w = 89, .box_h = 5, .box_w = 3, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 649, .adv_w = 107, .box_h = 3, .box_w = 7, .ofs_x = 0, .ofs_y = 4}, + {.bitmap_index = 660, .adv_w = 89, .box_h = 2, .box_w = 3, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 663, .adv_w = 89, .box_h = 16, .box_w = 6, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 711, .adv_w = 178, .box_h = 16, .box_w = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 799, .adv_w = 178, .box_h = 15, .box_w = 6, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 844, .adv_w = 178, .box_h = 15, .box_w = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 919, .adv_w = 178, .box_h = 16, .box_w = 10, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 999, .adv_w = 178, .box_h = 15, .box_w = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1082, .adv_w = 178, .box_h = 15, .box_w = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 1165, .adv_w = 178, .box_h = 16, .box_w = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 1253, .adv_w = 178, .box_h = 15, .box_w = 10, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1328, .adv_w = 178, .box_h = 16, .box_w = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 1416, .adv_w = 178, .box_h = 16, .box_w = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 1504, .adv_w = 89, .box_h = 11, .box_w = 3, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1521, .adv_w = 89, .box_h = 14, .box_w = 3, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 1542, .adv_w = 187, .box_h = 10, .box_w = 10, .ofs_x = 1, .ofs_y = 2}, + {.bitmap_index = 1592, .adv_w = 187, .box_h = 6, .box_w = 10, .ofs_x = 1, .ofs_y = 4}, + {.bitmap_index = 1622, .adv_w = 187, .box_h = 10, .box_w = 10, .ofs_x = 1, .ofs_y = 2}, + {.bitmap_index = 1672, .adv_w = 178, .box_h = 15, .box_w = 9, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1740, .adv_w = 325, .box_h = 20, .box_w = 19, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 1930, .adv_w = 213, .box_h = 15, .box_w = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2035, .adv_w = 213, .box_h = 15, .box_w = 12, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2125, .adv_w = 231, .box_h = 16, .box_w = 13, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 2229, .adv_w = 231, .box_h = 15, .box_w = 13, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2327, .adv_w = 213, .box_h = 15, .box_w = 12, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2417, .adv_w = 195, .box_h = 15, .box_w = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2500, .adv_w = 249, .box_h = 16, .box_w = 14, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 2612, .adv_w = 231, .box_h = 15, .box_w = 12, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2702, .adv_w = 89, .box_h = 15, .box_w = 3, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2725, .adv_w = 160, .box_h = 16, .box_w = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 2797, .adv_w = 213, .box_h = 15, .box_w = 13, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2895, .adv_w = 178, .box_h = 15, .box_w = 10, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2970, .adv_w = 267, .box_h = 15, .box_w = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 3083, .adv_w = 231, .box_h = 15, .box_w = 12, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 3173, .adv_w = 249, .box_h = 16, .box_w = 14, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 3285, .adv_w = 213, .box_h = 15, .box_w = 12, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 3375, .adv_w = 249, .box_h = 16, .box_w = 15, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 3495, .adv_w = 231, .box_h = 15, .box_w = 13, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 3593, .adv_w = 213, .box_h = 16, .box_w = 12, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 3689, .adv_w = 195, .box_h = 15, .box_w = 12, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3779, .adv_w = 231, .box_h = 16, .box_w = 12, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 3875, .adv_w = 213, .box_h = 15, .box_w = 13, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3973, .adv_w = 302, .box_h = 15, .box_w = 19, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4116, .adv_w = 213, .box_h = 15, .box_w = 13, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4214, .adv_w = 213, .box_h = 15, .box_w = 13, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4312, .adv_w = 195, .box_h = 15, .box_w = 12, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 4402, .adv_w = 89, .box_h = 19, .box_w = 5, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 4450, .adv_w = 89, .box_h = 16, .box_w = 6, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 4498, .adv_w = 89, .box_h = 19, .box_w = 5, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 4546, .adv_w = 150, .box_h = 9, .box_w = 9, .ofs_x = 0, .ofs_y = 6}, + {.bitmap_index = 4587, .adv_w = 178, .box_h = 2, .box_w = 13, .ofs_x = -1, .ofs_y = -4}, + {.bitmap_index = 4600, .adv_w = 107, .box_h = 4, .box_w = 4, .ofs_x = 1, .ofs_y = 11}, + {.bitmap_index = 4608, .adv_w = 178, .box_h = 12, .box_w = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 4674, .adv_w = 178, .box_h = 16, .box_w = 10, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 4754, .adv_w = 160, .box_h = 12, .box_w = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 4814, .adv_w = 178, .box_h = 16, .box_w = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 4894, .adv_w = 178, .box_h = 12, .box_w = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 4960, .adv_w = 89, .box_h = 15, .box_w = 7, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5013, .adv_w = 178, .box_h = 16, .box_w = 10, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 5093, .adv_w = 178, .box_h = 15, .box_w = 9, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 5161, .adv_w = 71, .box_h = 15, .box_w = 2, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 5176, .adv_w = 71, .box_h = 20, .box_w = 4, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 5216, .adv_w = 160, .box_h = 15, .box_w = 9, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 5284, .adv_w = 71, .box_h = 15, .box_w = 3, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 5307, .adv_w = 267, .box_h = 11, .box_w = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 5390, .adv_w = 178, .box_h = 11, .box_w = 9, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 5440, .adv_w = 178, .box_h = 12, .box_w = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 5506, .adv_w = 178, .box_h = 15, .box_w = 10, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 5581, .adv_w = 178, .box_h = 15, .box_w = 10, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 5656, .adv_w = 107, .box_h = 11, .box_w = 6, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 5689, .adv_w = 160, .box_h = 12, .box_w = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 5749, .adv_w = 89, .box_h = 15, .box_w = 6, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 5794, .adv_w = 178, .box_h = 12, .box_w = 9, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 5848, .adv_w = 160, .box_h = 11, .box_w = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5903, .adv_w = 231, .box_h = 11, .box_w = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 5986, .adv_w = 160, .box_h = 11, .box_w = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 6041, .adv_w = 160, .box_h = 16, .box_w = 10, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 6121, .adv_w = 160, .box_h = 11, .box_w = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 6176, .adv_w = 107, .box_h = 20, .box_w = 7, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 6246, .adv_w = 83, .box_h = 20, .box_w = 3, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 6276, .adv_w = 107, .box_h = 20, .box_w = 6, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 6336, .adv_w = 187, .box_h = 4, .box_w = 11, .ofs_x = 0, .ofs_y = 5}, + {.bitmap_index = 6358, .adv_w = 214, .box_h = 18, .box_w = 12, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 6466, .adv_w = 277, .box_h = 16, .box_w = 17, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 6602, .adv_w = 173, .box_h = 18, .box_w = 10, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 6692, .adv_w = 230, .box_h = 16, .box_w = 13, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 6796, .adv_w = 213, .box_h = 16, .box_w = 12, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 6892, .adv_w = 89, .box_h = 15, .box_w = 3, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 6915, .adv_w = 89, .box_h = 18, .box_w = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 6969, .adv_w = 160, .box_h = 16, .box_w = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 7041, .adv_w = 338, .box_h = 16, .box_w = 21, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 7209, .adv_w = 323, .box_h = 15, .box_w = 19, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 7352, .adv_w = 273, .box_h = 15, .box_w = 17, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 7480, .adv_w = 186, .box_h = 18, .box_w = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 7579, .adv_w = 203, .box_h = 19, .box_w = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 7703, .adv_w = 230, .box_h = 19, .box_w = 12, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 7817, .adv_w = 213, .box_h = 15, .box_w = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 7922, .adv_w = 210, .box_h = 15, .box_w = 12, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 8012, .adv_w = 213, .box_h = 15, .box_w = 12, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 8102, .adv_w = 173, .box_h = 15, .box_w = 10, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 8177, .adv_w = 217, .box_h = 19, .box_w = 13, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 8301, .adv_w = 213, .box_h = 15, .box_w = 12, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 8391, .adv_w = 295, .box_h = 15, .box_w = 19, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 8534, .adv_w = 193, .box_h = 16, .box_w = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 8630, .adv_w = 230, .box_h = 15, .box_w = 12, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 8720, .adv_w = 230, .box_h = 18, .box_w = 12, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 8828, .adv_w = 186, .box_h = 15, .box_w = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 8911, .adv_w = 210, .box_h = 16, .box_w = 12, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9007, .adv_w = 267, .box_h = 15, .box_w = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 9120, .adv_w = 231, .box_h = 15, .box_w = 12, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 9210, .adv_w = 249, .box_h = 16, .box_w = 14, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 9322, .adv_w = 230, .box_h = 15, .box_w = 12, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 9412, .adv_w = 213, .box_h = 15, .box_w = 12, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 9502, .adv_w = 231, .box_h = 16, .box_w = 13, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 9606, .adv_w = 195, .box_h = 15, .box_w = 12, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 9696, .adv_w = 203, .box_h = 16, .box_w = 13, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 9800, .adv_w = 243, .box_h = 15, .box_w = 15, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 9913, .adv_w = 213, .box_h = 15, .box_w = 13, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 10011, .adv_w = 237, .box_h = 19, .box_w = 13, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 10135, .adv_w = 213, .box_h = 15, .box_w = 12, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 10225, .adv_w = 293, .box_h = 15, .box_w = 16, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 10345, .adv_w = 300, .box_h = 19, .box_w = 17, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 10507, .adv_w = 253, .box_h = 15, .box_w = 16, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 10627, .adv_w = 283, .box_h = 15, .box_w = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 10740, .adv_w = 210, .box_h = 15, .box_w = 12, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 10830, .adv_w = 230, .box_h = 16, .box_w = 14, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 10942, .adv_w = 323, .box_h = 16, .box_w = 19, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 11094, .adv_w = 231, .box_h = 15, .box_w = 13, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 11192, .adv_w = 178, .box_h = 12, .box_w = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11258, .adv_w = 183, .box_h = 16, .box_w = 10, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 11338, .adv_w = 170, .box_h = 11, .box_w = 9, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 11388, .adv_w = 117, .box_h = 11, .box_w = 7, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 11427, .adv_w = 187, .box_h = 14, .box_w = 11, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 11504, .adv_w = 178, .box_h = 12, .box_w = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11570, .adv_w = 214, .box_h = 11, .box_w = 14, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 11647, .adv_w = 147, .box_h = 12, .box_w = 9, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 11701, .adv_w = 179, .box_h = 11, .box_w = 9, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 11751, .adv_w = 179, .box_h = 15, .box_w = 9, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 11819, .adv_w = 140, .box_h = 11, .box_w = 8, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 11863, .adv_w = 187, .box_h = 11, .box_w = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 11924, .adv_w = 220, .box_h = 11, .box_w = 12, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 11990, .adv_w = 177, .box_h = 11, .box_w = 9, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 12040, .adv_w = 178, .box_h = 12, .box_w = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12106, .adv_w = 173, .box_h = 11, .box_w = 9, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 12156, .adv_w = 178, .box_h = 15, .box_w = 10, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 12231, .adv_w = 160, .box_h = 12, .box_w = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 12291, .adv_w = 147, .box_h = 11, .box_w = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 12341, .adv_w = 160, .box_h = 16, .box_w = 10, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 12421, .adv_w = 263, .box_h = 19, .box_w = 16, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 12573, .adv_w = 160, .box_h = 11, .box_w = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 12628, .adv_w = 183, .box_h = 14, .box_w = 10, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 12698, .adv_w = 167, .box_h = 11, .box_w = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 12748, .adv_w = 257, .box_h = 11, .box_w = 14, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 12825, .adv_w = 263, .box_h = 14, .box_w = 15, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 12930, .adv_w = 200, .box_h = 11, .box_w = 12, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 12996, .adv_w = 230, .box_h = 11, .box_w = 12, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 13062, .adv_w = 167, .box_h = 11, .box_w = 9, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 13112, .adv_w = 163, .box_h = 12, .box_w = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13172, .adv_w = 240, .box_h = 12, .box_w = 14, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 13256, .adv_w = 173, .box_h = 11, .box_w = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 13311, .adv_w = 178, .box_h = 16, .box_w = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13399, .adv_w = 178, .box_h = 20, .box_w = 10, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 13499, .adv_w = 117, .box_h = 15, .box_w = 7, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 13552, .adv_w = 163, .box_h = 12, .box_w = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13612, .adv_w = 160, .box_h = 12, .box_w = 10, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 13672, .adv_w = 71, .box_h = 15, .box_w = 2, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 13687, .adv_w = 89, .box_h = 15, .box_w = 6, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 13732, .adv_w = 71, .box_h = 20, .box_w = 4, .ofs_x = -1, .ofs_y = -5}, + {.bitmap_index = 13772, .adv_w = 290, .box_h = 11, .box_w = 18, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 13871, .adv_w = 260, .box_h = 11, .box_w = 15, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 13954, .adv_w = 178, .box_h = 15, .box_w = 10, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 14029, .adv_w = 140, .box_h = 15, .box_w = 8, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 14089, .adv_w = 160, .box_h = 20, .box_w = 10, .ofs_x = 0, .ofs_y = -5}, + {.bitmap_index = 14189, .adv_w = 177, .box_h = 14, .box_w = 9, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 14252, .adv_w = 156, .box_h = 19, .box_w = 9, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 14338, .adv_w = 132, .box_h = 15, .box_w = 7, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 14391, .adv_w = 173, .box_h = 15, .box_w = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 14474, .adv_w = 117, .box_h = 11, .box_w = 8, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 14518, .adv_w = 295, .box_h = 19, .box_w = 19, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 14699, .adv_w = 214, .box_h = 14, .box_w = 14, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 14797, .adv_w = 186, .box_h = 19, .box_w = 11, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 14902, .adv_w = 140, .box_h = 14, .box_w = 8, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 14958, .adv_w = 186, .box_h = 15, .box_w = 11, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 15041, .adv_w = 140, .box_h = 11, .box_w = 8, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 15085, .adv_w = 231, .box_h = 19, .box_w = 14, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 15218, .adv_w = 177, .box_h = 14, .box_w = 10, .ofs_x = 1, .ofs_y = -3}, + {.bitmap_index = 15288, .adv_w = 178, .box_h = 15, .box_w = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 15371, .adv_w = 160, .box_h = 15, .box_w = 10, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 15446, .adv_w = 178, .box_h = 15, .box_w = 11, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 15529, .adv_w = 160, .box_h = 15, .box_w = 10, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 15604, .adv_w = 213, .box_h = 19, .box_w = 14, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 15737, .adv_w = 160, .box_h = 14, .box_w = 10, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 15807, .adv_w = 213, .box_h = 15, .box_w = 12, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 15897, .adv_w = 167, .box_h = 11, .box_w = 9, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 15947, .adv_w = 213, .box_h = 15, .box_w = 12, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 16037, .adv_w = 167, .box_h = 11, .box_w = 9, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 16087, .adv_w = 241, .box_h = 16, .box_w = 14, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 16199, .adv_w = 178, .box_h = 12, .box_w = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16265, .adv_w = 249, .box_h = 16, .box_w = 14, .ofs_x = 1, .ofs_y = -1}, + {.bitmap_index = 16377, .adv_w = 178, .box_h = 12, .box_w = 11, .ofs_x = 0, .ofs_y = -1}, + {.bitmap_index = 16443, .adv_w = 228, .box_h = 20, .box_w = 13, .ofs_x = 1, .ofs_y = -5}, + {.bitmap_index = 16573, .adv_w = 228, .box_h = 8, .box_w = 12, .ofs_x = 1, .ofs_y = 3} +}; + +/*--------------------- + * CHARACTER MAPPING + *--------------------*/ + +static const uint16_t unicode_list_4[] = { + 0x0, 0x1, 0x32, 0x33, 0x34, 0x35, 0x38, 0x39, + 0x3c, 0x3d, 0x3e, 0x3f, 0x44, 0x45, 0x50, 0x51, + 0x52, 0x53, 0x54, 0x55, 0x5a, 0x5b, 0x5c, 0x5d, + 0x7a, 0x7b, 0x8a, 0x8b, 0x1db3, 0x1dc0 +}; + +/*Collect the unicode lists and glyph_id offsets*/ +static const lv_font_fmt_txt_cmap_t cmaps[] = +{ + { + .range_start = 32, .range_length = 95, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY, + .glyph_id_start = 1, .unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0 + }, + { + .range_start = 1025, .range_length = 12, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY, + .glyph_id_start = 96, .unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0 + }, + { + .range_start = 1038, .range_length = 66, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY, + .glyph_id_start = 108, .unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0 + }, + { + .range_start = 1105, .range_length = 12, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY, + .glyph_id_start = 174, .unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0 + }, + { + .range_start = 1118, .range_length = 7617, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY, + .glyph_id_start = 186, .unicode_list = unicode_list_4, .glyph_id_ofs_list = NULL, .list_length = 30 + } +}; + +/*----------------- + * KERNING + *----------------*/ + + +/*Pair left and right glyphs for kerning*/ +static const uint8_t kern_pair_glyph_ids[] = +{ + 1, 34, + 1, 53, + 1, 58, + 18, 18, + 34, 1, + 34, 53, + 34, 55, + 34, 56, + 34, 58, + 34, 87, + 34, 88, + 34, 90, + 39, 13, + 39, 15, + 39, 34, + 45, 1, + 45, 53, + 45, 55, + 45, 56, + 45, 58, + 45, 90, + 49, 1, + 49, 13, + 49, 15, + 49, 34, + 51, 53, + 51, 55, + 51, 56, + 51, 58, + 53, 1, + 53, 13, + 53, 14, + 53, 15, + 53, 27, + 53, 28, + 53, 34, + 53, 48, + 53, 66, + 53, 68, + 53, 70, + 53, 74, + 53, 80, + 53, 83, + 53, 84, + 53, 86, + 53, 88, + 53, 90, + 55, 13, + 55, 14, + 55, 15, + 55, 27, + 55, 28, + 55, 34, + 55, 66, + 55, 70, + 55, 74, + 55, 80, + 55, 83, + 55, 86, + 55, 90, + 56, 13, + 56, 14, + 56, 15, + 56, 27, + 56, 28, + 56, 34, + 56, 66, + 56, 70, + 56, 80, + 56, 83, + 56, 86, + 56, 90, + 58, 1, + 58, 13, + 58, 14, + 58, 15, + 58, 27, + 58, 28, + 58, 34, + 58, 66, + 58, 70, + 58, 74, + 58, 80, + 58, 81, + 58, 82, + 58, 86, + 58, 87, + 71, 71, + 83, 13, + 83, 15, + 87, 13, + 87, 15, + 88, 13, + 88, 15, + 90, 13, + 90, 15, + 98, 13, + 98, 15, + 110, 114, + 110, 117, + 110, 121, + 110, 124, + 110, 125, + 110, 127, + 110, 128, + 110, 129, + 110, 130, + 110, 133, + 110, 139, + 110, 142, + 110, 160, + 110, 161, + 110, 162, + 110, 171, + 111, 110, + 111, 117, + 111, 124, + 111, 127, + 111, 128, + 111, 129, + 111, 130, + 111, 131, + 111, 133, + 111, 136, + 111, 139, + 111, 141, + 111, 153, + 111, 161, + 112, 110, + 112, 114, + 112, 116, + 112, 117, + 112, 121, + 112, 124, + 112, 127, + 112, 128, + 112, 129, + 112, 130, + 112, 131, + 112, 133, + 112, 136, + 112, 141, + 112, 146, + 112, 154, + 112, 160, + 112, 161, + 112, 163, + 112, 165, + 112, 173, + 113, 13, + 113, 15, + 113, 110, + 113, 114, + 113, 117, + 113, 121, + 113, 122, + 113, 124, + 113, 127, + 113, 141, + 113, 142, + 113, 144, + 113, 146, + 113, 147, + 113, 150, + 113, 153, + 113, 154, + 113, 155, + 113, 156, + 113, 158, + 113, 161, + 113, 169, + 113, 170, + 113, 172, + 113, 173, + 114, 129, + 114, 130, + 114, 133, + 114, 149, + 114, 156, + 114, 161, + 115, 117, + 115, 159, + 116, 117, + 116, 124, + 116, 127, + 116, 128, + 116, 129, + 116, 136, + 116, 142, + 116, 147, + 116, 156, + 116, 161, + 117, 121, + 117, 124, + 117, 127, + 117, 128, + 117, 129, + 117, 130, + 117, 133, + 117, 141, + 120, 117, + 120, 124, + 120, 127, + 120, 129, + 120, 130, + 121, 130, + 121, 143, + 121, 161, + 122, 130, + 122, 133, + 122, 142, + 122, 147, + 122, 156, + 122, 159, + 122, 161, + 122, 165, + 122, 171, + 124, 110, + 124, 114, + 124, 116, + 124, 121, + 124, 129, + 124, 131, + 124, 133, + 124, 141, + 124, 146, + 124, 153, + 124, 163, + 126, 13, + 126, 15, + 126, 27, + 126, 28, + 126, 110, + 126, 114, + 126, 116, + 126, 117, + 126, 121, + 126, 122, + 126, 124, + 126, 127, + 126, 128, + 126, 129, + 126, 130, + 126, 131, + 126, 141, + 126, 142, + 126, 146, + 126, 147, + 126, 156, + 126, 171, + 126, 173, + 127, 110, + 127, 114, + 127, 117, + 127, 121, + 127, 122, + 127, 124, + 127, 128, + 127, 129, + 127, 131, + 127, 133, + 127, 136, + 127, 139, + 127, 142, + 127, 148, + 127, 165, + 128, 13, + 128, 15, + 128, 110, + 128, 114, + 128, 116, + 128, 117, + 128, 121, + 128, 124, + 128, 130, + 128, 141, + 128, 142, + 128, 144, + 128, 147, + 128, 150, + 128, 152, + 128, 153, + 128, 154, + 128, 156, + 128, 157, + 128, 158, + 128, 159, + 128, 161, + 128, 163, + 128, 167, + 128, 169, + 128, 170, + 128, 172, + 128, 173, + 129, 13, + 129, 15, + 129, 27, + 129, 28, + 129, 110, + 129, 114, + 129, 117, + 129, 121, + 129, 124, + 129, 130, + 129, 139, + 129, 141, + 129, 143, + 129, 144, + 129, 145, + 129, 146, + 129, 147, + 129, 148, + 129, 149, + 129, 150, + 129, 151, + 129, 152, + 129, 153, + 129, 154, + 129, 155, + 129, 156, + 129, 157, + 129, 158, + 129, 159, + 129, 163, + 129, 164, + 129, 166, + 129, 167, + 129, 172, + 129, 173, + 130, 110, + 130, 114, + 130, 121, + 130, 128, + 130, 129, + 130, 133, + 130, 141, + 130, 153, + 131, 117, + 131, 124, + 131, 127, + 131, 130, + 131, 139, + 131, 156, + 131, 161, + 132, 124, + 132, 142, + 135, 142, + 135, 161, + 136, 141, + 138, 110, + 138, 114, + 138, 116, + 138, 117, + 138, 121, + 138, 122, + 138, 124, + 138, 127, + 138, 128, + 138, 131, + 138, 133, + 138, 139, + 138, 141, + 139, 114, + 139, 116, + 139, 117, + 139, 121, + 139, 131, + 139, 141, + 139, 146, + 139, 148, + 139, 153, + 139, 154, + 139, 173, + 140, 110, + 140, 114, + 140, 116, + 140, 121, + 140, 124, + 140, 127, + 140, 128, + 140, 131, + 140, 133, + 140, 146, + 140, 153, + 140, 154, + 142, 149, + 142, 160, + 142, 161, + 142, 165, + 143, 142, + 143, 146, + 143, 147, + 143, 148, + 143, 149, + 143, 153, + 143, 154, + 143, 159, + 143, 161, + 143, 162, + 143, 163, + 143, 165, + 143, 168, + 143, 171, + 143, 173, + 144, 142, + 144, 143, + 144, 146, + 144, 147, + 144, 148, + 144, 149, + 144, 153, + 144, 154, + 144, 156, + 144, 159, + 144, 160, + 144, 161, + 144, 162, + 144, 165, + 144, 168, + 144, 173, + 145, 13, + 145, 15, + 145, 142, + 145, 146, + 145, 147, + 145, 149, + 145, 153, + 145, 156, + 145, 159, + 145, 173, + 146, 168, + 146, 171, + 147, 143, + 147, 146, + 147, 148, + 147, 149, + 147, 153, + 147, 160, + 147, 161, + 147, 163, + 147, 165, + 148, 143, + 148, 161, + 148, 165, + 148, 168, + 149, 143, + 149, 146, + 149, 147, + 149, 149, + 149, 153, + 149, 156, + 149, 159, + 149, 161, + 149, 162, + 149, 165, + 149, 168, + 152, 142, + 152, 143, + 152, 147, + 152, 149, + 152, 153, + 152, 156, + 152, 159, + 152, 160, + 152, 161, + 152, 171, + 153, 156, + 153, 165, + 154, 143, + 154, 149, + 154, 161, + 156, 146, + 156, 148, + 156, 149, + 156, 153, + 156, 160, + 156, 161, + 156, 163, + 156, 165, + 158, 146, + 158, 149, + 158, 153, + 158, 160, + 158, 161, + 158, 163, + 158, 165, + 158, 173, + 159, 148, + 159, 156, + 159, 165, + 159, 171, + 160, 13, + 160, 15, + 160, 142, + 160, 146, + 160, 147, + 160, 148, + 160, 153, + 160, 156, + 160, 159, + 160, 161, + 161, 13, + 161, 15, + 161, 142, + 161, 143, + 161, 146, + 161, 147, + 161, 148, + 161, 153, + 161, 154, + 161, 156, + 161, 158, + 161, 159, + 161, 162, + 161, 171, + 161, 173, + 162, 143, + 162, 146, + 162, 153, + 162, 160, + 162, 161, + 162, 165, + 162, 173, + 163, 142, + 163, 143, + 163, 147, + 163, 149, + 163, 156, + 163, 159, + 163, 160, + 163, 162, + 163, 165, + 164, 147, + 164, 149, + 164, 156, + 164, 159, + 167, 147, + 167, 156, + 167, 161, + 170, 160, + 170, 165, + 171, 146, + 171, 147, + 171, 149, + 171, 153, + 171, 156, + 171, 160, + 171, 163, + 171, 173, + 172, 146, + 172, 148, + 172, 153, + 172, 154, + 172, 160, + 172, 163, + 172, 165, + 186, 13, + 186, 15, + 188, 13, + 188, 15, + 188, 27, + 188, 28 +}; + +/* Kerning between the respective left and right glyphs + * 4.4 format which needs to scaled with `kern_scale`*/ +static const int8_t kern_pair_values[] = +{ + -18, -6, -6, -24, -18, -24, -24, -12, + -24, -6, -6, -6, -35, -35, -18, -12, + -24, -24, -24, -24, -12, -6, -41, -41, + -24, -6, -6, -6, -6, -6, -35, -18, + -35, -35, -35, -24, -6, -35, -35, -35, + -12, -35, -12, -35, -12, -18, -18, -29, + -18, -29, -12, -12, -24, -24, -18, -6, + -18, -12, -12, -12, -18, -6, -18, -6, + -6, -12, -12, -6, -6, -6, -6, -3, + -6, -41, -29, -41, -18, -21, -24, -24, + -29, -12, -29, -24, -29, -18, -18, -6, + -18, -18, -24, -24, -18, -18, -24, -24, + -39, -39, 11, -4, 7, -7, -4, -7, + -25, -14, -11, -25, -7, 4, -7, -4, + 4, 7, -7, -4, -4, -4, -14, -7, + -4, -7, -14, -11, -4, -4, -4, -7, + -11, -7, -7, -11, -4, -11, -11, -21, + -11, -11, -14, -14, -18, -11, -4, -4, + -11, -4, -4, -11, -4, -39, -39, -21, + -21, -7, -18, -7, -18, -14, -11, -18, + -18, -21, -21, -18, -18, -18, -18, -21, + -18, -21, -18, -18, -18, -21, 4, -7, + -11, 11, 4, 7, -7, -4, -4, -7, + -4, 4, 7, 7, 4, -4, -4, -4, + -4, -4, -4, -7, -4, -4, -7, -4, + -4, -4, -4, 4, -11, -4, 4, 4, + -4, -4, 4, 4, 4, 4, 4, -4, + 4, -7, -7, -7, -4, -7, -14, -7, + -7, -7, -4, -4, -60, -60, -7, -7, + -21, -21, -4, -7, -18, -4, -7, -4, + -14, -7, -4, -14, -7, -11, -25, -14, + -14, -7, -11, -7, -7, -4, -11, -4, + -7, -11, -11, -18, -11, -11, -4, 4, + 7, -4, -35, -35, -11, -11, 4, -4, + -7, -14, -11, -7, -14, -14, -18, -14, + -14, -14, -14, -25, -14, -18, -18, -18, + -14, -14, -14, -14, -14, -18, -42, -42, + -7, -7, -21, -14, -7, -11, -11, -11, + -7, -7, -7, -18, -14, -25, -21, -11, + -18, -14, -11, -14, -21, -14, -14, -21, + -14, -14, -21, -14, -14, -14, -14, -14, + -21, -7, -11, -11, -18, -14, -7, -11, + -11, -7, -11, -11, -11, -11, -4, -7, + -7, 7, 4, 7, -11, -7, -7, -11, + -4, -11, -7, -7, -7, -32, -14, -25, + -4, -14, -11, -4, -4, -11, -11, -7, + -11, 4, -11, -4, -4, -11, -14, -7, + -14, -4, -4, -18, -14, -11, -14, -14, + -4, -4, -7, -4, -7, -7, -14, -4, + -4, -7, -14, -7, -4, -7, -4, -11, + -11, -11, -4, -7, -4, -4, -4, -4, + -4, -4, -7, -4, -4, -4, -7, -7, + -4, -14, -11, -4, -39, -39, -7, -14, + -7, -4, -7, -7, -7, -4, -7, 4, + -4, -7, -4, -7, -11, -11, -4, -7, + -11, 4, 4, -4, 7, -4, -7, -4, + -4, -4, -4, -4, -4, -4, -11, -7, + 7, 7, 4, 4, 4, 4, 4, 4, + 4, 4, 4, -7, -4, -4, 4, -7, + -4, -4, -7, -7, -4, -4, -7, -7, + -4, -11, -7, -4, -4, -7, -4, 4, + 4, -4, 4, -35, -35, -4, -11, -4, + 11, -7, -4, -4, 4, -32, -32, -4, + 4, -11, -4, 4, -7, -4, -4, -4, + -4, -4, -4, -4, -4, -7, -7, -7, + -4, -7, -4, -4, -4, -4, -4, -4, + -4, -4, -4, -7, -4, -4, -4, -4, + -4, -4, 4, -25, -21, -7, 4, -4, + -7, 4, -7, -4, -4, -7, -4, -7, + -4, -7, -4, -7, -32, -32, -39, -39, + -7, -7 +}; + +/*Collect the kern pair's data in one place*/ +static const lv_font_fmt_txt_kern_pair_t kern_pairs = +{ + .glyph_ids = kern_pair_glyph_ids, + .values = kern_pair_values, + .pair_cnt = 562, + .glyph_ids_size = 0 +}; + +/*-------------------- + * ALL CUSTOM DATA + *--------------------*/ + +/*Store all the custom data of the font*/ +static lv_font_fmt_txt_dsc_t font_dsc = { + .glyph_bitmap = gylph_bitmap, + .glyph_dsc = glyph_dsc, + .cmaps = cmaps, + .cmap_num = 5, + .bpp = 4, + + .kern_scale = 16, + .kern_dsc = &kern_pairs, + .kern_classes = 0 +}; + + +/*----------------- + * PUBLIC FONT + *----------------*/ + +/*Initialize a public general font descriptor*/ +lv_font_t arial_20 = { + .dsc = &font_dsc, /*The custom font data. Will be accessed by `get_glyph_bitmap/dsc` */ + .get_glyph_bitmap = lv_font_get_bitmap_fmt_txt, /*Function pointer to get glyph's bitmap*/ + .get_glyph_dsc = lv_font_get_glyph_dsc_fmt_txt, /*Function pointer to get glyph's data*/ + .line_height = 24, /*The maximum line height required by the font*/ + .base_line = 5, /*Baseline measured from the bottom of the line*/ +}; + +#endif /*#if ARIAL_20*/ diff --git a/components/lv_examples/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.c b/components/lv_examples/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.c new file mode 100644 index 0000000..bd1e6fe --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.c @@ -0,0 +1,90 @@ +/** + * @file lv_tutorial_fonts.h + * + */ + +/* + * -------------------------------------------------------------- + * How to add new fonts (even Unicode) to the graphic library + * -------------------------------------------------------------- + * + * BUILT-IN FONTS + * - There are several built in font in the library which can be enabled in lv_conf.h + * - For example: lv_font_roboto_16, + + * USING A FONT + * - Just set a font in style.text.font + * - For example: style.text.font = &lv_font_roboto_16 + * + * SYMBOLS + * - There are symbols as well which stored as fonts. + * - To reference a symbol use the defines LV_SYMBOL_... (LV_SYMBOL_FILE, LV_SYMBOL_OK, etc see lv_symbol_def.h) + * + * BIT-PER-PIXEL + * - The fonts can describe a pixel with 1, 2 or 4 bit. The higher value results smoother letters + * but larger foot memory foot print. + * + * ADDING NEW FONTS + * - You can generate your own fonts using the online font converter tool: + * https://littlevgl.com/ttf-font-to-c-array + * - All information is provided on the website + * + */ + + + +/********************* + * INCLUDES + *********************/ +#include "lv_tutorial_fonts.h" +#if LV_USE_TUTORIALS + +#include "lvgl/lvgl.h" + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ + +/********************** + * STATIC VARIABLES + **********************/ +LV_FONT_DECLARE(arial_20) /*Declare a font*/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Concat two font and create label with Unicode characters + */ +void lv_tutorial_fonts(void) +{ + /*Create a style and use the new font*/ + static lv_style_t style1; + lv_style_copy(&style1, &lv_style_plain); + style1.text.font = &arial_20; /*Set the base font whcih is concatenated with the others*/ + + /*Create a label and set new text*/ + lv_obj_t * label = lv_label_create(lv_disp_get_scr_act(NULL), NULL); + lv_obj_set_pos(label, 10, 10); + lv_label_set_style(label, LV_LABEL_STYLE_MAIN, &style1); + lv_label_set_text(label, "Hello\nпривет\n∞∑"); /*Use ASCII and Cyrillic letters together*/ +} + +/********************** + * STATIC FUNCTIONS + **********************/ + +#endif /*LV_USE_TUTORIALS*/ diff --git a/components/lv_examples/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.h b/components/lv_examples/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.h new file mode 100644 index 0000000..dd7f625 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.h @@ -0,0 +1,50 @@ +/** + * @file lv_tutorial_fonts.h + * + */ + +#ifndef LV_TUTORIAL_FONTS_H +#define LV_TUTORIAL_FONTS_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../lvgl/lvgl.h" +#include "../../../lv_ex_conf.h" +#endif + +#if LV_USE_TUTORIALS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +void lv_tutorial_fonts(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_TUTORIALS*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TUTORIAL_FONTS_H*/ diff --git a/components/lv_examples/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.mk b/components/lv_examples/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.mk new file mode 100644 index 0000000..6d37f24 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/7_fonts/lv_tutorial_fonts.mk @@ -0,0 +1,7 @@ +CSRCS += lv_tutorial_fonts.c +CSRCS += arial_20.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tutorial/7_fonts +VPATH += :$(LVGL_DIR)/lv_examples/lv_tutorial/7_fonts + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tutorial/7_fonts" diff --git a/components/lv_examples/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.c b/components/lv_examples/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.c new file mode 100644 index 0000000..d46286c --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.c @@ -0,0 +1,144 @@ +/** + * @file lv_tutorial_animation.h + * + */ + +/* + * YOu can add animations to improve the user experience. + * Basically you can animate any attribute by writing a + * 'void func(void *ptr, int32_t value)' function. + * The animation will call a function like this to update the value of 'ptr' to 'value'. + * Fortunately near all 'set' functions in LittlevGL have a similar prototype. + * E.g. lv_obj_set_width(lv_obj_t *obj, lv_coord_t w) + * You will see below how declare and start an animation. + * + * There are built in animation which can be started with the lv_obj_anim() function. + * + * The other type of animations are the style animations where you can fade + * one style into an other. See the example below. + * + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_tutorial_animations.h" +#if LV_USE_TUTORIALS && LV_USE_ANIMATION + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ + +/********************** + * STATIC VARIABLES + **********************/ +lv_style_t btn3_style; + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Crate some objects an animate them + */ +void lv_tutorial_animations(void) +{ + lv_obj_t * scr = lv_disp_get_scr_act(NULL); /*Get the current screen*/ + + lv_obj_t * label; + + /*Create a button the demonstrate built-in animations*/ + lv_obj_t * btn1; + btn1 = lv_btn_create(scr, NULL); + lv_obj_set_pos(btn1, 10, 10); /*Set a position. It will be the animation's destination*/ + lv_obj_set_size(btn1, 80, 50); + + label = lv_label_create(btn1, NULL); + lv_label_set_text(label, "Float"); + + /* Float in the button using a built-in function + * Delay the animation with 2000 ms and float in 300 ms. NULL means no end callback*/ + lv_anim_t a; + a.var = btn1; + a.start = -lv_obj_get_height(btn1); + a.end = lv_obj_get_y(btn1); + a.exec_cb = (lv_anim_exec_xcb_t)lv_obj_set_y; + a.path_cb = lv_anim_path_linear; + a.ready_cb = NULL; + a.act_time = -2000; /*Delay the animation*/ + a.time = 300; + a.playback = 0; + a.playback_pause = 0; + a.repeat = 0; + a.repeat_pause = 0; +#if LV_USE_USER_DATA + a.user_data = NULL; +#endif + lv_anim_create(&a); + + /*Create a button to demonstrate user defined animations*/ + lv_obj_t * btn2; + btn2 = lv_btn_create(scr, NULL); + lv_obj_set_pos(btn2, 10, 80); /*Set a position. It will be the animation's destination*/ + lv_obj_set_size(btn2, 80, 50); + + label = lv_label_create(btn2, NULL); + lv_label_set_text(label, "Move"); + + /*Create an animation to move the button continuously left to right*/ + a.var = btn2; + a.start = lv_obj_get_x(btn2); + a.end = a.start + (100); + a.exec_cb = (lv_anim_exec_xcb_t)lv_obj_set_x; + a.path_cb = lv_anim_path_linear; + a.ready_cb = NULL; + a.act_time = -1000; /*Negative number to set a delay*/ + a.time = 400; /*Animate in 400 ms*/ + a.playback = 1; /*Make the animation backward too when it's ready*/ + a.playback_pause = 0; /*Wait before playback*/ + a.repeat = 1; /*Repeat the animation*/ + a.repeat_pause = 500; /*Wait before repeat*/ + lv_anim_create(&a); + + /*Create a button to demonstrate the style animations*/ + lv_obj_t * btn3; + btn3 = lv_btn_create(scr, NULL); + lv_obj_set_pos(btn3, 10, 150); /*Set a position. It will be the animation's destination*/ + lv_obj_set_size(btn3, 80, 50); + + label = lv_label_create(btn3, NULL); + lv_label_set_text(label, "Style"); + + /*Create a unique style for the button*/ + lv_style_copy(&btn3_style, lv_btn_get_style(btn3, LV_BTN_STYLE_REL)); + lv_btn_set_style(btn3, LV_BTN_STATE_REL, &btn3_style); + + /*Animate the new style*/ + lv_anim_t sa; + lv_style_anim_init(&sa); + lv_style_anim_set_styles(&sa, &btn3_style, &lv_style_btn_rel, &lv_style_pretty); + lv_style_anim_set_time(&sa, 500, 500); + lv_style_anim_set_playback(&sa, 500); + lv_style_anim_set_repeat(&sa, 500); + lv_style_anim_create(&sa); +} + +/********************** + * STATIC FUNCTIONS + **********************/ + +#endif /*LV_USE_TUTORIALS && LV_USE_ANIMATION*/ + diff --git a/components/lv_examples/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.h b/components/lv_examples/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.h new file mode 100644 index 0000000..905d4fa --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.h @@ -0,0 +1,54 @@ +/** + * @file lv_tutorial_animation.h + * + */ + +#ifndef LV_TUTORIAL_ANIMATION_H +#define LV_TUTORIAL_ANIMATION_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../lvgl/lvgl.h" +#include "../../../lv_ex_conf.h" +#endif + +#if LV_USE_TUTORIALS && LV_USE_ANIMATION + + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/** + * Crate some objects an animate them + */ +void lv_tutorial_animations(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_TUTORIALS*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TUTORIAL_ANTMATION_H*/ diff --git a/components/lv_examples/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.mk b/components/lv_examples/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.mk new file mode 100644 index 0000000..3a70125 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/8_animations/lv_tutorial_animations.mk @@ -0,0 +1,6 @@ +CSRCS += lv_tutorial_animations.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tutorial/8_animations +VPATH += :$(LVGL_DIR)/lv_examples/lv_tutorial/8_animations + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tutorial/8_animations" diff --git a/components/lv_examples/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.c b/components/lv_examples/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.c new file mode 100644 index 0000000..cbec7ed --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.c @@ -0,0 +1,135 @@ +/** + * @file lv_tutorial_responsive.h + * + */ + +/* + * ------------------------------------------------- + * See how to create responsive user interfaces + * ------------------------------------------------ + * + * Changing the display to different resolution, updating the GUI design + * or working with dynamic content are much more easier if you use some + * useful features of the library and follow a few rules. + * + * LV_DPI + * - In lv_conf.h LV_DPI shows how many pixels are there in 1 inch + * - You should use it as general unit. For example: + * lv_obj_set_pos(btn1, LV_DPI / 2, LV_DPI); + * - Built-in styles and themes also use this to set padding and sizes. + * So lowering LV_DPI will make paddings smaller. + * - This way changing to higher pixel density display won't brake your design + * + * ALIGN + * - Use the 'lv_obj_align()' function to align the object relative to each other + * lv_obj_align(btn1, btn2, LV_ALIGN_OUT_RIGHT_MID, LV_DPI / 2, 0); + * - It helps to keep an arrangement even is an object is moved + * - the align happens only once when you call the function. + * + * AUTO FIT + * - The container like objects (lv_cont, lv_btn, lv_page) support auto-fit + * - It means the object's size will automatically set to include all its children + * - Can be enabled separately horizontally and vertically + * - It is useful if you have dynamic content + * - For example a message box will be as high as its text needs + * - It uses the style.body.padding.hor/ver to make a padding + * - Auto-fit runs every time when a children changes (not only once when applied) + * + * LAYOUT + * - You can apply a layout on any container like object + * - It automatically arranges the children according to a policy + * - For example `lv_list` uses it to put elements below each other + * - Layout runs every time when a children changes (not only once when applied) + * + */ + +/********************* + * INCLUDES + *********************/ +#include "lv_tutorial_responsive.h" +#if LV_USE_TUTORIALS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +/** + * Create some objects an animate them + */ +void lv_tutorial_responsive(void) +{ + lv_obj_t * scr = lv_disp_get_scr_act(NULL); /*Get the current screen*/ + + lv_obj_t * label; + + /*LV_DPI*/ + lv_obj_t * btn1; + btn1 = lv_btn_create(scr, NULL); + lv_obj_set_pos(btn1, LV_DPI / 10, LV_DPI / 10); /*Use LV_DPI to set the position*/ + lv_obj_set_size(btn1, LV_DPI, LV_DPI / 2); /*Use LVDOI to set the size*/ + + label = lv_label_create(btn1, NULL); + lv_label_set_text(label, "LV_DPI"); + + /*ALIGN*/ + lv_obj_t * btn2; + btn2 = lv_btn_create(scr, btn1); + lv_obj_align(btn2, btn1, LV_ALIGN_OUT_RIGHT_MID, LV_DPI / 4, 0); + + label = lv_label_create(btn2, NULL); + lv_label_set_text(label, "Align"); + + /*AUTO FIT*/ + lv_obj_t * btn3; + btn3 = lv_btn_create(scr, btn1); + lv_btn_set_fit(btn3, LV_FIT_TIGHT); + + label = lv_label_create(btn3, NULL); + lv_label_set_text(label, "Fit"); + + lv_obj_align(btn3, btn1, LV_ALIGN_OUT_BOTTOM_MID, 0, LV_DPI / 4); /*Align when already resized because of the label*/ + + /*LAYOUT*/ + lv_obj_t * btn4; + btn4 = lv_btn_create(scr, btn1); + lv_btn_set_fit(btn4, LV_FIT_TIGHT); /*Enable fit too*/ + lv_btn_set_layout(btn4, LV_LAYOUT_COL_R); /*Right aligned column layout*/ + + label = lv_label_create(btn4, NULL); + lv_label_set_text(label, "First"); + + label = lv_label_create(btn4, NULL); + lv_label_set_text(label, "Second"); + + label = lv_label_create(btn4, NULL); + lv_label_set_text(label, "Third"); + + lv_obj_align(btn4, btn2, LV_ALIGN_OUT_BOTTOM_MID, 0, LV_DPI / 4); /*Align when already resized because of the label*/ + +} + +/********************** + * STATIC FUNCTIONS + **********************/ + +#endif /*LV_USE_TUTORIALS*/ diff --git a/components/lv_examples/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.h b/components/lv_examples/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.h new file mode 100644 index 0000000..b20fdd5 --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.h @@ -0,0 +1,50 @@ +/** + * @file lv_tutorial_responsive.h + * + */ + +#ifndef LV_TUTORIAL_RESPONSIVE_H +#define LV_TUTORIAL_RESPONSIVE_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#ifdef LV_CONF_INCLUDE_SIMPLE +#include "lvgl.h" +#include "lv_ex_conf.h" +#else +#include "../../../lvgl/lvgl.h" +#include "../../../lv_ex_conf.h" +#endif + +#if LV_USE_TUTORIALS + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +void lv_tutorial_responsive(void); + +/********************** + * MACROS + **********************/ + +#endif /*LV_USE_TUTORIALS*/ + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_TUTORIAL_ANTMATION_H*/ diff --git a/components/lv_examples/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.mk b/components/lv_examples/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.mk new file mode 100644 index 0000000..80276ea --- /dev/null +++ b/components/lv_examples/lv_examples/lv_tutorial/9_responsive/lv_tutorial_responsive.mk @@ -0,0 +1,6 @@ +CSRCS += lv_tutorial_responsive.c + +DEPPATH += --dep-path $(LVGL_DIR)/lv_examples/lv_tutorial/9_responsive +VPATH += :$(LVGL_DIR)/lv_examples/lv_tutorial/9_responsive + +CFLAGS += "-I$(LVGL_DIR)/lv_examples/lv_tutorial/9_responsive" diff --git a/components/lvgl/CMakeLists.txt b/components/lvgl/CMakeLists.txt new file mode 100644 index 0000000..5550ee4 --- /dev/null +++ b/components/lvgl/CMakeLists.txt @@ -0,0 +1,5 @@ +file(GLOB_RECURSE SOURCES lvgl/src/*.c) +idf_component_register(SRCS ${SOURCES} + INCLUDE_DIRS . lvgl) + +target_compile_definitions(${COMPONENT_LIB} INTERFACE LV_CONF_INCLUDE_SIMPLE=1) diff --git a/components/lvgl/component.mk b/components/lvgl/component.mk new file mode 100644 index 0000000..a8edb1e --- /dev/null +++ b/components/lvgl/component.mk @@ -0,0 +1,18 @@ +# +# Component Makefile +# + +# Set simple includes as default +ifndef LV_CONF_INCLUDE_SIMPLE +CFLAGS += -DLV_CONF_INCLUDE_SIMPLE +endif + +COMPONENT_SRCDIRS := lvgl/ \ + lvgl/src/lv_core \ + lvgl/src/lv_draw \ + lvgl/src/lv_objx \ + lvgl/src/lv_hal \ + lvgl/src/lv_misc \ + lvgl/src/lv_themes \ + lvgl/src/lv_font +COMPONENT_ADD_INCLUDEDIRS := $(COMPONENT_SRCDIRS) . diff --git a/components/lvgl/lv_conf.h b/components/lvgl/lv_conf.h new file mode 100644 index 0000000..91d4084 --- /dev/null +++ b/components/lvgl/lv_conf.h @@ -0,0 +1,602 @@ +/** + * @file lv_conf.h + * + */ + +/* + * COPY THIS FILE AS `lv_conf.h` NEXT TO the `lvgl` FOLDER + */ + +#if 1 /*Set it to "1" to enable content*/ + +#ifndef LV_CONF_H +#define LV_CONF_H +/* clang-format off */ + +#include + +#include "esp_attr.h" +#include "sdkconfig.h" + +/*==================== + Graphical settings + *====================*/ + +/* Maximal horizontal and vertical resolution to support by the library.*/ +#define LV_HOR_RES_MAX (CONFIG_LVGL_DISPLAY_WIDTH) +#define LV_VER_RES_MAX (CONFIG_LVGL_DISPLAY_HEIGHT) + +/* Color depth: + * - 1: 1 byte per pixel + * - 8: RGB233 + * - 16: RGB565 + * - 32: ARGB8888 + */ +#define LV_COLOR_DEPTH 16 + +/* Swap the 2 bytes of RGB565 color. + * Useful if the display has a 8 bit interface (e.g. SPI)*/ +#if CONFIG_LVGL_TFT_DISPLAY_CONTROLLER == 0 +#define LV_COLOR_16_SWAP 1 +#elif CONFIG_LVGL_TFT_DISPLAY_CONTROLLER == 1 +#define LV_COLOR_16_SWAP 0 +#elif CONFIG_LVGL_TFT_DISPLAY_CONTROLLER == 2 +#define LV_COLOR_16_SWAP 1 +#elif CONFIG_LVGL_TFT_DISPLAY_CONTROLLER == 3 +#define LV_COLOR_16_SWAP 1 +#endif + +/* 1: Enable screen transparency. + * Useful for OSD or other overlapping GUIs. + * Requires `LV_COLOR_DEPTH = 32` colors and the screen's style should be modified: `style.body.opa = ...`*/ +#define LV_COLOR_SCREEN_TRANSP 0 + +/*Images pixels with this color will not be drawn (with chroma keying)*/ +#define LV_COLOR_TRANSP LV_COLOR_LIME /*LV_COLOR_LIME: pure green*/ + +/* Enable chroma keying for indexed images. */ +#define LV_INDEXED_CHROMA 1 + +/* Enable anti-aliasing (lines, and radiuses will be smoothed) */ +#define LV_ANTIALIAS 1 + +/* Default display refresh period. + * Can be changed in the display driver (`lv_disp_drv_t`).*/ +#define LV_DISP_DEF_REFR_PERIOD 30 /*[ms]*/ + +/* Dot Per Inch: used to initialize default sizes. + * E.g. a button with width = LV_DPI / 2 -> half inch wide + * (Not so important, you can adjust it to modify default sizes and spaces)*/ +#define LV_DPI 100 /*[px]*/ + +/* Type of coordinates. Should be `int16_t` (or `int32_t` for extreme cases) */ +typedef int16_t lv_coord_t; + +/*========================= + Memory manager settings + *=========================*/ + +/* LittelvGL's internal memory manager's settings. + * The graphical objects and other related data are stored here. */ + +/* 1: use custom malloc/free, 0: use the built-in `lv_mem_alloc` and `lv_mem_free` */ +#define LV_MEM_CUSTOM 0 +#if LV_MEM_CUSTOM == 0 +/* Size of the memory used by `lv_mem_alloc` in bytes (>= 2kB)*/ +# define LV_MEM_SIZE (32U * 1024U) + +/* Complier prefix for a big array declaration */ +# define LV_MEM_ATTR + +/* Set an address for the memory pool instead of allocating it as an array. + * Can be in external SRAM too. */ +# define LV_MEM_ADR 0 + +/* Automatically defrag. on free. Defrag. means joining the adjacent free cells. */ +# define LV_MEM_AUTO_DEFRAG 1 +#else /*LV_MEM_CUSTOM*/ +# define LV_MEM_CUSTOM_INCLUDE /*Header for the dynamic memory function*/ +# define LV_MEM_CUSTOM_ALLOC malloc /*Wrapper to malloc*/ +# define LV_MEM_CUSTOM_FREE free /*Wrapper to free*/ +#endif /*LV_MEM_CUSTOM*/ + +/* Garbage Collector settings + * Used if lvgl is binded to higher level language and the memory is managed by that language */ +#define LV_ENABLE_GC 0 +#if LV_ENABLE_GC != 0 +# define LV_GC_INCLUDE "gc.h" /*Include Garbage Collector related things*/ +# define LV_MEM_CUSTOM_REALLOC your_realloc /*Wrapper to realloc*/ +# define LV_MEM_CUSTOM_GET_SIZE your_mem_get_size /*Wrapper to lv_mem_get_size*/ +#endif /* LV_ENABLE_GC */ + +/*======================= + Input device settings + *=======================*/ + +/* Input device default settings. + * Can be changed in the Input device driver (`lv_indev_drv_t`)*/ + +/* Input device read period in milliseconds */ +#define LV_INDEV_DEF_READ_PERIOD 30 + +/* Drag threshold in pixels */ +#define LV_INDEV_DEF_DRAG_LIMIT 10 + +/* Drag throw slow-down in [%]. Greater value -> faster slow-down */ +#define LV_INDEV_DEF_DRAG_THROW 20 + +/* Long press time in milliseconds. + * Time to send `LV_EVENT_LONG_PRESSSED`) */ +#define LV_INDEV_DEF_LONG_PRESS_TIME 400 + +/* Repeated trigger period in long press [ms] + * Time between `LV_EVENT_LONG_PRESSED_REPEAT */ +#define LV_INDEV_DEF_LONG_PRESS_REP_TIME 100 + +/*================== + * Feature usage + *==================*/ + +/*1: Enable the Animations */ +#define LV_USE_ANIMATION 1 +#if LV_USE_ANIMATION + +/*Declare the type of the user data of animations (can be e.g. `void *`, `int`, `struct`)*/ +typedef void * lv_anim_user_data_t; + +#endif + +/* 1: Enable shadow drawing*/ +#define LV_USE_SHADOW 1 + +/* 1: Enable object groups (for keyboard/encoder navigation) */ +#define LV_USE_GROUP 1 +#if LV_USE_GROUP +typedef void * lv_group_user_data_t; +#endif /*LV_USE_GROUP*/ + +/* 1: Enable GPU interface*/ +#define LV_USE_GPU 1 + +/* 1: Enable file system (might be required for images */ +#define LV_USE_FILESYSTEM 1 +#if LV_USE_FILESYSTEM +/*Declare the type of the user data of file system drivers (can be e.g. `void *`, `int`, `struct`)*/ +typedef void * lv_fs_drv_user_data_t; +#endif + +/*1: Add a `user_data` to drivers and objects*/ +#define LV_USE_USER_DATA 0 + +/*======================== + * Image decoder and cache + *========================*/ + +/* 1: Enable indexed (palette) images */ +#define LV_IMG_CF_INDEXED 1 + +/* 1: Enable alpha indexed images */ +#define LV_IMG_CF_ALPHA 1 + +/* Default image cache size. Image caching keeps the images opened. + * If only the built-in image formats are used there is no real advantage of caching. + * (I.e. no new image decoder is added) + * With complex image decoders (e.g. PNG or JPG) caching can save the continuous open/decode of images. + * However the opened images might consume additional RAM. + * LV_IMG_CACHE_DEF_SIZE must be >= 1 */ +#define LV_IMG_CACHE_DEF_SIZE 1 + +/*Declare the type of the user data of image decoder (can be e.g. `void *`, `int`, `struct`)*/ +typedef void * lv_img_decoder_user_data_t; + +/*===================== + * Compiler settings + *====================*/ +/* Define a custom attribute to `lv_tick_inc` function */ +#define LV_ATTRIBUTE_TICK_INC IRAM_ATTR + +/* Define a custom attribute to `lv_task_handler` function */ +#define LV_ATTRIBUTE_TASK_HANDLER + +/* With size optimization (-Os) the compiler might not align data to + * 4 or 8 byte boundary. This alignment will be explicitly applied where needed. + * E.g. __attribute__((aligned(4))) */ +#define LV_ATTRIBUTE_MEM_ALIGN + +/* Attribute to mark large constant arrays for example + * font's bitmaps */ +#define LV_ATTRIBUTE_LARGE_CONST + +/* Export integer constant to binding. + * This macro is used with constants in the form of LV_ that + * should also appear on lvgl binding API such as Micropython + * + * The default value just prevents a GCC warning. + */ +#define LV_EXPORT_CONST_INT(int_value) struct _silence_gcc_warning + +/*=================== + * HAL settings + *==================*/ + +/* 1: use a custom tick source. + * It removes the need to manually update the tick with `lv_tick_inc`) */ +#define LV_TICK_CUSTOM 0 +#if LV_TICK_CUSTOM == 1 +#define LV_TICK_CUSTOM_INCLUDE "something.h" /*Header for the sys time function*/ +#define LV_TICK_CUSTOM_SYS_TIME_EXPR (millis()) /*Expression evaluating to current systime in ms*/ +#endif /*LV_TICK_CUSTOM*/ + +typedef void * lv_disp_drv_user_data_t; /*Type of user data in the display driver*/ +typedef void * lv_indev_drv_user_data_t; /*Type of user data in the input device driver*/ + +/*================ + * Log settings + *===============*/ + +/*1: Enable the log module*/ +#define LV_USE_LOG 1 +#if LV_USE_LOG +/* How important log should be added: + * LV_LOG_LEVEL_TRACE A lot of logs to give detailed information + * LV_LOG_LEVEL_INFO Log important events + * LV_LOG_LEVEL_WARN Log if something unwanted happened but didn't cause a problem + * LV_LOG_LEVEL_ERROR Only critical issue, when the system may fail + * LV_LOG_LEVEL_NONE Do not log anything + */ +# define LV_LOG_LEVEL LV_LOG_LEVEL_WARN + +/* 1: Print the log with 'printf'; + * 0: user need to register a callback with `lv_log_register_print_cb`*/ +# define LV_LOG_PRINTF 1 +#endif /*LV_USE_LOG*/ + +/*================= + * Debug settings + *================*/ + +/* If Debug is enabled LittelvGL validates the parameters of the functions. + * If an invalid parameter is found an error log message is printed and + * the MCU halts at the error. (`LV_USE_LOG` should be enabled) + * If you are debugging the MCU you can pause + * the debugger to see exactly where the issue is. + * + * The behavior of asserts can be overwritten by redefining them here. + * E.g. #define LV_ASSERT_MEM(p) + */ +#define LV_USE_DEBUG 0 +#if LV_USE_DEBUG + +/*Check if the parameter is NULL. (Quite fast) */ +#define LV_USE_ASSERT_NULL 1 + +/*Checks is the memory is successfully allocated or no. (Quite fast)*/ +#define LV_USE_ASSERT_MEM 1 + +/* Check the strings. + * Search for NULL, very long strings, invalid characters, and unnatural repetitions. (Slow) + * If disabled `LV_USE_ASSERT_NULL` will be performed instead (if it's enabled) */ +#define LV_USE_ASSERT_STR 0 + +/* Check NULL, the object's type and existence (e.g. not deleted). (Quite slow) + * If disabled `LV_USE_ASSERT_NULL` will be performed instead (if it's enabled) */ +#define LV_USE_ASSERT_OBJ 0 + +/*Check if the styles are properly initialized. (Fast)*/ +#define LV_USE_ASSERT_STYLE 1 + +#endif /*LV_USE_DEBUG*/ + +/*================ + * THEME USAGE + *================*/ +#define LV_THEME_LIVE_UPDATE 0 /*1: Allow theme switching at run time. Uses 8..10 kB of RAM*/ + +#define LV_USE_THEME_TEMPL 0 /*Just for test*/ +#define LV_USE_THEME_DEFAULT 0 /*Built mainly from the built-in styles. Consumes very few RAM*/ +#define LV_USE_THEME_ALIEN 0 /*Dark futuristic theme*/ +#define LV_USE_THEME_NIGHT 0 /*Dark elegant theme*/ +#define LV_USE_THEME_MONO 0 /*Mono color theme for monochrome displays*/ +#define LV_USE_THEME_MATERIAL 0 /*Flat theme with bold colors and light shadows*/ +#define LV_USE_THEME_ZEN 0 /*Peaceful, mainly light theme */ +#define LV_USE_THEME_NEMO 0 /*Water-like theme based on the movie "Finding Nemo"*/ + +/*================== + * FONT USAGE + *===================*/ + +/* The built-in fonts contains the ASCII range and some Symbols with 4 bit-per-pixel. + * The symbols are available via `LV_SYMBOL_...` defines + * More info about fonts: https://docs.littlevgl.com/#Fonts + * To create a new font go to: https://littlevgl.com/ttf-font-to-c-array + */ + +/* Robot fonts with bpp = 4 + * https://fonts.google.com/specimen/Roboto */ +#define LV_FONT_ROBOTO_12 0 +#define LV_FONT_ROBOTO_16 1 +#define LV_FONT_ROBOTO_22 0 +#define LV_FONT_ROBOTO_28 0 + +/* Demonstrate special features */ +#define LV_FONT_ROBOTO_12_SUBPX 0 +#define LV_FONT_ROBOTO_28_COMPRESSED 0 /*bpp = 3*/ + +/*Pixel perfect monospace font + * http://pelulamu.net/unscii/ */ +#define LV_FONT_UNSCII_8 0 + +/* Optionally declare your custom fonts here. + * You can use these fonts as default font too + * and they will be available globally. E.g. + * #define LV_FONT_CUSTOM_DECLARE LV_FONT_DECLARE(my_font_1) \ + * LV_FONT_DECLARE(my_font_2) + */ +#define LV_FONT_CUSTOM_DECLARE + +/*Always set a default font from the built-in fonts*/ +#define LV_FONT_DEFAULT &lv_font_roboto_16 + +/* Enable it if you have fonts with a lot of characters. + * The limit depends on the font size, font face and bpp + * but with > 10,000 characters if you see issues probably you need to enable it.*/ +#define LV_FONT_FMT_TXT_LARGE 0 + +/* Set the pixel order of the display. + * Important only if "subpx fonts" are used. + * With "normal" font it doesn't matter. + */ +#define LV_FONT_SUBPX_BGR 0 + +/*Declare the type of the user data of fonts (can be e.g. `void *`, `int`, `struct`)*/ +typedef void * lv_font_user_data_t; + +/*================= + * Text settings + *=================*/ + +/* Select a character encoding for strings. + * Your IDE or editor should have the same character encoding + * - LV_TXT_ENC_UTF8 + * - LV_TXT_ENC_ASCII + * */ +#define LV_TXT_ENC LV_TXT_ENC_UTF8 + + /*Can break (wrap) texts on these chars*/ +#define LV_TXT_BREAK_CHARS " ,.;:-_" + +/* If a word is at least this long, will break wherever "prettiest" + * To disable, set to a value <= 0 */ +#define LV_TXT_LINE_BREAK_LONG_LEN 12 + +/* Minimum number of characters in a long word to put on a line before a break. + * Depends on LV_TXT_LINE_BREAK_LONG_LEN. */ +#define LV_TXT_LINE_BREAK_LONG_PRE_MIN_LEN 3 + +/* Minimum number of characters in a long word to put on a line after a break. + * Depends on LV_TXT_LINE_BREAK_LONG_LEN. */ +#define LV_TXT_LINE_BREAK_LONG_POST_MIN_LEN 3 + +/* The control character to use for signalling text recoloring. */ +#define LV_TXT_COLOR_CMD "#" + +/* Support bidirectional texts. + * Allows mixing Left-to-Right and Right-to-Left texts. + * The direction will be processed according to the Unicode Bidirectioanl Algorithm: + * https://www.w3.org/International/articles/inline-bidi-markup/uba-basics*/ +#define LV_USE_BIDI 0 +#if LV_USE_BIDI +/* Set the default direction. Supported values: + * `LV_BIDI_DIR_LTR` Left-to-Right + * `LV_BIDI_DIR_RTL` Right-to-Left + * `LV_BIDI_DIR_AUTO` detect texts base direction */ +#define LV_BIDI_BASE_DIR_DEF LV_BIDI_DIR_AUTO +#endif + +/*Change the built in (v)snprintf functions*/ +#define LV_SPRINTF_CUSTOM 1 +#if LV_SPRINTF_CUSTOM +# define LV_SPRINTF_INCLUDE +# define lv_snprintf snprintf +# define lv_vsnprintf vsnprintf +#endif /*LV_SPRINTF_CUSTOM*/ + +/*=================== + * LV_OBJ SETTINGS + *==================*/ + +/*Declare the type of the user data of object (can be e.g. `void *`, `int`, `struct`)*/ +typedef void * lv_obj_user_data_t; + +/*1: enable `lv_obj_realaign()` based on `lv_obj_align()` parameters*/ +#define LV_USE_OBJ_REALIGN 1 + +/* Enable to make the object clickable on a larger area. + * LV_EXT_CLICK_AREA_OFF or 0: Disable this feature + * LV_EXT_CLICK_AREA_TINY: The extra area can be adjusted horizontally and vertically (0..255 px) + * LV_EXT_CLICK_AREA_FULL: The extra area can be adjusted in all 4 directions (-32k..+32k px) + */ +#define LV_USE_EXT_CLICK_AREA LV_EXT_CLICK_AREA_OFF + +/*================== + * LV OBJ X USAGE + *================*/ +/* + * Documentation of the object types: https://docs.littlevgl.com/#Object-types + */ + +/*Arc (dependencies: -)*/ +#define LV_USE_ARC 1 + +/*Bar (dependencies: -)*/ +#define LV_USE_BAR 1 + +/*Button (dependencies: lv_cont*/ +#define LV_USE_BTN 1 +#if LV_USE_BTN != 0 +/*Enable button-state animations - draw a circle on click (dependencies: LV_USE_ANIMATION)*/ +# define LV_BTN_INK_EFFECT 0 +#endif + +/*Button matrix (dependencies: -)*/ +#define LV_USE_BTNM 1 + +/*Calendar (dependencies: -)*/ +#define LV_USE_CALENDAR 1 + +/*Canvas (dependencies: lv_img)*/ +#define LV_USE_CANVAS 1 + +/*Check box (dependencies: lv_btn, lv_label)*/ +#define LV_USE_CB 1 + +/*Chart (dependencies: -)*/ +#define LV_USE_CHART 1 +#if LV_USE_CHART +# define LV_CHART_AXIS_TICK_LABEL_MAX_LEN 20 +#endif + +/*Container (dependencies: -*/ +#define LV_USE_CONT 1 + +/*Color picker (dependencies: -*/ +#define LV_USE_CPICKER 1 + +/*Drop down list (dependencies: lv_page, lv_label, lv_symbol_def.h)*/ +#define LV_USE_DDLIST 1 +#if LV_USE_DDLIST != 0 +/*Open and close default animation time [ms] (0: no animation)*/ +# define LV_DDLIST_DEF_ANIM_TIME 200 +#endif + +/*Gauge (dependencies:lv_bar, lv_lmeter)*/ +#define LV_USE_GAUGE 1 + +/*Image (dependencies: lv_label*/ +#define LV_USE_IMG 1 + +/*Image Button (dependencies: lv_btn*/ +#define LV_USE_IMGBTN 1 +#if LV_USE_IMGBTN +/*1: The imgbtn requires left, mid and right parts and the width can be set freely*/ +# define LV_IMGBTN_TILED 0 +#endif + +/*Keyboard (dependencies: lv_btnm)*/ +#define LV_USE_KB 1 + +/*Label (dependencies: -*/ +#define LV_USE_LABEL 1 +#if LV_USE_LABEL != 0 +/*Hor, or ver. scroll speed [px/sec] in 'LV_LABEL_LONG_ROLL/ROLL_CIRC' mode*/ +# define LV_LABEL_DEF_SCROLL_SPEED 25 + +/* Waiting period at beginning/end of animation cycle */ +# define LV_LABEL_WAIT_CHAR_COUNT 3 + +/*Enable selecting text of the label */ +# define LV_LABEL_TEXT_SEL 0 + +/*Store extra some info in labels (12 bytes) to speed up drawing of very long texts*/ +# define LV_LABEL_LONG_TXT_HINT 0 +#endif + +/*LED (dependencies: -)*/ +#define LV_USE_LED 1 + +/*Line (dependencies: -*/ +#define LV_USE_LINE 1 + +/*List (dependencies: lv_page, lv_btn, lv_label, (lv_img optionally for icons ))*/ +#define LV_USE_LIST 1 +#if LV_USE_LIST != 0 +/*Default animation time of focusing to a list element [ms] (0: no animation) */ +# define LV_LIST_DEF_ANIM_TIME 100 +#endif + +/*Line meter (dependencies: *;)*/ +#define LV_USE_LMETER 1 + +/*Message box (dependencies: lv_rect, lv_btnm, lv_label)*/ +#define LV_USE_MBOX 1 + +/*Page (dependencies: lv_cont)*/ +#define LV_USE_PAGE 1 +#if LV_USE_PAGE != 0 +/*Focus default animation time [ms] (0: no animation)*/ +# define LV_PAGE_DEF_ANIM_TIME 400 +#endif + +/*Preload (dependencies: lv_arc, lv_anim)*/ +#define LV_USE_PRELOAD 1 +#if LV_USE_PRELOAD != 0 +# define LV_PRELOAD_DEF_ARC_LENGTH 60 /*[deg]*/ +# define LV_PRELOAD_DEF_SPIN_TIME 1000 /*[ms]*/ +# define LV_PRELOAD_DEF_ANIM LV_PRELOAD_TYPE_SPINNING_ARC +#endif + +/*Roller (dependencies: lv_ddlist)*/ +#define LV_USE_ROLLER 1 +#if LV_USE_ROLLER != 0 +/*Focus animation time [ms] (0: no animation)*/ +# define LV_ROLLER_DEF_ANIM_TIME 200 + +/*Number of extra "pages" when the roller is infinite*/ +# define LV_ROLLER_INF_PAGES 7 +#endif + +/*Slider (dependencies: lv_bar)*/ +#define LV_USE_SLIDER 1 + +/*Spinbox (dependencies: lv_ta)*/ +#define LV_USE_SPINBOX 1 + +/*Switch (dependencies: lv_slider)*/ +#define LV_USE_SW 1 + +/*Text area (dependencies: lv_label, lv_page)*/ +#define LV_USE_TA 1 +#if LV_USE_TA != 0 +# define LV_TA_DEF_CURSOR_BLINK_TIME 400 /*ms*/ +# define LV_TA_DEF_PWD_SHOW_TIME 1500 /*ms*/ +#endif + +/*Table (dependencies: lv_label)*/ +#define LV_USE_TABLE 1 +#if LV_USE_TABLE +# define LV_TABLE_COL_MAX 12 +#endif + +/*Tab (dependencies: lv_page, lv_btnm)*/ +#define LV_USE_TABVIEW 1 +# if LV_USE_TABVIEW != 0 +/*Time of slide animation [ms] (0: no animation)*/ +# define LV_TABVIEW_DEF_ANIM_TIME 300 +#endif + +/*Tileview (dependencies: lv_page) */ +#define LV_USE_TILEVIEW 1 +#if LV_USE_TILEVIEW +/*Time of slide animation [ms] (0: no animation)*/ +# define LV_TILEVIEW_DEF_ANIM_TIME 300 +#endif + +/*Window (dependencies: lv_cont, lv_btn, lv_label, lv_img, lv_page)*/ +#define LV_USE_WIN 1 + +/*================== + * Non-user section + *==================*/ + +#if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_WARNINGS) /* Disable warnings for Visual Studio*/ +# define _CRT_SECURE_NO_WARNINGS +#endif + +/*--END OF LV_CONF_H--*/ + +/*Be sure every define has a default value*/ +#include "lvgl/src/lv_conf_checker.h" + +#endif /*LV_CONF_H*/ + +#endif /*End of "Content enable"*/ diff --git a/components/lvgl/lvgl/.clang-format b/components/lvgl/lvgl/.clang-format new file mode 100644 index 0000000..a8674b3 --- /dev/null +++ b/components/lvgl/lvgl/.clang-format @@ -0,0 +1,97 @@ +--- +Language: Cpp +# BasedOnStyle: LLVM +AccessModifierOffset: -2 +AlignAfterOpenBracket: Align +AlignConsecutiveAssignments: true +AlignConsecutiveDeclarations: false +AlignEscapedNewlinesLeft: false +AlignOperands: true +AlignTrailingComments: true +AllowAllParametersOfDeclarationOnNextLine: true +AllowShortBlocksOnASingleLine: false +AllowShortCaseLabelsOnASingleLine: true +AllowShortFunctionsOnASingleLine: None +AllowShortIfStatementsOnASingleLine: true +AllowShortLoopsOnASingleLine: true +AlwaysBreakAfterDefinitionReturnType: None +AlwaysBreakAfterReturnType: None +AlwaysBreakBeforeMultilineStrings: false +AlwaysBreakTemplateDeclarations: false +BinPackArguments: true +BinPackParameters: true +BreakBeforeBraces: Custom +BraceWrapping: + AfterClass: false + AfterControlStatement: false + AfterEnum: false + AfterFunction: true + AfterNamespace: false + AfterObjCDeclaration: false + AfterStruct: true + AfterUnion: true + BeforeCatch: false + BeforeElse: false + IndentBraces: false + SplitEmptyFunction: false +BreakBeforeBinaryOperators: None +BreakBeforeTernaryOperators: true +BreakConstructorInitializersBeforeComma: false +BreakAfterJavaFieldAnnotations: false +BreakStringLiterals: true +ColumnLimit: 120 +CommentPragmas: '^ IWYU pragma:' +ConstructorInitializerAllOnOneLineOrOnePerLine: false +ConstructorInitializerIndentWidth: 4 +ContinuationIndentWidth: 4 +Cpp11BracedListStyle: true +DerivePointerAlignment: false +DisableFormat: false +ExperimentalAutoDetectBinPacking: false +ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ] +IncludeCategories: + - Regex: '^"(llvm|llvm-c|clang|clang-c)/' + Priority: 2 + - Regex: '^(<|"(gtest|isl|json)/)' + Priority: 3 + - Regex: '.*' + Priority: 1 +IncludeIsMainRegex: '$' +IndentCaseLabels: true +IndentWidth: 4 +IndentWrappedFunctionNames: false +JavaScriptQuotes: Leave +JavaScriptWrapImports: true +KeepEmptyLinesAtTheStartOfBlocks: true +MacroBlockBegin: '' +MacroBlockEnd: '' +MaxEmptyLinesToKeep: 1 +NamespaceIndentation: None +ObjCBlockIndentWidth: 2 +ObjCSpaceAfterProperty: false +ObjCSpaceBeforeProtocolList: true +PenaltyBreakBeforeFirstCallParameter: 19 +PenaltyBreakComment: 300 +PenaltyBreakFirstLessLess: 120 +PenaltyBreakString: 1000 +PenaltyExcessCharacter: 1000000 +PenaltyReturnTypeOnItsOwnLine: 60 +PointerAlignment: Middle +ReflowComments: true +SortIncludes: false +SpaceAfterCStyleCast: false +SpaceAfterTemplateKeyword: true +SpaceBeforeAssignmentOperators: true +SpaceBeforeParens: Never +SpaceInEmptyParentheses: false +SpacesBeforeTrailingComments: 1 +SpacesInAngles: false +SpacesInContainerLiterals: false +SpacesInCStyleCastParentheses: false +SpacesInParentheses: false +SpacesInSquareBrackets: false +Standard: Cpp11 +TabWidth: 4 +UseTab: Never +... + diff --git a/components/lvgl/lvgl/.editorconfig b/components/lvgl/lvgl/.editorconfig new file mode 100644 index 0000000..28a8b01 --- /dev/null +++ b/components/lvgl/lvgl/.editorconfig @@ -0,0 +1,7 @@ +[*.{c,h}] +indent_style = space +indent_size = 4 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + diff --git a/components/lvgl/lvgl/.github/FUNDING.yml b/components/lvgl/lvgl/.github/FUNDING.yml new file mode 100644 index 0000000..9c6d3af --- /dev/null +++ b/components/lvgl/lvgl/.github/FUNDING.yml @@ -0,0 +1 @@ +custom: ["https://littlevgl.com/donate"] diff --git a/components/lvgl/lvgl/.github/ISSUE_TEMPLATE/all-other-issues.md b/components/lvgl/lvgl/.github/ISSUE_TEMPLATE/all-other-issues.md new file mode 100644 index 0000000..67d5adc --- /dev/null +++ b/components/lvgl/lvgl/.github/ISSUE_TEMPLATE/all-other-issues.md @@ -0,0 +1,14 @@ +--- +name: All other issues +about: Questions and enhancement requests should go to the forum. +title: '' +labels: not-template +assignees: '' + +--- + +# All enhancement requests or questions should be directed to the Forum. + + +We use GitHub issues for development related discussions. +Please use the [forum](https://forum.littlevgl.com/) to ask questions. diff --git a/components/lvgl/lvgl/.github/ISSUE_TEMPLATE/bug-report.md b/components/lvgl/lvgl/.github/ISSUE_TEMPLATE/bug-report.md new file mode 100644 index 0000000..c95affd --- /dev/null +++ b/components/lvgl/lvgl/.github/ISSUE_TEMPLATE/bug-report.md @@ -0,0 +1,29 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: '' +assignees: '' + +--- + +> # Important: issues that don't use this template will be ignored/closed. + +**Describe the bug** + +A clear and concise description of what the bug is. + +**To Reproduce** + +Please provide a small, independent code sample that can be used to reproduce the issue. Ideally this should work in the PC simulator unless the problem is specific to one platform. + +**Expected behavior** + +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Additional context** + +Add any other context about the problem here. diff --git a/components/lvgl/lvgl/.github/stale.yml b/components/lvgl/lvgl/.github/stale.yml new file mode 100644 index 0000000..ea1179b --- /dev/null +++ b/components/lvgl/lvgl/.github/stale.yml @@ -0,0 +1,17 @@ +# Number of days of inactivity before an issue becomes stale +daysUntilStale: 21 +# Number of days of inactivity before a stale issue is closed +daysUntilClose: 7 +# Issues with these labels will never be considered stale +exemptLabels: + - architecture + - pinned +# Label to use when marking an issue as stale +staleLabel: stale +# Comment to post when marking an issue as stale. Set to `false` to disable +markComment: > + This issue or pull request has been automatically marked as stale because it has not had + recent activity. It will be closed if no further activity occurs. Thank you + for your contributions. +# Comment to post when closing a stale issue. Set to `false` to disable +closeComment: false diff --git a/components/lvgl/lvgl/.gitignore b/components/lvgl/lvgl/.gitignore new file mode 100644 index 0000000..0d4f282 --- /dev/null +++ b/components/lvgl/lvgl/.gitignore @@ -0,0 +1,5 @@ +**/*.o +**/*.swp +**/*.swo +tags +docs/api_doc diff --git a/components/lvgl/lvgl/.gitmodules b/components/lvgl/lvgl/.gitmodules new file mode 100644 index 0000000..e69de29 diff --git a/components/lvgl/lvgl/LICENCE.txt b/components/lvgl/lvgl/LICENCE.txt new file mode 100644 index 0000000..beaef1d --- /dev/null +++ b/components/lvgl/lvgl/LICENCE.txt @@ -0,0 +1,8 @@ +MIT licence +Copyright (c) 2016 Gábor Kiss-Vámosi + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/components/lvgl/lvgl/README.md b/components/lvgl/lvgl/README.md new file mode 100644 index 0000000..9d17088 --- /dev/null +++ b/components/lvgl/lvgl/README.md @@ -0,0 +1,398 @@ +

LittlevGL - Open-source Embedded GUI Library

+

+ + +

+ +

+ +

+ +

+LittlevGL provides everything you need to create a Graphical User Interface (GUI) on embedded systems with easy-to-use graphical elements, beautiful visual effects and low memory footprint. +

+ +

+Website · +Live demo · +Simulator · +Forum · +Docs · +Blog +

+ +--- + +- [Features](#features) +- [Supported devices](#supported-devices) +- [Quick start in a simulator](#quick-start-in-a-simulator) +- [Add LittlevGL to your project](#add-littlevgl-to-your-project) +- [Learn the basics](#learn-the-basics) +- [Examples](#examples) +- [Contributing](#contributing) +- [Donate](#donate) + + +## Features +* **Powerful building blocks** buttons, charts, lists, sliders, images, etc. +* **Advanced graphics** with animations, anti-aliasing, opacity, smooth scrolling +* **Simultaneously use various input devices** touchscreen, mouse, keyboard, encoder, buttons, etc. +* **Simultaneously use multiple displays** i.e. monochrome and color display +* **Multi-language support** with UTF-8 encoding +* **Fully customizable** graphical elements +* **Hardware independent** to use with any microcontroller or display +* **Scalable** to operate with little memory (64 kB Flash, 10 kB RAM) +* **OS, External memory and GPU** supported but not required +* **Single frame buffer** operation even with advances graphical effects +* **Written in C** for maximal compatibility +* **Micropython Binding** exposes [LittlevGL API in Micropython](https://blog.littlevgl.com/2019-02-20/micropython-bindings) +* **Simulator** to develop on PC without embedded hardware +* **Tutorials, examples, themes** for rapid development +* **Documentation** and API references + +## Supported devices +Basically, every modern controller - which is able to drive a display - is suitable to run LittlevGL. The minimal requirements: +- 16, 32 or 64 bit microcontroller or processor +- > 16 MHz clock speed is recommended +- Flash/ROM: > 64 kB for the very essential components (> 180 kB is recommended) +- RAM: + - Static RAM usage: ~8..16 kB depending on the used features and objects types + - Stack: > 2kB (> 4 kB is recommended) + - Dynamic data (heap): > 4 KB (> 16 kB is recommended if using several objects). + Set by `LV_MEM_SIZE` in *lv_conf.h*. + - Display buffer: > *"Horizontal resolution"* pixels (> 10 × *"Horizontal resolution"* is recommended) +- C99 or newer compiler + +*Note that the memory usage might vary depending on the architecture, compiler and build options.* + +Just to mention some **platforms**: +- STM32F1, STM32F3, [STM32F4](https://blog.littlevgl.com/2017-07-15/stm32f429_disco_port), [STM32F7](https://github.com/littlevgl/stm32f746_disco_no_os_sw4stm32) +- Microchip dsPIC33, PIC24, PIC32MX, PIC32MZ +- NXP Kinetis, LPC, iMX +- [Linux frame buffer](https://blog.littlevgl.com/2018-01-03/linux_fb) (/dev/fb) +- [Raspberry PI](http://www.vk3erw.com/index.php/16-software/63-raspberry-pi-official-7-touchscreen-and-littlevgl) +- [Espressif ESP32](https://github.com/littlevgl/esp32_ili9431) +- Nordic nrf52 +- Quectell M66 + +## Quick start in a simulator +The easiest way to get started with LittlevGL is to run it in a simulator on your PC without any embedded hardware. + +Choose a project with your favourite IDE: + +| Eclipse | CodeBlocks | Visual Studio | PlatformIO | Qt Creator | +|-------------|-------------|---------------|-----------|------------| +| [![Eclipse](https://littlevgl.com/logo/ide/eclipse.jpg)](https://github.com/littlevgl/pc_simulator_sdl_eclipse) | [![CodeBlocks](https://littlevgl.com/logo/ide/codeblocks.jpg)](https://github.com/littlevgl/pc_simulator_win_codeblocks) | [![VisualStudio](https://littlevgl.com/logo/ide/visualstudio.jpg)](https://github.com/littlevgl/visual_studio_2017_sdl_x64) | [![PlatformIO](https://littlevgl.com/logo/ide/platformio.jpg)](https://github.com/littlevgl/pc_simulator_sdl_platformio) | [![QtCreator](https://littlevgl.com/logo/ide/qtcreator.jpg)](https://blog.littlevgl.com/2019-01-03/qt-creator) | +| Cross-platform
with SDL
(Recommended on
Linux and Mac) | Native Windows | Windows
with SDL | Cross-platform
with SDL | Cross-platform
with SDL | + + +## Add LittlevGL to your project + +The steps below show how to setup LittlevGL on an embedded system with a display and a touchpad. +You can use the [Simulators](https://docs.littlevgl.com/en/html/get-started/pc-simulator) to get ready to use projects which can be run on your PC. + +1. [Download](https://littlevgl.com/download) or [Clone](https://github.com/littlevgl/lvgl) the library +2. Copy the `lvgl` folder into your project +3. Copy `lvgl/lv_conf_template.h` as `lv_conf.h` next to the `lvgl` folder and set at least `LV_HOR_RES_MAX`, `LV_VER_RES_MAX` and `LV_COLOR_DEPTH`. +4. Include `lvgl/lvgl.h` where you need to use LittlevGL related functions. +5. Call `lv_tick_inc(x)` every `x` milliseconds **in a Timer or Task** (`x` should be between 1 and 10). It is required for the internal timing of LittlevGL. +6. Call `lv_init()` +7. Create a display buffer for LittlevGL +```c +static lv_disp_buf_t disp_buf; +static lv_color_t buf[LV_HOR_RES_MAX * 10]; /*Declare a buffer for 10 lines*/ +lv_disp_buf_init(&disp_buf, buf, NULL, LV_HOR_RES_MAX * 10); /*Initialize the display buffer*/ +``` +8. Implement and register a function which can **copy a pixel array** to an area of your display: +```c +lv_disp_drv_t disp_drv; /*Descriptor of a display driver*/ +lv_disp_drv_init(&disp_drv); /*Basic initialization*/ +disp_drv.flush_cb = my_disp_flush; /*Set your driver function*/ +disp_drv.buffer = &disp_buf; /*Assign the buffer to the display*/ +lv_disp_drv_register(&disp_drv); /*Finally register the driver*/ + +void my_disp_flush(lv_disp_t * disp, const lv_area_t * area, lv_color_t * color_p) +{ + int32_t x, y; + for(y = area->y1; y <= area->y2; y++) { + for(x = area->x1; x <= area->x2; x++) { + set_pixel(x, y, *color_p); /* Put a pixel to the display.*/ + color_p++; + } + } + + lv_disp_flush_ready(disp); /* Indicate you are ready with the flushing*/ +} + +``` +9. Implement and register a function which can **read an input device**. E.g. for a touch pad: +```c +lv_indev_drv_init(&indev_drv); /*Descriptor of a input device driver*/ +indev_drv.type = LV_INDEV_TYPE_POINTER; /*Touch pad is a pointer-like device*/ +indev_drv.read_cb = my_touchpad_read; /*Set your driver function*/ +lv_indev_drv_register(&indev_drv); /*Finally register the driver*/ + +bool my_touchpad_read(lv_indev_drv_t * indev_driver, lv_indev_data_t * data) +{ + static lv_coord_t last_x = 0; + static lv_coord_t last_y = 0; + + /*Save the state and save the pressed coordinate*/ + data->state = touchpad_is_pressed() ? LV_INDEV_STATE_PR : LV_INDEV_STATE_REL; + if(data->state == LV_INDEV_STATE_PR) touchpad_get_xy(&last_x, &last_y); + + /*Set the coordinates (if released use the last pressed coordinates)*/ + data->point.x = last_x; + data->point.y = last_y; + + return false; /*Return `false` because we are not buffering and no more data to read*/ +} +``` +10. Call `lv_task_handler()` periodically every few milliseconds in the main `while(1)` loop, in Timer interrupt or in an Operation system task. +It will redraw the screen if required, handle input devices etc. + + +## Learn the basics + +### Objects (Widgets) + +The graphical elements like Buttons, Labels, Sliders, Charts etc are called objects in LittelvGL. Go to [Object types](https://docs.littlevgl.com/en/html/object-types/index) to see the full list of available types. + +Every object has a parent object. The child object moves with the parent and if you delete the parent the children will be deleted too. Children can be visible only on their parent. + +The *screen* are the "root" parents. To get the current screen call `lv_scr_act()`. + +You can create a new object with `lv__create(parent, obj_to_copy)`. It will return an `lv_obj_t *` variable which should be used as a reference to the object to set its parameters. +The first parameter is the desired *parent*, te second parameters can be an object to copy (`NULL` is unused). +For example: +```c +lv_obj_t * slider1 = lv_slider_create(lv_scr_act(), NULL); +``` + +To set some basic attribute `lv_obj_set_(obj, )` function can be used. For example: +```c +lv_obj_set_x(btn1, 30); +lv_obj_set_y(btn1, 10); +lv_obj_set_size(btn1, 200, 50); +``` + +The objects has type specific parameters too which can be set by `lv__set_(obj, )` functions. For example: +```c +lv_slider_set_value(slider1, 70, LV_ANIM_ON); +``` + +To see the full API visit the documentation of the object types or the related header file (e.g. `lvgl/src/lv_objx/lv_slider.h`). + +### Styles +Styles can be assigned to the objects to changed their appearance. A style describes the appearance of rectangle-like objects (like a button or slider), texts, images and lines at once. + +You can create a new style like this: +```c +static lv_style_t style1; /*Declare a new style. Should be `static`*/ +lv_style_copy(&style1, &lv_style_plain); /*Copy a built-in style*/ +style1.body.main_color = LV_COLOR_RED; /*Main color*/ +style1.body.grad_color = lv_color_hex(0xffd83c) /*Gradient color (orange)*/ +style1.body.radius = 3; +style1.text.color = lv_color_hex3(0x0F0) /*Label color (green)*/ +style1.text.font = &lv_font_dejavu_22; /*Change font*/ +... +``` + +To set a new style for an object use the `lv_set_style(obj, LV__STYLE_, &my_style)` functions. For example: +```c +lv_slider_set_style(slider1, LV_SLIDER_STYLE_BG, &slider_bg_style); +lv_slider_set_style(slider1, LV_SLIDER_STYLE_INDIC, &slider_indic_style); +lv_slider_set_style(slider1, LV_SLIDER_STYLE_KNOB, &slider_knob_style); +``` + +If an object's style is `NULL` then it will inherit its parent's style. For example, the labels' style are `NULL` by default. If you place them on a button then they will use the `style.text` properties from the button's style. + +Learn more in [Style overview](https://docs.littlevgl.com/en/html/overview/style) section. + +### Events +Events are used to inform the user if something has happened with an object. You can assign a callback to an object which will be called if the object is clicked, released, dragged, being deleted etc. It should look like this: + +```c +lv_obj_set_event_cb(btn, btn_event_cb); /*Assign a callback to the button*/ + +... + +void btn_event_cb(lv_obj_t * btn, lv_event_t event) +{ + if(event == LV_EVENT_CLICKED) { + printf("Clicked\n"); + } +} +``` + +Learn more about the events in the [Event overview](https://docs.littlevgl.com/en/html/overview/event) section. + + +## Examples + +### Button with label +```c +lv_obj_t * btn = lv_btn_create(lv_scr_act(), NULL); /*Add a button the current screen*/ +lv_obj_set_pos(btn, 10, 10); /*Set its position*/ +lv_obj_set_size(btn, 100, 50); /*Set its size*/ +lv_obj_set_event_cb(btn, btn_event_cb); /*Assign a callback to the button*/ + +lv_obj_t * label = lv_label_create(btn, NULL); /*Add a label to the button*/ +lv_label_set_text(label, "Button"); /*Set the labels text*/ + +... + +void btn_event_cb(lv_obj_t * btn, lv_event_t event) +{ + if(event == LV_EVENT_CLICKED) { + printf("Clicked\n"); + } +} +``` +![LittlevGL button with label example](https://docs.littlevgl.com/en/misc/simple_button_example.gif) + +### Button with styles +Add styles to the previously button from the previous example +```c +static lv_style_t style_btn_rel; /*A variable to store the released style*/ +lv_style_copy(&style_btn_rel, &lv_style_plain); /*Initialize from a built-in style*/ +style_btn_rel.body.border.color = lv_color_hex3(0x269); +style_btn_rel.body.border.width = 1; +style_btn_rel.body.main_color = lv_color_hex3(0xADF); +style_btn_rel.body.grad_color = lv_color_hex3(0x46B); +style_btn_rel.body.shadow.width = 4; +style_btn_rel.body.shadow.type = LV_SHADOW_BOTTOM; +style_btn_rel.body.radius = LV_RADIUS_CIRCLE; +style_btn_rel.text.color = lv_color_hex3(0xDEF); + +static lv_style_t style_btn_pr; /*A variable to store the pressed style*/ +lv_style_copy(&style_btn_pr, &style_btn_rel); /*Initialize from the released style*/ +style_btn_pr.body.border.color = lv_color_hex3(0x46B); +style_btn_pr.body.main_color = lv_color_hex3(0x8BD); +style_btn_pr.body.grad_color = lv_color_hex3(0x24A); +style_btn_pr.body.shadow.width = 2; +style_btn_pr.text.color = lv_color_hex3(0xBCD); + +lv_btn_set_style(btn, LV_BTN_STYLE_REL, &style_btn_rel); /*Set the button's released style*/ +lv_btn_set_style(btn, LV_BTN_STYLE_PR, &style_btn_pr); /*Set the button's pressed style*/ +``` + +![Stylsd button is LittelvGL](https://docs.littlevgl.com/en/misc/button_style_example.gif) + +### Slider and object alignment +```c +lv_obj_t * label; + +... + +/* Create a slider in the center of the display */ +lv_obj_t * slider = lv_slider_create(lv_scr_act(), NULL); +lv_obj_set_width(slider, 200); /*Set the width*/ +lv_obj_align(slider, NULL, LV_ALIGN_CENTER, 0, 0); /*Align to the center of the parent (screen)*/ +lv_obj_set_event_cb(slider, slider_event_cb); /*Assign an event function*/ + +/* Create a label below the slider */ +label = lv_label_create(lv_scr_act(), NULL); +lv_label_set_text(label, "0"); +lv_obj_set_auto_realign(slider, true); +lv_obj_align(label, slider, LV_ALIGN_OUT_BOTTOM_MID, 0, 10); + +... + +void slider_event_cb(lv_obj_t * slider, lv_event_t event) +{ + if(event == LV_EVENT_VALUE_CHANGED) { + static char buf[4]; /* max 3 bytes for number plus 1 null terminating byte */ + snprintf(buf, 4, "%u", lv_slider_get_value(slider)); + lv_label_set_text(slider_label, buf); /*Refresh the text*/ + } +} +``` + +![Slider example with LittlevGL](https://docs.littlevgl.com/en/misc/slider_example.gif) + +### List and themes +```c +/*Texts of the list elements*/ +const char * txts[] = {"First", "Second", "Third", "Forth", "Fifth", "Sixth", NULL}; + +/* Initialize and set a theme. `LV_THEME_NIGHT` needs to enabled in lv_conf.h. */ +lv_theme_t * th = lv_theme_night_init(20, NULL); +lv_theme_set_current(th); + +/*Create a list*/ +lv_obj_t* list = lv_list_create(lv_scr_act(), NULL); +lv_obj_set_size(list, 120, 180); +lv_obj_set_pos(list, 10, 10); + +/*Add buttons*/ +uint8_t i; +for(i = 0; txts[i]; i++) { + lv_obj_t * btn = lv_list_add_btn(list, LV_SYMBOL_FILE, txts[i]); + lv_obj_set_event_cb(btn, list_event); /*Assign event function*/ + lv_btn_set_toggle(btn, true); /*Enable on/off states*/ +} + +/* Initialize and set an other theme. `LV_THEME_MATERIAL` needs to enabled in lv_conf.h. + * If `LV_TEHE_LIVE_UPDATE 1` then the previous list's style will be updated too.*/ +th = lv_theme_material_init(210, NULL); +lv_theme_set_current(th); + +/*Create an other list*/ +list = lv_list_create(lv_scr_act(), NULL); +lv_obj_set_size(list, 120, 180); +lv_obj_set_pos(list, 150, 10); + +/*Add buttons with the same texts*/ +for(i = 0; txts[i]; i++) { + lv_obj_t * btn = lv_list_add_btn(list, LV_SYMBOL_FILE, txts[i]); + lv_obj_set_event_cb(btn, list_event); + lv_btn_set_toggle(btn, true); +} + +... + +static void list_event(lv_obj_t * btn, lv_event_t e) +{ + if(e == LV_EVENT_CLICKED) { + printf("%s\n", lv_list_get_btn_text(btn)); + } + +} +``` +![List and theme example with LittlevGL](https://docs.littlevgl.com/en/misc/list_theme_example.gif) + +### Use LittlevGL from Micropython +Learn more about [Micropython](https://docs.littlevgl.com/en/html/get-started/micropython). +```python +# Create a Button and a Label +scr = lv.obj() +btn = lv.btn(scr) +btn.align(lv.scr_act(), lv.ALIGN.CENTER, 0, 0) +label = lv.label(btn) +label.set_text("Button") + +# Load the screen +lv.scr_load(scr) +``` + +## Contributing +To ask questions please use the [Forum](https://forum.littlevgl.com). +For development-related things (bug reports, feature suggestions) use [GitHub's Issue tracker](https://github.com/littlevgl/lvgl/issues). + +If you are interested in contributing to LittlevGL you can +- **Help others** in the [Forum](https://forum.littlevgl.com). +- **Inspire people** by speaking about your project in [My project](https://forum.littlevgl.com/c/my-projects) category in the Forum or add it to the [References](https://blog.littlevgl.com/2018-12-26/references) post +- **Improve and/or translate the documentation.** Go to the [Documentation](https://github.com/littlevgl/docs) repository to learn more +- **Write a blog post** about your experiences. See how to do it in the [Blog](https://github.com/littlevgl/blog) repository +- **Report and/or fix bugs** in [GitHub's issue tracker](https://github.com/littlevgl/lvgl/issues) +- **Help in the developement**. Check the [Open issues](https://github.com/littlevgl/lvgl/issues) especially the ones with [Help wanted](https://github.com/littlevgl/lvgl/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22) label and tell your ideas about a topic or implement a feature. + +It should be useful to read the +- [Contributing guide](https://blog.littlevgl.com/2018-12-06/contributing) +- [Coding style guide](https://github.com/littlevgl/lvgl/blob/master/docs/CODING_STYLE.md) + +## Donate +If you are pleased with the library, found it useful, or you are happy with the support you got, please help its further development: + +[![Donate](https://littlevgl.com/donate_dir/donate_btn.png)](https://littlevgl.com/donate) diff --git a/components/lvgl/lvgl/docs/CODE_OF_CONDUCT.md b/components/lvgl/lvgl/docs/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..c7d7eeb --- /dev/null +++ b/components/lvgl/lvgl/docs/CODE_OF_CONDUCT.md @@ -0,0 +1,46 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. + +## Our Standards + +Examples of behavior that contributes to creating a positive environment include: + +* Using welcoming and inclusive language +* Being respectful of differing viewpoints and experiences +* Gracefully accepting constructive criticism +* Focusing on what is best for the community +* Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +* The use of sexualized language or imagery and unwelcome sexual attention or advances +* Trolling, insulting/derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or electronic address, without explicit permission +* Other conduct which could reasonably be considered inappropriate in a professional setting + +## Our Responsibilities + +Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. + +Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. + +## Scope + +This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at [atom@github.com](mailto:atom@github.com). All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. + +Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] + +[homepage]: http://contributor-covenant.org +[version]: http://contributor-covenant.org/version/1/4/ diff --git a/components/lvgl/lvgl/docs/CODING_STYLE.md b/components/lvgl/lvgl/docs/CODING_STYLE.md new file mode 100644 index 0000000..31071e9 --- /dev/null +++ b/components/lvgl/lvgl/docs/CODING_STYLE.md @@ -0,0 +1,94 @@ + +## File format +Use [lv_misc/lv_templ.c](https://github.com/littlevgl/lvgl/blob/master/src/lv_misc/lv_templ.c) and [lv_misc/lv_templ.h](https://github.com/littlevgl/lvgl/blob/master/src/lv_misc/lv_templ.h) + +## Naming conventions +* Words are separated by '_' +* In variable and function names use only lower case letters (e.g. *height_tmp*) +* In enums and defines use only upper case letters (e.g. *e.g. MAX_LINE_NUM*) +* Global names (API): + * starts with *lv* + * followed by module name: *btn*, *label*, *style* etc. + * followed by the action (for functions): *set*, *get*, *refr* etc. + * closed with the subject: *name*, *size*, *state* etc. +* Typedefs + * prefer `typedef struct` and `typedef enum` instead of `struct name` and `enum name` + * always end `typedef struct` and `typedef enum` type names with `_t` +* Abbreviations: + * Use abbreviations on public names only if they become longer than 32 characters + * Use only very straightforward (e.g. pos: position) or well-established (e.g. pr: press) abbreviations + +## Coding guide +* Functions: + * Try to write function shorter than is 50 lines + * Always shorter than 100 lines (except very straightforwards) +* Variables: + * One line, one declaration (BAD: char x, y;) + * Use `` (*uint8_t*, *int32_t* etc) + * Declare variables when needed (not all at function start) + * Use the smallest required scope + * Variables in a file (outside functions) are always *static* + * Do not use global variables (use functions to set/get static variables) + +## Comments +Before every function have a comment like this: + +```c +/** + * Return with the screen of an object + * @param obj pointer to an object + * @return pointer to a screen + */ +lv_obj_t * lv_obj_get_scr(lv_obj_t * obj); +``` + +Always use `/* Something */` format and NOT `//Something` + +Write readable code to avoid descriptive comments like: +`x++; /* Add 1 to x */`. +The code should show clearly what you are doing. + +You should write **why** have you done this: +`x++; /*Because of closing '\0' of the string */` + +Short "code summaries" of a few lines are accepted. E.g. `/*Calculate the new coordinates*/` + +In comments use \` \` when referring to a variable. E.g. ``/*Update the value of `x_act`*/`` + +### Formatting +Here is example to show bracket placing and using of white spaces: +```c +/** + * Set a new text for a label. Memory will be allocated to store the text by the label. + * @param label pointer to a label object + * @param text '\0' terminated character string. NULL to refresh with the current text. + */ +void lv_label_set_text(lv_obj_t * label, const char * text) +{ /* Main brackets of functions in new line*/ + + if(label == NULL) return; /*No bracket only if the command is inline with the if statement*/ + + lv_obj_inv(label); + + lv_label_ext_t * ext = lv_obj_get_ext(label); + + /*Comment before a section */ + if(text == ext->txt || text == NULL) { /*Bracket of statements start inline*/ + lv_label_refr_text(label); + return; + } + + ... +} +``` + +Use 4 spaces indentation instead of tab. + +You can use **astyle** to format the code. The required config flies are: `docs/astyle_c` and `docs/astyle_h`. +To format the source files: + `$ find . -type f -name "*.c" | xargs astyle --options=docs/astyle_c` + +To format the header files: + `$ find . -type f -name "*.h" | xargs astyle --options=docs/astyle_h` + +Append `-n` to the end to skip creation of backup file OR use `$ find . -type f -name "*.bak" -delete` (for source file's backups) and `find . -type f -name "*.orig" -delete` (for header file's backups) diff --git a/components/lvgl/lvgl/docs/CONTRIBUTING.md b/components/lvgl/lvgl/docs/CONTRIBUTING.md new file mode 100644 index 0000000..aa31870 --- /dev/null +++ b/components/lvgl/lvgl/docs/CONTRIBUTING.md @@ -0,0 +1,111 @@ +# Contributing to Littlev Graphics Library + +**Do you have some free time to spend with programming? +Are you working on an Embedded GUI project with LittlevGL? +See how can you help to improve the graphics library!** + +There are many ways to join the community. If you have some time to work with us I'm sure you will find something that fits you! You can: +- help others in the [Forum](https://forum.littlevgl.com/) +- improve and/or translate the documentation +- write a blog post about your experiences +- report and/or fix bugs +- suggest and/or implement new features + +But first, start with the most Frequently Asked Questions. + +# FAQ about contributing + +## Where can I write my question and remarks? + +We use the [Forum](https://forum.littlevgl.com/) to ask and answer questions and [GitHub's issue tracker](https://github.com/littlevgl/lvgl/issues) for development-related discussion. + +But there are some simple rules: +- Be kind and friendly. +- Speak about one thing in one issue/topic. +- Give feedback and close the issue or mark the topic as solved if your question is answered. +- Tell what you experience or expect. _"The button is not working"_ is not enough info to get help. +- If possible send an absolute minimal code example in order to reproduce the issue +- Use [Markdown](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet) to format your post. + +## How can I send fixes and improvements? + +Merging new code happens via Pull Requests. If you are still not familiar with the Pull Requests (PR for short) here is a quick guide: +1. **Fork** the [lvgl repository](https://github.com/littlevgl/lvgl). To do this click the "Fork" button in the top right corner. It will "copy" the `lvgl` repository to your GitHub account (`https://github.com/your_name?tab=repositories`) +2. **Clone** the forked repository and add your changes +3. **Create a PR** on GitHub from the page of your `lvgl` repository (`https://github.com/your_name/lvgl`) by hitting the "New pull request" button +4. **Set the base branch**. It means where you want to merge your update. Fixes go to `master`, new features to the actual `dev-x.y` branch. +5. **Describe** what is in the update. An example code is welcome if applicable. + +Some advice: +- If you are not sure about your fix or feature it's better to open an issue first and discuss the details there. +- Maybe your fix or update won't be perfect at first. Don't be afraid, just improve it and push the new commits. The PR will be updated accordingly. +- If your update needs some extra work it's okay to say: _"I'm busy now and I will improve it soon"_ or _"Sorry, I don't have time to improve it, I hope it helps in this form too"_. +So it's better to say don't have time to continue than saying nothing. +- Please read and follow this [guide about the coding style](https://github.com/littlevgl/lvgl/blob/master/docs/CODING_STYLE.md) + + +## Where is the documentation? + +You can read the documentation here: +You can edit the documentation here: + +## Where is the blog? + +You can read the blog here: +You can edit the blog here: + +# So how and where can you contribute? + +## Help others in the Forum + +It's a great way to contribute to the library if you already use it. +Just go to [https://forum.littlevgl.com/](https://forum.littlevgl.com/) a register (Google and GitHub login also works). +Log in, read the titles and if you are already familiar with a topic, don't be shy, and write your suggestion. + +## Improving and/or translating the documentation + +If you would like to contribute to LittlevGL the documentation is the best place to start. + +### Fix typos, add missing parts + +If you find a typo, an obscure sentence or something which is not explained well enough in the [English documentation](https://docs.littlevgl.com/en/html/index.html) +click the *"Edit on GitHub"* button in the top right corner and fix the issue by sending a Pull Request. + +### Translate the documentation + +If you have time and interest you can translate the documentation to your native language or any language you speak. +You can join others to work on an already existing language or you can start a new one. + +To translate the documentation we use [Zanata](https://zanata.org) which is an online translation platform. +You will find the LittlevGL project here: [LittlevGL on Zanata](https://translate.zanata.org/iteration/view/littlevgl-docs/v6.0-doc1?dswid=3430) + +To get started you need to: +- register at [Zanata](https://zanata.org) which is an online translation platform. +- comment to [this post](https://forum.littlevgl.com/t/translate-the-documentation/238?u=kisvegabor) +- tell your username at *Zanata* and your selected language(s) to get permission the edit the translations + +Note that a translation will be added to the documentation only if at least the [Porting section](https://docs.littlevgl.com/en/html/porting/index.html) is translated. + + +## Writing a blog post about your experiences + +Have you ported LittlevGL to a new platform? Have you created a fancy GUI? Do you know a great trick? +You can share your knowledge on LittlevGL's blog! It's super easy to add your own post: +- Fork and clone the [blog repository](https://github.com/littlevgl/blog) +- Add your post in Markdown to the `_posts` folder. +- Store the images and other resources in a dedicated folder in `assets` +- Create a Pull Request + +The blog uses [Jekyll](https://jekyllrb.com/) to convert the `.md` files to a webpage. You can easily [run Jekyll offline](https://jekyllrb.com/docs/) to check your post before creating the Pull request + +## Reporting and/or fixing bugs +For simple bugfixes (typos, missing error handling, fixing a warning) is fine to send a Pull request directly. However, for more complex bugs it's better to open an issue first. In the issue, you should describe how to reproduce the bug and even add the minimal code snippet. + +## Suggesting and/or implementing new features +If you have a good idea don't hesitate to share with us. It's even better if you have time to deal with its implementation. Don't be afraid if you still don't know LittlevGL well enough. We will help you to get started. + +During the implementation don't forget the [Code style guide](https://github.com/littlevgl/lvgl/blob/master/docs/CODING_STYLE.md). + +# Summary + +I hope you have taken a liking to contribute to LittlevGL. A helpful and friendly community is waiting for you! :) diff --git a/components/lvgl/lvgl/library.json b/components/lvgl/lvgl/library.json new file mode 100644 index 0000000..d8b0bf7 --- /dev/null +++ b/components/lvgl/lvgl/library.json @@ -0,0 +1,14 @@ +{ + "name": "lvgl", + "version": "v6.1.2", + "keywords": "graphics, gui, embedded, littlevgl", + "description": "Graphics library to create embedded GUI with easy-to-use graphical elements, beautiful visual effects and low memory footprint. It offers anti-aliasing, opacity, and animations using only one frame buffer.", + "repository": + { + "type": "git", + "url": "https://github.com/littlevgl/lvgl.git" + }, + "build": { + "includeDir": "." + } +} diff --git a/components/lvgl/lvgl/lv_conf_template.h b/components/lvgl/lvgl/lv_conf_template.h new file mode 100644 index 0000000..77b97b1 --- /dev/null +++ b/components/lvgl/lvgl/lv_conf_template.h @@ -0,0 +1,591 @@ +/** + * @file lv_conf.h + * + */ + +/* + * COPY THIS FILE AS `lv_conf.h` NEXT TO the `lvgl` FOLDER + */ + +#if 0 /*Set it to "1" to enable content*/ + +#ifndef LV_CONF_H +#define LV_CONF_H +/* clang-format off */ + +#include + +/*==================== + Graphical settings + *====================*/ + +/* Maximal horizontal and vertical resolution to support by the library.*/ +#define LV_HOR_RES_MAX (480) +#define LV_VER_RES_MAX (320) + +/* Color depth: + * - 1: 1 byte per pixel + * - 8: RGB233 + * - 16: RGB565 + * - 32: ARGB8888 + */ +#define LV_COLOR_DEPTH 16 + +/* Swap the 2 bytes of RGB565 color. + * Useful if the display has a 8 bit interface (e.g. SPI)*/ +#define LV_COLOR_16_SWAP 0 + +/* 1: Enable screen transparency. + * Useful for OSD or other overlapping GUIs. + * Requires `LV_COLOR_DEPTH = 32` colors and the screen's style should be modified: `style.body.opa = ...`*/ +#define LV_COLOR_SCREEN_TRANSP 0 + +/*Images pixels with this color will not be drawn (with chroma keying)*/ +#define LV_COLOR_TRANSP LV_COLOR_LIME /*LV_COLOR_LIME: pure green*/ + +/* Enable chroma keying for indexed images. */ +#define LV_INDEXED_CHROMA 1 + +/* Enable anti-aliasing (lines, and radiuses will be smoothed) */ +#define LV_ANTIALIAS 1 + +/* Default display refresh period. + * Can be changed in the display driver (`lv_disp_drv_t`).*/ +#define LV_DISP_DEF_REFR_PERIOD 30 /*[ms]*/ + +/* Dot Per Inch: used to initialize default sizes. + * E.g. a button with width = LV_DPI / 2 -> half inch wide + * (Not so important, you can adjust it to modify default sizes and spaces)*/ +#define LV_DPI 100 /*[px]*/ + +/* Type of coordinates. Should be `int16_t` (or `int32_t` for extreme cases) */ +typedef int16_t lv_coord_t; + +/*========================= + Memory manager settings + *=========================*/ + +/* LittelvGL's internal memory manager's settings. + * The graphical objects and other related data are stored here. */ + +/* 1: use custom malloc/free, 0: use the built-in `lv_mem_alloc` and `lv_mem_free` */ +#define LV_MEM_CUSTOM 0 +#if LV_MEM_CUSTOM == 0 +/* Size of the memory used by `lv_mem_alloc` in bytes (>= 2kB)*/ +# define LV_MEM_SIZE (32U * 1024U) + +/* Complier prefix for a big array declaration */ +# define LV_MEM_ATTR + +/* Set an address for the memory pool instead of allocating it as an array. + * Can be in external SRAM too. */ +# define LV_MEM_ADR 0 + +/* Automatically defrag. on free. Defrag. means joining the adjacent free cells. */ +# define LV_MEM_AUTO_DEFRAG 1 +#else /*LV_MEM_CUSTOM*/ +# define LV_MEM_CUSTOM_INCLUDE /*Header for the dynamic memory function*/ +# define LV_MEM_CUSTOM_ALLOC malloc /*Wrapper to malloc*/ +# define LV_MEM_CUSTOM_FREE free /*Wrapper to free*/ +#endif /*LV_MEM_CUSTOM*/ + +/* Garbage Collector settings + * Used if lvgl is binded to higher level language and the memory is managed by that language */ +#define LV_ENABLE_GC 0 +#if LV_ENABLE_GC != 0 +# define LV_GC_INCLUDE "gc.h" /*Include Garbage Collector related things*/ +# define LV_MEM_CUSTOM_REALLOC your_realloc /*Wrapper to realloc*/ +# define LV_MEM_CUSTOM_GET_SIZE your_mem_get_size /*Wrapper to lv_mem_get_size*/ +#endif /* LV_ENABLE_GC */ + +/*======================= + Input device settings + *=======================*/ + +/* Input device default settings. + * Can be changed in the Input device driver (`lv_indev_drv_t`)*/ + +/* Input device read period in milliseconds */ +#define LV_INDEV_DEF_READ_PERIOD 30 + +/* Drag threshold in pixels */ +#define LV_INDEV_DEF_DRAG_LIMIT 10 + +/* Drag throw slow-down in [%]. Greater value -> faster slow-down */ +#define LV_INDEV_DEF_DRAG_THROW 20 + +/* Long press time in milliseconds. + * Time to send `LV_EVENT_LONG_PRESSSED`) */ +#define LV_INDEV_DEF_LONG_PRESS_TIME 400 + +/* Repeated trigger period in long press [ms] + * Time between `LV_EVENT_LONG_PRESSED_REPEAT */ +#define LV_INDEV_DEF_LONG_PRESS_REP_TIME 100 + +/*================== + * Feature usage + *==================*/ + +/*1: Enable the Animations */ +#define LV_USE_ANIMATION 1 +#if LV_USE_ANIMATION + +/*Declare the type of the user data of animations (can be e.g. `void *`, `int`, `struct`)*/ +typedef void * lv_anim_user_data_t; + +#endif + +/* 1: Enable shadow drawing*/ +#define LV_USE_SHADOW 1 + +/* 1: Enable object groups (for keyboard/encoder navigation) */ +#define LV_USE_GROUP 1 +#if LV_USE_GROUP +typedef void * lv_group_user_data_t; +#endif /*LV_USE_GROUP*/ + +/* 1: Enable GPU interface*/ +#define LV_USE_GPU 1 + +/* 1: Enable file system (might be required for images */ +#define LV_USE_FILESYSTEM 1 +#if LV_USE_FILESYSTEM +/*Declare the type of the user data of file system drivers (can be e.g. `void *`, `int`, `struct`)*/ +typedef void * lv_fs_drv_user_data_t; +#endif + +/*1: Add a `user_data` to drivers and objects*/ +#define LV_USE_USER_DATA 0 + +/*======================== + * Image decoder and cache + *========================*/ + +/* 1: Enable indexed (palette) images */ +#define LV_IMG_CF_INDEXED 1 + +/* 1: Enable alpha indexed images */ +#define LV_IMG_CF_ALPHA 1 + +/* Default image cache size. Image caching keeps the images opened. + * If only the built-in image formats are used there is no real advantage of caching. + * (I.e. no new image decoder is added) + * With complex image decoders (e.g. PNG or JPG) caching can save the continuous open/decode of images. + * However the opened images might consume additional RAM. + * LV_IMG_CACHE_DEF_SIZE must be >= 1 */ +#define LV_IMG_CACHE_DEF_SIZE 1 + +/*Declare the type of the user data of image decoder (can be e.g. `void *`, `int`, `struct`)*/ +typedef void * lv_img_decoder_user_data_t; + +/*===================== + * Compiler settings + *====================*/ +/* Define a custom attribute to `lv_tick_inc` function */ +#define LV_ATTRIBUTE_TICK_INC + +/* Define a custom attribute to `lv_task_handler` function */ +#define LV_ATTRIBUTE_TASK_HANDLER + +/* With size optimization (-Os) the compiler might not align data to + * 4 or 8 byte boundary. This alignment will be explicitly applied where needed. + * E.g. __attribute__((aligned(4))) */ +#define LV_ATTRIBUTE_MEM_ALIGN + +/* Attribute to mark large constant arrays for example + * font's bitmaps */ +#define LV_ATTRIBUTE_LARGE_CONST + +/* Export integer constant to binding. + * This macro is used with constants in the form of LV_ that + * should also appear on lvgl binding API such as Micropython + * + * The default value just prevents a GCC warning. + */ +#define LV_EXPORT_CONST_INT(int_value) struct _silence_gcc_warning + +/*=================== + * HAL settings + *==================*/ + +/* 1: use a custom tick source. + * It removes the need to manually update the tick with `lv_tick_inc`) */ +#define LV_TICK_CUSTOM 0 +#if LV_TICK_CUSTOM == 1 +#define LV_TICK_CUSTOM_INCLUDE "something.h" /*Header for the sys time function*/ +#define LV_TICK_CUSTOM_SYS_TIME_EXPR (millis()) /*Expression evaluating to current systime in ms*/ +#endif /*LV_TICK_CUSTOM*/ + +typedef void * lv_disp_drv_user_data_t; /*Type of user data in the display driver*/ +typedef void * lv_indev_drv_user_data_t; /*Type of user data in the input device driver*/ + +/*================ + * Log settings + *===============*/ + +/*1: Enable the log module*/ +#define LV_USE_LOG 0 +#if LV_USE_LOG +/* How important log should be added: + * LV_LOG_LEVEL_TRACE A lot of logs to give detailed information + * LV_LOG_LEVEL_INFO Log important events + * LV_LOG_LEVEL_WARN Log if something unwanted happened but didn't cause a problem + * LV_LOG_LEVEL_ERROR Only critical issue, when the system may fail + * LV_LOG_LEVEL_NONE Do not log anything + */ +# define LV_LOG_LEVEL LV_LOG_LEVEL_WARN + +/* 1: Print the log with 'printf'; + * 0: user need to register a callback with `lv_log_register_print_cb`*/ +# define LV_LOG_PRINTF 0 +#endif /*LV_USE_LOG*/ + +/*================= + * Debug settings + *================*/ + +/* If Debug is enabled LittelvGL validates the parameters of the functions. + * If an invalid parameter is found an error log message is printed and + * the MCU halts at the error. (`LV_USE_LOG` should be enabled) + * If you are debugging the MCU you can pause + * the debugger to see exactly where the issue is. + * + * The behavior of asserts can be overwritten by redefining them here. + * E.g. #define LV_ASSERT_MEM(p) + */ +#define LV_USE_DEBUG 1 +#if LV_USE_DEBUG + +/*Check if the parameter is NULL. (Quite fast) */ +#define LV_USE_ASSERT_NULL 1 + +/*Checks is the memory is successfully allocated or no. (Quite fast)*/ +#define LV_USE_ASSERT_MEM 1 + +/* Check the strings. + * Search for NULL, very long strings, invalid characters, and unnatural repetitions. (Slow) + * If disabled `LV_USE_ASSERT_NULL` will be performed instead (if it's enabled) */ +#define LV_USE_ASSERT_STR 0 + +/* Check NULL, the object's type and existence (e.g. not deleted). (Quite slow) + * If disabled `LV_USE_ASSERT_NULL` will be performed instead (if it's enabled) */ +#define LV_USE_ASSERT_OBJ 0 + +/*Check if the styles are properly initialized. (Fast)*/ +#define LV_USE_ASSERT_STYLE 1 + +#endif /*LV_USE_DEBUG*/ + +/*================ + * THEME USAGE + *================*/ +#define LV_THEME_LIVE_UPDATE 0 /*1: Allow theme switching at run time. Uses 8..10 kB of RAM*/ + +#define LV_USE_THEME_TEMPL 0 /*Just for test*/ +#define LV_USE_THEME_DEFAULT 0 /*Built mainly from the built-in styles. Consumes very few RAM*/ +#define LV_USE_THEME_ALIEN 0 /*Dark futuristic theme*/ +#define LV_USE_THEME_NIGHT 0 /*Dark elegant theme*/ +#define LV_USE_THEME_MONO 0 /*Mono color theme for monochrome displays*/ +#define LV_USE_THEME_MATERIAL 0 /*Flat theme with bold colors and light shadows*/ +#define LV_USE_THEME_ZEN 0 /*Peaceful, mainly light theme */ +#define LV_USE_THEME_NEMO 0 /*Water-like theme based on the movie "Finding Nemo"*/ + +/*================== + * FONT USAGE + *===================*/ + +/* The built-in fonts contains the ASCII range and some Symbols with 4 bit-per-pixel. + * The symbols are available via `LV_SYMBOL_...` defines + * More info about fonts: https://docs.littlevgl.com/#Fonts + * To create a new font go to: https://littlevgl.com/ttf-font-to-c-array + */ + +/* Robot fonts with bpp = 4 + * https://fonts.google.com/specimen/Roboto */ +#define LV_FONT_ROBOTO_12 0 +#define LV_FONT_ROBOTO_16 1 +#define LV_FONT_ROBOTO_22 0 +#define LV_FONT_ROBOTO_28 0 + +/* Demonstrate special features */ +#define LV_FONT_ROBOTO_12_SUBPX 1 +#define LV_FONT_ROBOTO_28_COMPRESSED 1 /*bpp = 3*/ + +/*Pixel perfect monospace font + * http://pelulamu.net/unscii/ */ +#define LV_FONT_UNSCII_8 0 + +/* Optionally declare your custom fonts here. + * You can use these fonts as default font too + * and they will be available globally. E.g. + * #define LV_FONT_CUSTOM_DECLARE LV_FONT_DECLARE(my_font_1) \ + * LV_FONT_DECLARE(my_font_2) + */ +#define LV_FONT_CUSTOM_DECLARE + +/*Always set a default font from the built-in fonts*/ +#define LV_FONT_DEFAULT &lv_font_roboto_16 + +/* Enable it if you have fonts with a lot of characters. + * The limit depends on the font size, font face and bpp + * but with > 10,000 characters if you see issues probably you need to enable it.*/ +#define LV_FONT_FMT_TXT_LARGE 0 + +/* Set the pixel order of the display. + * Important only if "subpx fonts" are used. + * With "normal" font it doesn't matter. + */ +#define LV_FONT_SUBPX_BGR 0 + +/*Declare the type of the user data of fonts (can be e.g. `void *`, `int`, `struct`)*/ +typedef void * lv_font_user_data_t; + +/*================= + * Text settings + *=================*/ + +/* Select a character encoding for strings. + * Your IDE or editor should have the same character encoding + * - LV_TXT_ENC_UTF8 + * - LV_TXT_ENC_ASCII + * */ +#define LV_TXT_ENC LV_TXT_ENC_UTF8 + + /*Can break (wrap) texts on these chars*/ +#define LV_TXT_BREAK_CHARS " ,.;:-_" + +/* If a word is at least this long, will break wherever "prettiest" + * To disable, set to a value <= 0 */ +#define LV_TXT_LINE_BREAK_LONG_LEN 12 + +/* Minimum number of characters in a long word to put on a line before a break. + * Depends on LV_TXT_LINE_BREAK_LONG_LEN. */ +#define LV_TXT_LINE_BREAK_LONG_PRE_MIN_LEN 3 + +/* Minimum number of characters in a long word to put on a line after a break. + * Depends on LV_TXT_LINE_BREAK_LONG_LEN. */ +#define LV_TXT_LINE_BREAK_LONG_POST_MIN_LEN 3 + +/* The control character to use for signalling text recoloring. */ +#define LV_TXT_COLOR_CMD "#" + +/* Support bidirectional texts. + * Allows mixing Left-to-Right and Right-to-Left texts. + * The direction will be processed according to the Unicode Bidirectioanl Algorithm: + * https://www.w3.org/International/articles/inline-bidi-markup/uba-basics*/ +#define LV_USE_BIDI 0 +#if LV_USE_BIDI +/* Set the default direction. Supported values: + * `LV_BIDI_DIR_LTR` Left-to-Right + * `LV_BIDI_DIR_RTL` Right-to-Left + * `LV_BIDI_DIR_AUTO` detect texts base direction */ +#define LV_BIDI_BASE_DIR_DEF LV_BIDI_DIR_AUTO +#endif + +/*Change the built in (v)snprintf functions*/ +#define LV_SPRINTF_CUSTOM 0 +#if LV_SPRINTF_CUSTOM +# define LV_SPRINTF_INCLUDE +# define lv_snprintf snprintf +# define lv_vsnprintf vsnprintf +#endif /*LV_SPRINTF_CUSTOM*/ + +/*=================== + * LV_OBJ SETTINGS + *==================*/ + +/*Declare the type of the user data of object (can be e.g. `void *`, `int`, `struct`)*/ +typedef void * lv_obj_user_data_t; + +/*1: enable `lv_obj_realaign()` based on `lv_obj_align()` parameters*/ +#define LV_USE_OBJ_REALIGN 1 + +/* Enable to make the object clickable on a larger area. + * LV_EXT_CLICK_AREA_OFF or 0: Disable this feature + * LV_EXT_CLICK_AREA_TINY: The extra area can be adjusted horizontally and vertically (0..255 px) + * LV_EXT_CLICK_AREA_FULL: The extra area can be adjusted in all 4 directions (-32k..+32k px) + */ +#define LV_USE_EXT_CLICK_AREA LV_EXT_CLICK_AREA_OFF + +/*================== + * LV OBJ X USAGE + *================*/ +/* + * Documentation of the object types: https://docs.littlevgl.com/#Object-types + */ + +/*Arc (dependencies: -)*/ +#define LV_USE_ARC 1 + +/*Bar (dependencies: -)*/ +#define LV_USE_BAR 1 + +/*Button (dependencies: lv_cont*/ +#define LV_USE_BTN 1 +#if LV_USE_BTN != 0 +/*Enable button-state animations - draw a circle on click (dependencies: LV_USE_ANIMATION)*/ +# define LV_BTN_INK_EFFECT 0 +#endif + +/*Button matrix (dependencies: -)*/ +#define LV_USE_BTNM 1 + +/*Calendar (dependencies: -)*/ +#define LV_USE_CALENDAR 1 + +/*Canvas (dependencies: lv_img)*/ +#define LV_USE_CANVAS 1 + +/*Check box (dependencies: lv_btn, lv_label)*/ +#define LV_USE_CB 1 + +/*Chart (dependencies: -)*/ +#define LV_USE_CHART 1 +#if LV_USE_CHART +# define LV_CHART_AXIS_TICK_LABEL_MAX_LEN 20 +#endif + +/*Container (dependencies: -*/ +#define LV_USE_CONT 1 + +/*Color picker (dependencies: -*/ +#define LV_USE_CPICKER 1 + +/*Drop down list (dependencies: lv_page, lv_label, lv_symbol_def.h)*/ +#define LV_USE_DDLIST 1 +#if LV_USE_DDLIST != 0 +/*Open and close default animation time [ms] (0: no animation)*/ +# define LV_DDLIST_DEF_ANIM_TIME 200 +#endif + +/*Gauge (dependencies:lv_bar, lv_lmeter)*/ +#define LV_USE_GAUGE 1 + +/*Image (dependencies: lv_label*/ +#define LV_USE_IMG 1 + +/*Image Button (dependencies: lv_btn*/ +#define LV_USE_IMGBTN 1 +#if LV_USE_IMGBTN +/*1: The imgbtn requires left, mid and right parts and the width can be set freely*/ +# define LV_IMGBTN_TILED 0 +#endif + +/*Keyboard (dependencies: lv_btnm)*/ +#define LV_USE_KB 1 + +/*Label (dependencies: -*/ +#define LV_USE_LABEL 1 +#if LV_USE_LABEL != 0 +/*Hor, or ver. scroll speed [px/sec] in 'LV_LABEL_LONG_ROLL/ROLL_CIRC' mode*/ +# define LV_LABEL_DEF_SCROLL_SPEED 25 + +/* Waiting period at beginning/end of animation cycle */ +# define LV_LABEL_WAIT_CHAR_COUNT 3 + +/*Enable selecting text of the label */ +# define LV_LABEL_TEXT_SEL 0 + +/*Store extra some info in labels (12 bytes) to speed up drawing of very long texts*/ +# define LV_LABEL_LONG_TXT_HINT 0 +#endif + +/*LED (dependencies: -)*/ +#define LV_USE_LED 1 + +/*Line (dependencies: -*/ +#define LV_USE_LINE 1 + +/*List (dependencies: lv_page, lv_btn, lv_label, (lv_img optionally for icons ))*/ +#define LV_USE_LIST 1 +#if LV_USE_LIST != 0 +/*Default animation time of focusing to a list element [ms] (0: no animation) */ +# define LV_LIST_DEF_ANIM_TIME 100 +#endif + +/*Line meter (dependencies: *;)*/ +#define LV_USE_LMETER 1 + +/*Message box (dependencies: lv_rect, lv_btnm, lv_label)*/ +#define LV_USE_MBOX 1 + +/*Page (dependencies: lv_cont)*/ +#define LV_USE_PAGE 1 +#if LV_USE_PAGE != 0 +/*Focus default animation time [ms] (0: no animation)*/ +# define LV_PAGE_DEF_ANIM_TIME 400 +#endif + +/*Preload (dependencies: lv_arc, lv_anim)*/ +#define LV_USE_PRELOAD 1 +#if LV_USE_PRELOAD != 0 +# define LV_PRELOAD_DEF_ARC_LENGTH 60 /*[deg]*/ +# define LV_PRELOAD_DEF_SPIN_TIME 1000 /*[ms]*/ +# define LV_PRELOAD_DEF_ANIM LV_PRELOAD_TYPE_SPINNING_ARC +#endif + +/*Roller (dependencies: lv_ddlist)*/ +#define LV_USE_ROLLER 1 +#if LV_USE_ROLLER != 0 +/*Focus animation time [ms] (0: no animation)*/ +# define LV_ROLLER_DEF_ANIM_TIME 200 + +/*Number of extra "pages" when the roller is infinite*/ +# define LV_ROLLER_INF_PAGES 7 +#endif + +/*Slider (dependencies: lv_bar)*/ +#define LV_USE_SLIDER 1 + +/*Spinbox (dependencies: lv_ta)*/ +#define LV_USE_SPINBOX 1 + +/*Switch (dependencies: lv_slider)*/ +#define LV_USE_SW 1 + +/*Text area (dependencies: lv_label, lv_page)*/ +#define LV_USE_TA 1 +#if LV_USE_TA != 0 +# define LV_TA_DEF_CURSOR_BLINK_TIME 400 /*ms*/ +# define LV_TA_DEF_PWD_SHOW_TIME 1500 /*ms*/ +#endif + +/*Table (dependencies: lv_label)*/ +#define LV_USE_TABLE 1 +#if LV_USE_TABLE +# define LV_TABLE_COL_MAX 12 +#endif + +/*Tab (dependencies: lv_page, lv_btnm)*/ +#define LV_USE_TABVIEW 1 +# if LV_USE_TABVIEW != 0 +/*Time of slide animation [ms] (0: no animation)*/ +# define LV_TABVIEW_DEF_ANIM_TIME 300 +#endif + +/*Tileview (dependencies: lv_page) */ +#define LV_USE_TILEVIEW 1 +#if LV_USE_TILEVIEW +/*Time of slide animation [ms] (0: no animation)*/ +# define LV_TILEVIEW_DEF_ANIM_TIME 300 +#endif + +/*Window (dependencies: lv_cont, lv_btn, lv_label, lv_img, lv_page)*/ +#define LV_USE_WIN 1 + +/*================== + * Non-user section + *==================*/ + +#if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_WARNINGS) /* Disable warnings for Visual Studio*/ +# define _CRT_SECURE_NO_WARNINGS +#endif + +/*--END OF LV_CONF_H--*/ + +/*Be sure every define has a default value*/ +#include "lvgl/src/lv_conf_checker.h" + +#endif /*LV_CONF_H*/ + +#endif /*End of "Content enable"*/ diff --git a/components/lvgl/lvgl/lvgl.h b/components/lvgl/lvgl/lvgl.h new file mode 100644 index 0000000..418ffd2 --- /dev/null +++ b/components/lvgl/lvgl/lvgl.h @@ -0,0 +1,97 @@ +/** + * @file lvgl.h + * Include all LittleV GL related headers + */ + +#ifndef LVGL_H +#define LVGL_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ + +#include "src/lv_version.h" + +#include "src/lv_misc/lv_log.h" +#include "src/lv_misc/lv_task.h" +#include "src/lv_misc/lv_math.h" +#include "src/lv_misc/lv_async.h" + +#include "src/lv_hal/lv_hal.h" + +#include "src/lv_core/lv_obj.h" +#include "src/lv_core/lv_group.h" +#include "src/lv_core/lv_indev.h" + +#include "src/lv_core/lv_refr.h" +#include "src/lv_core/lv_disp.h" +#include "src/lv_core/lv_debug.h" + +#include "src/lv_themes/lv_theme.h" + +#include "src/lv_font/lv_font.h" +#include "src/lv_font/lv_font_fmt_txt.h" +#include "src/lv_misc/lv_bidi.h" +#include "src/lv_misc/lv_printf.h" + +#include "src/lv_objx/lv_btn.h" +#include "src/lv_objx/lv_imgbtn.h" +#include "src/lv_objx/lv_img.h" +#include "src/lv_objx/lv_label.h" +#include "src/lv_objx/lv_line.h" +#include "src/lv_objx/lv_page.h" +#include "src/lv_objx/lv_cont.h" +#include "src/lv_objx/lv_list.h" +#include "src/lv_objx/lv_chart.h" +#include "src/lv_objx/lv_table.h" +#include "src/lv_objx/lv_cb.h" +#include "src/lv_objx/lv_cpicker.h" +#include "src/lv_objx/lv_bar.h" +#include "src/lv_objx/lv_slider.h" +#include "src/lv_objx/lv_led.h" +#include "src/lv_objx/lv_btnm.h" +#include "src/lv_objx/lv_kb.h" +#include "src/lv_objx/lv_ddlist.h" +#include "src/lv_objx/lv_roller.h" +#include "src/lv_objx/lv_ta.h" +#include "src/lv_objx/lv_canvas.h" +#include "src/lv_objx/lv_win.h" +#include "src/lv_objx/lv_tabview.h" +#include "src/lv_objx/lv_tileview.h" +#include "src/lv_objx/lv_mbox.h" +#include "src/lv_objx/lv_gauge.h" +#include "src/lv_objx/lv_lmeter.h" +#include "src/lv_objx/lv_sw.h" +#include "src/lv_objx/lv_kb.h" +#include "src/lv_objx/lv_arc.h" +#include "src/lv_objx/lv_preload.h" +#include "src/lv_objx/lv_calendar.h" +#include "src/lv_objx/lv_spinbox.h" + +#include "src/lv_draw/lv_img_cache.h" + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/********************** + * MACROS + **********************/ + +#ifdef __cplusplus +} +#endif + +#endif /*LVGL_H*/ diff --git a/components/lvgl/lvgl/lvgl.mk b/components/lvgl/lvgl/lvgl.mk new file mode 100644 index 0000000..830fe11 --- /dev/null +++ b/components/lvgl/lvgl/lvgl.mk @@ -0,0 +1,8 @@ +include $(LVGL_DIR)/lvgl/src/lv_core/lv_core.mk +include $(LVGL_DIR)/lvgl/src/lv_hal/lv_hal.mk +include $(LVGL_DIR)/lvgl/src/lv_objx/lv_objx.mk +include $(LVGL_DIR)/lvgl/src/lv_font/lv_font.mk +include $(LVGL_DIR)/lvgl/src/lv_misc/lv_misc.mk +include $(LVGL_DIR)/lvgl/src/lv_themes/lv_themes.mk +include $(LVGL_DIR)/lvgl/src/lv_draw/lv_draw.mk + diff --git a/components/lvgl/lvgl/porting/lv_port_disp_template.c b/components/lvgl/lvgl/porting/lv_port_disp_template.c new file mode 100644 index 0000000..9752d5d --- /dev/null +++ b/components/lvgl/lvgl/porting/lv_port_disp_template.c @@ -0,0 +1,196 @@ +/** + * @file lv_port_disp_templ.c + * + */ + + /*Copy this file as "lv_port_disp.c" and set this value to "1" to enable content*/ +#if 0 + +/********************* + * INCLUDES + *********************/ +#include "lv_port_disp_template.h" + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ +static void disp_init(void); + +static void disp_flush(lv_disp_drv_t * disp_drv, const lv_area_t * area, lv_color_t * color_p); +#if LV_USE_GPU +static void gpu_blend(lv_disp_drv_t * disp_drv, lv_color_t * dest, const lv_color_t * src, uint32_t length, lv_opa_t opa); +static void gpu_fill(lv_disp_drv_t * disp_drv, lv_color_t * dest_buf, lv_coord_t dest_width, + const lv_area_t * fill_area, lv_color_t color); +#endif + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +void lv_port_disp_init(void) +{ + /*------------------------- + * Initialize your display + * -----------------------*/ + disp_init(); + + /*----------------------------- + * Create a buffer for drawing + *----------------------------*/ + + /* LittlevGL requires a buffer where it draws the objects. The buffer's has to be greater than 1 display row + * + * There are three buffering configurations: + * 1. Create ONE buffer with some rows: + * LittlevGL will draw the display's content here and writes it to your display + * + * 2. Create TWO buffer with some rows: + * LittlevGL will draw the display's content to a buffer and writes it your display. + * You should use DMA to write the buffer's content to the display. + * It will enable LittlevGL to draw the next part of the screen to the other buffer while + * the data is being sent form the first buffer. It makes rendering and flushing parallel. + * + * 3. Create TWO screen-sized buffer: + * Similar to 2) but the buffer have to be screen sized. When LittlevGL is ready it will give the + * whole frame to display. This way you only need to change the frame buffer's address instead of + * copying the pixels. + * */ + + /* Example for 1) */ + static lv_disp_buf_t disp_buf_1; + static lv_color_t buf1_1[LV_HOR_RES_MAX * 10]; /*A buffer for 10 rows*/ + lv_disp_buf_init(&disp_buf_1, buf1_1, NULL, LV_HOR_RES_MAX * 10); /*Initialize the display buffer*/ + + /* Example for 2) */ + static lv_disp_buf_t disp_buf_2; + static lv_color_t buf2_1[LV_HOR_RES_MAX * 10]; /*A buffer for 10 rows*/ + static lv_color_t buf2_2[LV_HOR_RES_MAX * 10]; /*An other buffer for 10 rows*/ + lv_disp_buf_init(&disp_buf_2, buf2_1, buf2_2, LV_HOR_RES_MAX * 10); /*Initialize the display buffer*/ + + /* Example for 3) */ + static lv_disp_buf_t disp_buf_3; + static lv_color_t buf3_1[LV_HOR_RES_MAX * LV_VER_RES_MAX]; /*A screen sized buffer*/ + static lv_color_t buf3_2[LV_HOR_RES_MAX * LV_VER_RES_MAX]; /*An other screen sized buffer*/ + lv_disp_buf_init(&disp_buf_3, buf3_1, buf3_2, LV_HOR_RES_MAX * LV_VER_RES_MAX); /*Initialize the display buffer*/ + + + /*----------------------------------- + * Register the display in LittlevGL + *----------------------------------*/ + + lv_disp_drv_t disp_drv; /*Descriptor of a display driver*/ + lv_disp_drv_init(&disp_drv); /*Basic initialization*/ + + /*Set up the functions to access to your display*/ + + /*Set the resolution of the display*/ + disp_drv.hor_res = 480; + disp_drv.ver_res = 320; + + /*Used to copy the buffer's content to the display*/ + disp_drv.flush_cb = disp_flush; + + /*Set a display buffer*/ + disp_drv.buffer = &disp_buf_2; + +#if LV_USE_GPU + /*Optionally add functions to access the GPU. (Only in buffered mode, LV_VDB_SIZE != 0)*/ + + /*Blend two color array using opacity*/ + disp_drv.gpu_blend_cb = gpu_blend; + + /*Fill a memory array with a color*/ + disp_drv.gpu_fill_cb = gpu_fill; +#endif + + /*Finally register the driver*/ + lv_disp_drv_register(&disp_drv); +} + +/********************** + * STATIC FUNCTIONS + **********************/ + +/* Initialize your display and the required peripherals. */ +static void disp_init(void) +{ + /*You code here*/ +} + +/* Flush the content of the internal buffer the specific area on the display + * You can use DMA or any hardware acceleration to do this operation in the background but + * 'lv_disp_flush_ready()' has to be called when finished. */ +static void disp_flush(lv_disp_drv_t * disp_drv, const lv_area_t * area, lv_color_t * color_p) +{ + /*The most simple case (but also the slowest) to put all pixels to the screen one-by-one*/ + + int32_t x; + int32_t y; + for(y = area->y1; y <= area->y2; y++) { + for(x = area->x1; x <= area->x2; x++) { + /* Put a pixel to the display. For example: */ + /* put_px(x, y, *color_p)*/ + color_p++; + } + } + + /* IMPORTANT!!! + * Inform the graphics library that you are ready with the flushing*/ + lv_disp_flush_ready(disp_drv); +} + + +/*OPTIONAL: GPU INTERFACE*/ +#if LV_USE_GPU + +/* If your MCU has hardware accelerator (GPU) then you can use it to blend to memories using opacity + * It can be used only in buffered mode (LV_VDB_SIZE != 0 in lv_conf.h)*/ +static void gpu_blend(lv_disp_drv_t * disp_drv, lv_color_t * dest, const lv_color_t * src, uint32_t length, lv_opa_t opa) +{ + /*It's an example code which should be done by your GPU*/ + uint32_t i; + for(i = 0; i < length; i++) { + dest[i] = lv_color_mix(dest[i], src[i], opa); + } +} + +/* If your MCU has hardware accelerator (GPU) then you can use it to fill a memory with a color + * It can be used only in buffered mode (LV_VDB_SIZE != 0 in lv_conf.h)*/ +static void gpu_fill(lv_disp_drv_t * disp_drv, lv_color_t * dest_buf, lv_coord_t dest_width, + const lv_area_t * fill_area, lv_color_t color) +{ + /*It's an example code which should be done by your GPU*/ + int32_t x, y; + dest_buf += dest_width * fill_area->y1; /*Go to the first line*/ + + for(y = fill_area->y1; y < fill_area->y2; y++) { + for(x = fill_area->x1; x < fill_area->x2; x++) { + dest_buf[x] = color; + } + dest_buf+=dest_width; /*Go to the next line*/ + } +} + +#endif /*LV_USE_GPU*/ + +#else /* Enable this file at the top */ + +/* This dummy typedef exists purely to silence -Wpedantic. */ +typedef int keep_pedantic_happy; +#endif diff --git a/components/lvgl/lvgl/porting/lv_port_disp_template.h b/components/lvgl/lvgl/porting/lv_port_disp_template.h new file mode 100644 index 0000000..eeca802 --- /dev/null +++ b/components/lvgl/lvgl/porting/lv_port_disp_template.h @@ -0,0 +1,44 @@ +/** + * @file lv_port_disp_templ.h + * + */ + + /*Copy this file as "lv_port_disp.h" and set this value to "1" to enable content*/ +#if 0 + +#ifndef LV_PORT_DISP_TEMPL_H +#define LV_PORT_DISP_TEMPL_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#include "lvgl/lvgl.h" + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/********************** + * MACROS + **********************/ + + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_PORT_DISP_TEMPL_H*/ + +#endif /*Disable/Enable content*/ diff --git a/components/lvgl/lvgl/porting/lv_port_fs_template.c b/components/lvgl/lvgl/porting/lv_port_fs_template.c new file mode 100644 index 0000000..454899d --- /dev/null +++ b/components/lvgl/lvgl/porting/lv_port_fs_template.c @@ -0,0 +1,379 @@ +/** + * @file lv_port_fs_templ.c + * + */ + + /*Copy this file as "lv_port_fs.c" and set this value to "1" to enable content*/ +#if 0 + +/********************* + * INCLUDES + *********************/ +#include "lv_port_fs_template.h" + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/* Create a type to store the required data about your file. + * If you are using a File System library + * it already should have a File type. + * For example FatFS has `FIL`. In this case use `typedef FIL file_t`*/ +typedef struct { + /*Add the data you need to store about a file*/ + uint32_t dummy1; + uint32_t dummy2; +}file_t; + +/*Similarly to `file_t` create a type for directory reading too */ +typedef struct { + /*Add the data you need to store about directory reading*/ + uint32_t dummy1; + uint32_t dummy2; +}dir_t; + + +/********************** + * STATIC PROTOTYPES + **********************/ +static void fs_init(void); + +static lv_fs_res_t fs_open (lv_fs_drv_t * drv, void * file_p, const char * path, lv_fs_mode_t mode); +static lv_fs_res_t fs_close (lv_fs_drv_t * drv, void * file_p); +static lv_fs_res_t fs_read (lv_fs_drv_t * drv, void * file_p, void * buf, uint32_t btr, uint32_t * br); +static lv_fs_res_t fs_write(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint32_t * bw); +static lv_fs_res_t fs_seek (lv_fs_drv_t * drv, void * file_p, uint32_t pos); +static lv_fs_res_t fs_size (lv_fs_drv_t * drv, void * file_p, uint32_t * size_p); +static lv_fs_res_t fs_tell (lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p); +static lv_fs_res_t fs_remove (lv_fs_drv_t * drv, const char *path); +static lv_fs_res_t fs_trunc (lv_fs_drv_t * drv, void * file_p); +static lv_fs_res_t fs_rename (lv_fs_drv_t * drv, const char * oldname, const char * newname); +static lv_fs_res_t fs_free (lv_fs_drv_t * drv, uint32_t * total_p, uint32_t * free_p); +static lv_fs_res_t fs_dir_open (lv_fs_drv_t * drv, void * rddir_p, const char *path); +static lv_fs_res_t fs_dir_read (lv_fs_drv_t * drv, void * rddir_p, char *fn); +static lv_fs_res_t fs_dir_close (lv_fs_drv_t * drv, void * rddir_p); + +/********************** + * STATIC VARIABLES + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +void lv_port_fs_init(void) +{ + /*---------------------------------------------------- + * Initialize your storage device and File System + * -------------------------------------------------*/ + fs_init(); + + /*--------------------------------------------------- + * Register the file system interface in LittlevGL + *--------------------------------------------------*/ + + /* Add a simple drive to open images */ + lv_fs_drv_t fs_drv; + lv_fs_drv_init(&fs_drv); + + /*Set up fields...*/ + fs_drv.file_size = sizeof(file_t); + fs_drv.letter = 'P'; + fs_drv.open_cb = fs_open; + fs_drv.close_cb = fs_close; + fs_drv.read_cb = fs_read; + fs_drv.write_cb = fs_write; + fs_drv.seek_cb = fs_seek; + fs_drv.tell_cb = fs_tell; + fs_drv.free_space_cb = fs_free; + fs_drv.size_cb = fs_size; + fs_drv.remove_cb = fs_remove; + fs_drv.rename_cb = fs_rename; + fs_drv.trunc_cb = fs_trunc; + + fs_drv.rddir_size = sizeof(dir_t); + fs_drv.dir_close_cb = fs_dir_close; + fs_drv.dir_open_cb = fs_dir_open; + fs_drv.dir_read_cb = fs_dir_read; + + lv_fs_drv_register(&fs_drv); +} + +/********************** + * STATIC FUNCTIONS + **********************/ + +/* Initialize your Storage device and File system. */ +static void fs_init(void) +{ + /*E.g. for FatFS initalize the SD card and FatFS itself*/ + + /*You code here*/ +} + +/** + * Open a file + * @param drv pointer to a driver where this function belongs + * @param file_p pointer to a file_t variable + * @param path path to the file beginning with the driver letter (e.g. S:/folder/file.txt) + * @param mode read: FS_MODE_RD, write: FS_MODE_WR, both: FS_MODE_RD | FS_MODE_WR + * @return LV_FS_RES_OK or any error from lv_fs_res_t enum + */ +static lv_fs_res_t fs_open (lv_fs_drv_t * drv, void * file_p, const char * path, lv_fs_mode_t mode) +{ + lv_fs_res_t res = LV_FS_RES_NOT_IMP; + + if(mode == LV_FS_MODE_WR) + { + /*Open a file for write*/ + + /* Add your code here*/ + } + else if(mode == LV_FS_MODE_RD) + { + /*Open a file for read*/ + + /* Add your code here*/ + } + else if(mode == (LV_FS_MODE_WR | LV_FS_MODE_RD)) + { + /*Open a file for read and write*/ + + /* Add your code here*/ + } + + return res; +} + + +/** + * Close an opened file + * @param drv pointer to a driver where this function belongs + * @param file_p pointer to a file_t variable. (opened with lv_ufs_open) + * @return LV_FS_RES_OK: no error, the file is read + * any error from lv_fs_res_t enum + */ +static lv_fs_res_t fs_close (lv_fs_drv_t * drv, void * file_p) +{ + lv_fs_res_t res = LV_FS_RES_NOT_IMP; + + /* Add your code here*/ + + return res; +} + +/** + * Read data from an opened file + * @param drv pointer to a driver where this function belongs + * @param file_p pointer to a file_t variable. + * @param buf pointer to a memory block where to store the read data + * @param btr number of Bytes To Read + * @param br the real number of read bytes (Byte Read) + * @return LV_FS_RES_OK: no error, the file is read + * any error from lv_fs_res_t enum + */ +static lv_fs_res_t fs_read (lv_fs_drv_t * drv, void * file_p, void * buf, uint32_t btr, uint32_t * br) +{ + lv_fs_res_t res = LV_FS_RES_NOT_IMP; + + /* Add your code here*/ + + return res; +} + +/** + * Write into a file + * @param drv pointer to a driver where this function belongs + * @param file_p pointer to a file_t variable + * @param buf pointer to a buffer with the bytes to write + * @param btr Bytes To Write + * @param br the number of real written bytes (Bytes Written). NULL if unused. + * @return LV_FS_RES_OK or any error from lv_fs_res_t enum + */ +static lv_fs_res_t fs_write(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint32_t * bw) +{ + lv_fs_res_t res = LV_FS_RES_NOT_IMP; + + /* Add your code here*/ + + return res; +} + +/** + * Set the read write pointer. Also expand the file size if necessary. + * @param drv pointer to a driver where this function belongs + * @param file_p pointer to a file_t variable. (opened with lv_ufs_open ) + * @param pos the new position of read write pointer + * @return LV_FS_RES_OK: no error, the file is read + * any error from lv_fs_res_t enum + */ +static lv_fs_res_t fs_seek (lv_fs_drv_t * drv, void * file_p, uint32_t pos) +{ + lv_fs_res_t res = LV_FS_RES_NOT_IMP; + + /* Add your code here*/ + + return res; +} + +/** + * Give the size of a file bytes + * @param drv pointer to a driver where this function belongs + * @param file_p pointer to a file_t variable + * @param size pointer to a variable to store the size + * @return LV_FS_RES_OK or any error from lv_fs_res_t enum + */ +static lv_fs_res_t fs_size (lv_fs_drv_t * drv, void * file_p, uint32_t * size_p) +{ + lv_fs_res_t res = LV_FS_RES_NOT_IMP; + + /* Add your code here*/ + + return res; +} +/** + * Give the position of the read write pointer + * @param drv pointer to a driver where this function belongs + * @param file_p pointer to a file_t variable. + * @param pos_p pointer to to store the result + * @return LV_FS_RES_OK: no error, the file is read + * any error from lv_fs_res_t enum + */ +static lv_fs_res_t fs_tell (lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p) +{ + lv_fs_res_t res = LV_FS_RES_NOT_IMP; + + /* Add your code here*/ + + return res; +} + +/** + * Delete a file + * @param drv pointer to a driver where this function belongs + * @param path path of the file to delete + * @return LV_FS_RES_OK or any error from lv_fs_res_t enum + */ +static lv_fs_res_t fs_remove (lv_fs_drv_t * drv, const char *path) +{ + lv_fs_res_t res = LV_FS_RES_NOT_IMP; + + /* Add your code here*/ + + return res; +} + +/** + * Truncate the file size to the current position of the read write pointer + * @param drv pointer to a driver where this function belongs + * @param file_p pointer to an 'ufs_file_t' variable. (opened with lv_fs_open ) + * @return LV_FS_RES_OK: no error, the file is read + * any error from lv_fs_res_t enum + */ +static lv_fs_res_t fs_trunc (lv_fs_drv_t * drv, void * file_p) +{ + lv_fs_res_t res = LV_FS_RES_NOT_IMP; + + /* Add your code here*/ + + return res; +} + +/** + * Rename a file + * @param drv pointer to a driver where this function belongs + * @param oldname path to the file + * @param newname path with the new name + * @return LV_FS_RES_OK or any error from 'fs_res_t' + */ +static lv_fs_res_t fs_rename (lv_fs_drv_t * drv, const char * oldname, const char * newname) +{ + lv_fs_res_t res = LV_FS_RES_NOT_IMP; + + /* Add your code here*/ + + return res; +} + +/** + * Get the free and total size of a driver in kB + * @param drv pointer to a driver where this function belongs + * @param letter the driver letter + * @param total_p pointer to store the total size [kB] + * @param free_p pointer to store the free size [kB] + * @return LV_FS_RES_OK or any error from lv_fs_res_t enum + */ +static lv_fs_res_t fs_free (lv_fs_drv_t * drv, uint32_t * total_p, uint32_t * free_p) +{ + lv_fs_res_t res = LV_FS_RES_NOT_IMP; + + /* Add your code here*/ + + return res; +} + +/** + * Initialize a 'fs_read_dir_t' variable for directory reading + * @param drv pointer to a driver where this function belongs + * @param rddir_p pointer to a 'fs_read_dir_t' variable + * @param path path to a directory + * @return LV_FS_RES_OK or any error from lv_fs_res_t enum + */ +static lv_fs_res_t fs_dir_open (lv_fs_drv_t * drv, void * rddir_p, const char *path) +{ + lv_fs_res_t res = LV_FS_RES_NOT_IMP; + + /* Add your code here*/ + + return res; +} + +/** + * Read the next filename form a directory. + * The name of the directories will begin with '/' + * @param drv pointer to a driver where this function belongs + * @param rddir_p pointer to an initialized 'fs_read_dir_t' variable + * @param fn pointer to a buffer to store the filename + * @return LV_FS_RES_OK or any error from lv_fs_res_t enum + */ +static lv_fs_res_t fs_dir_read (lv_fs_drv_t * drv, void * rddir_p, char *fn) +{ + lv_fs_res_t res = LV_FS_RES_NOT_IMP; + + /* Add your code here*/ + + return res; +} + +/** + * Close the directory reading + * @param drv pointer to a driver where this function belongs + * @param rddir_p pointer to an initialized 'fs_read_dir_t' variable + * @return LV_FS_RES_OK or any error from lv_fs_res_t enum + */ +static lv_fs_res_t fs_dir_close (lv_fs_drv_t * drv, void * rddir_p) +{ + lv_fs_res_t res = LV_FS_RES_NOT_IMP; + + /* Add your code here*/ + + return res; +} + +#else /* Enable this file at the top */ + +/* This dummy typedef exists purely to silence -Wpedantic. */ +typedef int keep_pedantic_happy; +#endif diff --git a/components/lvgl/lvgl/porting/lv_port_fs_template.h b/components/lvgl/lvgl/porting/lv_port_fs_template.h new file mode 100644 index 0000000..7db06f6 --- /dev/null +++ b/components/lvgl/lvgl/porting/lv_port_fs_template.h @@ -0,0 +1,44 @@ +/** + * @file lv_port_fs_templ.h + * + */ + + /*Copy this file as "lv_port_fs.h" and set this value to "1" to enable content*/ +#if 0 + +#ifndef LV_PORT_FS_TEMPL_H +#define LV_PORT_FS_TEMPL_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#include "lvgl/lvgl.h" + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/********************** + * MACROS + **********************/ + + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_PORT_FS_TEMPL_H*/ + +#endif /*Disable/Enable content*/ diff --git a/components/lvgl/lvgl/porting/lv_port_indev_template.c b/components/lvgl/lvgl/porting/lv_port_indev_template.c new file mode 100644 index 0000000..54b8c9f --- /dev/null +++ b/components/lvgl/lvgl/porting/lv_port_indev_template.c @@ -0,0 +1,428 @@ +/** + * @file lv_port_indev_templ.c + * + */ + + /*Copy this file as "lv_port_indev.c" and set this value to "1" to enable content*/ +#if 0 + +/********************* + * INCLUDES + *********************/ +#include "lv_port_indev_template.h" + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * STATIC PROTOTYPES + **********************/ + +static void touchpad_init(void); +static bool touchpad_read(lv_indev_drv_t * indev_drv, lv_indev_data_t * data); +static bool touchpad_is_pressed(void); +static void touchpad_get_xy(lv_coord_t * x, lv_coord_t * y); + +static void mouse_init(void); +static bool mouse_read(lv_indev_drv_t * indev_drv, lv_indev_data_t * data); +static bool mouse_is_pressed(void); +static void mouse_get_xy(lv_coord_t * x, lv_coord_t * y); + +static void keypad_init(void); +static bool keypad_read(lv_indev_drv_t * indev_drv, lv_indev_data_t * data); +static uint32_t keypad_get_key(void); + +static void encoder_init(void); +static bool encoder_read(lv_indev_drv_t * indev_drv, lv_indev_data_t * data); +static void encoder_handler(void); + +static void button_init(void); +static bool button_read(lv_indev_drv_t * indev_drv, lv_indev_data_t * data); +static int8_t button_get_pressed_id(void); +static bool button_is_pressed(uint8_t id); + +/********************** + * STATIC VARIABLES + **********************/ +lv_indev_t * indev_touchpad; +lv_indev_t * indev_mouse; +lv_indev_t * indev_keypad; +lv_indev_t * indev_encoder; +lv_indev_t * indev_button; + +static int32_t encoder_diff; +static lv_indev_state_t encoder_state; + +/********************** + * MACROS + **********************/ + +/********************** + * GLOBAL FUNCTIONS + **********************/ + +void lv_port_indev_init(void) +{ + /* Here you will find example implementation of input devices supported by LittelvGL: + * - Touchpad + * - Mouse (with cursor support) + * - Keypad (supports GUI usage only with key) + * - Encoder (supports GUI usage only with: left, right, push) + * - Button (external buttons to press points on the screen) + * + * The `..._read()` function are only examples. + * You should shape them according to your hardware + */ + + + lv_indev_drv_t indev_drv; + + /*------------------ + * Touchpad + * -----------------*/ + + /*Initialize your touchpad if you have*/ + touchpad_init(); + + /*Register a touchpad input device*/ + lv_indev_drv_init(&indev_drv); + indev_drv.type = LV_INDEV_TYPE_POINTER; + indev_drv.read_cb = touchpad_read; + indev_touchpad = lv_indev_drv_register(&indev_drv); + + /*------------------ + * Mouse + * -----------------*/ + + /*Initialize your touchpad if you have*/ + mouse_init(); + + /*Register a mouse input device*/ + lv_indev_drv_init(&indev_drv); + indev_drv.type = LV_INDEV_TYPE_POINTER; + indev_drv.read_cb = mouse_read; + indev_mouse = lv_indev_drv_register(&indev_drv); + + /*Set cursor. For simplicity set a HOME symbol now.*/ + lv_obj_t * mouse_cursor = lv_img_create(lv_disp_get_scr_act(NULL), NULL); + lv_img_set_src(mouse_cursor, LV_SYMBOL_HOME); + lv_indev_set_cursor(indev_mouse, mouse_cursor); + + /*------------------ + * Keypad + * -----------------*/ + + /*Initialize your keypad or keyboard if you have*/ + keypad_init(); + + /*Register a keypad input device*/ + lv_indev_drv_init(&indev_drv); + indev_drv.type = LV_INDEV_TYPE_KEYPAD; + indev_drv.read_cb = keypad_read; + indev_keypad = lv_indev_drv_register(&indev_drv); + + /* Later you should create group(s) with `lv_group_t * group = lv_group_create()`, + * add objects to the group with `lv_group_add_obj(group, obj)` + * and assign this input device to group to navigate in it: + * `lv_indev_set_group(indev_keypad, group);` */ + + /*------------------ + * Encoder + * -----------------*/ + + /*Initialize your encoder if you have*/ + encoder_init(); + + /*Register a encoder input device*/ + lv_indev_drv_init(&indev_drv); + indev_drv.type = LV_INDEV_TYPE_KEYPAD; + indev_drv.read_cb = encoder_read; + indev_encoder = lv_indev_drv_register(&indev_drv); + + /* Later you should create group(s) with `lv_group_t * group = lv_group_create()`, + * add objects to the group with `lv_group_add_obj(group, obj)` + * and assign this input device to group to navigate in it: + * `lv_indev_set_group(indev_keypad, group);` */ + + /*------------------ + * Button + * -----------------*/ + + /*Initialize your button if you have*/ + button_init(); + + /*Register a button input device*/ + lv_indev_drv_init(&indev_drv); + indev_drv.type = LV_INDEV_TYPE_BUTTON; + indev_drv.read_cb = button_read; + indev_button = lv_indev_drv_register(&indev_drv); + + /*Assign buttons to points on the screen*/ + static const lv_point_t btn_points[2] = { + {10, 10}, /*Button 0 -> x:10; y:10*/ + {40, 100}, /*Button 1 -> x:40; y:100*/ + }; + lv_indev_set_button_points(indev_button, btn_points); +} + +/********************** + * STATIC FUNCTIONS + **********************/ + + + +/*------------------ + * Touchpad + * -----------------*/ + +/*Initialize your touchpad*/ +static void touchpad_init(void) +{ + /*Your code comes here*/ +} + +/* Will be called by the library to read the touchpad */ +static bool touchpad_read(lv_indev_drv_t * indev_drv, lv_indev_data_t * data) +{ + static lv_coord_t last_x = 0; + static lv_coord_t last_y = 0; + + /*Save the pressed coordinates and the state*/ + if(touchpad_is_pressed()) { + touchpad_get_xy(&last_x, &last_y); + data->state = LV_INDEV_STATE_PR; + } else { + data->state = LV_INDEV_STATE_REL; + } + + /*Set the last pressed coordinates*/ + data->point.x = last_x; + data->point.y = last_y; + + /*Return `false` because we are not buffering and no more data to read*/ + return false; +} + +/*Return true is the touchpad is pressed*/ +static bool touchpad_is_pressed(void) +{ + /*Your code comes here*/ + + return false; +} + +/*Get the x and y coordinates if the touchpad is pressed*/ +static void touchpad_get_xy(lv_coord_t * x, lv_coord_t * y) +{ + /*Your code comes here*/ + + (*x) = 0; + (*y) = 0; +} + + +/*------------------ + * Mouse + * -----------------*/ + +/* Initialize your mouse */ +static void mouse_init(void) +{ + /*Your code comes here*/ +} + +/* Will be called by the library to read the mouse */ +static bool mouse_read(lv_indev_drv_t * indev_drv, lv_indev_data_t * data) +{ + /*Get the current x and y coordinates*/ + mouse_get_xy(&data->point.x, &data->point.y); + + /*Get whether the mouse button is pressed or released*/ + if(mouse_is_pressed()) { + data->state = LV_INDEV_STATE_PR; + } else { + data->state = LV_INDEV_STATE_REL; + } + + /*Return `false` because we are not buffering and no more data to read*/ + return false; +} + +/*Return true is the mouse button is pressed*/ +static bool mouse_is_pressed(void) +{ + /*Your code comes here*/ + + return false; +} + +/*Get the x and y coordinates if the mouse is pressed*/ +static void mouse_get_xy(lv_coord_t * x, lv_coord_t * y) +{ + /*Your code comes here*/ + + (*x) = 0; + (*y) = 0; +} + +/*------------------ + * Keypad + * -----------------*/ + +/* Initialize your keypad */ +static void keypad_init(void) +{ + /*Your code comes here*/ +} + +/* Will be called by the library to read the mouse */ +static bool keypad_read(lv_indev_drv_t * indev_drv, lv_indev_data_t * data) +{ + static uint32_t last_key = 0; + + /*Get the current x and y coordinates*/ + mouse_get_xy(&data->point.x, &data->point.y); + + /*Get whether the a key is pressed and save the pressed key*/ + uint32_t act_key = keypad_get_key(); + if(act_key != 0) { + data->state = LV_INDEV_STATE_PR; + + /*Translate the keys to LittlevGL control characters according to your key definitions*/ + switch(act_key) { + case 1: + act_key = LV_KEY_NEXT; + break; + case 2: + act_key = LV_KEY_PREV; + break; + case 3: + act_key = LV_KEY_LEFT; + break; + case 4: + act_key = LV_KEY_RIGHT; + break; + case 5: + act_key = LV_KEY_ENTER; + break; + } + + last_key = act_key; + } else { + data->state = LV_INDEV_STATE_REL; + } + + data->key = last_key; + + /*Return `false` because we are not buffering and no more data to read*/ + return false; +} + +/*Get the currently being pressed key. 0 if no key is pressed*/ +static uint32_t keypad_get_key(void) +{ + /*Your code comes here*/ + + return 0; +} + +/*------------------ + * Encoder + * -----------------*/ + +/* Initialize your keypad */ +static void encoder_init(void) +{ + /*Your code comes here*/ +} + +/* Will be called by the library to read the encoder */ +static bool encoder_read(lv_indev_drv_t * indev_drv, lv_indev_data_t * data) +{ + + data->enc_diff = encoder_diff; + data->state = encoder_state; + + /*Return `false` because we are not buffering and no more data to read*/ + return false; +} + +/*Call this function in an interrupt to process encoder events (turn, press)*/ +static void encoder_handler(void) +{ + /*Your code comes here*/ + + encoder_diff += 0; + encoder_state = LV_INDEV_STATE_REL; +} + + +/*------------------ + * Button + * -----------------*/ + +/* Initialize your buttons */ +static void button_init(void) +{ + /*Your code comes here*/ +} + +/* Will be called by the library to read the button */ +static bool button_read(lv_indev_drv_t * indev_drv, lv_indev_data_t * data) +{ + + static uint8_t last_btn = 0; + + /*Get the pressed button's ID*/ + int8_t btn_act = button_get_pressed_id(); + + if(btn_act >= 0) { + data->state = LV_INDEV_STATE_PR; + last_btn = btn_act; + } else { + data->state = LV_INDEV_STATE_REL; + } + + /*Save the last pressed button's ID*/ + data->btn_id = last_btn; + + /*Return `false` because we are not buffering and no more data to read*/ + return false; +} + +/*Get ID (0, 1, 2 ..) of the pressed button*/ +static int8_t button_get_pressed_id(void) +{ + uint8_t i; + + /*Check to buttons see which is being pressed (assume there are 2 buttons)*/ + for(i = 0; i < 2; i++) { + /*Return the pressed button's ID*/ + if(button_is_pressed(i)) { + return i; + } + } + + /*No button pressed*/ + return -1; +} + +/*Test if `id` button is pressed or not*/ +static bool button_is_pressed(uint8_t id) +{ + + /*Your code comes here*/ + + return false; +} + +#else /* Enable this file at the top */ + +/* This dummy typedef exists purely to silence -Wpedantic. */ +typedef int keep_pedantic_happy; +#endif diff --git a/components/lvgl/lvgl/porting/lv_port_indev_template.h b/components/lvgl/lvgl/porting/lv_port_indev_template.h new file mode 100644 index 0000000..ca0274e --- /dev/null +++ b/components/lvgl/lvgl/porting/lv_port_indev_template.h @@ -0,0 +1,45 @@ + +/** + * @file lv_port_indev_templ.h + * + */ + + /*Copy this file as "lv_port_indev.h" and set this value to "1" to enable content*/ +#if 0 + +#ifndef LV_PORT_INDEV_TEMPL_H +#define LV_PORT_INDEV_TEMPL_H + +#ifdef __cplusplus +extern "C" { +#endif + +/********************* + * INCLUDES + *********************/ +#include "lvgl/lvgl.h" + +/********************* + * DEFINES + *********************/ + +/********************** + * TYPEDEFS + **********************/ + +/********************** + * GLOBAL PROTOTYPES + **********************/ + +/********************** + * MACROS + **********************/ + + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif /*LV_PORT_INDEV_TEMPL_H*/ + +#endif /*Disable/Enable content*/ diff --git a/components/lvgl/lvgl/scripts/Doxyfile b/components/lvgl/lvgl/scripts/Doxyfile new file mode 100644 index 0000000..7120f5d --- /dev/null +++ b/components/lvgl/lvgl/scripts/Doxyfile @@ -0,0 +1,2455 @@ +# Doxyfile 1.8.13 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project. +# +# All text after a double hash (##) is considered a comment and is placed in +# front of the TAG it is preceding. +# +# All text after a single hash (#) is considered a comment and will be ignored. +# The format is: +# TAG = value [value, ...] +# For lists, items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (\" \"). + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all text +# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv +# built into libc) for the transcoding. See http://www.gnu.org/software/libiconv +# for the list of possible encodings. +# The default value is: UTF-8. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by +# double-quotes, unless you are using Doxywizard) that should identify the +# project for which the documentation is generated. This name is used in the +# title of most generated pages and in a few other places. +# The default value is: My Project. + +PROJECT_NAME = "LittlevGL" + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. This +# could be handy for archiving the generated documentation or if some version +# control system is used. + +PROJECT_NUMBER = + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer a +# quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = + +# With the PROJECT_LOGO tag one can specify a logo or an icon that is included +# in the documentation. The maximum height of the logo should not exceed 55 +# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy +# the logo to the output directory. + +PROJECT_LOGO = + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path +# into which the generated documentation will be written. If a relative path is +# entered, it will be relative to the location where doxygen was started. If +# left blank the current directory will be used. + +OUTPUT_DIRECTORY = ../docs/api_doc + +# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- +# directories (in 2 levels) under the output directory of each output format and +# will distribute the generated files over these directories. Enabling this +# option can be useful when feeding doxygen a huge amount of source files, where +# putting all generated files in the same directory would otherwise causes +# performance problems for the file system. +# The default value is: NO. + +CREATE_SUBDIRS = NO + +# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII +# characters to appear in the names of generated files. If set to NO, non-ASCII +# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode +# U+3044. +# The default value is: NO. + +ALLOW_UNICODE_NAMES = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, +# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), +# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, +# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), +# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, +# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, +# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, +# Ukrainian and Vietnamese. +# The default value is: English. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member +# descriptions after the members that are listed in the file and class +# documentation (similar to Javadoc). Set to NO to disable this. +# The default value is: YES. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief +# description of a member or function before the detailed description +# +# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. +# The default value is: YES. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator that is +# used to form the text in various listings. Each string in this list, if found +# as the leading text of the brief description, will be stripped from the text +# and the result, after processing the whole list, is used as the annotated +# text. Otherwise, the brief description is used as-is. If left blank, the +# following values are used ($name is automatically replaced with the name of +# the entity):The $name class, The $name widget, The $name file, is, provides, +# specifies, contains, represents, a, an and the. + +ABBREVIATE_BRIEF = "The $name class" \ + "The $name widget" \ + "The $name file" \ + is \ + provides \ + specifies \ + contains \ + represents \ + a \ + an \ + the + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# doxygen will generate a detailed section even if there is only a brief +# description. +# The default value is: NO. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. +# The default value is: NO. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path +# before files name in the file list and in the header files. If set to NO the +# shortest path that makes the file name unique will be used +# The default value is: YES. + +FULL_PATH_NAMES = YES + +# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. +# Stripping is only done if one of the specified strings matches the left-hand +# part of the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the path to +# strip. +# +# Note that you can specify absolute paths here, but also relative paths, which +# will be relative from the directory where doxygen is started. +# This tag requires that the tag FULL_PATH_NAMES is set to YES. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the +# path mentioned in the documentation of a class, which tells the reader which +# header file to include in order to use a class. If left blank only the name of +# the header file containing the class definition is used. Otherwise one should +# specify the list of include paths that are normally passed to the compiler +# using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but +# less readable) file names. This can be useful is your file systems doesn't +# support long names like on DOS, Mac, or CD-ROM. +# The default value is: NO. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the +# first line (until the first dot) of a Javadoc-style comment as the brief +# description. If set to NO, the Javadoc-style will behave just like regular Qt- +# style comments (thus requiring an explicit @brief command for a brief +# description.) +# The default value is: NO. + +JAVADOC_AUTOBRIEF = NO + +# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first +# line (until the first dot) of a Qt-style comment as the brief description. If +# set to NO, the Qt-style will behave just like regular Qt-style comments (thus +# requiring an explicit \brief command for a brief description.) +# The default value is: NO. + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a +# multi-line C++ special comment block (i.e. a block of //! or /// comments) as +# a brief description. This used to be the default behavior. The new default is +# to treat a multi-line C++ comment block as a detailed description. Set this +# tag to YES if you prefer the old behavior instead. +# +# Note that setting this tag to YES also means that rational rose comments are +# not recognized any more. +# The default value is: NO. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the +# documentation from any documented member that it re-implements. +# The default value is: YES. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new +# page for each member. If set to NO, the documentation of a member will be part +# of the file/class/namespace that contains it. +# The default value is: NO. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen +# uses this value to replace tabs by spaces in code fragments. +# Minimum value: 1, maximum value: 16, default value: 4. + +TAB_SIZE = 4 + +# This tag can be used to specify a number of aliases that act as commands in +# the documentation. An alias has the form: +# name=value +# For example adding +# "sideeffect=@par Side Effects:\n" +# will allow you to put the command \sideeffect (or @sideeffect) in the +# documentation, which will result in a user-defined paragraph with heading +# "Side Effects:". You can put \n's in the value part of an alias to insert +# newlines. + +ALIASES = + +# This tag can be used to specify a number of word-keyword mappings (TCL only). +# A mapping has the form "name=value". For example adding "class=itcl::class" +# will allow you to use the command class in the itcl::class meaning. + +TCL_SUBST = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources +# only. Doxygen will then generate output that is more tailored for C. For +# instance, some of the names that are used will be different. The list of all +# members will be omitted, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_FOR_C = YES + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or +# Python sources only. Doxygen will then generate output that is more tailored +# for that language. For instance, namespaces will be presented as packages, +# qualified scopes will look different, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources. Doxygen will then generate output that is tailored for Fortran. +# The default value is: NO. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for VHDL. +# The default value is: NO. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given +# extension. Doxygen has a built-in mapping, but you can override or extend it +# using this tag. The format is ext=language, where ext is a file extension, and +# language is one of the parsers supported by doxygen: IDL, Java, Javascript, +# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: +# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: +# Fortran. In the later case the parser tries to guess whether the code is fixed +# or free formatted code, this is the default for Fortran type files), VHDL. For +# instance to make doxygen treat .inc files as Fortran files (default is PHP), +# and .f files as C (default is Fortran), use: inc=Fortran f=C. +# +# Note: For files without extension you can use no_extension as a placeholder. +# +# Note that for custom extensions you also need to set FILE_PATTERNS otherwise +# the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments +# according to the Markdown format, which allows for more readable +# documentation. See http://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by doxygen, so you can +# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in +# case of backward compatibilities issues. +# The default value is: YES. + +MARKDOWN_SUPPORT = YES + +# When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up +# to that level are automatically included in the table of contents, even if +# they do not have an id attribute. +# Note: This feature currently applies only to Markdown headings. +# Minimum value: 0, maximum value: 99, default value: 0. +# This tag requires that the tag MARKDOWN_SUPPORT is set to YES. + +TOC_INCLUDE_HEADINGS = 0 + +# When enabled doxygen tries to link words that correspond to documented +# classes, or namespaces to their corresponding documentation. Such a link can +# be prevented in individual cases by putting a % sign in front of the word or +# globally by setting AUTOLINK_SUPPORT to NO. +# The default value is: YES. + +AUTOLINK_SUPPORT = YES + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should set this +# tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); +# versus func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. +# The default value is: NO. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. +# The default value is: NO. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: +# http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen +# will parse them like normal C++ but will assume all classes use public instead +# of private inheritance when no explicit protection keyword is present. +# The default value is: NO. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate +# getter and setter methods for a property. Setting this option to YES will make +# doxygen to replace the get and set methods by a property in the documentation. +# This will only work if the methods are indeed getting or setting a simple +# type. If this is not the case, or you want to show the methods anyway, you +# should set this option to NO. +# The default value is: YES. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. +# The default value is: NO. + +DISTRIBUTE_GROUP_DOC = NO + +# If one adds a struct or class to a group and this option is enabled, then also +# any nested class or struct is added to the same group. By default this option +# is disabled and one has to add nested compounds explicitly via \ingroup. +# The default value is: NO. + +GROUP_NESTED_COMPOUNDS = NO + +# Set the SUBGROUPING tag to YES to allow class member groups of the same type +# (for instance a group of public functions) to be put as a subgroup of that +# type (e.g. under the Public Functions section). Set it to NO to prevent +# subgrouping. Alternatively, this can be done per class using the +# \nosubgrouping command. +# The default value is: YES. + +SUBGROUPING = YES + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions +# are shown inside the group in which they are included (e.g. using \ingroup) +# instead of on a separate page (for HTML and Man pages) or section (for LaTeX +# and RTF). +# +# Note that this feature does not work in combination with +# SEPARATE_MEMBER_PAGES. +# The default value is: NO. + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions +# with only public data fields or simple typedef fields will be shown inline in +# the documentation of the scope in which they are defined (i.e. file, +# namespace, or group documentation), provided this scope is documented. If set +# to NO, structs, classes, and unions are shown on a separate page (for HTML and +# Man pages) or section (for LaTeX and RTF). +# The default value is: NO. + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or +# enum is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically be +# useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. +# The default value is: NO. + +TYPEDEF_HIDES_STRUCT = NO + +# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This +# cache is used to resolve symbols given their name and scope. Since this can be +# an expensive process and often the same symbol appears multiple times in the +# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small +# doxygen will become slower. If the cache is too large, memory is wasted. The +# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range +# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 +# symbols. At the end of a run doxygen will report the cache usage and suggest +# the optimal cache size from a speed point of view. +# Minimum value: 0, maximum value: 9, default value: 0. + +LOOKUP_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in +# documentation are documented, even if no documentation was available. Private +# class members and static file members will be hidden unless the +# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. +# Note: This will also disable the warnings about undocumented members that are +# normally produced when WARNINGS is set to YES. +# The default value is: NO. + +EXTRACT_ALL = NO + +# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will +# be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIVATE = NO + +# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal +# scope will be included in the documentation. +# The default value is: NO. + +EXTRACT_PACKAGE = NO + +# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be +# included in the documentation. +# The default value is: NO. + +EXTRACT_STATIC = NO + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined +# locally in source files will be included in the documentation. If set to NO, +# only classes defined in header files are included. Does not have any effect +# for Java sources. +# The default value is: YES. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. If set to YES, local methods, +# which are defined in the implementation section but not in the interface are +# included in the documentation. If set to NO, only methods in the interface are +# included. +# The default value is: NO. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base name of +# the file that contains the anonymous namespace. By default anonymous namespace +# are hidden. +# The default value is: NO. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all +# undocumented members inside documented classes or files. If set to NO these +# members will be included in the various overviews, but no documentation +# section is generated. This option has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. If set +# to NO, these classes will be included in the various overviews. This option +# has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend +# (class|struct|union) declarations. If set to NO, these declarations will be +# included in the documentation. +# The default value is: NO. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any +# documentation blocks found inside the body of a function. If set to NO, these +# blocks will be appended to the function's detailed documentation block. +# The default value is: NO. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation that is typed after a +# \internal command is included. If the tag is set to NO then the documentation +# will be excluded. Set it to YES to include the internal documentation. +# The default value is: NO. + +INTERNAL_DOCS = YES + +# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file +# names in lower-case letters. If set to YES, upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. +# The default value is: system dependent. + +CASE_SENSE_NAMES = YES + +# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with +# their full class and namespace scopes in the documentation. If set to YES, the +# scope will be hidden. +# The default value is: NO. + +HIDE_SCOPE_NAMES = NO + +# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will +# append additional text to a page's title, such as Class Reference. If set to +# YES the compound reference will be hidden. +# The default value is: NO. + +HIDE_COMPOUND_REFERENCE= NO + +# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of +# the files that are included by a file in the documentation of that file. +# The default value is: YES. + +SHOW_INCLUDE_FILES = YES + +# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each +# grouped member an include statement to the documentation, telling the reader +# which file to include in order to use the member. +# The default value is: NO. + +SHOW_GROUPED_MEMB_INC = NO + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include +# files with double quotes in the documentation rather than with sharp brackets. +# The default value is: NO. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the +# documentation for inline members. +# The default value is: YES. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the +# (detailed) documentation of file and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. +# The default value is: YES. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief +# descriptions of file, namespace and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. Note that +# this will also influence the order of the classes in the class list. +# The default value is: NO. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the +# (brief and detailed) documentation of class members so that constructors and +# destructors are listed first. If set to NO the constructors will appear in the +# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. +# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief +# member documentation. +# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting +# detailed member documentation. +# The default value is: NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy +# of group names into alphabetical order. If set to NO the group names will +# appear in their defined order. +# The default value is: NO. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by +# fully-qualified names, including namespaces. If set to NO, the class list will +# be sorted only by class name, not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the alphabetical +# list. +# The default value is: NO. + +SORT_BY_SCOPE_NAME = NO + +# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper +# type resolution of all parameters of a function it will reject a match between +# the prototype and the implementation of a member function even if there is +# only one candidate or it is obvious which candidate to choose by doing a +# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still +# accept a match between prototype and implementation in such cases. +# The default value is: NO. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo +# list. This list is created by putting \todo commands in the documentation. +# The default value is: YES. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test +# list. This list is created by putting \test commands in the documentation. +# The default value is: YES. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug +# list. This list is created by putting \bug commands in the documentation. +# The default value is: YES. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO) +# the deprecated list. This list is created by putting \deprecated commands in +# the documentation. +# The default value is: YES. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional documentation +# sections, marked by \if ... \endif and \cond +# ... \endcond blocks. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the +# initial value of a variable or macro / define can have for it to appear in the +# documentation. If the initializer consists of more lines than specified here +# it will be hidden. Use a value of 0 to hide initializers completely. The +# appearance of the value of individual variables and macros / defines can be +# controlled using \showinitializer or \hideinitializer command in the +# documentation regardless of this setting. +# Minimum value: 0, maximum value: 10000, default value: 30. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at +# the bottom of the documentation of classes and structs. If set to YES, the +# list will mention the files that were used to generate the documentation. +# The default value is: YES. + +SHOW_USED_FILES = YES + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This +# will remove the Files entry from the Quick Index and from the Folder Tree View +# (if specified). +# The default value is: YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces +# page. This will remove the Namespaces entry from the Quick Index and from the +# Folder Tree View (if specified). +# The default value is: YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command command input-file, where command is the value of the +# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided +# by doxygen. Whatever the program writes to standard output is used as the file +# version. For an example see the documentation. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. To create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. You can +# optionally specify a file name after the option, if omitted DoxygenLayout.xml +# will be used as the name of the layout file. +# +# Note that if you run doxygen from a directory containing a file called +# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE +# tag is left empty. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files containing +# the reference definitions. This must be a list of .bib files. The .bib +# extension is automatically appended if omitted. This requires the bibtex tool +# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. +# For LaTeX the style of the bibliography can be controlled using +# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the +# search path. See also \cite for info how to create references. + +CITE_BIB_FILES = + +#--------------------------------------------------------------------------- +# Configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated to +# standard output by doxygen. If QUIET is set to YES this implies that the +# messages are off. +# The default value is: NO. + +QUIET = YES + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES +# this implies that the warnings are on. +# +# Tip: Turn warnings on while writing the documentation. +# The default value is: YES. + +WARNINGS = NO + +# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate +# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag +# will automatically be disabled. +# The default value is: YES. + +WARN_IF_UNDOCUMENTED = NO + +# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some parameters +# in a documented function, or documenting parameters that don't exist or using +# markup commands wrongly. +# The default value is: YES. + +WARN_IF_DOC_ERROR = NO + +# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that +# are documented, but have no documentation for their parameters or return +# value. If set to NO, doxygen will only warn about wrong or incomplete +# parameter documentation, but not about the absence of documentation. +# The default value is: NO. + +WARN_NO_PARAMDOC = NO + +# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when +# a warning is encountered. +# The default value is: NO. + +WARN_AS_ERROR = NO + +# The WARN_FORMAT tag determines the format of the warning messages that doxygen +# can produce. The string should contain the $file, $line, and $text tags, which +# will be replaced by the file and line number from which the warning originated +# and the warning text. Optionally the format may contain $version, which will +# be replaced by the version of the file (if it could be obtained via +# FILE_VERSION_FILTER) +# The default value is: $file:$line: $text. + +WARN_FORMAT = "WARNING: $file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning and error +# messages should be written. If left blank the output is written to standard +# error (stderr). + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# Configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag is used to specify the files and/or directories that contain +# documented source files. You may enter file names like myfile.cpp or +# directories like /usr/src/myproject. Separate the files or directories with +# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING +# Note: If this tag is empty the current directory is searched. + +INPUT = ../src + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses +# libiconv (or the iconv built into libc) for the transcoding. See the libiconv +# documentation (see: http://www.gnu.org/software/libiconv) for the list of +# possible encodings. +# The default value is: UTF-8. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and +# *.h) to filter out the source-files in the directories. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# read by doxygen. +# +# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp, +# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, +# *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, +# *.m, *.markdown, *.md, *.mm, *.dox, *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, +# *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf and *.qsf. + +FILE_PATTERNS = *.h \ + *.hh \ + *.hxx \ + *.hpp \ + *.h++ \ + +# The RECURSIVE tag can be used to specify whether or not subdirectories should +# be searched for input files as well. +# The default value is: NO. + +RECURSIVE = YES + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# +# Note that relative paths are relative to the directory from which doxygen is +# run. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. +# The default value is: NO. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories use the pattern */test/* + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or directories +# that contain example code fragments that are included (see the \include +# command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank all +# files are included. + +EXAMPLE_PATTERNS = * + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude commands +# irrespective of the value of the RECURSIVE tag. +# The default value is: NO. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or directories +# that contain images that are to be included in the documentation (see the +# \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command: +# +# +# +# where is the value of the INPUT_FILTER tag, and is the +# name of an input file. Doxygen will then use the output that the filter +# program writes to standard output. If FILTER_PATTERNS is specified, this tag +# will be ignored. +# +# Note that the filter must not add or remove lines; it is applied before the +# code is scanned, but not when the output code is generated. If lines are added +# or removed, the anchors will not be placed correctly. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by doxygen. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: pattern=filter +# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how +# filters are used. If the FILTER_PATTERNS tag is empty or if none of the +# patterns match the file name, INPUT_FILTER is applied. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by doxygen. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will also be used to filter the input files that are used for +# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). +# The default value is: NO. + +FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and +# it is also possible to disable source filtering for a specific pattern using +# *.ext= (so without naming a filter). +# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. + +FILTER_SOURCE_PATTERNS = + +# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that +# is part of the input, its contents will be placed on the main page +# (index.html). This can be useful if you have a project on for instance GitHub +# and want to reuse the introduction page also for the doxygen output. + +USE_MDFILE_AS_MAINPAGE = + +#--------------------------------------------------------------------------- +# Configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will be +# generated. Documented entities will be cross-referenced with these sources. +# +# Note: To get rid of all source code in the generated output, make sure that +# also VERBATIM_HEADERS is set to NO. +# The default value is: NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body of functions, +# classes and enums directly into the documentation. +# The default value is: NO. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any +# special comment blocks from generated source code fragments. Normal C, C++ and +# Fortran comments will always remain visible. +# The default value is: YES. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES then for each documented +# function all documented functions referencing it will be listed. +# The default value is: NO. + +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES then for each documented function +# all documented entities called/used by that function will be listed. +# The default value is: NO. + +REFERENCES_RELATION = NO + +# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set +# to YES then the hyperlinks from functions in REFERENCES_RELATION and +# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will +# link to the documentation. +# The default value is: YES. + +REFERENCES_LINK_SOURCE = YES + +# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the +# source code will show a tooltip with additional information such as prototype, +# brief description and links to the definition and documentation. Since this +# will make the HTML file larger and loading of large files a bit slower, you +# can opt to disable this feature. +# The default value is: YES. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +SOURCE_TOOLTIPS = YES + +# If the USE_HTAGS tag is set to YES then the references to source code will +# point to the HTML generated by the htags(1) tool instead of doxygen built-in +# source browser. The htags tool is part of GNU's global source tagging system +# (see http://www.gnu.org/software/global/global.html). You will need version +# 4.8.6 or higher. +# +# To use it do the following: +# - Install the latest version of global +# - Enable SOURCE_BROWSER and USE_HTAGS in the config file +# - Make sure the INPUT points to the root of the source tree +# - Run doxygen as normal +# +# Doxygen will invoke htags (and that will in turn invoke gtags), so these +# tools must be available from the command line (i.e. in the search path). +# +# The result: instead of the source browser generated by doxygen, the links to +# source code will now point to the output of htags. +# The default value is: NO. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a +# verbatim copy of the header file for each class for which an include is +# specified. Set to NO to disable this. +# See also: Section \class. +# The default value is: YES. + +VERBATIM_HEADERS = YES + +# If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the +# clang parser (see: http://clang.llvm.org/) for more accurate parsing at the +# cost of reduced performance. This can be particularly helpful with template +# rich C++ code for which doxygen's built-in parser lacks the necessary type +# information. +# Note: The availability of this option depends on whether or not doxygen was +# generated with the -Duse-libclang=ON option for CMake. +# The default value is: NO. + +CLANG_ASSISTED_PARSING = NO + +# If clang assisted parsing is enabled you can provide the compiler with command +# line options that you would normally use when invoking the compiler. Note that +# the include paths will already be set by doxygen for the files and directories +# specified with INPUT and INCLUDE_PATH. +# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES. + +CLANG_OPTIONS = + +#--------------------------------------------------------------------------- +# Configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all +# compounds will be generated. Enable this if the project contains a lot of +# classes, structs, unions or interfaces. +# The default value is: YES. + +ALPHABETICAL_INDEX = YES + +# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in +# which the alphabetical index list will be split. +# Minimum value: 1, maximum value: 20, default value: 5. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all classes will +# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag +# can be used to specify a prefix (or a list of prefixes) that should be ignored +# while generating the index headers. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output +# The default value is: YES. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each +# generated HTML page (for example: .htm, .php, .asp). +# The default value is: .html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a user-defined HTML header file for +# each generated HTML page. If the tag is left blank doxygen will generate a +# standard header. +# +# To get valid HTML the header file that includes any scripts and style sheets +# that doxygen needs, which is dependent on the configuration options used (e.g. +# the setting GENERATE_TREEVIEW). It is highly recommended to start with a +# default header using +# doxygen -w html new_header.html new_footer.html new_stylesheet.css +# YourConfigFile +# and then modify the file new_header.html. See also section "Doxygen usage" +# for information on how to generate the default header that doxygen normally +# uses. +# Note: The header is subject to change so you typically have to regenerate the +# default header when upgrading to a newer version of doxygen. For a description +# of the possible markers and block names see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each +# generated HTML page. If the tag is left blank doxygen will generate a standard +# footer. See HTML_HEADER for more information on how to generate a default +# footer and what special commands can be used inside the footer. See also +# section "Doxygen usage" for information on how to generate the default footer +# that doxygen normally uses. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style +# sheet that is used by each HTML page. It can be used to fine-tune the look of +# the HTML output. If left blank doxygen will generate a default style sheet. +# See also section "Doxygen usage" for information on how to generate the style +# sheet that doxygen normally uses. +# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as +# it is more robust and this tag (HTML_STYLESHEET) will in the future become +# obsolete. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_STYLESHEET = + +# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined +# cascading style sheets that are included after the standard style sheets +# created by doxygen. Using this option one can overrule certain style aspects. +# This is preferred over using HTML_STYLESHEET since it does not replace the +# standard style sheet and is therefore more robust against future updates. +# Doxygen will copy the style sheet files to the output directory. +# Note: The order of the extra style sheet files is of importance (e.g. the last +# style sheet in the list overrules the setting of the previous ones in the +# list). For an example see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_STYLESHEET = + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that the +# files will be copied as-is; there are no commands or markers available. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen +# will adjust the colors in the style sheet and background images according to +# this color. Hue is specified as an angle on a colorwheel, see +# http://en.wikipedia.org/wiki/Hue for more information. For instance the value +# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 +# purple, and 360 is red again. +# Minimum value: 0, maximum value: 359, default value: 220. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors +# in the HTML output. For a value of 0 the output will use grayscales only. A +# value of 255 will produce the most vivid colors. +# Minimum value: 0, maximum value: 255, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the +# luminance component of the colors in the HTML output. Values below 100 +# gradually make the output lighter, whereas values above 100 make the output +# darker. The value divided by 100 is the actual gamma applied, so 80 represents +# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not +# change the gamma. +# Minimum value: 40, maximum value: 240, default value: 80. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML +# page will contain the date and time when the page was generated. Setting this +# to YES can help to show when doxygen was last run and thus if the +# documentation is up to date. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_TIMESTAMP = NO + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_SECTIONS = NO + +# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries +# shown in the various tree structured indices initially; the user can expand +# and collapse entries dynamically later on. Doxygen will expand the tree to +# such a level that at most the specified number of entries are visible (unless +# a fully collapsed tree already exceeds this amount). So setting the number of +# entries 1 will produce a full collapsed tree by default. 0 is a special value +# representing an infinite number of entries and will result in a full expanded +# tree by default. +# Minimum value: 0, maximum value: 9999, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_INDEX_NUM_ENTRIES = 100 + +# If the GENERATE_DOCSET tag is set to YES, additional index files will be +# generated that can be used as input for Apple's Xcode 3 integrated development +# environment (see: http://developer.apple.com/tools/xcode/), introduced with +# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a +# Makefile in the HTML output directory. Running make will produce the docset in +# that directory and running make install will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at +# startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html +# for more information. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_DOCSET = NO + +# This tag determines the name of the docset feed. A documentation feed provides +# an umbrella under which multiple documentation sets from a single provider +# (such as a company or product suite) can be grouped. +# The default value is: Doxygen generated docs. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# This tag specifies a string that should uniquely identify the documentation +# set bundle. This should be a reverse domain-name style string, e.g. +# com.mycompany.MyDocSet. Doxygen will append .docset to the name. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. +# The default value is: org.doxygen.Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. +# The default value is: Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three +# additional HTML index files: index.hhp, index.hhc, and index.hhk. The +# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop +# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on +# Windows. +# +# The HTML Help Workshop contains a compiler that can convert all HTML output +# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML +# files are now used as the Windows 98 help format, and will replace the old +# Windows help format (.hlp) on all Windows platforms in the future. Compressed +# HTML files also contain an index, a table of contents, and you can search for +# words in the documentation. The HTML workshop also contains a viewer for +# compressed HTML files. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_HTMLHELP = NO + +# The CHM_FILE tag can be used to specify the file name of the resulting .chm +# file. You can add a path in front of the file if the result should not be +# written to the html output directory. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_FILE = + +# The HHC_LOCATION tag can be used to specify the location (absolute path +# including file name) of the HTML help compiler (hhc.exe). If non-empty, +# doxygen will try to run the HTML help compiler on the generated index.hhp. +# The file has to be specified with full path. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +HHC_LOCATION = + +# The GENERATE_CHI flag controls if a separate .chi index file is generated +# (YES) or that it should be included in the master .chm file (NO). +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +GENERATE_CHI = NO + +# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc) +# and project file content. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_INDEX_ENCODING = + +# The BINARY_TOC flag controls whether a binary table of contents is generated +# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it +# enables the Previous and Next buttons. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members to +# the table of contents of the HTML help documentation and to the tree view. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that +# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help +# (.qch) of the generated HTML documentation. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify +# the file name of the resulting .qch file. The path specified is relative to +# the HTML output folder. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help +# Project output. For more information please see Qt Help Project / Namespace +# (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace). +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt +# Help Project output. For more information please see Qt Help Project / Virtual +# Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual- +# folders). +# The default value is: doc. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_VIRTUAL_FOLDER = doc + +# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom +# filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's filter section matches. Qt Help Project / Filter Attributes (see: +# http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_SECT_FILTER_ATTRS = + +# The QHG_LOCATION tag can be used to specify the location of Qt's +# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the +# generated .qhp file. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be +# generated, together with the HTML files, they form an Eclipse help plugin. To +# install this plugin and make it available under the help contents menu in +# Eclipse, the contents of the directory containing the HTML and XML files needs +# to be copied into the plugins directory of eclipse. The name of the directory +# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. +# After copying Eclipse needs to be restarted before the help appears. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the Eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have this +# name. Each documentation set should have its own identifier. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# If you want full control over the layout of the generated HTML pages it might +# be necessary to disable the index and replace it with your own. The +# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top +# of each HTML page. A value of NO enables the index and the value YES disables +# it. Since the tabs in the index contain the same information as the navigation +# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +DISABLE_INDEX = NO + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. If the tag +# value is set to YES, a side panel will be generated containing a tree-like +# index structure (just like the one that is generated for HTML Help). For this +# to work a browser that supports JavaScript, DHTML, CSS and frames is required +# (i.e. any modern browser). Windows users are probably better off using the +# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can +# further fine-tune the look of the index. As an example, the default style +# sheet generated by doxygen has an example that shows how to put an image at +# the root of the tree instead of the PROJECT_NAME. Since the tree basically has +# the same information as the tab index, you could consider setting +# DISABLE_INDEX to YES when enabling this option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_TREEVIEW = YES + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that +# doxygen will group on one line in the generated HTML documentation. +# +# Note that a value of 0 will completely suppress the enum values from appearing +# in the overview section. +# Minimum value: 0, maximum value: 20, default value: 4. +# This tag requires that the tag GENERATE_HTML is set to YES. + +ENUM_VALUES_PER_LINE = 4 + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used +# to set the initial width (in pixels) of the frame in which the tree is shown. +# Minimum value: 0, maximum value: 1500, default value: 250. +# This tag requires that the tag GENERATE_HTML is set to YES. + +TREEVIEW_WIDTH = 250 + +# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to +# external symbols imported via tag files in a separate window. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +EXT_LINKS_IN_WINDOW = NO + +# Use this tag to change the font size of LaTeX formulas included as images in +# the HTML documentation. When you change the font size after a successful +# doxygen run you need to manually remove any form_*.png images from the HTML +# output directory to force them to be regenerated. +# Minimum value: 8, maximum value: 50, default value: 10. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_FONTSIZE = 10 + +# Use the FORMULA_TRANPARENT tag to determine whether or not the images +# generated for formulas are transparent PNGs. Transparent PNGs are not +# supported properly for IE 6.0, but are supported on all modern browsers. +# +# Note that when changing this option you need to delete any form_*.png files in +# the HTML output directory before the changes have effect. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_TRANSPARENT = YES + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see +# http://www.mathjax.org) which uses client side Javascript for the rendering +# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX +# installed or if you want to formulas look prettier in the HTML output. When +# enabled you may also need to install MathJax separately and configure the path +# to it using the MATHJAX_RELPATH option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +USE_MATHJAX = NO + +# When MathJax is enabled you can set the default output format to be used for +# the MathJax output. See the MathJax site (see: +# http://docs.mathjax.org/en/latest/output.html) for more details. +# Possible values are: HTML-CSS (which is slower, but has the best +# compatibility), NativeMML (i.e. MathML) and SVG. +# The default value is: HTML-CSS. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_FORMAT = HTML-CSS + +# When MathJax is enabled you need to specify the location relative to the HTML +# output directory using the MATHJAX_RELPATH option. The destination directory +# should contain the MathJax.js script. For instance, if the mathjax directory +# is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax +# Content Delivery Network so you can quickly see the result without installing +# MathJax. However, it is strongly recommended to install a local copy of +# MathJax from http://www.mathjax.org before deployment. +# The default value is: http://cdn.mathjax.org/mathjax/latest. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest + +# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax +# extension names that should be enabled during MathJax rendering. For example +# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_EXTENSIONS = + +# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces +# of code that will be used on startup of the MathJax code. See the MathJax site +# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an +# example see the documentation. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_CODEFILE = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box for +# the HTML output. The underlying search engine uses javascript and DHTML and +# should work on any modern browser. Note that when using HTML help +# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) +# there is already a search function so this one should typically be disabled. +# For large projects the javascript based search engine can be slow, then +# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to +# search using the keyboard; to jump to the search box use + S +# (what the is depends on the OS and browser, but it is typically +# , /